diff --git a/.gitignore b/.gitignore index 873fe16d..04522bdf 100644 --- a/.gitignore +++ b/.gitignore @@ -165,6 +165,9 @@ cython_debug/ outputs/ exports/ renders/ +*.mp4 +*.gif +*.zip # tensorboard log files events.out.* @@ -173,7 +176,8 @@ events.out.* # Misc old/ -temp* +temp/ +tmp/ !temporal* .nfs* external/ @@ -187,4 +191,5 @@ camera_paths/ ._.DS_Store */**/.DS_Store */**/._.DS_Store - +masks/ +*.sif diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index bdb8ff4f..f29ba4f5 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,14 +3,6 @@ default_language_version: python: python3 repos: -- repo: local - hooks: - - id: add-license-headers - name: add-license-headers - entry: nerfstudio/scripts/licensing/license_headers.sh - language: script - files: '.*' - pass_filenames: false - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.5.0 hooks: @@ -24,3 +16,10 @@ repos: args: [ --fix ] - id: ruff-format types_or: [ python, pyi, jupyter ] +- repo: local + hooks: + - id: check-copyright + name: Check Copyright + entry: python3 -m nerfstudio.scripts.licensing.check_copyright + language: python + types: [ python ] diff --git a/.vscode/launch.json b/.vscode/launch.json index 6e4dc7c4..6a8e2643 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -27,127 +27,96 @@ "justMyCode": true }, { - "name": "Python: train", + "name": "Python: NeuRAD", "type": "python", "request": "launch", "program": "nerfstudio/scripts/train.py", "console": "integratedTerminal", + "justMyCode": true, "args": [ - "instant_ngp", - "--viewer.no-enable", - "--logging.event-writer=wandb" + "neurad", + "--pipeline.model.eval_num_rays_per_chunk=2048", + "--pipeline.datamanager.num_processes=0", + "--pipeline.datamanager.train-num-lidar-rays-per-batch=1280", + "--pipeline.datamanager.eval-num-lidar-rays-per-batch=128", + "--pipeline.datamanager.train_num_rays_per_batch=4096", + "--pipeline.datamanager.eval_num_rays_per_batch=4096", + "pandaset-data", + "--data=./data/pandaset", + "--dataset_end_fraction=0.2", + "--cameras=front" ] }, { - "name": "Python: train ngp", - "type": "python", - "request": "launch", - "program": "nerfstudio/scripts/train.py", - "console": "integratedTerminal", - "args": ["instant_ngp"] - }, - { - "name": "Python: train ngp nerfstudio", + "name": "Python: NeuRAD tiny", "type": "python", "request": "launch", "program": "nerfstudio/scripts/train.py", "console": "integratedTerminal", + "justMyCode": true, "args": [ - "instant_ngp", - // "--experiment_name=nerfstudio_experiment", - "--logging.local-writer.max-log-size=0", - "--viewer.no-enable" - // viewer - // "--viewer.enable", - // "--viewer.zmq-url=tcp://127.0.0.1:6001", - // "--viewer.websocket-port=8014", - // "--pipeline.model.randomize-background", - // "--pipeline.model.cone-angle=0.00390625", - // "nerfstudio-data" + "neurad", + "--pipeline.model.eval_num_rays_per_chunk=2048", + "--pipeline.model.field.grid.static.hashgrid_dim=2", + "--pipeline.model.field.grid.static.num_levels=4", + "--pipeline.model.field.grid.static.log2_hashmap_size=15", + "--pipeline.model.field.grid.actor.hashgrid_dim=2", + "--pipeline.model.field.grid.actor.num_levels=2", + "--pipeline.model.field.grid.actor.log2_hashmap_size=11", + "--pipeline.datamanager.num_processes=0", + "--pipeline.datamanager.train-num-lidar-rays-per-batch=1280", + "--pipeline.datamanager.eval-num-lidar-rays-per-batch=128", + "--pipeline.datamanager.train-num-rays-per_batch=2048", + "--pipeline.datamanager.eval-num-rays_per_batch=2048", + "pandaset-data", + "--data=./data/pandaset", + "--dataset_end_fraction=0.2", + "--cameras=front", ] }, { - "name": "Python: train ngp-friends", - "type": "python", - "request": "launch", - "program": "nerfstudio/scripts/train.py", - "console": "integratedTerminal", - "args": [ - "instant_ngp", - "--viewer.enable", - "--viewer.zmq-url=tcp://127.0.0.1:6001", - "--viewer.websocket-port=8014", - "--steps_per_save=1000000", - "--steps_per_test=1000000", - "--pipeline.model.density-field-params.base-scale=4", - "--pipeline.model.density-field-params.num-cascades=1", - "pipeline.datamanager.train-dataparser:friends-data-parser-config", - "--pipeline.datamanager.train-dataparser.scene-scale=4" - ] - }, - { - "name": "Python: train semantic_nerfw", - "type": "python", - "request": "launch", - "program": "nerfstudio/scripts/train.py", - "console": "integratedTerminal", - "args": ["semantic_nerf"] - }, - { - "name": "Python: NeuS on Replica", + "name": "Python: NeuRAD CPU", "type": "python", "request": "launch", "program": "nerfstudio/scripts/train.py", "console": "integratedTerminal", "justMyCode": false, - "env": { "CUDA_VISIBLE_DEVICES": "0" }, + "env": {"PYTORCH_ENABLE_MPS_FALLBACK": "1"}, "args": [ - "neus", - "--pipeline.model.sdf-field.inside-outside=True", - "--pipeline.model.mono-depth-loss-mult=0.1", - "--pipeline.model.mono-normal-loss-mult=0.05", - "--vis=wandb", - "sdfstudio-data", - "--data=data/sdfstudio-demo-data/replica-room0", - "--include_mono_prior=True" + "neurad", + "--pipeline.model.eval_num_rays_per_chunk=2048", + "--pipeline.model.implementation=torch", + "--pipeline.model.sampling.proposal_field_1.grid.actor.use_4d_hashgrid=False", + "--pipeline.model.sampling.proposal_field_2.grid.actor.use_4d_hashgrid=False", + "--pipeline.model.field.grid.actor.use_4d_hashgrid=False", + "--machine.device-type=mps", + "--mixed_precision=False", + "--pipeline.datamanager.num_processes=0", + "--pipeline.datamanager.train-num-lidar-rays-per-batch=128", + "--pipeline.datamanager.eval-num-lidar-rays-per-batch=128", + "--pipeline.datamanager.train_num_rays_per_batch=2048", + "--pipeline.datamanager.eval_num_rays_per_batch=2048", + "--vis=tensorboard", + "pandaset-data", + "--data=./data/pandaset", + "--dataset_end_fraction=0.2", + "--cameras=front" ] }, { - "name": "Python: NeuS-facto on Replica", + "name": "Python: Splatfacto PandaSet", "type": "python", "request": "launch", "program": "nerfstudio/scripts/train.py", "console": "integratedTerminal", - "justMyCode": false, - "env": { "CUDA_VISIBLE_DEVICES": "0" }, + "justMyCode": true, "args": [ - "neus-facto", - "--pipeline.model.sdf-field.inside-outside=True", - "--pipeline.model.mono-depth-loss-mult=0.1", - "--pipeline.model.mono-normal-loss-mult=0.05", - "--vis=wandb", - "sdfstudio-data", - "--data=data/sdfstudio-demo-data/replica-room0", - "--include_mono_prior=True" + "splatfacto", + "pandaset-data", + "--sequence=028", + "--data=./data/pandaset", + "--dataset_end_fraction=1.0", ] }, - { - "name": "Python: NeuS-facto on DTU (no mono-prior)", - "type": "python", - "request": "launch", - "program": "nerfstudio/scripts/train.py", - "console": "integratedTerminal", - "justMyCode": false, - "env": { "CUDA_VISIBLE_DEVICES": "0" }, - "args": [ - "neus-facto", - "--pipeline.model.sdf-field.inside-outside=False", - "--vis=wandb", - "sdfstudio-data", - "--data=data/sdfstudio-demo-data/dtu-scan65", - "--include_mono_prior=False", - "--auto-orient=True" - ] - } ] } diff --git a/Dockerfile b/Dockerfile index 4c00a8fa..f4bfeca9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,5 @@ ARG CUDA_VERSION=11.8.0 ARG OS_VERSION=22.04 -ARG USER_ID=1000 # Define base image. FROM nvidia/cuda:${CUDA_VERSION}-devel-ubuntu${OS_VERSION} ARG CUDA_VERSION @@ -15,8 +14,8 @@ LABEL org.opencontainers.image.base.name="docker.io/library/nvidia/cuda:${CUDA_V # Variables used at build time. ## CUDA architectures, required by Colmap and tiny-cuda-nn. -## NOTE: All commonly used GPU architectures are included and supported here. To speedup the image build process remove all architectures but the one of your explicit GPU. Find details here: https://developer.nvidia.com/cuda-gpus (8.6 translates to 86 in the line below) or in the docs. -ARG CUDA_ARCHITECTURES=90;89;86;80;75;70;61;52;37 +## NOTE: Most commonly used GPU architectures are included and supported here. To speedup the image build process remove all architectures but the one of your explicit GPU. Find details here: https://developer.nvidia.com/cuda-gpus (8.6 translates to 86 in the line below) or in the docs. +ARG CUDA_ARCHITECTURES=90;89;86;80;75 # Set environment variables. ## Set non-interactive to prevent asking for user inputs blocking image creation. @@ -53,18 +52,16 @@ RUN apt-get update && \ libqt5opengl5-dev \ libsqlite3-dev \ libsuitesparse-dev \ - nano \ protobuf-compiler \ python-is-python3 \ python3.10-dev \ python3-pip \ qtbase5-dev \ - sudo \ vim-tiny \ - wget && \ + wget \ + && \ rm -rf /var/lib/apt/lists/* - # Install GLOG (required by ceres). RUN git clone --branch v0.6.0 https://github.com/google/glog.git --single-branch && \ cd glog && \ @@ -102,22 +99,6 @@ RUN git clone --branch 3.8 https://github.com/colmap/colmap.git --single-branch cd ../.. && \ rm -rf colmap -# Create non root user and setup environment. -RUN useradd -m -d /home/user -g root -G sudo -u ${USER_ID} user -RUN usermod -aG sudo user -# Set user password -RUN echo "user:user" | chpasswd -# Ensure sudo group users are not asked for a password when using sudo command by ammending sudoers file -RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers - -# Switch to new uer and workdir. -USER ${USER_ID} -WORKDIR /home/user - -# Add local user binary folder to PATH variable. -ENV PATH="${PATH}:/home/user/.local/bin" -SHELL ["/bin/bash", "-c"] - # Upgrade pip and install packages. RUN python3.10 -m pip install --no-cache-dir --upgrade pip setuptools pathtools promise pybind11 # Install pytorch and submodules @@ -158,15 +139,10 @@ RUN git clone --recursive https://github.com/cvg/pixel-perfect-sfm.git && \ RUN python3.10 -m pip install --no-cache-dir omegaconf # Copy nerfstudio folder and give ownership to user. -ADD . /home/user/nerfstudio -USER root -RUN chown -R user /home/user/nerfstudio -USER ${USER_ID} +ADD . /nerfstudio # Install nerfstudio dependencies. -RUN cd nerfstudio && \ - python3.10 -m pip install --no-cache-dir -e . && \ - cd .. +RUN cd /nerfstudio && python3.10 -m pip install --no-cache-dir -e . # Change working directory WORKDIR /workspace diff --git a/README.md b/README.md index 95ba60a4..d5896662 100644 --- a/README.md +++ b/README.md @@ -1,119 +1,58 @@ -

- - - - - Documentation Status - - PyPI version - - - Test Status - - - License -

+

NeuRAD: Neural Rendering for Autonomous Driving

- - - - - - nerfstudio - - - + + + + + +

- - +

CVPR 2024 highlight

+
+ + + + tyro logo + + +
-

A collaboration friendly studio for NeRFs

+
-

- - documentation - - viewer - - colab -

- - +[Quickstart](#quickstart) Β· +[Learn more](#learn-more) Β· +[Planned Features](#planned-featurestodos) -- [Quickstart](#quickstart) -- [Learn more](#learn-more) -- [Supported Features](#supported-features) +
# About -_It’s as simple as plug and play with nerfstudio!_ - -Nerfstudio provides a simple API that allows for a simplified end-to-end process of creating, training, and testing NeRFs. -The library supports a **more interpretable implementation of NeRFs by modularizing each component.** -With more modular NeRFs, we hope to create a more user-friendly experience in exploring the technology. - -This is a contributor-friendly repo with the goal of building a community where users can more easily build upon each other's contributions. -Nerfstudio initially launched as an opensource project by Berkeley students in [KAIR lab](https://people.eecs.berkeley.edu/~kanazawa/index.html#kair) at [Berkeley AI Research (BAIR)](https://bair.berkeley.edu/) in October 2022 as a part of a research project ([paper](https://arxiv.org/abs/2302.04264)). It is currently developed by Berkeley students and community contributors. - -We are committed to providing learning resources to help you understand the basics of (if you're just getting started), and keep up-to-date with (if you're a seasoned veteran) all things NeRF. As researchers, we know just how hard it is to get onboarded with this next-gen technology. So we're here to help with tutorials, documentation, and more! - -Have feature requests? Want to add your brand-spankin'-new NeRF model? Have a new dataset? **We welcome [contributions](https://docs.nerf.studio/reference/contributing.html)!** Please do not hesitate to reach out to the nerfstudio team with any questions via [Discord](https://discord.gg/uMbNqcraFc). - -Have feedback? We'd love for you to fill out our [Nerfstudio Feedback Form](https://forms.gle/sqN5phJN7LfQVwnP9) if you want to let us know who you are, why you are interested in Nerfstudio, or provide any feedback! +This is the official code release of the CVPR 2024 paper _NeuRAD: Neural Rendering for Autonomous Driving_, building on top of [Nerfstudio](https://github.com/nerfstudio-project/nerfstudio). Besides releasing the code for our NeuRAD model, we hope that this can lay the ground-work for research on applying neural rendering methods in autonomous driving. -We hope nerfstudio enables you to build faster :hammer: learn together :books: and contribute to our NeRF community :sparkling_heart:. +In line with Nerfstudio's mission, this is a contributor-friendly repo with the goal of building a community where users can more easily build upon each other's contributions. -## Sponsors - -Sponsors of this work includes [Luma AI](https://lumalabs.ai/) and the [BAIR commons](https://bcommons.berkeley.edu/home). - -

- - - - - - - Luma AI - - - - - - - - - - - BAIR - - - - -

+Do you have feature requests or want to add **your** new AD-NeRF model? Or maybe provide structures for a new dataset? **We welcome [contributions](https://docs.nerf.studio/reference/contributing.html)!** # Quickstart -The quickstart will help you get started with the default vanilla NeRF trained on the classic Blender Lego scene. +The quickstart will help you get started with the NeuRAD model on a PandaSet sequence. For more complex changes (e.g., running with your own data/setting up a new NeRF graph), please refer to our [references](#learn-more). ## 1. Installation: Setup the environment ### Prerequisites -You must have an NVIDIA video card with CUDA installed on the system. This library has been tested with version 11.8 of CUDA. You can find more information about installing CUDA [here](https://docs.nvidia.com/cuda/cuda-quick-start-guide/index.html) +Our installation steps largely follow Nerfstudio, with some added dataset-specific dependencies. You must have an NVIDIA video card with CUDA installed on the system. This library has been tested with version 11.8 of CUDA. You can find more information about installing CUDA [here](https://docs.nvidia.com/cuda/cuda-quick-start-guide/index.html). ### Create environment -Nerfstudio requires `python >= 3.8`. We recommend using conda to manage dependencies. Make sure to install [Conda](https://docs.conda.io/miniconda.html) before proceeding. +NeuRAD requires `python >= 3.8`. We recommend using conda to manage dependencies. Make sure to install [Conda](https://docs.conda.io/miniconda.html) before proceeding. ```bash -conda create --name nerfstudio -y python=3.8 -conda activate nerfstudio +conda create --name neurad -y python=3.8 +conda activate neurad pip install --upgrade pip ``` @@ -131,51 +70,47 @@ conda install -c "nvidia/label/cuda-11.8.0" cuda-toolkit pip install ninja git+https://github.com/NVlabs/tiny-cuda-nn/#subdirectory=bindings/torch ``` -See [Dependencies](https://github.com/nerfstudio-project/nerfstudio/blob/main/docs/quickstart/installation.md#dependencies) -in the Installation documentation for more. - -### Installing nerfstudio - -Easy option: - -```bash -pip install nerfstudio -``` - -**OR** if you want the latest and greatest: +We refer to [Nerfstudio](https://github.com/nerfstudio-project/nerfstudio/blob/v1.0.3/docs/quickstart/installation.md) for more installation support. +### Installing NeuRAD ```bash -git clone https://github.com/nerfstudio-project/nerfstudio.git -cd nerfstudio +git clone https://github.com/georghess/neurad.git +cd neurad pip install --upgrade pip setuptools pip install -e . ``` -**OR** if you want to skip all installation steps and directly start using nerfstudio, use the docker image: +**OR** if you want to skip all installation steps and directly start using NeuRAD, use the provided docker image or apptainer recipe: -See [Installation](https://github.com/nerfstudio-project/nerfstudio/blob/main/docs/quickstart/installation.md) - **Use docker image**. +[Dockerfile](Dockerfile) or [Apptainer recipe](apptainer_recipe). ## 2. Training your first model! -The following will train a _nerfacto_ model, our recommended model for real world scenes. +The following will train a _NeuRAD_ model, our recommended model for real world AD scenes. + +### Data preparation + +Begin by downloading [PandaSet](https://www.kaggle.com/datasets/usharengaraju/pandaset-dataset/data) and place it under ```data/pandaset```. + +### Training + +Training models is done the same way as in nerfstudio, i.e., ```bash -# Download some test data: -ns-download-data nerfstudio --capture-name=poster # Train model -ns-train nerfacto --data data/nerfstudio/poster +python nerfstudio/scripts/train.py neurad pandaset-data ``` If everything works, you should see training progress like the following:

- image + image

Navigating to the link at the end of the terminal will load the webviewer. If you are running on a remote machine, you will need to port forward the websocket port (defaults to 7007).

- image + image

### Resume from checkpoint / visualize existing run @@ -183,7 +118,7 @@ Navigating to the link at the end of the terminal will load the webviewer. If yo It is possible to load a pretrained model by running ```bash -ns-train nerfacto --data data/nerfstudio/poster --load-dir {outputs/.../nerfstudio_models} +pyhton nerfstudio/scripts/train.py neurad pandaset-data --load-dir {outputs/.../nerfstudio_models} ``` ## Visualize existing run @@ -191,171 +126,120 @@ ns-train nerfacto --data data/nerfstudio/poster --load-dir {outputs/.../nerfstud Given a pretrained model checkpoint, you can start the viewer by running ```bash -ns-viewer --load-config {outputs/.../config.yml} +python nerfstudio/scripts/viewer/run_viewer.py --load-config {outputs/.../config.yml} ``` ## 3. Exporting Results -Once you have a NeRF model you can either render out a video or export a point cloud. +Once you have a NeRF model you can render its output. There are multiple different renders, more info available using + +```bash +python nerfstudio/scripts/render.py --help +``` -### Render Video -First we must create a path for the camera to follow. This can be done in the viewer under the "RENDER" tab. Orient your 3D view to the location where you wish the video to start, then press "ADD CAMERA". This will set the first camera key frame. Continue to new viewpoints adding additional cameras to create the camera path. We provide other parameters to further refine your camera path. Once satisfied, press "RENDER" which will display a modal that contains the command needed to render the video. Kill the training job (or create a new terminal if you have lots of compute) and run the command to generate the video. +## 4. Advanced Options -Other video export options are available, learn more by running +### Training models other than NeuRAD + +Besides NeuRAD, we will provide a reimplementation of [UniSim](https://arxiv.org/abs/2308.01898) as well. Once this is released it can be trained using ```bash -ns-render --help +# Train model +python nerfstudio/scripts/train.py unisim pandaset-data ``` -### Generate Point Cloud +Further, as we build on top of nerfstudio, models such as _nerfacto_ or _splatfacto_ are available as well, see nerfstudio for details. However, note that these are made for static scenes. + +For a full list of included models run `python nerfstudio/scripts/train.py --help`. -While NeRF models are not designed to generate point clouds, it is still possible. Navigate to the "EXPORT" tab in the 3D viewer and select "POINT CLOUD". If the crop option is selected, everything in the yellow square will be exported into a point cloud. Modify the settings as desired then run the command at the bottom of the panel in your command line. +### Modify Configuration -Alternatively you can use the CLI without the viewer. Learn about the export options by running +Each model contains many parameters that can be changed, too many to list here. Use the `--help` command to see the full list of configuration options. ```bash -ns-export pointcloud --help +python nerfstudio/scripts/train.py neurad --help ``` -## 4. Using Custom Data +### Tensorboard / WandB / Comet / Viewer -Using an existing dataset is great, but likely you want to use your own data! We support various methods for using your own data. Before it can be used in nerfstudio, the camera location and orientations must be determined and then converted into our format using `ns-process-data`. We rely on external tools for this, instructions and information can be found in the documentation. +There are four different methods to track training progress, using the viewer, [tensorboard](https://www.tensorflow.org/tensorboard), [Weights and Biases](https://wandb.ai/site), and [Comet](https://comet.com/?utm_source=nerf&utm_medium=referral&utm_content=github). You can specify which visualizer to use by appending `--vis {viewer, tensorboard, wandb, comet viewer+wandb, viewer+tensorboard, viewer+comet}` to the training command. Simultaneously utilizing the viewer alongside wandb or tensorboard may cause stuttering issues during evaluation steps. -| Data | Capture Device | Requirements | `ns-process-data` Speed | -| --------------------------------------------------------------------------------------------- | -------------- | ----------------------------------------------------------------- | ----------------------- | -| πŸ“· [Images](https://docs.nerf.studio/quickstart/custom_dataset.html#images-or-video) | Any | [COLMAP](https://colmap.github.io/install.html) | 🐒 | -| πŸ“Ή [Video](https://docs.nerf.studio/quickstart/custom_dataset.html#images-or-video) | Any | [COLMAP](https://colmap.github.io/install.html) | 🐒 | -| 🌎 [360 Data](https://docs.nerf.studio/quickstart/custom_dataset.html#data-equirectangular) | Any | [COLMAP](https://colmap.github.io/install.html) | 🐒 | -| πŸ“± [Polycam](https://docs.nerf.studio/quickstart/custom_dataset.html#polycam-capture) | IOS with LiDAR | [Polycam App](https://poly.cam/) | πŸ‡ | -| πŸ“± [KIRI Engine](https://docs.nerf.studio/quickstart/custom_dataset.html#kiri-engine-capture) | IOS or Android | [KIRI Engine App](https://www.kiriengine.com/) | πŸ‡ | -| πŸ“± [Record3D](https://docs.nerf.studio/quickstart/custom_dataset.html#record3d-capture) | IOS with LiDAR | [Record3D app](https://record3d.app/) | πŸ‡ | -| πŸ“± [Spectacular AI](https://docs.nerf.studio/quickstart/custom_dataset.html#spectacularai) | IOS, OAK, [others](https://www.spectacularai.com/mapping#supported-devices) | [App](https://apps.apple.com/us/app/spectacular-rec/id6473188128) / [`sai-cli`](https://www.spectacularai.com/mapping) | πŸ‡ | -| πŸ–₯ [Metashape](https://docs.nerf.studio/quickstart/custom_dataset.html#metashape) | Any | [Metashape](https://www.agisoft.com/) | πŸ‡ | -| πŸ–₯ [RealityCapture](https://docs.nerf.studio/quickstart/custom_dataset.html#realitycapture) | Any | [RealityCapture](https://www.capturingreality.com/realitycapture) | πŸ‡ | -| πŸ–₯ [ODM](https://docs.nerf.studio/quickstart/custom_dataset.html#odm) | Any | [ODM](https://github.com/OpenDroneMap/ODM) | πŸ‡ | -| πŸ‘“ [Aria](https://docs.nerf.studio/quickstart/custom_dataset.html#aria) | Aria glasses | [Project Aria](https://projectaria.com/) | πŸ‡ | -| πŸ›  [Custom](https://docs.nerf.studio/quickstart/data_conventions.html) | Any | Camera Poses | πŸ‡ | +# Learn More +And that's it for getting started with the basics of NeuRAD. If you are missing some features, have a look at [Planned Features](#planned-featurestodos) to see if we have plans on implementing this. Otherwise, feel free to open an issue, or even better implement it yourself and open a PR! -## 5. Advanced Options +If you want to add a dataset, look [here](#adding-datasets). If you want to add a method, have a look [here](#adding-methods). -### Training models other than nerfacto +## Adding Datasets -We provide other models than nerfacto, for example if you want to train the original nerf model, use the following command +We have provided dataparsers for multiple autonomous driving dataset, see below for a complete list. However, your favorite AD dataset might still be missing. -```bash -ns-train vanilla-nerf --data DATA_PATH -``` - -For a full list of included models run `ns-train --help`. +To add a dataset, create `nerfstudio/data/dataparsers/mydataset.py` containing one dataparsers config class `MyADDataParserConfig` and one dataparser class `MyADData`. Preferrably, these inherit from `ADDataParserConfig` and `ADDataParser`, as these provide common functionality and streamline the expected format of AD data. For most datasets, it should then be sufficient to overwrite `_get_cameras`, `_get_lidars`, `_read_lidars`, `_get_actor_trajectories`, and `_generate_dataparser_outputs`. -### Modify Configuration +| Data | Cameras | Lidars | +| --------------------------------------------------------------------------------------------- | -------------- | ----------------------------------------------------------------- | +| πŸš— [nuScenes](https://www.nuscenes.org/) | 6 cameras | 32-beam lidar | +| πŸš— [ZOD](https://zod.zenseact.com/) | 1 camera | 128-beam + 2 x 16-beam lidars | +| πŸš— [Argoverse 2](https://www.argoverse.org/av2.html) | 7 ring cameras + 2 stereo cameras | 2 x 32-beam lidars | +| πŸš— [PandaSet](https://pandaset.org/) | 6 cameras | 64-beam lidar | +| πŸš— [KITTIMOT](https://www.cvlibs.net/datasets/kitti/eval_tracking.php) | 2 stereo cameras | 64-beam lidar -Each model contains many parameters that can be changed, too many to list here. Use the `--help` command to see the full list of configuration options. -```bash -ns-train nerfacto --help -``` -### Tensorboard / WandB / Viewer +## Adding Methods -We support four different methods to track training progress, using the viewer[tensorboard](https://www.tensorflow.org/tensorboard), [Weights and Biases](https://wandb.ai/site), and ,[Comet](https://comet.com/?utm_source=nerf&utm_medium=referral&utm_content=github). You can specify which visualizer to use by appending `--vis {viewer, tensorboard, wandb, comet viewer+wandb, viewer+tensorboard, viewer+comet}` to the training command. Simultaneously utilizing the viewer alongside wandb or tensorboard may cause stuttering issues during evaluation steps. The viewer only works for methods that are fast (ie. nerfacto, instant-ngp), for slower methods like NeRF, use the other loggers. +Nerfstudio has made it easy to add new methods, see [here](https://docs.nerf.studio/developer_guides/new_methods.html) for details. We plan to examplify this using our UniSim reimplementation, to be released soon. -# Learn More +# Key features +- Dataparser for multiple autonomous driving datasets including + - Dataparsing of lidar data (3D+intensity+time) + - Dataparsing of annotations +- Datamanager for lidar+image data +- Rolling shutter handling for ray generation +- Viewer improvements + - Lidar rendering + - Dynamic actor modifications +- NeuRAD - SOTA neural rendering method for dynamic AD scenes -And that's it for getting started with the basics of nerfstudio. - -If you're interested in learning more on how to create your own pipelines, develop with the viewer, run benchmarks, and more, please check out some of the quicklinks below or visit our [documentation](https://docs.nerf.studio/) directly. - -| Section | Description | -| ---------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -| [Documentation](https://docs.nerf.studio/) | Full API documentation and tutorials | -| [Viewer](https://viewer.nerf.studio/) | Home page for our web viewer | -| πŸŽ’ **Educational** | -| [Model Descriptions](https://docs.nerf.studio/nerfology/methods/index.html) | Description of all the models supported by nerfstudio and explanations of component parts. | -| [Component Descriptions](https://docs.nerf.studio/nerfology/model_components/index.html) | Interactive notebooks that explain notable/commonly used modules in various models. | -| πŸƒ **Tutorials** | -| [Getting Started](https://docs.nerf.studio/quickstart/installation.html) | A more in-depth guide on how to get started with nerfstudio from installation to contributing. | -| [Using the Viewer](https://docs.nerf.studio/quickstart/viewer_quickstart.html) | A quick demo video on how to navigate the viewer. | -| [Using Record3D](https://www.youtube.com/watch?v=XwKq7qDQCQk) | Demo video on how to run nerfstudio without using COLMAP. | -| πŸ’» **For Developers** | -| [Creating pipelines](https://docs.nerf.studio/developer_guides/pipelines/index.html) | Learn how to easily build new neural rendering pipelines by using and/or implementing new modules. | -| [Creating datasets](https://docs.nerf.studio/quickstart/custom_dataset.html) | Have a new dataset? Learn how to run it with nerfstudio. | -| [Contributing](https://docs.nerf.studio/reference/contributing.html) | Walk-through for how you can start contributing now. | -| πŸ’– **Community** | -| [Discord](https://discord.gg/uMbNqcraFc) | Join our community to discuss more. We would love to hear from you! | -| [Twitter](https://twitter.com/nerfstudioteam) | Follow us on Twitter @nerfstudioteam to see cool updates and announcements | -| [Feedback Form](TODO) | We welcome any feedback! This is our chance to learn what you all are using Nerfstudio for. | - -# Supported Features - -We provide the following support structures to make life easier for getting started with NeRFs. - -**If you are looking for a feature that is not currently supported, please do not hesitate to contact the Nerfstudio Team on [Discord](https://discord.gg/uMbNqcraFc)!** - -- :mag_right: Web-based visualizer that allows you to: - - Visualize training in real-time + interact with the scene - - Create and render out scenes with custom camera trajectories - - View different output types - - And more! -- :pencil2: Support for multiple logging interfaces (Tensorboard, Wandb), code profiling, and other built-in debugging tools -- :chart_with_upwards_trend: Easy-to-use benchmarking scripts on the Blender dataset -- :iphone: Full pipeline support (w/ Colmap, Polycam, or Record3D) for going from a video on your phone to a full 3D render. -# Built On +# Planned Features/TODOs - - - - - - tyro logo - - - - +- [ ] UniSim plug-in +- [x] Release code -- Easy-to-use config system -- Developed by [Brent Yi](https://brentyi.com/) +# Built On - + - + - tyro logo + tyro logo -- Library for accelerating NeRF renders -- Developed by [Ruilong Li](https://www.liruilong.cn/) +- Collaboration friendly studio for NeRFs # Citation -You can find a paper writeup of the framework on [arXiv](https://arxiv.org/abs/2302.04264). +You can find our paper on [arXiv](https://arxiv.org/abs/2311.15260). -If you use this library or find the documentation useful for your research, please consider citing: +If you use this code or find our paper useful, please consider citing: -``` -@inproceedings{nerfstudio, - title = {Nerfstudio: A Modular Framework for Neural Radiance Field Development}, - author = { - Tancik, Matthew and Weber, Ethan and Ng, Evonne and Li, Ruilong and Yi, Brent - and Kerr, Justin and Wang, Terrance and Kristoffersen, Alexander and Austin, - Jake and Salahi, Kamyar and Ahuja, Abhik and McAllister, David and Kanazawa, - Angjoo - }, - year = 2023, - booktitle = {ACM SIGGRAPH 2023 Conference Proceedings}, - series = {SIGGRAPH '23} +```bibtex +@article{neurad, + title={NeuRAD: Neural Rendering for Autonomous Driving}, + author={Tonderski, Adam and Lindstr{\"o}m, Carl and Hess, Georg and Ljungbergh, William and Svensson, Lennart and Petersson, Christoffer}, + journal={arXiv preprint arXiv:2311.15260}, + year={2023} } ``` # Contributors - - + + diff --git a/apptainer_recipe b/apptainer_recipe new file mode 100644 index 00000000..0b75583d --- /dev/null +++ b/apptainer_recipe @@ -0,0 +1,78 @@ +Bootstrap: docker +From: nvidia/cuda:11.8.0-devel-ubuntu22.04 +Stage: spython-base + +%files +. /nerfstudio +%labels +org.opencontainers.image.version = "0.1.18" +org.opencontainers.image.source = "https://github.com/nerfstudio-project/nerfstudio" +org.opencontainers.image.licenses = "Apache License 2.0" +org.opencontainers.image.base.name = "docker.io/library/nvidia/cuda:11.8.0-devel-ubuntu22.04" +%post + +# Install required apt packages and clear cache afterwards. +DEBIAN_FRONTEND=noninteractive TZ=Europe/Berlin apt-get update && \ +apt-get install -y --no-install-recommends \ +build-essential \ +cmake \ +curl \ +ffmpeg \ +git \ +libatlas-base-dev \ +libboost-filesystem-dev \ +libboost-graph-dev \ +libboost-program-options-dev \ +libboost-system-dev \ +libboost-test-dev \ +libhdf5-dev \ +libcgal-dev \ +libeigen3-dev \ +libflann-dev \ +libfreeimage-dev \ +libgflags-dev \ +libglew-dev \ +libgoogle-glog-dev \ +libmetis-dev \ +libprotobuf-dev \ +libqt5opengl5-dev \ +libsqlite3-dev \ +libsuitesparse-dev \ +protobuf-compiler \ +python-is-python3 \ +python3.10-dev \ +python3-pip \ +qtbase5-dev \ +wget \ +&& \ +rm -rf /var/lib/apt/lists/* + +# Upgrade pip and install packages. +python3.10 -m pip install --no-cache-dir --upgrade pip setuptools pathtools promise pybind11 +# Install pytorch and submodules +python3.10 -m pip install --no-cache-dir torch==2.0.1+cu118 torchvision==0.15.2+cu118 --extra-index-url https://download.pytorch.org/whl/cu118 +# Install tinyCUDNN (we need to set the target architectures as environment variable first). +TCNN_CUDA_ARCHITECTURES="90;89;86;80;75" python3.10 -m pip install --no-cache-dir git+https://github.com/NVlabs/tiny-cuda-nn.git@v1.6#subdirectory=bindings/torch + +# Install nerfstudio dependencies. +cd /nerfstudio && python3.10 -m pip install --no-cache-dir -e . + +# Change working directory +mkdir -p /workspace +cd /workspace + +# Install nerfstudio cli auto completion +ns-install-cli --mode install + +# Bash as default entrypoint. +%environment +export DEBIAN_FRONTEND=noninteractive +export TZ=Europe/Berlin +export CUDA_HOME="/usr/local/cuda" +export TCNN_CUDA_ARCHITECTURES="90;89;86;80;75" +%runscript +cd /workspace +exec /bin/bash /bin/bash -l "$@" +%startscript +cd /workspace +exec /bin/bash /bin/bash -l "$@" diff --git a/colab/demo.ipynb b/colab/demo.ipynb deleted file mode 100644 index 96eaa25f..00000000 --- a/colab/demo.ipynb +++ /dev/null @@ -1,283 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": { - "colab_type": "text", - "id": "view-in-github" - }, - "source": [ - "\"Open" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "SiiXJ7K_fePG" - }, - "source": [ - "

\n", - " \n", - " \n", - " \n", - " \"nerfstudio\"\n", - " \n", - "

\n", - "\n", - "\n", - "# Nerfstudio: A collaboration friendly studio for NeRFs\n", - "\n", - "\n", - "![GitHub stars](https://img.shields.io/github/stars/nerfstudio-project/nerfstudio?color=gold&style=social)\n", - "\n", - "This colab shows how to train and view NeRFs from Nerfstudio both on pre-made datasets or from your own videos/images.\n", - "\n", - "\\\\\n", - "\n", - "Credit to [NeX](https://nex-mpi.github.io/) for Google Colab format." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "Yyx5h6kz5ga7" - }, - "source": [ - "## Frequently Asked Questions\n", - "\n", - "* **Downloading custom data is stalling (no output):**\n", - " * This is a bug in Colab. The data is processing, but may take a while to complete. You will know processing completed if `data/nerfstudio/custom_data/transforms.json` exists. Terminating the cell early will result in not being able to train.\n", - "* **Processing custom data is taking a long time:**\n", - " * The time it takes to process data depends on the number of images and its resolution. If processing is taking too long, try lowering the resolution of your custom data.\n", - "* **Error: Data processing did not complete:**\n", - " * This means that the data processing script did not fully complete. This could be because there were not enough images, or that the images were of low quality. We recommend images with little to no motion blur and lots of visual overlap of the scene to increase the chances of successful processing.\n", - "* **Training is not showing progress**:\n", - " * The lack of output is a bug in Colab. You can see the training progress from the viewer.\n", - "* **Viewer Quality is bad / Low resolution**:\n", - " * This may be because more GPU is being used on training that rendering the viewer. Try pausing training or decreasing training utilization.\n", - "* **WARNING: Running pip as the 'root' user...:**:\n", - " * This and other pip warnings or errors can be safely ignored.\n", - "* **Other problems?**\n", - " * Feel free to create an issue on our [GitHub repo](https://github.com/nerfstudio-project/nerfstudio).\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "cellView": "form", - "id": "9oyLHl8QfYwP" - }, - "outputs": [], - "source": [ - "#@markdown

Install Nerfstudio and Dependencies (~8 min)

\n", - "\n", - "%cd /content/\n", - "!pip install --upgrade pip\n", - "!pip install torch==2.0.1+cu118 torchvision==0.15.2+cu118 torchaudio==2.0.2+cu118 --extra-index-url https://download.pytorch.org/whl/cu118\n", - "\n", - "# Installing TinyCuda\n", - "%cd /content/\n", - "!gdown \"https://drive.google.com/u/1/uc?id=1-7x7qQfB7bIw2zV4Lr6-yhvMpjXC84Q5&confirm=t\"\n", - "!pip install tinycudann-1.7-cp310-cp310-linux_x86_64.whl\n", - "\n", - "# Installing COLMAP\n", - "%cd /content/\n", - "!apt-get install colmap\n", - "\n", - "# Install nerfstudio\n", - "%cd /content/\n", - "!pip install git+https://github.com/nerfstudio-project/nerfstudio.git" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "cellView": "form", - "id": "msVLprI4gRA4" - }, - "outputs": [], - "source": [ - "#@markdown

Downloading and Processing Data

\n", - "#@markdown

Pick the preset scene or upload your own images/video

\n", - "import os\n", - "import glob\n", - "from google.colab import files\n", - "from IPython.core.display import display, HTML\n", - "\n", - "scene = '\\uD83D\\uDDBC poster' #@param ['πŸ–Ό poster', '🚜 dozer', 'πŸŒ„ desolation', 'πŸ“€ upload your images' , 'πŸŽ₯ upload your own video', 'πŸ”Ί upload Polycam data', 'πŸ’½ upload your own Record3D data']\n", - "scene = ' '.join(scene.split(' ')[1:])\n", - "\n", - "if scene == \"upload Polycam data\":\n", - " %cd /content/\n", - " !mkdir -p /content/data/nerfstudio/custom_data\n", - " %cd /content/data/nerfstudio/custom_data/\n", - " uploaded = files.upload()\n", - " dir = os.getcwd()\n", - " if len(uploaded.keys()) > 1:\n", - " print(\"ERROR, upload a single .zip file when processing Polycam data\")\n", - " dataset_dir = [os.path.join(dir, f) for f in uploaded.keys()][0]\n", - " !ns-process-data polycam --data $dataset_dir --output-dir /content/data/nerfstudio/custom_data/\n", - " scene = \"custom_data\"\n", - "elif scene == 'upload your own Record3D data':\n", - " display(HTML('

Zip your Record3D folder, and upload.

'))\n", - " display(HTML('

More information on Record3D can be found here.

'))\n", - " %cd /content/\n", - " !mkdir -p /content/data/nerfstudio/custom_data\n", - " %cd /content/data/nerfstudio/custom_data/\n", - " uploaded = files.upload()\n", - " dir = os.getcwd()\n", - " preupload_datasets = [os.path.join(dir, f) for f in uploaded.keys()]\n", - " record_3d_zipfile = preupload_datasets[0]\n", - " !unzip $record_3d_zipfile -d /content/data/nerfstudio/custom_data\n", - " custom_data_directory = glob.glob('/content/data/nerfstudio/custom_data/*')[0]\n", - " !ns-process-data record3d --data $custom_data_directory --output-dir /content/data/nerfstudio/custom_data/\n", - " scene = \"custom_data\"\n", - "elif scene in ['upload your images', 'upload your own video']:\n", - " display(HTML('

Select your custom data

'))\n", - " display(HTML('

You can select multiple images by pressing ctrl, cmd or shift and click.

'))\n", - " display(HTML('

Note: This may take time, especially on higher resolution inputs, so we recommend to download dataset after creation.

'))\n", - " !mkdir -p /content/data/nerfstudio/custom_data\n", - " if scene == 'upload your images':\n", - " !mkdir -p /content/data/nerfstudio/custom_data/raw_images\n", - " %cd /content/data/nerfstudio/custom_data/raw_images\n", - " uploaded = files.upload()\n", - " dir = os.getcwd()\n", - " else:\n", - " %cd /content/data/nerfstudio/custom_data/\n", - " uploaded = files.upload()\n", - " dir = os.getcwd()\n", - " preupload_datasets = [os.path.join(dir, f) for f in uploaded.keys()]\n", - " del uploaded\n", - " %cd /content/\n", - "\n", - " if scene == 'upload your images':\n", - " !ns-process-data images --data /content/data/nerfstudio/custom_data/raw_images --output-dir /content/data/nerfstudio/custom_data/\n", - " else:\n", - " video_path = preupload_datasets[0]\n", - " !ns-process-data video --data $video_path --output-dir /content/data/nerfstudio/custom_data/\n", - "\n", - " scene = \"custom_data\"\n", - "else:\n", - " %cd /content/\n", - " !ns-download-data nerfstudio --capture-name=$scene\n", - "\n", - "print(\"Data Processing Succeeded!\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "cellView": "form", - "id": "m_N8_cLfjoXD" - }, - "outputs": [], - "source": [ - "#@markdown

Start Training

\n", - "\n", - "%cd /content\n", - "!pip install colab-xterm\n", - "%load_ext colabxterm\n", - "%env TERM=xterm\n", - "from IPython.display import clear_output\n", - "clear_output(wait=True)\n", - "if os.path.exists(f\"data/nerfstudio/{scene}/transforms.json\"):\n", - " print(\"\\033[1m\" + \"Copy and paste the following command into the terminal window that pops up under this cell.\" + \"\\033[0m\")\n", - " print(f\"ns-train nerfacto --viewer.websocket-port 7007 --viewer.make-share-url True nerfstudio-data --data data/nerfstudio/{scene} --downscale-factor 4\")\n", - " print()\n", - " %xterm\n", - "else:\n", - " from IPython.core.display import display, HTML\n", - " display(HTML('

Error: Data processing did not complete

'))\n", - " display(HTML('

Please re-run `Downloading and Processing Data`, or view the FAQ for more info.

'))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "cellView": "form", - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "WGt8ukG6Htg3", - "outputId": "fa946890-c7d8-4e46-a54e-7231bc5a2059" - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\u001b[2;36m[19:48:48]\u001b[0m\u001b[2;36m \u001b[0mSkipping \u001b[1;36m0\u001b[0m files in dataset split train. \u001b]8;id=527413;file:///content/nerfstudio/nerfstudio/data/dataparsers/nerfstudio_dataparser.py\u001b\\\u001b[2mnerfstudio_dataparser.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=243595;file:///content/nerfstudio/nerfstudio/data/dataparsers/nerfstudio_dataparser.py#91\u001b\\\u001b[2m91\u001b[0m\u001b]8;;\u001b\\\n", - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0mSkipping \u001b[1;36m0\u001b[0m files in dataset split test. \u001b]8;id=109270;file:///content/nerfstudio/nerfstudio/data/dataparsers/nerfstudio_dataparser.py\u001b\\\u001b[2mnerfstudio_dataparser.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=464675;file:///content/nerfstudio/nerfstudio/data/dataparsers/nerfstudio_dataparser.py#91\u001b\\\u001b[2m91\u001b[0m\u001b]8;;\u001b\\\n", - "\u001b[2KLoading data batch \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[35m100%\u001b[0m \u001b[36m0:00:00\u001b[0m\n", - "\u001b[?25h/usr/local/lib/python3.7/site-packages/torch/utils/data/dataloader.py:566: UserWarning: This DataLoader will create 4 worker processes in total. Our suggested max number of worker in current system is 2, which is smaller than what this DataLoader is going to create. Please be aware that excessive worker creation might get DataLoader running slow or even freeze, lower the worker number to avoid potential slowness/freeze if necessary.\n", - " cpuset_checked))\n", - "\u001b[2KLoading data batch \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[35m100%\u001b[0m \u001b[36m0:00:00\u001b[0m\n", - "\u001b[?25h/usr/local/lib/python3.7/site-packages/torchvision/models/_utils.py:209: UserWarning: The parameter 'pretrained' is deprecated since 0.13 and will be removed in 0.15, please use 'weights' instead.\n", - " f\"The parameter '{pretrained_param}' is deprecated since 0.13 and will be removed in 0.15, \"\n", - "/usr/local/lib/python3.7/site-packages/torchvision/models/_utils.py:223: UserWarning: Arguments other than a weight enum or `None` for 'weights' are deprecated since 0.13 and will be removed in 0.15. The current behavior is equivalent to passing `weights=AlexNet_Weights.IMAGENET1K_V1`. You can also use `weights=AlexNet_Weights.DEFAULT` to get the most up-to-date weights.\n", - " warnings.warn(msg)\n", - "Loading latest checkpoint from load_dir\n", - "βœ… Done loading checkpoint from \n", - "outputs/data-nerfstudio-poster/nerfacto/\u001b[1;36m2022\u001b[0m-\u001b[1;36m10\u001b[0m-29_192844/nerfstudio_models/step-\u001b[1;36m000014000.\u001b[0mckpt\n", - "\u001b[1;32mCreating trajectory video\u001b[0m\n", - "\u001b[2KπŸŽ₯ Rendering πŸŽ₯ \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[35m100%\u001b[0m \u001b[31m0.14 fps\u001b[0m \u001b[33m11:47\u001b[0m\n", - "\u001b[2K\u001b[32m( ● )\u001b[0m \u001b[33mSaving video\u001b[0m\n", - "\u001b[1A\u001b[2K\u001b[92m────────────────────────────────────────────── \u001b[0m\u001b[32m πŸŽ‰ πŸŽ‰ πŸŽ‰ Success πŸŽ‰ πŸŽ‰ πŸŽ‰\u001b[0m\u001b[92m ──────────────────────────────────────────────\u001b[0m\n", - " \u001b[32mSaved video to renders/output.mp4\u001b[0m \n", - "\u001b[0m" - ] - } - ], - "source": [ - "#@title # Render Video { vertical-output: true }\n", - "#@markdown

Export the camera path from within the viewer, then run this cell.

\n", - "#@markdown
The rendered video should be at renders/output.mp4!
\n", - "\n", - "\n", - "base_dir = \"/content/outputs/unnamed/nerfacto/\"\n", - "training_run_dir = base_dir + os.listdir(base_dir)[0]\n", - "\n", - "from IPython.core.display import display, HTML\n", - "display(HTML('

Upload the camera path JSON.

'))\n", - "%cd $training_run_dir\n", - "uploaded = files.upload()\n", - "uploaded_camera_path_filename = list(uploaded.keys())[0]\n", - "\n", - "config_filename = training_run_dir + \"/config.yml\"\n", - "camera_path_filename = training_run_dir + \"/\" + uploaded_camera_path_filename\n", - "camera_path_filename = camera_path_filename.replace(\" \", \"\\\\ \").replace(\"(\", \"\\\\(\").replace(\")\", \"\\\\)\")\n", - "\n", - "%cd /content/\n", - "!ns-render camera-path --load-config $config_filename --camera-path-filename $camera_path_filename --output-path renders/output.mp4" - ] - } - ], - "metadata": { - "accelerator": "GPU", - "colab": { - "include_colab_link": true, - "provenance": [] - }, - "gpuClass": "standard", - "kernelspec": { - "display_name": "Python 3.8.13 ('nerfstudio')", - "language": "python", - "name": "python3" - }, - "language_info": { - "name": "python", - "version": "3.8.13" - }, - "vscode": { - "interpreter": { - "hash": "c59f626636933ef1dc834fb3684b382f705301c5306cf8436d2da634c2289783" - } - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/docs/Makefile b/docs/Makefile deleted file mode 100644 index 5f832266..00000000 --- a/docs/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -# Minimal makefile for Sphinx documentation -# - -# You can set these variables from the command line, and also -# from the environment for the first two. -SPHINXOPTS ?= -W --keep-going # build fail on warning -SPHINXBUILD ?= sphinx-build -SOURCEDIR = . -BUILDDIR = _build - -# Put it first so that "make" without argument is like "make help". -help: - @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) - -.PHONY: help Makefile - -# Catch-all target: route all unknown targets to Sphinx using the new -# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). -%: Makefile - @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) diff --git a/docs/_pygments/style.py b/docs/_pygments/style.py deleted file mode 100644 index 6231c736..00000000 --- a/docs/_pygments/style.py +++ /dev/null @@ -1,101 +0,0 @@ -"""Custom Pygments styles for the Sphinx documentation.""" - -from pygments.style import Style -from pygments.token import ( - Comment, - Error, - Generic, - Keyword, - Name, - Number, - Operator, - Punctuation, - String, - Token, - Whitespace, -) - - -class NerfstudioStyleLight(Style): - """ - A style based on the manni pygments style. - """ - - background_color = "#f8f9fb" - - styles = { - Whitespace: "#bbbbbb", - Comment: "italic #d34600", - Comment.Preproc: "noitalic #009999", - Comment.Special: "bold", - Keyword: "bold #006699", - Keyword.Pseudo: "nobold", - Keyword.Type: "#007788", - Operator: "#555555", - Operator.Word: "bold #000000", - Name.Builtin: "#336666", - Name.Function: "#CC00FF", - Name.Class: "bold #00AA88", - Name.Namespace: "bold #00CCFF", - Name.Exception: "bold #CC0000", - Name.Variable: "#003333", - Name.Constant: "#336600", - Name.Label: "#9999FF", - Name.Entity: "bold #999999", - Name.Attribute: "#330099", - Name.Tag: "bold #330099", - Name.Decorator: "#9999FF", - String: "#CC3300", - String.Doc: "italic", - String.Interpol: "#AA0000", - String.Escape: "bold #CC3300", - String.Regex: "#33AAAA", - String.Symbol: "#FFCC33", - String.Other: "#CC3300", - Number: "#FF6600", - Generic.Heading: "bold #003300", - Generic.Subheading: "bold #003300", - Generic.Deleted: "border:#CC0000 bg:#FFCCCC", - Generic.Inserted: "border:#00CC00 bg:#CCFFCC", - Generic.Error: "#FF0000", - Generic.Emph: "italic", - Generic.Strong: "bold", - Generic.Prompt: "bold #000099", - Generic.Output: "#AAAAAA", - Generic.Traceback: "#99CC66", - Error: "bg:#FFAAAA #AA0000", - } - - -class NerfstudioStyleDark(Style): - """ - A style based on the one-dark style. - """ - - background_color = "#282C34" - - styles = { - Token: "#ABB2BF", - Punctuation: "#ABB2BF", - Punctuation.Marker: "#ABB2BF", - Keyword: "#C678DD", - Keyword.Constant: "#fdd06c", - Keyword.Declaration: "#C678DD", - Keyword.Namespace: "#C678DD", - Keyword.Reserved: "#C678DD", - Keyword.Type: "#fdd06c", - Name: "#ff8c58", - Name.Attribute: "#ff8c58", - Name.Builtin: "#fdd06c", - Name.Class: "#fdd06c", - Name.Function: "bold #61AFEF", - Name.Function.Magic: "bold #56B6C2", - Name.Other: "#ff8c58", - Name.Tag: "#ff8c58", - Name.Decorator: "#61AFEF", - Name.Variable.Class: "", - String: "#bde3a1", - Number: "#D19A66", - Operator: "#56B6C2", - Comment: "#7F848E", - } diff --git a/docs/_static/custom.js b/docs/_static/custom.js deleted file mode 100644 index 7fa8c944..00000000 --- a/docs/_static/custom.js +++ /dev/null @@ -1,6 +0,0 @@ -requirejs.config({ - paths: { - base: '/static/base', - plotly: 'https://cdn.plot.ly/plotly-2.12.1.min.js?noext', - }, -}); \ No newline at end of file diff --git a/docs/_static/imgs/bair_dark.png b/docs/_static/imgs/bair_dark.png deleted file mode 100644 index 23407523..00000000 Binary files a/docs/_static/imgs/bair_dark.png and /dev/null differ diff --git a/docs/_static/imgs/bair_light.png b/docs/_static/imgs/bair_light.png deleted file mode 100644 index a09794a3..00000000 Binary files a/docs/_static/imgs/bair_light.png and /dev/null differ diff --git a/docs/_static/imgs/luma_dark.png b/docs/_static/imgs/luma_dark.png deleted file mode 100644 index a7833328..00000000 Binary files a/docs/_static/imgs/luma_dark.png and /dev/null differ diff --git a/docs/_static/imgs/luma_light.png b/docs/_static/imgs/luma_light.png deleted file mode 100644 index a4bdc7cc..00000000 Binary files a/docs/_static/imgs/luma_light.png and /dev/null differ diff --git a/docs/_static/imgs/neurad_logo_with_text.png b/docs/_static/imgs/neurad_logo_with_text.png new file mode 100644 index 00000000..62b5dbfb Binary files /dev/null and b/docs/_static/imgs/neurad_logo_with_text.png differ diff --git a/docs/_static/imgs/neurad_logo_with_text_dark.png b/docs/_static/imgs/neurad_logo_with_text_dark.png new file mode 100644 index 00000000..f84fa45e Binary files /dev/null and b/docs/_static/imgs/neurad_logo_with_text_dark.png differ diff --git a/docs/_static/imgs/readme_colab.png b/docs/_static/imgs/readme_colab.png deleted file mode 100644 index 2ba11d76..00000000 Binary files a/docs/_static/imgs/readme_colab.png and /dev/null differ diff --git a/docs/_static/imgs/readme_documentation.png b/docs/_static/imgs/readme_documentation.png deleted file mode 100644 index a6be9c6e..00000000 Binary files a/docs/_static/imgs/readme_documentation.png and /dev/null differ diff --git a/docs/_static/imgs/readme_training_progress_example.png b/docs/_static/imgs/readme_training_progress_example.png new file mode 100644 index 00000000..ab3af98e Binary files /dev/null and b/docs/_static/imgs/readme_training_progress_example.png differ diff --git a/docs/_static/imgs/readme_viewer.png b/docs/_static/imgs/readme_viewer.png deleted file mode 100644 index 033958a2..00000000 Binary files a/docs/_static/imgs/readme_viewer.png and /dev/null differ diff --git a/docs/_static/imgs/readme_viewer_neurad.png b/docs/_static/imgs/readme_viewer_neurad.png new file mode 100644 index 00000000..242a24ec Binary files /dev/null and b/docs/_static/imgs/readme_viewer_neurad.png differ diff --git a/docs/_static/require.min.js b/docs/_static/require.min.js deleted file mode 100644 index 75d9b0eb..00000000 --- a/docs/_static/require.min.js +++ /dev/null @@ -1 +0,0 @@ -var requirejs,require,define;!function(global,setTimeout){var req,s,head,baseElement,dataMain,src,interactiveScript,currentlyAddingScript,mainScript,subPath,version="2.3.6",commentRegExp=/\/\*[\s\S]*?\*\/|([^:"'=]|^)\/\/.*$/gm,cjsRequireRegExp=/[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g,jsSuffixRegExp=/\.js$/,currDirRegExp=/^\.\//,op=Object.prototype,ostring=op.toString,hasOwn=op.hasOwnProperty,isBrowser=!("undefined"==typeof window||"undefined"==typeof navigator||!window.document),isWebWorker=!isBrowser&&"undefined"!=typeof importScripts,readyRegExp=isBrowser&&"PLAYSTATION 3"===navigator.platform?/^complete$/:/^(complete|loaded)$/,defContextName="_",isOpera="undefined"!=typeof opera&&"[object Opera]"===opera.toString(),contexts={},cfg={},globalDefQueue=[],useInteractive=!1;function commentReplace(e,t){return t||""}function isFunction(e){return"[object Function]"===ostring.call(e)}function isArray(e){return"[object Array]"===ostring.call(e)}function each(e,t){var i;if(e)for(i=0;i - - - - {%- block site_meta -%} - - - - - {%- if metatags %}{{ metatags }}{% endif -%} - - {%- block linktags %} - {%- if hasdoc('about') -%} - - {%- endif -%} - {%- if hasdoc('genindex') -%} - - {%- endif -%} - {%- if hasdoc('search') -%} - - {%- endif -%} - {%- if hasdoc('copyright') -%} - - {%- endif -%} - {%- if next -%} - - {%- endif -%} - {%- if prev -%} - - {%- endif -%} - {#- rel="canonical" (set by html_baseurl) -#} - {%- if pageurl %} - - {%- endif %} - {%- endblock linktags %} - - {# Favicon #} - {%- if favicon_url -%} - - {%- endif -%} - - {#- Generator banner -#} - - - {%- endblock site_meta -%} - - {#- Site title -#} - {%- block htmltitle -%} - {% if not docstitle %} - {{ title|striptags|e }} - {% elif pagename == master_doc %} - {{ docstitle|striptags|e }} - {% else %} - {{ title|striptags|e }} - {{ docstitle|striptags|e }} - {% endif %} - {%- endblock -%} - - {%- block styles -%} - - {# Custom stylesheets #} - {%- block regular_styles -%} - {%- for css in css_files -%} - {% if css|attr("filename") -%} - {{ css_tag(css) }} - {%- else -%} - - {%- endif %} - {% endfor -%} - {%- endblock regular_styles -%} - - {#- Theme-related stylesheets -#} - {%- block theme_styles %} - {% include "partials/_head_css_variables.html" with context %} - {%- endblock -%} - - {%- block extra_styles %} - {%- endblock -%} - - {%- endblock styles -%} - - {#- Custom front matter #} - {%- block extrahead -%}{%- endblock -%} - - {# Custom JS #} - {%- block regular_scripts -%} - {% for path in script_files -%} - {{ js_tag(path) }} - {% endfor -%} - {%- endblock regular_scripts -%} - - {# Theme-related JavaScript code #} - {%- block theme_scripts -%} - {%- endblock -%} - - - - - {% block body %} - - {% endblock %} - - {%- block scripts -%} - {%- endblock scripts -%} - - - \ No newline at end of file diff --git a/docs/_templates/sidebar/brand.html b/docs/_templates/sidebar/brand.html deleted file mode 100644 index 7a0140a9..00000000 --- a/docs/_templates/sidebar/brand.html +++ /dev/null @@ -1,102 +0,0 @@ -{#- Hi there! You might be interested in -https://pradyunsg.me/furo/customisation/sidebar/ Although if you're reading -this, chances are that you're either familiar enough with Sphinx that you know -what you're doing, or landed here from that documentation page. Hope your day's -going well. :) -#} - - -
- - - - Github - -
- - - - - - - - - - -  colab -
diff --git a/docs/conf.py b/docs/conf.py deleted file mode 100644 index bfd1ed83..00000000 --- a/docs/conf.py +++ /dev/null @@ -1,127 +0,0 @@ -# Configuration file for the Sphinx documentation builder. -# -# This file only contains a selection of the most common options. For a full -# list see the documentation: -# https://www.sphinx-doc.org/en/master/usage/configuration.html - -# -- Path setup -------------------------------------------------------------- - -# If extensions (or modules to document with autodoc) are in another directory, -# add these directories to sys.path here. If the directory is relative to the -# documentation root, use os.path.abspath to make it absolute, like shown here. -# -import os -import sys - -sys.path.insert(0, os.path.abspath("..")) -sys.path.append(os.path.abspath("./_pygments")) - -# -- Project information ----------------------------------------------------- - -project = "nerfstudio" -copyright = "2022, nerfstudio Team" -author = "nerfstudio Team" - -# -- General configuration --------------------------------------------------- - -# Add any Sphinx extension module names here, as strings. They can be -# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom -# ones. -extensions = [ - "sphinxarg.ext", - "sphinx.ext.duration", - "sphinx.ext.doctest", - "sphinx.ext.autodoc", - "sphinx.ext.intersphinx", - "sphinxemoji.sphinxemoji", - "myst_nb", - "sphinx.ext.napoleon", - "sphinx_copybutton", - "sphinx_design", - "sphinx.ext.mathjax", - "sphinxext.opengraph", - "sphinx.ext.viewcode", -] - -# List of patterns, relative to source directory, that match files and -# directories to ignore when looking for source files. -# This pattern also affects html_static_path and html_extra_path. -exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] -suppress_warnings = ["myst.header"] - -# Add any paths that contain templates here, relative to this directory. -templates_path = ["_templates"] - -# Add any paths that contain custom static files (such as style sheets) here, -# relative to this directory. They are copied after the builtin static files, -# so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ["_static"] - -# Needed for interactive plotly in notebooks -html_js_files = [ - "require.min.js", - "custom.js", -] - -# -- MYST configs ----------------------------------------------------------- - -# To enable admonitions: -myst_enable_extensions = ["amsmath", "colon_fence", "deflist", "dollarmath", "html_image", "substitution"] - - -# -- Options for open graph ------------------------------------------------- - -ogp_site_url = "http://docs.nerf.studio/" -ogp_image = "https://assets.nerf.studio/opg.png" - -# -- Options for HTML output ------------------------------------------------- - -# The theme to use for HTML and HTML Help pages. See the documentation for -# a list of builtin themes. -# -html_theme = "furo" -html_title = "nerfstudio" - -autosectionlabel_prefix_document = True - -html_theme_options = { - "light_css_variables": { - "color-brand-primary": "#d34600", - "color-brand-content": "#ff6f00", - }, - "dark_css_variables": { - "color-brand-primary": "#fdd06c", - "color-brand-content": "##fea96a", - }, - "light_logo": "imgs/logo.png", - "dark_logo": "imgs/logo-dark.png", -} - -# -- Code block theme -------------------------------------------------------- - -pygments_style = "style.NerfstudioStyleLight" -pygments_dark_style = "style.NerfstudioStyleDark" - -# -- Napoleon settings ------------------------------------------------------- - -# Settings for parsing non-sphinx style docstrings. We use Google style in this -# project. -napoleon_google_docstring = True -napoleon_numpy_docstring = False -napoleon_include_init_with_doc = False -napoleon_include_private_with_doc = False -napoleon_include_special_with_doc = True -napoleon_use_admonition_for_examples = False -napoleon_use_admonition_for_notes = False -napoleon_use_admonition_for_references = False -napoleon_use_ivar = False -napoleon_use_param = True -napoleon_use_rtype = True -napoleon_preprocess_types = False -napoleon_type_aliases = None -napoleon_attr_annotations = True - -# -- MYSTNB ----------------------------------------------------------------- - -suppress_warnings = ["mystnb.unknown_mime_type", "myst.header"] -nb_execution_mode = "off" diff --git a/docs/developer_guides/config.md b/docs/developer_guides/config.md deleted file mode 100644 index acf6914d..00000000 --- a/docs/developer_guides/config.md +++ /dev/null @@ -1,120 +0,0 @@ -# Customizable configs - -Our dataclass configs allow you to easily plug in different permutations of models, dataloaders, modules, etc. -and modify all parameters from a typed CLI supported by [tyro](https://pypi.org/project/tyro/). - -### Base components - -All basic, reusable config components can be found in `nerfstudio/configs/base_config.py`. The `Config` class at the bottom of the file is the upper-most config level and stores all of the sub-configs needed to get started with training. - -You can browse this file and read the attribute annotations to see what configs are available and what each specifies. - -### Creating new configs - -If you are interested in creating a brand new model or data format, you will need to create a corresponding config with associated parameters you want to expose as configurable. - -Let's say you want to create a new model called Nerfacto. You can create a new `Model` class that extends the base class as described [here](pipelines/models.ipynb). Before the model definition, you define the actual `NerfactoModelConfig` which points to the `NerfactoModel` class (make sure to wrap the `_target` classes in a `field` as shown below). - -:::{admonition} Tip -:class: info - -You can then enable type/auto complete on the config passed into the `NerfactoModel` by specifying the config type below the class definition. -::: - -```python -"""nerfstudio/models/nerfacto.py""" - -@dataclass -class NerfactoModelConfig(ModelConfig): - """Nerfacto Model Config""" - - _target: Type = field(default_factory=lambda: NerfactoModel) - ... - -class NerfactoModel(Model): - """Nerfacto model - - Args: - config: Nerfacto configuration to instantiate model - """ - - config: NerfactoModelConfig - ... -``` - -The same logic applies to all other custom configs you want to create. For more examples, you can see `nerfstudio/data/dataparsers/nerfstudio_dataparsers.py`, `nerfstudio/data/datamanagers.py`. - -:::{admonition} See Also -:class: seealso - -For how to create the actual data and model classes that follow the configs, please refer to [pipeline overview](pipelines/index.rst). -::: - -### Updating method configs - -If you are interested in creating a new model config, you will have to modify the `nerfstudio/configs/method_configs.py` file. This is where all of the configs for implemented models are housed. You can browse this file to see how we construct various existing models by modifying the `Config` class and specifying new or modified default components. - -For instance, say we created a brand new model called Nerfacto that has an associated `NerfactoModelConfig`, we can specify the following new Config by overriding the pipeline and optimizers attributes appropriately. - -```python -"""nerfstudio/configs/method_configs.py""" - -method_configs["nerfacto"] = Config( - method_name="nerfacto", - pipeline=VanillaPipelineConfig( - model=NerfactoModelConfig(eval_num_rays_per_chunk=1 << 14), - ), - optimizers={ - "proposal_networks": { - "optimizer": AdamOptimizerConfig(lr=1e-2, eps=1e-15), - "scheduler": None, - }, - "fields": { - "optimizer": AdamOptimizerConfig(lr=1e-2, eps=1e-15), - "scheduler": None, - }, - }, -) -``` - -After placing your new `Config` class into the `method_configs` dictionary, you can provide a description for the model by updating the `descriptions` dictionary at the top of the file. - -### Modifying from CLI - -Often times, you just want to play with the parameters of an existing model without having to specify a new one. You can easily do so via CLI. Below, we showcase some useful CLI commands. - -- List out all existing models - - ```bash - ns-train --help - ``` - -- List out all existing configurable parameters for `{METHOD_NAME}` - - ```bash - ns-train {METHOD_NAME} --help - ``` - -- Change the train/eval dataset - - ```bash - ns-train {METHOD_NAME} --data DATA_PATH - ``` - -- Enable the viewer - - ```bash - ns-train {METHOD_NAME} --vis viewer - ``` - -- See what options are available for the specified dataparser (e.g. blender-data) - - ```bash - ns-train {METHOD_NAME} {DATA_PARSER} --help - ``` - -- Run with changed dataparser attributes and viewer on - ```bash - # NOTE: the dataparser and associated configurations go at the end of the command - ns-train {METHOD_NAME} --vis viewer {DATA_PARSER} --scale-factor 0.5 - ``` diff --git a/docs/developer_guides/debugging_tools/benchmarking.md b/docs/developer_guides/debugging_tools/benchmarking.md deleted file mode 100644 index bf97db4b..00000000 --- a/docs/developer_guides/debugging_tools/benchmarking.md +++ /dev/null @@ -1,93 +0,0 @@ -# Benchmarking workflow - -We make it easy to benchmark your new NeRF against the standard Blender dataset. - -## Launching training on Blender dataset - -To start, you will need to train your NeRF on each of the blender objects. -To launch training jobs automatically on each of these items, you can call: - -```bash - -./nerfstudio/scripts/benchmarking/launch_train_blender.sh -m {METHOD_NAME} [-s] [-v {VIS}] [{GPU_LIST}] -``` - -Simply replace the arguments in brackets with the correct arguments. - -- `-m {METHOD_NAME}`: Name of the method you want to benchmark (e.g. `nerfacto`, `mipnerf`). -- `-s`: Launch a single job per GPU. -- `-v {VIS}`: Use another visualization than wandb, which is the default. Other options are comet & tensorboard. -- `{GPU_LIST}`: (optional) Specify the list of gpus you want to use on your machine space separated. for instance, if you want to use GPU's 0-3, you will need to pass in `0 1 2 3`. If left empty, the script will automatically find available GPU's and distribute training jobs on the available GPUs. - -:::{admonition} Tip -:class: info - -To view all the arguments and annotations, you can run `./nerfstudio/scripts/benchmarking/launch_train_blender.sh --help` -::: - -A full example would be: - -- Specifying gpus - - ```bash - ./nerfstudio/scripts/benchmarking/launch_train_blender.sh -m nerfacto 0 1 2 3 - ``` - -- Automatically find available gpus - ```bash - ./nerfstudio/scripts/benchmarking/launch_train_blender.sh -m nerfacto - ``` - -The script will automatically launch training on all of the items and save the checkpoints in an output directory with the experiment name and current timestamp. - -## Evaluating trained Blender models - -Once you have launched training, and training converges, you can test your method with `nerfstudio/scripts/benchmarking/launch_eval_blender.sh`. - -Say we ran a benchmark on 08-10-2022 for `instant-ngp`. By default, the train script will save the benchmarks in the following format: - -``` -outputs -└───blender_chair_2022-08-10 -| └───instant-ngp -| └───2022-08-10_172517 -| └───config.yml -| ... -└───blender_drums_2022-08-10 -| └───instant-ngp -| └───2022-08-10_172517 -| └───config.yml -| ... -... -``` - -If we wanted to run the benchmark on all the blender data for the above example, we would run: - -```bash - -./nerfstudio/scripts/benchmarking/launch_eval_blender.sh -m instant-ngp -o outputs/ -t 2022-08-10_172517 [{GPU_LIST}] -``` - -The flags used in the benchmarking script are defined as follows: - -- `-m`: config name (e.g. `instant-ngp`). This should be the same as what was passed in for -c in the train script. -- `-o`: base output directory for where all of the benchmarks are stored (e.g. `outputs/`). Corresponds to the `--output-dir` in the base `Config` for training. -- `-t`: timestamp of benchmark; also the identifier (e.g. `2022-08-10_172517`). -- `-s`: Launch a single job per GPU. -- `{GPU_LIST}`: (optional) Specify the list of gpus you want to use on your machine space separated. For instance, if you want to use GPU's 0-3, you will need to pass in `0 1 2 3`. If left empty, the script will automatically find available GPU's and distribute evaluation jobs on the available GPUs. - -The script will simultaneously run the benchmarking across all the objects in the blender dataset and calculates the PSNR/FPS/other stats. The results are saved as .json files in the `-o` directory with the following format: - -``` -outputs -└───instant-ngp -| └───blender_chair_2022-08-10_172517.json -| | blender_ficus_2022-08-10_172517.json -| | ... -``` - -:::{admonition} Warning -:class: warning - -Since we are running multiple backgrounded processes concurrently with this script, please note the terminal logs may be messy. -::: diff --git a/docs/developer_guides/debugging_tools/index.rst b/docs/developer_guides/debugging_tools/index.rst deleted file mode 100644 index 1a6aab8e..00000000 --- a/docs/developer_guides/debugging_tools/index.rst +++ /dev/null @@ -1,12 +0,0 @@ -Debugging tools -==================== - -We document a few of the supported tooling systems and pipelines we support for debugging our models (e.g. profiling to debug speed). -As we grow, we hope to provide more updated and extensive tooling support. - -.. toctree:: - :maxdepth: 1 - - local_logger - profiling - benchmarking \ No newline at end of file diff --git a/docs/developer_guides/debugging_tools/local_logger.md b/docs/developer_guides/debugging_tools/local_logger.md deleted file mode 100644 index 92461154..00000000 --- a/docs/developer_guides/debugging_tools/local_logger.md +++ /dev/null @@ -1,48 +0,0 @@ -# Local writer - -The `LocalWriter` simply outputs numerical stats to the terminal. -You can specify additional parameters to customize your logging experience. -A skeleton of the local writer config is defined below. - -```python -"""nerfstudio/configs/base_config.py"""" - -@dataclass -class LocalWriterConfig(InstantiateConfig): - """Local Writer config""" - - _target: Type = writer.LocalWriter - enable: bool = False - stats_to_track: Tuple[writer.EventName, ...] = ( - writer.EventName.ITER_TRAIN_TIME, - ... - ) - max_log_size: int = 10 - -``` - -You can customize the local writer by editing the attributes: -- `enable`: enable/disable the logger. -- `stats_to_track`: all the stats that you want to print to the terminal (see list under `EventName` in `utils/writer.py`). You can add or remove any of the defined enums. -- `max_log_size`: how much content to print onto the screen (By default, only print 10 lines onto the screen at a time). If 0, will print everything without deleting any previous lines. - -:::{admonition} Tip -:class: info - -If you want to create a new stat to track, simply add the stat name to the `EventName` enum. -- Remember to call some put event (e.g. `put_scalar` from `utils/writer.py` to place the value in the `EVENT_STORAGE`. -- Remember to add the new enum to the `stats_to_track` list - ::: - -The local writer is easily configurable via CLI. -A few common commands to use: - -- Disable local writer - ```bash - ns-train {METHOD_NAME} --logging.local-writer.no-enable - ``` - -- Disable line wrapping - ```bash - ns-train {METHOD_NAME} --logging.local-writer.max-log-size=0 - ``` \ No newline at end of file diff --git a/docs/developer_guides/debugging_tools/profiling.md b/docs/developer_guides/debugging_tools/profiling.md deleted file mode 100644 index aabada5f..00000000 --- a/docs/developer_guides/debugging_tools/profiling.md +++ /dev/null @@ -1,86 +0,0 @@ -# Code profiling support - -We provide built-in performance profiling capabilities to make it easier for you to debug and assess the performance of your code. - -#### In-house profiler - -You can use our built-in profiler. By default, it is enabled and will print at the termination of the program. You can disable it via CLI using the flag `--logging.no-enable-profiler`. - - -The profiler computes the average total time of execution for any function with the `@profiler.time_function` decorator. -For instance, if you wanted to profile the total time it takes to generate rays given pixel and camera indices via the `RayGenerator` class, you might want to time its `forward()` function. In that case, you would need to add the decorator to the function. - -```python -"""nerfstudio/model_components/ray_generators.py"""" - -class RayGenerator(nn.Module): - - ... - - @profiler.time_function # <-- add the profiler decorator before the function - def forward(self, ray_indices: TensorType["num_rays", 3]) -> RayBundle: - # implementation here - ... -``` - -Alternatively, you can also time parts of the code: -```python -... - -def forward(self, ray_indices: TensorType["num_rays", 3]) -> RayBundle: - # implementation here - with profiler.time_function("code1"): - # some code here - ... - - with profiler.time_function("code2"): - # some code here - ... - ... -``` - - -At termination of training or end of the training run, the profiler will print out the average execution time for all of the functions or code blocks that have the profiler tag. - -:::{admonition} Tip -:class: info - -Use this profiler if there are *specific/individual functions* you want to measure the times for. - ::: - - -#### Profiling with PyTorch profiler - -If you want to profile the training or evaluation code and track the memory and CUDA kernel launches, consider using [PyTorch profiler](https://pytorch.org/tutorials/recipes/recipes/profiler_recipe.html). -It will run the profiler for some selected step numbers, once with `CUDA_LAUNCH_BLOCKING=1`, once with `CUDA_LAUNCH_BLOCKING=0`. -The PyTorch profiler can be enabled with `--logging.profiler=pytorch` flag. -The outputs of the profiler are trace files stored in `{PATH_TO_MODEL_OUTPUT}/profiler_traces`, and can be loaded in Google Chrome by typing `chrome://tracing`. - - -#### Profiling with PySpy - -If you want to profile the entire codebase, consider using [PySpy](https://github.com/benfred/py-spy). - -Install PySpy - -```bash -pip install py-spy -``` - -To perform the profiling, you can either specify that you want to generate a flame graph or generate a live-view of the profiler. - -- flame graph: with wandb logging and our inhouse logging disabled - ```bash - program="ns-train nerfacto -- --vis=wandb --logging.no-enable-profiler blender-data" - py-spy record -o {PATH_TO_OUTPUT_SVG} $program - ``` -- top-down stats: running same program configuration as above - ```bash - py-spy top $program - ``` - -:::{admonition} Attention -:class: attention - -In defining `program`, you will need to add an extra `--` before you specify your program's arguments. - ::: \ No newline at end of file diff --git a/docs/developer_guides/new_methods.md b/docs/developer_guides/new_methods.md deleted file mode 100644 index dd1ef31e..00000000 --- a/docs/developer_guides/new_methods.md +++ /dev/null @@ -1,154 +0,0 @@ -# Adding a New Method - -Nerfstudio aims to offer researchers a codebase that they can utilize to extend and develop novel methods. Our vision is for users to establish a distinct repository that imports nerfstudio and overrides pipeline components to cater to specific functionality requirements of the new approach. If any of the new features require modifications to the core nerfstudio repository and can be generally useful, we encourage you to submit a PR to enable others to benefit from it. - -You can use the [nerfstudio-method-template](https://github.com/nerfstudio-project/nerfstudio-method-template) repository as a minimal guide to register your new methods. Examples are often the best way to learn, take a look at the [LERF](https://github.com/kerrj/lerf) repository for a good example of how to extend and use nerfstudio in your projects. - -## File Structure - -We recommend the following file structure: - -``` -β”œβ”€β”€ my_method -β”‚ β”œβ”€β”€ __init__.py -β”‚ β”œβ”€β”€ my_config.py -β”‚ β”œβ”€β”€ custom_pipeline.py [optional] -β”‚ β”œβ”€β”€ custom_model.py [optional] -β”‚ β”œβ”€β”€ custom_field.py [optional] -β”‚ β”œβ”€β”€ custom_datamanger.py [optional] -β”‚ β”œβ”€β”€ custom_dataparser.py [optional] -β”‚ β”œβ”€β”€ ... -β”œβ”€β”€ pyproject.toml -``` - -## Registering custom model with nerfstudio - -In order to extend the Nerfstudio and register your own methods, you can package your code as a python package -and register it with Nerfstudio as a `nerfstudio.method_configs` entrypoint in the `pyproject.toml` file. -Nerfstudio will automatically look for all registered methods and will register them to be used -by methods such as `ns-train`. - -First create a config file: - -```python -"""my_method/my_config.py""" - -from nerfstudio.engine.trainer import TrainerConfig -from nerfstudio.plugins.types import MethodSpecification - -MyMethod = MethodSpecification( - config=TrainerConfig( - method_name="my-method", - pipeline=... - ... - ), - description="Custom description" -) -``` - -Then create a `pyproject.toml` file. This is where the entrypoint to your method is set and also where you can specify additional dependencies required by your codebase. - -```python -"""pyproject.toml""" - -[project] -name = "my_method" - -dependencies = [ - "nerfstudio" # you may want to consider pinning the version, ie "nerfstudio==0.1.19" -] - -[tool.setuptools.packages.find] -include = ["my_method*"] - -[project.entry-points.'nerfstudio.method_configs'] -my-method = 'my_method.my_config:MyMethod' -``` - -finally run the following to register the method, - -``` -pip install -e . -``` - -When developing a new method you don't always want to install your code as a package. -Instead, you may use the `NERFSTUDIO_METHOD_CONFIGS` environment variable to temporarily register your custom method. - -``` -export NERFSTUDIO_METHOD_CONFIGS="my-method=my_method.my_config:MyMethod" -``` - -The `NERFSTUDIO_METHOD_CONFIGS` environment variable additionally accepts a function or derived class to temporarily register your custom method. - -```python -"""my_method/my_config.py""" - -from dataclasses import dataclass -from nerfstudio.engine.trainer import TrainerConfig -from nerfstudio.plugins.types import MethodSpecification - -def MyMethodFunc(): - return MethodSpecification( - config=TrainerConfig(...) - description="Custom description" - ) - -@dataclass -class MyMethodClass(MethodSpecification): - config: TrainerConfig = TrainerConfig(...) - description: str = "Custom description" -``` - -## Registering custom dataparser with nerfstudio - -We also support adding new dataparsers in a similar way. In order to extend the NeRFstudio and register a customized dataparser, you can register it with Nerfstudio as a `nerfstudio.dataparser_configs` entrypoint in the `pyproject.toml` file. Nerfstudio will automatically look for all registered dataparsers and will register them to be used by methods such as `ns-train`. - -You can declare the dataparser in the same config file: - -```python -"""my_method/my_config.py""" - -from nerfstudio.plugins.registry_dataparser import DataParserSpecification -from my_method.custom_dataparser import CustomDataparserConfig - -MyDataparser = DataParserSpecification(config=CustomDataparserConfig()) -``` - -Then add the following lines in the `pyproject.toml` file, where the entrypoint to the new dataparser is set. - -```python -"""pyproject.toml""" - -[project] -name = "my_method" - -[project.entry-points.'nerfstudio.dataparser_configs'] -custom-dataparser = 'my_method.my_config:MyDataparser' -``` - -finally run the following to register the dataparser. - -``` -pip install -e . -``` - -Similarly to the method development, you can also use environment variables to register dataparsers. -Use the `NERFSTUDIO_DATAPARSER_CONFIGS` environment variable: - -``` -export NERFSTUDIO_DATAPARSER_CONFIGS="my-dataparser=my_package.my_config:MyDataParser" -``` - -Same as with custom methods, `NERFSTUDIO_DATAPARSER_CONFIGS` environment variable additionally accepts a function or derived class to temporarily register your custom method. - -## Running custom method - -After registering your method you should be able to run the method with, - -``` -ns-train my-method --data DATA_DIR -``` - -## Adding to the _nerf.studio_ documentation - -We invite researchers to contribute their own methods to our online documentation. You can find more information on how to do this {ref}`here`. diff --git a/docs/developer_guides/pipelines/datamanagers.md b/docs/developer_guides/pipelines/datamanagers.md deleted file mode 100644 index 84722ba7..00000000 --- a/docs/developer_guides/pipelines/datamanagers.md +++ /dev/null @@ -1,96 +0,0 @@ -# DataManagers - -```{image} imgs/pipeline_datamanager-light.png -:align: center -:class: only-light -:width: 600 -``` - -```{image} imgs/pipeline_datamanager-dark.png -:align: center -:class: only-dark -:width: 600 -``` - -## What is a DataManager? - -The DataManager returns RayBundle and RayGT objects. Let's first take a look at the most important abstract methods required by the DataManager. - -```python -class DataManager(nn.Module): - """Generic data manager's abstract class - """ - - @abstractmethod - def next_train(self, step: int) -> Tuple[RayBundle, Dict]: - """Returns the next batch of data for train.""" - - @abstractmethod - def next_eval(self, step: int) -> Tuple[RayBundle, Dict]: - """Returns the next batch of data for eval.""" - - @abstractmethod - def next_eval_image(self, step: int) -> Tuple[int, RayBundle, Dict]: - """Returns the next eval image. - - Returns: - The image index from the eval dataset, the CameraRayBundle, and the RayGT dictionary. - """ -``` - -## Example - -We've implemented a VanillaDataManager that implements the standard logic of most NeRF papers. It will randomly sample training rays with corresponding ground truth information, in RayBundle and RayGT objects respectively. The config for the VanillaDataManager is the following. - -```python -@dataclass -class VanillaDataManagerConfig(InstantiateConfig): - """Configuration for data manager instantiation; DataManager is in charge of keeping the train/eval dataparsers; - After instantiation, data manager holds both train/eval datasets and is in charge of returning unpacked - train/eval data at each iteration - """ - - _target: Type = field(default_factory=lambda: VanillaDataManager) - """target class to instantiate""" - dataparser: AnnotatedDataParserUnion = BlenderDataParserConfig() - """specifies the dataparser used to unpack the data""" - train_num_rays_per_batch: int = 1024 - """number of rays per batch to use per training iteration""" - train_num_images_to_sample_from: int = -1 - """number of images to sample during training iteration""" - eval_num_rays_per_batch: int = 1024 - """number of rays per batch to use per eval iteration""" - eval_num_images_to_sample_from: int = -1 - """number of images to sample during eval iteration""" - camera_optimizer: CameraOptimizerConfig = CameraOptimizerConfig() - """specifies the camera pose optimizer used during training""" -``` - -Let's take a quick look at how the `next_train` method is implemented. Here we sample images, then pixels, and then return the RayBundle and RayGT information. - -```python -def next_train(self, step: int) -> Tuple[RayBundle, Dict]: - """Returns the next batch of data from the train dataloader.""" - self.train_count += 1 - # sample a batch of images - image_batch = next(self.iter_train_image_dataloader) - # sample pixels from this batch of images - batch = self.train_pixel_sampler.sample(image_batch) - ray_indices = batch["indices"] - # generate rays from this image and pixel indices - ray_bundle = self.train_ray_generator(ray_indices) - # return RayBundle and RayGT information - return ray_bundle, batch -``` - -You can see our code for more details. - -```{button-link} https://github.com/nerfstudio-project/nerfstudio/blob/main/nerfstudio/data/datamanagers/base_datamanager.py -:color: primary -:outline: -See the code! -``` - -## Creating Your Own - -We currently don't have other implementations because most papers follow the VanillaDataManager implementation. However, it should be straightforward to add a VanillaDataManager with logic that progressively adds cameras, for instance, by relying on the step and modifying RayBundle and RayGT generation logic. diff --git a/docs/developer_guides/pipelines/dataparsers.md b/docs/developer_guides/pipelines/dataparsers.md deleted file mode 100644 index cb1693aa..00000000 --- a/docs/developer_guides/pipelines/dataparsers.md +++ /dev/null @@ -1,134 +0,0 @@ -# DataParsers - -```{image} imgs/pipeline_parser-light.png -:align: center -:class: only-light -:width: 600 -``` - -```{image} imgs/pipeline_parser-dark.png -:align: center -:class: only-dark -:width: 600 -``` - -## What is a DataParser? - -The dataparser returns `DataparserOutputs`, which puts all the various datasets into a common format. The DataparserOutputs should be lightweight, containing filenames or other meta information which can later be processed by actual PyTorch Datasets and Dataloaders. The common format makes it easy to add another DataParser. All you have to do is implement the private method `_generate_dataparser_outputs` shown below. - -```python -@dataclass -class DataparserOutputs: - """Dataparser outputs for the which will be used by the DataManager - for creating RayBundle and RayGT objects.""" - - image_filenames: List[Path] - """Filenames for the images.""" - cameras: Cameras - """Camera object storing collection of camera information in dataset.""" - alpha_color: Optional[TensorType[3]] = None - """Color of dataset background.""" - scene_box: SceneBox = SceneBox() - """Scene box of dataset. Used to bound the scene or provide the scene scale depending on model.""" - mask_filenames: Optional[List[Path]] = None - """Filenames for any masks that are required""" - metadata: Dict[str, Any] = to_immutable_dict({}) - """Dictionary of any metadata that be required for the given experiment. - Will be processed by the InputDataset to create any additional tensors that may be required. - """ - dataparser_transform: TensorType[3, 4] = torch.eye(4)[:3, :] - """Transform applied by the dataparser.""" - dataparser_scale: float = 1.0 - """Scale applied by the dataparser.""" - -@dataclass -class DataParser: - - @abstractmethod - def _generate_dataparser_outputs(self, split: str = "train") -> DataparserOutputs: - """Abstract method that returns the dataparser outputs for the given split. - - Args: - split: Which dataset split to generate (train/test). - - Returns: - DataparserOutputs containing data for the specified dataset and split - """ -``` - -## Example - -Here is an example where we implement a DataParser for our Nerfstudio data format. - -```python -@dataclass -class NerfstudioDataParserConfig(DataParserConfig): - """Nerfstudio dataset config""" - - _target: Type = field(default_factory=lambda: Nerfstudio) - """target class to instantiate""" - data: Path = Path("data/nerfstudio/poster") - """Directory specifying location of data.""" - scale_factor: float = 1.0 - """How much to scale the camera origins by.""" - downscale_factor: Optional[int] = None - """How much to downscale images. If not set, images are chosen such that the max dimension is <1600px.""" - scene_scale: float = 1.0 - """How much to scale the region of interest by.""" - orientation_method: Literal["pca", "up", "vertical", "none"] = "up" - """The method to use for orientation.""" - center_method: Literal["poses", "focus", "none"] = "poses" - """The method to use to center the poses.""" - auto_scale_poses: bool = True - """Whether to automatically scale the poses to fit in +/- 1 bounding box.""" - train_split_fraction: float = 0.9 - """The fraction of images to use for training. The remaining images are for eval.""" - depth_unit_scale_factor: float = 1e-3 - """Scales the depth values to meters. Default value is 0.001 for a millimeter to meter conversion.""" - -@dataclass -class Nerfstudio(DataParser): - """Nerfstudio DatasetParser""" - - config: NerfstudioDataParserConfig - - def _generate_dataparser_outputs(self, split="train"): - meta = load_from_json(self.config.data / "transforms.json") - image_filenames = [] - poses = [] - ... - dataparser_outputs = DataparserOutputs( - image_filenames=image_filenames, - cameras=cameras, - scene_box=scene_box, - ) - return dataparser_outputs -``` - -## Train and Eval Logic - -The DataParser will generate a train and eval DataparserOutputs depending on the `split` argument. For example, here is how you'd initialize some `InputDataset` classes that live in the DataManager. Because our DataparserOutputs maintain a common form, our Datasets should be plug-and-play. These datasets will load images needed to supervise the model with `RayGT` objects. - -```python -config = NerfstudioDataParserConfig() -dataparser = config.setup() -# train dataparser -dataparser_outputs = dataparser.get_dataparser_outputs(split="train") -input_dataset = InputDataset(dataparser_outputs) -``` - -You can also pull out information from the DataParserOutputs for other DataManager components, such as the RayGenerator. The RayGenerator generates RayBundle objects from camera and pixel indices. - -```python -ray_generator = RayGenerator(dataparser_outputs.cameras) -``` - -## Included DataParsers - -```{toctree} ---- -maxdepth: 2 ---- - -../../reference/api/data/dataparsers -``` diff --git a/docs/developer_guides/pipelines/fields.md b/docs/developer_guides/pipelines/fields.md deleted file mode 100644 index 5533db49..00000000 --- a/docs/developer_guides/pipelines/fields.md +++ /dev/null @@ -1,118 +0,0 @@ -# Fields - -```{image} imgs/pipeline_field-light.png -:align: center -:class: only-light -:width: 600 -``` - -```{image} imgs/pipeline_field-dark.png -:align: center -:class: only-dark -:width: 600 -``` - -## What is a Field? - -A Field is a model component that associates a region of space with some sort of quantity. In the most typical case, the input to a field is a 3D location and viewing direction, and the output is density and color. Let's take a look at the code. - -```python -class Field(nn.Module): - """Base class for fields.""" - - @abstractmethod - def get_density(self, ray_samples: RaySamples) -> Tuple[TensorType[..., 1], TensorType[..., "num_features"]]: - """Computes and returns the densities. Returns a tensor of densities and a tensor of features. - - Args: - ray_samples: Samples locations to compute density. - """ - - @abstractmethod - def get_outputs( - self, ray_samples: RaySamples, density_embedding: Optional[TensorType] = None - ) -> Dict[FieldHeadNames, TensorType]: - """Computes and returns the colors. Returns output field values. - - Args: - ray_samples: Samples locations to compute outputs. - density_embedding: Density embeddings to condition on. - """ - - def forward(self, ray_samples: RaySamples): - """Evaluates the field at points along the ray. - - Args: - ray_samples: Samples to evaluate field on. - """ - density, density_embedding = self.get_density(ray_samples) - field_outputs = self.get_outputs(ray_samples, density_embedding=density_embedding) - - field_outputs[FieldHeadNames.DENSITY] = density # type: ignore - return field_outputs -``` - -## Separate density and outputs - -The forward function is the main function you'll use, which takes in RaySamples returns quantities for each sample. You'll notice that the get_density function is called for every field, followed by the get_outputs function. - -The get_outputs function is what you need to implement to return custom data. For example, check out of SemanticNerfField where we rely on different FieldHeads to produce correct dimensional outputs for typical quantities. Our implemented FieldHeads have the following FieldHeadNames names. - -```python -class FieldHeadNames(Enum): - """Possible field outputs""" - - RGB = "rgb" - SH = "sh" - DENSITY = "density" - UNCERTAINTY = "uncertainty" - TRANSIENT_RGB = "transient_rgb" - TRANSIENT_DENSITY = "transient_density" - SEMANTICS = "semantics" -``` - -```{button-link} https://github.com/nerfstudio-project/nerfstudio/blob/master/nerfstudio/field_components/field_heads.py -:color: primary -:outline: -See the code! -``` - -Sometimes all you need is the density from a Field, so we have a helper method called density_fn which takes positions and returns densities. - -## Using Frustums instead of positions - -Let's say you want to query a region of space, rather than a point. Our RaySamples data structure contains Frustums which can be used for exactly this purpose. This enables methods like Mip-NeRF to be implemented in our framework. - -```python -@dataclass -class RaySamples(TensorDataclass): - """Samples along a ray""" - - frustums: Frustums - """Frustums along ray.""" - ... - -@dataclass -class Frustums(TensorDataclass): - """Describes region of space as a frustum.""" - - origins: TensorType["bs":..., 3] - """xyz coordinate for ray origin.""" - directions: TensorType["bs":..., 3] - """Direction of ray.""" - starts: TensorType["bs":..., 1] - """Where the frustum starts along a ray.""" - ends: TensorType["bs":..., 1] - """Where the frustum ends along a ray.""" - pixel_area: TensorType["bs":..., 1] - """Projected area of pixel a distance 1 away from origin.""" - ... -``` - -Take a look at our RaySamples class for more information on the input to our Field classes. - -```{button-link} https://github.com/nerfstudio-project/nerfstudio/blob/master/nerfstudio/fields/base_field.py -:color: primary -:outline: -See the code! -``` diff --git a/docs/developer_guides/pipelines/imgs/pipeline_datamanager-dark.png b/docs/developer_guides/pipelines/imgs/pipeline_datamanager-dark.png deleted file mode 100644 index 18e0210b..00000000 Binary files a/docs/developer_guides/pipelines/imgs/pipeline_datamanager-dark.png and /dev/null differ diff --git a/docs/developer_guides/pipelines/imgs/pipeline_datamanager-light.png b/docs/developer_guides/pipelines/imgs/pipeline_datamanager-light.png deleted file mode 100644 index 0d21b70d..00000000 Binary files a/docs/developer_guides/pipelines/imgs/pipeline_datamanager-light.png and /dev/null differ diff --git a/docs/developer_guides/pipelines/imgs/pipeline_field-dark.png b/docs/developer_guides/pipelines/imgs/pipeline_field-dark.png deleted file mode 100644 index 2b72c4bc..00000000 Binary files a/docs/developer_guides/pipelines/imgs/pipeline_field-dark.png and /dev/null differ diff --git a/docs/developer_guides/pipelines/imgs/pipeline_field-light.png b/docs/developer_guides/pipelines/imgs/pipeline_field-light.png deleted file mode 100644 index 59b440a1..00000000 Binary files a/docs/developer_guides/pipelines/imgs/pipeline_field-light.png and /dev/null differ diff --git a/docs/developer_guides/pipelines/imgs/pipeline_model-dark.png b/docs/developer_guides/pipelines/imgs/pipeline_model-dark.png deleted file mode 100644 index 499e1750..00000000 Binary files a/docs/developer_guides/pipelines/imgs/pipeline_model-dark.png and /dev/null differ diff --git a/docs/developer_guides/pipelines/imgs/pipeline_model-light.png b/docs/developer_guides/pipelines/imgs/pipeline_model-light.png deleted file mode 100644 index e4534136..00000000 Binary files a/docs/developer_guides/pipelines/imgs/pipeline_model-light.png and /dev/null differ diff --git a/docs/developer_guides/pipelines/imgs/pipeline_overview-dark.png b/docs/developer_guides/pipelines/imgs/pipeline_overview-dark.png deleted file mode 100644 index f9e9b172..00000000 Binary files a/docs/developer_guides/pipelines/imgs/pipeline_overview-dark.png and /dev/null differ diff --git a/docs/developer_guides/pipelines/imgs/pipeline_overview-light.png b/docs/developer_guides/pipelines/imgs/pipeline_overview-light.png deleted file mode 100644 index 7f1c6b8b..00000000 Binary files a/docs/developer_guides/pipelines/imgs/pipeline_overview-light.png and /dev/null differ diff --git a/docs/developer_guides/pipelines/imgs/pipeline_parser-dark.png b/docs/developer_guides/pipelines/imgs/pipeline_parser-dark.png deleted file mode 100644 index 57141655..00000000 Binary files a/docs/developer_guides/pipelines/imgs/pipeline_parser-dark.png and /dev/null differ diff --git a/docs/developer_guides/pipelines/imgs/pipeline_parser-light.png b/docs/developer_guides/pipelines/imgs/pipeline_parser-light.png deleted file mode 100644 index b8043580..00000000 Binary files a/docs/developer_guides/pipelines/imgs/pipeline_parser-light.png and /dev/null differ diff --git a/docs/developer_guides/pipelines/imgs/pipeline_pipeline-dark.png b/docs/developer_guides/pipelines/imgs/pipeline_pipeline-dark.png deleted file mode 100644 index 836015e0..00000000 Binary files a/docs/developer_guides/pipelines/imgs/pipeline_pipeline-dark.png and /dev/null differ diff --git a/docs/developer_guides/pipelines/imgs/pipeline_pipeline-light.png b/docs/developer_guides/pipelines/imgs/pipeline_pipeline-light.png deleted file mode 100644 index e249ced1..00000000 Binary files a/docs/developer_guides/pipelines/imgs/pipeline_pipeline-light.png and /dev/null differ diff --git a/docs/developer_guides/pipelines/index.rst b/docs/developer_guides/pipelines/index.rst deleted file mode 100644 index 7255af29..00000000 --- a/docs/developer_guides/pipelines/index.rst +++ /dev/null @@ -1,49 +0,0 @@ -Pipelines overview -------------------------- - -Here we describe what a Pipeline is and how it works. You can see an overview figure with the major Pipeline components below. - -.. image:: imgs/pipeline_overview-light.png - :width: 600 - :align: center - :alt: pipeline figure - :class: only-light - -.. image:: imgs/pipeline_overview-dark.png - :width: 600 - :align: center - :alt: pipeline figure - :class: only-dark - - -.. admonition:: Note - - RayGT and RayOutputs are currently dictionaries. In the future, they will be typed objects. - - -Why Pipelines? -========================== - -Our goal is for any NeRF paper to be implemented as a Pipeline. - -The Pipeline is composed of two major components, namely the DataManager and the Model. The DataManager is responsible for loading data and generating RayBundle and RayGT objects. RayBundles are the input to the forward pass of the Model. These are needed for both training and inference time. RayGT objects, however, are needed only during training to calculate the losses in the Loss Dict. - -RayBundle objects describe origins and viewing directions. The model will take these rays and render them into quantities as RayOutputs. RayGT contains the necessary ground truth (GT) information needed to compute losses. For example, the GT pixel values can be used to supervise the rendered rays with an L2 loss. - -In the following sections, we describe the Pipeline components and look at their code. - -.. toctree:: - :maxdepth: 1 - - dataparsers - datamanagers - models - fields - pipelines - -Implementing NeRF Papers -========================== - -Let's say you want to create a custom Pipeline that has a custom DataManager and a custom Model. Perhaps you care about dynamically adding cameras to the DataManager during training or you want to importance sample and generate rays from pixels where the loss is high. This can be accomplished by mixing and matching components into a Pipeline. The following guide will take you through an example of this. - -This guide is coming soon! diff --git a/docs/developer_guides/pipelines/models.md b/docs/developer_guides/pipelines/models.md deleted file mode 100644 index 4fb1cb3f..00000000 --- a/docs/developer_guides/pipelines/models.md +++ /dev/null @@ -1,152 +0,0 @@ -# Models - -```{image} imgs/pipeline_model-light.png -:align: center -:class: only-light -:width: 600 -``` - -```{image} imgs/pipeline_model-dark.png -:align: center -:class: only-dark -:width: 600 -``` - -## What is a Model? - -A Model is probably what you think of when you think of a NeRF paper. Often the phrases "Model" and "Method" are used interchangeably and for this reason, our implemented [Methods](/nerfology/methods/index) typically only change the model code. - -A model, at a high level, takes in regions of space described by RayBundle objects, samples points along these rays, and returns rendered values for each ray. So, let's take a look at what it takes to create your own model! - -## Functions to Implement - -[The code](https://github.com/nerfstudio-project/nerfstudio/blob/master/nerfstudio/models/base_model.py) is quite verbose, so here we distill the most important functions with succint descriptions. - -```python -class Model: - - config: ModelConfig - """Set the model config so that Python gives you typed autocomplete!""" - - def populate_modules(self): - """Set the fields and modules.""" - - # Fields - - # Ray Samplers - - # Colliders - - # Renderers - - # Losses - - # Metrics - - def get_param_groups(self) -> Dict[str, List[Parameter]]: - """Returns the parameter groups needed to optimizer your model components.""" - - def get_training_callbacks( - self, training_callback_attributes: TrainingCallbackAttributes - ) -> List[TrainingCallback]: - """Returns the training callbacks, such as updating a density grid for Instant NGP.""" - - def get_outputs(self, ray_bundle: RayBundle): - """Process a RayBundle object and return RayOutputs describing quanties for each ray.""" - - def get_metrics_dict(self, outputs, batch): - """Returns metrics dictionary which will be plotted with comet, wandb or tensorboard.""" - - def get_loss_dict(self, outputs, batch, metrics_dict=None): - """Returns a dictionary of losses to be summed which will be your loss.""" - - def get_image_metrics_and_images( - self, outputs: Dict[str, torch.Tensor], batch: Dict[str, torch.Tensor] - ) -> Tuple[Dict[str, float], Dict[str, torch.Tensor]]: - """Returns a dictionary of images and metrics to plot. Here you can apply your colormaps.""" -``` - -## Pythonic Configs with Models - -Our config system is most useful when it comes to models. Let's take a look at our Nerfacto model config. - -```python -@dataclass -class NerfactoModelConfig(ModelConfig): - """Nerfacto Model Config""" - - _target: Type = field(default_factory=lambda: NerfactoModel) - near_plane: float = 0.05 - """How far along the ray to start sampling.""" - far_plane: float = 1000.0 - """How far along the ray to stop sampling.""" - background_color: Literal["background", "last_sample"] = "last_sample" - """Whether to randomize the background color.""" - num_proposal_samples_per_ray: Tuple[int] = (64,) - """Number of samples per ray for the proposal network.""" - num_nerf_samples_per_ray: int = 64 - """Number of samples per ray for the nerf network.""" - num_proposal_network_iterations: int = 1 - """Number of proposal network iterations.""" - use_same_proposal_network: bool = False - """Use the same proposal network. Otherwise use different ones.""" - interlevel_loss_mult: float = 1.0 - """Proposal loss multiplier.""" - distortion_loss_mult: float = 0.002 - """Distortion loss multiplier.""" - use_proposal_weight_anneal: bool = True - """Whether to use proposal weight annealing.""" - use_average_appearance_embedding: bool = True - """Whether to use average appearance embedding or zeros for inference.""" - proposal_weights_anneal_slope: float = 10.0 - """Slope of the annealing function for the proposal weights.""" - proposal_weights_anneal_max_num_iters: int = 1000 - """Max num iterations for the annealing function.""" - use_single_jitter: bool = True - """Whether use single jitter or not for the proposal networks.""" -``` - -There are a lot of options! Thankfully, our config system makes this easy to handle. If you want to add another argument, you simply add a value to this config and when you type in `ns-train nerfacto --help`, it will show in the terminal as a value you can modify. - -Furthermore, you have Python autocomplete and static checking working in your favor. At the top of every Model, we specify the config and then can easily pull of values throughout the implementation. Let's take a look at the beginning of the NerfactoModel implementation. - -```python -class NerfactoModel(Model): - """Nerfacto model - - Args: - config: Nerfacto configuration to instantiate model - """ - - config: NerfactoModelConfig - - def populate_modules(self): - """Set the fields and modules.""" - ... - # Fields - self.field = TCNNNerfactoField( - self.scene_box.aabb, - spatial_distortion=scene_contraction, - num_images=self.num_train_data, - use_average_appearance_embedding=self.config.use_average_appearance_embedding, # notice self.config - ) - ... - # Renderers - self.renderer_rgb = RGBRenderer(background_color=self.config.background_color) # notice self.config - self.renderer_accumulation = AccumulationRenderer() - self.renderer_depth = DepthRenderer() -``` - -We invite you to take a look at the Nerfacto model and others to see how our models are formatted. - -```{button-link} https://github.com/nerfstudio-project/nerfstudio/blob/master/nerfstudio/models/nerfacto.py -:color: primary -:outline: -See the code! -``` - -## Implementing a Model - -Now that you understand how the model is structured, you can create a model by populating these functions. We provide a library of model components to pull from when creating your model. Check out those tutorials here! - -One of these components is a Field, which you can learn more about in the next section. Fields associate a quantity of space with a value (e.g., density and color) and are used in every model. diff --git a/docs/developer_guides/pipelines/pipelines.md b/docs/developer_guides/pipelines/pipelines.md deleted file mode 100644 index 36a05274..00000000 --- a/docs/developer_guides/pipelines/pipelines.md +++ /dev/null @@ -1,73 +0,0 @@ -# Pipelines - -```{image} imgs/pipeline_pipeline-light.png -:align: center -:class: only-light -:width: 600 -``` - -```{image} imgs/pipeline_pipeline-dark.png -:align: center -:class: only-dark -:width: 600 -``` - -## What is a Pipeline? - -The Pipeline contains all the code you need to implement a NeRF method. There are two main functions that you need to implement for the Pipeline. - -```python -class Pipeline(nn.Module): - - datamanager: DataManager - model: Model - - @profiler.time_function - def get_train_loss_dict(self, step: int): - """This function gets your training loss dict. This will be responsible for - getting the next batch of data from the DataManager and interfacing with the - Model class, feeding the data to the model's forward function. - - Args: - step: current iteration step to update sampler if using DDP (distributed) - """ - - @profiler.time_function - def get_eval_loss_dict(self, step: int): - """This function gets your evaluation loss dict. It needs to get the data - from the DataManager and feed it to the model's forward function - - Args: - step: current iteration step - """ -``` - -## Vanilla Implementation - -Here you can see a simple implementation of the get_train_loss_dict from the VanillaPipeline. Essentially, all the pipeline has to do is route data from the DataManager to the Model. - -```python -@profiler.time_function -def get_train_loss_dict(self, step: int): - ray_bundle, batch = self.datamanager.next_train(step) - model_outputs = self.model(ray_bundle) - metrics_dict = self.model.get_metrics_dict(model_outputs, batch) - loss_dict = self.model.get_loss_dict(model_outputs, batch, metrics_dict) - return model_outputs, loss_dict, metrics_dict -``` - -## Creating Custom Methods - -:::{admonition} Note -:class: info - -The VanillaPipeline works for most of our methods. -::: - -We also have a DynamicBatchPipeline that is used with InstantNGP to dynamically choose the number of rays to use per training and evaluation iteration. - -```{button-link} https://github.com/nerfstudio-project/nerfstudio/blob/master/nerfstudio/pipelines/dynamic_batch.py -:color: primary -:outline: -See the code! -``` \ No newline at end of file diff --git a/docs/developer_guides/viewer/custom_gui.md b/docs/developer_guides/viewer/custom_gui.md deleted file mode 100644 index 0fd60073..00000000 --- a/docs/developer_guides/viewer/custom_gui.md +++ /dev/null @@ -1,105 +0,0 @@ -# Custom GUI - -We provide support for custom viewer GUI elements that can be defined in any `nn.Module`. Although we don't have any specific use cases in mind, here are some examples of what can be achieved with this feature: - -- Using text input to modify the rendering -- Logging numerical values to the viewer -- Using checkboxes to turn off and on losses -- Using a dropdown to switch between appearances - -## Adding an Element - -To define a custom element, create an instance of one of the provided classes in `nerfstudio.viewer.viewer_elements`, and assign it as a class variable in your `nn.Module`. - -```python -from nerfstudio.viewer.viewer_elements import ViewerNumber - -class MyClass(nn.Module):#must inherit from nn.Module - def __init__(self): - # Must be a class variable - self.custom_value = ViewerNumber(name="My Value", default_value=1.0) -``` -**Element Hierarchy** -The viewer recursively searches all `nn.Module` children of the base `Pipeline` object, and arranges parameters into folders based on their variable names. -For example, a `ViewerElement` defined in `pipeline.model.field` will be in the "Custom/model/field" folder in the GUI. - -**Reading the value** -To read the value of a custom element, simply access its `value` attribute. In this case it will be `1.0` unless modified by the user in the viewer. - -```python -current_value = self.custom_value.value -``` - -**Callbacks** -You can register a callback that will be called whenever a new value for your GUI element is available. For example, one can use a callback to update config parameters when elements are changed: -```python -def on_change_callback(handle: ViewerCheckbox) -> None: - self.config.example_parameter = handle.value - -self.custom_checkbox = ViewerCheckbox( - name="Checkbox", - default_value=False, - cb_hook=on_change_callback, -) -``` - -**Thread safety** -Note that `ViewerElement` values can change asynchronously to model execution. So, it's best practice to store the value of a viewer element once at the beginning -of a forward pass and refer to the static variable afterwards. -```python -class MyModel(Model): - def __init__(self): - self.slider = ViewerSlider(name="Slider", default_value=0.5, min_value=0.0, max_value=1.0) - - def get_outputs(self,ray) - slider_val = self.slider.value - #self.slider.value could change after this, unsafe to use - -``` - - -**Writing to the element** -You can write to a viewer element in Python, which provides a convenient way to track values in your code without the need for comet/wandb/tensorboard or relying on `print` statements. - -```python -self.custom_value.value = x -``` - -:::{admonition} Warning -:class: warning - -Updating module state while training can have unexpected side effects. It is up to the user to ensure that GUI actions are safe. Conditioning on `self.training` can help determine whether effects are applied during forward passes for training or rendering. -::: - -## Example Elements - -```{image} imgs/custom_controls.png -:align: center -:width: 400 -``` - -This was created with the following elements: - -```python -from nerfstudio.viewer.viewer_elements import * - -class MyModel(Model): - def __init__(self): - self.a = ViewerButton(name="My Button", cb_hook=self.handle_btn) - self.b = ViewerNumber(name="Number", default_value=1.0) - self.c = ViewerCheckbox(name="Checkbox", default_value=False) - self.d = ViewerDropdown(name="Dropdown", default_value="A", options=["A", "B"]) - self.e = ViewerSlider(name="Slider", default_value=0.5, min_value=0.0, max_value=1.0) - self.f = ViewerText(name="Text", default_value="Hello World") - self.g = ViewerVec3(name="3D Vector", default_value=(0.1, 0.7, 0.1)) - - self.rgb_renderer = RGBRenderer() -... -class RGBRenderer(nn.Module): - def __init__(self): - #lives in "Custom/model/rgb_renderer" GUI folder - self.a = ViewerRGB(name="F", default_value=(0.1, 0.7, 0.1)) -... -``` - -For more information on the available classes and their arguments, refer to the [API documentation](../../reference/api/viewer.rst) diff --git a/docs/developer_guides/viewer/imgs/custom_controls.png b/docs/developer_guides/viewer/imgs/custom_controls.png deleted file mode 100644 index 557f76b5..00000000 Binary files a/docs/developer_guides/viewer/imgs/custom_controls.png and /dev/null differ diff --git a/docs/developer_guides/viewer/index.md b/docs/developer_guides/viewer/index.md deleted file mode 100644 index 9df5c60d..00000000 --- a/docs/developer_guides/viewer/index.md +++ /dev/null @@ -1,23 +0,0 @@ -# Viewer - -> We have a real-time web viewer that requires no installation. It's available at [https://viewer.nerf.studio/](https://viewer.nerf.studio/), where you can connect to your training job. - -The viewer is built on [Viser](https://github.com/brentyi/viser/tree/main/viser) using [ThreeJS](https://threejs.org/) and packaged into a [ReactJS](https://reactjs.org/) application. This client viewer application will connect via a websocket to a server running on your machine. - -```{toctree} -:titlesonly: - -custom_gui -viewer_control -local_viewer -``` - -## Acknowledgements and references - -We thank the authors and contributors to the following repos, which we've started, used, and modified for our use-cases. - -- [Viser](https://github.com/brentyi/viser/) - made by [Brent Yi](https://github.com/brentyi) -- [meshcat-python](https://github.com/rdeits/meshcat-python) - made by [Robin Deits](https://github.com/rdeits) -- [meshcat](https://github.com/rdeits/meshcat) - made by [Robin Deits](https://github.com/rdeits) -- [ThreeJS](https://threejs.org/) -- [ReactJS](https://reactjs.org/) diff --git a/docs/developer_guides/viewer/local_viewer.md b/docs/developer_guides/viewer/local_viewer.md deleted file mode 100644 index ef8b1ac1..00000000 --- a/docs/developer_guides/viewer/local_viewer.md +++ /dev/null @@ -1,66 +0,0 @@ -# (Legacy Viewer) Local Server - -**Note:** this doc only applies to the legacy version of the viewer, which was the default in in Nerfstudio versions `<=0.3.4`. It was deprecated starting Nerfstudio version `1.0.0`, where it needs to be opted into via the `--vis viewer_legacy` argument. - ---- - -If you are unable to connect to `https://viewer.nerf.studio`, want to use Safari, or want to develop the viewer codebase, you can launch your own local viewer. - -## Installing Dependencies - -```shell -cd nerfstudio/viewer/app -``` - -Install npm (to install yarn) and yarn - -```shell -sudo apt-get install npm -npm install --global yarn -``` - -Install nvm and set the node version -Install nvm with [instructions](https://heynode.com/tutorial/install-nodejs-locally-nvm/). - -```shell -nvm install 17.8.0 -``` - -Now running `node --version` in the shell should print "v17.8.0". -Install package.json dependencies and start the client viewer app: - -```shell -yarn install -``` - -## Launch the web client - -From the `nerfstudio/viewer/app` folder, run: - -```shell -yarn start -``` - -The local webserver runs on port 4000 by default, -so when `ns-train` is running, you can connect to the viewer locally at -[http://localhost:4000/?websocket_url=ws://localhost:7007](http://localhost:4000/?websocket_url=ws://localhost:7007) - -## FAQ - -### Engine node incompatible - -While running `yarn install`, you run into: `The engine "node" is incompatible with this module.` - -**Solution**: - -Install nvm with instructions at [instructions](https://heynode.com/tutorial/install-nodejs-locally-nvm/). - -```shell -nvm install 17.8.0 -``` - -If you cannot install nvm, try ignoring the engines - -```shell -yarn install --ignore-engines -``` diff --git a/docs/developer_guides/viewer/viewer_control.md b/docs/developer_guides/viewer/viewer_control.md deleted file mode 100644 index 26803052..00000000 --- a/docs/developer_guides/viewer/viewer_control.md +++ /dev/null @@ -1,128 +0,0 @@ -# Python Viewer Control - -Similar to [`ViewerElements`](./custom_gui.md), Nerfstudio includes supports a Python interface to the viewer through which you can: - -* Set viewer camera pose and FOV -* Set viewer scene crop -* Retrieve the current viewer camera matrix -* Install listeners for click events inside the viewer window - -## Usage - -First, instantiate a `ViewerControl` object as a class variable inside a model file. -Just like `ViewerElements`, you can create an instance inside any class which inherits from `nn.Module` -and is contained within the `Pipeline` object (for example the `Model`) - -```python -from nerfstudio.viewer.viewer_elements import ViewerControl - -class MyModel(nn.Module): # Must inherit from nn.Module - def __init__(self): - # Must be a class variable - self.viewer_control = ViewerControl() # no arguments -``` -## Get Camera Matrix -To get the current camera intrinsics and extrinsics, use the `get_camera` function. This returns a `nerfstudio.cameras.cameras.Cameras` object. This object can be used to generate `RayBundles`, retrieve intrinsics and extrinsics, and more. - -```python -from nerfstudio.viewer.viewer_elements import ViewerControl, ViewerButton - -class MyModel(nn.Module): # Must inherit from nn.Module - def __init__(self): - ... - def button_cb(button): - # example of using the get_camera function, pass img width and height - # returns a Cameras object with 1 camera - camera = self.viewer_control.get_camera(100,100) - if camera is None: - # returns None when the viewer is not connected yet - return - # get the camera pose - camera_extrinsics_matrix = camera.camera_to_worlds[0,...] # 3x4 matrix - # generate image RayBundle - bundle = camera.generate_rays(camera_indices=0) - # Compute depth, move camera, or whatever you want - ... - self.viewer_button = ViewerButton(name="Dummy Button",cb_hook=button_cb) -``` - -## Set Camera Properties -You can set the viewer camera position and FOV from python. -To set position, you must define a new camera position as well as a 3D "look at" point which the camera aims towards. -```python -from nerfstudio.viewer.viewer_elements import ViewerControl,ViewerButton - -class MyModel(nn.Module): # Must inherit from nn.Module - def __init__(self): - ... - def aim_at_origin(button): - # instant=False means the camera smoothly animates - # instant=True means the camera jumps instantly to the pose - self.viewer_control.set_pose(position=(1,1,1),look_at=(0,0,0),instant=False) - self.viewer_button = ViewerButton(name="Dummy Button",cb_hook=button_cb) -``` - -## Scene Pointer Callbacks -We forward user interactions with the viewer to the `ViewerControl` object, which you can use to interact with the scene. - -We currently support: - - `ViewerClick`: *single* clicks inside the viewer. The click is defined to be a ray that starts at the camera origin and passes through the click point on the screen, in world coordinates. - - `ViewerRectSelect`: drag to select a rectangle in the viewer screen. The rectangle is defined by two points (top-left and bottom-right corners) in normalized OpenCV screen coordinates. - -To do this, register a callback using `register_pointer_cb()`. - -You can also use `unregister_pointer_cb()` to remove callbacks that are no longer needed. A good example is a "Click on Scene" button, that when pressed, would register a callback that would wait for the next click, and then unregister itself. - -Note that the viewer can only listen to *one* scene pointer callback at a time. If you register a new callback, the old one will be unregistered! Be warned that if the callback includes GUI state changes (e.g., re-enabling a disabled button), they may be lost. You can ensure that the GUI state is restored by providing a `removed_cb` function that will be called after the callback is removed. - -```python -from nerfstudio.viewer.viewer_elements import ViewerControl,ViewerClick - -class MyModel(nn.Module): # must inherit from nn.Module - def __init__(self): - # Must be a class variable - self.viewer_control = ViewerControl() # no arguments - - # Listen to clicks in the viewer... - def pointer_click_cb(click: ViewerClick): - print(f"Click at {click.origin} in direction {click.direction}, screen position {click.screen_pos}.") - self.viewer_control.register_pointer_cb("click", pointer_click_cb) - - # Listen to rectangle selections in the viewer... - def pointer_rect_cb(rect: ViewerRectSelect): - print(f"Rectangular selection from {rect.min_bounds} to {rect.max_bounds}.") - self.viewer_control.register_pointer_cb("click", pointer_rect_cb) - - ... - # Or make a button that, once pressed, listens to clicks in the viewer. - def button_cb(button: ViewerButton): - def pointer_click_cb(click: ViewerClick): - ... - self.viewer_control.unregister_pointer_cb() - self.viewer_control.register_pointer_cb("click", pointer_click_cb) - self.viewer_button = ViewerButton(name="Click on Scene", cb_hook=button_cb) - - # Or make a button that, once pressed, listens to clicks in the viewer. - # Here, the button is disabled while it is listening to clicks. - # The button will become enabled again if either: - # - the callback is removed in `pointer_click_cb`, with the `unregister...`, or - # - the callback is overridden by the viewer (to listen to another callback). - def button_cb(button: ViewerButton): - def pointer_click_cb(click: ViewerClick): - ... - self.viewer_control.unregister_pointer_cb() - - def pointer_click_removed_cb(): - self.viewer_button.set_disabled(False) - - self.viewer_button.set_disabled(True) - self.viewer_control.register_pointer_cb( - "click", - cb=pointer_click_cb, - removed_cb=pointer_click_removed_cb - ) - self.viewer_button = ViewerButton(name="Click on Scene", cb_hook=button_cb) -``` - -### Thread safety -Just like `ViewerElement` callbacks, click callbacks are asynchronous to training and can potentially interrupt a call to `get_outputs()`. diff --git a/docs/extensions/blender_addon.md b/docs/extensions/blender_addon.md deleted file mode 100644 index 5b24d723..00000000 --- a/docs/extensions/blender_addon.md +++ /dev/null @@ -1,229 +0,0 @@ -# Blender VFX add-on - -

- -

- -## Overview - -This Blender add-on allows for compositing with a Nerfstudio render as a background layer by generating a camera path JSON file from the Blender camera path, as well as a way to import Nerfstudio JSON files as a Blender camera baked with the Nerfstudio camera path. This add-on also allows compositing multiple NeRF objects into a NeRF scene. This is achieved by importing a mesh or point-cloud representation of the NeRF scene from Nerfstudio into Blender and getting the camera coordinates relative to the transformations of the NeRF representation. Dynamic FOV from the Blender camera is supported and will match the Nerfstudio render. Perspective, equirectangular, VR180, and omnidirectional stereo (VR 360) cameras are supported. This add-on also supports Gaussian Splatting scenes as well, however equirectangular and VR video rendering is not currently supported for splats. - -
- image -
- -## Add-on Setup Instructions - -1. The add-on requires Blender 3.0 or newer, install Blender [here](https://www.blender.org/). - -2. Download Blender Add-on Script - -3. Install and enable the add-on in Blender in `Edit β†’ Preferences β†’ Add-Ons`. The add-on will be visible in the Render Properties tab on the right panel. -
- image -
- -4. The add-on should now be installed in the `Render Properties` panel -
- image -
- -## Scene Setup - -1. Export the mesh or point cloud representation of the NeRF from Nerfstudio, which will be used as reference for the actual NeRF in the Blender scene. Mesh export at a good quality is preferred, however, if the export is not clear or the NeRF is large, a detailed point cloud export will also work. Keep the `save_world_frame` flag as False or in the viewer, de-select the "Save in world frame" checkbox to keep the correct coordinate system for the add-on. - -2. Import the mesh or point cloud representation of the NeRF into the scene. You may need to crop the mesh further. Since it is used as a reference and won't be visible in the final render, only the parts that the blender animation will interact with may be necessary to import. - -3. Select the NeRF mesh or point cloud in the add-on. - -4. Resize, position, or rotate the NeRF representation to fit your scene. - -## Generate Nerfstudio JSON Camera Path from Blender Camera - -1. There are a few ways to hide the reference mesh for the Blender render - - - In object properties, select "Shadow Catcher". This makes the representation invisible in the render, but all shadows cast on it will render. You may have to switch to the cycles renderer to see the shadow catcher option. -
- image -
- - - Note: This may not give ideal results if the mesh is not very clear or occludes other objects in the scene. If this is the case, you can hide the mesh from the render instead by clicking the camera button in the Outliner next to its name. -
- image -
- -2. Verify that the animation plays and the NeRF representation does not occlude the camera. -3. Go to the Nerfstudio Add-on in Render Properties and expand the "Nerfstudio Path Generator" tab in the panel. Use the object selector to select the NeRF representation. Then, select the file path for the output JSON camera path file. -4. Click "Generate JSON file". The output JSON file is named `camera_path_blender.json`. -
-image -
- -5. Render the NeRF with the generated camera path using Nerfstudio in the command prompt or terminal. - -6. Before rendering the Blender animation, go to the Render Properties and in the Film settings select "Transparent" so that the render will be rendered with a clear background to allow it to be composited over the NeRF render. -
-image -
- -7. Now the scene can be rendered and composited over the camera aligned Nerfstudio render. -
-image -
- -### Examples - -

- image - image -

- -### Additional details - -- You can also apply an environment texture to the Blender scene by using Nerfstudio to render an equirectangular image (360 image) of the NeRF from a place in the scene. -- The settings for the Blender equirectangular camera are: "Panoramic" camera type and panorama type of "Equirectangular". -
- image -
- -- The generated JSON camera path follows the user specified frame start, end, and step fields in the Output Properties in Blender. The JSON file specifies the user specified x and y render resolutions at the given % in the Output Properties. -- The add-on computes the camera coordinates based on the active camera in the scene. -- FOV animated changes of the camera will be matched with the NeRF render. -- Perspective, equirectangular, VR180, and omnidirectional stereo cameras are supported and can be configured within Blender. -- The generated JSON file can be imported into Nerfstudio. Each keyframe of the camera transform in the frame sequence in Blender will be a keyframe in Nerfstudio. The exported JSON camera path is baked, where each frame in the sequence is a keyframe. This is to ensure that frame interpolation across Nerfstudio and Blender do not differ. -
- image -
-- It is recommended to run the camera path in the Nerfstudio web interface with the NeRF to ensure that the NeRF is visible throughout the camera path. -- The fps and keyframe timestamps are based on the "Frame Rate" setting in the Output Properties in Blender. -- The NeRF representation can also be transformed (position, rotation, and scale) as well as animated. -- The pivot point of the NeRF representation should not be changed -- It is recommended to export a high fidelity mesh as the NeRF representation from Nerfstudio. However if that is not possible or the scene is too large, a point cloud representation also works. -- For compositing, it is recommended to convert the video render into image frames to ensure the Blender and NeRF renders are in sync. -- Currently, dynamic camera focus is not supported. -- Compositing with Blender Objects and VR180 or ODS Renders - - Configure the Blender camera to be panoramic equirectangular and enable stereoscopy in the Output Properties. For the VR180 Blender camera, set the panoramic longitude min and max to -90 and 90. - - Under the Stereoscopy panel the Blender camera settings, change the mode to "Parallel", set the Interocular Distance to 0.064 m, and checkmark "Spherical Stereo". - -
- image -
-- Fisheye and orthographic cameras are not supported. -- Renders with Gaussian Splats are supported, but the point cloud or mesh representation would need to be generated from training a NeRF on the same dataset. -- A walkthrough of this section is included in the tutorial video. - -## Create Blender Camera from Nerfstudio JSON Camera Path - -

- image -

- -1. Expand the "Nerfstudio Camera Generator" tab in the panel. After inputting the NeRF representation, select the JSON Nerfstudio file and click "Create Camera from JSON" - -2. A new camera named "NerfstudioCamera" should appear in the viewport with the camera path and FOV of the input file. This camera's type will match the Nerfstudio input file, except fisheye cameras. - -### Additional details - -- Since only the camera path, camera type, and FOV are applied on the created Blender camera, the timing and duration of the animation may need to be adjusted. -- Fisheye cameras imported from Nerfstudio are not supported and will default to perspective cameras. -- Animated NeRF representations will not be reflected in the imported camera path animation. -- The newly created camera is not active by default, so you may need to right click and select "Set Active Camera". -- The newly created Blender camera animation is baked, where each frame in the sequence is a keyframe. This is to ensure that frame interpolation across Nerfstudio and Blender do not differ. -- The resolution settings from the input JSON file do not affect the Blender render settings -- Scale of the camera is not keyframed from the Nerfstudio camera path. -- This newly created camera has a sensor fit of "Vertical" - -## Compositing NeRF Objects in NeRF Environments - -You can composite NeRF objects into a scene with a NeRF background by rendering the cropped NeRF object along with an accumulation render as an alpha mask and compositing that over the background NeRF render. - -

- image -

- -1. Import the background NeRF scene as a point cloud (or mesh, but point cloud is preferred for large scenes). - -2. Export a cropped NeRF mesh of the NeRF object(s) - - - Open the NeRF object from the Nerfstudio viewer and select "Crop Viewport" and accordingly adjust the Scale and Center values of the bounding box to crop the NeRF scene to around the bounds of the object of interest. - -
- image -
- - - Copy over the scale and center values into the Export panel and export the NeRF object as a mesh (point cloud will also work but shadows can be rendered if the object is a mesh) - - - Keep note of the scale and center values for the crop. This can be done by creating a new JSON camera path in the editor which will add a crop section towards the end of the file. - -
- image -
- -3. Import the NeRF object representation. Rescale and position the scene and NeRF object and background environment. You can also animate either of them. - -4. (Optional) To add shadows of the NeRF object(s) - - - Add a plane representing the ground of the environment. In object properties, select "Shadow Catcher" under Visibility. You may have to switch to the cycles renderer to see the shadow catcher option. - - - In the object properties of the NeRF object, go to the Ray Visibility section and deselect the "Camera" option. This will hide the mesh in the Blender render, but keep its shadow. - -
- image -
- - - Render the Blender animation with only the shadow of the object on the shadow catcher visible. Render with a transparent background by selecting "Transparent" under the Film Settings in the Render Properties. - -5. Go to the Nerfstudio Add-on in Render Properties and expand the "Nerfstudio Path Generator" tab in the panel. Use the object selector to select the NeRF environment representation. Then, select the file path for the output JSON camera path file. Click "Generate JSON file". The output JSON file is named `camera_path_blender.json`. It is recommended to rename this JSON file to keep track of the multiple camera paths that will be used to construct the full render. - -6. Generate a Nerfstudio camera path now for the NeRF object. Select the object selector to select the NeRF object. Before generating the new JSON file, you may need to rename the previously generated camera path for the environment or move it to a different directory otherwise the new JSON file will overwrite it. Click "Generate JSON file". The new output JSON file is named `camera_path_blender.json`. You will need to repeat this process for each NeRF object you want to composite in your scene. - -7. Render the NeRF of the background environment using the generated camera path for the environment using the Nerfstudio in the command line or terminal. - -8. Render the NeRF object - - - Open the recently generated blender Nerfstudio JSON camera path and add the crop parameters to the camera path. This section will be placed towards the end of the Blender Nerfstudio camera path after the `is_cycle` field. This can be done by copying over the crop section from the JSON camera path with the scene crop which was exported earlier. Alternatively, you can enter the crop values manually in this format. -
- image -
- - - Render the NeRF object using Nerfstudio and the edited camera path in the command line or terminal. This will be the RGB render. - - - Next, render the accumulation render as an alpha mask of the NeRF object by adding the command line argument `--rendered-output-names accumulation` to the render command. - -
- image -
- -9. Convert each of the Nerfstudio render videos into an image sequence of frames as PNG or JPG files. This will ensure that the frames will be aligned when compositing. You can convert the video mp4 to an image sequence by creating a Blender Video Editing file and rendering the mp4 as JPGs or PNGs. - -10. Composite the NeRF renders in a video editing software such as Adobe Premiere Pro. - - - Place the render of the Nerfstudio background environment at the lowest layer, then place the shadow render of the NeRF object if created. - - - Place the RGB NeRF render of the NeRF object over the environment (and shadow if present) layers and then place the accumulation NeRF object render over the RGB NeRF object render. - - - Apply a filter to use the accumulation render as an alpha mask. In Premiere Pro, apply the effect "Track Matte Key" to the RGB render and select the "Matte" as the video track of the accumulation render and under "Composite Using" select "Matte Luma". - -### Additional Details - -- The RGB and accumulation renders will need to be rendered for each NeRF cropped object in the scene, but not for the NeRF environment if it is not cropped. -- If you will composite a shadow layer, the quality of the exported mesh of the NeRF object should have enough fidelity to cast a shadow, but the texture doesn't need to be clear. -- If motion tracking or compositing over real camera footage, you can add planes or cubes to represent walls or doorways as shadow catcher or holdout objects. This will composite the shadow layer over the NeRF environment and help create alpha masks. -- The pivot point of the NeRF representations should not be changed. -- A walkthrough of this section is included in the tutorial video. - -### Examples - -

- image - image -

- -## Implementation Details - -For generating the JSON camera path, we iterate over the scene frame sequence (from the start to the end with step intervals) and get the camera 4x4 world matrix at each frame. The world transformation matrix gives the position, rotation, and scale of the camera. We then obtain the world matrix of the NeRF representation at each frame and transform the camera coordinates with this to get the final camera world matrix. This allows us to re-position, rotate, and scale the NeRF representation in Blender and generate the right camera path to render the NeRF accordingly in Nerfstudio. Additionally, we calculate the FOV of the camera at each frame based on the sensor fit (horizontal or vertical), angle of view, and aspect ratio. -Next, we construct the list of keyframes which is very similar to the world matrices of the transformed camera matrix. -Camera properties in the JSON file are based on user specified fields such as resolution (user specified in Output Properties in Blender), camera type (Perspective or Equirectangular). In the JSON file, `aspect` is specified as 1.0, `smoothness_value` is set to 0, and `is_cycle` is set to false. The Nerfstudio render is the fps specified in Blender where the duration is the total number of frames divided by the fps. -Finally, we construct the full JSON object and write it to the file path specified by the user. - -For generating the camera from the JSON file, we create a new Blender camera based on the input file and iterate through the `camera_path` field in the JSON to get the world matrix of the object from the `matrix_to_world` and similarly get the FOV from the `fov` fields. At each iteration, we set the camera to these parameters and insert a keyframe based on the position, rotation, and scale of the camera as well as the focal length of the camera based on the vertical FOV input. diff --git a/docs/extensions/imgs/desolation_unreal.png b/docs/extensions/imgs/desolation_unreal.png deleted file mode 100644 index 3214d14a..00000000 Binary files a/docs/extensions/imgs/desolation_unreal.png and /dev/null differ diff --git a/docs/extensions/imgs/export_nvol.png b/docs/extensions/imgs/export_nvol.png deleted file mode 100644 index d00be381..00000000 Binary files a/docs/extensions/imgs/export_nvol.png and /dev/null differ diff --git a/docs/extensions/imgs/nvol_ready.png b/docs/extensions/imgs/nvol_ready.png deleted file mode 100644 index 4d8d9471..00000000 Binary files a/docs/extensions/imgs/nvol_ready.png and /dev/null differ diff --git a/docs/extensions/imgs/sdfstudio_overview.svg b/docs/extensions/imgs/sdfstudio_overview.svg deleted file mode 100644 index 9183ef45..00000000 --- a/docs/extensions/imgs/sdfstudio_overview.svg +++ /dev/null @@ -1,33888 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/extensions/sdfstudio.md b/docs/extensions/sdfstudio.md deleted file mode 100644 index fa2625d0..00000000 --- a/docs/extensions/sdfstudio.md +++ /dev/null @@ -1,51 +0,0 @@ -# SDFStudio - -[project website](https://autonomousvision.github.io/sdfstudio/) - -```{image} imgs/sdfstudio_overview.svg -:width: 800 -:align: center -:alt: sdfstudio overview figure -``` - -## Overview - -SDFStudio is built on top of nerfstudio. It implements multiple implicit surface reconstruction methods including: - -- UniSurf -- VolSDF -- NeuS -- MonoSDF -- Mono-UniSurf -- Mono-NeuS -- Geo-NeuS -- Geo-UniSurf -- Geo-VolSDF -- NeuS-acc -- NeuS-facto -- NeuralReconW - -You can learn more about these methods [here](https://github.com/autonomousvision/sdfstudio/blob/master/docs/sdfstudio-methods.md#Methods) - -## Surface models in nerfstudio - -We intend to integrate many of the SDFStudio improvements back into the nerfstudio core repository. - -Supported methods: - -- NeuS -- NeuS-facto - -## Citation - -If you use these surface based models in your research, you should consider citing the authors of SDFStudio, - -```none -@misc{Yu2022SDFStudio, - author = {Yu, Zehao and Chen, Anpei and Antic, Bozidar and Peng, Songyou Peng and Bhattacharyya, Apratim - and Niemeyer, Michael and Tang, Siyu and Sattler, Torsten and Geiger, Andreas}, - title = {SDFStudio: A Unified Framework for Surface Reconstruction}, - year = {2022}, - url = {https://github.com/autonomousvision/sdfstudio}, -} -``` diff --git a/docs/extensions/unreal_engine.md b/docs/extensions/unreal_engine.md deleted file mode 100644 index 1fa523a0..00000000 --- a/docs/extensions/unreal_engine.md +++ /dev/null @@ -1,35 +0,0 @@ -# Exporting to Unreal Engine - - ```{image} imgs/desolation_unreal.png - :width: 800 - :align: center - :alt: NeRF in Unreal Engine - ``` - -## Overview - -NeRFStudio models can be used in Unreal Engine if they are converted to an NVOL file. NVOL is a new standard file format to store NeRFs in a fast and efficient way. NVOL files can be obtained from NeRFStudio checkpoints files (.ckpt) using the [Volinga Suite](https://volinga.ai/). - - -## Exporting your model to NVOL -Currently NVOL file only supports Volinga model (which is based on nerfacto). To use Volinga model you will need to install [Volinga extension for NeRFStudio](https://github.com/Volinga/volinga-model). You can train your model using the following command: - -```bash -ns-train volinga --data /path/to/your/data --vis viewer -``` - -Once the training is done, you can find your checkpoint file in the `outputs/path-to-your-data/volinga` folder. Then, you can drag it to Volinga Suite to export it to NVOL. - - ```{image} imgs/export_nvol.png - :width: 400 - :align: center - :alt: Nvol export in Voliga Suite - ``` - -Once the NVOL is ready, you can download it and use it in Unreal Engine. - - ```{image} imgs/nvol_ready.png - :width: 800 - :align: center - :alt: NVOL ready to use - ``` \ No newline at end of file diff --git a/docs/index.md b/docs/index.md deleted file mode 100644 index fcb62c64..00000000 --- a/docs/index.md +++ /dev/null @@ -1,250 +0,0 @@ ---- -myst: - substitutions: - luma: | - ```{image} _static/imgs/luma_light.png - :alt: Luma AI - :width: 300px - :class: only-light - :target: https://lumalabs.ai/ - ``` - - ```{image} _static/imgs/luma_dark.png - :alt: Luma AI - :width: 300px - :class: only-dark - :target: https://lumalabs.ai/ - ``` - bair: | - ```{image} _static/imgs/bair_light.png - :alt: BAIR - :width: 300px - :class: only-light - :target: https://bcommons.berkeley.edu/home - ``` - - ```{image} _static/imgs/bair_dark.png - :alt: BAIR - :width: 300px - :class: only-dark - :target: https://bcommons.berkeley.edu/home - ``` ---- - -```{eval-rst} -:og:description: Nerfstudio Documentation -:og:image: https://assets.nerf.studio/opg.png -``` - -
- -```{image} _static/imgs/logo.png -:width: 400 -:align: center -:alt: nerfstudio -:class: only-light -``` - -```{image} _static/imgs/logo-dark.png -:width: 400 -:align: center -:alt: nerfstudio -:class: only-dark -``` - -
- - - -
- -Nerfstudio provides a simple API that allows for a simplified end-to-end process of creating, training, and testing NeRFs. -The library supports a **more interpretable implementation of NeRFs by modularizing each component.** -With more modular NeRFs, we hope to create a more user-friendly experience in exploring the technology. - -This is a contributor-friendly repo with the goal of building a community where users can more easily build upon each other's contributions. -Nerfstudio initially launched as an opensource project by Berkeley students in [KAIR lab](https://people.eecs.berkeley.edu/~kanazawa/index.html#kair) at [Berkeley AI Research (BAIR)](https://bair.berkeley.edu/) in October 2022 as a part of a research project ([paper](https://arxiv.org/abs/2302.04264)). It is currently developed by Berkeley students and community contributors. - -We are committed to providing learning resources to help you understand the basics of (if you're just getting started), and keep up-to-date with (if you're a seasoned veteran) all things NeRF. As researchers, we know just how hard it is to get onboarded with this next-gen technology. So we're here to help with tutorials, documentation, and more! - -Have feature requests? Want to add your brand-spankin'-new NeRF model? Have a new dataset? **We welcome [contributions](reference/contributing)!** -Please do not hesitate to reach out to the nerfstudio team with any questions via [Discord](https://discord.gg/uMbNqcraFc). - -Have feedback? We'd love for you to fill out our [Nerfstudio Feedback Form](https://forms.gle/sqN5phJN7LfQVwnP9) if you want to let us know who you are, why you are interested in Nerfstudio, or provide any feedback! - -We hope nerfstudio enables you to build faster πŸ”¨ learn together πŸ“š and contribute to our NeRF community πŸ’–. - -## Contents - -```{toctree} -:hidden: -:caption: Getting Started - -quickstart/installation -quickstart/first_nerf -quickstart/existing_dataset -quickstart/custom_dataset -quickstart/viewer_quickstart -quickstart/export_geometry -quickstart/data_conventions -Contributing -``` - -```{toctree} -:hidden: -:caption: Extensions -extensions/blender_addon -extensions/unreal_engine -extensions/sdfstudio -``` - -```{toctree} -:hidden: -:caption: NeRFology - -nerfology/methods/index -nerfology/model_components/index -``` - -```{toctree} -:hidden: -:caption: Developer Guides - -developer_guides/new_methods -developer_guides/pipelines/index -developer_guides/viewer/index -developer_guides/config -developer_guides/debugging_tools/index -``` - -```{toctree} -:hidden: -:caption: Reference - -reference/cli/index -reference/api/index -``` - -This documentation is organized into 3 parts: - -- **πŸƒβ€β™€οΈ Getting Started**: a great place to start if you are new to nerfstudio. Contains a quick tour, installation, and an overview of the core structures that will allow you to get up and running with nerfstudio. -- **πŸ§ͺ Nerfology**: want to learn more about the tech itself? We're here to help with our educational guides. We've provided some interactive notebooks that walk you through what each component is all about. -- **πŸ€“ Developer Guides**: describe all of the components and additional support we provide to help you construct, train, and debug your NeRFs. Learn how to set up a model pipeline, use the viewer, create a custom config, and more. -- **πŸ“š Reference**: describes each class and function. Develop a better understanding of the core of our technology and terminology. This section includes descriptions of each module and component in the codebase. - -## Supported Methods - -### Included Methods - -- [**Nerfacto**](nerfology/methods/nerfacto.md): Recommended method, integrates multiple methods into one. -- [Instant-NGP](nerfology/methods/instant_ngp.md): Instant Neural Graphics Primitives with a Multiresolution Hash Encoding -- [NeRF](nerfology/methods/nerf.md): OG Neural Radiance Fields -- [Mip-NeRF](nerfology/methods/mipnerf.md): A Multiscale Representation for Anti-Aliasing Neural Radiance Fields -- [TensoRF](nerfology/methods/tensorf.md): Tensorial Radiance Fields -- [Splatfacto](nerfology/methods/splat.md): Nerfstudio's Gaussian Splatting implementation - -(third_party_methods)= - -### Third-party Methods - -- [Instruct-NeRF2NeRF](nerfology/methods/in2n.md): Editing 3D Scenes with Instructions -- [K-Planes](nerfology/methods/kplanes.md): Unified 3D and 4D Radiance Fields -- [LERF](nerfology/methods/lerf.md): Language Embedded Radiance Fields -- [Nerfbusters](nerfology/methods/nerfbusters.md): Removing Ghostly Artifacts from Casually Captured NeRFs -- [NeRFPlayer](nerfology/methods/nerfplayer.md): 4D Radiance Fields by Streaming Feature Channels -- [Tetra-NeRF](nerfology/methods/tetranerf.md): Representing Neural Radiance Fields Using Tetrahedra -- [Instruct-GS2GS](nerfology/methods/igs2gs.md): Editing 3DGS Scenes with Instructions -- [PyNeRF](nerfology/methods/pynerf.md): Pyramidal Neural Radiance Fields -- [SeaThru-NeRF](nerfology/methods/seathru_nerf.md): Neural Radiance Field for subsea scenes -- [Zip-NeRF](nerfology/methods/zipnerf.md): Anti-Aliased Grid-Based Neural Radiance Fields - -**Eager to contribute a method?** We'd love to see you use nerfstudio in implementing new (or even existing) methods! Please view our {ref}`guide` for more details about how to add to this list! - -## Quicklinks - -| | | -| ---------------------------------------------------------- | ---------------------- | -| [Github](https://github.com/nerfstudio-project/nerfstudio) | Official Github Repo | -| [Discord](https://discord.gg/RyVk6w5WWP) | Join Discord Community | -| [Feedback Form](https://forms.gle/sqN5phJN7LfQVwnP9) | Provide Nerfstudio Feedback | - -## Sponsors -Sponsors of this work includes [Luma AI](https://lumalabs.ai/) and the [BAIR commons](https://bcommons.berkeley.edu/home). - -| | | -| -------- | -------- | -| {{luma}} | {{bair}} | - -## Built On - -```{image} https://brentyi.github.io/tyro/_static/logo-light.svg -:width: 150 -:alt: tyro -:class: only-light -:target: https://github.com/brentyi/tyro -``` - -```{image} https://brentyi.github.io/tyro/_static/logo-dark.svg -:width: 150 -:alt: tyro -:class: only-dark -:target: https://github.com/brentyi/tyro -``` - -- Easy to use config system -- Developed by [Brent Yi](https://brentyi.com/) - -```{image} https://user-images.githubusercontent.com/3310961/199084143-0d63eb40-3f35-48d2-a9d5-78d1d60b7d66.png -:width: 250 -:alt: tyro -:class: only-light -:target: https://github.com/KAIR-BAIR/nerfacc -``` - -```{image} https://user-images.githubusercontent.com/3310961/199083722-881a2372-62c1-4255-8521-31a95a721851.png -:width: 250 -:alt: tyro -:class: only-dark -:target: https://github.com/KAIR-BAIR/nerfacc -``` - -- Library for accelerating NeRF renders -- Developed by [Ruilong Li](https://www.liruilong.cn/) - -## Citation - -You can find a paper writeup of the framework on [arXiv](https://arxiv.org/abs/2302.04264). - -If you use this library or find the documentation useful for your research, please consider citing: - -```none -@inproceedings{nerfstudio, - title = {Nerfstudio: A Modular Framework for Neural Radiance Field Development}, - author = { - Tancik, Matthew and Weber, Ethan and Ng, Evonne and Li, Ruilong and Yi, Brent - and Kerr, Justin and Wang, Terrance and Kristoffersen, Alexander and Austin, - Jake and Salahi, Kamyar and Ahuja, Abhik and McAllister, David and Kanazawa, - Angjoo - }, - year = 2023, - booktitle = {ACM SIGGRAPH 2023 Conference Proceedings}, - series = {SIGGRAPH '23} -} -``` - -## Contributors - - - - - -## Maintainers - -| | Nerfstudio Discord | Affiliation | -| ----------------------------------------------- | ------------------ | ------------------------------------ | -| [Justin Kerr](https://kerrj.github.io/) | justin.kerr | UC Berkeley | -| [JonΓ‘Ε‘ KulhΓ‘nek](https://jkulhanek.com/) | jkulhanek | Czech Technical University in Prague | -| [Matt Tancik](https://www.matthewtancik.com) | tancik | Luma AI | -| [Matias Turkulainen](https://maturk.github.io/) | maturk | ETH Zurich | -| [Ethan Weber](https://ethanweber.me/) | ethanweber | UC Berkeley | -| [Brent Yi](https://github.com/brentyi) | brent | UC Berkeley | diff --git a/docs/make.bat b/docs/make.bat deleted file mode 100644 index 008ca8c4..00000000 --- a/docs/make.bat +++ /dev/null @@ -1,36 +0,0 @@ -@ECHO OFF - -pushd %~dp0 - -REM Command file for Sphinx documentation - -if "%SPHINXBUILD%" == "" ( - set SPHINXBUILD=sphinx-build -) -set SOURCEDIR=. -set BUILDDIR=_build -set SPHINXOPTS="-W --keep-going" - -%SPHINXBUILD% >NUL 2>NUL -if errorlevel 9009 ( - echo. - echo.The 'sphinx-build' command was not found. Make sure you have Sphinx - echo.installed, then set the SPHINXBUILD environment variable to point - echo.to the full path of the 'sphinx-build' executable. Alternatively you - echo.may add the Sphinx directory to PATH. - echo. - echo.If you don't have Sphinx installed, grab it from - echo.https://www.sphinx-doc.org/ - exit /b 1 -) - -if "%1" == "" goto help - -%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% -goto end - -:help -%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% - -:end -popd diff --git a/docs/nerfology/methods/generfacto.md b/docs/nerfology/methods/generfacto.md deleted file mode 100644 index 4adba583..00000000 --- a/docs/nerfology/methods/generfacto.md +++ /dev/null @@ -1,62 +0,0 @@ -# Generfacto - -

Generate 3D models from text

- -**Our model that combines generative 3D with our latest NeRF methods** - -## Installation - -First install nerfstudio dependencies. Then run: - -```bash -pip install -e .[gen] -``` - -Two options for text to image diffusion models are provided: Stable Diffusion and DeepFloyd IF. -We use Deepfloyd IF by default because it trains faster and produces better results. Using this model requires users to sign a license agreement for the model card of DeepFloyd IF, which can be found [here](https://huggingface.co/DeepFloyd/IF-I-XL-v1.0). Once the licensed is signed, log into Huggingface locally by running the following command: - -```bash -huggingface-cli login -``` - -If you do not want to sign the license agreement, you can use the Stable Diffusion model (instructions below). - -## Running Generfacto - -Once installed, run: - -```bash -ns-train generfacto --prompt "a high quality photo of a pineapple" -``` - -The first time you run this method, the diffusion model weights will be downloaded and cached -from Hugging Face, which may take a couple minutes. - -Specify which diffusion model to use with the diffusion_model flag: - -```bash -ns-train generfacto --pipeline.model.diffusion_model ["stablediffusion", "deepfloyd"] -``` - -## Example Results - -The following videos are renders of NeRFs generated from Generfacto. Each model was trained 30k steps, which took around 1 hour with DeepFloyd -and around 4 hours with Stable Diffusion. - -"a high quality photo of a ripe pineapple" (Stable Diffusion) - - - -"a high quality zoomed out photo of a palm tree" (DeepFloyd) - - - -"a high quality zoomed out photo of a light grey baby shark" (DeepFloyd) - - diff --git a/docs/nerfology/methods/igs2gs.md b/docs/nerfology/methods/igs2gs.md deleted file mode 100644 index 0b60486f..00000000 --- a/docs/nerfology/methods/igs2gs.md +++ /dev/null @@ -1,103 +0,0 @@ -# Instruct-GS2GS - -

Editing Gaussian Splatting Scenes with Instructions

- -```{button-link} https://instruct-gs2gs.github.io/ -:color: primary -:outline: -Paper Website -``` - -```{button-link} https://github.com/cvachha/instruct-gs2gs -:color: primary -:outline: -Code -``` - - - -**Instruct-GS2GS enables instruction-based editing of 3D Gaussian Splatting scenes via a 2D diffusion model** - -## Installation - -First install nerfstudio dependencies. Then run: - -```bash -pip install git+https://github.com/cvachha/instruct-gs2gs -cd instruct-gs2gs -pip install --upgrade pip setuptools -pip install -e . -``` - -## Running Instruct-GS2GS - -Details for running Instruct-GS2GS (built with Nerfstudio!) can be found [here](https://github.com/cvachha/instruct-gs2gs). Once installed, run: - -```bash -ns-train igs2gs --help -``` - -| Method | Description | Memory | -| ------------ | ---------------------------- | ------ | -| `igs2gs` | Full model, used in paper | ~15GB | - -Datasets need to be processed with COLMAP for Gaussian Splatting support. - -Once you have trained your GS scene for 20k iterations, the checkpoints will be saved to the `outputs` directory. Copy the path to the `nerfstudio_models` folder. (Note: We noticed that training for 20k iterations rather than 30k seemed to run more reliably) - -To start training for editing the GS, run the following command: - -```bash -ns-train igs2gs --data {PROCESSED_DATA_DIR} --load-dir {outputs/.../nerfstudio_models} --pipeline.prompt {"prompt"} --pipeline.guidance-scale 12.5 --pipeline.image-guidance-scale 1.5 -``` - -The `{PROCESSED_DATA_DIR}` must be the same path as used in training the original GS. Using the CLI commands, you can choose the prompt and the guidance scales used for InstructPix2Pix. - -## Method - -### Overview - -Instruct-GS2GS is a method for editing 3D Gaussian Splatting (3DGS) scenes with text instructions in a method based on [Instruct-NeRF2NeRF](https://instruct-nerf2nerf.github.io/). Given a 3DGS scene of a scene and the collection of images used to reconstruct it, this method uses an image-conditioned diffusion model ([InstructPix2Pix](https://www.timothybrooks.com/instruct-pix2pix)) to iteratively edit the input images while optimizing the underlying scene, resulting in an optimized 3D scene that respects the edit instruction. The paper demonstrates that our proposed method is able to edit large-scale, real-world scenes, and is able to accomplish realistic and targeted edits. - - -## Pipeline - - - -This section will walk through each component of the Instruct-GS2GS method. - -### How it Works - -Instruct-GS2GS gradually updates a reconstructed Gaussian Splatting scene by iteratively updating the dataset images while training the 3DGS: - -1. Images are rendered from the scene at all training viewpoints. -2. They get edited by InstructPix2Pix given a global text instruction. -3. The training dataset images are replaced with the edited images. -4. The 3DGS continues training as usual for 2.5k iterations. - -### Editing Images with InstructPix2Pix - -To update a dataset image from a given viewpoint, Instruct-GS2GS takes the original, unedited training image as image conditioning and uses the global text instruction as text conditioning. This process mixes the information of the diffusion model, which attempts to edit the image, the current 3D structure of the 3DGS, and view-consistent information from the unedited, ground-truth images. By combining this set of information, the edit is respected while maintaining 3D consistency. - -The code snippet for how an image is edited in the pipeline can be found [here](https://github.com/cvachha/instruct-gs2gs/blob/main/igs2gs/ip2p.py). - -### Iterative Dataset Update and Implementation - -The method takes in a dataset of camera poses and training images, a trained 3DGS scene, and a user-specified text-prompt instruction, e.g. β€œmake him a marble statue”. Instruct-GS2GS constructs the edited GS scene guided by the text-prompt by applying a 2D text and image conditioned diffusion model, in this case Instruct-Pix2Pix, to all training images over the course of training. It performs these edits using an iterative udpate scheme in which all training dataset images are updated using a diffusion model individually, for sequential iterations spanning the size of the training images, every 2.5k training iterations. This process allows the GS to have a holistic edit and maintain 3D consistency. - -The process is similar to Instruct-NeRF2NeRF where for a given training camera view, it sets the original training image as the conditioning image, the noisy image input as the GS rendered from the camera combined with some randomly selected noise, and receives an edited image respecting the text conditioning. With this method, it is able to propagate the edited changes to the GS scene. The method is able to maintain grounded edits by conditioning Instruct-Pix2Pix on the original unedited training image. - -This method uses Nerfstudio’s gsplat library for our underlying gaussian splatting model. We adapt similar parameters for the diffusion model from Instruct-NeRF2NeRF. Among these are the values that define the amount of noise (and therefore the amount signal retained from the original images). We vary the classifier-free guidance scales per edit and scene, using a range of values. We edit the entire dataset and then train the scene for 2.5k iterations. For GS training, we use L1 and LPIPS losses. We train our method for a maximum of 27.5k iterations (starting with a GS scene trained for 20k iterations). However, in practice we stop training once the edit has converged. In many cases, the optimal training length is a subjective decision β€” a user may prefer more subtle or more extreme edits that are best found at different stages of training. - - -## Results - -For results, view the [project page](https://instruct-gs2gs.github.io/)! - - \ No newline at end of file diff --git a/docs/nerfology/methods/imgs/ingp/hash_figure.png b/docs/nerfology/methods/imgs/ingp/hash_figure.png deleted file mode 100644 index 602d5fdb..00000000 Binary files a/docs/nerfology/methods/imgs/ingp/hash_figure.png and /dev/null differ diff --git a/docs/nerfology/methods/imgs/mipnerf/models_mipnerf_field-dark.png b/docs/nerfology/methods/imgs/mipnerf/models_mipnerf_field-dark.png deleted file mode 100644 index 2c6ade39..00000000 Binary files a/docs/nerfology/methods/imgs/mipnerf/models_mipnerf_field-dark.png and /dev/null differ diff --git a/docs/nerfology/methods/imgs/mipnerf/models_mipnerf_field-light.png b/docs/nerfology/methods/imgs/mipnerf/models_mipnerf_field-light.png deleted file mode 100644 index 53322598..00000000 Binary files a/docs/nerfology/methods/imgs/mipnerf/models_mipnerf_field-light.png and /dev/null differ diff --git a/docs/nerfology/methods/imgs/mipnerf/models_mipnerf_pipeline-dark.png b/docs/nerfology/methods/imgs/mipnerf/models_mipnerf_pipeline-dark.png deleted file mode 100644 index be912c5c..00000000 Binary files a/docs/nerfology/methods/imgs/mipnerf/models_mipnerf_pipeline-dark.png and /dev/null differ diff --git a/docs/nerfology/methods/imgs/mipnerf/models_mipnerf_pipeline-light.png b/docs/nerfology/methods/imgs/mipnerf/models_mipnerf_pipeline-light.png deleted file mode 100644 index 53b840c5..00000000 Binary files a/docs/nerfology/methods/imgs/mipnerf/models_mipnerf_pipeline-light.png and /dev/null differ diff --git a/docs/nerfology/methods/imgs/models_nerf-field-dark.png b/docs/nerfology/methods/imgs/models_nerf-field-dark.png deleted file mode 100644 index 22b054d4..00000000 Binary files a/docs/nerfology/methods/imgs/models_nerf-field-dark.png and /dev/null differ diff --git a/docs/nerfology/methods/imgs/models_nerf-field-light.png b/docs/nerfology/methods/imgs/models_nerf-field-light.png deleted file mode 100644 index 0bc667c0..00000000 Binary files a/docs/nerfology/methods/imgs/models_nerf-field-light.png and /dev/null differ diff --git a/docs/nerfology/methods/imgs/models_nerf-pipeline-dark.png b/docs/nerfology/methods/imgs/models_nerf-pipeline-dark.png deleted file mode 100644 index 7830c7de..00000000 Binary files a/docs/nerfology/methods/imgs/models_nerf-pipeline-dark.png and /dev/null differ diff --git a/docs/nerfology/methods/imgs/models_nerf-pipeline-field-dark.png b/docs/nerfology/methods/imgs/models_nerf-pipeline-field-dark.png deleted file mode 100644 index 6da59cdc..00000000 Binary files a/docs/nerfology/methods/imgs/models_nerf-pipeline-field-dark.png and /dev/null differ diff --git a/docs/nerfology/methods/imgs/models_nerf-pipeline-field-light.png b/docs/nerfology/methods/imgs/models_nerf-pipeline-field-light.png deleted file mode 100644 index 0c3969f5..00000000 Binary files a/docs/nerfology/methods/imgs/models_nerf-pipeline-field-light.png and /dev/null differ diff --git a/docs/nerfology/methods/imgs/models_nerf-pipeline-light.png b/docs/nerfology/methods/imgs/models_nerf-pipeline-light.png deleted file mode 100644 index 7da73a04..00000000 Binary files a/docs/nerfology/methods/imgs/models_nerf-pipeline-light.png and /dev/null differ diff --git a/docs/nerfology/methods/imgs/models_nerf-pipeline-renderer-dark.png b/docs/nerfology/methods/imgs/models_nerf-pipeline-renderer-dark.png deleted file mode 100644 index 73ec87b2..00000000 Binary files a/docs/nerfology/methods/imgs/models_nerf-pipeline-renderer-dark.png and /dev/null differ diff --git a/docs/nerfology/methods/imgs/models_nerf-pipeline-renderer-light.png b/docs/nerfology/methods/imgs/models_nerf-pipeline-renderer-light.png deleted file mode 100644 index ca805623..00000000 Binary files a/docs/nerfology/methods/imgs/models_nerf-pipeline-renderer-light.png and /dev/null differ diff --git a/docs/nerfology/methods/imgs/models_nerf-pipeline-sampler-dark.png b/docs/nerfology/methods/imgs/models_nerf-pipeline-sampler-dark.png deleted file mode 100644 index ad02996a..00000000 Binary files a/docs/nerfology/methods/imgs/models_nerf-pipeline-sampler-dark.png and /dev/null differ diff --git a/docs/nerfology/methods/imgs/models_nerf-pipeline-sampler-light.png b/docs/nerfology/methods/imgs/models_nerf-pipeline-sampler-light.png deleted file mode 100644 index c798e1b6..00000000 Binary files a/docs/nerfology/methods/imgs/models_nerf-pipeline-sampler-light.png and /dev/null differ diff --git a/docs/nerfology/methods/imgs/nerfacto/models_nerfacto_field-dark.png b/docs/nerfology/methods/imgs/nerfacto/models_nerfacto_field-dark.png deleted file mode 100644 index 8e37c832..00000000 Binary files a/docs/nerfology/methods/imgs/nerfacto/models_nerfacto_field-dark.png and /dev/null differ diff --git a/docs/nerfology/methods/imgs/nerfacto/models_nerfacto_field-light.png b/docs/nerfology/methods/imgs/nerfacto/models_nerfacto_field-light.png deleted file mode 100644 index 1a9cea55..00000000 Binary files a/docs/nerfology/methods/imgs/nerfacto/models_nerfacto_field-light.png and /dev/null differ diff --git a/docs/nerfology/methods/imgs/nerfacto/models_nerfacto_pipeline-dark.png b/docs/nerfology/methods/imgs/nerfacto/models_nerfacto_pipeline-dark.png deleted file mode 100644 index c80fbd7e..00000000 Binary files a/docs/nerfology/methods/imgs/nerfacto/models_nerfacto_pipeline-dark.png and /dev/null differ diff --git a/docs/nerfology/methods/imgs/nerfacto/models_nerfacto_pipeline-light.png b/docs/nerfology/methods/imgs/nerfacto/models_nerfacto_pipeline-light.png deleted file mode 100644 index e62869ca..00000000 Binary files a/docs/nerfology/methods/imgs/nerfacto/models_nerfacto_pipeline-light.png and /dev/null differ diff --git a/docs/nerfology/methods/imgs/tensorf/models_tensorf_factorization.png b/docs/nerfology/methods/imgs/tensorf/models_tensorf_factorization.png deleted file mode 100644 index 8557a6c3..00000000 Binary files a/docs/nerfology/methods/imgs/tensorf/models_tensorf_factorization.png and /dev/null differ diff --git a/docs/nerfology/methods/imgs/tensorf/models_tensorf_pipeline.png b/docs/nerfology/methods/imgs/tensorf/models_tensorf_pipeline.png deleted file mode 100644 index 310e0865..00000000 Binary files a/docs/nerfology/methods/imgs/tensorf/models_tensorf_pipeline.png and /dev/null differ diff --git a/docs/nerfology/methods/in2n.md b/docs/nerfology/methods/in2n.md deleted file mode 100644 index 3b75d9a5..00000000 --- a/docs/nerfology/methods/in2n.md +++ /dev/null @@ -1,96 +0,0 @@ -# Instruct-NeRF2NeRF - -

Editing 3D Scenes with Instructions

- -```{button-link} https://instruct-nerf2nerf.github.io/ -:color: primary -:outline: -Paper Website -``` - -```{button-link} https://github.com/ayaanzhaque/instruct-nerf2nerf -:color: primary -:outline: -Code -``` - - - -**Instruct-NeRF2NeRF enables instruction-based editing of NeRFs via a 2D diffusion model** - -## Installation - -First install nerfstudio dependencies. Then run: - -```bash -pip install git+https://github.com/ayaanzhaque/instruct-nerf2nerf -``` - -## Running Instruct-NeRF2NeRF - -Details for running Instruct-NeRF2NeRF (built with Nerfstudio!) can be found [here](https://github.com/ayaanzhaque/instruct-nerf2nerf). Once installed, run: - -```bash -ns-train in2n --help -``` - -Three variants of Instruct-NeRF2NeRF are provided: - -| Method | Description | Memory | Quality | -| ------------ | ---------------------------- | ------ | ------- | -| `in2n` | Full model, used in paper | ~15GB | Best | -| `in2n-small` | Half precision model | ~12GB | Good | -| `in2n-tiny` | Half prevision with no LPIPS | ~10GB | Ok | - -## Method - -### Overview - -Instruct-NeRF2NeRF is a method for editing NeRF scenes with text-instructions. Given a NeRF of a scene and the collection of images used to reconstruct it, the method uses an image-conditioned diffusion model ([InstructPix2Pix](https://www.timothybrooks.com/instruct-pix2pix)) to iteratively edit the input images while optimizing the underlying scene, resulting in an optimized 3D scene that respects the edit instruction. The paper demonstrates that their method is able to edit large-scale, real-world scenes, and is able to accomplish more realistic, targeted edits than prior work. - -## Pipeline - - - -This section will walk through each component of the Instruct-NeRF2NeRF method. - -### How it Works - -Instruct-NeRF2NeRF gradually updates a reconstructed NeRF scene by iteratively updating the dataset images while training the NeRF: - -1. An image is rendered from the scene at a training viewpoint. -2. It is edited by InstructPix2Pix given a global text instruction. -3. The training dataset image is replaced with the edited image. -4. The NeRF continues training as usual. - -### Editing Images with InstructPix2Pix - -InstructPix2Pix is an image-editing diffusion model which can be prompted using text instructions. More details on InstructPix2Pix can be found [here](https://www.timothybrooks.com/instruct-pix2pix). - -Traditionally, at inference time, InstructPix2Pix takes as input random noise and is conditioned on an image (the image to edit) and a text instruction. The strength of the edit can be controlled using the image and text classifier-free guidance scales. - -To update a dataset image a given viewpoint, Instruct-NeRF2NeRF first takes the original, unedited training image as image conditioning and uses the global text instruction as text conditioning. The main input to the diffusion model is a noised version of the current render from the given viewpoint. The noise is sampled from a normal distribution and scaled based on a randomly chosen timestep. Then InstructPix2Pix slowly denoises the rendered image by predicting the noised version of the image at previous timesteps until the image is fully denoised. This will produce an edited version of the input image. - -This process mixes the information of the diffusion model, which attempts to edit the image, the current 3D structure of the NeRF, and view-consistent information from the unedited, ground-truth images. By combining this set of information, the edit is respected while maintaining 3D consistency. - -The code snippet for how an image is edited in the pipeline can be found [here](https://github.com/ayaanzhaque/instruct-nerf2nerf/blob/main/in2n/ip2p.py). - -### Iterative Dataset Update - -When NeRF training starts, the dataset consists of the original, unedited images used to train the original scene. These images are saved separately to use as conditioning for InstructPix2Pix. At each optimization step, some number of NeRF optimization steps are performed, and then some number of images (often just one) are updated. The images are randomly ordered prior to training and then at each step, the images are chosen in order to edit. Once an image has been edited, it is replaced in the dataset. Importantly, at each NeRF step, rays are sampled across the entire dataset, meaning there is a mixed source of supervision between edited images and unedited images. This allows for a gradual optimization that balances maintaining the 3D structure and consistency of the NeRF as well as performing the edit. - -At early iterations of this process, the edited images may be inconsistent with one another, as InstructPix2Pix often doesn't perform consistent edits across viewpoints. However, over time, since images are edited using the current render of the NeRF, the edits begin to converge towards a globally consistent depiction of the underlying scene. Here is an example of how the underlying dataset evolves and becomes more consistent. - - - -The traditional method for supervising NeRFs using diffusion models is to use a Score Distillation Sampling (SDS) loss, as proposed in [DreamFusion](https://dreamfusion3d.github.io/). The Iterative Dataset Update method can be viewed as a variant of SDS, as instead of updating a discrete set of images at each step, the loss is a mix of rays from various viewpoints which are edited to varying degrees. The results show that this leads to higher quality performance and more stable optimization. - -## Results - -For results, view the [project page](https://instruct-nerf2nerf.github.io/)! diff --git a/docs/nerfology/methods/index.md b/docs/nerfology/methods/index.md deleted file mode 100644 index 5284b688..00000000 --- a/docs/nerfology/methods/index.md +++ /dev/null @@ -1,74 +0,0 @@ -# Methods - -We provide a set of pre implemented nerfstudio methods. - -**The goal of nerfstudio is to modularize the various NeRF techniques as much as possible.** - -As a result, many of the techniques from these pre-implemented methods can be mixed 🎨. - -## Running a method - -It's easy! - -```bash -ns-train {METHOD_NAME} -``` - -To list the available methods run: - -```bash -ns-train --help -``` - -## Implemented Methods - -The following methods are supported in nerfstudio: - -```{toctree} - :maxdepth: 1 - Instant-NGP - Splatfacto - Instruct-NeRF2NeRF - K-Planes - LERF - Mip-NeRF - NeRF - Nerfacto - Nerfbusters - NeRFPlayer - Tetra-NeRF - TensoRF - Generfacto - Instruct-GS2GS - PyNeRF - SeaThru-NeRF - Zip-NeRF -``` - -(own_method_docs)= - -## Adding Your Own Method - -If you're a researcher looking to develop new NeRF-related methods, we hope that you find nerfstudio to be a useful tool. We've provided documentation about integrating with the nerfstudio codebase, which you can find [here](../../developer_guides/new_methods.md). - -We also welcome additions to the list of methods above. To do this, simply create a pull request with the following changes, - -1. Add a markdown file describing the model to the `docs/nerfology/methods` folder -2. Update the above list of implement methods in this file. -3. Add the method to {ref}`this` list in `docs/index.md`. -4. Add a new `ExternalMethod` entry to the `nerfstudio/configs/external_methods.py` file. - -For the method description, please refer to the [Instruct-NeRF2NeRF](in2n) page as an example of the layout. Please try to include the following information: - -- Installation instructions -- Instructions for running the method -- Requirements (dataset, GPU, ect) -- Method description (the more detailed the better, treat it like a blog post) - -You are welcome to include assets (such as images or video) in the description, but please host them elsewhere. - -:::{admonition} Note -:class: note - -Please ensure that the documentation is clear and easy to understand for other users who may want to try out your method. -::: diff --git a/docs/nerfology/methods/instant_ngp.md b/docs/nerfology/methods/instant_ngp.md deleted file mode 100644 index 5f5f7e07..00000000 --- a/docs/nerfology/methods/instant_ngp.md +++ /dev/null @@ -1,69 +0,0 @@ -# Instant-NGP - -

Instant Neural Graphics Primitives with a Multiresolution Hash Encoding

- -```{button-link} https://nvlabs.github.io/instant-ngp/ -:color: primary -:outline: -Paper Website -``` - - - -### Running the Model - -Instant-NGP is built locally into Nerfstudio. To use the method, run - -```bash -ns-train instant-ngp --help -``` - -Many of the main contributions of Instant-NGP are built into our Nerfacto method, so for real-world scenes, we recommend using the Nerfacto model. - -## Method - -### Overview - -Instant-NGP breaks NeRF training into 3 pillars and proposes improvements to each to enable real-time training of NeRFs. The 3 pillars are: - -1. An improved training and rendering algorithm via a ray marching scheme which uses an occupancy grid -2. A smaller, fully-fused neural network -3. An effective multi-resolution hash encoding, the main contribution of this paper. - -The core idea behind the improved sampling technique is that sampling over empty space should be skipped and sampling behind high density areas should also be skipped. This is achieved by maintaining a set of multiscale occupancy grids which coarsely mark empty and non-empty space. Occupancy is stored as a single bit, and a sample on a ray is skipped if its occupancy is too low. These occupancy grids are stored independently of the trainable encoding and are updated throughout training based on the updated density predictions. The authors find they can increase sampling speed by 10-100x compared to naive approaches. - -Nerfstudio uses [NerfAcc](https://www.nerfacc.com/index.html) as the sampling algorithm implementation. The details on NerfAcc's sampling and occupancy grid is discussed [here](https://www.nerfacc.com/en/stable/methodology/sampling.html#occupancy-grid-estimator). - -Another major bottleneck for NeRF's training speed has been querying the neural network. The authors of this work implement the network such that it runs entirely on a single CUDA kernel. The network is also shrunk down to be just 4 layers with 64 neurons in each layer. They show that their fully-fused neural network is 5-10x faster than a Tensorflow implementation. - -Nerfstudio uses the [tinycudann](https://github.com/NVlabs/tiny-cuda-nn) framework to utilize the fully-fused neural networks. - -The speedups at each level are multiplicative. With all their improvements, Instant-NGP reaches speedups of 1000x, which enable training NeRF scenes in a matter of seconds! - -### Multi-Resolution Hash Encoding - -```{image} imgs/ingp/hash_figure.png -:align: center -``` - -One contribution of Instant-NGP is the multi-resolution hash encoding. In the traditional NeRF pipelines, input coordinates are mapped to a higher dimensional space using a positional encoding function, which is described [here](../model_components/visualize_encoders.ipynb). Instant-NGP proposes a trainable hash-based encoding. The idea is to map coordinates to trainable feature vectors which can be optimized in the standard flow of NeRF training. - -The trainable features are F-dimensional vectors and are arranged into L grids which contain up to T vectors, where L represents the number of resolutions for features and T represents the number of feature vectors in each hash grid. The steps for the hash grid encoding, as shown in the figure provided by the authors, are as follows: - -1. Given an input coordinate, find the surrounding voxels at L resolution levels and hash the vertices of these grids. -2. The hashed vertices are used as keys to look up trainable F-dimensional feature vectors. -3. Based on where the coordinate lies in space, the feature vectors are linearly interpolated to match the input coordinate. -4. The feature vectors from each grid are concatenated, along with any other parameters such as viewing direction, -5. The final vector is inputted into the neural network to predict the RGB and density output. - -Steps 1-3 are done independently at each resolution level. Thus, since these feature vectors are trainable, when backpropagating the loss gradient, the gradients will flow through the neural network and interpolation function all the way back to the feature vectors. The feature vectors are interpolated relative to the coordinate such that the network can learn a smooth function. - -An important note is that hash collisions are not explicitly handled. At each hash index, there may be multiple vertices which index to that feature vector, but because these vectors are trainable, the vertices that are most important to the specific output will have the highest gradient, and therefore automatically dominate the optimization of that feature. - -This encoding structure creates a tradeoff between quality, memory, and performance. The main parameters which can be adjusted are the size of the hash table (T), the size of the feature vectors (F), and the number of resolutions (L). - -Instant-NGP encodes the viewing direction using spherical harmonic encodings. - -Our [`nerfacto`](./nerfacto.md) model uses both the fully-fused MLP and the hash encoder, which were inspired by Instant-NGP. Lastly, our implementation covers the major ideas from Instant-NGP, but it doesn't strictly follow every detail. Some known differences include learning rate schedulers, hyper-parameters for sampling, and how camera gradients are calculated if enabled. diff --git a/docs/nerfology/methods/kplanes.md b/docs/nerfology/methods/kplanes.md deleted file mode 100644 index 65c6c104..00000000 --- a/docs/nerfology/methods/kplanes.md +++ /dev/null @@ -1,87 +0,0 @@ -# K-Planes - -

Explicit Radiance Fields in Space, Time, and Appearance

- - -```{button-link} https://sarafridov.github.io/K-Planes/ -:color: primary -:outline: -Paper Website -``` - -```{button-link} https://github.com/sarafridov/K-Plane -:color: primary -:outline: -Official Code -``` - -```{button-link} https://github.com/Giodiro/kplanes_nerfstudio -:color: primary -:outline: -Nerfstudio add-on code -``` - - - -**A unified model for static, dynamic and variable appearance NeRFs.** - - -## Installation - -First, install nerfstudio and its dependencies. Then install the K-Planes add-on -``` -pip install kplanes-nerfstudio -``` - -## Running K-Planes - -There are two default configurations provided which use the blender and DNeRF dataloaders. However, you can easily extend them to create a new configuration for different datasets. - -The default configurations provided are -| Method | Description | Scene type | Memory | -| ----------------- | -------------------------| ------------------------------ | ------ | -| `kplanes` | Tuned for blender scenes | static, synthetic | ~4GB | -| `kplanes-dynamic` | Tuned for DNeRF dataset | dynamic (monocular), synthetic | ~5GB | - - -for training with these two configurations you should run -```bash -ns-train kplanes --data -``` -or -```bash -ns-train kplanes-dynamic --data -``` - -:::{admonition} Note -:class: warning - -`kplanes` is set up to use blender data, (download it running `ns-download-data blender`), -`kplanes-dynamic` is set up to use DNeRF data, (download it running `ns-download-data dnerf`). -::: - - -## Method - -![method overview](https://sarafridov.github.io/K-Planes/assets/intro_figure.jpg)
-K-planes represents a scene in k dimensions -- where k can be 3 for static 3-dimensional scenes or 4 for scenes which change in time -- -using k-choose-2 planes (or grids). After ray-sampling, the querying the field at a certain position consists in querying each plane (with interpolation), and combining the resulting features through multiplication. -This factorization of space and time keeps memory usage low, and is very flexible in the kinds of priors and regularizers that can be added.
-
- -We support hybrid models with a small MLP (left) and fully explicit models (right), through the `linear_decoder` [configuration key](https://github.com/Giodiro/kplanes_nerfstudio/blob/db4130605159dadaf180228be5d0335d2c4d21f9/kplanes/kplanes.py#L87) -
- - - -The model also supports decomposing a scene into its space and time components. For more information on how to do this see the [official code repo](https://github.com/sarafridov/K-Plane) -
- diff --git a/docs/nerfology/methods/lerf.md b/docs/nerfology/methods/lerf.md deleted file mode 100644 index 509c88fa..00000000 --- a/docs/nerfology/methods/lerf.md +++ /dev/null @@ -1,91 +0,0 @@ -# LERF - -

πŸ“Ž Language Embedded Radiance Fields 🚜

- -```{button-link} https://www.lerf.io/ -:color: primary -:outline: -Paper Website -``` - -```{button-link} https://github.com/kerrj/lerf -:color: primary -:outline: -Code -``` - - - -**Grounding CLIP vectors volumetrically inside NeRF allows flexible natural language queries in 3D** - -## Installation - -First install nerfstudio dependencies. Then run: - -```bash -pip install git+https://github.com/kerrj/lerf -``` - -## Running LERF - -Details for running LERF (built with Nerfstudio!) can be found [here](https://github.com/kerrj/lerf). Once installed, run: - -```bash -ns-train lerf --help -``` - -Three variants of LERF are provided: - -| Method | Description | Memory | Quality | -| ----------- | ----------------------------------------------- | ------ | ------- | -| `lerf-big` | LERF with OpenCLIP ViT-L/14 | ~22 GB | Best | -| `lerf` | Model with OpenCLIP ViT-B/16, used in paper | ~15 GB | Good | -| `lerf-lite` | LERF with smaller network and less LERF samples | ~8 GB | Ok | - -`lerf-lite` should work on a single NVIDIA 2080. -`lerf-big` is experimental, and needs further tuning. - -## Method - -LERF enables pixel-aligned queries of the distilled 3D CLIP embeddings without relying on region proposals, masks, or fine-tuning, supporting long-tail open-vocabulary queries hierarchically across the volume. - -### Multi-scale supervision - -To supervise language embeddings, we pre-compute an image pyramid of CLIP features for each training view. Then, each sampled ray during optimization is supervised by interpolating the CLIP embedding within this pyramid. - - - -### LERF Optimization - -LERF optimizes a dense, multi-scale language 3D field by volume rendering CLIP embeddings along training rays, supervising these embeddings with multi-scale CLIP features across multi-view training images. - -Inspired by Distilled Feature Fields (DFF), we use DINO features to regularize CLIP features. This leads to qualitative improvements in object boundaries, as CLIP embeddings in 3D can be sensitive to floaters and regions with few views. - -After optimization, LERF can extract 3D relevancy maps for language queries interactively in real-time. - - - -### Visualizing relevancy for text queries - -Set the "Output Render" type to `relevancy_0`, and enter the text query in the "LERF Positives" textbox (see image). The output render will show the 3D relevancy map for the query. View the [project page](https://lerf.io) for more examples and details about the relevancy map normalization. - -
- -
- -## Results - -For results, view the [project page](https://lerf.io)! - -Datasets used in the original paper can be found [here](https://drive.google.com/drive/folders/1LUzwEvBCE19PNYcwfmrG-9FLpZLbi4on?usp=sharing). - -```none -@article{lerf2023, - author = {Kerr, Justin and Kim, Chung Min and Goldberg, Ken and Kanazawa, Angjoo and Tancik, Matthew}, - title = {LERF: Language Embedded Radiance Fields}, - journal = {arXiv preprint arXiv:2303.09553}, - year = {2023}, -} -``` diff --git a/docs/nerfology/methods/mipnerf.md b/docs/nerfology/methods/mipnerf.md deleted file mode 100644 index 58ba4a2a..00000000 --- a/docs/nerfology/methods/mipnerf.md +++ /dev/null @@ -1,43 +0,0 @@ -# Mip-NeRF - -

A Multiscale Representation for Anti-Aliasing Neural Radiance Fields

- -```{button-link} https://jonbarron.info/mipnerf/ -:color: primary -:outline: -Paper Website -``` - -### Running Model - -```bash -ns-train mipnerf -``` - -## Overview - -```{image} imgs/mipnerf/models_mipnerf_pipeline-light.png -:align: center -:class: only-light -``` - -```{image} imgs/mipnerf/models_mipnerf_pipeline-dark.png -:align: center -:class: only-dark -``` - -The primary modification in MipNeRF is in the encoding for the field representation. With the modification the same _mip-NeRF_ field can be use for the coarse and fine steps of the rendering hierarchy. - -```{image} imgs/mipnerf/models_mipnerf_field-light.png -:align: center -:class: only-light -:width: 400 -``` - -```{image} imgs/mipnerf/models_mipnerf_field-dark.png -:align: center -:class: only-dark -:width: 400 -``` - -In the field, the Positional Encoding (PE) is replaced with an Integrated Positional Encoding (IPE) that takes into account the size of the sample. diff --git a/docs/nerfology/methods/nerf.md b/docs/nerfology/methods/nerf.md deleted file mode 100644 index bf79592e..00000000 --- a/docs/nerfology/methods/nerf.md +++ /dev/null @@ -1,178 +0,0 @@ -# NeRF - -

Neural Radiance Fields

- -```{button-link} https://www.matthewtancik.com/nerf -:color: primary -:outline: -Paper Website -``` - -### Running the model - -```bash -ns-train vanilla-nerf -``` - -## Method overview - -If you have arrived to this site, it is likely that you have at least heard of NeRFs. This page will discuss the original NeRF paper, _"NeRF: Representing Scenes as Neural Radiance Fields for View Synthesis"_ by Mildenhall, Srinivasan, Tancik et al. (2020). - -For most tasks, using the original NeRF model is likely not a good choice and hence we provide implementations of various other NeRF related models. It is however useful to understand how NeRF's work as most follow ups follow a similar structure and it doesn't require CUDA to execute (useful for stepping through the code with a debugger if you don't have a GPU at hand). - -The goal is to optimize a volumetric representation of a scene that can be rendered from novel viewpoints. This representation is optimized from a set of images and associated camera poses. - -```{admonition} Assumptions -If any of the following assumptions are broken, the reconstructions may fail completely or contain artifacts such as excess geometry. -* Camera poses are known -* Scene is static, objects do not move -* The scene appearance is constant (ie. exposure doesn't change) -* Dense input capture (Each point in the scene should be visible in multiple images) -``` - -## Pipeline - -```{image} imgs/models_nerf-pipeline-light.png -:align: center -:class: only-light -``` - -```{image} imgs/models_nerf-pipeline-dark.png -:align: center -:class: only-dark -``` - -Here is an overview pipeline for NeRF, we will walk through each component in this guide. - -### Field representation - -```{image} imgs/models_nerf-pipeline-field-light.png -:align: center -:class: only-light -``` - -```{image} imgs/models_nerf-pipeline-field-dark.png -:align: center -:class: only-dark -``` - -NeRFs are a volumetric representation encoded into a neural network. They are not 3D meshes and they are not voxels. **For each point in space the NeRF represents a view dependent radiance.** More concretely each point has a density which describes how transparent or opaque a point in space is. They also have a view dependent color that changes depending on the angle the point is viewed. - -```{image} imgs/models_nerf-field-light.png -:align: center -:class: only-light -:width: 400 -``` - -```{image} imgs/models_nerf-field-dark.png -:align: center -:class: only-dark -:width: 400 -``` - -The associated NeRF fields can be instantiated with the following nerfstudio code (encoding described in next section): - -```python -from nerfstudio.fields.vanilla_nerf_field import NeRFField - -field_coarse = NeRFField(position_encoding=pos_enc, direction_encoding=dir_enc) -field_fine = NeRFField(position_encoding=pos_enc, direction_encoding=dir_enc) -``` - -#### Positional encoding - -An extra trick is necessary to make the neural network expressive enough to represent fine details in the scene. The input coordinates $(x,y,z,\theta,\phi)$ need to be encoded to a higher dimensional space prior to being input into the network. You can learn more about encodings [here](../model_components/visualize_encoders.ipynb). - -```python -from nerfstudio.field_components.encodings import NeRFEncoding - -pos_enc = NeRFEncoding( - in_dim=3, num_frequencies=10, min_freq_exp=0.0, max_freq_exp=8.0, include_input=True -) -dir_enc = NeRFEncoding( - in_dim=3, num_frequencies=4, min_freq_exp=0.0, max_freq_exp=4.0, include_input=True -) -``` - -### Rendering - -```{image} imgs/models_nerf-pipeline-renderer-light.png -:align: center -:class: only-light -``` - -```{image} imgs/models_nerf-pipeline-renderer-dark.png -:align: center -:class: only-dark -``` - -Now that we have a representation of space, we need some way to render new images of it. To accomplish this, we are going to _project_ a ray from the target pixel and evaluate points along that ray. We then rely on classic volumetric rendering techniques [[Kajiya, 1984]](https://dl.acm.org/doi/abs/10.1145/964965.808594) to composite the points into a predicted color. - -This compositing is similar to what happens in tools like Photoshop when you layer multiple objects of varying opacity on top of each other. The only difference is that NeRF takes into account the differences in spacing between points. - -Rending RGB images is not the only type of output render supported. It is possible to render other output types such as depth and semantics. Additional renderers can be found [Here](../../reference/api/model_components/renderers.rst). - -Associated nerfstudio code: - -```python -from nerfstudio.model_components.renderers import RGBRenderer - -renderer_rgb = RGBRenderer(background_color=colors.WHITE) -# Ray samples discussed in the next section -field_outputs = field_coarse.forward(ray_samples) -weights = ray_samples.get_weights(field_outputs[FieldHeadNames.DENSITY]) -rgb = renderer_rgb( - rgb=field_outputs[FieldHeadNames.RGB], - weights=weights, -) -``` - -#### Sampling - -```{image} imgs/models_nerf-pipeline-sampler-light.png -:align: center -:class: only-light -``` - -```{image} imgs/models_nerf-pipeline-sampler-dark.png -:align: center -:class: only-dark -``` - -How we sample points along rays in space is an important design decision. Various sampling strategies can be used which are discussed in detail in the [Ray Samplers](../model_components/visualize_samplers.ipynb) guide. In NeRF we take advantage of a hierarchical sampling scheme that first uses a _uniform sampler_ and is followed by a _PDF sampler_. - -The uniform sampler distributes samples evenly between a predefined distance range from the camera. These are then used to compute an initial render of the scene. The renderer optionally produces _weights_ for each sample that correlate with how important each sample was to the final renderer. - -The PDF sampler uses these _weights_ to generate a new set of samples that are biased to regions of higher weight. In practice, these regions are near the surface of the object. - -Associated code: - -```python -from nerfstudio.model_components.ray_samplers import PDFSampler, UniformSampler - -sampler_uniform = UniformSampler(num_samples=num_coarse_samples) -ray_samples_uniform = sampler_uniform(ray_bundle) - -sampler_pdf = PDFSampler(num_samples=num_importance_samples) -field_outputs_coarse = field_coarse.forward(ray_samples_uniform) -weights_coarse = ray_samples_uniform.get_weights(field_outputs_coarse[FieldHeadNames.DENSITY]) -ray_samples_pdf = sampler_pdf(ray_bundle, ray_samples_uniform, weights_coarse) -``` - -```{warning} -Described above is specific to scenes that have known bounds (ie. the Blender Synthetic dataset). For unbounded scenes, the original NeRF paper uses Normalized Device Coordinates (NDC) to warp space, along with a _linear in disparity_ sampler. We do not support NDC, for unbounded scenes consider using [Spatial Distortions](../model_components/visualize_spatial_distortions.ipynb). -``` - -```{tip} -For all sampling, we use _Stratified_ samples during optimization and unmodified samples during inference. Further details can be found in the [Ray Samplers](../model_components/visualize_samplers.ipynb) guide. -``` - -## Benchmarks - -##### Blender synthetic - -| Implementation | Mic | Ficus | Chair | Hotdog | Materials | Drums | Ship | Lego | Average | -| --------------------------------------------------------------------------------- | :-------: | --------- | :-------: | --------- | --------- | --------- | --------- | --------- | --------- | -| nerfstudio | 33.76 | **31.98** | **34.35** | 36.57 | **31.00** | **25.11** | 29.87 | **34.46** | **32.14** | -| [TF NeRF](https://github.com/bmild/nerf) | 32.91 | 30.13 | 33.00 | 36.18 | 29.62 | 25.01 | 28.65 | 32.54 | 31.04 | -| [JaxNeRF](https://github.com/google-research/google-research/tree/master/jaxnerf) | **34.53** | 30.43 | 34.08 | **36.92** | 29.91 | 25.03 | **29.36** | 33.28 | 31.69 | diff --git a/docs/nerfology/methods/nerfacto.md b/docs/nerfology/methods/nerfacto.md deleted file mode 100644 index e835176d..00000000 --- a/docs/nerfology/methods/nerfacto.md +++ /dev/null @@ -1,87 +0,0 @@ -# Nerfacto - -

Our *defacto* method.

- -### Running the Method - -```bash -ns-train nerfacto --help -``` - -We provide a few additional variants: - -| Method | Description | Memory | Speed | -| ---------------- | ------------------------------ | ------ | ------- | -| `nerfacto` | Default Model | ~6GB | Fast | -| `nerfacto-big` | Larger higher quality | ~12GB | Slower | -| `nerfacto-huge` | Even larger and higher quality | ~24GB | Slowest | -| `depth-nerfacto` | Supervise on depth | ~6GB | Fast | - -## Method - -### Overview - -We created the nerfacto model to act as our default for real data captures of static scenes. The model is not existing published work, but rather a combination of many published methods that we have found work well for real data. This guide discusses the details of the model, understanding the [NeRF model](./nerf.md) is a prerequisite. - -```{admonition} TLDR -We combine the following techniques in this model: -* Camera pose refinement -* Per image appearance conditioning -* Proposal sampling -* Scene contraction -* Hash encoding -``` - -```{warning} -πŸ—οΈ This guide is under construction πŸ—οΈ -``` - -## Pipeline - -```{image} imgs/nerfacto/models_nerfacto_pipeline-light.png -:align: center -:class: only-light -``` - -```{image} imgs/nerfacto/models_nerfacto_pipeline-dark.png -:align: center -:class: only-dark -``` - -Here is an overview pipeline for nerfacto, we will walk through each component in this guide. - -### Pose Refinement - -It is not uncommon to have errors in the predicted camera poses. This is even more of a factor when using poses acquired from devices such as phones (ie. if you use the Record3D IOS app to capture data). Misaligned poses result in both cloudy artifacts in the scene and a reduction of sharpness and details. The NeRF framework allows us to backpropagate loss gradients to the input pose calculations. We can use this information to optimize and refine the poses. - -### Piecewise Sampler - -We use a Piecewise sampler to produce the initial set of samples of the scene. This sampler allocates half of the samples uniformly up to a distance of 1 from the camera. The remaining samples are distributed such that the step size increases with each sample. The step size is chosen such that the [frustums](../model_components/visualize_samples.ipynb) are scaled versions of themselves. By increasing the step sizes, we are able to sample distant objects while still having a dense set of samples for nearby objects. - -### Proposal Sampler - -The proposal sampler consolidates the sample locations to the regions of the scene that contribute most to the final render (typically the first surface intersection). This greatly improves reconstruction quality. The proposal network sampler requires a density function for the scene. The density function can be implemented in a variety of ways, we find that using a small fused-mlp with a hash encoding has sufficient accuracy and is fast. The proposal network sampler can be chained together with multiple density functions to further consolidate the sampling. We have found that two density functions are better than one. Larger than 2 leads to diminishing returns. - -#### Density Field - -The density field only needs to represent a coarse density representation of the scene to guide sampling. Combining a hash encoding with a small fused MLP (from [tiny-cuda-nn](https://github.com/NVlabs/tiny-cuda-nn)) provides a fast way to query the scene. We can make it more efficient by decreasing the encoding dictionary size and number of feature levels. These simplifications have little impact on the reconstruction quality because the density function does not need to learn high frequency details during the initial passes. - -### Nerfacto Field - -```{image} imgs/nerfacto/models_nerfacto_field-light.png -:align: center -:class: only-light -:width: 600 -``` - -```{image} imgs/nerfacto/models_nerfacto_field-dark.png -:align: center -:class: only-dark -:width: 600 -``` - -```{button-link} https://github.com/nerfstudio-project/nerfstudio/blob/main/nerfstudio/models/nerfacto.py -:color: primary -:outline: -See the code! -``` diff --git a/docs/nerfology/methods/nerfbusters.md b/docs/nerfology/methods/nerfbusters.md deleted file mode 100644 index c75baab9..00000000 --- a/docs/nerfology/methods/nerfbusters.md +++ /dev/null @@ -1,66 +0,0 @@ -# Nerfbusters - -

Removing Ghostly Artifacts from Casually Captured NeRFs πŸ‘»

- -```{button-link} https://ethanweber.me/nerfbusters -:color: primary -:outline: -Paper Website -``` - -```{button-link} https://github.com/ethanweber/nerfbusters -:color: primary -:outline: -Code and Data -``` - -**TLDR: We present a method that uses a 3D diffusion prior to clean NeRFs and an evaluation procedure for in-the-wild NeRFs** - - - -## Installation - -First install nerfstudio dependencies. Then run: - -```bash -pip install git+https://github.com/ethanweber/nerfbusters -nerfbusters-setup -ns-train nerfbusters --help -``` - -For more details, see the [installation instructions](https://github.com/ethanweber/nerfbusters). - -### Running the Method - -Please checkout the readme for the [Nerfbusters repository](https://github.com/ethanweber/nerfbusters) - -## Abstract - -Casually captured Neural Radiance Fields (NeRFs) suffer from artifacts such as floaters or flawed geometry when rendered outside the path of the training views. However, common practice is still to evaluate on every 8th frame, which does not measure rendering quality away from training views, hindering progress in volume rendering. We propose a new dataset and evaluation procedure, where two camera trajectories are recorded of the scene, one used for training, and the other for evaluation. We find that existing hand-crafted regularizers do not remove floaters nor improve scene geometry in this more challenging in-the-wild setting. To this end, we propose a learned, local 3D diffusion prior and a novel density score distillation sampling loss. We show that this learned prior removes floaters and improves scene geometry for casual captures. - -## NeRF evaluation for casually captured videos - -We train on a single camera trajectory and evaluate on a second camera trajectory. Both methods succeed on the training trajectory, but only our method succeeds on the evaluation trajectory. - - - -### Model Overview - -We learn a local 3D prior with a diffusion model that regularizes the 3D geometry of NeRFs. We use importance sampling to query a cube with NeRF densities. We binarize these densities and perform one single denoising step using a pre-trained 3D diffusion model. With these denoised densities, we compute a density score distillation sampling (DSDS) that penalizes NeRF densities where the diffusion model predicts empty voxels and pushes the NeRF densities above the target w where the diffusion model predicts occupied voxels. - -![Overview](https://ethanweber.me/nerfbusters/media/method.png) - - -### Visibiltiy Loss - -Our visibility loss enables stepping behind or outside the training camera frustums. We accomplish this by supervising densities to be low when not seen by at least one training view. Other solutions would be to store an occupancy grid or compute ray-frustum intersection tests during rendering. Our solution is easy to implement and applicable to any NeRF. - -![Visibility](https://ethanweber.me/nerfbusters/media/visibility_loss.png) - -### Results and dataset preview - -For results and a dataset preview, view the [project page](https://ethanweber.me/nerfbusters)! diff --git a/docs/nerfology/methods/nerfplayer.md b/docs/nerfology/methods/nerfplayer.md deleted file mode 100644 index dafe11c5..00000000 --- a/docs/nerfology/methods/nerfplayer.md +++ /dev/null @@ -1,50 +0,0 @@ -# NeRFPlayer - -

A Streamable Dynamic Scene Representation with Decomposed Neural Radiance Fields

- - -```{button-link} https://lsongx.github.io/projects/nerfplayer.html -:color: primary -:outline: -Paper Website -``` - -```{button-link} https://github.com/lsongx/nerfplayer-nerfstudio -:color: primary -:outline: -Nerfstudio add-on code -``` - -[![NeRFPlayer Video](https://img.youtube.com/vi/flVqSLZWBMI/0.jpg)](https://www.youtube.com/watch?v=flVqSLZWBMI) - - -## Installation - -First install nerfstudio dependencies. Then run: - -```bash -pip install git+https://github.com/lsongx/nerfplayer-nerfstudio.git -``` - -## Running NeRFPlayer - -Details for running NeRFPlayer can be found [here](https://github.com/lsongx/nerfplayer-nerfstudio). Once installed, run: - -```bash -ns-train nerfplayer-ngp --help -``` - -Two variants of NeRFPlayer are provided: - -| Method | Description | -| --------------------- | ----------------------------------------------- | -| `nerfplayer-nerfacto` | NeRFPlayer with nerfacto backbone | -| `nerfplayer-ngp` | NeRFPlayer with instant-ngp-bounded backbone | - - -## Method Overview - -![method overview](https://lsongx.github.io/projects/images/nerfplayer-framework.png)
-First, we propose to decompose the 4D spatiotemporal space according to temporal characteristics. Points in the 4D space are associated with probabilities of belonging to three categories: static, deforming, and new areas. Each area is represented and regularized by a separate neural field. Second, we propose a hybrid representations based feature streaming scheme for efficiently modeling the neural fields. - -Please see [TODO lists](https://github.com/lsongx/nerfplayer-nerfstudio#known-todos) to see the unimplemented components in the nerfstudio based version. \ No newline at end of file diff --git a/docs/nerfology/methods/pynerf.md b/docs/nerfology/methods/pynerf.md deleted file mode 100644 index 31704b6d..00000000 --- a/docs/nerfology/methods/pynerf.md +++ /dev/null @@ -1,92 +0,0 @@ -# PyNeRF - -

Pyramidal Neural Radiance Fields

- - -```{button-link} https://haithemturki.com/pynerf/ -:color: primary -:outline: -Paper Website -``` - -```{button-link} https://github.com/hturki/pynerf -:color: primary -:outline: -Code -``` - - - -**A fast NeRF anti-aliasing strategy.** - - -## Installation - -First, install Nerfstudio and its dependencies. Then install the PyNeRF extension and [torch-scatter](https://github.com/rusty1s/pytorch_scatter): -``` -pip install git+https://github.com/hturki/pynerf -pip install torch-scatter -f https://data.pyg.org/whl/torch-${TORCH_VERSION}+${CUDA}.html -``` - -## Running PyNeRF - -There are three default configurations provided which use the MipNeRF 360 and Multicam dataparsers by default. You can easily use other dataparsers via the ``ns-train`` command (ie: ``ns-train pynerf nerfstudio-data --data `` to use the Nerfstudio data parser) - -The default configurations provided are: - -| Method | Description | Scene type | Memory | -| ----------------------- |---------------------------------------------------| ------------------------------ |--------| -| `pynerf ` | Tuned for outdoor scenes, uses proposal network | outdoors | ~5GB | -| `pynerf-synthetic` | Tuned for synthetic scenes, uses proposal network | synthetic | ~5GB | -| `pynerf-occupancy-grid` | Tuned for Multiscale blender, uses occupancy grid | synthetic | ~5GB | - - -The main differences between them is whether they are suited for synthetic/indoor or real-world unbounded scenes (in case case appearance embeddings and scene contraction are enabled), and whether sampling is done with a proposal network (usually better for real-world scenes) or an occupancy grid (usally better for single-object synthetic scenes like Blender). - -## Method - -Most NeRF methods assume that training and test-time cameras capture scene content from a roughly constant distance: - - - - - - - - - -
-
- -
-
- -
- -They degrade and render blurry views in less constrained settings: - - - - - - - - - -
-
- -
-
- -
- -This is due to NeRF being scale-unaware, as it reasons about point samples instead of volumes. We address this by training a pyramid of NeRFs that divide the scene at different resolutions. We use "coarse" NeRFs for far-away samples, and finer NeRF for close-up samples: - - \ No newline at end of file diff --git a/docs/nerfology/methods/seathru_nerf.md b/docs/nerfology/methods/seathru_nerf.md deleted file mode 100644 index a5b3b590..00000000 --- a/docs/nerfology/methods/seathru_nerf.md +++ /dev/null @@ -1,105 +0,0 @@ -# SeaThru-NeRF -```{button-link} https://sea-thru-nerf.github.io -:color: primary -:outline: -Official Paper Website -``` - -```{button-link} https://github.com/AkerBP/seathru_nerf -:color: primary -:outline: -Code (nerfstudio implementation) -``` - -

- Example Render -

- -**A Neural Radiance Field for subsea scenes.** - -## Requirements - -We provide the following two model configurations: - -| Method | Description | Memory | Quality | -| ------------------- | ------------- | ------ | ------- | -| `seathru-nerf` | Larger model | ~23 GB | Best | -| `seathru-nerf-lite` | Smaller model | ~7 GB | Good | - -`seathru-nerf-lite` should run on a single desktop/laptop GPU with 8GB VRAM. - -## Installation - -After installing nerfstudio and its dependencies, run: - -```bash -pip install git+https://github.com/AkerBP/seathru_nerf -``` - -## Running SeaThru-NeRF - -To check your installation and to see the hyperparameters of the method, run: - -```bash -ns-train seathru-nerf-lite --help -``` - -If you see the help message with all the training options, you are good to go and ready to train your first susbea NeRF! πŸš€πŸš€πŸš€ - -For a detailed tutorial of a training process, please see the docs provided [here](https://akerbp.github.io/seathru_nerf/). - - -## Method -This method is an unofficial extension that adapts the official [SeaThru-NeRF](https://sea-thru-nerf.github.io) publication. Since it is built ontop of nerfstudio, it allows for easy modification and experimentation. - -Compared to a classical NeRF approach, we differentiate between solid objects and the medium within a scene. Therefore both, the object colours and the medium colours of samples along a ray contribute towards the final pixel colour as follows: - -$$\boldsymbol{\hat{C}}(\mathbf{r})=\sum_{i=1}^N \boldsymbol{\hat{C}}^{\rm obj}_i(\mathbf{r})+\sum_{i=1}^N \boldsymbol{\hat{C}}^{\rm med}_i(\mathbf{r}) \,.$$ - -Those two contributions can be calculated as follows: - -$$\boldsymbol{\hat{C}}^{\rm obj}_i(\mathbf{r}) = - T^{\rm obj}_i \cdot \exp (-\boldsymbol{\sigma}^{\rm attn} t_i) - \cdot \big(1-\exp({-\sigma^{\rm obj}_i\delta_i})\big) \cdot \mathbf{c}^{\rm obj}_i \,,$$ -$$\boldsymbol{\hat{C}}^{\rm med}_i(\mathbf{r}) = - T^{\rm obj}_i \cdot \exp ( -\boldsymbol{\sigma}^{\rm bs} t_i ) - \cdot \big( 1 - \exp ( -\boldsymbol{\sigma}^{\rm bs} \delta_i ) \big) \cdot \mathbf{c}^{\rm med}\,,$$ -$$\textrm{where } \ T^{\rm obj}_i = \exp\bigg(-\sum_{j=0}^{i-1}\sigma^{\rm obj}_j\delta_j\bigg) \,. $$ - -The above equations contain five parameters that are used to describe the underlying scene: object density $\sigma^{\rm obj}_i \in \mathbb{R}^{1}$, object colour $\mathbf{c}^{obj}_i \in \mathbb{R}^{3}$, backscatter density $\boldsymbol{\sigma}^{\rm bs} \in \mathbb{R}^{3}$, attenuation density $\boldsymbol{\sigma}^{\rm attn} \in \mathbb{R}^{3}$ and medium colour $\mathbf{c}^{\rm med} \in \mathbb{R}^{3}$. - -To get a better idea of the different densities, the following figure shows an example ray with the different densities visualised: - -

-SeaThru-NeRF ray -

- -*The image above was taken from [Levy et al. (2023)](https://arxiv.org/abs/2304.07743).* - -To predict the object and medium parameters, we use two separate networks. This subsea specific approach can be visualised as follows: (note that the third network is the proposal network, which is used to sample points in regions that contribute most to the final image) - -

-SeaThru-NeRF Architecture -

- -If you are interested in an in depth description of the method, make sure to check out the documentation [here](https://akerbp.github.io/seathru_nerf/intro.html). - - -## Example results -Due to the underlying image formation model that allows us to seperate between the objects and the water within a scene, you can choose between different rendering options. The following options exist: - -- rgb: To render normal RGB of the scene. -- J: To render the clear scene (water effect removed). -- direct: To render the attenuated clear scene. -- bs: To render backscatter of the water within the scene. -- depth: To render depthmaps of the scene. -- accumulation: To render object weight accumulation of the scene. - -Below, you can see an original render of a scene and one with the water effects removed: - -

-RBG rendering -J rendering -

- -*Please note that those gifs are compressed and do not do the approach justice. Please render your own videos to see the level of detail and clarity of the renders.* \ No newline at end of file diff --git a/docs/nerfology/methods/splat.md b/docs/nerfology/methods/splat.md deleted file mode 100644 index 69303f35..00000000 --- a/docs/nerfology/methods/splat.md +++ /dev/null @@ -1,69 +0,0 @@ -# Splatfacto -

Nerfstudio's Gaussian Splatting Implementation

- - -```{button-link} https://repo-sam.inria.fr/fungraph/3d-gaussian-splatting/ -:color: primary -:outline: -Paper Website -``` - -[3D Gaussian Splatting](https://repo-sam.inria.fr/fungraph/3d-gaussian-splatting/) was proposed in SIGGRAPH 2023 from INRIA, and is a completely different method of representing radiance fields by explicitly storing a collection of 3D volumetric gaussians. These can be "splatted", or projected, onto a 2D image provided a camera pose, and rasterized to obtain per-pixel colors. Because rasterization is very fast on GPUs, this method can render much faster than neural representations of radiance fields. - -To avoid confusion with the original paper, we refer to nerfstudio's implementation as "Splatfacto", which will drift away from the original as more features are added. Just as Nerfacto is a blend of various different methods, Splatfacto will be a blend of different gaussian splatting methodologies. - -### Installation - -```{button-link} https://docs.gsplat.studio/ -:color: primary -:outline: -GSplat -``` - -Nerfstudio uses [gsplat](https://github.com/nerfstudio-project/gsplat) as its gaussian rasterization backend, an in-house re-implementation which is designed to be more developer friendly. This can be installed with `pip install gsplat`. The associated CUDA code will be compiled the first time gsplat is executed. Some users with PyTorch 2.0 have experienced issues with this, which can be resolved by either installing gsplat from source, or upgrading torch to 2.1. - -### Data -Gaussian splatting works much better if you initialize it from pre-existing geometry, such as SfM points from COLMAP. COLMAP datasets or datasets from `ns-process-data` will automatically save these points and initialize gaussians on them. Other datasets currently do not support initialization, and will initialize gaussians randomly. Initializing from other data inputs (i.e. depth from phone app scanners) may be supported in the future. - -Because the method trains on *full images* instead of bundles of rays, there is a new datamanager in `full_images_datamanager.py` which undistorts input images, caches them, and provides single images at each train step. - - -### Running the Method -To run splatfacto, run `ns-train splatfacto --data `. Just like NeRF methods, the splat can be interactively viewed in the web-viewer, loaded from a checkpoint, rendered, and exported. - -We provide a few additional variants: - -| Method | Description | Memory | Speed | -| ---------------- | ------------------------------ | ------ | ------- | -| `splatfacto` | Default Model | ~6GB | Fast | -| `splatfacto-big` | More Gaussians, Higher Quality | ~12GB | Slower | - - -A full evalaution of Nerfstudio's implementation of Gaussian Splatting against the original Inria method can be found [here](https://docs.gsplat.studio/tests/eval.html). - -#### Quality and Regularization -The default settings provided maintain a balance between speed, quality, and splat file size, but if you care more about quality than training speed or size, you can decrease the alpha cull threshold -(threshold to delete translucent gaussians) and disable culling after 15k steps like so: `ns-train splatfacto --pipeline.model.cull_alpha_thresh=0.005 --pipeline.model.continue_cull_post_densification=False --data ` - -A common artifact in splatting is long, spikey gaussians. [PhysGaussian](https://xpandora.github.io/PhysGaussian/) proposes a scale regularizer that encourages gaussians to be more evenly shaped. To enable this, set the `use_scale_regularization` flag to `True`. - -### Details -For more details on the method, see the [original paper](https://arxiv.org/abs/2308.04079). Additionally, for a detailed derivation of the gradients used in the gsplat library, see [here](https://arxiv.org/abs/2312.02121). - -### Exporting splats -Gaussian splats can be exported as a `.ply` file which are ingestable by a variety of online web viewers. You can do this via the viewer, or `ns-export gaussian-splat --load-config --output-dir exports/splat`. Currently splats can only be exported from trained splats, not from nerfacto. - -Nerfstudio's splat export currently supports multiple third-party splat viewers: -- [Polycam Viewer](https://poly.cam/tools/gaussian-splatting) -- [Playcanvas SuperSplat](https://playcanvas.com/super-splat) -- [WebGL Viewer by antimatter15](https://antimatter15.com/splat/) -- [Spline](https://spline.design/) -- [Three.js Viewer by mkkellogg](https://github.com/mkkellogg/GaussianSplats3D) - -### FAQ -- Can I export a mesh or pointcloud? - -Currently these export options are not supported, but may be in the future. Contributions are always welcome! -- Can I render fisheye, equirectangular, orthographic images? - -Currently, no. Gaussian rasterization assumes a perspective camera for its rasterization pipeline. Implementing other camera models is of interest but not currently planned. diff --git a/docs/nerfology/methods/tensorf.md b/docs/nerfology/methods/tensorf.md deleted file mode 100644 index e418f524..00000000 --- a/docs/nerfology/methods/tensorf.md +++ /dev/null @@ -1,33 +0,0 @@ -# TensoRF - -

Tensorial Radiance Fields

- -```{button-link} https://apchenstu.github.io/TensoRF/ -:color: primary -:outline: -Paper Website -``` - - - -### Running Model - -```bash -ns-train tensorf -``` - -## Overview - -```{image} imgs/tensorf/models_tensorf_pipeline.png -:align: center -``` - -TensoRF models the radiance field of a scene as a 4D tensor, which represents a 3D voxel grid with per-voxel multi-channel features. TensoRF factorizes the 4D scene tensor into multiple compact low-rank tensor components using CP or VM modes. CP decomposition factorizes tensors into rank-one components with compact vectors. Vector-Matrix (VM) decomposition factorizes tensors into compact vector and matrix factors. - -```{image} imgs/tensorf/models_tensorf_factorization.png -:align: center -``` - -TensoRF with CP(left) and VM(right) decompositions results in a significantly reduced memory footprint compared to previous and concurrent works that directly optimize per-voxel features, such as [Plenoxels](https://alexyu.net/plenoxels/) and [PlenOctrees](https://alexyu.net/plenoctrees/). In experiments, TensoRF with CP decomposition achieves fast reconstruction with improved rendering quality and a smaller model size compared to NeRF. Furthermore, TensoRF with VM decomposition enhances rendering quality even further, while reducing reconstruction time and maintaining a compact model size. diff --git a/docs/nerfology/methods/tetranerf.md b/docs/nerfology/methods/tetranerf.md deleted file mode 100644 index e1816308..00000000 --- a/docs/nerfology/methods/tetranerf.md +++ /dev/null @@ -1,77 +0,0 @@ -# Tetra-NeRF - -

Tetra-NeRF: Representing Neural Radiance Fields Using Tetrahedra

- -```{button-link} https://jkulhanek.com/tetra-nerf -:color: primary -:outline: -Paper Website -``` - -```{button-link} https://github.com/jkulhanek/tetra-nerf -:color: primary -:outline: -Code -``` - - - -**SfM input pointcloud is triangulated and resulting tetrahedra is used as the radiance field representation** - -## Installation - -First, make sure to install the following: -``` -CUDA (>=11.3) -PyTorch (>=1.12.1) -Nerfstudio (>=0.2.0) -OptiX (>=7.2, preferably 7.6) -CGAL -CMake (>=3.22.1) -``` -Follow the [installation section](https://github.com/jkulhanek/tetra-nerf/blob/master/README.md#installation) in the tetra-nerf repository - -Finally, you can install **Tetra-NeRF** by running: -```bash -pip install git+https://github.com/jkulhanek/tetra-nerf -``` - -## Running Tetra-NeRF on custom data -Details for running Tetra-NeRF can be found [here](https://github.com/jkulhanek/tetra-nerf). - -```bash -python -m tetranerf.scripts.process_images --path -python -m tetranerf.scripts.triangulate --pointcloud /sparse.ply --output /sparse.th -ns-train tetra-nerf --pipeline.model.tetrahedra-path /sparse.th minimal-parser --data -``` - -Three following variants of Tetra-NeRF are provided: - -| Method | Description | Memory | Quality | -| --------------------- | -------------------------------------- | ------- | ------- | -| `tetra-nerf-original` | Official implementation from the paper | ~18GB* | Good | -| `tetra-nerf` | Different sampler - faster and better | ~16GB* | Best | - -*Depends on the size of the input pointcloud, estimate is given for a larger scene (1M points) - -## Method -![method overview](https://jkulhanek.com/tetra-nerf/resources/overview-white.svg)
-The input to Tetra-NeRF is a point cloud which is triangulated to get a set of tetrahedra used to represent the radiance field. Rays are sampled, and the field is queried. The barycentric interpolation is used to interpolate tetrahedra vertices, and the resulting features are passed to a shallow MLP to get the density and colours for volumetric rendering.
- -[![demo blender lego (sparse)](https://jkulhanek.com/tetra-nerf/resources/images/blender-lego-sparse-100k-animated-cover.gif)](https://jkulhanek.com/tetra-nerf/demo.html?scene=blender-lego-sparse) -[![demo mipnerf360 garden (sparse)](https://jkulhanek.com/tetra-nerf/resources/images/360-garden-sparse-100k-animated-cover.gif)](https://jkulhanek.com/tetra-nerf/demo.html?scene=360-garden-sparse) -[![demo mipnerf360 garden (sparse)](https://jkulhanek.com/tetra-nerf/resources/images/360-bonsai-sparse-100k-animated-cover.gif)](https://jkulhanek.com/tetra-nerf/demo.html?scene=360-bonsai-sparse) -[![demo mipnerf360 kitchen (dense)](https://jkulhanek.com/tetra-nerf/resources/images/360-kitchen-dense-300k-animated-cover.gif)](https://jkulhanek.com/tetra-nerf/demo.html?scene=360-kitchen-dense) - - -## Existing checkpoints and predictions -For an easier comparisons with Tetra-NeRF, published checkpoints and predictions can be used: - -| Dataset | Checkpoints | Predictions | Input tetrahedra | -| -------- | ----------- | ----------- | ---------------- | -| Mip-NeRF 360 (public scenes) | [download](https://data.ciirc.cvut.cz/public/projects/2023TetraNeRF/assets/mipnerf360-public-checkpoints.tar.gz) | [download](https://data.ciirc.cvut.cz/public/projects/2023TetraNeRF/assets/mipnerf360-public-predictions.tar.gz) | [download](https://data.ciirc.cvut.cz/public/projects/2023TetraNeRF/assets/mipnerf360-public-tetrahedra.tar.gz) | -| Blender | [download](https://data.ciirc.cvut.cz/public/projects/2023TetraNeRF/assets/blender-checkpoints.tar.gz) | [download](https://data.ciirc.cvut.cz/public/projects/2023TetraNeRF/assets/blender-predictions.tar.gz) | [download](https://data.ciirc.cvut.cz/public/projects/2023TetraNeRF/assets/blender-tetrahedra.tar.gz) | -| Tanks and Temples | [download](https://data.ciirc.cvut.cz/public/projects/2023TetraNeRF/assets/nsvf-tanks-and-temples-checkpoints.tar.gz) | [download](https://data.ciirc.cvut.cz/public/projects/2023TetraNeRF/assets/nsvf-tanks-and-temples-predictions.tar.gz) | [download](https://data.ciirc.cvut.cz/public/projects/2023TetraNeRF/assets/nsvf-tanks-and-temples-tetrahedra.tar.gz) | - diff --git a/docs/nerfology/methods/zipnerf.md b/docs/nerfology/methods/zipnerf.md deleted file mode 100644 index f435eabb..00000000 --- a/docs/nerfology/methods/zipnerf.md +++ /dev/null @@ -1,33 +0,0 @@ -# Zip-NeRF - -

A pytorch implementation of "Zip-NeRF: Anti-Aliased Grid-Based Neural Radiance Fields"

- -```{button-link} https://jonbarron.info/zipnerf/ -:color: primary -:outline: -Paper Website -``` -```{button-link} https://github.com/SuLvXiangXin/zipnerf-pytorch -:color: primary -:outline: -Code -``` -### Installation -First, install nerfstudio and its dependencies. Then run: -``` -pip install git+https://github.com/SuLvXiangXin/zipnerf-pytorch#subdirectory=extensions/cuda -pip install git+https://github.com/SuLvXiangXin/zipnerf-pytorch -``` -Finally, install torch_scatter corresponding to your cuda version(https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html). - - -### Running Model - -```bash -ns-train zipnerf --data {DATA_DIR/SCENE} -``` - -## Overview -Zipnerf combines mip-NeRF 360’s overall framework with iNGP’s featurization approach. -Following mip-NeRF, zipnerf assume each pixel corresponds to a cone. Given an interval along the ray, it construct a set of multisamples that approximate the shape of that conical frustum. -Also, it present an alternative loss that, unlike mip-NeRF 360’s interlevel loss, is continuous and smooth with respect to distance along the ray to prevent z-aliasing. \ No newline at end of file diff --git a/docs/nerfology/model_components/imgs/frustums-dark.png b/docs/nerfology/model_components/imgs/frustums-dark.png deleted file mode 100644 index e1539380..00000000 Binary files a/docs/nerfology/model_components/imgs/frustums-dark.png and /dev/null differ diff --git a/docs/nerfology/model_components/imgs/frustums.png b/docs/nerfology/model_components/imgs/frustums.png deleted file mode 100644 index 173952c3..00000000 Binary files a/docs/nerfology/model_components/imgs/frustums.png and /dev/null differ diff --git a/docs/nerfology/model_components/imgs/samplers_stratified-dark.png b/docs/nerfology/model_components/imgs/samplers_stratified-dark.png deleted file mode 100644 index 59d7b9a5..00000000 Binary files a/docs/nerfology/model_components/imgs/samplers_stratified-dark.png and /dev/null differ diff --git a/docs/nerfology/model_components/imgs/samplers_stratified-light.png b/docs/nerfology/model_components/imgs/samplers_stratified-light.png deleted file mode 100644 index 0e4f9e84..00000000 Binary files a/docs/nerfology/model_components/imgs/samplers_stratified-light.png and /dev/null differ diff --git a/docs/nerfology/model_components/imgs/samplers_type-dark.png b/docs/nerfology/model_components/imgs/samplers_type-dark.png deleted file mode 100644 index 62fd9039..00000000 Binary files a/docs/nerfology/model_components/imgs/samplers_type-dark.png and /dev/null differ diff --git a/docs/nerfology/model_components/imgs/samplers_type-light.png b/docs/nerfology/model_components/imgs/samplers_type-light.png deleted file mode 100644 index fd3283f0..00000000 Binary files a/docs/nerfology/model_components/imgs/samplers_type-light.png and /dev/null differ diff --git a/docs/nerfology/model_components/index.md b/docs/nerfology/model_components/index.md deleted file mode 100644 index 513826ed..00000000 --- a/docs/nerfology/model_components/index.md +++ /dev/null @@ -1,12 +0,0 @@ -# Model components - -It can be difficult getting started with NeRFs. The research field is still quite new and most of the key nuggets are buried in academic papers. For this reason, we have consolidated many of the key concepts into a series of guides. - -```{toctree} - :maxdepth: 1 - Cameras models - Sample representation - Ray samplers - Spatial distortions - Encoders -``` diff --git a/docs/nerfology/model_components/visualize_cameras.ipynb b/docs/nerfology/model_components/visualize_cameras.ipynb deleted file mode 100644 index 99bb095a..00000000 --- a/docs/nerfology/model_components/visualize_cameras.ipynb +++ /dev/null @@ -1,91449 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": { - "tags": [] - }, - "source": [ - "# Camera Models\n", - "\n", - "Everything starts with the cameras. Given a set of images, we need a way to project their pixels into 3D space. This is accomplished by computing the camera ray for each pixel given information about the type of camera and the location of the camera. This guide describes the camera models implemented in nerfstudio.\n", - "\n", - "Each image should have an associated pose which consists of two properties, intrinsic and extrinsic parameters.\n", - "\n", - "Intrinsics\n", - ": All of the parameters internal to the camera such as lense or sensor properties.\n", - "\n", - "Extrinsics\n", - ": All of the parameters external to the camera such as the location and rotation relative to the world frame.\n" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": { - "tags": [ - "remove-cell" - ] - }, - "outputs": [], - "source": [ - "# HIDDEN\n", - "import torch\n", - "from nerfstudio.cameras import cameras\n", - "import plotly.graph_objects as go\n", - "import mediapy as media" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "tags": [] - }, - "source": [ - "## Perspective Camera Model\n", - "\n", - "The simplest and most used camera model. Most standard cameras can be sufficiently approximated using the pinhole camera model.\n", - "\n", - "| Intrinsic | Description |\n", - "| --------- | ----------------------------------- |\n", - "| cx | Number of pixels in the x dimension |\n", - "| cy | Number of pixels in the y dimension |\n", - "| fx | Focal length in the x dimension |\n", - "| fy | Focal length in the y dimension |\n" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": { - "tags": [ - "hide-input" - ] - }, - "outputs": [ - { - "data": { - "text/html": [ - " \n", - " " - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "line": { - "color": "lightblue", - "width": 1 - }, - "marker": { - "color": [ - [ - 0.02500000037252903, - 0.012500000186264515, - 1 - ], - [ - 0.02500000037252903, - 0.012500000186264515, - 1 - ], - [ - 0.02500000037252903, - 0.03750000149011612, - 1 - ], - [ - 0.02500000037252903, - 0.03750000149011612, - 1 - ], - [ - 0.02500000037252903, - 0.0625, - 1 - ], - [ - 0.02500000037252903, - 0.0625, - 1 - ], - [ - 0.02500000037252903, - 0.08749999850988388, - 1 - ], - [ - 0.02500000037252903, - 0.08749999850988388, - 1 - ], - [ - 0.02500000037252903, - 0.11249999701976776, - 1 - ], - [ - 0.02500000037252903, - 0.11249999701976776, - 1 - ], - [ - 0.02500000037252903, - 0.13750000298023224, - 1 - ], - [ - 0.02500000037252903, - 0.13750000298023224, - 1 - ], - [ - 0.02500000037252903, - 0.16249999403953552, - 1 - ], - [ - 0.02500000037252903, - 0.16249999403953552, - 1 - ], - [ - 0.02500000037252903, - 0.1875, - 1 - ], - [ - 0.02500000037252903, - 0.1875, - 1 - ], - [ - 0.02500000037252903, - 0.21250000596046448, - 1 - ], - [ - 0.02500000037252903, - 0.21250000596046448, - 1 - ], - [ - 0.02500000037252903, - 0.23749999701976776, - 1 - ], - [ - 0.02500000037252903, - 0.23749999701976776, - 1 - ], - [ - 0.02500000037252903, - 0.26249998807907104, - 1 - ], - [ - 0.02500000037252903, - 0.26249998807907104, - 1 - ], - [ - 0.02500000037252903, - 0.2874999940395355, - 1 - ], - [ - 0.02500000037252903, - 0.2874999940395355, - 1 - ], - [ - 0.02500000037252903, - 0.3125, - 1 - ], - [ - 0.02500000037252903, - 0.3125, - 1 - ], - [ - 0.02500000037252903, - 0.3375000059604645, - 1 - ], - [ - 0.02500000037252903, - 0.3375000059604645, - 1 - ], - [ - 0.02500000037252903, - 0.36250001192092896, - 1 - ], - [ - 0.02500000037252903, - 0.36250001192092896, - 1 - ], - [ - 0.02500000037252903, - 0.38749998807907104, - 1 - ], - [ - 0.02500000037252903, - 0.38749998807907104, - 1 - ], - [ - 0.02500000037252903, - 0.4124999940395355, - 1 - ], - [ - 0.02500000037252903, - 0.4124999940395355, - 1 - ], - [ - 0.02500000037252903, - 0.4375, - 1 - ], - [ - 0.02500000037252903, - 0.4375, - 1 - ], - [ - 0.02500000037252903, - 0.4625000059604645, - 1 - ], - [ - 0.02500000037252903, - 0.4625000059604645, - 1 - ], - [ - 0.02500000037252903, - 0.48750001192092896, - 1 - ], - [ - 0.02500000037252903, - 0.48750001192092896, - 1 - ], - [ - 0.02500000037252903, - 0.512499988079071, - 1 - ], - [ - 0.02500000037252903, - 0.512499988079071, - 1 - ], - [ - 0.02500000037252903, - 0.5375000238418579, - 1 - ], - [ - 0.02500000037252903, - 0.5375000238418579, - 1 - ], - [ - 0.02500000037252903, - 0.5625, - 1 - ], - [ - 0.02500000037252903, - 0.5625, - 1 - ], - [ - 0.02500000037252903, - 0.5874999761581421, - 1 - ], - [ - 0.02500000037252903, - 0.5874999761581421, - 1 - ], - [ - 0.02500000037252903, - 0.612500011920929, - 1 - ], - [ - 0.02500000037252903, - 0.612500011920929, - 1 - ], - [ - 0.02500000037252903, - 0.637499988079071, - 1 - ], - [ - 0.02500000037252903, - 0.637499988079071, - 1 - ], - [ - 0.02500000037252903, - 0.6625000238418579, - 1 - ], - [ - 0.02500000037252903, - 0.6625000238418579, - 1 - ], - [ - 0.02500000037252903, - 0.6875, - 1 - ], - [ - 0.02500000037252903, - 0.6875, - 1 - ], - [ - 0.02500000037252903, - 0.7124999761581421, - 1 - ], - [ - 0.02500000037252903, - 0.7124999761581421, - 1 - ], - [ - 0.02500000037252903, - 0.737500011920929, - 1 - ], - [ - 0.02500000037252903, - 0.737500011920929, - 1 - ], - [ - 0.02500000037252903, - 0.762499988079071, - 1 - ], - [ - 0.02500000037252903, - 0.762499988079071, - 1 - ], - [ - 0.02500000037252903, - 0.7875000238418579, - 1 - ], - [ - 0.02500000037252903, - 0.7875000238418579, - 1 - ], - [ - 0.02500000037252903, - 0.8125, - 1 - ], - [ - 0.02500000037252903, - 0.8125, - 1 - ], - [ - 0.02500000037252903, - 0.8374999761581421, - 1 - ], - [ - 0.02500000037252903, - 0.8374999761581421, - 1 - ], - [ - 0.02500000037252903, - 0.862500011920929, - 1 - ], - [ - 0.02500000037252903, - 0.862500011920929, - 1 - ], - [ - 0.02500000037252903, - 0.887499988079071, - 1 - ], - [ - 0.02500000037252903, - 0.887499988079071, - 1 - ], - [ - 0.02500000037252903, - 0.9125000238418579, - 1 - ], - [ - 0.02500000037252903, - 0.9125000238418579, - 1 - ], - [ - 0.02500000037252903, - 0.9375, - 1 - ], - [ - 0.02500000037252903, - 0.9375, - 1 - ], - [ - 0.02500000037252903, - 0.9624999761581421, - 1 - ], - [ - 0.02500000037252903, - 0.9624999761581421, - 1 - ], - [ - 0.02500000037252903, - 0.987500011920929, - 1 - ], - [ - 0.02500000037252903, - 0.987500011920929, - 1 - ], - [ - 0.07500000298023224, - 0.012500000186264515, - 1 - ], - [ - 0.07500000298023224, - 0.012500000186264515, - 1 - ], - [ - 0.07500000298023224, - 0.03750000149011612, - 1 - ], - [ - 0.07500000298023224, - 0.03750000149011612, - 1 - ], - [ - 0.07500000298023224, - 0.0625, - 1 - ], - [ - 0.07500000298023224, - 0.0625, - 1 - ], - [ - 0.07500000298023224, - 0.08749999850988388, - 1 - ], - [ - 0.07500000298023224, - 0.08749999850988388, - 1 - ], - [ - 0.07500000298023224, - 0.11249999701976776, - 1 - ], - [ - 0.07500000298023224, - 0.11249999701976776, - 1 - ], - [ - 0.07500000298023224, - 0.13750000298023224, - 1 - ], - [ - 0.07500000298023224, - 0.13750000298023224, - 1 - ], - [ - 0.07500000298023224, - 0.16249999403953552, - 1 - ], - [ - 0.07500000298023224, - 0.16249999403953552, - 1 - ], - [ - 0.07500000298023224, - 0.1875, - 1 - ], - [ - 0.07500000298023224, - 0.1875, - 1 - ], - [ - 0.07500000298023224, - 0.21250000596046448, - 1 - ], - [ - 0.07500000298023224, - 0.21250000596046448, - 1 - ], - [ - 0.07500000298023224, - 0.23749999701976776, - 1 - ], - [ - 0.07500000298023224, - 0.23749999701976776, - 1 - ], - [ - 0.07500000298023224, - 0.26249998807907104, - 1 - ], - [ - 0.07500000298023224, - 0.26249998807907104, - 1 - ], - [ - 0.07500000298023224, - 0.2874999940395355, - 1 - ], - [ - 0.07500000298023224, - 0.2874999940395355, - 1 - ], - [ - 0.07500000298023224, - 0.3125, - 1 - ], - [ - 0.07500000298023224, - 0.3125, - 1 - ], - [ - 0.07500000298023224, - 0.3375000059604645, - 1 - ], - [ - 0.07500000298023224, - 0.3375000059604645, - 1 - ], - [ - 0.07500000298023224, - 0.36250001192092896, - 1 - ], - [ - 0.07500000298023224, - 0.36250001192092896, - 1 - ], - [ - 0.07500000298023224, - 0.38749998807907104, - 1 - ], - [ - 0.07500000298023224, - 0.38749998807907104, - 1 - ], - [ - 0.07500000298023224, - 0.4124999940395355, - 1 - ], - [ - 0.07500000298023224, - 0.4124999940395355, - 1 - ], - [ - 0.07500000298023224, - 0.4375, - 1 - ], - [ - 0.07500000298023224, - 0.4375, - 1 - ], - [ - 0.07500000298023224, - 0.4625000059604645, - 1 - ], - [ - 0.07500000298023224, - 0.4625000059604645, - 1 - ], - [ - 0.07500000298023224, - 0.48750001192092896, - 1 - ], - [ - 0.07500000298023224, - 0.48750001192092896, - 1 - ], - [ - 0.07500000298023224, - 0.512499988079071, - 1 - ], - [ - 0.07500000298023224, - 0.512499988079071, - 1 - ], - [ - 0.07500000298023224, - 0.5375000238418579, - 1 - ], - [ - 0.07500000298023224, - 0.5375000238418579, - 1 - ], - [ - 0.07500000298023224, - 0.5625, - 1 - ], - [ - 0.07500000298023224, - 0.5625, - 1 - ], - [ - 0.07500000298023224, - 0.5874999761581421, - 1 - ], - [ - 0.07500000298023224, - 0.5874999761581421, - 1 - ], - [ - 0.07500000298023224, - 0.612500011920929, - 1 - ], - [ - 0.07500000298023224, - 0.612500011920929, - 1 - ], - [ - 0.07500000298023224, - 0.637499988079071, - 1 - ], - [ - 0.07500000298023224, - 0.637499988079071, - 1 - ], - [ - 0.07500000298023224, - 0.6625000238418579, - 1 - ], - [ - 0.07500000298023224, - 0.6625000238418579, - 1 - ], - [ - 0.07500000298023224, - 0.6875, - 1 - ], - [ - 0.07500000298023224, - 0.6875, - 1 - ], - [ - 0.07500000298023224, - 0.7124999761581421, - 1 - ], - [ - 0.07500000298023224, - 0.7124999761581421, - 1 - ], - [ - 0.07500000298023224, - 0.737500011920929, - 1 - ], - [ - 0.07500000298023224, - 0.737500011920929, - 1 - ], - [ - 0.07500000298023224, - 0.762499988079071, - 1 - ], - [ - 0.07500000298023224, - 0.762499988079071, - 1 - ], - [ - 0.07500000298023224, - 0.7875000238418579, - 1 - ], - [ - 0.07500000298023224, - 0.7875000238418579, - 1 - ], - [ - 0.07500000298023224, - 0.8125, - 1 - ], - [ - 0.07500000298023224, - 0.8125, - 1 - ], - [ - 0.07500000298023224, - 0.8374999761581421, - 1 - ], - [ - 0.07500000298023224, - 0.8374999761581421, - 1 - ], - [ - 0.07500000298023224, - 0.862500011920929, - 1 - ], - [ - 0.07500000298023224, - 0.862500011920929, - 1 - ], - [ - 0.07500000298023224, - 0.887499988079071, - 1 - ], - [ - 0.07500000298023224, - 0.887499988079071, - 1 - ], - [ - 0.07500000298023224, - 0.9125000238418579, - 1 - ], - [ - 0.07500000298023224, - 0.9125000238418579, - 1 - ], - [ - 0.07500000298023224, - 0.9375, - 1 - ], - [ - 0.07500000298023224, - 0.9375, - 1 - ], - [ - 0.07500000298023224, - 0.9624999761581421, - 1 - ], - [ - 0.07500000298023224, - 0.9624999761581421, - 1 - ], - [ - 0.07500000298023224, - 0.987500011920929, - 1 - ], - [ - 0.07500000298023224, - 0.987500011920929, - 1 - ], - [ - 0.125, - 0.012500000186264515, - 1 - ], - [ - 0.125, - 0.012500000186264515, - 1 - ], - [ - 0.125, - 0.03750000149011612, - 1 - ], - [ - 0.125, - 0.03750000149011612, - 1 - ], - [ - 0.125, - 0.0625, - 1 - ], - [ - 0.125, - 0.0625, - 1 - ], - [ - 0.125, - 0.08749999850988388, - 1 - ], - [ - 0.125, - 0.08749999850988388, - 1 - ], - [ - 0.125, - 0.11249999701976776, - 1 - ], - [ - 0.125, - 0.11249999701976776, - 1 - ], - [ - 0.125, - 0.13750000298023224, - 1 - ], - [ - 0.125, - 0.13750000298023224, - 1 - ], - [ - 0.125, - 0.16249999403953552, - 1 - ], - [ - 0.125, - 0.16249999403953552, - 1 - ], - [ - 0.125, - 0.1875, - 1 - ], - [ - 0.125, - 0.1875, - 1 - ], - [ - 0.125, - 0.21250000596046448, - 1 - ], - [ - 0.125, - 0.21250000596046448, - 1 - ], - [ - 0.125, - 0.23749999701976776, - 1 - ], - [ - 0.125, - 0.23749999701976776, - 1 - ], - [ - 0.125, - 0.26249998807907104, - 1 - ], - [ - 0.125, - 0.26249998807907104, - 1 - ], - [ - 0.125, - 0.2874999940395355, - 1 - ], - [ - 0.125, - 0.2874999940395355, - 1 - ], - [ - 0.125, - 0.3125, - 1 - ], - [ - 0.125, - 0.3125, - 1 - ], - [ - 0.125, - 0.3375000059604645, - 1 - ], - [ - 0.125, - 0.3375000059604645, - 1 - ], - [ - 0.125, - 0.36250001192092896, - 1 - ], - [ - 0.125, - 0.36250001192092896, - 1 - ], - [ - 0.125, - 0.38749998807907104, - 1 - ], - [ - 0.125, - 0.38749998807907104, - 1 - ], - [ - 0.125, - 0.4124999940395355, - 1 - ], - [ - 0.125, - 0.4124999940395355, - 1 - ], - [ - 0.125, - 0.4375, - 1 - ], - [ - 0.125, - 0.4375, - 1 - ], - [ - 0.125, - 0.4625000059604645, - 1 - ], - [ - 0.125, - 0.4625000059604645, - 1 - ], - [ - 0.125, - 0.48750001192092896, - 1 - ], - [ - 0.125, - 0.48750001192092896, - 1 - ], - [ - 0.125, - 0.512499988079071, - 1 - ], - [ - 0.125, - 0.512499988079071, - 1 - ], - [ - 0.125, - 0.5375000238418579, - 1 - ], - [ - 0.125, - 0.5375000238418579, - 1 - ], - [ - 0.125, - 0.5625, - 1 - ], - [ - 0.125, - 0.5625, - 1 - ], - [ - 0.125, - 0.5874999761581421, - 1 - ], - [ - 0.125, - 0.5874999761581421, - 1 - ], - [ - 0.125, - 0.612500011920929, - 1 - ], - [ - 0.125, - 0.612500011920929, - 1 - ], - [ - 0.125, - 0.637499988079071, - 1 - ], - [ - 0.125, - 0.637499988079071, - 1 - ], - [ - 0.125, - 0.6625000238418579, - 1 - ], - [ - 0.125, - 0.6625000238418579, - 1 - ], - [ - 0.125, - 0.6875, - 1 - ], - [ - 0.125, - 0.6875, - 1 - ], - [ - 0.125, - 0.7124999761581421, - 1 - ], - [ - 0.125, - 0.7124999761581421, - 1 - ], - [ - 0.125, - 0.737500011920929, - 1 - ], - [ - 0.125, - 0.737500011920929, - 1 - ], - [ - 0.125, - 0.762499988079071, - 1 - ], - [ - 0.125, - 0.762499988079071, - 1 - ], - [ - 0.125, - 0.7875000238418579, - 1 - ], - [ - 0.125, - 0.7875000238418579, - 1 - ], - [ - 0.125, - 0.8125, - 1 - ], - [ - 0.125, - 0.8125, - 1 - ], - [ - 0.125, - 0.8374999761581421, - 1 - ], - [ - 0.125, - 0.8374999761581421, - 1 - ], - [ - 0.125, - 0.862500011920929, - 1 - ], - [ - 0.125, - 0.862500011920929, - 1 - ], - [ - 0.125, - 0.887499988079071, - 1 - ], - [ - 0.125, - 0.887499988079071, - 1 - ], - [ - 0.125, - 0.9125000238418579, - 1 - ], - [ - 0.125, - 0.9125000238418579, - 1 - ], - [ - 0.125, - 0.9375, - 1 - ], - [ - 0.125, - 0.9375, - 1 - ], - [ - 0.125, - 0.9624999761581421, - 1 - ], - [ - 0.125, - 0.9624999761581421, - 1 - ], - [ - 0.125, - 0.987500011920929, - 1 - ], - [ - 0.125, - 0.987500011920929, - 1 - ], - [ - 0.17499999701976776, - 0.012500000186264515, - 1 - ], - [ - 0.17499999701976776, - 0.012500000186264515, - 1 - ], - [ - 0.17499999701976776, - 0.03750000149011612, - 1 - ], - [ - 0.17499999701976776, - 0.03750000149011612, - 1 - ], - [ - 0.17499999701976776, - 0.0625, - 1 - ], - [ - 0.17499999701976776, - 0.0625, - 1 - ], - [ - 0.17499999701976776, - 0.08749999850988388, - 1 - ], - [ - 0.17499999701976776, - 0.08749999850988388, - 1 - ], - [ - 0.17499999701976776, - 0.11249999701976776, - 1 - ], - [ - 0.17499999701976776, - 0.11249999701976776, - 1 - ], - [ - 0.17499999701976776, - 0.13750000298023224, - 1 - ], - [ - 0.17499999701976776, - 0.13750000298023224, - 1 - ], - [ - 0.17499999701976776, - 0.16249999403953552, - 1 - ], - [ - 0.17499999701976776, - 0.16249999403953552, - 1 - ], - [ - 0.17499999701976776, - 0.1875, - 1 - ], - [ - 0.17499999701976776, - 0.1875, - 1 - ], - [ - 0.17499999701976776, - 0.21250000596046448, - 1 - ], - [ - 0.17499999701976776, - 0.21250000596046448, - 1 - ], - [ - 0.17499999701976776, - 0.23749999701976776, - 1 - ], - [ - 0.17499999701976776, - 0.23749999701976776, - 1 - ], - [ - 0.17499999701976776, - 0.26249998807907104, - 1 - ], - [ - 0.17499999701976776, - 0.26249998807907104, - 1 - ], - [ - 0.17499999701976776, - 0.2874999940395355, - 1 - ], - [ - 0.17499999701976776, - 0.2874999940395355, - 1 - ], - [ - 0.17499999701976776, - 0.3125, - 1 - ], - [ - 0.17499999701976776, - 0.3125, - 1 - ], - [ - 0.17499999701976776, - 0.3375000059604645, - 1 - ], - [ - 0.17499999701976776, - 0.3375000059604645, - 1 - ], - [ - 0.17499999701976776, - 0.36250001192092896, - 1 - ], - [ - 0.17499999701976776, - 0.36250001192092896, - 1 - ], - [ - 0.17499999701976776, - 0.38749998807907104, - 1 - ], - [ - 0.17499999701976776, - 0.38749998807907104, - 1 - ], - [ - 0.17499999701976776, - 0.4124999940395355, - 1 - ], - [ - 0.17499999701976776, - 0.4124999940395355, - 1 - ], - [ - 0.17499999701976776, - 0.4375, - 1 - ], - [ - 0.17499999701976776, - 0.4375, - 1 - ], - [ - 0.17499999701976776, - 0.4625000059604645, - 1 - ], - [ - 0.17499999701976776, - 0.4625000059604645, - 1 - ], - [ - 0.17499999701976776, - 0.48750001192092896, - 1 - ], - [ - 0.17499999701976776, - 0.48750001192092896, - 1 - ], - [ - 0.17499999701976776, - 0.512499988079071, - 1 - ], - [ - 0.17499999701976776, - 0.512499988079071, - 1 - ], - [ - 0.17499999701976776, - 0.5375000238418579, - 1 - ], - [ - 0.17499999701976776, - 0.5375000238418579, - 1 - ], - [ - 0.17499999701976776, - 0.5625, - 1 - ], - [ - 0.17499999701976776, - 0.5625, - 1 - ], - [ - 0.17499999701976776, - 0.5874999761581421, - 1 - ], - [ - 0.17499999701976776, - 0.5874999761581421, - 1 - ], - [ - 0.17499999701976776, - 0.612500011920929, - 1 - ], - [ - 0.17499999701976776, - 0.612500011920929, - 1 - ], - [ - 0.17499999701976776, - 0.637499988079071, - 1 - ], - [ - 0.17499999701976776, - 0.637499988079071, - 1 - ], - [ - 0.17499999701976776, - 0.6625000238418579, - 1 - ], - [ - 0.17499999701976776, - 0.6625000238418579, - 1 - ], - [ - 0.17499999701976776, - 0.6875, - 1 - ], - [ - 0.17499999701976776, - 0.6875, - 1 - ], - [ - 0.17499999701976776, - 0.7124999761581421, - 1 - ], - [ - 0.17499999701976776, - 0.7124999761581421, - 1 - ], - [ - 0.17499999701976776, - 0.737500011920929, - 1 - ], - [ - 0.17499999701976776, - 0.737500011920929, - 1 - ], - [ - 0.17499999701976776, - 0.762499988079071, - 1 - ], - [ - 0.17499999701976776, - 0.762499988079071, - 1 - ], - [ - 0.17499999701976776, - 0.7875000238418579, - 1 - ], - [ - 0.17499999701976776, - 0.7875000238418579, - 1 - ], - [ - 0.17499999701976776, - 0.8125, - 1 - ], - [ - 0.17499999701976776, - 0.8125, - 1 - ], - [ - 0.17499999701976776, - 0.8374999761581421, - 1 - ], - [ - 0.17499999701976776, - 0.8374999761581421, - 1 - ], - [ - 0.17499999701976776, - 0.862500011920929, - 1 - ], - [ - 0.17499999701976776, - 0.862500011920929, - 1 - ], - [ - 0.17499999701976776, - 0.887499988079071, - 1 - ], - [ - 0.17499999701976776, - 0.887499988079071, - 1 - ], - [ - 0.17499999701976776, - 0.9125000238418579, - 1 - ], - [ - 0.17499999701976776, - 0.9125000238418579, - 1 - ], - [ - 0.17499999701976776, - 0.9375, - 1 - ], - [ - 0.17499999701976776, - 0.9375, - 1 - ], - [ - 0.17499999701976776, - 0.9624999761581421, - 1 - ], - [ - 0.17499999701976776, - 0.9624999761581421, - 1 - ], - [ - 0.17499999701976776, - 0.987500011920929, - 1 - ], - [ - 0.17499999701976776, - 0.987500011920929, - 1 - ], - [ - 0.22499999403953552, - 0.012500000186264515, - 1 - ], - [ - 0.22499999403953552, - 0.012500000186264515, - 1 - ], - [ - 0.22499999403953552, - 0.03750000149011612, - 1 - ], - [ - 0.22499999403953552, - 0.03750000149011612, - 1 - ], - [ - 0.22499999403953552, - 0.0625, - 1 - ], - [ - 0.22499999403953552, - 0.0625, - 1 - ], - [ - 0.22499999403953552, - 0.08749999850988388, - 1 - ], - [ - 0.22499999403953552, - 0.08749999850988388, - 1 - ], - [ - 0.22499999403953552, - 0.11249999701976776, - 1 - ], - [ - 0.22499999403953552, - 0.11249999701976776, - 1 - ], - [ - 0.22499999403953552, - 0.13750000298023224, - 1 - ], - [ - 0.22499999403953552, - 0.13750000298023224, - 1 - ], - [ - 0.22499999403953552, - 0.16249999403953552, - 1 - ], - [ - 0.22499999403953552, - 0.16249999403953552, - 1 - ], - [ - 0.22499999403953552, - 0.1875, - 1 - ], - [ - 0.22499999403953552, - 0.1875, - 1 - ], - [ - 0.22499999403953552, - 0.21250000596046448, - 1 - ], - [ - 0.22499999403953552, - 0.21250000596046448, - 1 - ], - [ - 0.22499999403953552, - 0.23749999701976776, - 1 - ], - [ - 0.22499999403953552, - 0.23749999701976776, - 1 - ], - [ - 0.22499999403953552, - 0.26249998807907104, - 1 - ], - [ - 0.22499999403953552, - 0.26249998807907104, - 1 - ], - [ - 0.22499999403953552, - 0.2874999940395355, - 1 - ], - [ - 0.22499999403953552, - 0.2874999940395355, - 1 - ], - [ - 0.22499999403953552, - 0.3125, - 1 - ], - [ - 0.22499999403953552, - 0.3125, - 1 - ], - [ - 0.22499999403953552, - 0.3375000059604645, - 1 - ], - [ - 0.22499999403953552, - 0.3375000059604645, - 1 - ], - [ - 0.22499999403953552, - 0.36250001192092896, - 1 - ], - [ - 0.22499999403953552, - 0.36250001192092896, - 1 - ], - [ - 0.22499999403953552, - 0.38749998807907104, - 1 - ], - [ - 0.22499999403953552, - 0.38749998807907104, - 1 - ], - [ - 0.22499999403953552, - 0.4124999940395355, - 1 - ], - [ - 0.22499999403953552, - 0.4124999940395355, - 1 - ], - [ - 0.22499999403953552, - 0.4375, - 1 - ], - [ - 0.22499999403953552, - 0.4375, - 1 - ], - [ - 0.22499999403953552, - 0.4625000059604645, - 1 - ], - [ - 0.22499999403953552, - 0.4625000059604645, - 1 - ], - [ - 0.22499999403953552, - 0.48750001192092896, - 1 - ], - [ - 0.22499999403953552, - 0.48750001192092896, - 1 - ], - [ - 0.22499999403953552, - 0.512499988079071, - 1 - ], - [ - 0.22499999403953552, - 0.512499988079071, - 1 - ], - [ - 0.22499999403953552, - 0.5375000238418579, - 1 - ], - [ - 0.22499999403953552, - 0.5375000238418579, - 1 - ], - [ - 0.22499999403953552, - 0.5625, - 1 - ], - [ - 0.22499999403953552, - 0.5625, - 1 - ], - [ - 0.22499999403953552, - 0.5874999761581421, - 1 - ], - [ - 0.22499999403953552, - 0.5874999761581421, - 1 - ], - [ - 0.22499999403953552, - 0.612500011920929, - 1 - ], - [ - 0.22499999403953552, - 0.612500011920929, - 1 - ], - [ - 0.22499999403953552, - 0.637499988079071, - 1 - ], - [ - 0.22499999403953552, - 0.637499988079071, - 1 - ], - [ - 0.22499999403953552, - 0.6625000238418579, - 1 - ], - [ - 0.22499999403953552, - 0.6625000238418579, - 1 - ], - [ - 0.22499999403953552, - 0.6875, - 1 - ], - [ - 0.22499999403953552, - 0.6875, - 1 - ], - [ - 0.22499999403953552, - 0.7124999761581421, - 1 - ], - [ - 0.22499999403953552, - 0.7124999761581421, - 1 - ], - [ - 0.22499999403953552, - 0.737500011920929, - 1 - ], - [ - 0.22499999403953552, - 0.737500011920929, - 1 - ], - [ - 0.22499999403953552, - 0.762499988079071, - 1 - ], - [ - 0.22499999403953552, - 0.762499988079071, - 1 - ], - [ - 0.22499999403953552, - 0.7875000238418579, - 1 - ], - [ - 0.22499999403953552, - 0.7875000238418579, - 1 - ], - [ - 0.22499999403953552, - 0.8125, - 1 - ], - [ - 0.22499999403953552, - 0.8125, - 1 - ], - [ - 0.22499999403953552, - 0.8374999761581421, - 1 - ], - [ - 0.22499999403953552, - 0.8374999761581421, - 1 - ], - [ - 0.22499999403953552, - 0.862500011920929, - 1 - ], - [ - 0.22499999403953552, - 0.862500011920929, - 1 - ], - [ - 0.22499999403953552, - 0.887499988079071, - 1 - ], - [ - 0.22499999403953552, - 0.887499988079071, - 1 - ], - [ - 0.22499999403953552, - 0.9125000238418579, - 1 - ], - [ - 0.22499999403953552, - 0.9125000238418579, - 1 - ], - [ - 0.22499999403953552, - 0.9375, - 1 - ], - [ - 0.22499999403953552, - 0.9375, - 1 - ], - [ - 0.22499999403953552, - 0.9624999761581421, - 1 - ], - [ - 0.22499999403953552, - 0.9624999761581421, - 1 - ], - [ - 0.22499999403953552, - 0.987500011920929, - 1 - ], - [ - 0.22499999403953552, - 0.987500011920929, - 1 - ], - [ - 0.2750000059604645, - 0.012500000186264515, - 1 - ], - [ - 0.2750000059604645, - 0.012500000186264515, - 1 - ], - [ - 0.2750000059604645, - 0.03750000149011612, - 1 - ], - [ - 0.2750000059604645, - 0.03750000149011612, - 1 - ], - [ - 0.2750000059604645, - 0.0625, - 1 - ], - [ - 0.2750000059604645, - 0.0625, - 1 - ], - [ - 0.2750000059604645, - 0.08749999850988388, - 1 - ], - [ - 0.2750000059604645, - 0.08749999850988388, - 1 - ], - [ - 0.2750000059604645, - 0.11249999701976776, - 1 - ], - [ - 0.2750000059604645, - 0.11249999701976776, - 1 - ], - [ - 0.2750000059604645, - 0.13750000298023224, - 1 - ], - [ - 0.2750000059604645, - 0.13750000298023224, - 1 - ], - [ - 0.2750000059604645, - 0.16249999403953552, - 1 - ], - [ - 0.2750000059604645, - 0.16249999403953552, - 1 - ], - [ - 0.2750000059604645, - 0.1875, - 1 - ], - [ - 0.2750000059604645, - 0.1875, - 1 - ], - [ - 0.2750000059604645, - 0.21250000596046448, - 1 - ], - [ - 0.2750000059604645, - 0.21250000596046448, - 1 - ], - [ - 0.2750000059604645, - 0.23749999701976776, - 1 - ], - [ - 0.2750000059604645, - 0.23749999701976776, - 1 - ], - [ - 0.2750000059604645, - 0.26249998807907104, - 1 - ], - [ - 0.2750000059604645, - 0.26249998807907104, - 1 - ], - [ - 0.2750000059604645, - 0.2874999940395355, - 1 - ], - [ - 0.2750000059604645, - 0.2874999940395355, - 1 - ], - [ - 0.2750000059604645, - 0.3125, - 1 - ], - [ - 0.2750000059604645, - 0.3125, - 1 - ], - [ - 0.2750000059604645, - 0.3375000059604645, - 1 - ], - [ - 0.2750000059604645, - 0.3375000059604645, - 1 - ], - [ - 0.2750000059604645, - 0.36250001192092896, - 1 - ], - [ - 0.2750000059604645, - 0.36250001192092896, - 1 - ], - [ - 0.2750000059604645, - 0.38749998807907104, - 1 - ], - [ - 0.2750000059604645, - 0.38749998807907104, - 1 - ], - [ - 0.2750000059604645, - 0.4124999940395355, - 1 - ], - [ - 0.2750000059604645, - 0.4124999940395355, - 1 - ], - [ - 0.2750000059604645, - 0.4375, - 1 - ], - [ - 0.2750000059604645, - 0.4375, - 1 - ], - [ - 0.2750000059604645, - 0.4625000059604645, - 1 - ], - [ - 0.2750000059604645, - 0.4625000059604645, - 1 - ], - [ - 0.2750000059604645, - 0.48750001192092896, - 1 - ], - [ - 0.2750000059604645, - 0.48750001192092896, - 1 - ], - [ - 0.2750000059604645, - 0.512499988079071, - 1 - ], - [ - 0.2750000059604645, - 0.512499988079071, - 1 - ], - [ - 0.2750000059604645, - 0.5375000238418579, - 1 - ], - [ - 0.2750000059604645, - 0.5375000238418579, - 1 - ], - [ - 0.2750000059604645, - 0.5625, - 1 - ], - [ - 0.2750000059604645, - 0.5625, - 1 - ], - [ - 0.2750000059604645, - 0.5874999761581421, - 1 - ], - [ - 0.2750000059604645, - 0.5874999761581421, - 1 - ], - [ - 0.2750000059604645, - 0.612500011920929, - 1 - ], - [ - 0.2750000059604645, - 0.612500011920929, - 1 - ], - [ - 0.2750000059604645, - 0.637499988079071, - 1 - ], - [ - 0.2750000059604645, - 0.637499988079071, - 1 - ], - [ - 0.2750000059604645, - 0.6625000238418579, - 1 - ], - [ - 0.2750000059604645, - 0.6625000238418579, - 1 - ], - [ - 0.2750000059604645, - 0.6875, - 1 - ], - [ - 0.2750000059604645, - 0.6875, - 1 - ], - [ - 0.2750000059604645, - 0.7124999761581421, - 1 - ], - [ - 0.2750000059604645, - 0.7124999761581421, - 1 - ], - [ - 0.2750000059604645, - 0.737500011920929, - 1 - ], - [ - 0.2750000059604645, - 0.737500011920929, - 1 - ], - [ - 0.2750000059604645, - 0.762499988079071, - 1 - ], - [ - 0.2750000059604645, - 0.762499988079071, - 1 - ], - [ - 0.2750000059604645, - 0.7875000238418579, - 1 - ], - [ - 0.2750000059604645, - 0.7875000238418579, - 1 - ], - [ - 0.2750000059604645, - 0.8125, - 1 - ], - [ - 0.2750000059604645, - 0.8125, - 1 - ], - [ - 0.2750000059604645, - 0.8374999761581421, - 1 - ], - [ - 0.2750000059604645, - 0.8374999761581421, - 1 - ], - [ - 0.2750000059604645, - 0.862500011920929, - 1 - ], - [ - 0.2750000059604645, - 0.862500011920929, - 1 - ], - [ - 0.2750000059604645, - 0.887499988079071, - 1 - ], - [ - 0.2750000059604645, - 0.887499988079071, - 1 - ], - [ - 0.2750000059604645, - 0.9125000238418579, - 1 - ], - [ - 0.2750000059604645, - 0.9125000238418579, - 1 - ], - [ - 0.2750000059604645, - 0.9375, - 1 - ], - [ - 0.2750000059604645, - 0.9375, - 1 - ], - [ - 0.2750000059604645, - 0.9624999761581421, - 1 - ], - [ - 0.2750000059604645, - 0.9624999761581421, - 1 - ], - [ - 0.2750000059604645, - 0.987500011920929, - 1 - ], - [ - 0.2750000059604645, - 0.987500011920929, - 1 - ], - [ - 0.32499998807907104, - 0.012500000186264515, - 1 - ], - [ - 0.32499998807907104, - 0.012500000186264515, - 1 - ], - [ - 0.32499998807907104, - 0.03750000149011612, - 1 - ], - [ - 0.32499998807907104, - 0.03750000149011612, - 1 - ], - [ - 0.32499998807907104, - 0.0625, - 1 - ], - [ - 0.32499998807907104, - 0.0625, - 1 - ], - [ - 0.32499998807907104, - 0.08749999850988388, - 1 - ], - [ - 0.32499998807907104, - 0.08749999850988388, - 1 - ], - [ - 0.32499998807907104, - 0.11249999701976776, - 1 - ], - [ - 0.32499998807907104, - 0.11249999701976776, - 1 - ], - [ - 0.32499998807907104, - 0.13750000298023224, - 1 - ], - [ - 0.32499998807907104, - 0.13750000298023224, - 1 - ], - [ - 0.32499998807907104, - 0.16249999403953552, - 1 - ], - [ - 0.32499998807907104, - 0.16249999403953552, - 1 - ], - [ - 0.32499998807907104, - 0.1875, - 1 - ], - [ - 0.32499998807907104, - 0.1875, - 1 - ], - [ - 0.32499998807907104, - 0.21250000596046448, - 1 - ], - [ - 0.32499998807907104, - 0.21250000596046448, - 1 - ], - [ - 0.32499998807907104, - 0.23749999701976776, - 1 - ], - [ - 0.32499998807907104, - 0.23749999701976776, - 1 - ], - [ - 0.32499998807907104, - 0.26249998807907104, - 1 - ], - [ - 0.32499998807907104, - 0.26249998807907104, - 1 - ], - [ - 0.32499998807907104, - 0.2874999940395355, - 1 - ], - [ - 0.32499998807907104, - 0.2874999940395355, - 1 - ], - [ - 0.32499998807907104, - 0.3125, - 1 - ], - [ - 0.32499998807907104, - 0.3125, - 1 - ], - [ - 0.32499998807907104, - 0.3375000059604645, - 1 - ], - [ - 0.32499998807907104, - 0.3375000059604645, - 1 - ], - [ - 0.32499998807907104, - 0.36250001192092896, - 1 - ], - [ - 0.32499998807907104, - 0.36250001192092896, - 1 - ], - [ - 0.32499998807907104, - 0.38749998807907104, - 1 - ], - [ - 0.32499998807907104, - 0.38749998807907104, - 1 - ], - [ - 0.32499998807907104, - 0.4124999940395355, - 1 - ], - [ - 0.32499998807907104, - 0.4124999940395355, - 1 - ], - [ - 0.32499998807907104, - 0.4375, - 1 - ], - [ - 0.32499998807907104, - 0.4375, - 1 - ], - [ - 0.32499998807907104, - 0.4625000059604645, - 1 - ], - [ - 0.32499998807907104, - 0.4625000059604645, - 1 - ], - [ - 0.32499998807907104, - 0.48750001192092896, - 1 - ], - [ - 0.32499998807907104, - 0.48750001192092896, - 1 - ], - [ - 0.32499998807907104, - 0.512499988079071, - 1 - ], - [ - 0.32499998807907104, - 0.512499988079071, - 1 - ], - [ - 0.32499998807907104, - 0.5375000238418579, - 1 - ], - [ - 0.32499998807907104, - 0.5375000238418579, - 1 - ], - [ - 0.32499998807907104, - 0.5625, - 1 - ], - [ - 0.32499998807907104, - 0.5625, - 1 - ], - [ - 0.32499998807907104, - 0.5874999761581421, - 1 - ], - [ - 0.32499998807907104, - 0.5874999761581421, - 1 - ], - [ - 0.32499998807907104, - 0.612500011920929, - 1 - ], - [ - 0.32499998807907104, - 0.612500011920929, - 1 - ], - [ - 0.32499998807907104, - 0.637499988079071, - 1 - ], - [ - 0.32499998807907104, - 0.637499988079071, - 1 - ], - [ - 0.32499998807907104, - 0.6625000238418579, - 1 - ], - [ - 0.32499998807907104, - 0.6625000238418579, - 1 - ], - [ - 0.32499998807907104, - 0.6875, - 1 - ], - [ - 0.32499998807907104, - 0.6875, - 1 - ], - [ - 0.32499998807907104, - 0.7124999761581421, - 1 - ], - [ - 0.32499998807907104, - 0.7124999761581421, - 1 - ], - [ - 0.32499998807907104, - 0.737500011920929, - 1 - ], - [ - 0.32499998807907104, - 0.737500011920929, - 1 - ], - [ - 0.32499998807907104, - 0.762499988079071, - 1 - ], - [ - 0.32499998807907104, - 0.762499988079071, - 1 - ], - [ - 0.32499998807907104, - 0.7875000238418579, - 1 - ], - [ - 0.32499998807907104, - 0.7875000238418579, - 1 - ], - [ - 0.32499998807907104, - 0.8125, - 1 - ], - [ - 0.32499998807907104, - 0.8125, - 1 - ], - [ - 0.32499998807907104, - 0.8374999761581421, - 1 - ], - [ - 0.32499998807907104, - 0.8374999761581421, - 1 - ], - [ - 0.32499998807907104, - 0.862500011920929, - 1 - ], - [ - 0.32499998807907104, - 0.862500011920929, - 1 - ], - [ - 0.32499998807907104, - 0.887499988079071, - 1 - ], - [ - 0.32499998807907104, - 0.887499988079071, - 1 - ], - [ - 0.32499998807907104, - 0.9125000238418579, - 1 - ], - [ - 0.32499998807907104, - 0.9125000238418579, - 1 - ], - [ - 0.32499998807907104, - 0.9375, - 1 - ], - [ - 0.32499998807907104, - 0.9375, - 1 - ], - [ - 0.32499998807907104, - 0.9624999761581421, - 1 - ], - [ - 0.32499998807907104, - 0.9624999761581421, - 1 - ], - [ - 0.32499998807907104, - 0.987500011920929, - 1 - ], - [ - 0.32499998807907104, - 0.987500011920929, - 1 - ], - [ - 0.375, - 0.012500000186264515, - 1 - ], - [ - 0.375, - 0.012500000186264515, - 1 - ], - [ - 0.375, - 0.03750000149011612, - 1 - ], - [ - 0.375, - 0.03750000149011612, - 1 - ], - [ - 0.375, - 0.0625, - 1 - ], - [ - 0.375, - 0.0625, - 1 - ], - [ - 0.375, - 0.08749999850988388, - 1 - ], - [ - 0.375, - 0.08749999850988388, - 1 - ], - [ - 0.375, - 0.11249999701976776, - 1 - ], - [ - 0.375, - 0.11249999701976776, - 1 - ], - [ - 0.375, - 0.13750000298023224, - 1 - ], - [ - 0.375, - 0.13750000298023224, - 1 - ], - [ - 0.375, - 0.16249999403953552, - 1 - ], - [ - 0.375, - 0.16249999403953552, - 1 - ], - [ - 0.375, - 0.1875, - 1 - ], - [ - 0.375, - 0.1875, - 1 - ], - [ - 0.375, - 0.21250000596046448, - 1 - ], - [ - 0.375, - 0.21250000596046448, - 1 - ], - [ - 0.375, - 0.23749999701976776, - 1 - ], - [ - 0.375, - 0.23749999701976776, - 1 - ], - [ - 0.375, - 0.26249998807907104, - 1 - ], - [ - 0.375, - 0.26249998807907104, - 1 - ], - [ - 0.375, - 0.2874999940395355, - 1 - ], - [ - 0.375, - 0.2874999940395355, - 1 - ], - [ - 0.375, - 0.3125, - 1 - ], - [ - 0.375, - 0.3125, - 1 - ], - [ - 0.375, - 0.3375000059604645, - 1 - ], - [ - 0.375, - 0.3375000059604645, - 1 - ], - [ - 0.375, - 0.36250001192092896, - 1 - ], - [ - 0.375, - 0.36250001192092896, - 1 - ], - [ - 0.375, - 0.38749998807907104, - 1 - ], - [ - 0.375, - 0.38749998807907104, - 1 - ], - [ - 0.375, - 0.4124999940395355, - 1 - ], - [ - 0.375, - 0.4124999940395355, - 1 - ], - [ - 0.375, - 0.4375, - 1 - ], - [ - 0.375, - 0.4375, - 1 - ], - [ - 0.375, - 0.4625000059604645, - 1 - ], - [ - 0.375, - 0.4625000059604645, - 1 - ], - [ - 0.375, - 0.48750001192092896, - 1 - ], - [ - 0.375, - 0.48750001192092896, - 1 - ], - [ - 0.375, - 0.512499988079071, - 1 - ], - [ - 0.375, - 0.512499988079071, - 1 - ], - [ - 0.375, - 0.5375000238418579, - 1 - ], - [ - 0.375, - 0.5375000238418579, - 1 - ], - [ - 0.375, - 0.5625, - 1 - ], - [ - 0.375, - 0.5625, - 1 - ], - [ - 0.375, - 0.5874999761581421, - 1 - ], - [ - 0.375, - 0.5874999761581421, - 1 - ], - [ - 0.375, - 0.612500011920929, - 1 - ], - [ - 0.375, - 0.612500011920929, - 1 - ], - [ - 0.375, - 0.637499988079071, - 1 - ], - [ - 0.375, - 0.637499988079071, - 1 - ], - [ - 0.375, - 0.6625000238418579, - 1 - ], - [ - 0.375, - 0.6625000238418579, - 1 - ], - [ - 0.375, - 0.6875, - 1 - ], - [ - 0.375, - 0.6875, - 1 - ], - [ - 0.375, - 0.7124999761581421, - 1 - ], - [ - 0.375, - 0.7124999761581421, - 1 - ], - [ - 0.375, - 0.737500011920929, - 1 - ], - [ - 0.375, - 0.737500011920929, - 1 - ], - [ - 0.375, - 0.762499988079071, - 1 - ], - [ - 0.375, - 0.762499988079071, - 1 - ], - [ - 0.375, - 0.7875000238418579, - 1 - ], - [ - 0.375, - 0.7875000238418579, - 1 - ], - [ - 0.375, - 0.8125, - 1 - ], - [ - 0.375, - 0.8125, - 1 - ], - [ - 0.375, - 0.8374999761581421, - 1 - ], - [ - 0.375, - 0.8374999761581421, - 1 - ], - [ - 0.375, - 0.862500011920929, - 1 - ], - [ - 0.375, - 0.862500011920929, - 1 - ], - [ - 0.375, - 0.887499988079071, - 1 - ], - [ - 0.375, - 0.887499988079071, - 1 - ], - [ - 0.375, - 0.9125000238418579, - 1 - ], - [ - 0.375, - 0.9125000238418579, - 1 - ], - [ - 0.375, - 0.9375, - 1 - ], - [ - 0.375, - 0.9375, - 1 - ], - [ - 0.375, - 0.9624999761581421, - 1 - ], - [ - 0.375, - 0.9624999761581421, - 1 - ], - [ - 0.375, - 0.987500011920929, - 1 - ], - [ - 0.375, - 0.987500011920929, - 1 - ], - [ - 0.42500001192092896, - 0.012500000186264515, - 1 - ], - [ - 0.42500001192092896, - 0.012500000186264515, - 1 - ], - [ - 0.42500001192092896, - 0.03750000149011612, - 1 - ], - [ - 0.42500001192092896, - 0.03750000149011612, - 1 - ], - [ - 0.42500001192092896, - 0.0625, - 1 - ], - [ - 0.42500001192092896, - 0.0625, - 1 - ], - [ - 0.42500001192092896, - 0.08749999850988388, - 1 - ], - [ - 0.42500001192092896, - 0.08749999850988388, - 1 - ], - [ - 0.42500001192092896, - 0.11249999701976776, - 1 - ], - [ - 0.42500001192092896, - 0.11249999701976776, - 1 - ], - [ - 0.42500001192092896, - 0.13750000298023224, - 1 - ], - [ - 0.42500001192092896, - 0.13750000298023224, - 1 - ], - [ - 0.42500001192092896, - 0.16249999403953552, - 1 - ], - [ - 0.42500001192092896, - 0.16249999403953552, - 1 - ], - [ - 0.42500001192092896, - 0.1875, - 1 - ], - [ - 0.42500001192092896, - 0.1875, - 1 - ], - [ - 0.42500001192092896, - 0.21250000596046448, - 1 - ], - [ - 0.42500001192092896, - 0.21250000596046448, - 1 - ], - [ - 0.42500001192092896, - 0.23749999701976776, - 1 - ], - [ - 0.42500001192092896, - 0.23749999701976776, - 1 - ], - [ - 0.42500001192092896, - 0.26249998807907104, - 1 - ], - [ - 0.42500001192092896, - 0.26249998807907104, - 1 - ], - [ - 0.42500001192092896, - 0.2874999940395355, - 1 - ], - [ - 0.42500001192092896, - 0.2874999940395355, - 1 - ], - [ - 0.42500001192092896, - 0.3125, - 1 - ], - [ - 0.42500001192092896, - 0.3125, - 1 - ], - [ - 0.42500001192092896, - 0.3375000059604645, - 1 - ], - [ - 0.42500001192092896, - 0.3375000059604645, - 1 - ], - [ - 0.42500001192092896, - 0.36250001192092896, - 1 - ], - [ - 0.42500001192092896, - 0.36250001192092896, - 1 - ], - [ - 0.42500001192092896, - 0.38749998807907104, - 1 - ], - [ - 0.42500001192092896, - 0.38749998807907104, - 1 - ], - [ - 0.42500001192092896, - 0.4124999940395355, - 1 - ], - [ - 0.42500001192092896, - 0.4124999940395355, - 1 - ], - [ - 0.42500001192092896, - 0.4375, - 1 - ], - [ - 0.42500001192092896, - 0.4375, - 1 - ], - [ - 0.42500001192092896, - 0.4625000059604645, - 1 - ], - [ - 0.42500001192092896, - 0.4625000059604645, - 1 - ], - [ - 0.42500001192092896, - 0.48750001192092896, - 1 - ], - [ - 0.42500001192092896, - 0.48750001192092896, - 1 - ], - [ - 0.42500001192092896, - 0.512499988079071, - 1 - ], - [ - 0.42500001192092896, - 0.512499988079071, - 1 - ], - [ - 0.42500001192092896, - 0.5375000238418579, - 1 - ], - [ - 0.42500001192092896, - 0.5375000238418579, - 1 - ], - [ - 0.42500001192092896, - 0.5625, - 1 - ], - [ - 0.42500001192092896, - 0.5625, - 1 - ], - [ - 0.42500001192092896, - 0.5874999761581421, - 1 - ], - [ - 0.42500001192092896, - 0.5874999761581421, - 1 - ], - [ - 0.42500001192092896, - 0.612500011920929, - 1 - ], - [ - 0.42500001192092896, - 0.612500011920929, - 1 - ], - [ - 0.42500001192092896, - 0.637499988079071, - 1 - ], - [ - 0.42500001192092896, - 0.637499988079071, - 1 - ], - [ - 0.42500001192092896, - 0.6625000238418579, - 1 - ], - [ - 0.42500001192092896, - 0.6625000238418579, - 1 - ], - [ - 0.42500001192092896, - 0.6875, - 1 - ], - [ - 0.42500001192092896, - 0.6875, - 1 - ], - [ - 0.42500001192092896, - 0.7124999761581421, - 1 - ], - [ - 0.42500001192092896, - 0.7124999761581421, - 1 - ], - [ - 0.42500001192092896, - 0.737500011920929, - 1 - ], - [ - 0.42500001192092896, - 0.737500011920929, - 1 - ], - [ - 0.42500001192092896, - 0.762499988079071, - 1 - ], - [ - 0.42500001192092896, - 0.762499988079071, - 1 - ], - [ - 0.42500001192092896, - 0.7875000238418579, - 1 - ], - [ - 0.42500001192092896, - 0.7875000238418579, - 1 - ], - [ - 0.42500001192092896, - 0.8125, - 1 - ], - [ - 0.42500001192092896, - 0.8125, - 1 - ], - [ - 0.42500001192092896, - 0.8374999761581421, - 1 - ], - [ - 0.42500001192092896, - 0.8374999761581421, - 1 - ], - [ - 0.42500001192092896, - 0.862500011920929, - 1 - ], - [ - 0.42500001192092896, - 0.862500011920929, - 1 - ], - [ - 0.42500001192092896, - 0.887499988079071, - 1 - ], - [ - 0.42500001192092896, - 0.887499988079071, - 1 - ], - [ - 0.42500001192092896, - 0.9125000238418579, - 1 - ], - [ - 0.42500001192092896, - 0.9125000238418579, - 1 - ], - [ - 0.42500001192092896, - 0.9375, - 1 - ], - [ - 0.42500001192092896, - 0.9375, - 1 - ], - [ - 0.42500001192092896, - 0.9624999761581421, - 1 - ], - [ - 0.42500001192092896, - 0.9624999761581421, - 1 - ], - [ - 0.42500001192092896, - 0.987500011920929, - 1 - ], - [ - 0.42500001192092896, - 0.987500011920929, - 1 - ], - [ - 0.4749999940395355, - 0.012500000186264515, - 1 - ], - [ - 0.4749999940395355, - 0.012500000186264515, - 1 - ], - [ - 0.4749999940395355, - 0.03750000149011612, - 1 - ], - [ - 0.4749999940395355, - 0.03750000149011612, - 1 - ], - [ - 0.4749999940395355, - 0.0625, - 1 - ], - [ - 0.4749999940395355, - 0.0625, - 1 - ], - [ - 0.4749999940395355, - 0.08749999850988388, - 1 - ], - [ - 0.4749999940395355, - 0.08749999850988388, - 1 - ], - [ - 0.4749999940395355, - 0.11249999701976776, - 1 - ], - [ - 0.4749999940395355, - 0.11249999701976776, - 1 - ], - [ - 0.4749999940395355, - 0.13750000298023224, - 1 - ], - [ - 0.4749999940395355, - 0.13750000298023224, - 1 - ], - [ - 0.4749999940395355, - 0.16249999403953552, - 1 - ], - [ - 0.4749999940395355, - 0.16249999403953552, - 1 - ], - [ - 0.4749999940395355, - 0.1875, - 1 - ], - [ - 0.4749999940395355, - 0.1875, - 1 - ], - [ - 0.4749999940395355, - 0.21250000596046448, - 1 - ], - [ - 0.4749999940395355, - 0.21250000596046448, - 1 - ], - [ - 0.4749999940395355, - 0.23749999701976776, - 1 - ], - [ - 0.4749999940395355, - 0.23749999701976776, - 1 - ], - [ - 0.4749999940395355, - 0.26249998807907104, - 1 - ], - [ - 0.4749999940395355, - 0.26249998807907104, - 1 - ], - [ - 0.4749999940395355, - 0.2874999940395355, - 1 - ], - [ - 0.4749999940395355, - 0.2874999940395355, - 1 - ], - [ - 0.4749999940395355, - 0.3125, - 1 - ], - [ - 0.4749999940395355, - 0.3125, - 1 - ], - [ - 0.4749999940395355, - 0.3375000059604645, - 1 - ], - [ - 0.4749999940395355, - 0.3375000059604645, - 1 - ], - [ - 0.4749999940395355, - 0.36250001192092896, - 1 - ], - [ - 0.4749999940395355, - 0.36250001192092896, - 1 - ], - [ - 0.4749999940395355, - 0.38749998807907104, - 1 - ], - [ - 0.4749999940395355, - 0.38749998807907104, - 1 - ], - [ - 0.4749999940395355, - 0.4124999940395355, - 1 - ], - [ - 0.4749999940395355, - 0.4124999940395355, - 1 - ], - [ - 0.4749999940395355, - 0.4375, - 1 - ], - [ - 0.4749999940395355, - 0.4375, - 1 - ], - [ - 0.4749999940395355, - 0.4625000059604645, - 1 - ], - [ - 0.4749999940395355, - 0.4625000059604645, - 1 - ], - [ - 0.4749999940395355, - 0.48750001192092896, - 1 - ], - [ - 0.4749999940395355, - 0.48750001192092896, - 1 - ], - [ - 0.4749999940395355, - 0.512499988079071, - 1 - ], - [ - 0.4749999940395355, - 0.512499988079071, - 1 - ], - [ - 0.4749999940395355, - 0.5375000238418579, - 1 - ], - [ - 0.4749999940395355, - 0.5375000238418579, - 1 - ], - [ - 0.4749999940395355, - 0.5625, - 1 - ], - [ - 0.4749999940395355, - 0.5625, - 1 - ], - [ - 0.4749999940395355, - 0.5874999761581421, - 1 - ], - [ - 0.4749999940395355, - 0.5874999761581421, - 1 - ], - [ - 0.4749999940395355, - 0.612500011920929, - 1 - ], - [ - 0.4749999940395355, - 0.612500011920929, - 1 - ], - [ - 0.4749999940395355, - 0.637499988079071, - 1 - ], - [ - 0.4749999940395355, - 0.637499988079071, - 1 - ], - [ - 0.4749999940395355, - 0.6625000238418579, - 1 - ], - [ - 0.4749999940395355, - 0.6625000238418579, - 1 - ], - [ - 0.4749999940395355, - 0.6875, - 1 - ], - [ - 0.4749999940395355, - 0.6875, - 1 - ], - [ - 0.4749999940395355, - 0.7124999761581421, - 1 - ], - [ - 0.4749999940395355, - 0.7124999761581421, - 1 - ], - [ - 0.4749999940395355, - 0.737500011920929, - 1 - ], - [ - 0.4749999940395355, - 0.737500011920929, - 1 - ], - [ - 0.4749999940395355, - 0.762499988079071, - 1 - ], - [ - 0.4749999940395355, - 0.762499988079071, - 1 - ], - [ - 0.4749999940395355, - 0.7875000238418579, - 1 - ], - [ - 0.4749999940395355, - 0.7875000238418579, - 1 - ], - [ - 0.4749999940395355, - 0.8125, - 1 - ], - [ - 0.4749999940395355, - 0.8125, - 1 - ], - [ - 0.4749999940395355, - 0.8374999761581421, - 1 - ], - [ - 0.4749999940395355, - 0.8374999761581421, - 1 - ], - [ - 0.4749999940395355, - 0.862500011920929, - 1 - ], - [ - 0.4749999940395355, - 0.862500011920929, - 1 - ], - [ - 0.4749999940395355, - 0.887499988079071, - 1 - ], - [ - 0.4749999940395355, - 0.887499988079071, - 1 - ], - [ - 0.4749999940395355, - 0.9125000238418579, - 1 - ], - [ - 0.4749999940395355, - 0.9125000238418579, - 1 - ], - [ - 0.4749999940395355, - 0.9375, - 1 - ], - [ - 0.4749999940395355, - 0.9375, - 1 - ], - [ - 0.4749999940395355, - 0.9624999761581421, - 1 - ], - [ - 0.4749999940395355, - 0.9624999761581421, - 1 - ], - [ - 0.4749999940395355, - 0.987500011920929, - 1 - ], - [ - 0.4749999940395355, - 0.987500011920929, - 1 - ], - [ - 0.5249999761581421, - 0.012500000186264515, - 1 - ], - [ - 0.5249999761581421, - 0.012500000186264515, - 1 - ], - [ - 0.5249999761581421, - 0.03750000149011612, - 1 - ], - [ - 0.5249999761581421, - 0.03750000149011612, - 1 - ], - [ - 0.5249999761581421, - 0.0625, - 1 - ], - [ - 0.5249999761581421, - 0.0625, - 1 - ], - [ - 0.5249999761581421, - 0.08749999850988388, - 1 - ], - [ - 0.5249999761581421, - 0.08749999850988388, - 1 - ], - [ - 0.5249999761581421, - 0.11249999701976776, - 1 - ], - [ - 0.5249999761581421, - 0.11249999701976776, - 1 - ], - [ - 0.5249999761581421, - 0.13750000298023224, - 1 - ], - [ - 0.5249999761581421, - 0.13750000298023224, - 1 - ], - [ - 0.5249999761581421, - 0.16249999403953552, - 1 - ], - [ - 0.5249999761581421, - 0.16249999403953552, - 1 - ], - [ - 0.5249999761581421, - 0.1875, - 1 - ], - [ - 0.5249999761581421, - 0.1875, - 1 - ], - [ - 0.5249999761581421, - 0.21250000596046448, - 1 - ], - [ - 0.5249999761581421, - 0.21250000596046448, - 1 - ], - [ - 0.5249999761581421, - 0.23749999701976776, - 1 - ], - [ - 0.5249999761581421, - 0.23749999701976776, - 1 - ], - [ - 0.5249999761581421, - 0.26249998807907104, - 1 - ], - [ - 0.5249999761581421, - 0.26249998807907104, - 1 - ], - [ - 0.5249999761581421, - 0.2874999940395355, - 1 - ], - [ - 0.5249999761581421, - 0.2874999940395355, - 1 - ], - [ - 0.5249999761581421, - 0.3125, - 1 - ], - [ - 0.5249999761581421, - 0.3125, - 1 - ], - [ - 0.5249999761581421, - 0.3375000059604645, - 1 - ], - [ - 0.5249999761581421, - 0.3375000059604645, - 1 - ], - [ - 0.5249999761581421, - 0.36250001192092896, - 1 - ], - [ - 0.5249999761581421, - 0.36250001192092896, - 1 - ], - [ - 0.5249999761581421, - 0.38749998807907104, - 1 - ], - [ - 0.5249999761581421, - 0.38749998807907104, - 1 - ], - [ - 0.5249999761581421, - 0.4124999940395355, - 1 - ], - [ - 0.5249999761581421, - 0.4124999940395355, - 1 - ], - [ - 0.5249999761581421, - 0.4375, - 1 - ], - [ - 0.5249999761581421, - 0.4375, - 1 - ], - [ - 0.5249999761581421, - 0.4625000059604645, - 1 - ], - [ - 0.5249999761581421, - 0.4625000059604645, - 1 - ], - [ - 0.5249999761581421, - 0.48750001192092896, - 1 - ], - [ - 0.5249999761581421, - 0.48750001192092896, - 1 - ], - [ - 0.5249999761581421, - 0.512499988079071, - 1 - ], - [ - 0.5249999761581421, - 0.512499988079071, - 1 - ], - [ - 0.5249999761581421, - 0.5375000238418579, - 1 - ], - [ - 0.5249999761581421, - 0.5375000238418579, - 1 - ], - [ - 0.5249999761581421, - 0.5625, - 1 - ], - [ - 0.5249999761581421, - 0.5625, - 1 - ], - [ - 0.5249999761581421, - 0.5874999761581421, - 1 - ], - [ - 0.5249999761581421, - 0.5874999761581421, - 1 - ], - [ - 0.5249999761581421, - 0.612500011920929, - 1 - ], - [ - 0.5249999761581421, - 0.612500011920929, - 1 - ], - [ - 0.5249999761581421, - 0.637499988079071, - 1 - ], - [ - 0.5249999761581421, - 0.637499988079071, - 1 - ], - [ - 0.5249999761581421, - 0.6625000238418579, - 1 - ], - [ - 0.5249999761581421, - 0.6625000238418579, - 1 - ], - [ - 0.5249999761581421, - 0.6875, - 1 - ], - [ - 0.5249999761581421, - 0.6875, - 1 - ], - [ - 0.5249999761581421, - 0.7124999761581421, - 1 - ], - [ - 0.5249999761581421, - 0.7124999761581421, - 1 - ], - [ - 0.5249999761581421, - 0.737500011920929, - 1 - ], - [ - 0.5249999761581421, - 0.737500011920929, - 1 - ], - [ - 0.5249999761581421, - 0.762499988079071, - 1 - ], - [ - 0.5249999761581421, - 0.762499988079071, - 1 - ], - [ - 0.5249999761581421, - 0.7875000238418579, - 1 - ], - [ - 0.5249999761581421, - 0.7875000238418579, - 1 - ], - [ - 0.5249999761581421, - 0.8125, - 1 - ], - [ - 0.5249999761581421, - 0.8125, - 1 - ], - [ - 0.5249999761581421, - 0.8374999761581421, - 1 - ], - [ - 0.5249999761581421, - 0.8374999761581421, - 1 - ], - [ - 0.5249999761581421, - 0.862500011920929, - 1 - ], - [ - 0.5249999761581421, - 0.862500011920929, - 1 - ], - [ - 0.5249999761581421, - 0.887499988079071, - 1 - ], - [ - 0.5249999761581421, - 0.887499988079071, - 1 - ], - [ - 0.5249999761581421, - 0.9125000238418579, - 1 - ], - [ - 0.5249999761581421, - 0.9125000238418579, - 1 - ], - [ - 0.5249999761581421, - 0.9375, - 1 - ], - [ - 0.5249999761581421, - 0.9375, - 1 - ], - [ - 0.5249999761581421, - 0.9624999761581421, - 1 - ], - [ - 0.5249999761581421, - 0.9624999761581421, - 1 - ], - [ - 0.5249999761581421, - 0.987500011920929, - 1 - ], - [ - 0.5249999761581421, - 0.987500011920929, - 1 - ], - [ - 0.574999988079071, - 0.012500000186264515, - 1 - ], - [ - 0.574999988079071, - 0.012500000186264515, - 1 - ], - [ - 0.574999988079071, - 0.03750000149011612, - 1 - ], - [ - 0.574999988079071, - 0.03750000149011612, - 1 - ], - [ - 0.574999988079071, - 0.0625, - 1 - ], - [ - 0.574999988079071, - 0.0625, - 1 - ], - [ - 0.574999988079071, - 0.08749999850988388, - 1 - ], - [ - 0.574999988079071, - 0.08749999850988388, - 1 - ], - [ - 0.574999988079071, - 0.11249999701976776, - 1 - ], - [ - 0.574999988079071, - 0.11249999701976776, - 1 - ], - [ - 0.574999988079071, - 0.13750000298023224, - 1 - ], - [ - 0.574999988079071, - 0.13750000298023224, - 1 - ], - [ - 0.574999988079071, - 0.16249999403953552, - 1 - ], - [ - 0.574999988079071, - 0.16249999403953552, - 1 - ], - [ - 0.574999988079071, - 0.1875, - 1 - ], - [ - 0.574999988079071, - 0.1875, - 1 - ], - [ - 0.574999988079071, - 0.21250000596046448, - 1 - ], - [ - 0.574999988079071, - 0.21250000596046448, - 1 - ], - [ - 0.574999988079071, - 0.23749999701976776, - 1 - ], - [ - 0.574999988079071, - 0.23749999701976776, - 1 - ], - [ - 0.574999988079071, - 0.26249998807907104, - 1 - ], - [ - 0.574999988079071, - 0.26249998807907104, - 1 - ], - [ - 0.574999988079071, - 0.2874999940395355, - 1 - ], - [ - 0.574999988079071, - 0.2874999940395355, - 1 - ], - [ - 0.574999988079071, - 0.3125, - 1 - ], - [ - 0.574999988079071, - 0.3125, - 1 - ], - [ - 0.574999988079071, - 0.3375000059604645, - 1 - ], - [ - 0.574999988079071, - 0.3375000059604645, - 1 - ], - [ - 0.574999988079071, - 0.36250001192092896, - 1 - ], - [ - 0.574999988079071, - 0.36250001192092896, - 1 - ], - [ - 0.574999988079071, - 0.38749998807907104, - 1 - ], - [ - 0.574999988079071, - 0.38749998807907104, - 1 - ], - [ - 0.574999988079071, - 0.4124999940395355, - 1 - ], - [ - 0.574999988079071, - 0.4124999940395355, - 1 - ], - [ - 0.574999988079071, - 0.4375, - 1 - ], - [ - 0.574999988079071, - 0.4375, - 1 - ], - [ - 0.574999988079071, - 0.4625000059604645, - 1 - ], - [ - 0.574999988079071, - 0.4625000059604645, - 1 - ], - [ - 0.574999988079071, - 0.48750001192092896, - 1 - ], - [ - 0.574999988079071, - 0.48750001192092896, - 1 - ], - [ - 0.574999988079071, - 0.512499988079071, - 1 - ], - [ - 0.574999988079071, - 0.512499988079071, - 1 - ], - [ - 0.574999988079071, - 0.5375000238418579, - 1 - ], - [ - 0.574999988079071, - 0.5375000238418579, - 1 - ], - [ - 0.574999988079071, - 0.5625, - 1 - ], - [ - 0.574999988079071, - 0.5625, - 1 - ], - [ - 0.574999988079071, - 0.5874999761581421, - 1 - ], - [ - 0.574999988079071, - 0.5874999761581421, - 1 - ], - [ - 0.574999988079071, - 0.612500011920929, - 1 - ], - [ - 0.574999988079071, - 0.612500011920929, - 1 - ], - [ - 0.574999988079071, - 0.637499988079071, - 1 - ], - [ - 0.574999988079071, - 0.637499988079071, - 1 - ], - [ - 0.574999988079071, - 0.6625000238418579, - 1 - ], - [ - 0.574999988079071, - 0.6625000238418579, - 1 - ], - [ - 0.574999988079071, - 0.6875, - 1 - ], - [ - 0.574999988079071, - 0.6875, - 1 - ], - [ - 0.574999988079071, - 0.7124999761581421, - 1 - ], - [ - 0.574999988079071, - 0.7124999761581421, - 1 - ], - [ - 0.574999988079071, - 0.737500011920929, - 1 - ], - [ - 0.574999988079071, - 0.737500011920929, - 1 - ], - [ - 0.574999988079071, - 0.762499988079071, - 1 - ], - [ - 0.574999988079071, - 0.762499988079071, - 1 - ], - [ - 0.574999988079071, - 0.7875000238418579, - 1 - ], - [ - 0.574999988079071, - 0.7875000238418579, - 1 - ], - [ - 0.574999988079071, - 0.8125, - 1 - ], - [ - 0.574999988079071, - 0.8125, - 1 - ], - [ - 0.574999988079071, - 0.8374999761581421, - 1 - ], - [ - 0.574999988079071, - 0.8374999761581421, - 1 - ], - [ - 0.574999988079071, - 0.862500011920929, - 1 - ], - [ - 0.574999988079071, - 0.862500011920929, - 1 - ], - [ - 0.574999988079071, - 0.887499988079071, - 1 - ], - [ - 0.574999988079071, - 0.887499988079071, - 1 - ], - [ - 0.574999988079071, - 0.9125000238418579, - 1 - ], - [ - 0.574999988079071, - 0.9125000238418579, - 1 - ], - [ - 0.574999988079071, - 0.9375, - 1 - ], - [ - 0.574999988079071, - 0.9375, - 1 - ], - [ - 0.574999988079071, - 0.9624999761581421, - 1 - ], - [ - 0.574999988079071, - 0.9624999761581421, - 1 - ], - [ - 0.574999988079071, - 0.987500011920929, - 1 - ], - [ - 0.574999988079071, - 0.987500011920929, - 1 - ], - [ - 0.625, - 0.012500000186264515, - 1 - ], - [ - 0.625, - 0.012500000186264515, - 1 - ], - [ - 0.625, - 0.03750000149011612, - 1 - ], - [ - 0.625, - 0.03750000149011612, - 1 - ], - [ - 0.625, - 0.0625, - 1 - ], - [ - 0.625, - 0.0625, - 1 - ], - [ - 0.625, - 0.08749999850988388, - 1 - ], - [ - 0.625, - 0.08749999850988388, - 1 - ], - [ - 0.625, - 0.11249999701976776, - 1 - ], - [ - 0.625, - 0.11249999701976776, - 1 - ], - [ - 0.625, - 0.13750000298023224, - 1 - ], - [ - 0.625, - 0.13750000298023224, - 1 - ], - [ - 0.625, - 0.16249999403953552, - 1 - ], - [ - 0.625, - 0.16249999403953552, - 1 - ], - [ - 0.625, - 0.1875, - 1 - ], - [ - 0.625, - 0.1875, - 1 - ], - [ - 0.625, - 0.21250000596046448, - 1 - ], - [ - 0.625, - 0.21250000596046448, - 1 - ], - [ - 0.625, - 0.23749999701976776, - 1 - ], - [ - 0.625, - 0.23749999701976776, - 1 - ], - [ - 0.625, - 0.26249998807907104, - 1 - ], - [ - 0.625, - 0.26249998807907104, - 1 - ], - [ - 0.625, - 0.2874999940395355, - 1 - ], - [ - 0.625, - 0.2874999940395355, - 1 - ], - [ - 0.625, - 0.3125, - 1 - ], - [ - 0.625, - 0.3125, - 1 - ], - [ - 0.625, - 0.3375000059604645, - 1 - ], - [ - 0.625, - 0.3375000059604645, - 1 - ], - [ - 0.625, - 0.36250001192092896, - 1 - ], - [ - 0.625, - 0.36250001192092896, - 1 - ], - [ - 0.625, - 0.38749998807907104, - 1 - ], - [ - 0.625, - 0.38749998807907104, - 1 - ], - [ - 0.625, - 0.4124999940395355, - 1 - ], - [ - 0.625, - 0.4124999940395355, - 1 - ], - [ - 0.625, - 0.4375, - 1 - ], - [ - 0.625, - 0.4375, - 1 - ], - [ - 0.625, - 0.4625000059604645, - 1 - ], - [ - 0.625, - 0.4625000059604645, - 1 - ], - [ - 0.625, - 0.48750001192092896, - 1 - ], - [ - 0.625, - 0.48750001192092896, - 1 - ], - [ - 0.625, - 0.512499988079071, - 1 - ], - [ - 0.625, - 0.512499988079071, - 1 - ], - [ - 0.625, - 0.5375000238418579, - 1 - ], - [ - 0.625, - 0.5375000238418579, - 1 - ], - [ - 0.625, - 0.5625, - 1 - ], - [ - 0.625, - 0.5625, - 1 - ], - [ - 0.625, - 0.5874999761581421, - 1 - ], - [ - 0.625, - 0.5874999761581421, - 1 - ], - [ - 0.625, - 0.612500011920929, - 1 - ], - [ - 0.625, - 0.612500011920929, - 1 - ], - [ - 0.625, - 0.637499988079071, - 1 - ], - [ - 0.625, - 0.637499988079071, - 1 - ], - [ - 0.625, - 0.6625000238418579, - 1 - ], - [ - 0.625, - 0.6625000238418579, - 1 - ], - [ - 0.625, - 0.6875, - 1 - ], - [ - 0.625, - 0.6875, - 1 - ], - [ - 0.625, - 0.7124999761581421, - 1 - ], - [ - 0.625, - 0.7124999761581421, - 1 - ], - [ - 0.625, - 0.737500011920929, - 1 - ], - [ - 0.625, - 0.737500011920929, - 1 - ], - [ - 0.625, - 0.762499988079071, - 1 - ], - [ - 0.625, - 0.762499988079071, - 1 - ], - [ - 0.625, - 0.7875000238418579, - 1 - ], - [ - 0.625, - 0.7875000238418579, - 1 - ], - [ - 0.625, - 0.8125, - 1 - ], - [ - 0.625, - 0.8125, - 1 - ], - [ - 0.625, - 0.8374999761581421, - 1 - ], - [ - 0.625, - 0.8374999761581421, - 1 - ], - [ - 0.625, - 0.862500011920929, - 1 - ], - [ - 0.625, - 0.862500011920929, - 1 - ], - [ - 0.625, - 0.887499988079071, - 1 - ], - [ - 0.625, - 0.887499988079071, - 1 - ], - [ - 0.625, - 0.9125000238418579, - 1 - ], - [ - 0.625, - 0.9125000238418579, - 1 - ], - [ - 0.625, - 0.9375, - 1 - ], - [ - 0.625, - 0.9375, - 1 - ], - [ - 0.625, - 0.9624999761581421, - 1 - ], - [ - 0.625, - 0.9624999761581421, - 1 - ], - [ - 0.625, - 0.987500011920929, - 1 - ], - [ - 0.625, - 0.987500011920929, - 1 - ], - [ - 0.675000011920929, - 0.012500000186264515, - 1 - ], - [ - 0.675000011920929, - 0.012500000186264515, - 1 - ], - [ - 0.675000011920929, - 0.03750000149011612, - 1 - ], - [ - 0.675000011920929, - 0.03750000149011612, - 1 - ], - [ - 0.675000011920929, - 0.0625, - 1 - ], - [ - 0.675000011920929, - 0.0625, - 1 - ], - [ - 0.675000011920929, - 0.08749999850988388, - 1 - ], - [ - 0.675000011920929, - 0.08749999850988388, - 1 - ], - [ - 0.675000011920929, - 0.11249999701976776, - 1 - ], - [ - 0.675000011920929, - 0.11249999701976776, - 1 - ], - [ - 0.675000011920929, - 0.13750000298023224, - 1 - ], - [ - 0.675000011920929, - 0.13750000298023224, - 1 - ], - [ - 0.675000011920929, - 0.16249999403953552, - 1 - ], - [ - 0.675000011920929, - 0.16249999403953552, - 1 - ], - [ - 0.675000011920929, - 0.1875, - 1 - ], - [ - 0.675000011920929, - 0.1875, - 1 - ], - [ - 0.675000011920929, - 0.21250000596046448, - 1 - ], - [ - 0.675000011920929, - 0.21250000596046448, - 1 - ], - [ - 0.675000011920929, - 0.23749999701976776, - 1 - ], - [ - 0.675000011920929, - 0.23749999701976776, - 1 - ], - [ - 0.675000011920929, - 0.26249998807907104, - 1 - ], - [ - 0.675000011920929, - 0.26249998807907104, - 1 - ], - [ - 0.675000011920929, - 0.2874999940395355, - 1 - ], - [ - 0.675000011920929, - 0.2874999940395355, - 1 - ], - [ - 0.675000011920929, - 0.3125, - 1 - ], - [ - 0.675000011920929, - 0.3125, - 1 - ], - [ - 0.675000011920929, - 0.3375000059604645, - 1 - ], - [ - 0.675000011920929, - 0.3375000059604645, - 1 - ], - [ - 0.675000011920929, - 0.36250001192092896, - 1 - ], - [ - 0.675000011920929, - 0.36250001192092896, - 1 - ], - [ - 0.675000011920929, - 0.38749998807907104, - 1 - ], - [ - 0.675000011920929, - 0.38749998807907104, - 1 - ], - [ - 0.675000011920929, - 0.4124999940395355, - 1 - ], - [ - 0.675000011920929, - 0.4124999940395355, - 1 - ], - [ - 0.675000011920929, - 0.4375, - 1 - ], - [ - 0.675000011920929, - 0.4375, - 1 - ], - [ - 0.675000011920929, - 0.4625000059604645, - 1 - ], - [ - 0.675000011920929, - 0.4625000059604645, - 1 - ], - [ - 0.675000011920929, - 0.48750001192092896, - 1 - ], - [ - 0.675000011920929, - 0.48750001192092896, - 1 - ], - [ - 0.675000011920929, - 0.512499988079071, - 1 - ], - [ - 0.675000011920929, - 0.512499988079071, - 1 - ], - [ - 0.675000011920929, - 0.5375000238418579, - 1 - ], - [ - 0.675000011920929, - 0.5375000238418579, - 1 - ], - [ - 0.675000011920929, - 0.5625, - 1 - ], - [ - 0.675000011920929, - 0.5625, - 1 - ], - [ - 0.675000011920929, - 0.5874999761581421, - 1 - ], - [ - 0.675000011920929, - 0.5874999761581421, - 1 - ], - [ - 0.675000011920929, - 0.612500011920929, - 1 - ], - [ - 0.675000011920929, - 0.612500011920929, - 1 - ], - [ - 0.675000011920929, - 0.637499988079071, - 1 - ], - [ - 0.675000011920929, - 0.637499988079071, - 1 - ], - [ - 0.675000011920929, - 0.6625000238418579, - 1 - ], - [ - 0.675000011920929, - 0.6625000238418579, - 1 - ], - [ - 0.675000011920929, - 0.6875, - 1 - ], - [ - 0.675000011920929, - 0.6875, - 1 - ], - [ - 0.675000011920929, - 0.7124999761581421, - 1 - ], - [ - 0.675000011920929, - 0.7124999761581421, - 1 - ], - [ - 0.675000011920929, - 0.737500011920929, - 1 - ], - [ - 0.675000011920929, - 0.737500011920929, - 1 - ], - [ - 0.675000011920929, - 0.762499988079071, - 1 - ], - [ - 0.675000011920929, - 0.762499988079071, - 1 - ], - [ - 0.675000011920929, - 0.7875000238418579, - 1 - ], - [ - 0.675000011920929, - 0.7875000238418579, - 1 - ], - [ - 0.675000011920929, - 0.8125, - 1 - ], - [ - 0.675000011920929, - 0.8125, - 1 - ], - [ - 0.675000011920929, - 0.8374999761581421, - 1 - ], - [ - 0.675000011920929, - 0.8374999761581421, - 1 - ], - [ - 0.675000011920929, - 0.862500011920929, - 1 - ], - [ - 0.675000011920929, - 0.862500011920929, - 1 - ], - [ - 0.675000011920929, - 0.887499988079071, - 1 - ], - [ - 0.675000011920929, - 0.887499988079071, - 1 - ], - [ - 0.675000011920929, - 0.9125000238418579, - 1 - ], - [ - 0.675000011920929, - 0.9125000238418579, - 1 - ], - [ - 0.675000011920929, - 0.9375, - 1 - ], - [ - 0.675000011920929, - 0.9375, - 1 - ], - [ - 0.675000011920929, - 0.9624999761581421, - 1 - ], - [ - 0.675000011920929, - 0.9624999761581421, - 1 - ], - [ - 0.675000011920929, - 0.987500011920929, - 1 - ], - [ - 0.675000011920929, - 0.987500011920929, - 1 - ], - [ - 0.7250000238418579, - 0.012500000186264515, - 1 - ], - [ - 0.7250000238418579, - 0.012500000186264515, - 1 - ], - [ - 0.7250000238418579, - 0.03750000149011612, - 1 - ], - [ - 0.7250000238418579, - 0.03750000149011612, - 1 - ], - [ - 0.7250000238418579, - 0.0625, - 1 - ], - [ - 0.7250000238418579, - 0.0625, - 1 - ], - [ - 0.7250000238418579, - 0.08749999850988388, - 1 - ], - [ - 0.7250000238418579, - 0.08749999850988388, - 1 - ], - [ - 0.7250000238418579, - 0.11249999701976776, - 1 - ], - [ - 0.7250000238418579, - 0.11249999701976776, - 1 - ], - [ - 0.7250000238418579, - 0.13750000298023224, - 1 - ], - [ - 0.7250000238418579, - 0.13750000298023224, - 1 - ], - [ - 0.7250000238418579, - 0.16249999403953552, - 1 - ], - [ - 0.7250000238418579, - 0.16249999403953552, - 1 - ], - [ - 0.7250000238418579, - 0.1875, - 1 - ], - [ - 0.7250000238418579, - 0.1875, - 1 - ], - [ - 0.7250000238418579, - 0.21250000596046448, - 1 - ], - [ - 0.7250000238418579, - 0.21250000596046448, - 1 - ], - [ - 0.7250000238418579, - 0.23749999701976776, - 1 - ], - [ - 0.7250000238418579, - 0.23749999701976776, - 1 - ], - [ - 0.7250000238418579, - 0.26249998807907104, - 1 - ], - [ - 0.7250000238418579, - 0.26249998807907104, - 1 - ], - [ - 0.7250000238418579, - 0.2874999940395355, - 1 - ], - [ - 0.7250000238418579, - 0.2874999940395355, - 1 - ], - [ - 0.7250000238418579, - 0.3125, - 1 - ], - [ - 0.7250000238418579, - 0.3125, - 1 - ], - [ - 0.7250000238418579, - 0.3375000059604645, - 1 - ], - [ - 0.7250000238418579, - 0.3375000059604645, - 1 - ], - [ - 0.7250000238418579, - 0.36250001192092896, - 1 - ], - [ - 0.7250000238418579, - 0.36250001192092896, - 1 - ], - [ - 0.7250000238418579, - 0.38749998807907104, - 1 - ], - [ - 0.7250000238418579, - 0.38749998807907104, - 1 - ], - [ - 0.7250000238418579, - 0.4124999940395355, - 1 - ], - [ - 0.7250000238418579, - 0.4124999940395355, - 1 - ], - [ - 0.7250000238418579, - 0.4375, - 1 - ], - [ - 0.7250000238418579, - 0.4375, - 1 - ], - [ - 0.7250000238418579, - 0.4625000059604645, - 1 - ], - [ - 0.7250000238418579, - 0.4625000059604645, - 1 - ], - [ - 0.7250000238418579, - 0.48750001192092896, - 1 - ], - [ - 0.7250000238418579, - 0.48750001192092896, - 1 - ], - [ - 0.7250000238418579, - 0.512499988079071, - 1 - ], - [ - 0.7250000238418579, - 0.512499988079071, - 1 - ], - [ - 0.7250000238418579, - 0.5375000238418579, - 1 - ], - [ - 0.7250000238418579, - 0.5375000238418579, - 1 - ], - [ - 0.7250000238418579, - 0.5625, - 1 - ], - [ - 0.7250000238418579, - 0.5625, - 1 - ], - [ - 0.7250000238418579, - 0.5874999761581421, - 1 - ], - [ - 0.7250000238418579, - 0.5874999761581421, - 1 - ], - [ - 0.7250000238418579, - 0.612500011920929, - 1 - ], - [ - 0.7250000238418579, - 0.612500011920929, - 1 - ], - [ - 0.7250000238418579, - 0.637499988079071, - 1 - ], - [ - 0.7250000238418579, - 0.637499988079071, - 1 - ], - [ - 0.7250000238418579, - 0.6625000238418579, - 1 - ], - [ - 0.7250000238418579, - 0.6625000238418579, - 1 - ], - [ - 0.7250000238418579, - 0.6875, - 1 - ], - [ - 0.7250000238418579, - 0.6875, - 1 - ], - [ - 0.7250000238418579, - 0.7124999761581421, - 1 - ], - [ - 0.7250000238418579, - 0.7124999761581421, - 1 - ], - [ - 0.7250000238418579, - 0.737500011920929, - 1 - ], - [ - 0.7250000238418579, - 0.737500011920929, - 1 - ], - [ - 0.7250000238418579, - 0.762499988079071, - 1 - ], - [ - 0.7250000238418579, - 0.762499988079071, - 1 - ], - [ - 0.7250000238418579, - 0.7875000238418579, - 1 - ], - [ - 0.7250000238418579, - 0.7875000238418579, - 1 - ], - [ - 0.7250000238418579, - 0.8125, - 1 - ], - [ - 0.7250000238418579, - 0.8125, - 1 - ], - [ - 0.7250000238418579, - 0.8374999761581421, - 1 - ], - [ - 0.7250000238418579, - 0.8374999761581421, - 1 - ], - [ - 0.7250000238418579, - 0.862500011920929, - 1 - ], - [ - 0.7250000238418579, - 0.862500011920929, - 1 - ], - [ - 0.7250000238418579, - 0.887499988079071, - 1 - ], - [ - 0.7250000238418579, - 0.887499988079071, - 1 - ], - [ - 0.7250000238418579, - 0.9125000238418579, - 1 - ], - [ - 0.7250000238418579, - 0.9125000238418579, - 1 - ], - [ - 0.7250000238418579, - 0.9375, - 1 - ], - [ - 0.7250000238418579, - 0.9375, - 1 - ], - [ - 0.7250000238418579, - 0.9624999761581421, - 1 - ], - [ - 0.7250000238418579, - 0.9624999761581421, - 1 - ], - [ - 0.7250000238418579, - 0.987500011920929, - 1 - ], - [ - 0.7250000238418579, - 0.987500011920929, - 1 - ], - [ - 0.7749999761581421, - 0.012500000186264515, - 1 - ], - [ - 0.7749999761581421, - 0.012500000186264515, - 1 - ], - [ - 0.7749999761581421, - 0.03750000149011612, - 1 - ], - [ - 0.7749999761581421, - 0.03750000149011612, - 1 - ], - [ - 0.7749999761581421, - 0.0625, - 1 - ], - [ - 0.7749999761581421, - 0.0625, - 1 - ], - [ - 0.7749999761581421, - 0.08749999850988388, - 1 - ], - [ - 0.7749999761581421, - 0.08749999850988388, - 1 - ], - [ - 0.7749999761581421, - 0.11249999701976776, - 1 - ], - [ - 0.7749999761581421, - 0.11249999701976776, - 1 - ], - [ - 0.7749999761581421, - 0.13750000298023224, - 1 - ], - [ - 0.7749999761581421, - 0.13750000298023224, - 1 - ], - [ - 0.7749999761581421, - 0.16249999403953552, - 1 - ], - [ - 0.7749999761581421, - 0.16249999403953552, - 1 - ], - [ - 0.7749999761581421, - 0.1875, - 1 - ], - [ - 0.7749999761581421, - 0.1875, - 1 - ], - [ - 0.7749999761581421, - 0.21250000596046448, - 1 - ], - [ - 0.7749999761581421, - 0.21250000596046448, - 1 - ], - [ - 0.7749999761581421, - 0.23749999701976776, - 1 - ], - [ - 0.7749999761581421, - 0.23749999701976776, - 1 - ], - [ - 0.7749999761581421, - 0.26249998807907104, - 1 - ], - [ - 0.7749999761581421, - 0.26249998807907104, - 1 - ], - [ - 0.7749999761581421, - 0.2874999940395355, - 1 - ], - [ - 0.7749999761581421, - 0.2874999940395355, - 1 - ], - [ - 0.7749999761581421, - 0.3125, - 1 - ], - [ - 0.7749999761581421, - 0.3125, - 1 - ], - [ - 0.7749999761581421, - 0.3375000059604645, - 1 - ], - [ - 0.7749999761581421, - 0.3375000059604645, - 1 - ], - [ - 0.7749999761581421, - 0.36250001192092896, - 1 - ], - [ - 0.7749999761581421, - 0.36250001192092896, - 1 - ], - [ - 0.7749999761581421, - 0.38749998807907104, - 1 - ], - [ - 0.7749999761581421, - 0.38749998807907104, - 1 - ], - [ - 0.7749999761581421, - 0.4124999940395355, - 1 - ], - [ - 0.7749999761581421, - 0.4124999940395355, - 1 - ], - [ - 0.7749999761581421, - 0.4375, - 1 - ], - [ - 0.7749999761581421, - 0.4375, - 1 - ], - [ - 0.7749999761581421, - 0.4625000059604645, - 1 - ], - [ - 0.7749999761581421, - 0.4625000059604645, - 1 - ], - [ - 0.7749999761581421, - 0.48750001192092896, - 1 - ], - [ - 0.7749999761581421, - 0.48750001192092896, - 1 - ], - [ - 0.7749999761581421, - 0.512499988079071, - 1 - ], - [ - 0.7749999761581421, - 0.512499988079071, - 1 - ], - [ - 0.7749999761581421, - 0.5375000238418579, - 1 - ], - [ - 0.7749999761581421, - 0.5375000238418579, - 1 - ], - [ - 0.7749999761581421, - 0.5625, - 1 - ], - [ - 0.7749999761581421, - 0.5625, - 1 - ], - [ - 0.7749999761581421, - 0.5874999761581421, - 1 - ], - [ - 0.7749999761581421, - 0.5874999761581421, - 1 - ], - [ - 0.7749999761581421, - 0.612500011920929, - 1 - ], - [ - 0.7749999761581421, - 0.612500011920929, - 1 - ], - [ - 0.7749999761581421, - 0.637499988079071, - 1 - ], - [ - 0.7749999761581421, - 0.637499988079071, - 1 - ], - [ - 0.7749999761581421, - 0.6625000238418579, - 1 - ], - [ - 0.7749999761581421, - 0.6625000238418579, - 1 - ], - [ - 0.7749999761581421, - 0.6875, - 1 - ], - [ - 0.7749999761581421, - 0.6875, - 1 - ], - [ - 0.7749999761581421, - 0.7124999761581421, - 1 - ], - [ - 0.7749999761581421, - 0.7124999761581421, - 1 - ], - [ - 0.7749999761581421, - 0.737500011920929, - 1 - ], - [ - 0.7749999761581421, - 0.737500011920929, - 1 - ], - [ - 0.7749999761581421, - 0.762499988079071, - 1 - ], - [ - 0.7749999761581421, - 0.762499988079071, - 1 - ], - [ - 0.7749999761581421, - 0.7875000238418579, - 1 - ], - [ - 0.7749999761581421, - 0.7875000238418579, - 1 - ], - [ - 0.7749999761581421, - 0.8125, - 1 - ], - [ - 0.7749999761581421, - 0.8125, - 1 - ], - [ - 0.7749999761581421, - 0.8374999761581421, - 1 - ], - [ - 0.7749999761581421, - 0.8374999761581421, - 1 - ], - [ - 0.7749999761581421, - 0.862500011920929, - 1 - ], - [ - 0.7749999761581421, - 0.862500011920929, - 1 - ], - [ - 0.7749999761581421, - 0.887499988079071, - 1 - ], - [ - 0.7749999761581421, - 0.887499988079071, - 1 - ], - [ - 0.7749999761581421, - 0.9125000238418579, - 1 - ], - [ - 0.7749999761581421, - 0.9125000238418579, - 1 - ], - [ - 0.7749999761581421, - 0.9375, - 1 - ], - [ - 0.7749999761581421, - 0.9375, - 1 - ], - [ - 0.7749999761581421, - 0.9624999761581421, - 1 - ], - [ - 0.7749999761581421, - 0.9624999761581421, - 1 - ], - [ - 0.7749999761581421, - 0.987500011920929, - 1 - ], - [ - 0.7749999761581421, - 0.987500011920929, - 1 - ], - [ - 0.824999988079071, - 0.012500000186264515, - 1 - ], - [ - 0.824999988079071, - 0.012500000186264515, - 1 - ], - [ - 0.824999988079071, - 0.03750000149011612, - 1 - ], - [ - 0.824999988079071, - 0.03750000149011612, - 1 - ], - [ - 0.824999988079071, - 0.0625, - 1 - ], - [ - 0.824999988079071, - 0.0625, - 1 - ], - [ - 0.824999988079071, - 0.08749999850988388, - 1 - ], - [ - 0.824999988079071, - 0.08749999850988388, - 1 - ], - [ - 0.824999988079071, - 0.11249999701976776, - 1 - ], - [ - 0.824999988079071, - 0.11249999701976776, - 1 - ], - [ - 0.824999988079071, - 0.13750000298023224, - 1 - ], - [ - 0.824999988079071, - 0.13750000298023224, - 1 - ], - [ - 0.824999988079071, - 0.16249999403953552, - 1 - ], - [ - 0.824999988079071, - 0.16249999403953552, - 1 - ], - [ - 0.824999988079071, - 0.1875, - 1 - ], - [ - 0.824999988079071, - 0.1875, - 1 - ], - [ - 0.824999988079071, - 0.21250000596046448, - 1 - ], - [ - 0.824999988079071, - 0.21250000596046448, - 1 - ], - [ - 0.824999988079071, - 0.23749999701976776, - 1 - ], - [ - 0.824999988079071, - 0.23749999701976776, - 1 - ], - [ - 0.824999988079071, - 0.26249998807907104, - 1 - ], - [ - 0.824999988079071, - 0.26249998807907104, - 1 - ], - [ - 0.824999988079071, - 0.2874999940395355, - 1 - ], - [ - 0.824999988079071, - 0.2874999940395355, - 1 - ], - [ - 0.824999988079071, - 0.3125, - 1 - ], - [ - 0.824999988079071, - 0.3125, - 1 - ], - [ - 0.824999988079071, - 0.3375000059604645, - 1 - ], - [ - 0.824999988079071, - 0.3375000059604645, - 1 - ], - [ - 0.824999988079071, - 0.36250001192092896, - 1 - ], - [ - 0.824999988079071, - 0.36250001192092896, - 1 - ], - [ - 0.824999988079071, - 0.38749998807907104, - 1 - ], - [ - 0.824999988079071, - 0.38749998807907104, - 1 - ], - [ - 0.824999988079071, - 0.4124999940395355, - 1 - ], - [ - 0.824999988079071, - 0.4124999940395355, - 1 - ], - [ - 0.824999988079071, - 0.4375, - 1 - ], - [ - 0.824999988079071, - 0.4375, - 1 - ], - [ - 0.824999988079071, - 0.4625000059604645, - 1 - ], - [ - 0.824999988079071, - 0.4625000059604645, - 1 - ], - [ - 0.824999988079071, - 0.48750001192092896, - 1 - ], - [ - 0.824999988079071, - 0.48750001192092896, - 1 - ], - [ - 0.824999988079071, - 0.512499988079071, - 1 - ], - [ - 0.824999988079071, - 0.512499988079071, - 1 - ], - [ - 0.824999988079071, - 0.5375000238418579, - 1 - ], - [ - 0.824999988079071, - 0.5375000238418579, - 1 - ], - [ - 0.824999988079071, - 0.5625, - 1 - ], - [ - 0.824999988079071, - 0.5625, - 1 - ], - [ - 0.824999988079071, - 0.5874999761581421, - 1 - ], - [ - 0.824999988079071, - 0.5874999761581421, - 1 - ], - [ - 0.824999988079071, - 0.612500011920929, - 1 - ], - [ - 0.824999988079071, - 0.612500011920929, - 1 - ], - [ - 0.824999988079071, - 0.637499988079071, - 1 - ], - [ - 0.824999988079071, - 0.637499988079071, - 1 - ], - [ - 0.824999988079071, - 0.6625000238418579, - 1 - ], - [ - 0.824999988079071, - 0.6625000238418579, - 1 - ], - [ - 0.824999988079071, - 0.6875, - 1 - ], - [ - 0.824999988079071, - 0.6875, - 1 - ], - [ - 0.824999988079071, - 0.7124999761581421, - 1 - ], - [ - 0.824999988079071, - 0.7124999761581421, - 1 - ], - [ - 0.824999988079071, - 0.737500011920929, - 1 - ], - [ - 0.824999988079071, - 0.737500011920929, - 1 - ], - [ - 0.824999988079071, - 0.762499988079071, - 1 - ], - [ - 0.824999988079071, - 0.762499988079071, - 1 - ], - [ - 0.824999988079071, - 0.7875000238418579, - 1 - ], - [ - 0.824999988079071, - 0.7875000238418579, - 1 - ], - [ - 0.824999988079071, - 0.8125, - 1 - ], - [ - 0.824999988079071, - 0.8125, - 1 - ], - [ - 0.824999988079071, - 0.8374999761581421, - 1 - ], - [ - 0.824999988079071, - 0.8374999761581421, - 1 - ], - [ - 0.824999988079071, - 0.862500011920929, - 1 - ], - [ - 0.824999988079071, - 0.862500011920929, - 1 - ], - [ - 0.824999988079071, - 0.887499988079071, - 1 - ], - [ - 0.824999988079071, - 0.887499988079071, - 1 - ], - [ - 0.824999988079071, - 0.9125000238418579, - 1 - ], - [ - 0.824999988079071, - 0.9125000238418579, - 1 - ], - [ - 0.824999988079071, - 0.9375, - 1 - ], - [ - 0.824999988079071, - 0.9375, - 1 - ], - [ - 0.824999988079071, - 0.9624999761581421, - 1 - ], - [ - 0.824999988079071, - 0.9624999761581421, - 1 - ], - [ - 0.824999988079071, - 0.987500011920929, - 1 - ], - [ - 0.824999988079071, - 0.987500011920929, - 1 - ], - [ - 0.875, - 0.012500000186264515, - 1 - ], - [ - 0.875, - 0.012500000186264515, - 1 - ], - [ - 0.875, - 0.03750000149011612, - 1 - ], - [ - 0.875, - 0.03750000149011612, - 1 - ], - [ - 0.875, - 0.0625, - 1 - ], - [ - 0.875, - 0.0625, - 1 - ], - [ - 0.875, - 0.08749999850988388, - 1 - ], - [ - 0.875, - 0.08749999850988388, - 1 - ], - [ - 0.875, - 0.11249999701976776, - 1 - ], - [ - 0.875, - 0.11249999701976776, - 1 - ], - [ - 0.875, - 0.13750000298023224, - 1 - ], - [ - 0.875, - 0.13750000298023224, - 1 - ], - [ - 0.875, - 0.16249999403953552, - 1 - ], - [ - 0.875, - 0.16249999403953552, - 1 - ], - [ - 0.875, - 0.1875, - 1 - ], - [ - 0.875, - 0.1875, - 1 - ], - [ - 0.875, - 0.21250000596046448, - 1 - ], - [ - 0.875, - 0.21250000596046448, - 1 - ], - [ - 0.875, - 0.23749999701976776, - 1 - ], - [ - 0.875, - 0.23749999701976776, - 1 - ], - [ - 0.875, - 0.26249998807907104, - 1 - ], - [ - 0.875, - 0.26249998807907104, - 1 - ], - [ - 0.875, - 0.2874999940395355, - 1 - ], - [ - 0.875, - 0.2874999940395355, - 1 - ], - [ - 0.875, - 0.3125, - 1 - ], - [ - 0.875, - 0.3125, - 1 - ], - [ - 0.875, - 0.3375000059604645, - 1 - ], - [ - 0.875, - 0.3375000059604645, - 1 - ], - [ - 0.875, - 0.36250001192092896, - 1 - ], - [ - 0.875, - 0.36250001192092896, - 1 - ], - [ - 0.875, - 0.38749998807907104, - 1 - ], - [ - 0.875, - 0.38749998807907104, - 1 - ], - [ - 0.875, - 0.4124999940395355, - 1 - ], - [ - 0.875, - 0.4124999940395355, - 1 - ], - [ - 0.875, - 0.4375, - 1 - ], - [ - 0.875, - 0.4375, - 1 - ], - [ - 0.875, - 0.4625000059604645, - 1 - ], - [ - 0.875, - 0.4625000059604645, - 1 - ], - [ - 0.875, - 0.48750001192092896, - 1 - ], - [ - 0.875, - 0.48750001192092896, - 1 - ], - [ - 0.875, - 0.512499988079071, - 1 - ], - [ - 0.875, - 0.512499988079071, - 1 - ], - [ - 0.875, - 0.5375000238418579, - 1 - ], - [ - 0.875, - 0.5375000238418579, - 1 - ], - [ - 0.875, - 0.5625, - 1 - ], - [ - 0.875, - 0.5625, - 1 - ], - [ - 0.875, - 0.5874999761581421, - 1 - ], - [ - 0.875, - 0.5874999761581421, - 1 - ], - [ - 0.875, - 0.612500011920929, - 1 - ], - [ - 0.875, - 0.612500011920929, - 1 - ], - [ - 0.875, - 0.637499988079071, - 1 - ], - [ - 0.875, - 0.637499988079071, - 1 - ], - [ - 0.875, - 0.6625000238418579, - 1 - ], - [ - 0.875, - 0.6625000238418579, - 1 - ], - [ - 0.875, - 0.6875, - 1 - ], - [ - 0.875, - 0.6875, - 1 - ], - [ - 0.875, - 0.7124999761581421, - 1 - ], - [ - 0.875, - 0.7124999761581421, - 1 - ], - [ - 0.875, - 0.737500011920929, - 1 - ], - [ - 0.875, - 0.737500011920929, - 1 - ], - [ - 0.875, - 0.762499988079071, - 1 - ], - [ - 0.875, - 0.762499988079071, - 1 - ], - [ - 0.875, - 0.7875000238418579, - 1 - ], - [ - 0.875, - 0.7875000238418579, - 1 - ], - [ - 0.875, - 0.8125, - 1 - ], - [ - 0.875, - 0.8125, - 1 - ], - [ - 0.875, - 0.8374999761581421, - 1 - ], - [ - 0.875, - 0.8374999761581421, - 1 - ], - [ - 0.875, - 0.862500011920929, - 1 - ], - [ - 0.875, - 0.862500011920929, - 1 - ], - [ - 0.875, - 0.887499988079071, - 1 - ], - [ - 0.875, - 0.887499988079071, - 1 - ], - [ - 0.875, - 0.9125000238418579, - 1 - ], - [ - 0.875, - 0.9125000238418579, - 1 - ], - [ - 0.875, - 0.9375, - 1 - ], - [ - 0.875, - 0.9375, - 1 - ], - [ - 0.875, - 0.9624999761581421, - 1 - ], - [ - 0.875, - 0.9624999761581421, - 1 - ], - [ - 0.875, - 0.987500011920929, - 1 - ], - [ - 0.875, - 0.987500011920929, - 1 - ], - [ - 0.925000011920929, - 0.012500000186264515, - 1 - ], - [ - 0.925000011920929, - 0.012500000186264515, - 1 - ], - [ - 0.925000011920929, - 0.03750000149011612, - 1 - ], - [ - 0.925000011920929, - 0.03750000149011612, - 1 - ], - [ - 0.925000011920929, - 0.0625, - 1 - ], - [ - 0.925000011920929, - 0.0625, - 1 - ], - [ - 0.925000011920929, - 0.08749999850988388, - 1 - ], - [ - 0.925000011920929, - 0.08749999850988388, - 1 - ], - [ - 0.925000011920929, - 0.11249999701976776, - 1 - ], - [ - 0.925000011920929, - 0.11249999701976776, - 1 - ], - [ - 0.925000011920929, - 0.13750000298023224, - 1 - ], - [ - 0.925000011920929, - 0.13750000298023224, - 1 - ], - [ - 0.925000011920929, - 0.16249999403953552, - 1 - ], - [ - 0.925000011920929, - 0.16249999403953552, - 1 - ], - [ - 0.925000011920929, - 0.1875, - 1 - ], - [ - 0.925000011920929, - 0.1875, - 1 - ], - [ - 0.925000011920929, - 0.21250000596046448, - 1 - ], - [ - 0.925000011920929, - 0.21250000596046448, - 1 - ], - [ - 0.925000011920929, - 0.23749999701976776, - 1 - ], - [ - 0.925000011920929, - 0.23749999701976776, - 1 - ], - [ - 0.925000011920929, - 0.26249998807907104, - 1 - ], - [ - 0.925000011920929, - 0.26249998807907104, - 1 - ], - [ - 0.925000011920929, - 0.2874999940395355, - 1 - ], - [ - 0.925000011920929, - 0.2874999940395355, - 1 - ], - [ - 0.925000011920929, - 0.3125, - 1 - ], - [ - 0.925000011920929, - 0.3125, - 1 - ], - [ - 0.925000011920929, - 0.3375000059604645, - 1 - ], - [ - 0.925000011920929, - 0.3375000059604645, - 1 - ], - [ - 0.925000011920929, - 0.36250001192092896, - 1 - ], - [ - 0.925000011920929, - 0.36250001192092896, - 1 - ], - [ - 0.925000011920929, - 0.38749998807907104, - 1 - ], - [ - 0.925000011920929, - 0.38749998807907104, - 1 - ], - [ - 0.925000011920929, - 0.4124999940395355, - 1 - ], - [ - 0.925000011920929, - 0.4124999940395355, - 1 - ], - [ - 0.925000011920929, - 0.4375, - 1 - ], - [ - 0.925000011920929, - 0.4375, - 1 - ], - [ - 0.925000011920929, - 0.4625000059604645, - 1 - ], - [ - 0.925000011920929, - 0.4625000059604645, - 1 - ], - [ - 0.925000011920929, - 0.48750001192092896, - 1 - ], - [ - 0.925000011920929, - 0.48750001192092896, - 1 - ], - [ - 0.925000011920929, - 0.512499988079071, - 1 - ], - [ - 0.925000011920929, - 0.512499988079071, - 1 - ], - [ - 0.925000011920929, - 0.5375000238418579, - 1 - ], - [ - 0.925000011920929, - 0.5375000238418579, - 1 - ], - [ - 0.925000011920929, - 0.5625, - 1 - ], - [ - 0.925000011920929, - 0.5625, - 1 - ], - [ - 0.925000011920929, - 0.5874999761581421, - 1 - ], - [ - 0.925000011920929, - 0.5874999761581421, - 1 - ], - [ - 0.925000011920929, - 0.612500011920929, - 1 - ], - [ - 0.925000011920929, - 0.612500011920929, - 1 - ], - [ - 0.925000011920929, - 0.637499988079071, - 1 - ], - [ - 0.925000011920929, - 0.637499988079071, - 1 - ], - [ - 0.925000011920929, - 0.6625000238418579, - 1 - ], - [ - 0.925000011920929, - 0.6625000238418579, - 1 - ], - [ - 0.925000011920929, - 0.6875, - 1 - ], - [ - 0.925000011920929, - 0.6875, - 1 - ], - [ - 0.925000011920929, - 0.7124999761581421, - 1 - ], - [ - 0.925000011920929, - 0.7124999761581421, - 1 - ], - [ - 0.925000011920929, - 0.737500011920929, - 1 - ], - [ - 0.925000011920929, - 0.737500011920929, - 1 - ], - [ - 0.925000011920929, - 0.762499988079071, - 1 - ], - [ - 0.925000011920929, - 0.762499988079071, - 1 - ], - [ - 0.925000011920929, - 0.7875000238418579, - 1 - ], - [ - 0.925000011920929, - 0.7875000238418579, - 1 - ], - [ - 0.925000011920929, - 0.8125, - 1 - ], - [ - 0.925000011920929, - 0.8125, - 1 - ], - [ - 0.925000011920929, - 0.8374999761581421, - 1 - ], - [ - 0.925000011920929, - 0.8374999761581421, - 1 - ], - [ - 0.925000011920929, - 0.862500011920929, - 1 - ], - [ - 0.925000011920929, - 0.862500011920929, - 1 - ], - [ - 0.925000011920929, - 0.887499988079071, - 1 - ], - [ - 0.925000011920929, - 0.887499988079071, - 1 - ], - [ - 0.925000011920929, - 0.9125000238418579, - 1 - ], - [ - 0.925000011920929, - 0.9125000238418579, - 1 - ], - [ - 0.925000011920929, - 0.9375, - 1 - ], - [ - 0.925000011920929, - 0.9375, - 1 - ], - [ - 0.925000011920929, - 0.9624999761581421, - 1 - ], - [ - 0.925000011920929, - 0.9624999761581421, - 1 - ], - [ - 0.925000011920929, - 0.987500011920929, - 1 - ], - [ - 0.925000011920929, - 0.987500011920929, - 1 - ], - [ - 0.9750000238418579, - 0.012500000186264515, - 1 - ], - [ - 0.9750000238418579, - 0.012500000186264515, - 1 - ], - [ - 0.9750000238418579, - 0.03750000149011612, - 1 - ], - [ - 0.9750000238418579, - 0.03750000149011612, - 1 - ], - [ - 0.9750000238418579, - 0.0625, - 1 - ], - [ - 0.9750000238418579, - 0.0625, - 1 - ], - [ - 0.9750000238418579, - 0.08749999850988388, - 1 - ], - [ - 0.9750000238418579, - 0.08749999850988388, - 1 - ], - [ - 0.9750000238418579, - 0.11249999701976776, - 1 - ], - [ - 0.9750000238418579, - 0.11249999701976776, - 1 - ], - [ - 0.9750000238418579, - 0.13750000298023224, - 1 - ], - [ - 0.9750000238418579, - 0.13750000298023224, - 1 - ], - [ - 0.9750000238418579, - 0.16249999403953552, - 1 - ], - [ - 0.9750000238418579, - 0.16249999403953552, - 1 - ], - [ - 0.9750000238418579, - 0.1875, - 1 - ], - [ - 0.9750000238418579, - 0.1875, - 1 - ], - [ - 0.9750000238418579, - 0.21250000596046448, - 1 - ], - [ - 0.9750000238418579, - 0.21250000596046448, - 1 - ], - [ - 0.9750000238418579, - 0.23749999701976776, - 1 - ], - [ - 0.9750000238418579, - 0.23749999701976776, - 1 - ], - [ - 0.9750000238418579, - 0.26249998807907104, - 1 - ], - [ - 0.9750000238418579, - 0.26249998807907104, - 1 - ], - [ - 0.9750000238418579, - 0.2874999940395355, - 1 - ], - [ - 0.9750000238418579, - 0.2874999940395355, - 1 - ], - [ - 0.9750000238418579, - 0.3125, - 1 - ], - [ - 0.9750000238418579, - 0.3125, - 1 - ], - [ - 0.9750000238418579, - 0.3375000059604645, - 1 - ], - [ - 0.9750000238418579, - 0.3375000059604645, - 1 - ], - [ - 0.9750000238418579, - 0.36250001192092896, - 1 - ], - [ - 0.9750000238418579, - 0.36250001192092896, - 1 - ], - [ - 0.9750000238418579, - 0.38749998807907104, - 1 - ], - [ - 0.9750000238418579, - 0.38749998807907104, - 1 - ], - [ - 0.9750000238418579, - 0.4124999940395355, - 1 - ], - [ - 0.9750000238418579, - 0.4124999940395355, - 1 - ], - [ - 0.9750000238418579, - 0.4375, - 1 - ], - [ - 0.9750000238418579, - 0.4375, - 1 - ], - [ - 0.9750000238418579, - 0.4625000059604645, - 1 - ], - [ - 0.9750000238418579, - 0.4625000059604645, - 1 - ], - [ - 0.9750000238418579, - 0.48750001192092896, - 1 - ], - [ - 0.9750000238418579, - 0.48750001192092896, - 1 - ], - [ - 0.9750000238418579, - 0.512499988079071, - 1 - ], - [ - 0.9750000238418579, - 0.512499988079071, - 1 - ], - [ - 0.9750000238418579, - 0.5375000238418579, - 1 - ], - [ - 0.9750000238418579, - 0.5375000238418579, - 1 - ], - [ - 0.9750000238418579, - 0.5625, - 1 - ], - [ - 0.9750000238418579, - 0.5625, - 1 - ], - [ - 0.9750000238418579, - 0.5874999761581421, - 1 - ], - [ - 0.9750000238418579, - 0.5874999761581421, - 1 - ], - [ - 0.9750000238418579, - 0.612500011920929, - 1 - ], - [ - 0.9750000238418579, - 0.612500011920929, - 1 - ], - [ - 0.9750000238418579, - 0.637499988079071, - 1 - ], - [ - 0.9750000238418579, - 0.637499988079071, - 1 - ], - [ - 0.9750000238418579, - 0.6625000238418579, - 1 - ], - [ - 0.9750000238418579, - 0.6625000238418579, - 1 - ], - [ - 0.9750000238418579, - 0.6875, - 1 - ], - [ - 0.9750000238418579, - 0.6875, - 1 - ], - [ - 0.9750000238418579, - 0.7124999761581421, - 1 - ], - [ - 0.9750000238418579, - 0.7124999761581421, - 1 - ], - [ - 0.9750000238418579, - 0.737500011920929, - 1 - ], - [ - 0.9750000238418579, - 0.737500011920929, - 1 - ], - [ - 0.9750000238418579, - 0.762499988079071, - 1 - ], - [ - 0.9750000238418579, - 0.762499988079071, - 1 - ], - [ - 0.9750000238418579, - 0.7875000238418579, - 1 - ], - [ - 0.9750000238418579, - 0.7875000238418579, - 1 - ], - [ - 0.9750000238418579, - 0.8125, - 1 - ], - [ - 0.9750000238418579, - 0.8125, - 1 - ], - [ - 0.9750000238418579, - 0.8374999761581421, - 1 - ], - [ - 0.9750000238418579, - 0.8374999761581421, - 1 - ], - [ - 0.9750000238418579, - 0.862500011920929, - 1 - ], - [ - 0.9750000238418579, - 0.862500011920929, - 1 - ], - [ - 0.9750000238418579, - 0.887499988079071, - 1 - ], - [ - 0.9750000238418579, - 0.887499988079071, - 1 - ], - [ - 0.9750000238418579, - 0.9125000238418579, - 1 - ], - [ - 0.9750000238418579, - 0.9125000238418579, - 1 - ], - [ - 0.9750000238418579, - 0.9375, - 1 - ], - [ - 0.9750000238418579, - 0.9375, - 1 - ], - [ - 0.9750000238418579, - 0.9624999761581421, - 1 - ], - [ - 0.9750000238418579, - 0.9624999761581421, - 1 - ], - [ - 0.9750000238418579, - 0.987500011920929, - 1 - ], - [ - 0.9750000238418579, - 0.987500011920929, - 1 - ] - ], - "size": 4 - }, - "type": "scatter3d", - "x": [ - 0, - -0.6609220504760742, - 0, - -0.6411794424057007, - 0, - -0.6200762987136841, - 0, - -0.5975359678268433, - 0, - -0.5734843611717224, - 0, - -0.5478528738021851, - 0, - -0.5205801725387573, - 0, - -0.4916157126426697, - 0, - -0.4609227776527405, - 0, - -0.42848217487335205, - 0, - -0.3942960798740387, - 0, - -0.35839149355888367, - 0, - -0.3208234906196594, - 0, - -0.28167837858200073, - 0, - -0.2410750836133957, - 0, - -0.19916574656963348, - 0, - -0.15613490343093872, - 0, - -0.11219677329063416, - 0, - -0.06759088486433029, - 0, - -0.022576183080673218, - 0, - 0.022576183080673218, - 0, - 0.06759088486433029, - 0, - 0.11219677329063416, - 0, - 0.15613490343093872, - 0, - 0.19916574656963348, - 0, - 0.2410750836133957, - 0, - 0.28167837858200073, - 0, - 0.3208234906196594, - 0, - 0.35839149355888367, - 0, - 0.3942960798740387, - 0, - 0.42848217487335205, - 0, - 0.4609227776527405, - 0, - 0.4916157126426697, - 0, - 0.5205801725387573, - 0, - 0.5478528738021851, - 0, - 0.5734843611717224, - 0, - 0.5975359678268433, - 0, - 0.6200762987136841, - 0, - 0.6411794424057007, - 0, - 0.6609220504760742, - 0, - -0.6678630709648132, - 0, - -0.6482256054878235, - 0, - -0.6272038817405701, - 0, - -0.6047161817550659, - 0, - -0.580683171749115, - 0, - -0.5550302863121033, - 0, - -0.5276901125907898, - 0, - -0.4986058473587036, - 0, - -0.46773478388786316, - 0, - -0.43505215644836426, - 0, - -0.40055519342422485, - 0, - -0.36426714062690735, - 0, - -0.3262411653995514, - 0, - -0.28656333684921265, - 0, - -0.24535484611988068, - 0, - -0.20277264714241028, - 0, - -0.15900878608226776, - 0, - -0.11428758502006531, - 0, - -0.0688609778881073, - 0, - -0.02300218492746353, - 0, - 0.02300218492746353, - 0, - 0.0688609778881073, - 0, - 0.11428758502006531, - 0, - 0.15900878608226776, - 0, - 0.20277264714241028, - 0, - 0.24535484611988068, - 0, - 0.28656333684921265, - 0, - 0.3262411653995514, - 0, - 0.36426714062690735, - 0, - 0.40055519342422485, - 0, - 0.43505215644836426, - 0, - 0.46773478388786316, - 0, - 0.4986058473587036, - 0, - 0.5276901125907898, - 0, - 0.5550302863121033, - 0, - 0.580683171749115, - 0, - 0.6047161817550659, - 0, - 0.6272038817405701, - 0, - 0.6482256054878235, - 0, - 0.6678630709648132, - 0, - -0.6742200255393982, - 0, - -0.6546878218650818, - 0, - -0.6337502598762512, - 0, - -0.6113207936286926, - 0, - -0.587315022945404, - 0, - -0.5616527795791626, - 0, - -0.5342608094215393, - 0, - -0.5050762891769409, - 0, - -0.47405049204826355, - 0, - -0.4411531090736389, - 0, - -0.4063764214515686, - 0, - -0.36974000930786133, - 0, - -0.33129456639289856, - 0, - -0.2911258339881897, - 0, - -0.24935685098171234, - 0, - -0.2061489075422287, - 0, - -0.16170118749141693, - 0, - -0.11624763906002045, - 0, - -0.07005216926336288, - 0, - -0.023401817306876183, - 0, - 0.023401817306876183, - 0, - 0.07005216926336288, - 0, - 0.11624763906002045, - 0, - 0.16170118749141693, - 0, - 0.2061489075422287, - 0, - 0.24935685098171234, - 0, - 0.2911258339881897, - 0, - 0.33129456639289856, - 0, - 0.36974000930786133, - 0, - 0.4063764214515686, - 0, - 0.4411531090736389, - 0, - 0.47405049204826355, - 0, - 0.5050762891769409, - 0, - 0.5342608094215393, - 0, - 0.5616527795791626, - 0, - 0.587315022945404, - 0, - 0.6113207936286926, - 0, - 0.6337502598762512, - 0, - 0.6546878218650818, - 0, - 0.6742200255393982, - 0, - -0.6799338459968567, - 0, - -0.6605036854743958, - 0, - -0.6396496295928955, - 0, - -0.617280900478363, - 0, - -0.5933082103729248, - 0, - -0.5676462054252625, - 0, - -0.5402161478996277, - 0, - -0.510949432849884, - 0, - -0.4797917902469635, - 0, - -0.4467073976993561, - 0, - -0.4116837978363037, - 0, - -0.3747366964817047, - 0, - -0.3359144628047943, - 0, - -0.29530203342437744, - 0, - -0.25302404165267944, - 0, - -0.2092457413673401, - 0, - -0.16417275369167328, - 0, - -0.1180480420589447, - 0, - -0.07114680111408234, - 0, - -0.023769132792949677, - 0, - 0.023769132792949677, - 0, - 0.07114680111408234, - 0, - 0.1180480420589447, - 0, - 0.16417275369167328, - 0, - 0.2092457413673401, - 0, - 0.25302404165267944, - 0, - 0.29530203342437744, - 0, - 0.3359144628047943, - 0, - 0.3747366964817047, - 0, - 0.4116837978363037, - 0, - 0.4467073976993561, - 0, - 0.4797917902469635, - 0, - 0.510949432849884, - 0, - 0.5402161478996277, - 0, - 0.5676462054252625, - 0, - 0.5933082103729248, - 0, - 0.617280900478363, - 0, - 0.6396496295928955, - 0, - 0.6605036854743958, - 0, - 0.6799338459968567, - 0, - -0.684948742389679, - 0, - -0.6656140685081482, - 0, - -0.6448395848274231, - 0, - -0.6225306987762451, - 0, - -0.5985938906669617, - 0, - -0.5729390978813171, - 0, - -0.5454823970794678, - 0, - -0.5161501169204712, - 0, - -0.4848825931549072, - 0, - -0.45163899660110474, - 0, - -0.4164023995399475, - 0, - -0.379184752702713, - 0, - -0.34003204107284546, - 0, - -0.2990283966064453, - 0, - -0.25629955530166626, - 0, - -0.21201427280902863, - 0, - -0.16638392210006714, - 0, - -0.11965969949960709, - 0, - -0.07212706655263901, - 0, - -0.02409813553094864, - 0, - 0.02409813553094864, - 0, - 0.07212706655263901, - 0, - 0.11965969949960709, - 0, - 0.16638392210006714, - 0, - 0.21201427280902863, - 0, - 0.25629955530166626, - 0, - 0.2990283966064453, - 0, - 0.34003204107284546, - 0, - 0.379184752702713, - 0, - 0.4164023995399475, - 0, - 0.45163899660110474, - 0, - 0.4848825931549072, - 0, - 0.5161501169204712, - 0, - 0.5454823970794678, - 0, - 0.5729390978813171, - 0, - 0.5985938906669617, - 0, - 0.6225306987762451, - 0, - 0.6448395848274231, - 0, - 0.6656140685081482, - 0, - 0.684948742389679, - 0, - -0.689213752746582, - 0, - -0.6699645519256592, - 0, - -0.6492623686790466, - 0, - -0.627009391784668, - 0, - -0.6031082272529602, - 0, - -0.5774646997451782, - 0, - -0.5499905943870544, - 0, - -0.5206074118614197, - 0, - -0.48925095796585083, - 0, - -0.45587587356567383, - 0, - -0.4204609990119934, - 0, - -0.3830150067806244, - 0, - -0.34358152747154236, - 0, - -0.30224382877349854, - 0, - -0.2591285705566406, - 0, - -0.2144073098897934, - 0, - -0.1682964712381363, - 0, - -0.12105437368154526, - 0, - -0.07297564297914505, - 0, - -0.024382993578910828, - 0, - 0.024382993578910828, - 0, - 0.07297564297914505, - 0, - 0.12105437368154526, - 0, - 0.1682964712381363, - 0, - 0.2144073098897934, - 0, - 0.2591285705566406, - 0, - 0.30224382877349854, - 0, - 0.34358152747154236, - 0, - 0.3830150067806244, - 0, - 0.4204609990119934, - 0, - 0.45587587356567383, - 0, - 0.48925095796585083, - 0, - 0.5206074118614197, - 0, - 0.5499905943870544, - 0, - 0.5774646997451782, - 0, - 0.6031082272529602, - 0, - 0.627009391784668, - 0, - 0.6492623686790466, - 0, - 0.6699645519256592, - 0, - 0.689213752746582, - 0, - -0.692683756351471, - 0, - -0.6735069751739502, - 0, - -0.6528668999671936, - 0, - -0.6306627988815308, - 0, - -0.6067942380905151, - 0, - -0.5811634659767151, - 0, - -0.5536786913871765, - 0, - -0.5242576599121094, - 0, - -0.4928320348262787, - 0, - -0.4593525230884552, - 0, - -0.4237947165966034, - 0, - -0.38616421818733215, - 0, - -0.3465025722980499, - 0, - -0.30489227175712585, - 0, - -0.26146045327186584, - 0, - -0.21638117730617523, - 0, - -0.1698748916387558, - 0, - -0.12220592796802521, - 0, - -0.07367650419473648, - 0, - -0.024618297815322876, - 0, - 0.024618297815322876, - 0, - 0.07367650419473648, - 0, - 0.12220592796802521, - 0, - 0.1698748916387558, - 0, - 0.21638117730617523, - 0, - 0.26146045327186584, - 0, - 0.30489227175712585, - 0, - 0.3465025722980499, - 0, - 0.38616421818733215, - 0, - 0.4237947165966034, - 0, - 0.4593525230884552, - 0, - 0.4928320348262787, - 0, - 0.5242576599121094, - 0, - 0.5536786913871765, - 0, - 0.5811634659767151, - 0, - 0.6067942380905151, - 0, - 0.6306627988815308, - 0, - 0.6528668999671936, - 0, - 0.6735069751739502, - 0, - 0.692683756351471, - 0, - -0.6953208446502686, - 0, - -0.6762010455131531, - 0, - -0.6556100845336914, - 0, - -0.633445143699646, - 0, - -0.6096034646034241, - 0, - -0.5839846730232239, - 0, - -0.5564940571784973, - 0, - -0.5270463228225708, - 0, - -0.49556997418403625, - 0, - -0.46201291680336, - 0, - -0.4263477325439453, - 0, - -0.38857778906822205, - 0, - -0.34874290227890015, - 0, - -0.30692487955093384, - 0, - -0.26325133442878723, - 0, - -0.21789786219596863, - 0, - -0.1710882931947708, - 0, - -0.12309148907661438, - 0, - -0.0742156133055687, - 0, - -0.024799317121505737, - 0, - 0.024799317121505737, - 0, - 0.0742156133055687, - 0, - 0.12309148907661438, - 0, - 0.1710882931947708, - 0, - 0.21789786219596863, - 0, - 0.26325133442878723, - 0, - 0.30692487955093384, - 0, - 0.34874290227890015, - 0, - 0.38857778906822205, - 0, - 0.4263477325439453, - 0, - 0.46201291680336, - 0, - 0.49556997418403625, - 0, - 0.5270463228225708, - 0, - 0.5564940571784973, - 0, - 0.5839846730232239, - 0, - 0.6096034646034241, - 0, - 0.633445143699646, - 0, - 0.6556100845336914, - 0, - 0.6762010455131531, - 0, - 0.6953208446502686, - 0, - -0.6970957517623901, - 0, - -0.6780151128768921, - 0, - -0.6574581861495972, - 0, - -0.6353206038475037, - 0, - -0.6114981174468994, - 0, - -0.5858885049819946, - 0, - -0.5583949685096741, - 0, - -0.5289302468299866, - 0, - -0.4974208176136017, - 0, - -0.46381235122680664, - 0, - -0.4280755817890167, - 0, - -0.39021220803260803, - 0, - -0.350260853767395, - 0, - -0.30830278992652893, - 0, - -0.26446589827537537, - 0, - -0.21892690658569336, - 0, - -0.1719118356704712, - 0, - -0.12369268387556076, - 0, - -0.07458165287971497, - 0, - -0.024922238662838936, - 0, - 0.024922238662838936, - 0, - 0.07458165287971497, - 0, - 0.12369268387556076, - 0, - 0.1719118356704712, - 0, - 0.21892690658569336, - 0, - 0.26446589827537537, - 0, - 0.30830278992652893, - 0, - 0.350260853767395, - 0, - 0.39021220803260803, - 0, - 0.4280755817890167, - 0, - 0.46381235122680664, - 0, - 0.4974208176136017, - 0, - 0.5289302468299866, - 0, - 0.5583949685096741, - 0, - 0.5858885049819946, - 0, - 0.6114981174468994, - 0, - 0.6353206038475037, - 0, - 0.6574581861495972, - 0, - 0.6780151128768921, - 0, - 0.6970957517623901, - 0, - -0.6979883313179016, - 0, - -0.6789276003837585, - 0, - -0.6583881378173828, - 0, - -0.6362646222114563, - 0, - -0.6124520897865295, - 0, - -0.5868473649024963, - 0, - -0.5593528151512146, - 0, - -0.5298798680305481, - 0, - -0.49835407733917236, - 0, - -0.4647200405597687, - 0, - -0.42894747853279114, - 0, - -0.3910371661186218, - 0, - -0.351027250289917, - 0, - -0.308998703956604, - 0, - -0.2650794982910156, - 0, - -0.21944692730903625, - 0, - -0.17232808470726013, - 0, - -0.12399658560752869, - 0, - -0.07476671785116196, - 0, - -0.024984391406178474, - 0, - 0.024984391406178474, - 0, - 0.07476671785116196, - 0, - 0.12399658560752869, - 0, - 0.17232808470726013, - 0, - 0.21944692730903625, - 0, - 0.2650794982910156, - 0, - 0.308998703956604, - 0, - 0.351027250289917, - 0, - 0.3910371661186218, - 0, - 0.42894747853279114, - 0, - 0.4647200405597687, - 0, - 0.49835407733917236, - 0, - 0.5298798680305481, - 0, - 0.5593528151512146, - 0, - 0.5868473649024963, - 0, - 0.6124520897865295, - 0, - 0.6362646222114563, - 0, - 0.6583881378173828, - 0, - 0.6789276003837585, - 0, - 0.6979883313179016, - 0, - -0.6979883313179016, - 0, - -0.6789276003837585, - 0, - -0.6583881378173828, - 0, - -0.6362646222114563, - 0, - -0.6124520897865295, - 0, - -0.5868473649024963, - 0, - -0.5593528151512146, - 0, - -0.5298798680305481, - 0, - -0.49835407733917236, - 0, - -0.4647200405597687, - 0, - -0.42894747853279114, - 0, - -0.3910371661186218, - 0, - -0.351027250289917, - 0, - -0.308998703956604, - 0, - -0.2650794982910156, - 0, - -0.21944692730903625, - 0, - -0.17232808470726013, - 0, - -0.12399658560752869, - 0, - -0.07476671785116196, - 0, - -0.024984391406178474, - 0, - 0.024984391406178474, - 0, - 0.07476671785116196, - 0, - 0.12399658560752869, - 0, - 0.17232808470726013, - 0, - 0.21944692730903625, - 0, - 0.2650794982910156, - 0, - 0.308998703956604, - 0, - 0.351027250289917, - 0, - 0.3910371661186218, - 0, - 0.42894747853279114, - 0, - 0.4647200405597687, - 0, - 0.49835407733917236, - 0, - 0.5298798680305481, - 0, - 0.5593528151512146, - 0, - 0.5868473649024963, - 0, - 0.6124520897865295, - 0, - 0.6362646222114563, - 0, - 0.6583881378173828, - 0, - 0.6789276003837585, - 0, - 0.6979883313179016, - 0, - -0.6970957517623901, - 0, - -0.6780151128768921, - 0, - -0.6574581861495972, - 0, - -0.6353206038475037, - 0, - -0.6114981174468994, - 0, - -0.5858885049819946, - 0, - -0.5583949685096741, - 0, - -0.5289302468299866, - 0, - -0.4974208176136017, - 0, - -0.46381235122680664, - 0, - -0.4280755817890167, - 0, - -0.39021220803260803, - 0, - -0.350260853767395, - 0, - -0.30830278992652893, - 0, - -0.26446589827537537, - 0, - -0.21892690658569336, - 0, - -0.1719118356704712, - 0, - -0.12369268387556076, - 0, - -0.07458165287971497, - 0, - -0.024922238662838936, - 0, - 0.024922238662838936, - 0, - 0.07458165287971497, - 0, - 0.12369268387556076, - 0, - 0.1719118356704712, - 0, - 0.21892690658569336, - 0, - 0.26446589827537537, - 0, - 0.30830278992652893, - 0, - 0.350260853767395, - 0, - 0.39021220803260803, - 0, - 0.4280755817890167, - 0, - 0.46381235122680664, - 0, - 0.4974208176136017, - 0, - 0.5289302468299866, - 0, - 0.5583949685096741, - 0, - 0.5858885049819946, - 0, - 0.6114981174468994, - 0, - 0.6353206038475037, - 0, - 0.6574581861495972, - 0, - 0.6780151128768921, - 0, - 0.6970957517623901, - 0, - -0.6953208446502686, - 0, - -0.6762010455131531, - 0, - -0.6556100845336914, - 0, - -0.633445143699646, - 0, - -0.6096034646034241, - 0, - -0.5839846730232239, - 0, - -0.5564940571784973, - 0, - -0.5270463228225708, - 0, - -0.49556997418403625, - 0, - -0.46201291680336, - 0, - -0.4263477325439453, - 0, - -0.38857778906822205, - 0, - -0.34874290227890015, - 0, - -0.30692487955093384, - 0, - -0.26325133442878723, - 0, - -0.21789786219596863, - 0, - -0.1710882931947708, - 0, - -0.12309148907661438, - 0, - -0.0742156133055687, - 0, - -0.024799317121505737, - 0, - 0.024799317121505737, - 0, - 0.0742156133055687, - 0, - 0.12309148907661438, - 0, - 0.1710882931947708, - 0, - 0.21789786219596863, - 0, - 0.26325133442878723, - 0, - 0.30692487955093384, - 0, - 0.34874290227890015, - 0, - 0.38857778906822205, - 0, - 0.4263477325439453, - 0, - 0.46201291680336, - 0, - 0.49556997418403625, - 0, - 0.5270463228225708, - 0, - 0.5564940571784973, - 0, - 0.5839846730232239, - 0, - 0.6096034646034241, - 0, - 0.633445143699646, - 0, - 0.6556100845336914, - 0, - 0.6762010455131531, - 0, - 0.6953208446502686, - 0, - -0.692683756351471, - 0, - -0.6735069751739502, - 0, - -0.6528668999671936, - 0, - -0.6306627988815308, - 0, - -0.6067942380905151, - 0, - -0.5811634659767151, - 0, - -0.5536786913871765, - 0, - -0.5242576599121094, - 0, - -0.4928320348262787, - 0, - -0.4593525230884552, - 0, - -0.4237947165966034, - 0, - -0.38616421818733215, - 0, - -0.3465025722980499, - 0, - -0.30489227175712585, - 0, - -0.26146045327186584, - 0, - -0.21638117730617523, - 0, - -0.1698748916387558, - 0, - -0.12220592796802521, - 0, - -0.07367650419473648, - 0, - -0.024618297815322876, - 0, - 0.024618297815322876, - 0, - 0.07367650419473648, - 0, - 0.12220592796802521, - 0, - 0.1698748916387558, - 0, - 0.21638117730617523, - 0, - 0.26146045327186584, - 0, - 0.30489227175712585, - 0, - 0.3465025722980499, - 0, - 0.38616421818733215, - 0, - 0.4237947165966034, - 0, - 0.4593525230884552, - 0, - 0.4928320348262787, - 0, - 0.5242576599121094, - 0, - 0.5536786913871765, - 0, - 0.5811634659767151, - 0, - 0.6067942380905151, - 0, - 0.6306627988815308, - 0, - 0.6528668999671936, - 0, - 0.6735069751739502, - 0, - 0.692683756351471, - 0, - -0.689213752746582, - 0, - -0.6699645519256592, - 0, - -0.6492623686790466, - 0, - -0.627009391784668, - 0, - -0.6031082272529602, - 0, - -0.5774646997451782, - 0, - -0.5499905943870544, - 0, - -0.5206074118614197, - 0, - -0.48925095796585083, - 0, - -0.45587587356567383, - 0, - -0.4204609990119934, - 0, - -0.3830150067806244, - 0, - -0.34358152747154236, - 0, - -0.30224382877349854, - 0, - -0.2591285705566406, - 0, - -0.2144073098897934, - 0, - -0.1682964712381363, - 0, - -0.12105437368154526, - 0, - -0.07297564297914505, - 0, - -0.024382993578910828, - 0, - 0.024382993578910828, - 0, - 0.07297564297914505, - 0, - 0.12105437368154526, - 0, - 0.1682964712381363, - 0, - 0.2144073098897934, - 0, - 0.2591285705566406, - 0, - 0.30224382877349854, - 0, - 0.34358152747154236, - 0, - 0.3830150067806244, - 0, - 0.4204609990119934, - 0, - 0.45587587356567383, - 0, - 0.48925095796585083, - 0, - 0.5206074118614197, - 0, - 0.5499905943870544, - 0, - 0.5774646997451782, - 0, - 0.6031082272529602, - 0, - 0.627009391784668, - 0, - 0.6492623686790466, - 0, - 0.6699645519256592, - 0, - 0.689213752746582, - 0, - -0.684948742389679, - 0, - -0.6656140685081482, - 0, - -0.6448395848274231, - 0, - -0.6225306987762451, - 0, - -0.5985938906669617, - 0, - -0.5729390978813171, - 0, - -0.5454823970794678, - 0, - -0.5161501169204712, - 0, - -0.4848825931549072, - 0, - -0.45163899660110474, - 0, - -0.4164023995399475, - 0, - -0.379184752702713, - 0, - -0.34003204107284546, - 0, - -0.2990283966064453, - 0, - -0.25629955530166626, - 0, - -0.21201427280902863, - 0, - -0.16638392210006714, - 0, - -0.11965969949960709, - 0, - -0.07212706655263901, - 0, - -0.02409813553094864, - 0, - 0.02409813553094864, - 0, - 0.07212706655263901, - 0, - 0.11965969949960709, - 0, - 0.16638392210006714, - 0, - 0.21201427280902863, - 0, - 0.25629955530166626, - 0, - 0.2990283966064453, - 0, - 0.34003204107284546, - 0, - 0.379184752702713, - 0, - 0.4164023995399475, - 0, - 0.45163899660110474, - 0, - 0.4848825931549072, - 0, - 0.5161501169204712, - 0, - 0.5454823970794678, - 0, - 0.5729390978813171, - 0, - 0.5985938906669617, - 0, - 0.6225306987762451, - 0, - 0.6448395848274231, - 0, - 0.6656140685081482, - 0, - 0.684948742389679, - 0, - -0.6799338459968567, - 0, - -0.6605036854743958, - 0, - -0.6396496295928955, - 0, - -0.617280900478363, - 0, - -0.5933082103729248, - 0, - -0.5676462054252625, - 0, - -0.5402161478996277, - 0, - -0.510949432849884, - 0, - -0.4797917902469635, - 0, - -0.4467073976993561, - 0, - -0.4116837978363037, - 0, - -0.3747366964817047, - 0, - -0.3359144628047943, - 0, - -0.29530203342437744, - 0, - -0.25302404165267944, - 0, - -0.2092457413673401, - 0, - -0.16417275369167328, - 0, - -0.1180480420589447, - 0, - -0.07114680111408234, - 0, - -0.023769132792949677, - 0, - 0.023769132792949677, - 0, - 0.07114680111408234, - 0, - 0.1180480420589447, - 0, - 0.16417275369167328, - 0, - 0.2092457413673401, - 0, - 0.25302404165267944, - 0, - 0.29530203342437744, - 0, - 0.3359144628047943, - 0, - 0.3747366964817047, - 0, - 0.4116837978363037, - 0, - 0.4467073976993561, - 0, - 0.4797917902469635, - 0, - 0.510949432849884, - 0, - 0.5402161478996277, - 0, - 0.5676462054252625, - 0, - 0.5933082103729248, - 0, - 0.617280900478363, - 0, - 0.6396496295928955, - 0, - 0.6605036854743958, - 0, - 0.6799338459968567, - 0, - -0.6742200255393982, - 0, - -0.6546878218650818, - 0, - -0.6337502598762512, - 0, - -0.6113207936286926, - 0, - -0.587315022945404, - 0, - -0.5616527795791626, - 0, - -0.5342608094215393, - 0, - -0.5050762891769409, - 0, - -0.47405049204826355, - 0, - -0.4411531090736389, - 0, - -0.4063764214515686, - 0, - -0.36974000930786133, - 0, - -0.33129456639289856, - 0, - -0.2911258339881897, - 0, - -0.24935685098171234, - 0, - -0.2061489075422287, - 0, - -0.16170118749141693, - 0, - -0.11624763906002045, - 0, - -0.07005216926336288, - 0, - -0.023401817306876183, - 0, - 0.023401817306876183, - 0, - 0.07005216926336288, - 0, - 0.11624763906002045, - 0, - 0.16170118749141693, - 0, - 0.2061489075422287, - 0, - 0.24935685098171234, - 0, - 0.2911258339881897, - 0, - 0.33129456639289856, - 0, - 0.36974000930786133, - 0, - 0.4063764214515686, - 0, - 0.4411531090736389, - 0, - 0.47405049204826355, - 0, - 0.5050762891769409, - 0, - 0.5342608094215393, - 0, - 0.5616527795791626, - 0, - 0.587315022945404, - 0, - 0.6113207936286926, - 0, - 0.6337502598762512, - 0, - 0.6546878218650818, - 0, - 0.6742200255393982, - 0, - -0.6678630709648132, - 0, - -0.6482256054878235, - 0, - -0.6272038817405701, - 0, - -0.6047161817550659, - 0, - -0.580683171749115, - 0, - -0.5550302863121033, - 0, - -0.5276901125907898, - 0, - -0.4986058473587036, - 0, - -0.46773478388786316, - 0, - -0.43505215644836426, - 0, - -0.40055519342422485, - 0, - -0.36426714062690735, - 0, - -0.3262411653995514, - 0, - -0.28656333684921265, - 0, - -0.24535484611988068, - 0, - -0.20277264714241028, - 0, - -0.15900878608226776, - 0, - -0.11428758502006531, - 0, - -0.0688609778881073, - 0, - -0.02300218492746353, - 0, - 0.02300218492746353, - 0, - 0.0688609778881073, - 0, - 0.11428758502006531, - 0, - 0.15900878608226776, - 0, - 0.20277264714241028, - 0, - 0.24535484611988068, - 0, - 0.28656333684921265, - 0, - 0.3262411653995514, - 0, - 0.36426714062690735, - 0, - 0.40055519342422485, - 0, - 0.43505215644836426, - 0, - 0.46773478388786316, - 0, - 0.4986058473587036, - 0, - 0.5276901125907898, - 0, - 0.5550302863121033, - 0, - 0.580683171749115, - 0, - 0.6047161817550659, - 0, - 0.6272038817405701, - 0, - 0.6482256054878235, - 0, - 0.6678630709648132, - 0, - -0.6609220504760742, - 0, - -0.6411794424057007, - 0, - -0.6200762987136841, - 0, - -0.5975359678268433, - 0, - -0.5734843611717224, - 0, - -0.5478528738021851, - 0, - -0.5205801725387573, - 0, - -0.4916157126426697, - 0, - -0.4609227776527405, - 0, - -0.42848217487335205, - 0, - -0.3942960798740387, - 0, - -0.35839149355888367, - 0, - -0.3208234906196594, - 0, - -0.28167837858200073, - 0, - -0.2410750836133957, - 0, - -0.19916574656963348, - 0, - -0.15613490343093872, - 0, - -0.11219677329063416, - 0, - -0.06759088486433029, - 0, - -0.022576183080673218, - 0, - 0.022576183080673218, - 0, - 0.06759088486433029, - 0, - 0.11219677329063416, - 0, - 0.15613490343093872, - 0, - 0.19916574656963348, - 0, - 0.2410750836133957, - 0, - 0.28167837858200073, - 0, - 0.3208234906196594, - 0, - 0.35839149355888367, - 0, - 0.3942960798740387, - 0, - 0.42848217487335205, - 0, - 0.4609227776527405, - 0, - 0.4916157126426697, - 0, - 0.5205801725387573, - 0, - 0.5478528738021851, - 0, - 0.5734843611717224, - 0, - 0.5975359678268433, - 0, - 0.6200762987136841, - 0, - 0.6411794424057007, - 0, - 0.6609220504760742 - ], - "y": [ - 0, - -0.6778687238693237, - 0, - -0.693166971206665, - 0, - -0.7086586356163025, - 0, - -0.7242860198020935, - 0, - -0.7399798035621643, - 0, - -0.7556591033935547, - 0, - -0.7712298631668091, - 0, - -0.7865851521492004, - 0, - -0.8016048669815063, - 0, - -0.8161565661430359, - 0, - -0.8300970792770386, - 0, - -0.8432740569114685, - 0, - -0.8555293083190918, - 0, - -0.8667027354240417, - 0, - -0.8766366243362427, - 0, - -0.8851810693740845, - 0, - -0.8921993970870972, - 0, - -0.8975741863250732, - 0, - -0.9012117385864258, - 0, - -0.9030473232269287, - 0, - -0.9030473232269287, - 0, - -0.9012117385864258, - 0, - -0.8975741863250732, - 0, - -0.8921993970870972, - 0, - -0.8851810693740845, - 0, - -0.8766366243362427, - 0, - -0.8667027354240417, - 0, - -0.8555293083190918, - 0, - -0.8432740569114685, - 0, - -0.8300970792770386, - 0, - -0.8161565661430359, - 0, - -0.8016048669815063, - 0, - -0.7865851521492004, - 0, - -0.7712298631668091, - 0, - -0.7556591033935547, - 0, - -0.7399798035621643, - 0, - -0.7242860198020935, - 0, - -0.7086586356163025, - 0, - -0.693166971206665, - 0, - -0.6778687238693237, - 0, - -0.6849877834320068, - 0, - -0.7007843852043152, - 0, - -0.7168044447898865, - 0, - -0.7329893708229065, - 0, - -0.749268651008606, - 0, - -0.7655589580535889, - 0, - -0.7817630767822266, - 0, - -0.7977693676948547, - 0, - -0.8134518265724182, - 0, - -0.8286707997322083, - 0, - -0.8432740569114685, - 0, - -0.8570991158485413, - 0, - -0.8699764609336853, - 0, - -0.8817334175109863, - 0, - -0.8921993970870972, - 0, - -0.9012117385864258, - 0, - -0.9086216688156128, - 0, - -0.9143006801605225, - 0, - -0.9181463122367859, - 0, - -0.9200873970985413, - 0, - -0.9200873970985413, - 0, - -0.9181463122367859, - 0, - -0.9143006801605225, - 0, - -0.9086216688156128, - 0, - -0.9012117385864258, - 0, - -0.8921993970870972, - 0, - -0.8817334175109863, - 0, - -0.8699764609336853, - 0, - -0.8570991158485413, - 0, - -0.8432740569114685, - 0, - -0.8286707997322083, - 0, - -0.8134518265724182, - 0, - -0.7977693676948547, - 0, - -0.7817630767822266, - 0, - -0.7655589580535889, - 0, - -0.749268651008606, - 0, - -0.7329893708229065, - 0, - -0.7168044447898865, - 0, - -0.7007843852043152, - 0, - -0.6849877834320068, - 0, - -0.6915076971054077, - 0, - -0.7077706456184387, - 0, - -0.7242860198020935, - 0, - -0.740994930267334, - 0, - -0.7578258514404297, - 0, - -0.774693489074707, - 0, - -0.791497528553009, - 0, - -0.8081220388412476, - 0, - -0.8244356513023376, - 0, - -0.8402916193008423, - 0, - -0.8555293083190918, - 0, - -0.8699764609336853, - 0, - -0.8834521770477295, - 0, - -0.895771861076355, - 0, - -0.9067521691322327, - 0, - -0.9162173867225647, - 0, - -0.9240068197250366, - 0, - -0.9299811124801636, - 0, - -0.9340289235115051, - 0, - -0.9360727071762085, - 0, - -0.9360727071762085, - 0, - -0.9340289235115051, - 0, - -0.9299811124801636, - 0, - -0.9240068197250366, - 0, - -0.9162173867225647, - 0, - -0.9067521691322327, - 0, - -0.895771861076355, - 0, - -0.8834521770477295, - 0, - -0.8699764609336853, - 0, - -0.8555293083190918, - 0, - -0.8402916193008423, - 0, - -0.8244356513023376, - 0, - -0.8081220388412476, - 0, - -0.791497528553009, - 0, - -0.774693489074707, - 0, - -0.7578258514404297, - 0, - -0.740994930267334, - 0, - -0.7242860198020935, - 0, - -0.7077706456184387, - 0, - -0.6915076971054077, - 0, - -0.6973680257797241, - 0, - -0.7140580415725708, - 0, - -0.731028139591217, - 0, - -0.7482192516326904, - 0, - -0.7655589580535889, - 0, - -0.7829602360725403, - 0, - -0.8003202080726624, - 0, - -0.8175191283226013, - 0, - -0.8344205021858215, - 0, - -0.8508712649345398, - 0, - -0.8667027354240417, - 0, - -0.8817334175109863, - 0, - -0.895771861076355, - 0, - -0.9086216688156128, - 0, - -0.9200873970985413, - 0, - -0.9299811124801636, - 0, - -0.9381300806999207, - 0, - -0.9443843364715576, - 0, - -0.9486240148544312, - 0, - -0.9507653117179871, - 0, - -0.9507653117179871, - 0, - -0.9486240148544312, - 0, - -0.9443843364715576, - 0, - -0.9381300806999207, - 0, - -0.9299811124801636, - 0, - -0.9200873970985413, - 0, - -0.9086216688156128, - 0, - -0.895771861076355, - 0, - -0.8817334175109863, - 0, - -0.8667027354240417, - 0, - -0.8508712649345398, - 0, - -0.8344205021858215, - 0, - -0.8175191283226013, - 0, - -0.8003202080726624, - 0, - -0.7829602360725403, - 0, - -0.7655589580535889, - 0, - -0.7482192516326904, - 0, - -0.731028139591217, - 0, - -0.7140580415725708, - 0, - -0.6973680257797241, - 0, - -0.7025115489959717, - 0, - -0.719582736492157, - 0, - -0.7369595170021057, - 0, - -0.7545826435089111, - 0, - -0.7723792791366577, - 0, - -0.7902607917785645, - 0, - -0.8081220388412476, - 0, - -0.825840175151825, - 0, - -0.8432740569114685, - 0, - -0.860264778137207, - 0, - -0.8766366243362427, - 0, - -0.8921993970870972, - 0, - -0.9067521691322327, - 0, - -0.9200873970985413, - 0, - -0.9319983720779419, - 0, - -0.9422857165336609, - 0, - -0.9507653117179871, - 0, - -0.9572775959968567, - 0, - -0.9616941213607788, - 0, - -0.9639254212379456, - 0, - -0.9639254212379456, - 0, - -0.9616941213607788, - 0, - -0.9572775959968567, - 0, - -0.9507653117179871, - 0, - -0.9422857165336609, - 0, - -0.9319983720779419, - 0, - -0.9200873970985413, - 0, - -0.9067521691322327, - 0, - -0.8921993970870972, - 0, - -0.8766366243362427, - 0, - -0.860264778137207, - 0, - -0.8432740569114685, - 0, - -0.825840175151825, - 0, - -0.8081220388412476, - 0, - -0.7902607917785645, - 0, - -0.7723792791366577, - 0, - -0.7545826435089111, - 0, - -0.7369595170021057, - 0, - -0.719582736492157, - 0, - -0.7025115489959717, - 0, - -0.7068859338760376, - 0, - -0.7242860198020935, - 0, - -0.7420141696929932, - 0, - -0.7600113749504089, - 0, - -0.7782042026519775, - 0, - -0.7965030074119568, - 0, - -0.8148008584976196, - 0, - -0.8329718708992004, - 0, - -0.8508712649345398, - 0, - -0.8683350682258606, - 0, - -0.8851810693740845, - 0, - -0.9012117385864258, - 0, - -0.9162173867225647, - 0, - -0.9299811124801636, - 0, - -0.9422857165336609, - 0, - -0.9529213905334473, - 0, - -0.9616941213607788, - 0, - -0.9684349894523621, - 0, - -0.9730085134506226, - 0, - -0.9753197431564331, - 0, - -0.9753197431564331, - 0, - -0.9730085134506226, - 0, - -0.9684349894523621, - 0, - -0.9616941213607788, - 0, - -0.9529213905334473, - 0, - -0.9422857165336609, - 0, - -0.9299811124801636, - 0, - -0.9162173867225647, - 0, - -0.9012117385864258, - 0, - -0.8851810693740845, - 0, - -0.8683350682258606, - 0, - -0.8508712649345398, - 0, - -0.8329718708992004, - 0, - -0.8148008584976196, - 0, - -0.7965030074119568, - 0, - -0.7782042026519775, - 0, - -0.7600113749504089, - 0, - -0.7420141696929932, - 0, - -0.7242860198020935, - 0, - -0.7068859338760376, - 0, - -0.7104448676109314, - 0, - -0.7281156182289124, - 0, - -0.7461336255073547, - 0, - -0.7644397616386414, - 0, - -0.7829603552818298, - 0, - -0.8016047477722168, - 0, - -0.8202647566795349, - 0, - -0.8388122320175171, - 0, - -0.857099175453186, - 0, - -0.874957263469696, - 0, - -0.8921993970870972, - 0, - -0.9086216688156128, - 0, - -0.9240068197250366, - 0, - -0.9381300806999207, - 0, - -0.9507653117179871, - 0, - -0.9616941213607788, - 0, - -0.97071373462677, - 0, - -0.9776474237442017, - 0, - -0.9823533296585083, - 0, - -0.984731912612915, - 0, - -0.984731912612915, - 0, - -0.9823533296585083, - 0, - -0.9776474237442017, - 0, - -0.97071373462677, - 0, - -0.9616941213607788, - 0, - -0.9507653117179871, - 0, - -0.9381300806999207, - 0, - -0.9240068197250366, - 0, - -0.9086216688156128, - 0, - -0.8921993970870972, - 0, - -0.874957263469696, - 0, - -0.857099175453186, - 0, - -0.8388122320175171, - 0, - -0.8202647566795349, - 0, - -0.8016047477722168, - 0, - -0.7829603552818298, - 0, - -0.7644397616386414, - 0, - -0.7461336255073547, - 0, - -0.7281156182289124, - 0, - -0.7104448676109314, - 0, - -0.7131495475769043, - 0, - -0.731028139591217, - 0, - -0.749268651008606, - 0, - -0.7678123116493225, - 0, - -0.7865851521492004, - 0, - -0.805496096611023, - 0, - -0.8244356513023376, - 0, - -0.8432740569114685, - 0, - -0.8618608713150024, - 0, - -0.8800246715545654, - 0, - -0.8975741863250732, - 0, - -0.9143006801605225, - 0, - -0.9299811124801636, - 0, - -0.9443843364715576, - 0, - -0.9572775959968567, - 0, - -0.9684349894523621, - 0, - -0.9776474237442017, - 0, - -0.984731912612915, - 0, - -0.9895414710044861, - 0, - -0.9919726848602295, - 0, - -0.9919726848602295, - 0, - -0.9895414710044861, - 0, - -0.984731912612915, - 0, - -0.9776474237442017, - 0, - -0.9684349894523621, - 0, - -0.9572775959968567, - 0, - -0.9443843364715576, - 0, - -0.9299811124801636, - 0, - -0.9143006801605225, - 0, - -0.8975741863250732, - 0, - -0.8800246715545654, - 0, - -0.8618608713150024, - 0, - -0.8432740569114685, - 0, - -0.8244356513023376, - 0, - -0.805496096611023, - 0, - -0.7865851521492004, - 0, - -0.7678123116493225, - 0, - -0.749268651008606, - 0, - -0.731028139591217, - 0, - -0.7131495475769043, - 0, - -0.7149699926376343, - 0, - -0.7329893112182617, - 0, - -0.7513807415962219, - 0, - -0.7700856328010559, - 0, - -0.7890298366546631, - 0, - -0.8081220388412476, - 0, - -0.8272517919540405, - 0, - -0.8462884426116943, - 0, - -0.8650797009468079, - 0, - -0.8834521770477295, - 0, - -0.9012117385864258, - 0, - -0.9181463122367859, - 0, - -0.9340289235115051, - 0, - -0.9486240148544312, - 0, - -0.9616941213607788, - 0, - -0.9730085134506226, - 0, - -0.9823533296585083, - 0, - -0.9895414710044861, - 0, - -0.9944220185279846, - 0, - -0.9968895316123962, - 0, - -0.9968895316123962, - 0, - -0.9944220185279846, - 0, - -0.9895414710044861, - 0, - -0.9823533296585083, - 0, - -0.9730085134506226, - 0, - -0.9616941213607788, - 0, - -0.9486240148544312, - 0, - -0.9340289235115051, - 0, - -0.9181463122367859, - 0, - -0.9012117385864258, - 0, - -0.8834521770477295, - 0, - -0.8650797009468079, - 0, - -0.8462884426116943, - 0, - -0.8272517919540405, - 0, - -0.8081220388412476, - 0, - -0.7890298366546631, - 0, - -0.7700856328010559, - 0, - -0.7513807415962219, - 0, - -0.7329893112182617, - 0, - -0.7149699926376343, - 0, - -0.7158854007720947, - 0, - -0.7339758276939392, - 0, - -0.7524435520172119, - 0, - -0.7712298631668091, - 0, - -0.7902607917785645, - 0, - -0.8094446063041687, - 0, - -0.8286707997322083, - 0, - -0.8478078246116638, - 0, - -0.8667027354240417, - 0, - -0.8851810693740845, - 0, - -0.9030473232269287, - 0, - -0.9200873970985413, - 0, - -0.9360727071762085, - 0, - -0.9507653117179871, - 0, - -0.9639254212379456, - 0, - -0.9753197431564331, - 0, - -0.984731912612915, - 0, - -0.9919726848602295, - 0, - -0.9968895316123962, - 0, - -0.9993756413459778, - 0, - -0.9993756413459778, - 0, - -0.9968895316123962, - 0, - -0.9919726848602295, - 0, - -0.984731912612915, - 0, - -0.9753197431564331, - 0, - -0.9639254212379456, - 0, - -0.9507653117179871, - 0, - -0.9360727071762085, - 0, - -0.9200873970985413, - 0, - -0.9030473232269287, - 0, - -0.8851810693740845, - 0, - -0.8667027354240417, - 0, - -0.8478078246116638, - 0, - -0.8286707997322083, - 0, - -0.8094446063041687, - 0, - -0.7902607917785645, - 0, - -0.7712298631668091, - 0, - -0.7524435520172119, - 0, - -0.7339758276939392, - 0, - -0.7158854007720947, - 0, - -0.7158854007720947, - 0, - -0.7339758276939392, - 0, - -0.7524435520172119, - 0, - -0.7712298631668091, - 0, - -0.7902607917785645, - 0, - -0.8094446063041687, - 0, - -0.8286707997322083, - 0, - -0.8478078246116638, - 0, - -0.8667027354240417, - 0, - -0.8851810693740845, - 0, - -0.9030473232269287, - 0, - -0.9200873970985413, - 0, - -0.9360727071762085, - 0, - -0.9507653117179871, - 0, - -0.9639254212379456, - 0, - -0.9753197431564331, - 0, - -0.984731912612915, - 0, - -0.9919726848602295, - 0, - -0.9968895316123962, - 0, - -0.9993756413459778, - 0, - -0.9993756413459778, - 0, - -0.9968895316123962, - 0, - -0.9919726848602295, - 0, - -0.984731912612915, - 0, - -0.9753197431564331, - 0, - -0.9639254212379456, - 0, - -0.9507653117179871, - 0, - -0.9360727071762085, - 0, - -0.9200873970985413, - 0, - -0.9030473232269287, - 0, - -0.8851810693740845, - 0, - -0.8667027354240417, - 0, - -0.8478078246116638, - 0, - -0.8286707997322083, - 0, - -0.8094446063041687, - 0, - -0.7902607917785645, - 0, - -0.7712298631668091, - 0, - -0.7524435520172119, - 0, - -0.7339758276939392, - 0, - -0.7158854007720947, - 0, - -0.7149699926376343, - 0, - -0.7329893112182617, - 0, - -0.7513807415962219, - 0, - -0.7700856328010559, - 0, - -0.7890298366546631, - 0, - -0.8081220388412476, - 0, - -0.8272517919540405, - 0, - -0.8462884426116943, - 0, - -0.8650797009468079, - 0, - -0.8834521770477295, - 0, - -0.9012117385864258, - 0, - -0.9181463122367859, - 0, - -0.9340289235115051, - 0, - -0.9486240148544312, - 0, - -0.9616941213607788, - 0, - -0.9730085134506226, - 0, - -0.9823533296585083, - 0, - -0.9895414710044861, - 0, - -0.9944220185279846, - 0, - -0.9968895316123962, - 0, - -0.9968895316123962, - 0, - -0.9944220185279846, - 0, - -0.9895414710044861, - 0, - -0.9823533296585083, - 0, - -0.9730085134506226, - 0, - -0.9616941213607788, - 0, - -0.9486240148544312, - 0, - -0.9340289235115051, - 0, - -0.9181463122367859, - 0, - -0.9012117385864258, - 0, - -0.8834521770477295, - 0, - -0.8650797009468079, - 0, - -0.8462884426116943, - 0, - -0.8272517919540405, - 0, - -0.8081220388412476, - 0, - -0.7890298366546631, - 0, - -0.7700856328010559, - 0, - -0.7513807415962219, - 0, - -0.7329893112182617, - 0, - -0.7149699926376343, - 0, - -0.7131495475769043, - 0, - -0.731028139591217, - 0, - -0.749268651008606, - 0, - -0.7678123116493225, - 0, - -0.7865851521492004, - 0, - -0.805496096611023, - 0, - -0.8244356513023376, - 0, - -0.8432740569114685, - 0, - -0.8618608713150024, - 0, - -0.8800246715545654, - 0, - -0.8975741863250732, - 0, - -0.9143006801605225, - 0, - -0.9299811124801636, - 0, - -0.9443843364715576, - 0, - -0.9572775959968567, - 0, - -0.9684349894523621, - 0, - -0.9776474237442017, - 0, - -0.984731912612915, - 0, - -0.9895414710044861, - 0, - -0.9919726848602295, - 0, - -0.9919726848602295, - 0, - -0.9895414710044861, - 0, - -0.984731912612915, - 0, - -0.9776474237442017, - 0, - -0.9684349894523621, - 0, - -0.9572775959968567, - 0, - -0.9443843364715576, - 0, - -0.9299811124801636, - 0, - -0.9143006801605225, - 0, - -0.8975741863250732, - 0, - -0.8800246715545654, - 0, - -0.8618608713150024, - 0, - -0.8432740569114685, - 0, - -0.8244356513023376, - 0, - -0.805496096611023, - 0, - -0.7865851521492004, - 0, - -0.7678123116493225, - 0, - -0.749268651008606, - 0, - -0.731028139591217, - 0, - -0.7131495475769043, - 0, - -0.7104448676109314, - 0, - -0.7281156182289124, - 0, - -0.7461336255073547, - 0, - -0.7644397616386414, - 0, - -0.7829603552818298, - 0, - -0.8016047477722168, - 0, - -0.8202647566795349, - 0, - -0.8388122320175171, - 0, - -0.857099175453186, - 0, - -0.874957263469696, - 0, - -0.8921993970870972, - 0, - -0.9086216688156128, - 0, - -0.9240068197250366, - 0, - -0.9381300806999207, - 0, - -0.9507653117179871, - 0, - -0.9616941213607788, - 0, - -0.97071373462677, - 0, - -0.9776474237442017, - 0, - -0.9823533296585083, - 0, - -0.984731912612915, - 0, - -0.984731912612915, - 0, - -0.9823533296585083, - 0, - -0.9776474237442017, - 0, - -0.97071373462677, - 0, - -0.9616941213607788, - 0, - -0.9507653117179871, - 0, - -0.9381300806999207, - 0, - -0.9240068197250366, - 0, - -0.9086216688156128, - 0, - -0.8921993970870972, - 0, - -0.874957263469696, - 0, - -0.857099175453186, - 0, - -0.8388122320175171, - 0, - -0.8202647566795349, - 0, - -0.8016047477722168, - 0, - -0.7829603552818298, - 0, - -0.7644397616386414, - 0, - -0.7461336255073547, - 0, - -0.7281156182289124, - 0, - -0.7104448676109314, - 0, - -0.7068859338760376, - 0, - -0.7242860198020935, - 0, - -0.7420141696929932, - 0, - -0.7600113749504089, - 0, - -0.7782042026519775, - 0, - -0.7965030074119568, - 0, - -0.8148008584976196, - 0, - -0.8329718708992004, - 0, - -0.8508712649345398, - 0, - -0.8683350682258606, - 0, - -0.8851810693740845, - 0, - -0.9012117385864258, - 0, - -0.9162173867225647, - 0, - -0.9299811124801636, - 0, - -0.9422857165336609, - 0, - -0.9529213905334473, - 0, - -0.9616941213607788, - 0, - -0.9684349894523621, - 0, - -0.9730085134506226, - 0, - -0.9753197431564331, - 0, - -0.9753197431564331, - 0, - -0.9730085134506226, - 0, - -0.9684349894523621, - 0, - -0.9616941213607788, - 0, - -0.9529213905334473, - 0, - -0.9422857165336609, - 0, - -0.9299811124801636, - 0, - -0.9162173867225647, - 0, - -0.9012117385864258, - 0, - -0.8851810693740845, - 0, - -0.8683350682258606, - 0, - -0.8508712649345398, - 0, - -0.8329718708992004, - 0, - -0.8148008584976196, - 0, - -0.7965030074119568, - 0, - -0.7782042026519775, - 0, - -0.7600113749504089, - 0, - -0.7420141696929932, - 0, - -0.7242860198020935, - 0, - -0.7068859338760376, - 0, - -0.7025115489959717, - 0, - -0.719582736492157, - 0, - -0.7369595170021057, - 0, - -0.7545826435089111, - 0, - -0.7723792791366577, - 0, - -0.7902607917785645, - 0, - -0.8081220388412476, - 0, - -0.825840175151825, - 0, - -0.8432740569114685, - 0, - -0.860264778137207, - 0, - -0.8766366243362427, - 0, - -0.8921993970870972, - 0, - -0.9067521691322327, - 0, - -0.9200873970985413, - 0, - -0.9319983720779419, - 0, - -0.9422857165336609, - 0, - -0.9507653117179871, - 0, - -0.9572775959968567, - 0, - -0.9616941213607788, - 0, - -0.9639254212379456, - 0, - -0.9639254212379456, - 0, - -0.9616941213607788, - 0, - -0.9572775959968567, - 0, - -0.9507653117179871, - 0, - -0.9422857165336609, - 0, - -0.9319983720779419, - 0, - -0.9200873970985413, - 0, - -0.9067521691322327, - 0, - -0.8921993970870972, - 0, - -0.8766366243362427, - 0, - -0.860264778137207, - 0, - -0.8432740569114685, - 0, - -0.825840175151825, - 0, - -0.8081220388412476, - 0, - -0.7902607917785645, - 0, - -0.7723792791366577, - 0, - -0.7545826435089111, - 0, - -0.7369595170021057, - 0, - -0.719582736492157, - 0, - -0.7025115489959717, - 0, - -0.6973680257797241, - 0, - -0.7140580415725708, - 0, - -0.731028139591217, - 0, - -0.7482192516326904, - 0, - -0.7655589580535889, - 0, - -0.7829602360725403, - 0, - -0.8003202080726624, - 0, - -0.8175191283226013, - 0, - -0.8344205021858215, - 0, - -0.8508712649345398, - 0, - -0.8667027354240417, - 0, - -0.8817334175109863, - 0, - -0.895771861076355, - 0, - -0.9086216688156128, - 0, - -0.9200873970985413, - 0, - -0.9299811124801636, - 0, - -0.9381300806999207, - 0, - -0.9443843364715576, - 0, - -0.9486240148544312, - 0, - -0.9507653117179871, - 0, - -0.9507653117179871, - 0, - -0.9486240148544312, - 0, - -0.9443843364715576, - 0, - -0.9381300806999207, - 0, - -0.9299811124801636, - 0, - -0.9200873970985413, - 0, - -0.9086216688156128, - 0, - -0.895771861076355, - 0, - -0.8817334175109863, - 0, - -0.8667027354240417, - 0, - -0.8508712649345398, - 0, - -0.8344205021858215, - 0, - -0.8175191283226013, - 0, - -0.8003202080726624, - 0, - -0.7829602360725403, - 0, - -0.7655589580535889, - 0, - -0.7482192516326904, - 0, - -0.731028139591217, - 0, - -0.7140580415725708, - 0, - -0.6973680257797241, - 0, - -0.6915076971054077, - 0, - -0.7077706456184387, - 0, - -0.7242860198020935, - 0, - -0.740994930267334, - 0, - -0.7578258514404297, - 0, - -0.774693489074707, - 0, - -0.791497528553009, - 0, - -0.8081220388412476, - 0, - -0.8244356513023376, - 0, - -0.8402916193008423, - 0, - -0.8555293083190918, - 0, - -0.8699764609336853, - 0, - -0.8834521770477295, - 0, - -0.895771861076355, - 0, - -0.9067521691322327, - 0, - -0.9162173867225647, - 0, - -0.9240068197250366, - 0, - -0.9299811124801636, - 0, - -0.9340289235115051, - 0, - -0.9360727071762085, - 0, - -0.9360727071762085, - 0, - -0.9340289235115051, - 0, - -0.9299811124801636, - 0, - -0.9240068197250366, - 0, - -0.9162173867225647, - 0, - -0.9067521691322327, - 0, - -0.895771861076355, - 0, - -0.8834521770477295, - 0, - -0.8699764609336853, - 0, - -0.8555293083190918, - 0, - -0.8402916193008423, - 0, - -0.8244356513023376, - 0, - -0.8081220388412476, - 0, - -0.791497528553009, - 0, - -0.774693489074707, - 0, - -0.7578258514404297, - 0, - -0.740994930267334, - 0, - -0.7242860198020935, - 0, - -0.7077706456184387, - 0, - -0.6915076971054077, - 0, - -0.6849877834320068, - 0, - -0.7007843852043152, - 0, - -0.7168044447898865, - 0, - -0.7329893708229065, - 0, - -0.749268651008606, - 0, - -0.7655589580535889, - 0, - -0.7817630767822266, - 0, - -0.7977693676948547, - 0, - -0.8134518265724182, - 0, - -0.8286707997322083, - 0, - -0.8432740569114685, - 0, - -0.8570991158485413, - 0, - -0.8699764609336853, - 0, - -0.8817334175109863, - 0, - -0.8921993970870972, - 0, - -0.9012117385864258, - 0, - -0.9086216688156128, - 0, - -0.9143006801605225, - 0, - -0.9181463122367859, - 0, - -0.9200873970985413, - 0, - -0.9200873970985413, - 0, - -0.9181463122367859, - 0, - -0.9143006801605225, - 0, - -0.9086216688156128, - 0, - -0.9012117385864258, - 0, - -0.8921993970870972, - 0, - -0.8817334175109863, - 0, - -0.8699764609336853, - 0, - -0.8570991158485413, - 0, - -0.8432740569114685, - 0, - -0.8286707997322083, - 0, - -0.8134518265724182, - 0, - -0.7977693676948547, - 0, - -0.7817630767822266, - 0, - -0.7655589580535889, - 0, - -0.749268651008606, - 0, - -0.7329893708229065, - 0, - -0.7168044447898865, - 0, - -0.7007843852043152, - 0, - -0.6849877834320068, - 0, - -0.6778687238693237, - 0, - -0.693166971206665, - 0, - -0.7086586356163025, - 0, - -0.7242860198020935, - 0, - -0.7399798035621643, - 0, - -0.7556591033935547, - 0, - -0.7712298631668091, - 0, - -0.7865851521492004, - 0, - -0.8016048669815063, - 0, - -0.8161565661430359, - 0, - -0.8300970792770386, - 0, - -0.8432740569114685, - 0, - -0.8555293083190918, - 0, - -0.8667027354240417, - 0, - -0.8766366243362427, - 0, - -0.8851810693740845, - 0, - -0.8921993970870972, - 0, - -0.8975741863250732, - 0, - -0.9012117385864258, - 0, - -0.9030473232269287, - 0, - -0.9030473232269287, - 0, - -0.9012117385864258, - 0, - -0.8975741863250732, - 0, - -0.8921993970870972, - 0, - -0.8851810693740845, - 0, - -0.8766366243362427, - 0, - -0.8667027354240417, - 0, - -0.8555293083190918, - 0, - -0.8432740569114685, - 0, - -0.8300970792770386, - 0, - -0.8161565661430359, - 0, - -0.8016048669815063, - 0, - -0.7865851521492004, - 0, - -0.7712298631668091, - 0, - -0.7556591033935547, - 0, - -0.7399798035621643, - 0, - -0.7242860198020935, - 0, - -0.7086586356163025, - 0, - -0.693166971206665, - 0, - -0.6778687238693237 - ], - "z": [ - 0, - 0.32198765873908997, - 0, - 0.32925429940223694, - 0, - 0.33661285042762756, - 0, - 0.3440358340740204, - 0, - 0.35149040818214417, - 0, - 0.358938068151474, - 0, - 0.3663341999053955, - 0, - 0.3736279308795929, - 0, - 0.3807623088359833, - 0, - 0.38767436146736145, - 0, - 0.3942960798740387, - 0, - 0.40055519342422485, - 0, - 0.4063764214515686, - 0, - 0.4116837978363037, - 0, - 0.4164023995399475, - 0, - 0.4204609990119934, - 0, - 0.4237947165966034, - 0, - 0.4263477325439453, - 0, - 0.4280755817890167, - 0, - 0.42894747853279114, - 0, - 0.42894747853279114, - 0, - 0.4280755817890167, - 0, - 0.4263477325439453, - 0, - 0.4237947165966034, - 0, - 0.4204609990119934, - 0, - 0.4164023995399475, - 0, - 0.4116837978363037, - 0, - 0.4063764214515686, - 0, - 0.40055519342422485, - 0, - 0.3942960798740387, - 0, - 0.38767436146736145, - 0, - 0.3807623088359833, - 0, - 0.3736279308795929, - 0, - 0.3663341999053955, - 0, - 0.358938068151474, - 0, - 0.35149040818214417, - 0, - 0.3440358340740204, - 0, - 0.33661285042762756, - 0, - 0.32925429940223694, - 0, - 0.32198765873908997, - 0, - 0.2911198139190674, - 0, - 0.2978333830833435, - 0, - 0.30464187264442444, - 0, - 0.3115204870700836, - 0, - 0.31843918561935425, - 0, - 0.32536259293556213, - 0, - 0.33224931359291077, - 0, - 0.3390519917011261, - 0, - 0.34571704268455505, - 0, - 0.35218510031700134, - 0, - 0.35839149355888367, - 0, - 0.36426714062690735, - 0, - 0.36974000930786133, - 0, - 0.3747366964817047, - 0, - 0.379184752702713, - 0, - 0.3830150067806244, - 0, - 0.38616421818733215, - 0, - 0.38857778906822205, - 0, - 0.39021220803260803, - 0, - 0.3910371661186218, - 0, - 0.3910371661186218, - 0, - 0.39021220803260803, - 0, - 0.38857778906822205, - 0, - 0.38616421818733215, - 0, - 0.3830150067806244, - 0, - 0.379184752702713, - 0, - 0.3747366964817047, - 0, - 0.36974000930786133, - 0, - 0.36426714062690735, - 0, - 0.35839149355888367, - 0, - 0.35218510031700134, - 0, - 0.34571704268455505, - 0, - 0.3390519917011261, - 0, - 0.33224931359291077, - 0, - 0.32536259293556213, - 0, - 0.31843918561935425, - 0, - 0.3115204870700836, - 0, - 0.30464187264442444, - 0, - 0.2978333830833435, - 0, - 0.2911198139190674, - 0, - 0.2593154013156891, - 0, - 0.2654139995574951, - 0, - 0.27160724997520447, - 0, - 0.27787309885025024, - 0, - 0.28418469429016113, - 0, - 0.29051005840301514, - 0, - 0.296811580657959, - 0, - 0.30304574966430664, - 0, - 0.309163361787796, - 0, - 0.31510937213897705, - 0, - 0.3208234906196594, - 0, - 0.3262411653995514, - 0, - 0.33129456639289856, - 0, - 0.3359144628047943, - 0, - 0.34003204107284546, - 0, - 0.34358152747154236, - 0, - 0.3465025722980499, - 0, - 0.34874290227890015, - 0, - 0.350260853767395, - 0, - 0.351027250289917, - 0, - 0.351027250289917, - 0, - 0.350260853767395, - 0, - 0.34874290227890015, - 0, - 0.3465025722980499, - 0, - 0.34358152747154236, - 0, - 0.34003204107284546, - 0, - 0.3359144628047943, - 0, - 0.33129456639289856, - 0, - 0.3262411653995514, - 0, - 0.3208234906196594, - 0, - 0.31510937213897705, - 0, - 0.309163361787796, - 0, - 0.30304574966430664, - 0, - 0.296811580657959, - 0, - 0.29051005840301514, - 0, - 0.28418469429016113, - 0, - 0.27787309885025024, - 0, - 0.27160724997520447, - 0, - 0.2654139995574951, - 0, - 0.2593154013156891, - 0, - 0.2266446053981781, - 0, - 0.23206885159015656, - 0, - 0.23758414387702942, - 0, - 0.24317125976085663, - 0, - 0.2488066554069519, - 0, - 0.2544620633125305, - 0, - 0.26010406017303467, - 0, - 0.265693724155426, - 0, - 0.2711866497993469, - 0, - 0.2765331566333771, - 0, - 0.28167837858200073, - 0, - 0.28656333684921265, - 0, - 0.2911258339881897, - 0, - 0.29530203342437744, - 0, - 0.2990283966064453, - 0, - 0.30224382877349854, - 0, - 0.30489227175712585, - 0, - 0.30692487955093384, - 0, - 0.30830278992652893, - 0, - 0.308998703956604, - 0, - 0.308998703956604, - 0, - 0.30830278992652893, - 0, - 0.30692487955093384, - 0, - 0.30489227175712585, - 0, - 0.30224382877349854, - 0, - 0.2990283966064453, - 0, - 0.29530203342437744, - 0, - 0.2911258339881897, - 0, - 0.28656333684921265, - 0, - 0.28167837858200073, - 0, - 0.2765331566333771, - 0, - 0.2711866497993469, - 0, - 0.265693724155426, - 0, - 0.26010406017303467, - 0, - 0.2544620633125305, - 0, - 0.2488066554069519, - 0, - 0.24317125976085663, - 0, - 0.23758414387702942, - 0, - 0.23206885159015656, - 0, - 0.2266446053981781, - 0, - 0.19319067895412445, - 0, - 0.19788525998592377, - 0, - 0.2026638686656952, - 0, - 0.20751023292541504, - 0, - 0.2124042958021164, - 0, - 0.2173217236995697, - 0, - 0.22223356366157532, - 0, - 0.22710606455802917, - 0, - 0.2319003790616989, - 0, - 0.23657281696796417, - 0, - 0.2410750836133957, - 0, - 0.24535484611988068, - 0, - 0.24935685098171234, - 0, - 0.25302404165267944, - 0, - 0.25629955530166626, - 0, - 0.2591285705566406, - 0, - 0.26146045327186584, - 0, - 0.26325133442878723, - 0, - 0.26446589827537537, - 0, - 0.2650794982910156, - 0, - 0.2650794982910156, - 0, - 0.26446589827537537, - 0, - 0.26325133442878723, - 0, - 0.26146045327186584, - 0, - 0.2591285705566406, - 0, - 0.25629955530166626, - 0, - 0.25302404165267944, - 0, - 0.24935685098171234, - 0, - 0.24535484611988068, - 0, - 0.2410750836133957, - 0, - 0.23657281696796417, - 0, - 0.2319003790616989, - 0, - 0.22710606455802917, - 0, - 0.22223356366157532, - 0, - 0.2173217236995697, - 0, - 0.2124042958021164, - 0, - 0.20751023292541504, - 0, - 0.2026638686656952, - 0, - 0.19788525998592377, - 0, - 0.19319067895412445, - 0, - 0.15904933214187622, - 0, - 0.1629643440246582, - 0, - 0.1669531762599945, - 0, - 0.1710025519132614, - 0, - 0.17509594559669495, - 0, - 0.17921316623687744, - 0, - 0.18333019316196442, - 0, - 0.18741866946220398, - 0, - 0.19144603610038757, - 0, - 0.19537538290023804, - 0, - 0.19916574656963348, - 0, - 0.20277264714241028, - 0, - 0.2061489075422287, - 0, - 0.2092457413673401, - 0, - 0.21201427280902863, - 0, - 0.2144073098897934, - 0, - 0.21638117730617523, - 0, - 0.21789786219596863, - 0, - 0.21892690658569336, - 0, - 0.21944692730903625, - 0, - 0.21944692730903625, - 0, - 0.21892690658569336, - 0, - 0.21789786219596863, - 0, - 0.21638117730617523, - 0, - 0.2144073098897934, - 0, - 0.21201427280902863, - 0, - 0.2092457413673401, - 0, - 0.2061489075422287, - 0, - 0.20277264714241028, - 0, - 0.19916574656963348, - 0, - 0.19537538290023804, - 0, - 0.19144603610038757, - 0, - 0.18741866946220398, - 0, - 0.18333019316196442, - 0, - 0.17921316623687744, - 0, - 0.17509594559669495, - 0, - 0.1710025519132614, - 0, - 0.1669531762599945, - 0, - 0.1629643440246582, - 0, - 0.15904933214187622, - 0, - 0.12432784587144852, - 0, - 0.12742023169994354, - 0, - 0.13057337701320648, - 0, - 0.1337769627571106, - 0, - 0.13701805472373962, - 0, - 0.1402808278799057, - 0, - 0.14354632794857025, - 0, - 0.14679214358329773, - 0, - 0.14999236166477203, - 0, - 0.15311752259731293, - 0, - 0.15613490343093872, - 0, - 0.15900878608226776, - 0, - 0.16170118749141693, - 0, - 0.16417275369167328, - 0, - 0.16638392210006714, - 0, - 0.1682964712381363, - 0, - 0.1698748916387558, - 0, - 0.1710882931947708, - 0, - 0.1719118356704712, - 0, - 0.17232808470726013, - 0, - 0.17232808470726013, - 0, - 0.1719118356704712, - 0, - 0.1710882931947708, - 0, - 0.1698748916387558, - 0, - 0.1682964712381363, - 0, - 0.16638392210006714, - 0, - 0.16417275369167328, - 0, - 0.16170118749141693, - 0, - 0.15900878608226776, - 0, - 0.15613490343093872, - 0, - 0.15311752259731293, - 0, - 0.14999236166477203, - 0, - 0.14679214358329773, - 0, - 0.14354632794857025, - 0, - 0.1402808278799057, - 0, - 0.13701805472373962, - 0, - 0.1337769627571106, - 0, - 0.13057337701320648, - 0, - 0.12742023169994354, - 0, - 0.12432784587144852, - 0, - 0.08914369344711304, - 0, - 0.09137851744890213, - 0, - 0.09365858137607574, - 0, - 0.09597653895616531, - 0, - 0.09832314401865005, - 0, - 0.10068701207637787, - 0, - 0.1030544564127922, - 0, - 0.10540925711393356, - 0, - 0.1077326089143753, - 0, - 0.11000308394432068, - 0, - 0.11219677329063416, - 0, - 0.11428758502006531, - 0, - 0.11624763906002045, - 0, - 0.1180480420589447, - 0, - 0.11965969949960709, - 0, - 0.12105437368154526, - 0, - 0.12220592796802521, - 0, - 0.12309148907661438, - 0, - 0.12369268387556076, - 0, - 0.12399658560752869, - 0, - 0.12399658560752869, - 0, - 0.12369268387556076, - 0, - 0.12309148907661438, - 0, - 0.12220592796802521, - 0, - 0.12105437368154526, - 0, - 0.11965969949960709, - 0, - 0.1180480420589447, - 0, - 0.11624763906002045, - 0, - 0.11428758502006531, - 0, - 0.11219677329063416, - 0, - 0.11000308394432068, - 0, - 0.1077326089143753, - 0, - 0.10540925711393356, - 0, - 0.1030544564127922, - 0, - 0.10068701207637787, - 0, - 0.09832314401865005, - 0, - 0.09597653895616531, - 0, - 0.09365858137607574, - 0, - 0.09137851744890213, - 0, - 0.08914369344711304, - 0, - 0.05362275242805481, - 0, - 0.05497419834136963, - 0, - 0.05635356158018112, - 0, - 0.05775642395019531, - 0, - 0.05917724221944809, - 0, - 0.060609154403209686, - 0, - 0.06204388663172722, - 0, - 0.06347163766622543, - 0, - 0.06488098204135895, - 0, - 0.06625891476869583, - 0, - 0.06759088486433029, - 0, - 0.0688609778881073, - 0, - 0.07005216926336288, - 0, - 0.07114680111408234, - 0, - 0.07212706655263901, - 0, - 0.07297564297914505, - 0, - 0.07367650419473648, - 0, - 0.0742156133055687, - 0, - 0.07458165287971497, - 0, - 0.07476671785116196, - 0, - 0.07476671785116196, - 0, - 0.07458165287971497, - 0, - 0.0742156133055687, - 0, - 0.07367650419473648, - 0, - 0.07297564297914505, - 0, - 0.07212706655263901, - 0, - 0.07114680111408234, - 0, - 0.07005216926336288, - 0, - 0.0688609778881073, - 0, - 0.06759088486433029, - 0, - 0.06625891476869583, - 0, - 0.06488098204135895, - 0, - 0.06347163766622543, - 0, - 0.06204388663172722, - 0, - 0.060609154403209686, - 0, - 0.05917724221944809, - 0, - 0.05775642395019531, - 0, - 0.05635356158018112, - 0, - 0.05497419834136963, - 0, - 0.05362275242805481, - 0, - 0.017897136509418488, - 0, - 0.01834939606487751, - 0, - 0.018811089918017387, - 0, - 0.019280746579170227, - 0, - 0.01975652016699314, - 0, - 0.020236115902662277, - 0, - 0.020716769620776176, - 0, - 0.021195195615291595, - 0, - 0.021667569875717163, - 0, - 0.02212952822446823, - 0, - 0.022576183080673218, - 0, - 0.02300218492746353, - 0, - 0.023401817306876183, - 0, - 0.023769132792949677, - 0, - 0.02409813553094864, - 0, - 0.024382993578910828, - 0, - 0.024618297815322876, - 0, - 0.024799317121505737, - 0, - 0.024922238662838936, - 0, - 0.024984391406178474, - 0, - 0.024984391406178474, - 0, - 0.024922238662838936, - 0, - 0.024799317121505737, - 0, - 0.024618297815322876, - 0, - 0.024382993578910828, - 0, - 0.02409813553094864, - 0, - 0.023769132792949677, - 0, - 0.023401817306876183, - 0, - 0.02300218492746353, - 0, - 0.022576183080673218, - 0, - 0.02212952822446823, - 0, - 0.021667569875717163, - 0, - 0.021195195615291595, - 0, - 0.020716769620776176, - 0, - 0.020236115902662277, - 0, - 0.01975652016699314, - 0, - 0.019280746579170227, - 0, - 0.018811089918017387, - 0, - 0.01834939606487751, - 0, - 0.017897136509418488, - 0, - -0.017897136509418488, - 0, - -0.01834939606487751, - 0, - -0.018811089918017387, - 0, - -0.019280746579170227, - 0, - -0.01975652016699314, - 0, - -0.020236115902662277, - 0, - -0.020716769620776176, - 0, - -0.021195195615291595, - 0, - -0.021667569875717163, - 0, - -0.02212952822446823, - 0, - -0.022576183080673218, - 0, - -0.02300218492746353, - 0, - -0.023401817306876183, - 0, - -0.023769132792949677, - 0, - -0.02409813553094864, - 0, - -0.024382993578910828, - 0, - -0.024618297815322876, - 0, - -0.024799317121505737, - 0, - -0.024922238662838936, - 0, - -0.024984391406178474, - 0, - -0.024984391406178474, - 0, - -0.024922238662838936, - 0, - -0.024799317121505737, - 0, - -0.024618297815322876, - 0, - -0.024382993578910828, - 0, - -0.02409813553094864, - 0, - -0.023769132792949677, - 0, - -0.023401817306876183, - 0, - -0.02300218492746353, - 0, - -0.022576183080673218, - 0, - -0.02212952822446823, - 0, - -0.021667569875717163, - 0, - -0.021195195615291595, - 0, - -0.020716769620776176, - 0, - -0.020236115902662277, - 0, - -0.01975652016699314, - 0, - -0.019280746579170227, - 0, - -0.018811089918017387, - 0, - -0.01834939606487751, - 0, - -0.017897136509418488, - 0, - -0.05362275242805481, - 0, - -0.05497419834136963, - 0, - -0.05635356158018112, - 0, - -0.05775642395019531, - 0, - -0.05917724221944809, - 0, - -0.060609154403209686, - 0, - -0.06204388663172722, - 0, - -0.06347163766622543, - 0, - -0.06488098204135895, - 0, - -0.06625891476869583, - 0, - -0.06759088486433029, - 0, - -0.0688609778881073, - 0, - -0.07005216926336288, - 0, - -0.07114680111408234, - 0, - -0.07212706655263901, - 0, - -0.07297564297914505, - 0, - -0.07367650419473648, - 0, - -0.0742156133055687, - 0, - -0.07458165287971497, - 0, - -0.07476671785116196, - 0, - -0.07476671785116196, - 0, - -0.07458165287971497, - 0, - -0.0742156133055687, - 0, - -0.07367650419473648, - 0, - -0.07297564297914505, - 0, - -0.07212706655263901, - 0, - -0.07114680111408234, - 0, - -0.07005216926336288, - 0, - -0.0688609778881073, - 0, - -0.06759088486433029, - 0, - -0.06625891476869583, - 0, - -0.06488098204135895, - 0, - -0.06347163766622543, - 0, - -0.06204388663172722, - 0, - -0.060609154403209686, - 0, - -0.05917724221944809, - 0, - -0.05775642395019531, - 0, - -0.05635356158018112, - 0, - -0.05497419834136963, - 0, - -0.05362275242805481, - 0, - -0.08914369344711304, - 0, - -0.09137851744890213, - 0, - -0.09365858137607574, - 0, - -0.09597653895616531, - 0, - -0.09832314401865005, - 0, - -0.10068701207637787, - 0, - -0.1030544564127922, - 0, - -0.10540925711393356, - 0, - -0.1077326089143753, - 0, - -0.11000308394432068, - 0, - -0.11219677329063416, - 0, - -0.11428758502006531, - 0, - -0.11624763906002045, - 0, - -0.1180480420589447, - 0, - -0.11965969949960709, - 0, - -0.12105437368154526, - 0, - -0.12220592796802521, - 0, - -0.12309148907661438, - 0, - -0.12369268387556076, - 0, - -0.12399658560752869, - 0, - -0.12399658560752869, - 0, - -0.12369268387556076, - 0, - -0.12309148907661438, - 0, - -0.12220592796802521, - 0, - -0.12105437368154526, - 0, - -0.11965969949960709, - 0, - -0.1180480420589447, - 0, - -0.11624763906002045, - 0, - -0.11428758502006531, - 0, - -0.11219677329063416, - 0, - -0.11000308394432068, - 0, - -0.1077326089143753, - 0, - -0.10540925711393356, - 0, - -0.1030544564127922, - 0, - -0.10068701207637787, - 0, - -0.09832314401865005, - 0, - -0.09597653895616531, - 0, - -0.09365858137607574, - 0, - -0.09137851744890213, - 0, - -0.08914369344711304, - 0, - -0.12432784587144852, - 0, - -0.12742023169994354, - 0, - -0.13057337701320648, - 0, - -0.1337769627571106, - 0, - -0.13701805472373962, - 0, - -0.1402808278799057, - 0, - -0.14354632794857025, - 0, - -0.14679214358329773, - 0, - -0.14999236166477203, - 0, - -0.15311752259731293, - 0, - -0.15613490343093872, - 0, - -0.15900878608226776, - 0, - -0.16170118749141693, - 0, - -0.16417275369167328, - 0, - -0.16638392210006714, - 0, - -0.1682964712381363, - 0, - -0.1698748916387558, - 0, - -0.1710882931947708, - 0, - -0.1719118356704712, - 0, - -0.17232808470726013, - 0, - -0.17232808470726013, - 0, - -0.1719118356704712, - 0, - -0.1710882931947708, - 0, - -0.1698748916387558, - 0, - -0.1682964712381363, - 0, - -0.16638392210006714, - 0, - -0.16417275369167328, - 0, - -0.16170118749141693, - 0, - -0.15900878608226776, - 0, - -0.15613490343093872, - 0, - -0.15311752259731293, - 0, - -0.14999236166477203, - 0, - -0.14679214358329773, - 0, - -0.14354632794857025, - 0, - -0.1402808278799057, - 0, - -0.13701805472373962, - 0, - -0.1337769627571106, - 0, - -0.13057337701320648, - 0, - -0.12742023169994354, - 0, - -0.12432784587144852, - 0, - -0.15904933214187622, - 0, - -0.1629643440246582, - 0, - -0.1669531762599945, - 0, - -0.1710025519132614, - 0, - -0.17509594559669495, - 0, - -0.17921316623687744, - 0, - -0.18333019316196442, - 0, - -0.18741866946220398, - 0, - -0.19144603610038757, - 0, - -0.19537538290023804, - 0, - -0.19916574656963348, - 0, - -0.20277264714241028, - 0, - -0.2061489075422287, - 0, - -0.2092457413673401, - 0, - -0.21201427280902863, - 0, - -0.2144073098897934, - 0, - -0.21638117730617523, - 0, - -0.21789786219596863, - 0, - -0.21892690658569336, - 0, - -0.21944692730903625, - 0, - -0.21944692730903625, - 0, - -0.21892690658569336, - 0, - -0.21789786219596863, - 0, - -0.21638117730617523, - 0, - -0.2144073098897934, - 0, - -0.21201427280902863, - 0, - -0.2092457413673401, - 0, - -0.2061489075422287, - 0, - -0.20277264714241028, - 0, - -0.19916574656963348, - 0, - -0.19537538290023804, - 0, - -0.19144603610038757, - 0, - -0.18741866946220398, - 0, - -0.18333019316196442, - 0, - -0.17921316623687744, - 0, - -0.17509594559669495, - 0, - -0.1710025519132614, - 0, - -0.1669531762599945, - 0, - -0.1629643440246582, - 0, - -0.15904933214187622, - 0, - -0.19319067895412445, - 0, - -0.19788525998592377, - 0, - -0.2026638686656952, - 0, - -0.20751023292541504, - 0, - -0.2124042958021164, - 0, - -0.2173217236995697, - 0, - -0.22223356366157532, - 0, - -0.22710606455802917, - 0, - -0.2319003790616989, - 0, - -0.23657281696796417, - 0, - -0.2410750836133957, - 0, - -0.24535484611988068, - 0, - -0.24935685098171234, - 0, - -0.25302404165267944, - 0, - -0.25629955530166626, - 0, - -0.2591285705566406, - 0, - -0.26146045327186584, - 0, - -0.26325133442878723, - 0, - -0.26446589827537537, - 0, - -0.2650794982910156, - 0, - -0.2650794982910156, - 0, - -0.26446589827537537, - 0, - -0.26325133442878723, - 0, - -0.26146045327186584, - 0, - -0.2591285705566406, - 0, - -0.25629955530166626, - 0, - -0.25302404165267944, - 0, - -0.24935685098171234, - 0, - -0.24535484611988068, - 0, - -0.2410750836133957, - 0, - -0.23657281696796417, - 0, - -0.2319003790616989, - 0, - -0.22710606455802917, - 0, - -0.22223356366157532, - 0, - -0.2173217236995697, - 0, - -0.2124042958021164, - 0, - -0.20751023292541504, - 0, - -0.2026638686656952, - 0, - -0.19788525998592377, - 0, - -0.19319067895412445, - 0, - -0.2266446053981781, - 0, - -0.23206885159015656, - 0, - -0.23758414387702942, - 0, - -0.24317125976085663, - 0, - -0.2488066554069519, - 0, - -0.2544620633125305, - 0, - -0.26010406017303467, - 0, - -0.265693724155426, - 0, - -0.2711866497993469, - 0, - -0.2765331566333771, - 0, - -0.28167837858200073, - 0, - -0.28656333684921265, - 0, - -0.2911258339881897, - 0, - -0.29530203342437744, - 0, - -0.2990283966064453, - 0, - -0.30224382877349854, - 0, - -0.30489227175712585, - 0, - -0.30692487955093384, - 0, - -0.30830278992652893, - 0, - -0.308998703956604, - 0, - -0.308998703956604, - 0, - -0.30830278992652893, - 0, - -0.30692487955093384, - 0, - -0.30489227175712585, - 0, - -0.30224382877349854, - 0, - -0.2990283966064453, - 0, - -0.29530203342437744, - 0, - -0.2911258339881897, - 0, - -0.28656333684921265, - 0, - -0.28167837858200073, - 0, - -0.2765331566333771, - 0, - -0.2711866497993469, - 0, - -0.265693724155426, - 0, - -0.26010406017303467, - 0, - -0.2544620633125305, - 0, - -0.2488066554069519, - 0, - -0.24317125976085663, - 0, - -0.23758414387702942, - 0, - -0.23206885159015656, - 0, - -0.2266446053981781, - 0, - -0.2593154013156891, - 0, - -0.2654139995574951, - 0, - -0.27160724997520447, - 0, - -0.27787309885025024, - 0, - -0.28418469429016113, - 0, - -0.29051005840301514, - 0, - -0.296811580657959, - 0, - -0.30304574966430664, - 0, - -0.309163361787796, - 0, - -0.31510937213897705, - 0, - -0.3208234906196594, - 0, - -0.3262411653995514, - 0, - -0.33129456639289856, - 0, - -0.3359144628047943, - 0, - -0.34003204107284546, - 0, - -0.34358152747154236, - 0, - -0.3465025722980499, - 0, - -0.34874290227890015, - 0, - -0.350260853767395, - 0, - -0.351027250289917, - 0, - -0.351027250289917, - 0, - -0.350260853767395, - 0, - -0.34874290227890015, - 0, - -0.3465025722980499, - 0, - -0.34358152747154236, - 0, - -0.34003204107284546, - 0, - -0.3359144628047943, - 0, - -0.33129456639289856, - 0, - -0.3262411653995514, - 0, - -0.3208234906196594, - 0, - -0.31510937213897705, - 0, - -0.309163361787796, - 0, - -0.30304574966430664, - 0, - -0.296811580657959, - 0, - -0.29051005840301514, - 0, - -0.28418469429016113, - 0, - -0.27787309885025024, - 0, - -0.27160724997520447, - 0, - -0.2654139995574951, - 0, - -0.2593154013156891, - 0, - -0.2911198139190674, - 0, - -0.2978333830833435, - 0, - -0.30464187264442444, - 0, - -0.3115204870700836, - 0, - -0.31843918561935425, - 0, - -0.32536259293556213, - 0, - -0.33224931359291077, - 0, - -0.3390519917011261, - 0, - -0.34571704268455505, - 0, - -0.35218510031700134, - 0, - -0.35839149355888367, - 0, - -0.36426714062690735, - 0, - -0.36974000930786133, - 0, - -0.3747366964817047, - 0, - -0.379184752702713, - 0, - -0.3830150067806244, - 0, - -0.38616421818733215, - 0, - -0.38857778906822205, - 0, - -0.39021220803260803, - 0, - -0.3910371661186218, - 0, - -0.3910371661186218, - 0, - -0.39021220803260803, - 0, - -0.38857778906822205, - 0, - -0.38616421818733215, - 0, - -0.3830150067806244, - 0, - -0.379184752702713, - 0, - -0.3747366964817047, - 0, - -0.36974000930786133, - 0, - -0.36426714062690735, - 0, - -0.35839149355888367, - 0, - -0.35218510031700134, - 0, - -0.34571704268455505, - 0, - -0.3390519917011261, - 0, - -0.33224931359291077, - 0, - -0.32536259293556213, - 0, - -0.31843918561935425, - 0, - -0.3115204870700836, - 0, - -0.30464187264442444, - 0, - -0.2978333830833435, - 0, - -0.2911198139190674, - 0, - -0.32198765873908997, - 0, - -0.32925429940223694, - 0, - -0.33661285042762756, - 0, - -0.3440358340740204, - 0, - -0.35149040818214417, - 0, - -0.358938068151474, - 0, - -0.3663341999053955, - 0, - -0.3736279308795929, - 0, - -0.3807623088359833, - 0, - -0.38767436146736145, - 0, - -0.3942960798740387, - 0, - -0.40055519342422485, - 0, - -0.4063764214515686, - 0, - -0.4116837978363037, - 0, - -0.4164023995399475, - 0, - -0.4204609990119934, - 0, - -0.4237947165966034, - 0, - -0.4263477325439453, - 0, - -0.4280755817890167, - 0, - -0.42894747853279114, - 0, - -0.42894747853279114, - 0, - -0.4280755817890167, - 0, - -0.4263477325439453, - 0, - -0.4237947165966034, - 0, - -0.4204609990119934, - 0, - -0.4164023995399475, - 0, - -0.4116837978363037, - 0, - -0.4063764214515686, - 0, - -0.40055519342422485, - 0, - -0.3942960798740387, - 0, - -0.38767436146736145, - 0, - -0.3807623088359833, - 0, - -0.3736279308795929, - 0, - -0.3663341999053955, - 0, - -0.358938068151474, - 0, - -0.35149040818214417, - 0, - -0.3440358340740204, - 0, - -0.33661285042762756, - 0, - -0.32925429940223694, - 0, - -0.32198765873908997 - ] - } - ], - "layout": { - "hovermode": false, - "margin": { - "b": 10, - "l": 0, - "r": 0, - "t": 10 - }, - "scene": { - "xaxis": { - "showspikes": false, - "title": { - "text": "x" - } - }, - "yaxis": { - "showspikes": false, - "title": { - "text": "z" - } - }, - "zaxis": { - "showspikes": false, - "title": { - "text": "y" - } - } - }, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - } - } - }, - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# COLLAPSED\n", - "from nerfstudio.cameras.cameras import Cameras, CameraType\n", - "from nerfstudio.utils import plotly_utils as vis\n", - "\n", - "cx = 20.0\n", - "cy = 10.0\n", - "fx = 20.0\n", - "fy = 20.0\n", - "\n", - "c2w = torch.eye(4)[None, :3, :]\n", - "\n", - "camera = Cameras(fx=fx, fy=fy, cx=cx, cy=cy, camera_to_worlds=c2w, camera_type=CameraType.PERSPECTIVE)\n", - "fig = vis.vis_camera_rays(camera)\n", - "fig.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "tags": [] - }, - "source": [ - "## Fisheye Camera Model\n", - "\n", - "The spacing of rays on a fisheye camera is more even on the edges of the image (most noticeable in wide angle images). This makes them desirable for NeRF reconstructions.\n" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": { - "tags": [ - "hide-input" - ] - }, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "line": { - "color": "lightblue", - "width": 1 - }, - "marker": { - "color": [ - [ - 0.02500000037252903, - 0.02500000037252903, - 1 - ], - [ - 0.02500000037252903, - 0.02500000037252903, - 1 - ], - [ - 0.02500000037252903, - 0.07500000298023224, - 1 - ], - [ - 0.02500000037252903, - 0.07500000298023224, - 1 - ], - [ - 0.02500000037252903, - 0.125, - 1 - ], - [ - 0.02500000037252903, - 0.125, - 1 - ], - [ - 0.02500000037252903, - 0.17499999701976776, - 1 - ], - [ - 0.02500000037252903, - 0.17499999701976776, - 1 - ], - [ - 0.02500000037252903, - 0.22499999403953552, - 1 - ], - [ - 0.02500000037252903, - 0.22499999403953552, - 1 - ], - [ - 0.02500000037252903, - 0.2750000059604645, - 1 - ], - [ - 0.02500000037252903, - 0.2750000059604645, - 1 - ], - [ - 0.02500000037252903, - 0.32499998807907104, - 1 - ], - [ - 0.02500000037252903, - 0.32499998807907104, - 1 - ], - [ - 0.02500000037252903, - 0.375, - 1 - ], - [ - 0.02500000037252903, - 0.375, - 1 - ], - [ - 0.02500000037252903, - 0.42500001192092896, - 1 - ], - [ - 0.02500000037252903, - 0.42500001192092896, - 1 - ], - [ - 0.02500000037252903, - 0.4749999940395355, - 1 - ], - [ - 0.02500000037252903, - 0.4749999940395355, - 1 - ], - [ - 0.02500000037252903, - 0.5249999761581421, - 1 - ], - [ - 0.02500000037252903, - 0.5249999761581421, - 1 - ], - [ - 0.02500000037252903, - 0.574999988079071, - 1 - ], - [ - 0.02500000037252903, - 0.574999988079071, - 1 - ], - [ - 0.02500000037252903, - 0.625, - 1 - ], - [ - 0.02500000037252903, - 0.625, - 1 - ], - [ - 0.02500000037252903, - 0.675000011920929, - 1 - ], - [ - 0.02500000037252903, - 0.675000011920929, - 1 - ], - [ - 0.02500000037252903, - 0.7250000238418579, - 1 - ], - [ - 0.02500000037252903, - 0.7250000238418579, - 1 - ], - [ - 0.02500000037252903, - 0.7749999761581421, - 1 - ], - [ - 0.02500000037252903, - 0.7749999761581421, - 1 - ], - [ - 0.02500000037252903, - 0.824999988079071, - 1 - ], - [ - 0.02500000037252903, - 0.824999988079071, - 1 - ], - [ - 0.02500000037252903, - 0.875, - 1 - ], - [ - 0.02500000037252903, - 0.875, - 1 - ], - [ - 0.02500000037252903, - 0.925000011920929, - 1 - ], - [ - 0.02500000037252903, - 0.925000011920929, - 1 - ], - [ - 0.02500000037252903, - 0.9750000238418579, - 1 - ], - [ - 0.02500000037252903, - 0.9750000238418579, - 1 - ], - [ - 0.07500000298023224, - 0.02500000037252903, - 1 - ], - [ - 0.07500000298023224, - 0.02500000037252903, - 1 - ], - [ - 0.07500000298023224, - 0.07500000298023224, - 1 - ], - [ - 0.07500000298023224, - 0.07500000298023224, - 1 - ], - [ - 0.07500000298023224, - 0.125, - 1 - ], - [ - 0.07500000298023224, - 0.125, - 1 - ], - [ - 0.07500000298023224, - 0.17499999701976776, - 1 - ], - [ - 0.07500000298023224, - 0.17499999701976776, - 1 - ], - [ - 0.07500000298023224, - 0.22499999403953552, - 1 - ], - [ - 0.07500000298023224, - 0.22499999403953552, - 1 - ], - [ - 0.07500000298023224, - 0.2750000059604645, - 1 - ], - [ - 0.07500000298023224, - 0.2750000059604645, - 1 - ], - [ - 0.07500000298023224, - 0.32499998807907104, - 1 - ], - [ - 0.07500000298023224, - 0.32499998807907104, - 1 - ], - [ - 0.07500000298023224, - 0.375, - 1 - ], - [ - 0.07500000298023224, - 0.375, - 1 - ], - [ - 0.07500000298023224, - 0.42500001192092896, - 1 - ], - [ - 0.07500000298023224, - 0.42500001192092896, - 1 - ], - [ - 0.07500000298023224, - 0.4749999940395355, - 1 - ], - [ - 0.07500000298023224, - 0.4749999940395355, - 1 - ], - [ - 0.07500000298023224, - 0.5249999761581421, - 1 - ], - [ - 0.07500000298023224, - 0.5249999761581421, - 1 - ], - [ - 0.07500000298023224, - 0.574999988079071, - 1 - ], - [ - 0.07500000298023224, - 0.574999988079071, - 1 - ], - [ - 0.07500000298023224, - 0.625, - 1 - ], - [ - 0.07500000298023224, - 0.625, - 1 - ], - [ - 0.07500000298023224, - 0.675000011920929, - 1 - ], - [ - 0.07500000298023224, - 0.675000011920929, - 1 - ], - [ - 0.07500000298023224, - 0.7250000238418579, - 1 - ], - [ - 0.07500000298023224, - 0.7250000238418579, - 1 - ], - [ - 0.07500000298023224, - 0.7749999761581421, - 1 - ], - [ - 0.07500000298023224, - 0.7749999761581421, - 1 - ], - [ - 0.07500000298023224, - 0.824999988079071, - 1 - ], - [ - 0.07500000298023224, - 0.824999988079071, - 1 - ], - [ - 0.07500000298023224, - 0.875, - 1 - ], - [ - 0.07500000298023224, - 0.875, - 1 - ], - [ - 0.07500000298023224, - 0.925000011920929, - 1 - ], - [ - 0.07500000298023224, - 0.925000011920929, - 1 - ], - [ - 0.07500000298023224, - 0.9750000238418579, - 1 - ], - [ - 0.07500000298023224, - 0.9750000238418579, - 1 - ], - [ - 0.125, - 0.02500000037252903, - 1 - ], - [ - 0.125, - 0.02500000037252903, - 1 - ], - [ - 0.125, - 0.07500000298023224, - 1 - ], - [ - 0.125, - 0.07500000298023224, - 1 - ], - [ - 0.125, - 0.125, - 1 - ], - [ - 0.125, - 0.125, - 1 - ], - [ - 0.125, - 0.17499999701976776, - 1 - ], - [ - 0.125, - 0.17499999701976776, - 1 - ], - [ - 0.125, - 0.22499999403953552, - 1 - ], - [ - 0.125, - 0.22499999403953552, - 1 - ], - [ - 0.125, - 0.2750000059604645, - 1 - ], - [ - 0.125, - 0.2750000059604645, - 1 - ], - [ - 0.125, - 0.32499998807907104, - 1 - ], - [ - 0.125, - 0.32499998807907104, - 1 - ], - [ - 0.125, - 0.375, - 1 - ], - [ - 0.125, - 0.375, - 1 - ], - [ - 0.125, - 0.42500001192092896, - 1 - ], - [ - 0.125, - 0.42500001192092896, - 1 - ], - [ - 0.125, - 0.4749999940395355, - 1 - ], - [ - 0.125, - 0.4749999940395355, - 1 - ], - [ - 0.125, - 0.5249999761581421, - 1 - ], - [ - 0.125, - 0.5249999761581421, - 1 - ], - [ - 0.125, - 0.574999988079071, - 1 - ], - [ - 0.125, - 0.574999988079071, - 1 - ], - [ - 0.125, - 0.625, - 1 - ], - [ - 0.125, - 0.625, - 1 - ], - [ - 0.125, - 0.675000011920929, - 1 - ], - [ - 0.125, - 0.675000011920929, - 1 - ], - [ - 0.125, - 0.7250000238418579, - 1 - ], - [ - 0.125, - 0.7250000238418579, - 1 - ], - [ - 0.125, - 0.7749999761581421, - 1 - ], - [ - 0.125, - 0.7749999761581421, - 1 - ], - [ - 0.125, - 0.824999988079071, - 1 - ], - [ - 0.125, - 0.824999988079071, - 1 - ], - [ - 0.125, - 0.875, - 1 - ], - [ - 0.125, - 0.875, - 1 - ], - [ - 0.125, - 0.925000011920929, - 1 - ], - [ - 0.125, - 0.925000011920929, - 1 - ], - [ - 0.125, - 0.9750000238418579, - 1 - ], - [ - 0.125, - 0.9750000238418579, - 1 - ], - [ - 0.17499999701976776, - 0.02500000037252903, - 1 - ], - [ - 0.17499999701976776, - 0.02500000037252903, - 1 - ], - [ - 0.17499999701976776, - 0.07500000298023224, - 1 - ], - [ - 0.17499999701976776, - 0.07500000298023224, - 1 - ], - [ - 0.17499999701976776, - 0.125, - 1 - ], - [ - 0.17499999701976776, - 0.125, - 1 - ], - [ - 0.17499999701976776, - 0.17499999701976776, - 1 - ], - [ - 0.17499999701976776, - 0.17499999701976776, - 1 - ], - [ - 0.17499999701976776, - 0.22499999403953552, - 1 - ], - [ - 0.17499999701976776, - 0.22499999403953552, - 1 - ], - [ - 0.17499999701976776, - 0.2750000059604645, - 1 - ], - [ - 0.17499999701976776, - 0.2750000059604645, - 1 - ], - [ - 0.17499999701976776, - 0.32499998807907104, - 1 - ], - [ - 0.17499999701976776, - 0.32499998807907104, - 1 - ], - [ - 0.17499999701976776, - 0.375, - 1 - ], - [ - 0.17499999701976776, - 0.375, - 1 - ], - [ - 0.17499999701976776, - 0.42500001192092896, - 1 - ], - [ - 0.17499999701976776, - 0.42500001192092896, - 1 - ], - [ - 0.17499999701976776, - 0.4749999940395355, - 1 - ], - [ - 0.17499999701976776, - 0.4749999940395355, - 1 - ], - [ - 0.17499999701976776, - 0.5249999761581421, - 1 - ], - [ - 0.17499999701976776, - 0.5249999761581421, - 1 - ], - [ - 0.17499999701976776, - 0.574999988079071, - 1 - ], - [ - 0.17499999701976776, - 0.574999988079071, - 1 - ], - [ - 0.17499999701976776, - 0.625, - 1 - ], - [ - 0.17499999701976776, - 0.625, - 1 - ], - [ - 0.17499999701976776, - 0.675000011920929, - 1 - ], - [ - 0.17499999701976776, - 0.675000011920929, - 1 - ], - [ - 0.17499999701976776, - 0.7250000238418579, - 1 - ], - [ - 0.17499999701976776, - 0.7250000238418579, - 1 - ], - [ - 0.17499999701976776, - 0.7749999761581421, - 1 - ], - [ - 0.17499999701976776, - 0.7749999761581421, - 1 - ], - [ - 0.17499999701976776, - 0.824999988079071, - 1 - ], - [ - 0.17499999701976776, - 0.824999988079071, - 1 - ], - [ - 0.17499999701976776, - 0.875, - 1 - ], - [ - 0.17499999701976776, - 0.875, - 1 - ], - [ - 0.17499999701976776, - 0.925000011920929, - 1 - ], - [ - 0.17499999701976776, - 0.925000011920929, - 1 - ], - [ - 0.17499999701976776, - 0.9750000238418579, - 1 - ], - [ - 0.17499999701976776, - 0.9750000238418579, - 1 - ], - [ - 0.22499999403953552, - 0.02500000037252903, - 1 - ], - [ - 0.22499999403953552, - 0.02500000037252903, - 1 - ], - [ - 0.22499999403953552, - 0.07500000298023224, - 1 - ], - [ - 0.22499999403953552, - 0.07500000298023224, - 1 - ], - [ - 0.22499999403953552, - 0.125, - 1 - ], - [ - 0.22499999403953552, - 0.125, - 1 - ], - [ - 0.22499999403953552, - 0.17499999701976776, - 1 - ], - [ - 0.22499999403953552, - 0.17499999701976776, - 1 - ], - [ - 0.22499999403953552, - 0.22499999403953552, - 1 - ], - [ - 0.22499999403953552, - 0.22499999403953552, - 1 - ], - [ - 0.22499999403953552, - 0.2750000059604645, - 1 - ], - [ - 0.22499999403953552, - 0.2750000059604645, - 1 - ], - [ - 0.22499999403953552, - 0.32499998807907104, - 1 - ], - [ - 0.22499999403953552, - 0.32499998807907104, - 1 - ], - [ - 0.22499999403953552, - 0.375, - 1 - ], - [ - 0.22499999403953552, - 0.375, - 1 - ], - [ - 0.22499999403953552, - 0.42500001192092896, - 1 - ], - [ - 0.22499999403953552, - 0.42500001192092896, - 1 - ], - [ - 0.22499999403953552, - 0.4749999940395355, - 1 - ], - [ - 0.22499999403953552, - 0.4749999940395355, - 1 - ], - [ - 0.22499999403953552, - 0.5249999761581421, - 1 - ], - [ - 0.22499999403953552, - 0.5249999761581421, - 1 - ], - [ - 0.22499999403953552, - 0.574999988079071, - 1 - ], - [ - 0.22499999403953552, - 0.574999988079071, - 1 - ], - [ - 0.22499999403953552, - 0.625, - 1 - ], - [ - 0.22499999403953552, - 0.625, - 1 - ], - [ - 0.22499999403953552, - 0.675000011920929, - 1 - ], - [ - 0.22499999403953552, - 0.675000011920929, - 1 - ], - [ - 0.22499999403953552, - 0.7250000238418579, - 1 - ], - [ - 0.22499999403953552, - 0.7250000238418579, - 1 - ], - [ - 0.22499999403953552, - 0.7749999761581421, - 1 - ], - [ - 0.22499999403953552, - 0.7749999761581421, - 1 - ], - [ - 0.22499999403953552, - 0.824999988079071, - 1 - ], - [ - 0.22499999403953552, - 0.824999988079071, - 1 - ], - [ - 0.22499999403953552, - 0.875, - 1 - ], - [ - 0.22499999403953552, - 0.875, - 1 - ], - [ - 0.22499999403953552, - 0.925000011920929, - 1 - ], - [ - 0.22499999403953552, - 0.925000011920929, - 1 - ], - [ - 0.22499999403953552, - 0.9750000238418579, - 1 - ], - [ - 0.22499999403953552, - 0.9750000238418579, - 1 - ], - [ - 0.2750000059604645, - 0.02500000037252903, - 1 - ], - [ - 0.2750000059604645, - 0.02500000037252903, - 1 - ], - [ - 0.2750000059604645, - 0.07500000298023224, - 1 - ], - [ - 0.2750000059604645, - 0.07500000298023224, - 1 - ], - [ - 0.2750000059604645, - 0.125, - 1 - ], - [ - 0.2750000059604645, - 0.125, - 1 - ], - [ - 0.2750000059604645, - 0.17499999701976776, - 1 - ], - [ - 0.2750000059604645, - 0.17499999701976776, - 1 - ], - [ - 0.2750000059604645, - 0.22499999403953552, - 1 - ], - [ - 0.2750000059604645, - 0.22499999403953552, - 1 - ], - [ - 0.2750000059604645, - 0.2750000059604645, - 1 - ], - [ - 0.2750000059604645, - 0.2750000059604645, - 1 - ], - [ - 0.2750000059604645, - 0.32499998807907104, - 1 - ], - [ - 0.2750000059604645, - 0.32499998807907104, - 1 - ], - [ - 0.2750000059604645, - 0.375, - 1 - ], - [ - 0.2750000059604645, - 0.375, - 1 - ], - [ - 0.2750000059604645, - 0.42500001192092896, - 1 - ], - [ - 0.2750000059604645, - 0.42500001192092896, - 1 - ], - [ - 0.2750000059604645, - 0.4749999940395355, - 1 - ], - [ - 0.2750000059604645, - 0.4749999940395355, - 1 - ], - [ - 0.2750000059604645, - 0.5249999761581421, - 1 - ], - [ - 0.2750000059604645, - 0.5249999761581421, - 1 - ], - [ - 0.2750000059604645, - 0.574999988079071, - 1 - ], - [ - 0.2750000059604645, - 0.574999988079071, - 1 - ], - [ - 0.2750000059604645, - 0.625, - 1 - ], - [ - 0.2750000059604645, - 0.625, - 1 - ], - [ - 0.2750000059604645, - 0.675000011920929, - 1 - ], - [ - 0.2750000059604645, - 0.675000011920929, - 1 - ], - [ - 0.2750000059604645, - 0.7250000238418579, - 1 - ], - [ - 0.2750000059604645, - 0.7250000238418579, - 1 - ], - [ - 0.2750000059604645, - 0.7749999761581421, - 1 - ], - [ - 0.2750000059604645, - 0.7749999761581421, - 1 - ], - [ - 0.2750000059604645, - 0.824999988079071, - 1 - ], - [ - 0.2750000059604645, - 0.824999988079071, - 1 - ], - [ - 0.2750000059604645, - 0.875, - 1 - ], - [ - 0.2750000059604645, - 0.875, - 1 - ], - [ - 0.2750000059604645, - 0.925000011920929, - 1 - ], - [ - 0.2750000059604645, - 0.925000011920929, - 1 - ], - [ - 0.2750000059604645, - 0.9750000238418579, - 1 - ], - [ - 0.2750000059604645, - 0.9750000238418579, - 1 - ], - [ - 0.32499998807907104, - 0.02500000037252903, - 1 - ], - [ - 0.32499998807907104, - 0.02500000037252903, - 1 - ], - [ - 0.32499998807907104, - 0.07500000298023224, - 1 - ], - [ - 0.32499998807907104, - 0.07500000298023224, - 1 - ], - [ - 0.32499998807907104, - 0.125, - 1 - ], - [ - 0.32499998807907104, - 0.125, - 1 - ], - [ - 0.32499998807907104, - 0.17499999701976776, - 1 - ], - [ - 0.32499998807907104, - 0.17499999701976776, - 1 - ], - [ - 0.32499998807907104, - 0.22499999403953552, - 1 - ], - [ - 0.32499998807907104, - 0.22499999403953552, - 1 - ], - [ - 0.32499998807907104, - 0.2750000059604645, - 1 - ], - [ - 0.32499998807907104, - 0.2750000059604645, - 1 - ], - [ - 0.32499998807907104, - 0.32499998807907104, - 1 - ], - [ - 0.32499998807907104, - 0.32499998807907104, - 1 - ], - [ - 0.32499998807907104, - 0.375, - 1 - ], - [ - 0.32499998807907104, - 0.375, - 1 - ], - [ - 0.32499998807907104, - 0.42500001192092896, - 1 - ], - [ - 0.32499998807907104, - 0.42500001192092896, - 1 - ], - [ - 0.32499998807907104, - 0.4749999940395355, - 1 - ], - [ - 0.32499998807907104, - 0.4749999940395355, - 1 - ], - [ - 0.32499998807907104, - 0.5249999761581421, - 1 - ], - [ - 0.32499998807907104, - 0.5249999761581421, - 1 - ], - [ - 0.32499998807907104, - 0.574999988079071, - 1 - ], - [ - 0.32499998807907104, - 0.574999988079071, - 1 - ], - [ - 0.32499998807907104, - 0.625, - 1 - ], - [ - 0.32499998807907104, - 0.625, - 1 - ], - [ - 0.32499998807907104, - 0.675000011920929, - 1 - ], - [ - 0.32499998807907104, - 0.675000011920929, - 1 - ], - [ - 0.32499998807907104, - 0.7250000238418579, - 1 - ], - [ - 0.32499998807907104, - 0.7250000238418579, - 1 - ], - [ - 0.32499998807907104, - 0.7749999761581421, - 1 - ], - [ - 0.32499998807907104, - 0.7749999761581421, - 1 - ], - [ - 0.32499998807907104, - 0.824999988079071, - 1 - ], - [ - 0.32499998807907104, - 0.824999988079071, - 1 - ], - [ - 0.32499998807907104, - 0.875, - 1 - ], - [ - 0.32499998807907104, - 0.875, - 1 - ], - [ - 0.32499998807907104, - 0.925000011920929, - 1 - ], - [ - 0.32499998807907104, - 0.925000011920929, - 1 - ], - [ - 0.32499998807907104, - 0.9750000238418579, - 1 - ], - [ - 0.32499998807907104, - 0.9750000238418579, - 1 - ], - [ - 0.375, - 0.02500000037252903, - 1 - ], - [ - 0.375, - 0.02500000037252903, - 1 - ], - [ - 0.375, - 0.07500000298023224, - 1 - ], - [ - 0.375, - 0.07500000298023224, - 1 - ], - [ - 0.375, - 0.125, - 1 - ], - [ - 0.375, - 0.125, - 1 - ], - [ - 0.375, - 0.17499999701976776, - 1 - ], - [ - 0.375, - 0.17499999701976776, - 1 - ], - [ - 0.375, - 0.22499999403953552, - 1 - ], - [ - 0.375, - 0.22499999403953552, - 1 - ], - [ - 0.375, - 0.2750000059604645, - 1 - ], - [ - 0.375, - 0.2750000059604645, - 1 - ], - [ - 0.375, - 0.32499998807907104, - 1 - ], - [ - 0.375, - 0.32499998807907104, - 1 - ], - [ - 0.375, - 0.375, - 1 - ], - [ - 0.375, - 0.375, - 1 - ], - [ - 0.375, - 0.42500001192092896, - 1 - ], - [ - 0.375, - 0.42500001192092896, - 1 - ], - [ - 0.375, - 0.4749999940395355, - 1 - ], - [ - 0.375, - 0.4749999940395355, - 1 - ], - [ - 0.375, - 0.5249999761581421, - 1 - ], - [ - 0.375, - 0.5249999761581421, - 1 - ], - [ - 0.375, - 0.574999988079071, - 1 - ], - [ - 0.375, - 0.574999988079071, - 1 - ], - [ - 0.375, - 0.625, - 1 - ], - [ - 0.375, - 0.625, - 1 - ], - [ - 0.375, - 0.675000011920929, - 1 - ], - [ - 0.375, - 0.675000011920929, - 1 - ], - [ - 0.375, - 0.7250000238418579, - 1 - ], - [ - 0.375, - 0.7250000238418579, - 1 - ], - [ - 0.375, - 0.7749999761581421, - 1 - ], - [ - 0.375, - 0.7749999761581421, - 1 - ], - [ - 0.375, - 0.824999988079071, - 1 - ], - [ - 0.375, - 0.824999988079071, - 1 - ], - [ - 0.375, - 0.875, - 1 - ], - [ - 0.375, - 0.875, - 1 - ], - [ - 0.375, - 0.925000011920929, - 1 - ], - [ - 0.375, - 0.925000011920929, - 1 - ], - [ - 0.375, - 0.9750000238418579, - 1 - ], - [ - 0.375, - 0.9750000238418579, - 1 - ], - [ - 0.42500001192092896, - 0.02500000037252903, - 1 - ], - [ - 0.42500001192092896, - 0.02500000037252903, - 1 - ], - [ - 0.42500001192092896, - 0.07500000298023224, - 1 - ], - [ - 0.42500001192092896, - 0.07500000298023224, - 1 - ], - [ - 0.42500001192092896, - 0.125, - 1 - ], - [ - 0.42500001192092896, - 0.125, - 1 - ], - [ - 0.42500001192092896, - 0.17499999701976776, - 1 - ], - [ - 0.42500001192092896, - 0.17499999701976776, - 1 - ], - [ - 0.42500001192092896, - 0.22499999403953552, - 1 - ], - [ - 0.42500001192092896, - 0.22499999403953552, - 1 - ], - [ - 0.42500001192092896, - 0.2750000059604645, - 1 - ], - [ - 0.42500001192092896, - 0.2750000059604645, - 1 - ], - [ - 0.42500001192092896, - 0.32499998807907104, - 1 - ], - [ - 0.42500001192092896, - 0.32499998807907104, - 1 - ], - [ - 0.42500001192092896, - 0.375, - 1 - ], - [ - 0.42500001192092896, - 0.375, - 1 - ], - [ - 0.42500001192092896, - 0.42500001192092896, - 1 - ], - [ - 0.42500001192092896, - 0.42500001192092896, - 1 - ], - [ - 0.42500001192092896, - 0.4749999940395355, - 1 - ], - [ - 0.42500001192092896, - 0.4749999940395355, - 1 - ], - [ - 0.42500001192092896, - 0.5249999761581421, - 1 - ], - [ - 0.42500001192092896, - 0.5249999761581421, - 1 - ], - [ - 0.42500001192092896, - 0.574999988079071, - 1 - ], - [ - 0.42500001192092896, - 0.574999988079071, - 1 - ], - [ - 0.42500001192092896, - 0.625, - 1 - ], - [ - 0.42500001192092896, - 0.625, - 1 - ], - [ - 0.42500001192092896, - 0.675000011920929, - 1 - ], - [ - 0.42500001192092896, - 0.675000011920929, - 1 - ], - [ - 0.42500001192092896, - 0.7250000238418579, - 1 - ], - [ - 0.42500001192092896, - 0.7250000238418579, - 1 - ], - [ - 0.42500001192092896, - 0.7749999761581421, - 1 - ], - [ - 0.42500001192092896, - 0.7749999761581421, - 1 - ], - [ - 0.42500001192092896, - 0.824999988079071, - 1 - ], - [ - 0.42500001192092896, - 0.824999988079071, - 1 - ], - [ - 0.42500001192092896, - 0.875, - 1 - ], - [ - 0.42500001192092896, - 0.875, - 1 - ], - [ - 0.42500001192092896, - 0.925000011920929, - 1 - ], - [ - 0.42500001192092896, - 0.925000011920929, - 1 - ], - [ - 0.42500001192092896, - 0.9750000238418579, - 1 - ], - [ - 0.42500001192092896, - 0.9750000238418579, - 1 - ], - [ - 0.4749999940395355, - 0.02500000037252903, - 1 - ], - [ - 0.4749999940395355, - 0.02500000037252903, - 1 - ], - [ - 0.4749999940395355, - 0.07500000298023224, - 1 - ], - [ - 0.4749999940395355, - 0.07500000298023224, - 1 - ], - [ - 0.4749999940395355, - 0.125, - 1 - ], - [ - 0.4749999940395355, - 0.125, - 1 - ], - [ - 0.4749999940395355, - 0.17499999701976776, - 1 - ], - [ - 0.4749999940395355, - 0.17499999701976776, - 1 - ], - [ - 0.4749999940395355, - 0.22499999403953552, - 1 - ], - [ - 0.4749999940395355, - 0.22499999403953552, - 1 - ], - [ - 0.4749999940395355, - 0.2750000059604645, - 1 - ], - [ - 0.4749999940395355, - 0.2750000059604645, - 1 - ], - [ - 0.4749999940395355, - 0.32499998807907104, - 1 - ], - [ - 0.4749999940395355, - 0.32499998807907104, - 1 - ], - [ - 0.4749999940395355, - 0.375, - 1 - ], - [ - 0.4749999940395355, - 0.375, - 1 - ], - [ - 0.4749999940395355, - 0.42500001192092896, - 1 - ], - [ - 0.4749999940395355, - 0.42500001192092896, - 1 - ], - [ - 0.4749999940395355, - 0.4749999940395355, - 1 - ], - [ - 0.4749999940395355, - 0.4749999940395355, - 1 - ], - [ - 0.4749999940395355, - 0.5249999761581421, - 1 - ], - [ - 0.4749999940395355, - 0.5249999761581421, - 1 - ], - [ - 0.4749999940395355, - 0.574999988079071, - 1 - ], - [ - 0.4749999940395355, - 0.574999988079071, - 1 - ], - [ - 0.4749999940395355, - 0.625, - 1 - ], - [ - 0.4749999940395355, - 0.625, - 1 - ], - [ - 0.4749999940395355, - 0.675000011920929, - 1 - ], - [ - 0.4749999940395355, - 0.675000011920929, - 1 - ], - [ - 0.4749999940395355, - 0.7250000238418579, - 1 - ], - [ - 0.4749999940395355, - 0.7250000238418579, - 1 - ], - [ - 0.4749999940395355, - 0.7749999761581421, - 1 - ], - [ - 0.4749999940395355, - 0.7749999761581421, - 1 - ], - [ - 0.4749999940395355, - 0.824999988079071, - 1 - ], - [ - 0.4749999940395355, - 0.824999988079071, - 1 - ], - [ - 0.4749999940395355, - 0.875, - 1 - ], - [ - 0.4749999940395355, - 0.875, - 1 - ], - [ - 0.4749999940395355, - 0.925000011920929, - 1 - ], - [ - 0.4749999940395355, - 0.925000011920929, - 1 - ], - [ - 0.4749999940395355, - 0.9750000238418579, - 1 - ], - [ - 0.4749999940395355, - 0.9750000238418579, - 1 - ], - [ - 0.5249999761581421, - 0.02500000037252903, - 1 - ], - [ - 0.5249999761581421, - 0.02500000037252903, - 1 - ], - [ - 0.5249999761581421, - 0.07500000298023224, - 1 - ], - [ - 0.5249999761581421, - 0.07500000298023224, - 1 - ], - [ - 0.5249999761581421, - 0.125, - 1 - ], - [ - 0.5249999761581421, - 0.125, - 1 - ], - [ - 0.5249999761581421, - 0.17499999701976776, - 1 - ], - [ - 0.5249999761581421, - 0.17499999701976776, - 1 - ], - [ - 0.5249999761581421, - 0.22499999403953552, - 1 - ], - [ - 0.5249999761581421, - 0.22499999403953552, - 1 - ], - [ - 0.5249999761581421, - 0.2750000059604645, - 1 - ], - [ - 0.5249999761581421, - 0.2750000059604645, - 1 - ], - [ - 0.5249999761581421, - 0.32499998807907104, - 1 - ], - [ - 0.5249999761581421, - 0.32499998807907104, - 1 - ], - [ - 0.5249999761581421, - 0.375, - 1 - ], - [ - 0.5249999761581421, - 0.375, - 1 - ], - [ - 0.5249999761581421, - 0.42500001192092896, - 1 - ], - [ - 0.5249999761581421, - 0.42500001192092896, - 1 - ], - [ - 0.5249999761581421, - 0.4749999940395355, - 1 - ], - [ - 0.5249999761581421, - 0.4749999940395355, - 1 - ], - [ - 0.5249999761581421, - 0.5249999761581421, - 1 - ], - [ - 0.5249999761581421, - 0.5249999761581421, - 1 - ], - [ - 0.5249999761581421, - 0.574999988079071, - 1 - ], - [ - 0.5249999761581421, - 0.574999988079071, - 1 - ], - [ - 0.5249999761581421, - 0.625, - 1 - ], - [ - 0.5249999761581421, - 0.625, - 1 - ], - [ - 0.5249999761581421, - 0.675000011920929, - 1 - ], - [ - 0.5249999761581421, - 0.675000011920929, - 1 - ], - [ - 0.5249999761581421, - 0.7250000238418579, - 1 - ], - [ - 0.5249999761581421, - 0.7250000238418579, - 1 - ], - [ - 0.5249999761581421, - 0.7749999761581421, - 1 - ], - [ - 0.5249999761581421, - 0.7749999761581421, - 1 - ], - [ - 0.5249999761581421, - 0.824999988079071, - 1 - ], - [ - 0.5249999761581421, - 0.824999988079071, - 1 - ], - [ - 0.5249999761581421, - 0.875, - 1 - ], - [ - 0.5249999761581421, - 0.875, - 1 - ], - [ - 0.5249999761581421, - 0.925000011920929, - 1 - ], - [ - 0.5249999761581421, - 0.925000011920929, - 1 - ], - [ - 0.5249999761581421, - 0.9750000238418579, - 1 - ], - [ - 0.5249999761581421, - 0.9750000238418579, - 1 - ], - [ - 0.574999988079071, - 0.02500000037252903, - 1 - ], - [ - 0.574999988079071, - 0.02500000037252903, - 1 - ], - [ - 0.574999988079071, - 0.07500000298023224, - 1 - ], - [ - 0.574999988079071, - 0.07500000298023224, - 1 - ], - [ - 0.574999988079071, - 0.125, - 1 - ], - [ - 0.574999988079071, - 0.125, - 1 - ], - [ - 0.574999988079071, - 0.17499999701976776, - 1 - ], - [ - 0.574999988079071, - 0.17499999701976776, - 1 - ], - [ - 0.574999988079071, - 0.22499999403953552, - 1 - ], - [ - 0.574999988079071, - 0.22499999403953552, - 1 - ], - [ - 0.574999988079071, - 0.2750000059604645, - 1 - ], - [ - 0.574999988079071, - 0.2750000059604645, - 1 - ], - [ - 0.574999988079071, - 0.32499998807907104, - 1 - ], - [ - 0.574999988079071, - 0.32499998807907104, - 1 - ], - [ - 0.574999988079071, - 0.375, - 1 - ], - [ - 0.574999988079071, - 0.375, - 1 - ], - [ - 0.574999988079071, - 0.42500001192092896, - 1 - ], - [ - 0.574999988079071, - 0.42500001192092896, - 1 - ], - [ - 0.574999988079071, - 0.4749999940395355, - 1 - ], - [ - 0.574999988079071, - 0.4749999940395355, - 1 - ], - [ - 0.574999988079071, - 0.5249999761581421, - 1 - ], - [ - 0.574999988079071, - 0.5249999761581421, - 1 - ], - [ - 0.574999988079071, - 0.574999988079071, - 1 - ], - [ - 0.574999988079071, - 0.574999988079071, - 1 - ], - [ - 0.574999988079071, - 0.625, - 1 - ], - [ - 0.574999988079071, - 0.625, - 1 - ], - [ - 0.574999988079071, - 0.675000011920929, - 1 - ], - [ - 0.574999988079071, - 0.675000011920929, - 1 - ], - [ - 0.574999988079071, - 0.7250000238418579, - 1 - ], - [ - 0.574999988079071, - 0.7250000238418579, - 1 - ], - [ - 0.574999988079071, - 0.7749999761581421, - 1 - ], - [ - 0.574999988079071, - 0.7749999761581421, - 1 - ], - [ - 0.574999988079071, - 0.824999988079071, - 1 - ], - [ - 0.574999988079071, - 0.824999988079071, - 1 - ], - [ - 0.574999988079071, - 0.875, - 1 - ], - [ - 0.574999988079071, - 0.875, - 1 - ], - [ - 0.574999988079071, - 0.925000011920929, - 1 - ], - [ - 0.574999988079071, - 0.925000011920929, - 1 - ], - [ - 0.574999988079071, - 0.9750000238418579, - 1 - ], - [ - 0.574999988079071, - 0.9750000238418579, - 1 - ], - [ - 0.625, - 0.02500000037252903, - 1 - ], - [ - 0.625, - 0.02500000037252903, - 1 - ], - [ - 0.625, - 0.07500000298023224, - 1 - ], - [ - 0.625, - 0.07500000298023224, - 1 - ], - [ - 0.625, - 0.125, - 1 - ], - [ - 0.625, - 0.125, - 1 - ], - [ - 0.625, - 0.17499999701976776, - 1 - ], - [ - 0.625, - 0.17499999701976776, - 1 - ], - [ - 0.625, - 0.22499999403953552, - 1 - ], - [ - 0.625, - 0.22499999403953552, - 1 - ], - [ - 0.625, - 0.2750000059604645, - 1 - ], - [ - 0.625, - 0.2750000059604645, - 1 - ], - [ - 0.625, - 0.32499998807907104, - 1 - ], - [ - 0.625, - 0.32499998807907104, - 1 - ], - [ - 0.625, - 0.375, - 1 - ], - [ - 0.625, - 0.375, - 1 - ], - [ - 0.625, - 0.42500001192092896, - 1 - ], - [ - 0.625, - 0.42500001192092896, - 1 - ], - [ - 0.625, - 0.4749999940395355, - 1 - ], - [ - 0.625, - 0.4749999940395355, - 1 - ], - [ - 0.625, - 0.5249999761581421, - 1 - ], - [ - 0.625, - 0.5249999761581421, - 1 - ], - [ - 0.625, - 0.574999988079071, - 1 - ], - [ - 0.625, - 0.574999988079071, - 1 - ], - [ - 0.625, - 0.625, - 1 - ], - [ - 0.625, - 0.625, - 1 - ], - [ - 0.625, - 0.675000011920929, - 1 - ], - [ - 0.625, - 0.675000011920929, - 1 - ], - [ - 0.625, - 0.7250000238418579, - 1 - ], - [ - 0.625, - 0.7250000238418579, - 1 - ], - [ - 0.625, - 0.7749999761581421, - 1 - ], - [ - 0.625, - 0.7749999761581421, - 1 - ], - [ - 0.625, - 0.824999988079071, - 1 - ], - [ - 0.625, - 0.824999988079071, - 1 - ], - [ - 0.625, - 0.875, - 1 - ], - [ - 0.625, - 0.875, - 1 - ], - [ - 0.625, - 0.925000011920929, - 1 - ], - [ - 0.625, - 0.925000011920929, - 1 - ], - [ - 0.625, - 0.9750000238418579, - 1 - ], - [ - 0.625, - 0.9750000238418579, - 1 - ], - [ - 0.675000011920929, - 0.02500000037252903, - 1 - ], - [ - 0.675000011920929, - 0.02500000037252903, - 1 - ], - [ - 0.675000011920929, - 0.07500000298023224, - 1 - ], - [ - 0.675000011920929, - 0.07500000298023224, - 1 - ], - [ - 0.675000011920929, - 0.125, - 1 - ], - [ - 0.675000011920929, - 0.125, - 1 - ], - [ - 0.675000011920929, - 0.17499999701976776, - 1 - ], - [ - 0.675000011920929, - 0.17499999701976776, - 1 - ], - [ - 0.675000011920929, - 0.22499999403953552, - 1 - ], - [ - 0.675000011920929, - 0.22499999403953552, - 1 - ], - [ - 0.675000011920929, - 0.2750000059604645, - 1 - ], - [ - 0.675000011920929, - 0.2750000059604645, - 1 - ], - [ - 0.675000011920929, - 0.32499998807907104, - 1 - ], - [ - 0.675000011920929, - 0.32499998807907104, - 1 - ], - [ - 0.675000011920929, - 0.375, - 1 - ], - [ - 0.675000011920929, - 0.375, - 1 - ], - [ - 0.675000011920929, - 0.42500001192092896, - 1 - ], - [ - 0.675000011920929, - 0.42500001192092896, - 1 - ], - [ - 0.675000011920929, - 0.4749999940395355, - 1 - ], - [ - 0.675000011920929, - 0.4749999940395355, - 1 - ], - [ - 0.675000011920929, - 0.5249999761581421, - 1 - ], - [ - 0.675000011920929, - 0.5249999761581421, - 1 - ], - [ - 0.675000011920929, - 0.574999988079071, - 1 - ], - [ - 0.675000011920929, - 0.574999988079071, - 1 - ], - [ - 0.675000011920929, - 0.625, - 1 - ], - [ - 0.675000011920929, - 0.625, - 1 - ], - [ - 0.675000011920929, - 0.675000011920929, - 1 - ], - [ - 0.675000011920929, - 0.675000011920929, - 1 - ], - [ - 0.675000011920929, - 0.7250000238418579, - 1 - ], - [ - 0.675000011920929, - 0.7250000238418579, - 1 - ], - [ - 0.675000011920929, - 0.7749999761581421, - 1 - ], - [ - 0.675000011920929, - 0.7749999761581421, - 1 - ], - [ - 0.675000011920929, - 0.824999988079071, - 1 - ], - [ - 0.675000011920929, - 0.824999988079071, - 1 - ], - [ - 0.675000011920929, - 0.875, - 1 - ], - [ - 0.675000011920929, - 0.875, - 1 - ], - [ - 0.675000011920929, - 0.925000011920929, - 1 - ], - [ - 0.675000011920929, - 0.925000011920929, - 1 - ], - [ - 0.675000011920929, - 0.9750000238418579, - 1 - ], - [ - 0.675000011920929, - 0.9750000238418579, - 1 - ], - [ - 0.7250000238418579, - 0.02500000037252903, - 1 - ], - [ - 0.7250000238418579, - 0.02500000037252903, - 1 - ], - [ - 0.7250000238418579, - 0.07500000298023224, - 1 - ], - [ - 0.7250000238418579, - 0.07500000298023224, - 1 - ], - [ - 0.7250000238418579, - 0.125, - 1 - ], - [ - 0.7250000238418579, - 0.125, - 1 - ], - [ - 0.7250000238418579, - 0.17499999701976776, - 1 - ], - [ - 0.7250000238418579, - 0.17499999701976776, - 1 - ], - [ - 0.7250000238418579, - 0.22499999403953552, - 1 - ], - [ - 0.7250000238418579, - 0.22499999403953552, - 1 - ], - [ - 0.7250000238418579, - 0.2750000059604645, - 1 - ], - [ - 0.7250000238418579, - 0.2750000059604645, - 1 - ], - [ - 0.7250000238418579, - 0.32499998807907104, - 1 - ], - [ - 0.7250000238418579, - 0.32499998807907104, - 1 - ], - [ - 0.7250000238418579, - 0.375, - 1 - ], - [ - 0.7250000238418579, - 0.375, - 1 - ], - [ - 0.7250000238418579, - 0.42500001192092896, - 1 - ], - [ - 0.7250000238418579, - 0.42500001192092896, - 1 - ], - [ - 0.7250000238418579, - 0.4749999940395355, - 1 - ], - [ - 0.7250000238418579, - 0.4749999940395355, - 1 - ], - [ - 0.7250000238418579, - 0.5249999761581421, - 1 - ], - [ - 0.7250000238418579, - 0.5249999761581421, - 1 - ], - [ - 0.7250000238418579, - 0.574999988079071, - 1 - ], - [ - 0.7250000238418579, - 0.574999988079071, - 1 - ], - [ - 0.7250000238418579, - 0.625, - 1 - ], - [ - 0.7250000238418579, - 0.625, - 1 - ], - [ - 0.7250000238418579, - 0.675000011920929, - 1 - ], - [ - 0.7250000238418579, - 0.675000011920929, - 1 - ], - [ - 0.7250000238418579, - 0.7250000238418579, - 1 - ], - [ - 0.7250000238418579, - 0.7250000238418579, - 1 - ], - [ - 0.7250000238418579, - 0.7749999761581421, - 1 - ], - [ - 0.7250000238418579, - 0.7749999761581421, - 1 - ], - [ - 0.7250000238418579, - 0.824999988079071, - 1 - ], - [ - 0.7250000238418579, - 0.824999988079071, - 1 - ], - [ - 0.7250000238418579, - 0.875, - 1 - ], - [ - 0.7250000238418579, - 0.875, - 1 - ], - [ - 0.7250000238418579, - 0.925000011920929, - 1 - ], - [ - 0.7250000238418579, - 0.925000011920929, - 1 - ], - [ - 0.7250000238418579, - 0.9750000238418579, - 1 - ], - [ - 0.7250000238418579, - 0.9750000238418579, - 1 - ], - [ - 0.7749999761581421, - 0.02500000037252903, - 1 - ], - [ - 0.7749999761581421, - 0.02500000037252903, - 1 - ], - [ - 0.7749999761581421, - 0.07500000298023224, - 1 - ], - [ - 0.7749999761581421, - 0.07500000298023224, - 1 - ], - [ - 0.7749999761581421, - 0.125, - 1 - ], - [ - 0.7749999761581421, - 0.125, - 1 - ], - [ - 0.7749999761581421, - 0.17499999701976776, - 1 - ], - [ - 0.7749999761581421, - 0.17499999701976776, - 1 - ], - [ - 0.7749999761581421, - 0.22499999403953552, - 1 - ], - [ - 0.7749999761581421, - 0.22499999403953552, - 1 - ], - [ - 0.7749999761581421, - 0.2750000059604645, - 1 - ], - [ - 0.7749999761581421, - 0.2750000059604645, - 1 - ], - [ - 0.7749999761581421, - 0.32499998807907104, - 1 - ], - [ - 0.7749999761581421, - 0.32499998807907104, - 1 - ], - [ - 0.7749999761581421, - 0.375, - 1 - ], - [ - 0.7749999761581421, - 0.375, - 1 - ], - [ - 0.7749999761581421, - 0.42500001192092896, - 1 - ], - [ - 0.7749999761581421, - 0.42500001192092896, - 1 - ], - [ - 0.7749999761581421, - 0.4749999940395355, - 1 - ], - [ - 0.7749999761581421, - 0.4749999940395355, - 1 - ], - [ - 0.7749999761581421, - 0.5249999761581421, - 1 - ], - [ - 0.7749999761581421, - 0.5249999761581421, - 1 - ], - [ - 0.7749999761581421, - 0.574999988079071, - 1 - ], - [ - 0.7749999761581421, - 0.574999988079071, - 1 - ], - [ - 0.7749999761581421, - 0.625, - 1 - ], - [ - 0.7749999761581421, - 0.625, - 1 - ], - [ - 0.7749999761581421, - 0.675000011920929, - 1 - ], - [ - 0.7749999761581421, - 0.675000011920929, - 1 - ], - [ - 0.7749999761581421, - 0.7250000238418579, - 1 - ], - [ - 0.7749999761581421, - 0.7250000238418579, - 1 - ], - [ - 0.7749999761581421, - 0.7749999761581421, - 1 - ], - [ - 0.7749999761581421, - 0.7749999761581421, - 1 - ], - [ - 0.7749999761581421, - 0.824999988079071, - 1 - ], - [ - 0.7749999761581421, - 0.824999988079071, - 1 - ], - [ - 0.7749999761581421, - 0.875, - 1 - ], - [ - 0.7749999761581421, - 0.875, - 1 - ], - [ - 0.7749999761581421, - 0.925000011920929, - 1 - ], - [ - 0.7749999761581421, - 0.925000011920929, - 1 - ], - [ - 0.7749999761581421, - 0.9750000238418579, - 1 - ], - [ - 0.7749999761581421, - 0.9750000238418579, - 1 - ], - [ - 0.824999988079071, - 0.02500000037252903, - 1 - ], - [ - 0.824999988079071, - 0.02500000037252903, - 1 - ], - [ - 0.824999988079071, - 0.07500000298023224, - 1 - ], - [ - 0.824999988079071, - 0.07500000298023224, - 1 - ], - [ - 0.824999988079071, - 0.125, - 1 - ], - [ - 0.824999988079071, - 0.125, - 1 - ], - [ - 0.824999988079071, - 0.17499999701976776, - 1 - ], - [ - 0.824999988079071, - 0.17499999701976776, - 1 - ], - [ - 0.824999988079071, - 0.22499999403953552, - 1 - ], - [ - 0.824999988079071, - 0.22499999403953552, - 1 - ], - [ - 0.824999988079071, - 0.2750000059604645, - 1 - ], - [ - 0.824999988079071, - 0.2750000059604645, - 1 - ], - [ - 0.824999988079071, - 0.32499998807907104, - 1 - ], - [ - 0.824999988079071, - 0.32499998807907104, - 1 - ], - [ - 0.824999988079071, - 0.375, - 1 - ], - [ - 0.824999988079071, - 0.375, - 1 - ], - [ - 0.824999988079071, - 0.42500001192092896, - 1 - ], - [ - 0.824999988079071, - 0.42500001192092896, - 1 - ], - [ - 0.824999988079071, - 0.4749999940395355, - 1 - ], - [ - 0.824999988079071, - 0.4749999940395355, - 1 - ], - [ - 0.824999988079071, - 0.5249999761581421, - 1 - ], - [ - 0.824999988079071, - 0.5249999761581421, - 1 - ], - [ - 0.824999988079071, - 0.574999988079071, - 1 - ], - [ - 0.824999988079071, - 0.574999988079071, - 1 - ], - [ - 0.824999988079071, - 0.625, - 1 - ], - [ - 0.824999988079071, - 0.625, - 1 - ], - [ - 0.824999988079071, - 0.675000011920929, - 1 - ], - [ - 0.824999988079071, - 0.675000011920929, - 1 - ], - [ - 0.824999988079071, - 0.7250000238418579, - 1 - ], - [ - 0.824999988079071, - 0.7250000238418579, - 1 - ], - [ - 0.824999988079071, - 0.7749999761581421, - 1 - ], - [ - 0.824999988079071, - 0.7749999761581421, - 1 - ], - [ - 0.824999988079071, - 0.824999988079071, - 1 - ], - [ - 0.824999988079071, - 0.824999988079071, - 1 - ], - [ - 0.824999988079071, - 0.875, - 1 - ], - [ - 0.824999988079071, - 0.875, - 1 - ], - [ - 0.824999988079071, - 0.925000011920929, - 1 - ], - [ - 0.824999988079071, - 0.925000011920929, - 1 - ], - [ - 0.824999988079071, - 0.9750000238418579, - 1 - ], - [ - 0.824999988079071, - 0.9750000238418579, - 1 - ], - [ - 0.875, - 0.02500000037252903, - 1 - ], - [ - 0.875, - 0.02500000037252903, - 1 - ], - [ - 0.875, - 0.07500000298023224, - 1 - ], - [ - 0.875, - 0.07500000298023224, - 1 - ], - [ - 0.875, - 0.125, - 1 - ], - [ - 0.875, - 0.125, - 1 - ], - [ - 0.875, - 0.17499999701976776, - 1 - ], - [ - 0.875, - 0.17499999701976776, - 1 - ], - [ - 0.875, - 0.22499999403953552, - 1 - ], - [ - 0.875, - 0.22499999403953552, - 1 - ], - [ - 0.875, - 0.2750000059604645, - 1 - ], - [ - 0.875, - 0.2750000059604645, - 1 - ], - [ - 0.875, - 0.32499998807907104, - 1 - ], - [ - 0.875, - 0.32499998807907104, - 1 - ], - [ - 0.875, - 0.375, - 1 - ], - [ - 0.875, - 0.375, - 1 - ], - [ - 0.875, - 0.42500001192092896, - 1 - ], - [ - 0.875, - 0.42500001192092896, - 1 - ], - [ - 0.875, - 0.4749999940395355, - 1 - ], - [ - 0.875, - 0.4749999940395355, - 1 - ], - [ - 0.875, - 0.5249999761581421, - 1 - ], - [ - 0.875, - 0.5249999761581421, - 1 - ], - [ - 0.875, - 0.574999988079071, - 1 - ], - [ - 0.875, - 0.574999988079071, - 1 - ], - [ - 0.875, - 0.625, - 1 - ], - [ - 0.875, - 0.625, - 1 - ], - [ - 0.875, - 0.675000011920929, - 1 - ], - [ - 0.875, - 0.675000011920929, - 1 - ], - [ - 0.875, - 0.7250000238418579, - 1 - ], - [ - 0.875, - 0.7250000238418579, - 1 - ], - [ - 0.875, - 0.7749999761581421, - 1 - ], - [ - 0.875, - 0.7749999761581421, - 1 - ], - [ - 0.875, - 0.824999988079071, - 1 - ], - [ - 0.875, - 0.824999988079071, - 1 - ], - [ - 0.875, - 0.875, - 1 - ], - [ - 0.875, - 0.875, - 1 - ], - [ - 0.875, - 0.925000011920929, - 1 - ], - [ - 0.875, - 0.925000011920929, - 1 - ], - [ - 0.875, - 0.9750000238418579, - 1 - ], - [ - 0.875, - 0.9750000238418579, - 1 - ], - [ - 0.925000011920929, - 0.02500000037252903, - 1 - ], - [ - 0.925000011920929, - 0.02500000037252903, - 1 - ], - [ - 0.925000011920929, - 0.07500000298023224, - 1 - ], - [ - 0.925000011920929, - 0.07500000298023224, - 1 - ], - [ - 0.925000011920929, - 0.125, - 1 - ], - [ - 0.925000011920929, - 0.125, - 1 - ], - [ - 0.925000011920929, - 0.17499999701976776, - 1 - ], - [ - 0.925000011920929, - 0.17499999701976776, - 1 - ], - [ - 0.925000011920929, - 0.22499999403953552, - 1 - ], - [ - 0.925000011920929, - 0.22499999403953552, - 1 - ], - [ - 0.925000011920929, - 0.2750000059604645, - 1 - ], - [ - 0.925000011920929, - 0.2750000059604645, - 1 - ], - [ - 0.925000011920929, - 0.32499998807907104, - 1 - ], - [ - 0.925000011920929, - 0.32499998807907104, - 1 - ], - [ - 0.925000011920929, - 0.375, - 1 - ], - [ - 0.925000011920929, - 0.375, - 1 - ], - [ - 0.925000011920929, - 0.42500001192092896, - 1 - ], - [ - 0.925000011920929, - 0.42500001192092896, - 1 - ], - [ - 0.925000011920929, - 0.4749999940395355, - 1 - ], - [ - 0.925000011920929, - 0.4749999940395355, - 1 - ], - [ - 0.925000011920929, - 0.5249999761581421, - 1 - ], - [ - 0.925000011920929, - 0.5249999761581421, - 1 - ], - [ - 0.925000011920929, - 0.574999988079071, - 1 - ], - [ - 0.925000011920929, - 0.574999988079071, - 1 - ], - [ - 0.925000011920929, - 0.625, - 1 - ], - [ - 0.925000011920929, - 0.625, - 1 - ], - [ - 0.925000011920929, - 0.675000011920929, - 1 - ], - [ - 0.925000011920929, - 0.675000011920929, - 1 - ], - [ - 0.925000011920929, - 0.7250000238418579, - 1 - ], - [ - 0.925000011920929, - 0.7250000238418579, - 1 - ], - [ - 0.925000011920929, - 0.7749999761581421, - 1 - ], - [ - 0.925000011920929, - 0.7749999761581421, - 1 - ], - [ - 0.925000011920929, - 0.824999988079071, - 1 - ], - [ - 0.925000011920929, - 0.824999988079071, - 1 - ], - [ - 0.925000011920929, - 0.875, - 1 - ], - [ - 0.925000011920929, - 0.875, - 1 - ], - [ - 0.925000011920929, - 0.925000011920929, - 1 - ], - [ - 0.925000011920929, - 0.925000011920929, - 1 - ], - [ - 0.925000011920929, - 0.9750000238418579, - 1 - ], - [ - 0.925000011920929, - 0.9750000238418579, - 1 - ], - [ - 0.9750000238418579, - 0.02500000037252903, - 1 - ], - [ - 0.9750000238418579, - 0.02500000037252903, - 1 - ], - [ - 0.9750000238418579, - 0.07500000298023224, - 1 - ], - [ - 0.9750000238418579, - 0.07500000298023224, - 1 - ], - [ - 0.9750000238418579, - 0.125, - 1 - ], - [ - 0.9750000238418579, - 0.125, - 1 - ], - [ - 0.9750000238418579, - 0.17499999701976776, - 1 - ], - [ - 0.9750000238418579, - 0.17499999701976776, - 1 - ], - [ - 0.9750000238418579, - 0.22499999403953552, - 1 - ], - [ - 0.9750000238418579, - 0.22499999403953552, - 1 - ], - [ - 0.9750000238418579, - 0.2750000059604645, - 1 - ], - [ - 0.9750000238418579, - 0.2750000059604645, - 1 - ], - [ - 0.9750000238418579, - 0.32499998807907104, - 1 - ], - [ - 0.9750000238418579, - 0.32499998807907104, - 1 - ], - [ - 0.9750000238418579, - 0.375, - 1 - ], - [ - 0.9750000238418579, - 0.375, - 1 - ], - [ - 0.9750000238418579, - 0.42500001192092896, - 1 - ], - [ - 0.9750000238418579, - 0.42500001192092896, - 1 - ], - [ - 0.9750000238418579, - 0.4749999940395355, - 1 - ], - [ - 0.9750000238418579, - 0.4749999940395355, - 1 - ], - [ - 0.9750000238418579, - 0.5249999761581421, - 1 - ], - [ - 0.9750000238418579, - 0.5249999761581421, - 1 - ], - [ - 0.9750000238418579, - 0.574999988079071, - 1 - ], - [ - 0.9750000238418579, - 0.574999988079071, - 1 - ], - [ - 0.9750000238418579, - 0.625, - 1 - ], - [ - 0.9750000238418579, - 0.625, - 1 - ], - [ - 0.9750000238418579, - 0.675000011920929, - 1 - ], - [ - 0.9750000238418579, - 0.675000011920929, - 1 - ], - [ - 0.9750000238418579, - 0.7250000238418579, - 1 - ], - [ - 0.9750000238418579, - 0.7250000238418579, - 1 - ], - [ - 0.9750000238418579, - 0.7749999761581421, - 1 - ], - [ - 0.9750000238418579, - 0.7749999761581421, - 1 - ], - [ - 0.9750000238418579, - 0.824999988079071, - 1 - ], - [ - 0.9750000238418579, - 0.824999988079071, - 1 - ], - [ - 0.9750000238418579, - 0.875, - 1 - ], - [ - 0.9750000238418579, - 0.875, - 1 - ], - [ - 0.9750000238418579, - 0.925000011920929, - 1 - ], - [ - 0.9750000238418579, - 0.925000011920929, - 1 - ], - [ - 0.9750000238418579, - 0.9750000238418579, - 1 - ], - [ - 0.9750000238418579, - 0.9750000238418579, - 1 - ] - ], - "size": 4 - }, - "type": "scatter3d", - "x": [ - 0, - -0.6889199018478394, - 0, - -0.6377885341644287, - 0, - -0.5798304080963135, - 0, - -0.5156734585762024, - 0, - -0.4460090100765228, - 0, - -0.3715852200984955, - 0, - -0.29319891333580017, - 0, - -0.21168774366378784, - 0, - -0.12792128324508667, - 0, - -0.04279233515262604, - 0, - 0.04279233515262604, - 0, - 0.12792128324508667, - 0, - 0.21168774366378784, - 0, - 0.29319891333580017, - 0, - 0.3715852200984955, - 0, - 0.4460090100765228, - 0, - 0.5156734585762024, - 0, - 0.5798304080963135, - 0, - 0.6377885341644287, - 0, - 0.6889199018478394, - 0, - -0.712822437286377, - 0, - -0.6595830917358398, - 0, - -0.5993849635124207, - 0, - -0.5328691601753235, - 0, - -0.46074119210243225, - 0, - -0.3837638199329376, - 0, - -0.30274951457977295, - 0, - -0.21855174005031586, - 0, - -0.1320565938949585, - 0, - -0.044173598289489746, - 0, - 0.044173598289489746, - 0, - 0.1320565938949585, - 0, - 0.21855174005031586, - 0, - 0.30274951457977295, - 0, - 0.3837638199329376, - 0, - 0.46074119210243225, - 0, - 0.5328691601753235, - 0, - 0.5993849635124207, - 0, - 0.6595830917358398, - 0, - 0.712822437286377, - 0, - -0.7344518899917603, - 0, - -0.679302990436554, - 0, - -0.6170765161514282, - 0, - -0.5484254360198975, - 0, - -0.47406789660453796, - 0, - -0.3947800397872925, - 0, - -0.31138813495635986, - 0, - -0.22476011514663696, - 0, - -0.13579688966274261, - 0, - -0.045422907918691635, - 0, - 0.045422907918691635, - 0, - 0.13579688966274261, - 0, - 0.22476011514663696, - 0, - 0.31138813495635986, - 0, - 0.3947800397872925, - 0, - 0.47406789660453796, - 0, - 0.5484254360198975, - 0, - 0.6170765161514282, - 0, - 0.679302990436554, - 0, - 0.7344518899917603, - 0, - -0.7536765933036804, - 0, - -0.6968289613723755, - 0, - -0.6327986717224121, - 0, - -0.5622490644454956, - 0, - -0.485909640789032, - 0, - -0.40456825494766235, - 0, - -0.3190634846687317, - 0, - -0.23027610778808594, - 0, - -0.1391199231147766, - 0, - -0.04653283953666687, - 0, - 0.04653283953666687, - 0, - 0.1391199231147766, - 0, - 0.23027610778808594, - 0, - 0.3190634846687317, - 0, - 0.40456825494766235, - 0, - 0.485909640789032, - 0, - 0.5622490644454956, - 0, - 0.6327986717224121, - 0, - 0.6968289613723755, - 0, - 0.7536765933036804, - 0, - -0.7703791856765747, - 0, - -0.7120545506477356, - 0, - -0.646456241607666, - 0, - -0.5742568373680115, - 0, - -0.49619531631469727, - 0, - -0.4130699038505554, - 0, - -0.3257298767566681, - 0, - -0.23506681621074677, - 0, - -0.1420060247182846, - 0, - -0.047496818006038666, - 0, - 0.047496818006038666, - 0, - 0.1420060247182846, - 0, - 0.23506681621074677, - 0, - 0.3257298767566681, - 0, - 0.4130699038505554, - 0, - 0.49619531631469727, - 0, - 0.5742568373680115, - 0, - 0.646456241607666, - 0, - 0.7120545506477356, - 0, - 0.7703791856765747, - 0, - -0.7844576835632324, - 0, - -0.7248872518539429, - 0, - -0.6579667925834656, - 0, - -0.584376335144043, - 0, - -0.5048632621765137, - 0, - -0.42023417353630066, - 0, - -0.33134737610816956, - 0, - -0.23910373449325562, - 0, - -0.1444379687309265, - 0, - -0.048309095203876495, - 0, - 0.048309095203876495, - 0, - 0.1444379687309265, - 0, - 0.23910373449325562, - 0, - 0.33134737610816956, - 0, - 0.42023417353630066, - 0, - 0.5048632621765137, - 0, - 0.584376335144043, - 0, - 0.6579667925834656, - 0, - 0.7248872518539429, - 0, - 0.7844576835632324, - 0, - -0.7958256602287292, - 0, - -0.7352488040924072, - 0, - -0.6672602891921997, - 0, - -0.5925464630126953, - 0, - -0.5118612051010132, - 0, - -0.4260180592536926, - 0, - -0.33588242530822754, - 0, - -0.24236266314983368, - 0, - -0.14640119671821594, - 0, - -0.04896482825279236, - 0, - 0.04896482825279236, - 0, - 0.14640119671821594, - 0, - 0.24236266314983368, - 0, - 0.33588242530822754, - 0, - 0.4260180592536926, - 0, - 0.5118612051010132, - 0, - 0.5925464630126953, - 0, - 0.6672602891921997, - 0, - 0.7352488040924072, - 0, - 0.7958256602287292, - 0, - -0.8044134378433228, - 0, - -0.7430759072303772, - 0, - -0.6742804050445557, - 0, - -0.5987178683280945, - 0, - -0.5171470642089844, - 0, - -0.4303866922855377, - 0, - -0.3393077254295349, - 0, - -0.2448241263628006, - 0, - -0.14788401126861572, - 0, - -0.049460090696811676, - 0, - 0.049460090696811676, - 0, - 0.14788401126861572, - 0, - 0.2448241263628006, - 0, - 0.3393077254295349, - 0, - 0.4303866922855377, - 0, - 0.5171470642089844, - 0, - 0.5987178683280945, - 0, - 0.6742804050445557, - 0, - 0.7430759072303772, - 0, - 0.8044134378433228, - 0, - -0.8101680278778076, - 0, - -0.7483207583427429, - 0, - -0.6789844036102295, - 0, - -0.602853000164032, - 0, - -0.5206887722015381, - 0, - -0.43331384658813477, - 0, - -0.34160277247428894, - 0, - -0.24647334218025208, - 0, - -0.14887753129005432, - 0, - -0.04979192838072777, - 0, - 0.04979192838072777, - 0, - 0.14887753129005432, - 0, - 0.24647334218025208, - 0, - 0.34160277247428894, - 0, - 0.43331384658813477, - 0, - 0.5206887722015381, - 0, - 0.602853000164032, - 0, - 0.6789844036102295, - 0, - 0.7483207583427429, - 0, - 0.8101680278778076, - 0, - -0.8130543231964111, - 0, - -0.7509512305259705, - 0, - -0.6813435554504395, - 0, - -0.6049268841743469, - 0, - -0.5224649906158447, - 0, - -0.4347818195819855, - 0, - -0.3427537679672241, - 0, - -0.24730044603347778, - 0, - -0.1493757963180542, - 0, - -0.04995834827423096, - 0, - 0.04995834827423096, - 0, - 0.1493757963180542, - 0, - 0.24730044603347778, - 0, - 0.3427537679672241, - 0, - 0.4347818195819855, - 0, - 0.5224649906158447, - 0, - 0.6049268841743469, - 0, - 0.6813435554504395, - 0, - 0.7509512305259705, - 0, - 0.8130543231964111, - 0, - -0.8130543231964111, - 0, - -0.7509512305259705, - 0, - -0.6813435554504395, - 0, - -0.6049268841743469, - 0, - -0.5224649906158447, - 0, - -0.4347818195819855, - 0, - -0.3427537679672241, - 0, - -0.24730044603347778, - 0, - -0.1493757963180542, - 0, - -0.04995834827423096, - 0, - 0.04995834827423096, - 0, - 0.1493757963180542, - 0, - 0.24730044603347778, - 0, - 0.3427537679672241, - 0, - 0.4347818195819855, - 0, - 0.5224649906158447, - 0, - 0.6049268841743469, - 0, - 0.6813435554504395, - 0, - 0.7509512305259705, - 0, - 0.8130543231964111, - 0, - -0.8101680278778076, - 0, - -0.7483207583427429, - 0, - -0.6789844036102295, - 0, - -0.602853000164032, - 0, - -0.5206887722015381, - 0, - -0.43331384658813477, - 0, - -0.34160277247428894, - 0, - -0.24647334218025208, - 0, - -0.14887753129005432, - 0, - -0.04979192838072777, - 0, - 0.04979192838072777, - 0, - 0.14887753129005432, - 0, - 0.24647334218025208, - 0, - 0.34160277247428894, - 0, - 0.43331384658813477, - 0, - 0.5206887722015381, - 0, - 0.602853000164032, - 0, - 0.6789844036102295, - 0, - 0.7483207583427429, - 0, - 0.8101680278778076, - 0, - -0.8044134378433228, - 0, - -0.7430759072303772, - 0, - -0.6742804050445557, - 0, - -0.5987178683280945, - 0, - -0.5171470642089844, - 0, - -0.4303866922855377, - 0, - -0.3393077254295349, - 0, - -0.2448241263628006, - 0, - -0.14788401126861572, - 0, - -0.049460090696811676, - 0, - 0.049460090696811676, - 0, - 0.14788401126861572, - 0, - 0.2448241263628006, - 0, - 0.3393077254295349, - 0, - 0.4303866922855377, - 0, - 0.5171470642089844, - 0, - 0.5987178683280945, - 0, - 0.6742804050445557, - 0, - 0.7430759072303772, - 0, - 0.8044134378433228, - 0, - -0.7958256602287292, - 0, - -0.7352488040924072, - 0, - -0.6672602891921997, - 0, - -0.5925464630126953, - 0, - -0.5118612051010132, - 0, - -0.4260180592536926, - 0, - -0.33588242530822754, - 0, - -0.24236266314983368, - 0, - -0.14640119671821594, - 0, - -0.04896482825279236, - 0, - 0.04896482825279236, - 0, - 0.14640119671821594, - 0, - 0.24236266314983368, - 0, - 0.33588242530822754, - 0, - 0.4260180592536926, - 0, - 0.5118612051010132, - 0, - 0.5925464630126953, - 0, - 0.6672602891921997, - 0, - 0.7352488040924072, - 0, - 0.7958256602287292, - 0, - -0.7844576835632324, - 0, - -0.7248872518539429, - 0, - -0.6579667925834656, - 0, - -0.584376335144043, - 0, - -0.5048632621765137, - 0, - -0.42023417353630066, - 0, - -0.33134737610816956, - 0, - -0.23910373449325562, - 0, - -0.1444379687309265, - 0, - -0.048309095203876495, - 0, - 0.048309095203876495, - 0, - 0.1444379687309265, - 0, - 0.23910373449325562, - 0, - 0.33134737610816956, - 0, - 0.42023417353630066, - 0, - 0.5048632621765137, - 0, - 0.584376335144043, - 0, - 0.6579667925834656, - 0, - 0.7248872518539429, - 0, - 0.7844576835632324, - 0, - -0.7703791856765747, - 0, - -0.7120545506477356, - 0, - -0.646456241607666, - 0, - -0.5742568373680115, - 0, - -0.49619531631469727, - 0, - -0.4130699038505554, - 0, - -0.3257298767566681, - 0, - -0.23506681621074677, - 0, - -0.1420060247182846, - 0, - -0.047496818006038666, - 0, - 0.047496818006038666, - 0, - 0.1420060247182846, - 0, - 0.23506681621074677, - 0, - 0.3257298767566681, - 0, - 0.4130699038505554, - 0, - 0.49619531631469727, - 0, - 0.5742568373680115, - 0, - 0.646456241607666, - 0, - 0.7120545506477356, - 0, - 0.7703791856765747, - 0, - -0.7536765933036804, - 0, - -0.6968289613723755, - 0, - -0.6327986717224121, - 0, - -0.5622490644454956, - 0, - -0.485909640789032, - 0, - -0.40456825494766235, - 0, - -0.3190634846687317, - 0, - -0.23027610778808594, - 0, - -0.1391199231147766, - 0, - -0.04653283953666687, - 0, - 0.04653283953666687, - 0, - 0.1391199231147766, - 0, - 0.23027610778808594, - 0, - 0.3190634846687317, - 0, - 0.40456825494766235, - 0, - 0.485909640789032, - 0, - 0.5622490644454956, - 0, - 0.6327986717224121, - 0, - 0.6968289613723755, - 0, - 0.7536765933036804, - 0, - -0.7344518899917603, - 0, - -0.679302990436554, - 0, - -0.6170765161514282, - 0, - -0.5484254360198975, - 0, - -0.47406789660453796, - 0, - -0.3947800397872925, - 0, - -0.31138813495635986, - 0, - -0.22476011514663696, - 0, - -0.13579688966274261, - 0, - -0.045422907918691635, - 0, - 0.045422907918691635, - 0, - 0.13579688966274261, - 0, - 0.22476011514663696, - 0, - 0.31138813495635986, - 0, - 0.3947800397872925, - 0, - 0.47406789660453796, - 0, - 0.5484254360198975, - 0, - 0.6170765161514282, - 0, - 0.679302990436554, - 0, - 0.7344518899917603, - 0, - -0.712822437286377, - 0, - -0.6595830917358398, - 0, - -0.5993849635124207, - 0, - -0.5328691601753235, - 0, - -0.46074119210243225, - 0, - -0.3837638199329376, - 0, - -0.30274951457977295, - 0, - -0.21855174005031586, - 0, - -0.1320565938949585, - 0, - -0.044173598289489746, - 0, - 0.044173598289489746, - 0, - 0.1320565938949585, - 0, - 0.21855174005031586, - 0, - 0.30274951457977295, - 0, - 0.3837638199329376, - 0, - 0.46074119210243225, - 0, - 0.5328691601753235, - 0, - 0.5993849635124207, - 0, - 0.6595830917358398, - 0, - 0.712822437286377, - 0, - -0.6889199018478394, - 0, - -0.6377885341644287, - 0, - -0.5798304080963135, - 0, - -0.5156734585762024, - 0, - -0.4460090100765228, - 0, - -0.3715852200984955, - 0, - -0.29319891333580017, - 0, - -0.21168774366378784, - 0, - -0.12792128324508667, - 0, - -0.04279233515262604, - 0, - 0.04279233515262604, - 0, - 0.12792128324508667, - 0, - 0.21168774366378784, - 0, - 0.29319891333580017, - 0, - 0.3715852200984955, - 0, - 0.4460090100765228, - 0, - 0.5156734585762024, - 0, - 0.5798304080963135, - 0, - 0.6377885341644287, - 0, - 0.6889199018478394 - ], - "y": [ - 0, - -0.22534140944480896, - 0, - -0.2917361557483673, - 0, - -0.35267147421836853, - 0, - -0.40749555826187134, - 0, - -0.45562252402305603, - 0, - -0.4965386688709259, - 0, - -0.529807448387146, - 0, - -0.5550742745399475, - 0, - -0.5720698237419128, - 0, - -0.5806130766868591, - 0, - -0.5806130766868591, - 0, - -0.5720698237419128, - 0, - -0.5550742745399475, - 0, - -0.529807448387146, - 0, - -0.4965386688709259, - 0, - -0.45562252402305603, - 0, - -0.40749555826187134, - 0, - -0.35267147421836853, - 0, - -0.2917361557483673, - 0, - -0.22534140944480896, - 0, - -0.2917361557483673, - 0, - -0.36041688919067383, - 0, - -0.4234207272529602, - 0, - -0.48008328676223755, - 0, - -0.529807448387146, - 0, - -0.5720697641372681, - 0, - -0.6064255833625793, - 0, - -0.6325135231018066, - 0, - -0.6500592827796936, - 0, - -0.6588785648345947, - 0, - -0.6588785648345947, - 0, - -0.6500592827796936, - 0, - -0.6325135231018066, - 0, - -0.6064255833625793, - 0, - -0.5720697641372681, - 0, - -0.529807448387146, - 0, - -0.48008328676223755, - 0, - -0.4234207272529602, - 0, - -0.36041688919067383, - 0, - -0.2917361557483673, - 0, - -0.3526715040206909, - 0, - -0.4234207272529602, - 0, - -0.48829612135887146, - 0, - -0.5466218590736389, - 0, - -0.5977908968925476, - 0, - -0.6412709951400757, - 0, - -0.6766100525856018, - 0, - -0.7034407258033752, - 0, - -0.7214842438697815, - 0, - -0.7305530905723572, - 0, - -0.7305530905723572, - 0, - -0.7214842438697815, - 0, - -0.7034407258033752, - 0, - -0.6766100525856018, - 0, - -0.6412709951400757, - 0, - -0.5977908968925476, - 0, - -0.5466218590736389, - 0, - -0.48829612135887146, - 0, - -0.4234207272529602, - 0, - -0.3526715040206909, - 0, - -0.40749555826187134, - 0, - -0.48008328676223755, - 0, - -0.5466218590736389, - 0, - -0.6064256429672241, - 0, - -0.6588786244392395, - 0, - -0.7034407258033752, - 0, - -0.7396534085273743, - 0, - -0.767143964767456, - 0, - -0.7856296300888062, - 0, - -0.7949202656745911, - 0, - -0.7949202656745911, - 0, - -0.7856296300888062, - 0, - -0.767143964767456, - 0, - -0.7396534085273743, - 0, - -0.7034407258033752, - 0, - -0.6588786244392395, - 0, - -0.6064256429672241, - 0, - -0.5466218590736389, - 0, - -0.48008328676223755, - 0, - -0.40749555826187134, - 0, - -0.45562252402305603, - 0, - -0.529807448387146, - 0, - -0.5977908968925476, - 0, - -0.6588786244392395, - 0, - -0.7124468088150024, - 0, - -0.7579487562179565, - 0, - -0.7949202656745911, - 0, - -0.822983980178833, - 0, - -0.8418536186218262, - 0, - -0.8513368368148804, - 0, - -0.8513368368148804, - 0, - -0.8418536186218262, - 0, - -0.822983980178833, - 0, - -0.7949202656745911, - 0, - -0.7579487562179565, - 0, - -0.7124468088150024, - 0, - -0.6588786244392395, - 0, - -0.5977908968925476, - 0, - -0.529807448387146, - 0, - -0.45562252402305603, - 0, - -0.4965386688709259, - 0, - -0.5720697641372681, - 0, - -0.6412709951400757, - 0, - -0.7034407258033752, - 0, - -0.7579487562179565, - 0, - -0.8042427897453308, - 0, - -0.8418536186218262, - 0, - -0.8704003691673279, - 0, - -0.8895936608314514, - 0, - -0.8992391228675842, - 0, - -0.8992391228675842, - 0, - -0.8895936608314514, - 0, - -0.8704003691673279, - 0, - -0.8418536186218262, - 0, - -0.8042427897453308, - 0, - -0.7579487562179565, - 0, - -0.7034407258033752, - 0, - -0.6412709951400757, - 0, - -0.5720697641372681, - 0, - -0.4965386688709259, - 0, - -0.529807448387146, - 0, - -0.6064255833625793, - 0, - -0.6766100525856018, - 0, - -0.7396534085273743, - 0, - -0.7949202656745911, - 0, - -0.8418536186218262, - 0, - -0.879980742931366, - 0, - -0.9089173078536987, - 0, - -0.9283718466758728, - 0, - -0.9381483793258667, - 0, - -0.9381483793258667, - 0, - -0.9283718466758728, - 0, - -0.9089173078536987, - 0, - -0.879980742931366, - 0, - -0.8418536186218262, - 0, - -0.7949202656745911, - 0, - -0.7396534085273743, - 0, - -0.6766100525856018, - 0, - -0.6064255833625793, - 0, - -0.529807448387146, - 0, - -0.5550742745399475, - 0, - -0.6325135231018066, - 0, - -0.70344078540802, - 0, - -0.767143964767456, - 0, - -0.822983980178833, - 0, - -0.8704003691673279, - 0, - -0.9089173078536987, - 0, - -0.9381483793258667, - 0, - -0.9578002095222473, - 0, - -0.9676756858825684, - 0, - -0.9676756858825684, - 0, - -0.9578002095222473, - 0, - -0.9381483793258667, - 0, - -0.9089173078536987, - 0, - -0.8704003691673279, - 0, - -0.822983980178833, - 0, - -0.767143964767456, - 0, - -0.70344078540802, - 0, - -0.6325135231018066, - 0, - -0.5550742745399475, - 0, - -0.5720698237419128, - 0, - -0.6500592827796936, - 0, - -0.7214842438697815, - 0, - -0.7856296300888062, - 0, - -0.8418536186218262, - 0, - -0.8895936608314514, - 0, - -0.9283718466758728, - 0, - -0.9578002095222473, - 0, - -0.9775842428207397, - 0, - -0.9875260591506958, - 0, - -0.9875260591506958, - 0, - -0.9775842428207397, - 0, - -0.9578002095222473, - 0, - -0.9283718466758728, - 0, - -0.8895936608314514, - 0, - -0.8418536186218262, - 0, - -0.7856296300888062, - 0, - -0.7214842438697815, - 0, - -0.6500592827796936, - 0, - -0.5720698237419128, - 0, - -0.5806130766868591, - 0, - -0.6588785648345947, - 0, - -0.7305530905723572, - 0, - -0.7949202656745911, - 0, - -0.8513368368148804, - 0, - -0.8992391228675842, - 0, - -0.9381483793258667, - 0, - -0.9676756858825684, - 0, - -0.9875260591506958, - 0, - -0.9975010752677917, - 0, - -0.9975010752677917, - 0, - -0.9875260591506958, - 0, - -0.9676756858825684, - 0, - -0.9381483793258667, - 0, - -0.8992391228675842, - 0, - -0.8513368368148804, - 0, - -0.7949202656745911, - 0, - -0.7305530905723572, - 0, - -0.6588785648345947, - 0, - -0.5806130766868591, - 0, - -0.5806130766868591, - 0, - -0.6588785648345947, - 0, - -0.7305530905723572, - 0, - -0.7949202656745911, - 0, - -0.8513368368148804, - 0, - -0.8992391228675842, - 0, - -0.9381483793258667, - 0, - -0.9676756858825684, - 0, - -0.9875260591506958, - 0, - -0.9975010752677917, - 0, - -0.9975010752677917, - 0, - -0.9875260591506958, - 0, - -0.9676756858825684, - 0, - -0.9381483793258667, - 0, - -0.8992391228675842, - 0, - -0.8513368368148804, - 0, - -0.7949202656745911, - 0, - -0.7305530905723572, - 0, - -0.6588785648345947, - 0, - -0.5806130766868591, - 0, - -0.5720698237419128, - 0, - -0.6500592827796936, - 0, - -0.7214842438697815, - 0, - -0.7856296300888062, - 0, - -0.8418536186218262, - 0, - -0.8895936608314514, - 0, - -0.9283718466758728, - 0, - -0.9578002095222473, - 0, - -0.9775842428207397, - 0, - -0.9875260591506958, - 0, - -0.9875260591506958, - 0, - -0.9775842428207397, - 0, - -0.9578002095222473, - 0, - -0.9283718466758728, - 0, - -0.8895936608314514, - 0, - -0.8418536186218262, - 0, - -0.7856296300888062, - 0, - -0.7214842438697815, - 0, - -0.6500592827796936, - 0, - -0.5720698237419128, - 0, - -0.5550742745399475, - 0, - -0.6325135231018066, - 0, - -0.70344078540802, - 0, - -0.767143964767456, - 0, - -0.822983980178833, - 0, - -0.8704003691673279, - 0, - -0.9089173078536987, - 0, - -0.9381483793258667, - 0, - -0.9578002095222473, - 0, - -0.9676756858825684, - 0, - -0.9676756858825684, - 0, - -0.9578002095222473, - 0, - -0.9381483793258667, - 0, - -0.9089173078536987, - 0, - -0.8704003691673279, - 0, - -0.822983980178833, - 0, - -0.767143964767456, - 0, - -0.70344078540802, - 0, - -0.6325135231018066, - 0, - -0.5550742745399475, - 0, - -0.529807448387146, - 0, - -0.6064255833625793, - 0, - -0.6766100525856018, - 0, - -0.7396534085273743, - 0, - -0.7949202656745911, - 0, - -0.8418536186218262, - 0, - -0.879980742931366, - 0, - -0.9089173078536987, - 0, - -0.9283718466758728, - 0, - -0.9381483793258667, - 0, - -0.9381483793258667, - 0, - -0.9283718466758728, - 0, - -0.9089173078536987, - 0, - -0.879980742931366, - 0, - -0.8418536186218262, - 0, - -0.7949202656745911, - 0, - -0.7396534085273743, - 0, - -0.6766100525856018, - 0, - -0.6064255833625793, - 0, - -0.529807448387146, - 0, - -0.4965386688709259, - 0, - -0.5720697641372681, - 0, - -0.6412709951400757, - 0, - -0.7034407258033752, - 0, - -0.7579487562179565, - 0, - -0.8042427897453308, - 0, - -0.8418536186218262, - 0, - -0.8704003691673279, - 0, - -0.8895936608314514, - 0, - -0.8992391228675842, - 0, - -0.8992391228675842, - 0, - -0.8895936608314514, - 0, - -0.8704003691673279, - 0, - -0.8418536186218262, - 0, - -0.8042427897453308, - 0, - -0.7579487562179565, - 0, - -0.7034407258033752, - 0, - -0.6412709951400757, - 0, - -0.5720697641372681, - 0, - -0.4965386688709259, - 0, - -0.45562252402305603, - 0, - -0.529807448387146, - 0, - -0.5977908968925476, - 0, - -0.6588786244392395, - 0, - -0.7124468088150024, - 0, - -0.7579487562179565, - 0, - -0.7949202656745911, - 0, - -0.822983980178833, - 0, - -0.8418536186218262, - 0, - -0.8513368368148804, - 0, - -0.8513368368148804, - 0, - -0.8418536186218262, - 0, - -0.822983980178833, - 0, - -0.7949202656745911, - 0, - -0.7579487562179565, - 0, - -0.7124468088150024, - 0, - -0.6588786244392395, - 0, - -0.5977908968925476, - 0, - -0.529807448387146, - 0, - -0.45562252402305603, - 0, - -0.40749555826187134, - 0, - -0.48008328676223755, - 0, - -0.5466218590736389, - 0, - -0.6064256429672241, - 0, - -0.6588786244392395, - 0, - -0.7034407258033752, - 0, - -0.7396534085273743, - 0, - -0.767143964767456, - 0, - -0.7856296300888062, - 0, - -0.7949202656745911, - 0, - -0.7949202656745911, - 0, - -0.7856296300888062, - 0, - -0.767143964767456, - 0, - -0.7396534085273743, - 0, - -0.7034407258033752, - 0, - -0.6588786244392395, - 0, - -0.6064256429672241, - 0, - -0.5466218590736389, - 0, - -0.48008328676223755, - 0, - -0.40749555826187134, - 0, - -0.3526715040206909, - 0, - -0.4234207272529602, - 0, - -0.48829612135887146, - 0, - -0.5466218590736389, - 0, - -0.5977908968925476, - 0, - -0.6412709951400757, - 0, - -0.6766100525856018, - 0, - -0.7034407258033752, - 0, - -0.7214842438697815, - 0, - -0.7305530905723572, - 0, - -0.7305530905723572, - 0, - -0.7214842438697815, - 0, - -0.7034407258033752, - 0, - -0.6766100525856018, - 0, - -0.6412709951400757, - 0, - -0.5977908968925476, - 0, - -0.5466218590736389, - 0, - -0.48829612135887146, - 0, - -0.4234207272529602, - 0, - -0.3526715040206909, - 0, - -0.2917361557483673, - 0, - -0.36041688919067383, - 0, - -0.4234207272529602, - 0, - -0.48008328676223755, - 0, - -0.529807448387146, - 0, - -0.5720697641372681, - 0, - -0.6064255833625793, - 0, - -0.6325135231018066, - 0, - -0.6500592827796936, - 0, - -0.6588785648345947, - 0, - -0.6588785648345947, - 0, - -0.6500592827796936, - 0, - -0.6325135231018066, - 0, - -0.6064255833625793, - 0, - -0.5720697641372681, - 0, - -0.529807448387146, - 0, - -0.48008328676223755, - 0, - -0.4234207272529602, - 0, - -0.36041688919067383, - 0, - -0.2917361557483673, - 0, - -0.22534140944480896, - 0, - -0.2917361557483673, - 0, - -0.35267147421836853, - 0, - -0.40749555826187134, - 0, - -0.45562252402305603, - 0, - -0.4965386688709259, - 0, - -0.529807448387146, - 0, - -0.5550742745399475, - 0, - -0.5720698237419128, - 0, - -0.5806130766868591, - 0, - -0.5806130766868591, - 0, - -0.5720698237419128, - 0, - -0.5550742745399475, - 0, - -0.529807448387146, - 0, - -0.4965386688709259, - 0, - -0.45562252402305603, - 0, - -0.40749555826187134, - 0, - -0.35267147421836853, - 0, - -0.2917361557483673, - 0, - -0.22534140944480896 - ], - "z": [ - 0, - 0.6889199018478394, - 0, - 0.712822437286377, - 0, - 0.7344518303871155, - 0, - 0.7536765933036804, - 0, - 0.7703791856765747, - 0, - 0.7844576835632324, - 0, - 0.7958256602287292, - 0, - 0.8044134378433228, - 0, - 0.8101680278778076, - 0, - 0.8130543231964111, - 0, - 0.8130543231964111, - 0, - 0.8101680278778076, - 0, - 0.8044134378433228, - 0, - 0.7958256602287292, - 0, - 0.7844576835632324, - 0, - 0.7703791856765747, - 0, - 0.7536765933036804, - 0, - 0.7344518303871155, - 0, - 0.712822437286377, - 0, - 0.6889199018478394, - 0, - 0.6377885341644287, - 0, - 0.6595830917358398, - 0, - 0.679302990436554, - 0, - 0.6968289613723755, - 0, - 0.7120545506477356, - 0, - 0.7248872518539429, - 0, - 0.7352488040924072, - 0, - 0.7430759072303772, - 0, - 0.7483207583427429, - 0, - 0.7509512305259705, - 0, - 0.7509512305259705, - 0, - 0.7483207583427429, - 0, - 0.7430759072303772, - 0, - 0.7352488040924072, - 0, - 0.7248872518539429, - 0, - 0.7120545506477356, - 0, - 0.6968289613723755, - 0, - 0.679302990436554, - 0, - 0.6595830917358398, - 0, - 0.6377885341644287, - 0, - 0.5798304677009583, - 0, - 0.5993849635124207, - 0, - 0.6170765161514282, - 0, - 0.6327986717224121, - 0, - 0.646456241607666, - 0, - 0.6579667925834656, - 0, - 0.6672602891921997, - 0, - 0.6742803454399109, - 0, - 0.6789844036102295, - 0, - 0.6813435554504395, - 0, - 0.6813435554504395, - 0, - 0.6789844036102295, - 0, - 0.6742803454399109, - 0, - 0.6672602891921997, - 0, - 0.6579667925834656, - 0, - 0.646456241607666, - 0, - 0.6327986717224121, - 0, - 0.6170765161514282, - 0, - 0.5993849635124207, - 0, - 0.5798304677009583, - 0, - 0.5156734585762024, - 0, - 0.5328691601753235, - 0, - 0.5484254360198975, - 0, - 0.5622490644454956, - 0, - 0.5742568373680115, - 0, - 0.584376335144043, - 0, - 0.5925464630126953, - 0, - 0.5987178683280945, - 0, - 0.602853000164032, - 0, - 0.6049268841743469, - 0, - 0.6049268841743469, - 0, - 0.602853000164032, - 0, - 0.5987178683280945, - 0, - 0.5925464630126953, - 0, - 0.584376335144043, - 0, - 0.5742568373680115, - 0, - 0.5622490644454956, - 0, - 0.5484254360198975, - 0, - 0.5328691601753235, - 0, - 0.5156734585762024, - 0, - 0.4460090100765228, - 0, - 0.46074119210243225, - 0, - 0.47406789660453796, - 0, - 0.485909640789032, - 0, - 0.49619531631469727, - 0, - 0.5048632621765137, - 0, - 0.5118612051010132, - 0, - 0.5171470642089844, - 0, - 0.5206887722015381, - 0, - 0.5224649906158447, - 0, - 0.5224649906158447, - 0, - 0.5206887722015381, - 0, - 0.5171470642089844, - 0, - 0.5118612051010132, - 0, - 0.5048632621765137, - 0, - 0.49619531631469727, - 0, - 0.485909640789032, - 0, - 0.47406789660453796, - 0, - 0.46074119210243225, - 0, - 0.4460090100765228, - 0, - 0.3715852200984955, - 0, - 0.3837638199329376, - 0, - 0.3947800397872925, - 0, - 0.40456825494766235, - 0, - 0.4130699038505554, - 0, - 0.42023417353630066, - 0, - 0.4260180592536926, - 0, - 0.4303866922855377, - 0, - 0.43331384658813477, - 0, - 0.4347818195819855, - 0, - 0.4347818195819855, - 0, - 0.43331384658813477, - 0, - 0.4303866922855377, - 0, - 0.4260180592536926, - 0, - 0.42023417353630066, - 0, - 0.4130699038505554, - 0, - 0.40456825494766235, - 0, - 0.3947800397872925, - 0, - 0.3837638199329376, - 0, - 0.3715852200984955, - 0, - 0.29319891333580017, - 0, - 0.30274951457977295, - 0, - 0.31138813495635986, - 0, - 0.3190634846687317, - 0, - 0.3257298767566681, - 0, - 0.33134737610816956, - 0, - 0.33588242530822754, - 0, - 0.3393077254295349, - 0, - 0.34160277247428894, - 0, - 0.3427537679672241, - 0, - 0.3427537679672241, - 0, - 0.34160277247428894, - 0, - 0.3393077254295349, - 0, - 0.33588242530822754, - 0, - 0.33134737610816956, - 0, - 0.3257298767566681, - 0, - 0.3190634846687317, - 0, - 0.31138813495635986, - 0, - 0.30274951457977295, - 0, - 0.29319891333580017, - 0, - 0.21168774366378784, - 0, - 0.21855174005031586, - 0, - 0.22476013004779816, - 0, - 0.23027610778808594, - 0, - 0.23506681621074677, - 0, - 0.23910373449325562, - 0, - 0.24236266314983368, - 0, - 0.2448241263628006, - 0, - 0.24647334218025208, - 0, - 0.24730044603347778, - 0, - 0.24730044603347778, - 0, - 0.24647334218025208, - 0, - 0.2448241263628006, - 0, - 0.24236266314983368, - 0, - 0.23910373449325562, - 0, - 0.23506681621074677, - 0, - 0.23027610778808594, - 0, - 0.22476013004779816, - 0, - 0.21855174005031586, - 0, - 0.21168774366378784, - 0, - 0.12792128324508667, - 0, - 0.1320565938949585, - 0, - 0.13579688966274261, - 0, - 0.1391199231147766, - 0, - 0.1420060247182846, - 0, - 0.1444379687309265, - 0, - 0.14640119671821594, - 0, - 0.14788401126861572, - 0, - 0.14887753129005432, - 0, - 0.1493757963180542, - 0, - 0.1493757963180542, - 0, - 0.14887753129005432, - 0, - 0.14788401126861572, - 0, - 0.14640119671821594, - 0, - 0.1444379687309265, - 0, - 0.1420060247182846, - 0, - 0.1391199231147766, - 0, - 0.13579688966274261, - 0, - 0.1320565938949585, - 0, - 0.12792128324508667, - 0, - 0.04279233515262604, - 0, - 0.044173598289489746, - 0, - 0.045422907918691635, - 0, - 0.04653283953666687, - 0, - 0.047496818006038666, - 0, - 0.048309095203876495, - 0, - 0.04896482825279236, - 0, - 0.049460090696811676, - 0, - 0.04979192838072777, - 0, - 0.04995834827423096, - 0, - 0.04995834827423096, - 0, - 0.04979192838072777, - 0, - 0.049460090696811676, - 0, - 0.04896482825279236, - 0, - 0.048309095203876495, - 0, - 0.047496818006038666, - 0, - 0.04653283953666687, - 0, - 0.045422907918691635, - 0, - 0.044173598289489746, - 0, - 0.04279233515262604, - 0, - -0.04279233515262604, - 0, - -0.044173598289489746, - 0, - -0.045422907918691635, - 0, - -0.04653283953666687, - 0, - -0.047496818006038666, - 0, - -0.048309095203876495, - 0, - -0.04896482825279236, - 0, - -0.049460090696811676, - 0, - -0.04979192838072777, - 0, - -0.04995834827423096, - 0, - -0.04995834827423096, - 0, - -0.04979192838072777, - 0, - -0.049460090696811676, - 0, - -0.04896482825279236, - 0, - -0.048309095203876495, - 0, - -0.047496818006038666, - 0, - -0.04653283953666687, - 0, - -0.045422907918691635, - 0, - -0.044173598289489746, - 0, - -0.04279233515262604, - 0, - -0.12792128324508667, - 0, - -0.1320565938949585, - 0, - -0.13579688966274261, - 0, - -0.1391199231147766, - 0, - -0.1420060247182846, - 0, - -0.1444379687309265, - 0, - -0.14640119671821594, - 0, - -0.14788401126861572, - 0, - -0.14887753129005432, - 0, - -0.1493757963180542, - 0, - -0.1493757963180542, - 0, - -0.14887753129005432, - 0, - -0.14788401126861572, - 0, - -0.14640119671821594, - 0, - -0.1444379687309265, - 0, - -0.1420060247182846, - 0, - -0.1391199231147766, - 0, - -0.13579688966274261, - 0, - -0.1320565938949585, - 0, - -0.12792128324508667, - 0, - -0.21168774366378784, - 0, - -0.21855174005031586, - 0, - -0.22476013004779816, - 0, - -0.23027610778808594, - 0, - -0.23506681621074677, - 0, - -0.23910373449325562, - 0, - -0.24236266314983368, - 0, - -0.2448241263628006, - 0, - -0.24647334218025208, - 0, - -0.24730044603347778, - 0, - -0.24730044603347778, - 0, - -0.24647334218025208, - 0, - -0.2448241263628006, - 0, - -0.24236266314983368, - 0, - -0.23910373449325562, - 0, - -0.23506681621074677, - 0, - -0.23027610778808594, - 0, - -0.22476013004779816, - 0, - -0.21855174005031586, - 0, - -0.21168774366378784, - 0, - -0.29319891333580017, - 0, - -0.30274951457977295, - 0, - -0.31138813495635986, - 0, - -0.3190634846687317, - 0, - -0.3257298767566681, - 0, - -0.33134737610816956, - 0, - -0.33588242530822754, - 0, - -0.3393077254295349, - 0, - -0.34160277247428894, - 0, - -0.3427537679672241, - 0, - -0.3427537679672241, - 0, - -0.34160277247428894, - 0, - -0.3393077254295349, - 0, - -0.33588242530822754, - 0, - -0.33134737610816956, - 0, - -0.3257298767566681, - 0, - -0.3190634846687317, - 0, - -0.31138813495635986, - 0, - -0.30274951457977295, - 0, - -0.29319891333580017, - 0, - -0.3715852200984955, - 0, - -0.3837638199329376, - 0, - -0.3947800397872925, - 0, - -0.40456825494766235, - 0, - -0.4130699038505554, - 0, - -0.42023417353630066, - 0, - -0.4260180592536926, - 0, - -0.4303866922855377, - 0, - -0.43331384658813477, - 0, - -0.4347818195819855, - 0, - -0.4347818195819855, - 0, - -0.43331384658813477, - 0, - -0.4303866922855377, - 0, - -0.4260180592536926, - 0, - -0.42023417353630066, - 0, - -0.4130699038505554, - 0, - -0.40456825494766235, - 0, - -0.3947800397872925, - 0, - -0.3837638199329376, - 0, - -0.3715852200984955, - 0, - -0.4460090100765228, - 0, - -0.46074119210243225, - 0, - -0.47406789660453796, - 0, - -0.485909640789032, - 0, - -0.49619531631469727, - 0, - -0.5048632621765137, - 0, - -0.5118612051010132, - 0, - -0.5171470642089844, - 0, - -0.5206887722015381, - 0, - -0.5224649906158447, - 0, - -0.5224649906158447, - 0, - -0.5206887722015381, - 0, - -0.5171470642089844, - 0, - -0.5118612051010132, - 0, - -0.5048632621765137, - 0, - -0.49619531631469727, - 0, - -0.485909640789032, - 0, - -0.47406789660453796, - 0, - -0.46074119210243225, - 0, - -0.4460090100765228, - 0, - -0.5156734585762024, - 0, - -0.5328691601753235, - 0, - -0.5484254360198975, - 0, - -0.5622490644454956, - 0, - -0.5742568373680115, - 0, - -0.584376335144043, - 0, - -0.5925464630126953, - 0, - -0.5987178683280945, - 0, - -0.602853000164032, - 0, - -0.6049268841743469, - 0, - -0.6049268841743469, - 0, - -0.602853000164032, - 0, - -0.5987178683280945, - 0, - -0.5925464630126953, - 0, - -0.584376335144043, - 0, - -0.5742568373680115, - 0, - -0.5622490644454956, - 0, - -0.5484254360198975, - 0, - -0.5328691601753235, - 0, - -0.5156734585762024, - 0, - -0.5798304677009583, - 0, - -0.5993849635124207, - 0, - -0.6170765161514282, - 0, - -0.6327986717224121, - 0, - -0.646456241607666, - 0, - -0.6579667925834656, - 0, - -0.6672602891921997, - 0, - -0.6742803454399109, - 0, - -0.6789844036102295, - 0, - -0.6813435554504395, - 0, - -0.6813435554504395, - 0, - -0.6789844036102295, - 0, - -0.6742803454399109, - 0, - -0.6672602891921997, - 0, - -0.6579667925834656, - 0, - -0.646456241607666, - 0, - -0.6327986717224121, - 0, - -0.6170765161514282, - 0, - -0.5993849635124207, - 0, - -0.5798304677009583, - 0, - -0.6377885341644287, - 0, - -0.6595830917358398, - 0, - -0.679302990436554, - 0, - -0.6968289613723755, - 0, - -0.7120545506477356, - 0, - -0.7248872518539429, - 0, - -0.7352488040924072, - 0, - -0.7430759072303772, - 0, - -0.7483207583427429, - 0, - -0.7509512305259705, - 0, - -0.7509512305259705, - 0, - -0.7483207583427429, - 0, - -0.7430759072303772, - 0, - -0.7352488040924072, - 0, - -0.7248872518539429, - 0, - -0.7120545506477356, - 0, - -0.6968289613723755, - 0, - -0.679302990436554, - 0, - -0.6595830917358398, - 0, - -0.6377885341644287, - 0, - -0.6889199018478394, - 0, - -0.712822437286377, - 0, - -0.7344518303871155, - 0, - -0.7536765933036804, - 0, - -0.7703791856765747, - 0, - -0.7844576835632324, - 0, - -0.7958256602287292, - 0, - -0.8044134378433228, - 0, - -0.8101680278778076, - 0, - -0.8130543231964111, - 0, - -0.8130543231964111, - 0, - -0.8101680278778076, - 0, - -0.8044134378433228, - 0, - -0.7958256602287292, - 0, - -0.7844576835632324, - 0, - -0.7703791856765747, - 0, - -0.7536765933036804, - 0, - -0.7344518303871155, - 0, - -0.712822437286377, - 0, - -0.6889199018478394 - ] - } - ], - "layout": { - "hovermode": false, - "margin": { - "b": 10, - "l": 0, - "r": 0, - "t": 10 - }, - "scene": { - "xaxis": { - "showspikes": false, - "title": { - "text": "x" - } - }, - "yaxis": { - "showspikes": false, - "title": { - "text": "z" - } - }, - "zaxis": { - "showspikes": false, - "title": { - "text": "y" - } - } - }, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - } - } - }, - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# COLLAPSED\n", - "from nerfstudio.cameras.cameras import Cameras, CameraType\n", - "from nerfstudio.utils import plotly_utils as vis\n", - "\n", - "cx = 10.0\n", - "cy = 10.0\n", - "fx = 10.0\n", - "fy = 10.0\n", - "\n", - "c2w = torch.eye(4)[None, :3, :]\n", - "\n", - "camera = Cameras(fx=fx, fy=fy, cx=cx, cy=cy, camera_to_worlds=c2w, camera_type=CameraType.FISHEYE)\n", - "fig = vis.vis_camera_rays(camera)\n", - "fig.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "tags": [] - }, - "source": [ - "## Equirectangular/Spherical Camera Model\n", - "\n", - "Rays are produced at all angles around the camera." - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": { - "tags": [ - "hide-input" - ] - }, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "line": { - "color": "lightblue", - "width": 1 - }, - "marker": { - "color": [ - [ - 0.02500000037252903, - 0.012500000186264515, - 1 - ], - [ - 0.02500000037252903, - 0.012500000186264515, - 1 - ], - [ - 0.02500000037252903, - 0.03750000149011612, - 1 - ], - [ - 0.02500000037252903, - 0.03750000149011612, - 1 - ], - [ - 0.02500000037252903, - 0.0625, - 1 - ], - [ - 0.02500000037252903, - 0.0625, - 1 - ], - [ - 0.02500000037252903, - 0.08749999850988388, - 1 - ], - [ - 0.02500000037252903, - 0.08749999850988388, - 1 - ], - [ - 0.02500000037252903, - 0.11249999701976776, - 1 - ], - [ - 0.02500000037252903, - 0.11249999701976776, - 1 - ], - [ - 0.02500000037252903, - 0.13750000298023224, - 1 - ], - [ - 0.02500000037252903, - 0.13750000298023224, - 1 - ], - [ - 0.02500000037252903, - 0.16249999403953552, - 1 - ], - [ - 0.02500000037252903, - 0.16249999403953552, - 1 - ], - [ - 0.02500000037252903, - 0.1875, - 1 - ], - [ - 0.02500000037252903, - 0.1875, - 1 - ], - [ - 0.02500000037252903, - 0.21250000596046448, - 1 - ], - [ - 0.02500000037252903, - 0.21250000596046448, - 1 - ], - [ - 0.02500000037252903, - 0.23749999701976776, - 1 - ], - [ - 0.02500000037252903, - 0.23749999701976776, - 1 - ], - [ - 0.02500000037252903, - 0.26249998807907104, - 1 - ], - [ - 0.02500000037252903, - 0.26249998807907104, - 1 - ], - [ - 0.02500000037252903, - 0.2874999940395355, - 1 - ], - [ - 0.02500000037252903, - 0.2874999940395355, - 1 - ], - [ - 0.02500000037252903, - 0.3125, - 1 - ], - [ - 0.02500000037252903, - 0.3125, - 1 - ], - [ - 0.02500000037252903, - 0.3375000059604645, - 1 - ], - [ - 0.02500000037252903, - 0.3375000059604645, - 1 - ], - [ - 0.02500000037252903, - 0.36250001192092896, - 1 - ], - [ - 0.02500000037252903, - 0.36250001192092896, - 1 - ], - [ - 0.02500000037252903, - 0.38749998807907104, - 1 - ], - [ - 0.02500000037252903, - 0.38749998807907104, - 1 - ], - [ - 0.02500000037252903, - 0.4124999940395355, - 1 - ], - [ - 0.02500000037252903, - 0.4124999940395355, - 1 - ], - [ - 0.02500000037252903, - 0.4375, - 1 - ], - [ - 0.02500000037252903, - 0.4375, - 1 - ], - [ - 0.02500000037252903, - 0.4625000059604645, - 1 - ], - [ - 0.02500000037252903, - 0.4625000059604645, - 1 - ], - [ - 0.02500000037252903, - 0.48750001192092896, - 1 - ], - [ - 0.02500000037252903, - 0.48750001192092896, - 1 - ], - [ - 0.02500000037252903, - 0.512499988079071, - 1 - ], - [ - 0.02500000037252903, - 0.512499988079071, - 1 - ], - [ - 0.02500000037252903, - 0.5375000238418579, - 1 - ], - [ - 0.02500000037252903, - 0.5375000238418579, - 1 - ], - [ - 0.02500000037252903, - 0.5625, - 1 - ], - [ - 0.02500000037252903, - 0.5625, - 1 - ], - [ - 0.02500000037252903, - 0.5874999761581421, - 1 - ], - [ - 0.02500000037252903, - 0.5874999761581421, - 1 - ], - [ - 0.02500000037252903, - 0.612500011920929, - 1 - ], - [ - 0.02500000037252903, - 0.612500011920929, - 1 - ], - [ - 0.02500000037252903, - 0.637499988079071, - 1 - ], - [ - 0.02500000037252903, - 0.637499988079071, - 1 - ], - [ - 0.02500000037252903, - 0.6625000238418579, - 1 - ], - [ - 0.02500000037252903, - 0.6625000238418579, - 1 - ], - [ - 0.02500000037252903, - 0.6875, - 1 - ], - [ - 0.02500000037252903, - 0.6875, - 1 - ], - [ - 0.02500000037252903, - 0.7124999761581421, - 1 - ], - [ - 0.02500000037252903, - 0.7124999761581421, - 1 - ], - [ - 0.02500000037252903, - 0.737500011920929, - 1 - ], - [ - 0.02500000037252903, - 0.737500011920929, - 1 - ], - [ - 0.02500000037252903, - 0.762499988079071, - 1 - ], - [ - 0.02500000037252903, - 0.762499988079071, - 1 - ], - [ - 0.02500000037252903, - 0.7875000238418579, - 1 - ], - [ - 0.02500000037252903, - 0.7875000238418579, - 1 - ], - [ - 0.02500000037252903, - 0.8125, - 1 - ], - [ - 0.02500000037252903, - 0.8125, - 1 - ], - [ - 0.02500000037252903, - 0.8374999761581421, - 1 - ], - [ - 0.02500000037252903, - 0.8374999761581421, - 1 - ], - [ - 0.02500000037252903, - 0.862500011920929, - 1 - ], - [ - 0.02500000037252903, - 0.862500011920929, - 1 - ], - [ - 0.02500000037252903, - 0.887499988079071, - 1 - ], - [ - 0.02500000037252903, - 0.887499988079071, - 1 - ], - [ - 0.02500000037252903, - 0.9125000238418579, - 1 - ], - [ - 0.02500000037252903, - 0.9125000238418579, - 1 - ], - [ - 0.02500000037252903, - 0.9375, - 1 - ], - [ - 0.02500000037252903, - 0.9375, - 1 - ], - [ - 0.02500000037252903, - 0.9624999761581421, - 1 - ], - [ - 0.02500000037252903, - 0.9624999761581421, - 1 - ], - [ - 0.02500000037252903, - 0.987500011920929, - 1 - ], - [ - 0.02500000037252903, - 0.987500011920929, - 1 - ], - [ - 0.07500000298023224, - 0.012500000186264515, - 1 - ], - [ - 0.07500000298023224, - 0.012500000186264515, - 1 - ], - [ - 0.07500000298023224, - 0.03750000149011612, - 1 - ], - [ - 0.07500000298023224, - 0.03750000149011612, - 1 - ], - [ - 0.07500000298023224, - 0.0625, - 1 - ], - [ - 0.07500000298023224, - 0.0625, - 1 - ], - [ - 0.07500000298023224, - 0.08749999850988388, - 1 - ], - [ - 0.07500000298023224, - 0.08749999850988388, - 1 - ], - [ - 0.07500000298023224, - 0.11249999701976776, - 1 - ], - [ - 0.07500000298023224, - 0.11249999701976776, - 1 - ], - [ - 0.07500000298023224, - 0.13750000298023224, - 1 - ], - [ - 0.07500000298023224, - 0.13750000298023224, - 1 - ], - [ - 0.07500000298023224, - 0.16249999403953552, - 1 - ], - [ - 0.07500000298023224, - 0.16249999403953552, - 1 - ], - [ - 0.07500000298023224, - 0.1875, - 1 - ], - [ - 0.07500000298023224, - 0.1875, - 1 - ], - [ - 0.07500000298023224, - 0.21250000596046448, - 1 - ], - [ - 0.07500000298023224, - 0.21250000596046448, - 1 - ], - [ - 0.07500000298023224, - 0.23749999701976776, - 1 - ], - [ - 0.07500000298023224, - 0.23749999701976776, - 1 - ], - [ - 0.07500000298023224, - 0.26249998807907104, - 1 - ], - [ - 0.07500000298023224, - 0.26249998807907104, - 1 - ], - [ - 0.07500000298023224, - 0.2874999940395355, - 1 - ], - [ - 0.07500000298023224, - 0.2874999940395355, - 1 - ], - [ - 0.07500000298023224, - 0.3125, - 1 - ], - [ - 0.07500000298023224, - 0.3125, - 1 - ], - [ - 0.07500000298023224, - 0.3375000059604645, - 1 - ], - [ - 0.07500000298023224, - 0.3375000059604645, - 1 - ], - [ - 0.07500000298023224, - 0.36250001192092896, - 1 - ], - [ - 0.07500000298023224, - 0.36250001192092896, - 1 - ], - [ - 0.07500000298023224, - 0.38749998807907104, - 1 - ], - [ - 0.07500000298023224, - 0.38749998807907104, - 1 - ], - [ - 0.07500000298023224, - 0.4124999940395355, - 1 - ], - [ - 0.07500000298023224, - 0.4124999940395355, - 1 - ], - [ - 0.07500000298023224, - 0.4375, - 1 - ], - [ - 0.07500000298023224, - 0.4375, - 1 - ], - [ - 0.07500000298023224, - 0.4625000059604645, - 1 - ], - [ - 0.07500000298023224, - 0.4625000059604645, - 1 - ], - [ - 0.07500000298023224, - 0.48750001192092896, - 1 - ], - [ - 0.07500000298023224, - 0.48750001192092896, - 1 - ], - [ - 0.07500000298023224, - 0.512499988079071, - 1 - ], - [ - 0.07500000298023224, - 0.512499988079071, - 1 - ], - [ - 0.07500000298023224, - 0.5375000238418579, - 1 - ], - [ - 0.07500000298023224, - 0.5375000238418579, - 1 - ], - [ - 0.07500000298023224, - 0.5625, - 1 - ], - [ - 0.07500000298023224, - 0.5625, - 1 - ], - [ - 0.07500000298023224, - 0.5874999761581421, - 1 - ], - [ - 0.07500000298023224, - 0.5874999761581421, - 1 - ], - [ - 0.07500000298023224, - 0.612500011920929, - 1 - ], - [ - 0.07500000298023224, - 0.612500011920929, - 1 - ], - [ - 0.07500000298023224, - 0.637499988079071, - 1 - ], - [ - 0.07500000298023224, - 0.637499988079071, - 1 - ], - [ - 0.07500000298023224, - 0.6625000238418579, - 1 - ], - [ - 0.07500000298023224, - 0.6625000238418579, - 1 - ], - [ - 0.07500000298023224, - 0.6875, - 1 - ], - [ - 0.07500000298023224, - 0.6875, - 1 - ], - [ - 0.07500000298023224, - 0.7124999761581421, - 1 - ], - [ - 0.07500000298023224, - 0.7124999761581421, - 1 - ], - [ - 0.07500000298023224, - 0.737500011920929, - 1 - ], - [ - 0.07500000298023224, - 0.737500011920929, - 1 - ], - [ - 0.07500000298023224, - 0.762499988079071, - 1 - ], - [ - 0.07500000298023224, - 0.762499988079071, - 1 - ], - [ - 0.07500000298023224, - 0.7875000238418579, - 1 - ], - [ - 0.07500000298023224, - 0.7875000238418579, - 1 - ], - [ - 0.07500000298023224, - 0.8125, - 1 - ], - [ - 0.07500000298023224, - 0.8125, - 1 - ], - [ - 0.07500000298023224, - 0.8374999761581421, - 1 - ], - [ - 0.07500000298023224, - 0.8374999761581421, - 1 - ], - [ - 0.07500000298023224, - 0.862500011920929, - 1 - ], - [ - 0.07500000298023224, - 0.862500011920929, - 1 - ], - [ - 0.07500000298023224, - 0.887499988079071, - 1 - ], - [ - 0.07500000298023224, - 0.887499988079071, - 1 - ], - [ - 0.07500000298023224, - 0.9125000238418579, - 1 - ], - [ - 0.07500000298023224, - 0.9125000238418579, - 1 - ], - [ - 0.07500000298023224, - 0.9375, - 1 - ], - [ - 0.07500000298023224, - 0.9375, - 1 - ], - [ - 0.07500000298023224, - 0.9624999761581421, - 1 - ], - [ - 0.07500000298023224, - 0.9624999761581421, - 1 - ], - [ - 0.07500000298023224, - 0.987500011920929, - 1 - ], - [ - 0.07500000298023224, - 0.987500011920929, - 1 - ], - [ - 0.125, - 0.012500000186264515, - 1 - ], - [ - 0.125, - 0.012500000186264515, - 1 - ], - [ - 0.125, - 0.03750000149011612, - 1 - ], - [ - 0.125, - 0.03750000149011612, - 1 - ], - [ - 0.125, - 0.0625, - 1 - ], - [ - 0.125, - 0.0625, - 1 - ], - [ - 0.125, - 0.08749999850988388, - 1 - ], - [ - 0.125, - 0.08749999850988388, - 1 - ], - [ - 0.125, - 0.11249999701976776, - 1 - ], - [ - 0.125, - 0.11249999701976776, - 1 - ], - [ - 0.125, - 0.13750000298023224, - 1 - ], - [ - 0.125, - 0.13750000298023224, - 1 - ], - [ - 0.125, - 0.16249999403953552, - 1 - ], - [ - 0.125, - 0.16249999403953552, - 1 - ], - [ - 0.125, - 0.1875, - 1 - ], - [ - 0.125, - 0.1875, - 1 - ], - [ - 0.125, - 0.21250000596046448, - 1 - ], - [ - 0.125, - 0.21250000596046448, - 1 - ], - [ - 0.125, - 0.23749999701976776, - 1 - ], - [ - 0.125, - 0.23749999701976776, - 1 - ], - [ - 0.125, - 0.26249998807907104, - 1 - ], - [ - 0.125, - 0.26249998807907104, - 1 - ], - [ - 0.125, - 0.2874999940395355, - 1 - ], - [ - 0.125, - 0.2874999940395355, - 1 - ], - [ - 0.125, - 0.3125, - 1 - ], - [ - 0.125, - 0.3125, - 1 - ], - [ - 0.125, - 0.3375000059604645, - 1 - ], - [ - 0.125, - 0.3375000059604645, - 1 - ], - [ - 0.125, - 0.36250001192092896, - 1 - ], - [ - 0.125, - 0.36250001192092896, - 1 - ], - [ - 0.125, - 0.38749998807907104, - 1 - ], - [ - 0.125, - 0.38749998807907104, - 1 - ], - [ - 0.125, - 0.4124999940395355, - 1 - ], - [ - 0.125, - 0.4124999940395355, - 1 - ], - [ - 0.125, - 0.4375, - 1 - ], - [ - 0.125, - 0.4375, - 1 - ], - [ - 0.125, - 0.4625000059604645, - 1 - ], - [ - 0.125, - 0.4625000059604645, - 1 - ], - [ - 0.125, - 0.48750001192092896, - 1 - ], - [ - 0.125, - 0.48750001192092896, - 1 - ], - [ - 0.125, - 0.512499988079071, - 1 - ], - [ - 0.125, - 0.512499988079071, - 1 - ], - [ - 0.125, - 0.5375000238418579, - 1 - ], - [ - 0.125, - 0.5375000238418579, - 1 - ], - [ - 0.125, - 0.5625, - 1 - ], - [ - 0.125, - 0.5625, - 1 - ], - [ - 0.125, - 0.5874999761581421, - 1 - ], - [ - 0.125, - 0.5874999761581421, - 1 - ], - [ - 0.125, - 0.612500011920929, - 1 - ], - [ - 0.125, - 0.612500011920929, - 1 - ], - [ - 0.125, - 0.637499988079071, - 1 - ], - [ - 0.125, - 0.637499988079071, - 1 - ], - [ - 0.125, - 0.6625000238418579, - 1 - ], - [ - 0.125, - 0.6625000238418579, - 1 - ], - [ - 0.125, - 0.6875, - 1 - ], - [ - 0.125, - 0.6875, - 1 - ], - [ - 0.125, - 0.7124999761581421, - 1 - ], - [ - 0.125, - 0.7124999761581421, - 1 - ], - [ - 0.125, - 0.737500011920929, - 1 - ], - [ - 0.125, - 0.737500011920929, - 1 - ], - [ - 0.125, - 0.762499988079071, - 1 - ], - [ - 0.125, - 0.762499988079071, - 1 - ], - [ - 0.125, - 0.7875000238418579, - 1 - ], - [ - 0.125, - 0.7875000238418579, - 1 - ], - [ - 0.125, - 0.8125, - 1 - ], - [ - 0.125, - 0.8125, - 1 - ], - [ - 0.125, - 0.8374999761581421, - 1 - ], - [ - 0.125, - 0.8374999761581421, - 1 - ], - [ - 0.125, - 0.862500011920929, - 1 - ], - [ - 0.125, - 0.862500011920929, - 1 - ], - [ - 0.125, - 0.887499988079071, - 1 - ], - [ - 0.125, - 0.887499988079071, - 1 - ], - [ - 0.125, - 0.9125000238418579, - 1 - ], - [ - 0.125, - 0.9125000238418579, - 1 - ], - [ - 0.125, - 0.9375, - 1 - ], - [ - 0.125, - 0.9375, - 1 - ], - [ - 0.125, - 0.9624999761581421, - 1 - ], - [ - 0.125, - 0.9624999761581421, - 1 - ], - [ - 0.125, - 0.987500011920929, - 1 - ], - [ - 0.125, - 0.987500011920929, - 1 - ], - [ - 0.17499999701976776, - 0.012500000186264515, - 1 - ], - [ - 0.17499999701976776, - 0.012500000186264515, - 1 - ], - [ - 0.17499999701976776, - 0.03750000149011612, - 1 - ], - [ - 0.17499999701976776, - 0.03750000149011612, - 1 - ], - [ - 0.17499999701976776, - 0.0625, - 1 - ], - [ - 0.17499999701976776, - 0.0625, - 1 - ], - [ - 0.17499999701976776, - 0.08749999850988388, - 1 - ], - [ - 0.17499999701976776, - 0.08749999850988388, - 1 - ], - [ - 0.17499999701976776, - 0.11249999701976776, - 1 - ], - [ - 0.17499999701976776, - 0.11249999701976776, - 1 - ], - [ - 0.17499999701976776, - 0.13750000298023224, - 1 - ], - [ - 0.17499999701976776, - 0.13750000298023224, - 1 - ], - [ - 0.17499999701976776, - 0.16249999403953552, - 1 - ], - [ - 0.17499999701976776, - 0.16249999403953552, - 1 - ], - [ - 0.17499999701976776, - 0.1875, - 1 - ], - [ - 0.17499999701976776, - 0.1875, - 1 - ], - [ - 0.17499999701976776, - 0.21250000596046448, - 1 - ], - [ - 0.17499999701976776, - 0.21250000596046448, - 1 - ], - [ - 0.17499999701976776, - 0.23749999701976776, - 1 - ], - [ - 0.17499999701976776, - 0.23749999701976776, - 1 - ], - [ - 0.17499999701976776, - 0.26249998807907104, - 1 - ], - [ - 0.17499999701976776, - 0.26249998807907104, - 1 - ], - [ - 0.17499999701976776, - 0.2874999940395355, - 1 - ], - [ - 0.17499999701976776, - 0.2874999940395355, - 1 - ], - [ - 0.17499999701976776, - 0.3125, - 1 - ], - [ - 0.17499999701976776, - 0.3125, - 1 - ], - [ - 0.17499999701976776, - 0.3375000059604645, - 1 - ], - [ - 0.17499999701976776, - 0.3375000059604645, - 1 - ], - [ - 0.17499999701976776, - 0.36250001192092896, - 1 - ], - [ - 0.17499999701976776, - 0.36250001192092896, - 1 - ], - [ - 0.17499999701976776, - 0.38749998807907104, - 1 - ], - [ - 0.17499999701976776, - 0.38749998807907104, - 1 - ], - [ - 0.17499999701976776, - 0.4124999940395355, - 1 - ], - [ - 0.17499999701976776, - 0.4124999940395355, - 1 - ], - [ - 0.17499999701976776, - 0.4375, - 1 - ], - [ - 0.17499999701976776, - 0.4375, - 1 - ], - [ - 0.17499999701976776, - 0.4625000059604645, - 1 - ], - [ - 0.17499999701976776, - 0.4625000059604645, - 1 - ], - [ - 0.17499999701976776, - 0.48750001192092896, - 1 - ], - [ - 0.17499999701976776, - 0.48750001192092896, - 1 - ], - [ - 0.17499999701976776, - 0.512499988079071, - 1 - ], - [ - 0.17499999701976776, - 0.512499988079071, - 1 - ], - [ - 0.17499999701976776, - 0.5375000238418579, - 1 - ], - [ - 0.17499999701976776, - 0.5375000238418579, - 1 - ], - [ - 0.17499999701976776, - 0.5625, - 1 - ], - [ - 0.17499999701976776, - 0.5625, - 1 - ], - [ - 0.17499999701976776, - 0.5874999761581421, - 1 - ], - [ - 0.17499999701976776, - 0.5874999761581421, - 1 - ], - [ - 0.17499999701976776, - 0.612500011920929, - 1 - ], - [ - 0.17499999701976776, - 0.612500011920929, - 1 - ], - [ - 0.17499999701976776, - 0.637499988079071, - 1 - ], - [ - 0.17499999701976776, - 0.637499988079071, - 1 - ], - [ - 0.17499999701976776, - 0.6625000238418579, - 1 - ], - [ - 0.17499999701976776, - 0.6625000238418579, - 1 - ], - [ - 0.17499999701976776, - 0.6875, - 1 - ], - [ - 0.17499999701976776, - 0.6875, - 1 - ], - [ - 0.17499999701976776, - 0.7124999761581421, - 1 - ], - [ - 0.17499999701976776, - 0.7124999761581421, - 1 - ], - [ - 0.17499999701976776, - 0.737500011920929, - 1 - ], - [ - 0.17499999701976776, - 0.737500011920929, - 1 - ], - [ - 0.17499999701976776, - 0.762499988079071, - 1 - ], - [ - 0.17499999701976776, - 0.762499988079071, - 1 - ], - [ - 0.17499999701976776, - 0.7875000238418579, - 1 - ], - [ - 0.17499999701976776, - 0.7875000238418579, - 1 - ], - [ - 0.17499999701976776, - 0.8125, - 1 - ], - [ - 0.17499999701976776, - 0.8125, - 1 - ], - [ - 0.17499999701976776, - 0.8374999761581421, - 1 - ], - [ - 0.17499999701976776, - 0.8374999761581421, - 1 - ], - [ - 0.17499999701976776, - 0.862500011920929, - 1 - ], - [ - 0.17499999701976776, - 0.862500011920929, - 1 - ], - [ - 0.17499999701976776, - 0.887499988079071, - 1 - ], - [ - 0.17499999701976776, - 0.887499988079071, - 1 - ], - [ - 0.17499999701976776, - 0.9125000238418579, - 1 - ], - [ - 0.17499999701976776, - 0.9125000238418579, - 1 - ], - [ - 0.17499999701976776, - 0.9375, - 1 - ], - [ - 0.17499999701976776, - 0.9375, - 1 - ], - [ - 0.17499999701976776, - 0.9624999761581421, - 1 - ], - [ - 0.17499999701976776, - 0.9624999761581421, - 1 - ], - [ - 0.17499999701976776, - 0.987500011920929, - 1 - ], - [ - 0.17499999701976776, - 0.987500011920929, - 1 - ], - [ - 0.22499999403953552, - 0.012500000186264515, - 1 - ], - [ - 0.22499999403953552, - 0.012500000186264515, - 1 - ], - [ - 0.22499999403953552, - 0.03750000149011612, - 1 - ], - [ - 0.22499999403953552, - 0.03750000149011612, - 1 - ], - [ - 0.22499999403953552, - 0.0625, - 1 - ], - [ - 0.22499999403953552, - 0.0625, - 1 - ], - [ - 0.22499999403953552, - 0.08749999850988388, - 1 - ], - [ - 0.22499999403953552, - 0.08749999850988388, - 1 - ], - [ - 0.22499999403953552, - 0.11249999701976776, - 1 - ], - [ - 0.22499999403953552, - 0.11249999701976776, - 1 - ], - [ - 0.22499999403953552, - 0.13750000298023224, - 1 - ], - [ - 0.22499999403953552, - 0.13750000298023224, - 1 - ], - [ - 0.22499999403953552, - 0.16249999403953552, - 1 - ], - [ - 0.22499999403953552, - 0.16249999403953552, - 1 - ], - [ - 0.22499999403953552, - 0.1875, - 1 - ], - [ - 0.22499999403953552, - 0.1875, - 1 - ], - [ - 0.22499999403953552, - 0.21250000596046448, - 1 - ], - [ - 0.22499999403953552, - 0.21250000596046448, - 1 - ], - [ - 0.22499999403953552, - 0.23749999701976776, - 1 - ], - [ - 0.22499999403953552, - 0.23749999701976776, - 1 - ], - [ - 0.22499999403953552, - 0.26249998807907104, - 1 - ], - [ - 0.22499999403953552, - 0.26249998807907104, - 1 - ], - [ - 0.22499999403953552, - 0.2874999940395355, - 1 - ], - [ - 0.22499999403953552, - 0.2874999940395355, - 1 - ], - [ - 0.22499999403953552, - 0.3125, - 1 - ], - [ - 0.22499999403953552, - 0.3125, - 1 - ], - [ - 0.22499999403953552, - 0.3375000059604645, - 1 - ], - [ - 0.22499999403953552, - 0.3375000059604645, - 1 - ], - [ - 0.22499999403953552, - 0.36250001192092896, - 1 - ], - [ - 0.22499999403953552, - 0.36250001192092896, - 1 - ], - [ - 0.22499999403953552, - 0.38749998807907104, - 1 - ], - [ - 0.22499999403953552, - 0.38749998807907104, - 1 - ], - [ - 0.22499999403953552, - 0.4124999940395355, - 1 - ], - [ - 0.22499999403953552, - 0.4124999940395355, - 1 - ], - [ - 0.22499999403953552, - 0.4375, - 1 - ], - [ - 0.22499999403953552, - 0.4375, - 1 - ], - [ - 0.22499999403953552, - 0.4625000059604645, - 1 - ], - [ - 0.22499999403953552, - 0.4625000059604645, - 1 - ], - [ - 0.22499999403953552, - 0.48750001192092896, - 1 - ], - [ - 0.22499999403953552, - 0.48750001192092896, - 1 - ], - [ - 0.22499999403953552, - 0.512499988079071, - 1 - ], - [ - 0.22499999403953552, - 0.512499988079071, - 1 - ], - [ - 0.22499999403953552, - 0.5375000238418579, - 1 - ], - [ - 0.22499999403953552, - 0.5375000238418579, - 1 - ], - [ - 0.22499999403953552, - 0.5625, - 1 - ], - [ - 0.22499999403953552, - 0.5625, - 1 - ], - [ - 0.22499999403953552, - 0.5874999761581421, - 1 - ], - [ - 0.22499999403953552, - 0.5874999761581421, - 1 - ], - [ - 0.22499999403953552, - 0.612500011920929, - 1 - ], - [ - 0.22499999403953552, - 0.612500011920929, - 1 - ], - [ - 0.22499999403953552, - 0.637499988079071, - 1 - ], - [ - 0.22499999403953552, - 0.637499988079071, - 1 - ], - [ - 0.22499999403953552, - 0.6625000238418579, - 1 - ], - [ - 0.22499999403953552, - 0.6625000238418579, - 1 - ], - [ - 0.22499999403953552, - 0.6875, - 1 - ], - [ - 0.22499999403953552, - 0.6875, - 1 - ], - [ - 0.22499999403953552, - 0.7124999761581421, - 1 - ], - [ - 0.22499999403953552, - 0.7124999761581421, - 1 - ], - [ - 0.22499999403953552, - 0.737500011920929, - 1 - ], - [ - 0.22499999403953552, - 0.737500011920929, - 1 - ], - [ - 0.22499999403953552, - 0.762499988079071, - 1 - ], - [ - 0.22499999403953552, - 0.762499988079071, - 1 - ], - [ - 0.22499999403953552, - 0.7875000238418579, - 1 - ], - [ - 0.22499999403953552, - 0.7875000238418579, - 1 - ], - [ - 0.22499999403953552, - 0.8125, - 1 - ], - [ - 0.22499999403953552, - 0.8125, - 1 - ], - [ - 0.22499999403953552, - 0.8374999761581421, - 1 - ], - [ - 0.22499999403953552, - 0.8374999761581421, - 1 - ], - [ - 0.22499999403953552, - 0.862500011920929, - 1 - ], - [ - 0.22499999403953552, - 0.862500011920929, - 1 - ], - [ - 0.22499999403953552, - 0.887499988079071, - 1 - ], - [ - 0.22499999403953552, - 0.887499988079071, - 1 - ], - [ - 0.22499999403953552, - 0.9125000238418579, - 1 - ], - [ - 0.22499999403953552, - 0.9125000238418579, - 1 - ], - [ - 0.22499999403953552, - 0.9375, - 1 - ], - [ - 0.22499999403953552, - 0.9375, - 1 - ], - [ - 0.22499999403953552, - 0.9624999761581421, - 1 - ], - [ - 0.22499999403953552, - 0.9624999761581421, - 1 - ], - [ - 0.22499999403953552, - 0.987500011920929, - 1 - ], - [ - 0.22499999403953552, - 0.987500011920929, - 1 - ], - [ - 0.2750000059604645, - 0.012500000186264515, - 1 - ], - [ - 0.2750000059604645, - 0.012500000186264515, - 1 - ], - [ - 0.2750000059604645, - 0.03750000149011612, - 1 - ], - [ - 0.2750000059604645, - 0.03750000149011612, - 1 - ], - [ - 0.2750000059604645, - 0.0625, - 1 - ], - [ - 0.2750000059604645, - 0.0625, - 1 - ], - [ - 0.2750000059604645, - 0.08749999850988388, - 1 - ], - [ - 0.2750000059604645, - 0.08749999850988388, - 1 - ], - [ - 0.2750000059604645, - 0.11249999701976776, - 1 - ], - [ - 0.2750000059604645, - 0.11249999701976776, - 1 - ], - [ - 0.2750000059604645, - 0.13750000298023224, - 1 - ], - [ - 0.2750000059604645, - 0.13750000298023224, - 1 - ], - [ - 0.2750000059604645, - 0.16249999403953552, - 1 - ], - [ - 0.2750000059604645, - 0.16249999403953552, - 1 - ], - [ - 0.2750000059604645, - 0.1875, - 1 - ], - [ - 0.2750000059604645, - 0.1875, - 1 - ], - [ - 0.2750000059604645, - 0.21250000596046448, - 1 - ], - [ - 0.2750000059604645, - 0.21250000596046448, - 1 - ], - [ - 0.2750000059604645, - 0.23749999701976776, - 1 - ], - [ - 0.2750000059604645, - 0.23749999701976776, - 1 - ], - [ - 0.2750000059604645, - 0.26249998807907104, - 1 - ], - [ - 0.2750000059604645, - 0.26249998807907104, - 1 - ], - [ - 0.2750000059604645, - 0.2874999940395355, - 1 - ], - [ - 0.2750000059604645, - 0.2874999940395355, - 1 - ], - [ - 0.2750000059604645, - 0.3125, - 1 - ], - [ - 0.2750000059604645, - 0.3125, - 1 - ], - [ - 0.2750000059604645, - 0.3375000059604645, - 1 - ], - [ - 0.2750000059604645, - 0.3375000059604645, - 1 - ], - [ - 0.2750000059604645, - 0.36250001192092896, - 1 - ], - [ - 0.2750000059604645, - 0.36250001192092896, - 1 - ], - [ - 0.2750000059604645, - 0.38749998807907104, - 1 - ], - [ - 0.2750000059604645, - 0.38749998807907104, - 1 - ], - [ - 0.2750000059604645, - 0.4124999940395355, - 1 - ], - [ - 0.2750000059604645, - 0.4124999940395355, - 1 - ], - [ - 0.2750000059604645, - 0.4375, - 1 - ], - [ - 0.2750000059604645, - 0.4375, - 1 - ], - [ - 0.2750000059604645, - 0.4625000059604645, - 1 - ], - [ - 0.2750000059604645, - 0.4625000059604645, - 1 - ], - [ - 0.2750000059604645, - 0.48750001192092896, - 1 - ], - [ - 0.2750000059604645, - 0.48750001192092896, - 1 - ], - [ - 0.2750000059604645, - 0.512499988079071, - 1 - ], - [ - 0.2750000059604645, - 0.512499988079071, - 1 - ], - [ - 0.2750000059604645, - 0.5375000238418579, - 1 - ], - [ - 0.2750000059604645, - 0.5375000238418579, - 1 - ], - [ - 0.2750000059604645, - 0.5625, - 1 - ], - [ - 0.2750000059604645, - 0.5625, - 1 - ], - [ - 0.2750000059604645, - 0.5874999761581421, - 1 - ], - [ - 0.2750000059604645, - 0.5874999761581421, - 1 - ], - [ - 0.2750000059604645, - 0.612500011920929, - 1 - ], - [ - 0.2750000059604645, - 0.612500011920929, - 1 - ], - [ - 0.2750000059604645, - 0.637499988079071, - 1 - ], - [ - 0.2750000059604645, - 0.637499988079071, - 1 - ], - [ - 0.2750000059604645, - 0.6625000238418579, - 1 - ], - [ - 0.2750000059604645, - 0.6625000238418579, - 1 - ], - [ - 0.2750000059604645, - 0.6875, - 1 - ], - [ - 0.2750000059604645, - 0.6875, - 1 - ], - [ - 0.2750000059604645, - 0.7124999761581421, - 1 - ], - [ - 0.2750000059604645, - 0.7124999761581421, - 1 - ], - [ - 0.2750000059604645, - 0.737500011920929, - 1 - ], - [ - 0.2750000059604645, - 0.737500011920929, - 1 - ], - [ - 0.2750000059604645, - 0.762499988079071, - 1 - ], - [ - 0.2750000059604645, - 0.762499988079071, - 1 - ], - [ - 0.2750000059604645, - 0.7875000238418579, - 1 - ], - [ - 0.2750000059604645, - 0.7875000238418579, - 1 - ], - [ - 0.2750000059604645, - 0.8125, - 1 - ], - [ - 0.2750000059604645, - 0.8125, - 1 - ], - [ - 0.2750000059604645, - 0.8374999761581421, - 1 - ], - [ - 0.2750000059604645, - 0.8374999761581421, - 1 - ], - [ - 0.2750000059604645, - 0.862500011920929, - 1 - ], - [ - 0.2750000059604645, - 0.862500011920929, - 1 - ], - [ - 0.2750000059604645, - 0.887499988079071, - 1 - ], - [ - 0.2750000059604645, - 0.887499988079071, - 1 - ], - [ - 0.2750000059604645, - 0.9125000238418579, - 1 - ], - [ - 0.2750000059604645, - 0.9125000238418579, - 1 - ], - [ - 0.2750000059604645, - 0.9375, - 1 - ], - [ - 0.2750000059604645, - 0.9375, - 1 - ], - [ - 0.2750000059604645, - 0.9624999761581421, - 1 - ], - [ - 0.2750000059604645, - 0.9624999761581421, - 1 - ], - [ - 0.2750000059604645, - 0.987500011920929, - 1 - ], - [ - 0.2750000059604645, - 0.987500011920929, - 1 - ], - [ - 0.32499998807907104, - 0.012500000186264515, - 1 - ], - [ - 0.32499998807907104, - 0.012500000186264515, - 1 - ], - [ - 0.32499998807907104, - 0.03750000149011612, - 1 - ], - [ - 0.32499998807907104, - 0.03750000149011612, - 1 - ], - [ - 0.32499998807907104, - 0.0625, - 1 - ], - [ - 0.32499998807907104, - 0.0625, - 1 - ], - [ - 0.32499998807907104, - 0.08749999850988388, - 1 - ], - [ - 0.32499998807907104, - 0.08749999850988388, - 1 - ], - [ - 0.32499998807907104, - 0.11249999701976776, - 1 - ], - [ - 0.32499998807907104, - 0.11249999701976776, - 1 - ], - [ - 0.32499998807907104, - 0.13750000298023224, - 1 - ], - [ - 0.32499998807907104, - 0.13750000298023224, - 1 - ], - [ - 0.32499998807907104, - 0.16249999403953552, - 1 - ], - [ - 0.32499998807907104, - 0.16249999403953552, - 1 - ], - [ - 0.32499998807907104, - 0.1875, - 1 - ], - [ - 0.32499998807907104, - 0.1875, - 1 - ], - [ - 0.32499998807907104, - 0.21250000596046448, - 1 - ], - [ - 0.32499998807907104, - 0.21250000596046448, - 1 - ], - [ - 0.32499998807907104, - 0.23749999701976776, - 1 - ], - [ - 0.32499998807907104, - 0.23749999701976776, - 1 - ], - [ - 0.32499998807907104, - 0.26249998807907104, - 1 - ], - [ - 0.32499998807907104, - 0.26249998807907104, - 1 - ], - [ - 0.32499998807907104, - 0.2874999940395355, - 1 - ], - [ - 0.32499998807907104, - 0.2874999940395355, - 1 - ], - [ - 0.32499998807907104, - 0.3125, - 1 - ], - [ - 0.32499998807907104, - 0.3125, - 1 - ], - [ - 0.32499998807907104, - 0.3375000059604645, - 1 - ], - [ - 0.32499998807907104, - 0.3375000059604645, - 1 - ], - [ - 0.32499998807907104, - 0.36250001192092896, - 1 - ], - [ - 0.32499998807907104, - 0.36250001192092896, - 1 - ], - [ - 0.32499998807907104, - 0.38749998807907104, - 1 - ], - [ - 0.32499998807907104, - 0.38749998807907104, - 1 - ], - [ - 0.32499998807907104, - 0.4124999940395355, - 1 - ], - [ - 0.32499998807907104, - 0.4124999940395355, - 1 - ], - [ - 0.32499998807907104, - 0.4375, - 1 - ], - [ - 0.32499998807907104, - 0.4375, - 1 - ], - [ - 0.32499998807907104, - 0.4625000059604645, - 1 - ], - [ - 0.32499998807907104, - 0.4625000059604645, - 1 - ], - [ - 0.32499998807907104, - 0.48750001192092896, - 1 - ], - [ - 0.32499998807907104, - 0.48750001192092896, - 1 - ], - [ - 0.32499998807907104, - 0.512499988079071, - 1 - ], - [ - 0.32499998807907104, - 0.512499988079071, - 1 - ], - [ - 0.32499998807907104, - 0.5375000238418579, - 1 - ], - [ - 0.32499998807907104, - 0.5375000238418579, - 1 - ], - [ - 0.32499998807907104, - 0.5625, - 1 - ], - [ - 0.32499998807907104, - 0.5625, - 1 - ], - [ - 0.32499998807907104, - 0.5874999761581421, - 1 - ], - [ - 0.32499998807907104, - 0.5874999761581421, - 1 - ], - [ - 0.32499998807907104, - 0.612500011920929, - 1 - ], - [ - 0.32499998807907104, - 0.612500011920929, - 1 - ], - [ - 0.32499998807907104, - 0.637499988079071, - 1 - ], - [ - 0.32499998807907104, - 0.637499988079071, - 1 - ], - [ - 0.32499998807907104, - 0.6625000238418579, - 1 - ], - [ - 0.32499998807907104, - 0.6625000238418579, - 1 - ], - [ - 0.32499998807907104, - 0.6875, - 1 - ], - [ - 0.32499998807907104, - 0.6875, - 1 - ], - [ - 0.32499998807907104, - 0.7124999761581421, - 1 - ], - [ - 0.32499998807907104, - 0.7124999761581421, - 1 - ], - [ - 0.32499998807907104, - 0.737500011920929, - 1 - ], - [ - 0.32499998807907104, - 0.737500011920929, - 1 - ], - [ - 0.32499998807907104, - 0.762499988079071, - 1 - ], - [ - 0.32499998807907104, - 0.762499988079071, - 1 - ], - [ - 0.32499998807907104, - 0.7875000238418579, - 1 - ], - [ - 0.32499998807907104, - 0.7875000238418579, - 1 - ], - [ - 0.32499998807907104, - 0.8125, - 1 - ], - [ - 0.32499998807907104, - 0.8125, - 1 - ], - [ - 0.32499998807907104, - 0.8374999761581421, - 1 - ], - [ - 0.32499998807907104, - 0.8374999761581421, - 1 - ], - [ - 0.32499998807907104, - 0.862500011920929, - 1 - ], - [ - 0.32499998807907104, - 0.862500011920929, - 1 - ], - [ - 0.32499998807907104, - 0.887499988079071, - 1 - ], - [ - 0.32499998807907104, - 0.887499988079071, - 1 - ], - [ - 0.32499998807907104, - 0.9125000238418579, - 1 - ], - [ - 0.32499998807907104, - 0.9125000238418579, - 1 - ], - [ - 0.32499998807907104, - 0.9375, - 1 - ], - [ - 0.32499998807907104, - 0.9375, - 1 - ], - [ - 0.32499998807907104, - 0.9624999761581421, - 1 - ], - [ - 0.32499998807907104, - 0.9624999761581421, - 1 - ], - [ - 0.32499998807907104, - 0.987500011920929, - 1 - ], - [ - 0.32499998807907104, - 0.987500011920929, - 1 - ], - [ - 0.375, - 0.012500000186264515, - 1 - ], - [ - 0.375, - 0.012500000186264515, - 1 - ], - [ - 0.375, - 0.03750000149011612, - 1 - ], - [ - 0.375, - 0.03750000149011612, - 1 - ], - [ - 0.375, - 0.0625, - 1 - ], - [ - 0.375, - 0.0625, - 1 - ], - [ - 0.375, - 0.08749999850988388, - 1 - ], - [ - 0.375, - 0.08749999850988388, - 1 - ], - [ - 0.375, - 0.11249999701976776, - 1 - ], - [ - 0.375, - 0.11249999701976776, - 1 - ], - [ - 0.375, - 0.13750000298023224, - 1 - ], - [ - 0.375, - 0.13750000298023224, - 1 - ], - [ - 0.375, - 0.16249999403953552, - 1 - ], - [ - 0.375, - 0.16249999403953552, - 1 - ], - [ - 0.375, - 0.1875, - 1 - ], - [ - 0.375, - 0.1875, - 1 - ], - [ - 0.375, - 0.21250000596046448, - 1 - ], - [ - 0.375, - 0.21250000596046448, - 1 - ], - [ - 0.375, - 0.23749999701976776, - 1 - ], - [ - 0.375, - 0.23749999701976776, - 1 - ], - [ - 0.375, - 0.26249998807907104, - 1 - ], - [ - 0.375, - 0.26249998807907104, - 1 - ], - [ - 0.375, - 0.2874999940395355, - 1 - ], - [ - 0.375, - 0.2874999940395355, - 1 - ], - [ - 0.375, - 0.3125, - 1 - ], - [ - 0.375, - 0.3125, - 1 - ], - [ - 0.375, - 0.3375000059604645, - 1 - ], - [ - 0.375, - 0.3375000059604645, - 1 - ], - [ - 0.375, - 0.36250001192092896, - 1 - ], - [ - 0.375, - 0.36250001192092896, - 1 - ], - [ - 0.375, - 0.38749998807907104, - 1 - ], - [ - 0.375, - 0.38749998807907104, - 1 - ], - [ - 0.375, - 0.4124999940395355, - 1 - ], - [ - 0.375, - 0.4124999940395355, - 1 - ], - [ - 0.375, - 0.4375, - 1 - ], - [ - 0.375, - 0.4375, - 1 - ], - [ - 0.375, - 0.4625000059604645, - 1 - ], - [ - 0.375, - 0.4625000059604645, - 1 - ], - [ - 0.375, - 0.48750001192092896, - 1 - ], - [ - 0.375, - 0.48750001192092896, - 1 - ], - [ - 0.375, - 0.512499988079071, - 1 - ], - [ - 0.375, - 0.512499988079071, - 1 - ], - [ - 0.375, - 0.5375000238418579, - 1 - ], - [ - 0.375, - 0.5375000238418579, - 1 - ], - [ - 0.375, - 0.5625, - 1 - ], - [ - 0.375, - 0.5625, - 1 - ], - [ - 0.375, - 0.5874999761581421, - 1 - ], - [ - 0.375, - 0.5874999761581421, - 1 - ], - [ - 0.375, - 0.612500011920929, - 1 - ], - [ - 0.375, - 0.612500011920929, - 1 - ], - [ - 0.375, - 0.637499988079071, - 1 - ], - [ - 0.375, - 0.637499988079071, - 1 - ], - [ - 0.375, - 0.6625000238418579, - 1 - ], - [ - 0.375, - 0.6625000238418579, - 1 - ], - [ - 0.375, - 0.6875, - 1 - ], - [ - 0.375, - 0.6875, - 1 - ], - [ - 0.375, - 0.7124999761581421, - 1 - ], - [ - 0.375, - 0.7124999761581421, - 1 - ], - [ - 0.375, - 0.737500011920929, - 1 - ], - [ - 0.375, - 0.737500011920929, - 1 - ], - [ - 0.375, - 0.762499988079071, - 1 - ], - [ - 0.375, - 0.762499988079071, - 1 - ], - [ - 0.375, - 0.7875000238418579, - 1 - ], - [ - 0.375, - 0.7875000238418579, - 1 - ], - [ - 0.375, - 0.8125, - 1 - ], - [ - 0.375, - 0.8125, - 1 - ], - [ - 0.375, - 0.8374999761581421, - 1 - ], - [ - 0.375, - 0.8374999761581421, - 1 - ], - [ - 0.375, - 0.862500011920929, - 1 - ], - [ - 0.375, - 0.862500011920929, - 1 - ], - [ - 0.375, - 0.887499988079071, - 1 - ], - [ - 0.375, - 0.887499988079071, - 1 - ], - [ - 0.375, - 0.9125000238418579, - 1 - ], - [ - 0.375, - 0.9125000238418579, - 1 - ], - [ - 0.375, - 0.9375, - 1 - ], - [ - 0.375, - 0.9375, - 1 - ], - [ - 0.375, - 0.9624999761581421, - 1 - ], - [ - 0.375, - 0.9624999761581421, - 1 - ], - [ - 0.375, - 0.987500011920929, - 1 - ], - [ - 0.375, - 0.987500011920929, - 1 - ], - [ - 0.42500001192092896, - 0.012500000186264515, - 1 - ], - [ - 0.42500001192092896, - 0.012500000186264515, - 1 - ], - [ - 0.42500001192092896, - 0.03750000149011612, - 1 - ], - [ - 0.42500001192092896, - 0.03750000149011612, - 1 - ], - [ - 0.42500001192092896, - 0.0625, - 1 - ], - [ - 0.42500001192092896, - 0.0625, - 1 - ], - [ - 0.42500001192092896, - 0.08749999850988388, - 1 - ], - [ - 0.42500001192092896, - 0.08749999850988388, - 1 - ], - [ - 0.42500001192092896, - 0.11249999701976776, - 1 - ], - [ - 0.42500001192092896, - 0.11249999701976776, - 1 - ], - [ - 0.42500001192092896, - 0.13750000298023224, - 1 - ], - [ - 0.42500001192092896, - 0.13750000298023224, - 1 - ], - [ - 0.42500001192092896, - 0.16249999403953552, - 1 - ], - [ - 0.42500001192092896, - 0.16249999403953552, - 1 - ], - [ - 0.42500001192092896, - 0.1875, - 1 - ], - [ - 0.42500001192092896, - 0.1875, - 1 - ], - [ - 0.42500001192092896, - 0.21250000596046448, - 1 - ], - [ - 0.42500001192092896, - 0.21250000596046448, - 1 - ], - [ - 0.42500001192092896, - 0.23749999701976776, - 1 - ], - [ - 0.42500001192092896, - 0.23749999701976776, - 1 - ], - [ - 0.42500001192092896, - 0.26249998807907104, - 1 - ], - [ - 0.42500001192092896, - 0.26249998807907104, - 1 - ], - [ - 0.42500001192092896, - 0.2874999940395355, - 1 - ], - [ - 0.42500001192092896, - 0.2874999940395355, - 1 - ], - [ - 0.42500001192092896, - 0.3125, - 1 - ], - [ - 0.42500001192092896, - 0.3125, - 1 - ], - [ - 0.42500001192092896, - 0.3375000059604645, - 1 - ], - [ - 0.42500001192092896, - 0.3375000059604645, - 1 - ], - [ - 0.42500001192092896, - 0.36250001192092896, - 1 - ], - [ - 0.42500001192092896, - 0.36250001192092896, - 1 - ], - [ - 0.42500001192092896, - 0.38749998807907104, - 1 - ], - [ - 0.42500001192092896, - 0.38749998807907104, - 1 - ], - [ - 0.42500001192092896, - 0.4124999940395355, - 1 - ], - [ - 0.42500001192092896, - 0.4124999940395355, - 1 - ], - [ - 0.42500001192092896, - 0.4375, - 1 - ], - [ - 0.42500001192092896, - 0.4375, - 1 - ], - [ - 0.42500001192092896, - 0.4625000059604645, - 1 - ], - [ - 0.42500001192092896, - 0.4625000059604645, - 1 - ], - [ - 0.42500001192092896, - 0.48750001192092896, - 1 - ], - [ - 0.42500001192092896, - 0.48750001192092896, - 1 - ], - [ - 0.42500001192092896, - 0.512499988079071, - 1 - ], - [ - 0.42500001192092896, - 0.512499988079071, - 1 - ], - [ - 0.42500001192092896, - 0.5375000238418579, - 1 - ], - [ - 0.42500001192092896, - 0.5375000238418579, - 1 - ], - [ - 0.42500001192092896, - 0.5625, - 1 - ], - [ - 0.42500001192092896, - 0.5625, - 1 - ], - [ - 0.42500001192092896, - 0.5874999761581421, - 1 - ], - [ - 0.42500001192092896, - 0.5874999761581421, - 1 - ], - [ - 0.42500001192092896, - 0.612500011920929, - 1 - ], - [ - 0.42500001192092896, - 0.612500011920929, - 1 - ], - [ - 0.42500001192092896, - 0.637499988079071, - 1 - ], - [ - 0.42500001192092896, - 0.637499988079071, - 1 - ], - [ - 0.42500001192092896, - 0.6625000238418579, - 1 - ], - [ - 0.42500001192092896, - 0.6625000238418579, - 1 - ], - [ - 0.42500001192092896, - 0.6875, - 1 - ], - [ - 0.42500001192092896, - 0.6875, - 1 - ], - [ - 0.42500001192092896, - 0.7124999761581421, - 1 - ], - [ - 0.42500001192092896, - 0.7124999761581421, - 1 - ], - [ - 0.42500001192092896, - 0.737500011920929, - 1 - ], - [ - 0.42500001192092896, - 0.737500011920929, - 1 - ], - [ - 0.42500001192092896, - 0.762499988079071, - 1 - ], - [ - 0.42500001192092896, - 0.762499988079071, - 1 - ], - [ - 0.42500001192092896, - 0.7875000238418579, - 1 - ], - [ - 0.42500001192092896, - 0.7875000238418579, - 1 - ], - [ - 0.42500001192092896, - 0.8125, - 1 - ], - [ - 0.42500001192092896, - 0.8125, - 1 - ], - [ - 0.42500001192092896, - 0.8374999761581421, - 1 - ], - [ - 0.42500001192092896, - 0.8374999761581421, - 1 - ], - [ - 0.42500001192092896, - 0.862500011920929, - 1 - ], - [ - 0.42500001192092896, - 0.862500011920929, - 1 - ], - [ - 0.42500001192092896, - 0.887499988079071, - 1 - ], - [ - 0.42500001192092896, - 0.887499988079071, - 1 - ], - [ - 0.42500001192092896, - 0.9125000238418579, - 1 - ], - [ - 0.42500001192092896, - 0.9125000238418579, - 1 - ], - [ - 0.42500001192092896, - 0.9375, - 1 - ], - [ - 0.42500001192092896, - 0.9375, - 1 - ], - [ - 0.42500001192092896, - 0.9624999761581421, - 1 - ], - [ - 0.42500001192092896, - 0.9624999761581421, - 1 - ], - [ - 0.42500001192092896, - 0.987500011920929, - 1 - ], - [ - 0.42500001192092896, - 0.987500011920929, - 1 - ], - [ - 0.4749999940395355, - 0.012500000186264515, - 1 - ], - [ - 0.4749999940395355, - 0.012500000186264515, - 1 - ], - [ - 0.4749999940395355, - 0.03750000149011612, - 1 - ], - [ - 0.4749999940395355, - 0.03750000149011612, - 1 - ], - [ - 0.4749999940395355, - 0.0625, - 1 - ], - [ - 0.4749999940395355, - 0.0625, - 1 - ], - [ - 0.4749999940395355, - 0.08749999850988388, - 1 - ], - [ - 0.4749999940395355, - 0.08749999850988388, - 1 - ], - [ - 0.4749999940395355, - 0.11249999701976776, - 1 - ], - [ - 0.4749999940395355, - 0.11249999701976776, - 1 - ], - [ - 0.4749999940395355, - 0.13750000298023224, - 1 - ], - [ - 0.4749999940395355, - 0.13750000298023224, - 1 - ], - [ - 0.4749999940395355, - 0.16249999403953552, - 1 - ], - [ - 0.4749999940395355, - 0.16249999403953552, - 1 - ], - [ - 0.4749999940395355, - 0.1875, - 1 - ], - [ - 0.4749999940395355, - 0.1875, - 1 - ], - [ - 0.4749999940395355, - 0.21250000596046448, - 1 - ], - [ - 0.4749999940395355, - 0.21250000596046448, - 1 - ], - [ - 0.4749999940395355, - 0.23749999701976776, - 1 - ], - [ - 0.4749999940395355, - 0.23749999701976776, - 1 - ], - [ - 0.4749999940395355, - 0.26249998807907104, - 1 - ], - [ - 0.4749999940395355, - 0.26249998807907104, - 1 - ], - [ - 0.4749999940395355, - 0.2874999940395355, - 1 - ], - [ - 0.4749999940395355, - 0.2874999940395355, - 1 - ], - [ - 0.4749999940395355, - 0.3125, - 1 - ], - [ - 0.4749999940395355, - 0.3125, - 1 - ], - [ - 0.4749999940395355, - 0.3375000059604645, - 1 - ], - [ - 0.4749999940395355, - 0.3375000059604645, - 1 - ], - [ - 0.4749999940395355, - 0.36250001192092896, - 1 - ], - [ - 0.4749999940395355, - 0.36250001192092896, - 1 - ], - [ - 0.4749999940395355, - 0.38749998807907104, - 1 - ], - [ - 0.4749999940395355, - 0.38749998807907104, - 1 - ], - [ - 0.4749999940395355, - 0.4124999940395355, - 1 - ], - [ - 0.4749999940395355, - 0.4124999940395355, - 1 - ], - [ - 0.4749999940395355, - 0.4375, - 1 - ], - [ - 0.4749999940395355, - 0.4375, - 1 - ], - [ - 0.4749999940395355, - 0.4625000059604645, - 1 - ], - [ - 0.4749999940395355, - 0.4625000059604645, - 1 - ], - [ - 0.4749999940395355, - 0.48750001192092896, - 1 - ], - [ - 0.4749999940395355, - 0.48750001192092896, - 1 - ], - [ - 0.4749999940395355, - 0.512499988079071, - 1 - ], - [ - 0.4749999940395355, - 0.512499988079071, - 1 - ], - [ - 0.4749999940395355, - 0.5375000238418579, - 1 - ], - [ - 0.4749999940395355, - 0.5375000238418579, - 1 - ], - [ - 0.4749999940395355, - 0.5625, - 1 - ], - [ - 0.4749999940395355, - 0.5625, - 1 - ], - [ - 0.4749999940395355, - 0.5874999761581421, - 1 - ], - [ - 0.4749999940395355, - 0.5874999761581421, - 1 - ], - [ - 0.4749999940395355, - 0.612500011920929, - 1 - ], - [ - 0.4749999940395355, - 0.612500011920929, - 1 - ], - [ - 0.4749999940395355, - 0.637499988079071, - 1 - ], - [ - 0.4749999940395355, - 0.637499988079071, - 1 - ], - [ - 0.4749999940395355, - 0.6625000238418579, - 1 - ], - [ - 0.4749999940395355, - 0.6625000238418579, - 1 - ], - [ - 0.4749999940395355, - 0.6875, - 1 - ], - [ - 0.4749999940395355, - 0.6875, - 1 - ], - [ - 0.4749999940395355, - 0.7124999761581421, - 1 - ], - [ - 0.4749999940395355, - 0.7124999761581421, - 1 - ], - [ - 0.4749999940395355, - 0.737500011920929, - 1 - ], - [ - 0.4749999940395355, - 0.737500011920929, - 1 - ], - [ - 0.4749999940395355, - 0.762499988079071, - 1 - ], - [ - 0.4749999940395355, - 0.762499988079071, - 1 - ], - [ - 0.4749999940395355, - 0.7875000238418579, - 1 - ], - [ - 0.4749999940395355, - 0.7875000238418579, - 1 - ], - [ - 0.4749999940395355, - 0.8125, - 1 - ], - [ - 0.4749999940395355, - 0.8125, - 1 - ], - [ - 0.4749999940395355, - 0.8374999761581421, - 1 - ], - [ - 0.4749999940395355, - 0.8374999761581421, - 1 - ], - [ - 0.4749999940395355, - 0.862500011920929, - 1 - ], - [ - 0.4749999940395355, - 0.862500011920929, - 1 - ], - [ - 0.4749999940395355, - 0.887499988079071, - 1 - ], - [ - 0.4749999940395355, - 0.887499988079071, - 1 - ], - [ - 0.4749999940395355, - 0.9125000238418579, - 1 - ], - [ - 0.4749999940395355, - 0.9125000238418579, - 1 - ], - [ - 0.4749999940395355, - 0.9375, - 1 - ], - [ - 0.4749999940395355, - 0.9375, - 1 - ], - [ - 0.4749999940395355, - 0.9624999761581421, - 1 - ], - [ - 0.4749999940395355, - 0.9624999761581421, - 1 - ], - [ - 0.4749999940395355, - 0.987500011920929, - 1 - ], - [ - 0.4749999940395355, - 0.987500011920929, - 1 - ], - [ - 0.5249999761581421, - 0.012500000186264515, - 1 - ], - [ - 0.5249999761581421, - 0.012500000186264515, - 1 - ], - [ - 0.5249999761581421, - 0.03750000149011612, - 1 - ], - [ - 0.5249999761581421, - 0.03750000149011612, - 1 - ], - [ - 0.5249999761581421, - 0.0625, - 1 - ], - [ - 0.5249999761581421, - 0.0625, - 1 - ], - [ - 0.5249999761581421, - 0.08749999850988388, - 1 - ], - [ - 0.5249999761581421, - 0.08749999850988388, - 1 - ], - [ - 0.5249999761581421, - 0.11249999701976776, - 1 - ], - [ - 0.5249999761581421, - 0.11249999701976776, - 1 - ], - [ - 0.5249999761581421, - 0.13750000298023224, - 1 - ], - [ - 0.5249999761581421, - 0.13750000298023224, - 1 - ], - [ - 0.5249999761581421, - 0.16249999403953552, - 1 - ], - [ - 0.5249999761581421, - 0.16249999403953552, - 1 - ], - [ - 0.5249999761581421, - 0.1875, - 1 - ], - [ - 0.5249999761581421, - 0.1875, - 1 - ], - [ - 0.5249999761581421, - 0.21250000596046448, - 1 - ], - [ - 0.5249999761581421, - 0.21250000596046448, - 1 - ], - [ - 0.5249999761581421, - 0.23749999701976776, - 1 - ], - [ - 0.5249999761581421, - 0.23749999701976776, - 1 - ], - [ - 0.5249999761581421, - 0.26249998807907104, - 1 - ], - [ - 0.5249999761581421, - 0.26249998807907104, - 1 - ], - [ - 0.5249999761581421, - 0.2874999940395355, - 1 - ], - [ - 0.5249999761581421, - 0.2874999940395355, - 1 - ], - [ - 0.5249999761581421, - 0.3125, - 1 - ], - [ - 0.5249999761581421, - 0.3125, - 1 - ], - [ - 0.5249999761581421, - 0.3375000059604645, - 1 - ], - [ - 0.5249999761581421, - 0.3375000059604645, - 1 - ], - [ - 0.5249999761581421, - 0.36250001192092896, - 1 - ], - [ - 0.5249999761581421, - 0.36250001192092896, - 1 - ], - [ - 0.5249999761581421, - 0.38749998807907104, - 1 - ], - [ - 0.5249999761581421, - 0.38749998807907104, - 1 - ], - [ - 0.5249999761581421, - 0.4124999940395355, - 1 - ], - [ - 0.5249999761581421, - 0.4124999940395355, - 1 - ], - [ - 0.5249999761581421, - 0.4375, - 1 - ], - [ - 0.5249999761581421, - 0.4375, - 1 - ], - [ - 0.5249999761581421, - 0.4625000059604645, - 1 - ], - [ - 0.5249999761581421, - 0.4625000059604645, - 1 - ], - [ - 0.5249999761581421, - 0.48750001192092896, - 1 - ], - [ - 0.5249999761581421, - 0.48750001192092896, - 1 - ], - [ - 0.5249999761581421, - 0.512499988079071, - 1 - ], - [ - 0.5249999761581421, - 0.512499988079071, - 1 - ], - [ - 0.5249999761581421, - 0.5375000238418579, - 1 - ], - [ - 0.5249999761581421, - 0.5375000238418579, - 1 - ], - [ - 0.5249999761581421, - 0.5625, - 1 - ], - [ - 0.5249999761581421, - 0.5625, - 1 - ], - [ - 0.5249999761581421, - 0.5874999761581421, - 1 - ], - [ - 0.5249999761581421, - 0.5874999761581421, - 1 - ], - [ - 0.5249999761581421, - 0.612500011920929, - 1 - ], - [ - 0.5249999761581421, - 0.612500011920929, - 1 - ], - [ - 0.5249999761581421, - 0.637499988079071, - 1 - ], - [ - 0.5249999761581421, - 0.637499988079071, - 1 - ], - [ - 0.5249999761581421, - 0.6625000238418579, - 1 - ], - [ - 0.5249999761581421, - 0.6625000238418579, - 1 - ], - [ - 0.5249999761581421, - 0.6875, - 1 - ], - [ - 0.5249999761581421, - 0.6875, - 1 - ], - [ - 0.5249999761581421, - 0.7124999761581421, - 1 - ], - [ - 0.5249999761581421, - 0.7124999761581421, - 1 - ], - [ - 0.5249999761581421, - 0.737500011920929, - 1 - ], - [ - 0.5249999761581421, - 0.737500011920929, - 1 - ], - [ - 0.5249999761581421, - 0.762499988079071, - 1 - ], - [ - 0.5249999761581421, - 0.762499988079071, - 1 - ], - [ - 0.5249999761581421, - 0.7875000238418579, - 1 - ], - [ - 0.5249999761581421, - 0.7875000238418579, - 1 - ], - [ - 0.5249999761581421, - 0.8125, - 1 - ], - [ - 0.5249999761581421, - 0.8125, - 1 - ], - [ - 0.5249999761581421, - 0.8374999761581421, - 1 - ], - [ - 0.5249999761581421, - 0.8374999761581421, - 1 - ], - [ - 0.5249999761581421, - 0.862500011920929, - 1 - ], - [ - 0.5249999761581421, - 0.862500011920929, - 1 - ], - [ - 0.5249999761581421, - 0.887499988079071, - 1 - ], - [ - 0.5249999761581421, - 0.887499988079071, - 1 - ], - [ - 0.5249999761581421, - 0.9125000238418579, - 1 - ], - [ - 0.5249999761581421, - 0.9125000238418579, - 1 - ], - [ - 0.5249999761581421, - 0.9375, - 1 - ], - [ - 0.5249999761581421, - 0.9375, - 1 - ], - [ - 0.5249999761581421, - 0.9624999761581421, - 1 - ], - [ - 0.5249999761581421, - 0.9624999761581421, - 1 - ], - [ - 0.5249999761581421, - 0.987500011920929, - 1 - ], - [ - 0.5249999761581421, - 0.987500011920929, - 1 - ], - [ - 0.574999988079071, - 0.012500000186264515, - 1 - ], - [ - 0.574999988079071, - 0.012500000186264515, - 1 - ], - [ - 0.574999988079071, - 0.03750000149011612, - 1 - ], - [ - 0.574999988079071, - 0.03750000149011612, - 1 - ], - [ - 0.574999988079071, - 0.0625, - 1 - ], - [ - 0.574999988079071, - 0.0625, - 1 - ], - [ - 0.574999988079071, - 0.08749999850988388, - 1 - ], - [ - 0.574999988079071, - 0.08749999850988388, - 1 - ], - [ - 0.574999988079071, - 0.11249999701976776, - 1 - ], - [ - 0.574999988079071, - 0.11249999701976776, - 1 - ], - [ - 0.574999988079071, - 0.13750000298023224, - 1 - ], - [ - 0.574999988079071, - 0.13750000298023224, - 1 - ], - [ - 0.574999988079071, - 0.16249999403953552, - 1 - ], - [ - 0.574999988079071, - 0.16249999403953552, - 1 - ], - [ - 0.574999988079071, - 0.1875, - 1 - ], - [ - 0.574999988079071, - 0.1875, - 1 - ], - [ - 0.574999988079071, - 0.21250000596046448, - 1 - ], - [ - 0.574999988079071, - 0.21250000596046448, - 1 - ], - [ - 0.574999988079071, - 0.23749999701976776, - 1 - ], - [ - 0.574999988079071, - 0.23749999701976776, - 1 - ], - [ - 0.574999988079071, - 0.26249998807907104, - 1 - ], - [ - 0.574999988079071, - 0.26249998807907104, - 1 - ], - [ - 0.574999988079071, - 0.2874999940395355, - 1 - ], - [ - 0.574999988079071, - 0.2874999940395355, - 1 - ], - [ - 0.574999988079071, - 0.3125, - 1 - ], - [ - 0.574999988079071, - 0.3125, - 1 - ], - [ - 0.574999988079071, - 0.3375000059604645, - 1 - ], - [ - 0.574999988079071, - 0.3375000059604645, - 1 - ], - [ - 0.574999988079071, - 0.36250001192092896, - 1 - ], - [ - 0.574999988079071, - 0.36250001192092896, - 1 - ], - [ - 0.574999988079071, - 0.38749998807907104, - 1 - ], - [ - 0.574999988079071, - 0.38749998807907104, - 1 - ], - [ - 0.574999988079071, - 0.4124999940395355, - 1 - ], - [ - 0.574999988079071, - 0.4124999940395355, - 1 - ], - [ - 0.574999988079071, - 0.4375, - 1 - ], - [ - 0.574999988079071, - 0.4375, - 1 - ], - [ - 0.574999988079071, - 0.4625000059604645, - 1 - ], - [ - 0.574999988079071, - 0.4625000059604645, - 1 - ], - [ - 0.574999988079071, - 0.48750001192092896, - 1 - ], - [ - 0.574999988079071, - 0.48750001192092896, - 1 - ], - [ - 0.574999988079071, - 0.512499988079071, - 1 - ], - [ - 0.574999988079071, - 0.512499988079071, - 1 - ], - [ - 0.574999988079071, - 0.5375000238418579, - 1 - ], - [ - 0.574999988079071, - 0.5375000238418579, - 1 - ], - [ - 0.574999988079071, - 0.5625, - 1 - ], - [ - 0.574999988079071, - 0.5625, - 1 - ], - [ - 0.574999988079071, - 0.5874999761581421, - 1 - ], - [ - 0.574999988079071, - 0.5874999761581421, - 1 - ], - [ - 0.574999988079071, - 0.612500011920929, - 1 - ], - [ - 0.574999988079071, - 0.612500011920929, - 1 - ], - [ - 0.574999988079071, - 0.637499988079071, - 1 - ], - [ - 0.574999988079071, - 0.637499988079071, - 1 - ], - [ - 0.574999988079071, - 0.6625000238418579, - 1 - ], - [ - 0.574999988079071, - 0.6625000238418579, - 1 - ], - [ - 0.574999988079071, - 0.6875, - 1 - ], - [ - 0.574999988079071, - 0.6875, - 1 - ], - [ - 0.574999988079071, - 0.7124999761581421, - 1 - ], - [ - 0.574999988079071, - 0.7124999761581421, - 1 - ], - [ - 0.574999988079071, - 0.737500011920929, - 1 - ], - [ - 0.574999988079071, - 0.737500011920929, - 1 - ], - [ - 0.574999988079071, - 0.762499988079071, - 1 - ], - [ - 0.574999988079071, - 0.762499988079071, - 1 - ], - [ - 0.574999988079071, - 0.7875000238418579, - 1 - ], - [ - 0.574999988079071, - 0.7875000238418579, - 1 - ], - [ - 0.574999988079071, - 0.8125, - 1 - ], - [ - 0.574999988079071, - 0.8125, - 1 - ], - [ - 0.574999988079071, - 0.8374999761581421, - 1 - ], - [ - 0.574999988079071, - 0.8374999761581421, - 1 - ], - [ - 0.574999988079071, - 0.862500011920929, - 1 - ], - [ - 0.574999988079071, - 0.862500011920929, - 1 - ], - [ - 0.574999988079071, - 0.887499988079071, - 1 - ], - [ - 0.574999988079071, - 0.887499988079071, - 1 - ], - [ - 0.574999988079071, - 0.9125000238418579, - 1 - ], - [ - 0.574999988079071, - 0.9125000238418579, - 1 - ], - [ - 0.574999988079071, - 0.9375, - 1 - ], - [ - 0.574999988079071, - 0.9375, - 1 - ], - [ - 0.574999988079071, - 0.9624999761581421, - 1 - ], - [ - 0.574999988079071, - 0.9624999761581421, - 1 - ], - [ - 0.574999988079071, - 0.987500011920929, - 1 - ], - [ - 0.574999988079071, - 0.987500011920929, - 1 - ], - [ - 0.625, - 0.012500000186264515, - 1 - ], - [ - 0.625, - 0.012500000186264515, - 1 - ], - [ - 0.625, - 0.03750000149011612, - 1 - ], - [ - 0.625, - 0.03750000149011612, - 1 - ], - [ - 0.625, - 0.0625, - 1 - ], - [ - 0.625, - 0.0625, - 1 - ], - [ - 0.625, - 0.08749999850988388, - 1 - ], - [ - 0.625, - 0.08749999850988388, - 1 - ], - [ - 0.625, - 0.11249999701976776, - 1 - ], - [ - 0.625, - 0.11249999701976776, - 1 - ], - [ - 0.625, - 0.13750000298023224, - 1 - ], - [ - 0.625, - 0.13750000298023224, - 1 - ], - [ - 0.625, - 0.16249999403953552, - 1 - ], - [ - 0.625, - 0.16249999403953552, - 1 - ], - [ - 0.625, - 0.1875, - 1 - ], - [ - 0.625, - 0.1875, - 1 - ], - [ - 0.625, - 0.21250000596046448, - 1 - ], - [ - 0.625, - 0.21250000596046448, - 1 - ], - [ - 0.625, - 0.23749999701976776, - 1 - ], - [ - 0.625, - 0.23749999701976776, - 1 - ], - [ - 0.625, - 0.26249998807907104, - 1 - ], - [ - 0.625, - 0.26249998807907104, - 1 - ], - [ - 0.625, - 0.2874999940395355, - 1 - ], - [ - 0.625, - 0.2874999940395355, - 1 - ], - [ - 0.625, - 0.3125, - 1 - ], - [ - 0.625, - 0.3125, - 1 - ], - [ - 0.625, - 0.3375000059604645, - 1 - ], - [ - 0.625, - 0.3375000059604645, - 1 - ], - [ - 0.625, - 0.36250001192092896, - 1 - ], - [ - 0.625, - 0.36250001192092896, - 1 - ], - [ - 0.625, - 0.38749998807907104, - 1 - ], - [ - 0.625, - 0.38749998807907104, - 1 - ], - [ - 0.625, - 0.4124999940395355, - 1 - ], - [ - 0.625, - 0.4124999940395355, - 1 - ], - [ - 0.625, - 0.4375, - 1 - ], - [ - 0.625, - 0.4375, - 1 - ], - [ - 0.625, - 0.4625000059604645, - 1 - ], - [ - 0.625, - 0.4625000059604645, - 1 - ], - [ - 0.625, - 0.48750001192092896, - 1 - ], - [ - 0.625, - 0.48750001192092896, - 1 - ], - [ - 0.625, - 0.512499988079071, - 1 - ], - [ - 0.625, - 0.512499988079071, - 1 - ], - [ - 0.625, - 0.5375000238418579, - 1 - ], - [ - 0.625, - 0.5375000238418579, - 1 - ], - [ - 0.625, - 0.5625, - 1 - ], - [ - 0.625, - 0.5625, - 1 - ], - [ - 0.625, - 0.5874999761581421, - 1 - ], - [ - 0.625, - 0.5874999761581421, - 1 - ], - [ - 0.625, - 0.612500011920929, - 1 - ], - [ - 0.625, - 0.612500011920929, - 1 - ], - [ - 0.625, - 0.637499988079071, - 1 - ], - [ - 0.625, - 0.637499988079071, - 1 - ], - [ - 0.625, - 0.6625000238418579, - 1 - ], - [ - 0.625, - 0.6625000238418579, - 1 - ], - [ - 0.625, - 0.6875, - 1 - ], - [ - 0.625, - 0.6875, - 1 - ], - [ - 0.625, - 0.7124999761581421, - 1 - ], - [ - 0.625, - 0.7124999761581421, - 1 - ], - [ - 0.625, - 0.737500011920929, - 1 - ], - [ - 0.625, - 0.737500011920929, - 1 - ], - [ - 0.625, - 0.762499988079071, - 1 - ], - [ - 0.625, - 0.762499988079071, - 1 - ], - [ - 0.625, - 0.7875000238418579, - 1 - ], - [ - 0.625, - 0.7875000238418579, - 1 - ], - [ - 0.625, - 0.8125, - 1 - ], - [ - 0.625, - 0.8125, - 1 - ], - [ - 0.625, - 0.8374999761581421, - 1 - ], - [ - 0.625, - 0.8374999761581421, - 1 - ], - [ - 0.625, - 0.862500011920929, - 1 - ], - [ - 0.625, - 0.862500011920929, - 1 - ], - [ - 0.625, - 0.887499988079071, - 1 - ], - [ - 0.625, - 0.887499988079071, - 1 - ], - [ - 0.625, - 0.9125000238418579, - 1 - ], - [ - 0.625, - 0.9125000238418579, - 1 - ], - [ - 0.625, - 0.9375, - 1 - ], - [ - 0.625, - 0.9375, - 1 - ], - [ - 0.625, - 0.9624999761581421, - 1 - ], - [ - 0.625, - 0.9624999761581421, - 1 - ], - [ - 0.625, - 0.987500011920929, - 1 - ], - [ - 0.625, - 0.987500011920929, - 1 - ], - [ - 0.675000011920929, - 0.012500000186264515, - 1 - ], - [ - 0.675000011920929, - 0.012500000186264515, - 1 - ], - [ - 0.675000011920929, - 0.03750000149011612, - 1 - ], - [ - 0.675000011920929, - 0.03750000149011612, - 1 - ], - [ - 0.675000011920929, - 0.0625, - 1 - ], - [ - 0.675000011920929, - 0.0625, - 1 - ], - [ - 0.675000011920929, - 0.08749999850988388, - 1 - ], - [ - 0.675000011920929, - 0.08749999850988388, - 1 - ], - [ - 0.675000011920929, - 0.11249999701976776, - 1 - ], - [ - 0.675000011920929, - 0.11249999701976776, - 1 - ], - [ - 0.675000011920929, - 0.13750000298023224, - 1 - ], - [ - 0.675000011920929, - 0.13750000298023224, - 1 - ], - [ - 0.675000011920929, - 0.16249999403953552, - 1 - ], - [ - 0.675000011920929, - 0.16249999403953552, - 1 - ], - [ - 0.675000011920929, - 0.1875, - 1 - ], - [ - 0.675000011920929, - 0.1875, - 1 - ], - [ - 0.675000011920929, - 0.21250000596046448, - 1 - ], - [ - 0.675000011920929, - 0.21250000596046448, - 1 - ], - [ - 0.675000011920929, - 0.23749999701976776, - 1 - ], - [ - 0.675000011920929, - 0.23749999701976776, - 1 - ], - [ - 0.675000011920929, - 0.26249998807907104, - 1 - ], - [ - 0.675000011920929, - 0.26249998807907104, - 1 - ], - [ - 0.675000011920929, - 0.2874999940395355, - 1 - ], - [ - 0.675000011920929, - 0.2874999940395355, - 1 - ], - [ - 0.675000011920929, - 0.3125, - 1 - ], - [ - 0.675000011920929, - 0.3125, - 1 - ], - [ - 0.675000011920929, - 0.3375000059604645, - 1 - ], - [ - 0.675000011920929, - 0.3375000059604645, - 1 - ], - [ - 0.675000011920929, - 0.36250001192092896, - 1 - ], - [ - 0.675000011920929, - 0.36250001192092896, - 1 - ], - [ - 0.675000011920929, - 0.38749998807907104, - 1 - ], - [ - 0.675000011920929, - 0.38749998807907104, - 1 - ], - [ - 0.675000011920929, - 0.4124999940395355, - 1 - ], - [ - 0.675000011920929, - 0.4124999940395355, - 1 - ], - [ - 0.675000011920929, - 0.4375, - 1 - ], - [ - 0.675000011920929, - 0.4375, - 1 - ], - [ - 0.675000011920929, - 0.4625000059604645, - 1 - ], - [ - 0.675000011920929, - 0.4625000059604645, - 1 - ], - [ - 0.675000011920929, - 0.48750001192092896, - 1 - ], - [ - 0.675000011920929, - 0.48750001192092896, - 1 - ], - [ - 0.675000011920929, - 0.512499988079071, - 1 - ], - [ - 0.675000011920929, - 0.512499988079071, - 1 - ], - [ - 0.675000011920929, - 0.5375000238418579, - 1 - ], - [ - 0.675000011920929, - 0.5375000238418579, - 1 - ], - [ - 0.675000011920929, - 0.5625, - 1 - ], - [ - 0.675000011920929, - 0.5625, - 1 - ], - [ - 0.675000011920929, - 0.5874999761581421, - 1 - ], - [ - 0.675000011920929, - 0.5874999761581421, - 1 - ], - [ - 0.675000011920929, - 0.612500011920929, - 1 - ], - [ - 0.675000011920929, - 0.612500011920929, - 1 - ], - [ - 0.675000011920929, - 0.637499988079071, - 1 - ], - [ - 0.675000011920929, - 0.637499988079071, - 1 - ], - [ - 0.675000011920929, - 0.6625000238418579, - 1 - ], - [ - 0.675000011920929, - 0.6625000238418579, - 1 - ], - [ - 0.675000011920929, - 0.6875, - 1 - ], - [ - 0.675000011920929, - 0.6875, - 1 - ], - [ - 0.675000011920929, - 0.7124999761581421, - 1 - ], - [ - 0.675000011920929, - 0.7124999761581421, - 1 - ], - [ - 0.675000011920929, - 0.737500011920929, - 1 - ], - [ - 0.675000011920929, - 0.737500011920929, - 1 - ], - [ - 0.675000011920929, - 0.762499988079071, - 1 - ], - [ - 0.675000011920929, - 0.762499988079071, - 1 - ], - [ - 0.675000011920929, - 0.7875000238418579, - 1 - ], - [ - 0.675000011920929, - 0.7875000238418579, - 1 - ], - [ - 0.675000011920929, - 0.8125, - 1 - ], - [ - 0.675000011920929, - 0.8125, - 1 - ], - [ - 0.675000011920929, - 0.8374999761581421, - 1 - ], - [ - 0.675000011920929, - 0.8374999761581421, - 1 - ], - [ - 0.675000011920929, - 0.862500011920929, - 1 - ], - [ - 0.675000011920929, - 0.862500011920929, - 1 - ], - [ - 0.675000011920929, - 0.887499988079071, - 1 - ], - [ - 0.675000011920929, - 0.887499988079071, - 1 - ], - [ - 0.675000011920929, - 0.9125000238418579, - 1 - ], - [ - 0.675000011920929, - 0.9125000238418579, - 1 - ], - [ - 0.675000011920929, - 0.9375, - 1 - ], - [ - 0.675000011920929, - 0.9375, - 1 - ], - [ - 0.675000011920929, - 0.9624999761581421, - 1 - ], - [ - 0.675000011920929, - 0.9624999761581421, - 1 - ], - [ - 0.675000011920929, - 0.987500011920929, - 1 - ], - [ - 0.675000011920929, - 0.987500011920929, - 1 - ], - [ - 0.7250000238418579, - 0.012500000186264515, - 1 - ], - [ - 0.7250000238418579, - 0.012500000186264515, - 1 - ], - [ - 0.7250000238418579, - 0.03750000149011612, - 1 - ], - [ - 0.7250000238418579, - 0.03750000149011612, - 1 - ], - [ - 0.7250000238418579, - 0.0625, - 1 - ], - [ - 0.7250000238418579, - 0.0625, - 1 - ], - [ - 0.7250000238418579, - 0.08749999850988388, - 1 - ], - [ - 0.7250000238418579, - 0.08749999850988388, - 1 - ], - [ - 0.7250000238418579, - 0.11249999701976776, - 1 - ], - [ - 0.7250000238418579, - 0.11249999701976776, - 1 - ], - [ - 0.7250000238418579, - 0.13750000298023224, - 1 - ], - [ - 0.7250000238418579, - 0.13750000298023224, - 1 - ], - [ - 0.7250000238418579, - 0.16249999403953552, - 1 - ], - [ - 0.7250000238418579, - 0.16249999403953552, - 1 - ], - [ - 0.7250000238418579, - 0.1875, - 1 - ], - [ - 0.7250000238418579, - 0.1875, - 1 - ], - [ - 0.7250000238418579, - 0.21250000596046448, - 1 - ], - [ - 0.7250000238418579, - 0.21250000596046448, - 1 - ], - [ - 0.7250000238418579, - 0.23749999701976776, - 1 - ], - [ - 0.7250000238418579, - 0.23749999701976776, - 1 - ], - [ - 0.7250000238418579, - 0.26249998807907104, - 1 - ], - [ - 0.7250000238418579, - 0.26249998807907104, - 1 - ], - [ - 0.7250000238418579, - 0.2874999940395355, - 1 - ], - [ - 0.7250000238418579, - 0.2874999940395355, - 1 - ], - [ - 0.7250000238418579, - 0.3125, - 1 - ], - [ - 0.7250000238418579, - 0.3125, - 1 - ], - [ - 0.7250000238418579, - 0.3375000059604645, - 1 - ], - [ - 0.7250000238418579, - 0.3375000059604645, - 1 - ], - [ - 0.7250000238418579, - 0.36250001192092896, - 1 - ], - [ - 0.7250000238418579, - 0.36250001192092896, - 1 - ], - [ - 0.7250000238418579, - 0.38749998807907104, - 1 - ], - [ - 0.7250000238418579, - 0.38749998807907104, - 1 - ], - [ - 0.7250000238418579, - 0.4124999940395355, - 1 - ], - [ - 0.7250000238418579, - 0.4124999940395355, - 1 - ], - [ - 0.7250000238418579, - 0.4375, - 1 - ], - [ - 0.7250000238418579, - 0.4375, - 1 - ], - [ - 0.7250000238418579, - 0.4625000059604645, - 1 - ], - [ - 0.7250000238418579, - 0.4625000059604645, - 1 - ], - [ - 0.7250000238418579, - 0.48750001192092896, - 1 - ], - [ - 0.7250000238418579, - 0.48750001192092896, - 1 - ], - [ - 0.7250000238418579, - 0.512499988079071, - 1 - ], - [ - 0.7250000238418579, - 0.512499988079071, - 1 - ], - [ - 0.7250000238418579, - 0.5375000238418579, - 1 - ], - [ - 0.7250000238418579, - 0.5375000238418579, - 1 - ], - [ - 0.7250000238418579, - 0.5625, - 1 - ], - [ - 0.7250000238418579, - 0.5625, - 1 - ], - [ - 0.7250000238418579, - 0.5874999761581421, - 1 - ], - [ - 0.7250000238418579, - 0.5874999761581421, - 1 - ], - [ - 0.7250000238418579, - 0.612500011920929, - 1 - ], - [ - 0.7250000238418579, - 0.612500011920929, - 1 - ], - [ - 0.7250000238418579, - 0.637499988079071, - 1 - ], - [ - 0.7250000238418579, - 0.637499988079071, - 1 - ], - [ - 0.7250000238418579, - 0.6625000238418579, - 1 - ], - [ - 0.7250000238418579, - 0.6625000238418579, - 1 - ], - [ - 0.7250000238418579, - 0.6875, - 1 - ], - [ - 0.7250000238418579, - 0.6875, - 1 - ], - [ - 0.7250000238418579, - 0.7124999761581421, - 1 - ], - [ - 0.7250000238418579, - 0.7124999761581421, - 1 - ], - [ - 0.7250000238418579, - 0.737500011920929, - 1 - ], - [ - 0.7250000238418579, - 0.737500011920929, - 1 - ], - [ - 0.7250000238418579, - 0.762499988079071, - 1 - ], - [ - 0.7250000238418579, - 0.762499988079071, - 1 - ], - [ - 0.7250000238418579, - 0.7875000238418579, - 1 - ], - [ - 0.7250000238418579, - 0.7875000238418579, - 1 - ], - [ - 0.7250000238418579, - 0.8125, - 1 - ], - [ - 0.7250000238418579, - 0.8125, - 1 - ], - [ - 0.7250000238418579, - 0.8374999761581421, - 1 - ], - [ - 0.7250000238418579, - 0.8374999761581421, - 1 - ], - [ - 0.7250000238418579, - 0.862500011920929, - 1 - ], - [ - 0.7250000238418579, - 0.862500011920929, - 1 - ], - [ - 0.7250000238418579, - 0.887499988079071, - 1 - ], - [ - 0.7250000238418579, - 0.887499988079071, - 1 - ], - [ - 0.7250000238418579, - 0.9125000238418579, - 1 - ], - [ - 0.7250000238418579, - 0.9125000238418579, - 1 - ], - [ - 0.7250000238418579, - 0.9375, - 1 - ], - [ - 0.7250000238418579, - 0.9375, - 1 - ], - [ - 0.7250000238418579, - 0.9624999761581421, - 1 - ], - [ - 0.7250000238418579, - 0.9624999761581421, - 1 - ], - [ - 0.7250000238418579, - 0.987500011920929, - 1 - ], - [ - 0.7250000238418579, - 0.987500011920929, - 1 - ], - [ - 0.7749999761581421, - 0.012500000186264515, - 1 - ], - [ - 0.7749999761581421, - 0.012500000186264515, - 1 - ], - [ - 0.7749999761581421, - 0.03750000149011612, - 1 - ], - [ - 0.7749999761581421, - 0.03750000149011612, - 1 - ], - [ - 0.7749999761581421, - 0.0625, - 1 - ], - [ - 0.7749999761581421, - 0.0625, - 1 - ], - [ - 0.7749999761581421, - 0.08749999850988388, - 1 - ], - [ - 0.7749999761581421, - 0.08749999850988388, - 1 - ], - [ - 0.7749999761581421, - 0.11249999701976776, - 1 - ], - [ - 0.7749999761581421, - 0.11249999701976776, - 1 - ], - [ - 0.7749999761581421, - 0.13750000298023224, - 1 - ], - [ - 0.7749999761581421, - 0.13750000298023224, - 1 - ], - [ - 0.7749999761581421, - 0.16249999403953552, - 1 - ], - [ - 0.7749999761581421, - 0.16249999403953552, - 1 - ], - [ - 0.7749999761581421, - 0.1875, - 1 - ], - [ - 0.7749999761581421, - 0.1875, - 1 - ], - [ - 0.7749999761581421, - 0.21250000596046448, - 1 - ], - [ - 0.7749999761581421, - 0.21250000596046448, - 1 - ], - [ - 0.7749999761581421, - 0.23749999701976776, - 1 - ], - [ - 0.7749999761581421, - 0.23749999701976776, - 1 - ], - [ - 0.7749999761581421, - 0.26249998807907104, - 1 - ], - [ - 0.7749999761581421, - 0.26249998807907104, - 1 - ], - [ - 0.7749999761581421, - 0.2874999940395355, - 1 - ], - [ - 0.7749999761581421, - 0.2874999940395355, - 1 - ], - [ - 0.7749999761581421, - 0.3125, - 1 - ], - [ - 0.7749999761581421, - 0.3125, - 1 - ], - [ - 0.7749999761581421, - 0.3375000059604645, - 1 - ], - [ - 0.7749999761581421, - 0.3375000059604645, - 1 - ], - [ - 0.7749999761581421, - 0.36250001192092896, - 1 - ], - [ - 0.7749999761581421, - 0.36250001192092896, - 1 - ], - [ - 0.7749999761581421, - 0.38749998807907104, - 1 - ], - [ - 0.7749999761581421, - 0.38749998807907104, - 1 - ], - [ - 0.7749999761581421, - 0.4124999940395355, - 1 - ], - [ - 0.7749999761581421, - 0.4124999940395355, - 1 - ], - [ - 0.7749999761581421, - 0.4375, - 1 - ], - [ - 0.7749999761581421, - 0.4375, - 1 - ], - [ - 0.7749999761581421, - 0.4625000059604645, - 1 - ], - [ - 0.7749999761581421, - 0.4625000059604645, - 1 - ], - [ - 0.7749999761581421, - 0.48750001192092896, - 1 - ], - [ - 0.7749999761581421, - 0.48750001192092896, - 1 - ], - [ - 0.7749999761581421, - 0.512499988079071, - 1 - ], - [ - 0.7749999761581421, - 0.512499988079071, - 1 - ], - [ - 0.7749999761581421, - 0.5375000238418579, - 1 - ], - [ - 0.7749999761581421, - 0.5375000238418579, - 1 - ], - [ - 0.7749999761581421, - 0.5625, - 1 - ], - [ - 0.7749999761581421, - 0.5625, - 1 - ], - [ - 0.7749999761581421, - 0.5874999761581421, - 1 - ], - [ - 0.7749999761581421, - 0.5874999761581421, - 1 - ], - [ - 0.7749999761581421, - 0.612500011920929, - 1 - ], - [ - 0.7749999761581421, - 0.612500011920929, - 1 - ], - [ - 0.7749999761581421, - 0.637499988079071, - 1 - ], - [ - 0.7749999761581421, - 0.637499988079071, - 1 - ], - [ - 0.7749999761581421, - 0.6625000238418579, - 1 - ], - [ - 0.7749999761581421, - 0.6625000238418579, - 1 - ], - [ - 0.7749999761581421, - 0.6875, - 1 - ], - [ - 0.7749999761581421, - 0.6875, - 1 - ], - [ - 0.7749999761581421, - 0.7124999761581421, - 1 - ], - [ - 0.7749999761581421, - 0.7124999761581421, - 1 - ], - [ - 0.7749999761581421, - 0.737500011920929, - 1 - ], - [ - 0.7749999761581421, - 0.737500011920929, - 1 - ], - [ - 0.7749999761581421, - 0.762499988079071, - 1 - ], - [ - 0.7749999761581421, - 0.762499988079071, - 1 - ], - [ - 0.7749999761581421, - 0.7875000238418579, - 1 - ], - [ - 0.7749999761581421, - 0.7875000238418579, - 1 - ], - [ - 0.7749999761581421, - 0.8125, - 1 - ], - [ - 0.7749999761581421, - 0.8125, - 1 - ], - [ - 0.7749999761581421, - 0.8374999761581421, - 1 - ], - [ - 0.7749999761581421, - 0.8374999761581421, - 1 - ], - [ - 0.7749999761581421, - 0.862500011920929, - 1 - ], - [ - 0.7749999761581421, - 0.862500011920929, - 1 - ], - [ - 0.7749999761581421, - 0.887499988079071, - 1 - ], - [ - 0.7749999761581421, - 0.887499988079071, - 1 - ], - [ - 0.7749999761581421, - 0.9125000238418579, - 1 - ], - [ - 0.7749999761581421, - 0.9125000238418579, - 1 - ], - [ - 0.7749999761581421, - 0.9375, - 1 - ], - [ - 0.7749999761581421, - 0.9375, - 1 - ], - [ - 0.7749999761581421, - 0.9624999761581421, - 1 - ], - [ - 0.7749999761581421, - 0.9624999761581421, - 1 - ], - [ - 0.7749999761581421, - 0.987500011920929, - 1 - ], - [ - 0.7749999761581421, - 0.987500011920929, - 1 - ], - [ - 0.824999988079071, - 0.012500000186264515, - 1 - ], - [ - 0.824999988079071, - 0.012500000186264515, - 1 - ], - [ - 0.824999988079071, - 0.03750000149011612, - 1 - ], - [ - 0.824999988079071, - 0.03750000149011612, - 1 - ], - [ - 0.824999988079071, - 0.0625, - 1 - ], - [ - 0.824999988079071, - 0.0625, - 1 - ], - [ - 0.824999988079071, - 0.08749999850988388, - 1 - ], - [ - 0.824999988079071, - 0.08749999850988388, - 1 - ], - [ - 0.824999988079071, - 0.11249999701976776, - 1 - ], - [ - 0.824999988079071, - 0.11249999701976776, - 1 - ], - [ - 0.824999988079071, - 0.13750000298023224, - 1 - ], - [ - 0.824999988079071, - 0.13750000298023224, - 1 - ], - [ - 0.824999988079071, - 0.16249999403953552, - 1 - ], - [ - 0.824999988079071, - 0.16249999403953552, - 1 - ], - [ - 0.824999988079071, - 0.1875, - 1 - ], - [ - 0.824999988079071, - 0.1875, - 1 - ], - [ - 0.824999988079071, - 0.21250000596046448, - 1 - ], - [ - 0.824999988079071, - 0.21250000596046448, - 1 - ], - [ - 0.824999988079071, - 0.23749999701976776, - 1 - ], - [ - 0.824999988079071, - 0.23749999701976776, - 1 - ], - [ - 0.824999988079071, - 0.26249998807907104, - 1 - ], - [ - 0.824999988079071, - 0.26249998807907104, - 1 - ], - [ - 0.824999988079071, - 0.2874999940395355, - 1 - ], - [ - 0.824999988079071, - 0.2874999940395355, - 1 - ], - [ - 0.824999988079071, - 0.3125, - 1 - ], - [ - 0.824999988079071, - 0.3125, - 1 - ], - [ - 0.824999988079071, - 0.3375000059604645, - 1 - ], - [ - 0.824999988079071, - 0.3375000059604645, - 1 - ], - [ - 0.824999988079071, - 0.36250001192092896, - 1 - ], - [ - 0.824999988079071, - 0.36250001192092896, - 1 - ], - [ - 0.824999988079071, - 0.38749998807907104, - 1 - ], - [ - 0.824999988079071, - 0.38749998807907104, - 1 - ], - [ - 0.824999988079071, - 0.4124999940395355, - 1 - ], - [ - 0.824999988079071, - 0.4124999940395355, - 1 - ], - [ - 0.824999988079071, - 0.4375, - 1 - ], - [ - 0.824999988079071, - 0.4375, - 1 - ], - [ - 0.824999988079071, - 0.4625000059604645, - 1 - ], - [ - 0.824999988079071, - 0.4625000059604645, - 1 - ], - [ - 0.824999988079071, - 0.48750001192092896, - 1 - ], - [ - 0.824999988079071, - 0.48750001192092896, - 1 - ], - [ - 0.824999988079071, - 0.512499988079071, - 1 - ], - [ - 0.824999988079071, - 0.512499988079071, - 1 - ], - [ - 0.824999988079071, - 0.5375000238418579, - 1 - ], - [ - 0.824999988079071, - 0.5375000238418579, - 1 - ], - [ - 0.824999988079071, - 0.5625, - 1 - ], - [ - 0.824999988079071, - 0.5625, - 1 - ], - [ - 0.824999988079071, - 0.5874999761581421, - 1 - ], - [ - 0.824999988079071, - 0.5874999761581421, - 1 - ], - [ - 0.824999988079071, - 0.612500011920929, - 1 - ], - [ - 0.824999988079071, - 0.612500011920929, - 1 - ], - [ - 0.824999988079071, - 0.637499988079071, - 1 - ], - [ - 0.824999988079071, - 0.637499988079071, - 1 - ], - [ - 0.824999988079071, - 0.6625000238418579, - 1 - ], - [ - 0.824999988079071, - 0.6625000238418579, - 1 - ], - [ - 0.824999988079071, - 0.6875, - 1 - ], - [ - 0.824999988079071, - 0.6875, - 1 - ], - [ - 0.824999988079071, - 0.7124999761581421, - 1 - ], - [ - 0.824999988079071, - 0.7124999761581421, - 1 - ], - [ - 0.824999988079071, - 0.737500011920929, - 1 - ], - [ - 0.824999988079071, - 0.737500011920929, - 1 - ], - [ - 0.824999988079071, - 0.762499988079071, - 1 - ], - [ - 0.824999988079071, - 0.762499988079071, - 1 - ], - [ - 0.824999988079071, - 0.7875000238418579, - 1 - ], - [ - 0.824999988079071, - 0.7875000238418579, - 1 - ], - [ - 0.824999988079071, - 0.8125, - 1 - ], - [ - 0.824999988079071, - 0.8125, - 1 - ], - [ - 0.824999988079071, - 0.8374999761581421, - 1 - ], - [ - 0.824999988079071, - 0.8374999761581421, - 1 - ], - [ - 0.824999988079071, - 0.862500011920929, - 1 - ], - [ - 0.824999988079071, - 0.862500011920929, - 1 - ], - [ - 0.824999988079071, - 0.887499988079071, - 1 - ], - [ - 0.824999988079071, - 0.887499988079071, - 1 - ], - [ - 0.824999988079071, - 0.9125000238418579, - 1 - ], - [ - 0.824999988079071, - 0.9125000238418579, - 1 - ], - [ - 0.824999988079071, - 0.9375, - 1 - ], - [ - 0.824999988079071, - 0.9375, - 1 - ], - [ - 0.824999988079071, - 0.9624999761581421, - 1 - ], - [ - 0.824999988079071, - 0.9624999761581421, - 1 - ], - [ - 0.824999988079071, - 0.987500011920929, - 1 - ], - [ - 0.824999988079071, - 0.987500011920929, - 1 - ], - [ - 0.875, - 0.012500000186264515, - 1 - ], - [ - 0.875, - 0.012500000186264515, - 1 - ], - [ - 0.875, - 0.03750000149011612, - 1 - ], - [ - 0.875, - 0.03750000149011612, - 1 - ], - [ - 0.875, - 0.0625, - 1 - ], - [ - 0.875, - 0.0625, - 1 - ], - [ - 0.875, - 0.08749999850988388, - 1 - ], - [ - 0.875, - 0.08749999850988388, - 1 - ], - [ - 0.875, - 0.11249999701976776, - 1 - ], - [ - 0.875, - 0.11249999701976776, - 1 - ], - [ - 0.875, - 0.13750000298023224, - 1 - ], - [ - 0.875, - 0.13750000298023224, - 1 - ], - [ - 0.875, - 0.16249999403953552, - 1 - ], - [ - 0.875, - 0.16249999403953552, - 1 - ], - [ - 0.875, - 0.1875, - 1 - ], - [ - 0.875, - 0.1875, - 1 - ], - [ - 0.875, - 0.21250000596046448, - 1 - ], - [ - 0.875, - 0.21250000596046448, - 1 - ], - [ - 0.875, - 0.23749999701976776, - 1 - ], - [ - 0.875, - 0.23749999701976776, - 1 - ], - [ - 0.875, - 0.26249998807907104, - 1 - ], - [ - 0.875, - 0.26249998807907104, - 1 - ], - [ - 0.875, - 0.2874999940395355, - 1 - ], - [ - 0.875, - 0.2874999940395355, - 1 - ], - [ - 0.875, - 0.3125, - 1 - ], - [ - 0.875, - 0.3125, - 1 - ], - [ - 0.875, - 0.3375000059604645, - 1 - ], - [ - 0.875, - 0.3375000059604645, - 1 - ], - [ - 0.875, - 0.36250001192092896, - 1 - ], - [ - 0.875, - 0.36250001192092896, - 1 - ], - [ - 0.875, - 0.38749998807907104, - 1 - ], - [ - 0.875, - 0.38749998807907104, - 1 - ], - [ - 0.875, - 0.4124999940395355, - 1 - ], - [ - 0.875, - 0.4124999940395355, - 1 - ], - [ - 0.875, - 0.4375, - 1 - ], - [ - 0.875, - 0.4375, - 1 - ], - [ - 0.875, - 0.4625000059604645, - 1 - ], - [ - 0.875, - 0.4625000059604645, - 1 - ], - [ - 0.875, - 0.48750001192092896, - 1 - ], - [ - 0.875, - 0.48750001192092896, - 1 - ], - [ - 0.875, - 0.512499988079071, - 1 - ], - [ - 0.875, - 0.512499988079071, - 1 - ], - [ - 0.875, - 0.5375000238418579, - 1 - ], - [ - 0.875, - 0.5375000238418579, - 1 - ], - [ - 0.875, - 0.5625, - 1 - ], - [ - 0.875, - 0.5625, - 1 - ], - [ - 0.875, - 0.5874999761581421, - 1 - ], - [ - 0.875, - 0.5874999761581421, - 1 - ], - [ - 0.875, - 0.612500011920929, - 1 - ], - [ - 0.875, - 0.612500011920929, - 1 - ], - [ - 0.875, - 0.637499988079071, - 1 - ], - [ - 0.875, - 0.637499988079071, - 1 - ], - [ - 0.875, - 0.6625000238418579, - 1 - ], - [ - 0.875, - 0.6625000238418579, - 1 - ], - [ - 0.875, - 0.6875, - 1 - ], - [ - 0.875, - 0.6875, - 1 - ], - [ - 0.875, - 0.7124999761581421, - 1 - ], - [ - 0.875, - 0.7124999761581421, - 1 - ], - [ - 0.875, - 0.737500011920929, - 1 - ], - [ - 0.875, - 0.737500011920929, - 1 - ], - [ - 0.875, - 0.762499988079071, - 1 - ], - [ - 0.875, - 0.762499988079071, - 1 - ], - [ - 0.875, - 0.7875000238418579, - 1 - ], - [ - 0.875, - 0.7875000238418579, - 1 - ], - [ - 0.875, - 0.8125, - 1 - ], - [ - 0.875, - 0.8125, - 1 - ], - [ - 0.875, - 0.8374999761581421, - 1 - ], - [ - 0.875, - 0.8374999761581421, - 1 - ], - [ - 0.875, - 0.862500011920929, - 1 - ], - [ - 0.875, - 0.862500011920929, - 1 - ], - [ - 0.875, - 0.887499988079071, - 1 - ], - [ - 0.875, - 0.887499988079071, - 1 - ], - [ - 0.875, - 0.9125000238418579, - 1 - ], - [ - 0.875, - 0.9125000238418579, - 1 - ], - [ - 0.875, - 0.9375, - 1 - ], - [ - 0.875, - 0.9375, - 1 - ], - [ - 0.875, - 0.9624999761581421, - 1 - ], - [ - 0.875, - 0.9624999761581421, - 1 - ], - [ - 0.875, - 0.987500011920929, - 1 - ], - [ - 0.875, - 0.987500011920929, - 1 - ], - [ - 0.925000011920929, - 0.012500000186264515, - 1 - ], - [ - 0.925000011920929, - 0.012500000186264515, - 1 - ], - [ - 0.925000011920929, - 0.03750000149011612, - 1 - ], - [ - 0.925000011920929, - 0.03750000149011612, - 1 - ], - [ - 0.925000011920929, - 0.0625, - 1 - ], - [ - 0.925000011920929, - 0.0625, - 1 - ], - [ - 0.925000011920929, - 0.08749999850988388, - 1 - ], - [ - 0.925000011920929, - 0.08749999850988388, - 1 - ], - [ - 0.925000011920929, - 0.11249999701976776, - 1 - ], - [ - 0.925000011920929, - 0.11249999701976776, - 1 - ], - [ - 0.925000011920929, - 0.13750000298023224, - 1 - ], - [ - 0.925000011920929, - 0.13750000298023224, - 1 - ], - [ - 0.925000011920929, - 0.16249999403953552, - 1 - ], - [ - 0.925000011920929, - 0.16249999403953552, - 1 - ], - [ - 0.925000011920929, - 0.1875, - 1 - ], - [ - 0.925000011920929, - 0.1875, - 1 - ], - [ - 0.925000011920929, - 0.21250000596046448, - 1 - ], - [ - 0.925000011920929, - 0.21250000596046448, - 1 - ], - [ - 0.925000011920929, - 0.23749999701976776, - 1 - ], - [ - 0.925000011920929, - 0.23749999701976776, - 1 - ], - [ - 0.925000011920929, - 0.26249998807907104, - 1 - ], - [ - 0.925000011920929, - 0.26249998807907104, - 1 - ], - [ - 0.925000011920929, - 0.2874999940395355, - 1 - ], - [ - 0.925000011920929, - 0.2874999940395355, - 1 - ], - [ - 0.925000011920929, - 0.3125, - 1 - ], - [ - 0.925000011920929, - 0.3125, - 1 - ], - [ - 0.925000011920929, - 0.3375000059604645, - 1 - ], - [ - 0.925000011920929, - 0.3375000059604645, - 1 - ], - [ - 0.925000011920929, - 0.36250001192092896, - 1 - ], - [ - 0.925000011920929, - 0.36250001192092896, - 1 - ], - [ - 0.925000011920929, - 0.38749998807907104, - 1 - ], - [ - 0.925000011920929, - 0.38749998807907104, - 1 - ], - [ - 0.925000011920929, - 0.4124999940395355, - 1 - ], - [ - 0.925000011920929, - 0.4124999940395355, - 1 - ], - [ - 0.925000011920929, - 0.4375, - 1 - ], - [ - 0.925000011920929, - 0.4375, - 1 - ], - [ - 0.925000011920929, - 0.4625000059604645, - 1 - ], - [ - 0.925000011920929, - 0.4625000059604645, - 1 - ], - [ - 0.925000011920929, - 0.48750001192092896, - 1 - ], - [ - 0.925000011920929, - 0.48750001192092896, - 1 - ], - [ - 0.925000011920929, - 0.512499988079071, - 1 - ], - [ - 0.925000011920929, - 0.512499988079071, - 1 - ], - [ - 0.925000011920929, - 0.5375000238418579, - 1 - ], - [ - 0.925000011920929, - 0.5375000238418579, - 1 - ], - [ - 0.925000011920929, - 0.5625, - 1 - ], - [ - 0.925000011920929, - 0.5625, - 1 - ], - [ - 0.925000011920929, - 0.5874999761581421, - 1 - ], - [ - 0.925000011920929, - 0.5874999761581421, - 1 - ], - [ - 0.925000011920929, - 0.612500011920929, - 1 - ], - [ - 0.925000011920929, - 0.612500011920929, - 1 - ], - [ - 0.925000011920929, - 0.637499988079071, - 1 - ], - [ - 0.925000011920929, - 0.637499988079071, - 1 - ], - [ - 0.925000011920929, - 0.6625000238418579, - 1 - ], - [ - 0.925000011920929, - 0.6625000238418579, - 1 - ], - [ - 0.925000011920929, - 0.6875, - 1 - ], - [ - 0.925000011920929, - 0.6875, - 1 - ], - [ - 0.925000011920929, - 0.7124999761581421, - 1 - ], - [ - 0.925000011920929, - 0.7124999761581421, - 1 - ], - [ - 0.925000011920929, - 0.737500011920929, - 1 - ], - [ - 0.925000011920929, - 0.737500011920929, - 1 - ], - [ - 0.925000011920929, - 0.762499988079071, - 1 - ], - [ - 0.925000011920929, - 0.762499988079071, - 1 - ], - [ - 0.925000011920929, - 0.7875000238418579, - 1 - ], - [ - 0.925000011920929, - 0.7875000238418579, - 1 - ], - [ - 0.925000011920929, - 0.8125, - 1 - ], - [ - 0.925000011920929, - 0.8125, - 1 - ], - [ - 0.925000011920929, - 0.8374999761581421, - 1 - ], - [ - 0.925000011920929, - 0.8374999761581421, - 1 - ], - [ - 0.925000011920929, - 0.862500011920929, - 1 - ], - [ - 0.925000011920929, - 0.862500011920929, - 1 - ], - [ - 0.925000011920929, - 0.887499988079071, - 1 - ], - [ - 0.925000011920929, - 0.887499988079071, - 1 - ], - [ - 0.925000011920929, - 0.9125000238418579, - 1 - ], - [ - 0.925000011920929, - 0.9125000238418579, - 1 - ], - [ - 0.925000011920929, - 0.9375, - 1 - ], - [ - 0.925000011920929, - 0.9375, - 1 - ], - [ - 0.925000011920929, - 0.9624999761581421, - 1 - ], - [ - 0.925000011920929, - 0.9624999761581421, - 1 - ], - [ - 0.925000011920929, - 0.987500011920929, - 1 - ], - [ - 0.925000011920929, - 0.987500011920929, - 1 - ], - [ - 0.9750000238418579, - 0.012500000186264515, - 1 - ], - [ - 0.9750000238418579, - 0.012500000186264515, - 1 - ], - [ - 0.9750000238418579, - 0.03750000149011612, - 1 - ], - [ - 0.9750000238418579, - 0.03750000149011612, - 1 - ], - [ - 0.9750000238418579, - 0.0625, - 1 - ], - [ - 0.9750000238418579, - 0.0625, - 1 - ], - [ - 0.9750000238418579, - 0.08749999850988388, - 1 - ], - [ - 0.9750000238418579, - 0.08749999850988388, - 1 - ], - [ - 0.9750000238418579, - 0.11249999701976776, - 1 - ], - [ - 0.9750000238418579, - 0.11249999701976776, - 1 - ], - [ - 0.9750000238418579, - 0.13750000298023224, - 1 - ], - [ - 0.9750000238418579, - 0.13750000298023224, - 1 - ], - [ - 0.9750000238418579, - 0.16249999403953552, - 1 - ], - [ - 0.9750000238418579, - 0.16249999403953552, - 1 - ], - [ - 0.9750000238418579, - 0.1875, - 1 - ], - [ - 0.9750000238418579, - 0.1875, - 1 - ], - [ - 0.9750000238418579, - 0.21250000596046448, - 1 - ], - [ - 0.9750000238418579, - 0.21250000596046448, - 1 - ], - [ - 0.9750000238418579, - 0.23749999701976776, - 1 - ], - [ - 0.9750000238418579, - 0.23749999701976776, - 1 - ], - [ - 0.9750000238418579, - 0.26249998807907104, - 1 - ], - [ - 0.9750000238418579, - 0.26249998807907104, - 1 - ], - [ - 0.9750000238418579, - 0.2874999940395355, - 1 - ], - [ - 0.9750000238418579, - 0.2874999940395355, - 1 - ], - [ - 0.9750000238418579, - 0.3125, - 1 - ], - [ - 0.9750000238418579, - 0.3125, - 1 - ], - [ - 0.9750000238418579, - 0.3375000059604645, - 1 - ], - [ - 0.9750000238418579, - 0.3375000059604645, - 1 - ], - [ - 0.9750000238418579, - 0.36250001192092896, - 1 - ], - [ - 0.9750000238418579, - 0.36250001192092896, - 1 - ], - [ - 0.9750000238418579, - 0.38749998807907104, - 1 - ], - [ - 0.9750000238418579, - 0.38749998807907104, - 1 - ], - [ - 0.9750000238418579, - 0.4124999940395355, - 1 - ], - [ - 0.9750000238418579, - 0.4124999940395355, - 1 - ], - [ - 0.9750000238418579, - 0.4375, - 1 - ], - [ - 0.9750000238418579, - 0.4375, - 1 - ], - [ - 0.9750000238418579, - 0.4625000059604645, - 1 - ], - [ - 0.9750000238418579, - 0.4625000059604645, - 1 - ], - [ - 0.9750000238418579, - 0.48750001192092896, - 1 - ], - [ - 0.9750000238418579, - 0.48750001192092896, - 1 - ], - [ - 0.9750000238418579, - 0.512499988079071, - 1 - ], - [ - 0.9750000238418579, - 0.512499988079071, - 1 - ], - [ - 0.9750000238418579, - 0.5375000238418579, - 1 - ], - [ - 0.9750000238418579, - 0.5375000238418579, - 1 - ], - [ - 0.9750000238418579, - 0.5625, - 1 - ], - [ - 0.9750000238418579, - 0.5625, - 1 - ], - [ - 0.9750000238418579, - 0.5874999761581421, - 1 - ], - [ - 0.9750000238418579, - 0.5874999761581421, - 1 - ], - [ - 0.9750000238418579, - 0.612500011920929, - 1 - ], - [ - 0.9750000238418579, - 0.612500011920929, - 1 - ], - [ - 0.9750000238418579, - 0.637499988079071, - 1 - ], - [ - 0.9750000238418579, - 0.637499988079071, - 1 - ], - [ - 0.9750000238418579, - 0.6625000238418579, - 1 - ], - [ - 0.9750000238418579, - 0.6625000238418579, - 1 - ], - [ - 0.9750000238418579, - 0.6875, - 1 - ], - [ - 0.9750000238418579, - 0.6875, - 1 - ], - [ - 0.9750000238418579, - 0.7124999761581421, - 1 - ], - [ - 0.9750000238418579, - 0.7124999761581421, - 1 - ], - [ - 0.9750000238418579, - 0.737500011920929, - 1 - ], - [ - 0.9750000238418579, - 0.737500011920929, - 1 - ], - [ - 0.9750000238418579, - 0.762499988079071, - 1 - ], - [ - 0.9750000238418579, - 0.762499988079071, - 1 - ], - [ - 0.9750000238418579, - 0.7875000238418579, - 1 - ], - [ - 0.9750000238418579, - 0.7875000238418579, - 1 - ], - [ - 0.9750000238418579, - 0.8125, - 1 - ], - [ - 0.9750000238418579, - 0.8125, - 1 - ], - [ - 0.9750000238418579, - 0.8374999761581421, - 1 - ], - [ - 0.9750000238418579, - 0.8374999761581421, - 1 - ], - [ - 0.9750000238418579, - 0.862500011920929, - 1 - ], - [ - 0.9750000238418579, - 0.862500011920929, - 1 - ], - [ - 0.9750000238418579, - 0.887499988079071, - 1 - ], - [ - 0.9750000238418579, - 0.887499988079071, - 1 - ], - [ - 0.9750000238418579, - 0.9125000238418579, - 1 - ], - [ - 0.9750000238418579, - 0.9125000238418579, - 1 - ], - [ - 0.9750000238418579, - 0.9375, - 1 - ], - [ - 0.9750000238418579, - 0.9375, - 1 - ], - [ - 0.9750000238418579, - 0.9624999761581421, - 1 - ], - [ - 0.9750000238418579, - 0.9624999761581421, - 1 - ], - [ - 0.9750000238418579, - 0.987500011920929, - 1 - ], - [ - 0.9750000238418579, - 0.987500011920929, - 1 - ] - ], - "size": 4 - }, - "type": "scatter3d", - "x": [ - 0, - -0.006155827548354864, - 0, - -0.01831590197980404, - 0, - -0.030024996027350426, - 0, - -0.04099477455019951, - 0, - -0.05095512419939041, - 0, - -0.05966077744960785, - 0, - -0.06689739972352982, - 0, - -0.0724867731332779, - 0, - -0.0762912929058075, - 0, - -0.07821726053953171, - 0, - -0.07821726053953171, - 0, - -0.07629130035638809, - 0, - -0.07248678058385849, - 0, - -0.06689740717411041, - 0, - -0.05966079235076904, - 0, - -0.05095512419939041, - 0, - -0.040994782000780106, - 0, - -0.03002500906586647, - 0, - -0.01831592246890068, - 0, - -0.006155832204967737, - 0, - 0.006155832204967737, - 0, - 0.01831592246890068, - 0, - 0.03002500906586647, - 0, - 0.040994782000780106, - 0, - 0.05095512419939041, - 0, - 0.05966079235076904, - 0, - 0.06689740717411041, - 0, - 0.07248678058385849, - 0, - 0.07629130035638809, - 0, - 0.07821726053953171, - 0, - 0.07821726053953171, - 0, - 0.0762912929058075, - 0, - 0.0724867731332779, - 0, - 0.06689739972352982, - 0, - 0.05966077744960785, - 0, - 0.05095512419939041, - 0, - 0.04099477455019951, - 0, - 0.030024996027350426, - 0, - 0.01831590197980404, - 0, - 0.006155827548354864, - 0, - -0.01831589825451374, - 0, - -0.05449667572975159, - 0, - -0.08933562785387039, - 0, - -0.12197484076023102, - 0, - -0.1516106277704239, - 0, - -0.17751319706439972, - 0, - -0.199044868350029, - 0, - -0.21567535400390625, - 0, - -0.22699521481990814, - 0, - -0.23272570967674255, - 0, - -0.23272570967674255, - 0, - -0.22699522972106934, - 0, - -0.21567536890506744, - 0, - -0.19904488325119019, - 0, - -0.1775132566690445, - 0, - -0.1516106277704239, - 0, - -0.12197485566139221, - 0, - -0.08933566510677338, - 0, - -0.05449673533439636, - 0, - -0.018315911293029785, - 0, - 0.018315911293029785, - 0, - 0.05449673533439636, - 0, - 0.08933566510677338, - 0, - 0.12197485566139221, - 0, - 0.1516106277704239, - 0, - 0.1775132566690445, - 0, - 0.19904488325119019, - 0, - 0.21567536890506744, - 0, - 0.22699522972106934, - 0, - 0.23272570967674255, - 0, - 0.23272570967674255, - 0, - 0.22699521481990814, - 0, - 0.21567535400390625, - 0, - 0.199044868350029, - 0, - 0.17751319706439972, - 0, - 0.1516106277704239, - 0, - 0.12197484076023102, - 0, - 0.08933562785387039, - 0, - 0.05449667572975159, - 0, - 0.01831589825451374, - 0, - -0.030024977400898933, - 0, - -0.089335598051548, - 0, - -0.14644655585289001, - 0, - -0.19995154440402985, - 0, - -0.24853302538394928, - 0, - -0.2909947335720062, - 0, - -0.3262912631034851, - 0, - -0.3535534143447876, - 0, - -0.37210988998413086, - 0, - -0.38150376081466675, - 0, - -0.38150376081466675, - 0, - -0.37210988998413086, - 0, - -0.35355344414711, - 0, - -0.3262912929058075, - 0, - -0.2909948229789734, - 0, - -0.24853302538394928, - 0, - -0.19995155930519104, - 0, - -0.14644664525985718, - 0, - -0.08933569490909576, - 0, - -0.030025001615285873, - 0, - 0.030025001615285873, - 0, - 0.08933569490909576, - 0, - 0.14644664525985718, - 0, - 0.19995155930519104, - 0, - 0.24853302538394928, - 0, - 0.2909948229789734, - 0, - 0.3262912929058075, - 0, - 0.35355344414711, - 0, - 0.37210988998413086, - 0, - 0.38150376081466675, - 0, - 0.38150376081466675, - 0, - 0.37210988998413086, - 0, - 0.3535534143447876, - 0, - 0.3262912631034851, - 0, - 0.2909947335720062, - 0, - 0.24853302538394928, - 0, - 0.19995154440402985, - 0, - 0.14644655585289001, - 0, - 0.089335598051548, - 0, - 0.030024977400898933, - 0, - -0.040994737297296524, - 0, - -0.12197475880384445, - 0, - -0.19995148479938507, - 0, - -0.2730047404766083, - 0, - -0.33933570981025696, - 0, - -0.3973110020160675, - 0, - -0.44550326466560364, - 0, - -0.48272576928138733, - 0, - -0.508061945438385, - 0, - -0.5208879113197327, - 0, - -0.5208879113197327, - 0, - -0.508061945438385, - 0, - -0.4827257990837097, - 0, - -0.445503294467926, - 0, - -0.39731109142303467, - 0, - -0.33933570981025696, - 0, - -0.27300477027893066, - 0, - -0.19995157420635223, - 0, - -0.1219748929142952, - 0, - -0.04099477082490921, - 0, - 0.04099477082490921, - 0, - 0.1219748929142952, - 0, - 0.19995157420635223, - 0, - 0.27300477027893066, - 0, - 0.33933570981025696, - 0, - 0.39731109142303467, - 0, - 0.445503294467926, - 0, - 0.4827257990837097, - 0, - 0.508061945438385, - 0, - 0.5208879113197327, - 0, - 0.5208879113197327, - 0, - 0.508061945438385, - 0, - 0.48272576928138733, - 0, - 0.44550326466560364, - 0, - 0.3973110020160675, - 0, - 0.33933570981025696, - 0, - 0.2730047404766083, - 0, - 0.19995148479938507, - 0, - 0.12197475880384445, - 0, - 0.040994737297296524, - 0, - -0.05095507204532623, - 0, - -0.15161050856113434, - 0, - -0.24853290617465973, - 0, - -0.3393356502056122, - 0, - -0.4217827618122101, - 0, - -0.49384409189224243, - 0, - -0.5537455081939697, - 0, - -0.6000117659568787, - 0, - -0.6315037608146667, - 0, - -0.6474460363388062, - 0, - -0.6474460363388062, - 0, - -0.6315037608146667, - 0, - -0.6000117659568787, - 0, - -0.5537455081939697, - 0, - -0.493844211101532, - 0, - -0.4217827618122101, - 0, - -0.33933568000793457, - 0, - -0.24853304028511047, - 0, - -0.15161067247390747, - 0, - -0.050955113023519516, - 0, - 0.050955113023519516, - 0, - 0.15161067247390747, - 0, - 0.24853304028511047, - 0, - 0.33933568000793457, - 0, - 0.4217827618122101, - 0, - 0.493844211101532, - 0, - 0.5537455081939697, - 0, - 0.6000117659568787, - 0, - 0.6315037608146667, - 0, - 0.6474460363388062, - 0, - 0.6474460363388062, - 0, - 0.6315037608146667, - 0, - 0.6000117659568787, - 0, - 0.5537455081939697, - 0, - 0.49384409189224243, - 0, - 0.4217827618122101, - 0, - 0.3393356502056122, - 0, - 0.24853290617465973, - 0, - 0.15161050856113434, - 0, - 0.05095507204532623, - 0, - -0.05966072529554367, - 0, - -0.17751309275627136, - 0, - -0.29099467396736145, - 0, - -0.3973110020160675, - 0, - -0.493844211101532, - 0, - -0.5782171487808228, - 0, - -0.6483526825904846, - 0, - -0.7025235295295715, - 0, - -0.7393959760665894, - 0, - -0.758061945438385, - 0, - -0.758061945438385, - 0, - -0.7393959760665894, - 0, - -0.7025235891342163, - 0, - -0.6483526825904846, - 0, - -0.5782173275947571, - 0, - -0.493844211101532, - 0, - -0.3973110616207123, - 0, - -0.290994793176651, - 0, - -0.17751328647136688, - 0, - -0.05966076999902725, - 0, - 0.05966076999902725, - 0, - 0.17751328647136688, - 0, - 0.290994793176651, - 0, - 0.3973110616207123, - 0, - 0.493844211101532, - 0, - 0.5782173275947571, - 0, - 0.6483526825904846, - 0, - 0.7025235891342163, - 0, - 0.7393959760665894, - 0, - 0.758061945438385, - 0, - 0.758061945438385, - 0, - 0.7393959760665894, - 0, - 0.7025235295295715, - 0, - 0.6483526825904846, - 0, - 0.5782171487808228, - 0, - 0.493844211101532, - 0, - 0.3973110020160675, - 0, - 0.29099467396736145, - 0, - 0.17751309275627136, - 0, - 0.05966072529554367, - 0, - -0.06689733266830444, - 0, - -0.19904470443725586, - 0, - -0.32629111409187317, - 0, - -0.44550320506095886, - 0, - -0.5537455081939697, - 0, - -0.6483525633811951, - 0, - -0.7269952297210693, - 0, - -0.7877367734909058, - 0, - -0.829081654548645, - 0, - -0.8500117659568787, - 0, - -0.8500117659568787, - 0, - -0.829081654548645, - 0, - -0.7877368330955505, - 0, - -0.7269952297210693, - 0, - -0.6483526825904846, - 0, - -0.5537455081939697, - 0, - -0.44550323486328125, - 0, - -0.3262912929058075, - 0, - -0.19904491305351257, - 0, - -0.06689738482236862, - 0, - 0.06689738482236862, - 0, - 0.19904491305351257, - 0, - 0.3262912929058075, - 0, - 0.44550323486328125, - 0, - 0.5537455081939697, - 0, - 0.6483526825904846, - 0, - 0.7269952297210693, - 0, - 0.7877368330955505, - 0, - 0.829081654548645, - 0, - 0.8500117659568787, - 0, - 0.8500117659568787, - 0, - 0.829081654548645, - 0, - 0.7877367734909058, - 0, - 0.7269952297210693, - 0, - 0.6483525633811951, - 0, - 0.5537455081939697, - 0, - 0.44550320506095886, - 0, - 0.32629111409187317, - 0, - 0.19904470443725586, - 0, - 0.06689733266830444, - 0, - -0.07248670607805252, - 0, - -0.21567519009113312, - 0, - -0.35355326533317566, - 0, - -0.48272567987442017, - 0, - -0.6000117659568787, - 0, - -0.702523410320282, - 0, - -0.7877367734909058, - 0, - -0.8535534143447876, - 0, - -0.8983526825904846, - 0, - -0.9210315346717834, - 0, - -0.9210315346717834, - 0, - -0.8983527421951294, - 0, - -0.8535534739494324, - 0, - -0.7877368330955505, - 0, - -0.7025235891342163, - 0, - -0.6000117659568787, - 0, - -0.48272573947906494, - 0, - -0.3535534143447876, - 0, - -0.21567542850971222, - 0, - -0.0724867582321167, - 0, - 0.0724867582321167, - 0, - 0.21567542850971222, - 0, - 0.3535534143447876, - 0, - 0.48272573947906494, - 0, - 0.6000117659568787, - 0, - 0.7025235891342163, - 0, - 0.7877368330955505, - 0, - 0.8535534739494324, - 0, - 0.8983527421951294, - 0, - 0.9210315346717834, - 0, - 0.9210315346717834, - 0, - 0.8983526825904846, - 0, - 0.8535534143447876, - 0, - 0.7877367734909058, - 0, - 0.702523410320282, - 0, - 0.6000117659568787, - 0, - 0.48272567987442017, - 0, - 0.35355326533317566, - 0, - 0.21567519009113312, - 0, - 0.07248670607805252, - 0, - -0.07629121094942093, - 0, - -0.22699503600597382, - 0, - -0.3721097409725189, - 0, - -0.5080618262290955, - 0, - -0.6315037608146667, - 0, - -0.739395797252655, - 0, - -0.8290815949440002, - 0, - -0.8983526825904846, - 0, - -0.945503294467926, - 0, - -0.9693724513053894, - 0, - -0.9693724513053894, - 0, - -0.9455033540725708, - 0, - -0.8983527421951294, - 0, - -0.829081654548645, - 0, - -0.7393959760665894, - 0, - -0.6315037608146667, - 0, - -0.5080618858337402, - 0, - -0.37210988998413086, - 0, - -0.2269952893257141, - 0, - -0.0762912705540657, - 0, - 0.0762912705540657, - 0, - 0.2269952893257141, - 0, - 0.37210988998413086, - 0, - 0.5080618858337402, - 0, - 0.6315037608146667, - 0, - 0.7393959760665894, - 0, - 0.829081654548645, - 0, - 0.8983527421951294, - 0, - 0.9455033540725708, - 0, - 0.9693724513053894, - 0, - 0.9693724513053894, - 0, - 0.945503294467926, - 0, - 0.8983526825904846, - 0, - 0.8290815949440002, - 0, - 0.739395797252655, - 0, - 0.6315037608146667, - 0, - 0.5080618262290955, - 0, - 0.3721097409725189, - 0, - 0.22699503600597382, - 0, - 0.07629121094942093, - 0, - -0.07821717858314514, - 0, - -0.23272551596164703, - 0, - -0.3815035820007324, - 0, - -0.5208878517150879, - 0, - -0.6474460363388062, - 0, - -0.7580617666244507, - 0, - -0.8500117063522339, - 0, - -0.9210314750671387, - 0, - -0.9693724513053894, - 0, - -0.9938441514968872, - 0, - -0.9938441514968872, - 0, - -0.9693724513053894, - 0, - -0.9210315346717834, - 0, - -0.8500117659568787, - 0, - -0.758061945438385, - 0, - -0.6474460363388062, - 0, - -0.5208879113197327, - 0, - -0.38150379061698914, - 0, - -0.23272576928138733, - 0, - -0.07821723818778992, - 0, - 0.07821723818778992, - 0, - 0.23272576928138733, - 0, - 0.38150379061698914, - 0, - 0.5208879113197327, - 0, - 0.6474460363388062, - 0, - 0.758061945438385, - 0, - 0.8500117659568787, - 0, - 0.9210315346717834, - 0, - 0.9693724513053894, - 0, - 0.9938441514968872, - 0, - 0.9938441514968872, - 0, - 0.9693724513053894, - 0, - 0.9210314750671387, - 0, - 0.8500117063522339, - 0, - 0.7580617666244507, - 0, - 0.6474460363388062, - 0, - 0.5208878517150879, - 0, - 0.3815035820007324, - 0, - 0.23272551596164703, - 0, - 0.07821717858314514, - 0, - -0.07821717858314514, - 0, - -0.23272551596164703, - 0, - -0.3815035820007324, - 0, - -0.5208878517150879, - 0, - -0.6474460363388062, - 0, - -0.7580617666244507, - 0, - -0.8500117063522339, - 0, - -0.9210314750671387, - 0, - -0.9693724513053894, - 0, - -0.9938441514968872, - 0, - -0.9938441514968872, - 0, - -0.9693724513053894, - 0, - -0.9210315346717834, - 0, - -0.8500117659568787, - 0, - -0.758061945438385, - 0, - -0.6474460363388062, - 0, - -0.5208879113197327, - 0, - -0.38150379061698914, - 0, - -0.23272576928138733, - 0, - -0.07821723818778992, - 0, - 0.07821723818778992, - 0, - 0.23272576928138733, - 0, - 0.38150379061698914, - 0, - 0.5208879113197327, - 0, - 0.6474460363388062, - 0, - 0.758061945438385, - 0, - 0.8500117659568787, - 0, - 0.9210315346717834, - 0, - 0.9693724513053894, - 0, - 0.9938441514968872, - 0, - 0.9938441514968872, - 0, - 0.9693724513053894, - 0, - 0.9210314750671387, - 0, - 0.8500117063522339, - 0, - 0.7580617666244507, - 0, - 0.6474460363388062, - 0, - 0.5208878517150879, - 0, - 0.3815035820007324, - 0, - 0.23272551596164703, - 0, - 0.07821717858314514, - 0, - -0.07629121840000153, - 0, - -0.22699502110481262, - 0, - -0.37210971117019653, - 0, - -0.5080618262290955, - 0, - -0.6315037608146667, - 0, - -0.7393957376480103, - 0, - -0.8290815949440002, - 0, - -0.8983526229858398, - 0, - -0.9455032348632812, - 0, - -0.9693724513053894, - 0, - -0.9693724513053894, - 0, - -0.945503294467926, - 0, - -0.8983526825904846, - 0, - -0.829081654548645, - 0, - -0.7393959760665894, - 0, - -0.6315037608146667, - 0, - -0.5080618858337402, - 0, - -0.37210991978645325, - 0, - -0.22699527442455292, - 0, - -0.0762912780046463, - 0, - 0.0762912780046463, - 0, - 0.22699527442455292, - 0, - 0.37210991978645325, - 0, - 0.5080618858337402, - 0, - 0.6315037608146667, - 0, - 0.7393959760665894, - 0, - 0.829081654548645, - 0, - 0.8983526825904846, - 0, - 0.945503294467926, - 0, - 0.9693724513053894, - 0, - 0.9693724513053894, - 0, - 0.9455032348632812, - 0, - 0.8983526229858398, - 0, - 0.8290815949440002, - 0, - 0.7393957376480103, - 0, - 0.6315037608146667, - 0, - 0.5080618262290955, - 0, - 0.37210971117019653, - 0, - 0.22699502110481262, - 0, - 0.07629121840000153, - 0, - -0.07248670607805252, - 0, - -0.21567517518997192, - 0, - -0.35355323553085327, - 0, - -0.4827256500720978, - 0, - -0.6000117659568787, - 0, - -0.7025233507156372, - 0, - -0.7877367734909058, - 0, - -0.8535533547401428, - 0, - -0.8983526825904846, - 0, - -0.9210315346717834, - 0, - -0.9210315346717834, - 0, - -0.8983526825904846, - 0, - -0.8535534143447876, - 0, - -0.7877367734909058, - 0, - -0.7025235891342163, - 0, - -0.6000117659568787, - 0, - -0.48272570967674255, - 0, - -0.3535534143447876, - 0, - -0.21567541360855103, - 0, - -0.0724867507815361, - 0, - 0.0724867507815361, - 0, - 0.21567541360855103, - 0, - 0.3535534143447876, - 0, - 0.48272570967674255, - 0, - 0.6000117659568787, - 0, - 0.7025235891342163, - 0, - 0.7877367734909058, - 0, - 0.8535534143447876, - 0, - 0.8983526825904846, - 0, - 0.9210315346717834, - 0, - 0.9210315346717834, - 0, - 0.8983526825904846, - 0, - 0.8535533547401428, - 0, - 0.7877367734909058, - 0, - 0.7025233507156372, - 0, - 0.6000117659568787, - 0, - 0.4827256500720978, - 0, - 0.35355323553085327, - 0, - 0.21567517518997192, - 0, - 0.07248670607805252, - 0, - -0.06689733266830444, - 0, - -0.19904470443725586, - 0, - -0.32629111409187317, - 0, - -0.4455031752586365, - 0, - -0.5537455081939697, - 0, - -0.6483525633811951, - 0, - -0.7269951701164246, - 0, - -0.787736713886261, - 0, - -0.8290815949440002, - 0, - -0.8500117063522339, - 0, - -0.8500117063522339, - 0, - -0.8290815949440002, - 0, - -0.7877367734909058, - 0, - -0.7269952297210693, - 0, - -0.6483526825904846, - 0, - -0.5537455081939697, - 0, - -0.44550323486328125, - 0, - -0.3262912631034851, - 0, - -0.19904489815235138, - 0, - -0.06689737737178802, - 0, - 0.06689737737178802, - 0, - 0.19904489815235138, - 0, - 0.3262912631034851, - 0, - 0.44550323486328125, - 0, - 0.5537455081939697, - 0, - 0.6483526825904846, - 0, - 0.7269952297210693, - 0, - 0.7877367734909058, - 0, - 0.8290815949440002, - 0, - 0.8500117063522339, - 0, - 0.8500117063522339, - 0, - 0.8290815949440002, - 0, - 0.787736713886261, - 0, - 0.7269951701164246, - 0, - 0.6483525633811951, - 0, - 0.5537455081939697, - 0, - 0.4455031752586365, - 0, - 0.32629111409187317, - 0, - 0.19904470443725586, - 0, - 0.06689733266830444, - 0, - -0.05966071039438248, - 0, - -0.17751304805278778, - 0, - -0.2909945845603943, - 0, - -0.39731091260910034, - 0, - -0.49384409189224243, - 0, - -0.5782170295715332, - 0, - -0.6483525037765503, - 0, - -0.7025233507156372, - 0, - -0.7393957376480103, - 0, - -0.7580617666244507, - 0, - -0.7580617666244507, - 0, - -0.739395797252655, - 0, - -0.702523410320282, - 0, - -0.6483525633811951, - 0, - -0.5782171487808228, - 0, - -0.49384409189224243, - 0, - -0.39731094241142273, - 0, - -0.2909947633743286, - 0, - -0.1775132417678833, - 0, - -0.05966075509786606, - 0, - 0.05966075509786606, - 0, - 0.1775132417678833, - 0, - 0.2909947633743286, - 0, - 0.39731094241142273, - 0, - 0.49384409189224243, - 0, - 0.5782171487808228, - 0, - 0.6483525633811951, - 0, - 0.702523410320282, - 0, - 0.739395797252655, - 0, - 0.7580617666244507, - 0, - 0.7580617666244507, - 0, - 0.7393957376480103, - 0, - 0.7025233507156372, - 0, - 0.6483525037765503, - 0, - 0.5782170295715332, - 0, - 0.49384409189224243, - 0, - 0.39731091260910034, - 0, - 0.2909945845603943, - 0, - 0.17751304805278778, - 0, - 0.05966071039438248, - 0, - -0.05095507204532623, - 0, - -0.15161050856113434, - 0, - -0.24853290617465973, - 0, - -0.3393356502056122, - 0, - -0.4217827618122101, - 0, - -0.49384409189224243, - 0, - -0.5537455081939697, - 0, - -0.6000117659568787, - 0, - -0.6315037608146667, - 0, - -0.6474460363388062, - 0, - -0.6474460363388062, - 0, - -0.6315037608146667, - 0, - -0.6000117659568787, - 0, - -0.5537455081939697, - 0, - -0.493844211101532, - 0, - -0.4217827618122101, - 0, - -0.33933568000793457, - 0, - -0.24853304028511047, - 0, - -0.15161067247390747, - 0, - -0.050955113023519516, - 0, - 0.050955113023519516, - 0, - 0.15161067247390747, - 0, - 0.24853304028511047, - 0, - 0.33933568000793457, - 0, - 0.4217827618122101, - 0, - 0.493844211101532, - 0, - 0.5537455081939697, - 0, - 0.6000117659568787, - 0, - 0.6315037608146667, - 0, - 0.6474460363388062, - 0, - 0.6474460363388062, - 0, - 0.6315037608146667, - 0, - 0.6000117659568787, - 0, - 0.5537455081939697, - 0, - 0.49384409189224243, - 0, - 0.4217827618122101, - 0, - 0.3393356502056122, - 0, - 0.24853290617465973, - 0, - 0.15161050856113434, - 0, - 0.05095507204532623, - 0, - -0.04099472984671593, - 0, - -0.12197473645210266, - 0, - -0.1999514400959015, - 0, - -0.2730046808719635, - 0, - -0.3393356204032898, - 0, - -0.39731091260910034, - 0, - -0.4455031454563141, - 0, - -0.4827256500720978, - 0, - -0.5080618262290955, - 0, - -0.5208877921104431, - 0, - -0.5208877921104431, - 0, - -0.5080618262290955, - 0, - -0.48272567987442017, - 0, - -0.44550320506095886, - 0, - -0.3973110020160675, - 0, - -0.3393356204032898, - 0, - -0.2730047106742859, - 0, - -0.19995152950286865, - 0, - -0.12197486311197281, - 0, - -0.040994759649038315, - 0, - 0.040994759649038315, - 0, - 0.12197486311197281, - 0, - 0.19995152950286865, - 0, - 0.2730047106742859, - 0, - 0.3393356204032898, - 0, - 0.3973110020160675, - 0, - 0.44550320506095886, - 0, - 0.48272567987442017, - 0, - 0.5080618262290955, - 0, - 0.5208877921104431, - 0, - 0.5208877921104431, - 0, - 0.5080618262290955, - 0, - 0.4827256500720978, - 0, - 0.4455031454563141, - 0, - 0.39731091260910034, - 0, - 0.3393356204032898, - 0, - 0.2730046808719635, - 0, - 0.1999514400959015, - 0, - 0.12197473645210266, - 0, - 0.04099472984671593, - 0, - -0.03002496249973774, - 0, - -0.08933555334806442, - 0, - -0.14644649624824524, - 0, - -0.1999514400959015, - 0, - -0.24853290617465973, - 0, - -0.2909945845603943, - 0, - -0.32629111409187317, - 0, - -0.35355323553085327, - 0, - -0.37210971117019653, - 0, - -0.3815035820007324, - 0, - -0.3815035820007324, - 0, - -0.3721097409725189, - 0, - -0.35355326533317566, - 0, - -0.32629111409187317, - 0, - -0.29099467396736145, - 0, - -0.24853290617465973, - 0, - -0.19995145499706268, - 0, - -0.14644655585289001, - 0, - -0.08933565020561218, - 0, - -0.03002498485147953, - 0, - 0.03002498485147953, - 0, - 0.08933565020561218, - 0, - 0.14644655585289001, - 0, - 0.19995145499706268, - 0, - 0.24853290617465973, - 0, - 0.29099467396736145, - 0, - 0.32629111409187317, - 0, - 0.35355326533317566, - 0, - 0.3721097409725189, - 0, - 0.3815035820007324, - 0, - 0.3815035820007324, - 0, - 0.37210971117019653, - 0, - 0.35355323553085327, - 0, - 0.32629111409187317, - 0, - 0.2909945845603943, - 0, - 0.24853290617465973, - 0, - 0.1999514400959015, - 0, - 0.14644649624824524, - 0, - 0.08933555334806442, - 0, - 0.03002496249973774, - 0, - -0.018315883353352547, - 0, - -0.054496634751558304, - 0, - -0.08933555334806442, - 0, - -0.12197472900152206, - 0, - -0.15161049365997314, - 0, - -0.17751304805278778, - 0, - -0.19904468953609467, - 0, - -0.21567519009113312, - 0, - -0.22699503600597382, - 0, - -0.23272551596164703, - 0, - -0.23272551596164703, - 0, - -0.226995050907135, - 0, - -0.2156752049922943, - 0, - -0.19904470443725586, - 0, - -0.17751309275627136, - 0, - -0.15161049365997314, - 0, - -0.12197474390268326, - 0, - -0.089335598051548, - 0, - -0.05449669063091278, - 0, - -0.01831589639186859, - 0, - 0.01831589639186859, - 0, - 0.05449669063091278, - 0, - 0.089335598051548, - 0, - 0.12197474390268326, - 0, - 0.15161049365997314, - 0, - 0.17751309275627136, - 0, - 0.19904470443725586, - 0, - 0.2156752049922943, - 0, - 0.226995050907135, - 0, - 0.23272551596164703, - 0, - 0.23272551596164703, - 0, - 0.22699503600597382, - 0, - 0.21567519009113312, - 0, - 0.19904468953609467, - 0, - 0.17751304805278778, - 0, - 0.15161049365997314, - 0, - 0.12197472900152206, - 0, - 0.08933555334806442, - 0, - 0.054496634751558304, - 0, - 0.018315883353352547, - 0, - -0.006155821494758129, - 0, - -0.018315883353352547, - 0, - -0.03002496436238289, - 0, - -0.040994733572006226, - 0, - -0.05095507204532623, - 0, - -0.059660714119672775, - 0, - -0.06689733266830444, - 0, - -0.07248670607805252, - 0, - -0.07629121840000153, - 0, - -0.07821717858314514, - 0, - -0.07821717858314514, - 0, - -0.07629121840000153, - 0, - -0.07248671352863312, - 0, - -0.06689733266830444, - 0, - -0.05966072902083397, - 0, - -0.05095507204532623, - 0, - -0.040994737297296524, - 0, - -0.030024977400898933, - 0, - -0.018315903842449188, - 0, - -0.006155826151371002, - 0, - 0.006155826151371002, - 0, - 0.018315903842449188, - 0, - 0.030024977400898933, - 0, - 0.040994737297296524, - 0, - 0.05095507204532623, - 0, - 0.05966072902083397, - 0, - 0.06689733266830444, - 0, - 0.07248671352863312, - 0, - 0.07629121840000153, - 0, - 0.07821717858314514, - 0, - 0.07821717858314514, - 0, - 0.07629121840000153, - 0, - 0.07248670607805252, - 0, - 0.06689733266830444, - 0, - 0.059660714119672775, - 0, - 0.05095507204532623, - 0, - 0.040994733572006226, - 0, - 0.03002496436238289, - 0, - 0.018315883353352547, - 0, - 0.006155821494758129 - ], - "y": [ - 0, - 0.07821726053953171, - 0, - 0.07629130035638809, - 0, - 0.07248678803443909, - 0, - 0.06689740717411041, - 0, - 0.059660788625478745, - 0, - 0.050955139100551605, - 0, - 0.0409947894513607, - 0, - 0.03002501279115677, - 0, - 0.01831592246890068, - 0, - 0.006155828945338726, - 0, - -0.006155831273645163, - 0, - -0.018315915018320084, - 0, - -0.030025005340576172, - 0, - -0.040994785726070404, - 0, - -0.05095512047410011, - 0, - -0.059660788625478745, - 0, - -0.06689740717411041, - 0, - -0.07248678058385849, - 0, - -0.0762912929058075, - 0, - -0.07821726053953171, - 0, - -0.07821726053953171, - 0, - -0.0762912929058075, - 0, - -0.07248678058385849, - 0, - -0.06689740717411041, - 0, - -0.059660788625478745, - 0, - -0.05095512047410011, - 0, - -0.040994785726070404, - 0, - -0.030025005340576172, - 0, - -0.018315915018320084, - 0, - -0.006155831273645163, - 0, - 0.006155828945338726, - 0, - 0.01831592246890068, - 0, - 0.03002501279115677, - 0, - 0.0409947894513607, - 0, - 0.050955139100551605, - 0, - 0.059660788625478745, - 0, - 0.06689740717411041, - 0, - 0.07248678803443909, - 0, - 0.07629130035638809, - 0, - 0.07821726053953171, - 0, - 0.23272570967674255, - 0, - 0.22699522972106934, - 0, - 0.21567538380622864, - 0, - 0.19904489815235138, - 0, - 0.1775132417678833, - 0, - 0.15161065757274628, - 0, - 0.1219748854637146, - 0, - 0.08933568000793457, - 0, - 0.05449673533439636, - 0, - 0.01831590197980404, - 0, - -0.018315909430384636, - 0, - -0.05449671670794487, - 0, - -0.08933565765619278, - 0, - -0.1219748705625534, - 0, - -0.1516106128692627, - 0, - -0.1775132417678833, - 0, - -0.19904488325119019, - 0, - -0.21567535400390625, - 0, - -0.22699521481990814, - 0, - -0.23272570967674255, - 0, - -0.23272570967674255, - 0, - -0.22699521481990814, - 0, - -0.21567535400390625, - 0, - -0.19904488325119019, - 0, - -0.1775132417678833, - 0, - -0.1516106128692627, - 0, - -0.1219748705625534, - 0, - -0.08933565765619278, - 0, - -0.05449671670794487, - 0, - -0.018315909430384636, - 0, - 0.01831590197980404, - 0, - 0.05449673533439636, - 0, - 0.08933568000793457, - 0, - 0.1219748854637146, - 0, - 0.15161065757274628, - 0, - 0.1775132417678833, - 0, - 0.19904489815235138, - 0, - 0.21567538380622864, - 0, - 0.22699522972106934, - 0, - 0.23272570967674255, - 0, - 0.38150379061698914, - 0, - 0.37210991978645325, - 0, - 0.35355344414711, - 0, - 0.3262913227081299, - 0, - 0.290994793176651, - 0, - 0.24853308498859406, - 0, - 0.19995158910751343, - 0, - 0.14644664525985718, - 0, - 0.08933568745851517, - 0, - 0.030024981126189232, - 0, - -0.030024994164705276, - 0, - -0.08933565765619278, - 0, - -0.14644663035869598, - 0, - -0.19995157420635223, - 0, - -0.24853301048278809, - 0, - -0.290994793176651, - 0, - -0.3262913227081299, - 0, - -0.35355344414711, - 0, - -0.37210991978645325, - 0, - -0.38150379061698914, - 0, - -0.38150379061698914, - 0, - -0.37210991978645325, - 0, - -0.35355344414711, - 0, - -0.3262913227081299, - 0, - -0.290994793176651, - 0, - -0.24853301048278809, - 0, - -0.19995157420635223, - 0, - -0.14644663035869598, - 0, - -0.08933565765619278, - 0, - -0.030024994164705276, - 0, - 0.030024981126189232, - 0, - 0.08933568745851517, - 0, - 0.14644664525985718, - 0, - 0.19995158910751343, - 0, - 0.24853308498859406, - 0, - 0.290994793176651, - 0, - 0.3262913227081299, - 0, - 0.35355344414711, - 0, - 0.37210991978645325, - 0, - 0.38150379061698914, - 0, - 0.5208879113197327, - 0, - 0.508061945438385, - 0, - 0.4827258288860321, - 0, - 0.4455033242702484, - 0, - 0.3973110616207123, - 0, - 0.3393357992172241, - 0, - 0.27300482988357544, - 0, - 0.19995160400867462, - 0, - 0.1219748929142952, - 0, - 0.04099474474787712, - 0, - -0.04099476337432861, - 0, - -0.12197484821081161, - 0, - -0.19995155930519104, - 0, - -0.27300480008125305, - 0, - -0.3393356502056122, - 0, - -0.3973110616207123, - 0, - -0.445503294467926, - 0, - -0.48272576928138733, - 0, - -0.508061945438385, - 0, - -0.5208879113197327, - 0, - -0.5208879113197327, - 0, - -0.508061945438385, - 0, - -0.48272576928138733, - 0, - -0.445503294467926, - 0, - -0.3973110616207123, - 0, - -0.3393356502056122, - 0, - -0.27300480008125305, - 0, - -0.19995155930519104, - 0, - -0.12197484821081161, - 0, - -0.04099476337432861, - 0, - 0.04099474474787712, - 0, - 0.1219748929142952, - 0, - 0.19995160400867462, - 0, - 0.27300482988357544, - 0, - 0.3393357992172241, - 0, - 0.3973110616207123, - 0, - 0.4455033242702484, - 0, - 0.4827258288860321, - 0, - 0.508061945438385, - 0, - 0.5208879113197327, - 0, - 0.6474460363388062, - 0, - 0.6315038204193115, - 0, - 0.6000118255615234, - 0, - 0.5537455677986145, - 0, - 0.4938441514968872, - 0, - 0.42178288102149963, - 0, - 0.33933576941490173, - 0, - 0.24853307008743286, - 0, - 0.15161067247390747, - 0, - 0.05095508322119713, - 0, - -0.05095510184764862, - 0, - -0.1516105979681015, - 0, - -0.2485329955816269, - 0, - -0.33933573961257935, - 0, - -0.4217827320098877, - 0, - -0.4938441514968872, - 0, - -0.5537455081939697, - 0, - -0.6000117659568787, - 0, - -0.6315037608146667, - 0, - -0.6474460363388062, - 0, - -0.6474460363388062, - 0, - -0.6315037608146667, - 0, - -0.6000117659568787, - 0, - -0.5537455081939697, - 0, - -0.4938441514968872, - 0, - -0.4217827320098877, - 0, - -0.33933573961257935, - 0, - -0.2485329955816269, - 0, - -0.1516105979681015, - 0, - -0.05095510184764862, - 0, - 0.05095508322119713, - 0, - 0.15161067247390747, - 0, - 0.24853307008743286, - 0, - 0.33933576941490173, - 0, - 0.42178288102149963, - 0, - 0.4938441514968872, - 0, - 0.5537455677986145, - 0, - 0.6000118255615234, - 0, - 0.6315038204193115, - 0, - 0.6474460363388062, - 0, - 0.758061945438385, - 0, - 0.7393959760665894, - 0, - 0.7025236487388611, - 0, - 0.6483527421951294, - 0, - 0.5782173275947571, - 0, - 0.49384433031082153, - 0, - 0.39731112122535706, - 0, - 0.2909948527812958, - 0, - 0.17751330137252808, - 0, - 0.059660736471414566, - 0, - -0.05966075882315636, - 0, - -0.1775132119655609, - 0, - -0.290994793176651, - 0, - -0.39731109142303467, - 0, - -0.4938441514968872, - 0, - -0.5782173275947571, - 0, - -0.6483527421951294, - 0, - -0.7025235295295715, - 0, - -0.7393959164619446, - 0, - -0.758061945438385, - 0, - -0.758061945438385, - 0, - -0.7393959164619446, - 0, - -0.7025235295295715, - 0, - -0.6483527421951294, - 0, - -0.5782173275947571, - 0, - -0.4938441514968872, - 0, - -0.39731109142303467, - 0, - -0.290994793176651, - 0, - -0.1775132119655609, - 0, - -0.05966075882315636, - 0, - 0.059660736471414566, - 0, - 0.17751330137252808, - 0, - 0.2909948527812958, - 0, - 0.39731112122535706, - 0, - 0.49384433031082153, - 0, - 0.5782173275947571, - 0, - 0.6483527421951294, - 0, - 0.7025236487388611, - 0, - 0.7393959760665894, - 0, - 0.758061945438385, - 0, - 0.8500117659568787, - 0, - 0.829081654548645, - 0, - 0.7877368330955505, - 0, - 0.7269952893257141, - 0, - 0.6483526825904846, - 0, - 0.5537456274032593, - 0, - 0.4455033838748932, - 0, - 0.3262913227081299, - 0, - 0.19904491305351257, - 0, - 0.06689734756946564, - 0, - -0.06689736992120743, - 0, - -0.1990448385477066, - 0, - -0.3262912631034851, - 0, - -0.445503294467926, - 0, - -0.553745448589325, - 0, - -0.6483526825904846, - 0, - -0.7269952297210693, - 0, - -0.7877367734909058, - 0, - -0.829081654548645, - 0, - -0.8500117659568787, - 0, - -0.8500117659568787, - 0, - -0.829081654548645, - 0, - -0.7877367734909058, - 0, - -0.7269952297210693, - 0, - -0.6483526825904846, - 0, - -0.553745448589325, - 0, - -0.445503294467926, - 0, - -0.3262912631034851, - 0, - -0.1990448385477066, - 0, - -0.06689736992120743, - 0, - 0.06689734756946564, - 0, - 0.19904491305351257, - 0, - 0.3262913227081299, - 0, - 0.4455033838748932, - 0, - 0.5537456274032593, - 0, - 0.6483526825904846, - 0, - 0.7269952893257141, - 0, - 0.7877368330955505, - 0, - 0.829081654548645, - 0, - 0.8500117659568787, - 0, - 0.9210315346717834, - 0, - 0.8983527421951294, - 0, - 0.8535534739494324, - 0, - 0.7877368927001953, - 0, - 0.7025235295295715, - 0, - 0.600011944770813, - 0, - 0.4827258288860321, - 0, - 0.3535534739494324, - 0, - 0.21567542850971222, - 0, - 0.07248671352863312, - 0, - -0.0724867433309555, - 0, - -0.21567533910274506, - 0, - -0.3535533845424652, - 0, - -0.4827257990837097, - 0, - -0.6000117063522339, - 0, - -0.7025235295295715, - 0, - -0.7877368330955505, - 0, - -0.8535534143447876, - 0, - -0.8983526825904846, - 0, - -0.9210315346717834, - 0, - -0.9210315346717834, - 0, - -0.8983526825904846, - 0, - -0.8535534143447876, - 0, - -0.7877368330955505, - 0, - -0.7025235295295715, - 0, - -0.6000117063522339, - 0, - -0.4827257990837097, - 0, - -0.3535533845424652, - 0, - -0.21567533910274506, - 0, - -0.0724867433309555, - 0, - 0.07248671352863312, - 0, - 0.21567542850971222, - 0, - 0.3535534739494324, - 0, - 0.4827258288860321, - 0, - 0.600011944770813, - 0, - 0.7025235295295715, - 0, - 0.7877368927001953, - 0, - 0.8535534739494324, - 0, - 0.8983527421951294, - 0, - 0.9210315346717834, - 0, - 0.9693724513053894, - 0, - 0.9455033540725708, - 0, - 0.8983528017997742, - 0, - 0.8290817141532898, - 0, - 0.7393959164619446, - 0, - 0.6315039396286011, - 0, - 0.5080620050430298, - 0, - 0.37210994958877563, - 0, - 0.2269952893257141, - 0, - 0.07629122585058212, - 0, - -0.07629125565290451, - 0, - -0.22699519991874695, - 0, - -0.37210986018180847, - 0, - -0.508061945438385, - 0, - -0.631503701210022, - 0, - -0.7393959164619446, - 0, - -0.829081654548645, - 0, - -0.8983526825904846, - 0, - -0.945503294467926, - 0, - -0.9693724513053894, - 0, - -0.9693724513053894, - 0, - -0.945503294467926, - 0, - -0.8983526825904846, - 0, - -0.829081654548645, - 0, - -0.7393959164619446, - 0, - -0.631503701210022, - 0, - -0.508061945438385, - 0, - -0.37210986018180847, - 0, - -0.22699519991874695, - 0, - -0.07629125565290451, - 0, - 0.07629122585058212, - 0, - 0.2269952893257141, - 0, - 0.37210994958877563, - 0, - 0.5080620050430298, - 0, - 0.6315039396286011, - 0, - 0.7393959164619446, - 0, - 0.8290817141532898, - 0, - 0.8983528017997742, - 0, - 0.9455033540725708, - 0, - 0.9693724513053894, - 0, - 0.993844211101532, - 0, - 0.9693725109100342, - 0, - 0.9210315942764282, - 0, - 0.8500118255615234, - 0, - 0.758061945438385, - 0, - 0.6474461555480957, - 0, - 0.5208880305290222, - 0, - 0.3815038204193115, - 0, - 0.23272576928138733, - 0, - 0.07821719348430634, - 0, - -0.07821722328662872, - 0, - -0.23272566497325897, - 0, - -0.38150373101234436, - 0, - -0.5208879709243774, - 0, - -0.6474459171295166, - 0, - -0.758061945438385, - 0, - -0.8500117659568787, - 0, - -0.9210315346717834, - 0, - -0.9693724513053894, - 0, - -0.993844211101532, - 0, - -0.993844211101532, - 0, - -0.9693724513053894, - 0, - -0.9210315346717834, - 0, - -0.8500117659568787, - 0, - -0.758061945438385, - 0, - -0.6474459171295166, - 0, - -0.5208879709243774, - 0, - -0.38150373101234436, - 0, - -0.23272566497325897, - 0, - -0.07821722328662872, - 0, - 0.07821719348430634, - 0, - 0.23272576928138733, - 0, - 0.3815038204193115, - 0, - 0.5208880305290222, - 0, - 0.6474461555480957, - 0, - 0.758061945438385, - 0, - 0.8500118255615234, - 0, - 0.9210315942764282, - 0, - 0.9693725109100342, - 0, - 0.993844211101532, - 0, - 0.993844211101532, - 0, - 0.9693725109100342, - 0, - 0.9210315942764282, - 0, - 0.8500118255615234, - 0, - 0.758061945438385, - 0, - 0.6474461555480957, - 0, - 0.5208880305290222, - 0, - 0.3815038204193115, - 0, - 0.23272576928138733, - 0, - 0.07821719348430634, - 0, - -0.07821722328662872, - 0, - -0.23272566497325897, - 0, - -0.38150373101234436, - 0, - -0.5208879709243774, - 0, - -0.6474459171295166, - 0, - -0.758061945438385, - 0, - -0.8500117659568787, - 0, - -0.9210315346717834, - 0, - -0.9693724513053894, - 0, - -0.993844211101532, - 0, - -0.993844211101532, - 0, - -0.9693724513053894, - 0, - -0.9210315346717834, - 0, - -0.8500117659568787, - 0, - -0.758061945438385, - 0, - -0.6474459171295166, - 0, - -0.5208879709243774, - 0, - -0.38150373101234436, - 0, - -0.23272566497325897, - 0, - -0.07821722328662872, - 0, - 0.07821719348430634, - 0, - 0.23272576928138733, - 0, - 0.3815038204193115, - 0, - 0.5208880305290222, - 0, - 0.6474461555480957, - 0, - 0.758061945438385, - 0, - 0.8500118255615234, - 0, - 0.9210315942764282, - 0, - 0.9693725109100342, - 0, - 0.993844211101532, - 0, - 0.9693724513053894, - 0, - 0.945503294467926, - 0, - 0.8983527421951294, - 0, - 0.8290817141532898, - 0, - 0.7393959164619446, - 0, - 0.6315038800239563, - 0, - 0.5080620050430298, - 0, - 0.37210994958877563, - 0, - 0.22699527442455292, - 0, - 0.07629123330116272, - 0, - -0.07629126310348511, - 0, - -0.22699518501758575, - 0, - -0.37210986018180847, - 0, - -0.508061945438385, - 0, - -0.631503701210022, - 0, - -0.7393959164619446, - 0, - -0.829081654548645, - 0, - -0.8983526825904846, - 0, - -0.9455032348632812, - 0, - -0.9693724513053894, - 0, - -0.9693724513053894, - 0, - -0.9455032348632812, - 0, - -0.8983526825904846, - 0, - -0.829081654548645, - 0, - -0.7393959164619446, - 0, - -0.631503701210022, - 0, - -0.508061945438385, - 0, - -0.37210986018180847, - 0, - -0.22699518501758575, - 0, - -0.07629126310348511, - 0, - 0.07629123330116272, - 0, - 0.22699527442455292, - 0, - 0.37210994958877563, - 0, - 0.5080620050430298, - 0, - 0.6315038800239563, - 0, - 0.7393959164619446, - 0, - 0.8290817141532898, - 0, - 0.8983527421951294, - 0, - 0.945503294467926, - 0, - 0.9693724513053894, - 0, - 0.9210315346717834, - 0, - 0.8983526825904846, - 0, - 0.8535534739494324, - 0, - 0.7877368330955505, - 0, - 0.7025235295295715, - 0, - 0.6000118851661682, - 0, - 0.4827258288860321, - 0, - 0.35355344414711, - 0, - 0.21567542850971222, - 0, - 0.07248672097921371, - 0, - -0.0724867507815361, - 0, - -0.21567532420158386, - 0, - -0.3535533845424652, - 0, - -0.48272576928138733, - 0, - -0.6000117063522339, - 0, - -0.7025235295295715, - 0, - -0.7877367734909058, - 0, - -0.8535533547401428, - 0, - -0.8983526229858398, - 0, - -0.9210314750671387, - 0, - -0.9210314750671387, - 0, - -0.8983526229858398, - 0, - -0.8535533547401428, - 0, - -0.7877367734909058, - 0, - -0.7025235295295715, - 0, - -0.6000117063522339, - 0, - -0.48272576928138733, - 0, - -0.3535533845424652, - 0, - -0.21567532420158386, - 0, - -0.0724867507815361, - 0, - 0.07248672097921371, - 0, - 0.21567542850971222, - 0, - 0.35355344414711, - 0, - 0.4827258288860321, - 0, - 0.6000118851661682, - 0, - 0.7025235295295715, - 0, - 0.7877368330955505, - 0, - 0.8535534739494324, - 0, - 0.8983526825904846, - 0, - 0.9210315346717834, - 0, - 0.8500117063522339, - 0, - 0.829081654548645, - 0, - 0.7877368330955505, - 0, - 0.7269952893257141, - 0, - 0.6483526825904846, - 0, - 0.5537456274032593, - 0, - 0.4455033540725708, - 0, - 0.3262913227081299, - 0, - 0.19904489815235138, - 0, - 0.06689734011888504, - 0, - -0.06689736992120743, - 0, - -0.1990448236465454, - 0, - -0.3262912333011627, - 0, - -0.445503294467926, - 0, - -0.5537453889846802, - 0, - -0.6483526825904846, - 0, - -0.7269952297210693, - 0, - -0.787736713886261, - 0, - -0.8290815949440002, - 0, - -0.8500117063522339, - 0, - -0.8500117063522339, - 0, - -0.8290815949440002, - 0, - -0.787736713886261, - 0, - -0.7269952297210693, - 0, - -0.6483526825904846, - 0, - -0.5537453889846802, - 0, - -0.445503294467926, - 0, - -0.3262912333011627, - 0, - -0.1990448236465454, - 0, - -0.06689736992120743, - 0, - 0.06689734011888504, - 0, - 0.19904489815235138, - 0, - 0.3262913227081299, - 0, - 0.4455033540725708, - 0, - 0.5537456274032593, - 0, - 0.6483526825904846, - 0, - 0.7269952893257141, - 0, - 0.7877368330955505, - 0, - 0.829081654548645, - 0, - 0.8500117063522339, - 0, - 0.7580617666244507, - 0, - 0.739395797252655, - 0, - 0.7025234699249268, - 0, - 0.6483526229858398, - 0, - 0.5782171487808228, - 0, - 0.493844211101532, - 0, - 0.3973110318183899, - 0, - 0.290994793176651, - 0, - 0.1775132417678833, - 0, - 0.05966072157025337, - 0, - -0.05966074392199516, - 0, - -0.17751316726207733, - 0, - -0.29099470376968384, - 0, - -0.3973110020160675, - 0, - -0.49384403228759766, - 0, - -0.5782171487808228, - 0, - -0.6483525633811951, - 0, - -0.702523410320282, - 0, - -0.7393957376480103, - 0, - -0.7580617666244507, - 0, - -0.7580617666244507, - 0, - -0.7393957376480103, - 0, - -0.702523410320282, - 0, - -0.6483525633811951, - 0, - -0.5782171487808228, - 0, - -0.49384403228759766, - 0, - -0.3973110020160675, - 0, - -0.29099470376968384, - 0, - -0.17751316726207733, - 0, - -0.05966074392199516, - 0, - 0.05966072157025337, - 0, - 0.1775132417678833, - 0, - 0.290994793176651, - 0, - 0.3973110318183899, - 0, - 0.493844211101532, - 0, - 0.5782171487808228, - 0, - 0.6483526229858398, - 0, - 0.7025234699249268, - 0, - 0.739395797252655, - 0, - 0.7580617666244507, - 0, - 0.6474460363388062, - 0, - 0.6315038204193115, - 0, - 0.6000118255615234, - 0, - 0.5537455677986145, - 0, - 0.4938441514968872, - 0, - 0.42178288102149963, - 0, - 0.33933576941490173, - 0, - 0.24853307008743286, - 0, - 0.15161067247390747, - 0, - 0.05095508322119713, - 0, - -0.05095510184764862, - 0, - -0.1516105979681015, - 0, - -0.2485329955816269, - 0, - -0.33933573961257935, - 0, - -0.4217827320098877, - 0, - -0.4938441514968872, - 0, - -0.5537455081939697, - 0, - -0.6000117659568787, - 0, - -0.6315037608146667, - 0, - -0.6474460363388062, - 0, - -0.6474460363388062, - 0, - -0.6315037608146667, - 0, - -0.6000117659568787, - 0, - -0.5537455081939697, - 0, - -0.4938441514968872, - 0, - -0.4217827320098877, - 0, - -0.33933573961257935, - 0, - -0.2485329955816269, - 0, - -0.1516105979681015, - 0, - -0.05095510184764862, - 0, - 0.05095508322119713, - 0, - 0.15161067247390747, - 0, - 0.24853307008743286, - 0, - 0.33933576941490173, - 0, - 0.42178288102149963, - 0, - 0.4938441514968872, - 0, - 0.5537455677986145, - 0, - 0.6000118255615234, - 0, - 0.6315038204193115, - 0, - 0.6474460363388062, - 0, - 0.5208877921104431, - 0, - 0.5080618858337402, - 0, - 0.48272570967674255, - 0, - 0.44550323486328125, - 0, - 0.3973109722137451, - 0, - 0.33933570981025696, - 0, - 0.27300477027893066, - 0, - 0.19995155930519104, - 0, - 0.12197486311197281, - 0, - 0.040994737297296524, - 0, - -0.04099475219845772, - 0, - -0.12197481840848923, - 0, - -0.19995151460170746, - 0, - -0.2730047404766083, - 0, - -0.3393355906009674, - 0, - -0.3973109722137451, - 0, - -0.44550320506095886, - 0, - -0.4827256500720978, - 0, - -0.5080618262290955, - 0, - -0.5208877921104431, - 0, - -0.5208877921104431, - 0, - -0.5080618262290955, - 0, - -0.4827256500720978, - 0, - -0.44550320506095886, - 0, - -0.3973109722137451, - 0, - -0.3393355906009674, - 0, - -0.2730047404766083, - 0, - -0.19995151460170746, - 0, - -0.12197481840848923, - 0, - -0.04099475219845772, - 0, - 0.040994737297296524, - 0, - 0.12197486311197281, - 0, - 0.19995155930519104, - 0, - 0.27300477027893066, - 0, - 0.33933570981025696, - 0, - 0.3973109722137451, - 0, - 0.44550323486328125, - 0, - 0.48272570967674255, - 0, - 0.5080618858337402, - 0, - 0.5208877921104431, - 0, - 0.3815035820007324, - 0, - 0.3721097409725189, - 0, - 0.35355329513549805, - 0, - 0.32629114389419556, - 0, - 0.29099464416503906, - 0, - 0.2485329657793045, - 0, - 0.19995149970054626, - 0, - 0.1464465856552124, - 0, - 0.08933565020561218, - 0, - 0.030024968087673187, - 0, - -0.030024979263544083, - 0, - -0.0893356129527092, - 0, - -0.14644654095172882, - 0, - -0.19995148479938507, - 0, - -0.24853287637233734, - 0, - -0.29099464416503906, - 0, - -0.32629111409187317, - 0, - -0.35355323553085327, - 0, - -0.37210971117019653, - 0, - -0.3815035820007324, - 0, - -0.3815035820007324, - 0, - -0.37210971117019653, - 0, - -0.35355323553085327, - 0, - -0.32629111409187317, - 0, - -0.29099464416503906, - 0, - -0.24853287637233734, - 0, - -0.19995148479938507, - 0, - -0.14644654095172882, - 0, - -0.0893356129527092, - 0, - -0.030024979263544083, - 0, - 0.030024968087673187, - 0, - 0.08933565020561218, - 0, - 0.1464465856552124, - 0, - 0.19995149970054626, - 0, - 0.2485329657793045, - 0, - 0.29099464416503906, - 0, - 0.32629114389419556, - 0, - 0.35355329513549805, - 0, - 0.3721097409725189, - 0, - 0.3815035820007324, - 0, - 0.23272551596164703, - 0, - 0.226995050907135, - 0, - 0.2156752049922943, - 0, - 0.19904470443725586, - 0, - 0.17751307785511017, - 0, - 0.15161052346229553, - 0, - 0.12197477370500565, - 0, - 0.0893356129527092, - 0, - 0.05449669435620308, - 0, - 0.018315887078642845, - 0, - -0.018315892666578293, - 0, - -0.05449667572975159, - 0, - -0.08933559060096741, - 0, - -0.12197475880384445, - 0, - -0.15161047875881195, - 0, - -0.17751307785511017, - 0, - -0.19904470443725586, - 0, - -0.21567519009113312, - 0, - -0.22699502110481262, - 0, - -0.23272551596164703, - 0, - -0.23272551596164703, - 0, - -0.22699502110481262, - 0, - -0.21567519009113312, - 0, - -0.19904470443725586, - 0, - -0.17751307785511017, - 0, - -0.15161047875881195, - 0, - -0.12197475880384445, - 0, - -0.08933559060096741, - 0, - -0.05449667572975159, - 0, - -0.018315892666578293, - 0, - 0.018315887078642845, - 0, - 0.05449669435620308, - 0, - 0.0893356129527092, - 0, - 0.12197477370500565, - 0, - 0.15161052346229553, - 0, - 0.17751307785511017, - 0, - 0.19904470443725586, - 0, - 0.2156752049922943, - 0, - 0.226995050907135, - 0, - 0.23272551596164703, - 0, - 0.07821717858314514, - 0, - 0.07629121840000153, - 0, - 0.07248671352863312, - 0, - 0.06689734011888504, - 0, - 0.05966072529554367, - 0, - 0.05095508694648743, - 0, - 0.04099474847316742, - 0, - 0.03002498298883438, - 0, - 0.018315903842449188, - 0, - 0.006155822426080704, - 0, - -0.00615582475438714, - 0, - -0.01831589639186859, - 0, - -0.030024975538253784, - 0, - -0.04099474102258682, - 0, - -0.050955068320035934, - 0, - -0.05966072529554367, - 0, - -0.06689733266830444, - 0, - -0.07248670607805252, - 0, - -0.07629121840000153, - 0, - -0.07821717858314514, - 0, - -0.07821717858314514, - 0, - -0.07629121840000153, - 0, - -0.07248670607805252, - 0, - -0.06689733266830444, - 0, - -0.05966072529554367, - 0, - -0.050955068320035934, - 0, - -0.04099474102258682, - 0, - -0.030024975538253784, - 0, - -0.01831589639186859, - 0, - -0.00615582475438714, - 0, - 0.006155822426080704, - 0, - 0.018315903842449188, - 0, - 0.03002498298883438, - 0, - 0.04099474847316742, - 0, - 0.05095508694648743, - 0, - 0.05966072529554367, - 0, - 0.06689734011888504, - 0, - 0.07248671352863312, - 0, - 0.07629121840000153, - 0, - 0.07821717858314514 - ], - "z": [ - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173073768616, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173073768616, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173073768616, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173073768616, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9969173669815063, - 0, - 0.9723699688911438, - 0, - 0.972369909286499, - 0, - 0.972369909286499, - 0, - 0.9723699688911438, - 0, - 0.9723699688911438, - 0, - 0.972369909286499, - 0, - 0.9723699688911438, - 0, - 0.972369909286499, - 0, - 0.972369909286499, - 0, - 0.9723699688911438, - 0, - 0.9723699688911438, - 0, - 0.972369909286499, - 0, - 0.972369909286499, - 0, - 0.9723699688911438, - 0, - 0.9723699688911438, - 0, - 0.9723699688911438, - 0, - 0.9723699688911438, - 0, - 0.972369909286499, - 0, - 0.972369909286499, - 0, - 0.9723699688911438, - 0, - 0.9723699688911438, - 0, - 0.972369909286499, - 0, - 0.972369909286499, - 0, - 0.9723699688911438, - 0, - 0.9723699688911438, - 0, - 0.9723699688911438, - 0, - 0.9723699688911438, - 0, - 0.972369909286499, - 0, - 0.972369909286499, - 0, - 0.9723699688911438, - 0, - 0.9723699688911438, - 0, - 0.972369909286499, - 0, - 0.972369909286499, - 0, - 0.9723699688911438, - 0, - 0.972369909286499, - 0, - 0.9723699688911438, - 0, - 0.9723699688911438, - 0, - 0.972369909286499, - 0, - 0.972369909286499, - 0, - 0.9723699688911438, - 0, - 0.9238795638084412, - 0, - 0.9238795638084412, - 0, - 0.9238795042037964, - 0, - 0.9238795638084412, - 0, - 0.9238795042037964, - 0, - 0.9238795042037964, - 0, - 0.9238795042037964, - 0, - 0.9238795042037964, - 0, - 0.9238795042037964, - 0, - 0.9238795042037964, - 0, - 0.9238795042037964, - 0, - 0.9238795042037964, - 0, - 0.9238795638084412, - 0, - 0.9238795042037964, - 0, - 0.9238795638084412, - 0, - 0.9238795042037964, - 0, - 0.9238795638084412, - 0, - 0.9238795638084412, - 0, - 0.9238795638084412, - 0, - 0.9238795638084412, - 0, - 0.9238795638084412, - 0, - 0.9238795638084412, - 0, - 0.9238795638084412, - 0, - 0.9238795638084412, - 0, - 0.9238795042037964, - 0, - 0.9238795638084412, - 0, - 0.9238795042037964, - 0, - 0.9238795638084412, - 0, - 0.9238795042037964, - 0, - 0.9238795042037964, - 0, - 0.9238795042037964, - 0, - 0.9238795042037964, - 0, - 0.9238795042037964, - 0, - 0.9238795042037964, - 0, - 0.9238795042037964, - 0, - 0.9238795042037964, - 0, - 0.9238795638084412, - 0, - 0.9238795042037964, - 0, - 0.9238795638084412, - 0, - 0.9238795638084412, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.8526401519775391, - 0, - 0.7604060173034668, - 0, - 0.7604060173034668, - 0, - 0.760405957698822, - 0, - 0.7604060173034668, - 0, - 0.760405957698822, - 0, - 0.760405957698822, - 0, - 0.7604060173034668, - 0, - 0.7604060173034668, - 0, - 0.7604060173034668, - 0, - 0.7604060173034668, - 0, - 0.7604060173034668, - 0, - 0.760405957698822, - 0, - 0.760405957698822, - 0, - 0.7604060173034668, - 0, - 0.7604060173034668, - 0, - 0.760405957698822, - 0, - 0.7604060173034668, - 0, - 0.7604060173034668, - 0, - 0.7604060173034668, - 0, - 0.7604060173034668, - 0, - 0.7604060173034668, - 0, - 0.7604060173034668, - 0, - 0.7604060173034668, - 0, - 0.7604060173034668, - 0, - 0.760405957698822, - 0, - 0.7604060173034668, - 0, - 0.7604060173034668, - 0, - 0.760405957698822, - 0, - 0.760405957698822, - 0, - 0.7604060173034668, - 0, - 0.7604060173034668, - 0, - 0.7604060173034668, - 0, - 0.7604060173034668, - 0, - 0.7604060173034668, - 0, - 0.760405957698822, - 0, - 0.760405957698822, - 0, - 0.7604060173034668, - 0, - 0.760405957698822, - 0, - 0.7604060173034668, - 0, - 0.7604060173034668, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.649448037147522, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.649448037147522, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.649448037147522, - 0, - 0.649448037147522, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.649448037147522, - 0, - 0.649448037147522, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.649448037147522, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.649448037147522, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.6494479775428772, - 0, - 0.5224986672401428, - 0, - 0.522498607635498, - 0, - 0.522498607635498, - 0, - 0.522498607635498, - 0, - 0.5224986672401428, - 0, - 0.522498607635498, - 0, - 0.5224986672401428, - 0, - 0.522498607635498, - 0, - 0.522498607635498, - 0, - 0.5224986672401428, - 0, - 0.5224986672401428, - 0, - 0.522498607635498, - 0, - 0.522498607635498, - 0, - 0.522498607635498, - 0, - 0.522498607635498, - 0, - 0.5224986672401428, - 0, - 0.522498607635498, - 0, - 0.522498607635498, - 0, - 0.522498607635498, - 0, - 0.5224986672401428, - 0, - 0.5224986672401428, - 0, - 0.522498607635498, - 0, - 0.522498607635498, - 0, - 0.522498607635498, - 0, - 0.5224986672401428, - 0, - 0.522498607635498, - 0, - 0.522498607635498, - 0, - 0.522498607635498, - 0, - 0.522498607635498, - 0, - 0.5224986672401428, - 0, - 0.5224986672401428, - 0, - 0.522498607635498, - 0, - 0.522498607635498, - 0, - 0.5224986672401428, - 0, - 0.522498607635498, - 0, - 0.5224986672401428, - 0, - 0.522498607635498, - 0, - 0.522498607635498, - 0, - 0.522498607635498, - 0, - 0.5224986672401428, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.3826834261417389, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.23344530165195465, - 0, - 0.07845909148454666, - 0, - 0.07845909148454666, - 0, - 0.07845908403396606, - 0, - 0.07845909148454666, - 0, - 0.07845909148454666, - 0, - 0.07845908403396606, - 0, - 0.07845909148454666, - 0, - 0.07845908403396606, - 0, - 0.07845909148454666, - 0, - 0.07845909148454666, - 0, - 0.07845909148454666, - 0, - 0.07845908403396606, - 0, - 0.07845908403396606, - 0, - 0.07845909148454666, - 0, - 0.07845908403396606, - 0, - 0.07845909148454666, - 0, - 0.07845909148454666, - 0, - 0.07845909148454666, - 0, - 0.07845909148454666, - 0, - 0.07845909148454666, - 0, - 0.07845909148454666, - 0, - 0.07845909148454666, - 0, - 0.07845909148454666, - 0, - 0.07845909148454666, - 0, - 0.07845909148454666, - 0, - 0.07845908403396606, - 0, - 0.07845909148454666, - 0, - 0.07845908403396606, - 0, - 0.07845908403396606, - 0, - 0.07845909148454666, - 0, - 0.07845909148454666, - 0, - 0.07845909148454666, - 0, - 0.07845908403396606, - 0, - 0.07845909148454666, - 0, - 0.07845908403396606, - 0, - 0.07845909148454666, - 0, - 0.07845909148454666, - 0, - 0.07845908403396606, - 0, - 0.07845909148454666, - 0, - 0.07845909148454666, - 0, - -0.07845906168222427, - 0, - -0.07845906168222427, - 0, - -0.07845905423164368, - 0, - -0.07845906168222427, - 0, - -0.07845906168222427, - 0, - -0.07845905423164368, - 0, - -0.07845906168222427, - 0, - -0.07845905423164368, - 0, - -0.07845906168222427, - 0, - -0.07845906168222427, - 0, - -0.07845906168222427, - 0, - -0.07845905423164368, - 0, - -0.07845905423164368, - 0, - -0.07845906168222427, - 0, - -0.07845905423164368, - 0, - -0.07845906168222427, - 0, - -0.07845906168222427, - 0, - -0.07845906168222427, - 0, - -0.07845906168222427, - 0, - -0.07845906168222427, - 0, - -0.07845906168222427, - 0, - -0.07845906168222427, - 0, - -0.07845906168222427, - 0, - -0.07845906168222427, - 0, - -0.07845906168222427, - 0, - -0.07845905423164368, - 0, - -0.07845906168222427, - 0, - -0.07845905423164368, - 0, - -0.07845905423164368, - 0, - -0.07845906168222427, - 0, - -0.07845906168222427, - 0, - -0.07845906168222427, - 0, - -0.07845905423164368, - 0, - -0.07845906168222427, - 0, - -0.07845905423164368, - 0, - -0.07845906168222427, - 0, - -0.07845906168222427, - 0, - -0.07845905423164368, - 0, - -0.07845906168222427, - 0, - -0.07845906168222427, - 0, - -0.233445405960083, - 0, - -0.23344539105892181, - 0, - -0.23344539105892181, - 0, - -0.23344539105892181, - 0, - -0.233445405960083, - 0, - -0.23344539105892181, - 0, - -0.23344539105892181, - 0, - -0.23344539105892181, - 0, - -0.23344539105892181, - 0, - -0.233445405960083, - 0, - -0.233445405960083, - 0, - -0.23344539105892181, - 0, - -0.23344539105892181, - 0, - -0.23344539105892181, - 0, - -0.233445405960083, - 0, - -0.233445405960083, - 0, - -0.23344539105892181, - 0, - -0.233445405960083, - 0, - -0.23344539105892181, - 0, - -0.233445405960083, - 0, - -0.233445405960083, - 0, - -0.23344539105892181, - 0, - -0.233445405960083, - 0, - -0.23344539105892181, - 0, - -0.233445405960083, - 0, - -0.233445405960083, - 0, - -0.23344539105892181, - 0, - -0.23344539105892181, - 0, - -0.23344539105892181, - 0, - -0.233445405960083, - 0, - -0.233445405960083, - 0, - -0.23344539105892181, - 0, - -0.23344539105892181, - 0, - -0.23344539105892181, - 0, - -0.23344539105892181, - 0, - -0.233445405960083, - 0, - -0.23344539105892181, - 0, - -0.23344539105892181, - 0, - -0.23344539105892181, - 0, - -0.233445405960083, - 0, - -0.38268354535102844, - 0, - -0.38268351554870605, - 0, - -0.38268351554870605, - 0, - -0.38268351554870605, - 0, - -0.38268354535102844, - 0, - -0.38268351554870605, - 0, - -0.38268354535102844, - 0, - -0.38268351554870605, - 0, - -0.38268354535102844, - 0, - -0.38268354535102844, - 0, - -0.38268354535102844, - 0, - -0.38268351554870605, - 0, - -0.38268351554870605, - 0, - -0.38268351554870605, - 0, - -0.38268354535102844, - 0, - -0.38268354535102844, - 0, - -0.38268351554870605, - 0, - -0.38268351554870605, - 0, - -0.38268351554870605, - 0, - -0.38268351554870605, - 0, - -0.38268351554870605, - 0, - -0.38268351554870605, - 0, - -0.38268351554870605, - 0, - -0.38268351554870605, - 0, - -0.38268354535102844, - 0, - -0.38268354535102844, - 0, - -0.38268351554870605, - 0, - -0.38268351554870605, - 0, - -0.38268351554870605, - 0, - -0.38268354535102844, - 0, - -0.38268354535102844, - 0, - -0.38268354535102844, - 0, - -0.38268351554870605, - 0, - -0.38268354535102844, - 0, - -0.38268351554870605, - 0, - -0.38268354535102844, - 0, - -0.38268351554870605, - 0, - -0.38268351554870605, - 0, - -0.38268351554870605, - 0, - -0.38268354535102844, - 0, - -0.5224987268447876, - 0, - -0.5224987268447876, - 0, - -0.5224986672401428, - 0, - -0.5224987268447876, - 0, - -0.5224987268447876, - 0, - -0.5224987268447876, - 0, - -0.5224987268447876, - 0, - -0.5224986672401428, - 0, - -0.5224986672401428, - 0, - -0.5224987268447876, - 0, - -0.5224987268447876, - 0, - -0.5224986672401428, - 0, - -0.5224986672401428, - 0, - -0.5224987268447876, - 0, - -0.5224986672401428, - 0, - -0.5224987268447876, - 0, - -0.5224987268447876, - 0, - -0.5224986672401428, - 0, - -0.5224986672401428, - 0, - -0.5224987268447876, - 0, - -0.5224987268447876, - 0, - -0.5224986672401428, - 0, - -0.5224986672401428, - 0, - -0.5224987268447876, - 0, - -0.5224987268447876, - 0, - -0.5224986672401428, - 0, - -0.5224987268447876, - 0, - -0.5224986672401428, - 0, - -0.5224986672401428, - 0, - -0.5224987268447876, - 0, - -0.5224987268447876, - 0, - -0.5224986672401428, - 0, - -0.5224986672401428, - 0, - -0.5224987268447876, - 0, - -0.5224987268447876, - 0, - -0.5224987268447876, - 0, - -0.5224987268447876, - 0, - -0.5224986672401428, - 0, - -0.5224987268447876, - 0, - -0.5224987268447876, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482755661011, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482755661011, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.6494482159614563, - 0, - -0.7604060173034668, - 0, - -0.7604060173034668, - 0, - -0.760405957698822, - 0, - -0.7604060173034668, - 0, - -0.760405957698822, - 0, - -0.760405957698822, - 0, - -0.7604060173034668, - 0, - -0.7604060173034668, - 0, - -0.7604060173034668, - 0, - -0.7604060173034668, - 0, - -0.7604060173034668, - 0, - -0.760405957698822, - 0, - -0.760405957698822, - 0, - -0.7604060173034668, - 0, - -0.7604060173034668, - 0, - -0.760405957698822, - 0, - -0.7604060173034668, - 0, - -0.7604060173034668, - 0, - -0.7604060173034668, - 0, - -0.7604060173034668, - 0, - -0.7604060173034668, - 0, - -0.7604060173034668, - 0, - -0.7604060173034668, - 0, - -0.7604060173034668, - 0, - -0.760405957698822, - 0, - -0.7604060173034668, - 0, - -0.7604060173034668, - 0, - -0.760405957698822, - 0, - -0.760405957698822, - 0, - -0.7604060173034668, - 0, - -0.7604060173034668, - 0, - -0.7604060173034668, - 0, - -0.7604060173034668, - 0, - -0.7604060173034668, - 0, - -0.760405957698822, - 0, - -0.760405957698822, - 0, - -0.7604060173034668, - 0, - -0.760405957698822, - 0, - -0.7604060173034668, - 0, - -0.7604060173034668, - 0, - -0.8526402115821838, - 0, - -0.8526402711868286, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402115821838, - 0, - -0.8526402711868286, - 0, - -0.8526402115821838, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9238796234130859, - 0, - -0.9723700284957886, - 0, - -0.9723700284957886, - 0, - -0.9723699688911438, - 0, - -0.9723699688911438, - 0, - -0.9723699688911438, - 0, - -0.9723699688911438, - 0, - -0.9723699688911438, - 0, - -0.9723700284957886, - 0, - -0.9723700284957886, - 0, - -0.9723700284957886, - 0, - -0.9723700284957886, - 0, - -0.9723700284957886, - 0, - -0.9723700284957886, - 0, - -0.9723699688911438, - 0, - -0.9723699688911438, - 0, - -0.9723699688911438, - 0, - -0.9723699688911438, - 0, - -0.9723700284957886, - 0, - -0.9723699688911438, - 0, - -0.9723700284957886, - 0, - -0.9723700284957886, - 0, - -0.9723699688911438, - 0, - -0.9723700284957886, - 0, - -0.9723699688911438, - 0, - -0.9723699688911438, - 0, - -0.9723699688911438, - 0, - -0.9723699688911438, - 0, - -0.9723700284957886, - 0, - -0.9723700284957886, - 0, - -0.9723700284957886, - 0, - -0.9723700284957886, - 0, - -0.9723700284957886, - 0, - -0.9723700284957886, - 0, - -0.9723699688911438, - 0, - -0.9723699688911438, - 0, - -0.9723699688911438, - 0, - -0.9723699688911438, - 0, - -0.9723699688911438, - 0, - -0.9723700284957886, - 0, - -0.9723700284957886, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063, - 0, - -0.9969173669815063 - ] - } - ], - "layout": { - "hovermode": false, - "margin": { - "b": 10, - "l": 0, - "r": 0, - "t": 10 - }, - "scene": { - "xaxis": { - "showspikes": false, - "title": { - "text": "x" - } - }, - "yaxis": { - "showspikes": false, - "title": { - "text": "z" - } - }, - "zaxis": { - "showspikes": false, - "title": { - "text": "y" - } - } - }, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - } - } - }, - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# COLLAPSED\n", - "from nerfstudio.cameras.cameras import Cameras, CameraType\n", - "from nerfstudio.utils import plotly_utils as vis\n", - "\n", - "cx = 20.0 # = width/2\n", - "cy = 10.0 # = height/2\n", - "fx = 20.0 # = height = width/2\n", - "fy = 20.0 # = height = width/2\n", - "\n", - "c2w = torch.eye(4)[None, :3, :]\n", - "\n", - "camera = Cameras(fx=fx, fy=fy, cx=cx, cy=cy, camera_to_worlds=c2w, camera_type=CameraType.EQUIRECTANGULAR)\n", - "fig = vis.vis_camera_rays(camera)\n", - "fig.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "tags": [] - }, - "source": [ - "## Distortion Parameters\n", - "\n", - "Unless you are using a pinhole camera (you probably aren't), modeling the distortion caused by the lenses may be beneficial. We represent the distortion with 6 parameters, $[k_1, k_2, k_3, k_4]$ for radial distortion and $[p_1, p_2]$ for tangential distortion.\n" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": { - "tags": [ - "remove-input" - ] - }, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9811120629310608, - -0.9834977388381958, - -0.9855434894561768, - -0.9872362017631531, - -0.988564670085907, - -0.9895201921463013, - -0.9900960922241211, - -0.990288496017456, - -0.9900960922241211, - -0.9895201921463013, - -0.988564670085907, - -0.9872362017631531, - -0.9855434894561768, - -0.9834977388381958, - -0.9811120629310608, - -0.8429980278015137, - -0.8450727462768555, - -0.8468520641326904, - -0.8483244776725769, - -0.849480390548706, - -0.8503117561340332, - -0.8508129715919495, - -0.850980281829834, - -0.8508129715919495, - -0.8503117561340332, - -0.849480390548706, - -0.8483244776725769, - -0.8468520641326904, - -0.8450727462768555, - -0.8429980278015137, - -0.7039596438407898, - -0.7057100534439087, - -0.7072114944458008, - -0.7084542512893677, - -0.7094298601150513, - -0.7101316452026367, - -0.7105547189712524, - -0.7106961011886597, - -0.7105547189712524, - -0.7101316452026367, - -0.7094298601150513, - -0.7084542512893677, - -0.7072114944458008, - -0.7057100534439087, - -0.7039596438407898, - -0.5641348958015442, - -0.5655496120452881, - -0.5667633414268494, - -0.5677680373191833, - -0.5685567855834961, - -0.5691242814064026, - -0.5694663524627686, - -0.5695806741714478, - -0.5694663524627686, - -0.5691242814064026, - -0.5685567855834961, - -0.5677680373191833, - -0.5667633414268494, - -0.5655496120452881, - -0.5641348958015442, - -0.42367056012153625, - -0.42474016547203064, - -0.42565786838531494, - -0.42641761898994446, - -0.42701414227485657, - -0.42744335532188416, - -0.4277020990848541, - -0.42778855562210083, - -0.4277020990848541, - -0.42744335532188416, - -0.42701414227485657, - -0.42641761898994446, - -0.42565786838531494, - -0.42474016547203064, - -0.42367056012153625, - -0.28272002935409546, - -0.28343725204467773, - -0.28405264019966125, - -0.2845621407032013, - -0.2849622368812561, - -0.28525006771087646, - -0.2854236364364624, - -0.28548160195350647, - -0.2854236364364624, - -0.28525006771087646, - -0.2849622368812561, - -0.2845621407032013, - -0.28405264019966125, - -0.28343725204467773, - -0.28272002935409546, - -0.14144226908683777, - -0.141802117228508, - -0.1421109139919281, - -0.14236655831336975, - -0.14256733655929565, - -0.1427117884159088, - -0.14279887080192566, - -0.14282797276973724, - -0.14279887080192566, - -0.1427117884159088, - -0.14256733655929565, - -0.14236655831336975, - -0.1421109139919281, - -0.141802117228508, - -0.14144226908683777, - -4.4269345522707226e-8, - -4.4382080233162924e-8, - -4.447882417935034e-8, - -4.4558923661952576e-8, - -4.462182801034942e-8, - -4.46670789244763e-8, - -4.4694367318243167e-8, - -4.470348358154297e-8, - -4.4694367318243167e-8, - -4.46670789244763e-8, - -4.462182801034942e-8, - -4.4558923661952576e-8, - -4.447882417935034e-8, - -4.4382080233162924e-8, - -4.4269345522707226e-8, - 0.14144226908683777, - 0.141802117228508, - 0.1421109139919281, - 0.14236655831336975, - 0.14256733655929565, - 0.1427117884159088, - 0.14279887080192566, - 0.14282797276973724, - 0.14279887080192566, - 0.1427117884159088, - 0.14256733655929565, - 0.14236655831336975, - 0.1421109139919281, - 0.141802117228508, - 0.14144226908683777, - 0.28272002935409546, - 0.28343725204467773, - 0.28405264019966125, - 0.2845621407032013, - 0.2849622368812561, - 0.28525006771087646, - 0.2854236364364624, - 0.28548160195350647, - 0.2854236364364624, - 0.28525006771087646, - 0.2849622368812561, - 0.2845621407032013, - 0.28405264019966125, - 0.28343725204467773, - 0.28272002935409546, - 0.42367056012153625, - 0.42474016547203064, - 0.42565786838531494, - 0.42641761898994446, - 0.42701414227485657, - 0.42744335532188416, - 0.4277020990848541, - 0.42778855562210083, - 0.4277020990848541, - 0.42744335532188416, - 0.42701414227485657, - 0.42641761898994446, - 0.42565786838531494, - 0.42474016547203064, - 0.42367056012153625, - 0.5641348958015442, - 0.5655496120452881, - 0.5667633414268494, - 0.5677680373191833, - 0.5685567855834961, - 0.5691242814064026, - 0.5694663524627686, - 0.5695806741714478, - 0.5694663524627686, - 0.5691242814064026, - 0.5685567855834961, - 0.5677680373191833, - 0.5667633414268494, - 0.5655496120452881, - 0.5641348958015442, - 0.7039596438407898, - 0.7057100534439087, - 0.7072114944458008, - 0.7084542512893677, - 0.7094298601150513, - 0.7101316452026367, - 0.7105547189712524, - 0.7106961011886597, - 0.7105547189712524, - 0.7101316452026367, - 0.7094298601150513, - 0.7084542512893677, - 0.7072114944458008, - 0.7057100534439087, - 0.7039596438407898, - 0.8429980278015137, - 0.8450727462768555, - 0.8468520641326904, - 0.8483244776725769, - 0.849480390548706, - 0.8503117561340332, - 0.8508129715919495, - 0.850980281829834, - 0.8508129715919495, - 0.8503117561340332, - 0.849480390548706, - 0.8483244776725769, - 0.8468520641326904, - 0.8450727462768555, - 0.8429980278015137, - 0.9811120629310608, - 0.9834977388381958, - 0.9855434894561768, - 0.9872362017631531, - 0.988564670085907, - 0.9895201921463013, - 0.9900960922241211, - 0.990288496017456, - 0.9900960922241211, - 0.9895201921463013, - 0.988564670085907, - 0.9872362017631531, - 0.9855434894561768, - 0.9834977388381958, - 0.9811120629310608 - ], - "xaxis": "x", - "y": [ - -0.9811120629310608, - -0.8429980278015137, - -0.7039596438407898, - -0.5641348958015442, - -0.42367056012153625, - -0.28272002935409546, - -0.14144226908683777, - -4.4269345522707226e-8, - 0.14144226908683777, - 0.28272002935409546, - 0.42367056012153625, - 0.5641348958015442, - 0.7039596438407898, - 0.8429980278015137, - 0.9811120629310608, - -0.9834977388381958, - -0.8450727462768555, - -0.7057100534439087, - -0.5655496120452881, - -0.42474016547203064, - -0.28343725204467773, - -0.141802117228508, - -4.4382080233162924e-8, - 0.141802117228508, - 0.28343725204467773, - 0.42474016547203064, - 0.5655496120452881, - 0.7057100534439087, - 0.8450727462768555, - 0.9834977388381958, - -0.9855434894561768, - -0.8468520641326904, - -0.7072114944458008, - -0.5667633414268494, - -0.42565786838531494, - -0.28405264019966125, - -0.1421109139919281, - -4.447882417935034e-8, - 0.1421109139919281, - 0.28405264019966125, - 0.42565786838531494, - 0.5667633414268494, - 0.7072114944458008, - 0.8468520641326904, - 0.9855434894561768, - -0.9872362017631531, - -0.8483244776725769, - -0.7084542512893677, - -0.5677680373191833, - -0.42641761898994446, - -0.2845621407032013, - -0.14236655831336975, - -4.4558923661952576e-8, - 0.14236655831336975, - 0.2845621407032013, - 0.42641761898994446, - 0.5677680373191833, - 0.7084542512893677, - 0.8483244776725769, - 0.9872362017631531, - -0.988564670085907, - -0.849480390548706, - -0.7094298601150513, - -0.5685567855834961, - -0.42701414227485657, - -0.2849622368812561, - -0.14256733655929565, - -4.462182801034942e-8, - 0.14256733655929565, - 0.2849622368812561, - 0.42701414227485657, - 0.5685567855834961, - 0.7094298601150513, - 0.849480390548706, - 0.988564670085907, - -0.9895201921463013, - -0.8503117561340332, - -0.7101316452026367, - -0.5691242814064026, - -0.42744335532188416, - -0.28525006771087646, - -0.1427117884159088, - -4.46670789244763e-8, - 0.1427117884159088, - 0.28525006771087646, - 0.42744335532188416, - 0.5691242814064026, - 0.7101316452026367, - 0.8503117561340332, - 0.9895201921463013, - -0.9900960922241211, - -0.8508129715919495, - -0.7105547189712524, - -0.5694663524627686, - -0.4277020990848541, - -0.2854236364364624, - -0.14279887080192566, - -4.4694367318243167e-8, - 0.14279887080192566, - 0.2854236364364624, - 0.4277020990848541, - 0.5694663524627686, - 0.7105547189712524, - 0.8508129715919495, - 0.9900960922241211, - -0.990288496017456, - -0.850980281829834, - -0.7106961011886597, - -0.5695806741714478, - -0.42778855562210083, - -0.28548160195350647, - -0.14282797276973724, - -4.470348358154297e-8, - 0.14282797276973724, - 0.28548160195350647, - 0.42778855562210083, - 0.5695806741714478, - 0.7106961011886597, - 0.850980281829834, - 0.990288496017456, - -0.9900960922241211, - -0.8508129715919495, - -0.7105547189712524, - -0.5694663524627686, - -0.4277020990848541, - -0.2854236364364624, - -0.14279887080192566, - -4.4694367318243167e-8, - 0.14279887080192566, - 0.2854236364364624, - 0.4277020990848541, - 0.5694663524627686, - 0.7105547189712524, - 0.8508129715919495, - 0.9900960922241211, - -0.9895201921463013, - -0.8503117561340332, - -0.7101316452026367, - -0.5691242814064026, - -0.42744335532188416, - -0.28525006771087646, - -0.1427117884159088, - -4.46670789244763e-8, - 0.1427117884159088, - 0.28525006771087646, - 0.42744335532188416, - 0.5691242814064026, - 0.7101316452026367, - 0.8503117561340332, - 0.9895201921463013, - -0.988564670085907, - -0.849480390548706, - -0.7094298601150513, - -0.5685567855834961, - -0.42701414227485657, - -0.2849622368812561, - -0.14256733655929565, - -4.462182801034942e-8, - 0.14256733655929565, - 0.2849622368812561, - 0.42701414227485657, - 0.5685567855834961, - 0.7094298601150513, - 0.849480390548706, - 0.988564670085907, - -0.9872362017631531, - -0.8483244776725769, - -0.7084542512893677, - -0.5677680373191833, - -0.42641761898994446, - -0.2845621407032013, - -0.14236655831336975, - -4.4558923661952576e-8, - 0.14236655831336975, - 0.2845621407032013, - 0.42641761898994446, - 0.5677680373191833, - 0.7084542512893677, - 0.8483244776725769, - 0.9872362017631531, - -0.9855434894561768, - -0.8468520641326904, - -0.7072114944458008, - -0.5667633414268494, - -0.42565786838531494, - -0.28405264019966125, - -0.1421109139919281, - -4.447882417935034e-8, - 0.1421109139919281, - 0.28405264019966125, - 0.42565786838531494, - 0.5667633414268494, - 0.7072114944458008, - 0.8468520641326904, - 0.9855434894561768, - -0.9834977388381958, - -0.8450727462768555, - -0.7057100534439087, - -0.5655496120452881, - -0.42474016547203064, - -0.28343725204467773, - -0.141802117228508, - -4.4382080233162924e-8, - 0.141802117228508, - 0.28343725204467773, - 0.42474016547203064, - 0.5655496120452881, - 0.7057100534439087, - 0.8450727462768555, - 0.9834977388381958, - -0.9811120629310608, - -0.8429980278015137, - -0.7039596438407898, - -0.5641348958015442, - -0.42367056012153625, - -0.28272002935409546, - -0.14144226908683777, - -4.4269345522707226e-8, - 0.14144226908683777, - 0.28272002935409546, - 0.42367056012153625, - 0.5641348958015442, - 0.7039596438407898, - 0.8429980278015137, - 0.9811120629310608 - ], - "yaxis": "y" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9771904349327087, - -0.9800423979759216, - -0.9824944138526917, - -0.9845278263092041, - -0.986126720905304, - -0.9872782230377197, - -0.9879730343818665, - -0.9882051944732666, - -0.9879730343818665, - -0.9872782230377197, - -0.986126720905304, - -0.9845278263092041, - -0.9824944138526917, - -0.9800423979759216, - -0.9771904349327087, - -0.8400363326072693, - -0.8425236344337463, - -0.8446625471115112, - -0.846436619758606, - -0.8478320240974426, - -0.8488370776176453, - -0.8494435548782349, - -0.8496463298797607, - -0.8494435548782349, - -0.8488370776176453, - -0.8478320240974426, - -0.846436619758606, - -0.8446625471115112, - -0.8425236344337463, - -0.8400363326072693, - -0.7017817497253418, - -0.7038854360580444, - -0.7056950330734253, - -0.7071962356567383, - -0.7083771824836731, - -0.7092279195785522, - -0.7097412943840027, - -0.709912896156311, - -0.7097412943840027, - -0.7092279195785522, - -0.7083771824836731, - -0.7071962356567383, - -0.7056950330734253, - -0.7038854360580444, - -0.7017817497253418, - -0.5625872611999512, - -0.5642910599708557, - -0.5657569169998169, - -0.5669733285903931, - -0.567930281162262, - -0.5686196684837341, - -0.5690358281135559, - -0.5691748857498169, - -0.5690358281135559, - -0.5686196684837341, - -0.567930281162262, - -0.5669733285903931, - -0.5657569169998169, - -0.5642910599708557, - -0.5625872611999512, - -0.42262569069862366, - -0.4239159822463989, - -0.4250262677669525, - -0.4259476959705353, - -0.42667266726493835, - -0.4271950423717499, - -0.4275103509426117, - -0.4276157021522522, - -0.4275103509426117, - -0.4271950423717499, - -0.42667266726493835, - -0.4259476959705353, - -0.4250262677669525, - -0.4239159822463989, - -0.42262569069862366, - -0.2820794880390167, - -0.2829456627368927, - -0.2836911380290985, - -0.28430983424186707, - -0.28479668498039246, - -0.2851475179195404, - -0.285359263420105, - -0.28543004393577576, - -0.285359263420105, - -0.2851475179195404, - -0.28479668498039246, - -0.28430983424186707, - -0.2836911380290985, - -0.2829456627368927, - -0.2820794880390167, - -0.141138955950737, - -0.14157389104366302, - -0.14194820821285248, - -0.1422589272260666, - -0.14250342547893524, - -0.1426796019077301, - -0.1427859365940094, - -0.1428215056657791, - -0.1427859365940094, - -0.1426796019077301, - -0.14250342547893524, - -0.1422589272260666, - -0.14194820821285248, - -0.14157389104366302, - -0.141138955950737, - -4.417621468633115e-8, - -4.4312507441190974e-8, - -4.442981094143761e-8, - -4.4527176612518815e-8, - -4.4603797988429505e-8, - -4.465901426442542e-8, - -4.469234227144625e-8, - -4.470348358154297e-8, - -4.469234227144625e-8, - -4.465901426442542e-8, - -4.4603797988429505e-8, - -4.4527176612518815e-8, - -4.442981094143761e-8, - -4.4312507441190974e-8, - -4.417621468633115e-8, - 0.141138955950737, - 0.14157389104366302, - 0.14194820821285248, - 0.1422589272260666, - 0.14250342547893524, - 0.1426796019077301, - 0.1427859365940094, - 0.1428215056657791, - 0.1427859365940094, - 0.1426796019077301, - 0.14250342547893524, - 0.1422589272260666, - 0.14194820821285248, - 0.14157389104366302, - 0.141138955950737, - 0.2820794880390167, - 0.2829456627368927, - 0.2836911380290985, - 0.28430983424186707, - 0.28479668498039246, - 0.2851475179195404, - 0.285359263420105, - 0.28543004393577576, - 0.285359263420105, - 0.2851475179195404, - 0.28479668498039246, - 0.28430983424186707, - 0.2836911380290985, - 0.2829456627368927, - 0.2820794880390167, - 0.42262569069862366, - 0.4239159822463989, - 0.4250262677669525, - 0.4259476959705353, - 0.42667266726493835, - 0.4271950423717499, - 0.4275103509426117, - 0.4276157021522522, - 0.4275103509426117, - 0.4271950423717499, - 0.42667266726493835, - 0.4259476959705353, - 0.4250262677669525, - 0.4239159822463989, - 0.42262569069862366, - 0.5625872611999512, - 0.5642910599708557, - 0.5657569169998169, - 0.5669733285903931, - 0.567930281162262, - 0.5686196684837341, - 0.5690358281135559, - 0.5691748857498169, - 0.5690358281135559, - 0.5686196684837341, - 0.567930281162262, - 0.5669733285903931, - 0.5657569169998169, - 0.5642910599708557, - 0.5625872611999512, - 0.7017817497253418, - 0.7038854360580444, - 0.7056950330734253, - 0.7071962356567383, - 0.7083771824836731, - 0.7092279195785522, - 0.7097412943840027, - 0.709912896156311, - 0.7097412943840027, - 0.7092279195785522, - 0.7083771824836731, - 0.7071962356567383, - 0.7056950330734253, - 0.7038854360580444, - 0.7017817497253418, - 0.8400363326072693, - 0.8425236344337463, - 0.8446625471115112, - 0.846436619758606, - 0.8478320240974426, - 0.8488370776176453, - 0.8494435548782349, - 0.8496463298797607, - 0.8494435548782349, - 0.8488370776176453, - 0.8478320240974426, - 0.846436619758606, - 0.8446625471115112, - 0.8425236344337463, - 0.8400363326072693, - 0.9771904349327087, - 0.9800423979759216, - 0.9824944138526917, - 0.9845278263092041, - 0.986126720905304, - 0.9872782230377197, - 0.9879730343818665, - 0.9882051944732666, - 0.9879730343818665, - 0.9872782230377197, - 0.986126720905304, - 0.9845278263092041, - 0.9824944138526917, - 0.9800423979759216, - 0.9771904349327087 - ], - "xaxis": "x", - "y": [ - -0.9771904349327087, - -0.8400363326072693, - -0.7017817497253418, - -0.5625872611999512, - -0.42262569069862366, - -0.2820794880390167, - -0.141138955950737, - -4.417621468633115e-8, - 0.141138955950737, - 0.2820794880390167, - 0.42262569069862366, - 0.5625872611999512, - 0.7017817497253418, - 0.8400363326072693, - 0.9771904349327087, - -0.9800423979759216, - -0.8425236344337463, - -0.7038854360580444, - -0.5642910599708557, - -0.4239159822463989, - -0.2829456627368927, - -0.14157389104366302, - -4.4312507441190974e-8, - 0.14157389104366302, - 0.2829456627368927, - 0.4239159822463989, - 0.5642910599708557, - 0.7038854360580444, - 0.8425236344337463, - 0.9800423979759216, - -0.9824944138526917, - -0.8446625471115112, - -0.7056950330734253, - -0.5657569169998169, - -0.4250262677669525, - -0.2836911380290985, - -0.14194820821285248, - -4.442981094143761e-8, - 0.14194820821285248, - 0.2836911380290985, - 0.4250262677669525, - 0.5657569169998169, - 0.7056950330734253, - 0.8446625471115112, - 0.9824944138526917, - -0.9845278263092041, - -0.846436619758606, - -0.7071962356567383, - -0.5669733285903931, - -0.4259476959705353, - -0.28430983424186707, - -0.1422589272260666, - -4.4527176612518815e-8, - 0.1422589272260666, - 0.28430983424186707, - 0.4259476959705353, - 0.5669733285903931, - 0.7071962356567383, - 0.846436619758606, - 0.9845278263092041, - -0.986126720905304, - -0.8478320240974426, - -0.7083771824836731, - -0.567930281162262, - -0.42667266726493835, - -0.28479668498039246, - -0.14250342547893524, - -4.4603797988429505e-8, - 0.14250342547893524, - 0.28479668498039246, - 0.42667266726493835, - 0.567930281162262, - 0.7083771824836731, - 0.8478320240974426, - 0.986126720905304, - -0.9872782230377197, - -0.8488370776176453, - -0.7092279195785522, - -0.5686196684837341, - -0.4271950423717499, - -0.2851475179195404, - -0.1426796019077301, - -4.465901426442542e-8, - 0.1426796019077301, - 0.2851475179195404, - 0.4271950423717499, - 0.5686196684837341, - 0.7092279195785522, - 0.8488370776176453, - 0.9872782230377197, - -0.9879730343818665, - -0.8494435548782349, - -0.7097412943840027, - -0.5690358281135559, - -0.4275103509426117, - -0.285359263420105, - -0.1427859365940094, - -4.469234227144625e-8, - 0.1427859365940094, - 0.285359263420105, - 0.4275103509426117, - 0.5690358281135559, - 0.7097412943840027, - 0.8494435548782349, - 0.9879730343818665, - -0.9882051944732666, - -0.8496463298797607, - -0.709912896156311, - -0.5691748857498169, - -0.4276157021522522, - -0.28543004393577576, - -0.1428215056657791, - -4.470348358154297e-8, - 0.1428215056657791, - 0.28543004393577576, - 0.4276157021522522, - 0.5691748857498169, - 0.709912896156311, - 0.8496463298797607, - 0.9882051944732666, - -0.9879730343818665, - -0.8494435548782349, - -0.7097412943840027, - -0.5690358281135559, - -0.4275103509426117, - -0.285359263420105, - -0.1427859365940094, - -4.469234227144625e-8, - 0.1427859365940094, - 0.285359263420105, - 0.4275103509426117, - 0.5690358281135559, - 0.7097412943840027, - 0.8494435548782349, - 0.9879730343818665, - -0.9872782230377197, - -0.8488370776176453, - -0.7092279195785522, - -0.5686196684837341, - -0.4271950423717499, - -0.2851475179195404, - -0.1426796019077301, - -4.465901426442542e-8, - 0.1426796019077301, - 0.2851475179195404, - 0.4271950423717499, - 0.5686196684837341, - 0.7092279195785522, - 0.8488370776176453, - 0.9872782230377197, - -0.986126720905304, - -0.8478320240974426, - -0.7083771824836731, - -0.567930281162262, - -0.42667266726493835, - -0.28479668498039246, - -0.14250342547893524, - -4.4603797988429505e-8, - 0.14250342547893524, - 0.28479668498039246, - 0.42667266726493835, - 0.567930281162262, - 0.7083771824836731, - 0.8478320240974426, - 0.986126720905304, - -0.9845278263092041, - -0.846436619758606, - -0.7071962356567383, - -0.5669733285903931, - -0.4259476959705353, - -0.28430983424186707, - -0.1422589272260666, - -4.4527176612518815e-8, - 0.1422589272260666, - 0.28430983424186707, - 0.4259476959705353, - 0.5669733285903931, - 0.7071962356567383, - 0.846436619758606, - 0.9845278263092041, - -0.9824944138526917, - -0.8446625471115112, - -0.7056950330734253, - -0.5657569169998169, - -0.4250262677669525, - -0.2836911380290985, - -0.14194820821285248, - -4.442981094143761e-8, - 0.14194820821285248, - 0.2836911380290985, - 0.4250262677669525, - 0.5657569169998169, - 0.7056950330734253, - 0.8446625471115112, - 0.9824944138526917, - -0.9800423979759216, - -0.8425236344337463, - -0.7038854360580444, - -0.5642910599708557, - -0.4239159822463989, - -0.2829456627368927, - -0.14157389104366302, - -4.4312507441190974e-8, - 0.14157389104366302, - 0.2829456627368927, - 0.4239159822463989, - 0.5642910599708557, - 0.7038854360580444, - 0.8425236344337463, - 0.9800423979759216, - -0.9771904349327087, - -0.8400363326072693, - -0.7017817497253418, - -0.5625872611999512, - -0.42262569069862366, - -0.2820794880390167, - -0.141138955950737, - -4.417621468633115e-8, - 0.141138955950737, - 0.2820794880390167, - 0.42262569069862366, - 0.5625872611999512, - 0.7017817497253418, - 0.8400363326072693, - 0.9771904349327087 - ], - "yaxis": "y" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9733590483665466, - -0.9766573905944824, - -0.9795001745223999, - -0.9818628430366516, - -0.9837238788604736, - -0.9850659370422363, - -0.9858765006065369, - -0.9861475825309753, - -0.9858765006065369, - -0.9850659370422363, - -0.9837238788604736, - -0.9818628430366516, - -0.9795001745223999, - -0.9766573905944824, - -0.9733590483665466, - -0.8371348977088928, - -0.840019166469574, - -0.8425060510635376, - -0.844573438167572, - -0.8462024331092834, - -0.8473775386810303, - -0.8480871319770813, - -0.8483244776725769, - -0.8480871319770813, - -0.8473775386810303, - -0.8462024331092834, - -0.844573438167572, - -0.8425060510635376, - -0.840019166469574, - -0.8371348977088928, - -0.6996430158615112, - -0.7020883560180664, - -0.7041975259780884, - -0.705951452255249, - -0.7073336839675903, - -0.7083309888839722, - -0.7089332938194275, - -0.7091348171234131, - -0.7089332938194275, - -0.7083309888839722, - -0.7073336839675903, - -0.705951452255249, - -0.7041975259780884, - -0.7020883560180664, - -0.6996430158615112, - -0.5610644221305847, - -0.5630488991737366, - -0.5647611021995544, - -0.5661852359771729, - -0.5673078298568726, - -0.5681177973747253, - -0.5686071515083313, - -0.5687708258628845, - -0.5686071515083313, - -0.5681177973747253, - -0.5673078298568726, - -0.5661852359771729, - -0.5647611021995544, - -0.5630488991737366, - -0.5610644221305847, - -0.4215959310531616, - -0.42310118675231934, - -0.4244001507759094, - -0.42548084259033203, - -0.4263328015804291, - -0.42694762349128723, - -0.42731907963752747, - -0.42744335532188416, - -0.42731907963752747, - -0.42694762349128723, - -0.4263328015804291, - -0.42548084259033203, - -0.4244001507759094, - -0.42310118675231934, - -0.4215959310531616, - -0.2814474105834961, - -0.2824591398239136, - -0.28333234786987305, - -0.28405889868736267, - -0.28463172912597656, - -0.28504520654678345, - -0.2852950096130371, - -0.2853785753250122, - -0.2852950096130371, - -0.28504520654678345, - -0.28463172912597656, - -0.28405889868736267, - -0.28333234786987305, - -0.2824591398239136, - -0.2814474105834961, - -0.14083945751190186, - -0.14134782552719116, - -0.1417866200208664, - -0.14215175807476044, - -0.14243966341018677, - -0.14264747500419617, - -0.14277303218841553, - -0.14281503856182098, - -0.14277303218841553, - -0.14264747500419617, - -0.14243966341018677, - -0.14215175807476044, - -0.1417866200208664, - -0.14134782552719116, - -0.14083945751190186, - -4.4084231376473326e-8, - -4.424357058496753e-8, - -4.438111389504229e-8, - -4.449556456620485e-8, - -4.4585817704501096e-8, - -4.4650956709801903e-8, - -4.469032077736301e-8, - -4.470348358154297e-8, - -4.469032077736301e-8, - -4.4650956709801903e-8, - -4.4585817704501096e-8, - -4.449556456620485e-8, - -4.438111389504229e-8, - -4.424357058496753e-8, - -4.4084231376473326e-8, - 0.14083945751190186, - 0.14134782552719116, - 0.1417866200208664, - 0.14215175807476044, - 0.14243966341018677, - 0.14264747500419617, - 0.14277303218841553, - 0.14281503856182098, - 0.14277303218841553, - 0.14264747500419617, - 0.14243966341018677, - 0.14215175807476044, - 0.1417866200208664, - 0.14134782552719116, - 0.14083945751190186, - 0.2814474105834961, - 0.2824591398239136, - 0.28333234786987305, - 0.28405889868736267, - 0.28463172912597656, - 0.28504520654678345, - 0.2852950096130371, - 0.2853785753250122, - 0.2852950096130371, - 0.28504520654678345, - 0.28463172912597656, - 0.28405889868736267, - 0.28333234786987305, - 0.2824591398239136, - 0.2814474105834961, - 0.4215959310531616, - 0.42310118675231934, - 0.4244001507759094, - 0.42548084259033203, - 0.4263328015804291, - 0.42694762349128723, - 0.42731907963752747, - 0.42744335532188416, - 0.42731907963752747, - 0.42694762349128723, - 0.4263328015804291, - 0.42548084259033203, - 0.4244001507759094, - 0.42310118675231934, - 0.4215959310531616, - 0.5610644221305847, - 0.5630488991737366, - 0.5647611021995544, - 0.5661852359771729, - 0.5673078298568726, - 0.5681177973747253, - 0.5686071515083313, - 0.5687708258628845, - 0.5686071515083313, - 0.5681177973747253, - 0.5673078298568726, - 0.5661852359771729, - 0.5647611021995544, - 0.5630488991737366, - 0.5610644221305847, - 0.6996430158615112, - 0.7020883560180664, - 0.7041975259780884, - 0.705951452255249, - 0.7073336839675903, - 0.7083309888839722, - 0.7089332938194275, - 0.7091348171234131, - 0.7089332938194275, - 0.7083309888839722, - 0.7073336839675903, - 0.705951452255249, - 0.7041975259780884, - 0.7020883560180664, - 0.6996430158615112, - 0.8371348977088928, - 0.840019166469574, - 0.8425060510635376, - 0.844573438167572, - 0.8462024331092834, - 0.8473775386810303, - 0.8480871319770813, - 0.8483244776725769, - 0.8480871319770813, - 0.8473775386810303, - 0.8462024331092834, - 0.844573438167572, - 0.8425060510635376, - 0.840019166469574, - 0.8371348977088928, - 0.9733590483665466, - 0.9766573905944824, - 0.9795001745223999, - 0.9818628430366516, - 0.9837238788604736, - 0.9850659370422363, - 0.9858765006065369, - 0.9861475825309753, - 0.9858765006065369, - 0.9850659370422363, - 0.9837238788604736, - 0.9818628430366516, - 0.9795001745223999, - 0.9766573905944824, - 0.9733590483665466 - ], - "xaxis": "x", - "y": [ - -0.9733590483665466, - -0.8371348977088928, - -0.6996430158615112, - -0.5610644221305847, - -0.4215959310531616, - -0.2814474105834961, - -0.14083945751190186, - -4.4084231376473326e-8, - 0.14083945751190186, - 0.2814474105834961, - 0.4215959310531616, - 0.5610644221305847, - 0.6996430158615112, - 0.8371348977088928, - 0.9733590483665466, - -0.9766573905944824, - -0.840019166469574, - -0.7020883560180664, - -0.5630488991737366, - -0.42310118675231934, - -0.2824591398239136, - -0.14134782552719116, - -4.424357058496753e-8, - 0.14134782552719116, - 0.2824591398239136, - 0.42310118675231934, - 0.5630488991737366, - 0.7020883560180664, - 0.840019166469574, - 0.9766573905944824, - -0.9795001745223999, - -0.8425060510635376, - -0.7041975259780884, - -0.5647611021995544, - -0.4244001507759094, - -0.28333234786987305, - -0.1417866200208664, - -4.438111389504229e-8, - 0.1417866200208664, - 0.28333234786987305, - 0.4244001507759094, - 0.5647611021995544, - 0.7041975259780884, - 0.8425060510635376, - 0.9795001745223999, - -0.9818628430366516, - -0.844573438167572, - -0.705951452255249, - -0.5661852359771729, - -0.42548084259033203, - -0.28405889868736267, - -0.14215175807476044, - -4.449556456620485e-8, - 0.14215175807476044, - 0.28405889868736267, - 0.42548084259033203, - 0.5661852359771729, - 0.705951452255249, - 0.844573438167572, - 0.9818628430366516, - -0.9837238788604736, - -0.8462024331092834, - -0.7073336839675903, - -0.5673078298568726, - -0.4263328015804291, - -0.28463172912597656, - -0.14243966341018677, - -4.4585817704501096e-8, - 0.14243966341018677, - 0.28463172912597656, - 0.4263328015804291, - 0.5673078298568726, - 0.7073336839675903, - 0.8462024331092834, - 0.9837238788604736, - -0.9850659370422363, - -0.8473775386810303, - -0.7083309888839722, - -0.5681177973747253, - -0.42694762349128723, - -0.28504520654678345, - -0.14264747500419617, - -4.4650956709801903e-8, - 0.14264747500419617, - 0.28504520654678345, - 0.42694762349128723, - 0.5681177973747253, - 0.7083309888839722, - 0.8473775386810303, - 0.9850659370422363, - -0.9858765006065369, - -0.8480871319770813, - -0.7089332938194275, - -0.5686071515083313, - -0.42731907963752747, - -0.2852950096130371, - -0.14277303218841553, - -4.469032077736301e-8, - 0.14277303218841553, - 0.2852950096130371, - 0.42731907963752747, - 0.5686071515083313, - 0.7089332938194275, - 0.8480871319770813, - 0.9858765006065369, - -0.9861475825309753, - -0.8483244776725769, - -0.7091348171234131, - -0.5687708258628845, - -0.42744335532188416, - -0.2853785753250122, - -0.14281503856182098, - -4.470348358154297e-8, - 0.14281503856182098, - 0.2853785753250122, - 0.42744335532188416, - 0.5687708258628845, - 0.7091348171234131, - 0.8483244776725769, - 0.9861475825309753, - -0.9858765006065369, - -0.8480871319770813, - -0.7089332938194275, - -0.5686071515083313, - -0.42731907963752747, - -0.2852950096130371, - -0.14277303218841553, - -4.469032077736301e-8, - 0.14277303218841553, - 0.2852950096130371, - 0.42731907963752747, - 0.5686071515083313, - 0.7089332938194275, - 0.8480871319770813, - 0.9858765006065369, - -0.9850659370422363, - -0.8473775386810303, - -0.7083309888839722, - -0.5681177973747253, - -0.42694762349128723, - -0.28504520654678345, - -0.14264747500419617, - -4.4650956709801903e-8, - 0.14264747500419617, - 0.28504520654678345, - 0.42694762349128723, - 0.5681177973747253, - 0.7083309888839722, - 0.8473775386810303, - 0.9850659370422363, - -0.9837238788604736, - -0.8462024331092834, - -0.7073336839675903, - -0.5673078298568726, - -0.4263328015804291, - -0.28463172912597656, - -0.14243966341018677, - -4.4585817704501096e-8, - 0.14243966341018677, - 0.28463172912597656, - 0.4263328015804291, - 0.5673078298568726, - 0.7073336839675903, - 0.8462024331092834, - 0.9837238788604736, - -0.9818628430366516, - -0.844573438167572, - -0.705951452255249, - -0.5661852359771729, - -0.42548084259033203, - -0.28405889868736267, - -0.14215175807476044, - -4.449556456620485e-8, - 0.14215175807476044, - 0.28405889868736267, - 0.42548084259033203, - 0.5661852359771729, - 0.705951452255249, - 0.844573438167572, - 0.9818628430366516, - -0.9795001745223999, - -0.8425060510635376, - -0.7041975259780884, - -0.5647611021995544, - -0.4244001507759094, - -0.28333234786987305, - -0.1417866200208664, - -4.438111389504229e-8, - 0.1417866200208664, - 0.28333234786987305, - 0.4244001507759094, - 0.5647611021995544, - 0.7041975259780884, - 0.8425060510635376, - 0.9795001745223999, - -0.9766573905944824, - -0.840019166469574, - -0.7020883560180664, - -0.5630488991737366, - -0.42310118675231934, - -0.2824591398239136, - -0.14134782552719116, - -4.424357058496753e-8, - 0.14134782552719116, - 0.2824591398239136, - 0.42310118675231934, - 0.5630488991737366, - 0.7020883560180664, - 0.840019166469574, - 0.9766573905944824, - -0.9733590483665466, - -0.8371348977088928, - -0.6996430158615112, - -0.5610644221305847, - -0.4215959310531616, - -0.2814474105834961, - -0.14083945751190186, - -4.4084231376473326e-8, - 0.14083945751190186, - 0.2814474105834961, - 0.4215959310531616, - 0.5610644221305847, - 0.6996430158615112, - 0.8371348977088928, - 0.9733590483665466 - ], - "yaxis": "y" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9696139693260193, - -0.9733397364616394, - -0.9765588045120239, - -0.9792397022247314, - -0.9813551902770996, - -0.9828827977180481, - -0.9838061332702637, - -0.9841150045394897, - -0.9838061332702637, - -0.9828827977180481, - -0.9813551902770996, - -0.9792397022247314, - -0.9765588045120239, - -0.9733397364616394, - -0.9696139693260193, - -0.8342912197113037, - -0.837557852268219, - -0.8403816223144531, - -0.8427342176437378, - -0.8445913195610046, - -0.84593266248703, - -0.8467435240745544, - -0.847014844417572, - -0.8467435240745544, - -0.84593266248703, - -0.8445913195610046, - -0.8427342176437378, - -0.8403816223144531, - -0.837557852268219, - -0.8342912197113037, - -0.6975420117378235, - -0.7003180384635925, - -0.7027186751365662, - -0.7047194242477417, - -0.7062992453575134, - -0.7074407339096069, - -0.7081308364868164, - -0.708361804485321, - -0.7081308364868164, - -0.7074407339096069, - -0.7062992453575134, - -0.7047194242477417, - -0.7027186751365662, - -0.7003180384635925, - -0.6975420117378235, - -0.5595654845237732, - -0.561822772026062, - -0.5637754797935486, - -0.5654035806655884, - -0.5666893720626831, - -0.5676184892654419, - -0.5681803822517395, - -0.5683683753013611, - -0.5681803822517395, - -0.5676184892654419, - -0.5666893720626831, - -0.5654035806655884, - -0.5637754797935486, - -0.561822772026062, - -0.5595654845237732, - -0.42058074474334717, - -0.42229562997817993, - -0.42377951741218567, - -0.42501702904701233, - -0.42599454522132874, - -0.4267010986804962, - -0.4271283447742462, - -0.4272713363170624, - -0.4271283447742462, - -0.4267010986804962, - -0.42599454522132874, - -0.42501702904701233, - -0.42377951741218567, - -0.42229562997817993, - -0.42058074474334717, - -0.28082364797592163, - -0.2819775342941284, - -0.28297626972198486, - -0.28380924463272095, - -0.2844673991203308, - -0.2849431037902832, - -0.285230815410614, - -0.28532713651657104, - -0.285230815410614, - -0.2849431037902832, - -0.2844673991203308, - -0.28380924463272095, - -0.28297626972198486, - -0.2819775342941284, - -0.28082364797592163, - -0.14054369926452637, - -0.14112389087677002, - -0.14162611961364746, - -0.1420450657606125, - -0.14237608015537262, - -0.14261537790298462, - -0.14276011288166046, - -0.14280857145786285, - -0.14276011288166046, - -0.14261537790298462, - -0.14237608015537262, - -0.1420450657606125, - -0.14162611961364746, - -0.14112389087677002, - -0.14054369926452637, - -4.3993367171424325e-8, - -4.417526611177891e-8, - -4.4332733040164385e-8, - -4.4464083970297e-8, - -4.4567876500423154e-8, - -4.464290981331942e-8, - -4.4688295730566097e-8, - -4.470348358154297e-8, - -4.4688295730566097e-8, - -4.464290981331942e-8, - -4.4567876500423154e-8, - -4.4464083970297e-8, - -4.4332733040164385e-8, - -4.417526611177891e-8, - -4.3993367171424325e-8, - 0.14054369926452637, - 0.14112389087677002, - 0.14162611961364746, - 0.1420450657606125, - 0.14237608015537262, - 0.14261537790298462, - 0.14276011288166046, - 0.14280857145786285, - 0.14276011288166046, - 0.14261537790298462, - 0.14237608015537262, - 0.1420450657606125, - 0.14162611961364746, - 0.14112389087677002, - 0.14054369926452637, - 0.28082364797592163, - 0.2819775342941284, - 0.28297626972198486, - 0.28380924463272095, - 0.2844673991203308, - 0.2849431037902832, - 0.285230815410614, - 0.28532713651657104, - 0.285230815410614, - 0.2849431037902832, - 0.2844673991203308, - 0.28380924463272095, - 0.28297626972198486, - 0.2819775342941284, - 0.28082364797592163, - 0.42058074474334717, - 0.42229562997817993, - 0.42377951741218567, - 0.42501702904701233, - 0.42599454522132874, - 0.4267010986804962, - 0.4271283447742462, - 0.4272713363170624, - 0.4271283447742462, - 0.4267010986804962, - 0.42599454522132874, - 0.42501702904701233, - 0.42377951741218567, - 0.42229562997817993, - 0.42058074474334717, - 0.5595654845237732, - 0.561822772026062, - 0.5637754797935486, - 0.5654035806655884, - 0.5666893720626831, - 0.5676184892654419, - 0.5681803822517395, - 0.5683683753013611, - 0.5681803822517395, - 0.5676184892654419, - 0.5666893720626831, - 0.5654035806655884, - 0.5637754797935486, - 0.561822772026062, - 0.5595654845237732, - 0.6975420117378235, - 0.7003180384635925, - 0.7027186751365662, - 0.7047194242477417, - 0.7062992453575134, - 0.7074407339096069, - 0.7081308364868164, - 0.708361804485321, - 0.7081308364868164, - 0.7074407339096069, - 0.7062992453575134, - 0.7047194242477417, - 0.7027186751365662, - 0.7003180384635925, - 0.6975420117378235, - 0.8342912197113037, - 0.837557852268219, - 0.8403816223144531, - 0.8427342176437378, - 0.8445913195610046, - 0.84593266248703, - 0.8467435240745544, - 0.847014844417572, - 0.8467435240745544, - 0.84593266248703, - 0.8445913195610046, - 0.8427342176437378, - 0.8403816223144531, - 0.837557852268219, - 0.8342912197113037, - 0.9696139693260193, - 0.9733397364616394, - 0.9765588045120239, - 0.9792397022247314, - 0.9813551902770996, - 0.9828827977180481, - 0.9838061332702637, - 0.9841150045394897, - 0.9838061332702637, - 0.9828827977180481, - 0.9813551902770996, - 0.9792397022247314, - 0.9765588045120239, - 0.9733397364616394, - 0.9696139693260193 - ], - "xaxis": "x", - "y": [ - -0.9696139693260193, - -0.8342912197113037, - -0.6975420117378235, - -0.5595654845237732, - -0.42058074474334717, - -0.28082364797592163, - -0.14054369926452637, - -4.3993367171424325e-8, - 0.14054369926452637, - 0.28082364797592163, - 0.42058074474334717, - 0.5595654845237732, - 0.6975420117378235, - 0.8342912197113037, - 0.9696139693260193, - -0.9733397364616394, - -0.837557852268219, - -0.7003180384635925, - -0.561822772026062, - -0.42229562997817993, - -0.2819775342941284, - -0.14112389087677002, - -4.417526611177891e-8, - 0.14112389087677002, - 0.2819775342941284, - 0.42229562997817993, - 0.561822772026062, - 0.7003180384635925, - 0.837557852268219, - 0.9733397364616394, - -0.9765588045120239, - -0.8403816223144531, - -0.7027186751365662, - -0.5637754797935486, - -0.42377951741218567, - -0.28297626972198486, - -0.14162611961364746, - -4.4332733040164385e-8, - 0.14162611961364746, - 0.28297626972198486, - 0.42377951741218567, - 0.5637754797935486, - 0.7027186751365662, - 0.8403816223144531, - 0.9765588045120239, - -0.9792397022247314, - -0.8427342176437378, - -0.7047194242477417, - -0.5654035806655884, - -0.42501702904701233, - -0.28380924463272095, - -0.1420450657606125, - -4.4464083970297e-8, - 0.1420450657606125, - 0.28380924463272095, - 0.42501702904701233, - 0.5654035806655884, - 0.7047194242477417, - 0.8427342176437378, - 0.9792397022247314, - -0.9813551902770996, - -0.8445913195610046, - -0.7062992453575134, - -0.5666893720626831, - -0.42599454522132874, - -0.2844673991203308, - -0.14237608015537262, - -4.4567876500423154e-8, - 0.14237608015537262, - 0.2844673991203308, - 0.42599454522132874, - 0.5666893720626831, - 0.7062992453575134, - 0.8445913195610046, - 0.9813551902770996, - -0.9828827977180481, - -0.84593266248703, - -0.7074407339096069, - -0.5676184892654419, - -0.4267010986804962, - -0.2849431037902832, - -0.14261537790298462, - -4.464290981331942e-8, - 0.14261537790298462, - 0.2849431037902832, - 0.4267010986804962, - 0.5676184892654419, - 0.7074407339096069, - 0.84593266248703, - 0.9828827977180481, - -0.9838061332702637, - -0.8467435240745544, - -0.7081308364868164, - -0.5681803822517395, - -0.4271283447742462, - -0.285230815410614, - -0.14276011288166046, - -4.4688295730566097e-8, - 0.14276011288166046, - 0.285230815410614, - 0.4271283447742462, - 0.5681803822517395, - 0.7081308364868164, - 0.8467435240745544, - 0.9838061332702637, - -0.9841150045394897, - -0.847014844417572, - -0.708361804485321, - -0.5683683753013611, - -0.4272713363170624, - -0.28532713651657104, - -0.14280857145786285, - -4.470348358154297e-8, - 0.14280857145786285, - 0.28532713651657104, - 0.4272713363170624, - 0.5683683753013611, - 0.708361804485321, - 0.847014844417572, - 0.9841150045394897, - -0.9838061332702637, - -0.8467435240745544, - -0.7081308364868164, - -0.5681803822517395, - -0.4271283447742462, - -0.285230815410614, - -0.14276011288166046, - -4.4688295730566097e-8, - 0.14276011288166046, - 0.285230815410614, - 0.4271283447742462, - 0.5681803822517395, - 0.7081308364868164, - 0.8467435240745544, - 0.9838061332702637, - -0.9828827977180481, - -0.84593266248703, - -0.7074407339096069, - -0.5676184892654419, - -0.4267010986804962, - -0.2849431037902832, - -0.14261537790298462, - -4.464290981331942e-8, - 0.14261537790298462, - 0.2849431037902832, - 0.4267010986804962, - 0.5676184892654419, - 0.7074407339096069, - 0.84593266248703, - 0.9828827977180481, - -0.9813551902770996, - -0.8445913195610046, - -0.7062992453575134, - -0.5666893720626831, - -0.42599454522132874, - -0.2844673991203308, - -0.14237608015537262, - -4.4567876500423154e-8, - 0.14237608015537262, - 0.2844673991203308, - 0.42599454522132874, - 0.5666893720626831, - 0.7062992453575134, - 0.8445913195610046, - 0.9813551902770996, - -0.9792397022247314, - -0.8427342176437378, - -0.7047194242477417, - -0.5654035806655884, - -0.42501702904701233, - -0.28380924463272095, - -0.1420450657606125, - -4.4464083970297e-8, - 0.1420450657606125, - 0.28380924463272095, - 0.42501702904701233, - 0.5654035806655884, - 0.7047194242477417, - 0.8427342176437378, - 0.9792397022247314, - -0.9765588045120239, - -0.8403816223144531, - -0.7027186751365662, - -0.5637754797935486, - -0.42377951741218567, - -0.28297626972198486, - -0.14162611961364746, - -4.4332733040164385e-8, - 0.14162611961364746, - 0.28297626972198486, - 0.42377951741218567, - 0.5637754797935486, - 0.7027186751365662, - 0.8403816223144531, - 0.9765588045120239, - -0.9733397364616394, - -0.837557852268219, - -0.7003180384635925, - -0.561822772026062, - -0.42229562997817993, - -0.2819775342941284, - -0.14112389087677002, - -4.417526611177891e-8, - 0.14112389087677002, - 0.2819775342941284, - 0.42229562997817993, - 0.561822772026062, - 0.7003180384635925, - 0.837557852268219, - 0.9733397364616394, - -0.9696139693260193, - -0.8342912197113037, - -0.6975420117378235, - -0.5595654845237732, - -0.42058074474334717, - -0.28082364797592163, - -0.14054369926452637, - -4.3993367171424325e-8, - 0.14054369926452637, - 0.28082364797592163, - 0.42058074474334717, - 0.5595654845237732, - 0.6975420117378235, - 0.8342912197113037, - 0.9696139693260193 - ], - "yaxis": "y" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9659512042999268, - -0.9700868725776672, - -0.9736685156822205, - -0.9766573905944824, - -0.9790197014808655, - -0.9807277917861938, - -0.9817611575126648, - -0.9821069836616516, - -0.9817611575126648, - -0.9807277917861938, - -0.9790197014808655, - -0.9766573905944824, - -0.9736685156822205, - -0.9700868725776672, - -0.9659512042999268, - -0.8315030336380005, - -0.8351383209228516, - -0.838288426399231, - -0.8409184813499451, - -0.8429980278015137, - -0.844502329826355, - -0.8454124331474304, - -0.8457172513008118, - -0.8454124331474304, - -0.844502329826355, - -0.8429980278015137, - -0.8409184813499451, - -0.838288426399231, - -0.8351383209228516, - -0.8315030336380005, - -0.6954775452613831, - -0.6985737085342407, - -0.7012580037117004, - -0.7035001516342163, - -0.7052738070487976, - -0.706557035446167, - -0.7073336839675903, - -0.7075936794281006, - -0.7073336839675903, - -0.706557035446167, - -0.7052738070487976, - -0.7035001516342163, - -0.7012580037117004, - -0.6985737085342407, - -0.6954775452613831, - -0.5580899119377136, - -0.5606122612953186, - -0.5628001093864441, - -0.5646283030509949, - -0.5660749077796936, - -0.5671218037605286, - -0.5677555203437805, - -0.5679677724838257, - -0.5677555203437805, - -0.5671218037605286, - -0.5660749077796936, - -0.5646283030509949, - -0.5628001093864441, - -0.5606122612953186, - -0.5580899119377136, - -0.4195798635482788, - -0.42149898409843445, - -0.4231642484664917, - -0.424556165933609, - -0.42565786838531494, - -0.4264553487300873, - -0.42693814635276794, - -0.4270997643470764, - -0.42693814635276794, - -0.4264553487300873, - -0.42565786838531494, - -0.424556165933609, - -0.4231642484664917, - -0.42149898409843445, - -0.4195798635482788, - -0.28020793199539185, - -0.28150075674057007, - -0.2826227843761444, - -0.2835609018802643, - -0.28430357575416565, - -0.2848412096500397, - -0.2851667106151581, - -0.28527572751045227, - -0.2851667106151581, - -0.2848412096500397, - -0.28430357575416565, - -0.2835609018802643, - -0.2826227843761444, - -0.28150075674057007, - -0.28020793199539185, - -0.1402515470981598, - -0.14090204238891602, - -0.14146669209003448, - -0.14193885028362274, - -0.1423126757144928, - -0.14258332550525665, - -0.14274722337722778, - -0.14280210435390472, - -0.14274722337722778, - -0.14258332550525665, - -0.1423126757144928, - -0.14193885028362274, - -0.14146669209003448, - -0.14090204238891602, - -0.1402515470981598, - -4.390360430761575e-8, - -4.410759046891144e-8, - -4.4284661271376535e-8, - -4.443274193022262e-8, - -4.4549981481623036e-8, - -4.4634870022264295e-8, - -4.468627068376918e-8, - -4.470348358154297e-8, - -4.468627068376918e-8, - -4.4634870022264295e-8, - -4.4549981481623036e-8, - -4.443274193022262e-8, - -4.4284661271376535e-8, - -4.410759046891144e-8, - -4.390360430761575e-8, - 0.1402515470981598, - 0.14090204238891602, - 0.14146669209003448, - 0.14193885028362274, - 0.1423126757144928, - 0.14258332550525665, - 0.14274722337722778, - 0.14280210435390472, - 0.14274722337722778, - 0.14258332550525665, - 0.1423126757144928, - 0.14193885028362274, - 0.14146669209003448, - 0.14090204238891602, - 0.1402515470981598, - 0.28020793199539185, - 0.28150075674057007, - 0.2826227843761444, - 0.2835609018802643, - 0.28430357575416565, - 0.2848412096500397, - 0.2851667106151581, - 0.28527572751045227, - 0.2851667106151581, - 0.2848412096500397, - 0.28430357575416565, - 0.2835609018802643, - 0.2826227843761444, - 0.28150075674057007, - 0.28020793199539185, - 0.4195798635482788, - 0.42149898409843445, - 0.4231642484664917, - 0.424556165933609, - 0.42565786838531494, - 0.4264553487300873, - 0.42693814635276794, - 0.4270997643470764, - 0.42693814635276794, - 0.4264553487300873, - 0.42565786838531494, - 0.424556165933609, - 0.4231642484664917, - 0.42149898409843445, - 0.4195798635482788, - 0.5580899119377136, - 0.5606122612953186, - 0.5628001093864441, - 0.5646283030509949, - 0.5660749077796936, - 0.5671218037605286, - 0.5677555203437805, - 0.5679677724838257, - 0.5677555203437805, - 0.5671218037605286, - 0.5660749077796936, - 0.5646283030509949, - 0.5628001093864441, - 0.5606122612953186, - 0.5580899119377136, - 0.6954775452613831, - 0.6985737085342407, - 0.7012580037117004, - 0.7035001516342163, - 0.7052738070487976, - 0.706557035446167, - 0.7073336839675903, - 0.7075936794281006, - 0.7073336839675903, - 0.706557035446167, - 0.7052738070487976, - 0.7035001516342163, - 0.7012580037117004, - 0.6985737085342407, - 0.6954775452613831, - 0.8315030336380005, - 0.8351383209228516, - 0.838288426399231, - 0.8409184813499451, - 0.8429980278015137, - 0.844502329826355, - 0.8454124331474304, - 0.8457172513008118, - 0.8454124331474304, - 0.844502329826355, - 0.8429980278015137, - 0.8409184813499451, - 0.838288426399231, - 0.8351383209228516, - 0.8315030336380005, - 0.9659512042999268, - 0.9700868725776672, - 0.9736685156822205, - 0.9766573905944824, - 0.9790197014808655, - 0.9807277917861938, - 0.9817611575126648, - 0.9821069836616516, - 0.9817611575126648, - 0.9807277917861938, - 0.9790197014808655, - 0.9766573905944824, - 0.9736685156822205, - 0.9700868725776672, - 0.9659512042999268 - ], - "xaxis": "x", - "y": [ - -0.9659512042999268, - -0.8315030336380005, - -0.6954775452613831, - -0.5580899119377136, - -0.4195798635482788, - -0.28020793199539185, - -0.1402515470981598, - -4.390360430761575e-8, - 0.1402515470981598, - 0.28020793199539185, - 0.4195798635482788, - 0.5580899119377136, - 0.6954775452613831, - 0.8315030336380005, - 0.9659512042999268, - -0.9700868725776672, - -0.8351383209228516, - -0.6985737085342407, - -0.5606122612953186, - -0.42149898409843445, - -0.28150075674057007, - -0.14090204238891602, - -4.410759046891144e-8, - 0.14090204238891602, - 0.28150075674057007, - 0.42149898409843445, - 0.5606122612953186, - 0.6985737085342407, - 0.8351383209228516, - 0.9700868725776672, - -0.9736685156822205, - -0.838288426399231, - -0.7012580037117004, - -0.5628001093864441, - -0.4231642484664917, - -0.2826227843761444, - -0.14146669209003448, - -4.4284661271376535e-8, - 0.14146669209003448, - 0.2826227843761444, - 0.4231642484664917, - 0.5628001093864441, - 0.7012580037117004, - 0.838288426399231, - 0.9736685156822205, - -0.9766573905944824, - -0.8409184813499451, - -0.7035001516342163, - -0.5646283030509949, - -0.424556165933609, - -0.2835609018802643, - -0.14193885028362274, - -4.443274193022262e-8, - 0.14193885028362274, - 0.2835609018802643, - 0.424556165933609, - 0.5646283030509949, - 0.7035001516342163, - 0.8409184813499451, - 0.9766573905944824, - -0.9790197014808655, - -0.8429980278015137, - -0.7052738070487976, - -0.5660749077796936, - -0.42565786838531494, - -0.28430357575416565, - -0.1423126757144928, - -4.4549981481623036e-8, - 0.1423126757144928, - 0.28430357575416565, - 0.42565786838531494, - 0.5660749077796936, - 0.7052738070487976, - 0.8429980278015137, - 0.9790197014808655, - -0.9807277917861938, - -0.844502329826355, - -0.706557035446167, - -0.5671218037605286, - -0.4264553487300873, - -0.2848412096500397, - -0.14258332550525665, - -4.4634870022264295e-8, - 0.14258332550525665, - 0.2848412096500397, - 0.4264553487300873, - 0.5671218037605286, - 0.706557035446167, - 0.844502329826355, - 0.9807277917861938, - -0.9817611575126648, - -0.8454124331474304, - -0.7073336839675903, - -0.5677555203437805, - -0.42693814635276794, - -0.2851667106151581, - -0.14274722337722778, - -4.468627068376918e-8, - 0.14274722337722778, - 0.2851667106151581, - 0.42693814635276794, - 0.5677555203437805, - 0.7073336839675903, - 0.8454124331474304, - 0.9817611575126648, - -0.9821069836616516, - -0.8457172513008118, - -0.7075936794281006, - -0.5679677724838257, - -0.4270997643470764, - -0.28527572751045227, - -0.14280210435390472, - -4.470348358154297e-8, - 0.14280210435390472, - 0.28527572751045227, - 0.4270997643470764, - 0.5679677724838257, - 0.7075936794281006, - 0.8457172513008118, - 0.9821069836616516, - -0.9817611575126648, - -0.8454124331474304, - -0.7073336839675903, - -0.5677555203437805, - -0.42693814635276794, - -0.2851667106151581, - -0.14274722337722778, - -4.468627068376918e-8, - 0.14274722337722778, - 0.2851667106151581, - 0.42693814635276794, - 0.5677555203437805, - 0.7073336839675903, - 0.8454124331474304, - 0.9817611575126648, - -0.9807277917861938, - -0.844502329826355, - -0.706557035446167, - -0.5671218037605286, - -0.4264553487300873, - -0.2848412096500397, - -0.14258332550525665, - -4.4634870022264295e-8, - 0.14258332550525665, - 0.2848412096500397, - 0.4264553487300873, - 0.5671218037605286, - 0.706557035446167, - 0.844502329826355, - 0.9807277917861938, - -0.9790197014808655, - -0.8429980278015137, - -0.7052738070487976, - -0.5660749077796936, - -0.42565786838531494, - -0.28430357575416565, - -0.1423126757144928, - -4.4549981481623036e-8, - 0.1423126757144928, - 0.28430357575416565, - 0.42565786838531494, - 0.5660749077796936, - 0.7052738070487976, - 0.8429980278015137, - 0.9790197014808655, - -0.9766573905944824, - -0.8409184813499451, - -0.7035001516342163, - -0.5646283030509949, - -0.424556165933609, - -0.2835609018802643, - -0.14193885028362274, - -4.443274193022262e-8, - 0.14193885028362274, - 0.2835609018802643, - 0.424556165933609, - 0.5646283030509949, - 0.7035001516342163, - 0.8409184813499451, - 0.9766573905944824, - -0.9736685156822205, - -0.838288426399231, - -0.7012580037117004, - -0.5628001093864441, - -0.4231642484664917, - -0.2826227843761444, - -0.14146669209003448, - -4.4284661271376535e-8, - 0.14146669209003448, - 0.2826227843761444, - 0.4231642484664917, - 0.5628001093864441, - 0.7012580037117004, - 0.838288426399231, - 0.9736685156822205, - -0.9700868725776672, - -0.8351383209228516, - -0.6985737085342407, - -0.5606122612953186, - -0.42149898409843445, - -0.28150075674057007, - -0.14090204238891602, - -4.410759046891144e-8, - 0.14090204238891602, - 0.28150075674057007, - 0.42149898409843445, - 0.5606122612953186, - 0.6985737085342407, - 0.8351383209228516, - 0.9700868725776672, - -0.9659512042999268, - -0.8315030336380005, - -0.6954775452613831, - -0.5580899119377136, - -0.4195798635482788, - -0.28020793199539185, - -0.1402515470981598, - -4.390360430761575e-8, - 0.1402515470981598, - 0.28020793199539185, - 0.4195798635482788, - 0.5580899119377136, - 0.6954775452613831, - 0.8315030336380005, - 0.9659512042999268 - ], - "yaxis": "y" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9623674750328064, - -0.9668964743614197, - -0.9708275198936462, - -0.9741144776344299, - -0.9767165184020996, - -0.9786003232002258, - -0.9797410368919373, - -0.9801229238510132, - -0.9797410368919373, - -0.9786003232002258, - -0.9767165184020996, - -0.9741144776344299, - -0.9708275198936462, - -0.9668964743614197, - -0.9623674750328064, - -0.8287683725357056, - -0.8327592015266418, - -0.8362253904342651, - -0.8391254544258118, - -0.8414224982261658, - -0.8430861234664917, - -0.8440936803817749, - -0.8444311022758484, - -0.8440936803817749, - -0.8430861234664917, - -0.8414224982261658, - -0.8391254544258118, - -0.8362253904342651, - -0.8327592015266418, - -0.8287683725357056, - -0.6934482455253601, - -0.6968544721603394, - -0.699815034866333, - -0.7022932171821594, - -0.704257071018219, - -0.7056798934936523, - -0.706541895866394, - -0.7068305611610413, - -0.706541895866394, - -0.7056798934936523, - -0.704257071018219, - -0.7022932171821594, - -0.699815034866333, - -0.6968544721603394, - -0.6934482455253601, - -0.5566368103027344, - -0.5594169497489929, - -0.5618345141410828, - -0.5638592839241028, - -0.565464437007904, - -0.5666277408599854, - -0.5673325657844543, - -0.5675687193870544, - -0.5673325657844543, - -0.5666277408599854, - -0.565464437007904, - -0.5638592839241028, - -0.5618345141410828, - -0.5594169497489929, - -0.5566368103027344, - -0.41859278082847595, - -0.4207112193107605, - -0.42255422472953796, - -0.42409831285476685, - -0.4253228008747101, - -0.4262104332447052, - -0.4267483949661255, - -0.42692863941192627, - -0.4267483949661255, - -0.4262104332447052, - -0.4253228008747101, - -0.42409831285476685, - -0.42255422472953796, - -0.4207112193107605, - -0.41859278082847595, - -0.2796000838279724, - -0.281028687953949, - -0.2822719216346741, - -0.2833138704299927, - -0.28414028882980347, - -0.28473955392837524, - -0.2851027548313141, - -0.28522440791130066, - -0.2851027548313141, - -0.28473955392837524, - -0.28414028882980347, - -0.2833138704299927, - -0.2822719216346741, - -0.281028687953949, - -0.2796000838279724, - -0.13996295630931854, - -0.14068223536014557, - -0.14130833745002747, - -0.1418331116437912, - -0.1422494351863861, - -0.14255134761333466, - -0.1427343189716339, - -0.1427956372499466, - -0.1427343189716339, - -0.14255134761333466, - -0.1422494351863861, - -0.1418331116437912, - -0.14130833745002747, - -0.14068223536014557, - -0.13996295630931854, - -4.381490725791082e-8, - -4.4040515234655686e-8, - -4.42369056941061e-8, - -4.4401524235127e-8, - -4.453213264810074e-8, - -4.4626840889350206e-8, - -4.468424918968594e-8, - -4.470348358154297e-8, - -4.468424918968594e-8, - -4.4626840889350206e-8, - -4.453213264810074e-8, - -4.4401524235127e-8, - -4.42369056941061e-8, - -4.4040515234655686e-8, - -4.381490725791082e-8, - 0.13996295630931854, - 0.14068223536014557, - 0.14130833745002747, - 0.1418331116437912, - 0.1422494351863861, - 0.14255134761333466, - 0.1427343189716339, - 0.1427956372499466, - 0.1427343189716339, - 0.14255134761333466, - 0.1422494351863861, - 0.1418331116437912, - 0.14130833745002747, - 0.14068223536014557, - 0.13996295630931854, - 0.2796000838279724, - 0.281028687953949, - 0.2822719216346741, - 0.2833138704299927, - 0.28414028882980347, - 0.28473955392837524, - 0.2851027548313141, - 0.28522440791130066, - 0.2851027548313141, - 0.28473955392837524, - 0.28414028882980347, - 0.2833138704299927, - 0.2822719216346741, - 0.281028687953949, - 0.2796000838279724, - 0.41859278082847595, - 0.4207112193107605, - 0.42255422472953796, - 0.42409831285476685, - 0.4253228008747101, - 0.4262104332447052, - 0.4267483949661255, - 0.42692863941192627, - 0.4267483949661255, - 0.4262104332447052, - 0.4253228008747101, - 0.42409831285476685, - 0.42255422472953796, - 0.4207112193107605, - 0.41859278082847595, - 0.5566368103027344, - 0.5594169497489929, - 0.5618345141410828, - 0.5638592839241028, - 0.565464437007904, - 0.5666277408599854, - 0.5673325657844543, - 0.5675687193870544, - 0.5673325657844543, - 0.5666277408599854, - 0.565464437007904, - 0.5638592839241028, - 0.5618345141410828, - 0.5594169497489929, - 0.5566368103027344, - 0.6934482455253601, - 0.6968544721603394, - 0.699815034866333, - 0.7022932171821594, - 0.704257071018219, - 0.7056798934936523, - 0.706541895866394, - 0.7068305611610413, - 0.706541895866394, - 0.7056798934936523, - 0.704257071018219, - 0.7022932171821594, - 0.699815034866333, - 0.6968544721603394, - 0.6934482455253601, - 0.8287683725357056, - 0.8327592015266418, - 0.8362253904342651, - 0.8391254544258118, - 0.8414224982261658, - 0.8430861234664917, - 0.8440936803817749, - 0.8444311022758484, - 0.8440936803817749, - 0.8430861234664917, - 0.8414224982261658, - 0.8391254544258118, - 0.8362253904342651, - 0.8327592015266418, - 0.8287683725357056, - 0.9623674750328064, - 0.9668964743614197, - 0.9708275198936462, - 0.9741144776344299, - 0.9767165184020996, - 0.9786003232002258, - 0.9797410368919373, - 0.9801229238510132, - 0.9797410368919373, - 0.9786003232002258, - 0.9767165184020996, - 0.9741144776344299, - 0.9708275198936462, - 0.9668964743614197, - 0.9623674750328064 - ], - "xaxis": "x", - "y": [ - -0.9623674750328064, - -0.8287683725357056, - -0.6934482455253601, - -0.5566368103027344, - -0.41859278082847595, - -0.2796000838279724, - -0.13996295630931854, - -4.381490725791082e-8, - 0.13996295630931854, - 0.2796000838279724, - 0.41859278082847595, - 0.5566368103027344, - 0.6934482455253601, - 0.8287683725357056, - 0.9623674750328064, - -0.9668964743614197, - -0.8327592015266418, - -0.6968544721603394, - -0.5594169497489929, - -0.4207112193107605, - -0.281028687953949, - -0.14068223536014557, - -4.4040515234655686e-8, - 0.14068223536014557, - 0.281028687953949, - 0.4207112193107605, - 0.5594169497489929, - 0.6968544721603394, - 0.8327592015266418, - 0.9668964743614197, - -0.9708275198936462, - -0.8362253904342651, - -0.699815034866333, - -0.5618345141410828, - -0.42255422472953796, - -0.2822719216346741, - -0.14130833745002747, - -4.42369056941061e-8, - 0.14130833745002747, - 0.2822719216346741, - 0.42255422472953796, - 0.5618345141410828, - 0.699815034866333, - 0.8362253904342651, - 0.9708275198936462, - -0.9741144776344299, - -0.8391254544258118, - -0.7022932171821594, - -0.5638592839241028, - -0.42409831285476685, - -0.2833138704299927, - -0.1418331116437912, - -4.4401524235127e-8, - 0.1418331116437912, - 0.2833138704299927, - 0.42409831285476685, - 0.5638592839241028, - 0.7022932171821594, - 0.8391254544258118, - 0.9741144776344299, - -0.9767165184020996, - -0.8414224982261658, - -0.704257071018219, - -0.565464437007904, - -0.4253228008747101, - -0.28414028882980347, - -0.1422494351863861, - -4.453213264810074e-8, - 0.1422494351863861, - 0.28414028882980347, - 0.4253228008747101, - 0.565464437007904, - 0.704257071018219, - 0.8414224982261658, - 0.9767165184020996, - -0.9786003232002258, - -0.8430861234664917, - -0.7056798934936523, - -0.5666277408599854, - -0.4262104332447052, - -0.28473955392837524, - -0.14255134761333466, - -4.4626840889350206e-8, - 0.14255134761333466, - 0.28473955392837524, - 0.4262104332447052, - 0.5666277408599854, - 0.7056798934936523, - 0.8430861234664917, - 0.9786003232002258, - -0.9797410368919373, - -0.8440936803817749, - -0.706541895866394, - -0.5673325657844543, - -0.4267483949661255, - -0.2851027548313141, - -0.1427343189716339, - -4.468424918968594e-8, - 0.1427343189716339, - 0.2851027548313141, - 0.4267483949661255, - 0.5673325657844543, - 0.706541895866394, - 0.8440936803817749, - 0.9797410368919373, - -0.9801229238510132, - -0.8444311022758484, - -0.7068305611610413, - -0.5675687193870544, - -0.42692863941192627, - -0.28522440791130066, - -0.1427956372499466, - -4.470348358154297e-8, - 0.1427956372499466, - 0.28522440791130066, - 0.42692863941192627, - 0.5675687193870544, - 0.7068305611610413, - 0.8444311022758484, - 0.9801229238510132, - -0.9797410368919373, - -0.8440936803817749, - -0.706541895866394, - -0.5673325657844543, - -0.4267483949661255, - -0.2851027548313141, - -0.1427343189716339, - -4.468424918968594e-8, - 0.1427343189716339, - 0.2851027548313141, - 0.4267483949661255, - 0.5673325657844543, - 0.706541895866394, - 0.8440936803817749, - 0.9797410368919373, - -0.9786003232002258, - -0.8430861234664917, - -0.7056798934936523, - -0.5666277408599854, - -0.4262104332447052, - -0.28473955392837524, - -0.14255134761333466, - -4.4626840889350206e-8, - 0.14255134761333466, - 0.28473955392837524, - 0.4262104332447052, - 0.5666277408599854, - 0.7056798934936523, - 0.8430861234664917, - 0.9786003232002258, - -0.9767165184020996, - -0.8414224982261658, - -0.704257071018219, - -0.565464437007904, - -0.4253228008747101, - -0.28414028882980347, - -0.1422494351863861, - -4.453213264810074e-8, - 0.1422494351863861, - 0.28414028882980347, - 0.4253228008747101, - 0.565464437007904, - 0.704257071018219, - 0.8414224982261658, - 0.9767165184020996, - -0.9741144776344299, - -0.8391254544258118, - -0.7022932171821594, - -0.5638592839241028, - -0.42409831285476685, - -0.2833138704299927, - -0.1418331116437912, - -4.4401524235127e-8, - 0.1418331116437912, - 0.2833138704299927, - 0.42409831285476685, - 0.5638592839241028, - 0.7022932171821594, - 0.8391254544258118, - 0.9741144776344299, - -0.9708275198936462, - -0.8362253904342651, - -0.699815034866333, - -0.5618345141410828, - -0.42255422472953796, - -0.2822719216346741, - -0.14130833745002747, - -4.42369056941061e-8, - 0.14130833745002747, - 0.2822719216346741, - 0.42255422472953796, - 0.5618345141410828, - 0.699815034866333, - 0.8362253904342651, - 0.9708275198936462, - -0.9668964743614197, - -0.8327592015266418, - -0.6968544721603394, - -0.5594169497489929, - -0.4207112193107605, - -0.281028687953949, - -0.14068223536014557, - -4.4040515234655686e-8, - 0.14068223536014557, - 0.281028687953949, - 0.4207112193107605, - 0.5594169497489929, - 0.6968544721603394, - 0.8327592015266418, - 0.9668964743614197, - -0.9623674750328064, - -0.8287683725357056, - -0.6934482455253601, - -0.5566368103027344, - -0.41859278082847595, - -0.2796000838279724, - -0.13996295630931854, - -4.381490725791082e-8, - 0.13996295630931854, - 0.2796000838279724, - 0.41859278082847595, - 0.5566368103027344, - 0.6934482455253601, - 0.8287683725357056, - 0.9623674750328064 - ], - "yaxis": "y" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.958859384059906, - -0.9637661576271057, - -0.9680342674255371, - -0.9716097116470337, - -0.9744447469711304, - -0.9764996767044067, - -0.977744996547699, - -0.9781621694564819, - -0.977744996547699, - -0.9764996767044067, - -0.9744447469711304, - -0.9716097116470337, - -0.9680342674255371, - -0.9637661576271057, - -0.958859384059906, - -0.8260852694511414, - -0.8304190039634705, - -0.8341917991638184, - -0.8373546600341797, - -0.8398640155792236, - -0.8416839241981506, - -0.842786967754364, - -0.843156635761261, - -0.842786967754364, - -0.8416839241981506, - -0.8398640155792236, - -0.8373546600341797, - -0.8341917991638184, - -0.8304190039634705, - -0.8260852694511414, - -0.6914530396461487, - -0.6951598525047302, - -0.6983892917633057, - -0.7010983824729919, - -0.703248918056488, - -0.7048092484474182, - -0.7057552933692932, - -0.7060723304748535, - -0.7057552933692932, - -0.7048092484474182, - -0.703248918056488, - -0.7010983824729919, - -0.6983892917633057, - -0.6951598525047302, - -0.6914530396461487, - -0.5552055239677429, - -0.5582364201545715, - -0.5608786344528198, - -0.5630964040756226, - -0.5648577809333801, - -0.5661361813545227, - -0.5669115781784058, - -0.5671713948249817, - -0.5669115781784058, - -0.5661361813545227, - -0.5648577809333801, - -0.5630964040756226, - -0.5608786344528198, - -0.5582364201545715, - -0.5552055239677429, - -0.41761913895606995, - -0.41993197798728943, - -0.4219493269920349, - -0.4236433506011963, - -0.4249893128871918, - -0.42596644163131714, - -0.426559180021286, - -0.4267578721046448, - -0.426559180021286, - -0.42596644163131714, - -0.4249893128871918, - -0.4236433506011963, - -0.4219493269920349, - -0.41993197798728943, - -0.41761913895606995, - -0.2789998948574066, - -0.28056129813194275, - -0.28192365169525146, - -0.28306809067726135, - -0.2839776277542114, - -0.28463810682296753, - -0.2850387990474701, - -0.28517311811447144, - -0.2850387990474701, - -0.28463810682296753, - -0.2839776277542114, - -0.28306809067726135, - -0.28192365169525146, - -0.28056129813194275, - -0.2789998948574066, - -0.13967782258987427, - -0.14046445488929749, - -0.14115101099014282, - -0.14172786474227905, - -0.14218635857105255, - -0.14251936972141266, - -0.14272144436836243, - -0.14278917014598846, - -0.14272144436836243, - -0.14251936972141266, - -0.14218635857105255, - -0.14172786474227905, - -0.14115101099014282, - -0.14046445488929749, - -0.13967782258987427, - -4.372725470602745e-8, - -4.397404396172533e-8, - -4.418944854478468e-8, - -4.437044509586485e-8, - -4.451431578900156e-8, - -4.4618815309149795e-8, - -4.4682224142889027e-8, - -4.470348358154297e-8, - -4.4682224142889027e-8, - -4.4618815309149795e-8, - -4.451431578900156e-8, - -4.437044509586485e-8, - -4.418944854478468e-8, - -4.397404396172533e-8, - -4.372725470602745e-8, - 0.13967782258987427, - 0.14046445488929749, - 0.14115101099014282, - 0.14172786474227905, - 0.14218635857105255, - 0.14251936972141266, - 0.14272144436836243, - 0.14278917014598846, - 0.14272144436836243, - 0.14251936972141266, - 0.14218635857105255, - 0.14172786474227905, - 0.14115101099014282, - 0.14046445488929749, - 0.13967782258987427, - 0.2789998948574066, - 0.28056129813194275, - 0.28192365169525146, - 0.28306809067726135, - 0.2839776277542114, - 0.28463810682296753, - 0.2850387990474701, - 0.28517311811447144, - 0.2850387990474701, - 0.28463810682296753, - 0.2839776277542114, - 0.28306809067726135, - 0.28192365169525146, - 0.28056129813194275, - 0.2789998948574066, - 0.41761913895606995, - 0.41993197798728943, - 0.4219493269920349, - 0.4236433506011963, - 0.4249893128871918, - 0.42596644163131714, - 0.426559180021286, - 0.4267578721046448, - 0.426559180021286, - 0.42596644163131714, - 0.4249893128871918, - 0.4236433506011963, - 0.4219493269920349, - 0.41993197798728943, - 0.41761913895606995, - 0.5552055239677429, - 0.5582364201545715, - 0.5608786344528198, - 0.5630964040756226, - 0.5648577809333801, - 0.5661361813545227, - 0.5669115781784058, - 0.5671713948249817, - 0.5669115781784058, - 0.5661361813545227, - 0.5648577809333801, - 0.5630964040756226, - 0.5608786344528198, - 0.5582364201545715, - 0.5552055239677429, - 0.6914530396461487, - 0.6951598525047302, - 0.6983892917633057, - 0.7010983824729919, - 0.703248918056488, - 0.7048092484474182, - 0.7057552933692932, - 0.7060723304748535, - 0.7057552933692932, - 0.7048092484474182, - 0.703248918056488, - 0.7010983824729919, - 0.6983892917633057, - 0.6951598525047302, - 0.6914530396461487, - 0.8260852694511414, - 0.8304190039634705, - 0.8341917991638184, - 0.8373546600341797, - 0.8398640155792236, - 0.8416839241981506, - 0.842786967754364, - 0.843156635761261, - 0.842786967754364, - 0.8416839241981506, - 0.8398640155792236, - 0.8373546600341797, - 0.8341917991638184, - 0.8304190039634705, - 0.8260852694511414, - 0.958859384059906, - 0.9637661576271057, - 0.9680342674255371, - 0.9716097116470337, - 0.9744447469711304, - 0.9764996767044067, - 0.977744996547699, - 0.9781621694564819, - 0.977744996547699, - 0.9764996767044067, - 0.9744447469711304, - 0.9716097116470337, - 0.9680342674255371, - 0.9637661576271057, - 0.958859384059906 - ], - "xaxis": "x", - "y": [ - -0.958859384059906, - -0.8260852694511414, - -0.6914530396461487, - -0.5552055239677429, - -0.41761913895606995, - -0.2789998948574066, - -0.13967782258987427, - -4.372725470602745e-8, - 0.13967782258987427, - 0.2789998948574066, - 0.41761913895606995, - 0.5552055239677429, - 0.6914530396461487, - 0.8260852694511414, - 0.958859384059906, - -0.9637661576271057, - -0.8304190039634705, - -0.6951598525047302, - -0.5582364201545715, - -0.41993197798728943, - -0.28056129813194275, - -0.14046445488929749, - -4.397404396172533e-8, - 0.14046445488929749, - 0.28056129813194275, - 0.41993197798728943, - 0.5582364201545715, - 0.6951598525047302, - 0.8304190039634705, - 0.9637661576271057, - -0.9680342674255371, - -0.8341917991638184, - -0.6983892917633057, - -0.5608786344528198, - -0.4219493269920349, - -0.28192365169525146, - -0.14115101099014282, - -4.418944854478468e-8, - 0.14115101099014282, - 0.28192365169525146, - 0.4219493269920349, - 0.5608786344528198, - 0.6983892917633057, - 0.8341917991638184, - 0.9680342674255371, - -0.9716097116470337, - -0.8373546600341797, - -0.7010983824729919, - -0.5630964040756226, - -0.4236433506011963, - -0.28306809067726135, - -0.14172786474227905, - -4.437044509586485e-8, - 0.14172786474227905, - 0.28306809067726135, - 0.4236433506011963, - 0.5630964040756226, - 0.7010983824729919, - 0.8373546600341797, - 0.9716097116470337, - -0.9744447469711304, - -0.8398640155792236, - -0.703248918056488, - -0.5648577809333801, - -0.4249893128871918, - -0.2839776277542114, - -0.14218635857105255, - -4.451431578900156e-8, - 0.14218635857105255, - 0.2839776277542114, - 0.4249893128871918, - 0.5648577809333801, - 0.703248918056488, - 0.8398640155792236, - 0.9744447469711304, - -0.9764996767044067, - -0.8416839241981506, - -0.7048092484474182, - -0.5661361813545227, - -0.42596644163131714, - -0.28463810682296753, - -0.14251936972141266, - -4.4618815309149795e-8, - 0.14251936972141266, - 0.28463810682296753, - 0.42596644163131714, - 0.5661361813545227, - 0.7048092484474182, - 0.8416839241981506, - 0.9764996767044067, - -0.977744996547699, - -0.842786967754364, - -0.7057552933692932, - -0.5669115781784058, - -0.426559180021286, - -0.2850387990474701, - -0.14272144436836243, - -4.4682224142889027e-8, - 0.14272144436836243, - 0.2850387990474701, - 0.426559180021286, - 0.5669115781784058, - 0.7057552933692932, - 0.842786967754364, - 0.977744996547699, - -0.9781621694564819, - -0.843156635761261, - -0.7060723304748535, - -0.5671713948249817, - -0.4267578721046448, - -0.28517311811447144, - -0.14278917014598846, - -4.470348358154297e-8, - 0.14278917014598846, - 0.28517311811447144, - 0.4267578721046448, - 0.5671713948249817, - 0.7060723304748535, - 0.843156635761261, - 0.9781621694564819, - -0.977744996547699, - -0.842786967754364, - -0.7057552933692932, - -0.5669115781784058, - -0.426559180021286, - -0.2850387990474701, - -0.14272144436836243, - -4.4682224142889027e-8, - 0.14272144436836243, - 0.2850387990474701, - 0.426559180021286, - 0.5669115781784058, - 0.7057552933692932, - 0.842786967754364, - 0.977744996547699, - -0.9764996767044067, - -0.8416839241981506, - -0.7048092484474182, - -0.5661361813545227, - -0.42596644163131714, - -0.28463810682296753, - -0.14251936972141266, - -4.4618815309149795e-8, - 0.14251936972141266, - 0.28463810682296753, - 0.42596644163131714, - 0.5661361813545227, - 0.7048092484474182, - 0.8416839241981506, - 0.9764996767044067, - -0.9744447469711304, - -0.8398640155792236, - -0.703248918056488, - -0.5648577809333801, - -0.4249893128871918, - -0.2839776277542114, - -0.14218635857105255, - -4.451431578900156e-8, - 0.14218635857105255, - 0.2839776277542114, - 0.4249893128871918, - 0.5648577809333801, - 0.703248918056488, - 0.8398640155792236, - 0.9744447469711304, - -0.9716097116470337, - -0.8373546600341797, - -0.7010983824729919, - -0.5630964040756226, - -0.4236433506011963, - -0.28306809067726135, - -0.14172786474227905, - -4.437044509586485e-8, - 0.14172786474227905, - 0.28306809067726135, - 0.4236433506011963, - 0.5630964040756226, - 0.7010983824729919, - 0.8373546600341797, - 0.9716097116470337, - -0.9680342674255371, - -0.8341917991638184, - -0.6983892917633057, - -0.5608786344528198, - -0.4219493269920349, - -0.28192365169525146, - -0.14115101099014282, - -4.418944854478468e-8, - 0.14115101099014282, - 0.28192365169525146, - 0.4219493269920349, - 0.5608786344528198, - 0.6983892917633057, - 0.8341917991638184, - 0.9680342674255371, - -0.9637661576271057, - -0.8304190039634705, - -0.6951598525047302, - -0.5582364201545715, - -0.41993197798728943, - -0.28056129813194275, - -0.14046445488929749, - -4.397404396172533e-8, - 0.14046445488929749, - 0.28056129813194275, - 0.41993197798728943, - 0.5582364201545715, - 0.6951598525047302, - 0.8304190039634705, - 0.9637661576271057, - -0.958859384059906, - -0.8260852694511414, - -0.6914530396461487, - -0.5552055239677429, - -0.41761913895606995, - -0.2789998948574066, - -0.13967782258987427, - -4.372725470602745e-8, - 0.13967782258987427, - 0.2789998948574066, - 0.41761913895606995, - 0.5552055239677429, - 0.6914530396461487, - 0.8260852694511414, - 0.958859384059906 - ], - "yaxis": "y" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9554237723350525, - -0.9606937170028687, - -0.9652871489524841, - -0.9691421985626221, - -0.9722036123275757, - -0.9744253158569336, - -0.9757727384567261, - -0.9762242436408997, - -0.9757727384567261, - -0.9744253158569336, - -0.9722036123275757, - -0.9691421985626221, - -0.9652871489524841, - -0.9606937170028687, - -0.9554237723350525, - -0.8234516978263855, - -0.8281166553497314, - -0.8321868181228638, - -0.8356055617332458, - -0.8383224606513977, - -0.8402951955795288, - -0.8414921164512634, - -0.8418933153152466, - -0.8414921164512634, - -0.8402951955795288, - -0.8383224606513977, - -0.8356055617332458, - -0.8321868181228638, - -0.8281166553497314, - -0.8234516978263855, - -0.6894908547401428, - -0.6934890151023865, - -0.6969805359840393, - -0.6999154090881348, - -0.7022493481636047, - -0.7039448618888855, - -0.7049738168716431, - -0.7053188681602478, - -0.7049738168716431, - -0.7039448618888855, - -0.7022493481636047, - -0.6999154090881348, - -0.6969805359840393, - -0.6934890151023865, - -0.6894908547401428, - -0.5537955164909363, - -0.5570703148841858, - -0.559932291507721, - -0.5623396635055542, - -0.5642550587654114, - -0.5656471252441406, - -0.5664922595024109, - -0.5667756795883179, - -0.5664922595024109, - -0.5656471252441406, - -0.5642550587654114, - -0.5623396635055542, - -0.559932291507721, - -0.5570703148841858, - -0.5537955164909363, - -0.4166586399078369, - -0.41916120052337646, - -0.42134955525398254, - -0.42319127917289734, - -0.42465731501579285, - -0.42572319507598877, - -0.4263704717159271, - -0.4265875816345215, - -0.4263704717159271, - -0.42572319507598877, - -0.42465731501579285, - -0.42319127917289734, - -0.42134955525398254, - -0.41916120052337646, - -0.4166586399078369, - -0.2784072160720825, - -0.2800983786582947, - -0.2815779149532318, - -0.2828235626220703, - -0.2838154733181, - -0.28453686833381653, - -0.28497496247291565, - -0.2851219177246094, - -0.28497496247291565, - -0.28453686833381653, - -0.2838154733181, - -0.2828235626220703, - -0.2815779149532318, - -0.2800983786582947, - -0.2784072160720825, - -0.139396071434021, - -0.140248641371727, - -0.14099472761154175, - -0.14162303507328033, - -0.14212346076965332, - -0.14248746633529663, - -0.14270855486392975, - -0.14278271794319153, - -0.14270855486392975, - -0.14248746633529663, - -0.14212346076965332, - -0.14162303507328033, - -0.14099472761154175, - -0.140248641371727, - -0.139396071434021, - -4.364062533568358e-8, - -4.3908158886551973e-8, - -4.414229337612596e-8, - -4.4339486748867785e-8, - -4.4496552220607555e-8, - -4.461080038709042e-8, - -4.468020620151947e-8, - -4.470348358154297e-8, - -4.468020620151947e-8, - -4.461080038709042e-8, - -4.4496552220607555e-8, - -4.4339486748867785e-8, - -4.414229337612596e-8, - -4.3908158886551973e-8, - -4.364062533568358e-8, - 0.139396071434021, - 0.140248641371727, - 0.14099472761154175, - 0.14162303507328033, - 0.14212346076965332, - 0.14248746633529663, - 0.14270855486392975, - 0.14278271794319153, - 0.14270855486392975, - 0.14248746633529663, - 0.14212346076965332, - 0.14162303507328033, - 0.14099472761154175, - 0.140248641371727, - 0.139396071434021, - 0.2784072160720825, - 0.2800983786582947, - 0.2815779149532318, - 0.2828235626220703, - 0.2838154733181, - 0.28453686833381653, - 0.28497496247291565, - 0.2851219177246094, - 0.28497496247291565, - 0.28453686833381653, - 0.2838154733181, - 0.2828235626220703, - 0.2815779149532318, - 0.2800983786582947, - 0.2784072160720825, - 0.4166586399078369, - 0.41916120052337646, - 0.42134955525398254, - 0.42319127917289734, - 0.42465731501579285, - 0.42572319507598877, - 0.4263704717159271, - 0.4265875816345215, - 0.4263704717159271, - 0.42572319507598877, - 0.42465731501579285, - 0.42319127917289734, - 0.42134955525398254, - 0.41916120052337646, - 0.4166586399078369, - 0.5537955164909363, - 0.5570703148841858, - 0.559932291507721, - 0.5623396635055542, - 0.5642550587654114, - 0.5656471252441406, - 0.5664922595024109, - 0.5667756795883179, - 0.5664922595024109, - 0.5656471252441406, - 0.5642550587654114, - 0.5623396635055542, - 0.559932291507721, - 0.5570703148841858, - 0.5537955164909363, - 0.6894908547401428, - 0.6934890151023865, - 0.6969805359840393, - 0.6999154090881348, - 0.7022493481636047, - 0.7039448618888855, - 0.7049738168716431, - 0.7053188681602478, - 0.7049738168716431, - 0.7039448618888855, - 0.7022493481636047, - 0.6999154090881348, - 0.6969805359840393, - 0.6934890151023865, - 0.6894908547401428, - 0.8234516978263855, - 0.8281166553497314, - 0.8321868181228638, - 0.8356055617332458, - 0.8383224606513977, - 0.8402951955795288, - 0.8414921164512634, - 0.8418933153152466, - 0.8414921164512634, - 0.8402951955795288, - 0.8383224606513977, - 0.8356055617332458, - 0.8321868181228638, - 0.8281166553497314, - 0.8234516978263855, - 0.9554237723350525, - 0.9606937170028687, - 0.9652871489524841, - 0.9691421985626221, - 0.9722036123275757, - 0.9744253158569336, - 0.9757727384567261, - 0.9762242436408997, - 0.9757727384567261, - 0.9744253158569336, - 0.9722036123275757, - 0.9691421985626221, - 0.9652871489524841, - 0.9606937170028687, - 0.9554237723350525 - ], - "xaxis": "x", - "y": [ - -0.9554237723350525, - -0.8234516978263855, - -0.6894908547401428, - -0.5537955164909363, - -0.4166586399078369, - -0.2784072160720825, - -0.139396071434021, - -4.364062533568358e-8, - 0.139396071434021, - 0.2784072160720825, - 0.4166586399078369, - 0.5537955164909363, - 0.6894908547401428, - 0.8234516978263855, - 0.9554237723350525, - -0.9606937170028687, - -0.8281166553497314, - -0.6934890151023865, - -0.5570703148841858, - -0.41916120052337646, - -0.2800983786582947, - -0.140248641371727, - -4.3908158886551973e-8, - 0.140248641371727, - 0.2800983786582947, - 0.41916120052337646, - 0.5570703148841858, - 0.6934890151023865, - 0.8281166553497314, - 0.9606937170028687, - -0.9652871489524841, - -0.8321868181228638, - -0.6969805359840393, - -0.559932291507721, - -0.42134955525398254, - -0.2815779149532318, - -0.14099472761154175, - -4.414229337612596e-8, - 0.14099472761154175, - 0.2815779149532318, - 0.42134955525398254, - 0.559932291507721, - 0.6969805359840393, - 0.8321868181228638, - 0.9652871489524841, - -0.9691421985626221, - -0.8356055617332458, - -0.6999154090881348, - -0.5623396635055542, - -0.42319127917289734, - -0.2828235626220703, - -0.14162303507328033, - -4.4339486748867785e-8, - 0.14162303507328033, - 0.2828235626220703, - 0.42319127917289734, - 0.5623396635055542, - 0.6999154090881348, - 0.8356055617332458, - 0.9691421985626221, - -0.9722036123275757, - -0.8383224606513977, - -0.7022493481636047, - -0.5642550587654114, - -0.42465731501579285, - -0.2838154733181, - -0.14212346076965332, - -4.4496552220607555e-8, - 0.14212346076965332, - 0.2838154733181, - 0.42465731501579285, - 0.5642550587654114, - 0.7022493481636047, - 0.8383224606513977, - 0.9722036123275757, - -0.9744253158569336, - -0.8402951955795288, - -0.7039448618888855, - -0.5656471252441406, - -0.42572319507598877, - -0.28453686833381653, - -0.14248746633529663, - -4.461080038709042e-8, - 0.14248746633529663, - 0.28453686833381653, - 0.42572319507598877, - 0.5656471252441406, - 0.7039448618888855, - 0.8402951955795288, - 0.9744253158569336, - -0.9757727384567261, - -0.8414921164512634, - -0.7049738168716431, - -0.5664922595024109, - -0.4263704717159271, - -0.28497496247291565, - -0.14270855486392975, - -4.468020620151947e-8, - 0.14270855486392975, - 0.28497496247291565, - 0.4263704717159271, - 0.5664922595024109, - 0.7049738168716431, - 0.8414921164512634, - 0.9757727384567261, - -0.9762242436408997, - -0.8418933153152466, - -0.7053188681602478, - -0.5667756795883179, - -0.4265875816345215, - -0.2851219177246094, - -0.14278271794319153, - -4.470348358154297e-8, - 0.14278271794319153, - 0.2851219177246094, - 0.4265875816345215, - 0.5667756795883179, - 0.7053188681602478, - 0.8418933153152466, - 0.9762242436408997, - -0.9757727384567261, - -0.8414921164512634, - -0.7049738168716431, - -0.5664922595024109, - -0.4263704717159271, - -0.28497496247291565, - -0.14270855486392975, - -4.468020620151947e-8, - 0.14270855486392975, - 0.28497496247291565, - 0.4263704717159271, - 0.5664922595024109, - 0.7049738168716431, - 0.8414921164512634, - 0.9757727384567261, - -0.9744253158569336, - -0.8402951955795288, - -0.7039448618888855, - -0.5656471252441406, - -0.42572319507598877, - -0.28453686833381653, - -0.14248746633529663, - -4.461080038709042e-8, - 0.14248746633529663, - 0.28453686833381653, - 0.42572319507598877, - 0.5656471252441406, - 0.7039448618888855, - 0.8402951955795288, - 0.9744253158569336, - -0.9722036123275757, - -0.8383224606513977, - -0.7022493481636047, - -0.5642550587654114, - -0.42465731501579285, - -0.2838154733181, - -0.14212346076965332, - -4.4496552220607555e-8, - 0.14212346076965332, - 0.2838154733181, - 0.42465731501579285, - 0.5642550587654114, - 0.7022493481636047, - 0.8383224606513977, - 0.9722036123275757, - -0.9691421985626221, - -0.8356055617332458, - -0.6999154090881348, - -0.5623396635055542, - -0.42319127917289734, - -0.2828235626220703, - -0.14162303507328033, - -4.4339486748867785e-8, - 0.14162303507328033, - 0.2828235626220703, - 0.42319127917289734, - 0.5623396635055542, - 0.6999154090881348, - 0.8356055617332458, - 0.9691421985626221, - -0.9652871489524841, - -0.8321868181228638, - -0.6969805359840393, - -0.559932291507721, - -0.42134955525398254, - -0.2815779149532318, - -0.14099472761154175, - -4.414229337612596e-8, - 0.14099472761154175, - 0.2815779149532318, - 0.42134955525398254, - 0.559932291507721, - 0.6969805359840393, - 0.8321868181228638, - 0.9652871489524841, - -0.9606937170028687, - -0.8281166553497314, - -0.6934890151023865, - -0.5570703148841858, - -0.41916120052337646, - -0.2800983786582947, - -0.140248641371727, - -4.3908158886551973e-8, - 0.140248641371727, - 0.2800983786582947, - 0.41916120052337646, - 0.5570703148841858, - 0.6934890151023865, - 0.8281166553497314, - 0.9606937170028687, - -0.9554237723350525, - -0.8234516978263855, - -0.6894908547401428, - -0.5537955164909363, - -0.4166586399078369, - -0.2784072160720825, - -0.139396071434021, - -4.364062533568358e-8, - 0.139396071434021, - 0.2784072160720825, - 0.4166586399078369, - 0.5537955164909363, - 0.6894908547401428, - 0.8234516978263855, - 0.9554237723350525 - ], - "yaxis": "y" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9520578384399414, - -0.957676887512207, - -0.9625846147537231, - -0.9667106866836548, - -0.9699922204017639, - -0.9723763465881348, - -0.9738234877586365, - -0.9743086099624634, - -0.9738234877586365, - -0.9723763465881348, - -0.9699922204017639, - -0.9667106866836548, - -0.9625846147537231, - -0.957676887512207, - -0.9520578384399414, - -0.8208659291267395, - -0.8258509039878845, - -0.8302096128463745, - -0.833877682685852, - -0.8367973566055298, - -0.838919997215271, - -0.840208888053894, - -0.8406411409378052, - -0.840208888053894, - -0.838919997215271, - -0.8367973566055298, - -0.833877682685852, - -0.8302096128463745, - -0.8258509039878845, - -0.8208659291267395, - -0.6875604391098022, - -0.6918413639068604, - -0.695588231086731, - -0.6987441182136536, - -0.7012580037117004, - -0.7030866742134094, - -0.7041975259780884, - -0.7045701146125793, - -0.7041975259780884, - -0.7030866742134094, - -0.7012580037117004, - -0.6987441182136536, - -0.695588231086731, - -0.6918413639068604, - -0.6875604391098022, - -0.5524060726165771, - -0.5559183955192566, - -0.558995246887207, - -0.5615887641906738, - -0.5636560320854187, - -0.5651606321334839, - -0.5660749077796936, - -0.5663816332817078, - -0.5660749077796936, - -0.5651606321334839, - -0.5636560320854187, - -0.5615887641906738, - -0.558995246887207, - -0.5559183955192566, - -0.5524060726165771, - -0.4157109260559082, - -0.4183986485004425, - -0.4207547605037689, - -0.4227420389652252, - -0.4243268668651581, - -0.42548084259033203, - -0.42618224024772644, - -0.42641761898994446, - -0.42618224024772644, - -0.42548084259033203, - -0.4243268668651581, - -0.4227420389652252, - -0.4207547605037689, - -0.4183986485004425, - -0.4157109260559082, - -0.277821809053421, - -0.27963998913764954, - -0.28123465180397034, - -0.28258031606674194, - -0.2836539149284363, - -0.28443583846092224, - -0.28491121530532837, - -0.2850707769393921, - -0.28491121530532837, - -0.28443583846092224, - -0.2836539149284363, - -0.28258031606674194, - -0.28123465180397034, - -0.27963998913764954, - -0.277821809053421, - -0.13911759853363037, - -0.1400347799062729, - -0.14083945751190186, - -0.141518697142601, - -0.14206072688102722, - -0.1424555778503418, - -0.14269569516181946, - -0.1427762657403946, - -0.14269569516181946, - -0.1424555778503418, - -0.14206072688102722, - -0.141518697142601, - -0.14083945751190186, - -0.1400347799062729, - -0.13911759853363037, - -4.3554987172456094e-8, - -4.3842849350994584e-8, - -4.4095433082702584e-8, - -4.430865985227683e-8, - -4.447882417935034e-8, - -4.460279967588576e-8, - -4.467818470743623e-8, - -4.470348358154297e-8, - -4.467818470743623e-8, - -4.460279967588576e-8, - -4.447882417935034e-8, - -4.430865985227683e-8, - -4.4095433082702584e-8, - -4.3842849350994584e-8, - -4.3554987172456094e-8, - 0.13911759853363037, - 0.1400347799062729, - 0.14083945751190186, - 0.141518697142601, - 0.14206072688102722, - 0.1424555778503418, - 0.14269569516181946, - 0.1427762657403946, - 0.14269569516181946, - 0.1424555778503418, - 0.14206072688102722, - 0.141518697142601, - 0.14083945751190186, - 0.1400347799062729, - 0.13911759853363037, - 0.277821809053421, - 0.27963998913764954, - 0.28123465180397034, - 0.28258031606674194, - 0.2836539149284363, - 0.28443583846092224, - 0.28491121530532837, - 0.2850707769393921, - 0.28491121530532837, - 0.28443583846092224, - 0.2836539149284363, - 0.28258031606674194, - 0.28123465180397034, - 0.27963998913764954, - 0.277821809053421, - 0.4157109260559082, - 0.4183986485004425, - 0.4207547605037689, - 0.4227420389652252, - 0.4243268668651581, - 0.42548084259033203, - 0.42618224024772644, - 0.42641761898994446, - 0.42618224024772644, - 0.42548084259033203, - 0.4243268668651581, - 0.4227420389652252, - 0.4207547605037689, - 0.4183986485004425, - 0.4157109260559082, - 0.5524060726165771, - 0.5559183955192566, - 0.558995246887207, - 0.5615887641906738, - 0.5636560320854187, - 0.5651606321334839, - 0.5660749077796936, - 0.5663816332817078, - 0.5660749077796936, - 0.5651606321334839, - 0.5636560320854187, - 0.5615887641906738, - 0.558995246887207, - 0.5559183955192566, - 0.5524060726165771, - 0.6875604391098022, - 0.6918413639068604, - 0.695588231086731, - 0.6987441182136536, - 0.7012580037117004, - 0.7030866742134094, - 0.7041975259780884, - 0.7045701146125793, - 0.7041975259780884, - 0.7030866742134094, - 0.7012580037117004, - 0.6987441182136536, - 0.695588231086731, - 0.6918413639068604, - 0.6875604391098022, - 0.8208659291267395, - 0.8258509039878845, - 0.8302096128463745, - 0.833877682685852, - 0.8367973566055298, - 0.838919997215271, - 0.840208888053894, - 0.8406411409378052, - 0.840208888053894, - 0.838919997215271, - 0.8367973566055298, - 0.833877682685852, - 0.8302096128463745, - 0.8258509039878845, - 0.8208659291267395, - 0.9520578384399414, - 0.957676887512207, - 0.9625846147537231, - 0.9667106866836548, - 0.9699922204017639, - 0.9723763465881348, - 0.9738234877586365, - 0.9743086099624634, - 0.9738234877586365, - 0.9723763465881348, - 0.9699922204017639, - 0.9667106866836548, - 0.9625846147537231, - 0.957676887512207, - 0.9520578384399414 - ], - "xaxis": "x", - "y": [ - -0.9520578384399414, - -0.8208659291267395, - -0.6875604391098022, - -0.5524060726165771, - -0.4157109260559082, - -0.277821809053421, - -0.13911759853363037, - -4.3554987172456094e-8, - 0.13911759853363037, - 0.277821809053421, - 0.4157109260559082, - 0.5524060726165771, - 0.6875604391098022, - 0.8208659291267395, - 0.9520578384399414, - -0.957676887512207, - -0.8258509039878845, - -0.6918413639068604, - -0.5559183955192566, - -0.4183986485004425, - -0.27963998913764954, - -0.1400347799062729, - -4.3842849350994584e-8, - 0.1400347799062729, - 0.27963998913764954, - 0.4183986485004425, - 0.5559183955192566, - 0.6918413639068604, - 0.8258509039878845, - 0.957676887512207, - -0.9625846147537231, - -0.8302096128463745, - -0.695588231086731, - -0.558995246887207, - -0.4207547605037689, - -0.28123465180397034, - -0.14083945751190186, - -4.4095433082702584e-8, - 0.14083945751190186, - 0.28123465180397034, - 0.4207547605037689, - 0.558995246887207, - 0.695588231086731, - 0.8302096128463745, - 0.9625846147537231, - -0.9667106866836548, - -0.833877682685852, - -0.6987441182136536, - -0.5615887641906738, - -0.4227420389652252, - -0.28258031606674194, - -0.141518697142601, - -4.430865985227683e-8, - 0.141518697142601, - 0.28258031606674194, - 0.4227420389652252, - 0.5615887641906738, - 0.6987441182136536, - 0.833877682685852, - 0.9667106866836548, - -0.9699922204017639, - -0.8367973566055298, - -0.7012580037117004, - -0.5636560320854187, - -0.4243268668651581, - -0.2836539149284363, - -0.14206072688102722, - -4.447882417935034e-8, - 0.14206072688102722, - 0.2836539149284363, - 0.4243268668651581, - 0.5636560320854187, - 0.7012580037117004, - 0.8367973566055298, - 0.9699922204017639, - -0.9723763465881348, - -0.838919997215271, - -0.7030866742134094, - -0.5651606321334839, - -0.42548084259033203, - -0.28443583846092224, - -0.1424555778503418, - -4.460279967588576e-8, - 0.1424555778503418, - 0.28443583846092224, - 0.42548084259033203, - 0.5651606321334839, - 0.7030866742134094, - 0.838919997215271, - 0.9723763465881348, - -0.9738234877586365, - -0.840208888053894, - -0.7041975259780884, - -0.5660749077796936, - -0.42618224024772644, - -0.28491121530532837, - -0.14269569516181946, - -4.467818470743623e-8, - 0.14269569516181946, - 0.28491121530532837, - 0.42618224024772644, - 0.5660749077796936, - 0.7041975259780884, - 0.840208888053894, - 0.9738234877586365, - -0.9743086099624634, - -0.8406411409378052, - -0.7045701146125793, - -0.5663816332817078, - -0.42641761898994446, - -0.2850707769393921, - -0.1427762657403946, - -4.470348358154297e-8, - 0.1427762657403946, - 0.2850707769393921, - 0.42641761898994446, - 0.5663816332817078, - 0.7045701146125793, - 0.8406411409378052, - 0.9743086099624634, - -0.9738234877586365, - -0.840208888053894, - -0.7041975259780884, - -0.5660749077796936, - -0.42618224024772644, - -0.28491121530532837, - -0.14269569516181946, - -4.467818470743623e-8, - 0.14269569516181946, - 0.28491121530532837, - 0.42618224024772644, - 0.5660749077796936, - 0.7041975259780884, - 0.840208888053894, - 0.9738234877586365, - -0.9723763465881348, - -0.838919997215271, - -0.7030866742134094, - -0.5651606321334839, - -0.42548084259033203, - -0.28443583846092224, - -0.1424555778503418, - -4.460279967588576e-8, - 0.1424555778503418, - 0.28443583846092224, - 0.42548084259033203, - 0.5651606321334839, - 0.7030866742134094, - 0.838919997215271, - 0.9723763465881348, - -0.9699922204017639, - -0.8367973566055298, - -0.7012580037117004, - -0.5636560320854187, - -0.4243268668651581, - -0.2836539149284363, - -0.14206072688102722, - -4.447882417935034e-8, - 0.14206072688102722, - 0.2836539149284363, - 0.4243268668651581, - 0.5636560320854187, - 0.7012580037117004, - 0.8367973566055298, - 0.9699922204017639, - -0.9667106866836548, - -0.833877682685852, - -0.6987441182136536, - -0.5615887641906738, - -0.4227420389652252, - -0.28258031606674194, - -0.141518697142601, - -4.430865985227683e-8, - 0.141518697142601, - 0.28258031606674194, - 0.4227420389652252, - 0.5615887641906738, - 0.6987441182136536, - 0.833877682685852, - 0.9667106866836548, - -0.9625846147537231, - -0.8302096128463745, - -0.695588231086731, - -0.558995246887207, - -0.4207547605037689, - -0.28123465180397034, - -0.14083945751190186, - -4.4095433082702584e-8, - 0.14083945751190186, - 0.28123465180397034, - 0.4207547605037689, - 0.558995246887207, - 0.695588231086731, - 0.8302096128463745, - 0.9625846147537231, - -0.957676887512207, - -0.8258509039878845, - -0.6918413639068604, - -0.5559183955192566, - -0.4183986485004425, - -0.27963998913764954, - -0.1400347799062729, - -4.3842849350994584e-8, - 0.1400347799062729, - 0.27963998913764954, - 0.4183986485004425, - 0.5559183955192566, - 0.6918413639068604, - 0.8258509039878845, - 0.957676887512207, - -0.9520578384399414, - -0.8208659291267395, - -0.6875604391098022, - -0.5524060726165771, - -0.4157109260559082, - -0.277821809053421, - -0.13911759853363037, - -4.3554987172456094e-8, - 0.13911759853363037, - 0.277821809053421, - 0.4157109260559082, - 0.5524060726165771, - 0.6875604391098022, - 0.8208659291267395, - 0.9520578384399414 - ], - "yaxis": "y" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": true, - "x": [ - -0.9487589001655579, - -0.9547140598297119, - -0.9599253535270691, - -0.964314341545105, - -0.9678098559379578, - -0.9703524112701416, - -0.971896767616272, - -0.9724147915840149, - -0.971896767616272, - -0.9703524112701416, - -0.9678098559379578, - -0.964314341545105, - -0.9599253535270691, - -0.9547140598297119, - -0.9487589001655579, - -0.8183262944221497, - -0.8236206769943237, - -0.8282594680786133, - -0.8321705460548401, - -0.8352883458137512, - -0.8375579118728638, - -0.8389371037483215, - -0.8393998742103577, - -0.8389371037483215, - -0.8375579118728638, - -0.8352883458137512, - -0.8321705460548401, - -0.8282594680786133, - -0.8236206769943237, - -0.8183262944221497, - -0.6856609582901001, - -0.6902162432670593, - -0.6942119598388672, - -0.6975842714309692, - -0.7002748250961304, - -0.70223468542099, - -0.70342618227005, - -0.7038260698318481, - -0.70342618227005, - -0.70223468542099, - -0.7002748250961304, - -0.6975842714309692, - -0.6942119598388672, - -0.6902162432670593, - -0.6856609582901001, - -0.5510367155075073, - -0.5547803044319153, - -0.5580673813819885, - -0.5608438849449158, - -0.5630608201026917, - -0.5646765232086182, - -0.5656593441963196, - -0.5659891963005066, - -0.5656593441963196, - -0.5646765232086182, - -0.5630608201026917, - -0.5608438849449158, - -0.5580673813819885, - -0.5547803044319153, - -0.5510367155075073, - -0.41477563977241516, - -0.4176441431045532, - -0.4201648533344269, - -0.42229562997817993, - -0.42399799823760986, - -0.42523929476737976, - -0.42599454522132874, - -0.42624810338020325, - -0.42599454522132874, - -0.42523929476737976, - -0.42399799823760986, - -0.42229562997817993, - -0.4201648533344269, - -0.4176441431045532, - -0.41477563977241516, - -0.2772435247898102, - -0.279185950756073, - -0.28089383244514465, - -0.2823382616043091, - -0.2834928631782532, - -0.28433501720428467, - -0.28484755754470825, - -0.2850196361541748, - -0.28484755754470825, - -0.28433501720428467, - -0.2834928631782532, - -0.2823382616043091, - -0.28089383244514465, - -0.279185950756073, - -0.2772435247898102, - -0.1388423591852188, - -0.1398228108882904, - -0.14068520069122314, - -0.1414148062467575, - -0.14199815690517426, - -0.14242374897003174, - -0.14268280565738678, - -0.14276979863643646, - -0.14268280565738678, - -0.14242374897003174, - -0.14199815690517426, - -0.1414148062467575, - -0.14068520069122314, - -0.1398228108882904, - -0.1388423591852188, - -4.347032955820396e-8, - -4.377811535505316e-8, - -4.4048867664514546e-8, - -4.427796085337832e-8, - -4.446114232337095e-8, - -4.459480251739478e-8, - -4.467616321335299e-8, - -4.470348358154297e-8, - -4.467616321335299e-8, - -4.459480251739478e-8, - -4.446114232337095e-8, - -4.427796085337832e-8, - -4.4048867664514546e-8, - -4.377811535505316e-8, - -4.347032955820396e-8, - 0.1388423591852188, - 0.1398228108882904, - 0.14068520069122314, - 0.1414148062467575, - 0.14199815690517426, - 0.14242374897003174, - 0.14268280565738678, - 0.14276979863643646, - 0.14268280565738678, - 0.14242374897003174, - 0.14199815690517426, - 0.1414148062467575, - 0.14068520069122314, - 0.1398228108882904, - 0.1388423591852188, - 0.2772435247898102, - 0.279185950756073, - 0.28089383244514465, - 0.2823382616043091, - 0.2834928631782532, - 0.28433501720428467, - 0.28484755754470825, - 0.2850196361541748, - 0.28484755754470825, - 0.28433501720428467, - 0.2834928631782532, - 0.2823382616043091, - 0.28089383244514465, - 0.279185950756073, - 0.2772435247898102, - 0.41477563977241516, - 0.4176441431045532, - 0.4201648533344269, - 0.42229562997817993, - 0.42399799823760986, - 0.42523929476737976, - 0.42599454522132874, - 0.42624810338020325, - 0.42599454522132874, - 0.42523929476737976, - 0.42399799823760986, - 0.42229562997817993, - 0.4201648533344269, - 0.4176441431045532, - 0.41477563977241516, - 0.5510367155075073, - 0.5547803044319153, - 0.5580673813819885, - 0.5608438849449158, - 0.5630608201026917, - 0.5646765232086182, - 0.5656593441963196, - 0.5659891963005066, - 0.5656593441963196, - 0.5646765232086182, - 0.5630608201026917, - 0.5608438849449158, - 0.5580673813819885, - 0.5547803044319153, - 0.5510367155075073, - 0.6856609582901001, - 0.6902162432670593, - 0.6942119598388672, - 0.6975842714309692, - 0.7002748250961304, - 0.70223468542099, - 0.70342618227005, - 0.7038260698318481, - 0.70342618227005, - 0.70223468542099, - 0.7002748250961304, - 0.6975842714309692, - 0.6942119598388672, - 0.6902162432670593, - 0.6856609582901001, - 0.8183262944221497, - 0.8236206769943237, - 0.8282594680786133, - 0.8321705460548401, - 0.8352883458137512, - 0.8375579118728638, - 0.8389371037483215, - 0.8393998742103577, - 0.8389371037483215, - 0.8375579118728638, - 0.8352883458137512, - 0.8321705460548401, - 0.8282594680786133, - 0.8236206769943237, - 0.8183262944221497, - 0.9487589001655579, - 0.9547140598297119, - 0.9599253535270691, - 0.964314341545105, - 0.9678098559379578, - 0.9703524112701416, - 0.971896767616272, - 0.9724147915840149, - 0.971896767616272, - 0.9703524112701416, - 0.9678098559379578, - 0.964314341545105, - 0.9599253535270691, - 0.9547140598297119, - 0.9487589001655579 - ], - "xaxis": "x", - "y": [ - -0.9487589001655579, - -0.8183262944221497, - -0.6856609582901001, - -0.5510367155075073, - -0.41477563977241516, - -0.2772435247898102, - -0.1388423591852188, - -4.347032955820396e-8, - 0.1388423591852188, - 0.2772435247898102, - 0.41477563977241516, - 0.5510367155075073, - 0.6856609582901001, - 0.8183262944221497, - 0.9487589001655579, - -0.9547140598297119, - -0.8236206769943237, - -0.6902162432670593, - -0.5547803044319153, - -0.4176441431045532, - -0.279185950756073, - -0.1398228108882904, - -4.377811535505316e-8, - 0.1398228108882904, - 0.279185950756073, - 0.4176441431045532, - 0.5547803044319153, - 0.6902162432670593, - 0.8236206769943237, - 0.9547140598297119, - -0.9599253535270691, - -0.8282594680786133, - -0.6942119598388672, - -0.5580673813819885, - -0.4201648533344269, - -0.28089383244514465, - -0.14068520069122314, - -4.4048867664514546e-8, - 0.14068520069122314, - 0.28089383244514465, - 0.4201648533344269, - 0.5580673813819885, - 0.6942119598388672, - 0.8282594680786133, - 0.9599253535270691, - -0.964314341545105, - -0.8321705460548401, - -0.6975842714309692, - -0.5608438849449158, - -0.42229562997817993, - -0.2823382616043091, - -0.1414148062467575, - -4.427796085337832e-8, - 0.1414148062467575, - 0.2823382616043091, - 0.42229562997817993, - 0.5608438849449158, - 0.6975842714309692, - 0.8321705460548401, - 0.964314341545105, - -0.9678098559379578, - -0.8352883458137512, - -0.7002748250961304, - -0.5630608201026917, - -0.42399799823760986, - -0.2834928631782532, - -0.14199815690517426, - -4.446114232337095e-8, - 0.14199815690517426, - 0.2834928631782532, - 0.42399799823760986, - 0.5630608201026917, - 0.7002748250961304, - 0.8352883458137512, - 0.9678098559379578, - -0.9703524112701416, - -0.8375579118728638, - -0.70223468542099, - -0.5646765232086182, - -0.42523929476737976, - -0.28433501720428467, - -0.14242374897003174, - -4.459480251739478e-8, - 0.14242374897003174, - 0.28433501720428467, - 0.42523929476737976, - 0.5646765232086182, - 0.70223468542099, - 0.8375579118728638, - 0.9703524112701416, - -0.971896767616272, - -0.8389371037483215, - -0.70342618227005, - -0.5656593441963196, - -0.42599454522132874, - -0.28484755754470825, - -0.14268280565738678, - -4.467616321335299e-8, - 0.14268280565738678, - 0.28484755754470825, - 0.42599454522132874, - 0.5656593441963196, - 0.70342618227005, - 0.8389371037483215, - 0.971896767616272, - -0.9724147915840149, - -0.8393998742103577, - -0.7038260698318481, - -0.5659891963005066, - -0.42624810338020325, - -0.2850196361541748, - -0.14276979863643646, - -4.470348358154297e-8, - 0.14276979863643646, - 0.2850196361541748, - 0.42624810338020325, - 0.5659891963005066, - 0.7038260698318481, - 0.8393998742103577, - 0.9724147915840149, - -0.971896767616272, - -0.8389371037483215, - -0.70342618227005, - -0.5656593441963196, - -0.42599454522132874, - -0.28484755754470825, - -0.14268280565738678, - -4.467616321335299e-8, - 0.14268280565738678, - 0.28484755754470825, - 0.42599454522132874, - 0.5656593441963196, - 0.70342618227005, - 0.8389371037483215, - 0.971896767616272, - -0.9703524112701416, - -0.8375579118728638, - -0.70223468542099, - -0.5646765232086182, - -0.42523929476737976, - -0.28433501720428467, - -0.14242374897003174, - -4.459480251739478e-8, - 0.14242374897003174, - 0.28433501720428467, - 0.42523929476737976, - 0.5646765232086182, - 0.70223468542099, - 0.8375579118728638, - 0.9703524112701416, - -0.9678098559379578, - -0.8352883458137512, - -0.7002748250961304, - -0.5630608201026917, - -0.42399799823760986, - -0.2834928631782532, - -0.14199815690517426, - -4.446114232337095e-8, - 0.14199815690517426, - 0.2834928631782532, - 0.42399799823760986, - 0.5630608201026917, - 0.7002748250961304, - 0.8352883458137512, - 0.9678098559379578, - -0.964314341545105, - -0.8321705460548401, - -0.6975842714309692, - -0.5608438849449158, - -0.42229562997817993, - -0.2823382616043091, - -0.1414148062467575, - -4.427796085337832e-8, - 0.1414148062467575, - 0.2823382616043091, - 0.42229562997817993, - 0.5608438849449158, - 0.6975842714309692, - 0.8321705460548401, - 0.964314341545105, - -0.9599253535270691, - -0.8282594680786133, - -0.6942119598388672, - -0.5580673813819885, - -0.4201648533344269, - -0.28089383244514465, - -0.14068520069122314, - -4.4048867664514546e-8, - 0.14068520069122314, - 0.28089383244514465, - 0.4201648533344269, - 0.5580673813819885, - 0.6942119598388672, - 0.8282594680786133, - 0.9599253535270691, - -0.9547140598297119, - -0.8236206769943237, - -0.6902162432670593, - -0.5547803044319153, - -0.4176441431045532, - -0.279185950756073, - -0.1398228108882904, - -4.377811535505316e-8, - 0.1398228108882904, - 0.279185950756073, - 0.4176441431045532, - 0.5547803044319153, - 0.6902162432670593, - 0.8236206769943237, - 0.9547140598297119, - -0.9487589001655579, - -0.8183262944221497, - -0.6856609582901001, - -0.5510367155075073, - -0.41477563977241516, - -0.2772435247898102, - -0.1388423591852188, - -4.347032955820396e-8, - 0.1388423591852188, - 0.2772435247898102, - 0.41477563977241516, - 0.5510367155075073, - 0.6856609582901001, - 0.8183262944221497, - 0.9487589001655579 - ], - "yaxis": "y" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.945524275302887, - -0.9518030881881714, - -0.9573080539703369, - -0.9619519114494324, - -0.9656557440757751, - -0.968352735042572, - -0.9699922204017639, - -0.970542311668396, - -0.9699922204017639, - -0.968352735042572, - -0.9656557440757751, - -0.9619519114494324, - -0.9573080539703369, - -0.9518030881881714, - -0.945524275302887, - -0.8158312439918518, - -0.8214247226715088, - -0.826335608959198, - -0.8304834961891174, - -0.8337951898574829, - -0.8362086415290833, - -0.8376765847206116, - -0.8381692171096802, - -0.8376765847206116, - -0.8362086415290833, - -0.8337951898574829, - -0.8304834961891174, - -0.826335608959198, - -0.8214247226715088, - -0.8158312439918518, - -0.68379145860672, - -0.6886130571365356, - -0.6928516030311584, - -0.6964355707168579, - -0.6992998123168945, - -0.7013887166976929, - -0.7026599049568176, - -0.7030866742134094, - -0.7026599049568176, - -0.7013887166976929, - -0.6992998123168945, - -0.6964355707168579, - -0.6928516030311584, - -0.6886130571365356, - -0.68379145860672, - -0.5496867299079895, - -0.5536556243896484, - -0.5571483969688416, - -0.5601047277450562, - -0.5624693036079407, - -0.5641949772834778, - -0.5652455687522888, - -0.5655984282493591, - -0.5652455687522888, - -0.5641949772834778, - -0.5624693036079407, - -0.5601047277450562, - -0.5571483969688416, - -0.5536556243896484, - -0.5496867299079895, - -0.41385242342948914, - -0.41689756512641907, - -0.4195798635482788, - -0.4218519926071167, - -0.42367056012153625, - -0.42499855160713196, - -0.42580729722976685, - -0.4260789752006531, - -0.42580729722976685, - -0.42499855160713196, - -0.42367056012153625, - -0.4218519926071167, - -0.4195798635482788, - -0.41689756512641907, - -0.41385242342948914, - -0.2766721844673157, - -0.2787362039089203, - -0.28055548667907715, - -0.2820974886417389, - -0.28333234786987305, - -0.2842344045639038, - -0.2847839891910553, - -0.28496861457824707, - -0.2847839891910553, - -0.2842344045639038, - -0.28333234786987305, - -0.2820974886417389, - -0.28055548667907715, - -0.2787362039089203, - -0.2766721844673157, - -0.13857027888298035, - -0.13961271941661835, - -0.14053194224834442, - -0.14131136238574982, - -0.14193573594093323, - -0.14239196479320526, - -0.1426699459552765, - -0.14276334643363953, - -0.1426699459552765, - -0.14239196479320526, - -0.14193573594093323, - -0.14131136238574982, - -0.14053194224834442, - -0.13961271941661835, - -0.13857027888298035, - -4.338662407121774e-8, - -4.371393202973195e-8, - -4.400259356884817e-8, - -4.424738619945856e-8, - -4.4443503099955706e-8, - -4.458681601704484e-8, - -4.4674145271983434e-8, - -4.470348358154297e-8, - -4.4674145271983434e-8, - -4.458681601704484e-8, - -4.4443503099955706e-8, - -4.424738619945856e-8, - -4.400259356884817e-8, - -4.371393202973195e-8, - -4.338662407121774e-8, - 0.13857027888298035, - 0.13961271941661835, - 0.14053194224834442, - 0.14131136238574982, - 0.14193573594093323, - 0.14239196479320526, - 0.1426699459552765, - 0.14276334643363953, - 0.1426699459552765, - 0.14239196479320526, - 0.14193573594093323, - 0.14131136238574982, - 0.14053194224834442, - 0.13961271941661835, - 0.13857027888298035, - 0.2766721844673157, - 0.2787362039089203, - 0.28055548667907715, - 0.2820974886417389, - 0.28333234786987305, - 0.2842344045639038, - 0.2847839891910553, - 0.28496861457824707, - 0.2847839891910553, - 0.2842344045639038, - 0.28333234786987305, - 0.2820974886417389, - 0.28055548667907715, - 0.2787362039089203, - 0.2766721844673157, - 0.41385242342948914, - 0.41689756512641907, - 0.4195798635482788, - 0.4218519926071167, - 0.42367056012153625, - 0.42499855160713196, - 0.42580729722976685, - 0.4260789752006531, - 0.42580729722976685, - 0.42499855160713196, - 0.42367056012153625, - 0.4218519926071167, - 0.4195798635482788, - 0.41689756512641907, - 0.41385242342948914, - 0.5496867299079895, - 0.5536556243896484, - 0.5571483969688416, - 0.5601047277450562, - 0.5624693036079407, - 0.5641949772834778, - 0.5652455687522888, - 0.5655984282493591, - 0.5652455687522888, - 0.5641949772834778, - 0.5624693036079407, - 0.5601047277450562, - 0.5571483969688416, - 0.5536556243896484, - 0.5496867299079895, - 0.68379145860672, - 0.6886130571365356, - 0.6928516030311584, - 0.6964355707168579, - 0.6992998123168945, - 0.7013887166976929, - 0.7026599049568176, - 0.7030866742134094, - 0.7026599049568176, - 0.7013887166976929, - 0.6992998123168945, - 0.6964355707168579, - 0.6928516030311584, - 0.6886130571365356, - 0.68379145860672, - 0.8158312439918518, - 0.8214247226715088, - 0.826335608959198, - 0.8304834961891174, - 0.8337951898574829, - 0.8362086415290833, - 0.8376765847206116, - 0.8381692171096802, - 0.8376765847206116, - 0.8362086415290833, - 0.8337951898574829, - 0.8304834961891174, - 0.826335608959198, - 0.8214247226715088, - 0.8158312439918518, - 0.945524275302887, - 0.9518030881881714, - 0.9573080539703369, - 0.9619519114494324, - 0.9656557440757751, - 0.968352735042572, - 0.9699922204017639, - 0.970542311668396, - 0.9699922204017639, - 0.968352735042572, - 0.9656557440757751, - 0.9619519114494324, - 0.9573080539703369, - 0.9518030881881714, - 0.945524275302887 - ], - "xaxis": "x", - "y": [ - -0.945524275302887, - -0.8158312439918518, - -0.68379145860672, - -0.5496867299079895, - -0.41385242342948914, - -0.2766721844673157, - -0.13857027888298035, - -4.338662407121774e-8, - 0.13857027888298035, - 0.2766721844673157, - 0.41385242342948914, - 0.5496867299079895, - 0.68379145860672, - 0.8158312439918518, - 0.945524275302887, - -0.9518030881881714, - -0.8214247226715088, - -0.6886130571365356, - -0.5536556243896484, - -0.41689756512641907, - -0.2787362039089203, - -0.13961271941661835, - -4.371393202973195e-8, - 0.13961271941661835, - 0.2787362039089203, - 0.41689756512641907, - 0.5536556243896484, - 0.6886130571365356, - 0.8214247226715088, - 0.9518030881881714, - -0.9573080539703369, - -0.826335608959198, - -0.6928516030311584, - -0.5571483969688416, - -0.4195798635482788, - -0.28055548667907715, - -0.14053194224834442, - -4.400259356884817e-8, - 0.14053194224834442, - 0.28055548667907715, - 0.4195798635482788, - 0.5571483969688416, - 0.6928516030311584, - 0.826335608959198, - 0.9573080539703369, - -0.9619519114494324, - -0.8304834961891174, - -0.6964355707168579, - -0.5601047277450562, - -0.4218519926071167, - -0.2820974886417389, - -0.14131136238574982, - -4.424738619945856e-8, - 0.14131136238574982, - 0.2820974886417389, - 0.4218519926071167, - 0.5601047277450562, - 0.6964355707168579, - 0.8304834961891174, - 0.9619519114494324, - -0.9656557440757751, - -0.8337951898574829, - -0.6992998123168945, - -0.5624693036079407, - -0.42367056012153625, - -0.28333234786987305, - -0.14193573594093323, - -4.4443503099955706e-8, - 0.14193573594093323, - 0.28333234786987305, - 0.42367056012153625, - 0.5624693036079407, - 0.6992998123168945, - 0.8337951898574829, - 0.9656557440757751, - -0.968352735042572, - -0.8362086415290833, - -0.7013887166976929, - -0.5641949772834778, - -0.42499855160713196, - -0.2842344045639038, - -0.14239196479320526, - -4.458681601704484e-8, - 0.14239196479320526, - 0.2842344045639038, - 0.42499855160713196, - 0.5641949772834778, - 0.7013887166976929, - 0.8362086415290833, - 0.968352735042572, - -0.9699922204017639, - -0.8376765847206116, - -0.7026599049568176, - -0.5652455687522888, - -0.42580729722976685, - -0.2847839891910553, - -0.1426699459552765, - -4.4674145271983434e-8, - 0.1426699459552765, - 0.2847839891910553, - 0.42580729722976685, - 0.5652455687522888, - 0.7026599049568176, - 0.8376765847206116, - 0.9699922204017639, - -0.970542311668396, - -0.8381692171096802, - -0.7030866742134094, - -0.5655984282493591, - -0.4260789752006531, - -0.28496861457824707, - -0.14276334643363953, - -4.470348358154297e-8, - 0.14276334643363953, - 0.28496861457824707, - 0.4260789752006531, - 0.5655984282493591, - 0.7030866742134094, - 0.8381692171096802, - 0.970542311668396, - -0.9699922204017639, - -0.8376765847206116, - -0.7026599049568176, - -0.5652455687522888, - -0.42580729722976685, - -0.2847839891910553, - -0.1426699459552765, - -4.4674145271983434e-8, - 0.1426699459552765, - 0.2847839891910553, - 0.42580729722976685, - 0.5652455687522888, - 0.7026599049568176, - 0.8376765847206116, - 0.9699922204017639, - -0.968352735042572, - -0.8362086415290833, - -0.7013887166976929, - -0.5641949772834778, - -0.42499855160713196, - -0.2842344045639038, - -0.14239196479320526, - -4.458681601704484e-8, - 0.14239196479320526, - 0.2842344045639038, - 0.42499855160713196, - 0.5641949772834778, - 0.7013887166976929, - 0.8362086415290833, - 0.968352735042572, - -0.9656557440757751, - -0.8337951898574829, - -0.6992998123168945, - -0.5624693036079407, - -0.42367056012153625, - -0.28333234786987305, - -0.14193573594093323, - -4.4443503099955706e-8, - 0.14193573594093323, - 0.28333234786987305, - 0.42367056012153625, - 0.5624693036079407, - 0.6992998123168945, - 0.8337951898574829, - 0.9656557440757751, - -0.9619519114494324, - -0.8304834961891174, - -0.6964355707168579, - -0.5601047277450562, - -0.4218519926071167, - -0.2820974886417389, - -0.14131136238574982, - -4.424738619945856e-8, - 0.14131136238574982, - 0.2820974886417389, - 0.4218519926071167, - 0.5601047277450562, - 0.6964355707168579, - 0.8304834961891174, - 0.9619519114494324, - -0.9573080539703369, - -0.826335608959198, - -0.6928516030311584, - -0.5571483969688416, - -0.4195798635482788, - -0.28055548667907715, - -0.14053194224834442, - -4.400259356884817e-8, - 0.14053194224834442, - 0.28055548667907715, - 0.4195798635482788, - 0.5571483969688416, - 0.6928516030311584, - 0.826335608959198, - 0.9573080539703369, - -0.9518030881881714, - -0.8214247226715088, - -0.6886130571365356, - -0.5536556243896484, - -0.41689756512641907, - -0.2787362039089203, - -0.13961271941661835, - -4.371393202973195e-8, - 0.13961271941661835, - 0.2787362039089203, - 0.41689756512641907, - 0.5536556243896484, - 0.6886130571365356, - 0.8214247226715088, - 0.9518030881881714, - -0.945524275302887, - -0.8158312439918518, - -0.68379145860672, - -0.5496867299079895, - -0.41385242342948914, - -0.2766721844673157, - -0.13857027888298035, - -4.338662407121774e-8, - 0.13857027888298035, - 0.2766721844673157, - 0.41385242342948914, - 0.5496867299079895, - 0.68379145860672, - 0.8158312439918518, - 0.945524275302887 - ], - "yaxis": "y" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9423515796661377, - -0.9489423036575317, - -0.954731285572052, - -0.9596225619316101, - -0.963529109954834, - -0.9663768410682678, - -0.9681091904640198, - -0.9686906337738037, - -0.9681091904640198, - -0.9663768410682678, - -0.963529109954834, - -0.9596225619316101, - -0.954731285572052, - -0.9489423036575317, - -0.9423515796661377, - -0.8133791089057922, - -0.8192621469497681, - -0.8244374394416809, - -0.8288162350654602, - -0.8323174118995667, - -0.8348720669746399, - -0.8364270329475403, - -0.8369491696357727, - -0.8364270329475403, - -0.8348720669746399, - -0.8323174118995667, - -0.8288162350654602, - -0.8244374394416809, - -0.8192621469497681, - -0.8133791089057922, - -0.6819509267807007, - -0.6870312094688416, - -0.691506564617157, - -0.69529789686203, - -0.6983326077461243, - -0.7005487084388733, - -0.701898455619812, - -0.7023518085479736, - -0.701898455619812, - -0.7005487084388733, - -0.6983326077461243, - -0.69529789686203, - -0.691506564617157, - -0.6870312094688416, - -0.6819509267807007, - -0.5483556985855103, - -0.552544116973877, - -0.5562382340431213, - -0.5593712329864502, - -0.561881422996521, - -0.5637157559394836, - -0.5648336410522461, - -0.5652092099189758, - -0.5648336410522461, - -0.5637157559394836, - -0.561881422996521, - -0.5593712329864502, - -0.5562382340431213, - -0.552544116973877, - -0.5483556985855103, - -0.412941038608551, - -0.41615867614746094, - -0.4189995527267456, - -0.42141103744506836, - -0.4233446717262268, - -0.42475858330726624, - -0.42562058568000793, - -0.42591020464897156, - -0.42562058568000793, - -0.42475858330726624, - -0.4233446717262268, - -0.42141103744506836, - -0.4189995527267456, - -0.41615867614746094, - -0.412941038608551, - -0.27610763907432556, - -0.27829065918922424, - -0.2802194654941559, - -0.2818578779697418, - -0.2831723690032959, - -0.28413403034210205, - -0.2847205102443695, - -0.28491759300231934, - -0.2847205102443695, - -0.28413403034210205, - -0.2831723690032959, - -0.2818578779697418, - -0.2802194654941559, - -0.27829065918922424, - -0.27610763907432556, - -0.13830126821994781, - -0.13940446078777313, - -0.1403796523809433, - -0.14120838046073914, - -0.14187349379062653, - -0.14236022531986237, - -0.1426571011543274, - -0.14275690913200378, - -0.1426571011543274, - -0.14236022531986237, - -0.14187349379062653, - -0.14120838046073914, - -0.1403796523809433, - -0.13940446078777313, - -0.13830126821994781, - -4.330384584250169e-8, - -4.365030292774463e-8, - -4.395660013756242e-8, - -4.421693589051756e-8, - -4.442589940367725e-8, - -4.4578833069408574e-8, - -4.4672127330613876e-8, - -4.470348358154297e-8, - -4.4672127330613876e-8, - -4.4578833069408574e-8, - -4.442589940367725e-8, - -4.421693589051756e-8, - -4.395660013756242e-8, - -4.365030292774463e-8, - -4.330384584250169e-8, - 0.13830126821994781, - 0.13940446078777313, - 0.1403796523809433, - 0.14120838046073914, - 0.14187349379062653, - 0.14236022531986237, - 0.1426571011543274, - 0.14275690913200378, - 0.1426571011543274, - 0.14236022531986237, - 0.14187349379062653, - 0.14120838046073914, - 0.1403796523809433, - 0.13940446078777313, - 0.13830126821994781, - 0.27610763907432556, - 0.27829065918922424, - 0.2802194654941559, - 0.2818578779697418, - 0.2831723690032959, - 0.28413403034210205, - 0.2847205102443695, - 0.28491759300231934, - 0.2847205102443695, - 0.28413403034210205, - 0.2831723690032959, - 0.2818578779697418, - 0.2802194654941559, - 0.27829065918922424, - 0.27610763907432556, - 0.412941038608551, - 0.41615867614746094, - 0.4189995527267456, - 0.42141103744506836, - 0.4233446717262268, - 0.42475858330726624, - 0.42562058568000793, - 0.42591020464897156, - 0.42562058568000793, - 0.42475858330726624, - 0.4233446717262268, - 0.42141103744506836, - 0.4189995527267456, - 0.41615867614746094, - 0.412941038608551, - 0.5483556985855103, - 0.552544116973877, - 0.5562382340431213, - 0.5593712329864502, - 0.561881422996521, - 0.5637157559394836, - 0.5648336410522461, - 0.5652092099189758, - 0.5648336410522461, - 0.5637157559394836, - 0.561881422996521, - 0.5593712329864502, - 0.5562382340431213, - 0.552544116973877, - 0.5483556985855103, - 0.6819509267807007, - 0.6870312094688416, - 0.691506564617157, - 0.69529789686203, - 0.6983326077461243, - 0.7005487084388733, - 0.701898455619812, - 0.7023518085479736, - 0.701898455619812, - 0.7005487084388733, - 0.6983326077461243, - 0.69529789686203, - 0.691506564617157, - 0.6870312094688416, - 0.6819509267807007, - 0.8133791089057922, - 0.8192621469497681, - 0.8244374394416809, - 0.8288162350654602, - 0.8323174118995667, - 0.8348720669746399, - 0.8364270329475403, - 0.8369491696357727, - 0.8364270329475403, - 0.8348720669746399, - 0.8323174118995667, - 0.8288162350654602, - 0.8244374394416809, - 0.8192621469497681, - 0.8133791089057922, - 0.9423515796661377, - 0.9489423036575317, - 0.954731285572052, - 0.9596225619316101, - 0.963529109954834, - 0.9663768410682678, - 0.9681091904640198, - 0.9686906337738037, - 0.9681091904640198, - 0.9663768410682678, - 0.963529109954834, - 0.9596225619316101, - 0.954731285572052, - 0.9489423036575317, - 0.9423515796661377 - ], - "xaxis": "x", - "y": [ - -0.9423515796661377, - -0.8133791089057922, - -0.6819509267807007, - -0.5483556985855103, - -0.412941038608551, - -0.27610763907432556, - -0.13830126821994781, - -4.330384584250169e-8, - 0.13830126821994781, - 0.27610763907432556, - 0.412941038608551, - 0.5483556985855103, - 0.6819509267807007, - 0.8133791089057922, - 0.9423515796661377, - -0.9489423036575317, - -0.8192621469497681, - -0.6870312094688416, - -0.552544116973877, - -0.41615867614746094, - -0.27829065918922424, - -0.13940446078777313, - -4.365030292774463e-8, - 0.13940446078777313, - 0.27829065918922424, - 0.41615867614746094, - 0.552544116973877, - 0.6870312094688416, - 0.8192621469497681, - 0.9489423036575317, - -0.954731285572052, - -0.8244374394416809, - -0.691506564617157, - -0.5562382340431213, - -0.4189995527267456, - -0.2802194654941559, - -0.1403796523809433, - -4.395660013756242e-8, - 0.1403796523809433, - 0.2802194654941559, - 0.4189995527267456, - 0.5562382340431213, - 0.691506564617157, - 0.8244374394416809, - 0.954731285572052, - -0.9596225619316101, - -0.8288162350654602, - -0.69529789686203, - -0.5593712329864502, - -0.42141103744506836, - -0.2818578779697418, - -0.14120838046073914, - -4.421693589051756e-8, - 0.14120838046073914, - 0.2818578779697418, - 0.42141103744506836, - 0.5593712329864502, - 0.69529789686203, - 0.8288162350654602, - 0.9596225619316101, - -0.963529109954834, - -0.8323174118995667, - -0.6983326077461243, - -0.561881422996521, - -0.4233446717262268, - -0.2831723690032959, - -0.14187349379062653, - -4.442589940367725e-8, - 0.14187349379062653, - 0.2831723690032959, - 0.4233446717262268, - 0.561881422996521, - 0.6983326077461243, - 0.8323174118995667, - 0.963529109954834, - -0.9663768410682678, - -0.8348720669746399, - -0.7005487084388733, - -0.5637157559394836, - -0.42475858330726624, - -0.28413403034210205, - -0.14236022531986237, - -4.4578833069408574e-8, - 0.14236022531986237, - 0.28413403034210205, - 0.42475858330726624, - 0.5637157559394836, - 0.7005487084388733, - 0.8348720669746399, - 0.9663768410682678, - -0.9681091904640198, - -0.8364270329475403, - -0.701898455619812, - -0.5648336410522461, - -0.42562058568000793, - -0.2847205102443695, - -0.1426571011543274, - -4.4672127330613876e-8, - 0.1426571011543274, - 0.2847205102443695, - 0.42562058568000793, - 0.5648336410522461, - 0.701898455619812, - 0.8364270329475403, - 0.9681091904640198, - -0.9686906337738037, - -0.8369491696357727, - -0.7023518085479736, - -0.5652092099189758, - -0.42591020464897156, - -0.28491759300231934, - -0.14275690913200378, - -4.470348358154297e-8, - 0.14275690913200378, - 0.28491759300231934, - 0.42591020464897156, - 0.5652092099189758, - 0.7023518085479736, - 0.8369491696357727, - 0.9686906337738037, - -0.9681091904640198, - -0.8364270329475403, - -0.701898455619812, - -0.5648336410522461, - -0.42562058568000793, - -0.2847205102443695, - -0.1426571011543274, - -4.4672127330613876e-8, - 0.1426571011543274, - 0.2847205102443695, - 0.42562058568000793, - 0.5648336410522461, - 0.701898455619812, - 0.8364270329475403, - 0.9681091904640198, - -0.9663768410682678, - -0.8348720669746399, - -0.7005487084388733, - -0.5637157559394836, - -0.42475858330726624, - -0.28413403034210205, - -0.14236022531986237, - -4.4578833069408574e-8, - 0.14236022531986237, - 0.28413403034210205, - 0.42475858330726624, - 0.5637157559394836, - 0.7005487084388733, - 0.8348720669746399, - 0.9663768410682678, - -0.963529109954834, - -0.8323174118995667, - -0.6983326077461243, - -0.561881422996521, - -0.4233446717262268, - -0.2831723690032959, - -0.14187349379062653, - -4.442589940367725e-8, - 0.14187349379062653, - 0.2831723690032959, - 0.4233446717262268, - 0.561881422996521, - 0.6983326077461243, - 0.8323174118995667, - 0.963529109954834, - -0.9596225619316101, - -0.8288162350654602, - -0.69529789686203, - -0.5593712329864502, - -0.42141103744506836, - -0.2818578779697418, - -0.14120838046073914, - -4.421693589051756e-8, - 0.14120838046073914, - 0.2818578779697418, - 0.42141103744506836, - 0.5593712329864502, - 0.69529789686203, - 0.8288162350654602, - 0.9596225619316101, - -0.954731285572052, - -0.8244374394416809, - -0.691506564617157, - -0.5562382340431213, - -0.4189995527267456, - -0.2802194654941559, - -0.1403796523809433, - -4.395660013756242e-8, - 0.1403796523809433, - 0.2802194654941559, - 0.4189995527267456, - 0.5562382340431213, - 0.691506564617157, - 0.8244374394416809, - 0.954731285572052, - -0.9489423036575317, - -0.8192621469497681, - -0.6870312094688416, - -0.552544116973877, - -0.41615867614746094, - -0.27829065918922424, - -0.13940446078777313, - -4.365030292774463e-8, - 0.13940446078777313, - 0.27829065918922424, - 0.41615867614746094, - 0.552544116973877, - 0.6870312094688416, - 0.8192621469497681, - 0.9489423036575317, - -0.9423515796661377, - -0.8133791089057922, - -0.6819509267807007, - -0.5483556985855103, - -0.412941038608551, - -0.27610763907432556, - -0.13830126821994781, - -4.330384584250169e-8, - 0.13830126821994781, - 0.27610763907432556, - 0.412941038608551, - 0.5483556985855103, - 0.6819509267807007, - 0.8133791089057922, - 0.9423515796661377 - ], - "yaxis": "y" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.939238429069519, - -0.9461300373077393, - -0.9521938562393188, - -0.9573255181312561, - -0.9614295363426208, - -0.9644241333007812, - -0.9662472009658813, - -0.9668593406677246, - -0.9662472009658813, - -0.9644241333007812, - -0.9614295363426208, - -0.9573255181312561, - -0.9521938562393188, - -0.9461300373077393, - -0.939238429069519, - -0.8109685778617859, - -0.8171319961547852, - -0.8225642442703247, - -0.8271682858467102, - -0.8308548927307129, - -0.833547830581665, - -0.8351883292198181, - -0.8357394337654114, - -0.8351883292198181, - -0.833547830581665, - -0.8308548927307129, - -0.8271682858467102, - -0.8225642442703247, - -0.8171319961547852, - -0.8109685778617859, - -0.6801384687423706, - -0.6854702234268188, - -0.6901765465736389, - -0.6941709518432617, - -0.6973733305931091, - -0.6997146606445312, - -0.7011418342590332, - -0.7016214728355408, - -0.7011418342590332, - -0.6997146606445312, - -0.6973733305931091, - -0.6941709518432617, - -0.6901765465736389, - -0.6854702234268188, - -0.6801384687423706, - -0.5470431447029114, - -0.551445484161377, - -0.5553367137908936, - -0.5586434006690979, - -0.5612971782684326, - -0.5632389783859253, - -0.5644234418869019, - -0.5648215413093567, - -0.5644234418869019, - -0.5632389783859253, - -0.5612971782684326, - -0.5586434006690979, - -0.5553367137908936, - -0.551445484161377, - -0.5470431447029114, - -0.41204118728637695, - -0.41542741656303406, - -0.41842395067214966, - -0.4209728538990021, - -0.42302024364471436, - -0.424519419670105, - -0.42543432116508484, - -0.42574191093444824, - -0.42543432116508484, - -0.424519419670105, - -0.42302024364471436, - -0.4209728538990021, - -0.41842395067214966, - -0.41542741656303406, - -0.41204118728637695, - -0.2755497097969055, - -0.2778492569923401, - -0.27988582849502563, - -0.28161948919296265, - -0.2830129563808441, - -0.284033864736557, - -0.2846570909023285, - -0.28486666083335876, - -0.2846570909023285, - -0.284033864736557, - -0.2830129563808441, - -0.28161948919296265, - -0.27988582849502563, - -0.2778492569923401, - -0.2755497097969055, - -0.13803526759147644, - -0.13919800519943237, - -0.14022833108901978, - -0.14110583066940308, - -0.14181141555309296, - -0.14232851564884186, - -0.1426442563533783, - -0.14275044202804565, - -0.1426442563533783, - -0.14232851564884186, - -0.14181141555309296, - -0.14110583066940308, - -0.14022833108901978, - -0.13919800519943237, - -0.13803526759147644, - -4.322198066120109e-8, - -4.3587206732809136e-8, - -4.391089447608465e-8, - -4.418660992655532e-8, - -4.4408345445390296e-8, - -4.4570864332627025e-8, - -4.467010583653064e-8, - -4.470348358154297e-8, - -4.467010583653064e-8, - -4.4570864332627025e-8, - -4.4408345445390296e-8, - -4.418660992655532e-8, - -4.391089447608465e-8, - -4.3587206732809136e-8, - -4.322198066120109e-8, - 0.13803526759147644, - 0.13919800519943237, - 0.14022833108901978, - 0.14110583066940308, - 0.14181141555309296, - 0.14232851564884186, - 0.1426442563533783, - 0.14275044202804565, - 0.1426442563533783, - 0.14232851564884186, - 0.14181141555309296, - 0.14110583066940308, - 0.14022833108901978, - 0.13919800519943237, - 0.13803526759147644, - 0.2755497097969055, - 0.2778492569923401, - 0.27988582849502563, - 0.28161948919296265, - 0.2830129563808441, - 0.284033864736557, - 0.2846570909023285, - 0.28486666083335876, - 0.2846570909023285, - 0.284033864736557, - 0.2830129563808441, - 0.28161948919296265, - 0.27988582849502563, - 0.2778492569923401, - 0.2755497097969055, - 0.41204118728637695, - 0.41542741656303406, - 0.41842395067214966, - 0.4209728538990021, - 0.42302024364471436, - 0.424519419670105, - 0.42543432116508484, - 0.42574191093444824, - 0.42543432116508484, - 0.424519419670105, - 0.42302024364471436, - 0.4209728538990021, - 0.41842395067214966, - 0.41542741656303406, - 0.41204118728637695, - 0.5470431447029114, - 0.551445484161377, - 0.5553367137908936, - 0.5586434006690979, - 0.5612971782684326, - 0.5632389783859253, - 0.5644234418869019, - 0.5648215413093567, - 0.5644234418869019, - 0.5632389783859253, - 0.5612971782684326, - 0.5586434006690979, - 0.5553367137908936, - 0.551445484161377, - 0.5470431447029114, - 0.6801384687423706, - 0.6854702234268188, - 0.6901765465736389, - 0.6941709518432617, - 0.6973733305931091, - 0.6997146606445312, - 0.7011418342590332, - 0.7016214728355408, - 0.7011418342590332, - 0.6997146606445312, - 0.6973733305931091, - 0.6941709518432617, - 0.6901765465736389, - 0.6854702234268188, - 0.6801384687423706, - 0.8109685778617859, - 0.8171319961547852, - 0.8225642442703247, - 0.8271682858467102, - 0.8308548927307129, - 0.833547830581665, - 0.8351883292198181, - 0.8357394337654114, - 0.8351883292198181, - 0.833547830581665, - 0.8308548927307129, - 0.8271682858467102, - 0.8225642442703247, - 0.8171319961547852, - 0.8109685778617859, - 0.939238429069519, - 0.9461300373077393, - 0.9521938562393188, - 0.9573255181312561, - 0.9614295363426208, - 0.9644241333007812, - 0.9662472009658813, - 0.9668593406677246, - 0.9662472009658813, - 0.9644241333007812, - 0.9614295363426208, - 0.9573255181312561, - 0.9521938562393188, - 0.9461300373077393, - 0.939238429069519 - ], - "xaxis": "x", - "y": [ - -0.939238429069519, - -0.8109685778617859, - -0.6801384687423706, - -0.5470431447029114, - -0.41204118728637695, - -0.2755497097969055, - -0.13803526759147644, - -4.322198066120109e-8, - 0.13803526759147644, - 0.2755497097969055, - 0.41204118728637695, - 0.5470431447029114, - 0.6801384687423706, - 0.8109685778617859, - 0.939238429069519, - -0.9461300373077393, - -0.8171319961547852, - -0.6854702234268188, - -0.551445484161377, - -0.41542741656303406, - -0.2778492569923401, - -0.13919800519943237, - -4.3587206732809136e-8, - 0.13919800519943237, - 0.2778492569923401, - 0.41542741656303406, - 0.551445484161377, - 0.6854702234268188, - 0.8171319961547852, - 0.9461300373077393, - -0.9521938562393188, - -0.8225642442703247, - -0.6901765465736389, - -0.5553367137908936, - -0.41842395067214966, - -0.27988582849502563, - -0.14022833108901978, - -4.391089447608465e-8, - 0.14022833108901978, - 0.27988582849502563, - 0.41842395067214966, - 0.5553367137908936, - 0.6901765465736389, - 0.8225642442703247, - 0.9521938562393188, - -0.9573255181312561, - -0.8271682858467102, - -0.6941709518432617, - -0.5586434006690979, - -0.4209728538990021, - -0.28161948919296265, - -0.14110583066940308, - -4.418660992655532e-8, - 0.14110583066940308, - 0.28161948919296265, - 0.4209728538990021, - 0.5586434006690979, - 0.6941709518432617, - 0.8271682858467102, - 0.9573255181312561, - -0.9614295363426208, - -0.8308548927307129, - -0.6973733305931091, - -0.5612971782684326, - -0.42302024364471436, - -0.2830129563808441, - -0.14181141555309296, - -4.4408345445390296e-8, - 0.14181141555309296, - 0.2830129563808441, - 0.42302024364471436, - 0.5612971782684326, - 0.6973733305931091, - 0.8308548927307129, - 0.9614295363426208, - -0.9644241333007812, - -0.833547830581665, - -0.6997146606445312, - -0.5632389783859253, - -0.424519419670105, - -0.284033864736557, - -0.14232851564884186, - -4.4570864332627025e-8, - 0.14232851564884186, - 0.284033864736557, - 0.424519419670105, - 0.5632389783859253, - 0.6997146606445312, - 0.833547830581665, - 0.9644241333007812, - -0.9662472009658813, - -0.8351883292198181, - -0.7011418342590332, - -0.5644234418869019, - -0.42543432116508484, - -0.2846570909023285, - -0.1426442563533783, - -4.467010583653064e-8, - 0.1426442563533783, - 0.2846570909023285, - 0.42543432116508484, - 0.5644234418869019, - 0.7011418342590332, - 0.8351883292198181, - 0.9662472009658813, - -0.9668593406677246, - -0.8357394337654114, - -0.7016214728355408, - -0.5648215413093567, - -0.42574191093444824, - -0.28486666083335876, - -0.14275044202804565, - -4.470348358154297e-8, - 0.14275044202804565, - 0.28486666083335876, - 0.42574191093444824, - 0.5648215413093567, - 0.7016214728355408, - 0.8357394337654114, - 0.9668593406677246, - -0.9662472009658813, - -0.8351883292198181, - -0.7011418342590332, - -0.5644234418869019, - -0.42543432116508484, - -0.2846570909023285, - -0.1426442563533783, - -4.467010583653064e-8, - 0.1426442563533783, - 0.2846570909023285, - 0.42543432116508484, - 0.5644234418869019, - 0.7011418342590332, - 0.8351883292198181, - 0.9662472009658813, - -0.9644241333007812, - -0.833547830581665, - -0.6997146606445312, - -0.5632389783859253, - -0.424519419670105, - -0.284033864736557, - -0.14232851564884186, - -4.4570864332627025e-8, - 0.14232851564884186, - 0.284033864736557, - 0.424519419670105, - 0.5632389783859253, - 0.6997146606445312, - 0.833547830581665, - 0.9644241333007812, - -0.9614295363426208, - -0.8308548927307129, - -0.6973733305931091, - -0.5612971782684326, - -0.42302024364471436, - -0.2830129563808441, - -0.14181141555309296, - -4.4408345445390296e-8, - 0.14181141555309296, - 0.2830129563808441, - 0.42302024364471436, - 0.5612971782684326, - 0.6973733305931091, - 0.8308548927307129, - 0.9614295363426208, - -0.9573255181312561, - -0.8271682858467102, - -0.6941709518432617, - -0.5586434006690979, - -0.4209728538990021, - -0.28161948919296265, - -0.14110583066940308, - -4.418660992655532e-8, - 0.14110583066940308, - 0.28161948919296265, - 0.4209728538990021, - 0.5586434006690979, - 0.6941709518432617, - 0.8271682858467102, - 0.9573255181312561, - -0.9521938562393188, - -0.8225642442703247, - -0.6901765465736389, - -0.5553367137908936, - -0.41842395067214966, - -0.27988582849502563, - -0.14022833108901978, - -4.391089447608465e-8, - 0.14022833108901978, - 0.27988582849502563, - 0.41842395067214966, - 0.5553367137908936, - 0.6901765465736389, - 0.8225642442703247, - 0.9521938562393188, - -0.9461300373077393, - -0.8171319961547852, - -0.6854702234268188, - -0.551445484161377, - -0.41542741656303406, - -0.2778492569923401, - -0.13919800519943237, - -4.3587206732809136e-8, - 0.13919800519943237, - 0.2778492569923401, - 0.41542741656303406, - 0.551445484161377, - 0.6854702234268188, - 0.8171319961547852, - 0.9461300373077393, - -0.939238429069519, - -0.8109685778617859, - -0.6801384687423706, - -0.5470431447029114, - -0.41204118728637695, - -0.2755497097969055, - -0.13803526759147644, - -4.322198066120109e-8, - 0.13803526759147644, - 0.2755497097969055, - 0.41204118728637695, - 0.5470431447029114, - 0.6801384687423706, - 0.8109685778617859, - 0.939238429069519 - ], - "yaxis": "y" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9361827969551086, - -0.943364679813385, - -0.9496947526931763, - -0.9550598859786987, - -0.9593560099601746, - -0.9624941349029541, - -0.9644058346748352, - -0.9650479555130005, - -0.9644058346748352, - -0.9624941349029541, - -0.9593560099601746, - -0.9550598859786987, - -0.9496947526931763, - -0.943364679813385, - -0.9361827969551086, - -0.8085982799530029, - -0.8150332570075989, - -0.8207152485847473, - -0.8255390524864197, - -0.8294072151184082, - -0.8322358131408691, - -0.8339602947235107, - -0.8345397710800171, - -0.8339602947235107, - -0.8322358131408691, - -0.8294072151184082, - -0.8255390524864197, - -0.8207152485847473, - -0.8150332570075989, - -0.8085982799530029, - -0.6783533692359924, - -0.6839293837547302, - -0.6888613104820251, - -0.6930546760559082, - -0.6964215636253357, - -0.6988863348960876, - -0.700390100479126, - -0.7008955478668213, - -0.700390100479126, - -0.6988863348960876, - -0.6964215636253357, - -0.6930546760559082, - -0.6888613104820251, - -0.6839293837547302, - -0.6783533692359924, - -0.5457484722137451, - -0.550359308719635, - -0.5544436573982239, - -0.5579211115837097, - -0.5607163906097412, - -0.5627646446228027, - -0.5640149712562561, - -0.5644354224205017, - -0.5640149712562561, - -0.5627646446228027, - -0.5607163906097412, - -0.5579211115837097, - -0.5544436573982239, - -0.550359308719635, - -0.5457484722137451, - -0.41115254163742065, - -0.4147035777568817, - -0.41785290837287903, - -0.4205372929573059, - -0.4226972460746765, - -0.4242810904979706, - -0.42524853348731995, - -0.4255739748477936, - -0.42524853348731995, - -0.4242810904979706, - -0.4226972460746765, - -0.4205372929573059, - -0.41785290837287903, - -0.4147035777568817, - -0.41115254163742065, - -0.2749983072280884, - -0.27741193771362305, - -0.2795545160770416, - -0.28138232231140137, - -0.2828540802001953, - -0.2839339077472687, - -0.28459376096725464, - -0.28481578826904297, - -0.28459376096725464, - -0.2839339077472687, - -0.2828540802001953, - -0.28138232231140137, - -0.2795545160770416, - -0.27741193771362305, - -0.2749983072280884, - -0.13777221739292145, - -0.13899333775043488, - -0.14007797837257385, - -0.14100371301174164, - -0.14174948632717133, - -0.14229685068130493, - -0.1426314264535904, - -0.14274398982524872, - -0.1426314264535904, - -0.14229685068130493, - -0.14174948632717133, - -0.14100371301174164, - -0.14007797837257385, - -0.13899333775043488, - -0.13777221739292145, - -4.3141007211033866e-8, - -4.352464344492546e-8, - -4.386546237356015e-8, - -4.415640475485816e-8, - -4.439082701424013e-8, - -4.456290270127283e-8, - -4.466808789516108e-8, - -4.470348358154297e-8, - -4.466808789516108e-8, - -4.456290270127283e-8, - -4.439082701424013e-8, - -4.415640475485816e-8, - -4.386546237356015e-8, - -4.352464344492546e-8, - -4.3141007211033866e-8, - 0.13777221739292145, - 0.13899333775043488, - 0.14007797837257385, - 0.14100371301174164, - 0.14174948632717133, - 0.14229685068130493, - 0.1426314264535904, - 0.14274398982524872, - 0.1426314264535904, - 0.14229685068130493, - 0.14174948632717133, - 0.14100371301174164, - 0.14007797837257385, - 0.13899333775043488, - 0.13777221739292145, - 0.2749983072280884, - 0.27741193771362305, - 0.2795545160770416, - 0.28138232231140137, - 0.2828540802001953, - 0.2839339077472687, - 0.28459376096725464, - 0.28481578826904297, - 0.28459376096725464, - 0.2839339077472687, - 0.2828540802001953, - 0.28138232231140137, - 0.2795545160770416, - 0.27741193771362305, - 0.2749983072280884, - 0.41115254163742065, - 0.4147035777568817, - 0.41785290837287903, - 0.4205372929573059, - 0.4226972460746765, - 0.4242810904979706, - 0.42524853348731995, - 0.4255739748477936, - 0.42524853348731995, - 0.4242810904979706, - 0.4226972460746765, - 0.4205372929573059, - 0.41785290837287903, - 0.4147035777568817, - 0.41115254163742065, - 0.5457484722137451, - 0.550359308719635, - 0.5544436573982239, - 0.5579211115837097, - 0.5607163906097412, - 0.5627646446228027, - 0.5640149712562561, - 0.5644354224205017, - 0.5640149712562561, - 0.5627646446228027, - 0.5607163906097412, - 0.5579211115837097, - 0.5544436573982239, - 0.550359308719635, - 0.5457484722137451, - 0.6783533692359924, - 0.6839293837547302, - 0.6888613104820251, - 0.6930546760559082, - 0.6964215636253357, - 0.6988863348960876, - 0.700390100479126, - 0.7008955478668213, - 0.700390100479126, - 0.6988863348960876, - 0.6964215636253357, - 0.6930546760559082, - 0.6888613104820251, - 0.6839293837547302, - 0.6783533692359924, - 0.8085982799530029, - 0.8150332570075989, - 0.8207152485847473, - 0.8255390524864197, - 0.8294072151184082, - 0.8322358131408691, - 0.8339602947235107, - 0.8345397710800171, - 0.8339602947235107, - 0.8322358131408691, - 0.8294072151184082, - 0.8255390524864197, - 0.8207152485847473, - 0.8150332570075989, - 0.8085982799530029, - 0.9361827969551086, - 0.943364679813385, - 0.9496947526931763, - 0.9550598859786987, - 0.9593560099601746, - 0.9624941349029541, - 0.9644058346748352, - 0.9650479555130005, - 0.9644058346748352, - 0.9624941349029541, - 0.9593560099601746, - 0.9550598859786987, - 0.9496947526931763, - 0.943364679813385, - 0.9361827969551086 - ], - "xaxis": "x", - "y": [ - -0.9361827969551086, - -0.8085982799530029, - -0.6783533692359924, - -0.5457484722137451, - -0.41115254163742065, - -0.2749983072280884, - -0.13777221739292145, - -4.3141007211033866e-8, - 0.13777221739292145, - 0.2749983072280884, - 0.41115254163742065, - 0.5457484722137451, - 0.6783533692359924, - 0.8085982799530029, - 0.9361827969551086, - -0.943364679813385, - -0.8150332570075989, - -0.6839293837547302, - -0.550359308719635, - -0.4147035777568817, - -0.27741193771362305, - -0.13899333775043488, - -4.352464344492546e-8, - 0.13899333775043488, - 0.27741193771362305, - 0.4147035777568817, - 0.550359308719635, - 0.6839293837547302, - 0.8150332570075989, - 0.943364679813385, - -0.9496947526931763, - -0.8207152485847473, - -0.6888613104820251, - -0.5544436573982239, - -0.41785290837287903, - -0.2795545160770416, - -0.14007797837257385, - -4.386546237356015e-8, - 0.14007797837257385, - 0.2795545160770416, - 0.41785290837287903, - 0.5544436573982239, - 0.6888613104820251, - 0.8207152485847473, - 0.9496947526931763, - -0.9550598859786987, - -0.8255390524864197, - -0.6930546760559082, - -0.5579211115837097, - -0.4205372929573059, - -0.28138232231140137, - -0.14100371301174164, - -4.415640475485816e-8, - 0.14100371301174164, - 0.28138232231140137, - 0.4205372929573059, - 0.5579211115837097, - 0.6930546760559082, - 0.8255390524864197, - 0.9550598859786987, - -0.9593560099601746, - -0.8294072151184082, - -0.6964215636253357, - -0.5607163906097412, - -0.4226972460746765, - -0.2828540802001953, - -0.14174948632717133, - -4.439082701424013e-8, - 0.14174948632717133, - 0.2828540802001953, - 0.4226972460746765, - 0.5607163906097412, - 0.6964215636253357, - 0.8294072151184082, - 0.9593560099601746, - -0.9624941349029541, - -0.8322358131408691, - -0.6988863348960876, - -0.5627646446228027, - -0.4242810904979706, - -0.2839339077472687, - -0.14229685068130493, - -4.456290270127283e-8, - 0.14229685068130493, - 0.2839339077472687, - 0.4242810904979706, - 0.5627646446228027, - 0.6988863348960876, - 0.8322358131408691, - 0.9624941349029541, - -0.9644058346748352, - -0.8339602947235107, - -0.700390100479126, - -0.5640149712562561, - -0.42524853348731995, - -0.28459376096725464, - -0.1426314264535904, - -4.466808789516108e-8, - 0.1426314264535904, - 0.28459376096725464, - 0.42524853348731995, - 0.5640149712562561, - 0.700390100479126, - 0.8339602947235107, - 0.9644058346748352, - -0.9650479555130005, - -0.8345397710800171, - -0.7008955478668213, - -0.5644354224205017, - -0.4255739748477936, - -0.28481578826904297, - -0.14274398982524872, - -4.470348358154297e-8, - 0.14274398982524872, - 0.28481578826904297, - 0.4255739748477936, - 0.5644354224205017, - 0.7008955478668213, - 0.8345397710800171, - 0.9650479555130005, - -0.9644058346748352, - -0.8339602947235107, - -0.700390100479126, - -0.5640149712562561, - -0.42524853348731995, - -0.28459376096725464, - -0.1426314264535904, - -4.466808789516108e-8, - 0.1426314264535904, - 0.28459376096725464, - 0.42524853348731995, - 0.5640149712562561, - 0.700390100479126, - 0.8339602947235107, - 0.9644058346748352, - -0.9624941349029541, - -0.8322358131408691, - -0.6988863348960876, - -0.5627646446228027, - -0.4242810904979706, - -0.2839339077472687, - -0.14229685068130493, - -4.456290270127283e-8, - 0.14229685068130493, - 0.2839339077472687, - 0.4242810904979706, - 0.5627646446228027, - 0.6988863348960876, - 0.8322358131408691, - 0.9624941349029541, - -0.9593560099601746, - -0.8294072151184082, - -0.6964215636253357, - -0.5607163906097412, - -0.4226972460746765, - -0.2828540802001953, - -0.14174948632717133, - -4.439082701424013e-8, - 0.14174948632717133, - 0.2828540802001953, - 0.4226972460746765, - 0.5607163906097412, - 0.6964215636253357, - 0.8294072151184082, - 0.9593560099601746, - -0.9550598859786987, - -0.8255390524864197, - -0.6930546760559082, - -0.5579211115837097, - -0.4205372929573059, - -0.28138232231140137, - -0.14100371301174164, - -4.415640475485816e-8, - 0.14100371301174164, - 0.28138232231140137, - 0.4205372929573059, - 0.5579211115837097, - 0.6930546760559082, - 0.8255390524864197, - 0.9550598859786987, - -0.9496947526931763, - -0.8207152485847473, - -0.6888613104820251, - -0.5544436573982239, - -0.41785290837287903, - -0.2795545160770416, - -0.14007797837257385, - -4.386546237356015e-8, - 0.14007797837257385, - 0.2795545160770416, - 0.41785290837287903, - 0.5544436573982239, - 0.6888613104820251, - 0.8207152485847473, - 0.9496947526931763, - -0.943364679813385, - -0.8150332570075989, - -0.6839293837547302, - -0.550359308719635, - -0.4147035777568817, - -0.27741193771362305, - -0.13899333775043488, - -4.352464344492546e-8, - 0.13899333775043488, - 0.27741193771362305, - 0.4147035777568817, - 0.550359308719635, - 0.6839293837547302, - 0.8150332570075989, - 0.943364679813385, - -0.9361827969551086, - -0.8085982799530029, - -0.6783533692359924, - -0.5457484722137451, - -0.41115254163742065, - -0.2749983072280884, - -0.13777221739292145, - -4.3141007211033866e-8, - 0.13777221739292145, - 0.2749983072280884, - 0.41115254163742065, - 0.5457484722137451, - 0.6783533692359924, - 0.8085982799530029, - 0.9361827969551086 - ], - "yaxis": "y" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9331827163696289, - -0.9406448006629944, - -0.9472327828407288, - -0.9528246521949768, - -0.9573080539703369, - -0.9605861902236938, - -0.9625846147537231, - -0.9632561802864075, - -0.9625846147537231, - -0.9605861902236938, - -0.9573080539703369, - -0.9528246521949768, - -0.9472327828407288, - -0.9406448006629944, - -0.9331827163696289, - -0.8062669634819031, - -0.8129649758338928, - -0.8188900351524353, - -0.8239283561706543, - -0.8279740214347839, - -0.8309357166290283, - -0.8327428102493286, - -0.8333503007888794, - -0.8327428102493286, - -0.8309357166290283, - -0.8279740214347839, - -0.8239283561706543, - -0.8188900351524353, - -0.8129649758338928, - -0.8062669634819031, - -0.6765948534011841, - -0.6824083924293518, - -0.6875604391098022, - -0.6919487118721008, - -0.6954775452613831, - -0.698063850402832, - -0.6996430158615112, - -0.70017409324646, - -0.6996430158615112, - -0.698063850402832, - -0.6954775452613831, - -0.6919487118721008, - -0.6875604391098022, - -0.6824083924293518, - -0.6765948534011841, - -0.5444712042808533, - -0.5492855310440063, - -0.5535589456558228, - -0.5572041869163513, - -0.5601392388343811, - -0.5622925758361816, - -0.5636082887649536, - -0.5640509724617004, - -0.5636082887649536, - -0.5622925758361816, - -0.5601392388343811, - -0.5572041869163513, - -0.5535589456558228, - -0.5492855310440063, - -0.5444712042808533, - -0.410274863243103, - -0.4139869809150696, - -0.4172864854335785, - -0.42010441422462463, - -0.42237573862075806, - -0.42404353618621826, - -0.42506325244903564, - -0.42540645599365234, - -0.42506325244903564, - -0.42404353618621826, - -0.42237573862075806, - -0.42010441422462463, - -0.4172864854335785, - -0.4139869809150696, - -0.410274863243103, - -0.27445319294929504, - -0.2769785523414612, - -0.27922549843788147, - -0.2811462879180908, - -0.2826957106590271, - -0.28383415937423706, - -0.28453055024147034, - -0.28476494550704956, - -0.28453055024147034, - -0.28383415937423706, - -0.2826957106590271, - -0.2811462879180908, - -0.27922549843788147, - -0.2769785523414612, - -0.27445319294929504, - -0.13751204311847687, - -0.13879042863845825, - -0.13992856442928314, - -0.14090204238891602, - -0.14168772101402283, - -0.14226524531841278, - -0.1426185965538025, - -0.14273755252361298, - -0.1426185965538025, - -0.14226524531841278, - -0.14168772101402283, - -0.14090204238891602, - -0.13992856442928314, - -0.13879042863845825, - -0.13751204311847687, - -4.306090772843163e-8, - -4.3462605958666245e-8, - -4.3820307382702595e-8, - -4.4126327480853433e-8, - -4.437335121565411e-8, - -4.455495172805968e-8, - -4.46660735065052e-8, - -4.470348358154297e-8, - -4.46660735065052e-8, - -4.455495172805968e-8, - -4.437335121565411e-8, - -4.4126327480853433e-8, - -4.3820307382702595e-8, - -4.3462605958666245e-8, - -4.306090772843163e-8, - 0.13751204311847687, - 0.13879042863845825, - 0.13992856442928314, - 0.14090204238891602, - 0.14168772101402283, - 0.14226524531841278, - 0.1426185965538025, - 0.14273755252361298, - 0.1426185965538025, - 0.14226524531841278, - 0.14168772101402283, - 0.14090204238891602, - 0.13992856442928314, - 0.13879042863845825, - 0.13751204311847687, - 0.27445319294929504, - 0.2769785523414612, - 0.27922549843788147, - 0.2811462879180908, - 0.2826957106590271, - 0.28383415937423706, - 0.28453055024147034, - 0.28476494550704956, - 0.28453055024147034, - 0.28383415937423706, - 0.2826957106590271, - 0.2811462879180908, - 0.27922549843788147, - 0.2769785523414612, - 0.27445319294929504, - 0.410274863243103, - 0.4139869809150696, - 0.4172864854335785, - 0.42010441422462463, - 0.42237573862075806, - 0.42404353618621826, - 0.42506325244903564, - 0.42540645599365234, - 0.42506325244903564, - 0.42404353618621826, - 0.42237573862075806, - 0.42010441422462463, - 0.4172864854335785, - 0.4139869809150696, - 0.410274863243103, - 0.5444712042808533, - 0.5492855310440063, - 0.5535589456558228, - 0.5572041869163513, - 0.5601392388343811, - 0.5622925758361816, - 0.5636082887649536, - 0.5640509724617004, - 0.5636082887649536, - 0.5622925758361816, - 0.5601392388343811, - 0.5572041869163513, - 0.5535589456558228, - 0.5492855310440063, - 0.5444712042808533, - 0.6765948534011841, - 0.6824083924293518, - 0.6875604391098022, - 0.6919487118721008, - 0.6954775452613831, - 0.698063850402832, - 0.6996430158615112, - 0.70017409324646, - 0.6996430158615112, - 0.698063850402832, - 0.6954775452613831, - 0.6919487118721008, - 0.6875604391098022, - 0.6824083924293518, - 0.6765948534011841, - 0.8062669634819031, - 0.8129649758338928, - 0.8188900351524353, - 0.8239283561706543, - 0.8279740214347839, - 0.8309357166290283, - 0.8327428102493286, - 0.8333503007888794, - 0.8327428102493286, - 0.8309357166290283, - 0.8279740214347839, - 0.8239283561706543, - 0.8188900351524353, - 0.8129649758338928, - 0.8062669634819031, - 0.9331827163696289, - 0.9406448006629944, - 0.9472327828407288, - 0.9528246521949768, - 0.9573080539703369, - 0.9605861902236938, - 0.9625846147537231, - 0.9632561802864075, - 0.9625846147537231, - 0.9605861902236938, - 0.9573080539703369, - 0.9528246521949768, - 0.9472327828407288, - 0.9406448006629944, - 0.9331827163696289 - ], - "xaxis": "x", - "y": [ - -0.9331827163696289, - -0.8062669634819031, - -0.6765948534011841, - -0.5444712042808533, - -0.410274863243103, - -0.27445319294929504, - -0.13751204311847687, - -4.306090772843163e-8, - 0.13751204311847687, - 0.27445319294929504, - 0.410274863243103, - 0.5444712042808533, - 0.6765948534011841, - 0.8062669634819031, - 0.9331827163696289, - -0.9406448006629944, - -0.8129649758338928, - -0.6824083924293518, - -0.5492855310440063, - -0.4139869809150696, - -0.2769785523414612, - -0.13879042863845825, - -4.3462605958666245e-8, - 0.13879042863845825, - 0.2769785523414612, - 0.4139869809150696, - 0.5492855310440063, - 0.6824083924293518, - 0.8129649758338928, - 0.9406448006629944, - -0.9472327828407288, - -0.8188900351524353, - -0.6875604391098022, - -0.5535589456558228, - -0.4172864854335785, - -0.27922549843788147, - -0.13992856442928314, - -4.3820307382702595e-8, - 0.13992856442928314, - 0.27922549843788147, - 0.4172864854335785, - 0.5535589456558228, - 0.6875604391098022, - 0.8188900351524353, - 0.9472327828407288, - -0.9528246521949768, - -0.8239283561706543, - -0.6919487118721008, - -0.5572041869163513, - -0.42010441422462463, - -0.2811462879180908, - -0.14090204238891602, - -4.4126327480853433e-8, - 0.14090204238891602, - 0.2811462879180908, - 0.42010441422462463, - 0.5572041869163513, - 0.6919487118721008, - 0.8239283561706543, - 0.9528246521949768, - -0.9573080539703369, - -0.8279740214347839, - -0.6954775452613831, - -0.5601392388343811, - -0.42237573862075806, - -0.2826957106590271, - -0.14168772101402283, - -4.437335121565411e-8, - 0.14168772101402283, - 0.2826957106590271, - 0.42237573862075806, - 0.5601392388343811, - 0.6954775452613831, - 0.8279740214347839, - 0.9573080539703369, - -0.9605861902236938, - -0.8309357166290283, - -0.698063850402832, - -0.5622925758361816, - -0.42404353618621826, - -0.28383415937423706, - -0.14226524531841278, - -4.455495172805968e-8, - 0.14226524531841278, - 0.28383415937423706, - 0.42404353618621826, - 0.5622925758361816, - 0.698063850402832, - 0.8309357166290283, - 0.9605861902236938, - -0.9625846147537231, - -0.8327428102493286, - -0.6996430158615112, - -0.5636082887649536, - -0.42506325244903564, - -0.28453055024147034, - -0.1426185965538025, - -4.46660735065052e-8, - 0.1426185965538025, - 0.28453055024147034, - 0.42506325244903564, - 0.5636082887649536, - 0.6996430158615112, - 0.8327428102493286, - 0.9625846147537231, - -0.9632561802864075, - -0.8333503007888794, - -0.70017409324646, - -0.5640509724617004, - -0.42540645599365234, - -0.28476494550704956, - -0.14273755252361298, - -4.470348358154297e-8, - 0.14273755252361298, - 0.28476494550704956, - 0.42540645599365234, - 0.5640509724617004, - 0.70017409324646, - 0.8333503007888794, - 0.9632561802864075, - -0.9625846147537231, - -0.8327428102493286, - -0.6996430158615112, - -0.5636082887649536, - -0.42506325244903564, - -0.28453055024147034, - -0.1426185965538025, - -4.46660735065052e-8, - 0.1426185965538025, - 0.28453055024147034, - 0.42506325244903564, - 0.5636082887649536, - 0.6996430158615112, - 0.8327428102493286, - 0.9625846147537231, - -0.9605861902236938, - -0.8309357166290283, - -0.698063850402832, - -0.5622925758361816, - -0.42404353618621826, - -0.28383415937423706, - -0.14226524531841278, - -4.455495172805968e-8, - 0.14226524531841278, - 0.28383415937423706, - 0.42404353618621826, - 0.5622925758361816, - 0.698063850402832, - 0.8309357166290283, - 0.9605861902236938, - -0.9573080539703369, - -0.8279740214347839, - -0.6954775452613831, - -0.5601392388343811, - -0.42237573862075806, - -0.2826957106590271, - -0.14168772101402283, - -4.437335121565411e-8, - 0.14168772101402283, - 0.2826957106590271, - 0.42237573862075806, - 0.5601392388343811, - 0.6954775452613831, - 0.8279740214347839, - 0.9573080539703369, - -0.9528246521949768, - -0.8239283561706543, - -0.6919487118721008, - -0.5572041869163513, - -0.42010441422462463, - -0.2811462879180908, - -0.14090204238891602, - -4.4126327480853433e-8, - 0.14090204238891602, - 0.2811462879180908, - 0.42010441422462463, - 0.5572041869163513, - 0.6919487118721008, - 0.8239283561706543, - 0.9528246521949768, - -0.9472327828407288, - -0.8188900351524353, - -0.6875604391098022, - -0.5535589456558228, - -0.4172864854335785, - -0.27922549843788147, - -0.13992856442928314, - -4.3820307382702595e-8, - 0.13992856442928314, - 0.27922549843788147, - 0.4172864854335785, - 0.5535589456558228, - 0.6875604391098022, - 0.8188900351524353, - 0.9472327828407288, - -0.9406448006629944, - -0.8129649758338928, - -0.6824083924293518, - -0.5492855310440063, - -0.4139869809150696, - -0.2769785523414612, - -0.13879042863845825, - -4.3462605958666245e-8, - 0.13879042863845825, - 0.2769785523414612, - 0.4139869809150696, - 0.5492855310440063, - 0.6824083924293518, - 0.8129649758338928, - 0.9406448006629944, - -0.9331827163696289, - -0.8062669634819031, - -0.6765948534011841, - -0.5444712042808533, - -0.410274863243103, - -0.27445319294929504, - -0.13751204311847687, - -4.306090772843163e-8, - 0.13751204311847687, - 0.27445319294929504, - 0.410274863243103, - 0.5444712042808533, - 0.6765948534011841, - 0.8062669634819031, - 0.9331827163696289 - ], - "yaxis": "y" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9302360415458679, - -0.9379688501358032, - -0.944806694984436, - -0.950619101524353, - -0.9552850127220154, - -0.9587000012397766, - -0.9607832431793213, - -0.9614834189414978, - -0.9607832431793213, - -0.9587000012397766, - -0.9552850127220154, - -0.950619101524353, - -0.944806694984436, - -0.9379688501358032, - -0.9302360415458679, - -0.8039733171463013, - -0.8109264373779297, - -0.8170880079269409, - -0.8223355412483215, - -0.8265551328659058, - -0.829647421836853, - -0.8315355777740479, - -0.8321705460548401, - -0.8315355777740479, - -0.829647421836853, - -0.8265551328659058, - -0.8223355412483215, - -0.8170880079269409, - -0.8109264373779297, - -0.8039733171463013, - -0.6748619675636292, - -0.6809066534042358, - -0.6862737536430359, - -0.6908530592918396, - -0.6945408582687378, - -0.6972469091415405, - -0.6989006400108337, - -0.6994569301605225, - -0.6989006400108337, - -0.6972469091415405, - -0.6945408582687378, - -0.6908530592918396, - -0.6862737536430359, - -0.6809066534042358, - -0.6748619675636292, - -0.5432108640670776, - -0.5482236742973328, - -0.5526823997497559, - -0.5564926862716675, - -0.5595654845237732, - -0.561822772026062, - -0.5632033348083496, - -0.5636679530143738, - -0.5632033348083496, - -0.561822772026062, - -0.5595654845237732, - -0.5564926862716675, - -0.5526823997497559, - -0.5482236742973328, - -0.5432108640670776, - -0.4094078540802002, - -0.4132775366306305, - -0.41672447323799133, - -0.4196741282939911, - -0.422055721282959, - -0.4238068163394928, - -0.42487844824790955, - -0.42523929476737976, - -0.42487844824790955, - -0.4238068163394928, - -0.422055721282959, - -0.4196741282939911, - -0.41672447323799133, - -0.4132775366306305, - -0.4094078540802002, - -0.27391427755355835, - -0.2765491306781769, - -0.2788987457752228, - -0.280911386013031, - -0.28253787755966187, - -0.28373461961746216, - -0.2844673991203308, - -0.28471413254737854, - -0.2844673991203308, - -0.28373461961746216, - -0.28253787755966187, - -0.280911386013031, - -0.2788987457752228, - -0.2765491306781769, - -0.27391427755355835, - -0.1372547149658203, - -0.13858921825885773, - -0.13978008925914764, - -0.14080080389976501, - -0.14162611961364746, - -0.14223366975784302, - -0.1426057666540146, - -0.14273111522197723, - -0.1426057666540146, - -0.14223366975784302, - -0.14162611961364746, - -0.14080080389976501, - -0.13978008925914764, - -0.13858921825885773, - -0.1372547149658203, - -4.298165734439863e-8, - -4.34010765104631e-8, - -4.377542595079831e-8, - -4.409636744640011e-8, - -4.435591804963224e-8, - -4.454700075484652e-8, - -4.466405556513564e-8, - -4.470348358154297e-8, - -4.466405556513564e-8, - -4.454700075484652e-8, - -4.435591804963224e-8, - -4.409636744640011e-8, - -4.377542595079831e-8, - -4.34010765104631e-8, - -4.298165734439863e-8, - 0.1372547149658203, - 0.13858921825885773, - 0.13978008925914764, - 0.14080080389976501, - 0.14162611961364746, - 0.14223366975784302, - 0.1426057666540146, - 0.14273111522197723, - 0.1426057666540146, - 0.14223366975784302, - 0.14162611961364746, - 0.14080080389976501, - 0.13978008925914764, - 0.13858921825885773, - 0.1372547149658203, - 0.27391427755355835, - 0.2765491306781769, - 0.2788987457752228, - 0.280911386013031, - 0.28253787755966187, - 0.28373461961746216, - 0.2844673991203308, - 0.28471413254737854, - 0.2844673991203308, - 0.28373461961746216, - 0.28253787755966187, - 0.280911386013031, - 0.2788987457752228, - 0.2765491306781769, - 0.27391427755355835, - 0.4094078540802002, - 0.4132775366306305, - 0.41672447323799133, - 0.4196741282939911, - 0.422055721282959, - 0.4238068163394928, - 0.42487844824790955, - 0.42523929476737976, - 0.42487844824790955, - 0.4238068163394928, - 0.422055721282959, - 0.4196741282939911, - 0.41672447323799133, - 0.4132775366306305, - 0.4094078540802002, - 0.5432108640670776, - 0.5482236742973328, - 0.5526823997497559, - 0.5564926862716675, - 0.5595654845237732, - 0.561822772026062, - 0.5632033348083496, - 0.5636679530143738, - 0.5632033348083496, - 0.561822772026062, - 0.5595654845237732, - 0.5564926862716675, - 0.5526823997497559, - 0.5482236742973328, - 0.5432108640670776, - 0.6748619675636292, - 0.6809066534042358, - 0.6862737536430359, - 0.6908530592918396, - 0.6945408582687378, - 0.6972469091415405, - 0.6989006400108337, - 0.6994569301605225, - 0.6989006400108337, - 0.6972469091415405, - 0.6945408582687378, - 0.6908530592918396, - 0.6862737536430359, - 0.6809066534042358, - 0.6748619675636292, - 0.8039733171463013, - 0.8109264373779297, - 0.8170880079269409, - 0.8223355412483215, - 0.8265551328659058, - 0.829647421836853, - 0.8315355777740479, - 0.8321705460548401, - 0.8315355777740479, - 0.829647421836853, - 0.8265551328659058, - 0.8223355412483215, - 0.8170880079269409, - 0.8109264373779297, - 0.8039733171463013, - 0.9302360415458679, - 0.9379688501358032, - 0.944806694984436, - 0.950619101524353, - 0.9552850127220154, - 0.9587000012397766, - 0.9607832431793213, - 0.9614834189414978, - 0.9607832431793213, - 0.9587000012397766, - 0.9552850127220154, - 0.950619101524353, - 0.944806694984436, - 0.9379688501358032, - 0.9302360415458679 - ], - "xaxis": "x", - "y": [ - -0.9302360415458679, - -0.8039733171463013, - -0.6748619675636292, - -0.5432108640670776, - -0.4094078540802002, - -0.27391427755355835, - -0.1372547149658203, - -4.298165734439863e-8, - 0.1372547149658203, - 0.27391427755355835, - 0.4094078540802002, - 0.5432108640670776, - 0.6748619675636292, - 0.8039733171463013, - 0.9302360415458679, - -0.9379688501358032, - -0.8109264373779297, - -0.6809066534042358, - -0.5482236742973328, - -0.4132775366306305, - -0.2765491306781769, - -0.13858921825885773, - -4.34010765104631e-8, - 0.13858921825885773, - 0.2765491306781769, - 0.4132775366306305, - 0.5482236742973328, - 0.6809066534042358, - 0.8109264373779297, - 0.9379688501358032, - -0.944806694984436, - -0.8170880079269409, - -0.6862737536430359, - -0.5526823997497559, - -0.41672447323799133, - -0.2788987457752228, - -0.13978008925914764, - -4.377542595079831e-8, - 0.13978008925914764, - 0.2788987457752228, - 0.41672447323799133, - 0.5526823997497559, - 0.6862737536430359, - 0.8170880079269409, - 0.944806694984436, - -0.950619101524353, - -0.8223355412483215, - -0.6908530592918396, - -0.5564926862716675, - -0.4196741282939911, - -0.280911386013031, - -0.14080080389976501, - -4.409636744640011e-8, - 0.14080080389976501, - 0.280911386013031, - 0.4196741282939911, - 0.5564926862716675, - 0.6908530592918396, - 0.8223355412483215, - 0.950619101524353, - -0.9552850127220154, - -0.8265551328659058, - -0.6945408582687378, - -0.5595654845237732, - -0.422055721282959, - -0.28253787755966187, - -0.14162611961364746, - -4.435591804963224e-8, - 0.14162611961364746, - 0.28253787755966187, - 0.422055721282959, - 0.5595654845237732, - 0.6945408582687378, - 0.8265551328659058, - 0.9552850127220154, - -0.9587000012397766, - -0.829647421836853, - -0.6972469091415405, - -0.561822772026062, - -0.4238068163394928, - -0.28373461961746216, - -0.14223366975784302, - -4.454700075484652e-8, - 0.14223366975784302, - 0.28373461961746216, - 0.4238068163394928, - 0.561822772026062, - 0.6972469091415405, - 0.829647421836853, - 0.9587000012397766, - -0.9607832431793213, - -0.8315355777740479, - -0.6989006400108337, - -0.5632033348083496, - -0.42487844824790955, - -0.2844673991203308, - -0.1426057666540146, - -4.466405556513564e-8, - 0.1426057666540146, - 0.2844673991203308, - 0.42487844824790955, - 0.5632033348083496, - 0.6989006400108337, - 0.8315355777740479, - 0.9607832431793213, - -0.9614834189414978, - -0.8321705460548401, - -0.6994569301605225, - -0.5636679530143738, - -0.42523929476737976, - -0.28471413254737854, - -0.14273111522197723, - -4.470348358154297e-8, - 0.14273111522197723, - 0.28471413254737854, - 0.42523929476737976, - 0.5636679530143738, - 0.6994569301605225, - 0.8321705460548401, - 0.9614834189414978, - -0.9607832431793213, - -0.8315355777740479, - -0.6989006400108337, - -0.5632033348083496, - -0.42487844824790955, - -0.2844673991203308, - -0.1426057666540146, - -4.466405556513564e-8, - 0.1426057666540146, - 0.2844673991203308, - 0.42487844824790955, - 0.5632033348083496, - 0.6989006400108337, - 0.8315355777740479, - 0.9607832431793213, - -0.9587000012397766, - -0.829647421836853, - -0.6972469091415405, - -0.561822772026062, - -0.4238068163394928, - -0.28373461961746216, - -0.14223366975784302, - -4.454700075484652e-8, - 0.14223366975784302, - 0.28373461961746216, - 0.4238068163394928, - 0.561822772026062, - 0.6972469091415405, - 0.829647421836853, - 0.9587000012397766, - -0.9552850127220154, - -0.8265551328659058, - -0.6945408582687378, - -0.5595654845237732, - -0.422055721282959, - -0.28253787755966187, - -0.14162611961364746, - -4.435591804963224e-8, - 0.14162611961364746, - 0.28253787755966187, - 0.422055721282959, - 0.5595654845237732, - 0.6945408582687378, - 0.8265551328659058, - 0.9552850127220154, - -0.950619101524353, - -0.8223355412483215, - -0.6908530592918396, - -0.5564926862716675, - -0.4196741282939911, - -0.280911386013031, - -0.14080080389976501, - -4.409636744640011e-8, - 0.14080080389976501, - 0.280911386013031, - 0.4196741282939911, - 0.5564926862716675, - 0.6908530592918396, - 0.8223355412483215, - 0.950619101524353, - -0.944806694984436, - -0.8170880079269409, - -0.6862737536430359, - -0.5526823997497559, - -0.41672447323799133, - -0.2788987457752228, - -0.13978008925914764, - -4.377542595079831e-8, - 0.13978008925914764, - 0.2788987457752228, - 0.41672447323799133, - 0.5526823997497559, - 0.6862737536430359, - 0.8170880079269409, - 0.944806694984436, - -0.9379688501358032, - -0.8109264373779297, - -0.6809066534042358, - -0.5482236742973328, - -0.4132775366306305, - -0.2765491306781769, - -0.13858921825885773, - -4.34010765104631e-8, - 0.13858921825885773, - 0.2765491306781769, - 0.4132775366306305, - 0.5482236742973328, - 0.6809066534042358, - 0.8109264373779297, - 0.9379688501358032, - -0.9302360415458679, - -0.8039733171463013, - -0.6748619675636292, - -0.5432108640670776, - -0.4094078540802002, - -0.27391427755355835, - -0.1372547149658203, - -4.298165734439863e-8, - 0.1372547149658203, - 0.27391427755355835, - 0.4094078540802002, - 0.5432108640670776, - 0.6748619675636292, - 0.8039733171463013, - 0.9302360415458679 - ], - "yaxis": "y" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9273409843444824, - -0.9353354573249817, - -0.942415714263916, - -0.9484425187110901, - -0.953286349773407, - -0.9568349123001099, - -0.9590011239051819, - -0.9597294330596924, - -0.9590011239051819, - -0.9568349123001099, - -0.953286349773407, - -0.9484425187110901, - -0.942415714263916, - -0.9353354573249817, - -0.9273409843444824, - -0.8017160892486572, - -0.8089166879653931, - -0.8153083920478821, - -0.8207604289054871, - -0.8251502513885498, - -0.8283707499504089, - -0.8303384780883789, - -0.8310004472732544, - -0.8303384780883789, - -0.8283707499504089, - -0.8251502513885498, - -0.8207604289054871, - -0.8153083920478821, - -0.8089166879653931, - -0.8017160892486572, - -0.6731541156768799, - -0.6794236302375793, - -0.6850007772445679, - -0.6897673010826111, - -0.6936115026473999, - -0.6964355707168579, - -0.6981627345085144, - -0.6987441182136536, - -0.6981627345085144, - -0.6964355707168579, - -0.6936115026473999, - -0.6897673010826111, - -0.6850007772445679, - -0.6794236302375793, - -0.6731541156768799, - -0.5419670939445496, - -0.5471735596656799, - -0.5518137812614441, - -0.5557864308357239, - -0.558995246887207, - -0.5613554120063782, - -0.5628001093864441, - -0.5632866024971008, - -0.5628001093864441, - -0.5613554120063782, - -0.558995246887207, - -0.5557864308357239, - -0.5518137812614441, - -0.5471735596656799, - -0.5419670939445496, - -0.40855124592781067, - -0.4125750958919525, - -0.41616687178611755, - -0.4192464351654053, - -0.42173707485198975, - -0.42357081174850464, - -0.42469409108161926, - -0.4250725209712982, - -0.42469409108161926, - -0.42357081174850464, - -0.42173707485198975, - -0.4192464351654053, - -0.41616687178611755, - -0.4125750958919525, - -0.40855124592781067, - -0.27338138222694397, - -0.2761235535144806, - -0.2785741984844208, - -0.2806777060031891, - -0.2823805510997772, - -0.2836352586746216, - -0.28440430760383606, - -0.2846634089946747, - -0.28440430760383606, - -0.2836352586746216, - -0.2823805510997772, - -0.2806777060031891, - -0.2785741984844208, - -0.2761235535144806, - -0.27338138222694397, - -0.13700011372566223, - -0.1383897066116333, - -0.13963250815868378, - -0.14069999754428864, - -0.14156466722488403, - -0.14220212399959564, - -0.14259295165538788, - -0.1427246630191803, - -0.14259295165538788, - -0.14220212399959564, - -0.14156466722488403, - -0.14069999754428864, - -0.13963250815868378, - -0.1383897066116333, - -0.13700011372566223, - -4.29032489535075e-8, - -4.334005154760234e-8, - -4.373081452513361e-8, - -4.4066528204211863e-8, - -4.433852041074715e-8, - -4.453906399248808e-8, - -4.466204117647976e-8, - -4.470348358154297e-8, - -4.466204117647976e-8, - -4.453906399248808e-8, - -4.433852041074715e-8, - -4.4066528204211863e-8, - -4.373081452513361e-8, - -4.334005154760234e-8, - -4.29032489535075e-8, - 0.13700011372566223, - 0.1383897066116333, - 0.13963250815868378, - 0.14069999754428864, - 0.14156466722488403, - 0.14220212399959564, - 0.14259295165538788, - 0.1427246630191803, - 0.14259295165538788, - 0.14220212399959564, - 0.14156466722488403, - 0.14069999754428864, - 0.13963250815868378, - 0.1383897066116333, - 0.13700011372566223, - 0.27338138222694397, - 0.2761235535144806, - 0.2785741984844208, - 0.2806777060031891, - 0.2823805510997772, - 0.2836352586746216, - 0.28440430760383606, - 0.2846634089946747, - 0.28440430760383606, - 0.2836352586746216, - 0.2823805510997772, - 0.2806777060031891, - 0.2785741984844208, - 0.2761235535144806, - 0.27338138222694397, - 0.40855124592781067, - 0.4125750958919525, - 0.41616687178611755, - 0.4192464351654053, - 0.42173707485198975, - 0.42357081174850464, - 0.42469409108161926, - 0.4250725209712982, - 0.42469409108161926, - 0.42357081174850464, - 0.42173707485198975, - 0.4192464351654053, - 0.41616687178611755, - 0.4125750958919525, - 0.40855124592781067, - 0.5419670939445496, - 0.5471735596656799, - 0.5518137812614441, - 0.5557864308357239, - 0.558995246887207, - 0.5613554120063782, - 0.5628001093864441, - 0.5632866024971008, - 0.5628001093864441, - 0.5613554120063782, - 0.558995246887207, - 0.5557864308357239, - 0.5518137812614441, - 0.5471735596656799, - 0.5419670939445496, - 0.6731541156768799, - 0.6794236302375793, - 0.6850007772445679, - 0.6897673010826111, - 0.6936115026473999, - 0.6964355707168579, - 0.6981627345085144, - 0.6987441182136536, - 0.6981627345085144, - 0.6964355707168579, - 0.6936115026473999, - 0.6897673010826111, - 0.6850007772445679, - 0.6794236302375793, - 0.6731541156768799, - 0.8017160892486572, - 0.8089166879653931, - 0.8153083920478821, - 0.8207604289054871, - 0.8251502513885498, - 0.8283707499504089, - 0.8303384780883789, - 0.8310004472732544, - 0.8303384780883789, - 0.8283707499504089, - 0.8251502513885498, - 0.8207604289054871, - 0.8153083920478821, - 0.8089166879653931, - 0.8017160892486572, - 0.9273409843444824, - 0.9353354573249817, - 0.942415714263916, - 0.9484425187110901, - 0.953286349773407, - 0.9568349123001099, - 0.9590011239051819, - 0.9597294330596924, - 0.9590011239051819, - 0.9568349123001099, - 0.953286349773407, - 0.9484425187110901, - 0.942415714263916, - 0.9353354573249817, - 0.9273409843444824 - ], - "xaxis": "x", - "y": [ - -0.9273409843444824, - -0.8017160892486572, - -0.6731541156768799, - -0.5419670939445496, - -0.40855124592781067, - -0.27338138222694397, - -0.13700011372566223, - -4.29032489535075e-8, - 0.13700011372566223, - 0.27338138222694397, - 0.40855124592781067, - 0.5419670939445496, - 0.6731541156768799, - 0.8017160892486572, - 0.9273409843444824, - -0.9353354573249817, - -0.8089166879653931, - -0.6794236302375793, - -0.5471735596656799, - -0.4125750958919525, - -0.2761235535144806, - -0.1383897066116333, - -4.334005154760234e-8, - 0.1383897066116333, - 0.2761235535144806, - 0.4125750958919525, - 0.5471735596656799, - 0.6794236302375793, - 0.8089166879653931, - 0.9353354573249817, - -0.942415714263916, - -0.8153083920478821, - -0.6850007772445679, - -0.5518137812614441, - -0.41616687178611755, - -0.2785741984844208, - -0.13963250815868378, - -4.373081452513361e-8, - 0.13963250815868378, - 0.2785741984844208, - 0.41616687178611755, - 0.5518137812614441, - 0.6850007772445679, - 0.8153083920478821, - 0.942415714263916, - -0.9484425187110901, - -0.8207604289054871, - -0.6897673010826111, - -0.5557864308357239, - -0.4192464351654053, - -0.2806777060031891, - -0.14069999754428864, - -4.4066528204211863e-8, - 0.14069999754428864, - 0.2806777060031891, - 0.4192464351654053, - 0.5557864308357239, - 0.6897673010826111, - 0.8207604289054871, - 0.9484425187110901, - -0.953286349773407, - -0.8251502513885498, - -0.6936115026473999, - -0.558995246887207, - -0.42173707485198975, - -0.2823805510997772, - -0.14156466722488403, - -4.433852041074715e-8, - 0.14156466722488403, - 0.2823805510997772, - 0.42173707485198975, - 0.558995246887207, - 0.6936115026473999, - 0.8251502513885498, - 0.953286349773407, - -0.9568349123001099, - -0.8283707499504089, - -0.6964355707168579, - -0.5613554120063782, - -0.42357081174850464, - -0.2836352586746216, - -0.14220212399959564, - -4.453906399248808e-8, - 0.14220212399959564, - 0.2836352586746216, - 0.42357081174850464, - 0.5613554120063782, - 0.6964355707168579, - 0.8283707499504089, - 0.9568349123001099, - -0.9590011239051819, - -0.8303384780883789, - -0.6981627345085144, - -0.5628001093864441, - -0.42469409108161926, - -0.28440430760383606, - -0.14259295165538788, - -4.466204117647976e-8, - 0.14259295165538788, - 0.28440430760383606, - 0.42469409108161926, - 0.5628001093864441, - 0.6981627345085144, - 0.8303384780883789, - 0.9590011239051819, - -0.9597294330596924, - -0.8310004472732544, - -0.6987441182136536, - -0.5632866024971008, - -0.4250725209712982, - -0.2846634089946747, - -0.1427246630191803, - -4.470348358154297e-8, - 0.1427246630191803, - 0.2846634089946747, - 0.4250725209712982, - 0.5632866024971008, - 0.6987441182136536, - 0.8310004472732544, - 0.9597294330596924, - -0.9590011239051819, - -0.8303384780883789, - -0.6981627345085144, - -0.5628001093864441, - -0.42469409108161926, - -0.28440430760383606, - -0.14259295165538788, - -4.466204117647976e-8, - 0.14259295165538788, - 0.28440430760383606, - 0.42469409108161926, - 0.5628001093864441, - 0.6981627345085144, - 0.8303384780883789, - 0.9590011239051819, - -0.9568349123001099, - -0.8283707499504089, - -0.6964355707168579, - -0.5613554120063782, - -0.42357081174850464, - -0.2836352586746216, - -0.14220212399959564, - -4.453906399248808e-8, - 0.14220212399959564, - 0.2836352586746216, - 0.42357081174850464, - 0.5613554120063782, - 0.6964355707168579, - 0.8283707499504089, - 0.9568349123001099, - -0.953286349773407, - -0.8251502513885498, - -0.6936115026473999, - -0.558995246887207, - -0.42173707485198975, - -0.2823805510997772, - -0.14156466722488403, - -4.433852041074715e-8, - 0.14156466722488403, - 0.2823805510997772, - 0.42173707485198975, - 0.558995246887207, - 0.6936115026473999, - 0.8251502513885498, - 0.953286349773407, - -0.9484425187110901, - -0.8207604289054871, - -0.6897673010826111, - -0.5557864308357239, - -0.4192464351654053, - -0.2806777060031891, - -0.14069999754428864, - -4.4066528204211863e-8, - 0.14069999754428864, - 0.2806777060031891, - 0.4192464351654053, - 0.5557864308357239, - 0.6897673010826111, - 0.8207604289054871, - 0.9484425187110901, - -0.942415714263916, - -0.8153083920478821, - -0.6850007772445679, - -0.5518137812614441, - -0.41616687178611755, - -0.2785741984844208, - -0.13963250815868378, - -4.373081452513361e-8, - 0.13963250815868378, - 0.2785741984844208, - 0.41616687178611755, - 0.5518137812614441, - 0.6850007772445679, - 0.8153083920478821, - 0.942415714263916, - -0.9353354573249817, - -0.8089166879653931, - -0.6794236302375793, - -0.5471735596656799, - -0.4125750958919525, - -0.2761235535144806, - -0.1383897066116333, - -4.334005154760234e-8, - 0.1383897066116333, - 0.2761235535144806, - 0.4125750958919525, - 0.5471735596656799, - 0.6794236302375793, - 0.8089166879653931, - 0.9353354573249817, - -0.9273409843444824, - -0.8017160892486572, - -0.6731541156768799, - -0.5419670939445496, - -0.40855124592781067, - -0.27338138222694397, - -0.13700011372566223, - -4.29032489535075e-8, - 0.13700011372566223, - 0.27338138222694397, - 0.40855124592781067, - 0.5419670939445496, - 0.6731541156768799, - 0.8017160892486572, - 0.9273409843444824 - ], - "yaxis": "y" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9244958758354187, - -0.9327433705329895, - -0.940058708190918, - -0.9462941884994507, - -0.9513115286827087, - -0.9549906253814697, - -0.9572378396987915, - -0.957993745803833, - -0.9572378396987915, - -0.9549906253814697, - -0.9513115286827087, - -0.9462941884994507, - -0.940058708190918, - -0.9327433705329895, - -0.9244958758354187, - -0.7994943261146545, - -0.8069350123405457, - -0.8135508298873901, - -0.8192026019096375, - -0.8237589597702026, - -0.8271051645278931, - -0.8291513323783875, - -0.8298399448394775, - -0.8291513323783875, - -0.8271051645278931, - -0.8237589597702026, - -0.8192026019096375, - -0.8135508298873901, - -0.8069350123405457, - -0.7994943261146545, - -0.6714705228805542, - -0.6779590249061584, - -0.6837413311004639, - -0.6886913776397705, - -0.6926894187927246, - -0.6956297159194946, - -0.6974294781684875, - -0.6980355381965637, - -0.6974294781684875, - -0.6956297159194946, - -0.6926894187927246, - -0.6886913776397705, - -0.6837413311004639, - -0.6779590249061584, - -0.6714705228805542, - -0.5407394766807556, - -0.5461350083351135, - -0.5509530901908875, - -0.5550854206085205, - -0.5584284067153931, - -0.560890257358551, - -0.5623985528945923, - -0.5629066228866577, - -0.5623985528945923, - -0.560890257358551, - -0.5584284067153931, - -0.5550854206085205, - -0.5509530901908875, - -0.5461350083351135, - -0.5407394766807556, - -0.4077049195766449, - -0.41187945008277893, - -0.41561359167099, - -0.4188212752342224, - -0.42141982913017273, - -0.42333561182022095, - -0.42451027035713196, - -0.4249061048030853, - -0.42451027035713196, - -0.42333561182022095, - -0.42141982913017273, - -0.4188212752342224, - -0.41561359167099, - -0.41187945008277893, - -0.4077049195766449, - -0.27285444736480713, - -0.27570170164108276, - -0.27825185656547546, - -0.2804451286792755, - -0.28222373127937317, - -0.2835361659526825, - -0.28434130549430847, - -0.2846127450466156, - -0.28434130549430847, - -0.2835361659526825, - -0.28222373127937317, - -0.2804451286792755, - -0.27825185656547546, - -0.27570170164108276, - -0.27285444736480713, - -0.13674822449684143, - -0.1381918489933014, - -0.13948586583137512, - -0.14059960842132568, - -0.14150339365005493, - -0.14217062294483185, - -0.14258013665676117, - -0.14271822571754456, - -0.14258013665676117, - -0.14217062294483185, - -0.14150339365005493, - -0.14059960842132568, - -0.13948586583137512, - -0.1381918489933014, - -0.13674822449684143, - -4.28256576867625e-8, - -4.32795275173703e-8, - -4.3686466000281143e-8, - -4.403680620157502e-8, - -4.432116540442621e-8, - -4.453113788827068e-8, - -4.46600232351102e-8, - -4.470348358154297e-8, - -4.46600232351102e-8, - -4.453113788827068e-8, - -4.432116540442621e-8, - -4.403680620157502e-8, - -4.3686466000281143e-8, - -4.32795275173703e-8, - -4.28256576867625e-8, - 0.13674822449684143, - 0.1381918489933014, - 0.13948586583137512, - 0.14059960842132568, - 0.14150339365005493, - 0.14217062294483185, - 0.14258013665676117, - 0.14271822571754456, - 0.14258013665676117, - 0.14217062294483185, - 0.14150339365005493, - 0.14059960842132568, - 0.13948586583137512, - 0.1381918489933014, - 0.13674822449684143, - 0.27285444736480713, - 0.27570170164108276, - 0.27825185656547546, - 0.2804451286792755, - 0.28222373127937317, - 0.2835361659526825, - 0.28434130549430847, - 0.2846127450466156, - 0.28434130549430847, - 0.2835361659526825, - 0.28222373127937317, - 0.2804451286792755, - 0.27825185656547546, - 0.27570170164108276, - 0.27285444736480713, - 0.4077049195766449, - 0.41187945008277893, - 0.41561359167099, - 0.4188212752342224, - 0.42141982913017273, - 0.42333561182022095, - 0.42451027035713196, - 0.4249061048030853, - 0.42451027035713196, - 0.42333561182022095, - 0.42141982913017273, - 0.4188212752342224, - 0.41561359167099, - 0.41187945008277893, - 0.4077049195766449, - 0.5407394766807556, - 0.5461350083351135, - 0.5509530901908875, - 0.5550854206085205, - 0.5584284067153931, - 0.560890257358551, - 0.5623985528945923, - 0.5629066228866577, - 0.5623985528945923, - 0.560890257358551, - 0.5584284067153931, - 0.5550854206085205, - 0.5509530901908875, - 0.5461350083351135, - 0.5407394766807556, - 0.6714705228805542, - 0.6779590249061584, - 0.6837413311004639, - 0.6886913776397705, - 0.6926894187927246, - 0.6956297159194946, - 0.6974294781684875, - 0.6980355381965637, - 0.6974294781684875, - 0.6956297159194946, - 0.6926894187927246, - 0.6886913776397705, - 0.6837413311004639, - 0.6779590249061584, - 0.6714705228805542, - 0.7994943261146545, - 0.8069350123405457, - 0.8135508298873901, - 0.8192026019096375, - 0.8237589597702026, - 0.8271051645278931, - 0.8291513323783875, - 0.8298399448394775, - 0.8291513323783875, - 0.8271051645278931, - 0.8237589597702026, - 0.8192026019096375, - 0.8135508298873901, - 0.8069350123405457, - 0.7994943261146545, - 0.9244958758354187, - 0.9327433705329895, - 0.940058708190918, - 0.9462941884994507, - 0.9513115286827087, - 0.9549906253814697, - 0.9572378396987915, - 0.957993745803833, - 0.9572378396987915, - 0.9549906253814697, - 0.9513115286827087, - 0.9462941884994507, - 0.940058708190918, - 0.9327433705329895, - 0.9244958758354187 - ], - "xaxis": "x", - "y": [ - -0.9244958758354187, - -0.7994943261146545, - -0.6714705228805542, - -0.5407394766807556, - -0.4077049195766449, - -0.27285444736480713, - -0.13674822449684143, - -4.28256576867625e-8, - 0.13674822449684143, - 0.27285444736480713, - 0.4077049195766449, - 0.5407394766807556, - 0.6714705228805542, - 0.7994943261146545, - 0.9244958758354187, - -0.9327433705329895, - -0.8069350123405457, - -0.6779590249061584, - -0.5461350083351135, - -0.41187945008277893, - -0.27570170164108276, - -0.1381918489933014, - -4.32795275173703e-8, - 0.1381918489933014, - 0.27570170164108276, - 0.41187945008277893, - 0.5461350083351135, - 0.6779590249061584, - 0.8069350123405457, - 0.9327433705329895, - -0.940058708190918, - -0.8135508298873901, - -0.6837413311004639, - -0.5509530901908875, - -0.41561359167099, - -0.27825185656547546, - -0.13948586583137512, - -4.3686466000281143e-8, - 0.13948586583137512, - 0.27825185656547546, - 0.41561359167099, - 0.5509530901908875, - 0.6837413311004639, - 0.8135508298873901, - 0.940058708190918, - -0.9462941884994507, - -0.8192026019096375, - -0.6886913776397705, - -0.5550854206085205, - -0.4188212752342224, - -0.2804451286792755, - -0.14059960842132568, - -4.403680620157502e-8, - 0.14059960842132568, - 0.2804451286792755, - 0.4188212752342224, - 0.5550854206085205, - 0.6886913776397705, - 0.8192026019096375, - 0.9462941884994507, - -0.9513115286827087, - -0.8237589597702026, - -0.6926894187927246, - -0.5584284067153931, - -0.42141982913017273, - -0.28222373127937317, - -0.14150339365005493, - -4.432116540442621e-8, - 0.14150339365005493, - 0.28222373127937317, - 0.42141982913017273, - 0.5584284067153931, - 0.6926894187927246, - 0.8237589597702026, - 0.9513115286827087, - -0.9549906253814697, - -0.8271051645278931, - -0.6956297159194946, - -0.560890257358551, - -0.42333561182022095, - -0.2835361659526825, - -0.14217062294483185, - -4.453113788827068e-8, - 0.14217062294483185, - 0.2835361659526825, - 0.42333561182022095, - 0.560890257358551, - 0.6956297159194946, - 0.8271051645278931, - 0.9549906253814697, - -0.9572378396987915, - -0.8291513323783875, - -0.6974294781684875, - -0.5623985528945923, - -0.42451027035713196, - -0.28434130549430847, - -0.14258013665676117, - -4.46600232351102e-8, - 0.14258013665676117, - 0.28434130549430847, - 0.42451027035713196, - 0.5623985528945923, - 0.6974294781684875, - 0.8291513323783875, - 0.9572378396987915, - -0.957993745803833, - -0.8298399448394775, - -0.6980355381965637, - -0.5629066228866577, - -0.4249061048030853, - -0.2846127450466156, - -0.14271822571754456, - -4.470348358154297e-8, - 0.14271822571754456, - 0.2846127450466156, - 0.4249061048030853, - 0.5629066228866577, - 0.6980355381965637, - 0.8298399448394775, - 0.957993745803833, - -0.9572378396987915, - -0.8291513323783875, - -0.6974294781684875, - -0.5623985528945923, - -0.42451027035713196, - -0.28434130549430847, - -0.14258013665676117, - -4.46600232351102e-8, - 0.14258013665676117, - 0.28434130549430847, - 0.42451027035713196, - 0.5623985528945923, - 0.6974294781684875, - 0.8291513323783875, - 0.9572378396987915, - -0.9549906253814697, - -0.8271051645278931, - -0.6956297159194946, - -0.560890257358551, - -0.42333561182022095, - -0.2835361659526825, - -0.14217062294483185, - -4.453113788827068e-8, - 0.14217062294483185, - 0.2835361659526825, - 0.42333561182022095, - 0.560890257358551, - 0.6956297159194946, - 0.8271051645278931, - 0.9549906253814697, - -0.9513115286827087, - -0.8237589597702026, - -0.6926894187927246, - -0.5584284067153931, - -0.42141982913017273, - -0.28222373127937317, - -0.14150339365005493, - -4.432116540442621e-8, - 0.14150339365005493, - 0.28222373127937317, - 0.42141982913017273, - 0.5584284067153931, - 0.6926894187927246, - 0.8237589597702026, - 0.9513115286827087, - -0.9462941884994507, - -0.8192026019096375, - -0.6886913776397705, - -0.5550854206085205, - -0.4188212752342224, - -0.2804451286792755, - -0.14059960842132568, - -4.403680620157502e-8, - 0.14059960842132568, - 0.2804451286792755, - 0.4188212752342224, - 0.5550854206085205, - 0.6886913776397705, - 0.8192026019096375, - 0.9462941884994507, - -0.940058708190918, - -0.8135508298873901, - -0.6837413311004639, - -0.5509530901908875, - -0.41561359167099, - -0.27825185656547546, - -0.13948586583137512, - -4.3686466000281143e-8, - 0.13948586583137512, - 0.27825185656547546, - 0.41561359167099, - 0.5509530901908875, - 0.6837413311004639, - 0.8135508298873901, - 0.940058708190918, - -0.9327433705329895, - -0.8069350123405457, - -0.6779590249061584, - -0.5461350083351135, - -0.41187945008277893, - -0.27570170164108276, - -0.1381918489933014, - -4.32795275173703e-8, - 0.1381918489933014, - 0.27570170164108276, - 0.41187945008277893, - 0.5461350083351135, - 0.6779590249061584, - 0.8069350123405457, - 0.9327433705329895, - -0.9244958758354187, - -0.7994943261146545, - -0.6714705228805542, - -0.5407394766807556, - -0.4077049195766449, - -0.27285444736480713, - -0.13674822449684143, - -4.28256576867625e-8, - 0.13674822449684143, - 0.27285444736480713, - 0.4077049195766449, - 0.5407394766807556, - 0.6714705228805542, - 0.7994943261146545, - 0.9244958758354187 - ], - "yaxis": "y" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9216989874839783, - -0.9301912784576416, - -0.937734842300415, - -0.9441732168197632, - -0.9493599534034729, - -0.9531665444374084, - -0.9554932117462158, - -0.956275999546051, - -0.9554932117462158, - -0.9531665444374084, - -0.9493599534034729, - -0.9441732168197632, - -0.937734842300415, - -0.9301912784576416, - -0.9216989874839783, - -0.7973067760467529, - -0.8049805760383606, - -0.8118147253990173, - -0.8176615834236145, - -0.8223812580108643, - -0.8258509039878845, - -0.8279740214347839, - -0.8286888599395752, - -0.8279740214347839, - -0.8258509039878845, - -0.8223812580108643, - -0.8176615834236145, - -0.8118147253990173, - -0.8049805760383606, - -0.7973067760467529, - -0.6698105931282043, - -0.6765122413635254, - -0.6824951171875, - -0.6876251101493835, - -0.6917743682861328, - -0.6948293447494507, - -0.6967006921768188, - -0.6973311305046082, - -0.6967006921768188, - -0.6948293447494507, - -0.6917743682861328, - -0.6876251101493835, - -0.6824951171875, - -0.6765122413635254, - -0.6698105931282043, - -0.5395275354385376, - -0.5451076626777649, - -0.5501000881195068, - -0.554389476776123, - -0.5578648447990417, - -0.5604273676872253, - -0.5619986653327942, - -0.5625282526016235, - -0.5619986653327942, - -0.5604273676872253, - -0.5578648447990417, - -0.554389476776123, - -0.5501000881195068, - -0.5451076626777649, - -0.5395275354385376, - -0.40686851739883423, - -0.41119059920310974, - -0.41506457328796387, - -0.4183986485004425, - -0.4211040139198303, - -0.42310118675231934, - -0.4243268668651581, - -0.42474016547203064, - -0.4243268668651581, - -0.42310118675231934, - -0.4211040139198303, - -0.4183986485004425, - -0.41506457328796387, - -0.41119059920310974, - -0.40686851739883423, - -0.2723332643508911, - -0.2752836346626282, - -0.27793172001838684, - -0.28021368384361267, - -0.2820674479007721, - -0.28343725204467773, - -0.28427839279174805, - -0.2845621407032013, - -0.28427839279174805, - -0.28343725204467773, - -0.2820674479007721, - -0.28021368384361267, - -0.27793172001838684, - -0.2752836346626282, - -0.2723332643508911, - -0.13649898767471313, - -0.1379956305027008, - -0.1393401026725769, - -0.14049963653087616, - -0.14144226908683777, - -0.14213918149471283, - -0.14256733655929565, - -0.1427117884159088, - -0.14256733655929565, - -0.14213918149471283, - -0.14144226908683777, - -0.14049963653087616, - -0.1393401026725769, - -0.1379956305027008, - -0.13649898767471313, - -4.27488693333089e-8, - -4.321949020891225e-8, - -4.364238037624091e-8, - -4.400720499120325e-8, - -4.4303853030669416e-8, - -4.452321533676695e-8, - -4.465800884645432e-8, - -4.470348358154297e-8, - -4.465800884645432e-8, - -4.452321533676695e-8, - -4.4303853030669416e-8, - -4.400720499120325e-8, - -4.364238037624091e-8, - -4.321949020891225e-8, - -4.27488693333089e-8, - 0.13649898767471313, - 0.1379956305027008, - 0.1393401026725769, - 0.14049963653087616, - 0.14144226908683777, - 0.14213918149471283, - 0.14256733655929565, - 0.1427117884159088, - 0.14256733655929565, - 0.14213918149471283, - 0.14144226908683777, - 0.14049963653087616, - 0.1393401026725769, - 0.1379956305027008, - 0.13649898767471313, - 0.2723332643508911, - 0.2752836346626282, - 0.27793172001838684, - 0.28021368384361267, - 0.2820674479007721, - 0.28343725204467773, - 0.28427839279174805, - 0.2845621407032013, - 0.28427839279174805, - 0.28343725204467773, - 0.2820674479007721, - 0.28021368384361267, - 0.27793172001838684, - 0.2752836346626282, - 0.2723332643508911, - 0.40686851739883423, - 0.41119059920310974, - 0.41506457328796387, - 0.4183986485004425, - 0.4211040139198303, - 0.42310118675231934, - 0.4243268668651581, - 0.42474016547203064, - 0.4243268668651581, - 0.42310118675231934, - 0.4211040139198303, - 0.4183986485004425, - 0.41506457328796387, - 0.41119059920310974, - 0.40686851739883423, - 0.5395275354385376, - 0.5451076626777649, - 0.5501000881195068, - 0.554389476776123, - 0.5578648447990417, - 0.5604273676872253, - 0.5619986653327942, - 0.5625282526016235, - 0.5619986653327942, - 0.5604273676872253, - 0.5578648447990417, - 0.554389476776123, - 0.5501000881195068, - 0.5451076626777649, - 0.5395275354385376, - 0.6698105931282043, - 0.6765122413635254, - 0.6824951171875, - 0.6876251101493835, - 0.6917743682861328, - 0.6948293447494507, - 0.6967006921768188, - 0.6973311305046082, - 0.6967006921768188, - 0.6948293447494507, - 0.6917743682861328, - 0.6876251101493835, - 0.6824951171875, - 0.6765122413635254, - 0.6698105931282043, - 0.7973067760467529, - 0.8049805760383606, - 0.8118147253990173, - 0.8176615834236145, - 0.8223812580108643, - 0.8258509039878845, - 0.8279740214347839, - 0.8286888599395752, - 0.8279740214347839, - 0.8258509039878845, - 0.8223812580108643, - 0.8176615834236145, - 0.8118147253990173, - 0.8049805760383606, - 0.7973067760467529, - 0.9216989874839783, - 0.9301912784576416, - 0.937734842300415, - 0.9441732168197632, - 0.9493599534034729, - 0.9531665444374084, - 0.9554932117462158, - 0.956275999546051, - 0.9554932117462158, - 0.9531665444374084, - 0.9493599534034729, - 0.9441732168197632, - 0.937734842300415, - 0.9301912784576416, - 0.9216989874839783 - ], - "xaxis": "x", - "y": [ - -0.9216989874839783, - -0.7973067760467529, - -0.6698105931282043, - -0.5395275354385376, - -0.40686851739883423, - -0.2723332643508911, - -0.13649898767471313, - -4.27488693333089e-8, - 0.13649898767471313, - 0.2723332643508911, - 0.40686851739883423, - 0.5395275354385376, - 0.6698105931282043, - 0.7973067760467529, - 0.9216989874839783, - -0.9301912784576416, - -0.8049805760383606, - -0.6765122413635254, - -0.5451076626777649, - -0.41119059920310974, - -0.2752836346626282, - -0.1379956305027008, - -4.321949020891225e-8, - 0.1379956305027008, - 0.2752836346626282, - 0.41119059920310974, - 0.5451076626777649, - 0.6765122413635254, - 0.8049805760383606, - 0.9301912784576416, - -0.937734842300415, - -0.8118147253990173, - -0.6824951171875, - -0.5501000881195068, - -0.41506457328796387, - -0.27793172001838684, - -0.1393401026725769, - -4.364238037624091e-8, - 0.1393401026725769, - 0.27793172001838684, - 0.41506457328796387, - 0.5501000881195068, - 0.6824951171875, - 0.8118147253990173, - 0.937734842300415, - -0.9441732168197632, - -0.8176615834236145, - -0.6876251101493835, - -0.554389476776123, - -0.4183986485004425, - -0.28021368384361267, - -0.14049963653087616, - -4.400720499120325e-8, - 0.14049963653087616, - 0.28021368384361267, - 0.4183986485004425, - 0.554389476776123, - 0.6876251101493835, - 0.8176615834236145, - 0.9441732168197632, - -0.9493599534034729, - -0.8223812580108643, - -0.6917743682861328, - -0.5578648447990417, - -0.4211040139198303, - -0.2820674479007721, - -0.14144226908683777, - -4.4303853030669416e-8, - 0.14144226908683777, - 0.2820674479007721, - 0.4211040139198303, - 0.5578648447990417, - 0.6917743682861328, - 0.8223812580108643, - 0.9493599534034729, - -0.9531665444374084, - -0.8258509039878845, - -0.6948293447494507, - -0.5604273676872253, - -0.42310118675231934, - -0.28343725204467773, - -0.14213918149471283, - -4.452321533676695e-8, - 0.14213918149471283, - 0.28343725204467773, - 0.42310118675231934, - 0.5604273676872253, - 0.6948293447494507, - 0.8258509039878845, - 0.9531665444374084, - -0.9554932117462158, - -0.8279740214347839, - -0.6967006921768188, - -0.5619986653327942, - -0.4243268668651581, - -0.28427839279174805, - -0.14256733655929565, - -4.465800884645432e-8, - 0.14256733655929565, - 0.28427839279174805, - 0.4243268668651581, - 0.5619986653327942, - 0.6967006921768188, - 0.8279740214347839, - 0.9554932117462158, - -0.956275999546051, - -0.8286888599395752, - -0.6973311305046082, - -0.5625282526016235, - -0.42474016547203064, - -0.2845621407032013, - -0.1427117884159088, - -4.470348358154297e-8, - 0.1427117884159088, - 0.2845621407032013, - 0.42474016547203064, - 0.5625282526016235, - 0.6973311305046082, - 0.8286888599395752, - 0.956275999546051, - -0.9554932117462158, - -0.8279740214347839, - -0.6967006921768188, - -0.5619986653327942, - -0.4243268668651581, - -0.28427839279174805, - -0.14256733655929565, - -4.465800884645432e-8, - 0.14256733655929565, - 0.28427839279174805, - 0.4243268668651581, - 0.5619986653327942, - 0.6967006921768188, - 0.8279740214347839, - 0.9554932117462158, - -0.9531665444374084, - -0.8258509039878845, - -0.6948293447494507, - -0.5604273676872253, - -0.42310118675231934, - -0.28343725204467773, - -0.14213918149471283, - -4.452321533676695e-8, - 0.14213918149471283, - 0.28343725204467773, - 0.42310118675231934, - 0.5604273676872253, - 0.6948293447494507, - 0.8258509039878845, - 0.9531665444374084, - -0.9493599534034729, - -0.8223812580108643, - -0.6917743682861328, - -0.5578648447990417, - -0.4211040139198303, - -0.2820674479007721, - -0.14144226908683777, - -4.4303853030669416e-8, - 0.14144226908683777, - 0.2820674479007721, - 0.4211040139198303, - 0.5578648447990417, - 0.6917743682861328, - 0.8223812580108643, - 0.9493599534034729, - -0.9441732168197632, - -0.8176615834236145, - -0.6876251101493835, - -0.554389476776123, - -0.4183986485004425, - -0.28021368384361267, - -0.14049963653087616, - -4.400720499120325e-8, - 0.14049963653087616, - 0.28021368384361267, - 0.4183986485004425, - 0.554389476776123, - 0.6876251101493835, - 0.8176615834236145, - 0.9441732168197632, - -0.937734842300415, - -0.8118147253990173, - -0.6824951171875, - -0.5501000881195068, - -0.41506457328796387, - -0.27793172001838684, - -0.1393401026725769, - -4.364238037624091e-8, - 0.1393401026725769, - 0.27793172001838684, - 0.41506457328796387, - 0.5501000881195068, - 0.6824951171875, - 0.8118147253990173, - 0.937734842300415, - -0.9301912784576416, - -0.8049805760383606, - -0.6765122413635254, - -0.5451076626777649, - -0.41119059920310974, - -0.2752836346626282, - -0.1379956305027008, - -4.321949020891225e-8, - 0.1379956305027008, - 0.2752836346626282, - 0.41119059920310974, - 0.5451076626777649, - 0.6765122413635254, - 0.8049805760383606, - 0.9301912784576416, - -0.9216989874839783, - -0.7973067760467529, - -0.6698105931282043, - -0.5395275354385376, - -0.40686851739883423, - -0.2723332643508911, - -0.13649898767471313, - -4.27488693333089e-8, - 0.13649898767471313, - 0.2723332643508911, - 0.40686851739883423, - 0.5395275354385376, - 0.6698105931282043, - 0.7973067760467529, - 0.9216989874839783 - ], - "yaxis": "y" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9960778951644897, - -0.9970351457595825, - -0.9977449178695679, - -0.9982555508613586, - -0.9986086487770081, - -0.9988369345664978, - -0.9989641904830933, - -0.9990050196647644, - -0.9989641904830933, - -0.9988369345664978, - -0.9986086487770081, - -0.9982555508613586, - -0.9977449178695679, - -0.9970351457595825, - -0.9960778951644897, - -0.8546015620231628, - -0.8553118705749512, - -0.8558246493339539, - -0.8561829328536987, - -0.856423020362854, - -0.8565735816955566, - -0.8566555380821228, - -0.8566814661026001, - -0.8566555380821228, - -0.8565735816955566, - -0.856423020362854, - -0.8561829328536987, - -0.8558246493339539, - -0.8553118705749512, - -0.8546015620231628, - -0.7126749157905579, - -0.7131872177124023, - -0.7135458588600159, - -0.7137873768806458, - -0.7139426469802856, - -0.7140359878540039, - -0.7140849232673645, - -0.7141000628471375, - -0.7140849232673645, - -0.7140359878540039, - -0.7139426469802856, - -0.7137873768806458, - -0.7135458588600159, - -0.7131872177124023, - -0.7126749157905579, - -0.5704317092895508, - -0.570788562297821, - -0.5710298418998718, - -0.571185290813446, - -0.5712800025939941, - -0.5713334083557129, - -0.5713598132133484, - -0.571367621421814, - -0.5713598132133484, - -0.5713334083557129, - -0.5712800025939941, - -0.571185290813446, - -0.5710298418998718, - -0.570788562297821, - -0.5704317092895508, - -0.4279750883579254, - -0.4282114803791046, - -0.428365558385849, - -0.4284600019454956, - -0.42851361632347107, - -0.42854127287864685, - -0.42855358123779297, - -0.4285569489002228, - -0.42855358123779297, - -0.42854127287864685, - -0.42851361632347107, - -0.4284600019454956, - -0.428365558385849, - -0.4282114803791046, - -0.4279750883579254, - -0.2853819727897644, - -0.28552451729774475, - -0.28561437129974365, - -0.28566670417785645, - -0.2856941819190979, - -0.28570663928985596, - -0.2857113182544708, - -0.2857123613357544, - -0.2857113182544708, - -0.28570663928985596, - -0.2856941819190979, - -0.28566670417785645, - -0.28561437129974365, - -0.28552451729774475, - -0.2853819727897644, - -0.1427091360092163, - -0.14277587831020355, - -0.1428169459104538, - -0.1428399235010147, - -0.14285115897655487, - -0.14285562932491302, - -0.14285686612129211, - -0.14285705983638763, - -0.14285686612129211, - -0.14285562932491302, - -0.14285115897655487, - -0.1428399235010147, - -0.1428169459104538, - -0.14277587831020355, - -0.1427091360092163, - -4.4659003606284386e-8, - -4.467942105179645e-8, - -4.469186265509961e-8, - -4.46987193924997e-8, - -4.470197723094316e-8, - -4.470318515359395e-8, - -4.4703469370688254e-8, - -4.470348358154297e-8, - -4.4703469370688254e-8, - -4.470318515359395e-8, - -4.470197723094316e-8, - -4.46987193924997e-8, - -4.469186265509961e-8, - -4.467942105179645e-8, - -4.4659003606284386e-8, - 0.1427091360092163, - 0.14277587831020355, - 0.1428169459104538, - 0.1428399235010147, - 0.14285115897655487, - 0.14285562932491302, - 0.14285686612129211, - 0.14285705983638763, - 0.14285686612129211, - 0.14285562932491302, - 0.14285115897655487, - 0.1428399235010147, - 0.1428169459104538, - 0.14277587831020355, - 0.1427091360092163, - 0.2853819727897644, - 0.28552451729774475, - 0.28561437129974365, - 0.28566670417785645, - 0.2856941819190979, - 0.28570663928985596, - 0.2857113182544708, - 0.2857123613357544, - 0.2857113182544708, - 0.28570663928985596, - 0.2856941819190979, - 0.28566670417785645, - 0.28561437129974365, - 0.28552451729774475, - 0.2853819727897644, - 0.4279750883579254, - 0.4282114803791046, - 0.428365558385849, - 0.4284600019454956, - 0.42851361632347107, - 0.42854127287864685, - 0.42855358123779297, - 0.4285569489002228, - 0.42855358123779297, - 0.42854127287864685, - 0.42851361632347107, - 0.4284600019454956, - 0.428365558385849, - 0.4282114803791046, - 0.4279750883579254, - 0.5704317092895508, - 0.570788562297821, - 0.5710298418998718, - 0.571185290813446, - 0.5712800025939941, - 0.5713334083557129, - 0.5713598132133484, - 0.571367621421814, - 0.5713598132133484, - 0.5713334083557129, - 0.5712800025939941, - 0.571185290813446, - 0.5710298418998718, - 0.570788562297821, - 0.5704317092895508, - 0.7126749157905579, - 0.7131872177124023, - 0.7135458588600159, - 0.7137873768806458, - 0.7139426469802856, - 0.7140359878540039, - 0.7140849232673645, - 0.7141000628471375, - 0.7140849232673645, - 0.7140359878540039, - 0.7139426469802856, - 0.7137873768806458, - 0.7135458588600159, - 0.7131872177124023, - 0.7126749157905579, - 0.8546015620231628, - 0.8553118705749512, - 0.8558246493339539, - 0.8561829328536987, - 0.856423020362854, - 0.8565735816955566, - 0.8566555380821228, - 0.8566814661026001, - 0.8566555380821228, - 0.8565735816955566, - 0.856423020362854, - 0.8561829328536987, - 0.8558246493339539, - 0.8553118705749512, - 0.8546015620231628, - 0.9960778951644897, - 0.9970351457595825, - 0.9977449178695679, - 0.9982555508613586, - 0.9986086487770081, - 0.9988369345664978, - 0.9989641904830933, - 0.9990050196647644, - 0.9989641904830933, - 0.9988369345664978, - 0.9986086487770081, - 0.9982555508613586, - 0.9977449178695679, - 0.9970351457595825, - 0.9960778951644897 - ], - "xaxis": "x4", - "y": [ - -0.9960778951644897, - -0.8546015620231628, - -0.7126749157905579, - -0.5704317092895508, - -0.4279750883579254, - -0.2853819727897644, - -0.1427091360092163, - -4.4659003606284386e-8, - 0.1427091360092163, - 0.2853819727897644, - 0.4279750883579254, - 0.5704317092895508, - 0.7126749157905579, - 0.8546015620231628, - 0.9960778951644897, - -0.9970351457595825, - -0.8553118705749512, - -0.7131872177124023, - -0.570788562297821, - -0.4282114803791046, - -0.28552451729774475, - -0.14277587831020355, - -4.467942105179645e-8, - 0.14277587831020355, - 0.28552451729774475, - 0.4282114803791046, - 0.570788562297821, - 0.7131872177124023, - 0.8553118705749512, - 0.9970351457595825, - -0.9977449178695679, - -0.8558246493339539, - -0.7135458588600159, - -0.5710298418998718, - -0.428365558385849, - -0.28561437129974365, - -0.1428169459104538, - -4.469186265509961e-8, - 0.1428169459104538, - 0.28561437129974365, - 0.428365558385849, - 0.5710298418998718, - 0.7135458588600159, - 0.8558246493339539, - 0.9977449178695679, - -0.9982555508613586, - -0.8561829328536987, - -0.7137873768806458, - -0.571185290813446, - -0.4284600019454956, - -0.28566670417785645, - -0.1428399235010147, - -4.46987193924997e-8, - 0.1428399235010147, - 0.28566670417785645, - 0.4284600019454956, - 0.571185290813446, - 0.7137873768806458, - 0.8561829328536987, - 0.9982555508613586, - -0.9986086487770081, - -0.856423020362854, - -0.7139426469802856, - -0.5712800025939941, - -0.42851361632347107, - -0.2856941819190979, - -0.14285115897655487, - -4.470197723094316e-8, - 0.14285115897655487, - 0.2856941819190979, - 0.42851361632347107, - 0.5712800025939941, - 0.7139426469802856, - 0.856423020362854, - 0.9986086487770081, - -0.9988369345664978, - -0.8565735816955566, - -0.7140359878540039, - -0.5713334083557129, - -0.42854127287864685, - -0.28570663928985596, - -0.14285562932491302, - -4.470318515359395e-8, - 0.14285562932491302, - 0.28570663928985596, - 0.42854127287864685, - 0.5713334083557129, - 0.7140359878540039, - 0.8565735816955566, - 0.9988369345664978, - -0.9989641904830933, - -0.8566555380821228, - -0.7140849232673645, - -0.5713598132133484, - -0.42855358123779297, - -0.2857113182544708, - -0.14285686612129211, - -4.4703469370688254e-8, - 0.14285686612129211, - 0.2857113182544708, - 0.42855358123779297, - 0.5713598132133484, - 0.7140849232673645, - 0.8566555380821228, - 0.9989641904830933, - -0.9990050196647644, - -0.8566814661026001, - -0.7141000628471375, - -0.571367621421814, - -0.4285569489002228, - -0.2857123613357544, - -0.14285705983638763, - -4.470348358154297e-8, - 0.14285705983638763, - 0.2857123613357544, - 0.4285569489002228, - 0.571367621421814, - 0.7141000628471375, - 0.8566814661026001, - 0.9990050196647644, - -0.9989641904830933, - -0.8566555380821228, - -0.7140849232673645, - -0.5713598132133484, - -0.42855358123779297, - -0.2857113182544708, - -0.14285686612129211, - -4.4703469370688254e-8, - 0.14285686612129211, - 0.2857113182544708, - 0.42855358123779297, - 0.5713598132133484, - 0.7140849232673645, - 0.8566555380821228, - 0.9989641904830933, - -0.9988369345664978, - -0.8565735816955566, - -0.7140359878540039, - -0.5713334083557129, - -0.42854127287864685, - -0.28570663928985596, - -0.14285562932491302, - -4.470318515359395e-8, - 0.14285562932491302, - 0.28570663928985596, - 0.42854127287864685, - 0.5713334083557129, - 0.7140359878540039, - 0.8565735816955566, - 0.9988369345664978, - -0.9986086487770081, - -0.856423020362854, - -0.7139426469802856, - -0.5712800025939941, - -0.42851361632347107, - -0.2856941819190979, - -0.14285115897655487, - -4.470197723094316e-8, - 0.14285115897655487, - 0.2856941819190979, - 0.42851361632347107, - 0.5712800025939941, - 0.7139426469802856, - 0.856423020362854, - 0.9986086487770081, - -0.9982555508613586, - -0.8561829328536987, - -0.7137873768806458, - -0.571185290813446, - -0.4284600019454956, - -0.28566670417785645, - -0.1428399235010147, - -4.46987193924997e-8, - 0.1428399235010147, - 0.28566670417785645, - 0.4284600019454956, - 0.571185290813446, - 0.7137873768806458, - 0.8561829328536987, - 0.9982555508613586, - -0.9977449178695679, - -0.8558246493339539, - -0.7135458588600159, - -0.5710298418998718, - -0.428365558385849, - -0.28561437129974365, - -0.1428169459104538, - -4.469186265509961e-8, - 0.1428169459104538, - 0.28561437129974365, - 0.428365558385849, - 0.5710298418998718, - 0.7135458588600159, - 0.8558246493339539, - 0.9977449178695679, - -0.9970351457595825, - -0.8553118705749512, - -0.7131872177124023, - -0.570788562297821, - -0.4282114803791046, - -0.28552451729774475, - -0.14277587831020355, - -4.467942105179645e-8, - 0.14277587831020355, - 0.28552451729774475, - 0.4282114803791046, - 0.570788562297821, - 0.7131872177124023, - 0.8553118705749512, - 0.9970351457595825, - -0.9960778951644897, - -0.8546015620231628, - -0.7126749157905579, - -0.5704317092895508, - -0.4279750883579254, - -0.2853819727897644, - -0.1427091360092163, - -4.4659003606284386e-8, - 0.1427091360092163, - 0.2853819727897644, - 0.4279750883579254, - 0.5704317092895508, - 0.7126749157905579, - 0.8546015620231628, - 0.9960778951644897 - ], - "yaxis": "y4" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.986116349697113, - -0.9893814325332642, - -0.9918509125709534, - -0.9936552047729492, - -0.9949160814285278, - -0.9957373738288879, - -0.9961974620819092, - -0.9963453412055969, - -0.9961974620819092, - -0.9957373738288879, - -0.9949160814285278, - -0.9936552047729492, - -0.9918509125709534, - -0.9893814325332642, - -0.986116349697113, - -0.8480412364006042, - -0.8505164384841919, - -0.8523354530334473, - -0.8536229133605957, - -0.8544933795928955, - -0.8550426959991455, - -0.8553428053855896, - -0.8554378151893616, - -0.8553428053855896, - -0.8550426959991455, - -0.8544933795928955, - -0.8536229133605957, - -0.8523354530334473, - -0.8505164384841919, - -0.8480412364006042, - -0.7084649801254272, - -0.7102795839309692, - -0.711569607257843, - -0.7124481201171875, - -0.7130169868469238, - -0.7133604884147644, - -0.7135410308837891, - -0.7135969400405884, - -0.7135410308837891, - -0.7133604884147644, - -0.7130169868469238, - -0.7124481201171875, - -0.711569607257843, - -0.7102795839309692, - -0.7084649801254272, - -0.567802906036377, - -0.5690819025039673, - -0.5699584484100342, - -0.570528507232666, - -0.5708774924278259, - -0.5710752606391907, - -0.5711730718612671, - -0.5712022185325623, - -0.5711730718612671, - -0.5710752606391907, - -0.5708774924278259, - -0.570528507232666, - -0.5699584484100342, - -0.5690819025039673, - -0.567802906036377, - -0.4263925850391388, - -0.42724665999412537, - -0.4278101325035095, - -0.42815813422203064, - -0.42835667729377747, - -0.4284592866897583, - -0.428505003452301, - -0.428517609834671, - -0.428505003452301, - -0.4284592866897583, - -0.42835667729377747, - -0.42815813422203064, - -0.4278101325035095, - -0.42724665999412537, - -0.4263925850391388, - -0.28449636697769165, - -0.28501421213150024, - -0.2853441834449768, - -0.28553763031959534, - -0.28563952445983887, - -0.2856859266757965, - -0.28570321202278137, - -0.28570717573165894, - -0.28570321202278137, - -0.2856859266757965, - -0.28563952445983887, - -0.28553763031959534, - -0.2853441834449768, - -0.28501421213150024, - -0.28449636697769165, - -0.1423138827085495, - -0.1425570845603943, - -0.1427081674337387, - -0.14279323816299438, - -0.14283497631549835, - -0.1428515762090683, - -0.14285622537136078, - -0.1428568810224533, - -0.14285622537136078, - -0.1428515762090683, - -0.14283497631549835, - -0.14279323816299438, - -0.1427081674337387, - -0.1425570845603943, - -0.1423138827085495, - -4.454010849030965e-8, - -4.461455915816259e-8, - -4.4660374953764403e-8, - -4.468577685656783e-8, - -4.469787384664414e-8, - -4.470237513487518e-8, - -4.470341607998307e-8, - -4.470348358154297e-8, - -4.470341607998307e-8, - -4.470237513487518e-8, - -4.469787384664414e-8, - -4.468577685656783e-8, - -4.4660374953764403e-8, - -4.461455915816259e-8, - -4.454010849030965e-8, - 0.1423138827085495, - 0.1425570845603943, - 0.1427081674337387, - 0.14279323816299438, - 0.14283497631549835, - 0.1428515762090683, - 0.14285622537136078, - 0.1428568810224533, - 0.14285622537136078, - 0.1428515762090683, - 0.14283497631549835, - 0.14279323816299438, - 0.1427081674337387, - 0.1425570845603943, - 0.1423138827085495, - 0.28449636697769165, - 0.28501421213150024, - 0.2853441834449768, - 0.28553763031959534, - 0.28563952445983887, - 0.2856859266757965, - 0.28570321202278137, - 0.28570717573165894, - 0.28570321202278137, - 0.2856859266757965, - 0.28563952445983887, - 0.28553763031959534, - 0.2853441834449768, - 0.28501421213150024, - 0.28449636697769165, - 0.4263925850391388, - 0.42724665999412537, - 0.4278101325035095, - 0.42815813422203064, - 0.42835667729377747, - 0.4284592866897583, - 0.428505003452301, - 0.428517609834671, - 0.428505003452301, - 0.4284592866897583, - 0.42835667729377747, - 0.42815813422203064, - 0.4278101325035095, - 0.42724665999412537, - 0.4263925850391388, - 0.567802906036377, - 0.5690819025039673, - 0.5699584484100342, - 0.570528507232666, - 0.5708774924278259, - 0.5710752606391907, - 0.5711730718612671, - 0.5712022185325623, - 0.5711730718612671, - 0.5710752606391907, - 0.5708774924278259, - 0.570528507232666, - 0.5699584484100342, - 0.5690819025039673, - 0.567802906036377, - 0.7084649801254272, - 0.7102795839309692, - 0.711569607257843, - 0.7124481201171875, - 0.7130169868469238, - 0.7133604884147644, - 0.7135410308837891, - 0.7135969400405884, - 0.7135410308837891, - 0.7133604884147644, - 0.7130169868469238, - 0.7124481201171875, - 0.711569607257843, - 0.7102795839309692, - 0.7084649801254272, - 0.8480412364006042, - 0.8505164384841919, - 0.8523354530334473, - 0.8536229133605957, - 0.8544933795928955, - 0.8550426959991455, - 0.8553428053855896, - 0.8554378151893616, - 0.8553428053855896, - 0.8550426959991455, - 0.8544933795928955, - 0.8536229133605957, - 0.8523354530334473, - 0.8505164384841919, - 0.8480412364006042, - 0.986116349697113, - 0.9893814325332642, - 0.9918509125709534, - 0.9936552047729492, - 0.9949160814285278, - 0.9957373738288879, - 0.9961974620819092, - 0.9963453412055969, - 0.9961974620819092, - 0.9957373738288879, - 0.9949160814285278, - 0.9936552047729492, - 0.9918509125709534, - 0.9893814325332642, - 0.986116349697113 - ], - "xaxis": "x4", - "y": [ - -0.986116349697113, - -0.8480412364006042, - -0.7084649801254272, - -0.567802906036377, - -0.4263925850391388, - -0.28449636697769165, - -0.1423138827085495, - -4.454010849030965e-8, - 0.1423138827085495, - 0.28449636697769165, - 0.4263925850391388, - 0.567802906036377, - 0.7084649801254272, - 0.8480412364006042, - 0.986116349697113, - -0.9893814325332642, - -0.8505164384841919, - -0.7102795839309692, - -0.5690819025039673, - -0.42724665999412537, - -0.28501421213150024, - -0.1425570845603943, - -4.461455915816259e-8, - 0.1425570845603943, - 0.28501421213150024, - 0.42724665999412537, - 0.5690819025039673, - 0.7102795839309692, - 0.8505164384841919, - 0.9893814325332642, - -0.9918509125709534, - -0.8523354530334473, - -0.711569607257843, - -0.5699584484100342, - -0.4278101325035095, - -0.2853441834449768, - -0.1427081674337387, - -4.4660374953764403e-8, - 0.1427081674337387, - 0.2853441834449768, - 0.4278101325035095, - 0.5699584484100342, - 0.711569607257843, - 0.8523354530334473, - 0.9918509125709534, - -0.9936552047729492, - -0.8536229133605957, - -0.7124481201171875, - -0.570528507232666, - -0.42815813422203064, - -0.28553763031959534, - -0.14279323816299438, - -4.468577685656783e-8, - 0.14279323816299438, - 0.28553763031959534, - 0.42815813422203064, - 0.570528507232666, - 0.7124481201171875, - 0.8536229133605957, - 0.9936552047729492, - -0.9949160814285278, - -0.8544933795928955, - -0.7130169868469238, - -0.5708774924278259, - -0.42835667729377747, - -0.28563952445983887, - -0.14283497631549835, - -4.469787384664414e-8, - 0.14283497631549835, - 0.28563952445983887, - 0.42835667729377747, - 0.5708774924278259, - 0.7130169868469238, - 0.8544933795928955, - 0.9949160814285278, - -0.9957373738288879, - -0.8550426959991455, - -0.7133604884147644, - -0.5710752606391907, - -0.4284592866897583, - -0.2856859266757965, - -0.1428515762090683, - -4.470237513487518e-8, - 0.1428515762090683, - 0.2856859266757965, - 0.4284592866897583, - 0.5710752606391907, - 0.7133604884147644, - 0.8550426959991455, - 0.9957373738288879, - -0.9961974620819092, - -0.8553428053855896, - -0.7135410308837891, - -0.5711730718612671, - -0.428505003452301, - -0.28570321202278137, - -0.14285622537136078, - -4.470341607998307e-8, - 0.14285622537136078, - 0.28570321202278137, - 0.428505003452301, - 0.5711730718612671, - 0.7135410308837891, - 0.8553428053855896, - 0.9961974620819092, - -0.9963453412055969, - -0.8554378151893616, - -0.7135969400405884, - -0.5712022185325623, - -0.428517609834671, - -0.28570717573165894, - -0.1428568810224533, - -4.470348358154297e-8, - 0.1428568810224533, - 0.28570717573165894, - 0.428517609834671, - 0.5712022185325623, - 0.7135969400405884, - 0.8554378151893616, - 0.9963453412055969, - -0.9961974620819092, - -0.8553428053855896, - -0.7135410308837891, - -0.5711730718612671, - -0.428505003452301, - -0.28570321202278137, - -0.14285622537136078, - -4.470341607998307e-8, - 0.14285622537136078, - 0.28570321202278137, - 0.428505003452301, - 0.5711730718612671, - 0.7135410308837891, - 0.8553428053855896, - 0.9961974620819092, - -0.9957373738288879, - -0.8550426959991455, - -0.7133604884147644, - -0.5710752606391907, - -0.4284592866897583, - -0.2856859266757965, - -0.1428515762090683, - -4.470237513487518e-8, - 0.1428515762090683, - 0.2856859266757965, - 0.4284592866897583, - 0.5710752606391907, - 0.7133604884147644, - 0.8550426959991455, - 0.9957373738288879, - -0.9949160814285278, - -0.8544933795928955, - -0.7130169868469238, - -0.5708774924278259, - -0.42835667729377747, - -0.28563952445983887, - -0.14283497631549835, - -4.469787384664414e-8, - 0.14283497631549835, - 0.28563952445983887, - 0.42835667729377747, - 0.5708774924278259, - 0.7130169868469238, - 0.8544933795928955, - 0.9949160814285278, - -0.9936552047729492, - -0.8536229133605957, - -0.7124481201171875, - -0.570528507232666, - -0.42815813422203064, - -0.28553763031959534, - -0.14279323816299438, - -4.468577685656783e-8, - 0.14279323816299438, - 0.28553763031959534, - 0.42815813422203064, - 0.570528507232666, - 0.7124481201171875, - 0.8536229133605957, - 0.9936552047729492, - -0.9918509125709534, - -0.8523354530334473, - -0.711569607257843, - -0.5699584484100342, - -0.4278101325035095, - -0.2853441834449768, - -0.1427081674337387, - -4.4660374953764403e-8, - 0.1427081674337387, - 0.2853441834449768, - 0.4278101325035095, - 0.5699584484100342, - 0.711569607257843, - 0.8523354530334473, - 0.9918509125709534, - -0.9893814325332642, - -0.8505164384841919, - -0.7102795839309692, - -0.5690819025039673, - -0.42724665999412537, - -0.28501421213150024, - -0.1425570845603943, - -4.461455915816259e-8, - 0.1425570845603943, - 0.28501421213150024, - 0.42724665999412537, - 0.5690819025039673, - 0.7102795839309692, - 0.8505164384841919, - 0.9893814325332642, - -0.986116349697113, - -0.8480412364006042, - -0.7084649801254272, - -0.567802906036377, - -0.4263925850391388, - -0.28449636697769165, - -0.1423138827085495, - -4.454010849030965e-8, - 0.1423138827085495, - 0.28449636697769165, - 0.4263925850391388, - 0.567802906036377, - 0.7084649801254272, - 0.8480412364006042, - 0.986116349697113 - ], - "yaxis": "y4" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9770478010177612, - -0.9822670817375183, - -0.9862828850746155, - -0.9892560243606567, - -0.9913544058799744, - -0.9927305579185486, - -0.9935049414634705, - -0.9937543272972107, - -0.9935049414634705, - -0.9927305579185486, - -0.9913544058799744, - -0.9892560243606567, - -0.9862828850746155, - -0.9822670817375183, - -0.9770478010177612, - -0.8419432044029236, - -0.8459734320640564, - -0.8489820957183838, - -0.8511368632316589, - -0.8526061177253723, - -0.8535385727882385, - -0.8540497422218323, - -0.8542118668556213, - -0.8540497422218323, - -0.8535385727882385, - -0.8526061177253723, - -0.8511368632316589, - -0.8489820957183838, - -0.8459734320640564, - -0.8419432044029236, - -0.7044878005981445, - -0.7074850797653198, - -0.7096464037895203, - -0.7111334204673767, - -0.7121031284332275, - -0.7126913070678711, - -0.7130013704299927, - -0.7130973935127258, - -0.7130013704299927, - -0.7126913070678711, - -0.7121031284332275, - -0.7111334204673767, - -0.7096464037895203, - -0.7074850797653198, - -0.7044878005981445, - -0.5652891397476196, - -0.5674245357513428, - -0.5689066648483276, - -0.5698791742324829, - -0.5704779028892517, - -0.570818305015564, - -0.5709869861602783, - -0.571037232875824, - -0.5709869861602783, - -0.570818305015564, - -0.5704779028892517, - -0.5698791742324829, - -0.5689066648483276, - -0.5674245357513428, - -0.5652891397476196, - -0.4248661398887634, - -0.42630302906036377, - -0.4272618591785431, - -0.4278584122657776, - -0.42820030450820923, - -0.4283774495124817, - -0.42845654487609863, - -0.42847833037376404, - -0.42845654487609863, - -0.4283774495124817, - -0.42820030450820923, - -0.4278584122657776, - -0.4272618591785431, - -0.42630302906036377, - -0.4248661398887634, - -0.28363728523254395, - -0.28451284766197205, - -0.2850764989852905, - -0.285409152507782, - -0.285584956407547, - -0.28566524386405945, - -0.2856951057910919, - -0.28570201992988586, - -0.2856951057910919, - -0.28566524386405945, - -0.285584956407547, - -0.285409152507782, - -0.2850764989852905, - -0.28451284766197205, - -0.28363728523254395, - -0.1419292390346527, - -0.14234158396720886, - -0.14260022342205048, - -0.1427467167377472, - -0.14281880855560303, - -0.14284752309322357, - -0.14285556972026825, - -0.14285671710968018, - -0.14285556972026825, - -0.14284752309322357, - -0.14281880855560303, - -0.1427467167377472, - -0.14260022342205048, - -0.14234158396720886, - -0.1419292390346527, - -4.4424279366239716e-8, - -4.455062097008522e-8, - -4.462911107339096e-8, - -4.4672873400486424e-8, - -4.4693777567772486e-8, - -4.4701565116156416e-8, - -4.470336278927789e-8, - -4.470348358154297e-8, - -4.470336278927789e-8, - -4.4701565116156416e-8, - -4.4693777567772486e-8, - -4.4672873400486424e-8, - -4.462911107339096e-8, - -4.455062097008522e-8, - -4.4424279366239716e-8, - 0.1419292390346527, - 0.14234158396720886, - 0.14260022342205048, - 0.1427467167377472, - 0.14281880855560303, - 0.14284752309322357, - 0.14285556972026825, - 0.14285671710968018, - 0.14285556972026825, - 0.14284752309322357, - 0.14281880855560303, - 0.1427467167377472, - 0.14260022342205048, - 0.14234158396720886, - 0.1419292390346527, - 0.28363728523254395, - 0.28451284766197205, - 0.2850764989852905, - 0.285409152507782, - 0.285584956407547, - 0.28566524386405945, - 0.2856951057910919, - 0.28570201992988586, - 0.2856951057910919, - 0.28566524386405945, - 0.285584956407547, - 0.285409152507782, - 0.2850764989852905, - 0.28451284766197205, - 0.28363728523254395, - 0.4248661398887634, - 0.42630302906036377, - 0.4272618591785431, - 0.4278584122657776, - 0.42820030450820923, - 0.4283774495124817, - 0.42845654487609863, - 0.42847833037376404, - 0.42845654487609863, - 0.4283774495124817, - 0.42820030450820923, - 0.4278584122657776, - 0.4272618591785431, - 0.42630302906036377, - 0.4248661398887634, - 0.5652891397476196, - 0.5674245357513428, - 0.5689066648483276, - 0.5698791742324829, - 0.5704779028892517, - 0.570818305015564, - 0.5709869861602783, - 0.571037232875824, - 0.5709869861602783, - 0.570818305015564, - 0.5704779028892517, - 0.5698791742324829, - 0.5689066648483276, - 0.5674245357513428, - 0.5652891397476196, - 0.7044878005981445, - 0.7074850797653198, - 0.7096464037895203, - 0.7111334204673767, - 0.7121031284332275, - 0.7126913070678711, - 0.7130013704299927, - 0.7130973935127258, - 0.7130013704299927, - 0.7126913070678711, - 0.7121031284332275, - 0.7111334204673767, - 0.7096464037895203, - 0.7074850797653198, - 0.7044878005981445, - 0.8419432044029236, - 0.8459734320640564, - 0.8489820957183838, - 0.8511368632316589, - 0.8526061177253723, - 0.8535385727882385, - 0.8540497422218323, - 0.8542118668556213, - 0.8540497422218323, - 0.8535385727882385, - 0.8526061177253723, - 0.8511368632316589, - 0.8489820957183838, - 0.8459734320640564, - 0.8419432044029236, - 0.9770478010177612, - 0.9822670817375183, - 0.9862828850746155, - 0.9892560243606567, - 0.9913544058799744, - 0.9927305579185486, - 0.9935049414634705, - 0.9937543272972107, - 0.9935049414634705, - 0.9927305579185486, - 0.9913544058799744, - 0.9892560243606567, - 0.9862828850746155, - 0.9822670817375183, - 0.9770478010177612 - ], - "xaxis": "x4", - "y": [ - -0.9770478010177612, - -0.8419432044029236, - -0.7044878005981445, - -0.5652891397476196, - -0.4248661398887634, - -0.28363728523254395, - -0.1419292390346527, - -4.4424279366239716e-8, - 0.1419292390346527, - 0.28363728523254395, - 0.4248661398887634, - 0.5652891397476196, - 0.7044878005981445, - 0.8419432044029236, - 0.9770478010177612, - -0.9822670817375183, - -0.8459734320640564, - -0.7074850797653198, - -0.5674245357513428, - -0.42630302906036377, - -0.28451284766197205, - -0.14234158396720886, - -4.455062097008522e-8, - 0.14234158396720886, - 0.28451284766197205, - 0.42630302906036377, - 0.5674245357513428, - 0.7074850797653198, - 0.8459734320640564, - 0.9822670817375183, - -0.9862828850746155, - -0.8489820957183838, - -0.7096464037895203, - -0.5689066648483276, - -0.4272618591785431, - -0.2850764989852905, - -0.14260022342205048, - -4.462911107339096e-8, - 0.14260022342205048, - 0.2850764989852905, - 0.4272618591785431, - 0.5689066648483276, - 0.7096464037895203, - 0.8489820957183838, - 0.9862828850746155, - -0.9892560243606567, - -0.8511368632316589, - -0.7111334204673767, - -0.5698791742324829, - -0.4278584122657776, - -0.285409152507782, - -0.1427467167377472, - -4.4672873400486424e-8, - 0.1427467167377472, - 0.285409152507782, - 0.4278584122657776, - 0.5698791742324829, - 0.7111334204673767, - 0.8511368632316589, - 0.9892560243606567, - -0.9913544058799744, - -0.8526061177253723, - -0.7121031284332275, - -0.5704779028892517, - -0.42820030450820923, - -0.285584956407547, - -0.14281880855560303, - -4.4693777567772486e-8, - 0.14281880855560303, - 0.285584956407547, - 0.42820030450820923, - 0.5704779028892517, - 0.7121031284332275, - 0.8526061177253723, - 0.9913544058799744, - -0.9927305579185486, - -0.8535385727882385, - -0.7126913070678711, - -0.570818305015564, - -0.4283774495124817, - -0.28566524386405945, - -0.14284752309322357, - -4.4701565116156416e-8, - 0.14284752309322357, - 0.28566524386405945, - 0.4283774495124817, - 0.570818305015564, - 0.7126913070678711, - 0.8535385727882385, - 0.9927305579185486, - -0.9935049414634705, - -0.8540497422218323, - -0.7130013704299927, - -0.5709869861602783, - -0.42845654487609863, - -0.2856951057910919, - -0.14285556972026825, - -4.470336278927789e-8, - 0.14285556972026825, - 0.2856951057910919, - 0.42845654487609863, - 0.5709869861602783, - 0.7130013704299927, - 0.8540497422218323, - 0.9935049414634705, - -0.9937543272972107, - -0.8542118668556213, - -0.7130973935127258, - -0.571037232875824, - -0.42847833037376404, - -0.28570201992988586, - -0.14285671710968018, - -4.470348358154297e-8, - 0.14285671710968018, - 0.28570201992988586, - 0.42847833037376404, - 0.571037232875824, - 0.7130973935127258, - 0.8542118668556213, - 0.9937543272972107, - -0.9935049414634705, - -0.8540497422218323, - -0.7130013704299927, - -0.5709869861602783, - -0.42845654487609863, - -0.2856951057910919, - -0.14285556972026825, - -4.470336278927789e-8, - 0.14285556972026825, - 0.2856951057910919, - 0.42845654487609863, - 0.5709869861602783, - 0.7130013704299927, - 0.8540497422218323, - 0.9935049414634705, - -0.9927305579185486, - -0.8535385727882385, - -0.7126913070678711, - -0.570818305015564, - -0.4283774495124817, - -0.28566524386405945, - -0.14284752309322357, - -4.4701565116156416e-8, - 0.14284752309322357, - 0.28566524386405945, - 0.4283774495124817, - 0.570818305015564, - 0.7126913070678711, - 0.8535385727882385, - 0.9927305579185486, - -0.9913544058799744, - -0.8526061177253723, - -0.7121031284332275, - -0.5704779028892517, - -0.42820030450820923, - -0.285584956407547, - -0.14281880855560303, - -4.4693777567772486e-8, - 0.14281880855560303, - 0.285584956407547, - 0.42820030450820923, - 0.5704779028892517, - 0.7121031284332275, - 0.8526061177253723, - 0.9913544058799744, - -0.9892560243606567, - -0.8511368632316589, - -0.7111334204673767, - -0.5698791742324829, - -0.4278584122657776, - -0.285409152507782, - -0.1427467167377472, - -4.4672873400486424e-8, - 0.1427467167377472, - 0.285409152507782, - 0.4278584122657776, - 0.5698791742324829, - 0.7111334204673767, - 0.8511368632316589, - 0.9892560243606567, - -0.9862828850746155, - -0.8489820957183838, - -0.7096464037895203, - -0.5689066648483276, - -0.4272618591785431, - -0.2850764989852905, - -0.14260022342205048, - -4.462911107339096e-8, - 0.14260022342205048, - 0.2850764989852905, - 0.4272618591785431, - 0.5689066648483276, - 0.7096464037895203, - 0.8489820957183838, - 0.9862828850746155, - -0.9822670817375183, - -0.8459734320640564, - -0.7074850797653198, - -0.5674245357513428, - -0.42630302906036377, - -0.28451284766197205, - -0.14234158396720886, - -4.455062097008522e-8, - 0.14234158396720886, - 0.28451284766197205, - 0.42630302906036377, - 0.5674245357513428, - 0.7074850797653198, - 0.8459734320640564, - 0.9822670817375183, - -0.9770478010177612, - -0.8419432044029236, - -0.7044878005981445, - -0.5652891397476196, - -0.4248661398887634, - -0.28363728523254395, - -0.1419292390346527, - -4.4424279366239716e-8, - 0.1419292390346527, - 0.28363728523254395, - 0.4248661398887634, - 0.5652891397476196, - 0.7044878005981445, - 0.8419432044029236, - 0.9770478010177612 - ], - "yaxis": "y4" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9687203168869019, - -0.9756186008453369, - -0.9810050129890442, - -0.985040545463562, - -0.9879143834114075, - -0.9898109436035156, - -0.9908826351165771, - -0.9912284016609192, - -0.9908826351165771, - -0.9898109436035156, - -0.9879143834114075, - -0.985040545463562, - -0.9810050129890442, - -0.9756186008453369, - -0.9687203168869019, - -0.836244523525238, - -0.8416566252708435, - -0.8457538485527039, - -0.8487204313278198, - -0.8507592678070068, - -0.8520603179931641, - -0.8527758121490479, - -0.853003203868866, - -0.8527758121490479, - -0.8520603179931641, - -0.8507592678070068, - -0.8487204313278198, - -0.8457538485527039, - -0.8416566252708435, - -0.836244523525238, - -0.7007178664207458, - -0.7047948837280273, - -0.7077733278274536, - -0.7098424434661865, - -0.7112007737159729, - -0.7120283246040344, - -0.7124656438827515, - -0.712601363658905, - -0.7124656438827515, - -0.7120283246040344, - -0.7112007737159729, - -0.7098424434661865, - -0.7077733278274536, - -0.7047948837280273, - -0.7007178664207458, - -0.562880277633667, - -0.5658136010169983, - -0.5678738951683044, - -0.5692370533943176, - -0.5700810551643372, - -0.570562481880188, - -0.5708014965057373, - -0.5708727240562439, - -0.5708014965057373, - -0.570562481880188, - -0.5700810551643372, - -0.5692370533943176, - -0.5678738951683044, - -0.5658136010169983, - -0.562880277633667, - -0.42339184880256653, - -0.42537960410118103, - -0.42672044038772583, - -0.4275607764720917, - -0.42804449796676636, - -0.428295761346817, - -0.42840808629989624, - -0.42843908071517944, - -0.42840808629989624, - -0.428295761346817, - -0.42804449796676636, - -0.4275607764720917, - -0.42672044038772583, - -0.42537960410118103, - -0.42339184880256653, - -0.28280311822891235, - -0.2840200960636139, - -0.2848113179206848, - -0.285281240940094, - -0.2855305075645447, - -0.28564453125, - -0.28568702936172485, - -0.2856968343257904, - -0.28568702936172485, - -0.28564453125, - -0.2855305075645447, - -0.285281240940094, - -0.2848113179206848, - -0.2840200960636139, - -0.28280311822891235, - -0.14155462384223938, - -0.14212925732135773, - -0.1424930840730667, - -0.14270034432411194, - -0.1428026705980301, - -0.14284348487854004, - -0.14285492897033691, - -0.14285655319690704, - -0.14285492897033691, - -0.14284348487854004, - -0.1428026705980301, - -0.14270034432411194, - -0.1424930840730667, - -0.14212925732135773, - -0.14155462384223938, - -4.431135991467272e-8, - -4.448758517128226e-8, - -4.45980674612656e-8, - -4.466000191882813e-8, - -4.468968128890083e-8, - -4.470075509743765e-8, - -4.4703313051286386e-8, - -4.470348358154297e-8, - -4.4703313051286386e-8, - -4.470075509743765e-8, - -4.468968128890083e-8, - -4.466000191882813e-8, - -4.45980674612656e-8, - -4.448758517128226e-8, - -4.431135991467272e-8, - 0.14155462384223938, - 0.14212925732135773, - 0.1424930840730667, - 0.14270034432411194, - 0.1428026705980301, - 0.14284348487854004, - 0.14285492897033691, - 0.14285655319690704, - 0.14285492897033691, - 0.14284348487854004, - 0.1428026705980301, - 0.14270034432411194, - 0.1424930840730667, - 0.14212925732135773, - 0.14155462384223938, - 0.28280311822891235, - 0.2840200960636139, - 0.2848113179206848, - 0.285281240940094, - 0.2855305075645447, - 0.28564453125, - 0.28568702936172485, - 0.2856968343257904, - 0.28568702936172485, - 0.28564453125, - 0.2855305075645447, - 0.285281240940094, - 0.2848113179206848, - 0.2840200960636139, - 0.28280311822891235, - 0.42339184880256653, - 0.42537960410118103, - 0.42672044038772583, - 0.4275607764720917, - 0.42804449796676636, - 0.428295761346817, - 0.42840808629989624, - 0.42843908071517944, - 0.42840808629989624, - 0.428295761346817, - 0.42804449796676636, - 0.4275607764720917, - 0.42672044038772583, - 0.42537960410118103, - 0.42339184880256653, - 0.562880277633667, - 0.5658136010169983, - 0.5678738951683044, - 0.5692370533943176, - 0.5700810551643372, - 0.570562481880188, - 0.5708014965057373, - 0.5708727240562439, - 0.5708014965057373, - 0.570562481880188, - 0.5700810551643372, - 0.5692370533943176, - 0.5678738951683044, - 0.5658136010169983, - 0.562880277633667, - 0.7007178664207458, - 0.7047948837280273, - 0.7077733278274536, - 0.7098424434661865, - 0.7112007737159729, - 0.7120283246040344, - 0.7124656438827515, - 0.712601363658905, - 0.7124656438827515, - 0.7120283246040344, - 0.7112007737159729, - 0.7098424434661865, - 0.7077733278274536, - 0.7047948837280273, - 0.7007178664207458, - 0.836244523525238, - 0.8416566252708435, - 0.8457538485527039, - 0.8487204313278198, - 0.8507592678070068, - 0.8520603179931641, - 0.8527758121490479, - 0.853003203868866, - 0.8527758121490479, - 0.8520603179931641, - 0.8507592678070068, - 0.8487204313278198, - 0.8457538485527039, - 0.8416566252708435, - 0.836244523525238, - 0.9687203168869019, - 0.9756186008453369, - 0.9810050129890442, - 0.985040545463562, - 0.9879143834114075, - 0.9898109436035156, - 0.9908826351165771, - 0.9912284016609192, - 0.9908826351165771, - 0.9898109436035156, - 0.9879143834114075, - 0.985040545463562, - 0.9810050129890442, - 0.9756186008453369, - 0.9687203168869019 - ], - "xaxis": "x4", - "y": [ - -0.9687203168869019, - -0.836244523525238, - -0.7007178664207458, - -0.562880277633667, - -0.42339184880256653, - -0.28280311822891235, - -0.14155462384223938, - -4.431135991467272e-8, - 0.14155462384223938, - 0.28280311822891235, - 0.42339184880256653, - 0.562880277633667, - 0.7007178664207458, - 0.836244523525238, - 0.9687203168869019, - -0.9756186008453369, - -0.8416566252708435, - -0.7047948837280273, - -0.5658136010169983, - -0.42537960410118103, - -0.2840200960636139, - -0.14212925732135773, - -4.448758517128226e-8, - 0.14212925732135773, - 0.2840200960636139, - 0.42537960410118103, - 0.5658136010169983, - 0.7047948837280273, - 0.8416566252708435, - 0.9756186008453369, - -0.9810050129890442, - -0.8457538485527039, - -0.7077733278274536, - -0.5678738951683044, - -0.42672044038772583, - -0.2848113179206848, - -0.1424930840730667, - -4.45980674612656e-8, - 0.1424930840730667, - 0.2848113179206848, - 0.42672044038772583, - 0.5678738951683044, - 0.7077733278274536, - 0.8457538485527039, - 0.9810050129890442, - -0.985040545463562, - -0.8487204313278198, - -0.7098424434661865, - -0.5692370533943176, - -0.4275607764720917, - -0.285281240940094, - -0.14270034432411194, - -4.466000191882813e-8, - 0.14270034432411194, - 0.285281240940094, - 0.4275607764720917, - 0.5692370533943176, - 0.7098424434661865, - 0.8487204313278198, - 0.985040545463562, - -0.9879143834114075, - -0.8507592678070068, - -0.7112007737159729, - -0.5700810551643372, - -0.42804449796676636, - -0.2855305075645447, - -0.1428026705980301, - -4.468968128890083e-8, - 0.1428026705980301, - 0.2855305075645447, - 0.42804449796676636, - 0.5700810551643372, - 0.7112007737159729, - 0.8507592678070068, - 0.9879143834114075, - -0.9898109436035156, - -0.8520603179931641, - -0.7120283246040344, - -0.570562481880188, - -0.428295761346817, - -0.28564453125, - -0.14284348487854004, - -4.470075509743765e-8, - 0.14284348487854004, - 0.28564453125, - 0.428295761346817, - 0.570562481880188, - 0.7120283246040344, - 0.8520603179931641, - 0.9898109436035156, - -0.9908826351165771, - -0.8527758121490479, - -0.7124656438827515, - -0.5708014965057373, - -0.42840808629989624, - -0.28568702936172485, - -0.14285492897033691, - -4.4703313051286386e-8, - 0.14285492897033691, - 0.28568702936172485, - 0.42840808629989624, - 0.5708014965057373, - 0.7124656438827515, - 0.8527758121490479, - 0.9908826351165771, - -0.9912284016609192, - -0.853003203868866, - -0.712601363658905, - -0.5708727240562439, - -0.42843908071517944, - -0.2856968343257904, - -0.14285655319690704, - -4.470348358154297e-8, - 0.14285655319690704, - 0.2856968343257904, - 0.42843908071517944, - 0.5708727240562439, - 0.712601363658905, - 0.853003203868866, - 0.9912284016609192, - -0.9908826351165771, - -0.8527758121490479, - -0.7124656438827515, - -0.5708014965057373, - -0.42840808629989624, - -0.28568702936172485, - -0.14285492897033691, - -4.4703313051286386e-8, - 0.14285492897033691, - 0.28568702936172485, - 0.42840808629989624, - 0.5708014965057373, - 0.7124656438827515, - 0.8527758121490479, - 0.9908826351165771, - -0.9898109436035156, - -0.8520603179931641, - -0.7120283246040344, - -0.570562481880188, - -0.428295761346817, - -0.28564453125, - -0.14284348487854004, - -4.470075509743765e-8, - 0.14284348487854004, - 0.28564453125, - 0.428295761346817, - 0.570562481880188, - 0.7120283246040344, - 0.8520603179931641, - 0.9898109436035156, - -0.9879143834114075, - -0.8507592678070068, - -0.7112007737159729, - -0.5700810551643372, - -0.42804449796676636, - -0.2855305075645447, - -0.1428026705980301, - -4.468968128890083e-8, - 0.1428026705980301, - 0.2855305075645447, - 0.42804449796676636, - 0.5700810551643372, - 0.7112007737159729, - 0.8507592678070068, - 0.9879143834114075, - -0.985040545463562, - -0.8487204313278198, - -0.7098424434661865, - -0.5692370533943176, - -0.4275607764720917, - -0.285281240940094, - -0.14270034432411194, - -4.466000191882813e-8, - 0.14270034432411194, - 0.285281240940094, - 0.4275607764720917, - 0.5692370533943176, - 0.7098424434661865, - 0.8487204313278198, - 0.985040545463562, - -0.9810050129890442, - -0.8457538485527039, - -0.7077733278274536, - -0.5678738951683044, - -0.42672044038772583, - -0.2848113179206848, - -0.1424930840730667, - -4.45980674612656e-8, - 0.1424930840730667, - 0.2848113179206848, - 0.42672044038772583, - 0.5678738951683044, - 0.7077733278274536, - 0.8457538485527039, - 0.9810050129890442, - -0.9756186008453369, - -0.8416566252708435, - -0.7047948837280273, - -0.5658136010169983, - -0.42537960410118103, - -0.2840200960636139, - -0.14212925732135773, - -4.448758517128226e-8, - 0.14212925732135773, - 0.2840200960636139, - 0.42537960410118103, - 0.5658136010169983, - 0.7047948837280273, - 0.8416566252708435, - 0.9756186008453369, - -0.9687203168869019, - -0.836244523525238, - -0.7007178664207458, - -0.562880277633667, - -0.42339184880256653, - -0.28280311822891235, - -0.14155462384223938, - -4.431135991467272e-8, - 0.14155462384223938, - 0.28280311822891235, - 0.42339184880256653, - 0.562880277633667, - 0.7007178664207458, - 0.836244523525238, - 0.9687203168869019 - ], - "yaxis": "y4" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9610183835029602, - -0.969376802444458, - -0.9759876728057861, - -0.9809933304786682, - -0.9845874309539795, - -0.9869734644889832, - -0.9883267879486084, - -0.988764226436615, - -0.9883267879486084, - -0.9869734644889832, - -0.9845874309539795, - -0.9809933304786682, - -0.9759876728057861, - -0.969376802444458, - -0.9610183835029602, - -0.830894410610199, - -0.8375436663627625, - -0.8426414728164673, - -0.8463696837425232, - -0.8489512205123901, - -0.8506070375442505, - -0.8515205979347229, - -0.8518112897872925, - -0.8515205979347229, - -0.8506070375442505, - -0.8489512205123901, - -0.8463696837425232, - -0.8426414728164673, - -0.8375436663627625, - -0.830894410610199, - -0.6971340775489807, - -0.702201247215271, - -0.7059476971626282, - -0.708574116230011, - -0.710309624671936, - -0.7113714218139648, - -0.7119339108467102, - -0.7121086716651917, - -0.7119339108467102, - -0.7113714218139648, - -0.710309624671936, - -0.708574116230011, - -0.7059476971626282, - -0.702201247215271, - -0.6971340775489807, - -0.5605675578117371, - -0.564246416091919, - -0.566859245300293, - -0.5686020851135254, - -0.5696868896484375, - -0.5703077912330627, - -0.570616602897644, - -0.5707087516784668, - -0.570616602897644, - -0.5703077912330627, - -0.5696868896484375, - -0.5686020851135254, - -0.566859245300293, - -0.564246416091919, - -0.5605675578117371, - -0.421966016292572, - -0.4244755804538727, - -0.4261857271194458, - -0.42726513743400574, - -0.42788925766944885, - -0.42821428179740906, - -0.4283596873283386, - -0.42839986085891724, - -0.4283596873283386, - -0.42821428179740906, - -0.42788925766944885, - -0.42726513743400574, - -0.4261857271194458, - -0.4244755804538727, - -0.421966016292572, - -0.2819924056529999, - -0.2835356593132019, - -0.2845485508441925, - -0.28515389561653137, - -0.2854761779308319, - -0.2856238782405853, - -0.2856789231300354, - -0.28569164872169495, - -0.2856789231300354, - -0.2856238782405853, - -0.2854761779308319, - -0.28515389561653137, - -0.2845485508441925, - -0.2835356593132019, - -0.2819924056529999, - -0.14118950068950653, - -0.1419200599193573, - -0.14238674938678741, - -0.14265412092208862, - -0.14278653264045715, - -0.1428394317626953, - -0.14285427331924438, - -0.1428563892841339, - -0.14285427331924438, - -0.1428394317626953, - -0.14278653264045715, - -0.14265412092208862, - -0.14238674938678741, - -0.1419200599193573, - -0.14118950068950653, - -4.420120447434783e-8, - -4.442541978733061e-8, - -4.456722990653361e-8, - -4.464717306973398e-8, - -4.468559211545653e-8, - -4.4699945078718883e-8, - -4.4703259760581204e-8, - -4.470348358154297e-8, - -4.4703259760581204e-8, - -4.4699945078718883e-8, - -4.468559211545653e-8, - -4.464717306973398e-8, - -4.456722990653361e-8, - -4.442541978733061e-8, - -4.420120447434783e-8, - 0.14118950068950653, - 0.1419200599193573, - 0.14238674938678741, - 0.14265412092208862, - 0.14278653264045715, - 0.1428394317626953, - 0.14285427331924438, - 0.1428563892841339, - 0.14285427331924438, - 0.1428394317626953, - 0.14278653264045715, - 0.14265412092208862, - 0.14238674938678741, - 0.1419200599193573, - 0.14118950068950653, - 0.2819924056529999, - 0.2835356593132019, - 0.2845485508441925, - 0.28515389561653137, - 0.2854761779308319, - 0.2856238782405853, - 0.2856789231300354, - 0.28569164872169495, - 0.2856789231300354, - 0.2856238782405853, - 0.2854761779308319, - 0.28515389561653137, - 0.2845485508441925, - 0.2835356593132019, - 0.2819924056529999, - 0.421966016292572, - 0.4244755804538727, - 0.4261857271194458, - 0.42726513743400574, - 0.42788925766944885, - 0.42821428179740906, - 0.4283596873283386, - 0.42839986085891724, - 0.4283596873283386, - 0.42821428179740906, - 0.42788925766944885, - 0.42726513743400574, - 0.4261857271194458, - 0.4244755804538727, - 0.421966016292572, - 0.5605675578117371, - 0.564246416091919, - 0.566859245300293, - 0.5686020851135254, - 0.5696868896484375, - 0.5703077912330627, - 0.570616602897644, - 0.5707087516784668, - 0.570616602897644, - 0.5703077912330627, - 0.5696868896484375, - 0.5686020851135254, - 0.566859245300293, - 0.564246416091919, - 0.5605675578117371, - 0.6971340775489807, - 0.702201247215271, - 0.7059476971626282, - 0.708574116230011, - 0.710309624671936, - 0.7113714218139648, - 0.7119339108467102, - 0.7121086716651917, - 0.7119339108467102, - 0.7113714218139648, - 0.710309624671936, - 0.708574116230011, - 0.7059476971626282, - 0.702201247215271, - 0.6971340775489807, - 0.830894410610199, - 0.8375436663627625, - 0.8426414728164673, - 0.8463696837425232, - 0.8489512205123901, - 0.8506070375442505, - 0.8515205979347229, - 0.8518112897872925, - 0.8515205979347229, - 0.8506070375442505, - 0.8489512205123901, - 0.8463696837425232, - 0.8426414728164673, - 0.8375436663627625, - 0.830894410610199, - 0.9610183835029602, - 0.969376802444458, - 0.9759876728057861, - 0.9809933304786682, - 0.9845874309539795, - 0.9869734644889832, - 0.9883267879486084, - 0.988764226436615, - 0.9883267879486084, - 0.9869734644889832, - 0.9845874309539795, - 0.9809933304786682, - 0.9759876728057861, - 0.969376802444458, - 0.9610183835029602 - ], - "xaxis": "x4", - "y": [ - -0.9610183835029602, - -0.830894410610199, - -0.6971340775489807, - -0.5605675578117371, - -0.421966016292572, - -0.2819924056529999, - -0.14118950068950653, - -4.420120447434783e-8, - 0.14118950068950653, - 0.2819924056529999, - 0.421966016292572, - 0.5605675578117371, - 0.6971340775489807, - 0.830894410610199, - 0.9610183835029602, - -0.969376802444458, - -0.8375436663627625, - -0.702201247215271, - -0.564246416091919, - -0.4244755804538727, - -0.2835356593132019, - -0.1419200599193573, - -4.442541978733061e-8, - 0.1419200599193573, - 0.2835356593132019, - 0.4244755804538727, - 0.564246416091919, - 0.702201247215271, - 0.8375436663627625, - 0.969376802444458, - -0.9759876728057861, - -0.8426414728164673, - -0.7059476971626282, - -0.566859245300293, - -0.4261857271194458, - -0.2845485508441925, - -0.14238674938678741, - -4.456722990653361e-8, - 0.14238674938678741, - 0.2845485508441925, - 0.4261857271194458, - 0.566859245300293, - 0.7059476971626282, - 0.8426414728164673, - 0.9759876728057861, - -0.9809933304786682, - -0.8463696837425232, - -0.708574116230011, - -0.5686020851135254, - -0.42726513743400574, - -0.28515389561653137, - -0.14265412092208862, - -4.464717306973398e-8, - 0.14265412092208862, - 0.28515389561653137, - 0.42726513743400574, - 0.5686020851135254, - 0.708574116230011, - 0.8463696837425232, - 0.9809933304786682, - -0.9845874309539795, - -0.8489512205123901, - -0.710309624671936, - -0.5696868896484375, - -0.42788925766944885, - -0.2854761779308319, - -0.14278653264045715, - -4.468559211545653e-8, - 0.14278653264045715, - 0.2854761779308319, - 0.42788925766944885, - 0.5696868896484375, - 0.710309624671936, - 0.8489512205123901, - 0.9845874309539795, - -0.9869734644889832, - -0.8506070375442505, - -0.7113714218139648, - -0.5703077912330627, - -0.42821428179740906, - -0.2856238782405853, - -0.1428394317626953, - -4.4699945078718883e-8, - 0.1428394317626953, - 0.2856238782405853, - 0.42821428179740906, - 0.5703077912330627, - 0.7113714218139648, - 0.8506070375442505, - 0.9869734644889832, - -0.9883267879486084, - -0.8515205979347229, - -0.7119339108467102, - -0.570616602897644, - -0.4283596873283386, - -0.2856789231300354, - -0.14285427331924438, - -4.4703259760581204e-8, - 0.14285427331924438, - 0.2856789231300354, - 0.4283596873283386, - 0.570616602897644, - 0.7119339108467102, - 0.8515205979347229, - 0.9883267879486084, - -0.988764226436615, - -0.8518112897872925, - -0.7121086716651917, - -0.5707087516784668, - -0.42839986085891724, - -0.28569164872169495, - -0.1428563892841339, - -4.470348358154297e-8, - 0.1428563892841339, - 0.28569164872169495, - 0.42839986085891724, - 0.5707087516784668, - 0.7121086716651917, - 0.8518112897872925, - 0.988764226436615, - -0.9883267879486084, - -0.8515205979347229, - -0.7119339108467102, - -0.570616602897644, - -0.4283596873283386, - -0.2856789231300354, - -0.14285427331924438, - -4.4703259760581204e-8, - 0.14285427331924438, - 0.2856789231300354, - 0.4283596873283386, - 0.570616602897644, - 0.7119339108467102, - 0.8515205979347229, - 0.9883267879486084, - -0.9869734644889832, - -0.8506070375442505, - -0.7113714218139648, - -0.5703077912330627, - -0.42821428179740906, - -0.2856238782405853, - -0.1428394317626953, - -4.4699945078718883e-8, - 0.1428394317626953, - 0.2856238782405853, - 0.42821428179740906, - 0.5703077912330627, - 0.7113714218139648, - 0.8506070375442505, - 0.9869734644889832, - -0.9845874309539795, - -0.8489512205123901, - -0.710309624671936, - -0.5696868896484375, - -0.42788925766944885, - -0.2854761779308319, - -0.14278653264045715, - -4.468559211545653e-8, - 0.14278653264045715, - 0.2854761779308319, - 0.42788925766944885, - 0.5696868896484375, - 0.710309624671936, - 0.8489512205123901, - 0.9845874309539795, - -0.9809933304786682, - -0.8463696837425232, - -0.708574116230011, - -0.5686020851135254, - -0.42726513743400574, - -0.28515389561653137, - -0.14265412092208862, - -4.464717306973398e-8, - 0.14265412092208862, - 0.28515389561653137, - 0.42726513743400574, - 0.5686020851135254, - 0.708574116230011, - 0.8463696837425232, - 0.9809933304786682, - -0.9759876728057861, - -0.8426414728164673, - -0.7059476971626282, - -0.566859245300293, - -0.4261857271194458, - -0.2845485508441925, - -0.14238674938678741, - -4.456722990653361e-8, - 0.14238674938678741, - 0.2845485508441925, - 0.4261857271194458, - 0.566859245300293, - 0.7059476971626282, - 0.8426414728164673, - 0.9759876728057861, - -0.969376802444458, - -0.8375436663627625, - -0.702201247215271, - -0.564246416091919, - -0.4244755804538727, - -0.2835356593132019, - -0.1419200599193573, - -4.442541978733061e-8, - 0.1419200599193573, - 0.2835356593132019, - 0.4244755804538727, - 0.564246416091919, - 0.702201247215271, - 0.8375436663627625, - 0.969376802444458, - -0.9610183835029602, - -0.830894410610199, - -0.6971340775489807, - -0.5605675578117371, - -0.421966016292572, - -0.2819924056529999, - -0.14118950068950653, - -4.420120447434783e-8, - 0.14118950068950653, - 0.2819924056529999, - 0.421966016292572, - 0.5605675578117371, - 0.6971340775489807, - 0.830894410610199, - 0.9610183835029602 - ], - "yaxis": "y4" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9538523554801941, - -0.963493287563324, - -0.9712055325508118, - -0.9771010875701904, - -0.9813661575317383, - -0.9842133522033691, - -0.9858339428901672, - -0.986358642578125, - -0.9858339428901672, - -0.9842133522033691, - -0.9813661575317383, - -0.9771010875701904, - -0.9712055325508118, - -0.963493287563324, - -0.9538523554801941, - -0.8258513808250427, - -0.8336156010627747, - -0.8396365642547607, - -0.8440809845924377, - -0.8471800088882446, - -0.8491777777671814, - -0.8502832055091858, - -0.8506355881690979, - -0.8502832055091858, - -0.8491777777671814, - -0.8471800088882446, - -0.8440809845924377, - -0.8396365642547607, - -0.8336156010627747, - -0.8258513808250427, - -0.6937182545661926, - -0.6996971964836121, - -0.7041671276092529, - -0.7073279023170471, - -0.7094294428825378, - -0.710720419883728, - -0.7114060521125793, - -0.7116193771362305, - -0.7114060521125793, - -0.710720419883728, - -0.7094294428825378, - -0.7073279023170471, - -0.7041671276092529, - -0.6996971964836121, - -0.6937182545661926, - -0.5583434104919434, - -0.5627205967903137, - -0.565862238407135, - -0.5679740309715271, - -0.5692954659461975, - -0.5700541734695435, - -0.5704323053359985, - -0.5705451965332031, - -0.5704323053359985, - -0.5700541734695435, - -0.5692954659461975, - -0.5679740309715271, - -0.565862238407135, - -0.5627205967903137, - -0.5583434104919434, - -0.4205854833126068, - -0.4235899746417999, - -0.42565762996673584, - -0.42697158455848694, - -0.4277346134185791, - -0.42813289165496826, - -0.42831140756607056, - -0.4283606708049774, - -0.42831140756607056, - -0.42813289165496826, - -0.4277346134185791, - -0.42697158455848694, - -0.42565762996673584, - -0.4235899746417999, - -0.4205854833126068, - -0.2812038064002991, - -0.2830592393875122, - -0.2842881381511688, - -0.28502708673477173, - -0.2854219377040863, - -0.28560319542884827, - -0.28567084670066833, - -0.2856864929199219, - -0.28567084670066833, - -0.28560319542884827, - -0.2854219377040863, - -0.28502708673477173, - -0.2842881381511688, - -0.2830592393875122, - -0.2812038064002991, - -0.14083337783813477, - -0.14171382784843445, - -0.142281174659729, - -0.14260804653167725, - -0.1427704393863678, - -0.14283539354801178, - -0.14285363256931305, - -0.14285624027252197, - -0.14285363256931305, - -0.14283539354801178, - -0.1427704393863678, - -0.14260804653167725, - -0.142281174659729, - -0.14171382784843445, - -0.14083337783813477, - -4.409366383129054e-8, - -4.436410350194819e-8, - -4.453660906733603e-8, - -4.463437619506294e-8, - -4.468150294201223e-8, - -4.469913506000012e-8, - -4.470321357530338e-8, - -4.470348358154297e-8, - -4.470321357530338e-8, - -4.469913506000012e-8, - -4.468150294201223e-8, - -4.463437619506294e-8, - -4.453660906733603e-8, - -4.436410350194819e-8, - -4.409366383129054e-8, - 0.14083337783813477, - 0.14171382784843445, - 0.142281174659729, - 0.14260804653167725, - 0.1427704393863678, - 0.14283539354801178, - 0.14285363256931305, - 0.14285624027252197, - 0.14285363256931305, - 0.14283539354801178, - 0.1427704393863678, - 0.14260804653167725, - 0.142281174659729, - 0.14171382784843445, - 0.14083337783813477, - 0.2812038064002991, - 0.2830592393875122, - 0.2842881381511688, - 0.28502708673477173, - 0.2854219377040863, - 0.28560319542884827, - 0.28567084670066833, - 0.2856864929199219, - 0.28567084670066833, - 0.28560319542884827, - 0.2854219377040863, - 0.28502708673477173, - 0.2842881381511688, - 0.2830592393875122, - 0.2812038064002991, - 0.4205854833126068, - 0.4235899746417999, - 0.42565762996673584, - 0.42697158455848694, - 0.4277346134185791, - 0.42813289165496826, - 0.42831140756607056, - 0.4283606708049774, - 0.42831140756607056, - 0.42813289165496826, - 0.4277346134185791, - 0.42697158455848694, - 0.42565762996673584, - 0.4235899746417999, - 0.4205854833126068, - 0.5583434104919434, - 0.5627205967903137, - 0.565862238407135, - 0.5679740309715271, - 0.5692954659461975, - 0.5700541734695435, - 0.5704323053359985, - 0.5705451965332031, - 0.5704323053359985, - 0.5700541734695435, - 0.5692954659461975, - 0.5679740309715271, - 0.565862238407135, - 0.5627205967903137, - 0.5583434104919434, - 0.6937182545661926, - 0.6996971964836121, - 0.7041671276092529, - 0.7073279023170471, - 0.7094294428825378, - 0.710720419883728, - 0.7114060521125793, - 0.7116193771362305, - 0.7114060521125793, - 0.710720419883728, - 0.7094294428825378, - 0.7073279023170471, - 0.7041671276092529, - 0.6996971964836121, - 0.6937182545661926, - 0.8258513808250427, - 0.8336156010627747, - 0.8396365642547607, - 0.8440809845924377, - 0.8471800088882446, - 0.8491777777671814, - 0.8502832055091858, - 0.8506355881690979, - 0.8502832055091858, - 0.8491777777671814, - 0.8471800088882446, - 0.8440809845924377, - 0.8396365642547607, - 0.8336156010627747, - 0.8258513808250427, - 0.9538523554801941, - 0.963493287563324, - 0.9712055325508118, - 0.9771010875701904, - 0.9813661575317383, - 0.9842133522033691, - 0.9858339428901672, - 0.986358642578125, - 0.9858339428901672, - 0.9842133522033691, - 0.9813661575317383, - 0.9771010875701904, - 0.9712055325508118, - 0.963493287563324, - 0.9538523554801941 - ], - "xaxis": "x4", - "y": [ - -0.9538523554801941, - -0.8258513808250427, - -0.6937182545661926, - -0.5583434104919434, - -0.4205854833126068, - -0.2812038064002991, - -0.14083337783813477, - -4.409366383129054e-8, - 0.14083337783813477, - 0.2812038064002991, - 0.4205854833126068, - 0.5583434104919434, - 0.6937182545661926, - 0.8258513808250427, - 0.9538523554801941, - -0.963493287563324, - -0.8336156010627747, - -0.6996971964836121, - -0.5627205967903137, - -0.4235899746417999, - -0.2830592393875122, - -0.14171382784843445, - -4.436410350194819e-8, - 0.14171382784843445, - 0.2830592393875122, - 0.4235899746417999, - 0.5627205967903137, - 0.6996971964836121, - 0.8336156010627747, - 0.963493287563324, - -0.9712055325508118, - -0.8396365642547607, - -0.7041671276092529, - -0.565862238407135, - -0.42565762996673584, - -0.2842881381511688, - -0.142281174659729, - -4.453660906733603e-8, - 0.142281174659729, - 0.2842881381511688, - 0.42565762996673584, - 0.565862238407135, - 0.7041671276092529, - 0.8396365642547607, - 0.9712055325508118, - -0.9771010875701904, - -0.8440809845924377, - -0.7073279023170471, - -0.5679740309715271, - -0.42697158455848694, - -0.28502708673477173, - -0.14260804653167725, - -4.463437619506294e-8, - 0.14260804653167725, - 0.28502708673477173, - 0.42697158455848694, - 0.5679740309715271, - 0.7073279023170471, - 0.8440809845924377, - 0.9771010875701904, - -0.9813661575317383, - -0.8471800088882446, - -0.7094294428825378, - -0.5692954659461975, - -0.4277346134185791, - -0.2854219377040863, - -0.1427704393863678, - -4.468150294201223e-8, - 0.1427704393863678, - 0.2854219377040863, - 0.4277346134185791, - 0.5692954659461975, - 0.7094294428825378, - 0.8471800088882446, - 0.9813661575317383, - -0.9842133522033691, - -0.8491777777671814, - -0.710720419883728, - -0.5700541734695435, - -0.42813289165496826, - -0.28560319542884827, - -0.14283539354801178, - -4.469913506000012e-8, - 0.14283539354801178, - 0.28560319542884827, - 0.42813289165496826, - 0.5700541734695435, - 0.710720419883728, - 0.8491777777671814, - 0.9842133522033691, - -0.9858339428901672, - -0.8502832055091858, - -0.7114060521125793, - -0.5704323053359985, - -0.42831140756607056, - -0.28567084670066833, - -0.14285363256931305, - -4.470321357530338e-8, - 0.14285363256931305, - 0.28567084670066833, - 0.42831140756607056, - 0.5704323053359985, - 0.7114060521125793, - 0.8502832055091858, - 0.9858339428901672, - -0.986358642578125, - -0.8506355881690979, - -0.7116193771362305, - -0.5705451965332031, - -0.4283606708049774, - -0.2856864929199219, - -0.14285624027252197, - -4.470348358154297e-8, - 0.14285624027252197, - 0.2856864929199219, - 0.4283606708049774, - 0.5705451965332031, - 0.7116193771362305, - 0.8506355881690979, - 0.986358642578125, - -0.9858339428901672, - -0.8502832055091858, - -0.7114060521125793, - -0.5704323053359985, - -0.42831140756607056, - -0.28567084670066833, - -0.14285363256931305, - -4.470321357530338e-8, - 0.14285363256931305, - 0.28567084670066833, - 0.42831140756607056, - 0.5704323053359985, - 0.7114060521125793, - 0.8502832055091858, - 0.9858339428901672, - -0.9842133522033691, - -0.8491777777671814, - -0.710720419883728, - -0.5700541734695435, - -0.42813289165496826, - -0.28560319542884827, - -0.14283539354801178, - -4.469913506000012e-8, - 0.14283539354801178, - 0.28560319542884827, - 0.42813289165496826, - 0.5700541734695435, - 0.710720419883728, - 0.8491777777671814, - 0.9842133522033691, - -0.9813661575317383, - -0.8471800088882446, - -0.7094294428825378, - -0.5692954659461975, - -0.4277346134185791, - -0.2854219377040863, - -0.1427704393863678, - -4.468150294201223e-8, - 0.1427704393863678, - 0.2854219377040863, - 0.4277346134185791, - 0.5692954659461975, - 0.7094294428825378, - 0.8471800088882446, - 0.9813661575317383, - -0.9771010875701904, - -0.8440809845924377, - -0.7073279023170471, - -0.5679740309715271, - -0.42697158455848694, - -0.28502708673477173, - -0.14260804653167725, - -4.463437619506294e-8, - 0.14260804653167725, - 0.28502708673477173, - 0.42697158455848694, - 0.5679740309715271, - 0.7073279023170471, - 0.8440809845924377, - 0.9771010875701904, - -0.9712055325508118, - -0.8396365642547607, - -0.7041671276092529, - -0.565862238407135, - -0.42565762996673584, - -0.2842881381511688, - -0.142281174659729, - -4.453660906733603e-8, - 0.142281174659729, - 0.2842881381511688, - 0.42565762996673584, - 0.565862238407135, - 0.7041671276092529, - 0.8396365642547607, - 0.9712055325508118, - -0.963493287563324, - -0.8336156010627747, - -0.6996971964836121, - -0.5627205967903137, - -0.4235899746417999, - -0.2830592393875122, - -0.14171382784843445, - -4.436410350194819e-8, - 0.14171382784843445, - 0.2830592393875122, - 0.4235899746417999, - 0.5627205967903137, - 0.6996971964836121, - 0.8336156010627747, - 0.963493287563324, - -0.9538523554801941, - -0.8258513808250427, - -0.6937182545661926, - -0.5583434104919434, - -0.4205854833126068, - -0.2812038064002991, - -0.14083337783813477, - -4.409366383129054e-8, - 0.14083337783813477, - 0.2812038064002991, - 0.4205854833126068, - 0.5583434104919434, - 0.6937182545661926, - 0.8258513808250427, - 0.9538523554801941 - ], - "yaxis": "y4" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9471507668495178, - -0.9579281210899353, - -0.9666366577148438, - -0.9733519554138184, - -0.9782438278198242, - -0.9815263748168945, - -0.9834010004997253, - -0.9840089082717896, - -0.9834010004997253, - -0.9815263748168945, - -0.9782438278198242, - -0.9733519554138184, - -0.9666366577148438, - -0.9579281210899353, - -0.9471507668495178, - -0.8210812211036682, - -0.8298558592796326, - -0.8367316722869873, - -0.8418510556221008, - -0.8454444408416748, - -0.8477717638015747, - -0.8490633964538574, - -0.8494756817817688, - -0.8490633964538574, - -0.8477717638015747, - -0.8454444408416748, - -0.8418510556221008, - -0.8367316722869873, - -0.8298558592796326, - -0.8210812211036682, - -0.6904547810554504, - -0.6972764134407043, - -0.7024292945861816, - -0.706102728843689, - -0.7085598707199097, - -0.7100753784179688, - -0.7108821868896484, - -0.7111333608627319, - -0.7108821868896484, - -0.7100753784179688, - -0.7085598707199097, - -0.706102728843689, - -0.7024292945861816, - -0.6972764134407043, - -0.6904547810554504, - -0.5562011003494263, - -0.5612339973449707, - -0.5648821592330933, - -0.5673527717590332, - -0.5689066052436829, - -0.5698018074035645, - -0.5702486038208008, - -0.5703821182250977, - -0.5702486038208008, - -0.5698018074035645, - -0.5689066052436829, - -0.5673527717590332, - -0.5648821592330933, - -0.5612339973449707, - -0.5562011003494263, - -0.4192473292350769, - -0.422722190618515, - -0.42513591051101685, - -0.42667996883392334, - -0.42758050560951233, - -0.4280516803264618, - -0.4282630980014801, - -0.42832151055336, - -0.4282630980014801, - -0.4280516803264618, - -0.42758050560951233, - -0.42667996883392334, - -0.42513591051101685, - -0.422722190618515, - -0.4192473292350769, - -0.28043606877326965, - -0.2825905680656433, - -0.28403010964393616, - -0.2849009037017822, - -0.28536778688430786, - -0.2855825424194336, - -0.2856627404689789, - -0.2856813073158264, - -0.2856627404689789, - -0.2855825424194336, - -0.28536778688430786, - -0.2849009037017822, - -0.28403010964393616, - -0.2825905680656433, - -0.28043606877326965, - -0.14048582315444946, - -0.14151053130626678, - -0.14217638969421387, - -0.1425621211528778, - -0.14275433123111725, - -0.14283134043216705, - -0.14285297691822052, - -0.14285606145858765, - -0.14285297691822052, - -0.14283134043216705, - -0.14275433123111725, - -0.1425621211528778, - -0.14217638969421387, - -0.14151053130626678, - -0.14048582315444946, - -4.3988624298663126e-8, - -4.430360789342558e-8, - -4.450619073281814e-8, - -4.462161840024237e-8, - -4.467741732128161e-8, - -4.469832504128135e-8, - -4.47031602845982e-8, - -4.470348358154297e-8, - -4.47031602845982e-8, - -4.469832504128135e-8, - -4.467741732128161e-8, - -4.462161840024237e-8, - -4.450619073281814e-8, - -4.430360789342558e-8, - -4.3988624298663126e-8, - 0.14048582315444946, - 0.14151053130626678, - 0.14217638969421387, - 0.1425621211528778, - 0.14275433123111725, - 0.14283134043216705, - 0.14285297691822052, - 0.14285606145858765, - 0.14285297691822052, - 0.14283134043216705, - 0.14275433123111725, - 0.1425621211528778, - 0.14217638969421387, - 0.14151053130626678, - 0.14048582315444946, - 0.28043606877326965, - 0.2825905680656433, - 0.28403010964393616, - 0.2849009037017822, - 0.28536778688430786, - 0.2855825424194336, - 0.2856627404689789, - 0.2856813073158264, - 0.2856627404689789, - 0.2855825424194336, - 0.28536778688430786, - 0.2849009037017822, - 0.28403010964393616, - 0.2825905680656433, - 0.28043606877326965, - 0.4192473292350769, - 0.422722190618515, - 0.42513591051101685, - 0.42667996883392334, - 0.42758050560951233, - 0.4280516803264618, - 0.4282630980014801, - 0.42832151055336, - 0.4282630980014801, - 0.4280516803264618, - 0.42758050560951233, - 0.42667996883392334, - 0.42513591051101685, - 0.422722190618515, - 0.4192473292350769, - 0.5562011003494263, - 0.5612339973449707, - 0.5648821592330933, - 0.5673527717590332, - 0.5689066052436829, - 0.5698018074035645, - 0.5702486038208008, - 0.5703821182250977, - 0.5702486038208008, - 0.5698018074035645, - 0.5689066052436829, - 0.5673527717590332, - 0.5648821592330933, - 0.5612339973449707, - 0.5562011003494263, - 0.6904547810554504, - 0.6972764134407043, - 0.7024292945861816, - 0.706102728843689, - 0.7085598707199097, - 0.7100753784179688, - 0.7108821868896484, - 0.7111333608627319, - 0.7108821868896484, - 0.7100753784179688, - 0.7085598707199097, - 0.706102728843689, - 0.7024292945861816, - 0.6972764134407043, - 0.6904547810554504, - 0.8210812211036682, - 0.8298558592796326, - 0.8367316722869873, - 0.8418510556221008, - 0.8454444408416748, - 0.8477717638015747, - 0.8490633964538574, - 0.8494756817817688, - 0.8490633964538574, - 0.8477717638015747, - 0.8454444408416748, - 0.8418510556221008, - 0.8367316722869873, - 0.8298558592796326, - 0.8210812211036682, - 0.9471507668495178, - 0.9579281210899353, - 0.9666366577148438, - 0.9733519554138184, - 0.9782438278198242, - 0.9815263748168945, - 0.9834010004997253, - 0.9840089082717896, - 0.9834010004997253, - 0.9815263748168945, - 0.9782438278198242, - 0.9733519554138184, - 0.9666366577148438, - 0.9579281210899353, - 0.9471507668495178 - ], - "xaxis": "x4", - "y": [ - -0.9471507668495178, - -0.8210812211036682, - -0.6904547810554504, - -0.5562011003494263, - -0.4192473292350769, - -0.28043606877326965, - -0.14048582315444946, - -4.3988624298663126e-8, - 0.14048582315444946, - 0.28043606877326965, - 0.4192473292350769, - 0.5562011003494263, - 0.6904547810554504, - 0.8210812211036682, - 0.9471507668495178, - -0.9579281210899353, - -0.8298558592796326, - -0.6972764134407043, - -0.5612339973449707, - -0.422722190618515, - -0.2825905680656433, - -0.14151053130626678, - -4.430360789342558e-8, - 0.14151053130626678, - 0.2825905680656433, - 0.422722190618515, - 0.5612339973449707, - 0.6972764134407043, - 0.8298558592796326, - 0.9579281210899353, - -0.9666366577148438, - -0.8367316722869873, - -0.7024292945861816, - -0.5648821592330933, - -0.42513591051101685, - -0.28403010964393616, - -0.14217638969421387, - -4.450619073281814e-8, - 0.14217638969421387, - 0.28403010964393616, - 0.42513591051101685, - 0.5648821592330933, - 0.7024292945861816, - 0.8367316722869873, - 0.9666366577148438, - -0.9733519554138184, - -0.8418510556221008, - -0.706102728843689, - -0.5673527717590332, - -0.42667996883392334, - -0.2849009037017822, - -0.1425621211528778, - -4.462161840024237e-8, - 0.1425621211528778, - 0.2849009037017822, - 0.42667996883392334, - 0.5673527717590332, - 0.706102728843689, - 0.8418510556221008, - 0.9733519554138184, - -0.9782438278198242, - -0.8454444408416748, - -0.7085598707199097, - -0.5689066052436829, - -0.42758050560951233, - -0.28536778688430786, - -0.14275433123111725, - -4.467741732128161e-8, - 0.14275433123111725, - 0.28536778688430786, - 0.42758050560951233, - 0.5689066052436829, - 0.7085598707199097, - 0.8454444408416748, - 0.9782438278198242, - -0.9815263748168945, - -0.8477717638015747, - -0.7100753784179688, - -0.5698018074035645, - -0.4280516803264618, - -0.2855825424194336, - -0.14283134043216705, - -4.469832504128135e-8, - 0.14283134043216705, - 0.2855825424194336, - 0.4280516803264618, - 0.5698018074035645, - 0.7100753784179688, - 0.8477717638015747, - 0.9815263748168945, - -0.9834010004997253, - -0.8490633964538574, - -0.7108821868896484, - -0.5702486038208008, - -0.4282630980014801, - -0.2856627404689789, - -0.14285297691822052, - -4.47031602845982e-8, - 0.14285297691822052, - 0.2856627404689789, - 0.4282630980014801, - 0.5702486038208008, - 0.7108821868896484, - 0.8490633964538574, - 0.9834010004997253, - -0.9840089082717896, - -0.8494756817817688, - -0.7111333608627319, - -0.5703821182250977, - -0.42832151055336, - -0.2856813073158264, - -0.14285606145858765, - -4.470348358154297e-8, - 0.14285606145858765, - 0.2856813073158264, - 0.42832151055336, - 0.5703821182250977, - 0.7111333608627319, - 0.8494756817817688, - 0.9840089082717896, - -0.9834010004997253, - -0.8490633964538574, - -0.7108821868896484, - -0.5702486038208008, - -0.4282630980014801, - -0.2856627404689789, - -0.14285297691822052, - -4.47031602845982e-8, - 0.14285297691822052, - 0.2856627404689789, - 0.4282630980014801, - 0.5702486038208008, - 0.7108821868896484, - 0.8490633964538574, - 0.9834010004997253, - -0.9815263748168945, - -0.8477717638015747, - -0.7100753784179688, - -0.5698018074035645, - -0.4280516803264618, - -0.2855825424194336, - -0.14283134043216705, - -4.469832504128135e-8, - 0.14283134043216705, - 0.2855825424194336, - 0.4280516803264618, - 0.5698018074035645, - 0.7100753784179688, - 0.8477717638015747, - 0.9815263748168945, - -0.9782438278198242, - -0.8454444408416748, - -0.7085598707199097, - -0.5689066052436829, - -0.42758050560951233, - -0.28536778688430786, - -0.14275433123111725, - -4.467741732128161e-8, - 0.14275433123111725, - 0.28536778688430786, - 0.42758050560951233, - 0.5689066052436829, - 0.7085598707199097, - 0.8454444408416748, - 0.9782438278198242, - -0.9733519554138184, - -0.8418510556221008, - -0.706102728843689, - -0.5673527717590332, - -0.42667996883392334, - -0.2849009037017822, - -0.1425621211528778, - -4.462161840024237e-8, - 0.1425621211528778, - 0.2849009037017822, - 0.42667996883392334, - 0.5673527717590332, - 0.706102728843689, - 0.8418510556221008, - 0.9733519554138184, - -0.9666366577148438, - -0.8367316722869873, - -0.7024292945861816, - -0.5648821592330933, - -0.42513591051101685, - -0.28403010964393616, - -0.14217638969421387, - -4.450619073281814e-8, - 0.14217638969421387, - 0.28403010964393616, - 0.42513591051101685, - 0.5648821592330933, - 0.7024292945861816, - 0.8367316722869873, - 0.9666366577148438, - -0.9579281210899353, - -0.8298558592796326, - -0.6972764134407043, - -0.5612339973449707, - -0.422722190618515, - -0.2825905680656433, - -0.14151053130626678, - -4.430360789342558e-8, - 0.14151053130626678, - 0.2825905680656433, - 0.422722190618515, - 0.5612339973449707, - 0.6972764134407043, - 0.8298558592796326, - 0.9579281210899353, - -0.9471507668495178, - -0.8210812211036682, - -0.6904547810554504, - -0.5562011003494263, - -0.4192473292350769, - -0.28043606877326965, - -0.14048582315444946, - -4.3988624298663126e-8, - 0.14048582315444946, - 0.28043606877326965, - 0.4192473292350769, - 0.5562011003494263, - 0.6904547810554504, - 0.8210812211036682, - 0.9471507668495178 - ], - "yaxis": "y4" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9408560395240784, - -0.9526476263999939, - -0.9622625112533569, - -0.9697354435920715, - -0.975214421749115, - -0.9789086580276489, - -0.981024980545044, - -0.9817124605178833, - -0.981024980545044, - -0.9789086580276489, - -0.975214421749115, - -0.9697354435920715, - -0.9622625112533569, - -0.9526476263999939, - -0.9408560395240784, - -0.8165550827980042, - -0.8262503743171692, - -0.8339202404022217, - -0.8396766781806946, - -0.843742847442627, - -0.8463882207870483, - -0.8478605151176453, - -0.848331093788147, - -0.8478605151176453, - -0.8463882207870483, - -0.843742847442627, - -0.8396766781806946, - -0.8339202404022217, - -0.8262503743171692, - -0.8165550827980042, - -0.6873303651809692, - -0.6949335336685181, - -0.7007321119308472, - -0.7048981189727783, - -0.7077006697654724, - -0.7094359993934631, - -0.7103620171546936, - -0.710650622844696, - -0.7103620171546936, - -0.7094359993934631, - -0.7077006697654724, - -0.7048981189727783, - -0.7007321119308472, - -0.6949335336685181, - -0.6873303651809692, - -0.5541344881057739, - -0.5597844123840332, - -0.56391841173172, - -0.5667381286621094, - -0.5685204863548279, - -0.5695504546165466, - -0.570065438747406, - -0.5702194571495056, - -0.570065438747406, - -0.5695504546165466, - -0.5685204863548279, - -0.5667381286621094, - -0.56391841173172, - -0.5597844123840332, - -0.5541344881057739, - -0.41794899106025696, - -0.4218713939189911, - -0.4246203601360321, - -0.4263903498649597, - -0.42742693424224854, - -0.42797061800956726, - -0.4282148778438568, - -0.4282824397087097, - -0.4282148778438568, - -0.42797061800956726, - -0.42742693424224854, - -0.4263903498649597, - -0.4246203601360321, - -0.4218713939189911, - -0.41794899106025696, - -0.27968817949295044, - -0.2821293771266937, - -0.28377437591552734, - -0.2847752273082733, - -0.28531375527381897, - -0.2855619192123413, - -0.2856546640396118, - -0.28567609190940857, - -0.2856546640396118, - -0.2855619192123413, - -0.28531375527381897, - -0.2847752273082733, - -0.28377437591552734, - -0.2821293771266937, - -0.27968817949295044, - -0.1401463896036148, - -0.14131005108356476, - -0.14207236468791962, - -0.1425163298845291, - -0.14273826777935028, - -0.14282730221748352, - -0.14285233616828918, - -0.1428559124469757, - -0.14285233616828918, - -0.14282730221748352, - -0.14273826777935028, - -0.1425163298845291, - -0.14207236468791962, - -0.14131005108356476, - -0.1401463896036148, - -4.3885965084200507e-8, - -4.424391519819437e-8, - -4.44759820084073e-8, - -4.4608896132558584e-8, - -4.4673342358692025e-8, - -4.4697511469848905e-8, - -4.4703110546606695e-8, - -4.470348358154297e-8, - -4.4703110546606695e-8, - -4.4697511469848905e-8, - -4.4673342358692025e-8, - -4.4608896132558584e-8, - -4.44759820084073e-8, - -4.424391519819437e-8, - -4.3885965084200507e-8, - 0.1401463896036148, - 0.14131005108356476, - 0.14207236468791962, - 0.1425163298845291, - 0.14273826777935028, - 0.14282730221748352, - 0.14285233616828918, - 0.1428559124469757, - 0.14285233616828918, - 0.14282730221748352, - 0.14273826777935028, - 0.1425163298845291, - 0.14207236468791962, - 0.14131005108356476, - 0.1401463896036148, - 0.27968817949295044, - 0.2821293771266937, - 0.28377437591552734, - 0.2847752273082733, - 0.28531375527381897, - 0.2855619192123413, - 0.2856546640396118, - 0.28567609190940857, - 0.2856546640396118, - 0.2855619192123413, - 0.28531375527381897, - 0.2847752273082733, - 0.28377437591552734, - 0.2821293771266937, - 0.27968817949295044, - 0.41794899106025696, - 0.4218713939189911, - 0.4246203601360321, - 0.4263903498649597, - 0.42742693424224854, - 0.42797061800956726, - 0.4282148778438568, - 0.4282824397087097, - 0.4282148778438568, - 0.42797061800956726, - 0.42742693424224854, - 0.4263903498649597, - 0.4246203601360321, - 0.4218713939189911, - 0.41794899106025696, - 0.5541344881057739, - 0.5597844123840332, - 0.56391841173172, - 0.5667381286621094, - 0.5685204863548279, - 0.5695504546165466, - 0.570065438747406, - 0.5702194571495056, - 0.570065438747406, - 0.5695504546165466, - 0.5685204863548279, - 0.5667381286621094, - 0.56391841173172, - 0.5597844123840332, - 0.5541344881057739, - 0.6873303651809692, - 0.6949335336685181, - 0.7007321119308472, - 0.7048981189727783, - 0.7077006697654724, - 0.7094359993934631, - 0.7103620171546936, - 0.710650622844696, - 0.7103620171546936, - 0.7094359993934631, - 0.7077006697654724, - 0.7048981189727783, - 0.7007321119308472, - 0.6949335336685181, - 0.6873303651809692, - 0.8165550827980042, - 0.8262503743171692, - 0.8339202404022217, - 0.8396766781806946, - 0.843742847442627, - 0.8463882207870483, - 0.8478605151176453, - 0.848331093788147, - 0.8478605151176453, - 0.8463882207870483, - 0.843742847442627, - 0.8396766781806946, - 0.8339202404022217, - 0.8262503743171692, - 0.8165550827980042, - 0.9408560395240784, - 0.9526476263999939, - 0.9622625112533569, - 0.9697354435920715, - 0.975214421749115, - 0.9789086580276489, - 0.981024980545044, - 0.9817124605178833, - 0.981024980545044, - 0.9789086580276489, - 0.975214421749115, - 0.9697354435920715, - 0.9622625112533569, - 0.9526476263999939, - 0.9408560395240784 - ], - "xaxis": "x4", - "y": [ - -0.9408560395240784, - -0.8165550827980042, - -0.6873303651809692, - -0.5541344881057739, - -0.41794899106025696, - -0.27968817949295044, - -0.1401463896036148, - -4.3885965084200507e-8, - 0.1401463896036148, - 0.27968817949295044, - 0.41794899106025696, - 0.5541344881057739, - 0.6873303651809692, - 0.8165550827980042, - 0.9408560395240784, - -0.9526476263999939, - -0.8262503743171692, - -0.6949335336685181, - -0.5597844123840332, - -0.4218713939189911, - -0.2821293771266937, - -0.14131005108356476, - -4.424391519819437e-8, - 0.14131005108356476, - 0.2821293771266937, - 0.4218713939189911, - 0.5597844123840332, - 0.6949335336685181, - 0.8262503743171692, - 0.9526476263999939, - -0.9622625112533569, - -0.8339202404022217, - -0.7007321119308472, - -0.56391841173172, - -0.4246203601360321, - -0.28377437591552734, - -0.14207236468791962, - -4.44759820084073e-8, - 0.14207236468791962, - 0.28377437591552734, - 0.4246203601360321, - 0.56391841173172, - 0.7007321119308472, - 0.8339202404022217, - 0.9622625112533569, - -0.9697354435920715, - -0.8396766781806946, - -0.7048981189727783, - -0.5667381286621094, - -0.4263903498649597, - -0.2847752273082733, - -0.1425163298845291, - -4.4608896132558584e-8, - 0.1425163298845291, - 0.2847752273082733, - 0.4263903498649597, - 0.5667381286621094, - 0.7048981189727783, - 0.8396766781806946, - 0.9697354435920715, - -0.975214421749115, - -0.843742847442627, - -0.7077006697654724, - -0.5685204863548279, - -0.42742693424224854, - -0.28531375527381897, - -0.14273826777935028, - -4.4673342358692025e-8, - 0.14273826777935028, - 0.28531375527381897, - 0.42742693424224854, - 0.5685204863548279, - 0.7077006697654724, - 0.843742847442627, - 0.975214421749115, - -0.9789086580276489, - -0.8463882207870483, - -0.7094359993934631, - -0.5695504546165466, - -0.42797061800956726, - -0.2855619192123413, - -0.14282730221748352, - -4.4697511469848905e-8, - 0.14282730221748352, - 0.2855619192123413, - 0.42797061800956726, - 0.5695504546165466, - 0.7094359993934631, - 0.8463882207870483, - 0.9789086580276489, - -0.981024980545044, - -0.8478605151176453, - -0.7103620171546936, - -0.570065438747406, - -0.4282148778438568, - -0.2856546640396118, - -0.14285233616828918, - -4.4703110546606695e-8, - 0.14285233616828918, - 0.2856546640396118, - 0.4282148778438568, - 0.570065438747406, - 0.7103620171546936, - 0.8478605151176453, - 0.981024980545044, - -0.9817124605178833, - -0.848331093788147, - -0.710650622844696, - -0.5702194571495056, - -0.4282824397087097, - -0.28567609190940857, - -0.1428559124469757, - -4.470348358154297e-8, - 0.1428559124469757, - 0.28567609190940857, - 0.4282824397087097, - 0.5702194571495056, - 0.710650622844696, - 0.848331093788147, - 0.9817124605178833, - -0.981024980545044, - -0.8478605151176453, - -0.7103620171546936, - -0.570065438747406, - -0.4282148778438568, - -0.2856546640396118, - -0.14285233616828918, - -4.4703110546606695e-8, - 0.14285233616828918, - 0.2856546640396118, - 0.4282148778438568, - 0.570065438747406, - 0.7103620171546936, - 0.8478605151176453, - 0.981024980545044, - -0.9789086580276489, - -0.8463882207870483, - -0.7094359993934631, - -0.5695504546165466, - -0.42797061800956726, - -0.2855619192123413, - -0.14282730221748352, - -4.4697511469848905e-8, - 0.14282730221748352, - 0.2855619192123413, - 0.42797061800956726, - 0.5695504546165466, - 0.7094359993934631, - 0.8463882207870483, - 0.9789086580276489, - -0.975214421749115, - -0.843742847442627, - -0.7077006697654724, - -0.5685204863548279, - -0.42742693424224854, - -0.28531375527381897, - -0.14273826777935028, - -4.4673342358692025e-8, - 0.14273826777935028, - 0.28531375527381897, - 0.42742693424224854, - 0.5685204863548279, - 0.7077006697654724, - 0.843742847442627, - 0.975214421749115, - -0.9697354435920715, - -0.8396766781806946, - -0.7048981189727783, - -0.5667381286621094, - -0.4263903498649597, - -0.2847752273082733, - -0.1425163298845291, - -4.4608896132558584e-8, - 0.1425163298845291, - 0.2847752273082733, - 0.4263903498649597, - 0.5667381286621094, - 0.7048981189727783, - 0.8396766781806946, - 0.9697354435920715, - -0.9622625112533569, - -0.8339202404022217, - -0.7007321119308472, - -0.56391841173172, - -0.4246203601360321, - -0.28377437591552734, - -0.14207236468791962, - -4.44759820084073e-8, - 0.14207236468791962, - 0.28377437591552734, - 0.4246203601360321, - 0.56391841173172, - 0.7007321119308472, - 0.8339202404022217, - 0.9622625112533569, - -0.9526476263999939, - -0.8262503743171692, - -0.6949335336685181, - -0.5597844123840332, - -0.4218713939189911, - -0.2821293771266937, - -0.14131005108356476, - -4.424391519819437e-8, - 0.14131005108356476, - 0.2821293771266937, - 0.4218713939189911, - 0.5597844123840332, - 0.6949335336685181, - 0.8262503743171692, - 0.9526476263999939, - -0.9408560395240784, - -0.8165550827980042, - -0.6873303651809692, - -0.5541344881057739, - -0.41794899106025696, - -0.27968817949295044, - -0.1401463896036148, - -4.3885965084200507e-8, - 0.1401463896036148, - 0.27968817949295044, - 0.41794899106025696, - 0.5541344881057739, - 0.6873303651809692, - 0.8165550827980042, - 0.9408560395240784 - ], - "yaxis": "y4" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9349204301834106, - -0.9476235508918762, - -0.9580665230751038, - -0.9662421345710754, - -0.9722722172737122, - -0.9763565063476562, - -0.9787032008171082, - -0.9794666767120361, - -0.9787032008171082, - -0.9763565063476562, - -0.9722722172737122, - -0.9662421345710754, - -0.9580665230751038, - -0.9476235508918762, - -0.9349204301834106, - -0.8122487664222717, - -0.8227865695953369, - -0.8311960101127625, - -0.8375552892684937, - -0.8420739769935608, - -0.8450263738632202, - -0.8466741442680359, - -0.8472014665603638, - -0.8466741442680359, - -0.8450263738632202, - -0.8420739769935608, - -0.8375552892684937, - -0.8311960101127625, - -0.8227865695953369, - -0.8122487664222717, - -0.6843332052230835, - -0.6926633715629578, - -0.6990737318992615, - -0.7037132382392883, - -0.706851601600647, - -0.7088022828102112, - -0.7098456025123596, - -0.7101711630821228, - -0.7098456025123596, - -0.7088022828102112, - -0.706851601600647, - -0.7037132382392883, - -0.6990737318992615, - -0.6926633715629578, - -0.6843332052230835, - -0.5521383285522461, - -0.5583701729774475, - -0.5629705786705017, - -0.5661300420761108, - -0.5681368708610535, - -0.5693001747131348, - -0.5698829293251038, - -0.5700573325157166, - -0.5698829293251038, - -0.5693001747131348, - -0.5681368708610535, - -0.5661300420761108, - -0.5629705786705017, - -0.5583701729774475, - -0.5521383285522461, - -0.41668805480003357, - -0.421036958694458, - -0.42411091923713684, - -0.4261026382446289, - -0.4272739291191101, - -0.42788973450660706, - -0.4281667470932007, - -0.42824333906173706, - -0.4281667470932007, - -0.42788973450660706, - -0.4272739291191101, - -0.4261026382446289, - -0.42411091923713684, - -0.421036958694458, - -0.41668805480003357, - -0.2789589762687683, - -0.28167542815208435, - -0.28352090716362, - -0.2846500873565674, - -0.28525981307029724, - -0.2855413258075714, - -0.28564658761024475, - -0.2856709063053131, - -0.28564658761024475, - -0.2855413258075714, - -0.28525981307029724, - -0.2846500873565674, - -0.28352090716362, - -0.28167542815208435, - -0.2789589762687683, - -0.13981470465660095, - -0.1411123275756836, - -0.14196908473968506, - -0.14247070252895355, - -0.1427222192287445, - -0.1428232640028, - -0.14285169541835785, - -0.14285574853420258, - -0.14285169541835785, - -0.1428232640028, - -0.1427222192287445, - -0.14247070252895355, - -0.14196908473968506, - -0.1411123275756836, - -0.13981470465660095, - -4.378557250106496e-8, - -4.4185000547258824e-8, - -4.444597223596247e-8, - -4.4596212944725266e-8, - -4.466926384338876e-8, - -4.469670145113014e-8, - -4.470305725590151e-8, - -4.470348358154297e-8, - -4.470305725590151e-8, - -4.469670145113014e-8, - -4.466926384338876e-8, - -4.4596212944725266e-8, - -4.444597223596247e-8, - -4.4185000547258824e-8, - -4.378557250106496e-8, - 0.13981470465660095, - 0.1411123275756836, - 0.14196908473968506, - 0.14247070252895355, - 0.1427222192287445, - 0.1428232640028, - 0.14285169541835785, - 0.14285574853420258, - 0.14285169541835785, - 0.1428232640028, - 0.1427222192287445, - 0.14247070252895355, - 0.14196908473968506, - 0.1411123275756836, - 0.13981470465660095, - 0.2789589762687683, - 0.28167542815208435, - 0.28352090716362, - 0.2846500873565674, - 0.28525981307029724, - 0.2855413258075714, - 0.28564658761024475, - 0.2856709063053131, - 0.28564658761024475, - 0.2855413258075714, - 0.28525981307029724, - 0.2846500873565674, - 0.28352090716362, - 0.28167542815208435, - 0.2789589762687683, - 0.41668805480003357, - 0.421036958694458, - 0.42411091923713684, - 0.4261026382446289, - 0.4272739291191101, - 0.42788973450660706, - 0.4281667470932007, - 0.42824333906173706, - 0.4281667470932007, - 0.42788973450660706, - 0.4272739291191101, - 0.4261026382446289, - 0.42411091923713684, - 0.421036958694458, - 0.41668805480003357, - 0.5521383285522461, - 0.5583701729774475, - 0.5629705786705017, - 0.5661300420761108, - 0.5681368708610535, - 0.5693001747131348, - 0.5698829293251038, - 0.5700573325157166, - 0.5698829293251038, - 0.5693001747131348, - 0.5681368708610535, - 0.5661300420761108, - 0.5629705786705017, - 0.5583701729774475, - 0.5521383285522461, - 0.6843332052230835, - 0.6926633715629578, - 0.6990737318992615, - 0.7037132382392883, - 0.706851601600647, - 0.7088022828102112, - 0.7098456025123596, - 0.7101711630821228, - 0.7098456025123596, - 0.7088022828102112, - 0.706851601600647, - 0.7037132382392883, - 0.6990737318992615, - 0.6926633715629578, - 0.6843332052230835, - 0.8122487664222717, - 0.8227865695953369, - 0.8311960101127625, - 0.8375552892684937, - 0.8420739769935608, - 0.8450263738632202, - 0.8466741442680359, - 0.8472014665603638, - 0.8466741442680359, - 0.8450263738632202, - 0.8420739769935608, - 0.8375552892684937, - 0.8311960101127625, - 0.8227865695953369, - 0.8122487664222717, - 0.9349204301834106, - 0.9476235508918762, - 0.9580665230751038, - 0.9662421345710754, - 0.9722722172737122, - 0.9763565063476562, - 0.9787032008171082, - 0.9794666767120361, - 0.9787032008171082, - 0.9763565063476562, - 0.9722722172737122, - 0.9662421345710754, - 0.9580665230751038, - 0.9476235508918762, - 0.9349204301834106 - ], - "xaxis": "x4", - "y": [ - -0.9349204301834106, - -0.8122487664222717, - -0.6843332052230835, - -0.5521383285522461, - -0.41668805480003357, - -0.2789589762687683, - -0.13981470465660095, - -4.378557250106496e-8, - 0.13981470465660095, - 0.2789589762687683, - 0.41668805480003357, - 0.5521383285522461, - 0.6843332052230835, - 0.8122487664222717, - 0.9349204301834106, - -0.9476235508918762, - -0.8227865695953369, - -0.6926633715629578, - -0.5583701729774475, - -0.421036958694458, - -0.28167542815208435, - -0.1411123275756836, - -4.4185000547258824e-8, - 0.1411123275756836, - 0.28167542815208435, - 0.421036958694458, - 0.5583701729774475, - 0.6926633715629578, - 0.8227865695953369, - 0.9476235508918762, - -0.9580665230751038, - -0.8311960101127625, - -0.6990737318992615, - -0.5629705786705017, - -0.42411091923713684, - -0.28352090716362, - -0.14196908473968506, - -4.444597223596247e-8, - 0.14196908473968506, - 0.28352090716362, - 0.42411091923713684, - 0.5629705786705017, - 0.6990737318992615, - 0.8311960101127625, - 0.9580665230751038, - -0.9662421345710754, - -0.8375552892684937, - -0.7037132382392883, - -0.5661300420761108, - -0.4261026382446289, - -0.2846500873565674, - -0.14247070252895355, - -4.4596212944725266e-8, - 0.14247070252895355, - 0.2846500873565674, - 0.4261026382446289, - 0.5661300420761108, - 0.7037132382392883, - 0.8375552892684937, - 0.9662421345710754, - -0.9722722172737122, - -0.8420739769935608, - -0.706851601600647, - -0.5681368708610535, - -0.4272739291191101, - -0.28525981307029724, - -0.1427222192287445, - -4.466926384338876e-8, - 0.1427222192287445, - 0.28525981307029724, - 0.4272739291191101, - 0.5681368708610535, - 0.706851601600647, - 0.8420739769935608, - 0.9722722172737122, - -0.9763565063476562, - -0.8450263738632202, - -0.7088022828102112, - -0.5693001747131348, - -0.42788973450660706, - -0.2855413258075714, - -0.1428232640028, - -4.469670145113014e-8, - 0.1428232640028, - 0.2855413258075714, - 0.42788973450660706, - 0.5693001747131348, - 0.7088022828102112, - 0.8450263738632202, - 0.9763565063476562, - -0.9787032008171082, - -0.8466741442680359, - -0.7098456025123596, - -0.5698829293251038, - -0.4281667470932007, - -0.28564658761024475, - -0.14285169541835785, - -4.470305725590151e-8, - 0.14285169541835785, - 0.28564658761024475, - 0.4281667470932007, - 0.5698829293251038, - 0.7098456025123596, - 0.8466741442680359, - 0.9787032008171082, - -0.9794666767120361, - -0.8472014665603638, - -0.7101711630821228, - -0.5700573325157166, - -0.42824333906173706, - -0.2856709063053131, - -0.14285574853420258, - -4.470348358154297e-8, - 0.14285574853420258, - 0.2856709063053131, - 0.42824333906173706, - 0.5700573325157166, - 0.7101711630821228, - 0.8472014665603638, - 0.9794666767120361, - -0.9787032008171082, - -0.8466741442680359, - -0.7098456025123596, - -0.5698829293251038, - -0.4281667470932007, - -0.28564658761024475, - -0.14285169541835785, - -4.470305725590151e-8, - 0.14285169541835785, - 0.28564658761024475, - 0.4281667470932007, - 0.5698829293251038, - 0.7098456025123596, - 0.8466741442680359, - 0.9787032008171082, - -0.9763565063476562, - -0.8450263738632202, - -0.7088022828102112, - -0.5693001747131348, - -0.42788973450660706, - -0.2855413258075714, - -0.1428232640028, - -4.469670145113014e-8, - 0.1428232640028, - 0.2855413258075714, - 0.42788973450660706, - 0.5693001747131348, - 0.7088022828102112, - 0.8450263738632202, - 0.9763565063476562, - -0.9722722172737122, - -0.8420739769935608, - -0.706851601600647, - -0.5681368708610535, - -0.4272739291191101, - -0.28525981307029724, - -0.1427222192287445, - -4.466926384338876e-8, - 0.1427222192287445, - 0.28525981307029724, - 0.4272739291191101, - 0.5681368708610535, - 0.706851601600647, - 0.8420739769935608, - 0.9722722172737122, - -0.9662421345710754, - -0.8375552892684937, - -0.7037132382392883, - -0.5661300420761108, - -0.4261026382446289, - -0.2846500873565674, - -0.14247070252895355, - -4.4596212944725266e-8, - 0.14247070252895355, - 0.2846500873565674, - 0.4261026382446289, - 0.5661300420761108, - 0.7037132382392883, - 0.8375552892684937, - 0.9662421345710754, - -0.9580665230751038, - -0.8311960101127625, - -0.6990737318992615, - -0.5629705786705017, - -0.42411091923713684, - -0.28352090716362, - -0.14196908473968506, - -4.444597223596247e-8, - 0.14196908473968506, - 0.28352090716362, - 0.42411091923713684, - 0.5629705786705017, - 0.6990737318992615, - 0.8311960101127625, - 0.9580665230751038, - -0.9476235508918762, - -0.8227865695953369, - -0.6926633715629578, - -0.5583701729774475, - -0.421036958694458, - -0.28167542815208435, - -0.1411123275756836, - -4.4185000547258824e-8, - 0.1411123275756836, - 0.28167542815208435, - 0.421036958694458, - 0.5583701729774475, - 0.6926633715629578, - 0.8227865695953369, - 0.9476235508918762, - -0.9349204301834106, - -0.8122487664222717, - -0.6843332052230835, - -0.5521383285522461, - -0.41668805480003357, - -0.2789589762687683, - -0.13981470465660095, - -4.378557250106496e-8, - 0.13981470465660095, - 0.2789589762687683, - 0.41668805480003357, - 0.5521383285522461, - 0.6843332052230835, - 0.8122487664222717, - 0.9349204301834106 - ], - "yaxis": "y4" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": true, - "x": [ - -0.9293046593666077, - -0.9428315758705139, - -0.9540345072746277, - -0.9628636837005615, - -0.9694123268127441, - -0.9738665819168091, - -0.9764332175254822, - -0.9772694110870361, - -0.9764332175254822, - -0.9738665819168091, - -0.9694123268127441, - -0.9628636837005615, - -0.9540345072746277, - -0.9428315758705139, - -0.9293046593666077, - -0.8081413507461548, - -0.8194532990455627, - -0.8285539150238037, - -0.8354840874671936, - -0.8404364585876465, - -0.8436856269836426, - -0.8455038070678711, - -0.8460864424705505, - -0.8455038070678711, - -0.8436856269836426, - -0.8404364585876465, - -0.8354840874671936, - -0.8285539150238037, - -0.8194532990455627, - -0.8081413507461548, - -0.6814532279968262, - -0.6904615759849548, - -0.6974523067474365, - -0.7025473713874817, - -0.7060124278068542, - -0.7081740498542786, - -0.7093328237533569, - -0.7096948027610779, - -0.7093328237533569, - -0.7081740498542786, - -0.7060124278068542, - -0.7025473713874817, - -0.6974523067474365, - -0.6904615759849548, - -0.6814532279968262, - -0.550207793712616, - -0.5569893717765808, - -0.5620378851890564, - -0.5655282735824585, - -0.5677557587623596, - -0.5690510869026184, - -0.5697009563446045, - -0.5698956251144409, - -0.5697009563446045, - -0.5690510869026184, - -0.5677557587623596, - -0.5655282735824585, - -0.5620378851890564, - -0.5569893717765808, - -0.550207793712616, - -0.4154624044895172, - -0.42021819949150085, - -0.42360740900039673, - -0.4258168339729309, - -0.42712143063545227, - -0.4278089702129364, - -0.42811861634254456, - -0.4282042682170868, - -0.42811861634254456, - -0.4278089702129364, - -0.42712143063545227, - -0.4258168339729309, - -0.42360740900039673, - -0.42021819949150085, - -0.4154624044895172, - -0.27824756503105164, - -0.28122851252555847, - -0.28326961398124695, - -0.2845255434513092, - -0.28520599007606506, - -0.2855207324028015, - -0.2856385111808777, - -0.28566575050354004, - -0.2856385111808777, - -0.2855207324028015, - -0.28520599007606506, - -0.2845255434513092, - -0.28326961398124695, - -0.28122851252555847, - -0.27824756503105164, - -0.13949042558670044, - -0.14091727137565613, - -0.141866534948349, - -0.14242520928382874, - -0.14270617067813873, - -0.14281922578811646, - -0.14285103976726532, - -0.14285558462142944, - -0.14285103976726532, - -0.14281922578811646, - -0.14270617067813873, - -0.14242520928382874, - -0.141866534948349, - -0.14091727137565613, - -0.13949042558670044, - -4.3687347073273486e-8, - -4.412684617705054e-8, - -4.441616141548366e-8, - -4.458356173131506e-8, - -4.466518888079918e-8, - -4.469589143241137e-8, - -4.470301107062369e-8, - -4.470348358154297e-8, - -4.470301107062369e-8, - -4.469589143241137e-8, - -4.466518888079918e-8, - -4.458356173131506e-8, - -4.441616141548366e-8, - -4.412684617705054e-8, - -4.3687347073273486e-8, - 0.13949042558670044, - 0.14091727137565613, - 0.141866534948349, - 0.14242520928382874, - 0.14270617067813873, - 0.14281922578811646, - 0.14285103976726532, - 0.14285558462142944, - 0.14285103976726532, - 0.14281922578811646, - 0.14270617067813873, - 0.14242520928382874, - 0.141866534948349, - 0.14091727137565613, - 0.13949042558670044, - 0.27824756503105164, - 0.28122851252555847, - 0.28326961398124695, - 0.2845255434513092, - 0.28520599007606506, - 0.2855207324028015, - 0.2856385111808777, - 0.28566575050354004, - 0.2856385111808777, - 0.2855207324028015, - 0.28520599007606506, - 0.2845255434513092, - 0.28326961398124695, - 0.28122851252555847, - 0.27824756503105164, - 0.4154624044895172, - 0.42021819949150085, - 0.42360740900039673, - 0.4258168339729309, - 0.42712143063545227, - 0.4278089702129364, - 0.42811861634254456, - 0.4282042682170868, - 0.42811861634254456, - 0.4278089702129364, - 0.42712143063545227, - 0.4258168339729309, - 0.42360740900039673, - 0.42021819949150085, - 0.4154624044895172, - 0.550207793712616, - 0.5569893717765808, - 0.5620378851890564, - 0.5655282735824585, - 0.5677557587623596, - 0.5690510869026184, - 0.5697009563446045, - 0.5698956251144409, - 0.5697009563446045, - 0.5690510869026184, - 0.5677557587623596, - 0.5655282735824585, - 0.5620378851890564, - 0.5569893717765808, - 0.550207793712616, - 0.6814532279968262, - 0.6904615759849548, - 0.6974523067474365, - 0.7025473713874817, - 0.7060124278068542, - 0.7081740498542786, - 0.7093328237533569, - 0.7096948027610779, - 0.7093328237533569, - 0.7081740498542786, - 0.7060124278068542, - 0.7025473713874817, - 0.6974523067474365, - 0.6904615759849548, - 0.6814532279968262, - 0.8081413507461548, - 0.8194532990455627, - 0.8285539150238037, - 0.8354840874671936, - 0.8404364585876465, - 0.8436856269836426, - 0.8455038070678711, - 0.8460864424705505, - 0.8455038070678711, - 0.8436856269836426, - 0.8404364585876465, - 0.8354840874671936, - 0.8285539150238037, - 0.8194532990455627, - 0.8081413507461548, - 0.9293046593666077, - 0.9428315758705139, - 0.9540345072746277, - 0.9628636837005615, - 0.9694123268127441, - 0.9738665819168091, - 0.9764332175254822, - 0.9772694110870361, - 0.9764332175254822, - 0.9738665819168091, - 0.9694123268127441, - 0.9628636837005615, - 0.9540345072746277, - 0.9428315758705139, - 0.9293046593666077 - ], - "xaxis": "x4", - "y": [ - -0.9293046593666077, - -0.8081413507461548, - -0.6814532279968262, - -0.550207793712616, - -0.4154624044895172, - -0.27824756503105164, - -0.13949042558670044, - -4.3687347073273486e-8, - 0.13949042558670044, - 0.27824756503105164, - 0.4154624044895172, - 0.550207793712616, - 0.6814532279968262, - 0.8081413507461548, - 0.9293046593666077, - -0.9428315758705139, - -0.8194532990455627, - -0.6904615759849548, - -0.5569893717765808, - -0.42021819949150085, - -0.28122851252555847, - -0.14091727137565613, - -4.412684617705054e-8, - 0.14091727137565613, - 0.28122851252555847, - 0.42021819949150085, - 0.5569893717765808, - 0.6904615759849548, - 0.8194532990455627, - 0.9428315758705139, - -0.9540345072746277, - -0.8285539150238037, - -0.6974523067474365, - -0.5620378851890564, - -0.42360740900039673, - -0.28326961398124695, - -0.141866534948349, - -4.441616141548366e-8, - 0.141866534948349, - 0.28326961398124695, - 0.42360740900039673, - 0.5620378851890564, - 0.6974523067474365, - 0.8285539150238037, - 0.9540345072746277, - -0.9628636837005615, - -0.8354840874671936, - -0.7025473713874817, - -0.5655282735824585, - -0.4258168339729309, - -0.2845255434513092, - -0.14242520928382874, - -4.458356173131506e-8, - 0.14242520928382874, - 0.2845255434513092, - 0.4258168339729309, - 0.5655282735824585, - 0.7025473713874817, - 0.8354840874671936, - 0.9628636837005615, - -0.9694123268127441, - -0.8404364585876465, - -0.7060124278068542, - -0.5677557587623596, - -0.42712143063545227, - -0.28520599007606506, - -0.14270617067813873, - -4.466518888079918e-8, - 0.14270617067813873, - 0.28520599007606506, - 0.42712143063545227, - 0.5677557587623596, - 0.7060124278068542, - 0.8404364585876465, - 0.9694123268127441, - -0.9738665819168091, - -0.8436856269836426, - -0.7081740498542786, - -0.5690510869026184, - -0.4278089702129364, - -0.2855207324028015, - -0.14281922578811646, - -4.469589143241137e-8, - 0.14281922578811646, - 0.2855207324028015, - 0.4278089702129364, - 0.5690510869026184, - 0.7081740498542786, - 0.8436856269836426, - 0.9738665819168091, - -0.9764332175254822, - -0.8455038070678711, - -0.7093328237533569, - -0.5697009563446045, - -0.42811861634254456, - -0.2856385111808777, - -0.14285103976726532, - -4.470301107062369e-8, - 0.14285103976726532, - 0.2856385111808777, - 0.42811861634254456, - 0.5697009563446045, - 0.7093328237533569, - 0.8455038070678711, - 0.9764332175254822, - -0.9772694110870361, - -0.8460864424705505, - -0.7096948027610779, - -0.5698956251144409, - -0.4282042682170868, - -0.28566575050354004, - -0.14285558462142944, - -4.470348358154297e-8, - 0.14285558462142944, - 0.28566575050354004, - 0.4282042682170868, - 0.5698956251144409, - 0.7096948027610779, - 0.8460864424705505, - 0.9772694110870361, - -0.9764332175254822, - -0.8455038070678711, - -0.7093328237533569, - -0.5697009563446045, - -0.42811861634254456, - -0.2856385111808777, - -0.14285103976726532, - -4.470301107062369e-8, - 0.14285103976726532, - 0.2856385111808777, - 0.42811861634254456, - 0.5697009563446045, - 0.7093328237533569, - 0.8455038070678711, - 0.9764332175254822, - -0.9738665819168091, - -0.8436856269836426, - -0.7081740498542786, - -0.5690510869026184, - -0.4278089702129364, - -0.2855207324028015, - -0.14281922578811646, - -4.469589143241137e-8, - 0.14281922578811646, - 0.2855207324028015, - 0.4278089702129364, - 0.5690510869026184, - 0.7081740498542786, - 0.8436856269836426, - 0.9738665819168091, - -0.9694123268127441, - -0.8404364585876465, - -0.7060124278068542, - -0.5677557587623596, - -0.42712143063545227, - -0.28520599007606506, - -0.14270617067813873, - -4.466518888079918e-8, - 0.14270617067813873, - 0.28520599007606506, - 0.42712143063545227, - 0.5677557587623596, - 0.7060124278068542, - 0.8404364585876465, - 0.9694123268127441, - -0.9628636837005615, - -0.8354840874671936, - -0.7025473713874817, - -0.5655282735824585, - -0.4258168339729309, - -0.2845255434513092, - -0.14242520928382874, - -4.458356173131506e-8, - 0.14242520928382874, - 0.2845255434513092, - 0.4258168339729309, - 0.5655282735824585, - 0.7025473713874817, - 0.8354840874671936, - 0.9628636837005615, - -0.9540345072746277, - -0.8285539150238037, - -0.6974523067474365, - -0.5620378851890564, - -0.42360740900039673, - -0.28326961398124695, - -0.141866534948349, - -4.441616141548366e-8, - 0.141866534948349, - 0.28326961398124695, - 0.42360740900039673, - 0.5620378851890564, - 0.6974523067474365, - 0.8285539150238037, - 0.9540345072746277, - -0.9428315758705139, - -0.8194532990455627, - -0.6904615759849548, - -0.5569893717765808, - -0.42021819949150085, - -0.28122851252555847, - -0.14091727137565613, - -4.412684617705054e-8, - 0.14091727137565613, - 0.28122851252555847, - 0.42021819949150085, - 0.5569893717765808, - 0.6904615759849548, - 0.8194532990455627, - 0.9428315758705139, - -0.9293046593666077, - -0.8081413507461548, - -0.6814532279968262, - -0.550207793712616, - -0.4154624044895172, - -0.27824756503105164, - -0.13949042558670044, - -4.3687347073273486e-8, - 0.13949042558670044, - 0.27824756503105164, - 0.4154624044895172, - 0.550207793712616, - 0.6814532279968262, - 0.8081413507461548, - 0.9293046593666077 - ], - "yaxis": "y4" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9239754676818848, - -0.9382507801055908, - -0.9501538276672363, - -0.9595926403999329, - -0.9666299819946289, - -0.9714359045028687, - -0.9742125868797302, - -0.9751183986663818, - -0.9742125868797302, - -0.9714359045028687, - -0.9666299819946289, - -0.9595926403999329, - -0.9501538276672363, - -0.9382507801055908, - -0.9239754676818848, - -0.8042148947715759, - -0.8162409663200378, - -0.8259886503219604, - -0.833460807800293, - -0.8388290405273438, - -0.8423650860786438, - -0.8443490862846375, - -0.8449855446815491, - -0.8443490862846375, - -0.8423650860786438, - -0.8388290405273438, - -0.833460807800293, - -0.8259886503219604, - -0.8162409663200378, - -0.8042148947715759, - -0.6786813139915466, - -0.6883239150047302, - -0.6958661079406738, - -0.7014000415802002, - -0.7051829099655151, - -0.7075513005256653, - -0.7088237404823303, - -0.709221601486206, - -0.7088237404823303, - -0.7075513005256653, - -0.7051829099655151, - -0.7014000415802002, - -0.6958661079406738, - -0.6883239150047302, - -0.6786813139915466, - -0.5483385920524597, - -0.5556405186653137, - -0.5611200332641602, - -0.5649327039718628, - -0.5673772096633911, - -0.5688030123710632, - -0.5695196390151978, - -0.5697343945503235, - -0.5695196390151978, - -0.5688030123710632, - -0.5673772096633911, - -0.5649327039718628, - -0.5611200332641602, - -0.5556405186653137, - -0.5483385920524597, - -0.41426995396614075, - -0.4194144904613495, - -0.4231097102165222, - -0.4255329370498657, - -0.4269695281982422, - -0.4277283847332001, - -0.428070604801178, - -0.4281652569770813, - -0.428070604801178, - -0.4277283847332001, - -0.4269695281982422, - -0.4255329370498657, - -0.4231097102165222, - -0.4194144904613495, - -0.41426995396614075, - -0.27755308151245117, - -0.2807883322238922, - -0.2830204963684082, - -0.2844015061855316, - -0.28515225648880005, - -0.2855001389980316, - -0.2856304347515106, - -0.28566059470176697, - -0.2856304347515106, - -0.2855001389980316, - -0.28515225648880005, - -0.2844015061855316, - -0.2830204963684082, - -0.2807883322238922, - -0.27755308151245117, - -0.13917317986488342, - -0.1407248079776764, - -0.14176471531391144, - -0.14237987995147705, - -0.14269016683101654, - -0.14281518757343292, - -0.14285039901733398, - -0.1428554207086563, - -0.14285039901733398, - -0.14281518757343292, - -0.14269016683101654, - -0.14237987995147705, - -0.14176471531391144, - -0.1407248079776764, - -0.13917317986488342, - -4.359118932484307e-8, - -4.4069430771287443e-8, - -4.4386545994257176e-8, - -4.4570949597755316e-8, - -4.466112102363695e-8, - -4.4695084966406284e-8, - -4.4702957779918506e-8, - -4.470348358154297e-8, - -4.4702957779918506e-8, - -4.4695084966406284e-8, - -4.466112102363695e-8, - -4.4570949597755316e-8, - -4.4386545994257176e-8, - -4.4069430771287443e-8, - -4.359118932484307e-8, - 0.13917317986488342, - 0.1407248079776764, - 0.14176471531391144, - 0.14237987995147705, - 0.14269016683101654, - 0.14281518757343292, - 0.14285039901733398, - 0.1428554207086563, - 0.14285039901733398, - 0.14281518757343292, - 0.14269016683101654, - 0.14237987995147705, - 0.14176471531391144, - 0.1407248079776764, - 0.13917317986488342, - 0.27755308151245117, - 0.2807883322238922, - 0.2830204963684082, - 0.2844015061855316, - 0.28515225648880005, - 0.2855001389980316, - 0.2856304347515106, - 0.28566059470176697, - 0.2856304347515106, - 0.2855001389980316, - 0.28515225648880005, - 0.2844015061855316, - 0.2830204963684082, - 0.2807883322238922, - 0.27755308151245117, - 0.41426995396614075, - 0.4194144904613495, - 0.4231097102165222, - 0.4255329370498657, - 0.4269695281982422, - 0.4277283847332001, - 0.428070604801178, - 0.4281652569770813, - 0.428070604801178, - 0.4277283847332001, - 0.4269695281982422, - 0.4255329370498657, - 0.4231097102165222, - 0.4194144904613495, - 0.41426995396614075, - 0.5483385920524597, - 0.5556405186653137, - 0.5611200332641602, - 0.5649327039718628, - 0.5673772096633911, - 0.5688030123710632, - 0.5695196390151978, - 0.5697343945503235, - 0.5695196390151978, - 0.5688030123710632, - 0.5673772096633911, - 0.5649327039718628, - 0.5611200332641602, - 0.5556405186653137, - 0.5483385920524597, - 0.6786813139915466, - 0.6883239150047302, - 0.6958661079406738, - 0.7014000415802002, - 0.7051829099655151, - 0.7075513005256653, - 0.7088237404823303, - 0.709221601486206, - 0.7088237404823303, - 0.7075513005256653, - 0.7051829099655151, - 0.7014000415802002, - 0.6958661079406738, - 0.6883239150047302, - 0.6786813139915466, - 0.8042148947715759, - 0.8162409663200378, - 0.8259886503219604, - 0.833460807800293, - 0.8388290405273438, - 0.8423650860786438, - 0.8443490862846375, - 0.8449855446815491, - 0.8443490862846375, - 0.8423650860786438, - 0.8388290405273438, - 0.833460807800293, - 0.8259886503219604, - 0.8162409663200378, - 0.8042148947715759, - 0.9239754676818848, - 0.9382507801055908, - 0.9501538276672363, - 0.9595926403999329, - 0.9666299819946289, - 0.9714359045028687, - 0.9742125868797302, - 0.9751183986663818, - 0.9742125868797302, - 0.9714359045028687, - 0.9666299819946289, - 0.9595926403999329, - 0.9501538276672363, - 0.9382507801055908, - 0.9239754676818848 - ], - "xaxis": "x4", - "y": [ - -0.9239754676818848, - -0.8042148947715759, - -0.6786813139915466, - -0.5483385920524597, - -0.41426995396614075, - -0.27755308151245117, - -0.13917317986488342, - -4.359118932484307e-8, - 0.13917317986488342, - 0.27755308151245117, - 0.41426995396614075, - 0.5483385920524597, - 0.6786813139915466, - 0.8042148947715759, - 0.9239754676818848, - -0.9382507801055908, - -0.8162409663200378, - -0.6883239150047302, - -0.5556405186653137, - -0.4194144904613495, - -0.2807883322238922, - -0.1407248079776764, - -4.4069430771287443e-8, - 0.1407248079776764, - 0.2807883322238922, - 0.4194144904613495, - 0.5556405186653137, - 0.6883239150047302, - 0.8162409663200378, - 0.9382507801055908, - -0.9501538276672363, - -0.8259886503219604, - -0.6958661079406738, - -0.5611200332641602, - -0.4231097102165222, - -0.2830204963684082, - -0.14176471531391144, - -4.4386545994257176e-8, - 0.14176471531391144, - 0.2830204963684082, - 0.4231097102165222, - 0.5611200332641602, - 0.6958661079406738, - 0.8259886503219604, - 0.9501538276672363, - -0.9595926403999329, - -0.833460807800293, - -0.7014000415802002, - -0.5649327039718628, - -0.4255329370498657, - -0.2844015061855316, - -0.14237987995147705, - -4.4570949597755316e-8, - 0.14237987995147705, - 0.2844015061855316, - 0.4255329370498657, - 0.5649327039718628, - 0.7014000415802002, - 0.833460807800293, - 0.9595926403999329, - -0.9666299819946289, - -0.8388290405273438, - -0.7051829099655151, - -0.5673772096633911, - -0.4269695281982422, - -0.28515225648880005, - -0.14269016683101654, - -4.466112102363695e-8, - 0.14269016683101654, - 0.28515225648880005, - 0.4269695281982422, - 0.5673772096633911, - 0.7051829099655151, - 0.8388290405273438, - 0.9666299819946289, - -0.9714359045028687, - -0.8423650860786438, - -0.7075513005256653, - -0.5688030123710632, - -0.4277283847332001, - -0.2855001389980316, - -0.14281518757343292, - -4.4695084966406284e-8, - 0.14281518757343292, - 0.2855001389980316, - 0.4277283847332001, - 0.5688030123710632, - 0.7075513005256653, - 0.8423650860786438, - 0.9714359045028687, - -0.9742125868797302, - -0.8443490862846375, - -0.7088237404823303, - -0.5695196390151978, - -0.428070604801178, - -0.2856304347515106, - -0.14285039901733398, - -4.4702957779918506e-8, - 0.14285039901733398, - 0.2856304347515106, - 0.428070604801178, - 0.5695196390151978, - 0.7088237404823303, - 0.8443490862846375, - 0.9742125868797302, - -0.9751183986663818, - -0.8449855446815491, - -0.709221601486206, - -0.5697343945503235, - -0.4281652569770813, - -0.28566059470176697, - -0.1428554207086563, - -4.470348358154297e-8, - 0.1428554207086563, - 0.28566059470176697, - 0.4281652569770813, - 0.5697343945503235, - 0.709221601486206, - 0.8449855446815491, - 0.9751183986663818, - -0.9742125868797302, - -0.8443490862846375, - -0.7088237404823303, - -0.5695196390151978, - -0.428070604801178, - -0.2856304347515106, - -0.14285039901733398, - -4.4702957779918506e-8, - 0.14285039901733398, - 0.2856304347515106, - 0.428070604801178, - 0.5695196390151978, - 0.7088237404823303, - 0.8443490862846375, - 0.9742125868797302, - -0.9714359045028687, - -0.8423650860786438, - -0.7075513005256653, - -0.5688030123710632, - -0.4277283847332001, - -0.2855001389980316, - -0.14281518757343292, - -4.4695084966406284e-8, - 0.14281518757343292, - 0.2855001389980316, - 0.4277283847332001, - 0.5688030123710632, - 0.7075513005256653, - 0.8423650860786438, - 0.9714359045028687, - -0.9666299819946289, - -0.8388290405273438, - -0.7051829099655151, - -0.5673772096633911, - -0.4269695281982422, - -0.28515225648880005, - -0.14269016683101654, - -4.466112102363695e-8, - 0.14269016683101654, - 0.28515225648880005, - 0.4269695281982422, - 0.5673772096633911, - 0.7051829099655151, - 0.8388290405273438, - 0.9666299819946289, - -0.9595926403999329, - -0.833460807800293, - -0.7014000415802002, - -0.5649327039718628, - -0.4255329370498657, - -0.2844015061855316, - -0.14237987995147705, - -4.4570949597755316e-8, - 0.14237987995147705, - 0.2844015061855316, - 0.4255329370498657, - 0.5649327039718628, - 0.7014000415802002, - 0.833460807800293, - 0.9595926403999329, - -0.9501538276672363, - -0.8259886503219604, - -0.6958661079406738, - -0.5611200332641602, - -0.4231097102165222, - -0.2830204963684082, - -0.14176471531391144, - -4.4386545994257176e-8, - 0.14176471531391144, - 0.2830204963684082, - 0.4231097102165222, - 0.5611200332641602, - 0.6958661079406738, - 0.8259886503219604, - 0.9501538276672363, - -0.9382507801055908, - -0.8162409663200378, - -0.6883239150047302, - -0.5556405186653137, - -0.4194144904613495, - -0.2807883322238922, - -0.1407248079776764, - -4.4069430771287443e-8, - 0.1407248079776764, - 0.2807883322238922, - 0.4194144904613495, - 0.5556405186653137, - 0.6883239150047302, - 0.8162409663200378, - 0.9382507801055908, - -0.9239754676818848, - -0.8042148947715759, - -0.6786813139915466, - -0.5483385920524597, - -0.41426995396614075, - -0.27755308151245117, - -0.13917317986488342, - -4.359118932484307e-8, - 0.13917317986488342, - 0.27755308151245117, - 0.41426995396614075, - 0.5483385920524597, - 0.6786813139915466, - 0.8042148947715759, - 0.9239754676818848 - ], - "yaxis": "y4" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9189047813415527, - -0.9338630437850952, - -0.9464131593704224, - -0.9564222097396851, - -0.963921070098877, - -0.9690614938735962, - -0.9720392227172852, - -0.9730119109153748, - -0.9720392227172852, - -0.9690614938735962, - -0.963921070098877, - -0.9564222097396851, - -0.9464131593704224, - -0.9338630437850952, - -0.9189047813415527, - -0.8004540801048279, - -0.8131409287452698, - -0.8234959244728088, - -0.8314831256866455, - -0.8372507095336914, - -0.841064453125, - -0.8432093858718872, - -0.8438984155654907, - -0.8432093858718872, - -0.841064453125, - -0.8372507095336914, - -0.8314831256866455, - -0.8234959244728088, - -0.8131409287452698, - -0.8004540801048279, - -0.6760094165802002, - -0.6862466335296631, - -0.6943137645721436, - -0.7002704739570618, - -0.7043627500534058, - -0.7069339156150818, - -0.7083182334899902, - -0.7087515592575073, - -0.7083182334899902, - -0.7069339156150818, - -0.7043627500534058, - -0.7002704739570618, - -0.6943137645721436, - -0.6862466335296631, - -0.6760094165802002, - -0.5465269684791565, - -0.5543220639228821, - -0.5602163672447205, - -0.5643432140350342, - -0.567001223564148, - -0.568556010723114, - -0.5693387985229492, - -0.5695736408233643, - -0.5693387985229492, - -0.568556010723114, - -0.567001223564148, - -0.5643432140350342, - -0.5602163672447205, - -0.5543220639228821, - -0.5465269684791565, - -0.4131090044975281, - -0.4186253249645233, - -0.4226176142692566, - -0.42525091767311096, - -0.4268181025981903, - -0.4276479482650757, - -0.4280225932598114, - -0.4281263053417206, - -0.4280225932598114, - -0.4276479482650757, - -0.4268181025981903, - -0.42525091767311096, - -0.4226176142692566, - -0.4186253249645233, - -0.4131090044975281, - -0.27687469124794006, - -0.2803547978401184, - -0.28277355432510376, - -0.284278005361557, - -0.2850986421108246, - -0.2854795455932617, - -0.28562235832214355, - -0.2856554388999939, - -0.28562235832214355, - -0.2854795455932617, - -0.2850986421108246, - -0.284278005361557, - -0.28277355432510376, - -0.2803547978401184, - -0.27687469124794006, - -0.1388627141714096, - -0.14053486287593842, - -0.14166361093521118, - -0.14233466982841492, - -0.14267416298389435, - -0.1428111493587494, - -0.14284974336624146, - -0.14285527169704437, - -0.14284974336624146, - -0.1428111493587494, - -0.14267416298389435, - -0.14233466982841492, - -0.14166361093521118, - -0.14053486287593842, - -0.1388627141714096, - -4.3497021096072785e-8, - -4.401272946097379e-8, - -4.435712952499671e-8, - -4.455837299133236e-8, - -4.4657056719188404e-8, - -4.4694278500401197e-8, - -4.4702908041927e-8, - -4.470348358154297e-8, - -4.4702908041927e-8, - -4.4694278500401197e-8, - -4.4657056719188404e-8, - -4.455837299133236e-8, - -4.435712952499671e-8, - -4.401272946097379e-8, - -4.3497021096072785e-8, - 0.1388627141714096, - 0.14053486287593842, - 0.14166361093521118, - 0.14233466982841492, - 0.14267416298389435, - 0.1428111493587494, - 0.14284974336624146, - 0.14285527169704437, - 0.14284974336624146, - 0.1428111493587494, - 0.14267416298389435, - 0.14233466982841492, - 0.14166361093521118, - 0.14053486287593842, - 0.1388627141714096, - 0.27687469124794006, - 0.2803547978401184, - 0.28277355432510376, - 0.284278005361557, - 0.2850986421108246, - 0.2854795455932617, - 0.28562235832214355, - 0.2856554388999939, - 0.28562235832214355, - 0.2854795455932617, - 0.2850986421108246, - 0.284278005361557, - 0.28277355432510376, - 0.2803547978401184, - 0.27687469124794006, - 0.4131090044975281, - 0.4186253249645233, - 0.4226176142692566, - 0.42525091767311096, - 0.4268181025981903, - 0.4276479482650757, - 0.4280225932598114, - 0.4281263053417206, - 0.4280225932598114, - 0.4276479482650757, - 0.4268181025981903, - 0.42525091767311096, - 0.4226176142692566, - 0.4186253249645233, - 0.4131090044975281, - 0.5465269684791565, - 0.5543220639228821, - 0.5602163672447205, - 0.5643432140350342, - 0.567001223564148, - 0.568556010723114, - 0.5693387985229492, - 0.5695736408233643, - 0.5693387985229492, - 0.568556010723114, - 0.567001223564148, - 0.5643432140350342, - 0.5602163672447205, - 0.5543220639228821, - 0.5465269684791565, - 0.6760094165802002, - 0.6862466335296631, - 0.6943137645721436, - 0.7002704739570618, - 0.7043627500534058, - 0.7069339156150818, - 0.7083182334899902, - 0.7087515592575073, - 0.7083182334899902, - 0.7069339156150818, - 0.7043627500534058, - 0.7002704739570618, - 0.6943137645721436, - 0.6862466335296631, - 0.6760094165802002, - 0.8004540801048279, - 0.8131409287452698, - 0.8234959244728088, - 0.8314831256866455, - 0.8372507095336914, - 0.841064453125, - 0.8432093858718872, - 0.8438984155654907, - 0.8432093858718872, - 0.841064453125, - 0.8372507095336914, - 0.8314831256866455, - 0.8234959244728088, - 0.8131409287452698, - 0.8004540801048279, - 0.9189047813415527, - 0.9338630437850952, - 0.9464131593704224, - 0.9564222097396851, - 0.963921070098877, - 0.9690614938735962, - 0.9720392227172852, - 0.9730119109153748, - 0.9720392227172852, - 0.9690614938735962, - 0.963921070098877, - 0.9564222097396851, - 0.9464131593704224, - 0.9338630437850952, - 0.9189047813415527 - ], - "xaxis": "x4", - "y": [ - -0.9189047813415527, - -0.8004540801048279, - -0.6760094165802002, - -0.5465269684791565, - -0.4131090044975281, - -0.27687469124794006, - -0.1388627141714096, - -4.3497021096072785e-8, - 0.1388627141714096, - 0.27687469124794006, - 0.4131090044975281, - 0.5465269684791565, - 0.6760094165802002, - 0.8004540801048279, - 0.9189047813415527, - -0.9338630437850952, - -0.8131409287452698, - -0.6862466335296631, - -0.5543220639228821, - -0.4186253249645233, - -0.2803547978401184, - -0.14053486287593842, - -4.401272946097379e-8, - 0.14053486287593842, - 0.2803547978401184, - 0.4186253249645233, - 0.5543220639228821, - 0.6862466335296631, - 0.8131409287452698, - 0.9338630437850952, - -0.9464131593704224, - -0.8234959244728088, - -0.6943137645721436, - -0.5602163672447205, - -0.4226176142692566, - -0.28277355432510376, - -0.14166361093521118, - -4.435712952499671e-8, - 0.14166361093521118, - 0.28277355432510376, - 0.4226176142692566, - 0.5602163672447205, - 0.6943137645721436, - 0.8234959244728088, - 0.9464131593704224, - -0.9564222097396851, - -0.8314831256866455, - -0.7002704739570618, - -0.5643432140350342, - -0.42525091767311096, - -0.284278005361557, - -0.14233466982841492, - -4.455837299133236e-8, - 0.14233466982841492, - 0.284278005361557, - 0.42525091767311096, - 0.5643432140350342, - 0.7002704739570618, - 0.8314831256866455, - 0.9564222097396851, - -0.963921070098877, - -0.8372507095336914, - -0.7043627500534058, - -0.567001223564148, - -0.4268181025981903, - -0.2850986421108246, - -0.14267416298389435, - -4.4657056719188404e-8, - 0.14267416298389435, - 0.2850986421108246, - 0.4268181025981903, - 0.567001223564148, - 0.7043627500534058, - 0.8372507095336914, - 0.963921070098877, - -0.9690614938735962, - -0.841064453125, - -0.7069339156150818, - -0.568556010723114, - -0.4276479482650757, - -0.2854795455932617, - -0.1428111493587494, - -4.4694278500401197e-8, - 0.1428111493587494, - 0.2854795455932617, - 0.4276479482650757, - 0.568556010723114, - 0.7069339156150818, - 0.841064453125, - 0.9690614938735962, - -0.9720392227172852, - -0.8432093858718872, - -0.7083182334899902, - -0.5693387985229492, - -0.4280225932598114, - -0.28562235832214355, - -0.14284974336624146, - -4.4702908041927e-8, - 0.14284974336624146, - 0.28562235832214355, - 0.4280225932598114, - 0.5693387985229492, - 0.7083182334899902, - 0.8432093858718872, - 0.9720392227172852, - -0.9730119109153748, - -0.8438984155654907, - -0.7087515592575073, - -0.5695736408233643, - -0.4281263053417206, - -0.2856554388999939, - -0.14285527169704437, - -4.470348358154297e-8, - 0.14285527169704437, - 0.2856554388999939, - 0.4281263053417206, - 0.5695736408233643, - 0.7087515592575073, - 0.8438984155654907, - 0.9730119109153748, - -0.9720392227172852, - -0.8432093858718872, - -0.7083182334899902, - -0.5693387985229492, - -0.4280225932598114, - -0.28562235832214355, - -0.14284974336624146, - -4.4702908041927e-8, - 0.14284974336624146, - 0.28562235832214355, - 0.4280225932598114, - 0.5693387985229492, - 0.7083182334899902, - 0.8432093858718872, - 0.9720392227172852, - -0.9690614938735962, - -0.841064453125, - -0.7069339156150818, - -0.568556010723114, - -0.4276479482650757, - -0.2854795455932617, - -0.1428111493587494, - -4.4694278500401197e-8, - 0.1428111493587494, - 0.2854795455932617, - 0.4276479482650757, - 0.568556010723114, - 0.7069339156150818, - 0.841064453125, - 0.9690614938735962, - -0.963921070098877, - -0.8372507095336914, - -0.7043627500534058, - -0.567001223564148, - -0.4268181025981903, - -0.2850986421108246, - -0.14267416298389435, - -4.4657056719188404e-8, - 0.14267416298389435, - 0.2850986421108246, - 0.4268181025981903, - 0.567001223564148, - 0.7043627500534058, - 0.8372507095336914, - 0.963921070098877, - -0.9564222097396851, - -0.8314831256866455, - -0.7002704739570618, - -0.5643432140350342, - -0.42525091767311096, - -0.284278005361557, - -0.14233466982841492, - -4.455837299133236e-8, - 0.14233466982841492, - 0.284278005361557, - 0.42525091767311096, - 0.5643432140350342, - 0.7002704739570618, - 0.8314831256866455, - 0.9564222097396851, - -0.9464131593704224, - -0.8234959244728088, - -0.6943137645721436, - -0.5602163672447205, - -0.4226176142692566, - -0.28277355432510376, - -0.14166361093521118, - -4.435712952499671e-8, - 0.14166361093521118, - 0.28277355432510376, - 0.4226176142692566, - 0.5602163672447205, - 0.6943137645721436, - 0.8234959244728088, - 0.9464131593704224, - -0.9338630437850952, - -0.8131409287452698, - -0.6862466335296631, - -0.5543220639228821, - -0.4186253249645233, - -0.2803547978401184, - -0.14053486287593842, - -4.401272946097379e-8, - 0.14053486287593842, - 0.2803547978401184, - 0.4186253249645233, - 0.5543220639228821, - 0.6862466335296631, - 0.8131409287452698, - 0.9338630437850952, - -0.9189047813415527, - -0.8004540801048279, - -0.6760094165802002, - -0.5465269684791565, - -0.4131090044975281, - -0.27687469124794006, - -0.1388627141714096, - -4.3497021096072785e-8, - 0.1388627141714096, - 0.27687469124794006, - 0.4131090044975281, - 0.5465269684791565, - 0.6760094165802002, - 0.8004540801048279, - 0.9189047813415527 - ], - "yaxis": "y4" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.914068341255188, - -0.9296524524688721, - -0.9428027272224426, - -0.9533461332321167, - -0.9612816572189331, - -0.9667409062385559, - -0.9699109792709351, - -0.970947802066803, - -0.9699109792709351, - -0.9667409062385559, - -0.9612816572189331, - -0.9533461332321167, - -0.9428027272224426, - -0.9296524524688721, - -0.914068341255188, - -0.7968449592590332, - -0.810145378112793, - -0.8210716843605042, - -0.8295490145683289, - -0.8357004523277283, - -0.8397828936576843, - -0.842084527015686, - -0.8428246974945068, - -0.842084527015686, - -0.8397828936576843, - -0.8357004523277283, - -0.8295490145683289, - -0.8210716843605042, - -0.810145378112793, - -0.7968449592590332, - -0.6734305620193481, - -0.684226393699646, - -0.692793607711792, - -0.6991583108901978, - -0.7035518288612366, - -0.7063217759132385, - -0.7078163027763367, - -0.7082844972610474, - -0.7078163027763367, - -0.7063217759132385, - -0.7035518288612366, - -0.6991583108901978, - -0.692793607711792, - -0.684226393699646, - -0.6734305620193481, - -0.5447691679000854, - -0.553032636642456, - -0.5593265891075134, - -0.5637596845626831, - -0.566627562046051, - -0.568310022354126, - -0.5691584944725037, - -0.5694132447242737, - -0.5691584944725037, - -0.568310022354126, - -0.566627562046051, - -0.5637596845626831, - -0.5593265891075134, - -0.553032636642456, - -0.5447691679000854, - -0.4119778275489807, - -0.41785019636154175, - -0.4221310615539551, - -0.4249706566333771, - -0.4266672134399414, - -0.42756766080856323, - -0.4279746413230896, - -0.42808735370635986, - -0.4279746413230896, - -0.42756766080856323, - -0.4266672134399414, - -0.4249706566333771, - -0.4221310615539551, - -0.41785019636154175, - -0.4119778275489807, - -0.276211678981781, - -0.2799276113510132, - -0.28252866864204407, - -0.284155011177063, - -0.2850450873374939, - -0.2854590117931366, - -0.2856143116950989, - -0.28565025329589844, - -0.2856143116950989, - -0.2854590117931366, - -0.2850450873374939, - -0.284155011177063, - -0.28252866864204407, - -0.2799276113510132, - -0.276211678981781, - -0.13855867087841034, - -0.14034737646579742, - -0.14156322181224823, - -0.14228959381580353, - -0.14265818893909454, - -0.14280712604522705, - -0.14284910261631012, - -0.14285509288311005, - -0.14284910261631012, - -0.14280712604522705, - -0.14265818893909454, - -0.14228959381580353, - -0.14156322181224823, - -0.14034737646579742, - -0.13855867087841034, - -4.34047464636933e-8, - -4.395673514068221e-8, - -4.432789779684754e-8, - -4.454582835933252e-8, - -4.4652995967453535e-8, - -4.469346848168243e-8, - -4.470285475122182e-8, - -4.470348358154297e-8, - -4.470285475122182e-8, - -4.469346848168243e-8, - -4.4652995967453535e-8, - -4.454582835933252e-8, - -4.432789779684754e-8, - -4.395673514068221e-8, - -4.34047464636933e-8, - 0.13855867087841034, - 0.14034737646579742, - 0.14156322181224823, - 0.14228959381580353, - 0.14265818893909454, - 0.14280712604522705, - 0.14284910261631012, - 0.14285509288311005, - 0.14284910261631012, - 0.14280712604522705, - 0.14265818893909454, - 0.14228959381580353, - 0.14156322181224823, - 0.14034737646579742, - 0.13855867087841034, - 0.276211678981781, - 0.2799276113510132, - 0.28252866864204407, - 0.284155011177063, - 0.2850450873374939, - 0.2854590117931366, - 0.2856143116950989, - 0.28565025329589844, - 0.2856143116950989, - 0.2854590117931366, - 0.2850450873374939, - 0.284155011177063, - 0.28252866864204407, - 0.2799276113510132, - 0.276211678981781, - 0.4119778275489807, - 0.41785019636154175, - 0.4221310615539551, - 0.4249706566333771, - 0.4266672134399414, - 0.42756766080856323, - 0.4279746413230896, - 0.42808735370635986, - 0.4279746413230896, - 0.42756766080856323, - 0.4266672134399414, - 0.4249706566333771, - 0.4221310615539551, - 0.41785019636154175, - 0.4119778275489807, - 0.5447691679000854, - 0.553032636642456, - 0.5593265891075134, - 0.5637596845626831, - 0.566627562046051, - 0.568310022354126, - 0.5691584944725037, - 0.5694132447242737, - 0.5691584944725037, - 0.568310022354126, - 0.566627562046051, - 0.5637596845626831, - 0.5593265891075134, - 0.553032636642456, - 0.5447691679000854, - 0.6734305620193481, - 0.684226393699646, - 0.692793607711792, - 0.6991583108901978, - 0.7035518288612366, - 0.7063217759132385, - 0.7078163027763367, - 0.7082844972610474, - 0.7078163027763367, - 0.7063217759132385, - 0.7035518288612366, - 0.6991583108901978, - 0.692793607711792, - 0.684226393699646, - 0.6734305620193481, - 0.7968449592590332, - 0.810145378112793, - 0.8210716843605042, - 0.8295490145683289, - 0.8357004523277283, - 0.8397828936576843, - 0.842084527015686, - 0.8428246974945068, - 0.842084527015686, - 0.8397828936576843, - 0.8357004523277283, - 0.8295490145683289, - 0.8210716843605042, - 0.810145378112793, - 0.7968449592590332, - 0.914068341255188, - 0.9296524524688721, - 0.9428027272224426, - 0.9533461332321167, - 0.9612816572189331, - 0.9667409062385559, - 0.9699109792709351, - 0.970947802066803, - 0.9699109792709351, - 0.9667409062385559, - 0.9612816572189331, - 0.9533461332321167, - 0.9428027272224426, - 0.9296524524688721, - 0.914068341255188 - ], - "xaxis": "x4", - "y": [ - -0.914068341255188, - -0.7968449592590332, - -0.6734305620193481, - -0.5447691679000854, - -0.4119778275489807, - -0.276211678981781, - -0.13855867087841034, - -4.34047464636933e-8, - 0.13855867087841034, - 0.276211678981781, - 0.4119778275489807, - 0.5447691679000854, - 0.6734305620193481, - 0.7968449592590332, - 0.914068341255188, - -0.9296524524688721, - -0.810145378112793, - -0.684226393699646, - -0.553032636642456, - -0.41785019636154175, - -0.2799276113510132, - -0.14034737646579742, - -4.395673514068221e-8, - 0.14034737646579742, - 0.2799276113510132, - 0.41785019636154175, - 0.553032636642456, - 0.684226393699646, - 0.810145378112793, - 0.9296524524688721, - -0.9428027272224426, - -0.8210716843605042, - -0.692793607711792, - -0.5593265891075134, - -0.4221310615539551, - -0.28252866864204407, - -0.14156322181224823, - -4.432789779684754e-8, - 0.14156322181224823, - 0.28252866864204407, - 0.4221310615539551, - 0.5593265891075134, - 0.692793607711792, - 0.8210716843605042, - 0.9428027272224426, - -0.9533461332321167, - -0.8295490145683289, - -0.6991583108901978, - -0.5637596845626831, - -0.4249706566333771, - -0.284155011177063, - -0.14228959381580353, - -4.454582835933252e-8, - 0.14228959381580353, - 0.284155011177063, - 0.4249706566333771, - 0.5637596845626831, - 0.6991583108901978, - 0.8295490145683289, - 0.9533461332321167, - -0.9612816572189331, - -0.8357004523277283, - -0.7035518288612366, - -0.566627562046051, - -0.4266672134399414, - -0.2850450873374939, - -0.14265818893909454, - -4.4652995967453535e-8, - 0.14265818893909454, - 0.2850450873374939, - 0.4266672134399414, - 0.566627562046051, - 0.7035518288612366, - 0.8357004523277283, - 0.9612816572189331, - -0.9667409062385559, - -0.8397828936576843, - -0.7063217759132385, - -0.568310022354126, - -0.42756766080856323, - -0.2854590117931366, - -0.14280712604522705, - -4.469346848168243e-8, - 0.14280712604522705, - 0.2854590117931366, - 0.42756766080856323, - 0.568310022354126, - 0.7063217759132385, - 0.8397828936576843, - 0.9667409062385559, - -0.9699109792709351, - -0.842084527015686, - -0.7078163027763367, - -0.5691584944725037, - -0.4279746413230896, - -0.2856143116950989, - -0.14284910261631012, - -4.470285475122182e-8, - 0.14284910261631012, - 0.2856143116950989, - 0.4279746413230896, - 0.5691584944725037, - 0.7078163027763367, - 0.842084527015686, - 0.9699109792709351, - -0.970947802066803, - -0.8428246974945068, - -0.7082844972610474, - -0.5694132447242737, - -0.42808735370635986, - -0.28565025329589844, - -0.14285509288311005, - -4.470348358154297e-8, - 0.14285509288311005, - 0.28565025329589844, - 0.42808735370635986, - 0.5694132447242737, - 0.7082844972610474, - 0.8428246974945068, - 0.970947802066803, - -0.9699109792709351, - -0.842084527015686, - -0.7078163027763367, - -0.5691584944725037, - -0.4279746413230896, - -0.2856143116950989, - -0.14284910261631012, - -4.470285475122182e-8, - 0.14284910261631012, - 0.2856143116950989, - 0.4279746413230896, - 0.5691584944725037, - 0.7078163027763367, - 0.842084527015686, - 0.9699109792709351, - -0.9667409062385559, - -0.8397828936576843, - -0.7063217759132385, - -0.568310022354126, - -0.42756766080856323, - -0.2854590117931366, - -0.14280712604522705, - -4.469346848168243e-8, - 0.14280712604522705, - 0.2854590117931366, - 0.42756766080856323, - 0.568310022354126, - 0.7063217759132385, - 0.8397828936576843, - 0.9667409062385559, - -0.9612816572189331, - -0.8357004523277283, - -0.7035518288612366, - -0.566627562046051, - -0.4266672134399414, - -0.2850450873374939, - -0.14265818893909454, - -4.4652995967453535e-8, - 0.14265818893909454, - 0.2850450873374939, - 0.4266672134399414, - 0.566627562046051, - 0.7035518288612366, - 0.8357004523277283, - 0.9612816572189331, - -0.9533461332321167, - -0.8295490145683289, - -0.6991583108901978, - -0.5637596845626831, - -0.4249706566333771, - -0.284155011177063, - -0.14228959381580353, - -4.454582835933252e-8, - 0.14228959381580353, - 0.284155011177063, - 0.4249706566333771, - 0.5637596845626831, - 0.6991583108901978, - 0.8295490145683289, - 0.9533461332321167, - -0.9428027272224426, - -0.8210716843605042, - -0.692793607711792, - -0.5593265891075134, - -0.4221310615539551, - -0.28252866864204407, - -0.14156322181224823, - -4.432789779684754e-8, - 0.14156322181224823, - 0.28252866864204407, - 0.4221310615539551, - 0.5593265891075134, - 0.692793607711792, - 0.8210716843605042, - 0.9428027272224426, - -0.9296524524688721, - -0.810145378112793, - -0.684226393699646, - -0.553032636642456, - -0.41785019636154175, - -0.2799276113510132, - -0.14034737646579742, - -4.395673514068221e-8, - 0.14034737646579742, - 0.2799276113510132, - 0.41785019636154175, - 0.553032636642456, - 0.684226393699646, - 0.810145378112793, - 0.9296524524688721, - -0.914068341255188, - -0.7968449592590332, - -0.6734305620193481, - -0.5447691679000854, - -0.4119778275489807, - -0.276211678981781, - -0.13855867087841034, - -4.34047464636933e-8, - 0.13855867087841034, - 0.276211678981781, - 0.4119778275489807, - 0.5447691679000854, - 0.6734305620193481, - 0.7968449592590332, - 0.914068341255188 - ], - "yaxis": "y4" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9094452261924744, - -0.9256051182746887, - -0.9393134713172913, - -0.9503589272499084, - -0.9587081670761108, - -0.9644716382026672, - -0.9678261876106262, - -0.9689244627952576, - -0.9678261876106262, - -0.9644716382026672, - -0.9587081670761108, - -0.9503589272499084, - -0.9393134713172913, - -0.9256051182746887, - -0.9094452261924744, - -0.7933757901191711, - -0.8072472810745239, - -0.818712055683136, - -0.8276565074920654, - -0.8341771364212036, - -0.838519811630249, - -0.8409740328788757, - -0.8417641520500183, - -0.8409740328788757, - -0.838519811630249, - -0.8341771364212036, - -0.8276565074920654, - -0.818712055683136, - -0.8072472810745239, - -0.7933757901191711, - -0.6709381937980652, - -0.6822600364685059, - -0.6913043856620789, - -0.6980628371238708, - -0.7027498483657837, - -0.7057147026062012, - -0.7073177099227905, - -0.707820475101471, - -0.7073177099227905, - -0.7057147026062012, - -0.7027498483657837, - -0.6980628371238708, - -0.6913043856620789, - -0.6822600364685059, - -0.6709381937980652, - -0.5430622100830078, - -0.5517709851264954, - -0.5584502220153809, - -0.5631819367408752, - -0.5662563443183899, - -0.5680651664733887, - -0.5689789056777954, - -0.5692533254623413, - -0.5689789056777954, - -0.5680651664733887, - -0.5662563443183899, - -0.5631819367408752, - -0.5584502220153809, - -0.5517709851264954, - -0.5430622100830078, - -0.4108749032020569, - -0.4170885384082794, - -0.42164987325668335, - -0.4246922433376312, - -0.4265168607234955, - -0.4274875223636627, - -0.4279267489910126, - -0.4280484616756439, - -0.4279267489910126, - -0.4274875223636627, - -0.4265168607234955, - -0.4246922433376312, - -0.42164987325668335, - -0.4170885384082794, - -0.4108749032020569, - -0.2755633294582367, - -0.2795065939426422, - -0.2822858691215515, - -0.28403258323669434, - -0.28499168157577515, - -0.2854384779930115, - -0.2856062054634094, - -0.285645067691803, - -0.2856062054634094, - -0.2854384779930115, - -0.28499168157577515, - -0.28403258323669434, - -0.2822858691215515, - -0.2795065939426422, - -0.2755633294582367, - -0.1382608413696289, - -0.14016230404376984, - -0.141463503241539, - -0.14224469661712646, - -0.14264221489429474, - -0.14280307292938232, - -0.1428484469652176, - -0.1428549438714981, - -0.1428484469652176, - -0.14280307292938232, - -0.14264221489429474, - -0.14224469661712646, - -0.141463503241539, - -0.14016230404376984, - -0.1382608413696289, - -4.331429792614472e-8, - -4.390141938870329e-8, - -4.429885436252334e-8, - -4.453331570175578e-8, - -4.4648938768432345e-8, - -4.4692658462963664e-8, - -4.4702808565943997e-8, - -4.470348358154297e-8, - -4.4702808565943997e-8, - -4.4692658462963664e-8, - -4.4648938768432345e-8, - -4.453331570175578e-8, - -4.429885436252334e-8, - -4.390141938870329e-8, - -4.331429792614472e-8, - 0.1382608413696289, - 0.14016230404376984, - 0.141463503241539, - 0.14224469661712646, - 0.14264221489429474, - 0.14280307292938232, - 0.1428484469652176, - 0.1428549438714981, - 0.1428484469652176, - 0.14280307292938232, - 0.14264221489429474, - 0.14224469661712646, - 0.141463503241539, - 0.14016230404376984, - 0.1382608413696289, - 0.2755633294582367, - 0.2795065939426422, - 0.2822858691215515, - 0.28403258323669434, - 0.28499168157577515, - 0.2854384779930115, - 0.2856062054634094, - 0.285645067691803, - 0.2856062054634094, - 0.2854384779930115, - 0.28499168157577515, - 0.28403258323669434, - 0.2822858691215515, - 0.2795065939426422, - 0.2755633294582367, - 0.4108749032020569, - 0.4170885384082794, - 0.42164987325668335, - 0.4246922433376312, - 0.4265168607234955, - 0.4274875223636627, - 0.4279267489910126, - 0.4280484616756439, - 0.4279267489910126, - 0.4274875223636627, - 0.4265168607234955, - 0.4246922433376312, - 0.42164987325668335, - 0.4170885384082794, - 0.4108749032020569, - 0.5430622100830078, - 0.5517709851264954, - 0.5584502220153809, - 0.5631819367408752, - 0.5662563443183899, - 0.5680651664733887, - 0.5689789056777954, - 0.5692533254623413, - 0.5689789056777954, - 0.5680651664733887, - 0.5662563443183899, - 0.5631819367408752, - 0.5584502220153809, - 0.5517709851264954, - 0.5430622100830078, - 0.6709381937980652, - 0.6822600364685059, - 0.6913043856620789, - 0.6980628371238708, - 0.7027498483657837, - 0.7057147026062012, - 0.7073177099227905, - 0.707820475101471, - 0.7073177099227905, - 0.7057147026062012, - 0.7027498483657837, - 0.6980628371238708, - 0.6913043856620789, - 0.6822600364685059, - 0.6709381937980652, - 0.7933757901191711, - 0.8072472810745239, - 0.818712055683136, - 0.8276565074920654, - 0.8341771364212036, - 0.838519811630249, - 0.8409740328788757, - 0.8417641520500183, - 0.8409740328788757, - 0.838519811630249, - 0.8341771364212036, - 0.8276565074920654, - 0.818712055683136, - 0.8072472810745239, - 0.7933757901191711, - 0.9094452261924744, - 0.9256051182746887, - 0.9393134713172913, - 0.9503589272499084, - 0.9587081670761108, - 0.9644716382026672, - 0.9678261876106262, - 0.9689244627952576, - 0.9678261876106262, - 0.9644716382026672, - 0.9587081670761108, - 0.9503589272499084, - 0.9393134713172913, - 0.9256051182746887, - 0.9094452261924744 - ], - "xaxis": "x4", - "y": [ - -0.9094452261924744, - -0.7933757901191711, - -0.6709381937980652, - -0.5430622100830078, - -0.4108749032020569, - -0.2755633294582367, - -0.1382608413696289, - -4.331429792614472e-8, - 0.1382608413696289, - 0.2755633294582367, - 0.4108749032020569, - 0.5430622100830078, - 0.6709381937980652, - 0.7933757901191711, - 0.9094452261924744, - -0.9256051182746887, - -0.8072472810745239, - -0.6822600364685059, - -0.5517709851264954, - -0.4170885384082794, - -0.2795065939426422, - -0.14016230404376984, - -4.390141938870329e-8, - 0.14016230404376984, - 0.2795065939426422, - 0.4170885384082794, - 0.5517709851264954, - 0.6822600364685059, - 0.8072472810745239, - 0.9256051182746887, - -0.9393134713172913, - -0.818712055683136, - -0.6913043856620789, - -0.5584502220153809, - -0.42164987325668335, - -0.2822858691215515, - -0.141463503241539, - -4.429885436252334e-8, - 0.141463503241539, - 0.2822858691215515, - 0.42164987325668335, - 0.5584502220153809, - 0.6913043856620789, - 0.818712055683136, - 0.9393134713172913, - -0.9503589272499084, - -0.8276565074920654, - -0.6980628371238708, - -0.5631819367408752, - -0.4246922433376312, - -0.28403258323669434, - -0.14224469661712646, - -4.453331570175578e-8, - 0.14224469661712646, - 0.28403258323669434, - 0.4246922433376312, - 0.5631819367408752, - 0.6980628371238708, - 0.8276565074920654, - 0.9503589272499084, - -0.9587081670761108, - -0.8341771364212036, - -0.7027498483657837, - -0.5662563443183899, - -0.4265168607234955, - -0.28499168157577515, - -0.14264221489429474, - -4.4648938768432345e-8, - 0.14264221489429474, - 0.28499168157577515, - 0.4265168607234955, - 0.5662563443183899, - 0.7027498483657837, - 0.8341771364212036, - 0.9587081670761108, - -0.9644716382026672, - -0.838519811630249, - -0.7057147026062012, - -0.5680651664733887, - -0.4274875223636627, - -0.2854384779930115, - -0.14280307292938232, - -4.4692658462963664e-8, - 0.14280307292938232, - 0.2854384779930115, - 0.4274875223636627, - 0.5680651664733887, - 0.7057147026062012, - 0.838519811630249, - 0.9644716382026672, - -0.9678261876106262, - -0.8409740328788757, - -0.7073177099227905, - -0.5689789056777954, - -0.4279267489910126, - -0.2856062054634094, - -0.1428484469652176, - -4.4702808565943997e-8, - 0.1428484469652176, - 0.2856062054634094, - 0.4279267489910126, - 0.5689789056777954, - 0.7073177099227905, - 0.8409740328788757, - 0.9678261876106262, - -0.9689244627952576, - -0.8417641520500183, - -0.707820475101471, - -0.5692533254623413, - -0.4280484616756439, - -0.285645067691803, - -0.1428549438714981, - -4.470348358154297e-8, - 0.1428549438714981, - 0.285645067691803, - 0.4280484616756439, - 0.5692533254623413, - 0.707820475101471, - 0.8417641520500183, - 0.9689244627952576, - -0.9678261876106262, - -0.8409740328788757, - -0.7073177099227905, - -0.5689789056777954, - -0.4279267489910126, - -0.2856062054634094, - -0.1428484469652176, - -4.4702808565943997e-8, - 0.1428484469652176, - 0.2856062054634094, - 0.4279267489910126, - 0.5689789056777954, - 0.7073177099227905, - 0.8409740328788757, - 0.9678261876106262, - -0.9644716382026672, - -0.838519811630249, - -0.7057147026062012, - -0.5680651664733887, - -0.4274875223636627, - -0.2854384779930115, - -0.14280307292938232, - -4.4692658462963664e-8, - 0.14280307292938232, - 0.2854384779930115, - 0.4274875223636627, - 0.5680651664733887, - 0.7057147026062012, - 0.838519811630249, - 0.9644716382026672, - -0.9587081670761108, - -0.8341771364212036, - -0.7027498483657837, - -0.5662563443183899, - -0.4265168607234955, - -0.28499168157577515, - -0.14264221489429474, - -4.4648938768432345e-8, - 0.14264221489429474, - 0.28499168157577515, - 0.4265168607234955, - 0.5662563443183899, - 0.7027498483657837, - 0.8341771364212036, - 0.9587081670761108, - -0.9503589272499084, - -0.8276565074920654, - -0.6980628371238708, - -0.5631819367408752, - -0.4246922433376312, - -0.28403258323669434, - -0.14224469661712646, - -4.453331570175578e-8, - 0.14224469661712646, - 0.28403258323669434, - 0.4246922433376312, - 0.5631819367408752, - 0.6980628371238708, - 0.8276565074920654, - 0.9503589272499084, - -0.9393134713172913, - -0.818712055683136, - -0.6913043856620789, - -0.5584502220153809, - -0.42164987325668335, - -0.2822858691215515, - -0.141463503241539, - -4.429885436252334e-8, - 0.141463503241539, - 0.2822858691215515, - 0.42164987325668335, - 0.5584502220153809, - 0.6913043856620789, - 0.818712055683136, - 0.9393134713172913, - -0.9256051182746887, - -0.8072472810745239, - -0.6822600364685059, - -0.5517709851264954, - -0.4170885384082794, - -0.2795065939426422, - -0.14016230404376984, - -4.390141938870329e-8, - 0.14016230404376984, - 0.2795065939426422, - 0.4170885384082794, - 0.5517709851264954, - 0.6822600364685059, - 0.8072472810745239, - 0.9256051182746887, - -0.9094452261924744, - -0.7933757901191711, - -0.6709381937980652, - -0.5430622100830078, - -0.4108749032020569, - -0.2755633294582367, - -0.1382608413696289, - -4.331429792614472e-8, - 0.1382608413696289, - 0.2755633294582367, - 0.4108749032020569, - 0.5430622100830078, - 0.6709381937980652, - 0.7933757901191711, - 0.9094452261924744 - ], - "yaxis": "y4" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9050173163414001, - -0.9217085838317871, - -0.9359373450279236, - -0.9474554061889648, - -0.9561973214149475, - -0.9622512459754944, - -0.9657827019691467, - -0.9669403433799744, - -0.9657827019691467, - -0.9622512459754944, - -0.9561973214149475, - -0.9474554061889648, - -0.9359373450279236, - -0.9217085838317871, - -0.9050173163414001, - -0.7900359034538269, - -0.8044404983520508, - -0.8164135813713074, - -0.8258037567138672, - -0.8326798677444458, - -0.8372747898101807, - -0.8398773670196533, - -0.8407163023948669, - -0.8398773670196533, - -0.8372747898101807, - -0.8326798677444458, - -0.8258037567138672, - -0.8164135813713074, - -0.8044404983520508, - -0.7900359034538269, - -0.6685267090797424, - -0.6803447008132935, - -0.6898447871208191, - -0.6969835162162781, - -0.7019566893577576, - -0.7051128149032593, - -0.7068226933479309, - -0.7073594331741333, - -0.7068226933479309, - -0.7051128149032593, - -0.7019566893577576, - -0.6969835162162781, - -0.6898447871208191, - -0.6803447008132935, - -0.6685267090797424, - -0.54140305519104, - -0.5505357980728149, - -0.5575867891311646, - -0.5626099705696106, - -0.5658875107765198, - -0.5678212642669678, - -0.5687997341156006, - -0.5690939426422119, - -0.5687997341156006, - -0.5678212642669678, - -0.5658875107765198, - -0.5626099705696106, - -0.5575867891311646, - -0.5505357980728149, - -0.54140305519104, - -0.40979883074760437, - -0.4163399040699005, - -0.42117398977279663, - -0.424415647983551, - -0.42636704444885254, - -0.42740753293037415, - -0.42787888646125793, - -0.42800962924957275, - -0.42787888646125793, - -0.42740753293037415, - -0.42636704444885254, - -0.424415647983551, - -0.42117398977279663, - -0.4163399040699005, - -0.40979883074760437, - -0.27492889761924744, - -0.27909156680107117, - -0.2820450961589813, - -0.2839106321334839, - -0.28493836522102356, - -0.28541794419288635, - -0.28559812903404236, - -0.2856399118900299, - -0.28559812903404236, - -0.28541794419288635, - -0.28493836522102356, - -0.2839106321334839, - -0.2820450961589813, - -0.27909156680107117, - -0.27492889761924744, - -0.13796892762184143, - -0.1399795264005661, - -0.14136449992656708, - -0.14219990372657776, - -0.14262627065181732, - -0.1427990347146988, - -0.14284780621528625, - -0.14285476505756378, - -0.14284780621528625, - -0.1427990347146988, - -0.14262627065181732, - -0.14219990372657776, - -0.14136449992656708, - -0.1399795264005661, - -0.13796892762184143, - -4.3225604429153464e-8, - -4.384677154689598e-8, - -4.4270002774737804e-8, - -4.4520842124029514e-8, - -4.464488867483851e-8, - -4.46918484442449e-8, - -4.4702755275238815e-8, - -4.470348358154297e-8, - -4.4702755275238815e-8, - -4.46918484442449e-8, - -4.464488867483851e-8, - -4.4520842124029514e-8, - -4.4270002774737804e-8, - -4.384677154689598e-8, - -4.3225604429153464e-8, - 0.13796892762184143, - 0.1399795264005661, - 0.14136449992656708, - 0.14219990372657776, - 0.14262627065181732, - 0.1427990347146988, - 0.14284780621528625, - 0.14285476505756378, - 0.14284780621528625, - 0.1427990347146988, - 0.14262627065181732, - 0.14219990372657776, - 0.14136449992656708, - 0.1399795264005661, - 0.13796892762184143, - 0.27492889761924744, - 0.27909156680107117, - 0.2820450961589813, - 0.2839106321334839, - 0.28493836522102356, - 0.28541794419288635, - 0.28559812903404236, - 0.2856399118900299, - 0.28559812903404236, - 0.28541794419288635, - 0.28493836522102356, - 0.2839106321334839, - 0.2820450961589813, - 0.27909156680107117, - 0.27492889761924744, - 0.40979883074760437, - 0.4163399040699005, - 0.42117398977279663, - 0.424415647983551, - 0.42636704444885254, - 0.42740753293037415, - 0.42787888646125793, - 0.42800962924957275, - 0.42787888646125793, - 0.42740753293037415, - 0.42636704444885254, - 0.424415647983551, - 0.42117398977279663, - 0.4163399040699005, - 0.40979883074760437, - 0.54140305519104, - 0.5505357980728149, - 0.5575867891311646, - 0.5626099705696106, - 0.5658875107765198, - 0.5678212642669678, - 0.5687997341156006, - 0.5690939426422119, - 0.5687997341156006, - 0.5678212642669678, - 0.5658875107765198, - 0.5626099705696106, - 0.5575867891311646, - 0.5505357980728149, - 0.54140305519104, - 0.6685267090797424, - 0.6803447008132935, - 0.6898447871208191, - 0.6969835162162781, - 0.7019566893577576, - 0.7051128149032593, - 0.7068226933479309, - 0.7073594331741333, - 0.7068226933479309, - 0.7051128149032593, - 0.7019566893577576, - 0.6969835162162781, - 0.6898447871208191, - 0.6803447008132935, - 0.6685267090797424, - 0.7900359034538269, - 0.8044404983520508, - 0.8164135813713074, - 0.8258037567138672, - 0.8326798677444458, - 0.8372747898101807, - 0.8398773670196533, - 0.8407163023948669, - 0.8398773670196533, - 0.8372747898101807, - 0.8326798677444458, - 0.8258037567138672, - 0.8164135813713074, - 0.8044404983520508, - 0.7900359034538269, - 0.9050173163414001, - 0.9217085838317871, - 0.9359373450279236, - 0.9474554061889648, - 0.9561973214149475, - 0.9622512459754944, - 0.9657827019691467, - 0.9669403433799744, - 0.9657827019691467, - 0.9622512459754944, - 0.9561973214149475, - 0.9474554061889648, - 0.9359373450279236, - 0.9217085838317871, - 0.9050173163414001 - ], - "xaxis": "x4", - "y": [ - -0.9050173163414001, - -0.7900359034538269, - -0.6685267090797424, - -0.54140305519104, - -0.40979883074760437, - -0.27492889761924744, - -0.13796892762184143, - -4.3225604429153464e-8, - 0.13796892762184143, - 0.27492889761924744, - 0.40979883074760437, - 0.54140305519104, - 0.6685267090797424, - 0.7900359034538269, - 0.9050173163414001, - -0.9217085838317871, - -0.8044404983520508, - -0.6803447008132935, - -0.5505357980728149, - -0.4163399040699005, - -0.27909156680107117, - -0.1399795264005661, - -4.384677154689598e-8, - 0.1399795264005661, - 0.27909156680107117, - 0.4163399040699005, - 0.5505357980728149, - 0.6803447008132935, - 0.8044404983520508, - 0.9217085838317871, - -0.9359373450279236, - -0.8164135813713074, - -0.6898447871208191, - -0.5575867891311646, - -0.42117398977279663, - -0.2820450961589813, - -0.14136449992656708, - -4.4270002774737804e-8, - 0.14136449992656708, - 0.2820450961589813, - 0.42117398977279663, - 0.5575867891311646, - 0.6898447871208191, - 0.8164135813713074, - 0.9359373450279236, - -0.9474554061889648, - -0.8258037567138672, - -0.6969835162162781, - -0.5626099705696106, - -0.424415647983551, - -0.2839106321334839, - -0.14219990372657776, - -4.4520842124029514e-8, - 0.14219990372657776, - 0.2839106321334839, - 0.424415647983551, - 0.5626099705696106, - 0.6969835162162781, - 0.8258037567138672, - 0.9474554061889648, - -0.9561973214149475, - -0.8326798677444458, - -0.7019566893577576, - -0.5658875107765198, - -0.42636704444885254, - -0.28493836522102356, - -0.14262627065181732, - -4.464488867483851e-8, - 0.14262627065181732, - 0.28493836522102356, - 0.42636704444885254, - 0.5658875107765198, - 0.7019566893577576, - 0.8326798677444458, - 0.9561973214149475, - -0.9622512459754944, - -0.8372747898101807, - -0.7051128149032593, - -0.5678212642669678, - -0.42740753293037415, - -0.28541794419288635, - -0.1427990347146988, - -4.46918484442449e-8, - 0.1427990347146988, - 0.28541794419288635, - 0.42740753293037415, - 0.5678212642669678, - 0.7051128149032593, - 0.8372747898101807, - 0.9622512459754944, - -0.9657827019691467, - -0.8398773670196533, - -0.7068226933479309, - -0.5687997341156006, - -0.42787888646125793, - -0.28559812903404236, - -0.14284780621528625, - -4.4702755275238815e-8, - 0.14284780621528625, - 0.28559812903404236, - 0.42787888646125793, - 0.5687997341156006, - 0.7068226933479309, - 0.8398773670196533, - 0.9657827019691467, - -0.9669403433799744, - -0.8407163023948669, - -0.7073594331741333, - -0.5690939426422119, - -0.42800962924957275, - -0.2856399118900299, - -0.14285476505756378, - -4.470348358154297e-8, - 0.14285476505756378, - 0.2856399118900299, - 0.42800962924957275, - 0.5690939426422119, - 0.7073594331741333, - 0.8407163023948669, - 0.9669403433799744, - -0.9657827019691467, - -0.8398773670196533, - -0.7068226933479309, - -0.5687997341156006, - -0.42787888646125793, - -0.28559812903404236, - -0.14284780621528625, - -4.4702755275238815e-8, - 0.14284780621528625, - 0.28559812903404236, - 0.42787888646125793, - 0.5687997341156006, - 0.7068226933479309, - 0.8398773670196533, - 0.9657827019691467, - -0.9622512459754944, - -0.8372747898101807, - -0.7051128149032593, - -0.5678212642669678, - -0.42740753293037415, - -0.28541794419288635, - -0.1427990347146988, - -4.46918484442449e-8, - 0.1427990347146988, - 0.28541794419288635, - 0.42740753293037415, - 0.5678212642669678, - 0.7051128149032593, - 0.8372747898101807, - 0.9622512459754944, - -0.9561973214149475, - -0.8326798677444458, - -0.7019566893577576, - -0.5658875107765198, - -0.42636704444885254, - -0.28493836522102356, - -0.14262627065181732, - -4.464488867483851e-8, - 0.14262627065181732, - 0.28493836522102356, - 0.42636704444885254, - 0.5658875107765198, - 0.7019566893577576, - 0.8326798677444458, - 0.9561973214149475, - -0.9474554061889648, - -0.8258037567138672, - -0.6969835162162781, - -0.5626099705696106, - -0.424415647983551, - -0.2839106321334839, - -0.14219990372657776, - -4.4520842124029514e-8, - 0.14219990372657776, - 0.2839106321334839, - 0.424415647983551, - 0.5626099705696106, - 0.6969835162162781, - 0.8258037567138672, - 0.9474554061889648, - -0.9359373450279236, - -0.8164135813713074, - -0.6898447871208191, - -0.5575867891311646, - -0.42117398977279663, - -0.2820450961589813, - -0.14136449992656708, - -4.4270002774737804e-8, - 0.14136449992656708, - 0.2820450961589813, - 0.42117398977279663, - 0.5575867891311646, - 0.6898447871208191, - 0.8164135813713074, - 0.9359373450279236, - -0.9217085838317871, - -0.8044404983520508, - -0.6803447008132935, - -0.5505357980728149, - -0.4163399040699005, - -0.27909156680107117, - -0.1399795264005661, - -4.384677154689598e-8, - 0.1399795264005661, - 0.27909156680107117, - 0.4163399040699005, - 0.5505357980728149, - 0.6803447008132935, - 0.8044404983520508, - 0.9217085838317871, - -0.9050173163414001, - -0.7900359034538269, - -0.6685267090797424, - -0.54140305519104, - -0.40979883074760437, - -0.27492889761924744, - -0.13796892762184143, - -4.3225604429153464e-8, - 0.13796892762184143, - 0.27492889761924744, - 0.40979883074760437, - 0.54140305519104, - 0.6685267090797424, - 0.7900359034538269, - 0.9050173163414001 - ], - "yaxis": "y4" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9007686376571655, - -0.9179520010948181, - -0.9326671361923218, - -0.9446308612823486, - -0.9537460207939148, - -0.9600778818130493, - -0.9637792110443115, - -0.9649938344955444, - -0.9637792110443115, - -0.9600778818130493, - -0.9537460207939148, - -0.9446308612823486, - -0.9326671361923218, - -0.9179520010948181, - -0.9007686376571655, - -0.7868160009384155, - -0.8017193078994751, - -0.8141732811927795, - -0.82398921251297, - -0.8312076330184937, - -0.8360472321510315, - -0.8387944102287292, - -0.8396809101104736, - -0.8387944102287292, - -0.8360472321510315, - -0.8312076330184937, - -0.82398921251297, - -0.8141732811927795, - -0.8017193078994751, - -0.7868160009384155, - -0.6661908626556396, - -0.6784777641296387, - -0.6884137392044067, - -0.6959201097488403, - -0.7011720538139343, - -0.7045157551765442, - -0.7063308954238892, - -0.7069013118743896, - -0.7063308954238892, - -0.7045157551765442, - -0.7011720538139343, - -0.6959201097488403, - -0.6884137392044067, - -0.6784777641296387, - -0.6661908626556396, - -0.5397890210151672, - -0.5493261218070984, - -0.5567360520362854, - -0.5620436072349548, - -0.5655210018157959, - -0.5675784349441528, - -0.5686212182044983, - -0.5689349174499512, - -0.5686212182044983, - -0.5675784349441528, - -0.5655210018157959, - -0.5620436072349548, - -0.5567360520362854, - -0.5493261218070984, - -0.5397890210151672, - -0.4087482690811157, - -0.41560378670692444, - -0.4207032024860382, - -0.4241407513618469, - -0.4262177646160126, - -0.4273276627063751, - -0.42783111333847046, - -0.4279707670211792, - -0.42783111333847046, - -0.4273276627063751, - -0.4262177646160126, - -0.4241407513618469, - -0.4207032024860382, - -0.41560378670692444, - -0.4087482690811157, - -0.2743079364299774, - -0.2786824107170105, - -0.2818062901496887, - -0.2837892174720764, - -0.28488510847091675, - -0.28539741039276123, - -0.2855900824069977, - -0.28563472628593445, - -0.2855900824069977, - -0.28539741039276123, - -0.28488510847091675, - -0.2837892174720764, - -0.2818062901496887, - -0.2786824107170105, - -0.2743079364299774, - -0.13768270611763, - -0.13979902863502502, - -0.1412661373615265, - -0.14215527474880219, - -0.1426103413105011, - -0.14279501140117645, - -0.14284716546535492, - -0.14285461604595184, - -0.14284716546535492, - -0.14279501140117645, - -0.1426103413105011, - -0.14215527474880219, - -0.1412661373615265, - -0.13979902863502502, - -0.13768270611763, - -4.3138584260304924e-8, - -4.379277029897821e-8, - -4.4241328822636206e-8, - -4.450840407344003e-8, - -4.464083147581732e-8, - -4.469103842552613e-8, - -4.470270553724731e-8, - -4.470348358154297e-8, - -4.470270553724731e-8, - -4.469103842552613e-8, - -4.464083147581732e-8, - -4.450840407344003e-8, - -4.4241328822636206e-8, - -4.379277029897821e-8, - -4.3138584260304924e-8, - 0.13768270611763, - 0.13979902863502502, - 0.1412661373615265, - 0.14215527474880219, - 0.1426103413105011, - 0.14279501140117645, - 0.14284716546535492, - 0.14285461604595184, - 0.14284716546535492, - 0.14279501140117645, - 0.1426103413105011, - 0.14215527474880219, - 0.1412661373615265, - 0.13979902863502502, - 0.13768270611763, - 0.2743079364299774, - 0.2786824107170105, - 0.2818062901496887, - 0.2837892174720764, - 0.28488510847091675, - 0.28539741039276123, - 0.2855900824069977, - 0.28563472628593445, - 0.2855900824069977, - 0.28539741039276123, - 0.28488510847091675, - 0.2837892174720764, - 0.2818062901496887, - 0.2786824107170105, - 0.2743079364299774, - 0.4087482690811157, - 0.41560378670692444, - 0.4207032024860382, - 0.4241407513618469, - 0.4262177646160126, - 0.4273276627063751, - 0.42783111333847046, - 0.4279707670211792, - 0.42783111333847046, - 0.4273276627063751, - 0.4262177646160126, - 0.4241407513618469, - 0.4207032024860382, - 0.41560378670692444, - 0.4087482690811157, - 0.5397890210151672, - 0.5493261218070984, - 0.5567360520362854, - 0.5620436072349548, - 0.5655210018157959, - 0.5675784349441528, - 0.5686212182044983, - 0.5689349174499512, - 0.5686212182044983, - 0.5675784349441528, - 0.5655210018157959, - 0.5620436072349548, - 0.5567360520362854, - 0.5493261218070984, - 0.5397890210151672, - 0.6661908626556396, - 0.6784777641296387, - 0.6884137392044067, - 0.6959201097488403, - 0.7011720538139343, - 0.7045157551765442, - 0.7063308954238892, - 0.7069013118743896, - 0.7063308954238892, - 0.7045157551765442, - 0.7011720538139343, - 0.6959201097488403, - 0.6884137392044067, - 0.6784777641296387, - 0.6661908626556396, - 0.7868160009384155, - 0.8017193078994751, - 0.8141732811927795, - 0.82398921251297, - 0.8312076330184937, - 0.8360472321510315, - 0.8387944102287292, - 0.8396809101104736, - 0.8387944102287292, - 0.8360472321510315, - 0.8312076330184937, - 0.82398921251297, - 0.8141732811927795, - 0.8017193078994751, - 0.7868160009384155, - 0.9007686376571655, - 0.9179520010948181, - 0.9326671361923218, - 0.9446308612823486, - 0.9537460207939148, - 0.9600778818130493, - 0.9637792110443115, - 0.9649938344955444, - 0.9637792110443115, - 0.9600778818130493, - 0.9537460207939148, - 0.9446308612823486, - 0.9326671361923218, - 0.9179520010948181, - 0.9007686376571655 - ], - "xaxis": "x4", - "y": [ - -0.9007686376571655, - -0.7868160009384155, - -0.6661908626556396, - -0.5397890210151672, - -0.4087482690811157, - -0.2743079364299774, - -0.13768270611763, - -4.3138584260304924e-8, - 0.13768270611763, - 0.2743079364299774, - 0.4087482690811157, - 0.5397890210151672, - 0.6661908626556396, - 0.7868160009384155, - 0.9007686376571655, - -0.9179520010948181, - -0.8017193078994751, - -0.6784777641296387, - -0.5493261218070984, - -0.41560378670692444, - -0.2786824107170105, - -0.13979902863502502, - -4.379277029897821e-8, - 0.13979902863502502, - 0.2786824107170105, - 0.41560378670692444, - 0.5493261218070984, - 0.6784777641296387, - 0.8017193078994751, - 0.9179520010948181, - -0.9326671361923218, - -0.8141732811927795, - -0.6884137392044067, - -0.5567360520362854, - -0.4207032024860382, - -0.2818062901496887, - -0.1412661373615265, - -4.4241328822636206e-8, - 0.1412661373615265, - 0.2818062901496887, - 0.4207032024860382, - 0.5567360520362854, - 0.6884137392044067, - 0.8141732811927795, - 0.9326671361923218, - -0.9446308612823486, - -0.82398921251297, - -0.6959201097488403, - -0.5620436072349548, - -0.4241407513618469, - -0.2837892174720764, - -0.14215527474880219, - -4.450840407344003e-8, - 0.14215527474880219, - 0.2837892174720764, - 0.4241407513618469, - 0.5620436072349548, - 0.6959201097488403, - 0.82398921251297, - 0.9446308612823486, - -0.9537460207939148, - -0.8312076330184937, - -0.7011720538139343, - -0.5655210018157959, - -0.4262177646160126, - -0.28488510847091675, - -0.1426103413105011, - -4.464083147581732e-8, - 0.1426103413105011, - 0.28488510847091675, - 0.4262177646160126, - 0.5655210018157959, - 0.7011720538139343, - 0.8312076330184937, - 0.9537460207939148, - -0.9600778818130493, - -0.8360472321510315, - -0.7045157551765442, - -0.5675784349441528, - -0.4273276627063751, - -0.28539741039276123, - -0.14279501140117645, - -4.469103842552613e-8, - 0.14279501140117645, - 0.28539741039276123, - 0.4273276627063751, - 0.5675784349441528, - 0.7045157551765442, - 0.8360472321510315, - 0.9600778818130493, - -0.9637792110443115, - -0.8387944102287292, - -0.7063308954238892, - -0.5686212182044983, - -0.42783111333847046, - -0.2855900824069977, - -0.14284716546535492, - -4.470270553724731e-8, - 0.14284716546535492, - 0.2855900824069977, - 0.42783111333847046, - 0.5686212182044983, - 0.7063308954238892, - 0.8387944102287292, - 0.9637792110443115, - -0.9649938344955444, - -0.8396809101104736, - -0.7069013118743896, - -0.5689349174499512, - -0.4279707670211792, - -0.28563472628593445, - -0.14285461604595184, - -4.470348358154297e-8, - 0.14285461604595184, - 0.28563472628593445, - 0.4279707670211792, - 0.5689349174499512, - 0.7069013118743896, - 0.8396809101104736, - 0.9649938344955444, - -0.9637792110443115, - -0.8387944102287292, - -0.7063308954238892, - -0.5686212182044983, - -0.42783111333847046, - -0.2855900824069977, - -0.14284716546535492, - -4.470270553724731e-8, - 0.14284716546535492, - 0.2855900824069977, - 0.42783111333847046, - 0.5686212182044983, - 0.7063308954238892, - 0.8387944102287292, - 0.9637792110443115, - -0.9600778818130493, - -0.8360472321510315, - -0.7045157551765442, - -0.5675784349441528, - -0.4273276627063751, - -0.28539741039276123, - -0.14279501140117645, - -4.469103842552613e-8, - 0.14279501140117645, - 0.28539741039276123, - 0.4273276627063751, - 0.5675784349441528, - 0.7045157551765442, - 0.8360472321510315, - 0.9600778818130493, - -0.9537460207939148, - -0.8312076330184937, - -0.7011720538139343, - -0.5655210018157959, - -0.4262177646160126, - -0.28488510847091675, - -0.1426103413105011, - -4.464083147581732e-8, - 0.1426103413105011, - 0.28488510847091675, - 0.4262177646160126, - 0.5655210018157959, - 0.7011720538139343, - 0.8312076330184937, - 0.9537460207939148, - -0.9446308612823486, - -0.82398921251297, - -0.6959201097488403, - -0.5620436072349548, - -0.4241407513618469, - -0.2837892174720764, - -0.14215527474880219, - -4.450840407344003e-8, - 0.14215527474880219, - 0.2837892174720764, - 0.4241407513618469, - 0.5620436072349548, - 0.6959201097488403, - 0.82398921251297, - 0.9446308612823486, - -0.9326671361923218, - -0.8141732811927795, - -0.6884137392044067, - -0.5567360520362854, - -0.4207032024860382, - -0.2818062901496887, - -0.1412661373615265, - -4.4241328822636206e-8, - 0.1412661373615265, - 0.2818062901496887, - 0.4207032024860382, - 0.5567360520362854, - 0.6884137392044067, - 0.8141732811927795, - 0.9326671361923218, - -0.9179520010948181, - -0.8017193078994751, - -0.6784777641296387, - -0.5493261218070984, - -0.41560378670692444, - -0.2786824107170105, - -0.13979902863502502, - -4.379277029897821e-8, - 0.13979902863502502, - 0.2786824107170105, - 0.41560378670692444, - 0.5493261218070984, - 0.6784777641296387, - 0.8017193078994751, - 0.9179520010948181, - -0.9007686376571655, - -0.7868160009384155, - -0.6661908626556396, - -0.5397890210151672, - -0.4087482690811157, - -0.2743079364299774, - -0.13768270611763, - -4.3138584260304924e-8, - 0.13768270611763, - 0.2743079364299774, - 0.4087482690811157, - 0.5397890210151672, - 0.6661908626556396, - 0.7868160009384155, - 0.9007686376571655 - ], - "yaxis": "y4" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8966853022575378, - -0.914325475692749, - -0.9294963479042053, - -0.9418811202049255, - -0.9513513445854187, - -0.9579492211341858, - -0.9618139266967773, - -0.9630834460258484, - -0.9618139266967773, - -0.9579492211341858, - -0.9513513445854187, - -0.9418811202049255, - -0.9294963479042053, - -0.914325475692749, - -0.8966853022575378, - -0.7837075591087341, - -0.7990785837173462, - -0.8119879961013794, - -0.8222111463546753, - -0.8297597169876099, - -0.8348366618156433, - -0.8377248048782349, - -0.8386576175689697, - -0.8377248048782349, - -0.8348366618156433, - -0.8297597169876099, - -0.8222111463546753, - -0.8119879961013794, - -0.7990785837173462, - -0.7837075591087341, - -0.6639260053634644, - -0.6766566634178162, - -0.6870099306106567, - -0.6948718428611755, - -0.7003958821296692, - -0.7039236426353455, - -0.7058424949645996, - -0.7064460515975952, - -0.7058424949645996, - -0.7039236426353455, - -0.7003958821296692, - -0.6948718428611755, - -0.6870099306106567, - -0.6766566634178162, - -0.6639260053634644, - -0.5382177233695984, - -0.5481407046318054, - -0.5558974146842957, - -0.5614826083183289, - -0.5651568174362183, - -0.5673366189002991, - -0.5684431791305542, - -0.5687763094902039, - -0.5684431791305542, - -0.5673366189002991, - -0.5651568174362183, - -0.5614826083183289, - -0.5558974146842957, - -0.5481407046318054, - -0.5382177233695984, - -0.40772196650505066, - -0.41487982869148254, - -0.4202375113964081, - -0.4238676130771637, - -0.4260689616203308, - -0.4272480010986328, - -0.42778337001800537, - -0.4279319941997528, - -0.42778337001800537, - -0.4272480010986328, - -0.4260689616203308, - -0.4238676130771637, - -0.4202375113964081, - -0.41487982869148254, - -0.40772196650505066, - -0.2736997604370117, - -0.2782788872718811, - -0.2815694510936737, - -0.28366830945014954, - -0.2848320007324219, - -0.2853769361972809, - -0.285582035779953, - -0.285629540681839, - -0.285582035779953, - -0.2853769361972809, - -0.2848320007324219, - -0.28366830945014954, - -0.2815694510936737, - -0.2782788872718811, - -0.2736997604370117, - -0.13740195333957672, - -0.13962076604366302, - -0.14116846024990082, - -0.14211076498031616, - -0.14259442687034607, - -0.1427909880876541, - -0.1428465098142624, - -0.1428544521331787, - -0.1428465098142624, - -0.1427909880876541, - -0.14259442687034607, - -0.14211076498031616, - -0.14116846024990082, - -0.13962076604366302, - -0.13740195333957672, - -4.305318412889392e-8, - -4.373940498680895e-8, - -4.4212839611645904e-8, - -4.449599799727366e-8, - -4.463678848765085e-8, - -4.4690228406807364e-8, - -4.470265224654213e-8, - -4.470348358154297e-8, - -4.470265224654213e-8, - -4.4690228406807364e-8, - -4.463678848765085e-8, - -4.449599799727366e-8, - -4.4212839611645904e-8, - -4.373940498680895e-8, - -4.305318412889392e-8, - 0.13740195333957672, - 0.13962076604366302, - 0.14116846024990082, - 0.14211076498031616, - 0.14259442687034607, - 0.1427909880876541, - 0.1428465098142624, - 0.1428544521331787, - 0.1428465098142624, - 0.1427909880876541, - 0.14259442687034607, - 0.14211076498031616, - 0.14116846024990082, - 0.13962076604366302, - 0.13740195333957672, - 0.2736997604370117, - 0.2782788872718811, - 0.2815694510936737, - 0.28366830945014954, - 0.2848320007324219, - 0.2853769361972809, - 0.285582035779953, - 0.285629540681839, - 0.285582035779953, - 0.2853769361972809, - 0.2848320007324219, - 0.28366830945014954, - 0.2815694510936737, - 0.2782788872718811, - 0.2736997604370117, - 0.40772196650505066, - 0.41487982869148254, - 0.4202375113964081, - 0.4238676130771637, - 0.4260689616203308, - 0.4272480010986328, - 0.42778337001800537, - 0.4279319941997528, - 0.42778337001800537, - 0.4272480010986328, - 0.4260689616203308, - 0.4238676130771637, - 0.4202375113964081, - 0.41487982869148254, - 0.40772196650505066, - 0.5382177233695984, - 0.5481407046318054, - 0.5558974146842957, - 0.5614826083183289, - 0.5651568174362183, - 0.5673366189002991, - 0.5684431791305542, - 0.5687763094902039, - 0.5684431791305542, - 0.5673366189002991, - 0.5651568174362183, - 0.5614826083183289, - 0.5558974146842957, - 0.5481407046318054, - 0.5382177233695984, - 0.6639260053634644, - 0.6766566634178162, - 0.6870099306106567, - 0.6948718428611755, - 0.7003958821296692, - 0.7039236426353455, - 0.7058424949645996, - 0.7064460515975952, - 0.7058424949645996, - 0.7039236426353455, - 0.7003958821296692, - 0.6948718428611755, - 0.6870099306106567, - 0.6766566634178162, - 0.6639260053634644, - 0.7837075591087341, - 0.7990785837173462, - 0.8119879961013794, - 0.8222111463546753, - 0.8297597169876099, - 0.8348366618156433, - 0.8377248048782349, - 0.8386576175689697, - 0.8377248048782349, - 0.8348366618156433, - 0.8297597169876099, - 0.8222111463546753, - 0.8119879961013794, - 0.7990785837173462, - 0.7837075591087341, - 0.8966853022575378, - 0.914325475692749, - 0.9294963479042053, - 0.9418811202049255, - 0.9513513445854187, - 0.9579492211341858, - 0.9618139266967773, - 0.9630834460258484, - 0.9618139266967773, - 0.9579492211341858, - 0.9513513445854187, - 0.9418811202049255, - 0.9294963479042053, - 0.914325475692749, - 0.8966853022575378 - ], - "xaxis": "x4", - "y": [ - -0.8966853022575378, - -0.7837075591087341, - -0.6639260053634644, - -0.5382177233695984, - -0.40772196650505066, - -0.2736997604370117, - -0.13740195333957672, - -4.305318412889392e-8, - 0.13740195333957672, - 0.2736997604370117, - 0.40772196650505066, - 0.5382177233695984, - 0.6639260053634644, - 0.7837075591087341, - 0.8966853022575378, - -0.914325475692749, - -0.7990785837173462, - -0.6766566634178162, - -0.5481407046318054, - -0.41487982869148254, - -0.2782788872718811, - -0.13962076604366302, - -4.373940498680895e-8, - 0.13962076604366302, - 0.2782788872718811, - 0.41487982869148254, - 0.5481407046318054, - 0.6766566634178162, - 0.7990785837173462, - 0.914325475692749, - -0.9294963479042053, - -0.8119879961013794, - -0.6870099306106567, - -0.5558974146842957, - -0.4202375113964081, - -0.2815694510936737, - -0.14116846024990082, - -4.4212839611645904e-8, - 0.14116846024990082, - 0.2815694510936737, - 0.4202375113964081, - 0.5558974146842957, - 0.6870099306106567, - 0.8119879961013794, - 0.9294963479042053, - -0.9418811202049255, - -0.8222111463546753, - -0.6948718428611755, - -0.5614826083183289, - -0.4238676130771637, - -0.28366830945014954, - -0.14211076498031616, - -4.449599799727366e-8, - 0.14211076498031616, - 0.28366830945014954, - 0.4238676130771637, - 0.5614826083183289, - 0.6948718428611755, - 0.8222111463546753, - 0.9418811202049255, - -0.9513513445854187, - -0.8297597169876099, - -0.7003958821296692, - -0.5651568174362183, - -0.4260689616203308, - -0.2848320007324219, - -0.14259442687034607, - -4.463678848765085e-8, - 0.14259442687034607, - 0.2848320007324219, - 0.4260689616203308, - 0.5651568174362183, - 0.7003958821296692, - 0.8297597169876099, - 0.9513513445854187, - -0.9579492211341858, - -0.8348366618156433, - -0.7039236426353455, - -0.5673366189002991, - -0.4272480010986328, - -0.2853769361972809, - -0.1427909880876541, - -4.4690228406807364e-8, - 0.1427909880876541, - 0.2853769361972809, - 0.4272480010986328, - 0.5673366189002991, - 0.7039236426353455, - 0.8348366618156433, - 0.9579492211341858, - -0.9618139266967773, - -0.8377248048782349, - -0.7058424949645996, - -0.5684431791305542, - -0.42778337001800537, - -0.285582035779953, - -0.1428465098142624, - -4.470265224654213e-8, - 0.1428465098142624, - 0.285582035779953, - 0.42778337001800537, - 0.5684431791305542, - 0.7058424949645996, - 0.8377248048782349, - 0.9618139266967773, - -0.9630834460258484, - -0.8386576175689697, - -0.7064460515975952, - -0.5687763094902039, - -0.4279319941997528, - -0.285629540681839, - -0.1428544521331787, - -4.470348358154297e-8, - 0.1428544521331787, - 0.285629540681839, - 0.4279319941997528, - 0.5687763094902039, - 0.7064460515975952, - 0.8386576175689697, - 0.9630834460258484, - -0.9618139266967773, - -0.8377248048782349, - -0.7058424949645996, - -0.5684431791305542, - -0.42778337001800537, - -0.285582035779953, - -0.1428465098142624, - -4.470265224654213e-8, - 0.1428465098142624, - 0.285582035779953, - 0.42778337001800537, - 0.5684431791305542, - 0.7058424949645996, - 0.8377248048782349, - 0.9618139266967773, - -0.9579492211341858, - -0.8348366618156433, - -0.7039236426353455, - -0.5673366189002991, - -0.4272480010986328, - -0.2853769361972809, - -0.1427909880876541, - -4.4690228406807364e-8, - 0.1427909880876541, - 0.2853769361972809, - 0.4272480010986328, - 0.5673366189002991, - 0.7039236426353455, - 0.8348366618156433, - 0.9579492211341858, - -0.9513513445854187, - -0.8297597169876099, - -0.7003958821296692, - -0.5651568174362183, - -0.4260689616203308, - -0.2848320007324219, - -0.14259442687034607, - -4.463678848765085e-8, - 0.14259442687034607, - 0.2848320007324219, - 0.4260689616203308, - 0.5651568174362183, - 0.7003958821296692, - 0.8297597169876099, - 0.9513513445854187, - -0.9418811202049255, - -0.8222111463546753, - -0.6948718428611755, - -0.5614826083183289, - -0.4238676130771637, - -0.28366830945014954, - -0.14211076498031616, - -4.449599799727366e-8, - 0.14211076498031616, - 0.28366830945014954, - 0.4238676130771637, - 0.5614826083183289, - 0.6948718428611755, - 0.8222111463546753, - 0.9418811202049255, - -0.9294963479042053, - -0.8119879961013794, - -0.6870099306106567, - -0.5558974146842957, - -0.4202375113964081, - -0.2815694510936737, - -0.14116846024990082, - -4.4212839611645904e-8, - 0.14116846024990082, - 0.2815694510936737, - 0.4202375113964081, - 0.5558974146842957, - 0.6870099306106567, - 0.8119879961013794, - 0.9294963479042053, - -0.914325475692749, - -0.7990785837173462, - -0.6766566634178162, - -0.5481407046318054, - -0.41487982869148254, - -0.2782788872718811, - -0.13962076604366302, - -4.373940498680895e-8, - 0.13962076604366302, - 0.2782788872718811, - 0.41487982869148254, - 0.5481407046318054, - 0.6766566634178162, - 0.7990785837173462, - 0.914325475692749, - -0.8966853022575378, - -0.7837075591087341, - -0.6639260053634644, - -0.5382177233695984, - -0.40772196650505066, - -0.2736997604370117, - -0.13740195333957672, - -4.305318412889392e-8, - 0.13740195333957672, - 0.2736997604370117, - 0.40772196650505066, - 0.5382177233695984, - 0.6639260053634644, - 0.7837075591087341, - 0.8966853022575378 - ], - "yaxis": "y4" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8927547931671143, - -0.9108202457427979, - -0.9264189600944519, - -0.9392023086547852, - -0.949010968208313, - -0.9558636546134949, - -0.9598854780197144, - -0.9612078666687012, - -0.9598854780197144, - -0.9558636546134949, - -0.949010968208313, - -0.9392023086547852, - -0.9264189600944519, - -0.9108202457427979, - -0.8927547931671143, - -0.780703067779541, - -0.7965134978294373, - -0.8098551034927368, - -0.8204681277275085, - -0.8283352255821228, - -0.8336426615715027, - -0.8366680145263672, - -0.8376462459564209, - -0.8366680145263672, - -0.8336426615715027, - -0.8283352255821228, - -0.8204681277275085, - -0.8098551034927368, - -0.7965134978294373, - -0.780703067779541, - -0.6617278456687927, - -0.674879252910614, - -0.6856324672698975, - -0.6938384175300598, - -0.6996278762817383, - -0.7033363580703735, - -0.7053573727607727, - -0.7059937119483948, - -0.7053573727607727, - -0.7033363580703735, - -0.6996278762817383, - -0.6938384175300598, - -0.6856324672698975, - -0.674879252910614, - -0.6617278456687927, - -0.5366869568824768, - -0.5469787120819092, - -0.555070698261261, - -0.5609270930290222, - -0.5647948980331421, - -0.5670958757400513, - -0.5682656764984131, - -0.5686181783676147, - -0.5682656764984131, - -0.5670958757400513, - -0.5647948980331421, - -0.5609270930290222, - -0.555070698261261, - -0.5469787120819092, - -0.5366869568824768, - -0.4067189693450928, - -0.414167582988739, - -0.41977670788764954, - -0.42359617352485657, - -0.4259207248687744, - -0.42716842889785767, - -0.42773571610450745, - -0.4278932511806488, - -0.42773571610450745, - -0.42716842889785767, - -0.4259207248687744, - -0.42359617352485657, - -0.41977670788764954, - -0.414167582988739, - -0.4067189693450928, - -0.27310389280319214, - -0.27788087725639343, - -0.2813345193862915, - -0.28354793787002563, - -0.2847789525985718, - -0.28535643219947815, - -0.2855739891529083, - -0.2856243848800659, - -0.2855739891529083, - -0.28535643219947815, - -0.2847789525985718, - -0.28354793787002563, - -0.2813345193862915, - -0.27788087725639343, - -0.27310389280319214, - -0.13712646067142487, - -0.13944463431835175, - -0.14107143878936768, - -0.14206638932228088, - -0.14257854223251343, - -0.14278696477413177, - -0.14284585416316986, - -0.14285428822040558, - -0.14284585416316986, - -0.14278696477413177, - -0.14257854223251343, - -0.14206638932228088, - -0.14107143878936768, - -0.13944463431835175, - -0.13712646067142487, - -4.2969340086074226e-8, - -4.368665429410612e-8, - -4.418452803633954e-8, - -4.448362744824408e-8, - -4.463274549948437e-8, - -4.46894183880886e-8, - -4.4702606061264305e-8, - -4.470348358154297e-8, - -4.4702606061264305e-8, - -4.46894183880886e-8, - -4.463274549948437e-8, - -4.448362744824408e-8, - -4.418452803633954e-8, - -4.368665429410612e-8, - -4.2969340086074226e-8, - 0.13712646067142487, - 0.13944463431835175, - 0.14107143878936768, - 0.14206638932228088, - 0.14257854223251343, - 0.14278696477413177, - 0.14284585416316986, - 0.14285428822040558, - 0.14284585416316986, - 0.14278696477413177, - 0.14257854223251343, - 0.14206638932228088, - 0.14107143878936768, - 0.13944463431835175, - 0.13712646067142487, - 0.27310389280319214, - 0.27788087725639343, - 0.2813345193862915, - 0.28354793787002563, - 0.2847789525985718, - 0.28535643219947815, - 0.2855739891529083, - 0.2856243848800659, - 0.2855739891529083, - 0.28535643219947815, - 0.2847789525985718, - 0.28354793787002563, - 0.2813345193862915, - 0.27788087725639343, - 0.27310389280319214, - 0.4067189693450928, - 0.414167582988739, - 0.41977670788764954, - 0.42359617352485657, - 0.4259207248687744, - 0.42716842889785767, - 0.42773571610450745, - 0.4278932511806488, - 0.42773571610450745, - 0.42716842889785767, - 0.4259207248687744, - 0.42359617352485657, - 0.41977670788764954, - 0.414167582988739, - 0.4067189693450928, - 0.5366869568824768, - 0.5469787120819092, - 0.555070698261261, - 0.5609270930290222, - 0.5647948980331421, - 0.5670958757400513, - 0.5682656764984131, - 0.5686181783676147, - 0.5682656764984131, - 0.5670958757400513, - 0.5647948980331421, - 0.5609270930290222, - 0.555070698261261, - 0.5469787120819092, - 0.5366869568824768, - 0.6617278456687927, - 0.674879252910614, - 0.6856324672698975, - 0.6938384175300598, - 0.6996278762817383, - 0.7033363580703735, - 0.7053573727607727, - 0.7059937119483948, - 0.7053573727607727, - 0.7033363580703735, - 0.6996278762817383, - 0.6938384175300598, - 0.6856324672698975, - 0.674879252910614, - 0.6617278456687927, - 0.780703067779541, - 0.7965134978294373, - 0.8098551034927368, - 0.8204681277275085, - 0.8283352255821228, - 0.8336426615715027, - 0.8366680145263672, - 0.8376462459564209, - 0.8366680145263672, - 0.8336426615715027, - 0.8283352255821228, - 0.8204681277275085, - 0.8098551034927368, - 0.7965134978294373, - 0.780703067779541, - 0.8927547931671143, - 0.9108202457427979, - 0.9264189600944519, - 0.9392023086547852, - 0.949010968208313, - 0.9558636546134949, - 0.9598854780197144, - 0.9612078666687012, - 0.9598854780197144, - 0.9558636546134949, - 0.949010968208313, - 0.9392023086547852, - 0.9264189600944519, - 0.9108202457427979, - 0.8927547931671143 - ], - "xaxis": "x4", - "y": [ - -0.8927547931671143, - -0.780703067779541, - -0.6617278456687927, - -0.5366869568824768, - -0.4067189693450928, - -0.27310389280319214, - -0.13712646067142487, - -4.2969340086074226e-8, - 0.13712646067142487, - 0.27310389280319214, - 0.4067189693450928, - 0.5366869568824768, - 0.6617278456687927, - 0.780703067779541, - 0.8927547931671143, - -0.9108202457427979, - -0.7965134978294373, - -0.674879252910614, - -0.5469787120819092, - -0.414167582988739, - -0.27788087725639343, - -0.13944463431835175, - -4.368665429410612e-8, - 0.13944463431835175, - 0.27788087725639343, - 0.414167582988739, - 0.5469787120819092, - 0.674879252910614, - 0.7965134978294373, - 0.9108202457427979, - -0.9264189600944519, - -0.8098551034927368, - -0.6856324672698975, - -0.555070698261261, - -0.41977670788764954, - -0.2813345193862915, - -0.14107143878936768, - -4.418452803633954e-8, - 0.14107143878936768, - 0.2813345193862915, - 0.41977670788764954, - 0.555070698261261, - 0.6856324672698975, - 0.8098551034927368, - 0.9264189600944519, - -0.9392023086547852, - -0.8204681277275085, - -0.6938384175300598, - -0.5609270930290222, - -0.42359617352485657, - -0.28354793787002563, - -0.14206638932228088, - -4.448362744824408e-8, - 0.14206638932228088, - 0.28354793787002563, - 0.42359617352485657, - 0.5609270930290222, - 0.6938384175300598, - 0.8204681277275085, - 0.9392023086547852, - -0.949010968208313, - -0.8283352255821228, - -0.6996278762817383, - -0.5647948980331421, - -0.4259207248687744, - -0.2847789525985718, - -0.14257854223251343, - -4.463274549948437e-8, - 0.14257854223251343, - 0.2847789525985718, - 0.4259207248687744, - 0.5647948980331421, - 0.6996278762817383, - 0.8283352255821228, - 0.949010968208313, - -0.9558636546134949, - -0.8336426615715027, - -0.7033363580703735, - -0.5670958757400513, - -0.42716842889785767, - -0.28535643219947815, - -0.14278696477413177, - -4.46894183880886e-8, - 0.14278696477413177, - 0.28535643219947815, - 0.42716842889785767, - 0.5670958757400513, - 0.7033363580703735, - 0.8336426615715027, - 0.9558636546134949, - -0.9598854780197144, - -0.8366680145263672, - -0.7053573727607727, - -0.5682656764984131, - -0.42773571610450745, - -0.2855739891529083, - -0.14284585416316986, - -4.4702606061264305e-8, - 0.14284585416316986, - 0.2855739891529083, - 0.42773571610450745, - 0.5682656764984131, - 0.7053573727607727, - 0.8366680145263672, - 0.9598854780197144, - -0.9612078666687012, - -0.8376462459564209, - -0.7059937119483948, - -0.5686181783676147, - -0.4278932511806488, - -0.2856243848800659, - -0.14285428822040558, - -4.470348358154297e-8, - 0.14285428822040558, - 0.2856243848800659, - 0.4278932511806488, - 0.5686181783676147, - 0.7059937119483948, - 0.8376462459564209, - 0.9612078666687012, - -0.9598854780197144, - -0.8366680145263672, - -0.7053573727607727, - -0.5682656764984131, - -0.42773571610450745, - -0.2855739891529083, - -0.14284585416316986, - -4.4702606061264305e-8, - 0.14284585416316986, - 0.2855739891529083, - 0.42773571610450745, - 0.5682656764984131, - 0.7053573727607727, - 0.8366680145263672, - 0.9598854780197144, - -0.9558636546134949, - -0.8336426615715027, - -0.7033363580703735, - -0.5670958757400513, - -0.42716842889785767, - -0.28535643219947815, - -0.14278696477413177, - -4.46894183880886e-8, - 0.14278696477413177, - 0.28535643219947815, - 0.42716842889785767, - 0.5670958757400513, - 0.7033363580703735, - 0.8336426615715027, - 0.9558636546134949, - -0.949010968208313, - -0.8283352255821228, - -0.6996278762817383, - -0.5647948980331421, - -0.4259207248687744, - -0.2847789525985718, - -0.14257854223251343, - -4.463274549948437e-8, - 0.14257854223251343, - 0.2847789525985718, - 0.4259207248687744, - 0.5647948980331421, - 0.6996278762817383, - 0.8283352255821228, - 0.949010968208313, - -0.9392023086547852, - -0.8204681277275085, - -0.6938384175300598, - -0.5609270930290222, - -0.42359617352485657, - -0.28354793787002563, - -0.14206638932228088, - -4.448362744824408e-8, - 0.14206638932228088, - 0.28354793787002563, - 0.42359617352485657, - 0.5609270930290222, - 0.6938384175300598, - 0.8204681277275085, - 0.9392023086547852, - -0.9264189600944519, - -0.8098551034927368, - -0.6856324672698975, - -0.555070698261261, - -0.41977670788764954, - -0.2813345193862915, - -0.14107143878936768, - -4.418452803633954e-8, - 0.14107143878936768, - 0.2813345193862915, - 0.41977670788764954, - 0.555070698261261, - 0.6856324672698975, - 0.8098551034927368, - 0.9264189600944519, - -0.9108202457427979, - -0.7965134978294373, - -0.674879252910614, - -0.5469787120819092, - -0.414167582988739, - -0.27788087725639343, - -0.13944463431835175, - -4.368665429410612e-8, - 0.13944463431835175, - 0.27788087725639343, - 0.414167582988739, - 0.5469787120819092, - 0.674879252910614, - 0.7965134978294373, - 0.9108202457427979, - -0.8927547931671143, - -0.780703067779541, - -0.6617278456687927, - -0.5366869568824768, - -0.4067189693450928, - -0.27310389280319214, - -0.13712646067142487, - -4.2969340086074226e-8, - 0.13712646067142487, - 0.27310389280319214, - 0.4067189693450928, - 0.5366869568824768, - 0.6617278456687927, - 0.780703067779541, - 0.8927547931671143 - ], - "yaxis": "y4" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8889660835266113, - -0.9074284434318542, - -0.9234296679496765, - -0.9365905523300171, - -0.9467222094535828, - -0.9538193345069885, - -0.957992434501648, - -0.9593659043312073, - -0.957992434501648, - -0.9538193345069885, - -0.9467222094535828, - -0.9365905523300171, - -0.9234296679496765, - -0.9074284434318542, - -0.8889660835266113, - -0.7777958512306213, - -0.7940199375152588, - -0.807772159576416, - -0.8187587857246399, - -0.8269333839416504, - -0.8324646949768066, - -0.8356238007545471, - -0.836646318435669, - -0.8356238007545471, - -0.8324646949768066, - -0.8269333839416504, - -0.8187587857246399, - -0.807772159576416, - -0.7940199375152588, - -0.7777958512306213, - -0.6595926284790039, - -0.6731435060501099, - -0.6842803359031677, - -0.692819356918335, - -0.698867917060852, - -0.7027537822723389, - -0.7048755288124084, - -0.705544114112854, - -0.7048755288124084, - -0.7027537822723389, - -0.698867917060852, - -0.692819356918335, - -0.6842803359031677, - -0.6731435060501099, - -0.6595926284790039, - -0.5351945757865906, - -0.5458391308784485, - -0.554255485534668, - -0.5603768229484558, - -0.5644352436065674, - -0.5668560266494751, - -0.5680888295173645, - -0.5684604644775391, - -0.5680888295173645, - -0.5668560266494751, - -0.5644352436065674, - -0.5603768229484558, - -0.554255485534668, - -0.5458391308784485, - -0.5351945757865906, - -0.40573805570602417, - -0.4134666621685028, - -0.4193207323551178, - -0.42332643270492554, - -0.42577290534973145, - -0.42708903551101685, - -0.4276880919933319, - -0.4278545379638672, - -0.4276880919933319, - -0.42708903551101685, - -0.42577290534973145, - -0.42332643270492554, - -0.4193207323551178, - -0.4134666621685028, - -0.40573805570602417, - -0.2725197970867157, - -0.27748820185661316, - -0.2811014950275421, - -0.28342801332473755, - -0.28472602367401123, - -0.2853359878063202, - -0.28556591272354126, - -0.28561922907829285, - -0.28556591272354126, - -0.2853359878063202, - -0.28472602367401123, - -0.28342801332473755, - -0.2811014950275421, - -0.27748820185661316, - -0.2725197970867157, - -0.13685601949691772, - -0.1392706036567688, - -0.14097507297992706, - -0.14202217757701874, - -0.14256267249584198, - -0.14278292655944824, - -0.14284519851207733, - -0.14285412430763245, - -0.14284519851207733, - -0.14278292655944824, - -0.14256267249584198, - -0.14202217757701874, - -0.14097507297992706, - -0.1392706036567688, - -0.13685601949691772, - -4.2886998841140667e-8, - -4.363450401001501e-8, - -4.415639054400344e-8, - -4.4471288873637604e-8, - -4.4628709616745255e-8, - -4.468861547479719e-8, - -4.470255277055912e-8, - -4.470348358154297e-8, - -4.470255277055912e-8, - -4.468861547479719e-8, - -4.4628709616745255e-8, - -4.4471288873637604e-8, - -4.415639054400344e-8, - -4.363450401001501e-8, - -4.2886998841140667e-8, - 0.13685601949691772, - 0.1392706036567688, - 0.14097507297992706, - 0.14202217757701874, - 0.14256267249584198, - 0.14278292655944824, - 0.14284519851207733, - 0.14285412430763245, - 0.14284519851207733, - 0.14278292655944824, - 0.14256267249584198, - 0.14202217757701874, - 0.14097507297992706, - 0.1392706036567688, - 0.13685601949691772, - 0.2725197970867157, - 0.27748820185661316, - 0.2811014950275421, - 0.28342801332473755, - 0.28472602367401123, - 0.2853359878063202, - 0.28556591272354126, - 0.28561922907829285, - 0.28556591272354126, - 0.2853359878063202, - 0.28472602367401123, - 0.28342801332473755, - 0.2811014950275421, - 0.27748820185661316, - 0.2725197970867157, - 0.40573805570602417, - 0.4134666621685028, - 0.4193207323551178, - 0.42332643270492554, - 0.42577290534973145, - 0.42708903551101685, - 0.4276880919933319, - 0.4278545379638672, - 0.4276880919933319, - 0.42708903551101685, - 0.42577290534973145, - 0.42332643270492554, - 0.4193207323551178, - 0.4134666621685028, - 0.40573805570602417, - 0.5351945757865906, - 0.5458391308784485, - 0.554255485534668, - 0.5603768229484558, - 0.5644352436065674, - 0.5668560266494751, - 0.5680888295173645, - 0.5684604644775391, - 0.5680888295173645, - 0.5668560266494751, - 0.5644352436065674, - 0.5603768229484558, - 0.554255485534668, - 0.5458391308784485, - 0.5351945757865906, - 0.6595926284790039, - 0.6731435060501099, - 0.6842803359031677, - 0.692819356918335, - 0.698867917060852, - 0.7027537822723389, - 0.7048755288124084, - 0.705544114112854, - 0.7048755288124084, - 0.7027537822723389, - 0.698867917060852, - 0.692819356918335, - 0.6842803359031677, - 0.6731435060501099, - 0.6595926284790039, - 0.7777958512306213, - 0.7940199375152588, - 0.807772159576416, - 0.8187587857246399, - 0.8269333839416504, - 0.8324646949768066, - 0.8356238007545471, - 0.836646318435669, - 0.8356238007545471, - 0.8324646949768066, - 0.8269333839416504, - 0.8187587857246399, - 0.807772159576416, - 0.7940199375152588, - 0.7777958512306213, - 0.8889660835266113, - 0.9074284434318542, - 0.9234296679496765, - 0.9365905523300171, - 0.9467222094535828, - 0.9538193345069885, - 0.957992434501648, - 0.9593659043312073, - 0.957992434501648, - 0.9538193345069885, - 0.9467222094535828, - 0.9365905523300171, - 0.9234296679496765, - 0.9074284434318542, - 0.8889660835266113 - ], - "xaxis": "x4", - "y": [ - -0.8889660835266113, - -0.7777958512306213, - -0.6595926284790039, - -0.5351945757865906, - -0.40573805570602417, - -0.2725197970867157, - -0.13685601949691772, - -4.2886998841140667e-8, - 0.13685601949691772, - 0.2725197970867157, - 0.40573805570602417, - 0.5351945757865906, - 0.6595926284790039, - 0.7777958512306213, - 0.8889660835266113, - -0.9074284434318542, - -0.7940199375152588, - -0.6731435060501099, - -0.5458391308784485, - -0.4134666621685028, - -0.27748820185661316, - -0.1392706036567688, - -4.363450401001501e-8, - 0.1392706036567688, - 0.27748820185661316, - 0.4134666621685028, - 0.5458391308784485, - 0.6731435060501099, - 0.7940199375152588, - 0.9074284434318542, - -0.9234296679496765, - -0.807772159576416, - -0.6842803359031677, - -0.554255485534668, - -0.4193207323551178, - -0.2811014950275421, - -0.14097507297992706, - -4.415639054400344e-8, - 0.14097507297992706, - 0.2811014950275421, - 0.4193207323551178, - 0.554255485534668, - 0.6842803359031677, - 0.807772159576416, - 0.9234296679496765, - -0.9365905523300171, - -0.8187587857246399, - -0.692819356918335, - -0.5603768229484558, - -0.42332643270492554, - -0.28342801332473755, - -0.14202217757701874, - -4.4471288873637604e-8, - 0.14202217757701874, - 0.28342801332473755, - 0.42332643270492554, - 0.5603768229484558, - 0.692819356918335, - 0.8187587857246399, - 0.9365905523300171, - -0.9467222094535828, - -0.8269333839416504, - -0.698867917060852, - -0.5644352436065674, - -0.42577290534973145, - -0.28472602367401123, - -0.14256267249584198, - -4.4628709616745255e-8, - 0.14256267249584198, - 0.28472602367401123, - 0.42577290534973145, - 0.5644352436065674, - 0.698867917060852, - 0.8269333839416504, - 0.9467222094535828, - -0.9538193345069885, - -0.8324646949768066, - -0.7027537822723389, - -0.5668560266494751, - -0.42708903551101685, - -0.2853359878063202, - -0.14278292655944824, - -4.468861547479719e-8, - 0.14278292655944824, - 0.2853359878063202, - 0.42708903551101685, - 0.5668560266494751, - 0.7027537822723389, - 0.8324646949768066, - 0.9538193345069885, - -0.957992434501648, - -0.8356238007545471, - -0.7048755288124084, - -0.5680888295173645, - -0.4276880919933319, - -0.28556591272354126, - -0.14284519851207733, - -4.470255277055912e-8, - 0.14284519851207733, - 0.28556591272354126, - 0.4276880919933319, - 0.5680888295173645, - 0.7048755288124084, - 0.8356238007545471, - 0.957992434501648, - -0.9593659043312073, - -0.836646318435669, - -0.705544114112854, - -0.5684604644775391, - -0.4278545379638672, - -0.28561922907829285, - -0.14285412430763245, - -4.470348358154297e-8, - 0.14285412430763245, - 0.28561922907829285, - 0.4278545379638672, - 0.5684604644775391, - 0.705544114112854, - 0.836646318435669, - 0.9593659043312073, - -0.957992434501648, - -0.8356238007545471, - -0.7048755288124084, - -0.5680888295173645, - -0.4276880919933319, - -0.28556591272354126, - -0.14284519851207733, - -4.470255277055912e-8, - 0.14284519851207733, - 0.28556591272354126, - 0.4276880919933319, - 0.5680888295173645, - 0.7048755288124084, - 0.8356238007545471, - 0.957992434501648, - -0.9538193345069885, - -0.8324646949768066, - -0.7027537822723389, - -0.5668560266494751, - -0.42708903551101685, - -0.2853359878063202, - -0.14278292655944824, - -4.468861547479719e-8, - 0.14278292655944824, - 0.2853359878063202, - 0.42708903551101685, - 0.5668560266494751, - 0.7027537822723389, - 0.8324646949768066, - 0.9538193345069885, - -0.9467222094535828, - -0.8269333839416504, - -0.698867917060852, - -0.5644352436065674, - -0.42577290534973145, - -0.28472602367401123, - -0.14256267249584198, - -4.4628709616745255e-8, - 0.14256267249584198, - 0.28472602367401123, - 0.42577290534973145, - 0.5644352436065674, - 0.698867917060852, - 0.8269333839416504, - 0.9467222094535828, - -0.9365905523300171, - -0.8187587857246399, - -0.692819356918335, - -0.5603768229484558, - -0.42332643270492554, - -0.28342801332473755, - -0.14202217757701874, - -4.4471288873637604e-8, - 0.14202217757701874, - 0.28342801332473755, - 0.42332643270492554, - 0.5603768229484558, - 0.692819356918335, - 0.8187587857246399, - 0.9365905523300171, - -0.9234296679496765, - -0.807772159576416, - -0.6842803359031677, - -0.554255485534668, - -0.4193207323551178, - -0.2811014950275421, - -0.14097507297992706, - -4.415639054400344e-8, - 0.14097507297992706, - 0.2811014950275421, - 0.4193207323551178, - 0.554255485534668, - 0.6842803359031677, - 0.807772159576416, - 0.9234296679496765, - -0.9074284434318542, - -0.7940199375152588, - -0.6731435060501099, - -0.5458391308784485, - -0.4134666621685028, - -0.27748820185661316, - -0.1392706036567688, - -4.363450401001501e-8, - 0.1392706036567688, - 0.27748820185661316, - 0.4134666621685028, - 0.5458391308784485, - 0.6731435060501099, - 0.7940199375152588, - 0.9074284434318542, - -0.8889660835266113, - -0.7777958512306213, - -0.6595926284790039, - -0.5351945757865906, - -0.40573805570602417, - -0.2725197970867157, - -0.13685601949691772, - -4.2886998841140667e-8, - 0.13685601949691772, - 0.2725197970867157, - 0.40573805570602417, - 0.5351945757865906, - 0.6595926284790039, - 0.7777958512306213, - 0.8889660835266113 - ], - "yaxis": "y4" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9458280205726624, - -0.9606020450592041, - -0.9718056917190552, - -0.9797690510749817, - -0.985072910785675, - -0.988342821598053, - -0.9900906085968018, - -0.9906372427940369, - -0.9900906085968018, - -0.988342821598053, - -0.985072910785675, - -0.9797690510749817, - -0.9718056917190552, - -0.9606020450592041, - -0.9458280205726624, - -0.8233731985092163, - -0.8345812559127808, - -0.8424866199493408, - -0.8476657271385193, - -0.8508381843566895, - -0.8526486158370972, - -0.853559136390686, - -0.8538344502449036, - -0.853559136390686, - -0.8526486158370972, - -0.8508381843566895, - -0.8476657271385193, - -0.8424866199493408, - -0.8345812559127808, - -0.8233731985092163, - -0.6941469311714172, - -0.7020721435546875, - -0.7072076201438904, - -0.7102634906768799, - -0.7119534611701965, - -0.7128260135650635, - -0.7132296562194824, - -0.7133458256721497, - -0.7132296562194824, - -0.7128260135650635, - -0.7119534611701965, - -0.7102634906768799, - -0.7072076201438904, - -0.7020721435546875, - -0.6941469311714172, - -0.5598679780960083, - -0.565110445022583, - -0.5682107210159302, - -0.5698671340942383, - -0.5706766247749329, - -0.5710418224334717, - -0.5711906552314758, - -0.5712301135063171, - -0.5711906552314758, - -0.5710418224334717, - -0.5706766247749329, - -0.5698671340942383, - -0.5682107210159302, - -0.565110445022583, - -0.5598679780960083, - -0.4221740663051605, - -0.4254190921783447, - -0.4271720349788666, - -0.42800745368003845, - -0.4283596873283386, - -0.428491473197937, - -0.42853498458862305, - -0.4285448491573334, - -0.42853498458862305, - -0.428491473197937, - -0.4283596873283386, - -0.42800745368003845, - -0.4271720349788666, - -0.4254190921783447, - -0.4221740663051605, - -0.28238365054130554, - -0.28421616554260254, - -0.2851303815841675, - -0.28552091121673584, - -0.285660982131958, - -0.28570184111595154, - -0.28571122884750366, - -0.28571268916130066, - -0.28571122884750366, - -0.28570184111595154, - -0.285660982131958, - -0.28552091121673584, - -0.2851303815841675, - -0.28421616554260254, - -0.28238365054130554, - -0.1414414793252945, - -0.14225982129573822, - -0.14264589548110962, - -0.14279763400554657, - -0.14284496009349823, - -0.14285558462142944, - -0.14285700023174286, - -0.14285708963871002, - -0.14285700023174286, - -0.14285558462142944, - -0.14284496009349823, - -0.14279763400554657, - -0.14264589548110962, - -0.14225982129573822, - -0.1414414793252945, - -4.42849348303298e-8, - -4.4530935383590986e-8, - -4.464465774844939e-8, - -4.468796177548029e-8, - -4.4700712464873504e-8, - -4.470323844429913e-8, - -4.470348002882929e-8, - -4.470348358154297e-8, - -4.470348002882929e-8, - -4.470323844429913e-8, - -4.4700712464873504e-8, - -4.468796177548029e-8, - -4.464465774844939e-8, - -4.4530935383590986e-8, - -4.42849348303298e-8, - 0.1414414793252945, - 0.14225982129573822, - 0.14264589548110962, - 0.14279763400554657, - 0.14284496009349823, - 0.14285558462142944, - 0.14285700023174286, - 0.14285708963871002, - 0.14285700023174286, - 0.14285558462142944, - 0.14284496009349823, - 0.14279763400554657, - 0.14264589548110962, - 0.14225982129573822, - 0.1414414793252945, - 0.28238365054130554, - 0.28421616554260254, - 0.2851303815841675, - 0.28552091121673584, - 0.285660982131958, - 0.28570184111595154, - 0.28571122884750366, - 0.28571268916130066, - 0.28571122884750366, - 0.28570184111595154, - 0.285660982131958, - 0.28552091121673584, - 0.2851303815841675, - 0.28421616554260254, - 0.28238365054130554, - 0.4221740663051605, - 0.4254190921783447, - 0.4271720349788666, - 0.42800745368003845, - 0.4283596873283386, - 0.428491473197937, - 0.42853498458862305, - 0.4285448491573334, - 0.42853498458862305, - 0.428491473197937, - 0.4283596873283386, - 0.42800745368003845, - 0.4271720349788666, - 0.4254190921783447, - 0.4221740663051605, - 0.5598679780960083, - 0.565110445022583, - 0.5682107210159302, - 0.5698671340942383, - 0.5706766247749329, - 0.5710418224334717, - 0.5711906552314758, - 0.5712301135063171, - 0.5711906552314758, - 0.5710418224334717, - 0.5706766247749329, - 0.5698671340942383, - 0.5682107210159302, - 0.565110445022583, - 0.5598679780960083, - 0.6941469311714172, - 0.7020721435546875, - 0.7072076201438904, - 0.7102634906768799, - 0.7119534611701965, - 0.7128260135650635, - 0.7132296562194824, - 0.7133458256721497, - 0.7132296562194824, - 0.7128260135650635, - 0.7119534611701965, - 0.7102634906768799, - 0.7072076201438904, - 0.7020721435546875, - 0.6941469311714172, - 0.8233731985092163, - 0.8345812559127808, - 0.8424866199493408, - 0.8476657271385193, - 0.8508381843566895, - 0.8526486158370972, - 0.853559136390686, - 0.8538344502449036, - 0.853559136390686, - 0.8526486158370972, - 0.8508381843566895, - 0.8476657271385193, - 0.8424866199493408, - 0.8345812559127808, - 0.8233731985092163, - 0.9458280205726624, - 0.9606020450592041, - 0.9718056917190552, - 0.9797690510749817, - 0.985072910785675, - 0.988342821598053, - 0.9900906085968018, - 0.9906372427940369, - 0.9900906085968018, - 0.988342821598053, - 0.985072910785675, - 0.9797690510749817, - 0.9718056917190552, - 0.9606020450592041, - 0.9458280205726624 - ], - "xaxis": "x2", - "y": [ - -0.9458280205726624, - -0.8233731985092163, - -0.6941469311714172, - -0.5598679780960083, - -0.4221740663051605, - -0.28238365054130554, - -0.1414414793252945, - -4.42849348303298e-8, - 0.1414414793252945, - 0.28238365054130554, - 0.4221740663051605, - 0.5598679780960083, - 0.6941469311714172, - 0.8233731985092163, - 0.9458280205726624, - -0.9606020450592041, - -0.8345812559127808, - -0.7020721435546875, - -0.565110445022583, - -0.4254190921783447, - -0.28421616554260254, - -0.14225982129573822, - -4.4530935383590986e-8, - 0.14225982129573822, - 0.28421616554260254, - 0.4254190921783447, - 0.565110445022583, - 0.7020721435546875, - 0.8345812559127808, - 0.9606020450592041, - -0.9718056917190552, - -0.8424866199493408, - -0.7072076201438904, - -0.5682107210159302, - -0.4271720349788666, - -0.2851303815841675, - -0.14264589548110962, - -4.464465774844939e-8, - 0.14264589548110962, - 0.2851303815841675, - 0.4271720349788666, - 0.5682107210159302, - 0.7072076201438904, - 0.8424866199493408, - 0.9718056917190552, - -0.9797690510749817, - -0.8476657271385193, - -0.7102634906768799, - -0.5698671340942383, - -0.42800745368003845, - -0.28552091121673584, - -0.14279763400554657, - -4.468796177548029e-8, - 0.14279763400554657, - 0.28552091121673584, - 0.42800745368003845, - 0.5698671340942383, - 0.7102634906768799, - 0.8476657271385193, - 0.9797690510749817, - -0.985072910785675, - -0.8508381843566895, - -0.7119534611701965, - -0.5706766247749329, - -0.4283596873283386, - -0.285660982131958, - -0.14284496009349823, - -4.4700712464873504e-8, - 0.14284496009349823, - 0.285660982131958, - 0.4283596873283386, - 0.5706766247749329, - 0.7119534611701965, - 0.8508381843566895, - 0.985072910785675, - -0.988342821598053, - -0.8526486158370972, - -0.7128260135650635, - -0.5710418224334717, - -0.428491473197937, - -0.28570184111595154, - -0.14285558462142944, - -4.470323844429913e-8, - 0.14285558462142944, - 0.28570184111595154, - 0.428491473197937, - 0.5710418224334717, - 0.7128260135650635, - 0.8526486158370972, - 0.988342821598053, - -0.9900906085968018, - -0.853559136390686, - -0.7132296562194824, - -0.5711906552314758, - -0.42853498458862305, - -0.28571122884750366, - -0.14285700023174286, - -4.470348002882929e-8, - 0.14285700023174286, - 0.28571122884750366, - 0.42853498458862305, - 0.5711906552314758, - 0.7132296562194824, - 0.853559136390686, - 0.9900906085968018, - -0.9906372427940369, - -0.8538344502449036, - -0.7133458256721497, - -0.5712301135063171, - -0.4285448491573334, - -0.28571268916130066, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.28571268916130066, - 0.4285448491573334, - 0.5712301135063171, - 0.7133458256721497, - 0.8538344502449036, - 0.9906372427940369, - -0.9900906085968018, - -0.853559136390686, - -0.7132296562194824, - -0.5711906552314758, - -0.42853498458862305, - -0.28571122884750366, - -0.14285700023174286, - -4.470348002882929e-8, - 0.14285700023174286, - 0.28571122884750366, - 0.42853498458862305, - 0.5711906552314758, - 0.7132296562194824, - 0.853559136390686, - 0.9900906085968018, - -0.988342821598053, - -0.8526486158370972, - -0.7128260135650635, - -0.5710418224334717, - -0.428491473197937, - -0.28570184111595154, - -0.14285558462142944, - -4.470323844429913e-8, - 0.14285558462142944, - 0.28570184111595154, - 0.428491473197937, - 0.5710418224334717, - 0.7128260135650635, - 0.8526486158370972, - 0.988342821598053, - -0.985072910785675, - -0.8508381843566895, - -0.7119534611701965, - -0.5706766247749329, - -0.4283596873283386, - -0.285660982131958, - -0.14284496009349823, - -4.4700712464873504e-8, - 0.14284496009349823, - 0.285660982131958, - 0.4283596873283386, - 0.5706766247749329, - 0.7119534611701965, - 0.8508381843566895, - 0.985072910785675, - -0.9797690510749817, - -0.8476657271385193, - -0.7102634906768799, - -0.5698671340942383, - -0.42800745368003845, - -0.28552091121673584, - -0.14279763400554657, - -4.468796177548029e-8, - 0.14279763400554657, - 0.28552091121673584, - 0.42800745368003845, - 0.5698671340942383, - 0.7102634906768799, - 0.8476657271385193, - 0.9797690510749817, - -0.9718056917190552, - -0.8424866199493408, - -0.7072076201438904, - -0.5682107210159302, - -0.4271720349788666, - -0.2851303815841675, - -0.14264589548110962, - -4.464465774844939e-8, - 0.14264589548110962, - 0.2851303815841675, - 0.4271720349788666, - 0.5682107210159302, - 0.7072076201438904, - 0.8424866199493408, - 0.9718056917190552, - -0.9606020450592041, - -0.8345812559127808, - -0.7020721435546875, - -0.565110445022583, - -0.4254190921783447, - -0.28421616554260254, - -0.14225982129573822, - -4.4530935383590986e-8, - 0.14225982129573822, - 0.28421616554260254, - 0.4254190921783447, - 0.565110445022583, - 0.7020721435546875, - 0.8345812559127808, - 0.9606020450592041, - -0.9458280205726624, - -0.8233731985092163, - -0.6941469311714172, - -0.5598679780960083, - -0.4221740663051605, - -0.28238365054130554, - -0.1414414793252945, - -4.42849348303298e-8, - 0.1414414793252945, - 0.28238365054130554, - 0.4221740663051605, - 0.5598679780960083, - 0.6941469311714172, - 0.8233731985092163, - 0.9458280205726624 - ], - "yaxis": "y2" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9376804232597351, - -0.9540870785713196, - -0.9667706489562988, - -0.97594153881073, - -0.9821334481239319, - -0.9859883189201355, - -0.988061249256134, - -0.9887115359306335, - -0.988061249256134, - -0.9859883189201355, - -0.9821334481239319, - -0.97594153881073, - -0.9667706489562988, - -0.9540870785713196, - -0.9376804232597351, - -0.8177888989448547, - -0.8304981589317322, - -0.8396478891372681, - -0.8457425236701965, - -0.8495204448699951, - -0.8516927361488342, - -0.8527902960777283, - -0.853122889995575, - -0.8527902960777283, - -0.8516927361488342, - -0.8495204448699951, - -0.8457425236701965, - -0.8396478891372681, - -0.8304981589317322, - -0.8177888989448547, - -0.6905505061149597, - -0.6997065544128418, - -0.7057580351829529, - -0.7094107866287231, - -0.7114493250846863, - -0.7125072479248047, - -0.7129978537559509, - -0.7131392359733582, - -0.7129978537559509, - -0.7125072479248047, - -0.7114493250846863, - -0.7094107866287231, - -0.7057580351829529, - -0.6997065544128418, - -0.6905505061149597, - -0.5576808452606201, - -0.5638282895088196, - -0.5675286054611206, - -0.5695281624794006, - -0.5705113410949707, - -0.5709564089775085, - -0.5711379647254944, - -0.5711861252784729, - -0.5711379647254944, - -0.5709564089775085, - -0.5705113410949707, - -0.5695281624794006, - -0.5675286054611206, - -0.5638282895088196, - -0.5576808452606201, - -0.42091432213783264, - -0.42476019263267517, - -0.42686954140663147, - -0.427883505821228, - -0.42831283807754517, - -0.42847374081611633, - -0.428526908159256, - -0.428538978099823, - -0.428526908159256, - -0.42847374081611633, - -0.42831283807754517, - -0.427883505821228, - -0.42686954140663147, - -0.42476019263267517, - -0.42091432213783264, - -0.2817109227180481, - -0.2838975787162781, - -0.28500285744667053, - -0.2854782044887543, - -0.2856491506099701, - -0.2856990694999695, - -0.28571054339408875, - -0.2857123613357544, - -0.28571054339408875, - -0.2856990694999695, - -0.2856491506099701, - -0.2854782044887543, - -0.28500285744667053, - -0.2838975787162781, - -0.2817109227180481, - -0.141151562333107, - -0.14213167130947113, - -0.14259953796863556, - -0.1427844613790512, - -0.14284227788448334, - -0.14285524189472198, - -0.14285698533058167, - -0.14285708963871002, - -0.14285698533058167, - -0.14285524189472198, - -0.14284227788448334, - -0.1427844613790512, - -0.14259953796863556, - -0.14213167130947113, - -0.141151562333107, - -4.419884902517879e-8, - -4.4493823736502236e-8, - -4.4631729423372235e-8, - -4.468451919592553e-8, - -4.470010139812075e-8, - -4.470318515359395e-8, - -4.470348002882929e-8, - -4.470348358154297e-8, - -4.470348002882929e-8, - -4.470318515359395e-8, - -4.470010139812075e-8, - -4.468451919592553e-8, - -4.4631729423372235e-8, - -4.4493823736502236e-8, - -4.419884902517879e-8, - 0.141151562333107, - 0.14213167130947113, - 0.14259953796863556, - 0.1427844613790512, - 0.14284227788448334, - 0.14285524189472198, - 0.14285698533058167, - 0.14285708963871002, - 0.14285698533058167, - 0.14285524189472198, - 0.14284227788448334, - 0.1427844613790512, - 0.14259953796863556, - 0.14213167130947113, - 0.141151562333107, - 0.2817109227180481, - 0.2838975787162781, - 0.28500285744667053, - 0.2854782044887543, - 0.2856491506099701, - 0.2856990694999695, - 0.28571054339408875, - 0.2857123613357544, - 0.28571054339408875, - 0.2856990694999695, - 0.2856491506099701, - 0.2854782044887543, - 0.28500285744667053, - 0.2838975787162781, - 0.2817109227180481, - 0.42091432213783264, - 0.42476019263267517, - 0.42686954140663147, - 0.427883505821228, - 0.42831283807754517, - 0.42847374081611633, - 0.428526908159256, - 0.428538978099823, - 0.428526908159256, - 0.42847374081611633, - 0.42831283807754517, - 0.427883505821228, - 0.42686954140663147, - 0.42476019263267517, - 0.42091432213783264, - 0.5576808452606201, - 0.5638282895088196, - 0.5675286054611206, - 0.5695281624794006, - 0.5705113410949707, - 0.5709564089775085, - 0.5711379647254944, - 0.5711861252784729, - 0.5711379647254944, - 0.5709564089775085, - 0.5705113410949707, - 0.5695281624794006, - 0.5675286054611206, - 0.5638282895088196, - 0.5576808452606201, - 0.6905505061149597, - 0.6997065544128418, - 0.7057580351829529, - 0.7094107866287231, - 0.7114493250846863, - 0.7125072479248047, - 0.7129978537559509, - 0.7131392359733582, - 0.7129978537559509, - 0.7125072479248047, - 0.7114493250846863, - 0.7094107866287231, - 0.7057580351829529, - 0.6997065544128418, - 0.6905505061149597, - 0.8177888989448547, - 0.8304981589317322, - 0.8396478891372681, - 0.8457425236701965, - 0.8495204448699951, - 0.8516927361488342, - 0.8527902960777283, - 0.853122889995575, - 0.8527902960777283, - 0.8516927361488342, - 0.8495204448699951, - 0.8457425236701965, - 0.8396478891372681, - 0.8304981589317322, - 0.8177888989448547, - 0.9376804232597351, - 0.9540870785713196, - 0.9667706489562988, - 0.97594153881073, - 0.9821334481239319, - 0.9859883189201355, - 0.988061249256134, - 0.9887115359306335, - 0.988061249256134, - 0.9859883189201355, - 0.9821334481239319, - 0.97594153881073, - 0.9667706489562988, - 0.9540870785713196, - 0.9376804232597351 - ], - "xaxis": "x2", - "y": [ - -0.9376804232597351, - -0.8177888989448547, - -0.6905505061149597, - -0.5576808452606201, - -0.42091432213783264, - -0.2817109227180481, - -0.141151562333107, - -4.419884902517879e-8, - 0.141151562333107, - 0.2817109227180481, - 0.42091432213783264, - 0.5576808452606201, - 0.6905505061149597, - 0.8177888989448547, - 0.9376804232597351, - -0.9540870785713196, - -0.8304981589317322, - -0.6997065544128418, - -0.5638282895088196, - -0.42476019263267517, - -0.2838975787162781, - -0.14213167130947113, - -4.4493823736502236e-8, - 0.14213167130947113, - 0.2838975787162781, - 0.42476019263267517, - 0.5638282895088196, - 0.6997065544128418, - 0.8304981589317322, - 0.9540870785713196, - -0.9667706489562988, - -0.8396478891372681, - -0.7057580351829529, - -0.5675286054611206, - -0.42686954140663147, - -0.28500285744667053, - -0.14259953796863556, - -4.4631729423372235e-8, - 0.14259953796863556, - 0.28500285744667053, - 0.42686954140663147, - 0.5675286054611206, - 0.7057580351829529, - 0.8396478891372681, - 0.9667706489562988, - -0.97594153881073, - -0.8457425236701965, - -0.7094107866287231, - -0.5695281624794006, - -0.427883505821228, - -0.2854782044887543, - -0.1427844613790512, - -4.468451919592553e-8, - 0.1427844613790512, - 0.2854782044887543, - 0.427883505821228, - 0.5695281624794006, - 0.7094107866287231, - 0.8457425236701965, - 0.97594153881073, - -0.9821334481239319, - -0.8495204448699951, - -0.7114493250846863, - -0.5705113410949707, - -0.42831283807754517, - -0.2856491506099701, - -0.14284227788448334, - -4.470010139812075e-8, - 0.14284227788448334, - 0.2856491506099701, - 0.42831283807754517, - 0.5705113410949707, - 0.7114493250846863, - 0.8495204448699951, - 0.9821334481239319, - -0.9859883189201355, - -0.8516927361488342, - -0.7125072479248047, - -0.5709564089775085, - -0.42847374081611633, - -0.2856990694999695, - -0.14285524189472198, - -4.470318515359395e-8, - 0.14285524189472198, - 0.2856990694999695, - 0.42847374081611633, - 0.5709564089775085, - 0.7125072479248047, - 0.8516927361488342, - 0.9859883189201355, - -0.988061249256134, - -0.8527902960777283, - -0.7129978537559509, - -0.5711379647254944, - -0.428526908159256, - -0.28571054339408875, - -0.14285698533058167, - -4.470348002882929e-8, - 0.14285698533058167, - 0.28571054339408875, - 0.428526908159256, - 0.5711379647254944, - 0.7129978537559509, - 0.8527902960777283, - 0.988061249256134, - -0.9887115359306335, - -0.853122889995575, - -0.7131392359733582, - -0.5711861252784729, - -0.428538978099823, - -0.2857123613357544, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.2857123613357544, - 0.428538978099823, - 0.5711861252784729, - 0.7131392359733582, - 0.853122889995575, - 0.9887115359306335, - -0.988061249256134, - -0.8527902960777283, - -0.7129978537559509, - -0.5711379647254944, - -0.428526908159256, - -0.28571054339408875, - -0.14285698533058167, - -4.470348002882929e-8, - 0.14285698533058167, - 0.28571054339408875, - 0.428526908159256, - 0.5711379647254944, - 0.7129978537559509, - 0.8527902960777283, - 0.988061249256134, - -0.9859883189201355, - -0.8516927361488342, - -0.7125072479248047, - -0.5709564089775085, - -0.42847374081611633, - -0.2856990694999695, - -0.14285524189472198, - -4.470318515359395e-8, - 0.14285524189472198, - 0.2856990694999695, - 0.42847374081611633, - 0.5709564089775085, - 0.7125072479248047, - 0.8516927361488342, - 0.9859883189201355, - -0.9821334481239319, - -0.8495204448699951, - -0.7114493250846863, - -0.5705113410949707, - -0.42831283807754517, - -0.2856491506099701, - -0.14284227788448334, - -4.470010139812075e-8, - 0.14284227788448334, - 0.2856491506099701, - 0.42831283807754517, - 0.5705113410949707, - 0.7114493250846863, - 0.8495204448699951, - 0.9821334481239319, - -0.97594153881073, - -0.8457425236701965, - -0.7094107866287231, - -0.5695281624794006, - -0.427883505821228, - -0.2854782044887543, - -0.1427844613790512, - -4.468451919592553e-8, - 0.1427844613790512, - 0.2854782044887543, - 0.427883505821228, - 0.5695281624794006, - 0.7094107866287231, - 0.8457425236701965, - 0.97594153881073, - -0.9667706489562988, - -0.8396478891372681, - -0.7057580351829529, - -0.5675286054611206, - -0.42686954140663147, - -0.28500285744667053, - -0.14259953796863556, - -4.4631729423372235e-8, - 0.14259953796863556, - 0.28500285744667053, - 0.42686954140663147, - 0.5675286054611206, - 0.7057580351829529, - 0.8396478891372681, - 0.9667706489562988, - -0.9540870785713196, - -0.8304981589317322, - -0.6997065544128418, - -0.5638282895088196, - -0.42476019263267517, - -0.2838975787162781, - -0.14213167130947113, - -4.4493823736502236e-8, - 0.14213167130947113, - 0.2838975787162781, - 0.42476019263267517, - 0.5638282895088196, - 0.6997065544128418, - 0.8304981589317322, - 0.9540870785713196, - -0.9376804232597351, - -0.8177888989448547, - -0.6905505061149597, - -0.5576808452606201, - -0.42091432213783264, - -0.2817109227180481, - -0.141151562333107, - -4.419884902517879e-8, - 0.141151562333107, - 0.2817109227180481, - 0.42091432213783264, - 0.5576808452606201, - 0.6905505061149597, - 0.8177888989448547, - 0.9376804232597351 - ], - "yaxis": "y2" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9303085207939148, - -0.9480844140052795, - -0.9620513916015625, - -0.9723013639450073, - -0.9793068170547485, - -0.9837070107460022, - -0.9860867261886597, - -0.986835241317749, - -0.9860867261886597, - -0.9837070107460022, - -0.9793068170547485, - -0.9723013639450073, - -0.9620513916015625, - -0.9480844140052795, - -0.9303085207939148, - -0.8126437664031982, - -0.8266586065292358, - -0.8369308710098267, - -0.8438764214515686, - -0.8482298254966736, - -0.850751519203186, - -0.8520309329032898, - -0.8524192571640015, - -0.8520309329032898, - -0.850751519203186, - -0.8482298254966736, - -0.8438764214515686, - -0.8369308710098267, - -0.8266586065292358, - -0.8126437664031982, - -0.6871795654296875, - -0.6974424123764038, - -0.7043476700782776, - -0.7085720300674438, - -0.7109499573707581, - -0.7121903896331787, - -0.7127671837806702, - -0.7129334807395935, - -0.7127671837806702, - -0.7121903896331787, - -0.7109499573707581, - -0.7085720300674438, - -0.7043476700782776, - -0.6974424123764038, - -0.6871795654296875, - -0.5556007623672485, - -0.5625842213630676, - -0.5668575763702393, - -0.5691918730735779, - -0.5703467130661011, - -0.570871114730835, - -0.5710852742195129, - -0.5711421966552734, - -0.5710852742195129, - -0.570871114730835, - -0.5703467130661011, - -0.5691918730735779, - -0.5668575763702393, - -0.5625842213630676, - -0.5556007623672485, - -0.4197028875350952, - -0.4241148829460144, - -0.42656996846199036, - -0.4277600646018982, - -0.4282660484313965, - -0.42845600843429565, - -0.4285188317298889, - -0.42853307723999023, - -0.4285188317298889, - -0.42845600843429565, - -0.4282660484313965, - -0.4277600646018982, - -0.42656996846199036, - -0.4241148829460144, - -0.4197028875350952, - -0.2810591459274292, - -0.2835838198661804, - -0.28487613797187805, - -0.2854355573654175, - -0.28563734889030457, - -0.2856963276863098, - -0.2857098877429962, - -0.28571203351020813, - -0.2857098877429962, - -0.2856963276863098, - -0.28563734889030457, - -0.2854355573654175, - -0.28487613797187805, - -0.2835838198661804, - -0.2810591459274292, - -0.14086949825286865, - -0.14200511574745178, - -0.1425533890724182, - -0.14277128875255585, - -0.14283958077430725, - -0.14285491406917572, - -0.14285697042942047, - -0.14285708963871002, - -0.14285697042942047, - -0.14285491406917572, - -0.14283958077430725, - -0.14277128875255585, - -0.1425533890724182, - -0.14200511574745178, - -0.14086949825286865, - -4.411497300793599e-8, - -4.4457127756913906e-8, - -4.461885438900026e-8, - -4.468108016908445e-8, - -4.469948677865432e-8, - -4.470313186288877e-8, - -4.470348002882929e-8, - -4.470348358154297e-8, - -4.470348002882929e-8, - -4.470313186288877e-8, - -4.469948677865432e-8, - -4.468108016908445e-8, - -4.461885438900026e-8, - -4.4457127756913906e-8, - -4.411497300793599e-8, - 0.14086949825286865, - 0.14200511574745178, - 0.1425533890724182, - 0.14277128875255585, - 0.14283958077430725, - 0.14285491406917572, - 0.14285697042942047, - 0.14285708963871002, - 0.14285697042942047, - 0.14285491406917572, - 0.14283958077430725, - 0.14277128875255585, - 0.1425533890724182, - 0.14200511574745178, - 0.14086949825286865, - 0.2810591459274292, - 0.2835838198661804, - 0.28487613797187805, - 0.2854355573654175, - 0.28563734889030457, - 0.2856963276863098, - 0.2857098877429962, - 0.28571203351020813, - 0.2857098877429962, - 0.2856963276863098, - 0.28563734889030457, - 0.2854355573654175, - 0.28487613797187805, - 0.2835838198661804, - 0.2810591459274292, - 0.4197028875350952, - 0.4241148829460144, - 0.42656996846199036, - 0.4277600646018982, - 0.4282660484313965, - 0.42845600843429565, - 0.4285188317298889, - 0.42853307723999023, - 0.4285188317298889, - 0.42845600843429565, - 0.4282660484313965, - 0.4277600646018982, - 0.42656996846199036, - 0.4241148829460144, - 0.4197028875350952, - 0.5556007623672485, - 0.5625842213630676, - 0.5668575763702393, - 0.5691918730735779, - 0.5703467130661011, - 0.570871114730835, - 0.5710852742195129, - 0.5711421966552734, - 0.5710852742195129, - 0.570871114730835, - 0.5703467130661011, - 0.5691918730735779, - 0.5668575763702393, - 0.5625842213630676, - 0.5556007623672485, - 0.6871795654296875, - 0.6974424123764038, - 0.7043476700782776, - 0.7085720300674438, - 0.7109499573707581, - 0.7121903896331787, - 0.7127671837806702, - 0.7129334807395935, - 0.7127671837806702, - 0.7121903896331787, - 0.7109499573707581, - 0.7085720300674438, - 0.7043476700782776, - 0.6974424123764038, - 0.6871795654296875, - 0.8126437664031982, - 0.8266586065292358, - 0.8369308710098267, - 0.8438764214515686, - 0.8482298254966736, - 0.850751519203186, - 0.8520309329032898, - 0.8524192571640015, - 0.8520309329032898, - 0.850751519203186, - 0.8482298254966736, - 0.8438764214515686, - 0.8369308710098267, - 0.8266586065292358, - 0.8126437664031982, - 0.9303085207939148, - 0.9480844140052795, - 0.9620513916015625, - 0.9723013639450073, - 0.9793068170547485, - 0.9837070107460022, - 0.9860867261886597, - 0.986835241317749, - 0.9860867261886597, - 0.9837070107460022, - 0.9793068170547485, - 0.9723013639450073, - 0.9620513916015625, - 0.9480844140052795, - 0.9303085207939148 - ], - "xaxis": "x2", - "y": [ - -0.9303085207939148, - -0.8126437664031982, - -0.6871795654296875, - -0.5556007623672485, - -0.4197028875350952, - -0.2810591459274292, - -0.14086949825286865, - -4.411497300793599e-8, - 0.14086949825286865, - 0.2810591459274292, - 0.4197028875350952, - 0.5556007623672485, - 0.6871795654296875, - 0.8126437664031982, - 0.9303085207939148, - -0.9480844140052795, - -0.8266586065292358, - -0.6974424123764038, - -0.5625842213630676, - -0.4241148829460144, - -0.2835838198661804, - -0.14200511574745178, - -4.4457127756913906e-8, - 0.14200511574745178, - 0.2835838198661804, - 0.4241148829460144, - 0.5625842213630676, - 0.6974424123764038, - 0.8266586065292358, - 0.9480844140052795, - -0.9620513916015625, - -0.8369308710098267, - -0.7043476700782776, - -0.5668575763702393, - -0.42656996846199036, - -0.28487613797187805, - -0.1425533890724182, - -4.461885438900026e-8, - 0.1425533890724182, - 0.28487613797187805, - 0.42656996846199036, - 0.5668575763702393, - 0.7043476700782776, - 0.8369308710098267, - 0.9620513916015625, - -0.9723013639450073, - -0.8438764214515686, - -0.7085720300674438, - -0.5691918730735779, - -0.4277600646018982, - -0.2854355573654175, - -0.14277128875255585, - -4.468108016908445e-8, - 0.14277128875255585, - 0.2854355573654175, - 0.4277600646018982, - 0.5691918730735779, - 0.7085720300674438, - 0.8438764214515686, - 0.9723013639450073, - -0.9793068170547485, - -0.8482298254966736, - -0.7109499573707581, - -0.5703467130661011, - -0.4282660484313965, - -0.28563734889030457, - -0.14283958077430725, - -4.469948677865432e-8, - 0.14283958077430725, - 0.28563734889030457, - 0.4282660484313965, - 0.5703467130661011, - 0.7109499573707581, - 0.8482298254966736, - 0.9793068170547485, - -0.9837070107460022, - -0.850751519203186, - -0.7121903896331787, - -0.570871114730835, - -0.42845600843429565, - -0.2856963276863098, - -0.14285491406917572, - -4.470313186288877e-8, - 0.14285491406917572, - 0.2856963276863098, - 0.42845600843429565, - 0.570871114730835, - 0.7121903896331787, - 0.850751519203186, - 0.9837070107460022, - -0.9860867261886597, - -0.8520309329032898, - -0.7127671837806702, - -0.5710852742195129, - -0.4285188317298889, - -0.2857098877429962, - -0.14285697042942047, - -4.470348002882929e-8, - 0.14285697042942047, - 0.2857098877429962, - 0.4285188317298889, - 0.5710852742195129, - 0.7127671837806702, - 0.8520309329032898, - 0.9860867261886597, - -0.986835241317749, - -0.8524192571640015, - -0.7129334807395935, - -0.5711421966552734, - -0.42853307723999023, - -0.28571203351020813, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.28571203351020813, - 0.42853307723999023, - 0.5711421966552734, - 0.7129334807395935, - 0.8524192571640015, - 0.986835241317749, - -0.9860867261886597, - -0.8520309329032898, - -0.7127671837806702, - -0.5710852742195129, - -0.4285188317298889, - -0.2857098877429962, - -0.14285697042942047, - -4.470348002882929e-8, - 0.14285697042942047, - 0.2857098877429962, - 0.4285188317298889, - 0.5710852742195129, - 0.7127671837806702, - 0.8520309329032898, - 0.9860867261886597, - -0.9837070107460022, - -0.850751519203186, - -0.7121903896331787, - -0.570871114730835, - -0.42845600843429565, - -0.2856963276863098, - -0.14285491406917572, - -4.470313186288877e-8, - 0.14285491406917572, - 0.2856963276863098, - 0.42845600843429565, - 0.570871114730835, - 0.7121903896331787, - 0.850751519203186, - 0.9837070107460022, - -0.9793068170547485, - -0.8482298254966736, - -0.7109499573707581, - -0.5703467130661011, - -0.4282660484313965, - -0.28563734889030457, - -0.14283958077430725, - -4.469948677865432e-8, - 0.14283958077430725, - 0.28563734889030457, - 0.4282660484313965, - 0.5703467130661011, - 0.7109499573707581, - 0.8482298254966736, - 0.9793068170547485, - -0.9723013639450073, - -0.8438764214515686, - -0.7085720300674438, - -0.5691918730735779, - -0.4277600646018982, - -0.2854355573654175, - -0.14277128875255585, - -4.468108016908445e-8, - 0.14277128875255585, - 0.2854355573654175, - 0.4277600646018982, - 0.5691918730735779, - 0.7085720300674438, - 0.8438764214515686, - 0.9723013639450073, - -0.9620513916015625, - -0.8369308710098267, - -0.7043476700782776, - -0.5668575763702393, - -0.42656996846199036, - -0.28487613797187805, - -0.1425533890724182, - -4.461885438900026e-8, - 0.1425533890724182, - 0.28487613797187805, - 0.42656996846199036, - 0.5668575763702393, - 0.7043476700782776, - 0.8369308710098267, - 0.9620513916015625, - -0.9480844140052795, - -0.8266586065292358, - -0.6974424123764038, - -0.5625842213630676, - -0.4241148829460144, - -0.2835838198661804, - -0.14200511574745178, - -4.4457127756913906e-8, - 0.14200511574745178, - 0.2835838198661804, - 0.4241148829460144, - 0.5625842213630676, - 0.6974424123764038, - 0.8266586065292358, - 0.9480844140052795, - -0.9303085207939148, - -0.8126437664031982, - -0.6871795654296875, - -0.5556007623672485, - -0.4197028875350952, - -0.2810591459274292, - -0.14086949825286865, - -4.411497300793599e-8, - 0.14086949825286865, - 0.2810591459274292, - 0.4197028875350952, - 0.5556007623672485, - 0.6871795654296875, - 0.8126437664031982, - 0.9303085207939148 - ], - "yaxis": "y2" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9235740900039673, - -0.9425168037414551, - -0.9576089978218079, - -0.9688301086425781, - -0.9765840768814087, - -0.9814944267272949, - -0.9841641187667847, - -0.9850059151649475, - -0.9841641187667847, - -0.9814944267272949, - -0.9765840768814087, - -0.9688301086425781, - -0.9576089978218079, - -0.9425168037414551, - -0.9235740900039673, - -0.8078715801239014, - -0.8230342268943787, - -0.8343248963356018, - -0.8420640230178833, - -0.846965491771698, - -0.8498243689537048, - -0.8512807488441467, - -0.8517236113548279, - -0.8512807488441467, - -0.8498243689537048, - -0.846965491771698, - -0.8420640230178833, - -0.8343248963356018, - -0.8230342268943787, - -0.8078715801239014, - -0.6840064525604248, - -0.6952707767486572, - -0.7029743194580078, - -0.7077465653419495, - -0.7104554772377014, - -0.7118755578994751, - -0.7125374674797058, - -0.7127286195755005, - -0.7125374674797058, - -0.7118755578994751, - -0.7104554772377014, - -0.7077465653419495, - -0.7029743194580078, - -0.6952707767486572, - -0.6840064525604248, - -0.5536171793937683, - -0.5613759756088257, - -0.5661972165107727, - -0.5688583254814148, - -0.5701828598976135, - -0.5707859992980957, - -0.5710327625274658, - -0.571098268032074, - -0.5710327625274658, - -0.5707859992980957, - -0.5701828598976135, - -0.5688583254814148, - -0.5661972165107727, - -0.5613759756088257, - -0.5536171793937683, - -0.4185360074043274, - -0.4234827160835266, - -0.42627325654029846, - -0.42763713002204895, - -0.42821937799453735, - -0.42843830585479736, - -0.42851075530052185, - -0.42852717638015747, - -0.42851075530052185, - -0.42843830585479736, - -0.42821937799453735, - -0.42763713002204895, - -0.42627325654029846, - -0.4234827160835266, - -0.4185360074043274, - -0.280426949262619, - -0.28327476978302, - -0.28475019335746765, - -0.28539299964904785, - -0.28562554717063904, - -0.28569355607032776, - -0.2857092022895813, - -0.2857116758823395, - -0.2857092022895813, - -0.28569355607032776, - -0.28562554717063904, - -0.28539299964904785, - -0.28475019335746765, - -0.28327476978302, - -0.280426949262619, - -0.14059482514858246, - -0.1418800801038742, - -0.14250744879245758, - -0.14275816082954407, - -0.14283689856529236, - -0.14285457134246826, - -0.14285694062709808, - -0.14285708963871002, - -0.14285694062709808, - -0.14285457134246826, - -0.14283689856529236, - -0.14275816082954407, - -0.14250744879245758, - -0.1418800801038742, - -0.14059482514858246, - -4.403319664447736e-8, - -4.4420847444825995e-8, - -4.460602909261979e-8, - -4.467764824767073e-8, - -4.469886860647421e-8, - -4.4703078572183585e-8, - -4.470348002882929e-8, - -4.470348358154297e-8, - -4.470348002882929e-8, - -4.4703078572183585e-8, - -4.469886860647421e-8, - -4.467764824767073e-8, - -4.460602909261979e-8, - -4.4420847444825995e-8, - -4.403319664447736e-8, - 0.14059482514858246, - 0.1418800801038742, - 0.14250744879245758, - 0.14275816082954407, - 0.14283689856529236, - 0.14285457134246826, - 0.14285694062709808, - 0.14285708963871002, - 0.14285694062709808, - 0.14285457134246826, - 0.14283689856529236, - 0.14275816082954407, - 0.14250744879245758, - 0.1418800801038742, - 0.14059482514858246, - 0.280426949262619, - 0.28327476978302, - 0.28475019335746765, - 0.28539299964904785, - 0.28562554717063904, - 0.28569355607032776, - 0.2857092022895813, - 0.2857116758823395, - 0.2857092022895813, - 0.28569355607032776, - 0.28562554717063904, - 0.28539299964904785, - 0.28475019335746765, - 0.28327476978302, - 0.280426949262619, - 0.4185360074043274, - 0.4234827160835266, - 0.42627325654029846, - 0.42763713002204895, - 0.42821937799453735, - 0.42843830585479736, - 0.42851075530052185, - 0.42852717638015747, - 0.42851075530052185, - 0.42843830585479736, - 0.42821937799453735, - 0.42763713002204895, - 0.42627325654029846, - 0.4234827160835266, - 0.4185360074043274, - 0.5536171793937683, - 0.5613759756088257, - 0.5661972165107727, - 0.5688583254814148, - 0.5701828598976135, - 0.5707859992980957, - 0.5710327625274658, - 0.571098268032074, - 0.5710327625274658, - 0.5707859992980957, - 0.5701828598976135, - 0.5688583254814148, - 0.5661972165107727, - 0.5613759756088257, - 0.5536171793937683, - 0.6840064525604248, - 0.6952707767486572, - 0.7029743194580078, - 0.7077465653419495, - 0.7104554772377014, - 0.7118755578994751, - 0.7125374674797058, - 0.7127286195755005, - 0.7125374674797058, - 0.7118755578994751, - 0.7104554772377014, - 0.7077465653419495, - 0.7029743194580078, - 0.6952707767486572, - 0.6840064525604248, - 0.8078715801239014, - 0.8230342268943787, - 0.8343248963356018, - 0.8420640230178833, - 0.846965491771698, - 0.8498243689537048, - 0.8512807488441467, - 0.8517236113548279, - 0.8512807488441467, - 0.8498243689537048, - 0.846965491771698, - 0.8420640230178833, - 0.8343248963356018, - 0.8230342268943787, - 0.8078715801239014, - 0.9235740900039673, - 0.9425168037414551, - 0.9576089978218079, - 0.9688301086425781, - 0.9765840768814087, - 0.9814944267272949, - 0.9841641187667847, - 0.9850059151649475, - 0.9841641187667847, - 0.9814944267272949, - 0.9765840768814087, - 0.9688301086425781, - 0.9576089978218079, - 0.9425168037414551, - 0.9235740900039673 - ], - "xaxis": "x2", - "y": [ - -0.9235740900039673, - -0.8078715801239014, - -0.6840064525604248, - -0.5536171793937683, - -0.4185360074043274, - -0.280426949262619, - -0.14059482514858246, - -4.403319664447736e-8, - 0.14059482514858246, - 0.280426949262619, - 0.4185360074043274, - 0.5536171793937683, - 0.6840064525604248, - 0.8078715801239014, - 0.9235740900039673, - -0.9425168037414551, - -0.8230342268943787, - -0.6952707767486572, - -0.5613759756088257, - -0.4234827160835266, - -0.28327476978302, - -0.1418800801038742, - -4.4420847444825995e-8, - 0.1418800801038742, - 0.28327476978302, - 0.4234827160835266, - 0.5613759756088257, - 0.6952707767486572, - 0.8230342268943787, - 0.9425168037414551, - -0.9576089978218079, - -0.8343248963356018, - -0.7029743194580078, - -0.5661972165107727, - -0.42627325654029846, - -0.28475019335746765, - -0.14250744879245758, - -4.460602909261979e-8, - 0.14250744879245758, - 0.28475019335746765, - 0.42627325654029846, - 0.5661972165107727, - 0.7029743194580078, - 0.8343248963356018, - 0.9576089978218079, - -0.9688301086425781, - -0.8420640230178833, - -0.7077465653419495, - -0.5688583254814148, - -0.42763713002204895, - -0.28539299964904785, - -0.14275816082954407, - -4.467764824767073e-8, - 0.14275816082954407, - 0.28539299964904785, - 0.42763713002204895, - 0.5688583254814148, - 0.7077465653419495, - 0.8420640230178833, - 0.9688301086425781, - -0.9765840768814087, - -0.846965491771698, - -0.7104554772377014, - -0.5701828598976135, - -0.42821937799453735, - -0.28562554717063904, - -0.14283689856529236, - -4.469886860647421e-8, - 0.14283689856529236, - 0.28562554717063904, - 0.42821937799453735, - 0.5701828598976135, - 0.7104554772377014, - 0.846965491771698, - 0.9765840768814087, - -0.9814944267272949, - -0.8498243689537048, - -0.7118755578994751, - -0.5707859992980957, - -0.42843830585479736, - -0.28569355607032776, - -0.14285457134246826, - -4.4703078572183585e-8, - 0.14285457134246826, - 0.28569355607032776, - 0.42843830585479736, - 0.5707859992980957, - 0.7118755578994751, - 0.8498243689537048, - 0.9814944267272949, - -0.9841641187667847, - -0.8512807488441467, - -0.7125374674797058, - -0.5710327625274658, - -0.42851075530052185, - -0.2857092022895813, - -0.14285694062709808, - -4.470348002882929e-8, - 0.14285694062709808, - 0.2857092022895813, - 0.42851075530052185, - 0.5710327625274658, - 0.7125374674797058, - 0.8512807488441467, - 0.9841641187667847, - -0.9850059151649475, - -0.8517236113548279, - -0.7127286195755005, - -0.571098268032074, - -0.42852717638015747, - -0.2857116758823395, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.2857116758823395, - 0.42852717638015747, - 0.571098268032074, - 0.7127286195755005, - 0.8517236113548279, - 0.9850059151649475, - -0.9841641187667847, - -0.8512807488441467, - -0.7125374674797058, - -0.5710327625274658, - -0.42851075530052185, - -0.2857092022895813, - -0.14285694062709808, - -4.470348002882929e-8, - 0.14285694062709808, - 0.2857092022895813, - 0.42851075530052185, - 0.5710327625274658, - 0.7125374674797058, - 0.8512807488441467, - 0.9841641187667847, - -0.9814944267272949, - -0.8498243689537048, - -0.7118755578994751, - -0.5707859992980957, - -0.42843830585479736, - -0.28569355607032776, - -0.14285457134246826, - -4.4703078572183585e-8, - 0.14285457134246826, - 0.28569355607032776, - 0.42843830585479736, - 0.5707859992980957, - 0.7118755578994751, - 0.8498243689537048, - 0.9814944267272949, - -0.9765840768814087, - -0.846965491771698, - -0.7104554772377014, - -0.5701828598976135, - -0.42821937799453735, - -0.28562554717063904, - -0.14283689856529236, - -4.469886860647421e-8, - 0.14283689856529236, - 0.28562554717063904, - 0.42821937799453735, - 0.5701828598976135, - 0.7104554772377014, - 0.846965491771698, - 0.9765840768814087, - -0.9688301086425781, - -0.8420640230178833, - -0.7077465653419495, - -0.5688583254814148, - -0.42763713002204895, - -0.28539299964904785, - -0.14275816082954407, - -4.467764824767073e-8, - 0.14275816082954407, - 0.28539299964904785, - 0.42763713002204895, - 0.5688583254814148, - 0.7077465653419495, - 0.8420640230178833, - 0.9688301086425781, - -0.9576089978218079, - -0.8343248963356018, - -0.7029743194580078, - -0.5661972165107727, - -0.42627325654029846, - -0.28475019335746765, - -0.14250744879245758, - -4.460602909261979e-8, - 0.14250744879245758, - 0.28475019335746765, - 0.42627325654029846, - 0.5661972165107727, - 0.7029743194580078, - 0.8343248963356018, - 0.9576089978218079, - -0.9425168037414551, - -0.8230342268943787, - -0.6952707767486572, - -0.5613759756088257, - -0.4234827160835266, - -0.28327476978302, - -0.1418800801038742, - -4.4420847444825995e-8, - 0.1418800801038742, - 0.28327476978302, - 0.4234827160835266, - 0.5613759756088257, - 0.6952707767486572, - 0.8230342268943787, - 0.9425168037414551, - -0.9235740900039673, - -0.8078715801239014, - -0.6840064525604248, - -0.5536171793937683, - -0.4185360074043274, - -0.280426949262619, - -0.14059482514858246, - -4.403319664447736e-8, - 0.14059482514858246, - 0.280426949262619, - 0.4185360074043274, - 0.5536171793937683, - 0.6840064525604248, - 0.8078715801239014, - 0.9235740900039673 - ], - "yaxis": "y2" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9173734784126282, - -0.937323808670044, - -0.9534116983413696, - -0.9655123949050903, - -0.9739575982093811, - -0.9793462753295898, - -0.9822904467582703, - -0.9832210540771484, - -0.9822904467582703, - -0.9793462753295898, - -0.9739575982093811, - -0.9655123949050903, - -0.9534116983413696, - -0.937323808670044, - -0.9173734784126282, - -0.8034204244613647, - -0.8196011781692505, - -0.8318209648132324, - -0.8403022885322571, - -0.8457260727882385, - -0.8489106893539429, - -0.85053950548172, - -0.8510357141494751, - -0.85053950548172, - -0.8489106893539429, - -0.8457260727882385, - -0.8403022885322571, - -0.8318209648132324, - -0.8196011781692505, - -0.8034204244613647, - -0.6810083389282227, - -0.6931841373443604, - -0.701636016368866, - -0.7069339752197266, - -0.709965705871582, - -0.7115625739097595, - -0.7123088240623474, - -0.7125245332717896, - -0.7123088240623474, - -0.7115625739097595, - -0.709965705871582, - -0.7069339752197266, - -0.701636016368866, - -0.6931841373443604, - -0.6810083389282227, - -0.5517213344573975, - -0.5602014660835266, - -0.5655471682548523, - -0.5685274600982666, - -0.570019543170929, - -0.5707011222839355, - -0.5709802508354187, - -0.5710544586181641, - -0.5709802508354187, - -0.5707011222839355, - -0.570019543170929, - -0.5685274600982666, - -0.5655471682548523, - -0.5602014660835266, - -0.5517213344573975, - -0.41741037368774414, - -0.4228630065917969, - -0.4259794056415558, - -0.4275146722793579, - -0.4281727075576782, - -0.4284205734729767, - -0.4285026490688324, - -0.4285212755203247, - -0.4285026490688324, - -0.4284205734729767, - -0.4281727075576782, - -0.4275146722793579, - -0.4259794056415558, - -0.4228630065917969, - -0.41741037368774414, - -0.2798132002353668, - -0.28297021985054016, - -0.28462502360343933, - -0.2853505611419678, - -0.2856137156486511, - -0.2856908142566681, - -0.28570854663848877, - -0.2857113480567932, - -0.28570854663848877, - -0.2856908142566681, - -0.2856137156486511, - -0.2853505611419678, - -0.28462502360343933, - -0.28297021985054016, - -0.2798132002353668, - -0.14032717049121857, - -0.1417565494775772, - -0.14246173202991486, - -0.1427450329065323, - -0.14283418655395508, - -0.142854243516922, - -0.1428569108247757, - -0.14285708963871002, - -0.1428569108247757, - -0.142854243516922, - -0.14283418655395508, - -0.1427450329065323, - -0.14246173202991486, - -0.1417565494775772, - -0.14032717049121857, - -4.3953406247965177e-8, - -4.438496858938379e-8, - -4.4593257086944504e-8, - -4.467421987897069e-8, - -4.469825753972145e-8, - -4.4703025281478403e-8, - -4.470348002882929e-8, - -4.470348358154297e-8, - -4.470348002882929e-8, - -4.4703025281478403e-8, - -4.469825753972145e-8, - -4.467421987897069e-8, - -4.4593257086944504e-8, - -4.438496858938379e-8, - -4.3953406247965177e-8, - 0.14032717049121857, - 0.1417565494775772, - 0.14246173202991486, - 0.1427450329065323, - 0.14283418655395508, - 0.142854243516922, - 0.1428569108247757, - 0.14285708963871002, - 0.1428569108247757, - 0.142854243516922, - 0.14283418655395508, - 0.1427450329065323, - 0.14246173202991486, - 0.1417565494775772, - 0.14032717049121857, - 0.2798132002353668, - 0.28297021985054016, - 0.28462502360343933, - 0.2853505611419678, - 0.2856137156486511, - 0.2856908142566681, - 0.28570854663848877, - 0.2857113480567932, - 0.28570854663848877, - 0.2856908142566681, - 0.2856137156486511, - 0.2853505611419678, - 0.28462502360343933, - 0.28297021985054016, - 0.2798132002353668, - 0.41741037368774414, - 0.4228630065917969, - 0.4259794056415558, - 0.4275146722793579, - 0.4281727075576782, - 0.4284205734729767, - 0.4285026490688324, - 0.4285212755203247, - 0.4285026490688324, - 0.4284205734729767, - 0.4281727075576782, - 0.4275146722793579, - 0.4259794056415558, - 0.4228630065917969, - 0.41741037368774414, - 0.5517213344573975, - 0.5602014660835266, - 0.5655471682548523, - 0.5685274600982666, - 0.570019543170929, - 0.5707011222839355, - 0.5709802508354187, - 0.5710544586181641, - 0.5709802508354187, - 0.5707011222839355, - 0.570019543170929, - 0.5685274600982666, - 0.5655471682548523, - 0.5602014660835266, - 0.5517213344573975, - 0.6810083389282227, - 0.6931841373443604, - 0.701636016368866, - 0.7069339752197266, - 0.709965705871582, - 0.7115625739097595, - 0.7123088240623474, - 0.7125245332717896, - 0.7123088240623474, - 0.7115625739097595, - 0.709965705871582, - 0.7069339752197266, - 0.701636016368866, - 0.6931841373443604, - 0.6810083389282227, - 0.8034204244613647, - 0.8196011781692505, - 0.8318209648132324, - 0.8403022885322571, - 0.8457260727882385, - 0.8489106893539429, - 0.85053950548172, - 0.8510357141494751, - 0.85053950548172, - 0.8489106893539429, - 0.8457260727882385, - 0.8403022885322571, - 0.8318209648132324, - 0.8196011781692505, - 0.8034204244613647, - 0.9173734784126282, - 0.937323808670044, - 0.9534116983413696, - 0.9655123949050903, - 0.9739575982093811, - 0.9793462753295898, - 0.9822904467582703, - 0.9832210540771484, - 0.9822904467582703, - 0.9793462753295898, - 0.9739575982093811, - 0.9655123949050903, - 0.9534116983413696, - 0.937323808670044, - 0.9173734784126282 - ], - "xaxis": "x2", - "y": [ - -0.9173734784126282, - -0.8034204244613647, - -0.6810083389282227, - -0.5517213344573975, - -0.41741037368774414, - -0.2798132002353668, - -0.14032717049121857, - -4.3953406247965177e-8, - 0.14032717049121857, - 0.2798132002353668, - 0.41741037368774414, - 0.5517213344573975, - 0.6810083389282227, - 0.8034204244613647, - 0.9173734784126282, - -0.937323808670044, - -0.8196011781692505, - -0.6931841373443604, - -0.5602014660835266, - -0.4228630065917969, - -0.28297021985054016, - -0.1417565494775772, - -4.438496858938379e-8, - 0.1417565494775772, - 0.28297021985054016, - 0.4228630065917969, - 0.5602014660835266, - 0.6931841373443604, - 0.8196011781692505, - 0.937323808670044, - -0.9534116983413696, - -0.8318209648132324, - -0.701636016368866, - -0.5655471682548523, - -0.4259794056415558, - -0.28462502360343933, - -0.14246173202991486, - -4.4593257086944504e-8, - 0.14246173202991486, - 0.28462502360343933, - 0.4259794056415558, - 0.5655471682548523, - 0.701636016368866, - 0.8318209648132324, - 0.9534116983413696, - -0.9655123949050903, - -0.8403022885322571, - -0.7069339752197266, - -0.5685274600982666, - -0.4275146722793579, - -0.2853505611419678, - -0.1427450329065323, - -4.467421987897069e-8, - 0.1427450329065323, - 0.2853505611419678, - 0.4275146722793579, - 0.5685274600982666, - 0.7069339752197266, - 0.8403022885322571, - 0.9655123949050903, - -0.9739575982093811, - -0.8457260727882385, - -0.709965705871582, - -0.570019543170929, - -0.4281727075576782, - -0.2856137156486511, - -0.14283418655395508, - -4.469825753972145e-8, - 0.14283418655395508, - 0.2856137156486511, - 0.4281727075576782, - 0.570019543170929, - 0.709965705871582, - 0.8457260727882385, - 0.9739575982093811, - -0.9793462753295898, - -0.8489106893539429, - -0.7115625739097595, - -0.5707011222839355, - -0.4284205734729767, - -0.2856908142566681, - -0.142854243516922, - -4.4703025281478403e-8, - 0.142854243516922, - 0.2856908142566681, - 0.4284205734729767, - 0.5707011222839355, - 0.7115625739097595, - 0.8489106893539429, - 0.9793462753295898, - -0.9822904467582703, - -0.85053950548172, - -0.7123088240623474, - -0.5709802508354187, - -0.4285026490688324, - -0.28570854663848877, - -0.1428569108247757, - -4.470348002882929e-8, - 0.1428569108247757, - 0.28570854663848877, - 0.4285026490688324, - 0.5709802508354187, - 0.7123088240623474, - 0.85053950548172, - 0.9822904467582703, - -0.9832210540771484, - -0.8510357141494751, - -0.7125245332717896, - -0.5710544586181641, - -0.4285212755203247, - -0.2857113480567932, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.2857113480567932, - 0.4285212755203247, - 0.5710544586181641, - 0.7125245332717896, - 0.8510357141494751, - 0.9832210540771484, - -0.9822904467582703, - -0.85053950548172, - -0.7123088240623474, - -0.5709802508354187, - -0.4285026490688324, - -0.28570854663848877, - -0.1428569108247757, - -4.470348002882929e-8, - 0.1428569108247757, - 0.28570854663848877, - 0.4285026490688324, - 0.5709802508354187, - 0.7123088240623474, - 0.85053950548172, - 0.9822904467582703, - -0.9793462753295898, - -0.8489106893539429, - -0.7115625739097595, - -0.5707011222839355, - -0.4284205734729767, - -0.2856908142566681, - -0.142854243516922, - -4.4703025281478403e-8, - 0.142854243516922, - 0.2856908142566681, - 0.4284205734729767, - 0.5707011222839355, - 0.7115625739097595, - 0.8489106893539429, - 0.9793462753295898, - -0.9739575982093811, - -0.8457260727882385, - -0.709965705871582, - -0.570019543170929, - -0.4281727075576782, - -0.2856137156486511, - -0.14283418655395508, - -4.469825753972145e-8, - 0.14283418655395508, - 0.2856137156486511, - 0.4281727075576782, - 0.570019543170929, - 0.709965705871582, - 0.8457260727882385, - 0.9739575982093811, - -0.9655123949050903, - -0.8403022885322571, - -0.7069339752197266, - -0.5685274600982666, - -0.4275146722793579, - -0.2853505611419678, - -0.1427450329065323, - -4.467421987897069e-8, - 0.1427450329065323, - 0.2853505611419678, - 0.4275146722793579, - 0.5685274600982666, - 0.7069339752197266, - 0.8403022885322571, - 0.9655123949050903, - -0.9534116983413696, - -0.8318209648132324, - -0.701636016368866, - -0.5655471682548523, - -0.4259794056415558, - -0.28462502360343933, - -0.14246173202991486, - -4.4593257086944504e-8, - 0.14246173202991486, - 0.28462502360343933, - 0.4259794056415558, - 0.5655471682548523, - 0.701636016368866, - 0.8318209648132324, - 0.9534116983413696, - -0.937323808670044, - -0.8196011781692505, - -0.6931841373443604, - -0.5602014660835266, - -0.4228630065917969, - -0.28297021985054016, - -0.1417565494775772, - -4.438496858938379e-8, - 0.1417565494775772, - 0.28297021985054016, - 0.4228630065917969, - 0.5602014660835266, - 0.6931841373443604, - 0.8196011781692505, - 0.937323808670044, - -0.9173734784126282, - -0.8034204244613647, - -0.6810083389282227, - -0.5517213344573975, - -0.41741037368774414, - -0.2798132002353668, - -0.14032717049121857, - -4.3953406247965177e-8, - 0.14032717049121857, - 0.2798132002353668, - 0.41741037368774414, - 0.5517213344573975, - 0.6810083389282227, - 0.8034204244613647, - 0.9173734784126282 - ], - "yaxis": "y2" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9116267561912537, - -0.932456910610199, - -0.949432909488678, - -0.9623343348503113, - -0.9714203476905823, - -0.9772586226463318, - -0.9804632067680359, - -0.9814784526824951, - -0.9804632067680359, - -0.9772586226463318, - -0.9714203476905823, - -0.9623343348503113, - -0.949432909488678, - -0.932456910610199, - -0.9116267561912537, - -0.7992488145828247, - -0.8163394331932068, - -0.8294108510017395, - -0.8385881185531616, - -0.8445107340812683, - -0.8480103015899658, - -0.8498069643974304, - -0.850355327129364, - -0.8498069643974304, - -0.8480103015899658, - -0.8445107340812683, - -0.8385881185531616, - -0.8294108510017395, - -0.8163394331932068, - -0.7992488145828247, - -0.678166389465332, - -0.6911756992340088, - -0.700330913066864, - -0.7061339616775513, - -0.7094805240631104, - -0.7112514972686768, - -0.7120811939239502, - -0.7123212814331055, - -0.7120811939239502, - -0.7112514972686768, - -0.7094805240631104, - -0.7061339616775513, - -0.700330913066864, - -0.6911756992340088, - -0.678166389465332, - -0.5499053001403809, - -0.559058666229248, - -0.5649071335792542, - -0.5681992769241333, - -0.5698570013046265, - -0.5706163644790649, - -0.5709277987480164, - -0.5710106492042542, - -0.5709277987480164, - -0.5706163644790649, - -0.5698570013046265, - -0.5681992769241333, - -0.5649071335792542, - -0.559058666229248, - -0.5499053001403809, - -0.4163229763507843, - -0.42225533723831177, - -0.4256882667541504, - -0.42739275097846985, - -0.42812615633010864, - -0.42840293049812317, - -0.42849457263946533, - -0.42851540446281433, - -0.42849457263946533, - -0.42840293049812317, - -0.42812615633010864, - -0.42739275097846985, - -0.4256882667541504, - -0.42225533723831177, - -0.4163229763507843, - -0.2792167365550995, - -0.2826700806617737, - -0.2845005691051483, - -0.28530818223953247, - -0.285601943731308, - -0.28568804264068604, - -0.28570786118507385, - -0.28571099042892456, - -0.28570786118507385, - -0.28568804264068604, - -0.285601943731308, - -0.28530818223953247, - -0.2845005691051483, - -0.2826700806617737, - -0.2792167365550995, - -0.14006613194942474, - -0.14163444936275482, - -0.14241620898246765, - -0.1427319198846817, - -0.142831489443779, - -0.14285390079021454, - -0.1428568959236145, - -0.14285707473754883, - -0.1428568959236145, - -0.14285390079021454, - -0.142831489443779, - -0.1427319198846817, - -0.14241620898246765, - -0.14163444936275482, - -0.14006613194942474, - -4.387550589513012e-8, - -4.434948408515993e-8, - -4.45805383719744e-8, - -4.4670791510270647e-8, - -4.469764292025502e-8, - -4.470297199077322e-8, - -4.470347292340193e-8, - -4.470348358154297e-8, - -4.470347292340193e-8, - -4.470297199077322e-8, - -4.469764292025502e-8, - -4.4670791510270647e-8, - -4.45805383719744e-8, - -4.434948408515993e-8, - -4.387550589513012e-8, - 0.14006613194942474, - 0.14163444936275482, - 0.14241620898246765, - 0.1427319198846817, - 0.142831489443779, - 0.14285390079021454, - 0.1428568959236145, - 0.14285707473754883, - 0.1428568959236145, - 0.14285390079021454, - 0.142831489443779, - 0.1427319198846817, - 0.14241620898246765, - 0.14163444936275482, - 0.14006613194942474, - 0.2792167365550995, - 0.2826700806617737, - 0.2845005691051483, - 0.28530818223953247, - 0.285601943731308, - 0.28568804264068604, - 0.28570786118507385, - 0.28571099042892456, - 0.28570786118507385, - 0.28568804264068604, - 0.285601943731308, - 0.28530818223953247, - 0.2845005691051483, - 0.2826700806617737, - 0.2792167365550995, - 0.4163229763507843, - 0.42225533723831177, - 0.4256882667541504, - 0.42739275097846985, - 0.42812615633010864, - 0.42840293049812317, - 0.42849457263946533, - 0.42851540446281433, - 0.42849457263946533, - 0.42840293049812317, - 0.42812615633010864, - 0.42739275097846985, - 0.4256882667541504, - 0.42225533723831177, - 0.4163229763507843, - 0.5499053001403809, - 0.559058666229248, - 0.5649071335792542, - 0.5681992769241333, - 0.5698570013046265, - 0.5706163644790649, - 0.5709277987480164, - 0.5710106492042542, - 0.5709277987480164, - 0.5706163644790649, - 0.5698570013046265, - 0.5681992769241333, - 0.5649071335792542, - 0.559058666229248, - 0.5499053001403809, - 0.678166389465332, - 0.6911756992340088, - 0.700330913066864, - 0.7061339616775513, - 0.7094805240631104, - 0.7112514972686768, - 0.7120811939239502, - 0.7123212814331055, - 0.7120811939239502, - 0.7112514972686768, - 0.7094805240631104, - 0.7061339616775513, - 0.700330913066864, - 0.6911756992340088, - 0.678166389465332, - 0.7992488145828247, - 0.8163394331932068, - 0.8294108510017395, - 0.8385881185531616, - 0.8445107340812683, - 0.8480103015899658, - 0.8498069643974304, - 0.850355327129364, - 0.8498069643974304, - 0.8480103015899658, - 0.8445107340812683, - 0.8385881185531616, - 0.8294108510017395, - 0.8163394331932068, - 0.7992488145828247, - 0.9116267561912537, - 0.932456910610199, - 0.949432909488678, - 0.9623343348503113, - 0.9714203476905823, - 0.9772586226463318, - 0.9804632067680359, - 0.9814784526824951, - 0.9804632067680359, - 0.9772586226463318, - 0.9714203476905823, - 0.9623343348503113, - 0.949432909488678, - 0.932456910610199, - 0.9116267561912537 - ], - "xaxis": "x2", - "y": [ - -0.9116267561912537, - -0.7992488145828247, - -0.678166389465332, - -0.5499053001403809, - -0.4163229763507843, - -0.2792167365550995, - -0.14006613194942474, - -4.387550589513012e-8, - 0.14006613194942474, - 0.2792167365550995, - 0.4163229763507843, - 0.5499053001403809, - 0.678166389465332, - 0.7992488145828247, - 0.9116267561912537, - -0.932456910610199, - -0.8163394331932068, - -0.6911756992340088, - -0.559058666229248, - -0.42225533723831177, - -0.2826700806617737, - -0.14163444936275482, - -4.434948408515993e-8, - 0.14163444936275482, - 0.2826700806617737, - 0.42225533723831177, - 0.559058666229248, - 0.6911756992340088, - 0.8163394331932068, - 0.932456910610199, - -0.949432909488678, - -0.8294108510017395, - -0.700330913066864, - -0.5649071335792542, - -0.4256882667541504, - -0.2845005691051483, - -0.14241620898246765, - -4.45805383719744e-8, - 0.14241620898246765, - 0.2845005691051483, - 0.4256882667541504, - 0.5649071335792542, - 0.700330913066864, - 0.8294108510017395, - 0.949432909488678, - -0.9623343348503113, - -0.8385881185531616, - -0.7061339616775513, - -0.5681992769241333, - -0.42739275097846985, - -0.28530818223953247, - -0.1427319198846817, - -4.4670791510270647e-8, - 0.1427319198846817, - 0.28530818223953247, - 0.42739275097846985, - 0.5681992769241333, - 0.7061339616775513, - 0.8385881185531616, - 0.9623343348503113, - -0.9714203476905823, - -0.8445107340812683, - -0.7094805240631104, - -0.5698570013046265, - -0.42812615633010864, - -0.285601943731308, - -0.142831489443779, - -4.469764292025502e-8, - 0.142831489443779, - 0.285601943731308, - 0.42812615633010864, - 0.5698570013046265, - 0.7094805240631104, - 0.8445107340812683, - 0.9714203476905823, - -0.9772586226463318, - -0.8480103015899658, - -0.7112514972686768, - -0.5706163644790649, - -0.42840293049812317, - -0.28568804264068604, - -0.14285390079021454, - -4.470297199077322e-8, - 0.14285390079021454, - 0.28568804264068604, - 0.42840293049812317, - 0.5706163644790649, - 0.7112514972686768, - 0.8480103015899658, - 0.9772586226463318, - -0.9804632067680359, - -0.8498069643974304, - -0.7120811939239502, - -0.5709277987480164, - -0.42849457263946533, - -0.28570786118507385, - -0.1428568959236145, - -4.470347292340193e-8, - 0.1428568959236145, - 0.28570786118507385, - 0.42849457263946533, - 0.5709277987480164, - 0.7120811939239502, - 0.8498069643974304, - 0.9804632067680359, - -0.9814784526824951, - -0.850355327129364, - -0.7123212814331055, - -0.5710106492042542, - -0.42851540446281433, - -0.28571099042892456, - -0.14285707473754883, - -4.470348358154297e-8, - 0.14285707473754883, - 0.28571099042892456, - 0.42851540446281433, - 0.5710106492042542, - 0.7123212814331055, - 0.850355327129364, - 0.9814784526824951, - -0.9804632067680359, - -0.8498069643974304, - -0.7120811939239502, - -0.5709277987480164, - -0.42849457263946533, - -0.28570786118507385, - -0.1428568959236145, - -4.470347292340193e-8, - 0.1428568959236145, - 0.28570786118507385, - 0.42849457263946533, - 0.5709277987480164, - 0.7120811939239502, - 0.8498069643974304, - 0.9804632067680359, - -0.9772586226463318, - -0.8480103015899658, - -0.7112514972686768, - -0.5706163644790649, - -0.42840293049812317, - -0.28568804264068604, - -0.14285390079021454, - -4.470297199077322e-8, - 0.14285390079021454, - 0.28568804264068604, - 0.42840293049812317, - 0.5706163644790649, - 0.7112514972686768, - 0.8480103015899658, - 0.9772586226463318, - -0.9714203476905823, - -0.8445107340812683, - -0.7094805240631104, - -0.5698570013046265, - -0.42812615633010864, - -0.285601943731308, - -0.142831489443779, - -4.469764292025502e-8, - 0.142831489443779, - 0.285601943731308, - 0.42812615633010864, - 0.5698570013046265, - 0.7094805240631104, - 0.8445107340812683, - 0.9714203476905823, - -0.9623343348503113, - -0.8385881185531616, - -0.7061339616775513, - -0.5681992769241333, - -0.42739275097846985, - -0.28530818223953247, - -0.1427319198846817, - -4.4670791510270647e-8, - 0.1427319198846817, - 0.28530818223953247, - 0.42739275097846985, - 0.5681992769241333, - 0.7061339616775513, - 0.8385881185531616, - 0.9623343348503113, - -0.949432909488678, - -0.8294108510017395, - -0.700330913066864, - -0.5649071335792542, - -0.4256882667541504, - -0.2845005691051483, - -0.14241620898246765, - -4.45805383719744e-8, - 0.14241620898246765, - 0.2845005691051483, - 0.4256882667541504, - 0.5649071335792542, - 0.700330913066864, - 0.8294108510017395, - 0.949432909488678, - -0.932456910610199, - -0.8163394331932068, - -0.6911756992340088, - -0.559058666229248, - -0.42225533723831177, - -0.2826700806617737, - -0.14163444936275482, - -4.434948408515993e-8, - 0.14163444936275482, - 0.2826700806617737, - 0.42225533723831177, - 0.559058666229248, - 0.6911756992340088, - 0.8163394331932068, - 0.932456910610199, - -0.9116267561912537, - -0.7992488145828247, - -0.678166389465332, - -0.5499053001403809, - -0.4163229763507843, - -0.2792167365550995, - -0.14006613194942474, - -4.387550589513012e-8, - 0.14006613194942474, - 0.2792167365550995, - 0.4163229763507843, - 0.5499053001403809, - 0.678166389465332, - 0.7992488145828247, - 0.9116267561912537 - ], - "yaxis": "y2" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9062711000442505, - -0.9278765916824341, - -0.9456502199172974, - -0.9592844843864441, - -0.9689663648605347, - -0.9752281308174133, - -0.9786801338195801, - -0.97977614402771, - -0.9786801338195801, - -0.9752281308174133, - -0.9689663648605347, - -0.9592844843864441, - -0.9456502199172974, - -0.9278765916824341, - -0.9062711000442505, - -0.7953227758407593, - -0.8132323026657104, - -0.8270877003669739, - -0.8369190692901611, - -0.8433184027671814, - -0.8471227288246155, - -0.8490830063819885, - -0.8496822714805603, - -0.8490830063819885, - -0.8471227288246155, - -0.8433184027671814, - -0.8369190692901611, - -0.8270877003669739, - -0.8132323026657104, - -0.7953227758407593, - -0.6754644513130188, - -0.6892397403717041, - -0.6990572810173035, - -0.7053460478782654, - -0.7089998722076416, - -0.7109423279762268, - -0.7118545770645142, - -0.7121188044548035, - -0.7118545770645142, - -0.7109423279762268, - -0.7089998722076416, - -0.7053460478782654, - -0.6990572810173035, - -0.6892397403717041, - -0.6754644513130188, - -0.5481625199317932, - -0.5579460263252258, - -0.5642767548561096, - -0.5678736567497253, - -0.569694995880127, - -0.5705317854881287, - -0.5708755254745483, - -0.570966899394989, - -0.5708755254745483, - -0.5705317854881287, - -0.569694995880127, - -0.5678736567497253, - -0.5642767548561096, - -0.5579460263252258, - -0.5481625199317932, - -0.41527125239372253, - -0.4216591715812683, - -0.42539989948272705, - -0.4272712469100952, - -0.42807966470718384, - -0.4283851981163025, - -0.42848649621009827, - -0.42850950360298157, - -0.42848649621009827, - -0.4283851981163025, - -0.42807966470718384, - -0.4272712469100952, - -0.42539989948272705, - -0.4216591715812683, - -0.41527125239372253, - -0.2786365747451782, - -0.28237423300743103, - -0.2843768894672394, - -0.28526589274406433, - -0.28559014201164246, - -0.28568530082702637, - -0.28570717573165894, - -0.2857106626033783, - -0.28570717573165894, - -0.28568530082702637, - -0.28559014201164246, - -0.28526589274406433, - -0.2843768894672394, - -0.28237423300743103, - -0.2786365747451782, - -0.1398114114999771, - -0.14151379466056824, - -0.14237087965011597, - -0.1427188515663147, - -0.1428288072347641, - -0.14285355806350708, - -0.1428568810224533, - -0.14285707473754883, - -0.1428568810224533, - -0.14285355806350708, - -0.1428288072347641, - -0.1427188515663147, - -0.14237087965011597, - -0.14151379466056824, - -0.1398114114999771, - -4.379940676813021e-8, - -4.431438327401338e-8, - -4.456786584228212e-8, - -4.466737024699796e-8, - -4.469702474807491e-8, - -4.470291870006804e-8, - -4.470347292340193e-8, - -4.470348358154297e-8, - -4.470347292340193e-8, - -4.470291870006804e-8, - -4.469702474807491e-8, - -4.466737024699796e-8, - -4.456786584228212e-8, - -4.431438327401338e-8, - -4.379940676813021e-8, - 0.1398114114999771, - 0.14151379466056824, - 0.14237087965011597, - 0.1427188515663147, - 0.1428288072347641, - 0.14285355806350708, - 0.1428568810224533, - 0.14285707473754883, - 0.1428568810224533, - 0.14285355806350708, - 0.1428288072347641, - 0.1427188515663147, - 0.14237087965011597, - 0.14151379466056824, - 0.1398114114999771, - 0.2786365747451782, - 0.28237423300743103, - 0.2843768894672394, - 0.28526589274406433, - 0.28559014201164246, - 0.28568530082702637, - 0.28570717573165894, - 0.2857106626033783, - 0.28570717573165894, - 0.28568530082702637, - 0.28559014201164246, - 0.28526589274406433, - 0.2843768894672394, - 0.28237423300743103, - 0.2786365747451782, - 0.41527125239372253, - 0.4216591715812683, - 0.42539989948272705, - 0.4272712469100952, - 0.42807966470718384, - 0.4283851981163025, - 0.42848649621009827, - 0.42850950360298157, - 0.42848649621009827, - 0.4283851981163025, - 0.42807966470718384, - 0.4272712469100952, - 0.42539989948272705, - 0.4216591715812683, - 0.41527125239372253, - 0.5481625199317932, - 0.5579460263252258, - 0.5642767548561096, - 0.5678736567497253, - 0.569694995880127, - 0.5705317854881287, - 0.5708755254745483, - 0.570966899394989, - 0.5708755254745483, - 0.5705317854881287, - 0.569694995880127, - 0.5678736567497253, - 0.5642767548561096, - 0.5579460263252258, - 0.5481625199317932, - 0.6754644513130188, - 0.6892397403717041, - 0.6990572810173035, - 0.7053460478782654, - 0.7089998722076416, - 0.7109423279762268, - 0.7118545770645142, - 0.7121188044548035, - 0.7118545770645142, - 0.7109423279762268, - 0.7089998722076416, - 0.7053460478782654, - 0.6990572810173035, - 0.6892397403717041, - 0.6754644513130188, - 0.7953227758407593, - 0.8132323026657104, - 0.8270877003669739, - 0.8369190692901611, - 0.8433184027671814, - 0.8471227288246155, - 0.8490830063819885, - 0.8496822714805603, - 0.8490830063819885, - 0.8471227288246155, - 0.8433184027671814, - 0.8369190692901611, - 0.8270877003669739, - 0.8132323026657104, - 0.7953227758407593, - 0.9062711000442505, - 0.9278765916824341, - 0.9456502199172974, - 0.9592844843864441, - 0.9689663648605347, - 0.9752281308174133, - 0.9786801338195801, - 0.97977614402771, - 0.9786801338195801, - 0.9752281308174133, - 0.9689663648605347, - 0.9592844843864441, - 0.9456502199172974, - 0.9278765916824341, - 0.9062711000442505 - ], - "xaxis": "x2", - "y": [ - -0.9062711000442505, - -0.7953227758407593, - -0.6754644513130188, - -0.5481625199317932, - -0.41527125239372253, - -0.2786365747451782, - -0.1398114114999771, - -4.379940676813021e-8, - 0.1398114114999771, - 0.2786365747451782, - 0.41527125239372253, - 0.5481625199317932, - 0.6754644513130188, - 0.7953227758407593, - 0.9062711000442505, - -0.9278765916824341, - -0.8132323026657104, - -0.6892397403717041, - -0.5579460263252258, - -0.4216591715812683, - -0.28237423300743103, - -0.14151379466056824, - -4.431438327401338e-8, - 0.14151379466056824, - 0.28237423300743103, - 0.4216591715812683, - 0.5579460263252258, - 0.6892397403717041, - 0.8132323026657104, - 0.9278765916824341, - -0.9456502199172974, - -0.8270877003669739, - -0.6990572810173035, - -0.5642767548561096, - -0.42539989948272705, - -0.2843768894672394, - -0.14237087965011597, - -4.456786584228212e-8, - 0.14237087965011597, - 0.2843768894672394, - 0.42539989948272705, - 0.5642767548561096, - 0.6990572810173035, - 0.8270877003669739, - 0.9456502199172974, - -0.9592844843864441, - -0.8369190692901611, - -0.7053460478782654, - -0.5678736567497253, - -0.4272712469100952, - -0.28526589274406433, - -0.1427188515663147, - -4.466737024699796e-8, - 0.1427188515663147, - 0.28526589274406433, - 0.4272712469100952, - 0.5678736567497253, - 0.7053460478782654, - 0.8369190692901611, - 0.9592844843864441, - -0.9689663648605347, - -0.8433184027671814, - -0.7089998722076416, - -0.569694995880127, - -0.42807966470718384, - -0.28559014201164246, - -0.1428288072347641, - -4.469702474807491e-8, - 0.1428288072347641, - 0.28559014201164246, - 0.42807966470718384, - 0.569694995880127, - 0.7089998722076416, - 0.8433184027671814, - 0.9689663648605347, - -0.9752281308174133, - -0.8471227288246155, - -0.7109423279762268, - -0.5705317854881287, - -0.4283851981163025, - -0.28568530082702637, - -0.14285355806350708, - -4.470291870006804e-8, - 0.14285355806350708, - 0.28568530082702637, - 0.4283851981163025, - 0.5705317854881287, - 0.7109423279762268, - 0.8471227288246155, - 0.9752281308174133, - -0.9786801338195801, - -0.8490830063819885, - -0.7118545770645142, - -0.5708755254745483, - -0.42848649621009827, - -0.28570717573165894, - -0.1428568810224533, - -4.470347292340193e-8, - 0.1428568810224533, - 0.28570717573165894, - 0.42848649621009827, - 0.5708755254745483, - 0.7118545770645142, - 0.8490830063819885, - 0.9786801338195801, - -0.97977614402771, - -0.8496822714805603, - -0.7121188044548035, - -0.570966899394989, - -0.42850950360298157, - -0.2857106626033783, - -0.14285707473754883, - -4.470348358154297e-8, - 0.14285707473754883, - 0.2857106626033783, - 0.42850950360298157, - 0.570966899394989, - 0.7121188044548035, - 0.8496822714805603, - 0.97977614402771, - -0.9786801338195801, - -0.8490830063819885, - -0.7118545770645142, - -0.5708755254745483, - -0.42848649621009827, - -0.28570717573165894, - -0.1428568810224533, - -4.470347292340193e-8, - 0.1428568810224533, - 0.28570717573165894, - 0.42848649621009827, - 0.5708755254745483, - 0.7118545770645142, - 0.8490830063819885, - 0.9786801338195801, - -0.9752281308174133, - -0.8471227288246155, - -0.7109423279762268, - -0.5705317854881287, - -0.4283851981163025, - -0.28568530082702637, - -0.14285355806350708, - -4.470291870006804e-8, - 0.14285355806350708, - 0.28568530082702637, - 0.4283851981163025, - 0.5705317854881287, - 0.7109423279762268, - 0.8471227288246155, - 0.9752281308174133, - -0.9689663648605347, - -0.8433184027671814, - -0.7089998722076416, - -0.569694995880127, - -0.42807966470718384, - -0.28559014201164246, - -0.1428288072347641, - -4.469702474807491e-8, - 0.1428288072347641, - 0.28559014201164246, - 0.42807966470718384, - 0.569694995880127, - 0.7089998722076416, - 0.8433184027671814, - 0.9689663648605347, - -0.9592844843864441, - -0.8369190692901611, - -0.7053460478782654, - -0.5678736567497253, - -0.4272712469100952, - -0.28526589274406433, - -0.1427188515663147, - -4.466737024699796e-8, - 0.1427188515663147, - 0.28526589274406433, - 0.4272712469100952, - 0.5678736567497253, - 0.7053460478782654, - 0.8369190692901611, - 0.9592844843864441, - -0.9456502199172974, - -0.8270877003669739, - -0.6990572810173035, - -0.5642767548561096, - -0.42539989948272705, - -0.2843768894672394, - -0.14237087965011597, - -4.456786584228212e-8, - 0.14237087965011597, - 0.2843768894672394, - 0.42539989948272705, - 0.5642767548561096, - 0.6990572810173035, - 0.8270877003669739, - 0.9456502199172974, - -0.9278765916824341, - -0.8132323026657104, - -0.6892397403717041, - -0.5579460263252258, - -0.4216591715812683, - -0.28237423300743103, - -0.14151379466056824, - -4.431438327401338e-8, - 0.14151379466056824, - 0.28237423300743103, - 0.4216591715812683, - 0.5579460263252258, - 0.6892397403717041, - 0.8132323026657104, - 0.9278765916824341, - -0.9062711000442505, - -0.7953227758407593, - -0.6754644513130188, - -0.5481625199317932, - -0.41527125239372253, - -0.2786365747451782, - -0.1398114114999771, - -4.379940676813021e-8, - 0.1398114114999771, - 0.2786365747451782, - 0.41527125239372253, - 0.5481625199317932, - 0.6754644513130188, - 0.7953227758407593, - 0.9062711000442505 - ], - "yaxis": "y2" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9012557864189148, - -0.9235500693321228, - -0.942044734954834, - -0.9563522338867188, - -0.9665899872779846, - -0.973251461982727, - -0.9769390225410461, - -0.9781121015548706, - -0.9769390225410461, - -0.973251461982727, - -0.9665899872779846, - -0.9563522338867188, - -0.942044734954834, - -0.9235500693321228, - -0.9012557864189148, - -0.7916143536567688, - -0.8102652430534363, - -0.8248449563980103, - -0.8352925181388855, - -0.8421482443809509, - -0.8462475538253784, - -0.84836745262146, - -0.8490164875984192, - -0.84836745262146, - -0.8462475538253784, - -0.8421482443809509, - -0.8352925181388855, - -0.8248449563980103, - -0.8102652430534363, - -0.7916143536567688, - -0.6728891134262085, - -0.6873708367347717, - -0.6978135108947754, - -0.7045698165893555, - -0.7085236310958862, - -0.7106349468231201, - -0.7116289138793945, - -0.7119171619415283, - -0.7116289138793945, - -0.7106349468231201, - -0.7085236310958862, - -0.7045698165893555, - -0.6978135108947754, - -0.6873708367347717, - -0.6728891134262085, - -0.5464869141578674, - -0.5568616390228271, - -0.5636557936668396, - -0.567550539970398, - -0.5695337057113647, - -0.5704473853111267, - -0.5708231925964355, - -0.5709232687950134, - -0.5708231925964355, - -0.5704473853111267, - -0.5695337057113647, - -0.567550539970398, - -0.5636557936668396, - -0.5568616390228271, - -0.5464869141578674, - -0.4142528176307678, - -0.4210740923881531, - -0.42511412501335144, - -0.42715027928352356, - -0.4280332326889038, - -0.428367555141449, - -0.4284784495830536, - -0.4285036325454712, - -0.4284784495830536, - -0.428367555141449, - -0.4280332326889038, - -0.42715027928352356, - -0.42511412501335144, - -0.4210740923881531, - -0.4142528176307678, - -0.2780718207359314, - -0.2820824980735779, - -0.28425395488739014, - -0.28522369265556335, - -0.2855783700942993, - -0.2856825292110443, - -0.285706490278244, - -0.28571027517318726, - -0.285706490278244, - -0.2856825292110443, - -0.2855783700942993, - -0.28522369265556335, - -0.28425395488739014, - -0.2820824980735779, - -0.2780718207359314, - -0.1395626813173294, - -0.14139452576637268, - -0.1423257440328598, - -0.1427057683467865, - -0.142826110124588, - -0.14285321533679962, - -0.14285685122013092, - -0.14285707473754883, - -0.14285685122013092, - -0.14285321533679962, - -0.142826110124588, - -0.1427057683467865, - -0.1423257440328598, - -0.14139452576637268, - -0.1395626813173294, - -4.372501649640981e-8, - -4.4279659050516784e-8, - -4.455524660329502e-8, - -4.4663956089152634e-8, - -4.4696413681322156e-8, - -4.470286185664918e-8, - -4.470347292340193e-8, - -4.470348358154297e-8, - -4.470347292340193e-8, - -4.470286185664918e-8, - -4.4696413681322156e-8, - -4.4663956089152634e-8, - -4.455524660329502e-8, - -4.4279659050516784e-8, - -4.372501649640981e-8, - 0.1395626813173294, - 0.14139452576637268, - 0.1423257440328598, - 0.1427057683467865, - 0.142826110124588, - 0.14285321533679962, - 0.14285685122013092, - 0.14285707473754883, - 0.14285685122013092, - 0.14285321533679962, - 0.142826110124588, - 0.1427057683467865, - 0.1423257440328598, - 0.14139452576637268, - 0.1395626813173294, - 0.2780718207359314, - 0.2820824980735779, - 0.28425395488739014, - 0.28522369265556335, - 0.2855783700942993, - 0.2856825292110443, - 0.285706490278244, - 0.28571027517318726, - 0.285706490278244, - 0.2856825292110443, - 0.2855783700942993, - 0.28522369265556335, - 0.28425395488739014, - 0.2820824980735779, - 0.2780718207359314, - 0.4142528176307678, - 0.4210740923881531, - 0.42511412501335144, - 0.42715027928352356, - 0.4280332326889038, - 0.428367555141449, - 0.4284784495830536, - 0.4285036325454712, - 0.4284784495830536, - 0.428367555141449, - 0.4280332326889038, - 0.42715027928352356, - 0.42511412501335144, - 0.4210740923881531, - 0.4142528176307678, - 0.5464869141578674, - 0.5568616390228271, - 0.5636557936668396, - 0.567550539970398, - 0.5695337057113647, - 0.5704473853111267, - 0.5708231925964355, - 0.5709232687950134, - 0.5708231925964355, - 0.5704473853111267, - 0.5695337057113647, - 0.567550539970398, - 0.5636557936668396, - 0.5568616390228271, - 0.5464869141578674, - 0.6728891134262085, - 0.6873708367347717, - 0.6978135108947754, - 0.7045698165893555, - 0.7085236310958862, - 0.7106349468231201, - 0.7116289138793945, - 0.7119171619415283, - 0.7116289138793945, - 0.7106349468231201, - 0.7085236310958862, - 0.7045698165893555, - 0.6978135108947754, - 0.6873708367347717, - 0.6728891134262085, - 0.7916143536567688, - 0.8102652430534363, - 0.8248449563980103, - 0.8352925181388855, - 0.8421482443809509, - 0.8462475538253784, - 0.84836745262146, - 0.8490164875984192, - 0.84836745262146, - 0.8462475538253784, - 0.8421482443809509, - 0.8352925181388855, - 0.8248449563980103, - 0.8102652430534363, - 0.7916143536567688, - 0.9012557864189148, - 0.9235500693321228, - 0.942044734954834, - 0.9563522338867188, - 0.9665899872779846, - 0.973251461982727, - 0.9769390225410461, - 0.9781121015548706, - 0.9769390225410461, - 0.973251461982727, - 0.9665899872779846, - 0.9563522338867188, - 0.942044734954834, - 0.9235500693321228, - 0.9012557864189148 - ], - "xaxis": "x2", - "y": [ - -0.9012557864189148, - -0.7916143536567688, - -0.6728891134262085, - -0.5464869141578674, - -0.4142528176307678, - -0.2780718207359314, - -0.1395626813173294, - -4.372501649640981e-8, - 0.1395626813173294, - 0.2780718207359314, - 0.4142528176307678, - 0.5464869141578674, - 0.6728891134262085, - 0.7916143536567688, - 0.9012557864189148, - -0.9235500693321228, - -0.8102652430534363, - -0.6873708367347717, - -0.5568616390228271, - -0.4210740923881531, - -0.2820824980735779, - -0.14139452576637268, - -4.4279659050516784e-8, - 0.14139452576637268, - 0.2820824980735779, - 0.4210740923881531, - 0.5568616390228271, - 0.6873708367347717, - 0.8102652430534363, - 0.9235500693321228, - -0.942044734954834, - -0.8248449563980103, - -0.6978135108947754, - -0.5636557936668396, - -0.42511412501335144, - -0.28425395488739014, - -0.1423257440328598, - -4.455524660329502e-8, - 0.1423257440328598, - 0.28425395488739014, - 0.42511412501335144, - 0.5636557936668396, - 0.6978135108947754, - 0.8248449563980103, - 0.942044734954834, - -0.9563522338867188, - -0.8352925181388855, - -0.7045698165893555, - -0.567550539970398, - -0.42715027928352356, - -0.28522369265556335, - -0.1427057683467865, - -4.4663956089152634e-8, - 0.1427057683467865, - 0.28522369265556335, - 0.42715027928352356, - 0.567550539970398, - 0.7045698165893555, - 0.8352925181388855, - 0.9563522338867188, - -0.9665899872779846, - -0.8421482443809509, - -0.7085236310958862, - -0.5695337057113647, - -0.4280332326889038, - -0.2855783700942993, - -0.142826110124588, - -4.4696413681322156e-8, - 0.142826110124588, - 0.2855783700942993, - 0.4280332326889038, - 0.5695337057113647, - 0.7085236310958862, - 0.8421482443809509, - 0.9665899872779846, - -0.973251461982727, - -0.8462475538253784, - -0.7106349468231201, - -0.5704473853111267, - -0.428367555141449, - -0.2856825292110443, - -0.14285321533679962, - -4.470286185664918e-8, - 0.14285321533679962, - 0.2856825292110443, - 0.428367555141449, - 0.5704473853111267, - 0.7106349468231201, - 0.8462475538253784, - 0.973251461982727, - -0.9769390225410461, - -0.84836745262146, - -0.7116289138793945, - -0.5708231925964355, - -0.4284784495830536, - -0.285706490278244, - -0.14285685122013092, - -4.470347292340193e-8, - 0.14285685122013092, - 0.285706490278244, - 0.4284784495830536, - 0.5708231925964355, - 0.7116289138793945, - 0.84836745262146, - 0.9769390225410461, - -0.9781121015548706, - -0.8490164875984192, - -0.7119171619415283, - -0.5709232687950134, - -0.4285036325454712, - -0.28571027517318726, - -0.14285707473754883, - -4.470348358154297e-8, - 0.14285707473754883, - 0.28571027517318726, - 0.4285036325454712, - 0.5709232687950134, - 0.7119171619415283, - 0.8490164875984192, - 0.9781121015548706, - -0.9769390225410461, - -0.84836745262146, - -0.7116289138793945, - -0.5708231925964355, - -0.4284784495830536, - -0.285706490278244, - -0.14285685122013092, - -4.470347292340193e-8, - 0.14285685122013092, - 0.285706490278244, - 0.4284784495830536, - 0.5708231925964355, - 0.7116289138793945, - 0.84836745262146, - 0.9769390225410461, - -0.973251461982727, - -0.8462475538253784, - -0.7106349468231201, - -0.5704473853111267, - -0.428367555141449, - -0.2856825292110443, - -0.14285321533679962, - -4.470286185664918e-8, - 0.14285321533679962, - 0.2856825292110443, - 0.428367555141449, - 0.5704473853111267, - 0.7106349468231201, - 0.8462475538253784, - 0.973251461982727, - -0.9665899872779846, - -0.8421482443809509, - -0.7085236310958862, - -0.5695337057113647, - -0.4280332326889038, - -0.2855783700942993, - -0.142826110124588, - -4.4696413681322156e-8, - 0.142826110124588, - 0.2855783700942993, - 0.4280332326889038, - 0.5695337057113647, - 0.7085236310958862, - 0.8421482443809509, - 0.9665899872779846, - -0.9563522338867188, - -0.8352925181388855, - -0.7045698165893555, - -0.567550539970398, - -0.42715027928352356, - -0.28522369265556335, - -0.1427057683467865, - -4.4663956089152634e-8, - 0.1427057683467865, - 0.28522369265556335, - 0.42715027928352356, - 0.567550539970398, - 0.7045698165893555, - 0.8352925181388855, - 0.9563522338867188, - -0.942044734954834, - -0.8248449563980103, - -0.6978135108947754, - -0.5636557936668396, - -0.42511412501335144, - -0.28425395488739014, - -0.1423257440328598, - -4.455524660329502e-8, - 0.1423257440328598, - 0.28425395488739014, - 0.42511412501335144, - 0.5636557936668396, - 0.6978135108947754, - 0.8248449563980103, - 0.942044734954834, - -0.9235500693321228, - -0.8102652430534363, - -0.6873708367347717, - -0.5568616390228271, - -0.4210740923881531, - -0.2820824980735779, - -0.14139452576637268, - -4.4279659050516784e-8, - 0.14139452576637268, - 0.2820824980735779, - 0.4210740923881531, - 0.5568616390228271, - 0.6873708367347717, - 0.8102652430534363, - 0.9235500693321228, - -0.9012557864189148, - -0.7916143536567688, - -0.6728891134262085, - -0.5464869141578674, - -0.4142528176307678, - -0.2780718207359314, - -0.1395626813173294, - -4.372501649640981e-8, - 0.1395626813173294, - 0.2780718207359314, - 0.4142528176307678, - 0.5464869141578674, - 0.6728891134262085, - 0.7916143536567688, - 0.9012557864189148 - ], - "yaxis": "y2" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8965396285057068, - -0.9194503426551819, - -0.9386000037193298, - -0.953528642654419, - -0.9642863273620605, - -0.9713258743286133, - -0.9752376675605774, - -0.976484477519989, - -0.9752376675605774, - -0.9713258743286133, - -0.9642863273620605, - -0.953528642654419, - -0.9386000037193298, - -0.9194503426551819, - -0.8965396285057068, - -0.7881003022193909, - -0.8074257969856262, - -0.8226772546768188, - -0.8337063789367676, - -0.84099942445755, - -0.845384418964386, - -0.8476598262786865, - -0.8483577370643616, - -0.8476598262786865, - -0.845384418964386, - -0.84099942445755, - -0.8337063789367676, - -0.8226772546768188, - -0.8074257969856262, - -0.7881003022193909, - -0.6704285740852356, - -0.685564398765564, - -0.6965983510017395, - -0.7038049101829529, - -0.7080517411231995, - -0.7103294134140015, - -0.7114042639732361, - -0.7117162346839905, - -0.7114042639732361, - -0.7103294134140015, - -0.7080517411231995, - -0.7038049101829529, - -0.6965983510017395, - -0.685564398765564, - -0.6704285740852356, - -0.5448734760284424, - -0.5558041930198669, - -0.5630438923835754, - -0.5672299265861511, - -0.5693729519844055, - -0.5703632235527039, - -0.5707709789276123, - -0.5708796381950378, - -0.5707709789276123, - -0.5703632235527039, - -0.5693729519844055, - -0.5672299265861511, - -0.5630438923835754, - -0.5558041930198669, - -0.5448734760284424, - -0.41326552629470825, - -0.42049968242645264, - -0.42483100295066833, - -0.42702972888946533, - -0.42798686027526855, - -0.42834988236427307, - -0.4284703731536865, - -0.4284977316856384, - -0.4284703731536865, - -0.42834988236427307, - -0.42798686027526855, - -0.42702972888946533, - -0.42483100295066833, - -0.42049968242645264, - -0.41326552629470825, - -0.27752166986465454, - -0.28179478645324707, - -0.2841317355632782, - -0.28518161177635193, - -0.2855665981769562, - -0.28567975759506226, - -0.2857058346271515, - -0.285709947347641, - -0.2857058346271515, - -0.28567975759506226, - -0.2855665981769562, - -0.28518161177635193, - -0.2841317355632782, - -0.28179478645324707, - -0.27752166986465454, - -0.13931962847709656, - -0.14127659797668457, - -0.14228081703186035, - -0.1426927149295807, - -0.14282342791557312, - -0.14285288751125336, - -0.14285683631896973, - -0.14285707473754883, - -0.14285683631896973, - -0.14285288751125336, - -0.14282342791557312, - -0.1426927149295807, - -0.14228081703186035, - -0.14127659797668457, - -0.13931962847709656, - -4.3652256920267973e-8, - -4.4245304309242783e-8, - -4.454267354958574e-8, - -4.466054193130731e-8, - -4.469579906185572e-8, - -4.4702808565943997e-8, - -4.470347292340193e-8, - -4.470348358154297e-8, - -4.470347292340193e-8, - -4.4702808565943997e-8, - -4.469579906185572e-8, - -4.466054193130731e-8, - -4.454267354958574e-8, - -4.4245304309242783e-8, - -4.3652256920267973e-8, - 0.13931962847709656, - 0.14127659797668457, - 0.14228081703186035, - 0.1426927149295807, - 0.14282342791557312, - 0.14285288751125336, - 0.14285683631896973, - 0.14285707473754883, - 0.14285683631896973, - 0.14285288751125336, - 0.14282342791557312, - 0.1426927149295807, - 0.14228081703186035, - 0.14127659797668457, - 0.13931962847709656, - 0.27752166986465454, - 0.28179478645324707, - 0.2841317355632782, - 0.28518161177635193, - 0.2855665981769562, - 0.28567975759506226, - 0.2857058346271515, - 0.285709947347641, - 0.2857058346271515, - 0.28567975759506226, - 0.2855665981769562, - 0.28518161177635193, - 0.2841317355632782, - 0.28179478645324707, - 0.27752166986465454, - 0.41326552629470825, - 0.42049968242645264, - 0.42483100295066833, - 0.42702972888946533, - 0.42798686027526855, - 0.42834988236427307, - 0.4284703731536865, - 0.4284977316856384, - 0.4284703731536865, - 0.42834988236427307, - 0.42798686027526855, - 0.42702972888946533, - 0.42483100295066833, - 0.42049968242645264, - 0.41326552629470825, - 0.5448734760284424, - 0.5558041930198669, - 0.5630438923835754, - 0.5672299265861511, - 0.5693729519844055, - 0.5703632235527039, - 0.5707709789276123, - 0.5708796381950378, - 0.5707709789276123, - 0.5703632235527039, - 0.5693729519844055, - 0.5672299265861511, - 0.5630438923835754, - 0.5558041930198669, - 0.5448734760284424, - 0.6704285740852356, - 0.685564398765564, - 0.6965983510017395, - 0.7038049101829529, - 0.7080517411231995, - 0.7103294134140015, - 0.7114042639732361, - 0.7117162346839905, - 0.7114042639732361, - 0.7103294134140015, - 0.7080517411231995, - 0.7038049101829529, - 0.6965983510017395, - 0.685564398765564, - 0.6704285740852356, - 0.7881003022193909, - 0.8074257969856262, - 0.8226772546768188, - 0.8337063789367676, - 0.84099942445755, - 0.845384418964386, - 0.8476598262786865, - 0.8483577370643616, - 0.8476598262786865, - 0.845384418964386, - 0.84099942445755, - 0.8337063789367676, - 0.8226772546768188, - 0.8074257969856262, - 0.7881003022193909, - 0.8965396285057068, - 0.9194503426551819, - 0.9386000037193298, - 0.953528642654419, - 0.9642863273620605, - 0.9713258743286133, - 0.9752376675605774, - 0.976484477519989, - 0.9752376675605774, - 0.9713258743286133, - 0.9642863273620605, - 0.953528642654419, - 0.9386000037193298, - 0.9194503426551819, - 0.8965396285057068 - ], - "xaxis": "x2", - "y": [ - -0.8965396285057068, - -0.7881003022193909, - -0.6704285740852356, - -0.5448734760284424, - -0.41326552629470825, - -0.27752166986465454, - -0.13931962847709656, - -4.3652256920267973e-8, - 0.13931962847709656, - 0.27752166986465454, - 0.41326552629470825, - 0.5448734760284424, - 0.6704285740852356, - 0.7881003022193909, - 0.8965396285057068, - -0.9194503426551819, - -0.8074257969856262, - -0.685564398765564, - -0.5558041930198669, - -0.42049968242645264, - -0.28179478645324707, - -0.14127659797668457, - -4.4245304309242783e-8, - 0.14127659797668457, - 0.28179478645324707, - 0.42049968242645264, - 0.5558041930198669, - 0.685564398765564, - 0.8074257969856262, - 0.9194503426551819, - -0.9386000037193298, - -0.8226772546768188, - -0.6965983510017395, - -0.5630438923835754, - -0.42483100295066833, - -0.2841317355632782, - -0.14228081703186035, - -4.454267354958574e-8, - 0.14228081703186035, - 0.2841317355632782, - 0.42483100295066833, - 0.5630438923835754, - 0.6965983510017395, - 0.8226772546768188, - 0.9386000037193298, - -0.953528642654419, - -0.8337063789367676, - -0.7038049101829529, - -0.5672299265861511, - -0.42702972888946533, - -0.28518161177635193, - -0.1426927149295807, - -4.466054193130731e-8, - 0.1426927149295807, - 0.28518161177635193, - 0.42702972888946533, - 0.5672299265861511, - 0.7038049101829529, - 0.8337063789367676, - 0.953528642654419, - -0.9642863273620605, - -0.84099942445755, - -0.7080517411231995, - -0.5693729519844055, - -0.42798686027526855, - -0.2855665981769562, - -0.14282342791557312, - -4.469579906185572e-8, - 0.14282342791557312, - 0.2855665981769562, - 0.42798686027526855, - 0.5693729519844055, - 0.7080517411231995, - 0.84099942445755, - 0.9642863273620605, - -0.9713258743286133, - -0.845384418964386, - -0.7103294134140015, - -0.5703632235527039, - -0.42834988236427307, - -0.28567975759506226, - -0.14285288751125336, - -4.4702808565943997e-8, - 0.14285288751125336, - 0.28567975759506226, - 0.42834988236427307, - 0.5703632235527039, - 0.7103294134140015, - 0.845384418964386, - 0.9713258743286133, - -0.9752376675605774, - -0.8476598262786865, - -0.7114042639732361, - -0.5707709789276123, - -0.4284703731536865, - -0.2857058346271515, - -0.14285683631896973, - -4.470347292340193e-8, - 0.14285683631896973, - 0.2857058346271515, - 0.4284703731536865, - 0.5707709789276123, - 0.7114042639732361, - 0.8476598262786865, - 0.9752376675605774, - -0.976484477519989, - -0.8483577370643616, - -0.7117162346839905, - -0.5708796381950378, - -0.4284977316856384, - -0.285709947347641, - -0.14285707473754883, - -4.470348358154297e-8, - 0.14285707473754883, - 0.285709947347641, - 0.4284977316856384, - 0.5708796381950378, - 0.7117162346839905, - 0.8483577370643616, - 0.976484477519989, - -0.9752376675605774, - -0.8476598262786865, - -0.7114042639732361, - -0.5707709789276123, - -0.4284703731536865, - -0.2857058346271515, - -0.14285683631896973, - -4.470347292340193e-8, - 0.14285683631896973, - 0.2857058346271515, - 0.4284703731536865, - 0.5707709789276123, - 0.7114042639732361, - 0.8476598262786865, - 0.9752376675605774, - -0.9713258743286133, - -0.845384418964386, - -0.7103294134140015, - -0.5703632235527039, - -0.42834988236427307, - -0.28567975759506226, - -0.14285288751125336, - -4.4702808565943997e-8, - 0.14285288751125336, - 0.28567975759506226, - 0.42834988236427307, - 0.5703632235527039, - 0.7103294134140015, - 0.845384418964386, - 0.9713258743286133, - -0.9642863273620605, - -0.84099942445755, - -0.7080517411231995, - -0.5693729519844055, - -0.42798686027526855, - -0.2855665981769562, - -0.14282342791557312, - -4.469579906185572e-8, - 0.14282342791557312, - 0.2855665981769562, - 0.42798686027526855, - 0.5693729519844055, - 0.7080517411231995, - 0.84099942445755, - 0.9642863273620605, - -0.953528642654419, - -0.8337063789367676, - -0.7038049101829529, - -0.5672299265861511, - -0.42702972888946533, - -0.28518161177635193, - -0.1426927149295807, - -4.466054193130731e-8, - 0.1426927149295807, - 0.28518161177635193, - 0.42702972888946533, - 0.5672299265861511, - 0.7038049101829529, - 0.8337063789367676, - 0.953528642654419, - -0.9386000037193298, - -0.8226772546768188, - -0.6965983510017395, - -0.5630438923835754, - -0.42483100295066833, - -0.2841317355632782, - -0.14228081703186035, - -4.454267354958574e-8, - 0.14228081703186035, - 0.2841317355632782, - 0.42483100295066833, - 0.5630438923835754, - 0.6965983510017395, - 0.8226772546768188, - 0.9386000037193298, - -0.9194503426551819, - -0.8074257969856262, - -0.685564398765564, - -0.5558041930198669, - -0.42049968242645264, - -0.28179478645324707, - -0.14127659797668457, - -4.4245304309242783e-8, - 0.14127659797668457, - 0.28179478645324707, - 0.42049968242645264, - 0.5558041930198669, - 0.685564398765564, - 0.8074257969856262, - 0.9194503426551819, - -0.8965396285057068, - -0.7881003022193909, - -0.6704285740852356, - -0.5448734760284424, - -0.41326552629470825, - -0.27752166986465454, - -0.13931962847709656, - -4.3652256920267973e-8, - 0.13931962847709656, - 0.27752166986465454, - 0.41326552629470825, - 0.5448734760284424, - 0.6704285740852356, - 0.7881003022193909, - 0.8965396285057068 - ], - "yaxis": "y2" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": true, - "x": [ - -0.8920885920524597, - -0.9155542254447937, - -0.9353019595146179, - -0.9508056640625, - -0.9620506763458252, - -0.9694483876228333, - -0.9735742807388306, - -0.9748917818069458, - -0.9735742807388306, - -0.9694483876228333, - -0.9620506763458252, - -0.9508056640625, - -0.9353019595146179, - -0.9155542254447937, - -0.8920885920524597, - -0.7847607731819153, - -0.8047030568122864, - -0.8205793499946594, - -0.8321585655212402, - -0.8398709893226624, - -0.8445329666137695, - -0.846960186958313, - -0.8477057814598083, - -0.846960186958313, - -0.8445329666137695, - -0.8398709893226624, - -0.8321585655212402, - -0.8205793499946594, - -0.8047030568122864, - -0.7847607731819153, - -0.6680728197097778, - -0.683816134929657, - -0.6954101920127869, - -0.7030510306358337, - -0.7075840830802917, - -0.7100257277488708, - -0.7111806273460388, - -0.7115161418914795, - -0.7111806273460388, - -0.7100257277488708, - -0.7075840830802917, - -0.7030510306358337, - -0.6954101920127869, - -0.683816134929657, - -0.6680728197097778, - -0.543317437171936, - -0.5547723770141602, - -0.562440812587738, - -0.5669118165969849, - -0.5692128539085388, - -0.5702791810035706, - -0.5707188844680786, - -0.5708360075950623, - -0.5707188844680786, - -0.5702791810035706, - -0.5692128539085388, - -0.5669118165969849, - -0.562440812587738, - -0.5547723770141602, - -0.543317437171936, - -0.41230741143226624, - -0.4199354648590088, - -0.4245504140853882, - -0.4269096255302429, - -0.42794060707092285, - -0.42833223938941956, - -0.42846229672431946, - -0.42849183082580566, - -0.42846229672431946, - -0.42833223938941956, - -0.42794060707092285, - -0.4269096255302429, - -0.4245504140853882, - -0.4199354648590088, - -0.41230741143226624, - -0.2769852578639984, - -0.28151097893714905, - -0.28401026129722595, - -0.2851395905017853, - -0.28555482625961304, - -0.2856770157814026, - -0.28570517897605896, - -0.28570958971977234, - -0.28570517897605896, - -0.2856770157814026, - -0.28555482625961304, - -0.2851395905017853, - -0.28401026129722595, - -0.28151097893714905, - -0.2769852578639984, - -0.13908199965953827, - -0.1411599963903427, - -0.14223608374595642, - -0.14267969131469727, - -0.14282073080539703, - -0.1428525596857071, - -0.14285682141780853, - -0.14285707473754883, - -0.14285682141780853, - -0.1428525596857071, - -0.14282073080539703, - -0.14267969131469727, - -0.14223608374595642, - -0.1411599963903427, - -0.13908199965953827, - -4.358105698543113e-8, - -4.4211301286622984e-8, - -4.453014668115429e-8, - -4.465713132617566e-8, - -4.469518088967561e-8, - -4.4702755275238815e-8, - -4.470347292340193e-8, - -4.470348358154297e-8, - -4.470347292340193e-8, - -4.4702755275238815e-8, - -4.469518088967561e-8, - -4.465713132617566e-8, - -4.453014668115429e-8, - -4.4211301286622984e-8, - -4.358105698543113e-8, - 0.13908199965953827, - 0.1411599963903427, - 0.14223608374595642, - 0.14267969131469727, - 0.14282073080539703, - 0.1428525596857071, - 0.14285682141780853, - 0.14285707473754883, - 0.14285682141780853, - 0.1428525596857071, - 0.14282073080539703, - 0.14267969131469727, - 0.14223608374595642, - 0.1411599963903427, - 0.13908199965953827, - 0.2769852578639984, - 0.28151097893714905, - 0.28401026129722595, - 0.2851395905017853, - 0.28555482625961304, - 0.2856770157814026, - 0.28570517897605896, - 0.28570958971977234, - 0.28570517897605896, - 0.2856770157814026, - 0.28555482625961304, - 0.2851395905017853, - 0.28401026129722595, - 0.28151097893714905, - 0.2769852578639984, - 0.41230741143226624, - 0.4199354648590088, - 0.4245504140853882, - 0.4269096255302429, - 0.42794060707092285, - 0.42833223938941956, - 0.42846229672431946, - 0.42849183082580566, - 0.42846229672431946, - 0.42833223938941956, - 0.42794060707092285, - 0.4269096255302429, - 0.4245504140853882, - 0.4199354648590088, - 0.41230741143226624, - 0.543317437171936, - 0.5547723770141602, - 0.562440812587738, - 0.5669118165969849, - 0.5692128539085388, - 0.5702791810035706, - 0.5707188844680786, - 0.5708360075950623, - 0.5707188844680786, - 0.5702791810035706, - 0.5692128539085388, - 0.5669118165969849, - 0.562440812587738, - 0.5547723770141602, - 0.543317437171936, - 0.6680728197097778, - 0.683816134929657, - 0.6954101920127869, - 0.7030510306358337, - 0.7075840830802917, - 0.7100257277488708, - 0.7111806273460388, - 0.7115161418914795, - 0.7111806273460388, - 0.7100257277488708, - 0.7075840830802917, - 0.7030510306358337, - 0.6954101920127869, - 0.683816134929657, - 0.6680728197097778, - 0.7847607731819153, - 0.8047030568122864, - 0.8205793499946594, - 0.8321585655212402, - 0.8398709893226624, - 0.8445329666137695, - 0.846960186958313, - 0.8477057814598083, - 0.846960186958313, - 0.8445329666137695, - 0.8398709893226624, - 0.8321585655212402, - 0.8205793499946594, - 0.8047030568122864, - 0.7847607731819153, - 0.8920885920524597, - 0.9155542254447937, - 0.9353019595146179, - 0.9508056640625, - 0.9620506763458252, - 0.9694483876228333, - 0.9735742807388306, - 0.9748917818069458, - 0.9735742807388306, - 0.9694483876228333, - 0.9620506763458252, - 0.9508056640625, - 0.9353019595146179, - 0.9155542254447937, - 0.8920885920524597 - ], - "xaxis": "x2", - "y": [ - -0.8920885920524597, - -0.7847607731819153, - -0.6680728197097778, - -0.543317437171936, - -0.41230741143226624, - -0.2769852578639984, - -0.13908199965953827, - -4.358105698543113e-8, - 0.13908199965953827, - 0.2769852578639984, - 0.41230741143226624, - 0.543317437171936, - 0.6680728197097778, - 0.7847607731819153, - 0.8920885920524597, - -0.9155542254447937, - -0.8047030568122864, - -0.683816134929657, - -0.5547723770141602, - -0.4199354648590088, - -0.28151097893714905, - -0.1411599963903427, - -4.4211301286622984e-8, - 0.1411599963903427, - 0.28151097893714905, - 0.4199354648590088, - 0.5547723770141602, - 0.683816134929657, - 0.8047030568122864, - 0.9155542254447937, - -0.9353019595146179, - -0.8205793499946594, - -0.6954101920127869, - -0.562440812587738, - -0.4245504140853882, - -0.28401026129722595, - -0.14223608374595642, - -4.453014668115429e-8, - 0.14223608374595642, - 0.28401026129722595, - 0.4245504140853882, - 0.562440812587738, - 0.6954101920127869, - 0.8205793499946594, - 0.9353019595146179, - -0.9508056640625, - -0.8321585655212402, - -0.7030510306358337, - -0.5669118165969849, - -0.4269096255302429, - -0.2851395905017853, - -0.14267969131469727, - -4.465713132617566e-8, - 0.14267969131469727, - 0.2851395905017853, - 0.4269096255302429, - 0.5669118165969849, - 0.7030510306358337, - 0.8321585655212402, - 0.9508056640625, - -0.9620506763458252, - -0.8398709893226624, - -0.7075840830802917, - -0.5692128539085388, - -0.42794060707092285, - -0.28555482625961304, - -0.14282073080539703, - -4.469518088967561e-8, - 0.14282073080539703, - 0.28555482625961304, - 0.42794060707092285, - 0.5692128539085388, - 0.7075840830802917, - 0.8398709893226624, - 0.9620506763458252, - -0.9694483876228333, - -0.8445329666137695, - -0.7100257277488708, - -0.5702791810035706, - -0.42833223938941956, - -0.2856770157814026, - -0.1428525596857071, - -4.4702755275238815e-8, - 0.1428525596857071, - 0.2856770157814026, - 0.42833223938941956, - 0.5702791810035706, - 0.7100257277488708, - 0.8445329666137695, - 0.9694483876228333, - -0.9735742807388306, - -0.846960186958313, - -0.7111806273460388, - -0.5707188844680786, - -0.42846229672431946, - -0.28570517897605896, - -0.14285682141780853, - -4.470347292340193e-8, - 0.14285682141780853, - 0.28570517897605896, - 0.42846229672431946, - 0.5707188844680786, - 0.7111806273460388, - 0.846960186958313, - 0.9735742807388306, - -0.9748917818069458, - -0.8477057814598083, - -0.7115161418914795, - -0.5708360075950623, - -0.42849183082580566, - -0.28570958971977234, - -0.14285707473754883, - -4.470348358154297e-8, - 0.14285707473754883, - 0.28570958971977234, - 0.42849183082580566, - 0.5708360075950623, - 0.7115161418914795, - 0.8477057814598083, - 0.9748917818069458, - -0.9735742807388306, - -0.846960186958313, - -0.7111806273460388, - -0.5707188844680786, - -0.42846229672431946, - -0.28570517897605896, - -0.14285682141780853, - -4.470347292340193e-8, - 0.14285682141780853, - 0.28570517897605896, - 0.42846229672431946, - 0.5707188844680786, - 0.7111806273460388, - 0.846960186958313, - 0.9735742807388306, - -0.9694483876228333, - -0.8445329666137695, - -0.7100257277488708, - -0.5702791810035706, - -0.42833223938941956, - -0.2856770157814026, - -0.1428525596857071, - -4.4702755275238815e-8, - 0.1428525596857071, - 0.2856770157814026, - 0.42833223938941956, - 0.5702791810035706, - 0.7100257277488708, - 0.8445329666137695, - 0.9694483876228333, - -0.9620506763458252, - -0.8398709893226624, - -0.7075840830802917, - -0.5692128539085388, - -0.42794060707092285, - -0.28555482625961304, - -0.14282073080539703, - -4.469518088967561e-8, - 0.14282073080539703, - 0.28555482625961304, - 0.42794060707092285, - 0.5692128539085388, - 0.7075840830802917, - 0.8398709893226624, - 0.9620506763458252, - -0.9508056640625, - -0.8321585655212402, - -0.7030510306358337, - -0.5669118165969849, - -0.4269096255302429, - -0.2851395905017853, - -0.14267969131469727, - -4.465713132617566e-8, - 0.14267969131469727, - 0.2851395905017853, - 0.4269096255302429, - 0.5669118165969849, - 0.7030510306358337, - 0.8321585655212402, - 0.9508056640625, - -0.9353019595146179, - -0.8205793499946594, - -0.6954101920127869, - -0.562440812587738, - -0.4245504140853882, - -0.28401026129722595, - -0.14223608374595642, - -4.453014668115429e-8, - 0.14223608374595642, - 0.28401026129722595, - 0.4245504140853882, - 0.562440812587738, - 0.6954101920127869, - 0.8205793499946594, - 0.9353019595146179, - -0.9155542254447937, - -0.8047030568122864, - -0.683816134929657, - -0.5547723770141602, - -0.4199354648590088, - -0.28151097893714905, - -0.1411599963903427, - -4.4211301286622984e-8, - 0.1411599963903427, - 0.28151097893714905, - 0.4199354648590088, - 0.5547723770141602, - 0.683816134929657, - 0.8047030568122864, - 0.9155542254447937, - -0.8920885920524597, - -0.7847607731819153, - -0.6680728197097778, - -0.543317437171936, - -0.41230741143226624, - -0.2769852578639984, - -0.13908199965953827, - -4.358105698543113e-8, - 0.13908199965953827, - 0.2769852578639984, - 0.41230741143226624, - 0.543317437171936, - 0.6680728197097778, - 0.7847607731819153, - 0.8920885920524597 - ], - "yaxis": "y2" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.887874186038971, - -0.9118421077728271, - -0.9321383237838745, - -0.9481761455535889, - -0.9598793387413025, - -0.967616856098175, - -0.9719472527503967, - -0.9733324646949768, - -0.9719472527503967, - -0.967616856098175, - -0.9598793387413025, - -0.9481761455535889, - -0.9321383237838745, - -0.9118421077728271, - -0.887874186038971, - -0.7815789580345154, - -0.802087664604187, - -0.8185468316078186, - -0.8306472301483154, - -0.8387623429298401, - -0.84369295835495, - -0.846268355846405, - -0.8470606803894043, - -0.846268355846405, - -0.84369295835495, - -0.8387623429298401, - -0.8306472301483154, - -0.8185468316078186, - -0.802087664604187, - -0.7815789580345154, - -0.6658130884170532, - -0.6821223497390747, - -0.6942480206489563, - -0.7023078203201294, - -0.7071205377578735, - -0.709723711013794, - -0.7109578847885132, - -0.7113167643547058, - -0.7109578847885132, - -0.709723711013794, - -0.7071205377578735, - -0.7023078203201294, - -0.6942480206489563, - -0.6821223497390747, - -0.6658130884170532, - -0.541814923286438, - -0.553764820098877, - -0.5618462562561035, - -0.5665961503982544, - -0.5690533518791199, - -0.5701953172683716, - -0.5706667304039001, - -0.5707924365997314, - -0.5706667304039001, - -0.5701953172683716, - -0.5690533518791199, - -0.5665961503982544, - -0.5618462562561035, - -0.553764820098877, - -0.541814923286438, - -0.41137683391571045, - -0.41938114166259766, - -0.4242722988128662, - -0.4267900288105011, - -0.42789435386657715, - -0.42831456661224365, - -0.4284542500972748, - -0.4284859597682953, - -0.4284542500972748, - -0.42831456661224365, - -0.42789435386657715, - -0.4267900288105011, - -0.4242722988128662, - -0.41938114166259766, - -0.41137683391571045, - -0.2764619290828705, - -0.28123095631599426, - -0.2838894724845886, - -0.2850976586341858, - -0.2855430543422699, - -0.28567424416542053, - -0.28570449352264404, - -0.2857092618942261, - -0.28570449352264404, - -0.28567424416542053, - -0.2855430543422699, - -0.2850976586341858, - -0.2838894724845886, - -0.28123095631599426, - -0.2764619290828705, - -0.13884955644607544, - -0.14104469120502472, - -0.142191544175148, - -0.14266665279865265, - -0.14281804859638214, - -0.14285221695899963, - -0.14285679161548615, - -0.14285707473754883, - -0.14285679161548615, - -0.14285221695899963, - -0.14281804859638214, - -0.14266665279865265, - -0.142191544175148, - -0.14104469120502472, - -0.13884955644607544, - -4.351134919033939e-8, - -4.417765708808474e-8, - -4.4517673103428024e-8, - -4.465372427375769e-8, - -4.469456982292286e-8, - -4.470270198453363e-8, - -4.470347292340193e-8, - -4.470348358154297e-8, - -4.470347292340193e-8, - -4.470270198453363e-8, - -4.469456982292286e-8, - -4.465372427375769e-8, - -4.4517673103428024e-8, - -4.417765708808474e-8, - -4.351134919033939e-8, - 0.13884955644607544, - 0.14104469120502472, - 0.142191544175148, - 0.14266665279865265, - 0.14281804859638214, - 0.14285221695899963, - 0.14285679161548615, - 0.14285707473754883, - 0.14285679161548615, - 0.14285221695899963, - 0.14281804859638214, - 0.14266665279865265, - 0.142191544175148, - 0.14104469120502472, - 0.13884955644607544, - 0.2764619290828705, - 0.28123095631599426, - 0.2838894724845886, - 0.2850976586341858, - 0.2855430543422699, - 0.28567424416542053, - 0.28570449352264404, - 0.2857092618942261, - 0.28570449352264404, - 0.28567424416542053, - 0.2855430543422699, - 0.2850976586341858, - 0.2838894724845886, - 0.28123095631599426, - 0.2764619290828705, - 0.41137683391571045, - 0.41938114166259766, - 0.4242722988128662, - 0.4267900288105011, - 0.42789435386657715, - 0.42831456661224365, - 0.4284542500972748, - 0.4284859597682953, - 0.4284542500972748, - 0.42831456661224365, - 0.42789435386657715, - 0.4267900288105011, - 0.4242722988128662, - 0.41938114166259766, - 0.41137683391571045, - 0.541814923286438, - 0.553764820098877, - 0.5618462562561035, - 0.5665961503982544, - 0.5690533518791199, - 0.5701953172683716, - 0.5706667304039001, - 0.5707924365997314, - 0.5706667304039001, - 0.5701953172683716, - 0.5690533518791199, - 0.5665961503982544, - 0.5618462562561035, - 0.553764820098877, - 0.541814923286438, - 0.6658130884170532, - 0.6821223497390747, - 0.6942480206489563, - 0.7023078203201294, - 0.7071205377578735, - 0.709723711013794, - 0.7109578847885132, - 0.7113167643547058, - 0.7109578847885132, - 0.709723711013794, - 0.7071205377578735, - 0.7023078203201294, - 0.6942480206489563, - 0.6821223497390747, - 0.6658130884170532, - 0.7815789580345154, - 0.802087664604187, - 0.8185468316078186, - 0.8306472301483154, - 0.8387623429298401, - 0.84369295835495, - 0.846268355846405, - 0.8470606803894043, - 0.846268355846405, - 0.84369295835495, - 0.8387623429298401, - 0.8306472301483154, - 0.8185468316078186, - 0.802087664604187, - 0.7815789580345154, - 0.887874186038971, - 0.9118421077728271, - 0.9321383237838745, - 0.9481761455535889, - 0.9598793387413025, - 0.967616856098175, - 0.9719472527503967, - 0.9733324646949768, - 0.9719472527503967, - 0.967616856098175, - 0.9598793387413025, - 0.9481761455535889, - 0.9321383237838745, - 0.9118421077728271, - 0.887874186038971 - ], - "xaxis": "x2", - "y": [ - -0.887874186038971, - -0.7815789580345154, - -0.6658130884170532, - -0.541814923286438, - -0.41137683391571045, - -0.2764619290828705, - -0.13884955644607544, - -4.351134919033939e-8, - 0.13884955644607544, - 0.2764619290828705, - 0.41137683391571045, - 0.541814923286438, - 0.6658130884170532, - 0.7815789580345154, - 0.887874186038971, - -0.9118421077728271, - -0.802087664604187, - -0.6821223497390747, - -0.553764820098877, - -0.41938114166259766, - -0.28123095631599426, - -0.14104469120502472, - -4.417765708808474e-8, - 0.14104469120502472, - 0.28123095631599426, - 0.41938114166259766, - 0.553764820098877, - 0.6821223497390747, - 0.802087664604187, - 0.9118421077728271, - -0.9321383237838745, - -0.8185468316078186, - -0.6942480206489563, - -0.5618462562561035, - -0.4242722988128662, - -0.2838894724845886, - -0.142191544175148, - -4.4517673103428024e-8, - 0.142191544175148, - 0.2838894724845886, - 0.4242722988128662, - 0.5618462562561035, - 0.6942480206489563, - 0.8185468316078186, - 0.9321383237838745, - -0.9481761455535889, - -0.8306472301483154, - -0.7023078203201294, - -0.5665961503982544, - -0.4267900288105011, - -0.2850976586341858, - -0.14266665279865265, - -4.465372427375769e-8, - 0.14266665279865265, - 0.2850976586341858, - 0.4267900288105011, - 0.5665961503982544, - 0.7023078203201294, - 0.8306472301483154, - 0.9481761455535889, - -0.9598793387413025, - -0.8387623429298401, - -0.7071205377578735, - -0.5690533518791199, - -0.42789435386657715, - -0.2855430543422699, - -0.14281804859638214, - -4.469456982292286e-8, - 0.14281804859638214, - 0.2855430543422699, - 0.42789435386657715, - 0.5690533518791199, - 0.7071205377578735, - 0.8387623429298401, - 0.9598793387413025, - -0.967616856098175, - -0.84369295835495, - -0.709723711013794, - -0.5701953172683716, - -0.42831456661224365, - -0.28567424416542053, - -0.14285221695899963, - -4.470270198453363e-8, - 0.14285221695899963, - 0.28567424416542053, - 0.42831456661224365, - 0.5701953172683716, - 0.709723711013794, - 0.84369295835495, - 0.967616856098175, - -0.9719472527503967, - -0.846268355846405, - -0.7109578847885132, - -0.5706667304039001, - -0.4284542500972748, - -0.28570449352264404, - -0.14285679161548615, - -4.470347292340193e-8, - 0.14285679161548615, - 0.28570449352264404, - 0.4284542500972748, - 0.5706667304039001, - 0.7109578847885132, - 0.846268355846405, - 0.9719472527503967, - -0.9733324646949768, - -0.8470606803894043, - -0.7113167643547058, - -0.5707924365997314, - -0.4284859597682953, - -0.2857092618942261, - -0.14285707473754883, - -4.470348358154297e-8, - 0.14285707473754883, - 0.2857092618942261, - 0.4284859597682953, - 0.5707924365997314, - 0.7113167643547058, - 0.8470606803894043, - 0.9733324646949768, - -0.9719472527503967, - -0.846268355846405, - -0.7109578847885132, - -0.5706667304039001, - -0.4284542500972748, - -0.28570449352264404, - -0.14285679161548615, - -4.470347292340193e-8, - 0.14285679161548615, - 0.28570449352264404, - 0.4284542500972748, - 0.5706667304039001, - 0.7109578847885132, - 0.846268355846405, - 0.9719472527503967, - -0.967616856098175, - -0.84369295835495, - -0.709723711013794, - -0.5701953172683716, - -0.42831456661224365, - -0.28567424416542053, - -0.14285221695899963, - -4.470270198453363e-8, - 0.14285221695899963, - 0.28567424416542053, - 0.42831456661224365, - 0.5701953172683716, - 0.709723711013794, - 0.84369295835495, - 0.967616856098175, - -0.9598793387413025, - -0.8387623429298401, - -0.7071205377578735, - -0.5690533518791199, - -0.42789435386657715, - -0.2855430543422699, - -0.14281804859638214, - -4.469456982292286e-8, - 0.14281804859638214, - 0.2855430543422699, - 0.42789435386657715, - 0.5690533518791199, - 0.7071205377578735, - 0.8387623429298401, - 0.9598793387413025, - -0.9481761455535889, - -0.8306472301483154, - -0.7023078203201294, - -0.5665961503982544, - -0.4267900288105011, - -0.2850976586341858, - -0.14266665279865265, - -4.465372427375769e-8, - 0.14266665279865265, - 0.2850976586341858, - 0.4267900288105011, - 0.5665961503982544, - 0.7023078203201294, - 0.8306472301483154, - 0.9481761455535889, - -0.9321383237838745, - -0.8185468316078186, - -0.6942480206489563, - -0.5618462562561035, - -0.4242722988128662, - -0.2838894724845886, - -0.142191544175148, - -4.4517673103428024e-8, - 0.142191544175148, - 0.2838894724845886, - 0.4242722988128662, - 0.5618462562561035, - 0.6942480206489563, - 0.8185468316078186, - 0.9321383237838745, - -0.9118421077728271, - -0.802087664604187, - -0.6821223497390747, - -0.553764820098877, - -0.41938114166259766, - -0.28123095631599426, - -0.14104469120502472, - -4.417765708808474e-8, - 0.14104469120502472, - 0.28123095631599426, - 0.41938114166259766, - 0.553764820098877, - 0.6821223497390747, - 0.802087664604187, - 0.9118421077728271, - -0.887874186038971, - -0.7815789580345154, - -0.6658130884170532, - -0.541814923286438, - -0.41137683391571045, - -0.2764619290828705, - -0.13884955644607544, - -4.351134919033939e-8, - 0.13884955644607544, - 0.2764619290828705, - 0.41137683391571045, - 0.541814923286438, - 0.6658130884170532, - 0.7815789580345154, - 0.887874186038971 - ], - "yaxis": "y2" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8838723301887512, - -0.9082971215248108, - -0.9290981888771057, - -0.9456335306167603, - -0.9577683210372925, - -0.9658288359642029, - -0.9703547358512878, - -0.9718050360679626, - -0.9703547358512878, - -0.9658288359642029, - -0.9577683210372925, - -0.9456335306167603, - -0.9290981888771057, - -0.9082971215248108, - -0.8838723301887512, - -0.7785403728485107, - -0.79957115650177, - -0.8165755867958069, - -0.8291705846786499, - -0.8376727104187012, - -0.8428639769554138, - -0.8455840349197388, - -0.8464220762252808, - -0.8455840349197388, - -0.8428639769554138, - -0.8376727104187012, - -0.8291705846786499, - -0.8165755867958069, - -0.79957115650177, - -0.7785403728485107, - -0.6636415719985962, - -0.6804796457290649, - -0.6931105256080627, - -0.701574981212616, - -0.7066612243652344, - -0.7094235420227051, - -0.710736095905304, - -0.711118221282959, - -0.710736095905304, - -0.7094235420227051, - -0.7066612243652344, - -0.701574981212616, - -0.6931105256080627, - -0.6804796457290649, - -0.6636415719985962, - -0.5403620004653931, - -0.5527803301811218, - -0.561259925365448, - -0.5662828683853149, - -0.5688945651054382, - -0.5701115727424622, - -0.570614755153656, - -0.5707489848136902, - -0.570614755153656, - -0.5701115727424622, - -0.5688945651054382, - -0.5662828683853149, - -0.561259925365448, - -0.5527803301811218, - -0.5403620004653931, - -0.4104720950126648, - -0.4188363254070282, - -0.4239966869354248, - -0.4266709089279175, - -0.427848219871521, - -0.4282969832420349, - -0.4284461736679077, - -0.4284800887107849, - -0.4284461736679077, - -0.4282969832420349, - -0.427848219871521, - -0.4266709089279175, - -0.4239966869354248, - -0.4188363254070282, - -0.4104720950126648, - -0.275951087474823, - -0.28095462918281555, - -0.2837693989276886, - -0.2850557863712311, - -0.28553131222724915, - -0.28567150235176086, - -0.2857038080692291, - -0.2857089340686798, - -0.2857038080692291, - -0.28567150235176086, - -0.28553131222724915, - -0.2850557863712311, - -0.2837693989276886, - -0.28095462918281555, - -0.275951087474823, - -0.13862207531929016, - -0.140930637717247, - -0.14214718341827393, - -0.1426536589860916, - -0.14281536638736725, - -0.14285187423229218, - -0.14285676181316376, - -0.14285707473754883, - -0.14285676181316376, - -0.14285187423229218, - -0.14281536638736725, - -0.1426536589860916, - -0.14214718341827393, - -0.140930637717247, - -0.13862207531929016, - -4.344306958614652e-8, - -4.414435039734599e-8, - -4.450524571097958e-8, - -4.46503207740534e-8, - -4.4693958756170105e-8, - -4.470264869382845e-8, - -4.470347292340193e-8, - -4.470348358154297e-8, - -4.470347292340193e-8, - -4.470264869382845e-8, - -4.4693958756170105e-8, - -4.46503207740534e-8, - -4.450524571097958e-8, - -4.414435039734599e-8, - -4.344306958614652e-8, - 0.13862207531929016, - 0.140930637717247, - 0.14214718341827393, - 0.1426536589860916, - 0.14281536638736725, - 0.14285187423229218, - 0.14285676181316376, - 0.14285707473754883, - 0.14285676181316376, - 0.14285187423229218, - 0.14281536638736725, - 0.1426536589860916, - 0.14214718341827393, - 0.140930637717247, - 0.13862207531929016, - 0.275951087474823, - 0.28095462918281555, - 0.2837693989276886, - 0.2850557863712311, - 0.28553131222724915, - 0.28567150235176086, - 0.2857038080692291, - 0.2857089340686798, - 0.2857038080692291, - 0.28567150235176086, - 0.28553131222724915, - 0.2850557863712311, - 0.2837693989276886, - 0.28095462918281555, - 0.275951087474823, - 0.4104720950126648, - 0.4188363254070282, - 0.4239966869354248, - 0.4266709089279175, - 0.427848219871521, - 0.4282969832420349, - 0.4284461736679077, - 0.4284800887107849, - 0.4284461736679077, - 0.4282969832420349, - 0.427848219871521, - 0.4266709089279175, - 0.4239966869354248, - 0.4188363254070282, - 0.4104720950126648, - 0.5403620004653931, - 0.5527803301811218, - 0.561259925365448, - 0.5662828683853149, - 0.5688945651054382, - 0.5701115727424622, - 0.570614755153656, - 0.5707489848136902, - 0.570614755153656, - 0.5701115727424622, - 0.5688945651054382, - 0.5662828683853149, - 0.561259925365448, - 0.5527803301811218, - 0.5403620004653931, - 0.6636415719985962, - 0.6804796457290649, - 0.6931105256080627, - 0.701574981212616, - 0.7066612243652344, - 0.7094235420227051, - 0.710736095905304, - 0.711118221282959, - 0.710736095905304, - 0.7094235420227051, - 0.7066612243652344, - 0.701574981212616, - 0.6931105256080627, - 0.6804796457290649, - 0.6636415719985962, - 0.7785403728485107, - 0.79957115650177, - 0.8165755867958069, - 0.8291705846786499, - 0.8376727104187012, - 0.8428639769554138, - 0.8455840349197388, - 0.8464220762252808, - 0.8455840349197388, - 0.8428639769554138, - 0.8376727104187012, - 0.8291705846786499, - 0.8165755867958069, - 0.79957115650177, - 0.7785403728485107, - 0.8838723301887512, - 0.9082971215248108, - 0.9290981888771057, - 0.9456335306167603, - 0.9577683210372925, - 0.9658288359642029, - 0.9703547358512878, - 0.9718050360679626, - 0.9703547358512878, - 0.9658288359642029, - 0.9577683210372925, - 0.9456335306167603, - 0.9290981888771057, - 0.9082971215248108, - 0.8838723301887512 - ], - "xaxis": "x2", - "y": [ - -0.8838723301887512, - -0.7785403728485107, - -0.6636415719985962, - -0.5403620004653931, - -0.4104720950126648, - -0.275951087474823, - -0.13862207531929016, - -4.344306958614652e-8, - 0.13862207531929016, - 0.275951087474823, - 0.4104720950126648, - 0.5403620004653931, - 0.6636415719985962, - 0.7785403728485107, - 0.8838723301887512, - -0.9082971215248108, - -0.79957115650177, - -0.6804796457290649, - -0.5527803301811218, - -0.4188363254070282, - -0.28095462918281555, - -0.140930637717247, - -4.414435039734599e-8, - 0.140930637717247, - 0.28095462918281555, - 0.4188363254070282, - 0.5527803301811218, - 0.6804796457290649, - 0.79957115650177, - 0.9082971215248108, - -0.9290981888771057, - -0.8165755867958069, - -0.6931105256080627, - -0.561259925365448, - -0.4239966869354248, - -0.2837693989276886, - -0.14214718341827393, - -4.450524571097958e-8, - 0.14214718341827393, - 0.2837693989276886, - 0.4239966869354248, - 0.561259925365448, - 0.6931105256080627, - 0.8165755867958069, - 0.9290981888771057, - -0.9456335306167603, - -0.8291705846786499, - -0.701574981212616, - -0.5662828683853149, - -0.4266709089279175, - -0.2850557863712311, - -0.1426536589860916, - -4.46503207740534e-8, - 0.1426536589860916, - 0.2850557863712311, - 0.4266709089279175, - 0.5662828683853149, - 0.701574981212616, - 0.8291705846786499, - 0.9456335306167603, - -0.9577683210372925, - -0.8376727104187012, - -0.7066612243652344, - -0.5688945651054382, - -0.427848219871521, - -0.28553131222724915, - -0.14281536638736725, - -4.4693958756170105e-8, - 0.14281536638736725, - 0.28553131222724915, - 0.427848219871521, - 0.5688945651054382, - 0.7066612243652344, - 0.8376727104187012, - 0.9577683210372925, - -0.9658288359642029, - -0.8428639769554138, - -0.7094235420227051, - -0.5701115727424622, - -0.4282969832420349, - -0.28567150235176086, - -0.14285187423229218, - -4.470264869382845e-8, - 0.14285187423229218, - 0.28567150235176086, - 0.4282969832420349, - 0.5701115727424622, - 0.7094235420227051, - 0.8428639769554138, - 0.9658288359642029, - -0.9703547358512878, - -0.8455840349197388, - -0.710736095905304, - -0.570614755153656, - -0.4284461736679077, - -0.2857038080692291, - -0.14285676181316376, - -4.470347292340193e-8, - 0.14285676181316376, - 0.2857038080692291, - 0.4284461736679077, - 0.570614755153656, - 0.710736095905304, - 0.8455840349197388, - 0.9703547358512878, - -0.9718050360679626, - -0.8464220762252808, - -0.711118221282959, - -0.5707489848136902, - -0.4284800887107849, - -0.2857089340686798, - -0.14285707473754883, - -4.470348358154297e-8, - 0.14285707473754883, - 0.2857089340686798, - 0.4284800887107849, - 0.5707489848136902, - 0.711118221282959, - 0.8464220762252808, - 0.9718050360679626, - -0.9703547358512878, - -0.8455840349197388, - -0.710736095905304, - -0.570614755153656, - -0.4284461736679077, - -0.2857038080692291, - -0.14285676181316376, - -4.470347292340193e-8, - 0.14285676181316376, - 0.2857038080692291, - 0.4284461736679077, - 0.570614755153656, - 0.710736095905304, - 0.8455840349197388, - 0.9703547358512878, - -0.9658288359642029, - -0.8428639769554138, - -0.7094235420227051, - -0.5701115727424622, - -0.4282969832420349, - -0.28567150235176086, - -0.14285187423229218, - -4.470264869382845e-8, - 0.14285187423229218, - 0.28567150235176086, - 0.4282969832420349, - 0.5701115727424622, - 0.7094235420227051, - 0.8428639769554138, - 0.9658288359642029, - -0.9577683210372925, - -0.8376727104187012, - -0.7066612243652344, - -0.5688945651054382, - -0.427848219871521, - -0.28553131222724915, - -0.14281536638736725, - -4.4693958756170105e-8, - 0.14281536638736725, - 0.28553131222724915, - 0.427848219871521, - 0.5688945651054382, - 0.7066612243652344, - 0.8376727104187012, - 0.9577683210372925, - -0.9456335306167603, - -0.8291705846786499, - -0.701574981212616, - -0.5662828683853149, - -0.4266709089279175, - -0.2850557863712311, - -0.1426536589860916, - -4.46503207740534e-8, - 0.1426536589860916, - 0.2850557863712311, - 0.4266709089279175, - 0.5662828683853149, - 0.701574981212616, - 0.8291705846786499, - 0.9456335306167603, - -0.9290981888771057, - -0.8165755867958069, - -0.6931105256080627, - -0.561259925365448, - -0.4239966869354248, - -0.2837693989276886, - -0.14214718341827393, - -4.450524571097958e-8, - 0.14214718341827393, - 0.2837693989276886, - 0.4239966869354248, - 0.561259925365448, - 0.6931105256080627, - 0.8165755867958069, - 0.9290981888771057, - -0.9082971215248108, - -0.79957115650177, - -0.6804796457290649, - -0.5527803301811218, - -0.4188363254070282, - -0.28095462918281555, - -0.140930637717247, - -4.414435039734599e-8, - 0.140930637717247, - 0.28095462918281555, - 0.4188363254070282, - 0.5527803301811218, - 0.6804796457290649, - 0.79957115650177, - 0.9082971215248108, - -0.8838723301887512, - -0.7785403728485107, - -0.6636415719985962, - -0.5403620004653931, - -0.4104720950126648, - -0.275951087474823, - -0.13862207531929016, - -4.344306958614652e-8, - 0.13862207531929016, - 0.275951087474823, - 0.4104720950126648, - 0.5403620004653931, - 0.6636415719985962, - 0.7785403728485107, - 0.8838723301887512 - ], - "yaxis": "y2" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8800623416900635, - -0.9049046039581299, - -0.926172137260437, - -0.94317227602005, - -0.9557142853736877, - -0.9640823006629944, - -0.9687954783439636, - -0.9703080654144287, - -0.9687954783439636, - -0.9640823006629944, - -0.9557142853736877, - -0.94317227602005, - -0.926172137260437, - -0.9049046039581299, - -0.8800623416900635, - -0.7756325006484985, - -0.797146201133728, - -0.8146618604660034, - -0.8277268409729004, - -0.8366014361381531, - -0.842045783996582, - -0.8449071049690247, - -0.8457898497581482, - -0.8449071049690247, - -0.842045783996582, - -0.8366014361381531, - -0.8277268409729004, - -0.8146618604660034, - -0.797146201133728, - -0.7756325006484985, - -0.6615515351295471, - -0.6788848638534546, - -0.6919967532157898, - -0.7008522748947144, - -0.7062057852745056, - -0.7091251015663147, - -0.7105153203010559, - -0.7109204530715942, - -0.7105153203010559, - -0.7091251015663147, - -0.7062057852745056, - -0.7008522748947144, - -0.6919967532157898, - -0.6788848638534546, - -0.6615515351295471, - -0.538955569267273, - -0.5518178343772888, - -0.5606817603111267, - -0.5659719109535217, - -0.5687363147735596, - -0.5700280070304871, - -0.5705628395080566, - -0.5707054734230042, - -0.5705628395080566, - -0.5700280070304871, - -0.5687363147735596, - -0.5659719109535217, - -0.5606817603111267, - -0.5518178343772888, - -0.538955569267273, - -0.40959179401397705, - -0.41830068826675415, - -0.423723429441452, - -0.4265522360801697, - -0.4278021454811096, - -0.4282793700695038, - -0.42843809723854065, - -0.42847418785095215, - -0.42843809723854065, - -0.4282793700695038, - -0.4278021454811096, - -0.4265522360801697, - -0.423723429441452, - -0.41830068826675415, - -0.40959179401397705, - -0.27545204758644104, - -0.28068190813064575, - -0.2836500108242035, - -0.28501400351524353, - -0.2855195701122284, - -0.2856687307357788, - -0.2857031226158142, - -0.28570857644081116, - -0.2857031226158142, - -0.2856687307357788, - -0.2855195701122284, - -0.28501400351524353, - -0.2836500108242035, - -0.28068190813064575, - -0.27545204758644104, - -0.13839931786060333, - -0.1408178061246872, - -0.14210301637649536, - -0.14264068007469177, - -0.14281266927719116, - -0.14285153150558472, - -0.14285674691200256, - -0.14285705983638763, - -0.14285674691200256, - -0.14285153150558472, - -0.14281266927719116, - -0.14264068007469177, - -0.14210301637649536, - -0.1408178061246872, - -0.13839931786060333, - -4.3376150671292635e-8, - -4.411137766169304e-8, - -4.449286805652264e-8, - -4.464691727434911e-8, - -4.469334413670367e-8, - -4.470259540312327e-8, - -4.4703469370688254e-8, - -4.470348358154297e-8, - -4.4703469370688254e-8, - -4.470259540312327e-8, - -4.469334413670367e-8, - -4.464691727434911e-8, - -4.449286805652264e-8, - -4.411137766169304e-8, - -4.3376150671292635e-8, - 0.13839931786060333, - 0.1408178061246872, - 0.14210301637649536, - 0.14264068007469177, - 0.14281266927719116, - 0.14285153150558472, - 0.14285674691200256, - 0.14285705983638763, - 0.14285674691200256, - 0.14285153150558472, - 0.14281266927719116, - 0.14264068007469177, - 0.14210301637649536, - 0.1408178061246872, - 0.13839931786060333, - 0.27545204758644104, - 0.28068190813064575, - 0.2836500108242035, - 0.28501400351524353, - 0.2855195701122284, - 0.2856687307357788, - 0.2857031226158142, - 0.28570857644081116, - 0.2857031226158142, - 0.2856687307357788, - 0.2855195701122284, - 0.28501400351524353, - 0.2836500108242035, - 0.28068190813064575, - 0.27545204758644104, - 0.40959179401397705, - 0.41830068826675415, - 0.423723429441452, - 0.4265522360801697, - 0.4278021454811096, - 0.4282793700695038, - 0.42843809723854065, - 0.42847418785095215, - 0.42843809723854065, - 0.4282793700695038, - 0.4278021454811096, - 0.4265522360801697, - 0.423723429441452, - 0.41830068826675415, - 0.40959179401397705, - 0.538955569267273, - 0.5518178343772888, - 0.5606817603111267, - 0.5659719109535217, - 0.5687363147735596, - 0.5700280070304871, - 0.5705628395080566, - 0.5707054734230042, - 0.5705628395080566, - 0.5700280070304871, - 0.5687363147735596, - 0.5659719109535217, - 0.5606817603111267, - 0.5518178343772888, - 0.538955569267273, - 0.6615515351295471, - 0.6788848638534546, - 0.6919967532157898, - 0.7008522748947144, - 0.7062057852745056, - 0.7091251015663147, - 0.7105153203010559, - 0.7109204530715942, - 0.7105153203010559, - 0.7091251015663147, - 0.7062057852745056, - 0.7008522748947144, - 0.6919967532157898, - 0.6788848638534546, - 0.6615515351295471, - 0.7756325006484985, - 0.797146201133728, - 0.8146618604660034, - 0.8277268409729004, - 0.8366014361381531, - 0.842045783996582, - 0.8449071049690247, - 0.8457898497581482, - 0.8449071049690247, - 0.842045783996582, - 0.8366014361381531, - 0.8277268409729004, - 0.8146618604660034, - 0.797146201133728, - 0.7756325006484985, - 0.8800623416900635, - 0.9049046039581299, - 0.926172137260437, - 0.94317227602005, - 0.9557142853736877, - 0.9640823006629944, - 0.9687954783439636, - 0.9703080654144287, - 0.9687954783439636, - 0.9640823006629944, - 0.9557142853736877, - 0.94317227602005, - 0.926172137260437, - 0.9049046039581299, - 0.8800623416900635 - ], - "xaxis": "x2", - "y": [ - -0.8800623416900635, - -0.7756325006484985, - -0.6615515351295471, - -0.538955569267273, - -0.40959179401397705, - -0.27545204758644104, - -0.13839931786060333, - -4.3376150671292635e-8, - 0.13839931786060333, - 0.27545204758644104, - 0.40959179401397705, - 0.538955569267273, - 0.6615515351295471, - 0.7756325006484985, - 0.8800623416900635, - -0.9049046039581299, - -0.797146201133728, - -0.6788848638534546, - -0.5518178343772888, - -0.41830068826675415, - -0.28068190813064575, - -0.1408178061246872, - -4.411137766169304e-8, - 0.1408178061246872, - 0.28068190813064575, - 0.41830068826675415, - 0.5518178343772888, - 0.6788848638534546, - 0.797146201133728, - 0.9049046039581299, - -0.926172137260437, - -0.8146618604660034, - -0.6919967532157898, - -0.5606817603111267, - -0.423723429441452, - -0.2836500108242035, - -0.14210301637649536, - -4.449286805652264e-8, - 0.14210301637649536, - 0.2836500108242035, - 0.423723429441452, - 0.5606817603111267, - 0.6919967532157898, - 0.8146618604660034, - 0.926172137260437, - -0.94317227602005, - -0.8277268409729004, - -0.7008522748947144, - -0.5659719109535217, - -0.4265522360801697, - -0.28501400351524353, - -0.14264068007469177, - -4.464691727434911e-8, - 0.14264068007469177, - 0.28501400351524353, - 0.4265522360801697, - 0.5659719109535217, - 0.7008522748947144, - 0.8277268409729004, - 0.94317227602005, - -0.9557142853736877, - -0.8366014361381531, - -0.7062057852745056, - -0.5687363147735596, - -0.4278021454811096, - -0.2855195701122284, - -0.14281266927719116, - -4.469334413670367e-8, - 0.14281266927719116, - 0.2855195701122284, - 0.4278021454811096, - 0.5687363147735596, - 0.7062057852745056, - 0.8366014361381531, - 0.9557142853736877, - -0.9640823006629944, - -0.842045783996582, - -0.7091251015663147, - -0.5700280070304871, - -0.4282793700695038, - -0.2856687307357788, - -0.14285153150558472, - -4.470259540312327e-8, - 0.14285153150558472, - 0.2856687307357788, - 0.4282793700695038, - 0.5700280070304871, - 0.7091251015663147, - 0.842045783996582, - 0.9640823006629944, - -0.9687954783439636, - -0.8449071049690247, - -0.7105153203010559, - -0.5705628395080566, - -0.42843809723854065, - -0.2857031226158142, - -0.14285674691200256, - -4.4703469370688254e-8, - 0.14285674691200256, - 0.2857031226158142, - 0.42843809723854065, - 0.5705628395080566, - 0.7105153203010559, - 0.8449071049690247, - 0.9687954783439636, - -0.9703080654144287, - -0.8457898497581482, - -0.7109204530715942, - -0.5707054734230042, - -0.42847418785095215, - -0.28570857644081116, - -0.14285705983638763, - -4.470348358154297e-8, - 0.14285705983638763, - 0.28570857644081116, - 0.42847418785095215, - 0.5707054734230042, - 0.7109204530715942, - 0.8457898497581482, - 0.9703080654144287, - -0.9687954783439636, - -0.8449071049690247, - -0.7105153203010559, - -0.5705628395080566, - -0.42843809723854065, - -0.2857031226158142, - -0.14285674691200256, - -4.4703469370688254e-8, - 0.14285674691200256, - 0.2857031226158142, - 0.42843809723854065, - 0.5705628395080566, - 0.7105153203010559, - 0.8449071049690247, - 0.9687954783439636, - -0.9640823006629944, - -0.842045783996582, - -0.7091251015663147, - -0.5700280070304871, - -0.4282793700695038, - -0.2856687307357788, - -0.14285153150558472, - -4.470259540312327e-8, - 0.14285153150558472, - 0.2856687307357788, - 0.4282793700695038, - 0.5700280070304871, - 0.7091251015663147, - 0.842045783996582, - 0.9640823006629944, - -0.9557142853736877, - -0.8366014361381531, - -0.7062057852745056, - -0.5687363147735596, - -0.4278021454811096, - -0.2855195701122284, - -0.14281266927719116, - -4.469334413670367e-8, - 0.14281266927719116, - 0.2855195701122284, - 0.4278021454811096, - 0.5687363147735596, - 0.7062057852745056, - 0.8366014361381531, - 0.9557142853736877, - -0.94317227602005, - -0.8277268409729004, - -0.7008522748947144, - -0.5659719109535217, - -0.4265522360801697, - -0.28501400351524353, - -0.14264068007469177, - -4.464691727434911e-8, - 0.14264068007469177, - 0.28501400351524353, - 0.4265522360801697, - 0.5659719109535217, - 0.7008522748947144, - 0.8277268409729004, - 0.94317227602005, - -0.926172137260437, - -0.8146618604660034, - -0.6919967532157898, - -0.5606817603111267, - -0.423723429441452, - -0.2836500108242035, - -0.14210301637649536, - -4.449286805652264e-8, - 0.14210301637649536, - 0.2836500108242035, - 0.423723429441452, - 0.5606817603111267, - 0.6919967532157898, - 0.8146618604660034, - 0.926172137260437, - -0.9049046039581299, - -0.797146201133728, - -0.6788848638534546, - -0.5518178343772888, - -0.41830068826675415, - -0.28068190813064575, - -0.1408178061246872, - -4.411137766169304e-8, - 0.1408178061246872, - 0.28068190813064575, - 0.41830068826675415, - 0.5518178343772888, - 0.6788848638534546, - 0.797146201133728, - 0.9049046039581299, - -0.8800623416900635, - -0.7756325006484985, - -0.6615515351295471, - -0.538955569267273, - -0.40959179401397705, - -0.27545204758644104, - -0.13839931786060333, - -4.3376150671292635e-8, - 0.13839931786060333, - 0.27545204758644104, - 0.40959179401397705, - 0.538955569267273, - 0.6615515351295471, - 0.7756325006484985, - 0.8800623416900635 - ], - "yaxis": "y2" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8764266967773438, - -0.9016518592834473, - -0.9233517050743103, - -0.9407870769500732, - -0.95371413230896, - -0.9623751044273376, - -0.9672678709030151, - -0.9688404202461243, - -0.9672678709030151, - -0.9623751044273376, - -0.95371413230896, - -0.9407870769500732, - -0.9233517050743103, - -0.9016518592834473, - -0.8764266967773438, - -0.7728444337844849, - -0.7948061227798462, - -0.812802255153656, - -0.8263148069381714, - -0.8355478048324585, - -0.8412380218505859, - -0.8442373871803284, - -0.8451641201972961, - -0.8442373871803284, - -0.8412380218505859, - -0.8355478048324585, - -0.8263148069381714, - -0.812802255153656, - -0.7948061227798462, - -0.7728444337844849, - -0.6595369577407837, - -0.6773352026939392, - -0.6909056305885315, - -0.7001392245292664, - -0.7057543396949768, - -0.7088282704353333, - -0.7102954983711243, - -0.7107234597206116, - -0.7102954983711243, - -0.7088282704353333, - -0.7057543396949768, - -0.7001392245292664, - -0.6909056305885315, - -0.6773352026939392, - -0.6595369577407837, - -0.5375925898551941, - -0.5508764982223511, - -0.5601113438606262, - -0.5656632781028748, - -0.5685787200927734, - -0.5699447393417358, - -0.5705109238624573, - -0.5706620812416077, - -0.5705109238624573, - -0.5699447393417358, - -0.5685787200927734, - -0.5656632781028748, - -0.5601113438606262, - -0.5508764982223511, - -0.5375925898551941, - -0.40873458981513977, - -0.41777387261390686, - -0.42345258593559265, - -0.4264340400695801, - -0.427756130695343, - -0.42826172709465027, - -0.42843008041381836, - -0.4284683167934418, - -0.42843008041381836, - -0.42826172709465027, - -0.427756130695343, - -0.4264340400695801, - -0.42345258593559265, - -0.41777387261390686, - -0.40873458981513977, - -0.274964302778244, - -0.2804126441478729, - -0.2835312783718109, - -0.2849723696708679, - -0.28550779819488525, - -0.28566598892211914, - -0.2857024371623993, - -0.2857082486152649, - -0.2857024371623993, - -0.28566598892211914, - -0.28550779819488525, - -0.2849723696708679, - -0.2835312783718109, - -0.2804126441478729, - -0.274964302778244, - -0.13818107545375824, - -0.14070619642734528, - -0.1420590579509735, - -0.14262770116329193, - -0.14281000196933746, - -0.14285118877887726, - -0.14285673201084137, - -0.14285705983638763, - -0.14285673201084137, - -0.14285118877887726, - -0.14281000196933746, - -0.14262770116329193, - -0.1420590579509735, - -0.14070619642734528, - -0.13818107545375824, - -4.3310542707786226e-8, - -4.407874243383958e-8, - -4.44805401400572e-8, - -4.4643520880072174e-8, - -4.469273306995092e-8, - -4.4702542112418087e-8, - -4.4703469370688254e-8, - -4.470348358154297e-8, - -4.4703469370688254e-8, - -4.4702542112418087e-8, - -4.469273306995092e-8, - -4.4643520880072174e-8, - -4.44805401400572e-8, - -4.407874243383958e-8, - -4.3310542707786226e-8, - 0.13818107545375824, - 0.14070619642734528, - 0.1420590579509735, - 0.14262770116329193, - 0.14281000196933746, - 0.14285118877887726, - 0.14285673201084137, - 0.14285705983638763, - 0.14285673201084137, - 0.14285118877887726, - 0.14281000196933746, - 0.14262770116329193, - 0.1420590579509735, - 0.14070619642734528, - 0.13818107545375824, - 0.274964302778244, - 0.2804126441478729, - 0.2835312783718109, - 0.2849723696708679, - 0.28550779819488525, - 0.28566598892211914, - 0.2857024371623993, - 0.2857082486152649, - 0.2857024371623993, - 0.28566598892211914, - 0.28550779819488525, - 0.2849723696708679, - 0.2835312783718109, - 0.2804126441478729, - 0.274964302778244, - 0.40873458981513977, - 0.41777387261390686, - 0.42345258593559265, - 0.4264340400695801, - 0.427756130695343, - 0.42826172709465027, - 0.42843008041381836, - 0.4284683167934418, - 0.42843008041381836, - 0.42826172709465027, - 0.427756130695343, - 0.4264340400695801, - 0.42345258593559265, - 0.41777387261390686, - 0.40873458981513977, - 0.5375925898551941, - 0.5508764982223511, - 0.5601113438606262, - 0.5656632781028748, - 0.5685787200927734, - 0.5699447393417358, - 0.5705109238624573, - 0.5706620812416077, - 0.5705109238624573, - 0.5699447393417358, - 0.5685787200927734, - 0.5656632781028748, - 0.5601113438606262, - 0.5508764982223511, - 0.5375925898551941, - 0.6595369577407837, - 0.6773352026939392, - 0.6909056305885315, - 0.7001392245292664, - 0.7057543396949768, - 0.7088282704353333, - 0.7102954983711243, - 0.7107234597206116, - 0.7102954983711243, - 0.7088282704353333, - 0.7057543396949768, - 0.7001392245292664, - 0.6909056305885315, - 0.6773352026939392, - 0.6595369577407837, - 0.7728444337844849, - 0.7948061227798462, - 0.812802255153656, - 0.8263148069381714, - 0.8355478048324585, - 0.8412380218505859, - 0.8442373871803284, - 0.8451641201972961, - 0.8442373871803284, - 0.8412380218505859, - 0.8355478048324585, - 0.8263148069381714, - 0.812802255153656, - 0.7948061227798462, - 0.7728444337844849, - 0.8764266967773438, - 0.9016518592834473, - 0.9233517050743103, - 0.9407870769500732, - 0.95371413230896, - 0.9623751044273376, - 0.9672678709030151, - 0.9688404202461243, - 0.9672678709030151, - 0.9623751044273376, - 0.95371413230896, - 0.9407870769500732, - 0.9233517050743103, - 0.9016518592834473, - 0.8764266967773438 - ], - "xaxis": "x2", - "y": [ - -0.8764266967773438, - -0.7728444337844849, - -0.6595369577407837, - -0.5375925898551941, - -0.40873458981513977, - -0.274964302778244, - -0.13818107545375824, - -4.3310542707786226e-8, - 0.13818107545375824, - 0.274964302778244, - 0.40873458981513977, - 0.5375925898551941, - 0.6595369577407837, - 0.7728444337844849, - 0.8764266967773438, - -0.9016518592834473, - -0.7948061227798462, - -0.6773352026939392, - -0.5508764982223511, - -0.41777387261390686, - -0.2804126441478729, - -0.14070619642734528, - -4.407874243383958e-8, - 0.14070619642734528, - 0.2804126441478729, - 0.41777387261390686, - 0.5508764982223511, - 0.6773352026939392, - 0.7948061227798462, - 0.9016518592834473, - -0.9233517050743103, - -0.812802255153656, - -0.6909056305885315, - -0.5601113438606262, - -0.42345258593559265, - -0.2835312783718109, - -0.1420590579509735, - -4.44805401400572e-8, - 0.1420590579509735, - 0.2835312783718109, - 0.42345258593559265, - 0.5601113438606262, - 0.6909056305885315, - 0.812802255153656, - 0.9233517050743103, - -0.9407870769500732, - -0.8263148069381714, - -0.7001392245292664, - -0.5656632781028748, - -0.4264340400695801, - -0.2849723696708679, - -0.14262770116329193, - -4.4643520880072174e-8, - 0.14262770116329193, - 0.2849723696708679, - 0.4264340400695801, - 0.5656632781028748, - 0.7001392245292664, - 0.8263148069381714, - 0.9407870769500732, - -0.95371413230896, - -0.8355478048324585, - -0.7057543396949768, - -0.5685787200927734, - -0.427756130695343, - -0.28550779819488525, - -0.14281000196933746, - -4.469273306995092e-8, - 0.14281000196933746, - 0.28550779819488525, - 0.427756130695343, - 0.5685787200927734, - 0.7057543396949768, - 0.8355478048324585, - 0.95371413230896, - -0.9623751044273376, - -0.8412380218505859, - -0.7088282704353333, - -0.5699447393417358, - -0.42826172709465027, - -0.28566598892211914, - -0.14285118877887726, - -4.4702542112418087e-8, - 0.14285118877887726, - 0.28566598892211914, - 0.42826172709465027, - 0.5699447393417358, - 0.7088282704353333, - 0.8412380218505859, - 0.9623751044273376, - -0.9672678709030151, - -0.8442373871803284, - -0.7102954983711243, - -0.5705109238624573, - -0.42843008041381836, - -0.2857024371623993, - -0.14285673201084137, - -4.4703469370688254e-8, - 0.14285673201084137, - 0.2857024371623993, - 0.42843008041381836, - 0.5705109238624573, - 0.7102954983711243, - 0.8442373871803284, - 0.9672678709030151, - -0.9688404202461243, - -0.8451641201972961, - -0.7107234597206116, - -0.5706620812416077, - -0.4284683167934418, - -0.2857082486152649, - -0.14285705983638763, - -4.470348358154297e-8, - 0.14285705983638763, - 0.2857082486152649, - 0.4284683167934418, - 0.5706620812416077, - 0.7107234597206116, - 0.8451641201972961, - 0.9688404202461243, - -0.9672678709030151, - -0.8442373871803284, - -0.7102954983711243, - -0.5705109238624573, - -0.42843008041381836, - -0.2857024371623993, - -0.14285673201084137, - -4.4703469370688254e-8, - 0.14285673201084137, - 0.2857024371623993, - 0.42843008041381836, - 0.5705109238624573, - 0.7102954983711243, - 0.8442373871803284, - 0.9672678709030151, - -0.9623751044273376, - -0.8412380218505859, - -0.7088282704353333, - -0.5699447393417358, - -0.42826172709465027, - -0.28566598892211914, - -0.14285118877887726, - -4.4702542112418087e-8, - 0.14285118877887726, - 0.28566598892211914, - 0.42826172709465027, - 0.5699447393417358, - 0.7088282704353333, - 0.8412380218505859, - 0.9623751044273376, - -0.95371413230896, - -0.8355478048324585, - -0.7057543396949768, - -0.5685787200927734, - -0.427756130695343, - -0.28550779819488525, - -0.14281000196933746, - -4.469273306995092e-8, - 0.14281000196933746, - 0.28550779819488525, - 0.427756130695343, - 0.5685787200927734, - 0.7057543396949768, - 0.8355478048324585, - 0.95371413230896, - -0.9407870769500732, - -0.8263148069381714, - -0.7001392245292664, - -0.5656632781028748, - -0.4264340400695801, - -0.2849723696708679, - -0.14262770116329193, - -4.4643520880072174e-8, - 0.14262770116329193, - 0.2849723696708679, - 0.4264340400695801, - 0.5656632781028748, - 0.7001392245292664, - 0.8263148069381714, - 0.9407870769500732, - -0.9233517050743103, - -0.812802255153656, - -0.6909056305885315, - -0.5601113438606262, - -0.42345258593559265, - -0.2835312783718109, - -0.1420590579509735, - -4.44805401400572e-8, - 0.1420590579509735, - 0.2835312783718109, - 0.42345258593559265, - 0.5601113438606262, - 0.6909056305885315, - 0.812802255153656, - 0.9233517050743103, - -0.9016518592834473, - -0.7948061227798462, - -0.6773352026939392, - -0.5508764982223511, - -0.41777387261390686, - -0.2804126441478729, - -0.14070619642734528, - -4.407874243383958e-8, - 0.14070619642734528, - 0.2804126441478729, - 0.41777387261390686, - 0.5508764982223511, - 0.6773352026939392, - 0.7948061227798462, - 0.9016518592834473, - -0.8764266967773438, - -0.7728444337844849, - -0.6595369577407837, - -0.5375925898551941, - -0.40873458981513977, - -0.274964302778244, - -0.13818107545375824, - -4.3310542707786226e-8, - 0.13818107545375824, - 0.274964302778244, - 0.40873458981513977, - 0.5375925898551941, - 0.6595369577407837, - 0.7728444337844849, - 0.8764266967773438 - ], - "yaxis": "y2" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8729499578475952, - -0.8985276222229004, - -0.9206293225288391, - -0.9384732842445374, - -0.9517649412155151, - -0.9607056379318237, - -0.9657705426216125, - -0.9674010276794434, - -0.9657705426216125, - -0.9607056379318237, - -0.9517649412155151, - -0.9384732842445374, - -0.9206293225288391, - -0.8985276222229004, - -0.8729499578475952, - -0.7701665163040161, - -0.7925450801849365, - -0.8109937310218811, - -0.8249328136444092, - -0.8345113396644592, - -0.8404403924942017, - -0.8435746431350708, - -0.8445444703102112, - -0.8435746431350708, - -0.8404403924942017, - -0.8345113396644592, - -0.8249328136444092, - -0.8109937310218811, - -0.7925450801849365, - -0.7701665163040161, - -0.6575924158096313, - -0.6758280992507935, - -0.6898361444473267, - -0.699435830116272, - -0.7053068280220032, - -0.7085332274436951, - -0.7100765109062195, - -0.7105271816253662, - -0.7100765109062195, - -0.7085332274436951, - -0.7053068280220032, - -0.699435830116272, - -0.6898361444473267, - -0.6758280992507935, - -0.6575924158096313, - -0.5362703800201416, - -0.5499551296234131, - -0.5595486164093018, - -0.5653568506240845, - -0.5684217214584351, - -0.5698615312576294, - -0.5704590678215027, - -0.570618748664856, - -0.5704590678215027, - -0.5698615312576294, - -0.5684217214584351, - -0.5653568506240845, - -0.5595486164093018, - -0.5499551296234131, - -0.5362703800201416, - -0.40789926052093506, - -0.4172556400299072, - -0.4231840670108795, - -0.4263162910938263, - -0.42771023511886597, - -0.42824411392211914, - -0.4284220039844513, - -0.428462415933609, - -0.4284220039844513, - -0.42824411392211914, - -0.42771023511886597, - -0.4263162910938263, - -0.4231840670108795, - -0.4172556400299072, - -0.40789926052093506, - -0.27448731660842896, - -0.2801467776298523, - -0.28341326117515564, - -0.2849307656288147, - -0.2854960858821869, - -0.2856632173061371, - -0.28570181131362915, - -0.28570786118507385, - -0.28570181131362915, - -0.2856632173061371, - -0.2854960858821869, - -0.2849307656288147, - -0.28341326117515564, - -0.2801467776298523, - -0.27448731660842896, - -0.13796718418598175, - -0.14059573411941528, - -0.1420152634382248, - -0.14261473715305328, - -0.14280730485916138, - -0.1428508758544922, - -0.14285671710968018, - -0.14285705983638763, - -0.14285671710968018, - -0.1428508758544922, - -0.14280730485916138, - -0.14261473715305328, - -0.1420152634382248, - -0.14059573411941528, - -0.13796718418598175, - -4.324619595763579e-8, - -4.404642695021721e-8, - -4.446825485615591e-8, - -4.46401315912226e-8, - -4.469211489777081e-8, - -4.470248171628555e-8, - -4.4703469370688254e-8, - -4.470348358154297e-8, - -4.4703469370688254e-8, - -4.470248171628555e-8, - -4.469211489777081e-8, - -4.46401315912226e-8, - -4.446825485615591e-8, - -4.404642695021721e-8, - -4.324619595763579e-8, - 0.13796718418598175, - 0.14059573411941528, - 0.1420152634382248, - 0.14261473715305328, - 0.14280730485916138, - 0.1428508758544922, - 0.14285671710968018, - 0.14285705983638763, - 0.14285671710968018, - 0.1428508758544922, - 0.14280730485916138, - 0.14261473715305328, - 0.1420152634382248, - 0.14059573411941528, - 0.13796718418598175, - 0.27448731660842896, - 0.2801467776298523, - 0.28341326117515564, - 0.2849307656288147, - 0.2854960858821869, - 0.2856632173061371, - 0.28570181131362915, - 0.28570786118507385, - 0.28570181131362915, - 0.2856632173061371, - 0.2854960858821869, - 0.2849307656288147, - 0.28341326117515564, - 0.2801467776298523, - 0.27448731660842896, - 0.40789926052093506, - 0.4172556400299072, - 0.4231840670108795, - 0.4263162910938263, - 0.42771023511886597, - 0.42824411392211914, - 0.4284220039844513, - 0.428462415933609, - 0.4284220039844513, - 0.42824411392211914, - 0.42771023511886597, - 0.4263162910938263, - 0.4231840670108795, - 0.4172556400299072, - 0.40789926052093506, - 0.5362703800201416, - 0.5499551296234131, - 0.5595486164093018, - 0.5653568506240845, - 0.5684217214584351, - 0.5698615312576294, - 0.5704590678215027, - 0.570618748664856, - 0.5704590678215027, - 0.5698615312576294, - 0.5684217214584351, - 0.5653568506240845, - 0.5595486164093018, - 0.5499551296234131, - 0.5362703800201416, - 0.6575924158096313, - 0.6758280992507935, - 0.6898361444473267, - 0.699435830116272, - 0.7053068280220032, - 0.7085332274436951, - 0.7100765109062195, - 0.7105271816253662, - 0.7100765109062195, - 0.7085332274436951, - 0.7053068280220032, - 0.699435830116272, - 0.6898361444473267, - 0.6758280992507935, - 0.6575924158096313, - 0.7701665163040161, - 0.7925450801849365, - 0.8109937310218811, - 0.8249328136444092, - 0.8345113396644592, - 0.8404403924942017, - 0.8435746431350708, - 0.8445444703102112, - 0.8435746431350708, - 0.8404403924942017, - 0.8345113396644592, - 0.8249328136444092, - 0.8109937310218811, - 0.7925450801849365, - 0.7701665163040161, - 0.8729499578475952, - 0.8985276222229004, - 0.9206293225288391, - 0.9384732842445374, - 0.9517649412155151, - 0.9607056379318237, - 0.9657705426216125, - 0.9674010276794434, - 0.9657705426216125, - 0.9607056379318237, - 0.9517649412155151, - 0.9384732842445374, - 0.9206293225288391, - 0.8985276222229004, - 0.8729499578475952 - ], - "xaxis": "x2", - "y": [ - -0.8729499578475952, - -0.7701665163040161, - -0.6575924158096313, - -0.5362703800201416, - -0.40789926052093506, - -0.27448731660842896, - -0.13796718418598175, - -4.324619595763579e-8, - 0.13796718418598175, - 0.27448731660842896, - 0.40789926052093506, - 0.5362703800201416, - 0.6575924158096313, - 0.7701665163040161, - 0.8729499578475952, - -0.8985276222229004, - -0.7925450801849365, - -0.6758280992507935, - -0.5499551296234131, - -0.4172556400299072, - -0.2801467776298523, - -0.14059573411941528, - -4.404642695021721e-8, - 0.14059573411941528, - 0.2801467776298523, - 0.4172556400299072, - 0.5499551296234131, - 0.6758280992507935, - 0.7925450801849365, - 0.8985276222229004, - -0.9206293225288391, - -0.8109937310218811, - -0.6898361444473267, - -0.5595486164093018, - -0.4231840670108795, - -0.28341326117515564, - -0.1420152634382248, - -4.446825485615591e-8, - 0.1420152634382248, - 0.28341326117515564, - 0.4231840670108795, - 0.5595486164093018, - 0.6898361444473267, - 0.8109937310218811, - 0.9206293225288391, - -0.9384732842445374, - -0.8249328136444092, - -0.699435830116272, - -0.5653568506240845, - -0.4263162910938263, - -0.2849307656288147, - -0.14261473715305328, - -4.46401315912226e-8, - 0.14261473715305328, - 0.2849307656288147, - 0.4263162910938263, - 0.5653568506240845, - 0.699435830116272, - 0.8249328136444092, - 0.9384732842445374, - -0.9517649412155151, - -0.8345113396644592, - -0.7053068280220032, - -0.5684217214584351, - -0.42771023511886597, - -0.2854960858821869, - -0.14280730485916138, - -4.469211489777081e-8, - 0.14280730485916138, - 0.2854960858821869, - 0.42771023511886597, - 0.5684217214584351, - 0.7053068280220032, - 0.8345113396644592, - 0.9517649412155151, - -0.9607056379318237, - -0.8404403924942017, - -0.7085332274436951, - -0.5698615312576294, - -0.42824411392211914, - -0.2856632173061371, - -0.1428508758544922, - -4.470248171628555e-8, - 0.1428508758544922, - 0.2856632173061371, - 0.42824411392211914, - 0.5698615312576294, - 0.7085332274436951, - 0.8404403924942017, - 0.9607056379318237, - -0.9657705426216125, - -0.8435746431350708, - -0.7100765109062195, - -0.5704590678215027, - -0.4284220039844513, - -0.28570181131362915, - -0.14285671710968018, - -4.4703469370688254e-8, - 0.14285671710968018, - 0.28570181131362915, - 0.4284220039844513, - 0.5704590678215027, - 0.7100765109062195, - 0.8435746431350708, - 0.9657705426216125, - -0.9674010276794434, - -0.8445444703102112, - -0.7105271816253662, - -0.570618748664856, - -0.428462415933609, - -0.28570786118507385, - -0.14285705983638763, - -4.470348358154297e-8, - 0.14285705983638763, - 0.28570786118507385, - 0.428462415933609, - 0.570618748664856, - 0.7105271816253662, - 0.8445444703102112, - 0.9674010276794434, - -0.9657705426216125, - -0.8435746431350708, - -0.7100765109062195, - -0.5704590678215027, - -0.4284220039844513, - -0.28570181131362915, - -0.14285671710968018, - -4.4703469370688254e-8, - 0.14285671710968018, - 0.28570181131362915, - 0.4284220039844513, - 0.5704590678215027, - 0.7100765109062195, - 0.8435746431350708, - 0.9657705426216125, - -0.9607056379318237, - -0.8404403924942017, - -0.7085332274436951, - -0.5698615312576294, - -0.42824411392211914, - -0.2856632173061371, - -0.1428508758544922, - -4.470248171628555e-8, - 0.1428508758544922, - 0.2856632173061371, - 0.42824411392211914, - 0.5698615312576294, - 0.7085332274436951, - 0.8404403924942017, - 0.9607056379318237, - -0.9517649412155151, - -0.8345113396644592, - -0.7053068280220032, - -0.5684217214584351, - -0.42771023511886597, - -0.2854960858821869, - -0.14280730485916138, - -4.469211489777081e-8, - 0.14280730485916138, - 0.2854960858821869, - 0.42771023511886597, - 0.5684217214584351, - 0.7053068280220032, - 0.8345113396644592, - 0.9517649412155151, - -0.9384732842445374, - -0.8249328136444092, - -0.699435830116272, - -0.5653568506240845, - -0.4263162910938263, - -0.2849307656288147, - -0.14261473715305328, - -4.46401315912226e-8, - 0.14261473715305328, - 0.2849307656288147, - 0.4263162910938263, - 0.5653568506240845, - 0.699435830116272, - 0.8249328136444092, - 0.9384732842445374, - -0.9206293225288391, - -0.8109937310218811, - -0.6898361444473267, - -0.5595486164093018, - -0.4231840670108795, - -0.28341326117515564, - -0.1420152634382248, - -4.446825485615591e-8, - 0.1420152634382248, - 0.28341326117515564, - 0.4231840670108795, - 0.5595486164093018, - 0.6898361444473267, - 0.8109937310218811, - 0.9206293225288391, - -0.8985276222229004, - -0.7925450801849365, - -0.6758280992507935, - -0.5499551296234131, - -0.4172556400299072, - -0.2801467776298523, - -0.14059573411941528, - -4.404642695021721e-8, - 0.14059573411941528, - 0.2801467776298523, - 0.4172556400299072, - 0.5499551296234131, - 0.6758280992507935, - 0.7925450801849365, - 0.8985276222229004, - -0.8729499578475952, - -0.7701665163040161, - -0.6575924158096313, - -0.5362703800201416, - -0.40789926052093506, - -0.27448731660842896, - -0.13796718418598175, - -4.324619595763579e-8, - 0.13796718418598175, - 0.27448731660842896, - 0.40789926052093506, - 0.5362703800201416, - 0.6575924158096313, - 0.7701665163040161, - 0.8729499578475952 - ], - "yaxis": "y2" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8696188926696777, - -0.8955219984054565, - -0.9179984331130981, - -0.936226487159729, - -0.9498641490936279, - -0.9590720534324646, - -0.9643025994300842, - -0.9659883975982666, - -0.9643025994300842, - -0.9590720534324646, - -0.9498641490936279, - -0.936226487159729, - -0.9179984331130981, - -0.8955219984054565, - -0.8696188926696777, - -0.767590343952179, - -0.7903579473495483, - -0.8092334270477295, - -0.8235796093940735, - -0.833491325378418, - -0.8396527767181396, - -0.842918872833252, - -0.8439307808876038, - -0.842918872833252, - -0.8396527767181396, - -0.833491325378418, - -0.8235796093940735, - -0.8092334270477295, - -0.7903579473495483, - -0.767590343952179, - -0.6557132005691528, - -0.6743611693382263, - -0.688787579536438, - -0.6987414956092834, - -0.7048631310462952, - -0.7082398533821106, - -0.7098585963249207, - -0.7103316187858582, - -0.7098585963249207, - -0.7082398533821106, - -0.7048631310462952, - -0.6987414956092834, - -0.688787579536438, - -0.6743611693382263, - -0.6557132005691528, - -0.5349865555763245, - -0.5490530133247375, - -0.5589931607246399, - -0.5650527477264404, - -0.5682652592658997, - -0.5697785019874573, - -0.5704073309898376, - -0.5705754160881042, - -0.5704073309898376, - -0.5697785019874573, - -0.5682652592658997, - -0.5650527477264404, - -0.5589931607246399, - -0.5490530133247375, - -0.5349865555763245, - -0.407084584236145, - -0.4167456328868866, - -0.42291784286499023, - -0.42619892954826355, - -0.4276643395423889, - -0.4282265603542328, - -0.4284139573574066, - -0.42845654487609863, - -0.4284139573574066, - -0.4282265603542328, - -0.4276643395423889, - -0.42619892954826355, - -0.42291784286499023, - -0.4167456328868866, - -0.407084584236145, - -0.27402055263519287, - -0.2798842489719391, - -0.2832959294319153, - -0.28488925099372864, - -0.2854843735694885, - -0.2856604754924774, - -0.28570112586021423, - -0.2857075333595276, - -0.28570112586021423, - -0.2856604754924774, - -0.2854843735694885, - -0.28488925099372864, - -0.2832959294319153, - -0.2798842489719391, - -0.27402055263519287, - -0.13775748014450073, - -0.1404864490032196, - -0.1419716775417328, - -0.14260180294513702, - -0.14280462265014648, - -0.14285053312778473, - -0.1428566724061966, - -0.14285705983638763, - -0.1428566724061966, - -0.14285053312778473, - -0.14280462265014648, - -0.14260180294513702, - -0.1419716775417328, - -0.1404864490032196, - -0.13775748014450073, - -4.318305002470879e-8, - -4.4014420552684896e-8, - -4.445601575753244e-8, - -4.463674230237302e-8, - -4.4691500278304375e-8, - -4.4702428425580365e-8, - -4.4703469370688254e-8, - -4.470348358154297e-8, - -4.4703469370688254e-8, - -4.4702428425580365e-8, - -4.4691500278304375e-8, - -4.463674230237302e-8, - -4.445601575753244e-8, - -4.4014420552684896e-8, - -4.318305002470879e-8, - 0.13775748014450073, - 0.1404864490032196, - 0.1419716775417328, - 0.14260180294513702, - 0.14280462265014648, - 0.14285053312778473, - 0.1428566724061966, - 0.14285705983638763, - 0.1428566724061966, - 0.14285053312778473, - 0.14280462265014648, - 0.14260180294513702, - 0.1419716775417328, - 0.1404864490032196, - 0.13775748014450073, - 0.27402055263519287, - 0.2798842489719391, - 0.2832959294319153, - 0.28488925099372864, - 0.2854843735694885, - 0.2856604754924774, - 0.28570112586021423, - 0.2857075333595276, - 0.28570112586021423, - 0.2856604754924774, - 0.2854843735694885, - 0.28488925099372864, - 0.2832959294319153, - 0.2798842489719391, - 0.27402055263519287, - 0.407084584236145, - 0.4167456328868866, - 0.42291784286499023, - 0.42619892954826355, - 0.4276643395423889, - 0.4282265603542328, - 0.4284139573574066, - 0.42845654487609863, - 0.4284139573574066, - 0.4282265603542328, - 0.4276643395423889, - 0.42619892954826355, - 0.42291784286499023, - 0.4167456328868866, - 0.407084584236145, - 0.5349865555763245, - 0.5490530133247375, - 0.5589931607246399, - 0.5650527477264404, - 0.5682652592658997, - 0.5697785019874573, - 0.5704073309898376, - 0.5705754160881042, - 0.5704073309898376, - 0.5697785019874573, - 0.5682652592658997, - 0.5650527477264404, - 0.5589931607246399, - 0.5490530133247375, - 0.5349865555763245, - 0.6557132005691528, - 0.6743611693382263, - 0.688787579536438, - 0.6987414956092834, - 0.7048631310462952, - 0.7082398533821106, - 0.7098585963249207, - 0.7103316187858582, - 0.7098585963249207, - 0.7082398533821106, - 0.7048631310462952, - 0.6987414956092834, - 0.688787579536438, - 0.6743611693382263, - 0.6557132005691528, - 0.767590343952179, - 0.7903579473495483, - 0.8092334270477295, - 0.8235796093940735, - 0.833491325378418, - 0.8396527767181396, - 0.842918872833252, - 0.8439307808876038, - 0.842918872833252, - 0.8396527767181396, - 0.833491325378418, - 0.8235796093940735, - 0.8092334270477295, - 0.7903579473495483, - 0.767590343952179, - 0.8696188926696777, - 0.8955219984054565, - 0.9179984331130981, - 0.936226487159729, - 0.9498641490936279, - 0.9590720534324646, - 0.9643025994300842, - 0.9659883975982666, - 0.9643025994300842, - 0.9590720534324646, - 0.9498641490936279, - 0.936226487159729, - 0.9179984331130981, - 0.8955219984054565, - 0.8696188926696777 - ], - "xaxis": "x2", - "y": [ - -0.8696188926696777, - -0.767590343952179, - -0.6557132005691528, - -0.5349865555763245, - -0.407084584236145, - -0.27402055263519287, - -0.13775748014450073, - -4.318305002470879e-8, - 0.13775748014450073, - 0.27402055263519287, - 0.407084584236145, - 0.5349865555763245, - 0.6557132005691528, - 0.767590343952179, - 0.8696188926696777, - -0.8955219984054565, - -0.7903579473495483, - -0.6743611693382263, - -0.5490530133247375, - -0.4167456328868866, - -0.2798842489719391, - -0.1404864490032196, - -4.4014420552684896e-8, - 0.1404864490032196, - 0.2798842489719391, - 0.4167456328868866, - 0.5490530133247375, - 0.6743611693382263, - 0.7903579473495483, - 0.8955219984054565, - -0.9179984331130981, - -0.8092334270477295, - -0.688787579536438, - -0.5589931607246399, - -0.42291784286499023, - -0.2832959294319153, - -0.1419716775417328, - -4.445601575753244e-8, - 0.1419716775417328, - 0.2832959294319153, - 0.42291784286499023, - 0.5589931607246399, - 0.688787579536438, - 0.8092334270477295, - 0.9179984331130981, - -0.936226487159729, - -0.8235796093940735, - -0.6987414956092834, - -0.5650527477264404, - -0.42619892954826355, - -0.28488925099372864, - -0.14260180294513702, - -4.463674230237302e-8, - 0.14260180294513702, - 0.28488925099372864, - 0.42619892954826355, - 0.5650527477264404, - 0.6987414956092834, - 0.8235796093940735, - 0.936226487159729, - -0.9498641490936279, - -0.833491325378418, - -0.7048631310462952, - -0.5682652592658997, - -0.4276643395423889, - -0.2854843735694885, - -0.14280462265014648, - -4.4691500278304375e-8, - 0.14280462265014648, - 0.2854843735694885, - 0.4276643395423889, - 0.5682652592658997, - 0.7048631310462952, - 0.833491325378418, - 0.9498641490936279, - -0.9590720534324646, - -0.8396527767181396, - -0.7082398533821106, - -0.5697785019874573, - -0.4282265603542328, - -0.2856604754924774, - -0.14285053312778473, - -4.4702428425580365e-8, - 0.14285053312778473, - 0.2856604754924774, - 0.4282265603542328, - 0.5697785019874573, - 0.7082398533821106, - 0.8396527767181396, - 0.9590720534324646, - -0.9643025994300842, - -0.842918872833252, - -0.7098585963249207, - -0.5704073309898376, - -0.4284139573574066, - -0.28570112586021423, - -0.1428566724061966, - -4.4703469370688254e-8, - 0.1428566724061966, - 0.28570112586021423, - 0.4284139573574066, - 0.5704073309898376, - 0.7098585963249207, - 0.842918872833252, - 0.9643025994300842, - -0.9659883975982666, - -0.8439307808876038, - -0.7103316187858582, - -0.5705754160881042, - -0.42845654487609863, - -0.2857075333595276, - -0.14285705983638763, - -4.470348358154297e-8, - 0.14285705983638763, - 0.2857075333595276, - 0.42845654487609863, - 0.5705754160881042, - 0.7103316187858582, - 0.8439307808876038, - 0.9659883975982666, - -0.9643025994300842, - -0.842918872833252, - -0.7098585963249207, - -0.5704073309898376, - -0.4284139573574066, - -0.28570112586021423, - -0.1428566724061966, - -4.4703469370688254e-8, - 0.1428566724061966, - 0.28570112586021423, - 0.4284139573574066, - 0.5704073309898376, - 0.7098585963249207, - 0.842918872833252, - 0.9643025994300842, - -0.9590720534324646, - -0.8396527767181396, - -0.7082398533821106, - -0.5697785019874573, - -0.4282265603542328, - -0.2856604754924774, - -0.14285053312778473, - -4.4702428425580365e-8, - 0.14285053312778473, - 0.2856604754924774, - 0.4282265603542328, - 0.5697785019874573, - 0.7082398533821106, - 0.8396527767181396, - 0.9590720534324646, - -0.9498641490936279, - -0.833491325378418, - -0.7048631310462952, - -0.5682652592658997, - -0.4276643395423889, - -0.2854843735694885, - -0.14280462265014648, - -4.4691500278304375e-8, - 0.14280462265014648, - 0.2854843735694885, - 0.4276643395423889, - 0.5682652592658997, - 0.7048631310462952, - 0.833491325378418, - 0.9498641490936279, - -0.936226487159729, - -0.8235796093940735, - -0.6987414956092834, - -0.5650527477264404, - -0.42619892954826355, - -0.28488925099372864, - -0.14260180294513702, - -4.463674230237302e-8, - 0.14260180294513702, - 0.28488925099372864, - 0.42619892954826355, - 0.5650527477264404, - 0.6987414956092834, - 0.8235796093940735, - 0.936226487159729, - -0.9179984331130981, - -0.8092334270477295, - -0.688787579536438, - -0.5589931607246399, - -0.42291784286499023, - -0.2832959294319153, - -0.1419716775417328, - -4.445601575753244e-8, - 0.1419716775417328, - 0.2832959294319153, - 0.42291784286499023, - 0.5589931607246399, - 0.688787579536438, - 0.8092334270477295, - 0.9179984331130981, - -0.8955219984054565, - -0.7903579473495483, - -0.6743611693382263, - -0.5490530133247375, - -0.4167456328868866, - -0.2798842489719391, - -0.1404864490032196, - -4.4014420552684896e-8, - 0.1404864490032196, - 0.2798842489719391, - 0.4167456328868866, - 0.5490530133247375, - 0.6743611693382263, - 0.7903579473495483, - 0.8955219984054565, - -0.8696188926696777, - -0.767590343952179, - -0.6557132005691528, - -0.5349865555763245, - -0.407084584236145, - -0.27402055263519287, - -0.13775748014450073, - -4.318305002470879e-8, - 0.13775748014450073, - 0.27402055263519287, - 0.407084584236145, - 0.5349865555763245, - 0.6557132005691528, - 0.767590343952179, - 0.8696188926696777 - ], - "yaxis": "y2" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8664215803146362, - -0.8926263451576233, - -0.9154527187347412, - -0.9340429902076721, - -0.9480093121528625, - -0.9574728012084961, - -0.962862491607666, - -0.9646020531654358, - -0.962862491607666, - -0.9574728012084961, - -0.9480093121528625, - -0.9340429902076721, - -0.9154527187347412, - -0.8926263451576233, - -0.8664215803146362, - -0.7651083469390869, - -0.7882396578788757, - -0.8075187802314758, - -0.8222541213035583, - -0.8324873447418213, - -0.8388747572898865, - -0.8422698974609375, - -0.8433231115341187, - -0.8422698974609375, - -0.8388747572898865, - -0.8324873447418213, - -0.8222541213035583, - -0.8075187802314758, - -0.7882396578788757, - -0.7651083469390869, - -0.6538947820663452, - -0.6729323267936707, - -0.6877589225769043, - -0.698056161403656, - -0.7044230699539185, - -0.7079481482505798, - -0.7096415162086487, - -0.7101367712020874, - -0.7096415162086487, - -0.7079481482505798, - -0.7044230699539185, - -0.698056161403656, - -0.6877589225769043, - -0.6729323267936707, - -0.6538947820663452, - -0.5337387919425964, - -0.5481693744659424, - -0.5584449172019958, - -0.5647507905960083, - -0.568109393119812, - -0.5696956515312195, - -0.5703557133674622, - -0.5705321431159973, - -0.5703557133674622, - -0.5696956515312195, - -0.568109393119812, - -0.5647507905960083, - -0.5584449172019958, - -0.5481693744659424, - -0.5337387919425964, - -0.4062896966934204, - -0.41624364256858826, - -0.42265382409095764, - -0.426082044839859, - -0.4276185631752014, - -0.42820897698402405, - -0.42840588092803955, - -0.42845067381858826, - -0.42840588092803955, - -0.42820897698402405, - -0.4276185631752014, - -0.426082044839859, - -0.42265382409095764, - -0.41624364256858826, - -0.4062896966934204, - -0.2735636532306671, - -0.27962490916252136, - -0.28317925333976746, - -0.28484782576560974, - -0.28547266125679016, - -0.28565770387649536, - -0.2857004404067993, - -0.28570717573165894, - -0.2857004404067993, - -0.28565770387649536, - -0.28547266125679016, - -0.28484782576560974, - -0.28317925333976746, - -0.27962490916252136, - -0.2735636532306671, - -0.13755173981189728, - -0.14037826657295227, - -0.14192825555801392, - -0.14258889853954315, - -0.1428019255399704, - -0.14285019040107727, - -0.1428566575050354, - -0.14285705983638763, - -0.1428566575050354, - -0.14285019040107727, - -0.1428019255399704, - -0.14258889853954315, - -0.14192825555801392, - -0.14037826657295227, - -0.13755173981189728, - -4.3121072934582116e-8, - -4.3982730346669996e-8, - -4.44438228441868e-8, - -4.4633356566237126e-8, - -4.469088921155162e-8, - -4.470237513487518e-8, - -4.4703469370688254e-8, - -4.470348358154297e-8, - -4.4703469370688254e-8, - -4.470237513487518e-8, - -4.469088921155162e-8, - -4.4633356566237126e-8, - -4.44438228441868e-8, - -4.3982730346669996e-8, - -4.3121072934582116e-8, - 0.13755173981189728, - 0.14037826657295227, - 0.14192825555801392, - 0.14258889853954315, - 0.1428019255399704, - 0.14285019040107727, - 0.1428566575050354, - 0.14285705983638763, - 0.1428566575050354, - 0.14285019040107727, - 0.1428019255399704, - 0.14258889853954315, - 0.14192825555801392, - 0.14037826657295227, - 0.13755173981189728, - 0.2735636532306671, - 0.27962490916252136, - 0.28317925333976746, - 0.28484782576560974, - 0.28547266125679016, - 0.28565770387649536, - 0.2857004404067993, - 0.28570717573165894, - 0.2857004404067993, - 0.28565770387649536, - 0.28547266125679016, - 0.28484782576560974, - 0.28317925333976746, - 0.27962490916252136, - 0.2735636532306671, - 0.4062896966934204, - 0.41624364256858826, - 0.42265382409095764, - 0.426082044839859, - 0.4276185631752014, - 0.42820897698402405, - 0.42840588092803955, - 0.42845067381858826, - 0.42840588092803955, - 0.42820897698402405, - 0.4276185631752014, - 0.426082044839859, - 0.42265382409095764, - 0.41624364256858826, - 0.4062896966934204, - 0.5337387919425964, - 0.5481693744659424, - 0.5584449172019958, - 0.5647507905960083, - 0.568109393119812, - 0.5696956515312195, - 0.5703557133674622, - 0.5705321431159973, - 0.5703557133674622, - 0.5696956515312195, - 0.568109393119812, - 0.5647507905960083, - 0.5584449172019958, - 0.5481693744659424, - 0.5337387919425964, - 0.6538947820663452, - 0.6729323267936707, - 0.6877589225769043, - 0.698056161403656, - 0.7044230699539185, - 0.7079481482505798, - 0.7096415162086487, - 0.7101367712020874, - 0.7096415162086487, - 0.7079481482505798, - 0.7044230699539185, - 0.698056161403656, - 0.6877589225769043, - 0.6729323267936707, - 0.6538947820663452, - 0.7651083469390869, - 0.7882396578788757, - 0.8075187802314758, - 0.8222541213035583, - 0.8324873447418213, - 0.8388747572898865, - 0.8422698974609375, - 0.8433231115341187, - 0.8422698974609375, - 0.8388747572898865, - 0.8324873447418213, - 0.8222541213035583, - 0.8075187802314758, - 0.7882396578788757, - 0.7651083469390869, - 0.8664215803146362, - 0.8926263451576233, - 0.9154527187347412, - 0.9340429902076721, - 0.9480093121528625, - 0.9574728012084961, - 0.962862491607666, - 0.9646020531654358, - 0.962862491607666, - 0.9574728012084961, - 0.9480093121528625, - 0.9340429902076721, - 0.9154527187347412, - 0.8926263451576233, - 0.8664215803146362 - ], - "xaxis": "x2", - "y": [ - -0.8664215803146362, - -0.7651083469390869, - -0.6538947820663452, - -0.5337387919425964, - -0.4062896966934204, - -0.2735636532306671, - -0.13755173981189728, - -4.3121072934582116e-8, - 0.13755173981189728, - 0.2735636532306671, - 0.4062896966934204, - 0.5337387919425964, - 0.6538947820663452, - 0.7651083469390869, - 0.8664215803146362, - -0.8926263451576233, - -0.7882396578788757, - -0.6729323267936707, - -0.5481693744659424, - -0.41624364256858826, - -0.27962490916252136, - -0.14037826657295227, - -4.3982730346669996e-8, - 0.14037826657295227, - 0.27962490916252136, - 0.41624364256858826, - 0.5481693744659424, - 0.6729323267936707, - 0.7882396578788757, - 0.8926263451576233, - -0.9154527187347412, - -0.8075187802314758, - -0.6877589225769043, - -0.5584449172019958, - -0.42265382409095764, - -0.28317925333976746, - -0.14192825555801392, - -4.44438228441868e-8, - 0.14192825555801392, - 0.28317925333976746, - 0.42265382409095764, - 0.5584449172019958, - 0.6877589225769043, - 0.8075187802314758, - 0.9154527187347412, - -0.9340429902076721, - -0.8222541213035583, - -0.698056161403656, - -0.5647507905960083, - -0.426082044839859, - -0.28484782576560974, - -0.14258889853954315, - -4.4633356566237126e-8, - 0.14258889853954315, - 0.28484782576560974, - 0.426082044839859, - 0.5647507905960083, - 0.698056161403656, - 0.8222541213035583, - 0.9340429902076721, - -0.9480093121528625, - -0.8324873447418213, - -0.7044230699539185, - -0.568109393119812, - -0.4276185631752014, - -0.28547266125679016, - -0.1428019255399704, - -4.469088921155162e-8, - 0.1428019255399704, - 0.28547266125679016, - 0.4276185631752014, - 0.568109393119812, - 0.7044230699539185, - 0.8324873447418213, - 0.9480093121528625, - -0.9574728012084961, - -0.8388747572898865, - -0.7079481482505798, - -0.5696956515312195, - -0.42820897698402405, - -0.28565770387649536, - -0.14285019040107727, - -4.470237513487518e-8, - 0.14285019040107727, - 0.28565770387649536, - 0.42820897698402405, - 0.5696956515312195, - 0.7079481482505798, - 0.8388747572898865, - 0.9574728012084961, - -0.962862491607666, - -0.8422698974609375, - -0.7096415162086487, - -0.5703557133674622, - -0.42840588092803955, - -0.2857004404067993, - -0.1428566575050354, - -4.4703469370688254e-8, - 0.1428566575050354, - 0.2857004404067993, - 0.42840588092803955, - 0.5703557133674622, - 0.7096415162086487, - 0.8422698974609375, - 0.962862491607666, - -0.9646020531654358, - -0.8433231115341187, - -0.7101367712020874, - -0.5705321431159973, - -0.42845067381858826, - -0.28570717573165894, - -0.14285705983638763, - -4.470348358154297e-8, - 0.14285705983638763, - 0.28570717573165894, - 0.42845067381858826, - 0.5705321431159973, - 0.7101367712020874, - 0.8433231115341187, - 0.9646020531654358, - -0.962862491607666, - -0.8422698974609375, - -0.7096415162086487, - -0.5703557133674622, - -0.42840588092803955, - -0.2857004404067993, - -0.1428566575050354, - -4.4703469370688254e-8, - 0.1428566575050354, - 0.2857004404067993, - 0.42840588092803955, - 0.5703557133674622, - 0.7096415162086487, - 0.8422698974609375, - 0.962862491607666, - -0.9574728012084961, - -0.8388747572898865, - -0.7079481482505798, - -0.5696956515312195, - -0.42820897698402405, - -0.28565770387649536, - -0.14285019040107727, - -4.470237513487518e-8, - 0.14285019040107727, - 0.28565770387649536, - 0.42820897698402405, - 0.5696956515312195, - 0.7079481482505798, - 0.8388747572898865, - 0.9574728012084961, - -0.9480093121528625, - -0.8324873447418213, - -0.7044230699539185, - -0.568109393119812, - -0.4276185631752014, - -0.28547266125679016, - -0.1428019255399704, - -4.469088921155162e-8, - 0.1428019255399704, - 0.28547266125679016, - 0.4276185631752014, - 0.568109393119812, - 0.7044230699539185, - 0.8324873447418213, - 0.9480093121528625, - -0.9340429902076721, - -0.8222541213035583, - -0.698056161403656, - -0.5647507905960083, - -0.426082044839859, - -0.28484782576560974, - -0.14258889853954315, - -4.4633356566237126e-8, - 0.14258889853954315, - 0.28484782576560974, - 0.426082044839859, - 0.5647507905960083, - 0.698056161403656, - 0.8222541213035583, - 0.9340429902076721, - -0.9154527187347412, - -0.8075187802314758, - -0.6877589225769043, - -0.5584449172019958, - -0.42265382409095764, - -0.28317925333976746, - -0.14192825555801392, - -4.44438228441868e-8, - 0.14192825555801392, - 0.28317925333976746, - 0.42265382409095764, - 0.5584449172019958, - 0.6877589225769043, - 0.8075187802314758, - 0.9154527187347412, - -0.8926263451576233, - -0.7882396578788757, - -0.6729323267936707, - -0.5481693744659424, - -0.41624364256858826, - -0.27962490916252136, - -0.14037826657295227, - -4.3982730346669996e-8, - 0.14037826657295227, - 0.27962490916252136, - 0.41624364256858826, - 0.5481693744659424, - 0.6729323267936707, - 0.7882396578788757, - 0.8926263451576233, - -0.8664215803146362, - -0.7651083469390869, - -0.6538947820663452, - -0.5337387919425964, - -0.4062896966934204, - -0.2735636532306671, - -0.13755173981189728, - -4.3121072934582116e-8, - 0.13755173981189728, - 0.2735636532306671, - 0.4062896966934204, - 0.5337387919425964, - 0.6538947820663452, - 0.7651083469390869, - 0.8664215803146362 - ], - "yaxis": "y2" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8633478283882141, - -0.8898326754570007, - -0.9129868745803833, - -0.9319190979003906, - -0.9461982250213623, - -0.9559066295623779, - -0.9614493250846863, - -0.9632404446601868, - -0.9614493250846863, - -0.9559066295623779, - -0.9461982250213623, - -0.9319190979003906, - -0.9129868745803833, - -0.8898326754570007, - -0.8633478283882141, - -0.7627137303352356, - -0.7861860990524292, - -0.8058474659919739, - -0.8209549784660339, - -0.8314988017082214, - -0.8381062150001526, - -0.8416274785995483, - -0.8427212834358215, - -0.8416274785995483, - -0.8381062150001526, - -0.8314988017082214, - -0.8209549784660339, - -0.8058474659919739, - -0.7861860990524292, - -0.7627137303352356, - -0.6521334648132324, - -0.6715396046638489, - -0.6867494583129883, - -0.6973796486854553, - -0.7039867639541626, - -0.707658052444458, - -0.7094253301620483, - -0.7099427580833435, - -0.7094253301620483, - -0.707658052444458, - -0.7039867639541626, - -0.6973796486854553, - -0.6867494583129883, - -0.6715396046638489, - -0.6521334648132324, - -0.5325251221656799, - -0.5473032593727112, - -0.5579037070274353, - -0.5644510388374329, - -0.5679541826248169, - -0.5696129202842712, - -0.5703040361404419, - -0.5704888701438904, - -0.5703040361404419, - -0.5696129202842712, - -0.5679541826248169, - -0.5644510388374329, - -0.5579037070274353, - -0.5473032593727112, - -0.5325251221656799, - -0.4055134952068329, - -0.41574937105178833, - -0.4223920404911041, - -0.42596563696861267, - -0.4275728464126587, - -0.4281913638114929, - -0.42839786410331726, - -0.4284448027610779, - -0.42839786410331726, - -0.4281913638114929, - -0.4275728464126587, - -0.42596563696861267, - -0.4223920404911041, - -0.41574937105178833, - -0.4055134952068329, - -0.2731161415576935, - -0.27936872839927673, - -0.28306320309638977, - -0.2848064601421356, - -0.2854609191417694, - -0.2856549620628357, - -0.2856997549533844, - -0.28570684790611267, - -0.2856997549533844, - -0.2856549620628357, - -0.2854609191417694, - -0.2848064601421356, - -0.28306320309638977, - -0.27936872839927673, - -0.2731161415576935, - -0.13734987378120422, - -0.14027120172977448, - -0.14188502728939056, - -0.14257597923278809, - -0.1427992582321167, - -0.1428498476743698, - -0.1428566426038742, - -0.14285705983638763, - -0.1428566426038742, - -0.1428498476743698, - -0.1427992582321167, - -0.14257597923278809, - -0.14188502728939056, - -0.14027120172977448, - -0.13734987378120422, - -4.306020429112323e-8, - -4.3951338568604115e-8, - -4.443167966883266e-8, - -4.462997438281491e-8, - -4.469027814479887e-8, - -4.470232184417e-8, - -4.4703469370688254e-8, - -4.470348358154297e-8, - -4.4703469370688254e-8, - -4.470232184417e-8, - -4.469027814479887e-8, - -4.462997438281491e-8, - -4.443167966883266e-8, - -4.3951338568604115e-8, - -4.306020429112323e-8, - 0.13734987378120422, - 0.14027120172977448, - 0.14188502728939056, - 0.14257597923278809, - 0.1427992582321167, - 0.1428498476743698, - 0.1428566426038742, - 0.14285705983638763, - 0.1428566426038742, - 0.1428498476743698, - 0.1427992582321167, - 0.14257597923278809, - 0.14188502728939056, - 0.14027120172977448, - 0.13734987378120422, - 0.2731161415576935, - 0.27936872839927673, - 0.28306320309638977, - 0.2848064601421356, - 0.2854609191417694, - 0.2856549620628357, - 0.2856997549533844, - 0.28570684790611267, - 0.2856997549533844, - 0.2856549620628357, - 0.2854609191417694, - 0.2848064601421356, - 0.28306320309638977, - 0.27936872839927673, - 0.2731161415576935, - 0.4055134952068329, - 0.41574937105178833, - 0.4223920404911041, - 0.42596563696861267, - 0.4275728464126587, - 0.4281913638114929, - 0.42839786410331726, - 0.4284448027610779, - 0.42839786410331726, - 0.4281913638114929, - 0.4275728464126587, - 0.42596563696861267, - 0.4223920404911041, - 0.41574937105178833, - 0.4055134952068329, - 0.5325251221656799, - 0.5473032593727112, - 0.5579037070274353, - 0.5644510388374329, - 0.5679541826248169, - 0.5696129202842712, - 0.5703040361404419, - 0.5704888701438904, - 0.5703040361404419, - 0.5696129202842712, - 0.5679541826248169, - 0.5644510388374329, - 0.5579037070274353, - 0.5473032593727112, - 0.5325251221656799, - 0.6521334648132324, - 0.6715396046638489, - 0.6867494583129883, - 0.6973796486854553, - 0.7039867639541626, - 0.707658052444458, - 0.7094253301620483, - 0.7099427580833435, - 0.7094253301620483, - 0.707658052444458, - 0.7039867639541626, - 0.6973796486854553, - 0.6867494583129883, - 0.6715396046638489, - 0.6521334648132324, - 0.7627137303352356, - 0.7861860990524292, - 0.8058474659919739, - 0.8209549784660339, - 0.8314988017082214, - 0.8381062150001526, - 0.8416274785995483, - 0.8427212834358215, - 0.8416274785995483, - 0.8381062150001526, - 0.8314988017082214, - 0.8209549784660339, - 0.8058474659919739, - 0.7861860990524292, - 0.7627137303352356, - 0.8633478283882141, - 0.8898326754570007, - 0.9129868745803833, - 0.9319190979003906, - 0.9461982250213623, - 0.9559066295623779, - 0.9614493250846863, - 0.9632404446601868, - 0.9614493250846863, - 0.9559066295623779, - 0.9461982250213623, - 0.9319190979003906, - 0.9129868745803833, - 0.8898326754570007, - 0.8633478283882141 - ], - "xaxis": "x2", - "y": [ - -0.8633478283882141, - -0.7627137303352356, - -0.6521334648132324, - -0.5325251221656799, - -0.4055134952068329, - -0.2731161415576935, - -0.13734987378120422, - -4.306020429112323e-8, - 0.13734987378120422, - 0.2731161415576935, - 0.4055134952068329, - 0.5325251221656799, - 0.6521334648132324, - 0.7627137303352356, - 0.8633478283882141, - -0.8898326754570007, - -0.7861860990524292, - -0.6715396046638489, - -0.5473032593727112, - -0.41574937105178833, - -0.27936872839927673, - -0.14027120172977448, - -4.3951338568604115e-8, - 0.14027120172977448, - 0.27936872839927673, - 0.41574937105178833, - 0.5473032593727112, - 0.6715396046638489, - 0.7861860990524292, - 0.8898326754570007, - -0.9129868745803833, - -0.8058474659919739, - -0.6867494583129883, - -0.5579037070274353, - -0.4223920404911041, - -0.28306320309638977, - -0.14188502728939056, - -4.443167966883266e-8, - 0.14188502728939056, - 0.28306320309638977, - 0.4223920404911041, - 0.5579037070274353, - 0.6867494583129883, - 0.8058474659919739, - 0.9129868745803833, - -0.9319190979003906, - -0.8209549784660339, - -0.6973796486854553, - -0.5644510388374329, - -0.42596563696861267, - -0.2848064601421356, - -0.14257597923278809, - -4.462997438281491e-8, - 0.14257597923278809, - 0.2848064601421356, - 0.42596563696861267, - 0.5644510388374329, - 0.6973796486854553, - 0.8209549784660339, - 0.9319190979003906, - -0.9461982250213623, - -0.8314988017082214, - -0.7039867639541626, - -0.5679541826248169, - -0.4275728464126587, - -0.2854609191417694, - -0.1427992582321167, - -4.469027814479887e-8, - 0.1427992582321167, - 0.2854609191417694, - 0.4275728464126587, - 0.5679541826248169, - 0.7039867639541626, - 0.8314988017082214, - 0.9461982250213623, - -0.9559066295623779, - -0.8381062150001526, - -0.707658052444458, - -0.5696129202842712, - -0.4281913638114929, - -0.2856549620628357, - -0.1428498476743698, - -4.470232184417e-8, - 0.1428498476743698, - 0.2856549620628357, - 0.4281913638114929, - 0.5696129202842712, - 0.707658052444458, - 0.8381062150001526, - 0.9559066295623779, - -0.9614493250846863, - -0.8416274785995483, - -0.7094253301620483, - -0.5703040361404419, - -0.42839786410331726, - -0.2856997549533844, - -0.1428566426038742, - -4.4703469370688254e-8, - 0.1428566426038742, - 0.2856997549533844, - 0.42839786410331726, - 0.5703040361404419, - 0.7094253301620483, - 0.8416274785995483, - 0.9614493250846863, - -0.9632404446601868, - -0.8427212834358215, - -0.7099427580833435, - -0.5704888701438904, - -0.4284448027610779, - -0.28570684790611267, - -0.14285705983638763, - -4.470348358154297e-8, - 0.14285705983638763, - 0.28570684790611267, - 0.4284448027610779, - 0.5704888701438904, - 0.7099427580833435, - 0.8427212834358215, - 0.9632404446601868, - -0.9614493250846863, - -0.8416274785995483, - -0.7094253301620483, - -0.5703040361404419, - -0.42839786410331726, - -0.2856997549533844, - -0.1428566426038742, - -4.4703469370688254e-8, - 0.1428566426038742, - 0.2856997549533844, - 0.42839786410331726, - 0.5703040361404419, - 0.7094253301620483, - 0.8416274785995483, - 0.9614493250846863, - -0.9559066295623779, - -0.8381062150001526, - -0.707658052444458, - -0.5696129202842712, - -0.4281913638114929, - -0.2856549620628357, - -0.1428498476743698, - -4.470232184417e-8, - 0.1428498476743698, - 0.2856549620628357, - 0.4281913638114929, - 0.5696129202842712, - 0.707658052444458, - 0.8381062150001526, - 0.9559066295623779, - -0.9461982250213623, - -0.8314988017082214, - -0.7039867639541626, - -0.5679541826248169, - -0.4275728464126587, - -0.2854609191417694, - -0.1427992582321167, - -4.469027814479887e-8, - 0.1427992582321167, - 0.2854609191417694, - 0.4275728464126587, - 0.5679541826248169, - 0.7039867639541626, - 0.8314988017082214, - 0.9461982250213623, - -0.9319190979003906, - -0.8209549784660339, - -0.6973796486854553, - -0.5644510388374329, - -0.42596563696861267, - -0.2848064601421356, - -0.14257597923278809, - -4.462997438281491e-8, - 0.14257597923278809, - 0.2848064601421356, - 0.42596563696861267, - 0.5644510388374329, - 0.6973796486854553, - 0.8209549784660339, - 0.9319190979003906, - -0.9129868745803833, - -0.8058474659919739, - -0.6867494583129883, - -0.5579037070274353, - -0.4223920404911041, - -0.28306320309638977, - -0.14188502728939056, - -4.443167966883266e-8, - 0.14188502728939056, - 0.28306320309638977, - 0.4223920404911041, - 0.5579037070274353, - 0.6867494583129883, - 0.8058474659919739, - 0.9129868745803833, - -0.8898326754570007, - -0.7861860990524292, - -0.6715396046638489, - -0.5473032593727112, - -0.41574937105178833, - -0.27936872839927673, - -0.14027120172977448, - -4.3951338568604115e-8, - 0.14027120172977448, - 0.27936872839927673, - 0.41574937105178833, - 0.5473032593727112, - 0.6715396046638489, - 0.7861860990524292, - 0.8898326754570007, - -0.8633478283882141, - -0.7627137303352356, - -0.6521334648132324, - -0.5325251221656799, - -0.4055134952068329, - -0.2731161415576935, - -0.13734987378120422, - -4.306020429112323e-8, - 0.13734987378120422, - 0.2731161415576935, - 0.4055134952068329, - 0.5325251221656799, - 0.6521334648132324, - 0.7627137303352356, - 0.8633478283882141 - ], - "yaxis": "y2" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8603883385658264, - -0.8871340155601501, - -0.9105960130691528, - -0.9298516511917114, - -0.9444288015365601, - -0.9543718695640564, - -0.9600620269775391, - -0.9619030952453613, - -0.9600620269775391, - -0.9543718695640564, - -0.9444288015365601, - -0.9298516511917114, - -0.9105960130691528, - -0.8871340155601501, - -0.8603883385658264, - -0.7604005932807922, - -0.7841933965682983, - -0.8042172789573669, - -0.8196812272071838, - -0.8305252194404602, - -0.8373467326164246, - -0.8409915566444397, - -0.8421250581741333, - -0.8409915566444397, - -0.8373467326164246, - -0.8305252194404602, - -0.8196812272071838, - -0.8042172789573669, - -0.7841933965682983, - -0.7604005932807922, - -0.6504257321357727, - -0.6701810359954834, - -0.6857585906982422, - -0.6967116594314575, - -0.7035540342330933, - -0.7073695063591003, - -0.7092100381851196, - -0.7097494602203369, - -0.7092100381851196, - -0.7073695063591003, - -0.7035540342330933, - -0.6967116594314575, - -0.6857585906982422, - -0.6701810359954834, - -0.6504257321357727, - -0.5313437581062317, - -0.546454131603241, - -0.5573692917823792, - -0.5641533732414246, - -0.5677995085716248, - -0.5695304274559021, - -0.5702524781227112, - -0.570445716381073, - -0.5702524781227112, - -0.5695304274559021, - -0.5677995085716248, - -0.5641533732414246, - -0.5573692917823792, - -0.546454131603241, - -0.5313437581062317, - -0.4047551453113556, - -0.4152625799179077, - -0.4221324026584625, - -0.4258496165275574, - -0.42752712965011597, - -0.42817384004592896, - -0.4283898174762726, - -0.4284389317035675, - -0.4283898174762726, - -0.42817384004592896, - -0.42752712965011597, - -0.4258496165275574, - -0.4221324026584625, - -0.4152625799179077, - -0.4047551453113556, - -0.2726776599884033, - -0.27911555767059326, - -0.2829477787017822, - -0.28476521372795105, - -0.28544923663139343, - -0.28565219044685364, - -0.28569909930229187, - -0.285706490278244, - -0.28569909930229187, - -0.28565219044685364, - -0.28544923663139343, - -0.28476521372795105, - -0.2829477787017822, - -0.27911555767059326, - -0.2726776599884033, - -0.13715167343616486, - -0.14016522467136383, - -0.14184196293354034, - -0.1425630897283554, - -0.1427965760231018, - -0.14284951984882355, - -0.14285661280155182, - -0.14285703003406525, - -0.14285661280155182, - -0.14284951984882355, - -0.1427965760231018, - -0.1425630897283554, - -0.14184196293354034, - -0.14016522467136383, - -0.13715167343616486, - -4.300041922533637e-8, - -4.392024521848725e-8, - -4.441957912604266e-8, - -4.462659575210637e-8, - -4.4689663525332435e-8, - -4.470226855346482e-8, - -4.4703462265260896e-8, - -4.470348358154297e-8, - -4.4703462265260896e-8, - -4.470226855346482e-8, - -4.4689663525332435e-8, - -4.462659575210637e-8, - -4.441957912604266e-8, - -4.392024521848725e-8, - -4.300041922533637e-8, - 0.13715167343616486, - 0.14016522467136383, - 0.14184196293354034, - 0.1425630897283554, - 0.1427965760231018, - 0.14284951984882355, - 0.14285661280155182, - 0.14285703003406525, - 0.14285661280155182, - 0.14284951984882355, - 0.1427965760231018, - 0.1425630897283554, - 0.14184196293354034, - 0.14016522467136383, - 0.13715167343616486, - 0.2726776599884033, - 0.27911555767059326, - 0.2829477787017822, - 0.28476521372795105, - 0.28544923663139343, - 0.28565219044685364, - 0.28569909930229187, - 0.285706490278244, - 0.28569909930229187, - 0.28565219044685364, - 0.28544923663139343, - 0.28476521372795105, - 0.2829477787017822, - 0.27911555767059326, - 0.2726776599884033, - 0.4047551453113556, - 0.4152625799179077, - 0.4221324026584625, - 0.4258496165275574, - 0.42752712965011597, - 0.42817384004592896, - 0.4283898174762726, - 0.4284389317035675, - 0.4283898174762726, - 0.42817384004592896, - 0.42752712965011597, - 0.4258496165275574, - 0.4221324026584625, - 0.4152625799179077, - 0.4047551453113556, - 0.5313437581062317, - 0.546454131603241, - 0.5573692917823792, - 0.5641533732414246, - 0.5677995085716248, - 0.5695304274559021, - 0.5702524781227112, - 0.570445716381073, - 0.5702524781227112, - 0.5695304274559021, - 0.5677995085716248, - 0.5641533732414246, - 0.5573692917823792, - 0.546454131603241, - 0.5313437581062317, - 0.6504257321357727, - 0.6701810359954834, - 0.6857585906982422, - 0.6967116594314575, - 0.7035540342330933, - 0.7073695063591003, - 0.7092100381851196, - 0.7097494602203369, - 0.7092100381851196, - 0.7073695063591003, - 0.7035540342330933, - 0.6967116594314575, - 0.6857585906982422, - 0.6701810359954834, - 0.6504257321357727, - 0.7604005932807922, - 0.7841933965682983, - 0.8042172789573669, - 0.8196812272071838, - 0.8305252194404602, - 0.8373467326164246, - 0.8409915566444397, - 0.8421250581741333, - 0.8409915566444397, - 0.8373467326164246, - 0.8305252194404602, - 0.8196812272071838, - 0.8042172789573669, - 0.7841933965682983, - 0.7604005932807922, - 0.8603883385658264, - 0.8871340155601501, - 0.9105960130691528, - 0.9298516511917114, - 0.9444288015365601, - 0.9543718695640564, - 0.9600620269775391, - 0.9619030952453613, - 0.9600620269775391, - 0.9543718695640564, - 0.9444288015365601, - 0.9298516511917114, - 0.9105960130691528, - 0.8871340155601501, - 0.8603883385658264 - ], - "xaxis": "x2", - "y": [ - -0.8603883385658264, - -0.7604005932807922, - -0.6504257321357727, - -0.5313437581062317, - -0.4047551453113556, - -0.2726776599884033, - -0.13715167343616486, - -4.300041922533637e-8, - 0.13715167343616486, - 0.2726776599884033, - 0.4047551453113556, - 0.5313437581062317, - 0.6504257321357727, - 0.7604005932807922, - 0.8603883385658264, - -0.8871340155601501, - -0.7841933965682983, - -0.6701810359954834, - -0.546454131603241, - -0.4152625799179077, - -0.27911555767059326, - -0.14016522467136383, - -4.392024521848725e-8, - 0.14016522467136383, - 0.27911555767059326, - 0.4152625799179077, - 0.546454131603241, - 0.6701810359954834, - 0.7841933965682983, - 0.8871340155601501, - -0.9105960130691528, - -0.8042172789573669, - -0.6857585906982422, - -0.5573692917823792, - -0.4221324026584625, - -0.2829477787017822, - -0.14184196293354034, - -4.441957912604266e-8, - 0.14184196293354034, - 0.2829477787017822, - 0.4221324026584625, - 0.5573692917823792, - 0.6857585906982422, - 0.8042172789573669, - 0.9105960130691528, - -0.9298516511917114, - -0.8196812272071838, - -0.6967116594314575, - -0.5641533732414246, - -0.4258496165275574, - -0.28476521372795105, - -0.1425630897283554, - -4.462659575210637e-8, - 0.1425630897283554, - 0.28476521372795105, - 0.4258496165275574, - 0.5641533732414246, - 0.6967116594314575, - 0.8196812272071838, - 0.9298516511917114, - -0.9444288015365601, - -0.8305252194404602, - -0.7035540342330933, - -0.5677995085716248, - -0.42752712965011597, - -0.28544923663139343, - -0.1427965760231018, - -4.4689663525332435e-8, - 0.1427965760231018, - 0.28544923663139343, - 0.42752712965011597, - 0.5677995085716248, - 0.7035540342330933, - 0.8305252194404602, - 0.9444288015365601, - -0.9543718695640564, - -0.8373467326164246, - -0.7073695063591003, - -0.5695304274559021, - -0.42817384004592896, - -0.28565219044685364, - -0.14284951984882355, - -4.470226855346482e-8, - 0.14284951984882355, - 0.28565219044685364, - 0.42817384004592896, - 0.5695304274559021, - 0.7073695063591003, - 0.8373467326164246, - 0.9543718695640564, - -0.9600620269775391, - -0.8409915566444397, - -0.7092100381851196, - -0.5702524781227112, - -0.4283898174762726, - -0.28569909930229187, - -0.14285661280155182, - -4.4703462265260896e-8, - 0.14285661280155182, - 0.28569909930229187, - 0.4283898174762726, - 0.5702524781227112, - 0.7092100381851196, - 0.8409915566444397, - 0.9600620269775391, - -0.9619030952453613, - -0.8421250581741333, - -0.7097494602203369, - -0.570445716381073, - -0.4284389317035675, - -0.285706490278244, - -0.14285703003406525, - -4.470348358154297e-8, - 0.14285703003406525, - 0.285706490278244, - 0.4284389317035675, - 0.570445716381073, - 0.7097494602203369, - 0.8421250581741333, - 0.9619030952453613, - -0.9600620269775391, - -0.8409915566444397, - -0.7092100381851196, - -0.5702524781227112, - -0.4283898174762726, - -0.28569909930229187, - -0.14285661280155182, - -4.4703462265260896e-8, - 0.14285661280155182, - 0.28569909930229187, - 0.4283898174762726, - 0.5702524781227112, - 0.7092100381851196, - 0.8409915566444397, - 0.9600620269775391, - -0.9543718695640564, - -0.8373467326164246, - -0.7073695063591003, - -0.5695304274559021, - -0.42817384004592896, - -0.28565219044685364, - -0.14284951984882355, - -4.470226855346482e-8, - 0.14284951984882355, - 0.28565219044685364, - 0.42817384004592896, - 0.5695304274559021, - 0.7073695063591003, - 0.8373467326164246, - 0.9543718695640564, - -0.9444288015365601, - -0.8305252194404602, - -0.7035540342330933, - -0.5677995085716248, - -0.42752712965011597, - -0.28544923663139343, - -0.1427965760231018, - -4.4689663525332435e-8, - 0.1427965760231018, - 0.28544923663139343, - 0.42752712965011597, - 0.5677995085716248, - 0.7035540342330933, - 0.8305252194404602, - 0.9444288015365601, - -0.9298516511917114, - -0.8196812272071838, - -0.6967116594314575, - -0.5641533732414246, - -0.4258496165275574, - -0.28476521372795105, - -0.1425630897283554, - -4.462659575210637e-8, - 0.1425630897283554, - 0.28476521372795105, - 0.4258496165275574, - 0.5641533732414246, - 0.6967116594314575, - 0.8196812272071838, - 0.9298516511917114, - -0.9105960130691528, - -0.8042172789573669, - -0.6857585906982422, - -0.5573692917823792, - -0.4221324026584625, - -0.2829477787017822, - -0.14184196293354034, - -4.441957912604266e-8, - 0.14184196293354034, - 0.2829477787017822, - 0.4221324026584625, - 0.5573692917823792, - 0.6857585906982422, - 0.8042172789573669, - 0.9105960130691528, - -0.8871340155601501, - -0.7841933965682983, - -0.6701810359954834, - -0.546454131603241, - -0.4152625799179077, - -0.27911555767059326, - -0.14016522467136383, - -4.392024521848725e-8, - 0.14016522467136383, - 0.27911555767059326, - 0.4152625799179077, - 0.546454131603241, - 0.6701810359954834, - 0.7841933965682983, - 0.8871340155601501, - -0.8603883385658264, - -0.7604005932807922, - -0.6504257321357727, - -0.5313437581062317, - -0.4047551453113556, - -0.2726776599884033, - -0.13715167343616486, - -4.300041922533637e-8, - 0.13715167343616486, - 0.2726776599884033, - 0.4047551453113556, - 0.5313437581062317, - 0.6504257321357727, - 0.7604005932807922, - 0.8603883385658264 - ], - "yaxis": "y2" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9859173893928528, - -0.9916064739227295, - -0.9950265884399414, - -0.996986448764801, - -0.9980707764625549, - -0.9986478686332703, - -0.9989262819290161, - -0.9990088939666748, - -0.9989262819290161, - -0.9986478686332703, - -0.9980707764625549, - -0.996986448764801, - -0.9950265884399414, - -0.9916064739227295, - -0.9859173893928528, - -0.8499484062194824, - -0.8533052802085876, - -0.8551273345947266, - -0.856067955493927, - -0.8565370440483093, - -0.8567637205123901, - -0.8568650484085083, - -0.8568938374519348, - -0.8568650484085083, - -0.8567637205123901, - -0.8565370440483093, - -0.856067955493927, - -0.8551273345947266, - -0.8533052802085876, - -0.8499484062194824, - -0.7107332348823547, - -0.7126061320304871, - -0.7135187387466431, - -0.7139371037483215, - -0.7141205072402954, - -0.7141982316970825, - -0.7142291069030762, - -0.7142373919487, - -0.7142291069030762, - -0.7141982316970825, - -0.7141205072402954, - -0.7139371037483215, - -0.7135187387466431, - -0.7126061320304871, - -0.7107332348823547, - -0.5697064995765686, - -0.5707119107246399, - -0.5711496472358704, - -0.5713247656822205, - -0.5713898539543152, - -0.5714126825332642, - -0.5714202523231506, - -0.5714220404624939, - -0.5714202523231506, - -0.5714126825332642, - -0.5713898539543152, - -0.5713247656822205, - -0.5711496472358704, - -0.5707119107246399, - -0.5697064995765686, - -0.4277445673942566, - -0.4282684922218323, - -0.42847225069999695, - -0.4285423755645752, - -0.42856359481811523, - -0.4285692572593689, - -0.42857062816619873, - -0.4285708963871002, - -0.42857062816619873, - -0.4285692572593689, - -0.42856359481811523, - -0.4285423755645752, - -0.42847225069999695, - -0.4282684922218323, - -0.4277445673942566, - -0.2853279411792755, - -0.2855879068374634, - -0.28567925095558167, - -0.2857063412666321, - -0.2857128381729126, - -0.2857140600681305, - -0.2857142388820648, - -0.2857142686843872, - -0.2857142388820648, - -0.2857140600681305, - -0.2857128381729126, - -0.2857063412666321, - -0.28567925095558167, - -0.2855879068374634, - -0.2853279411792755, - -0.14270371198654175, - -0.14281079173088074, - -0.1428457796573639, - -0.14285503327846527, - -0.14285685122013092, - -0.14285708963871002, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285708963871002, - -0.14285685122013092, - -0.14285503327846527, - -0.1428457796573639, - -0.14281079173088074, - -0.14270371198654175, - -4.465917768925465e-8, - -4.4690494860333274e-8, - -4.470045666948863e-8, - -4.470297909620058e-8, - -4.470343029083779e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470343029083779e-8, - -4.470297909620058e-8, - -4.470045666948863e-8, - -4.4690494860333274e-8, - -4.465917768925465e-8, - 0.14270371198654175, - 0.14281079173088074, - 0.1428457796573639, - 0.14285503327846527, - 0.14285685122013092, - 0.14285708963871002, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285708963871002, - 0.14285685122013092, - 0.14285503327846527, - 0.1428457796573639, - 0.14281079173088074, - 0.14270371198654175, - 0.2853279411792755, - 0.2855879068374634, - 0.28567925095558167, - 0.2857063412666321, - 0.2857128381729126, - 0.2857140600681305, - 0.2857142388820648, - 0.2857142686843872, - 0.2857142388820648, - 0.2857140600681305, - 0.2857128381729126, - 0.2857063412666321, - 0.28567925095558167, - 0.2855879068374634, - 0.2853279411792755, - 0.4277445673942566, - 0.4282684922218323, - 0.42847225069999695, - 0.4285423755645752, - 0.42856359481811523, - 0.4285692572593689, - 0.42857062816619873, - 0.4285708963871002, - 0.42857062816619873, - 0.4285692572593689, - 0.42856359481811523, - 0.4285423755645752, - 0.42847225069999695, - 0.4282684922218323, - 0.4277445673942566, - 0.5697064995765686, - 0.5707119107246399, - 0.5711496472358704, - 0.5713247656822205, - 0.5713898539543152, - 0.5714126825332642, - 0.5714202523231506, - 0.5714220404624939, - 0.5714202523231506, - 0.5714126825332642, - 0.5713898539543152, - 0.5713247656822205, - 0.5711496472358704, - 0.5707119107246399, - 0.5697064995765686, - 0.7107332348823547, - 0.7126061320304871, - 0.7135187387466431, - 0.7139371037483215, - 0.7141205072402954, - 0.7141982316970825, - 0.7142291069030762, - 0.7142373919487, - 0.7142291069030762, - 0.7141982316970825, - 0.7141205072402954, - 0.7139371037483215, - 0.7135187387466431, - 0.7126061320304871, - 0.7107332348823547, - 0.8499484062194824, - 0.8533052802085876, - 0.8551273345947266, - 0.856067955493927, - 0.8565370440483093, - 0.8567637205123901, - 0.8568650484085083, - 0.8568938374519348, - 0.8568650484085083, - 0.8567637205123901, - 0.8565370440483093, - 0.856067955493927, - 0.8551273345947266, - 0.8533052802085876, - 0.8499484062194824, - 0.9859173893928528, - 0.9916064739227295, - 0.9950265884399414, - 0.996986448764801, - 0.9980707764625549, - 0.9986478686332703, - 0.9989262819290161, - 0.9990088939666748, - 0.9989262819290161, - 0.9986478686332703, - 0.9980707764625549, - 0.996986448764801, - 0.9950265884399414, - 0.9916064739227295, - 0.9859173893928528 - ], - "xaxis": "x5", - "y": [ - -0.9859173893928528, - -0.8499484062194824, - -0.7107332348823547, - -0.5697064995765686, - -0.4277445673942566, - -0.2853279411792755, - -0.14270371198654175, - -4.465917768925465e-8, - 0.14270371198654175, - 0.2853279411792755, - 0.4277445673942566, - 0.5697064995765686, - 0.7107332348823547, - 0.8499484062194824, - 0.9859173893928528, - -0.9916064739227295, - -0.8533052802085876, - -0.7126061320304871, - -0.5707119107246399, - -0.4282684922218323, - -0.2855879068374634, - -0.14281079173088074, - -4.4690494860333274e-8, - 0.14281079173088074, - 0.2855879068374634, - 0.4282684922218323, - 0.5707119107246399, - 0.7126061320304871, - 0.8533052802085876, - 0.9916064739227295, - -0.9950265884399414, - -0.8551273345947266, - -0.7135187387466431, - -0.5711496472358704, - -0.42847225069999695, - -0.28567925095558167, - -0.1428457796573639, - -4.470045666948863e-8, - 0.1428457796573639, - 0.28567925095558167, - 0.42847225069999695, - 0.5711496472358704, - 0.7135187387466431, - 0.8551273345947266, - 0.9950265884399414, - -0.996986448764801, - -0.856067955493927, - -0.7139371037483215, - -0.5713247656822205, - -0.4285423755645752, - -0.2857063412666321, - -0.14285503327846527, - -4.470297909620058e-8, - 0.14285503327846527, - 0.2857063412666321, - 0.4285423755645752, - 0.5713247656822205, - 0.7139371037483215, - 0.856067955493927, - 0.996986448764801, - -0.9980707764625549, - -0.8565370440483093, - -0.7141205072402954, - -0.5713898539543152, - -0.42856359481811523, - -0.2857128381729126, - -0.14285685122013092, - -4.470343029083779e-8, - 0.14285685122013092, - 0.2857128381729126, - 0.42856359481811523, - 0.5713898539543152, - 0.7141205072402954, - 0.8565370440483093, - 0.9980707764625549, - -0.9986478686332703, - -0.8567637205123901, - -0.7141982316970825, - -0.5714126825332642, - -0.4285692572593689, - -0.2857140600681305, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.2857140600681305, - 0.4285692572593689, - 0.5714126825332642, - 0.7141982316970825, - 0.8567637205123901, - 0.9986478686332703, - -0.9989262819290161, - -0.8568650484085083, - -0.7142291069030762, - -0.5714202523231506, - -0.42857062816619873, - -0.2857142388820648, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857142388820648, - 0.42857062816619873, - 0.5714202523231506, - 0.7142291069030762, - 0.8568650484085083, - 0.9989262819290161, - -0.9990088939666748, - -0.8568938374519348, - -0.7142373919487, - -0.5714220404624939, - -0.4285708963871002, - -0.2857142686843872, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285708963871002, - 0.5714220404624939, - 0.7142373919487, - 0.8568938374519348, - 0.9990088939666748, - -0.9989262819290161, - -0.8568650484085083, - -0.7142291069030762, - -0.5714202523231506, - -0.42857062816619873, - -0.2857142388820648, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857142388820648, - 0.42857062816619873, - 0.5714202523231506, - 0.7142291069030762, - 0.8568650484085083, - 0.9989262819290161, - -0.9986478686332703, - -0.8567637205123901, - -0.7141982316970825, - -0.5714126825332642, - -0.4285692572593689, - -0.2857140600681305, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.2857140600681305, - 0.4285692572593689, - 0.5714126825332642, - 0.7141982316970825, - 0.8567637205123901, - 0.9986478686332703, - -0.9980707764625549, - -0.8565370440483093, - -0.7141205072402954, - -0.5713898539543152, - -0.42856359481811523, - -0.2857128381729126, - -0.14285685122013092, - -4.470343029083779e-8, - 0.14285685122013092, - 0.2857128381729126, - 0.42856359481811523, - 0.5713898539543152, - 0.7141205072402954, - 0.8565370440483093, - 0.9980707764625549, - -0.996986448764801, - -0.856067955493927, - -0.7139371037483215, - -0.5713247656822205, - -0.4285423755645752, - -0.2857063412666321, - -0.14285503327846527, - -4.470297909620058e-8, - 0.14285503327846527, - 0.2857063412666321, - 0.4285423755645752, - 0.5713247656822205, - 0.7139371037483215, - 0.856067955493927, - 0.996986448764801, - -0.9950265884399414, - -0.8551273345947266, - -0.7135187387466431, - -0.5711496472358704, - -0.42847225069999695, - -0.28567925095558167, - -0.1428457796573639, - -4.470045666948863e-8, - 0.1428457796573639, - 0.28567925095558167, - 0.42847225069999695, - 0.5711496472358704, - 0.7135187387466431, - 0.8551273345947266, - 0.9950265884399414, - -0.9916064739227295, - -0.8533052802085876, - -0.7126061320304871, - -0.5707119107246399, - -0.4282684922218323, - -0.2855879068374634, - -0.14281079173088074, - -4.4690494860333274e-8, - 0.14281079173088074, - 0.2855879068374634, - 0.4282684922218323, - 0.5707119107246399, - 0.7126061320304871, - 0.8533052802085876, - 0.9916064739227295, - -0.9859173893928528, - -0.8499484062194824, - -0.7107332348823547, - -0.5697064995765686, - -0.4277445673942566, - -0.2853279411792755, - -0.14270371198654175, - -4.465917768925465e-8, - 0.14270371198654175, - 0.2853279411792755, - 0.4277445673942566, - 0.5697064995765686, - 0.7107332348823547, - 0.8499484062194824, - 0.9859173893928528 - ], - "yaxis": "y5" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9591017365455627, - -0.9735259413719177, - -0.9833532571792603, - -0.9895171523094177, - -0.9931325316429138, - -0.9951245188713074, - -0.9961038827896118, - -0.9963968396186829, - -0.9961038827896118, - -0.9951245188713074, - -0.9931325316429138, - -0.9895171523094177, - -0.9833532571792603, - -0.9735259413719177, - -0.9591017365455627, - -0.8344507813453674, - -0.8441764116287231, - -0.8500334024429321, - -0.8532584309577942, - -0.8549256920814514, - -0.8557467460632324, - -0.856116771697998, - -0.8562222123146057, - -0.856116771697998, - -0.8557467460632324, - -0.8549256920814514, - -0.8532584309577942, - -0.8500334024429321, - -0.8441764116287231, - -0.8344507813453674, - -0.7023952007293701, - -0.7083612084388733, - -0.7115027904510498, - -0.713003396987915, - -0.7136741280555725, - -0.7139608860015869, - -0.7140755653381348, - -0.7141059637069702, - -0.7140755653381348, - -0.7139608860015869, - -0.7136741280555725, - -0.713003396987915, - -0.7115027904510498, - -0.7083612084388733, - -0.7023952007293701, - -0.5654383301734924, - -0.568838894367218, - -0.5704026818275452, - -0.5710439682006836, - -0.5712847113609314, - -0.5713695287704468, - -0.5713977217674255, - -0.5714043378829956, - -0.5713977217674255, - -0.5713695287704468, - -0.5712847113609314, - -0.5710439682006836, - -0.5704026818275452, - -0.568838894367218, - -0.5654383301734924, - -0.4256281852722168, - -0.4274628162384033, - -0.4282044470310211, - -0.42846351861953735, - -0.4285423755645752, - -0.4285634756088257, - -0.42856863141059875, - -0.4285695552825928, - -0.42856863141059875, - -0.4285634756088257, - -0.4285423755645752, - -0.42846351861953735, - -0.4282044470310211, - -0.4274628162384033, - -0.4256281852722168, - -0.28432127833366394, - -0.28524887561798096, - -0.28558433055877686, - -0.2856847643852234, - -0.2857089936733246, - -0.2857135236263275, - -0.28571417927742004, - -0.2857142388820648, - -0.28571417927742004, - -0.2857135236263275, - -0.2857089936733246, - -0.2856847643852234, - -0.28558433055877686, - -0.28524887561798096, - -0.28432127833366394, - -0.14230051636695862, - -0.14268608391284943, - -0.14281506836414337, - -0.142849400639534, - -0.1428561806678772, - -0.14285705983638763, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285705983638763, - -0.1428561806678772, - -0.142849400639534, - -0.14281506836414337, - -0.14268608391284943, - -0.14230051636695862, - -4.454240709605983e-8, - -4.465546865617398e-8, - -4.469223213732221e-8, - -4.470159353786585e-8, - -4.4703291735004314e-8, - -4.470348002882929e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348002882929e-8, - -4.4703291735004314e-8, - -4.470159353786585e-8, - -4.469223213732221e-8, - -4.465546865617398e-8, - -4.454240709605983e-8, - 0.14230051636695862, - 0.14268608391284943, - 0.14281506836414337, - 0.142849400639534, - 0.1428561806678772, - 0.14285705983638763, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285705983638763, - 0.1428561806678772, - 0.142849400639534, - 0.14281506836414337, - 0.14268608391284943, - 0.14230051636695862, - 0.28432127833366394, - 0.28524887561798096, - 0.28558433055877686, - 0.2856847643852234, - 0.2857089936733246, - 0.2857135236263275, - 0.28571417927742004, - 0.2857142388820648, - 0.28571417927742004, - 0.2857135236263275, - 0.2857089936733246, - 0.2856847643852234, - 0.28558433055877686, - 0.28524887561798096, - 0.28432127833366394, - 0.4256281852722168, - 0.4274628162384033, - 0.4282044470310211, - 0.42846351861953735, - 0.4285423755645752, - 0.4285634756088257, - 0.42856863141059875, - 0.4285695552825928, - 0.42856863141059875, - 0.4285634756088257, - 0.4285423755645752, - 0.42846351861953735, - 0.4282044470310211, - 0.4274628162384033, - 0.4256281852722168, - 0.5654383301734924, - 0.568838894367218, - 0.5704026818275452, - 0.5710439682006836, - 0.5712847113609314, - 0.5713695287704468, - 0.5713977217674255, - 0.5714043378829956, - 0.5713977217674255, - 0.5713695287704468, - 0.5712847113609314, - 0.5710439682006836, - 0.5704026818275452, - 0.568838894367218, - 0.5654383301734924, - 0.7023952007293701, - 0.7083612084388733, - 0.7115027904510498, - 0.713003396987915, - 0.7136741280555725, - 0.7139608860015869, - 0.7140755653381348, - 0.7141059637069702, - 0.7140755653381348, - 0.7139608860015869, - 0.7136741280555725, - 0.713003396987915, - 0.7115027904510498, - 0.7083612084388733, - 0.7023952007293701, - 0.8344507813453674, - 0.8441764116287231, - 0.8500334024429321, - 0.8532584309577942, - 0.8549256920814514, - 0.8557467460632324, - 0.856116771697998, - 0.8562222123146057, - 0.856116771697998, - 0.8557467460632324, - 0.8549256920814514, - 0.8532584309577942, - 0.8500334024429321, - 0.8441764116287231, - 0.8344507813453674, - 0.9591017365455627, - 0.9735259413719177, - 0.9833532571792603, - 0.9895171523094177, - 0.9931325316429138, - 0.9951245188713074, - 0.9961038827896118, - 0.9963968396186829, - 0.9961038827896118, - 0.9951245188713074, - 0.9931325316429138, - 0.9895171523094177, - 0.9833532571792603, - 0.9735259413719177, - 0.9591017365455627 - ], - "xaxis": "x5", - "y": [ - -0.9591017365455627, - -0.8344507813453674, - -0.7023952007293701, - -0.5654383301734924, - -0.4256281852722168, - -0.28432127833366394, - -0.14230051636695862, - -4.454240709605983e-8, - 0.14230051636695862, - 0.28432127833366394, - 0.4256281852722168, - 0.5654383301734924, - 0.7023952007293701, - 0.8344507813453674, - 0.9591017365455627, - -0.9735259413719177, - -0.8441764116287231, - -0.7083612084388733, - -0.568838894367218, - -0.4274628162384033, - -0.28524887561798096, - -0.14268608391284943, - -4.465546865617398e-8, - 0.14268608391284943, - 0.28524887561798096, - 0.4274628162384033, - 0.568838894367218, - 0.7083612084388733, - 0.8441764116287231, - 0.9735259413719177, - -0.9833532571792603, - -0.8500334024429321, - -0.7115027904510498, - -0.5704026818275452, - -0.4282044470310211, - -0.28558433055877686, - -0.14281506836414337, - -4.469223213732221e-8, - 0.14281506836414337, - 0.28558433055877686, - 0.4282044470310211, - 0.5704026818275452, - 0.7115027904510498, - 0.8500334024429321, - 0.9833532571792603, - -0.9895171523094177, - -0.8532584309577942, - -0.713003396987915, - -0.5710439682006836, - -0.42846351861953735, - -0.2856847643852234, - -0.142849400639534, - -4.470159353786585e-8, - 0.142849400639534, - 0.2856847643852234, - 0.42846351861953735, - 0.5710439682006836, - 0.713003396987915, - 0.8532584309577942, - 0.9895171523094177, - -0.9931325316429138, - -0.8549256920814514, - -0.7136741280555725, - -0.5712847113609314, - -0.4285423755645752, - -0.2857089936733246, - -0.1428561806678772, - -4.4703291735004314e-8, - 0.1428561806678772, - 0.2857089936733246, - 0.4285423755645752, - 0.5712847113609314, - 0.7136741280555725, - 0.8549256920814514, - 0.9931325316429138, - -0.9951245188713074, - -0.8557467460632324, - -0.7139608860015869, - -0.5713695287704468, - -0.4285634756088257, - -0.2857135236263275, - -0.14285705983638763, - -4.470348002882929e-8, - 0.14285705983638763, - 0.2857135236263275, - 0.4285634756088257, - 0.5713695287704468, - 0.7139608860015869, - 0.8557467460632324, - 0.9951245188713074, - -0.9961038827896118, - -0.856116771697998, - -0.7140755653381348, - -0.5713977217674255, - -0.42856863141059875, - -0.28571417927742004, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.28571417927742004, - 0.42856863141059875, - 0.5713977217674255, - 0.7140755653381348, - 0.856116771697998, - 0.9961038827896118, - -0.9963968396186829, - -0.8562222123146057, - -0.7141059637069702, - -0.5714043378829956, - -0.4285695552825928, - -0.2857142388820648, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857142388820648, - 0.4285695552825928, - 0.5714043378829956, - 0.7141059637069702, - 0.8562222123146057, - 0.9963968396186829, - -0.9961038827896118, - -0.856116771697998, - -0.7140755653381348, - -0.5713977217674255, - -0.42856863141059875, - -0.28571417927742004, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.28571417927742004, - 0.42856863141059875, - 0.5713977217674255, - 0.7140755653381348, - 0.856116771697998, - 0.9961038827896118, - -0.9951245188713074, - -0.8557467460632324, - -0.7139608860015869, - -0.5713695287704468, - -0.4285634756088257, - -0.2857135236263275, - -0.14285705983638763, - -4.470348002882929e-8, - 0.14285705983638763, - 0.2857135236263275, - 0.4285634756088257, - 0.5713695287704468, - 0.7139608860015869, - 0.8557467460632324, - 0.9951245188713074, - -0.9931325316429138, - -0.8549256920814514, - -0.7136741280555725, - -0.5712847113609314, - -0.4285423755645752, - -0.2857089936733246, - -0.1428561806678772, - -4.4703291735004314e-8, - 0.1428561806678772, - 0.2857089936733246, - 0.4285423755645752, - 0.5712847113609314, - 0.7136741280555725, - 0.8549256920814514, - 0.9931325316429138, - -0.9895171523094177, - -0.8532584309577942, - -0.713003396987915, - -0.5710439682006836, - -0.42846351861953735, - -0.2856847643852234, - -0.142849400639534, - -4.470159353786585e-8, - 0.142849400639534, - 0.2856847643852234, - 0.42846351861953735, - 0.5710439682006836, - 0.713003396987915, - 0.8532584309577942, - 0.9895171523094177, - -0.9833532571792603, - -0.8500334024429321, - -0.7115027904510498, - -0.5704026818275452, - -0.4282044470310211, - -0.28558433055877686, - -0.14281506836414337, - -4.469223213732221e-8, - 0.14281506836414337, - 0.28558433055877686, - 0.4282044470310211, - 0.5704026818275452, - 0.7115027904510498, - 0.8500334024429321, - 0.9833532571792603, - -0.9735259413719177, - -0.8441764116287231, - -0.7083612084388733, - -0.568838894367218, - -0.4274628162384033, - -0.28524887561798096, - -0.14268608391284943, - -4.465546865617398e-8, - 0.14268608391284943, - 0.28524887561798096, - 0.4274628162384033, - 0.568838894367218, - 0.7083612084388733, - 0.8441764116287231, - 0.9735259413719177, - -0.9591017365455627, - -0.8344507813453674, - -0.7023952007293701, - -0.5654383301734924, - -0.4256281852722168, - -0.28432127833366394, - -0.14230051636695862, - -4.454240709605983e-8, - 0.14230051636695862, - 0.28432127833366394, - 0.4256281852722168, - 0.5654383301734924, - 0.7023952007293701, - 0.8344507813453674, - 0.9591017365455627 - ], - "yaxis": "y5" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.940585732460022, - -0.9597006440162659, - -0.9736415147781372, - -0.9829121828079224, - -0.988590657711029, - -0.9918086528778076, - -0.993416428565979, - -0.9939007759094238, - -0.993416428565979, - -0.9918086528778076, - -0.988590657711029, - -0.9829121828079224, - -0.9736415147781372, - -0.9597006440162659, - -0.940585732460022, - -0.8226005434989929, - -0.8364716172218323, - -0.845422089099884, - -0.850603461265564, - -0.8533667922019958, - -0.8547508120536804, - -0.8553799986839294, - -0.8555599451065063, - -0.8553799986839294, - -0.8547508120536804, - -0.8533667922019958, - -0.850603461265564, - -0.845422089099884, - -0.8364716172218323, - -0.8226005434989929, - -0.6954582333564758, - -0.7045184373855591, - -0.7095831632614136, - -0.7120910286903381, - -0.713232696056366, - -0.7137249708175659, - -0.7139225006103516, - -0.7139750719070435, - -0.7139225006103516, - -0.7137249708175659, - -0.713232696056366, - -0.7120910286903381, - -0.7095831632614136, - -0.7045184373855591, - -0.6954582333564758, - -0.5616640448570251, - -0.5670689344406128, - -0.5696727633476257, - -0.5707656741142273, - -0.571179986000061, - -0.571326494216919, - -0.5713751912117004, - -0.5713866949081421, - -0.5713751912117004, - -0.571326494216919, - -0.571179986000061, - -0.5707656741142273, - -0.5696727633476257, - -0.5670689344406128, - -0.5616640448570251, - -0.42368167638778687, - -0.42668336629867554, - -0.42793959379196167, - -0.42838501930236816, - -0.42852118611335754, - -0.42855772376060486, - -0.4285666048526764, - -0.4285682439804077, - -0.4285666048526764, - -0.42855772376060486, - -0.42852118611335754, - -0.42838501930236816, - -0.42793959379196167, - -0.42668336629867554, - -0.42368167638778687, - -0.2833738625049591, - -0.2849169075489044, - -0.285489946603775, - -0.2856632471084595, - -0.2857051491737366, - -0.28571298718452454, - -0.2857140600681305, - -0.28571420907974243, - -0.2857140600681305, - -0.28571298718452454, - -0.2857051491737366, - -0.2856632471084595, - -0.285489946603775, - -0.2849169075489044, - -0.2833738625049591, - -0.14191658794879913, - -0.14256329834461212, - -0.1427844613790512, - -0.14284376800060272, - -0.14285551011562347, - -0.14285700023174286, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285700023174286, - -0.14285551011562347, - -0.14284376800060272, - -0.1427844613790512, - -0.14256329834461212, - -0.14191658794879913, - -4.4430827017549746e-8, - -4.462092917378868e-8, - -4.4684039579578894e-8, - -4.4700211532244793e-8, - -4.470315317917084e-8, - -4.470347292340193e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470347292340193e-8, - -4.470315317917084e-8, - -4.4700211532244793e-8, - -4.4684039579578894e-8, - -4.462092917378868e-8, - -4.4430827017549746e-8, - 0.14191658794879913, - 0.14256329834461212, - 0.1427844613790512, - 0.14284376800060272, - 0.14285551011562347, - 0.14285700023174286, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285700023174286, - 0.14285551011562347, - 0.14284376800060272, - 0.1427844613790512, - 0.14256329834461212, - 0.14191658794879913, - 0.2833738625049591, - 0.2849169075489044, - 0.285489946603775, - 0.2856632471084595, - 0.2857051491737366, - 0.28571298718452454, - 0.2857140600681305, - 0.28571420907974243, - 0.2857140600681305, - 0.28571298718452454, - 0.2857051491737366, - 0.2856632471084595, - 0.285489946603775, - 0.2849169075489044, - 0.2833738625049591, - 0.42368167638778687, - 0.42668336629867554, - 0.42793959379196167, - 0.42838501930236816, - 0.42852118611335754, - 0.42855772376060486, - 0.4285666048526764, - 0.4285682439804077, - 0.4285666048526764, - 0.42855772376060486, - 0.42852118611335754, - 0.42838501930236816, - 0.42793959379196167, - 0.42668336629867554, - 0.42368167638778687, - 0.5616640448570251, - 0.5670689344406128, - 0.5696727633476257, - 0.5707656741142273, - 0.571179986000061, - 0.571326494216919, - 0.5713751912117004, - 0.5713866949081421, - 0.5713751912117004, - 0.571326494216919, - 0.571179986000061, - 0.5707656741142273, - 0.5696727633476257, - 0.5670689344406128, - 0.5616640448570251, - 0.6954582333564758, - 0.7045184373855591, - 0.7095831632614136, - 0.7120910286903381, - 0.713232696056366, - 0.7137249708175659, - 0.7139225006103516, - 0.7139750719070435, - 0.7139225006103516, - 0.7137249708175659, - 0.713232696056366, - 0.7120910286903381, - 0.7095831632614136, - 0.7045184373855591, - 0.6954582333564758, - 0.8226005434989929, - 0.8364716172218323, - 0.845422089099884, - 0.850603461265564, - 0.8533667922019958, - 0.8547508120536804, - 0.8553799986839294, - 0.8555599451065063, - 0.8553799986839294, - 0.8547508120536804, - 0.8533667922019958, - 0.850603461265564, - 0.845422089099884, - 0.8364716172218323, - 0.8226005434989929, - 0.940585732460022, - 0.9597006440162659, - 0.9736415147781372, - 0.9829121828079224, - 0.988590657711029, - 0.9918086528778076, - 0.993416428565979, - 0.9939007759094238, - 0.993416428565979, - 0.9918086528778076, - 0.988590657711029, - 0.9829121828079224, - 0.9736415147781372, - 0.9597006440162659, - 0.940585732460022 - ], - "xaxis": "x5", - "y": [ - -0.940585732460022, - -0.8226005434989929, - -0.6954582333564758, - -0.5616640448570251, - -0.42368167638778687, - -0.2833738625049591, - -0.14191658794879913, - -4.4430827017549746e-8, - 0.14191658794879913, - 0.2833738625049591, - 0.42368167638778687, - 0.5616640448570251, - 0.6954582333564758, - 0.8226005434989929, - 0.940585732460022, - -0.9597006440162659, - -0.8364716172218323, - -0.7045184373855591, - -0.5670689344406128, - -0.42668336629867554, - -0.2849169075489044, - -0.14256329834461212, - -4.462092917378868e-8, - 0.14256329834461212, - 0.2849169075489044, - 0.42668336629867554, - 0.5670689344406128, - 0.7045184373855591, - 0.8364716172218323, - 0.9597006440162659, - -0.9736415147781372, - -0.845422089099884, - -0.7095831632614136, - -0.5696727633476257, - -0.42793959379196167, - -0.285489946603775, - -0.1427844613790512, - -4.4684039579578894e-8, - 0.1427844613790512, - 0.285489946603775, - 0.42793959379196167, - 0.5696727633476257, - 0.7095831632614136, - 0.845422089099884, - 0.9736415147781372, - -0.9829121828079224, - -0.850603461265564, - -0.7120910286903381, - -0.5707656741142273, - -0.42838501930236816, - -0.2856632471084595, - -0.14284376800060272, - -4.4700211532244793e-8, - 0.14284376800060272, - 0.2856632471084595, - 0.42838501930236816, - 0.5707656741142273, - 0.7120910286903381, - 0.850603461265564, - 0.9829121828079224, - -0.988590657711029, - -0.8533667922019958, - -0.713232696056366, - -0.571179986000061, - -0.42852118611335754, - -0.2857051491737366, - -0.14285551011562347, - -4.470315317917084e-8, - 0.14285551011562347, - 0.2857051491737366, - 0.42852118611335754, - 0.571179986000061, - 0.713232696056366, - 0.8533667922019958, - 0.988590657711029, - -0.9918086528778076, - -0.8547508120536804, - -0.7137249708175659, - -0.571326494216919, - -0.42855772376060486, - -0.28571298718452454, - -0.14285700023174286, - -4.470347292340193e-8, - 0.14285700023174286, - 0.28571298718452454, - 0.42855772376060486, - 0.571326494216919, - 0.7137249708175659, - 0.8547508120536804, - 0.9918086528778076, - -0.993416428565979, - -0.8553799986839294, - -0.7139225006103516, - -0.5713751912117004, - -0.4285666048526764, - -0.2857140600681305, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857140600681305, - 0.4285666048526764, - 0.5713751912117004, - 0.7139225006103516, - 0.8553799986839294, - 0.993416428565979, - -0.9939007759094238, - -0.8555599451065063, - -0.7139750719070435, - -0.5713866949081421, - -0.4285682439804077, - -0.28571420907974243, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.28571420907974243, - 0.4285682439804077, - 0.5713866949081421, - 0.7139750719070435, - 0.8555599451065063, - 0.9939007759094238, - -0.993416428565979, - -0.8553799986839294, - -0.7139225006103516, - -0.5713751912117004, - -0.4285666048526764, - -0.2857140600681305, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857140600681305, - 0.4285666048526764, - 0.5713751912117004, - 0.7139225006103516, - 0.8553799986839294, - 0.993416428565979, - -0.9918086528778076, - -0.8547508120536804, - -0.7137249708175659, - -0.571326494216919, - -0.42855772376060486, - -0.28571298718452454, - -0.14285700023174286, - -4.470347292340193e-8, - 0.14285700023174286, - 0.28571298718452454, - 0.42855772376060486, - 0.571326494216919, - 0.7137249708175659, - 0.8547508120536804, - 0.9918086528778076, - -0.988590657711029, - -0.8533667922019958, - -0.713232696056366, - -0.571179986000061, - -0.42852118611335754, - -0.2857051491737366, - -0.14285551011562347, - -4.470315317917084e-8, - 0.14285551011562347, - 0.2857051491737366, - 0.42852118611335754, - 0.571179986000061, - 0.713232696056366, - 0.8533667922019958, - 0.988590657711029, - -0.9829121828079224, - -0.850603461265564, - -0.7120910286903381, - -0.5707656741142273, - -0.42838501930236816, - -0.2856632471084595, - -0.14284376800060272, - -4.4700211532244793e-8, - 0.14284376800060272, - 0.2856632471084595, - 0.42838501930236816, - 0.5707656741142273, - 0.7120910286903381, - 0.850603461265564, - 0.9829121828079224, - -0.9736415147781372, - -0.845422089099884, - -0.7095831632614136, - -0.5696727633476257, - -0.42793959379196167, - -0.285489946603775, - -0.1427844613790512, - -4.4684039579578894e-8, - 0.1427844613790512, - 0.285489946603775, - 0.42793959379196167, - 0.5696727633476257, - 0.7095831632614136, - 0.845422089099884, - 0.9736415147781372, - -0.9597006440162659, - -0.8364716172218323, - -0.7045184373855591, - -0.5670689344406128, - -0.42668336629867554, - -0.2849169075489044, - -0.14256329834461212, - -4.462092917378868e-8, - 0.14256329834461212, - 0.2849169075489044, - 0.42668336629867554, - 0.5670689344406128, - 0.7045184373855591, - 0.8364716172218323, - 0.9597006440162659, - -0.940585732460022, - -0.8226005434989929, - -0.6954582333564758, - -0.5616640448570251, - -0.42368167638778687, - -0.2833738625049591, - -0.14191658794879913, - -4.4430827017549746e-8, - 0.14191658794879913, - 0.2833738625049591, - 0.42368167638778687, - 0.5616640448570251, - 0.6954582333564758, - 0.8226005434989929, - 0.940585732460022 - ], - "yaxis": "y5" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9263367056846619, - -0.9484496712684631, - -0.9653007984161377, - -0.9769823551177979, - -0.9843824505805969, - -0.988675594329834, - -0.9908508658409119, - -0.9915103912353516, - -0.9908508658409119, - -0.988675594329834, - -0.9843824505805969, - -0.9769823551177979, - -0.9653007984161377, - -0.9484496712684631, - -0.9263367056846619, - -0.8129569292068481, - -0.8297879695892334, - -0.8412047624588013, - -0.8480860590934753, - -0.8518566489219666, - -0.853775143623352, - -0.8546544909477234, - -0.8549067974090576, - -0.8546544909477234, - -0.853775143623352, - -0.8518566489219666, - -0.8480860590934753, - -0.8412047624588013, - -0.8297879695892334, - -0.8129569292068481, - -0.689500629901886, - -0.7010039687156677, - -0.7077505588531494, - -0.7111989259719849, - -0.712796151638031, - -0.71349036693573, - -0.7137700915336609, - -0.7138444781303406, - -0.7137700915336609, - -0.71349036693573, - -0.712796151638031, - -0.7111989259719849, - -0.7077505588531494, - -0.7010039687156677, - -0.689500629901886, - -0.558275580406189, - -0.5653906464576721, - -0.56895911693573, - -0.570489764213562, - -0.5710755586624146, - -0.5712834596633911, - -0.5713527202606201, - -0.5713690519332886, - -0.5713527202606201, - -0.5712834596633911, - -0.5710755586624146, - -0.570489764213562, - -0.56895911693573, - -0.5653906464576721, - -0.558275580406189, - -0.4218781590461731, - -0.4259282946586609, - -0.4276776611804962, - -0.4283066689968109, - -0.4284999966621399, - -0.42855194211006165, - -0.4285646080970764, - -0.42856690287590027, - -0.4285646080970764, - -0.42855194211006165, - -0.4284999966621399, - -0.4283066689968109, - -0.4276776611804962, - -0.4259282946586609, - -0.4218781590461731, - -0.2824787199497223, - -0.2845917046070099, - -0.28539612889289856, - -0.28564172983169556, - -0.28570130467414856, - -0.2857123911380768, - -0.2857140004634857, - -0.28571417927742004, - -0.2857140004634857, - -0.2857123911380768, - -0.28570130467414856, - -0.28564172983169556, - -0.28539612889289856, - -0.2845917046070099, - -0.2824787199497223, - -0.14155009388923645, - -0.14244237542152405, - -0.1427539736032486, - -0.14283815026283264, - -0.14285483956336975, - -0.14285697042942047, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285697042942047, - -0.14285483956336975, - -0.14283815026283264, - -0.1427539736032486, - -0.14244237542152405, - -0.14155009388923645, - -4.4323968495518784e-8, - -4.4586862202322664e-8, - -4.467586833811765e-8, - -4.469883307933742e-8, - -4.470301462333737e-8, - -4.4703469370688254e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.4703469370688254e-8, - -4.470301462333737e-8, - -4.469883307933742e-8, - -4.467586833811765e-8, - -4.4586862202322664e-8, - -4.4323968495518784e-8, - 0.14155009388923645, - 0.14244237542152405, - 0.1427539736032486, - 0.14283815026283264, - 0.14285483956336975, - 0.14285697042942047, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285697042942047, - 0.14285483956336975, - 0.14283815026283264, - 0.1427539736032486, - 0.14244237542152405, - 0.14155009388923645, - 0.2824787199497223, - 0.2845917046070099, - 0.28539612889289856, - 0.28564172983169556, - 0.28570130467414856, - 0.2857123911380768, - 0.2857140004634857, - 0.28571417927742004, - 0.2857140004634857, - 0.2857123911380768, - 0.28570130467414856, - 0.28564172983169556, - 0.28539612889289856, - 0.2845917046070099, - 0.2824787199497223, - 0.4218781590461731, - 0.4259282946586609, - 0.4276776611804962, - 0.4283066689968109, - 0.4284999966621399, - 0.42855194211006165, - 0.4285646080970764, - 0.42856690287590027, - 0.4285646080970764, - 0.42855194211006165, - 0.4284999966621399, - 0.4283066689968109, - 0.4276776611804962, - 0.4259282946586609, - 0.4218781590461731, - 0.558275580406189, - 0.5653906464576721, - 0.56895911693573, - 0.570489764213562, - 0.5710755586624146, - 0.5712834596633911, - 0.5713527202606201, - 0.5713690519332886, - 0.5713527202606201, - 0.5712834596633911, - 0.5710755586624146, - 0.570489764213562, - 0.56895911693573, - 0.5653906464576721, - 0.558275580406189, - 0.689500629901886, - 0.7010039687156677, - 0.7077505588531494, - 0.7111989259719849, - 0.712796151638031, - 0.71349036693573, - 0.7137700915336609, - 0.7138444781303406, - 0.7137700915336609, - 0.71349036693573, - 0.712796151638031, - 0.7111989259719849, - 0.7077505588531494, - 0.7010039687156677, - 0.689500629901886, - 0.8129569292068481, - 0.8297879695892334, - 0.8412047624588013, - 0.8480860590934753, - 0.8518566489219666, - 0.853775143623352, - 0.8546544909477234, - 0.8549067974090576, - 0.8546544909477234, - 0.853775143623352, - 0.8518566489219666, - 0.8480860590934753, - 0.8412047624588013, - 0.8297879695892334, - 0.8129569292068481, - 0.9263367056846619, - 0.9484496712684631, - 0.9653007984161377, - 0.9769823551177979, - 0.9843824505805969, - 0.988675594329834, - 0.9908508658409119, - 0.9915103912353516, - 0.9908508658409119, - 0.988675594329834, - 0.9843824505805969, - 0.9769823551177979, - 0.9653007984161377, - 0.9484496712684631, - 0.9263367056846619 - ], - "xaxis": "x5", - "y": [ - -0.9263367056846619, - -0.8129569292068481, - -0.689500629901886, - -0.558275580406189, - -0.4218781590461731, - -0.2824787199497223, - -0.14155009388923645, - -4.4323968495518784e-8, - 0.14155009388923645, - 0.2824787199497223, - 0.4218781590461731, - 0.558275580406189, - 0.689500629901886, - 0.8129569292068481, - 0.9263367056846619, - -0.9484496712684631, - -0.8297879695892334, - -0.7010039687156677, - -0.5653906464576721, - -0.4259282946586609, - -0.2845917046070099, - -0.14244237542152405, - -4.4586862202322664e-8, - 0.14244237542152405, - 0.2845917046070099, - 0.4259282946586609, - 0.5653906464576721, - 0.7010039687156677, - 0.8297879695892334, - 0.9484496712684631, - -0.9653007984161377, - -0.8412047624588013, - -0.7077505588531494, - -0.56895911693573, - -0.4276776611804962, - -0.28539612889289856, - -0.1427539736032486, - -4.467586833811765e-8, - 0.1427539736032486, - 0.28539612889289856, - 0.4276776611804962, - 0.56895911693573, - 0.7077505588531494, - 0.8412047624588013, - 0.9653007984161377, - -0.9769823551177979, - -0.8480860590934753, - -0.7111989259719849, - -0.570489764213562, - -0.4283066689968109, - -0.28564172983169556, - -0.14283815026283264, - -4.469883307933742e-8, - 0.14283815026283264, - 0.28564172983169556, - 0.4283066689968109, - 0.570489764213562, - 0.7111989259719849, - 0.8480860590934753, - 0.9769823551177979, - -0.9843824505805969, - -0.8518566489219666, - -0.712796151638031, - -0.5710755586624146, - -0.4284999966621399, - -0.28570130467414856, - -0.14285483956336975, - -4.470301462333737e-8, - 0.14285483956336975, - 0.28570130467414856, - 0.4284999966621399, - 0.5710755586624146, - 0.712796151638031, - 0.8518566489219666, - 0.9843824505805969, - -0.988675594329834, - -0.853775143623352, - -0.71349036693573, - -0.5712834596633911, - -0.42855194211006165, - -0.2857123911380768, - -0.14285697042942047, - -4.4703469370688254e-8, - 0.14285697042942047, - 0.2857123911380768, - 0.42855194211006165, - 0.5712834596633911, - 0.71349036693573, - 0.853775143623352, - 0.988675594329834, - -0.9908508658409119, - -0.8546544909477234, - -0.7137700915336609, - -0.5713527202606201, - -0.4285646080970764, - -0.2857140004634857, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857140004634857, - 0.4285646080970764, - 0.5713527202606201, - 0.7137700915336609, - 0.8546544909477234, - 0.9908508658409119, - -0.9915103912353516, - -0.8549067974090576, - -0.7138444781303406, - -0.5713690519332886, - -0.42856690287590027, - -0.28571417927742004, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.28571417927742004, - 0.42856690287590027, - 0.5713690519332886, - 0.7138444781303406, - 0.8549067974090576, - 0.9915103912353516, - -0.9908508658409119, - -0.8546544909477234, - -0.7137700915336609, - -0.5713527202606201, - -0.4285646080970764, - -0.2857140004634857, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857140004634857, - 0.4285646080970764, - 0.5713527202606201, - 0.7137700915336609, - 0.8546544909477234, - 0.9908508658409119, - -0.988675594329834, - -0.853775143623352, - -0.71349036693573, - -0.5712834596633911, - -0.42855194211006165, - -0.2857123911380768, - -0.14285697042942047, - -4.4703469370688254e-8, - 0.14285697042942047, - 0.2857123911380768, - 0.42855194211006165, - 0.5712834596633911, - 0.71349036693573, - 0.853775143623352, - 0.988675594329834, - -0.9843824505805969, - -0.8518566489219666, - -0.712796151638031, - -0.5710755586624146, - -0.4284999966621399, - -0.28570130467414856, - -0.14285483956336975, - -4.470301462333737e-8, - 0.14285483956336975, - 0.28570130467414856, - 0.4284999966621399, - 0.5710755586624146, - 0.712796151638031, - 0.8518566489219666, - 0.9843824505805969, - -0.9769823551177979, - -0.8480860590934753, - -0.7111989259719849, - -0.570489764213562, - -0.4283066689968109, - -0.28564172983169556, - -0.14283815026283264, - -4.469883307933742e-8, - 0.14283815026283264, - 0.28564172983169556, - 0.4283066689968109, - 0.570489764213562, - 0.7111989259719849, - 0.8480860590934753, - 0.9769823551177979, - -0.9653007984161377, - -0.8412047624588013, - -0.7077505588531494, - -0.56895911693573, - -0.4276776611804962, - -0.28539612889289856, - -0.1427539736032486, - -4.467586833811765e-8, - 0.1427539736032486, - 0.28539612889289856, - 0.4276776611804962, - 0.56895911693573, - 0.7077505588531494, - 0.8412047624588013, - 0.9653007984161377, - -0.9484496712684631, - -0.8297879695892334, - -0.7010039687156677, - -0.5653906464576721, - -0.4259282946586609, - -0.2845917046070099, - -0.14244237542152405, - -4.4586862202322664e-8, - 0.14244237542152405, - 0.2845917046070099, - 0.4259282946586609, - 0.5653906464576721, - 0.7010039687156677, - 0.8297879695892334, - 0.9484496712684631, - -0.9263367056846619, - -0.8129569292068481, - -0.689500629901886, - -0.558275580406189, - -0.4218781590461731, - -0.2824787199497223, - -0.14155009388923645, - -4.4323968495518784e-8, - 0.14155009388923645, - 0.2824787199497223, - 0.4218781590461731, - 0.558275580406189, - 0.689500629901886, - 0.8129569292068481, - 0.9263367056846619 - ], - "yaxis": "y5" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9147191643714905, - -0.9389384984970093, - -0.9579775333404541, - -0.9715958833694458, - -0.9804595708847046, - -0.9857050180435181, - -0.9883958101272583, - -0.9892164468765259, - -0.9883958101272583, - -0.9857050180435181, - -0.9804595708847046, - -0.9715958833694458, - -0.9579775333404541, - -0.9389384984970093, - -0.9147191643714905, - -0.8048044443130493, - -0.8238756656646729, - -0.8373159766197205, - -0.8456916809082031, - -0.8503921031951904, - -0.8528189063072205, - -0.8539397120475769, - -0.8542624115943909, - -0.8539397120475769, - -0.8528189063072205, - -0.8503921031951904, - -0.8456916809082031, - -0.8373159766197205, - -0.8238756656646729, - -0.8048044443130493, - -0.6842696666717529, - -0.6977633237838745, - -0.7059969902038574, - -0.7103263139724731, - -0.7123643159866333, - -0.7132572531700134, - -0.7136181592941284, - -0.7137144207954407, - -0.7136181592941284, - -0.7132572531700134, - -0.7123643159866333, - -0.7103263139724731, - -0.7059969902038574, - -0.6977633237838745, - -0.6842696666717529, - -0.5551975965499878, - -0.5637944340705872, - -0.5682609677314758, - -0.570216178894043, - -0.5709714889526367, - -0.5712405443191528, - -0.5713302493095398, - -0.5713513493537903, - -0.5713302493095398, - -0.5712405443191528, - -0.5709714889526367, - -0.570216178894043, - -0.5682609677314758, - -0.5637944340705872, - -0.5551975965499878, - -0.42019692063331604, - -0.4251960217952728, - -0.4274185597896576, - -0.42822861671447754, - -0.42847880721092224, - -0.42854616045951843, - -0.42856255173683167, - -0.4285656213760376, - -0.42856255173683167, - -0.42854616045951843, - -0.42847880721092224, - -0.42822861671447754, - -0.4274185597896576, - -0.4251960217952728, - -0.42019692063331604, - -0.2816299796104431, - -0.2842729389667511, - -0.28530287742614746, - -0.2856202721595764, - -0.28569743037223816, - -0.2857118546962738, - -0.28571388125419617, - -0.28571411967277527, - -0.28571388125419617, - -0.2857118546962738, - -0.28569743037223816, - -0.2856202721595764, - -0.28530287742614746, - -0.2842729389667511, - -0.2816299796104431, - -0.14119936525821686, - -0.14232324063777924, - -0.14272359013557434, - -0.14283253252506256, - -0.14285415410995483, - -0.1428569108247757, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.1428569108247757, - -0.14285415410995483, - -0.14283253252506256, - -0.14272359013557434, - -0.14232324063777924, - -0.14119936525821686, - -4.4221422967893886e-8, - -4.455325708363489e-8, - -4.466772907107952e-8, - -4.469744752100269e-8, - -4.470288317293125e-8, - -4.4703462265260896e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.4703462265260896e-8, - -4.470288317293125e-8, - -4.469744752100269e-8, - -4.466772907107952e-8, - -4.455325708363489e-8, - -4.4221422967893886e-8, - 0.14119936525821686, - 0.14232324063777924, - 0.14272359013557434, - 0.14283253252506256, - 0.14285415410995483, - 0.1428569108247757, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.1428569108247757, - 0.14285415410995483, - 0.14283253252506256, - 0.14272359013557434, - 0.14232324063777924, - 0.14119936525821686, - 0.2816299796104431, - 0.2842729389667511, - 0.28530287742614746, - 0.2856202721595764, - 0.28569743037223816, - 0.2857118546962738, - 0.28571388125419617, - 0.28571411967277527, - 0.28571388125419617, - 0.2857118546962738, - 0.28569743037223816, - 0.2856202721595764, - 0.28530287742614746, - 0.2842729389667511, - 0.2816299796104431, - 0.42019692063331604, - 0.4251960217952728, - 0.4274185597896576, - 0.42822861671447754, - 0.42847880721092224, - 0.42854616045951843, - 0.42856255173683167, - 0.4285656213760376, - 0.42856255173683167, - 0.42854616045951843, - 0.42847880721092224, - 0.42822861671447754, - 0.4274185597896576, - 0.4251960217952728, - 0.42019692063331604, - 0.5551975965499878, - 0.5637944340705872, - 0.5682609677314758, - 0.570216178894043, - 0.5709714889526367, - 0.5712405443191528, - 0.5713302493095398, - 0.5713513493537903, - 0.5713302493095398, - 0.5712405443191528, - 0.5709714889526367, - 0.570216178894043, - 0.5682609677314758, - 0.5637944340705872, - 0.5551975965499878, - 0.6842696666717529, - 0.6977633237838745, - 0.7059969902038574, - 0.7103263139724731, - 0.7123643159866333, - 0.7132572531700134, - 0.7136181592941284, - 0.7137144207954407, - 0.7136181592941284, - 0.7132572531700134, - 0.7123643159866333, - 0.7103263139724731, - 0.7059969902038574, - 0.6977633237838745, - 0.6842696666717529, - 0.8048044443130493, - 0.8238756656646729, - 0.8373159766197205, - 0.8456916809082031, - 0.8503921031951904, - 0.8528189063072205, - 0.8539397120475769, - 0.8542624115943909, - 0.8539397120475769, - 0.8528189063072205, - 0.8503921031951904, - 0.8456916809082031, - 0.8373159766197205, - 0.8238756656646729, - 0.8048044443130493, - 0.9147191643714905, - 0.9389384984970093, - 0.9579775333404541, - 0.9715958833694458, - 0.9804595708847046, - 0.9857050180435181, - 0.9883958101272583, - 0.9892164468765259, - 0.9883958101272583, - 0.9857050180435181, - 0.9804595708847046, - 0.9715958833694458, - 0.9579775333404541, - 0.9389384984970093, - 0.9147191643714905 - ], - "xaxis": "x5", - "y": [ - -0.9147191643714905, - -0.8048044443130493, - -0.6842696666717529, - -0.5551975965499878, - -0.42019692063331604, - -0.2816299796104431, - -0.14119936525821686, - -4.4221422967893886e-8, - 0.14119936525821686, - 0.2816299796104431, - 0.42019692063331604, - 0.5551975965499878, - 0.6842696666717529, - 0.8048044443130493, - 0.9147191643714905, - -0.9389384984970093, - -0.8238756656646729, - -0.6977633237838745, - -0.5637944340705872, - -0.4251960217952728, - -0.2842729389667511, - -0.14232324063777924, - -4.455325708363489e-8, - 0.14232324063777924, - 0.2842729389667511, - 0.4251960217952728, - 0.5637944340705872, - 0.6977633237838745, - 0.8238756656646729, - 0.9389384984970093, - -0.9579775333404541, - -0.8373159766197205, - -0.7059969902038574, - -0.5682609677314758, - -0.4274185597896576, - -0.28530287742614746, - -0.14272359013557434, - -4.466772907107952e-8, - 0.14272359013557434, - 0.28530287742614746, - 0.4274185597896576, - 0.5682609677314758, - 0.7059969902038574, - 0.8373159766197205, - 0.9579775333404541, - -0.9715958833694458, - -0.8456916809082031, - -0.7103263139724731, - -0.570216178894043, - -0.42822861671447754, - -0.2856202721595764, - -0.14283253252506256, - -4.469744752100269e-8, - 0.14283253252506256, - 0.2856202721595764, - 0.42822861671447754, - 0.570216178894043, - 0.7103263139724731, - 0.8456916809082031, - 0.9715958833694458, - -0.9804595708847046, - -0.8503921031951904, - -0.7123643159866333, - -0.5709714889526367, - -0.42847880721092224, - -0.28569743037223816, - -0.14285415410995483, - -4.470288317293125e-8, - 0.14285415410995483, - 0.28569743037223816, - 0.42847880721092224, - 0.5709714889526367, - 0.7123643159866333, - 0.8503921031951904, - 0.9804595708847046, - -0.9857050180435181, - -0.8528189063072205, - -0.7132572531700134, - -0.5712405443191528, - -0.42854616045951843, - -0.2857118546962738, - -0.1428569108247757, - -4.4703462265260896e-8, - 0.1428569108247757, - 0.2857118546962738, - 0.42854616045951843, - 0.5712405443191528, - 0.7132572531700134, - 0.8528189063072205, - 0.9857050180435181, - -0.9883958101272583, - -0.8539397120475769, - -0.7136181592941284, - -0.5713302493095398, - -0.42856255173683167, - -0.28571388125419617, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.28571388125419617, - 0.42856255173683167, - 0.5713302493095398, - 0.7136181592941284, - 0.8539397120475769, - 0.9883958101272583, - -0.9892164468765259, - -0.8542624115943909, - -0.7137144207954407, - -0.5713513493537903, - -0.4285656213760376, - -0.28571411967277527, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.28571411967277527, - 0.4285656213760376, - 0.5713513493537903, - 0.7137144207954407, - 0.8542624115943909, - 0.9892164468765259, - -0.9883958101272583, - -0.8539397120475769, - -0.7136181592941284, - -0.5713302493095398, - -0.42856255173683167, - -0.28571388125419617, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.28571388125419617, - 0.42856255173683167, - 0.5713302493095398, - 0.7136181592941284, - 0.8539397120475769, - 0.9883958101272583, - -0.9857050180435181, - -0.8528189063072205, - -0.7132572531700134, - -0.5712405443191528, - -0.42854616045951843, - -0.2857118546962738, - -0.1428569108247757, - -4.4703462265260896e-8, - 0.1428569108247757, - 0.2857118546962738, - 0.42854616045951843, - 0.5712405443191528, - 0.7132572531700134, - 0.8528189063072205, - 0.9857050180435181, - -0.9804595708847046, - -0.8503921031951904, - -0.7123643159866333, - -0.5709714889526367, - -0.42847880721092224, - -0.28569743037223816, - -0.14285415410995483, - -4.470288317293125e-8, - 0.14285415410995483, - 0.28569743037223816, - 0.42847880721092224, - 0.5709714889526367, - 0.7123643159866333, - 0.8503921031951904, - 0.9804595708847046, - -0.9715958833694458, - -0.8456916809082031, - -0.7103263139724731, - -0.570216178894043, - -0.42822861671447754, - -0.2856202721595764, - -0.14283253252506256, - -4.469744752100269e-8, - 0.14283253252506256, - 0.2856202721595764, - 0.42822861671447754, - 0.570216178894043, - 0.7103263139724731, - 0.8456916809082031, - 0.9715958833694458, - -0.9579775333404541, - -0.8373159766197205, - -0.7059969902038574, - -0.5682609677314758, - -0.4274185597896576, - -0.28530287742614746, - -0.14272359013557434, - -4.466772907107952e-8, - 0.14272359013557434, - 0.28530287742614746, - 0.4274185597896576, - 0.5682609677314758, - 0.7059969902038574, - 0.8373159766197205, - 0.9579775333404541, - -0.9389384984970093, - -0.8238756656646729, - -0.6977633237838745, - -0.5637944340705872, - -0.4251960217952728, - -0.2842729389667511, - -0.14232324063777924, - -4.455325708363489e-8, - 0.14232324063777924, - 0.2842729389667511, - 0.4251960217952728, - 0.5637944340705872, - 0.6977633237838745, - 0.8238756656646729, - 0.9389384984970093, - -0.9147191643714905, - -0.8048044443130493, - -0.6842696666717529, - -0.5551975965499878, - -0.42019692063331604, - -0.2816299796104431, - -0.14119936525821686, - -4.4221422967893886e-8, - 0.14119936525821686, - 0.2816299796104431, - 0.42019692063331604, - 0.5551975965499878, - 0.6842696666717529, - 0.8048044443130493, - 0.9147191643714905 - ], - "yaxis": "y5" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9048968553543091, - -0.930687665939331, - -0.9514415264129639, - -0.9666570425033569, - -0.9767835140228271, - -0.9828799366950989, - -0.9860416054725647, - -0.9870108366012573, - -0.9860416054725647, - -0.9828799366950989, - -0.9767835140228271, - -0.9666570425033569, - -0.9514415264129639, - -0.930687665939331, - -0.9048968553543091, - -0.7977322936058044, - -0.8185685276985168, - -0.8337056040763855, - -0.843407928943634, - -0.848970353603363, - -0.8518811464309692, - -0.8532353639602661, - -0.853626549243927, - -0.8532353639602661, - -0.8518811464309692, - -0.848970353603363, - -0.843407928943634, - -0.8337056040763855, - -0.8185685276985168, - -0.7977322936058044, - -0.6796011328697205, - -0.6947546601295471, - -0.7043154239654541, - -0.7094720005989075, - -0.7119371294975281, - -0.7130254507064819, - -0.7134669423103333, - -0.7135847806930542, - -0.7134669423103333, - -0.7130254507064819, - -0.7119371294975281, - -0.7094720005989075, - -0.7043154239654541, - -0.6947546601295471, - -0.6796011328697205, - -0.5523753762245178, - -0.5622718930244446, - -0.5675775408744812, - -0.5699450373649597, - -0.5708677768707275, - -0.5711976289749146, - -0.5713077783584595, - -0.5713337063789368, - -0.5713077783584595, - -0.5711976289749146, - -0.5708677768707275, - -0.5699450373649597, - -0.5675775408744812, - -0.5622718930244446, - -0.5523753762245178, - -0.4186214804649353, - -0.42448514699935913, - -0.4271622598171234, - -0.42815083265304565, - -0.428457647562027, - -0.4285404086112976, - -0.4285605251789093, - -0.42856431007385254, - -0.4285605251789093, - -0.4285404086112976, - -0.428457647562027, - -0.42815083265304565, - -0.4271622598171234, - -0.42448514699935913, - -0.4186214804649353, - -0.2808228135108948, - -0.28396037220954895, - -0.28521016240119934, - -0.2855988144874573, - -0.28569358587265015, - -0.2857113182544708, - -0.2857138216495514, - -0.2857140898704529, - -0.2857138216495514, - -0.2857113182544708, - -0.28569358587265015, - -0.2855988144874573, - -0.28521016240119934, - -0.28396037220954895, - -0.2808228135108948, - -0.14086304605007172, - -0.1422058492898941, - -0.14269334077835083, - -0.14282691478729248, - -0.1428534835577011, - -0.1428568810224533, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.1428568810224533, - -0.1428534835577011, - -0.14282691478729248, - -0.14269334077835083, - -0.1422058492898941, - -0.14086304605007172, - -4.412282095245246e-8, - -4.452009250144329e-8, - -4.465961467303714e-8, - -4.469606551538163e-8, - -4.470274461709778e-8, - -4.470345871254722e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470345871254722e-8, - -4.470274461709778e-8, - -4.469606551538163e-8, - -4.465961467303714e-8, - -4.452009250144329e-8, - -4.412282095245246e-8, - 0.14086304605007172, - 0.1422058492898941, - 0.14269334077835083, - 0.14282691478729248, - 0.1428534835577011, - 0.1428568810224533, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.1428568810224533, - 0.1428534835577011, - 0.14282691478729248, - 0.14269334077835083, - 0.1422058492898941, - 0.14086304605007172, - 0.2808228135108948, - 0.28396037220954895, - 0.28521016240119934, - 0.2855988144874573, - 0.28569358587265015, - 0.2857113182544708, - 0.2857138216495514, - 0.2857140898704529, - 0.2857138216495514, - 0.2857113182544708, - 0.28569358587265015, - 0.2855988144874573, - 0.28521016240119934, - 0.28396037220954895, - 0.2808228135108948, - 0.4186214804649353, - 0.42448514699935913, - 0.4271622598171234, - 0.42815083265304565, - 0.428457647562027, - 0.4285404086112976, - 0.4285605251789093, - 0.42856431007385254, - 0.4285605251789093, - 0.4285404086112976, - 0.428457647562027, - 0.42815083265304565, - 0.4271622598171234, - 0.42448514699935913, - 0.4186214804649353, - 0.5523753762245178, - 0.5622718930244446, - 0.5675775408744812, - 0.5699450373649597, - 0.5708677768707275, - 0.5711976289749146, - 0.5713077783584595, - 0.5713337063789368, - 0.5713077783584595, - 0.5711976289749146, - 0.5708677768707275, - 0.5699450373649597, - 0.5675775408744812, - 0.5622718930244446, - 0.5523753762245178, - 0.6796011328697205, - 0.6947546601295471, - 0.7043154239654541, - 0.7094720005989075, - 0.7119371294975281, - 0.7130254507064819, - 0.7134669423103333, - 0.7135847806930542, - 0.7134669423103333, - 0.7130254507064819, - 0.7119371294975281, - 0.7094720005989075, - 0.7043154239654541, - 0.6947546601295471, - 0.6796011328697205, - 0.7977322936058044, - 0.8185685276985168, - 0.8337056040763855, - 0.843407928943634, - 0.848970353603363, - 0.8518811464309692, - 0.8532353639602661, - 0.853626549243927, - 0.8532353639602661, - 0.8518811464309692, - 0.848970353603363, - 0.843407928943634, - 0.8337056040763855, - 0.8185685276985168, - 0.7977322936058044, - 0.9048968553543091, - 0.930687665939331, - 0.9514415264129639, - 0.9666570425033569, - 0.9767835140228271, - 0.9828799366950989, - 0.9860416054725647, - 0.9870108366012573, - 0.9860416054725647, - 0.9828799366950989, - 0.9767835140228271, - 0.9666570425033569, - 0.9514415264129639, - 0.930687665939331, - 0.9048968553543091 - ], - "xaxis": "x5", - "y": [ - -0.9048968553543091, - -0.7977322936058044, - -0.6796011328697205, - -0.5523753762245178, - -0.4186214804649353, - -0.2808228135108948, - -0.14086304605007172, - -4.412282095245246e-8, - 0.14086304605007172, - 0.2808228135108948, - 0.4186214804649353, - 0.5523753762245178, - 0.6796011328697205, - 0.7977322936058044, - 0.9048968553543091, - -0.930687665939331, - -0.8185685276985168, - -0.6947546601295471, - -0.5622718930244446, - -0.42448514699935913, - -0.28396037220954895, - -0.1422058492898941, - -4.452009250144329e-8, - 0.1422058492898941, - 0.28396037220954895, - 0.42448514699935913, - 0.5622718930244446, - 0.6947546601295471, - 0.8185685276985168, - 0.930687665939331, - -0.9514415264129639, - -0.8337056040763855, - -0.7043154239654541, - -0.5675775408744812, - -0.4271622598171234, - -0.28521016240119934, - -0.14269334077835083, - -4.465961467303714e-8, - 0.14269334077835083, - 0.28521016240119934, - 0.4271622598171234, - 0.5675775408744812, - 0.7043154239654541, - 0.8337056040763855, - 0.9514415264129639, - -0.9666570425033569, - -0.843407928943634, - -0.7094720005989075, - -0.5699450373649597, - -0.42815083265304565, - -0.2855988144874573, - -0.14282691478729248, - -4.469606551538163e-8, - 0.14282691478729248, - 0.2855988144874573, - 0.42815083265304565, - 0.5699450373649597, - 0.7094720005989075, - 0.843407928943634, - 0.9666570425033569, - -0.9767835140228271, - -0.848970353603363, - -0.7119371294975281, - -0.5708677768707275, - -0.428457647562027, - -0.28569358587265015, - -0.1428534835577011, - -4.470274461709778e-8, - 0.1428534835577011, - 0.28569358587265015, - 0.428457647562027, - 0.5708677768707275, - 0.7119371294975281, - 0.848970353603363, - 0.9767835140228271, - -0.9828799366950989, - -0.8518811464309692, - -0.7130254507064819, - -0.5711976289749146, - -0.4285404086112976, - -0.2857113182544708, - -0.1428568810224533, - -4.470345871254722e-8, - 0.1428568810224533, - 0.2857113182544708, - 0.4285404086112976, - 0.5711976289749146, - 0.7130254507064819, - 0.8518811464309692, - 0.9828799366950989, - -0.9860416054725647, - -0.8532353639602661, - -0.7134669423103333, - -0.5713077783584595, - -0.4285605251789093, - -0.2857138216495514, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857138216495514, - 0.4285605251789093, - 0.5713077783584595, - 0.7134669423103333, - 0.8532353639602661, - 0.9860416054725647, - -0.9870108366012573, - -0.853626549243927, - -0.7135847806930542, - -0.5713337063789368, - -0.42856431007385254, - -0.2857140898704529, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857140898704529, - 0.42856431007385254, - 0.5713337063789368, - 0.7135847806930542, - 0.853626549243927, - 0.9870108366012573, - -0.9860416054725647, - -0.8532353639602661, - -0.7134669423103333, - -0.5713077783584595, - -0.4285605251789093, - -0.2857138216495514, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857138216495514, - 0.4285605251789093, - 0.5713077783584595, - 0.7134669423103333, - 0.8532353639602661, - 0.9860416054725647, - -0.9828799366950989, - -0.8518811464309692, - -0.7130254507064819, - -0.5711976289749146, - -0.4285404086112976, - -0.2857113182544708, - -0.1428568810224533, - -4.470345871254722e-8, - 0.1428568810224533, - 0.2857113182544708, - 0.4285404086112976, - 0.5711976289749146, - 0.7130254507064819, - 0.8518811464309692, - 0.9828799366950989, - -0.9767835140228271, - -0.848970353603363, - -0.7119371294975281, - -0.5708677768707275, - -0.428457647562027, - -0.28569358587265015, - -0.1428534835577011, - -4.470274461709778e-8, - 0.1428534835577011, - 0.28569358587265015, - 0.428457647562027, - 0.5708677768707275, - 0.7119371294975281, - 0.848970353603363, - 0.9767835140228271, - -0.9666570425033569, - -0.843407928943634, - -0.7094720005989075, - -0.5699450373649597, - -0.42815083265304565, - -0.2855988144874573, - -0.14282691478729248, - -4.469606551538163e-8, - 0.14282691478729248, - 0.2855988144874573, - 0.42815083265304565, - 0.5699450373649597, - 0.7094720005989075, - 0.843407928943634, - 0.9666570425033569, - -0.9514415264129639, - -0.8337056040763855, - -0.7043154239654541, - -0.5675775408744812, - -0.4271622598171234, - -0.28521016240119934, - -0.14269334077835083, - -4.465961467303714e-8, - 0.14269334077835083, - 0.28521016240119934, - 0.4271622598171234, - 0.5675775408744812, - 0.7043154239654541, - 0.8337056040763855, - 0.9514415264129639, - -0.930687665939331, - -0.8185685276985168, - -0.6947546601295471, - -0.5622718930244446, - -0.42448514699935913, - -0.28396037220954895, - -0.1422058492898941, - -4.452009250144329e-8, - 0.1422058492898941, - 0.28396037220954895, - 0.42448514699935913, - 0.5622718930244446, - 0.6947546601295471, - 0.8185685276985168, - 0.930687665939331, - -0.9048968553543091, - -0.7977322936058044, - -0.6796011328697205, - -0.5523753762245178, - -0.4186214804649353, - -0.2808228135108948, - -0.14086304605007172, - -4.412282095245246e-8, - 0.14086304605007172, - 0.2808228135108948, - 0.4186214804649353, - 0.5523753762245178, - 0.6796011328697205, - 0.7977322936058044, - 0.9048968553543091 - ], - "yaxis": "y5" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8963813781738281, - -0.9233946204185486, - -0.9455345273017883, - -0.9620939493179321, - -0.9733237028121948, - -0.9801857471466064, - -0.9837797284126282, - -0.9848867058753967, - -0.9837797284126282, - -0.9801857471466064, - -0.9733237028121948, - -0.9620939493179321, - -0.9455345273017883, - -0.9233946204185486, - -0.8963813781738281, - -0.7914811372756958, - -0.8137497901916504, - -0.8303345441818237, - -0.841224730014801, - -0.8475887775421143, - -0.8509612679481506, - -0.8525412082672119, - -0.8529988527297974, - -0.8525412082672119, - -0.8509612679481506, - -0.8475887775421143, - -0.841224730014801, - -0.8303345441818237, - -0.8137497901916504, - -0.7914811372756958, - -0.6753817796707153, - -0.691945493221283, - -0.7026998400688171, - -0.7086355686187744, - -0.7115143537521362, - -0.7127949595451355, - -0.7133162021636963, - -0.7134555578231812, - -0.7133162021636963, - -0.7127949595451355, - -0.7115143537521362, - -0.7086355686187744, - -0.7026998400688171, - -0.691945493221283, - -0.6753817796707153, - -0.5497679710388184, - -0.5608164668083191, - -0.5669084191322327, - -0.5696760416030884, - -0.570764422416687, - -0.5711548328399658, - -0.5712853670120239, - -0.5713161826133728, - -0.5712853670120239, - -0.5711548328399658, - -0.570764422416687, - -0.5696760416030884, - -0.5669084191322327, - -0.5608164668083191, - -0.5497679710388184, - -0.4171387255191803, - -0.42379435896873474, - -0.42690858244895935, - -0.42807328701019287, - -0.4284365177154541, - -0.4285346269607544, - -0.4285585284233093, - -0.4285629689693451, - -0.4285585284233093, - -0.4285346269607544, - -0.4284365177154541, - -0.42807328701019287, - -0.42690858244895935, - -0.42379435896873474, - -0.4171387255191803, - -0.280053049325943, - -0.28365373611450195, - -0.2851179838180542, - -0.2855774164199829, - -0.28568974137306213, - -0.28571075201034546, - -0.28571373224258423, - -0.2857140600681305, - -0.28571373224258423, - -0.28571075201034546, - -0.28568974137306213, - -0.2855774164199829, - -0.2851179838180542, - -0.28365373611450195, - -0.280053049325943, - -0.14053992927074432, - -0.14209017157554626, - -0.14266319572925568, - -0.1428213119506836, - -0.1428528130054474, - -0.14285683631896973, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285683631896973, - -0.1428528130054474, - -0.1428213119506836, - -0.14266319572925568, - -0.14209017157554626, - -0.14053992927074432, - -4.4027867573959156e-8, - -4.448735779760682e-8, - -4.465152869670419e-8, - -4.469469061518794e-8, - -4.4702606061264305e-8, - -4.470345160711986e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470345160711986e-8, - -4.4702606061264305e-8, - -4.469469061518794e-8, - -4.465152869670419e-8, - -4.448735779760682e-8, - -4.4027867573959156e-8, - 0.14053992927074432, - 0.14209017157554626, - 0.14266319572925568, - 0.1428213119506836, - 0.1428528130054474, - 0.14285683631896973, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285683631896973, - 0.1428528130054474, - 0.1428213119506836, - 0.14266319572925568, - 0.14209017157554626, - 0.14053992927074432, - 0.280053049325943, - 0.28365373611450195, - 0.2851179838180542, - 0.2855774164199829, - 0.28568974137306213, - 0.28571075201034546, - 0.28571373224258423, - 0.2857140600681305, - 0.28571373224258423, - 0.28571075201034546, - 0.28568974137306213, - 0.2855774164199829, - 0.2851179838180542, - 0.28365373611450195, - 0.280053049325943, - 0.4171387255191803, - 0.42379435896873474, - 0.42690858244895935, - 0.42807328701019287, - 0.4284365177154541, - 0.4285346269607544, - 0.4285585284233093, - 0.4285629689693451, - 0.4285585284233093, - 0.4285346269607544, - 0.4284365177154541, - 0.42807328701019287, - 0.42690858244895935, - 0.42379435896873474, - 0.4171387255191803, - 0.5497679710388184, - 0.5608164668083191, - 0.5669084191322327, - 0.5696760416030884, - 0.570764422416687, - 0.5711548328399658, - 0.5712853670120239, - 0.5713161826133728, - 0.5712853670120239, - 0.5711548328399658, - 0.570764422416687, - 0.5696760416030884, - 0.5669084191322327, - 0.5608164668083191, - 0.5497679710388184, - 0.6753817796707153, - 0.691945493221283, - 0.7026998400688171, - 0.7086355686187744, - 0.7115143537521362, - 0.7127949595451355, - 0.7133162021636963, - 0.7134555578231812, - 0.7133162021636963, - 0.7127949595451355, - 0.7115143537521362, - 0.7086355686187744, - 0.7026998400688171, - 0.691945493221283, - 0.6753817796707153, - 0.7914811372756958, - 0.8137497901916504, - 0.8303345441818237, - 0.841224730014801, - 0.8475887775421143, - 0.8509612679481506, - 0.8525412082672119, - 0.8529988527297974, - 0.8525412082672119, - 0.8509612679481506, - 0.8475887775421143, - 0.841224730014801, - 0.8303345441818237, - 0.8137497901916504, - 0.7914811372756958, - 0.8963813781738281, - 0.9233946204185486, - 0.9455345273017883, - 0.9620939493179321, - 0.9733237028121948, - 0.9801857471466064, - 0.9837797284126282, - 0.9848867058753967, - 0.9837797284126282, - 0.9801857471466064, - 0.9733237028121948, - 0.9620939493179321, - 0.9455345273017883, - 0.9233946204185486, - 0.8963813781738281 - ], - "xaxis": "x5", - "y": [ - -0.8963813781738281, - -0.7914811372756958, - -0.6753817796707153, - -0.5497679710388184, - -0.4171387255191803, - -0.280053049325943, - -0.14053992927074432, - -4.4027867573959156e-8, - 0.14053992927074432, - 0.280053049325943, - 0.4171387255191803, - 0.5497679710388184, - 0.6753817796707153, - 0.7914811372756958, - 0.8963813781738281, - -0.9233946204185486, - -0.8137497901916504, - -0.691945493221283, - -0.5608164668083191, - -0.42379435896873474, - -0.28365373611450195, - -0.14209017157554626, - -4.448735779760682e-8, - 0.14209017157554626, - 0.28365373611450195, - 0.42379435896873474, - 0.5608164668083191, - 0.691945493221283, - 0.8137497901916504, - 0.9233946204185486, - -0.9455345273017883, - -0.8303345441818237, - -0.7026998400688171, - -0.5669084191322327, - -0.42690858244895935, - -0.2851179838180542, - -0.14266319572925568, - -4.465152869670419e-8, - 0.14266319572925568, - 0.2851179838180542, - 0.42690858244895935, - 0.5669084191322327, - 0.7026998400688171, - 0.8303345441818237, - 0.9455345273017883, - -0.9620939493179321, - -0.841224730014801, - -0.7086355686187744, - -0.5696760416030884, - -0.42807328701019287, - -0.2855774164199829, - -0.1428213119506836, - -4.469469061518794e-8, - 0.1428213119506836, - 0.2855774164199829, - 0.42807328701019287, - 0.5696760416030884, - 0.7086355686187744, - 0.841224730014801, - 0.9620939493179321, - -0.9733237028121948, - -0.8475887775421143, - -0.7115143537521362, - -0.570764422416687, - -0.4284365177154541, - -0.28568974137306213, - -0.1428528130054474, - -4.4702606061264305e-8, - 0.1428528130054474, - 0.28568974137306213, - 0.4284365177154541, - 0.570764422416687, - 0.7115143537521362, - 0.8475887775421143, - 0.9733237028121948, - -0.9801857471466064, - -0.8509612679481506, - -0.7127949595451355, - -0.5711548328399658, - -0.4285346269607544, - -0.28571075201034546, - -0.14285683631896973, - -4.470345160711986e-8, - 0.14285683631896973, - 0.28571075201034546, - 0.4285346269607544, - 0.5711548328399658, - 0.7127949595451355, - 0.8509612679481506, - 0.9801857471466064, - -0.9837797284126282, - -0.8525412082672119, - -0.7133162021636963, - -0.5712853670120239, - -0.4285585284233093, - -0.28571373224258423, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.28571373224258423, - 0.4285585284233093, - 0.5712853670120239, - 0.7133162021636963, - 0.8525412082672119, - 0.9837797284126282, - -0.9848867058753967, - -0.8529988527297974, - -0.7134555578231812, - -0.5713161826133728, - -0.4285629689693451, - -0.2857140600681305, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857140600681305, - 0.4285629689693451, - 0.5713161826133728, - 0.7134555578231812, - 0.8529988527297974, - 0.9848867058753967, - -0.9837797284126282, - -0.8525412082672119, - -0.7133162021636963, - -0.5712853670120239, - -0.4285585284233093, - -0.28571373224258423, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.28571373224258423, - 0.4285585284233093, - 0.5712853670120239, - 0.7133162021636963, - 0.8525412082672119, - 0.9837797284126282, - -0.9801857471466064, - -0.8509612679481506, - -0.7127949595451355, - -0.5711548328399658, - -0.4285346269607544, - -0.28571075201034546, - -0.14285683631896973, - -4.470345160711986e-8, - 0.14285683631896973, - 0.28571075201034546, - 0.4285346269607544, - 0.5711548328399658, - 0.7127949595451355, - 0.8509612679481506, - 0.9801857471466064, - -0.9733237028121948, - -0.8475887775421143, - -0.7115143537521362, - -0.570764422416687, - -0.4284365177154541, - -0.28568974137306213, - -0.1428528130054474, - -4.4702606061264305e-8, - 0.1428528130054474, - 0.28568974137306213, - 0.4284365177154541, - 0.570764422416687, - 0.7115143537521362, - 0.8475887775421143, - 0.9733237028121948, - -0.9620939493179321, - -0.841224730014801, - -0.7086355686187744, - -0.5696760416030884, - -0.42807328701019287, - -0.2855774164199829, - -0.1428213119506836, - -4.469469061518794e-8, - 0.1428213119506836, - 0.2855774164199829, - 0.42807328701019287, - 0.5696760416030884, - 0.7086355686187744, - 0.841224730014801, - 0.9620939493179321, - -0.9455345273017883, - -0.8303345441818237, - -0.7026998400688171, - -0.5669084191322327, - -0.42690858244895935, - -0.2851179838180542, - -0.14266319572925568, - -4.465152869670419e-8, - 0.14266319572925568, - 0.2851179838180542, - 0.42690858244895935, - 0.5669084191322327, - 0.7026998400688171, - 0.8303345441818237, - 0.9455345273017883, - -0.9233946204185486, - -0.8137497901916504, - -0.691945493221283, - -0.5608164668083191, - -0.42379435896873474, - -0.28365373611450195, - -0.14209017157554626, - -4.448735779760682e-8, - 0.14209017157554626, - 0.28365373611450195, - 0.42379435896873474, - 0.5608164668083191, - 0.691945493221283, - 0.8137497901916504, - 0.9233946204185486, - -0.8963813781738281, - -0.7914811372756958, - -0.6753817796707153, - -0.5497679710388184, - -0.4171387255191803, - -0.280053049325943, - -0.14053992927074432, - -4.4027867573959156e-8, - 0.14053992927074432, - 0.280053049325943, - 0.4171387255191803, - 0.5497679710388184, - 0.6753817796707153, - 0.7914811372756958, - 0.8963813781738281 - ], - "yaxis": "y5" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.888861894607544, - -0.9168554544448853, - -0.9401423335075378, - -0.9578511118888855, - -0.9700546860694885, - -0.9776104092597961, - -0.9816028475761414, - -0.9828377962112427, - -0.9816028475761414, - -0.9776104092597961, - -0.9700546860694885, - -0.9578511118888855, - -0.9401423335075378, - -0.9168554544448853, - -0.888861894607544, - -0.7858760952949524, - -0.8093342185020447, - -0.8271716237068176, - -0.8391328454017639, - -0.8462450504302979, - -0.8500584363937378, - -0.8518568277359009, - -0.852379322052002, - -0.8518568277359009, - -0.8500584363937378, - -0.8462450504302979, - -0.8391328454017639, - -0.8271716237068176, - -0.8093342185020447, - -0.7858760952949524, - -0.6715302467346191, - -0.6893096566200256, - -0.701144814491272, - -0.7078158855438232, - -0.7110960483551025, - -0.7125658392906189, - -0.7131660580635071, - -0.7133266925811768, - -0.7131660580635071, - -0.7125658392906189, - -0.7110960483551025, - -0.7078158855438232, - -0.701144814491272, - -0.6893096566200256, - -0.6715302467346191, - -0.5473434329032898, - -0.5594218373298645, - -0.5662526488304138, - -0.5694093704223633, - -0.5706613063812256, - -0.5711120367050171, - -0.5712628960609436, - -0.5712985396385193, - -0.5712628960609436, - -0.5711120367050171, - -0.5706613063812256, - -0.5694093704223633, - -0.5662526488304138, - -0.5594218373298645, - -0.5473434329032898, - -0.41573768854141235, - -0.42312249541282654, - -0.4266575872898102, - -0.4279959797859192, - -0.4284153878688812, - -0.4285288453102112, - -0.4285564720630646, - -0.42856165766716003, - -0.4285564720630646, - -0.4285288453102112, - -0.4284153878688812, - -0.4279959797859192, - -0.4266575872898102, - -0.42312249541282654, - -0.41573768854141235, - -0.2793172299861908, - -0.283352792263031, - -0.28502631187438965, - -0.28555601835250854, - -0.2856858968734741, - -0.2857101857662201, - -0.28571364283561707, - -0.2857140302658081, - -0.28571364283561707, - -0.2857101857662201, - -0.2856858968734741, - -0.28555601835250854, - -0.28502631187438965, - -0.283352792263031, - -0.2793172299861908, - -0.14022894203662872, - -0.14197610318660736, - -0.14263316988945007, - -0.1428156942129135, - -0.14285212755203247, - -0.14285679161548615, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285679161548615, - -0.14285212755203247, - -0.1428156942129135, - -0.14263316988945007, - -0.14197610318660736, - -0.14022894203662872, - -4.393627150989232e-8, - -4.445504586669813e-8, - -4.464346403665331e-8, - -4.469331216228056e-8, - -4.470246750543083e-8, - -4.470344805440618e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470344805440618e-8, - -4.470246750543083e-8, - -4.469331216228056e-8, - -4.464346403665331e-8, - -4.445504586669813e-8, - -4.393627150989232e-8, - 0.14022894203662872, - 0.14197610318660736, - 0.14263316988945007, - 0.1428156942129135, - 0.14285212755203247, - 0.14285679161548615, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285679161548615, - 0.14285212755203247, - 0.1428156942129135, - 0.14263316988945007, - 0.14197610318660736, - 0.14022894203662872, - 0.2793172299861908, - 0.283352792263031, - 0.28502631187438965, - 0.28555601835250854, - 0.2856858968734741, - 0.2857101857662201, - 0.28571364283561707, - 0.2857140302658081, - 0.28571364283561707, - 0.2857101857662201, - 0.2856858968734741, - 0.28555601835250854, - 0.28502631187438965, - 0.283352792263031, - 0.2793172299861908, - 0.41573768854141235, - 0.42312249541282654, - 0.4266575872898102, - 0.4279959797859192, - 0.4284153878688812, - 0.4285288453102112, - 0.4285564720630646, - 0.42856165766716003, - 0.4285564720630646, - 0.4285288453102112, - 0.4284153878688812, - 0.4279959797859192, - 0.4266575872898102, - 0.42312249541282654, - 0.41573768854141235, - 0.5473434329032898, - 0.5594218373298645, - 0.5662526488304138, - 0.5694093704223633, - 0.5706613063812256, - 0.5711120367050171, - 0.5712628960609436, - 0.5712985396385193, - 0.5712628960609436, - 0.5711120367050171, - 0.5706613063812256, - 0.5694093704223633, - 0.5662526488304138, - 0.5594218373298645, - 0.5473434329032898, - 0.6715302467346191, - 0.6893096566200256, - 0.701144814491272, - 0.7078158855438232, - 0.7110960483551025, - 0.7125658392906189, - 0.7131660580635071, - 0.7133266925811768, - 0.7131660580635071, - 0.7125658392906189, - 0.7110960483551025, - 0.7078158855438232, - 0.701144814491272, - 0.6893096566200256, - 0.6715302467346191, - 0.7858760952949524, - 0.8093342185020447, - 0.8271716237068176, - 0.8391328454017639, - 0.8462450504302979, - 0.8500584363937378, - 0.8518568277359009, - 0.852379322052002, - 0.8518568277359009, - 0.8500584363937378, - 0.8462450504302979, - 0.8391328454017639, - 0.8271716237068176, - 0.8093342185020447, - 0.7858760952949524, - 0.888861894607544, - 0.9168554544448853, - 0.9401423335075378, - 0.9578511118888855, - 0.9700546860694885, - 0.9776104092597961, - 0.9816028475761414, - 0.9828377962112427, - 0.9816028475761414, - 0.9776104092597961, - 0.9700546860694885, - 0.9578511118888855, - 0.9401423335075378, - 0.9168554544448853, - 0.888861894607544 - ], - "xaxis": "x5", - "y": [ - -0.888861894607544, - -0.7858760952949524, - -0.6715302467346191, - -0.5473434329032898, - -0.41573768854141235, - -0.2793172299861908, - -0.14022894203662872, - -4.393627150989232e-8, - 0.14022894203662872, - 0.2793172299861908, - 0.41573768854141235, - 0.5473434329032898, - 0.6715302467346191, - 0.7858760952949524, - 0.888861894607544, - -0.9168554544448853, - -0.8093342185020447, - -0.6893096566200256, - -0.5594218373298645, - -0.42312249541282654, - -0.283352792263031, - -0.14197610318660736, - -4.445504586669813e-8, - 0.14197610318660736, - 0.283352792263031, - 0.42312249541282654, - 0.5594218373298645, - 0.6893096566200256, - 0.8093342185020447, - 0.9168554544448853, - -0.9401423335075378, - -0.8271716237068176, - -0.701144814491272, - -0.5662526488304138, - -0.4266575872898102, - -0.28502631187438965, - -0.14263316988945007, - -4.464346403665331e-8, - 0.14263316988945007, - 0.28502631187438965, - 0.4266575872898102, - 0.5662526488304138, - 0.701144814491272, - 0.8271716237068176, - 0.9401423335075378, - -0.9578511118888855, - -0.8391328454017639, - -0.7078158855438232, - -0.5694093704223633, - -0.4279959797859192, - -0.28555601835250854, - -0.1428156942129135, - -4.469331216228056e-8, - 0.1428156942129135, - 0.28555601835250854, - 0.4279959797859192, - 0.5694093704223633, - 0.7078158855438232, - 0.8391328454017639, - 0.9578511118888855, - -0.9700546860694885, - -0.8462450504302979, - -0.7110960483551025, - -0.5706613063812256, - -0.4284153878688812, - -0.2856858968734741, - -0.14285212755203247, - -4.470246750543083e-8, - 0.14285212755203247, - 0.2856858968734741, - 0.4284153878688812, - 0.5706613063812256, - 0.7110960483551025, - 0.8462450504302979, - 0.9700546860694885, - -0.9776104092597961, - -0.8500584363937378, - -0.7125658392906189, - -0.5711120367050171, - -0.4285288453102112, - -0.2857101857662201, - -0.14285679161548615, - -4.470344805440618e-8, - 0.14285679161548615, - 0.2857101857662201, - 0.4285288453102112, - 0.5711120367050171, - 0.7125658392906189, - 0.8500584363937378, - 0.9776104092597961, - -0.9816028475761414, - -0.8518568277359009, - -0.7131660580635071, - -0.5712628960609436, - -0.4285564720630646, - -0.28571364283561707, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.28571364283561707, - 0.4285564720630646, - 0.5712628960609436, - 0.7131660580635071, - 0.8518568277359009, - 0.9816028475761414, - -0.9828377962112427, - -0.852379322052002, - -0.7133266925811768, - -0.5712985396385193, - -0.42856165766716003, - -0.2857140302658081, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857140302658081, - 0.42856165766716003, - 0.5712985396385193, - 0.7133266925811768, - 0.852379322052002, - 0.9828377962112427, - -0.9816028475761414, - -0.8518568277359009, - -0.7131660580635071, - -0.5712628960609436, - -0.4285564720630646, - -0.28571364283561707, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.28571364283561707, - 0.4285564720630646, - 0.5712628960609436, - 0.7131660580635071, - 0.8518568277359009, - 0.9816028475761414, - -0.9776104092597961, - -0.8500584363937378, - -0.7125658392906189, - -0.5711120367050171, - -0.4285288453102112, - -0.2857101857662201, - -0.14285679161548615, - -4.470344805440618e-8, - 0.14285679161548615, - 0.2857101857662201, - 0.4285288453102112, - 0.5711120367050171, - 0.7125658392906189, - 0.8500584363937378, - 0.9776104092597961, - -0.9700546860694885, - -0.8462450504302979, - -0.7110960483551025, - -0.5706613063812256, - -0.4284153878688812, - -0.2856858968734741, - -0.14285212755203247, - -4.470246750543083e-8, - 0.14285212755203247, - 0.2856858968734741, - 0.4284153878688812, - 0.5706613063812256, - 0.7110960483551025, - 0.8462450504302979, - 0.9700546860694885, - -0.9578511118888855, - -0.8391328454017639, - -0.7078158855438232, - -0.5694093704223633, - -0.4279959797859192, - -0.28555601835250854, - -0.1428156942129135, - -4.469331216228056e-8, - 0.1428156942129135, - 0.28555601835250854, - 0.4279959797859192, - 0.5694093704223633, - 0.7078158855438232, - 0.8391328454017639, - 0.9578511118888855, - -0.9401423335075378, - -0.8271716237068176, - -0.701144814491272, - -0.5662526488304138, - -0.4266575872898102, - -0.28502631187438965, - -0.14263316988945007, - -4.464346403665331e-8, - 0.14263316988945007, - 0.28502631187438965, - 0.4266575872898102, - 0.5662526488304138, - 0.701144814491272, - 0.8271716237068176, - 0.9401423335075378, - -0.9168554544448853, - -0.8093342185020447, - -0.6893096566200256, - -0.5594218373298645, - -0.42312249541282654, - -0.283352792263031, - -0.14197610318660736, - -4.445504586669813e-8, - 0.14197610318660736, - 0.283352792263031, - 0.42312249541282654, - 0.5594218373298645, - 0.6893096566200256, - 0.8093342185020447, - 0.9168554544448853, - -0.888861894607544, - -0.7858760952949524, - -0.6715302467346191, - -0.5473434329032898, - -0.41573768854141235, - -0.2793172299861908, - -0.14022894203662872, - -4.393627150989232e-8, - 0.14022894203662872, - 0.2793172299861908, - 0.41573768854141235, - 0.5473434329032898, - 0.6715302467346191, - 0.7858760952949524, - 0.888861894607544 - ], - "yaxis": "y5" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8821273446083069, - -0.9109260439872742, - -0.9351798892021179, - -0.9538848400115967, - -0.9669556617736816, - -0.9751431941986084, - -0.9795042872428894, - -0.9808587431907654, - -0.9795042872428894, - -0.9751431941986084, - -0.9669556617736816, - -0.9538848400115967, - -0.9351798892021179, - -0.9109260439872742, - -0.8821273446083069, - -0.7807937264442444, - -0.8052575588226318, - -0.8241914510726929, - -0.8371247053146362, - -0.8449369668960571, - -0.849172055721283, - -0.8511819839477539, - -0.8517675995826721, - -0.8511819839477539, - -0.849172055721283, - -0.8449369668960571, - -0.8371247053146362, - -0.8241914510726929, - -0.8052575588226318, - -0.7807937264442444, - -0.6679856181144714, - -0.686826229095459, - -0.6996459364891052, - -0.7070124745368958, - -0.7106820940971375, - -0.7123380899429321, - -0.7130165100097656, - -0.7131983041763306, - -0.7130165100097656, - -0.7123380899429321, - -0.7106820940971375, - -0.7070124745368958, - -0.6996459364891052, - -0.686826229095459, - -0.6679856181144714, - -0.5450770258903503, - -0.5580830574035645, - -0.5656099319458008, - -0.5691448450088501, - -0.5705586075782776, - -0.5710693001747131, - -0.5712405443191528, - -0.5712808966636658, - -0.5712405443191528, - -0.5710693001747131, - -0.5705586075782776, - -0.5691448450088501, - -0.5656099319458008, - -0.5580830574035645, - -0.5450770258903503, - -0.4144095480442047, - -0.4224684536457062, - -0.42640921473503113, - -0.4279189705848694, - -0.42839428782463074, - -0.42852306365966797, - -0.428554505109787, - -0.4285603165626526, - -0.428554505109787, - -0.42852306365966797, - -0.42839428782463074, - -0.4279189705848694, - -0.42640921473503113, - -0.4224684536457062, - -0.4144095480442047, - -0.27861231565475464, - -0.2830573320388794, - -0.28493520617485046, - -0.28553465008735657, - -0.2856820523738861, - -0.2857096493244171, - -0.2857135534286499, - -0.2857140004634857, - -0.2857135534286499, - -0.2857096493244171, - -0.2856820523738861, - -0.28553465008735657, - -0.28493520617485046, - -0.2830573320388794, - -0.27861231565475464, - -0.1399291455745697, - -0.1418636292219162, - -0.14260326325893402, - -0.14281010627746582, - -0.14285147190093994, - -0.14285674691200256, - -0.14285708963871002, - -0.14285710453987122, - -0.14285708963871002, - -0.14285674691200256, - -0.14285147190093994, - -0.14281010627746582, - -0.14260326325893402, - -0.1418636292219162, - -0.1399291455745697, - -4.384780183386283e-8, - -4.44231424978625e-8, - -4.4635427798311866e-8, - -4.469193370937319e-8, - -4.470232894959736e-8, - -4.470344094897882e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470344094897882e-8, - -4.470232894959736e-8, - -4.469193370937319e-8, - -4.4635427798311866e-8, - -4.44231424978625e-8, - -4.384780183386283e-8, - 0.1399291455745697, - 0.1418636292219162, - 0.14260326325893402, - 0.14281010627746582, - 0.14285147190093994, - 0.14285674691200256, - 0.14285708963871002, - 0.14285710453987122, - 0.14285708963871002, - 0.14285674691200256, - 0.14285147190093994, - 0.14281010627746582, - 0.14260326325893402, - 0.1418636292219162, - 0.1399291455745697, - 0.27861231565475464, - 0.2830573320388794, - 0.28493520617485046, - 0.28553465008735657, - 0.2856820523738861, - 0.2857096493244171, - 0.2857135534286499, - 0.2857140004634857, - 0.2857135534286499, - 0.2857096493244171, - 0.2856820523738861, - 0.28553465008735657, - 0.28493520617485046, - 0.2830573320388794, - 0.27861231565475464, - 0.4144095480442047, - 0.4224684536457062, - 0.42640921473503113, - 0.4279189705848694, - 0.42839428782463074, - 0.42852306365966797, - 0.428554505109787, - 0.4285603165626526, - 0.428554505109787, - 0.42852306365966797, - 0.42839428782463074, - 0.4279189705848694, - 0.42640921473503113, - 0.4224684536457062, - 0.4144095480442047, - 0.5450770258903503, - 0.5580830574035645, - 0.5656099319458008, - 0.5691448450088501, - 0.5705586075782776, - 0.5710693001747131, - 0.5712405443191528, - 0.5712808966636658, - 0.5712405443191528, - 0.5710693001747131, - 0.5705586075782776, - 0.5691448450088501, - 0.5656099319458008, - 0.5580830574035645, - 0.5450770258903503, - 0.6679856181144714, - 0.686826229095459, - 0.6996459364891052, - 0.7070124745368958, - 0.7106820940971375, - 0.7123380899429321, - 0.7130165100097656, - 0.7131983041763306, - 0.7130165100097656, - 0.7123380899429321, - 0.7106820940971375, - 0.7070124745368958, - 0.6996459364891052, - 0.686826229095459, - 0.6679856181144714, - 0.7807937264442444, - 0.8052575588226318, - 0.8241914510726929, - 0.8371247053146362, - 0.8449369668960571, - 0.849172055721283, - 0.8511819839477539, - 0.8517675995826721, - 0.8511819839477539, - 0.849172055721283, - 0.8449369668960571, - 0.8371247053146362, - 0.8241914510726929, - 0.8052575588226318, - 0.7807937264442444, - 0.8821273446083069, - 0.9109260439872742, - 0.9351798892021179, - 0.9538848400115967, - 0.9669556617736816, - 0.9751431941986084, - 0.9795042872428894, - 0.9808587431907654, - 0.9795042872428894, - 0.9751431941986084, - 0.9669556617736816, - 0.9538848400115967, - 0.9351798892021179, - 0.9109260439872742, - 0.8821273446083069 - ], - "xaxis": "x5", - "y": [ - -0.8821273446083069, - -0.7807937264442444, - -0.6679856181144714, - -0.5450770258903503, - -0.4144095480442047, - -0.27861231565475464, - -0.1399291455745697, - -4.384780183386283e-8, - 0.1399291455745697, - 0.27861231565475464, - 0.4144095480442047, - 0.5450770258903503, - 0.6679856181144714, - 0.7807937264442444, - 0.8821273446083069, - -0.9109260439872742, - -0.8052575588226318, - -0.686826229095459, - -0.5580830574035645, - -0.4224684536457062, - -0.2830573320388794, - -0.1418636292219162, - -4.44231424978625e-8, - 0.1418636292219162, - 0.2830573320388794, - 0.4224684536457062, - 0.5580830574035645, - 0.686826229095459, - 0.8052575588226318, - 0.9109260439872742, - -0.9351798892021179, - -0.8241914510726929, - -0.6996459364891052, - -0.5656099319458008, - -0.42640921473503113, - -0.28493520617485046, - -0.14260326325893402, - -4.4635427798311866e-8, - 0.14260326325893402, - 0.28493520617485046, - 0.42640921473503113, - 0.5656099319458008, - 0.6996459364891052, - 0.8241914510726929, - 0.9351798892021179, - -0.9538848400115967, - -0.8371247053146362, - -0.7070124745368958, - -0.5691448450088501, - -0.4279189705848694, - -0.28553465008735657, - -0.14281010627746582, - -4.469193370937319e-8, - 0.14281010627746582, - 0.28553465008735657, - 0.4279189705848694, - 0.5691448450088501, - 0.7070124745368958, - 0.8371247053146362, - 0.9538848400115967, - -0.9669556617736816, - -0.8449369668960571, - -0.7106820940971375, - -0.5705586075782776, - -0.42839428782463074, - -0.2856820523738861, - -0.14285147190093994, - -4.470232894959736e-8, - 0.14285147190093994, - 0.2856820523738861, - 0.42839428782463074, - 0.5705586075782776, - 0.7106820940971375, - 0.8449369668960571, - 0.9669556617736816, - -0.9751431941986084, - -0.849172055721283, - -0.7123380899429321, - -0.5710693001747131, - -0.42852306365966797, - -0.2857096493244171, - -0.14285674691200256, - -4.470344094897882e-8, - 0.14285674691200256, - 0.2857096493244171, - 0.42852306365966797, - 0.5710693001747131, - 0.7123380899429321, - 0.849172055721283, - 0.9751431941986084, - -0.9795042872428894, - -0.8511819839477539, - -0.7130165100097656, - -0.5712405443191528, - -0.428554505109787, - -0.2857135534286499, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.2857135534286499, - 0.428554505109787, - 0.5712405443191528, - 0.7130165100097656, - 0.8511819839477539, - 0.9795042872428894, - -0.9808587431907654, - -0.8517675995826721, - -0.7131983041763306, - -0.5712808966636658, - -0.4285603165626526, - -0.2857140004634857, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857140004634857, - 0.4285603165626526, - 0.5712808966636658, - 0.7131983041763306, - 0.8517675995826721, - 0.9808587431907654, - -0.9795042872428894, - -0.8511819839477539, - -0.7130165100097656, - -0.5712405443191528, - -0.428554505109787, - -0.2857135534286499, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.2857135534286499, - 0.428554505109787, - 0.5712405443191528, - 0.7130165100097656, - 0.8511819839477539, - 0.9795042872428894, - -0.9751431941986084, - -0.849172055721283, - -0.7123380899429321, - -0.5710693001747131, - -0.42852306365966797, - -0.2857096493244171, - -0.14285674691200256, - -4.470344094897882e-8, - 0.14285674691200256, - 0.2857096493244171, - 0.42852306365966797, - 0.5710693001747131, - 0.7123380899429321, - 0.849172055721283, - 0.9751431941986084, - -0.9669556617736816, - -0.8449369668960571, - -0.7106820940971375, - -0.5705586075782776, - -0.42839428782463074, - -0.2856820523738861, - -0.14285147190093994, - -4.470232894959736e-8, - 0.14285147190093994, - 0.2856820523738861, - 0.42839428782463074, - 0.5705586075782776, - 0.7106820940971375, - 0.8449369668960571, - 0.9669556617736816, - -0.9538848400115967, - -0.8371247053146362, - -0.7070124745368958, - -0.5691448450088501, - -0.4279189705848694, - -0.28553465008735657, - -0.14281010627746582, - -4.469193370937319e-8, - 0.14281010627746582, - 0.28553465008735657, - 0.4279189705848694, - 0.5691448450088501, - 0.7070124745368958, - 0.8371247053146362, - 0.9538848400115967, - -0.9351798892021179, - -0.8241914510726929, - -0.6996459364891052, - -0.5656099319458008, - -0.42640921473503113, - -0.28493520617485046, - -0.14260326325893402, - -4.4635427798311866e-8, - 0.14260326325893402, - 0.28493520617485046, - 0.42640921473503113, - 0.5656099319458008, - 0.6996459364891052, - 0.8241914510726929, - 0.9351798892021179, - -0.9109260439872742, - -0.8052575588226318, - -0.686826229095459, - -0.5580830574035645, - -0.4224684536457062, - -0.2830573320388794, - -0.1418636292219162, - -4.44231424978625e-8, - 0.1418636292219162, - 0.2830573320388794, - 0.4224684536457062, - 0.5580830574035645, - 0.686826229095459, - 0.8052575588226318, - 0.9109260439872742, - -0.8821273446083069, - -0.7807937264442444, - -0.6679856181144714, - -0.5450770258903503, - -0.4144095480442047, - -0.27861231565475464, - -0.1399291455745697, - -4.384780183386283e-8, - 0.1399291455745697, - 0.27861231565475464, - 0.4144095480442047, - 0.5450770258903503, - 0.6679856181144714, - 0.7807937264442444, - 0.8821273446083069 - ], - "yaxis": "y5" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": true, - "x": [ - -0.8760281801223755, - -0.9055004715919495, - -0.9305817484855652, - -0.9501598477363586, - -0.9640088081359863, - -0.972774863243103, - -0.9774783849716187, - -0.9789446592330933, - -0.9774783849716187, - -0.972774863243103, - -0.9640088081359863, - -0.9501598477363586, - -0.9305817484855652, - -0.9055004715919495, - -0.8760281801223755, - -0.7761432528495789, - -0.8014698028564453, - -0.8213732242584229, - -0.8351932764053345, - -0.8436625599861145, - -0.8483014702796936, - -0.8505163788795471, - -0.8511634469032288, - -0.8505163788795471, - -0.8483014702796936, - -0.8436625599861145, - -0.8351932764053345, - -0.8213732242584229, - -0.8014698028564453, - -0.7761432528495789, - -0.6647012233734131, - -0.684477686882019, - -0.6981988549232483, - -0.7062245011329651, - -0.7102722525596619, - -0.7121115326881409, - -0.7128674983978271, - -0.7130703330039978, - -0.7128674983978271, - -0.7121115326881409, - -0.7102722525596619, - -0.7062245011329651, - -0.6981988549232483, - -0.684477686882019, - -0.6647012233734131, - -0.5429484844207764, - -0.5567954778671265, - -0.5649795532226562, - -0.5688825249671936, - -0.5704562067985535, - -0.571026623249054, - -0.5712181329727173, - -0.571263313293457, - -0.5712181329727173, - -0.571026623249054, - -0.5704562067985535, - -0.5688825249671936, - -0.5649795532226562, - -0.5567954778671265, - -0.5429484844207764, - -0.41314661502838135, - -0.42183125019073486, - -0.42616331577301025, - -0.4278421700000763, - -0.42837321758270264, - -0.42851731181144714, - -0.42855244874954224, - -0.42855897545814514, - -0.42855244874954224, - -0.42851731181144714, - -0.42837321758270264, - -0.4278421700000763, - -0.42616331577301025, - -0.42183125019073486, - -0.41314661502838135, - -0.277935653924942, - -0.2827671468257904, - -0.2848445773124695, - -0.285513311624527, - -0.2856782078742981, - -0.28570908308029175, - -0.2857134938240051, - -0.28571397066116333, - -0.2857134938240051, - -0.28570908308029175, - -0.2856782078742981, - -0.285513311624527, - -0.2848445773124695, - -0.2827671468257904, - -0.277935653924942, - -0.1396397352218628, - -0.141752690076828, - -0.14257346093654633, - -0.14280450344085693, - -0.14285078644752502, - -0.14285671710968018, - -0.14285708963871002, - -0.14285710453987122, - -0.14285708963871002, - -0.14285671710968018, - -0.14285078644752502, - -0.14280450344085693, - -0.14257346093654633, - -0.141752690076828, - -0.1396397352218628, - -4.376223472490892e-8, - -4.439163348024522e-8, - -4.462741642896617e-8, - -4.469055880917949e-8, - -4.4702190393763885e-8, - -4.4703437396265144e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.4703437396265144e-8, - -4.4702190393763885e-8, - -4.469055880917949e-8, - -4.462741642896617e-8, - -4.439163348024522e-8, - -4.376223472490892e-8, - 0.1396397352218628, - 0.141752690076828, - 0.14257346093654633, - 0.14280450344085693, - 0.14285078644752502, - 0.14285671710968018, - 0.14285708963871002, - 0.14285710453987122, - 0.14285708963871002, - 0.14285671710968018, - 0.14285078644752502, - 0.14280450344085693, - 0.14257346093654633, - 0.141752690076828, - 0.1396397352218628, - 0.277935653924942, - 0.2827671468257904, - 0.2848445773124695, - 0.285513311624527, - 0.2856782078742981, - 0.28570908308029175, - 0.2857134938240051, - 0.28571397066116333, - 0.2857134938240051, - 0.28570908308029175, - 0.2856782078742981, - 0.285513311624527, - 0.2848445773124695, - 0.2827671468257904, - 0.277935653924942, - 0.41314661502838135, - 0.42183125019073486, - 0.42616331577301025, - 0.4278421700000763, - 0.42837321758270264, - 0.42851731181144714, - 0.42855244874954224, - 0.42855897545814514, - 0.42855244874954224, - 0.42851731181144714, - 0.42837321758270264, - 0.4278421700000763, - 0.42616331577301025, - 0.42183125019073486, - 0.41314661502838135, - 0.5429484844207764, - 0.5567954778671265, - 0.5649795532226562, - 0.5688825249671936, - 0.5704562067985535, - 0.571026623249054, - 0.5712181329727173, - 0.571263313293457, - 0.5712181329727173, - 0.571026623249054, - 0.5704562067985535, - 0.5688825249671936, - 0.5649795532226562, - 0.5567954778671265, - 0.5429484844207764, - 0.6647012233734131, - 0.684477686882019, - 0.6981988549232483, - 0.7062245011329651, - 0.7102722525596619, - 0.7121115326881409, - 0.7128674983978271, - 0.7130703330039978, - 0.7128674983978271, - 0.7121115326881409, - 0.7102722525596619, - 0.7062245011329651, - 0.6981988549232483, - 0.684477686882019, - 0.6647012233734131, - 0.7761432528495789, - 0.8014698028564453, - 0.8213732242584229, - 0.8351932764053345, - 0.8436625599861145, - 0.8483014702796936, - 0.8505163788795471, - 0.8511634469032288, - 0.8505163788795471, - 0.8483014702796936, - 0.8436625599861145, - 0.8351932764053345, - 0.8213732242584229, - 0.8014698028564453, - 0.7761432528495789, - 0.8760281801223755, - 0.9055004715919495, - 0.9305817484855652, - 0.9501598477363586, - 0.9640088081359863, - 0.972774863243103, - 0.9774783849716187, - 0.9789446592330933, - 0.9774783849716187, - 0.972774863243103, - 0.9640088081359863, - 0.9501598477363586, - 0.9305817484855652, - 0.9055004715919495, - 0.8760281801223755 - ], - "xaxis": "x5", - "y": [ - -0.8760281801223755, - -0.7761432528495789, - -0.6647012233734131, - -0.5429484844207764, - -0.41314661502838135, - -0.277935653924942, - -0.1396397352218628, - -4.376223472490892e-8, - 0.1396397352218628, - 0.277935653924942, - 0.41314661502838135, - 0.5429484844207764, - 0.6647012233734131, - 0.7761432528495789, - 0.8760281801223755, - -0.9055004715919495, - -0.8014698028564453, - -0.684477686882019, - -0.5567954778671265, - -0.42183125019073486, - -0.2827671468257904, - -0.141752690076828, - -4.439163348024522e-8, - 0.141752690076828, - 0.2827671468257904, - 0.42183125019073486, - 0.5567954778671265, - 0.684477686882019, - 0.8014698028564453, - 0.9055004715919495, - -0.9305817484855652, - -0.8213732242584229, - -0.6981988549232483, - -0.5649795532226562, - -0.42616331577301025, - -0.2848445773124695, - -0.14257346093654633, - -4.462741642896617e-8, - 0.14257346093654633, - 0.2848445773124695, - 0.42616331577301025, - 0.5649795532226562, - 0.6981988549232483, - 0.8213732242584229, - 0.9305817484855652, - -0.9501598477363586, - -0.8351932764053345, - -0.7062245011329651, - -0.5688825249671936, - -0.4278421700000763, - -0.285513311624527, - -0.14280450344085693, - -4.469055880917949e-8, - 0.14280450344085693, - 0.285513311624527, - 0.4278421700000763, - 0.5688825249671936, - 0.7062245011329651, - 0.8351932764053345, - 0.9501598477363586, - -0.9640088081359863, - -0.8436625599861145, - -0.7102722525596619, - -0.5704562067985535, - -0.42837321758270264, - -0.2856782078742981, - -0.14285078644752502, - -4.4702190393763885e-8, - 0.14285078644752502, - 0.2856782078742981, - 0.42837321758270264, - 0.5704562067985535, - 0.7102722525596619, - 0.8436625599861145, - 0.9640088081359863, - -0.972774863243103, - -0.8483014702796936, - -0.7121115326881409, - -0.571026623249054, - -0.42851731181144714, - -0.28570908308029175, - -0.14285671710968018, - -4.4703437396265144e-8, - 0.14285671710968018, - 0.28570908308029175, - 0.42851731181144714, - 0.571026623249054, - 0.7121115326881409, - 0.8483014702796936, - 0.972774863243103, - -0.9774783849716187, - -0.8505163788795471, - -0.7128674983978271, - -0.5712181329727173, - -0.42855244874954224, - -0.2857134938240051, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.2857134938240051, - 0.42855244874954224, - 0.5712181329727173, - 0.7128674983978271, - 0.8505163788795471, - 0.9774783849716187, - -0.9789446592330933, - -0.8511634469032288, - -0.7130703330039978, - -0.571263313293457, - -0.42855897545814514, - -0.28571397066116333, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.28571397066116333, - 0.42855897545814514, - 0.571263313293457, - 0.7130703330039978, - 0.8511634469032288, - 0.9789446592330933, - -0.9774783849716187, - -0.8505163788795471, - -0.7128674983978271, - -0.5712181329727173, - -0.42855244874954224, - -0.2857134938240051, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.2857134938240051, - 0.42855244874954224, - 0.5712181329727173, - 0.7128674983978271, - 0.8505163788795471, - 0.9774783849716187, - -0.972774863243103, - -0.8483014702796936, - -0.7121115326881409, - -0.571026623249054, - -0.42851731181144714, - -0.28570908308029175, - -0.14285671710968018, - -4.4703437396265144e-8, - 0.14285671710968018, - 0.28570908308029175, - 0.42851731181144714, - 0.571026623249054, - 0.7121115326881409, - 0.8483014702796936, - 0.972774863243103, - -0.9640088081359863, - -0.8436625599861145, - -0.7102722525596619, - -0.5704562067985535, - -0.42837321758270264, - -0.2856782078742981, - -0.14285078644752502, - -4.4702190393763885e-8, - 0.14285078644752502, - 0.2856782078742981, - 0.42837321758270264, - 0.5704562067985535, - 0.7102722525596619, - 0.8436625599861145, - 0.9640088081359863, - -0.9501598477363586, - -0.8351932764053345, - -0.7062245011329651, - -0.5688825249671936, - -0.4278421700000763, - -0.285513311624527, - -0.14280450344085693, - -4.469055880917949e-8, - 0.14280450344085693, - 0.285513311624527, - 0.4278421700000763, - 0.5688825249671936, - 0.7062245011329651, - 0.8351932764053345, - 0.9501598477363586, - -0.9305817484855652, - -0.8213732242584229, - -0.6981988549232483, - -0.5649795532226562, - -0.42616331577301025, - -0.2848445773124695, - -0.14257346093654633, - -4.462741642896617e-8, - 0.14257346093654633, - 0.2848445773124695, - 0.42616331577301025, - 0.5649795532226562, - 0.6981988549232483, - 0.8213732242584229, - 0.9305817484855652, - -0.9055004715919495, - -0.8014698028564453, - -0.684477686882019, - -0.5567954778671265, - -0.42183125019073486, - -0.2827671468257904, - -0.141752690076828, - -4.439163348024522e-8, - 0.141752690076828, - 0.2827671468257904, - 0.42183125019073486, - 0.5567954778671265, - 0.684477686882019, - 0.8014698028564453, - 0.9055004715919495, - -0.8760281801223755, - -0.7761432528495789, - -0.6647012233734131, - -0.5429484844207764, - -0.41314661502838135, - -0.277935653924942, - -0.1396397352218628, - -4.376223472490892e-8, - 0.1396397352218628, - 0.277935653924942, - 0.41314661502838135, - 0.5429484844207764, - 0.6647012233734131, - 0.7761432528495789, - 0.8760281801223755 - ], - "yaxis": "y5" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8704540133476257, - -0.9004985094070435, - -0.9262968897819519, - -0.9466475248336792, - -0.9611992835998535, - -0.9704974293708801, - -0.9755199551582336, - -0.9770910739898682, - -0.9755199551582336, - -0.9704974293708801, - -0.9611992835998535, - -0.9466475248336792, - -0.9262968897819519, - -0.9004985094070435, - -0.8704540133476257, - -0.7718558311462402, - -0.7979317307472229, - -0.8186994791030884, - -0.8333328366279602, - -0.8424200415611267, - -0.8474460244178772, - -0.8498598337173462, - -0.8505667448043823, - -0.8498598337173462, - -0.8474460244178772, - -0.8424200415611267, - -0.8333328366279602, - -0.8186994791030884, - -0.7979317307472229, - -0.7718558311462402, - -0.6616406440734863, - -0.6822495460510254, - -0.6967999339103699, - -0.705451488494873, - -0.7098665833473206, - -0.7118862271308899, - -0.7127190232276917, - -0.7129427194595337, - -0.7127190232276917, - -0.7118862271308899, - -0.7098665833473206, - -0.705451488494873, - -0.6967999339103699, - -0.6822495460510254, - -0.6616406440734863, - -0.5409414172172546, - -0.5555551648139954, - -0.5643611550331116, - -0.5686222910881042, - -0.570354163646698, - -0.5709840655326843, - -0.5711957216262817, - -0.5712456703186035, - -0.5711957216262817, - -0.5709840655326843, - -0.570354163646698, - -0.5686222910881042, - -0.5643611550331116, - -0.5555551648139954, - -0.5409414172172546, - -0.4119425117969513, - -0.42120999097824097, - -0.42591989040374756, - -0.4277656078338623, - -0.4283521771430969, - -0.42851153016090393, - -0.4285503923892975, - -0.4285576641559601, - -0.4285503923892975, - -0.42851153016090393, - -0.4283521771430969, - -0.4277656078338623, - -0.42591989040374756, - -0.42120999097824097, - -0.4119425117969513, - -0.2772849500179291, - -0.28248199820518494, - -0.2847544550895691, - -0.28549203276634216, - -0.2856743633747101, - -0.28570854663848877, - -0.2857133746147156, - -0.28571388125419617, - -0.2857133746147156, - -0.28570854663848877, - -0.2856743633747101, - -0.28549203276634216, - -0.2847544550895691, - -0.28248199820518494, - -0.2772849500179291, - -0.1393599510192871, - -0.14164325594902039, - -0.142543762922287, - -0.14279890060424805, - -0.1428501009941101, - -0.1428566575050354, - -0.14285708963871002, - -0.14285710453987122, - -0.14285708963871002, - -0.1428566575050354, - -0.1428501009941101, - -0.14279890060424805, - -0.142543762922287, - -0.14164325594902039, - -0.1393599510192871, - -4.367937478377826e-8, - -4.4360511708418926e-8, - -4.4619433481329906e-8, - -4.468918035627212e-8, - -4.470205183793041e-8, - -4.470342673812411e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470342673812411e-8, - -4.470205183793041e-8, - -4.468918035627212e-8, - -4.4619433481329906e-8, - -4.4360511708418926e-8, - -4.367937478377826e-8, - 0.1393599510192871, - 0.14164325594902039, - 0.142543762922287, - 0.14279890060424805, - 0.1428501009941101, - 0.1428566575050354, - 0.14285708963871002, - 0.14285710453987122, - 0.14285708963871002, - 0.1428566575050354, - 0.1428501009941101, - 0.14279890060424805, - 0.142543762922287, - 0.14164325594902039, - 0.1393599510192871, - 0.2772849500179291, - 0.28248199820518494, - 0.2847544550895691, - 0.28549203276634216, - 0.2856743633747101, - 0.28570854663848877, - 0.2857133746147156, - 0.28571388125419617, - 0.2857133746147156, - 0.28570854663848877, - 0.2856743633747101, - 0.28549203276634216, - 0.2847544550895691, - 0.28248199820518494, - 0.2772849500179291, - 0.4119425117969513, - 0.42120999097824097, - 0.42591989040374756, - 0.4277656078338623, - 0.4283521771430969, - 0.42851153016090393, - 0.4285503923892975, - 0.4285576641559601, - 0.4285503923892975, - 0.42851153016090393, - 0.4283521771430969, - 0.4277656078338623, - 0.42591989040374756, - 0.42120999097824097, - 0.4119425117969513, - 0.5409414172172546, - 0.5555551648139954, - 0.5643611550331116, - 0.5686222910881042, - 0.570354163646698, - 0.5709840655326843, - 0.5711957216262817, - 0.5712456703186035, - 0.5711957216262817, - 0.5709840655326843, - 0.570354163646698, - 0.5686222910881042, - 0.5643611550331116, - 0.5555551648139954, - 0.5409414172172546, - 0.6616406440734863, - 0.6822495460510254, - 0.6967999339103699, - 0.705451488494873, - 0.7098665833473206, - 0.7118862271308899, - 0.7127190232276917, - 0.7129427194595337, - 0.7127190232276917, - 0.7118862271308899, - 0.7098665833473206, - 0.705451488494873, - 0.6967999339103699, - 0.6822495460510254, - 0.6616406440734863, - 0.7718558311462402, - 0.7979317307472229, - 0.8186994791030884, - 0.8333328366279602, - 0.8424200415611267, - 0.8474460244178772, - 0.8498598337173462, - 0.8505667448043823, - 0.8498598337173462, - 0.8474460244178772, - 0.8424200415611267, - 0.8333328366279602, - 0.8186994791030884, - 0.7979317307472229, - 0.7718558311462402, - 0.8704540133476257, - 0.9004985094070435, - 0.9262968897819519, - 0.9466475248336792, - 0.9611992835998535, - 0.9704974293708801, - 0.9755199551582336, - 0.9770910739898682, - 0.9755199551582336, - 0.9704974293708801, - 0.9611992835998535, - 0.9466475248336792, - 0.9262968897819519, - 0.9004985094070435, - 0.8704540133476257 - ], - "xaxis": "x5", - "y": [ - -0.8704540133476257, - -0.7718558311462402, - -0.6616406440734863, - -0.5409414172172546, - -0.4119425117969513, - -0.2772849500179291, - -0.1393599510192871, - -4.367937478377826e-8, - 0.1393599510192871, - 0.2772849500179291, - 0.4119425117969513, - 0.5409414172172546, - 0.6616406440734863, - 0.7718558311462402, - 0.8704540133476257, - -0.9004985094070435, - -0.7979317307472229, - -0.6822495460510254, - -0.5555551648139954, - -0.42120999097824097, - -0.28248199820518494, - -0.14164325594902039, - -4.4360511708418926e-8, - 0.14164325594902039, - 0.28248199820518494, - 0.42120999097824097, - 0.5555551648139954, - 0.6822495460510254, - 0.7979317307472229, - 0.9004985094070435, - -0.9262968897819519, - -0.8186994791030884, - -0.6967999339103699, - -0.5643611550331116, - -0.42591989040374756, - -0.2847544550895691, - -0.142543762922287, - -4.4619433481329906e-8, - 0.142543762922287, - 0.2847544550895691, - 0.42591989040374756, - 0.5643611550331116, - 0.6967999339103699, - 0.8186994791030884, - 0.9262968897819519, - -0.9466475248336792, - -0.8333328366279602, - -0.705451488494873, - -0.5686222910881042, - -0.4277656078338623, - -0.28549203276634216, - -0.14279890060424805, - -4.468918035627212e-8, - 0.14279890060424805, - 0.28549203276634216, - 0.4277656078338623, - 0.5686222910881042, - 0.705451488494873, - 0.8333328366279602, - 0.9466475248336792, - -0.9611992835998535, - -0.8424200415611267, - -0.7098665833473206, - -0.570354163646698, - -0.4283521771430969, - -0.2856743633747101, - -0.1428501009941101, - -4.470205183793041e-8, - 0.1428501009941101, - 0.2856743633747101, - 0.4283521771430969, - 0.570354163646698, - 0.7098665833473206, - 0.8424200415611267, - 0.9611992835998535, - -0.9704974293708801, - -0.8474460244178772, - -0.7118862271308899, - -0.5709840655326843, - -0.42851153016090393, - -0.28570854663848877, - -0.1428566575050354, - -4.470342673812411e-8, - 0.1428566575050354, - 0.28570854663848877, - 0.42851153016090393, - 0.5709840655326843, - 0.7118862271308899, - 0.8474460244178772, - 0.9704974293708801, - -0.9755199551582336, - -0.8498598337173462, - -0.7127190232276917, - -0.5711957216262817, - -0.4285503923892975, - -0.2857133746147156, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.2857133746147156, - 0.4285503923892975, - 0.5711957216262817, - 0.7127190232276917, - 0.8498598337173462, - 0.9755199551582336, - -0.9770910739898682, - -0.8505667448043823, - -0.7129427194595337, - -0.5712456703186035, - -0.4285576641559601, - -0.28571388125419617, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.28571388125419617, - 0.4285576641559601, - 0.5712456703186035, - 0.7129427194595337, - 0.8505667448043823, - 0.9770910739898682, - -0.9755199551582336, - -0.8498598337173462, - -0.7127190232276917, - -0.5711957216262817, - -0.4285503923892975, - -0.2857133746147156, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.2857133746147156, - 0.4285503923892975, - 0.5711957216262817, - 0.7127190232276917, - 0.8498598337173462, - 0.9755199551582336, - -0.9704974293708801, - -0.8474460244178772, - -0.7118862271308899, - -0.5709840655326843, - -0.42851153016090393, - -0.28570854663848877, - -0.1428566575050354, - -4.470342673812411e-8, - 0.1428566575050354, - 0.28570854663848877, - 0.42851153016090393, - 0.5709840655326843, - 0.7118862271308899, - 0.8474460244178772, - 0.9704974293708801, - -0.9611992835998535, - -0.8424200415611267, - -0.7098665833473206, - -0.570354163646698, - -0.4283521771430969, - -0.2856743633747101, - -0.1428501009941101, - -4.470205183793041e-8, - 0.1428501009941101, - 0.2856743633747101, - 0.4283521771430969, - 0.570354163646698, - 0.7098665833473206, - 0.8424200415611267, - 0.9611992835998535, - -0.9466475248336792, - -0.8333328366279602, - -0.705451488494873, - -0.5686222910881042, - -0.4277656078338623, - -0.28549203276634216, - -0.14279890060424805, - -4.468918035627212e-8, - 0.14279890060424805, - 0.28549203276634216, - 0.4277656078338623, - 0.5686222910881042, - 0.705451488494873, - 0.8333328366279602, - 0.9466475248336792, - -0.9262968897819519, - -0.8186994791030884, - -0.6967999339103699, - -0.5643611550331116, - -0.42591989040374756, - -0.2847544550895691, - -0.142543762922287, - -4.4619433481329906e-8, - 0.142543762922287, - 0.2847544550895691, - 0.42591989040374756, - 0.5643611550331116, - 0.6967999339103699, - 0.8186994791030884, - 0.9262968897819519, - -0.9004985094070435, - -0.7979317307472229, - -0.6822495460510254, - -0.5555551648139954, - -0.42120999097824097, - -0.28248199820518494, - -0.14164325594902039, - -4.4360511708418926e-8, - 0.14164325594902039, - 0.28248199820518494, - 0.42120999097824097, - 0.5555551648139954, - 0.6822495460510254, - 0.7979317307472229, - 0.9004985094070435, - -0.8704540133476257, - -0.7718558311462402, - -0.6616406440734863, - -0.5409414172172546, - -0.4119425117969513, - -0.2772849500179291, - -0.1393599510192871, - -4.367937478377826e-8, - 0.1393599510192871, - 0.2772849500179291, - 0.4119425117969513, - 0.5409414172172546, - 0.6616406440734863, - 0.7718558311462402, - 0.8704540133476257 - ], - "yaxis": "y5" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8653212189674377, - -0.8958578705787659, - -0.9222843647003174, - -0.9433239698410034, - -0.9585143327713013, - -0.9683038592338562, - -0.9736244678497314, - -0.9752939939498901, - -0.9736244678497314, - -0.9683038592338562, - -0.9585143327713013, - -0.9433239698410034, - -0.9222843647003174, - -0.8958578705787659, - -0.8653212189674377, - -0.7678782343864441, - -0.7946116328239441, - -0.8161556124687195, - -0.8315378427505493, - -0.8412078022956848, - -0.8466052412986755, - -0.8492118716239929, - -0.8499773740768433, - -0.8492118716239929, - -0.8466052412986755, - -0.8412078022956848, - -0.8315378427505493, - -0.8161556124687195, - -0.7946116328239441, - -0.7678782343864441, - -0.6587745547294617, - -0.6801297068595886, - -0.6954460740089417, - -0.7046926617622375, - -0.709464967250824, - -0.711662232875824, - -0.7125711441040039, - -0.712815523147583, - -0.7125711441040039, - -0.711662232875824, - -0.709464967250824, - -0.7046926617622375, - -0.6954460740089417, - -0.6801297068595886, - -0.6587745547294617, - -0.5390422344207764, - -0.5543585419654846, - -0.5637540817260742, - -0.568364143371582, - -0.5702523589134216, - -0.5709415078163147, - -0.5711734294891357, - -0.5712281465530396, - -0.5711734294891357, - -0.5709415078163147, - -0.5702523589134216, - -0.568364143371582, - -0.5637540817260742, - -0.5543585419654846, - -0.5390422344207764, - -0.4107918441295624, - -0.42060387134552, - -0.42567893862724304, - -0.42768925428390503, - -0.4283311069011688, - -0.4285058081150055, - -0.4285484254360199, - -0.42855632305145264, - -0.4285484254360199, - -0.4285058081150055, - -0.4283311069011688, - -0.42768925428390503, - -0.42567893862724304, - -0.42060387134552, - -0.4107918441295624, - -0.27665823698043823, - -0.28220173716545105, - -0.2846648693084717, - -0.28547075390815735, - -0.28567054867744446, - -0.2857080101966858, - -0.2857133150100708, - -0.2857138514518738, - -0.2857133150100708, - -0.2857080101966858, - -0.28567054867744446, - -0.28547075390815735, - -0.2846648693084717, - -0.28220173716545105, - -0.27665823698043823, - -0.1390891671180725, - -0.14153528213500977, - -0.1425141841173172, - -0.14279332756996155, - -0.14284944534301758, - -0.142856627702713, - -0.14285708963871002, - -0.14285710453987122, - -0.14285708963871002, - -0.142856627702713, - -0.14284944534301758, - -0.14279332756996155, - -0.1425141841173172, - -0.14153528213500977, - -0.1390891671180725, - -4.359903726935954e-8, - -4.4329773629669944e-8, - -4.4611468297262036e-8, - -4.468780545607842e-8, - -4.470191328209694e-8, - -4.470341963269675e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470341963269675e-8, - -4.470191328209694e-8, - -4.468780545607842e-8, - -4.4611468297262036e-8, - -4.4329773629669944e-8, - -4.359903726935954e-8, - 0.1390891671180725, - 0.14153528213500977, - 0.1425141841173172, - 0.14279332756996155, - 0.14284944534301758, - 0.142856627702713, - 0.14285708963871002, - 0.14285710453987122, - 0.14285708963871002, - 0.142856627702713, - 0.14284944534301758, - 0.14279332756996155, - 0.1425141841173172, - 0.14153528213500977, - 0.1390891671180725, - 0.27665823698043823, - 0.28220173716545105, - 0.2846648693084717, - 0.28547075390815735, - 0.28567054867744446, - 0.2857080101966858, - 0.2857133150100708, - 0.2857138514518738, - 0.2857133150100708, - 0.2857080101966858, - 0.28567054867744446, - 0.28547075390815735, - 0.2846648693084717, - 0.28220173716545105, - 0.27665823698043823, - 0.4107918441295624, - 0.42060387134552, - 0.42567893862724304, - 0.42768925428390503, - 0.4283311069011688, - 0.4285058081150055, - 0.4285484254360199, - 0.42855632305145264, - 0.4285484254360199, - 0.4285058081150055, - 0.4283311069011688, - 0.42768925428390503, - 0.42567893862724304, - 0.42060387134552, - 0.4107918441295624, - 0.5390422344207764, - 0.5543585419654846, - 0.5637540817260742, - 0.568364143371582, - 0.5702523589134216, - 0.5709415078163147, - 0.5711734294891357, - 0.5712281465530396, - 0.5711734294891357, - 0.5709415078163147, - 0.5702523589134216, - 0.568364143371582, - 0.5637540817260742, - 0.5543585419654846, - 0.5390422344207764, - 0.6587745547294617, - 0.6801297068595886, - 0.6954460740089417, - 0.7046926617622375, - 0.709464967250824, - 0.711662232875824, - 0.7125711441040039, - 0.712815523147583, - 0.7125711441040039, - 0.711662232875824, - 0.709464967250824, - 0.7046926617622375, - 0.6954460740089417, - 0.6801297068595886, - 0.6587745547294617, - 0.7678782343864441, - 0.7946116328239441, - 0.8161556124687195, - 0.8315378427505493, - 0.8412078022956848, - 0.8466052412986755, - 0.8492118716239929, - 0.8499773740768433, - 0.8492118716239929, - 0.8466052412986755, - 0.8412078022956848, - 0.8315378427505493, - 0.8161556124687195, - 0.7946116328239441, - 0.7678782343864441, - 0.8653212189674377, - 0.8958578705787659, - 0.9222843647003174, - 0.9433239698410034, - 0.9585143327713013, - 0.9683038592338562, - 0.9736244678497314, - 0.9752939939498901, - 0.9736244678497314, - 0.9683038592338562, - 0.9585143327713013, - 0.9433239698410034, - 0.9222843647003174, - 0.8958578705787659, - 0.8653212189674377 - ], - "xaxis": "x5", - "y": [ - -0.8653212189674377, - -0.7678782343864441, - -0.6587745547294617, - -0.5390422344207764, - -0.4107918441295624, - -0.27665823698043823, - -0.1390891671180725, - -4.359903726935954e-8, - 0.1390891671180725, - 0.27665823698043823, - 0.4107918441295624, - 0.5390422344207764, - 0.6587745547294617, - 0.7678782343864441, - 0.8653212189674377, - -0.8958578705787659, - -0.7946116328239441, - -0.6801297068595886, - -0.5543585419654846, - -0.42060387134552, - -0.28220173716545105, - -0.14153528213500977, - -4.4329773629669944e-8, - 0.14153528213500977, - 0.28220173716545105, - 0.42060387134552, - 0.5543585419654846, - 0.6801297068595886, - 0.7946116328239441, - 0.8958578705787659, - -0.9222843647003174, - -0.8161556124687195, - -0.6954460740089417, - -0.5637540817260742, - -0.42567893862724304, - -0.2846648693084717, - -0.1425141841173172, - -4.4611468297262036e-8, - 0.1425141841173172, - 0.2846648693084717, - 0.42567893862724304, - 0.5637540817260742, - 0.6954460740089417, - 0.8161556124687195, - 0.9222843647003174, - -0.9433239698410034, - -0.8315378427505493, - -0.7046926617622375, - -0.568364143371582, - -0.42768925428390503, - -0.28547075390815735, - -0.14279332756996155, - -4.468780545607842e-8, - 0.14279332756996155, - 0.28547075390815735, - 0.42768925428390503, - 0.568364143371582, - 0.7046926617622375, - 0.8315378427505493, - 0.9433239698410034, - -0.9585143327713013, - -0.8412078022956848, - -0.709464967250824, - -0.5702523589134216, - -0.4283311069011688, - -0.28567054867744446, - -0.14284944534301758, - -4.470191328209694e-8, - 0.14284944534301758, - 0.28567054867744446, - 0.4283311069011688, - 0.5702523589134216, - 0.709464967250824, - 0.8412078022956848, - 0.9585143327713013, - -0.9683038592338562, - -0.8466052412986755, - -0.711662232875824, - -0.5709415078163147, - -0.4285058081150055, - -0.2857080101966858, - -0.142856627702713, - -4.470341963269675e-8, - 0.142856627702713, - 0.2857080101966858, - 0.4285058081150055, - 0.5709415078163147, - 0.711662232875824, - 0.8466052412986755, - 0.9683038592338562, - -0.9736244678497314, - -0.8492118716239929, - -0.7125711441040039, - -0.5711734294891357, - -0.4285484254360199, - -0.2857133150100708, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.2857133150100708, - 0.4285484254360199, - 0.5711734294891357, - 0.7125711441040039, - 0.8492118716239929, - 0.9736244678497314, - -0.9752939939498901, - -0.8499773740768433, - -0.712815523147583, - -0.5712281465530396, - -0.42855632305145264, - -0.2857138514518738, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857138514518738, - 0.42855632305145264, - 0.5712281465530396, - 0.712815523147583, - 0.8499773740768433, - 0.9752939939498901, - -0.9736244678497314, - -0.8492118716239929, - -0.7125711441040039, - -0.5711734294891357, - -0.4285484254360199, - -0.2857133150100708, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.2857133150100708, - 0.4285484254360199, - 0.5711734294891357, - 0.7125711441040039, - 0.8492118716239929, - 0.9736244678497314, - -0.9683038592338562, - -0.8466052412986755, - -0.711662232875824, - -0.5709415078163147, - -0.4285058081150055, - -0.2857080101966858, - -0.142856627702713, - -4.470341963269675e-8, - 0.142856627702713, - 0.2857080101966858, - 0.4285058081150055, - 0.5709415078163147, - 0.711662232875824, - 0.8466052412986755, - 0.9683038592338562, - -0.9585143327713013, - -0.8412078022956848, - -0.709464967250824, - -0.5702523589134216, - -0.4283311069011688, - -0.28567054867744446, - -0.14284944534301758, - -4.470191328209694e-8, - 0.14284944534301758, - 0.28567054867744446, - 0.4283311069011688, - 0.5702523589134216, - 0.709464967250824, - 0.8412078022956848, - 0.9585143327713013, - -0.9433239698410034, - -0.8315378427505493, - -0.7046926617622375, - -0.568364143371582, - -0.42768925428390503, - -0.28547075390815735, - -0.14279332756996155, - -4.468780545607842e-8, - 0.14279332756996155, - 0.28547075390815735, - 0.42768925428390503, - 0.568364143371582, - 0.7046926617622375, - 0.8315378427505493, - 0.9433239698410034, - -0.9222843647003174, - -0.8161556124687195, - -0.6954460740089417, - -0.5637540817260742, - -0.42567893862724304, - -0.2846648693084717, - -0.1425141841173172, - -4.4611468297262036e-8, - 0.1425141841173172, - 0.2846648693084717, - 0.42567893862724304, - 0.5637540817260742, - 0.6954460740089417, - 0.8161556124687195, - 0.9222843647003174, - -0.8958578705787659, - -0.7946116328239441, - -0.6801297068595886, - -0.5543585419654846, - -0.42060387134552, - -0.28220173716545105, - -0.14153528213500977, - -4.4329773629669944e-8, - 0.14153528213500977, - 0.28220173716545105, - 0.42060387134552, - 0.5543585419654846, - 0.6801297068595886, - 0.7946116328239441, - 0.8958578705787659, - -0.8653212189674377, - -0.7678782343864441, - -0.6587745547294617, - -0.5390422344207764, - -0.4107918441295624, - -0.27665823698043823, - -0.1390891671180725, - -4.359903726935954e-8, - 0.1390891671180725, - 0.27665823698043823, - 0.4107918441295624, - 0.5390422344207764, - 0.6587745547294617, - 0.7678782343864441, - 0.8653212189674377 - ], - "yaxis": "y5" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8605648279190063, - -0.8915293216705322, - -0.9185106754302979, - -0.9401693344116211, - -0.9559429287910461, - -0.9661878347396851, - -0.971787691116333, - -0.9735500812530518, - -0.971787691116333, - -0.9661878347396851, - -0.9559429287910461, - -0.9401693344116211, - -0.9185106754302979, - -0.8915293216705322, - -0.8605648279190063, - -0.7641680240631104, - -0.791483461856842, - -0.8137290477752686, - -0.8298038840293884, - -0.8400243520736694, - -0.8457786440849304, - -0.8485725522041321, - -0.8493948578834534, - -0.8485725522041321, - -0.8457786440849304, - -0.8400243520736694, - -0.8298038840293884, - -0.8137290477752686, - -0.791483461856842, - -0.7641680240631104, - -0.6560790538787842, - -0.678107500076294, - -0.6941340565681458, - -0.7039476633071899, - -0.7090672850608826, - -0.7114394903182983, - -0.7124236822128296, - -0.7126887440681458, - -0.7124236822128296, - -0.7114394903182983, - -0.7090672850608826, - -0.7039476633071899, - -0.6941340565681458, - -0.678107500076294, - -0.6560790538787842, - -0.5372395515441895, - -0.5532025098800659, - -0.5631580948829651, - -0.568108081817627, - -0.5701509714126587, - -0.5708990693092346, - -0.5711510181427002, - -0.5712105631828308, - -0.5711510181427002, - -0.5708990693092346, - -0.5701509714126587, - -0.568108081817627, - -0.5631580948829651, - -0.5532025098800659, - -0.5372395515441895, - -0.4096897840499878, - -0.42001214623451233, - -0.42544031143188477, - -0.427613228559494, - -0.4283100962638855, - -0.42850005626678467, - -0.42854636907577515, - -0.4285550117492676, - -0.42854636907577515, - -0.42850005626678467, - -0.4283100962638855, - -0.427613228559494, - -0.42544031143188477, - -0.42001214623451233, - -0.4096897840499878, - -0.27605363726615906, - -0.2819261848926544, - -0.28457579016685486, - -0.2854495346546173, - -0.28566670417785645, - -0.28570741415023804, - -0.28571322560310364, - -0.2857138216495514, - -0.28571322560310364, - -0.28570741415023804, - -0.28566670417785645, - -0.2854495346546173, - -0.28457579016685486, - -0.2819261848926544, - -0.27605363726615906, - -0.13882677257061005, - -0.14142872393131256, - -0.14248469471931458, - -0.14278772473335266, - -0.14284875988960266, - -0.14285658299922943, - -0.14285708963871002, - -0.14285710453987122, - -0.14285708963871002, - -0.14285658299922943, - -0.14284875988960266, - -0.14278772473335266, - -0.14248469471931458, - -0.14142872393131256, - -0.13882677257061005, - -4.352108007310562e-8, - -4.429939437500252e-8, - -4.460353864033095e-8, - -4.4686430555884726e-8, - -4.4701774726263466e-8, - -4.470341607998307e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470341607998307e-8, - -4.4701774726263466e-8, - -4.4686430555884726e-8, - -4.460353864033095e-8, - -4.429939437500252e-8, - -4.352108007310562e-8, - 0.13882677257061005, - 0.14142872393131256, - 0.14248469471931458, - 0.14278772473335266, - 0.14284875988960266, - 0.14285658299922943, - 0.14285708963871002, - 0.14285710453987122, - 0.14285708963871002, - 0.14285658299922943, - 0.14284875988960266, - 0.14278772473335266, - 0.14248469471931458, - 0.14142872393131256, - 0.13882677257061005, - 0.27605363726615906, - 0.2819261848926544, - 0.28457579016685486, - 0.2854495346546173, - 0.28566670417785645, - 0.28570741415023804, - 0.28571322560310364, - 0.2857138216495514, - 0.28571322560310364, - 0.28570741415023804, - 0.28566670417785645, - 0.2854495346546173, - 0.28457579016685486, - 0.2819261848926544, - 0.27605363726615906, - 0.4096897840499878, - 0.42001214623451233, - 0.42544031143188477, - 0.427613228559494, - 0.4283100962638855, - 0.42850005626678467, - 0.42854636907577515, - 0.4285550117492676, - 0.42854636907577515, - 0.42850005626678467, - 0.4283100962638855, - 0.427613228559494, - 0.42544031143188477, - 0.42001214623451233, - 0.4096897840499878, - 0.5372395515441895, - 0.5532025098800659, - 0.5631580948829651, - 0.568108081817627, - 0.5701509714126587, - 0.5708990693092346, - 0.5711510181427002, - 0.5712105631828308, - 0.5711510181427002, - 0.5708990693092346, - 0.5701509714126587, - 0.568108081817627, - 0.5631580948829651, - 0.5532025098800659, - 0.5372395515441895, - 0.6560790538787842, - 0.678107500076294, - 0.6941340565681458, - 0.7039476633071899, - 0.7090672850608826, - 0.7114394903182983, - 0.7124236822128296, - 0.7126887440681458, - 0.7124236822128296, - 0.7114394903182983, - 0.7090672850608826, - 0.7039476633071899, - 0.6941340565681458, - 0.678107500076294, - 0.6560790538787842, - 0.7641680240631104, - 0.791483461856842, - 0.8137290477752686, - 0.8298038840293884, - 0.8400243520736694, - 0.8457786440849304, - 0.8485725522041321, - 0.8493948578834534, - 0.8485725522041321, - 0.8457786440849304, - 0.8400243520736694, - 0.8298038840293884, - 0.8137290477752686, - 0.791483461856842, - 0.7641680240631104, - 0.8605648279190063, - 0.8915293216705322, - 0.9185106754302979, - 0.9401693344116211, - 0.9559429287910461, - 0.9661878347396851, - 0.971787691116333, - 0.9735500812530518, - 0.971787691116333, - 0.9661878347396851, - 0.9559429287910461, - 0.9401693344116211, - 0.9185106754302979, - 0.8915293216705322, - 0.8605648279190063 - ], - "xaxis": "x5", - "y": [ - -0.8605648279190063, - -0.7641680240631104, - -0.6560790538787842, - -0.5372395515441895, - -0.4096897840499878, - -0.27605363726615906, - -0.13882677257061005, - -4.352108007310562e-8, - 0.13882677257061005, - 0.27605363726615906, - 0.4096897840499878, - 0.5372395515441895, - 0.6560790538787842, - 0.7641680240631104, - 0.8605648279190063, - -0.8915293216705322, - -0.791483461856842, - -0.678107500076294, - -0.5532025098800659, - -0.42001214623451233, - -0.2819261848926544, - -0.14142872393131256, - -4.429939437500252e-8, - 0.14142872393131256, - 0.2819261848926544, - 0.42001214623451233, - 0.5532025098800659, - 0.678107500076294, - 0.791483461856842, - 0.8915293216705322, - -0.9185106754302979, - -0.8137290477752686, - -0.6941340565681458, - -0.5631580948829651, - -0.42544031143188477, - -0.28457579016685486, - -0.14248469471931458, - -4.460353864033095e-8, - 0.14248469471931458, - 0.28457579016685486, - 0.42544031143188477, - 0.5631580948829651, - 0.6941340565681458, - 0.8137290477752686, - 0.9185106754302979, - -0.9401693344116211, - -0.8298038840293884, - -0.7039476633071899, - -0.568108081817627, - -0.427613228559494, - -0.2854495346546173, - -0.14278772473335266, - -4.4686430555884726e-8, - 0.14278772473335266, - 0.2854495346546173, - 0.427613228559494, - 0.568108081817627, - 0.7039476633071899, - 0.8298038840293884, - 0.9401693344116211, - -0.9559429287910461, - -0.8400243520736694, - -0.7090672850608826, - -0.5701509714126587, - -0.4283100962638855, - -0.28566670417785645, - -0.14284875988960266, - -4.4701774726263466e-8, - 0.14284875988960266, - 0.28566670417785645, - 0.4283100962638855, - 0.5701509714126587, - 0.7090672850608826, - 0.8400243520736694, - 0.9559429287910461, - -0.9661878347396851, - -0.8457786440849304, - -0.7114394903182983, - -0.5708990693092346, - -0.42850005626678467, - -0.28570741415023804, - -0.14285658299922943, - -4.470341607998307e-8, - 0.14285658299922943, - 0.28570741415023804, - 0.42850005626678467, - 0.5708990693092346, - 0.7114394903182983, - 0.8457786440849304, - 0.9661878347396851, - -0.971787691116333, - -0.8485725522041321, - -0.7124236822128296, - -0.5711510181427002, - -0.42854636907577515, - -0.28571322560310364, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.28571322560310364, - 0.42854636907577515, - 0.5711510181427002, - 0.7124236822128296, - 0.8485725522041321, - 0.971787691116333, - -0.9735500812530518, - -0.8493948578834534, - -0.7126887440681458, - -0.5712105631828308, - -0.4285550117492676, - -0.2857138216495514, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857138216495514, - 0.4285550117492676, - 0.5712105631828308, - 0.7126887440681458, - 0.8493948578834534, - 0.9735500812530518, - -0.971787691116333, - -0.8485725522041321, - -0.7124236822128296, - -0.5711510181427002, - -0.42854636907577515, - -0.28571322560310364, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.28571322560310364, - 0.42854636907577515, - 0.5711510181427002, - 0.7124236822128296, - 0.8485725522041321, - 0.971787691116333, - -0.9661878347396851, - -0.8457786440849304, - -0.7114394903182983, - -0.5708990693092346, - -0.42850005626678467, - -0.28570741415023804, - -0.14285658299922943, - -4.470341607998307e-8, - 0.14285658299922943, - 0.28570741415023804, - 0.42850005626678467, - 0.5708990693092346, - 0.7114394903182983, - 0.8457786440849304, - 0.9661878347396851, - -0.9559429287910461, - -0.8400243520736694, - -0.7090672850608826, - -0.5701509714126587, - -0.4283100962638855, - -0.28566670417785645, - -0.14284875988960266, - -4.4701774726263466e-8, - 0.14284875988960266, - 0.28566670417785645, - 0.4283100962638855, - 0.5701509714126587, - 0.7090672850608826, - 0.8400243520736694, - 0.9559429287910461, - -0.9401693344116211, - -0.8298038840293884, - -0.7039476633071899, - -0.568108081817627, - -0.427613228559494, - -0.2854495346546173, - -0.14278772473335266, - -4.4686430555884726e-8, - 0.14278772473335266, - 0.2854495346546173, - 0.427613228559494, - 0.568108081817627, - 0.7039476633071899, - 0.8298038840293884, - 0.9401693344116211, - -0.9185106754302979, - -0.8137290477752686, - -0.6941340565681458, - -0.5631580948829651, - -0.42544031143188477, - -0.28457579016685486, - -0.14248469471931458, - -4.460353864033095e-8, - 0.14248469471931458, - 0.28457579016685486, - 0.42544031143188477, - 0.5631580948829651, - 0.6941340565681458, - 0.8137290477752686, - 0.9185106754302979, - -0.8915293216705322, - -0.791483461856842, - -0.678107500076294, - -0.5532025098800659, - -0.42001214623451233, - -0.2819261848926544, - -0.14142872393131256, - -4.429939437500252e-8, - 0.14142872393131256, - 0.2819261848926544, - 0.42001214623451233, - 0.5532025098800659, - 0.678107500076294, - 0.791483461856842, - 0.8915293216705322, - -0.8605648279190063, - -0.7641680240631104, - -0.6560790538787842, - -0.5372395515441895, - -0.4096897840499878, - -0.27605363726615906, - -0.13882677257061005, - -4.352108007310562e-8, - 0.13882677257061005, - 0.27605363726615906, - 0.4096897840499878, - 0.5372395515441895, - 0.6560790538787842, - 0.7641680240631104, - 0.8605648279190063 - ], - "yaxis": "y5" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8561331629753113, - -0.8874730467796326, - -0.914948582649231, - -0.937166690826416, - -0.9534754753112793, - -0.9641437530517578, - -0.9700060486793518, - -0.9718559980392456, - -0.9700060486793518, - -0.9641437530517578, - -0.9534754753112793, - -0.937166690826416, - -0.914948582649231, - -0.8874730467796326, - -0.8561331629753113, - -0.7606911659240723, - -0.7885258197784424, - -0.811409056186676, - -0.8281265497207642, - -0.8388680815696716, - -0.8449655771255493, - -0.8479413986206055, - -0.8488194346427917, - -0.8479413986206055, - -0.8449655771255493, - -0.8388680815696716, - -0.8281265497207642, - -0.811409056186676, - -0.7885258197784424, - -0.7606911659240723, - -0.6535347104072571, - -0.6761742234230042, - -0.6928614377975464, - -0.7032158970832825, - -0.7086734175682068, - -0.7112179398536682, - -0.7122769355773926, - -0.7125623822212219, - -0.7122769355773926, - -0.7112179398536682, - -0.7086734175682068, - -0.7032158970832825, - -0.6928614377975464, - -0.6761742234230042, - -0.6535347104072571, - -0.5355237722396851, - -0.5520843267440796, - -0.5625726580619812, - -0.5678539872169495, - -0.5700498819351196, - -0.5708565711975098, - -0.5711286664009094, - -0.5711929798126221, - -0.5711286664009094, - -0.5708565711975098, - -0.5700498819351196, - -0.5678539872169495, - -0.5625726580619812, - -0.5520843267440796, - -0.5355237722396851, - -0.4086323082447052, - -0.4194340109825134, - -0.4252040386199951, - -0.42753738164901733, - -0.42828911542892456, - -0.42849427461624146, - -0.42854437232017517, - -0.42855367064476013, - -0.42854437232017517, - -0.42849427461624146, - -0.42828911542892456, - -0.42753738164901733, - -0.4252040386199951, - -0.4194340109825134, - -0.4086323082447052, - -0.2754696309566498, - -0.2816551625728607, - -0.28448712825775146, - -0.2854282855987549, - -0.28566285967826843, - -0.28570687770843506, - -0.2857131361961365, - -0.285713791847229, - -0.2857131361961365, - -0.28570687770843506, - -0.28566285967826843, - -0.2854282855987549, - -0.28448712825775146, - -0.2816551625728607, - -0.2754696309566498, - -0.13857224583625793, - -0.1413235366344452, - -0.1424553394317627, - -0.14278213679790497, - -0.14284808933734894, - -0.14285653829574585, - -0.14285708963871002, - -0.14285710453987122, - -0.14285708963871002, - -0.14285653829574585, - -0.14284808933734894, - -0.14278213679790497, - -0.1424553394317627, - -0.1413235366344452, - -0.13857224583625793, - -4.344534687561463e-8, - -4.4269381049844014e-8, - -4.4595626746968264e-8, - -4.468505920840471e-8, - -4.470163617042999e-8, - -4.4703408974555714e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.4703408974555714e-8, - -4.470163617042999e-8, - -4.468505920840471e-8, - -4.4595626746968264e-8, - -4.4269381049844014e-8, - -4.344534687561463e-8, - 0.13857224583625793, - 0.1413235366344452, - 0.1424553394317627, - 0.14278213679790497, - 0.14284808933734894, - 0.14285653829574585, - 0.14285708963871002, - 0.14285710453987122, - 0.14285708963871002, - 0.14285653829574585, - 0.14284808933734894, - 0.14278213679790497, - 0.1424553394317627, - 0.1413235366344452, - 0.13857224583625793, - 0.2754696309566498, - 0.2816551625728607, - 0.28448712825775146, - 0.2854282855987549, - 0.28566285967826843, - 0.28570687770843506, - 0.2857131361961365, - 0.285713791847229, - 0.2857131361961365, - 0.28570687770843506, - 0.28566285967826843, - 0.2854282855987549, - 0.28448712825775146, - 0.2816551625728607, - 0.2754696309566498, - 0.4086323082447052, - 0.4194340109825134, - 0.4252040386199951, - 0.42753738164901733, - 0.42828911542892456, - 0.42849427461624146, - 0.42854437232017517, - 0.42855367064476013, - 0.42854437232017517, - 0.42849427461624146, - 0.42828911542892456, - 0.42753738164901733, - 0.4252040386199951, - 0.4194340109825134, - 0.4086323082447052, - 0.5355237722396851, - 0.5520843267440796, - 0.5625726580619812, - 0.5678539872169495, - 0.5700498819351196, - 0.5708565711975098, - 0.5711286664009094, - 0.5711929798126221, - 0.5711286664009094, - 0.5708565711975098, - 0.5700498819351196, - 0.5678539872169495, - 0.5625726580619812, - 0.5520843267440796, - 0.5355237722396851, - 0.6535347104072571, - 0.6761742234230042, - 0.6928614377975464, - 0.7032158970832825, - 0.7086734175682068, - 0.7112179398536682, - 0.7122769355773926, - 0.7125623822212219, - 0.7122769355773926, - 0.7112179398536682, - 0.7086734175682068, - 0.7032158970832825, - 0.6928614377975464, - 0.6761742234230042, - 0.6535347104072571, - 0.7606911659240723, - 0.7885258197784424, - 0.811409056186676, - 0.8281265497207642, - 0.8388680815696716, - 0.8449655771255493, - 0.8479413986206055, - 0.8488194346427917, - 0.8479413986206055, - 0.8449655771255493, - 0.8388680815696716, - 0.8281265497207642, - 0.811409056186676, - 0.7885258197784424, - 0.7606911659240723, - 0.8561331629753113, - 0.8874730467796326, - 0.914948582649231, - 0.937166690826416, - 0.9534754753112793, - 0.9641437530517578, - 0.9700060486793518, - 0.9718559980392456, - 0.9700060486793518, - 0.9641437530517578, - 0.9534754753112793, - 0.937166690826416, - 0.914948582649231, - 0.8874730467796326, - 0.8561331629753113 - ], - "xaxis": "x5", - "y": [ - -0.8561331629753113, - -0.7606911659240723, - -0.6535347104072571, - -0.5355237722396851, - -0.4086323082447052, - -0.2754696309566498, - -0.13857224583625793, - -4.344534687561463e-8, - 0.13857224583625793, - 0.2754696309566498, - 0.4086323082447052, - 0.5355237722396851, - 0.6535347104072571, - 0.7606911659240723, - 0.8561331629753113, - -0.8874730467796326, - -0.7885258197784424, - -0.6761742234230042, - -0.5520843267440796, - -0.4194340109825134, - -0.2816551625728607, - -0.1413235366344452, - -4.4269381049844014e-8, - 0.1413235366344452, - 0.2816551625728607, - 0.4194340109825134, - 0.5520843267440796, - 0.6761742234230042, - 0.7885258197784424, - 0.8874730467796326, - -0.914948582649231, - -0.811409056186676, - -0.6928614377975464, - -0.5625726580619812, - -0.4252040386199951, - -0.28448712825775146, - -0.1424553394317627, - -4.4595626746968264e-8, - 0.1424553394317627, - 0.28448712825775146, - 0.4252040386199951, - 0.5625726580619812, - 0.6928614377975464, - 0.811409056186676, - 0.914948582649231, - -0.937166690826416, - -0.8281265497207642, - -0.7032158970832825, - -0.5678539872169495, - -0.42753738164901733, - -0.2854282855987549, - -0.14278213679790497, - -4.468505920840471e-8, - 0.14278213679790497, - 0.2854282855987549, - 0.42753738164901733, - 0.5678539872169495, - 0.7032158970832825, - 0.8281265497207642, - 0.937166690826416, - -0.9534754753112793, - -0.8388680815696716, - -0.7086734175682068, - -0.5700498819351196, - -0.42828911542892456, - -0.28566285967826843, - -0.14284808933734894, - -4.470163617042999e-8, - 0.14284808933734894, - 0.28566285967826843, - 0.42828911542892456, - 0.5700498819351196, - 0.7086734175682068, - 0.8388680815696716, - 0.9534754753112793, - -0.9641437530517578, - -0.8449655771255493, - -0.7112179398536682, - -0.5708565711975098, - -0.42849427461624146, - -0.28570687770843506, - -0.14285653829574585, - -4.4703408974555714e-8, - 0.14285653829574585, - 0.28570687770843506, - 0.42849427461624146, - 0.5708565711975098, - 0.7112179398536682, - 0.8449655771255493, - 0.9641437530517578, - -0.9700060486793518, - -0.8479413986206055, - -0.7122769355773926, - -0.5711286664009094, - -0.42854437232017517, - -0.2857131361961365, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.2857131361961365, - 0.42854437232017517, - 0.5711286664009094, - 0.7122769355773926, - 0.8479413986206055, - 0.9700060486793518, - -0.9718559980392456, - -0.8488194346427917, - -0.7125623822212219, - -0.5711929798126221, - -0.42855367064476013, - -0.285713791847229, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.285713791847229, - 0.42855367064476013, - 0.5711929798126221, - 0.7125623822212219, - 0.8488194346427917, - 0.9718559980392456, - -0.9700060486793518, - -0.8479413986206055, - -0.7122769355773926, - -0.5711286664009094, - -0.42854437232017517, - -0.2857131361961365, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.2857131361961365, - 0.42854437232017517, - 0.5711286664009094, - 0.7122769355773926, - 0.8479413986206055, - 0.9700060486793518, - -0.9641437530517578, - -0.8449655771255493, - -0.7112179398536682, - -0.5708565711975098, - -0.42849427461624146, - -0.28570687770843506, - -0.14285653829574585, - -4.4703408974555714e-8, - 0.14285653829574585, - 0.28570687770843506, - 0.42849427461624146, - 0.5708565711975098, - 0.7112179398536682, - 0.8449655771255493, - 0.9641437530517578, - -0.9534754753112793, - -0.8388680815696716, - -0.7086734175682068, - -0.5700498819351196, - -0.42828911542892456, - -0.28566285967826843, - -0.14284808933734894, - -4.470163617042999e-8, - 0.14284808933734894, - 0.28566285967826843, - 0.42828911542892456, - 0.5700498819351196, - 0.7086734175682068, - 0.8388680815696716, - 0.9534754753112793, - -0.937166690826416, - -0.8281265497207642, - -0.7032158970832825, - -0.5678539872169495, - -0.42753738164901733, - -0.2854282855987549, - -0.14278213679790497, - -4.468505920840471e-8, - 0.14278213679790497, - 0.2854282855987549, - 0.42753738164901733, - 0.5678539872169495, - 0.7032158970832825, - 0.8281265497207642, - 0.937166690826416, - -0.914948582649231, - -0.811409056186676, - -0.6928614377975464, - -0.5625726580619812, - -0.4252040386199951, - -0.28448712825775146, - -0.1424553394317627, - -4.4595626746968264e-8, - 0.1424553394317627, - 0.28448712825775146, - 0.4252040386199951, - 0.5625726580619812, - 0.6928614377975464, - 0.811409056186676, - 0.914948582649231, - -0.8874730467796326, - -0.7885258197784424, - -0.6761742234230042, - -0.5520843267440796, - -0.4194340109825134, - -0.2816551625728607, - -0.1413235366344452, - -4.4269381049844014e-8, - 0.1413235366344452, - 0.2816551625728607, - 0.4194340109825134, - 0.5520843267440796, - 0.6761742234230042, - 0.7885258197784424, - 0.8874730467796326, - -0.8561331629753113, - -0.7606911659240723, - -0.6535347104072571, - -0.5355237722396851, - -0.4086323082447052, - -0.2754696309566498, - -0.13857224583625793, - -4.344534687561463e-8, - 0.13857224583625793, - 0.2754696309566498, - 0.4086323082447052, - 0.5355237722396851, - 0.6535347104072571, - 0.7606911659240723, - 0.8561331629753113 - ], - "yaxis": "y5" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8519846796989441, - -0.88365638256073, - -0.9115750193595886, - -0.9343017339706421, - -0.9511035084724426, - -0.9621668457984924, - -0.9682760238647461, - -0.9702088832855225, - -0.9682760238647461, - -0.9621668457984924, - -0.9511035084724426, - -0.9343017339706421, - -0.9115750193595886, - -0.88365638256073, - -0.8519846796989441, - -0.757419764995575, - -0.7857206463813782, - -0.8091863989830017, - -0.8265021443367004, - -0.8377378582954407, - -0.8441657423973083, - -0.8473182320594788, - -0.8482505083084106, - -0.8473182320594788, - -0.8441657423973083, - -0.8377378582954407, - -0.8265021443367004, - -0.8091863989830017, - -0.7857206463813782, - -0.757419764995575, - -0.6511250734329224, - -0.6743220090866089, - -0.6916256546974182, - -0.7024968266487122, - -0.7082834243774414, - -0.7109976410865784, - -0.7121306657791138, - -0.7124363780021667, - -0.7121306657791138, - -0.7109976410865784, - -0.7082834243774414, - -0.7024968266487122, - -0.6916256546974182, - -0.6743220090866089, - -0.6511250734329224, - -0.5338866710662842, - -0.5510013699531555, - -0.5619974136352539, - -0.5676019191741943, - -0.5699490904808044, - -0.5708141922950745, - -0.5711063742637634, - -0.5711754560470581, - -0.5711063742637634, - -0.5708141922950745, - -0.5699490904808044, - -0.5676019191741943, - -0.5619974136352539, - -0.5510013699531555, - -0.5338866710662842, - -0.4076157510280609, - -0.41886889934539795, - -0.42497000098228455, - -0.42746180295944214, - -0.42826810479164124, - -0.42848849296569824, - -0.4285423457622528, - -0.4285523593425751, - -0.4285423457622528, - -0.42848849296569824, - -0.42826810479164124, - -0.42746180295944214, - -0.42497000098228455, - -0.41886889934539795, - -0.4076157510280609, - -0.2749047875404358, - -0.2813885509967804, - -0.28439903259277344, - -0.28540709614753723, - -0.2856590151786804, - -0.2857063412666321, - -0.2857130467891693, - -0.2857137620449066, - -0.2857130467891693, - -0.2857063412666321, - -0.2856590151786804, - -0.28540709614753723, - -0.28439903259277344, - -0.2813885509967804, - -0.2749047875404358, - -0.13832511007785797, - -0.14121966063976288, - -0.14242608845233917, - -0.14277656376361847, - -0.14284741878509521, - -0.14285649359226227, - -0.14285708963871002, - -0.14285710453987122, - -0.14285708963871002, - -0.14285649359226227, - -0.14284741878509521, - -0.14277656376361847, - -0.14242608845233917, - -0.14121966063976288, - -0.13832511007785797, - -4.337171333190781e-8, - -4.423971233791235e-8, - -4.4587743275315006e-8, - -4.4683684308211014e-8, - -4.470149761459652e-8, - -4.4703405421842035e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.4703405421842035e-8, - -4.470149761459652e-8, - -4.4683684308211014e-8, - -4.4587743275315006e-8, - -4.423971233791235e-8, - -4.337171333190781e-8, - 0.13832511007785797, - 0.14121966063976288, - 0.14242608845233917, - 0.14277656376361847, - 0.14284741878509521, - 0.14285649359226227, - 0.14285708963871002, - 0.14285710453987122, - 0.14285708963871002, - 0.14285649359226227, - 0.14284741878509521, - 0.14277656376361847, - 0.14242608845233917, - 0.14121966063976288, - 0.13832511007785797, - 0.2749047875404358, - 0.2813885509967804, - 0.28439903259277344, - 0.28540709614753723, - 0.2856590151786804, - 0.2857063412666321, - 0.2857130467891693, - 0.2857137620449066, - 0.2857130467891693, - 0.2857063412666321, - 0.2856590151786804, - 0.28540709614753723, - 0.28439903259277344, - 0.2813885509967804, - 0.2749047875404358, - 0.4076157510280609, - 0.41886889934539795, - 0.42497000098228455, - 0.42746180295944214, - 0.42826810479164124, - 0.42848849296569824, - 0.4285423457622528, - 0.4285523593425751, - 0.4285423457622528, - 0.42848849296569824, - 0.42826810479164124, - 0.42746180295944214, - 0.42497000098228455, - 0.41886889934539795, - 0.4076157510280609, - 0.5338866710662842, - 0.5510013699531555, - 0.5619974136352539, - 0.5676019191741943, - 0.5699490904808044, - 0.5708141922950745, - 0.5711063742637634, - 0.5711754560470581, - 0.5711063742637634, - 0.5708141922950745, - 0.5699490904808044, - 0.5676019191741943, - 0.5619974136352539, - 0.5510013699531555, - 0.5338866710662842, - 0.6511250734329224, - 0.6743220090866089, - 0.6916256546974182, - 0.7024968266487122, - 0.7082834243774414, - 0.7109976410865784, - 0.7121306657791138, - 0.7124363780021667, - 0.7121306657791138, - 0.7109976410865784, - 0.7082834243774414, - 0.7024968266487122, - 0.6916256546974182, - 0.6743220090866089, - 0.6511250734329224, - 0.757419764995575, - 0.7857206463813782, - 0.8091863989830017, - 0.8265021443367004, - 0.8377378582954407, - 0.8441657423973083, - 0.8473182320594788, - 0.8482505083084106, - 0.8473182320594788, - 0.8441657423973083, - 0.8377378582954407, - 0.8265021443367004, - 0.8091863989830017, - 0.7857206463813782, - 0.757419764995575, - 0.8519846796989441, - 0.88365638256073, - 0.9115750193595886, - 0.9343017339706421, - 0.9511035084724426, - 0.9621668457984924, - 0.9682760238647461, - 0.9702088832855225, - 0.9682760238647461, - 0.9621668457984924, - 0.9511035084724426, - 0.9343017339706421, - 0.9115750193595886, - 0.88365638256073, - 0.8519846796989441 - ], - "xaxis": "x5", - "y": [ - -0.8519846796989441, - -0.757419764995575, - -0.6511250734329224, - -0.5338866710662842, - -0.4076157510280609, - -0.2749047875404358, - -0.13832511007785797, - -4.337171333190781e-8, - 0.13832511007785797, - 0.2749047875404358, - 0.4076157510280609, - 0.5338866710662842, - 0.6511250734329224, - 0.757419764995575, - 0.8519846796989441, - -0.88365638256073, - -0.7857206463813782, - -0.6743220090866089, - -0.5510013699531555, - -0.41886889934539795, - -0.2813885509967804, - -0.14121966063976288, - -4.423971233791235e-8, - 0.14121966063976288, - 0.2813885509967804, - 0.41886889934539795, - 0.5510013699531555, - 0.6743220090866089, - 0.7857206463813782, - 0.88365638256073, - -0.9115750193595886, - -0.8091863989830017, - -0.6916256546974182, - -0.5619974136352539, - -0.42497000098228455, - -0.28439903259277344, - -0.14242608845233917, - -4.4587743275315006e-8, - 0.14242608845233917, - 0.28439903259277344, - 0.42497000098228455, - 0.5619974136352539, - 0.6916256546974182, - 0.8091863989830017, - 0.9115750193595886, - -0.9343017339706421, - -0.8265021443367004, - -0.7024968266487122, - -0.5676019191741943, - -0.42746180295944214, - -0.28540709614753723, - -0.14277656376361847, - -4.4683684308211014e-8, - 0.14277656376361847, - 0.28540709614753723, - 0.42746180295944214, - 0.5676019191741943, - 0.7024968266487122, - 0.8265021443367004, - 0.9343017339706421, - -0.9511035084724426, - -0.8377378582954407, - -0.7082834243774414, - -0.5699490904808044, - -0.42826810479164124, - -0.2856590151786804, - -0.14284741878509521, - -4.470149761459652e-8, - 0.14284741878509521, - 0.2856590151786804, - 0.42826810479164124, - 0.5699490904808044, - 0.7082834243774414, - 0.8377378582954407, - 0.9511035084724426, - -0.9621668457984924, - -0.8441657423973083, - -0.7109976410865784, - -0.5708141922950745, - -0.42848849296569824, - -0.2857063412666321, - -0.14285649359226227, - -4.4703405421842035e-8, - 0.14285649359226227, - 0.2857063412666321, - 0.42848849296569824, - 0.5708141922950745, - 0.7109976410865784, - 0.8441657423973083, - 0.9621668457984924, - -0.9682760238647461, - -0.8473182320594788, - -0.7121306657791138, - -0.5711063742637634, - -0.4285423457622528, - -0.2857130467891693, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.2857130467891693, - 0.4285423457622528, - 0.5711063742637634, - 0.7121306657791138, - 0.8473182320594788, - 0.9682760238647461, - -0.9702088832855225, - -0.8482505083084106, - -0.7124363780021667, - -0.5711754560470581, - -0.4285523593425751, - -0.2857137620449066, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857137620449066, - 0.4285523593425751, - 0.5711754560470581, - 0.7124363780021667, - 0.8482505083084106, - 0.9702088832855225, - -0.9682760238647461, - -0.8473182320594788, - -0.7121306657791138, - -0.5711063742637634, - -0.4285423457622528, - -0.2857130467891693, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.2857130467891693, - 0.4285423457622528, - 0.5711063742637634, - 0.7121306657791138, - 0.8473182320594788, - 0.9682760238647461, - -0.9621668457984924, - -0.8441657423973083, - -0.7109976410865784, - -0.5708141922950745, - -0.42848849296569824, - -0.2857063412666321, - -0.14285649359226227, - -4.4703405421842035e-8, - 0.14285649359226227, - 0.2857063412666321, - 0.42848849296569824, - 0.5708141922950745, - 0.7109976410865784, - 0.8441657423973083, - 0.9621668457984924, - -0.9511035084724426, - -0.8377378582954407, - -0.7082834243774414, - -0.5699490904808044, - -0.42826810479164124, - -0.2856590151786804, - -0.14284741878509521, - -4.470149761459652e-8, - 0.14284741878509521, - 0.2856590151786804, - 0.42826810479164124, - 0.5699490904808044, - 0.7082834243774414, - 0.8377378582954407, - 0.9511035084724426, - -0.9343017339706421, - -0.8265021443367004, - -0.7024968266487122, - -0.5676019191741943, - -0.42746180295944214, - -0.28540709614753723, - -0.14277656376361847, - -4.4683684308211014e-8, - 0.14277656376361847, - 0.28540709614753723, - 0.42746180295944214, - 0.5676019191741943, - 0.7024968266487122, - 0.8265021443367004, - 0.9343017339706421, - -0.9115750193595886, - -0.8091863989830017, - -0.6916256546974182, - -0.5619974136352539, - -0.42497000098228455, - -0.28439903259277344, - -0.14242608845233917, - -4.4587743275315006e-8, - 0.14242608845233917, - 0.28439903259277344, - 0.42497000098228455, - 0.5619974136352539, - 0.6916256546974182, - 0.8091863989830017, - 0.9115750193595886, - -0.88365638256073, - -0.7857206463813782, - -0.6743220090866089, - -0.5510013699531555, - -0.41886889934539795, - -0.2813885509967804, - -0.14121966063976288, - -4.423971233791235e-8, - 0.14121966063976288, - 0.2813885509967804, - 0.41886889934539795, - 0.5510013699531555, - 0.6743220090866089, - 0.7857206463813782, - 0.88365638256073, - -0.8519846796989441, - -0.757419764995575, - -0.6511250734329224, - -0.5338866710662842, - -0.4076157510280609, - -0.2749047875404358, - -0.13832511007785797, - -4.337171333190781e-8, - 0.13832511007785797, - 0.2749047875404358, - 0.4076157510280609, - 0.5338866710662842, - 0.6511250734329224, - 0.757419764995575, - 0.8519846796989441 - ], - "yaxis": "y5" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8480855226516724, - -0.8800525069236755, - -0.908370852470398, - -0.9315619468688965, - -0.9488196969032288, - -0.9602524638175964, - -0.9665945172309875, - -0.9686059355735779, - -0.9665945172309875, - -0.9602524638175964, - -0.9488196969032288, - -0.9315619468688965, - -0.908370852470398, - -0.8800525069236755, - -0.8480855226516724, - -0.7543307542800903, - -0.7830526232719421, - -0.8070529103279114, - -0.8249272108078003, - -0.8366323709487915, - -0.8433785438537598, - -0.8467028737068176, - -0.8476881980895996, - -0.8467028737068176, - -0.8433785438537598, - -0.8366323709487915, - -0.8249272108078003, - -0.8070529103279114, - -0.7830526232719421, - -0.7543307542800903, - -0.6488363146781921, - -0.6725441217422485, - -0.6904246807098389, - -0.7017899751663208, - -0.7078970670700073, - -0.710778534412384, - -0.7119848728179932, - -0.712310791015625, - -0.7119848728179932, - -0.710778534412384, - -0.7078970670700073, - -0.7017899751663208, - -0.6904246807098389, - -0.6725441217422485, - -0.6488363146781921, - -0.5323210954666138, - -0.549951434135437, - -0.5614319443702698, - -0.567351758480072, - -0.5698485970497131, - -0.5707718729972839, - -0.5710840821266174, - -0.5711579322814941, - -0.5710840821266174, - -0.5707718729972839, - -0.5698485970497131, - -0.567351758480072, - -0.5614319443702698, - -0.549951434135437, - -0.5323210954666138, - -0.4066369831562042, - -0.41831615567207336, - -0.42473819851875305, - -0.42738643288612366, - -0.4282471239566803, - -0.4284827411174774, - -0.42854034900665283, - -0.4285510182380676, - -0.42854034900665283, - -0.4284827411174774, - -0.4282471239566803, - -0.42738643288612366, - -0.42473819851875305, - -0.41831615567207336, - -0.4066369831562042, - -0.2743578255176544, - -0.2811261713504791, - -0.2843113839626312, - -0.28538593649864197, - -0.28565514087677, - -0.2857057750225067, - -0.28571298718452454, - -0.28571373224258423, - -0.28571298718452454, - -0.2857057750225067, - -0.28565514087677, - -0.28538593649864197, - -0.2843113839626312, - -0.2811261713504791, - -0.2743578255176544, - -0.13808488845825195, - -0.14111711084842682, - -0.1423969268798828, - -0.14277099072933197, - -0.1428467482328415, - -0.14285646378993988, - -0.14285708963871002, - -0.14285710453987122, - -0.14285708963871002, - -0.14285646378993988, - -0.1428467482328415, - -0.14277099072933197, - -0.1423969268798828, - -0.14111711084842682, - -0.13808488845825195, - -4.3300058649720086e-8, - -4.421038468649385e-8, - -4.457988111994382e-8, - -4.4682316513444675e-8, - -4.4701359058763046e-8, - -4.470339831641468e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470339831641468e-8, - -4.4701359058763046e-8, - -4.4682316513444675e-8, - -4.457988111994382e-8, - -4.421038468649385e-8, - -4.3300058649720086e-8, - 0.13808488845825195, - 0.14111711084842682, - 0.1423969268798828, - 0.14277099072933197, - 0.1428467482328415, - 0.14285646378993988, - 0.14285708963871002, - 0.14285710453987122, - 0.14285708963871002, - 0.14285646378993988, - 0.1428467482328415, - 0.14277099072933197, - 0.1423969268798828, - 0.14111711084842682, - 0.13808488845825195, - 0.2743578255176544, - 0.2811261713504791, - 0.2843113839626312, - 0.28538593649864197, - 0.28565514087677, - 0.2857057750225067, - 0.28571298718452454, - 0.28571373224258423, - 0.28571298718452454, - 0.2857057750225067, - 0.28565514087677, - 0.28538593649864197, - 0.2843113839626312, - 0.2811261713504791, - 0.2743578255176544, - 0.4066369831562042, - 0.41831615567207336, - 0.42473819851875305, - 0.42738643288612366, - 0.4282471239566803, - 0.4284827411174774, - 0.42854034900665283, - 0.4285510182380676, - 0.42854034900665283, - 0.4284827411174774, - 0.4282471239566803, - 0.42738643288612366, - 0.42473819851875305, - 0.41831615567207336, - 0.4066369831562042, - 0.5323210954666138, - 0.549951434135437, - 0.5614319443702698, - 0.567351758480072, - 0.5698485970497131, - 0.5707718729972839, - 0.5710840821266174, - 0.5711579322814941, - 0.5710840821266174, - 0.5707718729972839, - 0.5698485970497131, - 0.567351758480072, - 0.5614319443702698, - 0.549951434135437, - 0.5323210954666138, - 0.6488363146781921, - 0.6725441217422485, - 0.6904246807098389, - 0.7017899751663208, - 0.7078970670700073, - 0.710778534412384, - 0.7119848728179932, - 0.712310791015625, - 0.7119848728179932, - 0.710778534412384, - 0.7078970670700073, - 0.7017899751663208, - 0.6904246807098389, - 0.6725441217422485, - 0.6488363146781921, - 0.7543307542800903, - 0.7830526232719421, - 0.8070529103279114, - 0.8249272108078003, - 0.8366323709487915, - 0.8433785438537598, - 0.8467028737068176, - 0.8476881980895996, - 0.8467028737068176, - 0.8433785438537598, - 0.8366323709487915, - 0.8249272108078003, - 0.8070529103279114, - 0.7830526232719421, - 0.7543307542800903, - 0.8480855226516724, - 0.8800525069236755, - 0.908370852470398, - 0.9315619468688965, - 0.9488196969032288, - 0.9602524638175964, - 0.9665945172309875, - 0.9686059355735779, - 0.9665945172309875, - 0.9602524638175964, - 0.9488196969032288, - 0.9315619468688965, - 0.908370852470398, - 0.8800525069236755, - 0.8480855226516724 - ], - "xaxis": "x5", - "y": [ - -0.8480855226516724, - -0.7543307542800903, - -0.6488363146781921, - -0.5323210954666138, - -0.4066369831562042, - -0.2743578255176544, - -0.13808488845825195, - -4.3300058649720086e-8, - 0.13808488845825195, - 0.2743578255176544, - 0.4066369831562042, - 0.5323210954666138, - 0.6488363146781921, - 0.7543307542800903, - 0.8480855226516724, - -0.8800525069236755, - -0.7830526232719421, - -0.6725441217422485, - -0.549951434135437, - -0.41831615567207336, - -0.2811261713504791, - -0.14111711084842682, - -4.421038468649385e-8, - 0.14111711084842682, - 0.2811261713504791, - 0.41831615567207336, - 0.549951434135437, - 0.6725441217422485, - 0.7830526232719421, - 0.8800525069236755, - -0.908370852470398, - -0.8070529103279114, - -0.6904246807098389, - -0.5614319443702698, - -0.42473819851875305, - -0.2843113839626312, - -0.1423969268798828, - -4.457988111994382e-8, - 0.1423969268798828, - 0.2843113839626312, - 0.42473819851875305, - 0.5614319443702698, - 0.6904246807098389, - 0.8070529103279114, - 0.908370852470398, - -0.9315619468688965, - -0.8249272108078003, - -0.7017899751663208, - -0.567351758480072, - -0.42738643288612366, - -0.28538593649864197, - -0.14277099072933197, - -4.4682316513444675e-8, - 0.14277099072933197, - 0.28538593649864197, - 0.42738643288612366, - 0.567351758480072, - 0.7017899751663208, - 0.8249272108078003, - 0.9315619468688965, - -0.9488196969032288, - -0.8366323709487915, - -0.7078970670700073, - -0.5698485970497131, - -0.4282471239566803, - -0.28565514087677, - -0.1428467482328415, - -4.4701359058763046e-8, - 0.1428467482328415, - 0.28565514087677, - 0.4282471239566803, - 0.5698485970497131, - 0.7078970670700073, - 0.8366323709487915, - 0.9488196969032288, - -0.9602524638175964, - -0.8433785438537598, - -0.710778534412384, - -0.5707718729972839, - -0.4284827411174774, - -0.2857057750225067, - -0.14285646378993988, - -4.470339831641468e-8, - 0.14285646378993988, - 0.2857057750225067, - 0.4284827411174774, - 0.5707718729972839, - 0.710778534412384, - 0.8433785438537598, - 0.9602524638175964, - -0.9665945172309875, - -0.8467028737068176, - -0.7119848728179932, - -0.5710840821266174, - -0.42854034900665283, - -0.28571298718452454, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.28571298718452454, - 0.42854034900665283, - 0.5710840821266174, - 0.7119848728179932, - 0.8467028737068176, - 0.9665945172309875, - -0.9686059355735779, - -0.8476881980895996, - -0.712310791015625, - -0.5711579322814941, - -0.4285510182380676, - -0.28571373224258423, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.28571373224258423, - 0.4285510182380676, - 0.5711579322814941, - 0.712310791015625, - 0.8476881980895996, - 0.9686059355735779, - -0.9665945172309875, - -0.8467028737068176, - -0.7119848728179932, - -0.5710840821266174, - -0.42854034900665283, - -0.28571298718452454, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.28571298718452454, - 0.42854034900665283, - 0.5710840821266174, - 0.7119848728179932, - 0.8467028737068176, - 0.9665945172309875, - -0.9602524638175964, - -0.8433785438537598, - -0.710778534412384, - -0.5707718729972839, - -0.4284827411174774, - -0.2857057750225067, - -0.14285646378993988, - -4.470339831641468e-8, - 0.14285646378993988, - 0.2857057750225067, - 0.4284827411174774, - 0.5707718729972839, - 0.710778534412384, - 0.8433785438537598, - 0.9602524638175964, - -0.9488196969032288, - -0.8366323709487915, - -0.7078970670700073, - -0.5698485970497131, - -0.4282471239566803, - -0.28565514087677, - -0.1428467482328415, - -4.4701359058763046e-8, - 0.1428467482328415, - 0.28565514087677, - 0.4282471239566803, - 0.5698485970497131, - 0.7078970670700073, - 0.8366323709487915, - 0.9488196969032288, - -0.9315619468688965, - -0.8249272108078003, - -0.7017899751663208, - -0.567351758480072, - -0.42738643288612366, - -0.28538593649864197, - -0.14277099072933197, - -4.4682316513444675e-8, - 0.14277099072933197, - 0.28538593649864197, - 0.42738643288612366, - 0.567351758480072, - 0.7017899751663208, - 0.8249272108078003, - 0.9315619468688965, - -0.908370852470398, - -0.8070529103279114, - -0.6904246807098389, - -0.5614319443702698, - -0.42473819851875305, - -0.2843113839626312, - -0.1423969268798828, - -4.457988111994382e-8, - 0.1423969268798828, - 0.2843113839626312, - 0.42473819851875305, - 0.5614319443702698, - 0.6904246807098389, - 0.8070529103279114, - 0.908370852470398, - -0.8800525069236755, - -0.7830526232719421, - -0.6725441217422485, - -0.549951434135437, - -0.41831615567207336, - -0.2811261713504791, - -0.14111711084842682, - -4.421038468649385e-8, - 0.14111711084842682, - 0.2811261713504791, - 0.41831615567207336, - 0.549951434135437, - 0.6725441217422485, - 0.7830526232719421, - 0.8800525069236755, - -0.8480855226516724, - -0.7543307542800903, - -0.6488363146781921, - -0.5323210954666138, - -0.4066369831562042, - -0.2743578255176544, - -0.13808488845825195, - -4.3300058649720086e-8, - 0.13808488845825195, - 0.2743578255176544, - 0.4066369831562042, - 0.5323210954666138, - 0.6488363146781921, - 0.7543307542800903, - 0.8480855226516724 - ], - "yaxis": "y5" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8444072008132935, - -0.8766387104988098, - -0.9053193926811218, - -0.9289366602897644, - -0.9466174244880676, - -0.9583966135978699, - -0.964958906173706, - -0.9670449495315552, - -0.964958906173706, - -0.9583966135978699, - -0.9466174244880676, - -0.9289366602897644, - -0.9053193926811218, - -0.8766387104988098, - -0.8444072008132935, - -0.7514045834541321, - -0.7805087566375732, - -0.8050015568733215, - -0.8233988285064697, - -0.8355507254600525, - -0.8426035642623901, - -0.8460952043533325, - -0.8471322059631348, - -0.8460952043533325, - -0.8426035642623901, - -0.8355507254600525, - -0.8233988285064697, - -0.8050015568733215, - -0.7805087566375732, - -0.7514045834541321, - -0.6466567516326904, - -0.6708346605300903, - -0.6892563700675964, - -0.7010950446128845, - -0.7075144052505493, - -0.7105605602264404, - -0.7118396162986755, - -0.7121856808662415, - -0.7118396162986755, - -0.7105605602264404, - -0.7075144052505493, - -0.7010950446128845, - -0.6892563700675964, - -0.6708346605300903, - -0.6466567516326904, - -0.530820906162262, - -0.5489324927330017, - -0.5608759522438049, - -0.5671035647392273, - -0.5697484612464905, - -0.570729672908783, - -0.5710617899894714, - -0.5711404085159302, - -0.5710617899894714, - -0.570729672908783, - -0.5697484612464905, - -0.5671035647392273, - -0.5608759522438049, - -0.5489324927330017, - -0.530820906162262, - -0.4056931436061859, - -0.41777533292770386, - -0.42450860142707825, - -0.42731136083602905, - -0.42822620272636414, - -0.428477019071579, - -0.4285382926464081, - -0.4285496771335602, - -0.4285382926464081, - -0.428477019071579, - -0.42822620272636414, - -0.42731136083602905, - -0.42450860142707825, - -0.41777533292770386, - -0.4056931436061859, - -0.27382758259773254, - -0.2808678448200226, - -0.2842242121696472, - -0.2853648364543915, - -0.2856513261795044, - -0.28570523858070374, - -0.285712867975235, - -0.28571370244026184, - -0.285712867975235, - -0.28570523858070374, - -0.2856513261795044, - -0.2853648364543915, - -0.2842242121696472, - -0.2808678448200226, - -0.27382758259773254, - -0.13785123825073242, - -0.14101582765579224, - -0.142367884516716, - -0.14276541769504547, - -0.14284606277942657, - -0.1428564041852951, - -0.14285708963871002, - -0.14285710453987122, - -0.14285708963871002, - -0.1428564041852951, - -0.14284606277942657, - -0.14276541769504547, - -0.142367884516716, - -0.14101582765579224, - -0.13785123825073242, - -4.3230276247641086e-8, - -4.4181387437447484e-8, - -4.4572050938995744e-8, - -4.468094161325098e-8, - -4.470122050292957e-8, - -4.4703394763701e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.4703394763701e-8, - -4.470122050292957e-8, - -4.468094161325098e-8, - -4.4572050938995744e-8, - -4.4181387437447484e-8, - -4.3230276247641086e-8, - 0.13785123825073242, - 0.14101582765579224, - 0.142367884516716, - 0.14276541769504547, - 0.14284606277942657, - 0.1428564041852951, - 0.14285708963871002, - 0.14285710453987122, - 0.14285708963871002, - 0.1428564041852951, - 0.14284606277942657, - 0.14276541769504547, - 0.142367884516716, - 0.14101582765579224, - 0.13785123825073242, - 0.27382758259773254, - 0.2808678448200226, - 0.2842242121696472, - 0.2853648364543915, - 0.2856513261795044, - 0.28570523858070374, - 0.285712867975235, - 0.28571370244026184, - 0.285712867975235, - 0.28570523858070374, - 0.2856513261795044, - 0.2853648364543915, - 0.2842242121696472, - 0.2808678448200226, - 0.27382758259773254, - 0.4056931436061859, - 0.41777533292770386, - 0.42450860142707825, - 0.42731136083602905, - 0.42822620272636414, - 0.428477019071579, - 0.4285382926464081, - 0.4285496771335602, - 0.4285382926464081, - 0.428477019071579, - 0.42822620272636414, - 0.42731136083602905, - 0.42450860142707825, - 0.41777533292770386, - 0.4056931436061859, - 0.530820906162262, - 0.5489324927330017, - 0.5608759522438049, - 0.5671035647392273, - 0.5697484612464905, - 0.570729672908783, - 0.5710617899894714, - 0.5711404085159302, - 0.5710617899894714, - 0.570729672908783, - 0.5697484612464905, - 0.5671035647392273, - 0.5608759522438049, - 0.5489324927330017, - 0.530820906162262, - 0.6466567516326904, - 0.6708346605300903, - 0.6892563700675964, - 0.7010950446128845, - 0.7075144052505493, - 0.7105605602264404, - 0.7118396162986755, - 0.7121856808662415, - 0.7118396162986755, - 0.7105605602264404, - 0.7075144052505493, - 0.7010950446128845, - 0.6892563700675964, - 0.6708346605300903, - 0.6466567516326904, - 0.7514045834541321, - 0.7805087566375732, - 0.8050015568733215, - 0.8233988285064697, - 0.8355507254600525, - 0.8426035642623901, - 0.8460952043533325, - 0.8471322059631348, - 0.8460952043533325, - 0.8426035642623901, - 0.8355507254600525, - 0.8233988285064697, - 0.8050015568733215, - 0.7805087566375732, - 0.7514045834541321, - 0.8444072008132935, - 0.8766387104988098, - 0.9053193926811218, - 0.9289366602897644, - 0.9466174244880676, - 0.9583966135978699, - 0.964958906173706, - 0.9670449495315552, - 0.964958906173706, - 0.9583966135978699, - 0.9466174244880676, - 0.9289366602897644, - 0.9053193926811218, - 0.8766387104988098, - 0.8444072008132935 - ], - "xaxis": "x5", - "y": [ - -0.8444072008132935, - -0.7514045834541321, - -0.6466567516326904, - -0.530820906162262, - -0.4056931436061859, - -0.27382758259773254, - -0.13785123825073242, - -4.3230276247641086e-8, - 0.13785123825073242, - 0.27382758259773254, - 0.4056931436061859, - 0.530820906162262, - 0.6466567516326904, - 0.7514045834541321, - 0.8444072008132935, - -0.8766387104988098, - -0.7805087566375732, - -0.6708346605300903, - -0.5489324927330017, - -0.41777533292770386, - -0.2808678448200226, - -0.14101582765579224, - -4.4181387437447484e-8, - 0.14101582765579224, - 0.2808678448200226, - 0.41777533292770386, - 0.5489324927330017, - 0.6708346605300903, - 0.7805087566375732, - 0.8766387104988098, - -0.9053193926811218, - -0.8050015568733215, - -0.6892563700675964, - -0.5608759522438049, - -0.42450860142707825, - -0.2842242121696472, - -0.142367884516716, - -4.4572050938995744e-8, - 0.142367884516716, - 0.2842242121696472, - 0.42450860142707825, - 0.5608759522438049, - 0.6892563700675964, - 0.8050015568733215, - 0.9053193926811218, - -0.9289366602897644, - -0.8233988285064697, - -0.7010950446128845, - -0.5671035647392273, - -0.42731136083602905, - -0.2853648364543915, - -0.14276541769504547, - -4.468094161325098e-8, - 0.14276541769504547, - 0.2853648364543915, - 0.42731136083602905, - 0.5671035647392273, - 0.7010950446128845, - 0.8233988285064697, - 0.9289366602897644, - -0.9466174244880676, - -0.8355507254600525, - -0.7075144052505493, - -0.5697484612464905, - -0.42822620272636414, - -0.2856513261795044, - -0.14284606277942657, - -4.470122050292957e-8, - 0.14284606277942657, - 0.2856513261795044, - 0.42822620272636414, - 0.5697484612464905, - 0.7075144052505493, - 0.8355507254600525, - 0.9466174244880676, - -0.9583966135978699, - -0.8426035642623901, - -0.7105605602264404, - -0.570729672908783, - -0.428477019071579, - -0.28570523858070374, - -0.1428564041852951, - -4.4703394763701e-8, - 0.1428564041852951, - 0.28570523858070374, - 0.428477019071579, - 0.570729672908783, - 0.7105605602264404, - 0.8426035642623901, - 0.9583966135978699, - -0.964958906173706, - -0.8460952043533325, - -0.7118396162986755, - -0.5710617899894714, - -0.4285382926464081, - -0.285712867975235, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.285712867975235, - 0.4285382926464081, - 0.5710617899894714, - 0.7118396162986755, - 0.8460952043533325, - 0.964958906173706, - -0.9670449495315552, - -0.8471322059631348, - -0.7121856808662415, - -0.5711404085159302, - -0.4285496771335602, - -0.28571370244026184, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.28571370244026184, - 0.4285496771335602, - 0.5711404085159302, - 0.7121856808662415, - 0.8471322059631348, - 0.9670449495315552, - -0.964958906173706, - -0.8460952043533325, - -0.7118396162986755, - -0.5710617899894714, - -0.4285382926464081, - -0.285712867975235, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.285712867975235, - 0.4285382926464081, - 0.5710617899894714, - 0.7118396162986755, - 0.8460952043533325, - 0.964958906173706, - -0.9583966135978699, - -0.8426035642623901, - -0.7105605602264404, - -0.570729672908783, - -0.428477019071579, - -0.28570523858070374, - -0.1428564041852951, - -4.4703394763701e-8, - 0.1428564041852951, - 0.28570523858070374, - 0.428477019071579, - 0.570729672908783, - 0.7105605602264404, - 0.8426035642623901, - 0.9583966135978699, - -0.9466174244880676, - -0.8355507254600525, - -0.7075144052505493, - -0.5697484612464905, - -0.42822620272636414, - -0.2856513261795044, - -0.14284606277942657, - -4.470122050292957e-8, - 0.14284606277942657, - 0.2856513261795044, - 0.42822620272636414, - 0.5697484612464905, - 0.7075144052505493, - 0.8355507254600525, - 0.9466174244880676, - -0.9289366602897644, - -0.8233988285064697, - -0.7010950446128845, - -0.5671035647392273, - -0.42731136083602905, - -0.2853648364543915, - -0.14276541769504547, - -4.468094161325098e-8, - 0.14276541769504547, - 0.2853648364543915, - 0.42731136083602905, - 0.5671035647392273, - 0.7010950446128845, - 0.8233988285064697, - 0.9289366602897644, - -0.9053193926811218, - -0.8050015568733215, - -0.6892563700675964, - -0.5608759522438049, - -0.42450860142707825, - -0.2842242121696472, - -0.142367884516716, - -4.4572050938995744e-8, - 0.142367884516716, - 0.2842242121696472, - 0.42450860142707825, - 0.5608759522438049, - 0.6892563700675964, - 0.8050015568733215, - 0.9053193926811218, - -0.8766387104988098, - -0.7805087566375732, - -0.6708346605300903, - -0.5489324927330017, - -0.41777533292770386, - -0.2808678448200226, - -0.14101582765579224, - -4.4181387437447484e-8, - 0.14101582765579224, - 0.2808678448200226, - 0.41777533292770386, - 0.5489324927330017, - 0.6708346605300903, - 0.7805087566375732, - 0.8766387104988098, - -0.8444072008132935, - -0.7514045834541321, - -0.6466567516326904, - -0.530820906162262, - -0.4056931436061859, - -0.27382758259773254, - -0.13785123825073242, - -4.3230276247641086e-8, - 0.13785123825073242, - 0.27382758259773254, - 0.4056931436061859, - 0.530820906162262, - 0.6466567516326904, - 0.7514045834541321, - 0.8444072008132935 - ], - "yaxis": "y5" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8409262895584106, - -0.8733957409858704, - -0.9024066925048828, - -0.926416277885437, - -0.9444908499717712, - -0.956595778465271, - -0.9633666276931763, - -0.9655234217643738, - -0.9633666276931763, - -0.956595778465271, - -0.9444908499717712, - -0.926416277885437, - -0.9024066925048828, - -0.8733957409858704, - -0.8409262895584106, - -0.7486249804496765, - -0.7780778408050537, - -0.803026020526886, - -0.82191401720047, - -0.834491491317749, - -0.8418406248092651, - -0.8454948663711548, - -0.8465824723243713, - -0.8454948663711548, - -0.8418406248092651, - -0.834491491317749, - -0.82191401720047, - -0.803026020526886, - -0.7780778408050537, - -0.7486249804496765, - -0.6445761919021606, - -0.669188380241394, - -0.6881189942359924, - -0.7004114389419556, - -0.7071352601051331, - -0.7103438377380371, - -0.7116949558258057, - -0.712060809135437, - -0.7116949558258057, - -0.7103438377380371, - -0.7071352601051331, - -0.7004114389419556, - -0.6881189942359924, - -0.669188380241394, - -0.6445761919021606, - -0.5293806791305542, - -0.5479426383972168, - -0.5603290796279907, - -0.5668572187423706, - -0.5696486234664917, - -0.5706874132156372, - -0.5710394978523254, - -0.5711228847503662, - -0.5710394978523254, - -0.5706874132156372, - -0.5696486234664917, - -0.5668572187423706, - -0.5603290796279907, - -0.5479426383972168, - -0.5293806791305542, - -0.4047817885875702, - -0.4172457158565521, - -0.4242810904979706, - -0.4272364675998688, - -0.4282052516937256, - -0.42847123742103577, - -0.4285362660884857, - -0.4285483658313751, - -0.4285362660884857, - -0.42847123742103577, - -0.4282052516937256, - -0.4272364675998688, - -0.4242810904979706, - -0.4172457158565521, - -0.4047817885875702, - -0.273313045501709, - -0.280613511800766, - -0.284137487411499, - -0.2853437066078186, - -0.2856474816799164, - -0.28570467233657837, - -0.2857128083705902, - -0.28571364283561707, - -0.2857128083705902, - -0.28570467233657837, - -0.2856474816799164, - -0.2853437066078186, - -0.284137487411499, - -0.280613511800766, - -0.273313045501709, - -0.13762375712394714, - -0.14091576635837555, - -0.14233894646167755, - -0.14275984466075897, - -0.14284539222717285, - -0.14285637438297272, - -0.14285708963871002, - -0.14285710453987122, - -0.14285708963871002, - -0.14285637438297272, - -0.14284539222717285, - -0.14275984466075897, - -0.14233894646167755, - -0.14091576635837555, - -0.13762375712394714, - -4.316226309697413e-8, - -4.4152713485345885e-8, - -4.456423852161606e-8, - -4.467957381848464e-8, - -4.47010819470961e-8, - -4.470338765827364e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470338765827364e-8, - -4.47010819470961e-8, - -4.467957381848464e-8, - -4.456423852161606e-8, - -4.4152713485345885e-8, - -4.316226309697413e-8, - 0.13762375712394714, - 0.14091576635837555, - 0.14233894646167755, - 0.14275984466075897, - 0.14284539222717285, - 0.14285637438297272, - 0.14285708963871002, - 0.14285710453987122, - 0.14285708963871002, - 0.14285637438297272, - 0.14284539222717285, - 0.14275984466075897, - 0.14233894646167755, - 0.14091576635837555, - 0.13762375712394714, - 0.273313045501709, - 0.280613511800766, - 0.284137487411499, - 0.2853437066078186, - 0.2856474816799164, - 0.28570467233657837, - 0.2857128083705902, - 0.28571364283561707, - 0.2857128083705902, - 0.28570467233657837, - 0.2856474816799164, - 0.2853437066078186, - 0.284137487411499, - 0.280613511800766, - 0.273313045501709, - 0.4047817885875702, - 0.4172457158565521, - 0.4242810904979706, - 0.4272364675998688, - 0.4282052516937256, - 0.42847123742103577, - 0.4285362660884857, - 0.4285483658313751, - 0.4285362660884857, - 0.42847123742103577, - 0.4282052516937256, - 0.4272364675998688, - 0.4242810904979706, - 0.4172457158565521, - 0.4047817885875702, - 0.5293806791305542, - 0.5479426383972168, - 0.5603290796279907, - 0.5668572187423706, - 0.5696486234664917, - 0.5706874132156372, - 0.5710394978523254, - 0.5711228847503662, - 0.5710394978523254, - 0.5706874132156372, - 0.5696486234664917, - 0.5668572187423706, - 0.5603290796279907, - 0.5479426383972168, - 0.5293806791305542, - 0.6445761919021606, - 0.669188380241394, - 0.6881189942359924, - 0.7004114389419556, - 0.7071352601051331, - 0.7103438377380371, - 0.7116949558258057, - 0.712060809135437, - 0.7116949558258057, - 0.7103438377380371, - 0.7071352601051331, - 0.7004114389419556, - 0.6881189942359924, - 0.669188380241394, - 0.6445761919021606, - 0.7486249804496765, - 0.7780778408050537, - 0.803026020526886, - 0.82191401720047, - 0.834491491317749, - 0.8418406248092651, - 0.8454948663711548, - 0.8465824723243713, - 0.8454948663711548, - 0.8418406248092651, - 0.834491491317749, - 0.82191401720047, - 0.803026020526886, - 0.7780778408050537, - 0.7486249804496765, - 0.8409262895584106, - 0.8733957409858704, - 0.9024066925048828, - 0.926416277885437, - 0.9444908499717712, - 0.956595778465271, - 0.9633666276931763, - 0.9655234217643738, - 0.9633666276931763, - 0.956595778465271, - 0.9444908499717712, - 0.926416277885437, - 0.9024066925048828, - 0.8733957409858704, - 0.8409262895584106 - ], - "xaxis": "x5", - "y": [ - -0.8409262895584106, - -0.7486249804496765, - -0.6445761919021606, - -0.5293806791305542, - -0.4047817885875702, - -0.273313045501709, - -0.13762375712394714, - -4.316226309697413e-8, - 0.13762375712394714, - 0.273313045501709, - 0.4047817885875702, - 0.5293806791305542, - 0.6445761919021606, - 0.7486249804496765, - 0.8409262895584106, - -0.8733957409858704, - -0.7780778408050537, - -0.669188380241394, - -0.5479426383972168, - -0.4172457158565521, - -0.280613511800766, - -0.14091576635837555, - -4.4152713485345885e-8, - 0.14091576635837555, - 0.280613511800766, - 0.4172457158565521, - 0.5479426383972168, - 0.669188380241394, - 0.7780778408050537, - 0.8733957409858704, - -0.9024066925048828, - -0.803026020526886, - -0.6881189942359924, - -0.5603290796279907, - -0.4242810904979706, - -0.284137487411499, - -0.14233894646167755, - -4.456423852161606e-8, - 0.14233894646167755, - 0.284137487411499, - 0.4242810904979706, - 0.5603290796279907, - 0.6881189942359924, - 0.803026020526886, - 0.9024066925048828, - -0.926416277885437, - -0.82191401720047, - -0.7004114389419556, - -0.5668572187423706, - -0.4272364675998688, - -0.2853437066078186, - -0.14275984466075897, - -4.467957381848464e-8, - 0.14275984466075897, - 0.2853437066078186, - 0.4272364675998688, - 0.5668572187423706, - 0.7004114389419556, - 0.82191401720047, - 0.926416277885437, - -0.9444908499717712, - -0.834491491317749, - -0.7071352601051331, - -0.5696486234664917, - -0.4282052516937256, - -0.2856474816799164, - -0.14284539222717285, - -4.47010819470961e-8, - 0.14284539222717285, - 0.2856474816799164, - 0.4282052516937256, - 0.5696486234664917, - 0.7071352601051331, - 0.834491491317749, - 0.9444908499717712, - -0.956595778465271, - -0.8418406248092651, - -0.7103438377380371, - -0.5706874132156372, - -0.42847123742103577, - -0.28570467233657837, - -0.14285637438297272, - -4.470338765827364e-8, - 0.14285637438297272, - 0.28570467233657837, - 0.42847123742103577, - 0.5706874132156372, - 0.7103438377380371, - 0.8418406248092651, - 0.956595778465271, - -0.9633666276931763, - -0.8454948663711548, - -0.7116949558258057, - -0.5710394978523254, - -0.4285362660884857, - -0.2857128083705902, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.2857128083705902, - 0.4285362660884857, - 0.5710394978523254, - 0.7116949558258057, - 0.8454948663711548, - 0.9633666276931763, - -0.9655234217643738, - -0.8465824723243713, - -0.712060809135437, - -0.5711228847503662, - -0.4285483658313751, - -0.28571364283561707, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.28571364283561707, - 0.4285483658313751, - 0.5711228847503662, - 0.712060809135437, - 0.8465824723243713, - 0.9655234217643738, - -0.9633666276931763, - -0.8454948663711548, - -0.7116949558258057, - -0.5710394978523254, - -0.4285362660884857, - -0.2857128083705902, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.2857128083705902, - 0.4285362660884857, - 0.5710394978523254, - 0.7116949558258057, - 0.8454948663711548, - 0.9633666276931763, - -0.956595778465271, - -0.8418406248092651, - -0.7103438377380371, - -0.5706874132156372, - -0.42847123742103577, - -0.28570467233657837, - -0.14285637438297272, - -4.470338765827364e-8, - 0.14285637438297272, - 0.28570467233657837, - 0.42847123742103577, - 0.5706874132156372, - 0.7103438377380371, - 0.8418406248092651, - 0.956595778465271, - -0.9444908499717712, - -0.834491491317749, - -0.7071352601051331, - -0.5696486234664917, - -0.4282052516937256, - -0.2856474816799164, - -0.14284539222717285, - -4.47010819470961e-8, - 0.14284539222717285, - 0.2856474816799164, - 0.4282052516937256, - 0.5696486234664917, - 0.7071352601051331, - 0.834491491317749, - 0.9444908499717712, - -0.926416277885437, - -0.82191401720047, - -0.7004114389419556, - -0.5668572187423706, - -0.4272364675998688, - -0.2853437066078186, - -0.14275984466075897, - -4.467957381848464e-8, - 0.14275984466075897, - 0.2853437066078186, - 0.4272364675998688, - 0.5668572187423706, - 0.7004114389419556, - 0.82191401720047, - 0.926416277885437, - -0.9024066925048828, - -0.803026020526886, - -0.6881189942359924, - -0.5603290796279907, - -0.4242810904979706, - -0.284137487411499, - -0.14233894646167755, - -4.456423852161606e-8, - 0.14233894646167755, - 0.284137487411499, - 0.4242810904979706, - 0.5603290796279907, - 0.6881189942359924, - 0.803026020526886, - 0.9024066925048828, - -0.8733957409858704, - -0.7780778408050537, - -0.669188380241394, - -0.5479426383972168, - -0.4172457158565521, - -0.280613511800766, - -0.14091576635837555, - -4.4152713485345885e-8, - 0.14091576635837555, - 0.280613511800766, - 0.4172457158565521, - 0.5479426383972168, - 0.669188380241394, - 0.7780778408050537, - 0.8733957409858704, - -0.8409262895584106, - -0.7486249804496765, - -0.6445761919021606, - -0.5293806791305542, - -0.4047817885875702, - -0.273313045501709, - -0.13762375712394714, - -4.316226309697413e-8, - 0.13762375712394714, - 0.273313045501709, - 0.4047817885875702, - 0.5293806791305542, - 0.6445761919021606, - 0.7486249804496765, - 0.8409262895584106 - ], - "yaxis": "y5" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8376225829124451, - -0.8703073859214783, - -0.8996202945709229, - -0.9239926338195801, - -0.9424348473548889, - -0.9548465013504028, - -0.9618152379989624, - -0.9640396237373352, - -0.9618152379989624, - -0.9548465013504028, - -0.9424348473548889, - -0.9239926338195801, - -0.8996202945709229, - -0.8703073859214783, - -0.8376225829124451, - -0.7459777593612671, - -0.7757500410079956, - -0.8011206388473511, - -0.8204704523086548, - -0.8334539532661438, - -0.8410890102386475, - -0.8449017405509949, - -0.8460387587547302, - -0.8449017405509949, - -0.8410890102386475, - -0.8334539532661438, - -0.8204704523086548, - -0.8011206388473511, - -0.7757500410079956, - -0.7459777593612671, - -0.6425859332084656, - -0.6676005125045776, - -0.6870108842849731, - -0.6997388601303101, - -0.7067596316337585, - -0.7101281881332397, - -0.711550772190094, - -0.711936354637146, - -0.711550772190094, - -0.7101281881332397, - -0.7067596316337585, - -0.6997388601303101, - -0.6870108842849731, - -0.6676005125045776, - -0.6425859332084656, - -0.5279957056045532, - -0.5469802618026733, - -0.5597910284996033, - -0.566612720489502, - -0.5695491433143616, - -0.570645272731781, - -0.5710172653198242, - -0.5711053609848022, - -0.5710172653198242, - -0.570645272731781, - -0.5695491433143616, - -0.566612720489502, - -0.5597910284996033, - -0.5469802618026733, - -0.5279957056045532, - -0.4039006233215332, - -0.4167269468307495, - -0.4240557551383972, - -0.42716184258461, - -0.4281843304634094, - -0.42846545577049255, - -0.42853426933288574, - -0.4285470247268677, - -0.42853426933288574, - -0.42846545577049255, - -0.4281843304634094, - -0.42716184258461, - -0.4240557551383972, - -0.4167269468307495, - -0.4039006233215332, - -0.27281326055526733, - -0.280362993478775, - -0.2840512692928314, - -0.2853226363658905, - -0.28564363718032837, - -0.285704106092453, - -0.28571274876594543, - -0.2857136130332947, - -0.28571274876594543, - -0.285704106092453, - -0.28564363718032837, - -0.2853226363658905, - -0.2840512692928314, - -0.280362993478775, - -0.27281326055526733, - -0.13740213215351105, - -0.14081691205501556, - -0.14231011271476746, - -0.14275428652763367, - -0.14284472167491913, - -0.14285634458065033, - -0.14285708963871002, - -0.14285710453987122, - -0.14285708963871002, - -0.14285634458065033, - -0.14284472167491913, - -0.14275428652763367, - -0.14231011271476746, - -0.14081691205501556, - -0.13740213215351105, - -4.3095930379877245e-8, - -4.412435927747538e-8, - -4.455645097323213e-8, - -4.4678202471004624e-8, - -4.4700943391262626e-8, - -4.470338410555996e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470338410555996e-8, - -4.4700943391262626e-8, - -4.4678202471004624e-8, - -4.455645097323213e-8, - -4.412435927747538e-8, - -4.3095930379877245e-8, - 0.13740213215351105, - 0.14081691205501556, - 0.14231011271476746, - 0.14275428652763367, - 0.14284472167491913, - 0.14285634458065033, - 0.14285708963871002, - 0.14285710453987122, - 0.14285708963871002, - 0.14285634458065033, - 0.14284472167491913, - 0.14275428652763367, - 0.14231011271476746, - 0.14081691205501556, - 0.13740213215351105, - 0.27281326055526733, - 0.280362993478775, - 0.2840512692928314, - 0.2853226363658905, - 0.28564363718032837, - 0.285704106092453, - 0.28571274876594543, - 0.2857136130332947, - 0.28571274876594543, - 0.285704106092453, - 0.28564363718032837, - 0.2853226363658905, - 0.2840512692928314, - 0.280362993478775, - 0.27281326055526733, - 0.4039006233215332, - 0.4167269468307495, - 0.4240557551383972, - 0.42716184258461, - 0.4281843304634094, - 0.42846545577049255, - 0.42853426933288574, - 0.4285470247268677, - 0.42853426933288574, - 0.42846545577049255, - 0.4281843304634094, - 0.42716184258461, - 0.4240557551383972, - 0.4167269468307495, - 0.4039006233215332, - 0.5279957056045532, - 0.5469802618026733, - 0.5597910284996033, - 0.566612720489502, - 0.5695491433143616, - 0.570645272731781, - 0.5710172653198242, - 0.5711053609848022, - 0.5710172653198242, - 0.570645272731781, - 0.5695491433143616, - 0.566612720489502, - 0.5597910284996033, - 0.5469802618026733, - 0.5279957056045532, - 0.6425859332084656, - 0.6676005125045776, - 0.6870108842849731, - 0.6997388601303101, - 0.7067596316337585, - 0.7101281881332397, - 0.711550772190094, - 0.711936354637146, - 0.711550772190094, - 0.7101281881332397, - 0.7067596316337585, - 0.6997388601303101, - 0.6870108842849731, - 0.6676005125045776, - 0.6425859332084656, - 0.7459777593612671, - 0.7757500410079956, - 0.8011206388473511, - 0.8204704523086548, - 0.8334539532661438, - 0.8410890102386475, - 0.8449017405509949, - 0.8460387587547302, - 0.8449017405509949, - 0.8410890102386475, - 0.8334539532661438, - 0.8204704523086548, - 0.8011206388473511, - 0.7757500410079956, - 0.7459777593612671, - 0.8376225829124451, - 0.8703073859214783, - 0.8996202945709229, - 0.9239926338195801, - 0.9424348473548889, - 0.9548465013504028, - 0.9618152379989624, - 0.9640396237373352, - 0.9618152379989624, - 0.9548465013504028, - 0.9424348473548889, - 0.9239926338195801, - 0.8996202945709229, - 0.8703073859214783, - 0.8376225829124451 - ], - "xaxis": "x5", - "y": [ - -0.8376225829124451, - -0.7459777593612671, - -0.6425859332084656, - -0.5279957056045532, - -0.4039006233215332, - -0.27281326055526733, - -0.13740213215351105, - -4.3095930379877245e-8, - 0.13740213215351105, - 0.27281326055526733, - 0.4039006233215332, - 0.5279957056045532, - 0.6425859332084656, - 0.7459777593612671, - 0.8376225829124451, - -0.8703073859214783, - -0.7757500410079956, - -0.6676005125045776, - -0.5469802618026733, - -0.4167269468307495, - -0.280362993478775, - -0.14081691205501556, - -4.412435927747538e-8, - 0.14081691205501556, - 0.280362993478775, - 0.4167269468307495, - 0.5469802618026733, - 0.6676005125045776, - 0.7757500410079956, - 0.8703073859214783, - -0.8996202945709229, - -0.8011206388473511, - -0.6870108842849731, - -0.5597910284996033, - -0.4240557551383972, - -0.2840512692928314, - -0.14231011271476746, - -4.455645097323213e-8, - 0.14231011271476746, - 0.2840512692928314, - 0.4240557551383972, - 0.5597910284996033, - 0.6870108842849731, - 0.8011206388473511, - 0.8996202945709229, - -0.9239926338195801, - -0.8204704523086548, - -0.6997388601303101, - -0.566612720489502, - -0.42716184258461, - -0.2853226363658905, - -0.14275428652763367, - -4.4678202471004624e-8, - 0.14275428652763367, - 0.2853226363658905, - 0.42716184258461, - 0.566612720489502, - 0.6997388601303101, - 0.8204704523086548, - 0.9239926338195801, - -0.9424348473548889, - -0.8334539532661438, - -0.7067596316337585, - -0.5695491433143616, - -0.4281843304634094, - -0.28564363718032837, - -0.14284472167491913, - -4.4700943391262626e-8, - 0.14284472167491913, - 0.28564363718032837, - 0.4281843304634094, - 0.5695491433143616, - 0.7067596316337585, - 0.8334539532661438, - 0.9424348473548889, - -0.9548465013504028, - -0.8410890102386475, - -0.7101281881332397, - -0.570645272731781, - -0.42846545577049255, - -0.285704106092453, - -0.14285634458065033, - -4.470338410555996e-8, - 0.14285634458065033, - 0.285704106092453, - 0.42846545577049255, - 0.570645272731781, - 0.7101281881332397, - 0.8410890102386475, - 0.9548465013504028, - -0.9618152379989624, - -0.8449017405509949, - -0.711550772190094, - -0.5710172653198242, - -0.42853426933288574, - -0.28571274876594543, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.28571274876594543, - 0.42853426933288574, - 0.5710172653198242, - 0.711550772190094, - 0.8449017405509949, - 0.9618152379989624, - -0.9640396237373352, - -0.8460387587547302, - -0.711936354637146, - -0.5711053609848022, - -0.4285470247268677, - -0.2857136130332947, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857136130332947, - 0.4285470247268677, - 0.5711053609848022, - 0.711936354637146, - 0.8460387587547302, - 0.9640396237373352, - -0.9618152379989624, - -0.8449017405509949, - -0.711550772190094, - -0.5710172653198242, - -0.42853426933288574, - -0.28571274876594543, - -0.14285708963871002, - -4.470348358154297e-8, - 0.14285708963871002, - 0.28571274876594543, - 0.42853426933288574, - 0.5710172653198242, - 0.711550772190094, - 0.8449017405509949, - 0.9618152379989624, - -0.9548465013504028, - -0.8410890102386475, - -0.7101281881332397, - -0.570645272731781, - -0.42846545577049255, - -0.285704106092453, - -0.14285634458065033, - -4.470338410555996e-8, - 0.14285634458065033, - 0.285704106092453, - 0.42846545577049255, - 0.570645272731781, - 0.7101281881332397, - 0.8410890102386475, - 0.9548465013504028, - -0.9424348473548889, - -0.8334539532661438, - -0.7067596316337585, - -0.5695491433143616, - -0.4281843304634094, - -0.28564363718032837, - -0.14284472167491913, - -4.4700943391262626e-8, - 0.14284472167491913, - 0.28564363718032837, - 0.4281843304634094, - 0.5695491433143616, - 0.7067596316337585, - 0.8334539532661438, - 0.9424348473548889, - -0.9239926338195801, - -0.8204704523086548, - -0.6997388601303101, - -0.566612720489502, - -0.42716184258461, - -0.2853226363658905, - -0.14275428652763367, - -4.4678202471004624e-8, - 0.14275428652763367, - 0.2853226363658905, - 0.42716184258461, - 0.566612720489502, - 0.6997388601303101, - 0.8204704523086548, - 0.9239926338195801, - -0.8996202945709229, - -0.8011206388473511, - -0.6870108842849731, - -0.5597910284996033, - -0.4240557551383972, - -0.2840512692928314, - -0.14231011271476746, - -4.455645097323213e-8, - 0.14231011271476746, - 0.2840512692928314, - 0.4240557551383972, - 0.5597910284996033, - 0.6870108842849731, - 0.8011206388473511, - 0.8996202945709229, - -0.8703073859214783, - -0.7757500410079956, - -0.6676005125045776, - -0.5469802618026733, - -0.4167269468307495, - -0.280362993478775, - -0.14081691205501556, - -4.412435927747538e-8, - 0.14081691205501556, - 0.280362993478775, - 0.4167269468307495, - 0.5469802618026733, - 0.6676005125045776, - 0.7757500410079956, - 0.8703073859214783, - -0.8376225829124451, - -0.7459777593612671, - -0.6425859332084656, - -0.5279957056045532, - -0.4039006233215332, - -0.27281326055526733, - -0.13740213215351105, - -4.3095930379877245e-8, - 0.13740213215351105, - 0.27281326055526733, - 0.4039006233215332, - 0.5279957056045532, - 0.6425859332084656, - 0.7459777593612671, - 0.8376225829124451 - ], - "yaxis": "y5" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9217167496681213, - -0.9316955208778381, - -0.9422006607055664, - -0.9532908201217651, - -0.9650352597236633, - -0.9775169491767883, - -0.9908361434936523, - -1.0051162242889404, - -1.0205111503601074, - -1.0372172594070435, - -1.0554907321929932, - -1.075676441192627, - -1.0982561111450195, - -1.1239358186721802, - -1.153823733329773, - -0.7893871665000916, - -0.7978918552398682, - -0.8068414926528931, - -0.8162851333618164, - -0.8262805938720703, - -0.8368970155715942, - -0.8482176661491394, - -0.8603448271751404, - -0.8734056353569031, - -0.8875615000724792, - -0.9030221104621887, - -0.9200677871704102, - -0.9390869140625, - -0.9606429934501648, - -0.9856066107749939, - -0.6573632955551147, - -0.6644167304039001, - -0.6718367338180542, - -0.6796631813049316, - -0.6879433989524841, - -0.6967334151268005, - -0.70610111951828, - -0.7161291241645813, - -0.7269202470779419, - -0.7386044263839722, - -0.7513497471809387, - -0.7653798460960388, - -0.781002402305603, - -0.7986600399017334, - -0.819028377532959, - -0.5255915522575378, - -0.5312124490737915, - -0.5371237993240356, - -0.5433570742607117, - -0.5499492883682251, - -0.5569446086883545, - -0.56439608335495, - -0.5723683834075928, - -0.5809416770935059, - -0.5902170538902283, - -0.6003248691558838, - -0.6114377975463867, - -0.6237921714782715, - -0.637725830078125, - -0.653749406337738, - -0.3940199613571167, - -0.39822301268577576, - -0.40264227986335754, - -0.4073010981082916, - -0.4122268557548523, - -0.4174521863460541, - -0.423016220331192, - -0.42896661162376404, - -0.4353623390197754, - -0.44227761030197144, - -0.4498078525066376, - -0.45807912945747375, - -0.4672633111476898, - -0.4776046574115753, - -0.4894700050354004, - -0.26259753108024597, - -0.26539358496665955, - -0.2683330178260803, - -0.2714312672615051, - -0.2747064232826233, - -0.27818000316619873, - -0.2818777561187744, - -0.285831093788147, - -0.2900787889957428, - -0.29466956853866577, - -0.29966598749160767, - -0.30515044927597046, - -0.31123510003089905, - -0.3180786669254303, - -0.3259183466434479, - -0.1312740594148636, - -0.1326702982187271, - -0.13413800299167633, - -0.13568486273288727, - -0.13731984794139862, - -0.13905364274978638, - -0.14089906215667725, - -0.14287169277668, - -0.1449907422065735, - -0.14728035032749176, - -0.14977149665355682, - -0.15250492095947266, - -0.15553593635559082, - -0.15894274413585663, - -0.162841796875, - -4.107629436589377e-8, - -4.151302590571504e-8, - -4.197210046186228e-8, - -4.2455909010641335e-8, - -4.2967265301285806e-8, - -4.350950177922641e-8, - -4.408662235277916e-8, - -4.470348358154297e-8, - -4.5366085998921335e-8, - -4.6081964910626994e-8, - -4.6860773039725245e-8, - -4.77152113376178e-8, - -4.866252112378788e-8, - -4.972704203964895e-8, - -5.094500110658373e-8, - 0.1312740594148636, - 0.1326702982187271, - 0.13413800299167633, - 0.13568486273288727, - 0.13731984794139862, - 0.13905364274978638, - 0.14089906215667725, - 0.14287169277668, - 0.1449907422065735, - 0.14728035032749176, - 0.14977149665355682, - 0.15250492095947266, - 0.15553593635559082, - 0.15894274413585663, - 0.162841796875, - 0.26259753108024597, - 0.26539358496665955, - 0.2683330178260803, - 0.2714312672615051, - 0.2747064232826233, - 0.27818000316619873, - 0.2818777561187744, - 0.285831093788147, - 0.2900787889957428, - 0.29466956853866577, - 0.29966598749160767, - 0.30515044927597046, - 0.31123510003089905, - 0.3180786669254303, - 0.3259183466434479, - 0.3940199613571167, - 0.39822301268577576, - 0.40264227986335754, - 0.4073010981082916, - 0.4122268557548523, - 0.4174521863460541, - 0.423016220331192, - 0.42896661162376404, - 0.4353623390197754, - 0.44227761030197144, - 0.4498078525066376, - 0.45807912945747375, - 0.4672633111476898, - 0.4776046574115753, - 0.4894700050354004, - 0.5255915522575378, - 0.5312124490737915, - 0.5371237993240356, - 0.5433570742607117, - 0.5499492883682251, - 0.5569446086883545, - 0.56439608335495, - 0.5723683834075928, - 0.5809416770935059, - 0.5902170538902283, - 0.6003248691558838, - 0.6114377975463867, - 0.6237921714782715, - 0.637725830078125, - 0.653749406337738, - 0.6573632955551147, - 0.6644167304039001, - 0.6718367338180542, - 0.6796631813049316, - 0.6879433989524841, - 0.6967334151268005, - 0.70610111951828, - 0.7161291241645813, - 0.7269202470779419, - 0.7386044263839722, - 0.7513497471809387, - 0.7653798460960388, - 0.781002402305603, - 0.7986600399017334, - 0.819028377532959, - 0.7893871665000916, - 0.7978918552398682, - 0.8068414926528931, - 0.8162851333618164, - 0.8262805938720703, - 0.8368970155715942, - 0.8482176661491394, - 0.8603448271751404, - 0.8734056353569031, - 0.8875615000724792, - 0.9030221104621887, - 0.9200677871704102, - 0.9390869140625, - 0.9606429934501648, - 0.9856066107749939, - 0.9217167496681213, - 0.9316955208778381, - 0.9422006607055664, - 0.9532908201217651, - 0.9650352597236633, - 0.9775169491767883, - 0.9908361434936523, - 1.0051162242889404, - 1.0205111503601074, - 1.0372172594070435, - 1.0554907321929932, - 1.075676441192627, - 1.0982561111450195, - 1.1239358186721802, - 1.153823733329773 - ], - "xaxis": "x3", - "y": [ - -0.8493202328681946, - -0.7331202626228333, - -0.6134504079818726, - -0.48997852206230164, - -0.362315833568573, - -0.23000214993953705, - -0.09248623251914978, - 0.05090153589844704, - 0.20098872482776642, - 0.35881778597831726, - 0.5257338285446167, - 0.7035245895385742, - 0.8946552872657776, - 1.1026947498321533, - 1.3331646919250488, - -0.8583330512046814, - -0.7425943613052368, - -0.6234353184700012, - -0.5005325675010681, - -0.37350815534591675, - -0.24191594123840332, - -0.1052226722240448, - 0.0372173897922039, - 0.18619951605796814, - 0.34272122383117676, - 0.5080630779266357, - 0.683915913105011, - 0.8725926280021667, - 1.0774047374725342, - 1.3033980131149292, - -0.8659208416938782, - -0.750567615032196, - -0.6318351626396179, - -0.509407103061676, - -0.38291457295417786, - -0.2519226372241974, - -0.1159127950668335, - 0.025741396471858025, - 0.1738092005252838, - 0.329252153635025, - 0.49329936504364014, - 0.6675654053688049, - 0.8542438745498657, - 1.0564481019973755, - 1.2788646221160889, - -0.8721030950546265, - -0.7570620775222778, - -0.638674795627594, - -0.5166305899620056, - -0.39056771993637085, - -0.26006022095680237, - -0.12460114061832428, - 0.016420681029558182, - 0.16375407576560974, - 0.31833240389823914, - 0.4813448190689087, - 0.6543468236923218, - 0.8394407033920288, - 1.039589524269104, - 1.2592114210128784, - -0.876895546913147, - -0.7620953917503357, - -0.643974244594574, - -0.5222258567810059, - -0.3964937627315521, - -0.266358882188797, - -0.13132309913635254, - 0.00921330600976944, - 0.15598376095294952, - 0.3099004924297333, - 0.4721227288246155, - 0.6441620588302612, - 0.82805335521698, - 1.0266495943069458, - 1.244174599647522, - -0.8803102374076843, - -0.7656810879707336, - -0.6477488279342651, - -0.5262101888656616, - -0.40071263909339905, - -0.2708417773246765, - -0.13610564172267914, - 0.004087432287633419, - 0.1504601240158081, - 0.30390995740890503, - 0.4655754566192627, - 0.6369378566741943, - 0.8199855089187622, - 1.0174964666366577, - 1.233562707901001, - -0.8823556303977966, - -0.767828643321991, - -0.650009274482727, - -0.5285959839820862, - -0.4032383859157562, - -0.27352508902549744, - -0.13896767795085907, - 0.0010207275627180934, - 0.1471564769744873, - 0.30032840371131897, - 0.4616628587245941, - 0.6326232552528381, - 0.8151708245277405, - 1.0120396614074707, - 1.2272456884384155, - -0.8830369114875793, - -0.7685438990592957, - -0.6507620215415955, - -0.5293903946876526, - -0.4040793776512146, - -0.274418443441391, - -0.1399204432964325, - -4.470348358154297e-8, - 0.14605699479579926, - 0.2991366684436798, - 0.4603612720966339, - 0.6311883330345154, - 0.8135702013969421, - 1.0102264881134033, - 1.2251482009887695, - -0.8823556303977966, - -0.767828643321991, - -0.650009274482727, - -0.5285959839820862, - -0.4032383859157562, - -0.27352508902549744, - -0.13896767795085907, - 0.0010207275627180934, - 0.1471564769744873, - 0.30032840371131897, - 0.4616628587245941, - 0.6326232552528381, - 0.8151708245277405, - 1.0120396614074707, - 1.2272456884384155, - -0.8803102374076843, - -0.7656810879707336, - -0.6477488279342651, - -0.5262101888656616, - -0.40071263909339905, - -0.2708417773246765, - -0.13610564172267914, - 0.004087432287633419, - 0.1504601240158081, - 0.30390995740890503, - 0.4655754566192627, - 0.6369378566741943, - 0.8199855089187622, - 1.0174964666366577, - 1.233562707901001, - -0.876895546913147, - -0.7620953917503357, - -0.643974244594574, - -0.5222258567810059, - -0.3964937627315521, - -0.266358882188797, - -0.13132309913635254, - 0.00921330600976944, - 0.15598376095294952, - 0.3099004924297333, - 0.4721227288246155, - 0.6441620588302612, - 0.82805335521698, - 1.0266495943069458, - 1.244174599647522, - -0.8721030950546265, - -0.7570620775222778, - -0.638674795627594, - -0.5166305899620056, - -0.39056771993637085, - -0.26006022095680237, - -0.12460114061832428, - 0.016420681029558182, - 0.16375407576560974, - 0.31833240389823914, - 0.4813448190689087, - 0.6543468236923218, - 0.8394407033920288, - 1.039589524269104, - 1.2592114210128784, - -0.8659208416938782, - -0.750567615032196, - -0.6318351626396179, - -0.509407103061676, - -0.38291457295417786, - -0.2519226372241974, - -0.1159127950668335, - 0.025741396471858025, - 0.1738092005252838, - 0.329252153635025, - 0.49329936504364014, - 0.6675654053688049, - 0.8542438745498657, - 1.0564481019973755, - 1.2788646221160889, - -0.8583330512046814, - -0.7425943613052368, - -0.6234353184700012, - -0.5005325675010681, - -0.37350815534591675, - -0.24191594123840332, - -0.1052226722240448, - 0.0372173897922039, - 0.18619951605796814, - 0.34272122383117676, - 0.5080630779266357, - 0.683915913105011, - 0.8725926280021667, - 1.0774047374725342, - 1.3033980131149292, - -0.8493202328681946, - -0.7331202626228333, - -0.6134504079818726, - -0.48997852206230164, - -0.362315833568573, - -0.23000214993953705, - -0.09248623251914978, - 0.05090153589844704, - 0.20098872482776642, - 0.35881778597831726, - 0.5257338285446167, - 0.7035245895385742, - 0.8946552872657776, - 1.1026947498321533, - 1.3331646919250488 - ], - "yaxis": "y3" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9287943243980408, - -0.9379534721374512, - -0.9475533366203308, - -0.9576383829116821, - -0.9682607650756836, - -0.9794813990592957, - -0.9913730025291443, - -1.0040225982666016, - -1.0175365209579468, - -1.0320459604263306, - -1.0477162599563599, - -1.0647602081298828, - -1.0834589004516602, - -1.104196548461914, - -1.1275204420089722, - -0.7955646514892578, - -0.8033785820007324, - -0.8115659356117249, - -0.820164144039154, - -0.8292168974876404, - -0.8387752771377563, - -0.8489000201225281, - -0.8596638441085815, - -0.8711550831794739, - -0.883482813835144, - -0.8967836499214172, - -0.9112330675125122, - -0.9270614385604858, - -0.9445816874504089, - -0.9642359018325806, - -0.6625885367393494, - -0.6690744757652283, - -0.6758686304092407, - -0.683001697063446, - -0.6905093193054199, - -0.6984333992004395, - -0.706823468208313, - -0.7157387137413025, - -0.7252510190010071, - -0.7354487776756287, - -0.7464426755905151, - -0.7583740949630737, - -0.7714279890060425, - -0.7858544588088989, - -0.8020040988922119, - -0.5298218727111816, - -0.5349939465522766, - -0.5404106974601746, - -0.5460963845252991, - -0.5520789623260498, - -0.5583915710449219, - -0.5650730729103088, - -0.5721700191497803, - -0.5797387361526489, - -0.5878485441207886, - -0.596585750579834, - -0.6060604453086853, - -0.6164164543151855, - -0.6278468370437622, - -0.640621542930603, - -0.39722171425819397, - -0.40109115839004517, - -0.40514296293258667, - -0.40939515829086304, - -0.4138685464859009, - -0.4185875356197357, - -0.4235810339450836, - -0.4288834035396576, - -0.43453627824783325, - -0.4405907392501831, - -0.4471103250980377, - -0.45417600870132446, - -0.46189308166503906, - -0.47040271759033203, - -0.4799012243747711, - -0.2647457420825958, - -0.26732081174850464, - -0.27001693844795227, - -0.2728460133075714, - -0.27582186460494995, - -0.27896058559417725, - -0.28228121995925903, - -0.2858065366744995, - -0.28956395387649536, - -0.2935870885848999, - -0.29791781306266785, - -0.30260926485061646, - -0.3077305257320404, - -0.31337401270866394, - -0.319667786359787, - -0.13235227763652802, - -0.1336384415626526, - -0.13498498499393463, - -0.1363978236913681, - -0.13788381218910217, - -0.13945099711418152, - -0.14110884070396423, - -0.14286862313747406, - -0.14474399387836456, - -0.14675164222717285, - -0.14891234040260315, - -0.15125241875648499, - -0.15380607545375824, - -0.15661902725696564, - -0.15975449979305267, - -4.141412190961091e-8, - -4.1816452522880354e-8, - -4.223765870392526e-8, - -4.2679591416572293e-8, - -4.314439649988344e-8, - -4.363458216971594e-8, - -4.4153100731136874e-8, - -4.470348358154297e-8, - -4.528998687192143e-8, - -4.591782243323905e-8, - -4.6593470415245974e-8, - -4.732514824468126e-8, - -4.812352827343602e-8, - -4.9002856883362256e-8, - -4.9982837424522586e-8, - 0.13235227763652802, - 0.1336384415626526, - 0.13498498499393463, - 0.1363978236913681, - 0.13788381218910217, - 0.13945099711418152, - 0.14110884070396423, - 0.14286862313747406, - 0.14474399387836456, - 0.14675164222717285, - 0.14891234040260315, - 0.15125241875648499, - 0.15380607545375824, - 0.15661902725696564, - 0.15975449979305267, - 0.2647457420825958, - 0.26732081174850464, - 0.27001693844795227, - 0.2728460133075714, - 0.27582186460494995, - 0.27896058559417725, - 0.28228121995925903, - 0.2858065366744995, - 0.28956395387649536, - 0.2935870885848999, - 0.29791781306266785, - 0.30260926485061646, - 0.3077305257320404, - 0.31337401270866394, - 0.319667786359787, - 0.39722171425819397, - 0.40109115839004517, - 0.40514296293258667, - 0.40939515829086304, - 0.4138685464859009, - 0.4185875356197357, - 0.4235810339450836, - 0.4288834035396576, - 0.43453627824783325, - 0.4405907392501831, - 0.4471103250980377, - 0.45417600870132446, - 0.46189308166503906, - 0.47040271759033203, - 0.4799012243747711, - 0.5298218727111816, - 0.5349939465522766, - 0.5404106974601746, - 0.5460963845252991, - 0.5520789623260498, - 0.5583915710449219, - 0.5650730729103088, - 0.5721700191497803, - 0.5797387361526489, - 0.5878485441207886, - 0.596585750579834, - 0.6060604453086853, - 0.6164164543151855, - 0.6278468370437622, - 0.640621542930603, - 0.6625885367393494, - 0.6690744757652283, - 0.6758686304092407, - 0.683001697063446, - 0.6905093193054199, - 0.6984333992004395, - 0.706823468208313, - 0.7157387137413025, - 0.7252510190010071, - 0.7354487776756287, - 0.7464426755905151, - 0.7583740949630737, - 0.7714279890060425, - 0.7858544588088989, - 0.8020040988922119, - 0.7955646514892578, - 0.8033785820007324, - 0.8115659356117249, - 0.820164144039154, - 0.8292168974876404, - 0.8387752771377563, - 0.8489000201225281, - 0.8596638441085815, - 0.8711550831794739, - 0.883482813835144, - 0.8967836499214172, - 0.9112330675125122, - 0.9270614385604858, - 0.9445816874504089, - 0.9642359018325806, - 0.9287943243980408, - 0.9379534721374512, - 0.9475533366203308, - 0.9576383829116821, - 0.9682607650756836, - 0.9794813990592957, - 0.9913730025291443, - 1.0040225982666016, - 1.0175365209579468, - 1.0320459604263306, - 1.0477162599563599, - 1.0647602081298828, - 1.0834589004516602, - 1.104196548461914, - 1.1275204420089722 - ], - "xaxis": "x3", - "y": [ - -0.8624772429466248, - -0.7441983819007874, - -0.622683048248291, - -0.4976491928100586, - -0.36877116560935974, - -0.23566964268684387, - -0.09789831191301346, - 0.04507357254624367, - 0.19388626515865326, - 0.3493231236934662, - 0.5123602151870728, - 0.6842405200004578, - 0.8665884137153625, - 1.0615968704223633, - 1.2723534107208252, - -0.8707711100578308, - -0.7528804540634155, - -0.6317914724349976, - -0.5072280764579773, - -0.3788721561431885, - -0.2463536262512207, - -0.10923799872398376, - 0.03299049288034439, - 0.18095232546329498, - 0.33540451526641846, - 0.49728715419769287, - 0.6677923202514648, - 0.8484700918197632, - 1.041399359703064, - 1.2494834661483765, - -0.877759575843811, - -0.7601941823959351, - -0.6394620537757874, - -0.5152921080589294, - -0.3873724937438965, - -0.25534066557884216, - -0.11877178400754929, - 0.022837579250335693, - 0.1700918972492218, - 0.3237268030643463, - 0.4846533238887787, - 0.6540226936340332, - 0.8333255648612976, - 1.0245509147644043, - 1.2304571866989136, - -0.8834576606750488, - -0.766156017780304, - -0.6457132697105408, - -0.5218622088432312, - -0.39429590106010437, - -0.26265788078308105, - -0.1265309751033783, - 0.014578450471162796, - 0.1612621396780014, - 0.31423890590667725, - 0.47439679503440857, - 0.6428551077842712, - 0.8210581541061401, - 1.0109251737594604, - 1.215103268623352, - -0.8878772258758545, - -0.7707794308662415, - -0.6505601406097412, - -0.5269551873207092, - -0.3996613919734955, - -0.268326997756958, - -0.13254056870937347, - 0.008184040896594524, - 0.15442895889282227, - 0.3069002032279968, - 0.46646857261657715, - 0.6342292428016663, - 0.8115919828414917, - 1.0004239082336426, - 1.2032899856567383, - -0.891027569770813, - -0.7740746736526489, - -0.6540140509605408, - -0.5305839776992798, - -0.40348362922668457, - -0.27236464619636536, - -0.13681970536708832, - 0.003632175736129284, - 0.14956632256507874, - 0.3016798496246338, - 0.46083149313926697, - 0.6280996203422546, - 0.8048699498176575, - 0.9929736852645874, - 1.1949193477630615, - -0.8929151296615601, - -0.7760488986968994, - -0.6560832262039185, - -0.532757580280304, - -0.405772864818573, - -0.27478256821632385, - -0.13938184082508087, - 0.0009072403190657496, - 0.14665597677230835, - 0.29855620861053467, - 0.4574595093727112, - 0.6244344115257263, - 0.8008524179458618, - 0.9885236024856567, - 1.1899232864379883, - -0.8935438990592957, - -0.7767064571380615, - -0.6567723751068115, - -0.5334815382957458, - -0.406535267829895, - -0.275587797164917, - -0.14023499190807343, - -4.470348358154297e-8, - 0.145687073469162, - 0.297516405582428, - 0.45633724331855774, - 0.6232147216796875, - 0.7995157837867737, - 0.9870434999465942, - 1.1882623434066772, - -0.8929151296615601, - -0.7760488986968994, - -0.6560832262039185, - -0.532757580280304, - -0.405772864818573, - -0.27478256821632385, - -0.13938184082508087, - 0.0009072403190657496, - 0.14665597677230835, - 0.29855620861053467, - 0.4574595093727112, - 0.6244344115257263, - 0.8008524179458618, - 0.9885236024856567, - 1.1899232864379883, - -0.891027569770813, - -0.7740746736526489, - -0.6540140509605408, - -0.5305839776992798, - -0.40348362922668457, - -0.27236464619636536, - -0.13681970536708832, - 0.003632175736129284, - 0.14956632256507874, - 0.3016798496246338, - 0.46083149313926697, - 0.6280996203422546, - 0.8048699498176575, - 0.9929736852645874, - 1.1949193477630615, - -0.8878772258758545, - -0.7707794308662415, - -0.6505601406097412, - -0.5269551873207092, - -0.3996613919734955, - -0.268326997756958, - -0.13254056870937347, - 0.008184040896594524, - 0.15442895889282227, - 0.3069002032279968, - 0.46646857261657715, - 0.6342292428016663, - 0.8115919828414917, - 1.0004239082336426, - 1.2032899856567383, - -0.8834576606750488, - -0.766156017780304, - -0.6457132697105408, - -0.5218622088432312, - -0.39429590106010437, - -0.26265788078308105, - -0.1265309751033783, - 0.014578450471162796, - 0.1612621396780014, - 0.31423890590667725, - 0.47439679503440857, - 0.6428551077842712, - 0.8210581541061401, - 1.0109251737594604, - 1.215103268623352, - -0.877759575843811, - -0.7601941823959351, - -0.6394620537757874, - -0.5152921080589294, - -0.3873724937438965, - -0.25534066557884216, - -0.11877178400754929, - 0.022837579250335693, - 0.1700918972492218, - 0.3237268030643463, - 0.4846533238887787, - 0.6540226936340332, - 0.8333255648612976, - 1.0245509147644043, - 1.2304571866989136, - -0.8707711100578308, - -0.7528804540634155, - -0.6317914724349976, - -0.5072280764579773, - -0.3788721561431885, - -0.2463536262512207, - -0.10923799872398376, - 0.03299049288034439, - 0.18095232546329498, - 0.33540451526641846, - 0.49728715419769287, - 0.6677923202514648, - 0.8484700918197632, - 1.041399359703064, - 1.2494834661483765, - -0.8624772429466248, - -0.7441983819007874, - -0.622683048248291, - -0.4976491928100586, - -0.36877116560935974, - -0.23566964268684387, - -0.09789831191301346, - 0.04507357254624367, - 0.19388626515865326, - 0.3493231236934662, - 0.5123602151870728, - 0.6842405200004578, - 0.8665884137153625, - 1.0615968704223633, - 1.2723534107208252 - ], - "yaxis": "y3" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9361907243728638, - -0.9444788098335266, - -0.9531254768371582, - -0.9621632695198059, - -0.9716294407844543, - -0.9815671443939209, - -0.9920265674591064, - -1.0030666589736938, - -1.0147576332092285, - -1.0271835327148438, - -1.0404468774795532, - -1.0546743869781494, - -1.0700255632400513, - -1.0867058038711548, - -1.1049867868423462, - -0.8020097613334656, - -0.8090871572494507, - -0.8164690732955933, - -0.8241830468177795, - -0.8322603702545166, - -0.8407374620437622, - -0.8496564626693726, - -0.8590669631958008, - -0.8690276145935059, - -0.8796089291572571, - -0.8908964395523071, - -0.9029955863952637, - -0.9160389304161072, - -0.9301964044570923, - -0.9456915259361267, - -0.6680329442024231, - -0.6739121079444885, - -0.6800431609153748, - -0.6864485740661621, - -0.6931542158126831, - -0.7001899480819702, - -0.7075902223587036, - -0.7153957486152649, - -0.7236545085906982, - -0.7324240207672119, - -0.7417740225791931, - -0.7517903447151184, - -0.7625804543495178, - -0.7742818593978882, - -0.7870748043060303, - -0.5342251062393188, - -0.5389163494110107, - -0.5438077449798584, - -0.548917293548584, - -0.5542652606964111, - -0.5598753094673157, - -0.56577467918396, - -0.5719954371452332, - -0.5785753726959229, - -0.5855597853660583, - -0.593003511428833, - -0.6009737849235535, - -0.6095548272132874, - -0.6188539862632751, - -0.6290116310119629, - -0.40055182576179504, - -0.4040631949901581, - -0.407723993062973, - -0.41154754161834717, - -0.4155489504337311, - -0.4197457730770111, - -0.4241582155227661, - -0.42881008982658386, - -0.4337294101715088, - -0.43894973397254944, - -0.4445115327835083, - -0.4504645764827728, - -0.456870973110199, - -0.4638097286224365, - -0.4713839590549469, - -0.266978919506073, - -0.26931652426719666, - -0.2717534005641937, - -0.2742983400821686, - -0.27696141600608826, - -0.2797541916370392, - -0.2826901376247406, - -0.28578490018844604, - -0.28905704617500305, - -0.29252874851226807, - -0.29622671008110046, - -0.3001837730407715, - -0.30444082617759705, - -0.30904990434646606, - -0.3140787184238434, - -0.13347278535366058, - -0.13464057445526123, - -0.13585790991783142, - -0.13712915778160095, - -0.13845933973789215, - -0.13985422253608704, - -0.14132048189640045, - -0.14286592602729797, - -0.1444997936487198, - -0.14623309671878815, - -0.14807912707328796, - -0.1500541865825653, - -0.1521785855293274, - -0.15447813272476196, - -0.15698638558387756, - -4.176516199549951e-8, - -4.2130491095804246e-8, - -4.251131002774855e-8, - -4.290899013881244e-8, - -4.332509462301459e-8, - -4.3761428258903834e-8, - -4.422007648940962e-8, - -4.470348358154297e-8, - -4.5214530786097384e-8, - -4.5756660682627626e-8, - -4.633402284071053e-8, - -4.6951704746334144e-8, - -4.76160515461288e-8, - -4.8335117242004344e-8, - -4.911936812845852e-8, - 0.13347278535366058, - 0.13464057445526123, - 0.13585790991783142, - 0.13712915778160095, - 0.13845933973789215, - 0.13985422253608704, - 0.14132048189640045, - 0.14286592602729797, - 0.1444997936487198, - 0.14623309671878815, - 0.14807912707328796, - 0.1500541865825653, - 0.1521785855293274, - 0.15447813272476196, - 0.15698638558387756, - 0.266978919506073, - 0.26931652426719666, - 0.2717534005641937, - 0.2742983400821686, - 0.27696141600608826, - 0.2797541916370392, - 0.2826901376247406, - 0.28578490018844604, - 0.28905704617500305, - 0.29252874851226807, - 0.29622671008110046, - 0.3001837730407715, - 0.30444082617759705, - 0.30904990434646606, - 0.3140787184238434, - 0.40055182576179504, - 0.4040631949901581, - 0.407723993062973, - 0.41154754161834717, - 0.4155489504337311, - 0.4197457730770111, - 0.4241582155227661, - 0.42881008982658386, - 0.4337294101715088, - 0.43894973397254944, - 0.4445115327835083, - 0.4504645764827728, - 0.456870973110199, - 0.4638097286224365, - 0.4713839590549469, - 0.5342251062393188, - 0.5389163494110107, - 0.5438077449798584, - 0.548917293548584, - 0.5542652606964111, - 0.5598753094673157, - 0.56577467918396, - 0.5719954371452332, - 0.5785753726959229, - 0.5855597853660583, - 0.593003511428833, - 0.6009737849235535, - 0.6095548272132874, - 0.6188539862632751, - 0.6290116310119629, - 0.6680329442024231, - 0.6739121079444885, - 0.6800431609153748, - 0.6864485740661621, - 0.6931542158126831, - 0.7001899480819702, - 0.7075902223587036, - 0.7153957486152649, - 0.7236545085906982, - 0.7324240207672119, - 0.7417740225791931, - 0.7517903447151184, - 0.7625804543495178, - 0.7742818593978882, - 0.7870748043060303, - 0.8020097613334656, - 0.8090871572494507, - 0.8164690732955933, - 0.8241830468177795, - 0.8322603702545166, - 0.8407374620437622, - 0.8496564626693726, - 0.8590669631958008, - 0.8690276145935059, - 0.8796089291572571, - 0.8908964395523071, - 0.9029955863952637, - 0.9160389304161072, - 0.9301964044570923, - 0.9456915259361267, - 0.9361907243728638, - 0.9444788098335266, - 0.9531254768371582, - 0.9621632695198059, - 0.9716294407844543, - 0.9815671443939209, - 0.9920265674591064, - 1.0030666589736938, - 1.0147576332092285, - 1.0271835327148438, - 1.0404468774795532, - 1.0546743869781494, - 1.0700255632400513, - 1.0867058038711548, - 1.1049867868423462 - ], - "xaxis": "x3", - "y": [ - -0.8763225674629211, - -0.7558072209358215, - -0.6323117613792419, - -0.5056028366088867, - -0.37541520595550537, - -0.2414446771144867, - -0.10333999991416931, - 0.03930799290537834, - 0.1869811713695526, - 0.34025290608406067, - 0.49981483817100525, - 0.6665142774581909, - 0.8414079546928406, - 1.025842308998108, - 1.221579909324646, - -0.8838474750518799, - -0.7636498808860779, - -0.6405001878738403, - -0.5141690373420715, - -0.3843960165977478, - -0.2508828043937683, - -0.11328533291816711, - 0.028796546161174774, - 0.17583337426185608, - 0.3283839225769043, - 0.4871208369731903, - 0.6528658270835876, - 0.8266409039497375, - 1.0097432136535645, - 1.2038630247116089, - -0.8901933431625366, - -0.7702623605728149, - -0.6474027037620544, - -0.5213882923126221, - -0.3919626772403717, - -0.2588323950767517, - -0.1216592788696289, - 0.019949372857809067, - 0.16645477712154388, - 0.31840381026268005, - 0.4764534533023834, - 0.6414047479629517, - 0.8142513632774353, - 0.9962506890296936, - 1.1890349388122559, - -0.8953708410263062, - -0.7756566405296326, - -0.6530325412750244, - -0.5272753238677979, - -0.3981316387653351, - -0.26531192660331726, - -0.12848281860351562, - 0.012742518447339535, - 0.1588178426027298, - 0.3102804720401764, - 0.46777504682540894, - 0.6320862174034119, - 0.8041850924491882, - 0.9852979779243469, - 1.177011489868164, - -0.8993889093399048, - -0.7798423171043396, - -0.6574004292488098, - -0.5318419933319092, - -0.40291619300842285, - -0.2703363597393036, - -0.1337728202342987, - 0.007156745530664921, - 0.15290042757987976, - 0.3039883077144623, - 0.46105557680130005, - 0.6248744130134583, - 0.7963990569114685, - 0.9768320322036743, - 1.1677260398864746, - -0.9022541642189026, - -0.7828267812728882, - -0.6605145335197449, - -0.5350974798202515, - -0.4063265025615692, - -0.27391716837882996, - -0.137542262673378, - 0.003177305916324258, - 0.14868561923503876, - 0.29950767755508423, - 0.45627206563949585, - 0.619742214679718, - 0.7908604741096497, - 0.970812976360321, - 1.1611285209655762, - -0.9039713740348816, - -0.7846153974533081, - -0.6623806357383728, - -0.5370481610298157, - -0.40836983919143677, - -0.27606239914894104, - -0.1398002952337265, - 0.0007937772898003459, - 0.14616148173809052, - 0.29682478308677673, - 0.4534083604812622, - 0.6166704297065735, - 0.7875463962554932, - 0.9672126173973083, - 1.1571837663650513, - -0.9045434594154358, - -0.7852112650871277, - -0.6630023121833801, - -0.537697970867157, - -0.40905046463012695, - -0.2767769694328308, - -0.14055235683918, - -4.470348358154297e-8, - 0.14532089233398438, - 0.2959313988685608, - 0.4524548649787903, - 0.6156477928161621, - 0.7864432334899902, - 0.9660143256187439, - 1.1558711528778076, - -0.9039713740348816, - -0.7846153974533081, - -0.6623806357383728, - -0.5370481610298157, - -0.40836983919143677, - -0.27606239914894104, - -0.1398002952337265, - 0.0007937772898003459, - 0.14616148173809052, - 0.29682478308677673, - 0.4534083604812622, - 0.6166704297065735, - 0.7875463962554932, - 0.9672126173973083, - 1.1571837663650513, - -0.9022541642189026, - -0.7828267812728882, - -0.6605145335197449, - -0.5350974798202515, - -0.4063265025615692, - -0.27391716837882996, - -0.137542262673378, - 0.003177305916324258, - 0.14868561923503876, - 0.29950767755508423, - 0.45627206563949585, - 0.619742214679718, - 0.7908604741096497, - 0.970812976360321, - 1.1611285209655762, - -0.8993889093399048, - -0.7798423171043396, - -0.6574004292488098, - -0.5318419933319092, - -0.40291619300842285, - -0.2703363597393036, - -0.1337728202342987, - 0.007156745530664921, - 0.15290042757987976, - 0.3039883077144623, - 0.46105557680130005, - 0.6248744130134583, - 0.7963990569114685, - 0.9768320322036743, - 1.1677260398864746, - -0.8953708410263062, - -0.7756566405296326, - -0.6530325412750244, - -0.5272753238677979, - -0.3981316387653351, - -0.26531192660331726, - -0.12848281860351562, - 0.012742518447339535, - 0.1588178426027298, - 0.3102804720401764, - 0.46777504682540894, - 0.6320862174034119, - 0.8041850924491882, - 0.9852979779243469, - 1.177011489868164, - -0.8901933431625366, - -0.7702623605728149, - -0.6474027037620544, - -0.5213882923126221, - -0.3919626772403717, - -0.2588323950767517, - -0.1216592788696289, - 0.019949372857809067, - 0.16645477712154388, - 0.31840381026268005, - 0.4764534533023834, - 0.6414047479629517, - 0.8142513632774353, - 0.9962506890296936, - 1.1890349388122559, - -0.8838474750518799, - -0.7636498808860779, - -0.6405001878738403, - -0.5141690373420715, - -0.3843960165977478, - -0.2508828043937683, - -0.11328533291816711, - 0.028796546161174774, - 0.17583337426185608, - 0.3283839225769043, - 0.4871208369731903, - 0.6528658270835876, - 0.8266409039497375, - 1.0097432136535645, - 1.2038630247116089, - -0.8763225674629211, - -0.7558072209358215, - -0.6323117613792419, - -0.5056028366088867, - -0.37541520595550537, - -0.2414446771144867, - -0.10333999991416931, - 0.03930799290537834, - 0.1869811713695526, - 0.34025290608406067, - 0.49981483817100525, - 0.6665142774581909, - 0.8414079546928406, - 1.025842308998108, - 1.221579909324646 - ], - "yaxis": "y3" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9439350366592407, - -0.9512940645217896, - -0.95893394947052, - -0.966877281665802, - -0.9751492142677307, - -0.9837784171104431, - -0.9927977323532104, - -1.0022448301315308, - -1.0121632814407349, - -1.022603988647461, - -1.0336272716522217, - -1.045304536819458, - -1.057722568511963, - -1.0709867477416992, - -1.0852291584014893, - -0.8087461590766907, - -0.8150356411933899, - -0.8215641975402832, - -0.828350841999054, - -0.8354169726371765, - -0.8427868485450745, - -0.8504881858825684, - -0.8585526943206787, - -0.8670172095298767, - -0.8759246468544006, - -0.8853256702423096, - -0.8952803015708923, - -0.9058611392974854, - -0.9171566963195801, - -0.9292769432067871, - -0.6737155318260193, - -0.678943932056427, - -0.6843704581260681, - -0.690010666847229, - -0.695882260799408, - -0.7020052671432495, - -0.7084023356437683, - -0.7150997519493103, - -0.7221276760101318, - -0.7295214533805847, - -0.7373224496841431, - -0.7455800771713257, - -0.7543535828590393, - -0.7637152671813965, - -0.7737548351287842, - -0.538815975189209, - -0.5429903864860535, - -0.5473225116729736, - -0.551824688911438, - -0.5565110445022583, - -0.5613973140716553, - -0.5665015578269958, - -0.5718445181846619, - -0.577450156211853, - -0.5833462476730347, - -0.5895655751228333, - -0.5961471199989319, - -0.6031374931335449, - -0.6105937361717224, - -0.6185861825942993, - -0.4040209650993347, - -0.4071469306945801, - -0.410390704870224, - -0.41376161575317383, - -0.4172699749469757, - -0.42092767357826233, - -0.42474809288978577, - -0.42874664068222046, - -0.43294113874435425, - -0.4373522698879242, - -0.44200435280799866, - -0.4469262659549713, - -0.45215266942977905, - -0.4577256739139557, - -0.4636974334716797, - -0.2693040370941162, - -0.27138569951057434, - -0.2735457420349121, - -0.2757902443408966, - -0.27812615036964417, - -0.28056129813194275, - -0.2831045389175415, - -0.2857661545276642, - -0.28855785727500916, - -0.29149341583251953, - -0.29458895325660706, - -0.2978634834289551, - -0.3013399839401245, - -0.30504629015922546, - -0.30901676416397095, - -0.13463900983333588, - -0.13567917048931122, - -0.13675843179225922, - -0.1378798633813858, - -0.13904692232608795, - -0.14026348292827606, - -0.1415340155363083, - -0.14286358654499054, - -0.1442580670118332, - -0.14572429656982422, - -0.1472702920436859, - -0.14890556037425995, - -0.15064148604869843, - -0.15249194204807281, - -0.15447400510311127, - -4.2130491095804246e-8, - -4.2455909010641335e-8, - -4.2793558918674535e-8, - -4.314439649988344e-8, - -4.350950177922641e-8, - -4.389009333749527e-8, - -4.428755673302476e-8, - -4.470348358154297e-8, - -4.5139710636021846e-8, - -4.559836597195499e-8, - -4.6081964910626994e-8, - -4.6593466862532296e-8, - -4.713644230491809e-8, - -4.77152113376178e-8, - -4.8335117242004344e-8, - 0.13463900983333588, - 0.13567917048931122, - 0.13675843179225922, - 0.1378798633813858, - 0.13904692232608795, - 0.14026348292827606, - 0.1415340155363083, - 0.14286358654499054, - 0.1442580670118332, - 0.14572429656982422, - 0.1472702920436859, - 0.14890556037425995, - 0.15064148604869843, - 0.15249194204807281, - 0.15447400510311127, - 0.2693040370941162, - 0.27138569951057434, - 0.2735457420349121, - 0.2757902443408966, - 0.27812615036964417, - 0.28056129813194275, - 0.2831045389175415, - 0.2857661545276642, - 0.28855785727500916, - 0.29149341583251953, - 0.29458895325660706, - 0.2978634834289551, - 0.3013399839401245, - 0.30504629015922546, - 0.30901676416397095, - 0.4040209650993347, - 0.4071469306945801, - 0.410390704870224, - 0.41376161575317383, - 0.4172699749469757, - 0.42092767357826233, - 0.42474809288978577, - 0.42874664068222046, - 0.43294113874435425, - 0.4373522698879242, - 0.44200435280799866, - 0.4469262659549713, - 0.45215266942977905, - 0.4577256739139557, - 0.4636974334716797, - 0.538815975189209, - 0.5429903864860535, - 0.5473225116729736, - 0.551824688911438, - 0.5565110445022583, - 0.5613973140716553, - 0.5665015578269958, - 0.5718445181846619, - 0.577450156211853, - 0.5833462476730347, - 0.5895655751228333, - 0.5961471199989319, - 0.6031374931335449, - 0.6105937361717224, - 0.6185861825942993, - 0.6737155318260193, - 0.678943932056427, - 0.6843704581260681, - 0.690010666847229, - 0.695882260799408, - 0.7020052671432495, - 0.7084023356437683, - 0.7150997519493103, - 0.7221276760101318, - 0.7295214533805847, - 0.7373224496841431, - 0.7455800771713257, - 0.7543535828590393, - 0.7637152671813965, - 0.7737548351287842, - 0.8087461590766907, - 0.8150356411933899, - 0.8215641975402832, - 0.828350841999054, - 0.8354169726371765, - 0.8427868485450745, - 0.8504881858825684, - 0.8585526943206787, - 0.8670172095298767, - 0.8759246468544006, - 0.8853256702423096, - 0.8952803015708923, - 0.9058611392974854, - 0.9171566963195801, - 0.9292769432067871, - 0.9439350366592407, - 0.9512940645217896, - 0.95893394947052, - 0.966877281665802, - 0.9751492142677307, - 0.9837784171104431, - 0.9927977323532104, - 1.0022448301315308, - 1.0121632814407349, - 1.022603988647461, - 1.0336272716522217, - 1.045304536819458, - 1.057722568511963, - 1.0709867477416992, - 1.0852291584014893 - ], - "xaxis": "x3", - "y": [ - -0.890924870967865, - -0.7679957747459412, - -0.6423699855804443, - -0.5138614773750305, - -0.38226181268692017, - -0.24733610451221466, - -0.10881805419921875, - 0.033595971763134, - 0.1802554428577423, - 0.33156511187553406, - 0.48799848556518555, - 0.6501156091690063, - 0.8185867071151733, - 0.9942249059677124, - 1.1780338287353516, - -0.897624671459198, - -0.7749459743499756, - -0.6495900750160217, - -0.5213733315467834, - -0.39009031653404236, - -0.2555094361305237, - -0.11736855655908585, - 0.024631047621369362, - 0.1708327829837799, - 0.321633905172348, - 0.4774986207485199, - 0.6389750242233276, - 0.8067179322242737, - 0.9815202951431274, - 1.164358139038086, - -0.9032789468765259, - -0.7808108329772949, - -0.6556817889213562, - -0.5277102589607239, - -0.3966931104660034, - -0.2624017596244812, - -0.1245773658156395, - 0.017074698582291603, - 0.16289278864860535, - 0.3132680058479309, - 0.4686568081378937, - 0.6295974850654602, - 0.7967322468757629, - 0.970837414264679, - 1.1528667211532593, - -0.9078952074050903, - -0.7855984568595886, - -0.6606539487838745, - -0.5328818559646606, - -0.4020810127258301, - -0.2680249810218811, - -0.13045771420001984, - 0.010912067256867886, - 0.15641874074935913, - 0.30644842982292175, - 0.46145138144493103, - 0.6219580769538879, - 0.7886006832122803, - 0.9621421098709106, - 1.1435184478759766, - -0.9114794731140137, - -0.7893153429031372, - -0.6645138263702393, - -0.5368961691856384, - -0.40626266598701477, - -0.2723886966705322, - -0.13502036035060883, - 0.006131169851869345, - 0.15139715373516083, - 0.30115988850593567, - 0.45586493611335754, - 0.6160367727279663, - 0.7822997570037842, - 0.9554068446159363, - 1.1362805366516113, - -0.9140363335609436, - -0.7919667363166809, - -0.6672669649124146, - -0.5397592186927795, - -0.4092448055744171, - -0.2755003869533539, - -0.13827353715896606, - 0.002722773002460599, - 0.14781762659549713, - 0.2973906695842743, - 0.45188409090042114, - 0.6118180751800537, - 0.7778117060661316, - 0.9506106972694397, - 1.131128191947937, - -0.9155690670013428, - -0.7935560941696167, - -0.6689172983169556, - -0.5414752960205078, - -0.41103219985961914, - -0.2773653268814087, - -0.14022311568260193, - 0.0006803350406698883, - 0.14567284286022186, - 0.29513242840766907, - 0.44949930906295776, - 0.6092911958694458, - 0.7751238346099854, - 0.9477388858795166, - 1.1280436515808105, - -0.9160798192024231, - -0.794085681438446, - -0.6694670915603638, - -0.5420470237731934, - -0.4116276800632477, - -0.277986615896225, - -0.14087259769439697, - -4.470348358154297e-8, - 0.14495839178562164, - 0.294380247592926, - 0.4487050175666809, - 0.6084496378898621, - 0.7742287516593933, - 0.9467825889587402, - 1.1270166635513306, - -0.9155690670013428, - -0.7935560941696167, - -0.6689172983169556, - -0.5414752960205078, - -0.41103219985961914, - -0.2773653268814087, - -0.14022311568260193, - 0.0006803350406698883, - 0.14567284286022186, - 0.29513242840766907, - 0.44949930906295776, - 0.6092911958694458, - 0.7751238346099854, - 0.9477388858795166, - 1.1280436515808105, - -0.9140363335609436, - -0.7919667363166809, - -0.6672669649124146, - -0.5397592186927795, - -0.4092448055744171, - -0.2755003869533539, - -0.13827353715896606, - 0.002722773002460599, - 0.14781762659549713, - 0.2973906695842743, - 0.45188409090042114, - 0.6118180751800537, - 0.7778117060661316, - 0.9506106972694397, - 1.131128191947937, - -0.9114794731140137, - -0.7893153429031372, - -0.6645138263702393, - -0.5368961691856384, - -0.40626266598701477, - -0.2723886966705322, - -0.13502036035060883, - 0.006131169851869345, - 0.15139715373516083, - 0.30115988850593567, - 0.45586493611335754, - 0.6160367727279663, - 0.7822997570037842, - 0.9554068446159363, - 1.1362805366516113, - -0.9078952074050903, - -0.7855984568595886, - -0.6606539487838745, - -0.5328818559646606, - -0.4020810127258301, - -0.2680249810218811, - -0.13045771420001984, - 0.010912067256867886, - 0.15641874074935913, - 0.30644842982292175, - 0.46145138144493103, - 0.6219580769538879, - 0.7886006832122803, - 0.9621421098709106, - 1.1435184478759766, - -0.9032789468765259, - -0.7808108329772949, - -0.6556817889213562, - -0.5277102589607239, - -0.3966931104660034, - -0.2624017596244812, - -0.1245773658156395, - 0.017074698582291603, - 0.16289278864860535, - 0.3132680058479309, - 0.4686568081378937, - 0.6295974850654602, - 0.7967322468757629, - 0.970837414264679, - 1.1528667211532593, - -0.897624671459198, - -0.7749459743499756, - -0.6495900750160217, - -0.5213733315467834, - -0.39009031653404236, - -0.2555094361305237, - -0.11736855655908585, - 0.024631047621369362, - 0.1708327829837799, - 0.321633905172348, - 0.4774986207485199, - 0.6389750242233276, - 0.8067179322242737, - 0.9815202951431274, - 1.164358139038086, - -0.890924870967865, - -0.7679957747459412, - -0.6423699855804443, - -0.5138614773750305, - -0.38226181268692017, - -0.24733610451221466, - -0.10881805419921875, - 0.033595971763134, - 0.1802554428577423, - 0.33156511187553406, - 0.48799848556518555, - 0.6501156091690063, - 0.8185867071151733, - 0.9942249059677124, - 1.1780338287353516 - ], - "yaxis": "y3" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9520604014396667, - -0.9584246277809143, - -0.9649975895881653, - -0.9717937111854553, - -0.9788286685943604, - -0.9861201643943787, - -0.9936879277229309, - -1.001554012298584, - -1.0097436904907227, - -1.0182851552963257, - -1.027211308479309, - -1.0365595817565918, - -1.0463736057281494, - -1.0567044019699097, - -1.067612648010254, - -0.8158010244369507, - -0.8212445378303528, - -0.826866090297699, - -0.8326778411865234, - -0.8386932015419006, - -0.8449270725250244, - -0.8513963222503662, - -0.8581196665763855, - -0.8651183843612671, - -0.8724165558815002, - -0.880041778087616, - -0.8880258798599243, - -0.8964056968688965, - -0.9052242636680603, - -0.9145327210426331, - -0.6796578764915466, - -0.6841859817504883, - -0.6888618469238281, - -0.6936955451965332, - -0.6986980438232422, - -0.7038818597793579, - -0.7092607021331787, - -0.714850127696991, - -0.7206677198410034, - -0.7267332673072815, - -0.733069658279419, - -0.7397029995918274, - -0.7466636896133423, - -0.7539870738983154, - -0.7617151737213135, - -0.5436110496520996, - -0.5472282767295837, - -0.550963282585144, - -0.5548240542411804, - -0.5588194131851196, - -0.5629591345787048, - -0.5672543048858643, - -0.5717171430587769, - -0.5763616561889648, - -0.5812035799026489, - -0.586260974407196, - -0.591554582118988, - -0.5971084833145142, - -0.6029506921768188, - -0.609114408493042, - -0.4076411724090576, - -0.410351037979126, - -0.41314899921417236, - -0.41604098677635193, - -0.41903358697891235, - -0.4221341907978058, - -0.42535093426704407, - -0.428693026304245, - -0.4321708679199219, - -0.43579620122909546, - -0.4395824670791626, - -0.4435451030731201, - -0.4477020502090454, - -0.4520741403102875, - -0.4566860496997833, - -0.27172887325286865, - -0.27353399991989136, - -0.27539771795272827, - -0.27732402086257935, - -0.2793172597885132, - -0.281382292509079, - -0.28352460265159607, - -0.28575026988983154, - -0.28806620836257935, - -0.2904801666736603, - -0.2930011451244354, - -0.295639306306839, - -0.29840657114982605, - -0.3013167679309845, - -0.3043862283229828, - -0.13585485517978668, - -0.13675697147846222, - -0.13768835365772247, - -0.13865099847316742, - -0.13964706659317017, - -0.1406789869070053, - -0.14174948632717133, - -0.14286160469055176, - -0.1440187692642212, - -0.1452248990535736, - -0.1464844048023224, - -0.1478024274110794, - -0.14918485283851624, - -0.15063859522342682, - -0.1521717756986618, - -4.251131002774855e-8, - -4.2793558918674535e-8, - -4.308496315275079e-8, - -4.33861444548711e-8, - -4.369778139334812e-8, - -4.402063069619544e-8, - -4.435554856740964e-8, - -4.470348358154297e-8, - -4.506550865812642e-8, - -4.544284237795182e-8, - -4.5836873852067583e-8, - -4.624920180162917e-8, - -4.6681673637749554e-8, - -4.713644230491809e-8, - -4.76160515461288e-8, - 0.13585485517978668, - 0.13675697147846222, - 0.13768835365772247, - 0.13865099847316742, - 0.13964706659317017, - 0.1406789869070053, - 0.14174948632717133, - 0.14286160469055176, - 0.1440187692642212, - 0.1452248990535736, - 0.1464844048023224, - 0.1478024274110794, - 0.14918485283851624, - 0.15063859522342682, - 0.1521717756986618, - 0.27172887325286865, - 0.27353399991989136, - 0.27539771795272827, - 0.27732402086257935, - 0.2793172597885132, - 0.281382292509079, - 0.28352460265159607, - 0.28575026988983154, - 0.28806620836257935, - 0.2904801666736603, - 0.2930011451244354, - 0.295639306306839, - 0.29840657114982605, - 0.3013167679309845, - 0.3043862283229828, - 0.4076411724090576, - 0.410351037979126, - 0.41314899921417236, - 0.41604098677635193, - 0.41903358697891235, - 0.4221341907978058, - 0.42535093426704407, - 0.428693026304245, - 0.4321708679199219, - 0.43579620122909546, - 0.4395824670791626, - 0.4435451030731201, - 0.4477020502090454, - 0.4520741403102875, - 0.4566860496997833, - 0.5436110496520996, - 0.5472282767295837, - 0.550963282585144, - 0.5548240542411804, - 0.5588194131851196, - 0.5629591345787048, - 0.5672543048858643, - 0.5717171430587769, - 0.5763616561889648, - 0.5812035799026489, - 0.586260974407196, - 0.591554582118988, - 0.5971084833145142, - 0.6029506921768188, - 0.609114408493042, - 0.6796578764915466, - 0.6841859817504883, - 0.6888618469238281, - 0.6936955451965332, - 0.6986980438232422, - 0.7038818597793579, - 0.7092607021331787, - 0.714850127696991, - 0.7206677198410034, - 0.7267332673072815, - 0.733069658279419, - 0.7397029995918274, - 0.7466636896133423, - 0.7539870738983154, - 0.7617151737213135, - 0.8158010244369507, - 0.8212445378303528, - 0.826866090297699, - 0.8326778411865234, - 0.8386932015419006, - 0.8449270725250244, - 0.8513963222503662, - 0.8581196665763855, - 0.8651183843612671, - 0.8724165558815002, - 0.880041778087616, - 0.8880258798599243, - 0.8964056968688965, - 0.9052242636680603, - 0.9145327210426331, - 0.9520604014396667, - 0.9584246277809143, - 0.9649975895881653, - 0.9717937111854553, - 0.9788286685943604, - 0.9861201643943787, - 0.9936879277229309, - 1.001554012298584, - 1.0097436904907227, - 1.0182851552963257, - 1.027211308479309, - 1.0365595817565918, - 1.0463736057281494, - 1.0567044019699097, - 1.067612648010254 - ], - "xaxis": "x3", - "y": [ - -0.9063637852668762, - -0.7808201313018799, - -0.6528957486152649, - -0.5224495530128479, - -0.3893261253833771, - -0.2533532381057739, - -0.1143394261598587, - 0.027929136529564857, - 0.17369292676448822, - 0.3232232928276062, - 0.47682860493659973, - 0.6348620057106018, - 0.7977307438850403, - 0.9659084677696228, - 1.1399519443511963, - -0.9121745228767395, - -0.7868181467056274, - -0.6590934991836548, - -0.5288609266281128, - -0.3959665596485138, - -0.26023992896080017, - -0.12149165570735931, - 0.02048964612185955, - 0.1659415364265442, - 0.31513190269470215, - 0.46836504340171814, - 0.6259890198707581, - 0.7884048819541931, - 0.9560787081718445, - 1.129557490348816, - -0.917081892490387, - -0.7918832302093506, - -0.6643268465995789, - -0.5342741012573242, - -0.40157249569892883, - -0.26605308055877686, - -0.12752819061279297, - 0.014211527071893215, - 0.15940122306346893, - 0.30830591917037964, - 0.4612264335155487, - 0.618506669998169, - 0.7805426120758057, - 0.9477938413619995, - 1.1207996606826782, - -0.9210906624794006, - -0.7960205078125, - -0.6686012148857117, - -0.5386950373649597, - -0.4061504602432251, - -0.27079981565475464, - -0.13245677947998047, - 0.009086293168365955, - 0.15406262874603271, - 0.302734911441803, - 0.455401211977005, - 0.6124020218849182, - 0.7741292715072632, - 0.9410374164581299, - 1.113659143447876, - -0.9242046475410461, - -0.79923415184021, - -0.6719211339950562, - -0.5421285033226013, - -0.4097056984901428, - -0.2744857966899872, - -0.13628368079662323, - 0.005107065197080374, - 0.14991815388202667, - 0.2984105050563812, - 0.4508800506591797, - 0.6076647043228149, - 0.7691531181335449, - 0.9357960224151611, - 1.1081211566925049, - -0.9264267683029175, - -0.8015273213386536, - -0.6742900013923645, - -0.5445783734321594, - -0.41224226355552673, - -0.27711552381515503, - -0.13901375234127045, - 0.0022685290314257145, - 0.1469619870185852, - 0.29532626271247864, - 0.4476557672023773, - 0.6042865514755249, - 0.7656052112579346, - 0.9320594072341919, - 1.1041735410690308, - -0.9277592301368713, - -0.802902340888977, - -0.6757103800773621, - -0.5460472106933594, - -0.41376304626464844, - -0.2786920964717865, - -0.1406504213809967, - 0.0005669109523296356, - 0.14518992602825165, - 0.29347753524780273, - 0.44572320580482483, - 0.6022619605064392, - 0.7634789943695068, - 0.9298203587532043, - 1.1018084287643433, - -0.9282032251358032, - -0.8033605217933655, - -0.6761837005615234, - -0.5465366840362549, - -0.4142697751522064, - -0.279217392206192, - -0.14119574427604675, - -4.470348358154297e-8, - 0.1445995271205902, - 0.29286158084869385, - 0.44507938623428345, - 0.6015874743461609, - 0.7627706527709961, - 0.9290744662284851, - 1.1010205745697021, - -0.9277592301368713, - -0.802902340888977, - -0.6757103800773621, - -0.5460472106933594, - -0.41376304626464844, - -0.2786920964717865, - -0.1406504213809967, - 0.0005669109523296356, - 0.14518992602825165, - 0.29347753524780273, - 0.44572320580482483, - 0.6022619605064392, - 0.7634789943695068, - 0.9298203587532043, - 1.1018084287643433, - -0.9264267683029175, - -0.8015273213386536, - -0.6742900013923645, - -0.5445783734321594, - -0.41224226355552673, - -0.27711552381515503, - -0.13901375234127045, - 0.0022685290314257145, - 0.1469619870185852, - 0.29532626271247864, - 0.4476557672023773, - 0.6042865514755249, - 0.7656052112579346, - 0.9320594072341919, - 1.1041735410690308, - -0.9242046475410461, - -0.79923415184021, - -0.6719211339950562, - -0.5421285033226013, - -0.4097056984901428, - -0.2744857966899872, - -0.13628368079662323, - 0.005107065197080374, - 0.14991815388202667, - 0.2984105050563812, - 0.4508800506591797, - 0.6076647043228149, - 0.7691531181335449, - 0.9357960224151611, - 1.1081211566925049, - -0.9210906624794006, - -0.7960205078125, - -0.6686012148857117, - -0.5386950373649597, - -0.4061504602432251, - -0.27079981565475464, - -0.13245677947998047, - 0.009086293168365955, - 0.15406262874603271, - 0.302734911441803, - 0.455401211977005, - 0.6124020218849182, - 0.7741292715072632, - 0.9410374164581299, - 1.113659143447876, - -0.917081892490387, - -0.7918832302093506, - -0.6643268465995789, - -0.5342741012573242, - -0.40157249569892883, - -0.26605308055877686, - -0.12752819061279297, - 0.014211527071893215, - 0.15940122306346893, - 0.30830591917037964, - 0.4612264335155487, - 0.618506669998169, - 0.7805426120758057, - 0.9477938413619995, - 1.1207996606826782, - -0.9121745228767395, - -0.7868181467056274, - -0.6590934991836548, - -0.5288609266281128, - -0.3959665596485138, - -0.26023992896080017, - -0.12149165570735931, - 0.02048964612185955, - 0.1659415364265442, - 0.31513190269470215, - 0.46836504340171814, - 0.6259890198707581, - 0.7884048819541931, - 0.9560787081718445, - 1.129557490348816, - -0.9063637852668762, - -0.7808201313018799, - -0.6528957486152649, - -0.5224495530128479, - -0.3893261253833771, - -0.2533532381057739, - -0.1143394261598587, - 0.027929136529564857, - 0.17369292676448822, - 0.3232232928276062, - 0.47682860493659973, - 0.6348620057106018, - 0.7977307438850403, - 0.9659084677696228, - 1.1399519443511963 - ], - "yaxis": "y3" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.960605263710022, - -0.9658997058868408, - -0.9713376760482788, - -0.9769273996353149, - -0.9826775789260864, - -0.9885978698730469, - -0.9946988821029663, - -1.0009920597076416, - -1.0074903964996338, - -1.0142077207565308, - -1.0211600065231323, - -1.028364896774292, - -1.035841941833496, - -1.0436131954193115, - -1.0517041683197021, - -0.8232055306434631, - -0.8277370929718018, - -0.8323913812637329, - -0.8371751308441162, - -0.8420960307121277, - -0.847162127494812, - -0.852382481098175, - -0.85776686668396, - -0.8633262515068054, - -0.8690726161003113, - -0.8750194311141968, - -0.881181538105011, - -0.8875756859779358, - -0.8942207098007202, - -0.9011380672454834, - -0.6858847141265869, - -0.6896564364433289, - -0.6935300827026367, - -0.6975114345550537, - -0.7016065716743469, - -0.7058224081993103, - -0.710166335105896, - -0.7146464586257935, - -0.7192718982696533, - -0.7240525484085083, - -0.7289995551109314, - -0.7341251969337463, - -0.739443302154541, - -0.7449696063995361, - -0.7507215738296509, - -0.5486292839050293, - -0.5516437292098999, - -0.5547394752502441, - -0.5579211711883545, - -0.5611937046051025, - -0.5645624399185181, - -0.5680334568023682, - -0.571613073348999, - -0.575308620929718, - -0.5791279077529907, - -0.5830798149108887, - -0.5871741771697998, - -0.5914219617843628, - -0.5958356261253357, - -0.6004291772842407, - -0.41142627596855164, - -0.4136853814125061, - -0.41600534319877625, - -0.4183896481990814, - -0.42084193229675293, - -0.4233662784099579, - -0.4259670674800873, - -0.4286492168903351, - -0.4314180314540863, - -0.43427950143814087, - -0.4372401535511017, - -0.4403073489665985, - -0.44348928332328796, - -0.4467952251434326, - -0.45023566484451294, - -0.2742624580860138, - -0.2757676839828491, - -0.2773134708404541, - -0.2789020538330078, - -0.28053590655326843, - -0.28221774101257324, - -0.28395044803619385, - -0.2857373058795929, - -0.2875818610191345, - -0.2894880473613739, - -0.2914602756500244, - -0.2935033440589905, - -0.2956227958202362, - -0.2978247404098511, - -0.3001161217689514, - -0.1371246874332428, - -0.13787704706192017, - -0.13864967226982117, - -0.13944369554519653, - -0.14026032388210297, - -0.1411009132862091, - -0.14196692407131195, - -0.14285998046398163, - -0.1437818557024002, - -0.14473453164100647, - -0.14572015404701233, - -0.14674119651317596, - -0.14780035614967346, - -0.14890071749687195, - -0.1500457525253296, - -4.290899013881244e-8, - -4.314439649988344e-8, - -4.33861444548711e-8, - -4.363458216971594e-8, - -4.389009333749527e-8, - -4.4153100731136874e-8, - -4.442406265070531e-8, - -4.470348358154297e-8, - -4.4991921299697424e-8, - -4.528998687192143e-8, - -4.559836597195499e-8, - -4.591782243323905e-8, - -4.624920180162917e-8, - -4.6593470415245974e-8, - -4.6951704746334144e-8, - 0.1371246874332428, - 0.13787704706192017, - 0.13864967226982117, - 0.13944369554519653, - 0.14026032388210297, - 0.1411009132862091, - 0.14196692407131195, - 0.14285998046398163, - 0.1437818557024002, - 0.14473453164100647, - 0.14572015404701233, - 0.14674119651317596, - 0.14780035614967346, - 0.14890071749687195, - 0.1500457525253296, - 0.2742624580860138, - 0.2757676839828491, - 0.2773134708404541, - 0.2789020538330078, - 0.28053590655326843, - 0.28221774101257324, - 0.28395044803619385, - 0.2857373058795929, - 0.2875818610191345, - 0.2894880473613739, - 0.2914602756500244, - 0.2935033440589905, - 0.2956227958202362, - 0.2978247404098511, - 0.3001161217689514, - 0.41142627596855164, - 0.4136853814125061, - 0.41600534319877625, - 0.4183896481990814, - 0.42084193229675293, - 0.4233662784099579, - 0.4259670674800873, - 0.4286492168903351, - 0.4314180314540863, - 0.43427950143814087, - 0.4372401535511017, - 0.4403073489665985, - 0.44348928332328796, - 0.4467952251434326, - 0.45023566484451294, - 0.5486292839050293, - 0.5516437292098999, - 0.5547394752502441, - 0.5579211711883545, - 0.5611937046051025, - 0.5645624399185181, - 0.5680334568023682, - 0.571613073348999, - 0.575308620929718, - 0.5791279077529907, - 0.5830798149108887, - 0.5871741771697998, - 0.5914219617843628, - 0.5958356261253357, - 0.6004291772842407, - 0.6858847141265869, - 0.6896564364433289, - 0.6935300827026367, - 0.6975114345550537, - 0.7016065716743469, - 0.7058224081993103, - 0.710166335105896, - 0.7146464586257935, - 0.7192718982696533, - 0.7240525484085083, - 0.7289995551109314, - 0.7341251969337463, - 0.739443302154541, - 0.7449696063995361, - 0.7507215738296509, - 0.8232055306434631, - 0.8277370929718018, - 0.8323913812637329, - 0.8371751308441162, - 0.8420960307121277, - 0.847162127494812, - 0.852382481098175, - 0.85776686668396, - 0.8633262515068054, - 0.8690726161003113, - 0.8750194311141968, - 0.881181538105011, - 0.8875756859779358, - 0.8942207098007202, - 0.9011380672454834, - 0.960605263710022, - 0.9658997058868408, - 0.9713376760482788, - 0.9769273996353149, - 0.9826775789260864, - 0.9885978698730469, - 0.9946988821029663, - 1.0009920597076416, - 1.0074903964996338, - 1.0142077207565308, - 1.0211600065231323, - 1.028364896774292, - 1.035841941833496, - 1.0436131954193115, - 1.0517041683197021 - ], - "xaxis": "x3", - "y": [ - -0.922731876373291, - -0.7943447828292847, - -0.6639320850372314, - -0.5313946008682251, - -0.39662498235702515, - -0.25950634479522705, - -0.11991127580404282, - 0.022299442440271378, - 0.1672789603471756, - 0.31519564986228943, - 0.4662357270717621, - 0.6206061244010925, - 0.7785375118255615, - 0.9402885437011719, - 1.1061509847640991, - -0.9275804162025452, - -0.7993228435516357, - -0.669046938419342, - -0.536653995513916, - -0.40203744173049927, - -0.2650811970233917, - -0.12565873563289642, - 0.01636812835931778, - 0.16115136444568634, - 0.3088579773902893, - 0.45967262983322144, - 0.6138004064559937, - 0.7714698910713196, - 0.9329372048377991, - 1.0984910726547241, - -0.9316776394844055, - -0.8035294413566589, - -0.6733688116073608, - -0.5410978198051453, - -0.4066103398799896, - -0.26979100704193115, - -0.13051404058933258, - 0.011357879266142845, - 0.15597571432590485, - 0.3035053610801697, - 0.4541301429271698, - 0.6080535650253296, - 0.7655025720596313, - 0.9267311096191406, - 1.0920253992080688, - -0.9350262880325317, - -0.8069673180580139, - -0.6769008636474609, - -0.5447292923927307, - -0.4103471338748932, - -0.2736394703388214, - -0.13448116183280945, - 0.007264396175742149, - 0.15174736082553864, - 0.29913270473480225, - 0.44960272312164307, - 0.6033596992492676, - 0.7606290578842163, - 0.9216630458831787, - 1.0867458581924438, - -0.9376286268234253, - -0.8096388578414917, - -0.6796454191207886, - -0.5475510358810425, - -0.413250595331192, - -0.27662959694862366, - -0.13756334781646729, - 0.004084181971848011, - 0.14846254885196686, - 0.29573601484298706, - 0.44608601927757263, - 0.599713921546936, - 0.7568439841270447, - 0.9177272319793701, - 1.0826462507247925, - -0.9394862055778503, - -0.8115457892417908, - -0.6816044449806213, - -0.5495651364326477, - -0.4153229594230652, - -0.27876371145248413, - -0.13976313173770905, - 0.0018145261565223336, - 0.14611832797527313, - 0.2933120131492615, - 0.44357651472091675, - 0.5971124172210693, - 0.754143238067627, - 0.9149190783500671, - 1.079721450805664, - -0.9406002163887024, - -0.812689483165741, - -0.6827793717384338, - -0.550773024559021, - -0.41656574606895447, - -0.2800435423851013, - -0.1410822719335556, - 0.0004535017360467464, - 0.1447126269340515, - 0.2918585538864136, - 0.4420717656612396, - 0.5955525636672974, - 0.7525240182876587, - 0.9132354855537415, - 1.0779680013656616, - -0.9409714937210083, - -0.8130705952644348, - -0.6831709146499634, - -0.551175594329834, - -0.41697990894317627, - -0.2804700434207916, - -0.1415218710899353, - -4.470348358154297e-8, - 0.14424419403076172, - 0.29137420654296875, - 0.44157037138938904, - 0.595032811164856, - 0.7519844174385071, - 0.9126745462417603, - 1.0773837566375732, - -0.9406002163887024, - -0.812689483165741, - -0.6827793717384338, - -0.550773024559021, - -0.41656574606895447, - -0.2800435423851013, - -0.1410822719335556, - 0.0004535017360467464, - 0.1447126269340515, - 0.2918585538864136, - 0.4420717656612396, - 0.5955525636672974, - 0.7525240182876587, - 0.9132354855537415, - 1.0779680013656616, - -0.9394862055778503, - -0.8115457892417908, - -0.6816044449806213, - -0.5495651364326477, - -0.4153229594230652, - -0.27876371145248413, - -0.13976313173770905, - 0.0018145261565223336, - 0.14611832797527313, - 0.2933120131492615, - 0.44357651472091675, - 0.5971124172210693, - 0.754143238067627, - 0.9149190783500671, - 1.079721450805664, - -0.9376286268234253, - -0.8096388578414917, - -0.6796454191207886, - -0.5475510358810425, - -0.413250595331192, - -0.27662959694862366, - -0.13756334781646729, - 0.004084181971848011, - 0.14846254885196686, - 0.29573601484298706, - 0.44608601927757263, - 0.599713921546936, - 0.7568439841270447, - 0.9177272319793701, - 1.0826462507247925, - -0.9350262880325317, - -0.8069673180580139, - -0.6769008636474609, - -0.5447292923927307, - -0.4103471338748932, - -0.2736394703388214, - -0.13448116183280945, - 0.007264396175742149, - 0.15174736082553864, - 0.29913270473480225, - 0.44960272312164307, - 0.6033596992492676, - 0.7606290578842163, - 0.9216630458831787, - 1.0867458581924438, - -0.9316776394844055, - -0.8035294413566589, - -0.6733688116073608, - -0.5410978198051453, - -0.4066103398799896, - -0.26979100704193115, - -0.13051404058933258, - 0.011357879266142845, - 0.15597571432590485, - 0.3035053610801697, - 0.4541301429271698, - 0.6080535650253296, - 0.7655025720596313, - 0.9267311096191406, - 1.0920253992080688, - -0.9275804162025452, - -0.7993228435516357, - -0.669046938419342, - -0.536653995513916, - -0.40203744173049927, - -0.2650811970233917, - -0.12565873563289642, - 0.01636812835931778, - 0.16115136444568634, - 0.3088579773902893, - 0.45967262983322144, - 0.6138004064559937, - 0.7714698910713196, - 0.9329372048377991, - 1.0984910726547241, - -0.922731876373291, - -0.7943447828292847, - -0.6639320850372314, - -0.5313946008682251, - -0.39662498235702515, - -0.25950634479522705, - -0.11991127580404282, - 0.022299442440271378, - 0.1672789603471756, - 0.31519564986228943, - 0.4662357270717621, - 0.6206061244010925, - 0.7785375118255615, - 0.9402885437011719, - 1.1061509847640991 - ], - "yaxis": "y3" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9696143269538879, - -0.9737526774406433, - -0.9779782891273499, - -0.9822948575019836, - -0.986706554889679, - -0.9912176132202148, - -0.9958327412605286, - -1.0005569458007812, - -1.0053956508636475, - -1.0103546380996704, - -1.0154401063919067, - -1.02065908908844, - -1.0260188579559326, - -1.0315274000167847, - -1.0371936559677124, - -0.8309958577156067, - -0.8345400094985962, - -0.8381587862968445, - -0.8418554067611694, - -0.845633327960968, - -0.8494962453842163, - -0.8534481525421143, - -0.8574933409690857, - -0.8616364598274231, - -0.8658823370933533, - -0.8702364563941956, - -0.8747045993804932, - -0.8792930841445923, - -0.8840087652206421, - -0.888859212398529, - -0.6924246549606323, - -0.6953759789466858, - -0.6983894109725952, - -0.7014675736427307, - -0.7046133279800415, - -0.7078298330307007, - -0.7111203670501709, - -0.7144884467124939, - -0.7179379463195801, - -0.7214729189872742, - -0.7250978946685791, - -0.7288177013397217, - -0.7326374650001526, - -0.7365630269050598, - -0.7406005859375, - -0.5538926124572754, - -0.5562523007392883, - -0.5586615800857544, - -0.5611225962638855, - -0.5636376142501831, - -0.566209077835083, - -0.5688397288322449, - -0.5715323090553284, - -0.574289858341217, - -0.5771157145500183, - -0.5800134539604187, - -0.5829868316650391, - -0.5860401391983032, - -0.5891779065132141, - -0.5924050211906433, - -0.41539204120635986, - -0.4171610176563263, - -0.4189670979976654, - -0.4208119511604309, - -0.4226972758769989, - -0.4246249198913574, - -0.42659682035446167, - -0.42861515283584595, - -0.4306821823120117, - -0.4328003227710724, - -0.4349723160266876, - -0.43720096349716187, - -0.4394894540309906, - -0.44184115529060364, - -0.44425979256629944, - -0.2769149839878082, - -0.2780939042568207, - -0.2792975604534149, - -0.2805270254611969, - -0.28178346157073975, - -0.28306809067726135, - -0.2843821942806244, - -0.28572723269462585, - -0.28710469603538513, - -0.28851619362831116, - -0.2899635434150696, - -0.2914486527442932, - -0.2929736077785492, - -0.2945406436920166, - -0.2961522936820984, - -0.13845354318618774, - -0.13904288411140442, - -0.13964460790157318, - -0.14025920629501343, - -0.1408872902393341, - -0.14152945578098297, - -0.14218637347221375, - -0.14285872876644135, - -0.14354728162288666, - -0.14425286650657654, - -0.14497636258602142, - -0.14571870863437653, - -0.1464809775352478, - -0.1472642719745636, - -0.1480698436498642, - -4.332509462301459e-8, - -4.350950177922641e-8, - -4.369778139334812e-8, - -4.389009333749527e-8, - -4.408662235277916e-8, - -4.428755673302476e-8, - -4.449310253562544e-8, - -4.470348358154297e-8, - -4.4918934349880146e-8, - -4.5139710636021846e-8, - -4.5366085998921335e-8, - -4.559836597195499e-8, - -4.5836873852067583e-8, - -4.6081964910626994e-8, - -4.633402284071053e-8, - 0.13845354318618774, - 0.13904288411140442, - 0.13964460790157318, - 0.14025920629501343, - 0.1408872902393341, - 0.14152945578098297, - 0.14218637347221375, - 0.14285872876644135, - 0.14354728162288666, - 0.14425286650657654, - 0.14497636258602142, - 0.14571870863437653, - 0.1464809775352478, - 0.1472642719745636, - 0.1480698436498642, - 0.2769149839878082, - 0.2780939042568207, - 0.2792975604534149, - 0.2805270254611969, - 0.28178346157073975, - 0.28306809067726135, - 0.2843821942806244, - 0.28572723269462585, - 0.28710469603538513, - 0.28851619362831116, - 0.2899635434150696, - 0.2914486527442932, - 0.2929736077785492, - 0.2945406436920166, - 0.2961522936820984, - 0.41539204120635986, - 0.4171610176563263, - 0.4189670979976654, - 0.4208119511604309, - 0.4226972758769989, - 0.4246249198913574, - 0.42659682035446167, - 0.42861515283584595, - 0.4306821823120117, - 0.4328003227710724, - 0.4349723160266876, - 0.43720096349716187, - 0.4394894540309906, - 0.44184115529060364, - 0.44425979256629944, - 0.5538926124572754, - 0.5562523007392883, - 0.5586615800857544, - 0.5611225962638855, - 0.5636376142501831, - 0.566209077835083, - 0.5688397288322449, - 0.5715323090553284, - 0.574289858341217, - 0.5771157145500183, - 0.5800134539604187, - 0.5829868316650391, - 0.5860401391983032, - 0.5891779065132141, - 0.5924050211906433, - 0.6924246549606323, - 0.6953759789466858, - 0.6983894109725952, - 0.7014675736427307, - 0.7046133279800415, - 0.7078298330307007, - 0.7111203670501709, - 0.7144884467124939, - 0.7179379463195801, - 0.7214729189872742, - 0.7250978946685791, - 0.7288177013397217, - 0.7326374650001526, - 0.7365630269050598, - 0.7406005859375, - 0.8309958577156067, - 0.8345400094985962, - 0.8381587862968445, - 0.8418554067611694, - 0.845633327960968, - 0.8494962453842163, - 0.8534481525421143, - 0.8574933409690857, - 0.8616364598274231, - 0.8658823370933533, - 0.8702364563941956, - 0.8747045993804932, - 0.8792930841445923, - 0.8840087652206421, - 0.888859212398529, - 0.9696143269538879, - 0.9737526774406433, - 0.9779782891273499, - 0.9822948575019836, - 0.986706554889679, - 0.9912176132202148, - 0.9958327412605286, - 1.0005569458007812, - 1.0053956508636475, - 1.0103546380996704, - 1.0154401063919067, - 1.02065908908844, - 1.0260188579559326, - 1.0315274000167847, - 1.0371936559677124 - ], - "xaxis": "x3", - "y": [ - -0.9401378631591797, - -0.8086443543434143, - -0.6755281090736389, - -0.5407274961471558, - -0.4041769504547119, - -0.2658064067363739, - -0.12554103136062622, - 0.016699135303497314, - 0.16100016236305237, - 0.30745428800582886, - 0.45616084337234497, - 0.6072272062301636, - 0.7607694864273071, - 0.9169135093688965, - 1.075796365737915, - -0.9439396858215332, - -0.8125253915786743, - -0.6794917583465576, - -0.5447773933410645, - -0.4083169996738434, - -0.2700407803058624, - -0.12987418472766876, - 0.01226238626986742, - 0.15645462274551392, - 0.30279436707496643, - 0.45138049125671387, - 0.6023197770118713, - 0.7557278871536255, - 0.9117299318313599, - 1.0704623460769653, - -0.9471541047096252, - -0.8158066868782043, - -0.6828429102897644, - -0.5482013821601868, - -0.4118170738220215, - -0.27362048625946045, - -0.13353729248046875, - 0.008511806838214397, - 0.15261220932006836, - 0.29885539412498474, - 0.44733983278274536, - 0.5981719493865967, - 0.7514668107032776, - 0.9073490500450134, - 1.0659544467926025, - -0.9497823715209961, - -0.818489670753479, - -0.6855828166007996, - -0.5510007739067078, - -0.414678692817688, - -0.2765471339225769, - -0.13653208315372467, - 0.0054455907084047794, - 0.1494709998369217, - 0.29563531279563904, - 0.4440367519855499, - 0.5947813391685486, - 0.7479837536811829, - 0.9037682414054871, - 1.062269926071167, - -0.9518255591392517, - -0.8205752968788147, - -0.6877127289772034, - -0.5531769394874573, - -0.4169031083583832, - -0.27882206439971924, - -0.13885991275310516, - 0.0030622731428593397, - 0.14702944457530975, - 0.2931325435638428, - 0.4414695203304291, - 0.5921461582183838, - 0.7452768087387085, - 0.9009853005409241, - 1.0594065189361572, - -0.9532844424247742, - -0.8220644593238831, - -0.6892334818840027, - -0.5547306537628174, - -0.41849130392074585, - -0.28044629096984863, - -0.14052189886569977, - 0.0013607153668999672, - 0.14528632164001465, - 0.2913457453250885, - 0.4396367371082306, - 0.5902648568153381, - 0.7433443069458008, - 0.8989986777305603, - 1.0573625564575195, - -0.9541594982147217, - -0.8229576945304871, - -0.6901456713676453, - -0.5556626319885254, - -0.41944393515586853, - -0.2814205586910248, - -0.14151877164840698, - 0.0003401046560611576, - 0.14424081146717072, - 0.2902740240097046, - 0.43853744864463806, - 0.58913654088974, - 0.7421852946281433, - 0.8978071808815002, - 1.0561366081237793, - -0.9544511437416077, - -0.8232554197311401, - -0.6904497146606445, - -0.55597323179245, - -0.41976141929626465, - -0.2817452549934387, - -0.1418510228395462, - -4.470348358154297e-8, - 0.1438923478126526, - 0.28991687297821045, - 0.4381710886955261, - 0.588760495185852, - 0.741798996925354, - 0.8974100947380066, - 1.0557280778884888, - -0.9541594982147217, - -0.8229576945304871, - -0.6901456713676453, - -0.5556626319885254, - -0.41944393515586853, - -0.2814205586910248, - -0.14151877164840698, - 0.0003401046560611576, - 0.14424081146717072, - 0.2902740240097046, - 0.43853744864463806, - 0.58913654088974, - 0.7421852946281433, - 0.8978071808815002, - 1.0561366081237793, - -0.9532844424247742, - -0.8220644593238831, - -0.6892334818840027, - -0.5547306537628174, - -0.41849130392074585, - -0.28044629096984863, - -0.14052189886569977, - 0.0013607153668999672, - 0.14528632164001465, - 0.2913457453250885, - 0.4396367371082306, - 0.5902648568153381, - 0.7433443069458008, - 0.8989986777305603, - 1.0573625564575195, - -0.9518255591392517, - -0.8205752968788147, - -0.6877127289772034, - -0.5531769394874573, - -0.4169031083583832, - -0.27882206439971924, - -0.13885991275310516, - 0.0030622731428593397, - 0.14702944457530975, - 0.2931325435638428, - 0.4414695203304291, - 0.5921461582183838, - 0.7452768087387085, - 0.9009853005409241, - 1.0594065189361572, - -0.9497823715209961, - -0.818489670753479, - -0.6855828166007996, - -0.5510007739067078, - -0.414678692817688, - -0.2765471339225769, - -0.13653208315372467, - 0.0054455907084047794, - 0.1494709998369217, - 0.29563531279563904, - 0.4440367519855499, - 0.5947813391685486, - 0.7479837536811829, - 0.9037682414054871, - 1.062269926071167, - -0.9471541047096252, - -0.8158066868782043, - -0.6828429102897644, - -0.5482013821601868, - -0.4118170738220215, - -0.27362048625946045, - -0.13353729248046875, - 0.008511806838214397, - 0.15261220932006836, - 0.29885539412498474, - 0.44733983278274536, - 0.5981719493865967, - 0.7514668107032776, - 0.9073490500450134, - 1.0659544467926025, - -0.9439396858215332, - -0.8125253915786743, - -0.6794917583465576, - -0.5447773933410645, - -0.4083169996738434, - -0.2700407803058624, - -0.12987418472766876, - 0.01226238626986742, - 0.15645462274551392, - 0.30279436707496643, - 0.45138049125671387, - 0.6023197770118713, - 0.7557278871536255, - 0.9117299318313599, - 1.0704623460769653, - -0.9401378631591797, - -0.8086443543434143, - -0.6755281090736389, - -0.5407274961471558, - -0.4041769504547119, - -0.2658064067363739, - -0.12554103136062622, - 0.016699135303497314, - 0.16100016236305237, - 0.30745428800582886, - 0.45616084337234497, - 0.6072272062301636, - 0.7607694864273071, - 0.9169135093688965, - 1.075796365737915 - ], - "yaxis": "y3" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9791397452354431, - -0.9820223450660706, - -0.9849469661712646, - -0.9879149198532104, - -0.9909274578094482, - -0.9939860701560974, - -0.9970921277999878, - -1.0002472400665283, - -1.0034528970718384, - -1.0067108869552612, - -1.0100228786468506, - -1.0133907794952393, - -1.0168167352676392, - -1.020302653312683, - -1.023850679397583, - -0.8392141461372375, - -0.8416839241981506, - -0.8441897034645081, - -0.8467325568199158, - -0.8493136763572693, - -0.8519341945648193, - -0.8545953631401062, - -0.8572984933853149, - -0.8600449562072754, - -0.8628361225128174, - -0.8656736612319946, - -0.8685590624809265, - -0.8714939951896667, - -0.8744803667068481, - -0.8775199055671692, - -0.6993109583854675, - -0.7013683915138245, - -0.7034558057785034, - -0.7055741548538208, - -0.7077242732048035, - -0.7099072337150574, - -0.7121240496635437, - -0.7143757939338684, - -0.7166635990142822, - -0.7189886569976807, - -0.7213522791862488, - -0.7237557768821716, - -0.726200520992279, - -0.7286880016326904, - -0.7312198281288147, - -0.5594263076782227, - -0.5610718131065369, - -0.5627412796020508, - -0.5644354820251465, - -0.5661550760269165, - -0.5679008960723877, - -0.5696737766265869, - -0.5714746117591858, - -0.573304295539856, - -0.575163722038269, - -0.5770540237426758, - -0.5789760947227478, - -0.5809312462806702, - -0.5829205513000488, - -0.5849452614784241, - -0.41955670714378357, - -0.42079055309295654, - -0.4220423996448517, - -0.4233127236366272, - -0.42460212111473083, - -0.42591121792793274, - -0.4272405505180359, - -0.4285908341407776, - -0.42996275424957275, - -0.4313569664955139, - -0.43277430534362793, - -0.4342155158519745, - -0.43568146228790283, - -0.4371730089187622, - -0.438691109418869, - -0.2796982526779175, - -0.2805207073688507, - -0.2813551127910614, - -0.282201886177063, - -0.28306135535240173, - -0.2839339077472687, - -0.28481999039649963, - -0.28572002053260803, - -0.2866344749927521, - -0.2875637710094452, - -0.28850850462913513, - -0.2894691228866577, - -0.2904462218284607, - -0.29144036769866943, - -0.29245224595069885, - -0.13984723389148712, - -0.14025841653347015, - -0.1406755894422531, - -0.14109893143177032, - -0.14152862131595612, - -0.141964852809906, - -0.1424078494310379, - -0.14285781979560852, - -0.14331498742103577, - -0.14377960562705994, - -0.14425189793109894, - -0.14473216235637665, - -0.14522065222263336, - -0.14571768045425415, - -0.1462235450744629, - -4.3761428258903834e-8, - -4.389009333749527e-8, - -4.402063069619544e-8, - -4.4153100731136874e-8, - -4.428755673302476e-8, - -4.442406265070531e-8, - -4.456268243302475e-8, - -4.470348358154297e-8, - -4.484653715053355e-8, - -4.4991921299697424e-8, - -4.5139710636021846e-8, - -4.528998687192143e-8, - -4.544284237795182e-8, - -4.559836597195499e-8, - -4.5756660682627626e-8, - 0.13984723389148712, - 0.14025841653347015, - 0.1406755894422531, - 0.14109893143177032, - 0.14152862131595612, - 0.141964852809906, - 0.1424078494310379, - 0.14285781979560852, - 0.14331498742103577, - 0.14377960562705994, - 0.14425189793109894, - 0.14473216235637665, - 0.14522065222263336, - 0.14571768045425415, - 0.1462235450744629, - 0.2796982526779175, - 0.2805207073688507, - 0.2813551127910614, - 0.282201886177063, - 0.28306135535240173, - 0.2839339077472687, - 0.28481999039649963, - 0.28572002053260803, - 0.2866344749927521, - 0.2875637710094452, - 0.28850850462913513, - 0.2894691228866577, - 0.2904462218284607, - 0.29144036769866943, - 0.29245224595069885, - 0.41955670714378357, - 0.42079055309295654, - 0.4220423996448517, - 0.4233127236366272, - 0.42460212111473083, - 0.42591121792793274, - 0.4272405505180359, - 0.4285908341407776, - 0.42996275424957275, - 0.4313569664955139, - 0.43277430534362793, - 0.4342155158519745, - 0.43568146228790283, - 0.4371730089187622, - 0.438691109418869, - 0.5594263076782227, - 0.5610718131065369, - 0.5627412796020508, - 0.5644354820251465, - 0.5661550760269165, - 0.5679008960723877, - 0.5696737766265869, - 0.5714746117591858, - 0.573304295539856, - 0.575163722038269, - 0.5770540237426758, - 0.5789760947227478, - 0.5809312462806702, - 0.5829205513000488, - 0.5849452614784241, - 0.6993109583854675, - 0.7013683915138245, - 0.7034558057785034, - 0.7055741548538208, - 0.7077242732048035, - 0.7099072337150574, - 0.7121240496635437, - 0.7143757939338684, - 0.7166635990142822, - 0.7189886569976807, - 0.7213522791862488, - 0.7237557768821716, - 0.726200520992279, - 0.7286880016326904, - 0.7312198281288147, - 0.8392141461372375, - 0.8416839241981506, - 0.8441897034645081, - 0.8467325568199158, - 0.8493136763572693, - 0.8519341945648193, - 0.8545953631401062, - 0.8572984933853149, - 0.8600449562072754, - 0.8628361225128174, - 0.8656736612319946, - 0.8685590624809265, - 0.8714939951896667, - 0.8744803667068481, - 0.8775199055671692, - 0.9791397452354431, - 0.9820223450660706, - 0.9849469661712646, - 0.9879149198532104, - 0.9909274578094482, - 0.9939860701560974, - 0.9970921277999878, - 1.0002472400665283, - 1.0034528970718384, - 1.0067108869552612, - 1.0100228786468506, - 1.0133907794952393, - 1.0168167352676392, - 1.020302653312683, - 1.023850679397583 - ], - "xaxis": "x3", - "y": [ - -0.9587101340293884, - -0.8238058090209961, - -0.6877403855323792, - -0.5504832863807678, - -0.4120027720928192, - -0.2722654640674591, - -0.13123641908168793, - 0.011120683513581753, - 0.15484429895877838, - 0.2999745011329651, - 0.4465533494949341, - 0.5946251749992371, - 0.7442366480827332, - 0.8954365849494934, - 1.0482769012451172, - -0.961367130279541, - -0.8265012502670288, - -0.6904754638671875, - -0.5532591938972473, - -0.41482070088386536, - -0.27512675523757935, - -0.13414248824119568, - 0.008168408647179604, - 0.15184429287910461, - 0.2969251573085785, - 0.44345298409461975, - 0.5914720296859741, - 0.7410287857055664, - 0.89217209815979, - 1.0449535846710205, - -0.9636145234107971, - -0.8287811875343323, - -0.69278883934021, - -0.5556070804595947, - -0.4172041714191437, - -0.27754688262939453, - -0.13660043478012085, - 0.005671391263604164, - 0.14930693805217743, - 0.2943460941314697, - 0.440830796957016, - 0.5888051986694336, - 0.7383157014846802, - 0.8894110918045044, - 1.0421429872512817, - -0.9654527306556702, - -0.8306459784507751, - -0.6946810483932495, - -0.5575274229049683, - -0.4191536009311676, - -0.27952632308006287, - -0.1386108100414276, - 0.003629096783697605, - 0.14723165333271027, - 0.29223671555519104, - 0.43868616223335266, - 0.586624026298523, - 0.7360967993736267, - 0.8871530890464783, - 1.039844274520874, - -0.9668821096420288, - -0.8320960402488708, - -0.6961523294448853, - -0.5590206980705261, - -0.42066946625709534, - -0.2810654640197754, - -0.1401739865541458, - 0.002041095169261098, - 0.1456180065870285, - 0.2905965745449066, - 0.43701863288879395, - 0.5849281549453735, - 0.734371542930603, - 0.8853973746299744, - 1.0380570888519287, - -0.9679028987884521, - -0.8331315517425537, - -0.6972030997276306, - -0.5600870847702026, - -0.4217519760131836, - -0.282164603471756, - -0.1412903070449829, - 0.0009070485248230398, - 0.14446566998958588, - 0.2894253134727478, - 0.4358277916908264, - 0.5837171077728271, - 0.7331395149230957, - 0.884143590927124, - 1.036780834197998, - -0.9685152769088745, - -0.8337528109550476, - -0.6978334784507751, - -0.5607268214225769, - -0.42240139842033386, - -0.28282400965690613, - -0.141960009932518, - 0.000226716510951519, - 0.1437743604183197, - 0.2887226641178131, - 0.43511340022087097, - 0.5829905271530151, - 0.7324004173278809, - 0.8833914995193481, - 1.0360151529312134, - -0.9687194228172302, - -0.8339598774909973, - -0.6980435848236084, - -0.5609400868415833, - -0.4226178824901581, - -0.2830438017845154, - -0.14218322932720184, - -4.470348358154297e-8, - 0.14354392886161804, - 0.2884884476661682, - 0.4348752796649933, - 0.5827484130859375, - 0.7321540713310242, - 0.8831408023834229, - 1.0357599258422852, - -0.9685152769088745, - -0.8337528109550476, - -0.6978334784507751, - -0.5607268214225769, - -0.42240139842033386, - -0.28282400965690613, - -0.141960009932518, - 0.000226716510951519, - 0.1437743604183197, - 0.2887226641178131, - 0.43511340022087097, - 0.5829905271530151, - 0.7324004173278809, - 0.8833914995193481, - 1.0360151529312134, - -0.9679028987884521, - -0.8331315517425537, - -0.6972030997276306, - -0.5600870847702026, - -0.4217519760131836, - -0.282164603471756, - -0.1412903070449829, - 0.0009070485248230398, - 0.14446566998958588, - 0.2894253134727478, - 0.4358277916908264, - 0.5837171077728271, - 0.7331395149230957, - 0.884143590927124, - 1.036780834197998, - -0.9668821096420288, - -0.8320960402488708, - -0.6961523294448853, - -0.5590206980705261, - -0.42066946625709534, - -0.2810654640197754, - -0.1401739865541458, - 0.002041095169261098, - 0.1456180065870285, - 0.2905965745449066, - 0.43701863288879395, - 0.5849281549453735, - 0.734371542930603, - 0.8853973746299744, - 1.0380570888519287, - -0.9654527306556702, - -0.8306459784507751, - -0.6946810483932495, - -0.5575274229049683, - -0.4191536009311676, - -0.27952632308006287, - -0.1386108100414276, - 0.003629096783697605, - 0.14723165333271027, - 0.29223671555519104, - 0.43868616223335266, - 0.586624026298523, - 0.7360967993736267, - 0.8871530890464783, - 1.039844274520874, - -0.9636145234107971, - -0.8287811875343323, - -0.69278883934021, - -0.5556070804595947, - -0.4172041714191437, - -0.27754688262939453, - -0.13660043478012085, - 0.005671391263604164, - 0.14930693805217743, - 0.2943460941314697, - 0.440830796957016, - 0.5888051986694336, - 0.7383157014846802, - 0.8894110918045044, - 1.0421429872512817, - -0.961367130279541, - -0.8265012502670288, - -0.6904754638671875, - -0.5532591938972473, - -0.41482070088386536, - -0.27512675523757935, - -0.13414248824119568, - 0.008168408647179604, - 0.15184429287910461, - 0.2969251573085785, - 0.44345298409461975, - 0.5914720296859741, - 0.7410287857055664, - 0.89217209815979, - 1.0449535846710205, - -0.9587101340293884, - -0.8238058090209961, - -0.6877403855323792, - -0.5504832863807678, - -0.4120027720928192, - -0.2722654640674591, - -0.13123641908168793, - 0.011120683513581753, - 0.15484429895877838, - 0.2999745011329651, - 0.4465533494949341, - 0.5946251749992371, - 0.7442366480827332, - 0.8954365849494934, - 1.0482769012451172 - ], - "yaxis": "y3" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9892436265945435, - -0.990753710269928, - -0.9922753572463989, - -0.9938085675239563, - -0.995353639125824, - -0.9969107508659363, - -0.9984800219535828, - -1.0000617504119873, - -1.0016560554504395, - -1.003263235092163, - -1.0048834085464478, - -1.0065168142318726, - -1.0081636905670166, - -1.009824275970459, - -1.0114988088607788, - -0.8479100465774536, - -0.8492043018341064, - -0.8505083918571472, - -0.8518224954605103, - -0.8531466722488403, - -0.8544811606407166, - -0.8558261394500732, - -0.8571817278862, - -0.8585481643676758, - -0.8599255681037903, - -0.8613141179084778, - -0.8627139925956726, - -0.8641254901885986, - -0.8655486702919006, - -0.8669837713241577, - -0.7065825462341309, - -0.7076610326766968, - -0.7087476253509521, - -0.7098425626754761, - -0.7109459638595581, - -0.7120579481124878, - -0.7131786942481995, - -0.7143082022666931, - -0.7154467701911926, - -0.7165945172309875, - -0.7177515029907227, - -0.7189180254936218, - -0.7200940847396851, - -0.7212799787521362, - -0.7224757671356201, - -0.5652599930763245, - -0.5661227107048035, - -0.566991925239563, - -0.5678678154945374, - -0.5687505006790161, - -0.5696399807929993, - -0.5705364942550659, - -0.5714400410652161, - -0.5723508596420288, - -0.5732689499855042, - -0.5741944909095764, - -0.5751275420188904, - -0.5760683417320251, - -0.5770170092582703, - -0.5779735445976257, - -0.4239414930343628, - -0.42458847165107727, - -0.4252403676509857, - -0.4258972406387329, - -0.4265592098236084, - -0.42722630500793457, - -0.4278986155986786, - -0.42857626080513, - -0.4292593002319336, - -0.4299478232860565, - -0.43064194917678833, - -0.4313417375087738, - -0.4320472776889801, - -0.4327586889266968, - -0.433476060628891, - -0.2826260030269623, - -0.283057302236557, - -0.2834918797016144, - -0.2839297652244568, - -0.2843710482120514, - -0.2848157584667206, - -0.28526395559310913, - -0.2857156991958618, - -0.2861710488796234, - -0.2866300344467163, - -0.28709277510643005, - -0.28755927085876465, - -0.28802961111068726, - -0.28850385546684265, - -0.288982093334198, - -0.14131246507167816, - -0.14152811467647552, - -0.14174538850784302, - -0.14196434617042542, - -0.14218497276306152, - -0.14240732789039612, - -0.1426314264535904, - -0.14285728335380554, - -0.14308494329452515, - -0.1433144360780716, - -0.14354579150676727, - -0.14377903938293457, - -0.14401420950889587, - -0.14425133168697357, - -0.14449043571949005, - -4.422007648940962e-8, - -4.428755673302476e-8, - -4.435554856740964e-8, - -4.442406265070531e-8, - -4.449310253562544e-8, - -4.456268243302475e-8, - -4.463280589561691e-8, - -4.470348358154297e-8, - -4.4774726148943955e-8, - -4.484653715053355e-8, - -4.4918934349880146e-8, - -4.4991921299697424e-8, - -4.506550865812642e-8, - -4.5139710636021846e-8, - -4.5214530786097384e-8, - 0.14131246507167816, - 0.14152811467647552, - 0.14174538850784302, - 0.14196434617042542, - 0.14218497276306152, - 0.14240732789039612, - 0.1426314264535904, - 0.14285728335380554, - 0.14308494329452515, - 0.1433144360780716, - 0.14354579150676727, - 0.14377903938293457, - 0.14401420950889587, - 0.14425133168697357, - 0.14449043571949005, - 0.2826260030269623, - 0.283057302236557, - 0.2834918797016144, - 0.2839297652244568, - 0.2843710482120514, - 0.2848157584667206, - 0.28526395559310913, - 0.2857156991958618, - 0.2861710488796234, - 0.2866300344467163, - 0.28709277510643005, - 0.28755927085876465, - 0.28802961111068726, - 0.28850385546684265, - 0.288982093334198, - 0.4239414930343628, - 0.42458847165107727, - 0.4252403676509857, - 0.4258972406387329, - 0.4265592098236084, - 0.42722630500793457, - 0.4278986155986786, - 0.42857626080513, - 0.4292593002319336, - 0.4299478232860565, - 0.43064194917678833, - 0.4313417375087738, - 0.4320472776889801, - 0.4327586889266968, - 0.433476060628891, - 0.5652599930763245, - 0.5661227107048035, - 0.566991925239563, - 0.5678678154945374, - 0.5687505006790161, - 0.5696399807929993, - 0.5705364942550659, - 0.5714400410652161, - 0.5723508596420288, - 0.5732689499855042, - 0.5741944909095764, - 0.5751275420188904, - 0.5760683417320251, - 0.5770170092582703, - 0.5779735445976257, - 0.7065825462341309, - 0.7076610326766968, - 0.7087476253509521, - 0.7098425626754761, - 0.7109459638595581, - 0.7120579481124878, - 0.7131786942481995, - 0.7143082022666931, - 0.7154467701911926, - 0.7165945172309875, - 0.7177515029907227, - 0.7189180254936218, - 0.7200940847396851, - 0.7212799787521362, - 0.7224757671356201, - 0.8479100465774536, - 0.8492043018341064, - 0.8505083918571472, - 0.8518224954605103, - 0.8531466722488403, - 0.8544811606407166, - 0.8558261394500732, - 0.8571817278862, - 0.8585481643676758, - 0.8599255681037903, - 0.8613141179084778, - 0.8627139925956726, - 0.8641254901885986, - 0.8655486702919006, - 0.8669837713241577, - 0.9892436265945435, - 0.990753710269928, - 0.9922753572463989, - 0.9938085675239563, - 0.995353639125824, - 0.9969107508659363, - 0.9984800219535828, - 1.0000617504119873, - 1.0016560554504395, - 1.003263235092163, - 1.0048834085464478, - 1.0065168142318726, - 1.0081636905670166, - 1.009824275970459, - 1.0114988088607788 - ], - "xaxis": "x3", - "y": [ - -0.9786022901535034, - -0.8399314880371094, - -0.7006341814994812, - -0.5607017874717712, - -0.4201256036758423, - -0.27889660000801086, - -0.13700558245182037, - 0.005556710995733738, - 0.1488001048564911, - 0.2927343547344208, - 0.43736955523490906, - 0.5827160477638245, - 0.7287845015525818, - 0.8755856156349182, - 1.0231306552886963, - -0.9799991846084595, - -0.8413389921188354, - -0.7020524144172668, - -0.562130868434906, - -0.4215657711029053, - -0.2803480327129364, - -0.1384684443473816, - 0.004082235973328352, - 0.14731381833553314, - 0.2912360727787018, - 0.4358590841293335, - 0.5811931490898132, - 0.7272489666938782, - 0.8740373253822327, - 1.0215692520141602, - -0.9811810851097107, - -0.8425297737121582, - -0.7032523155212402, - -0.5633400082588196, - -0.4227842688560486, - -0.2815760374069214, - -0.13970611989498138, - 0.0028347347397357225, - 0.14605633914470673, - 0.28996846079826355, - 0.43458113074302673, - 0.5799047350883484, - 0.7259498834609985, - 0.8727273344993591, - 1.020248293876648, - -0.9821479916572571, - -0.843504011631012, - -0.7042340040206909, - -0.564329206943512, - -0.4237811267375946, - -0.2825806736946106, - -0.14071866869926453, - 0.001814141753129661, - 0.14502757787704468, - 0.28893139958381653, - 0.4335356056690216, - 0.5788506269454956, - 0.7248870730400085, - 0.8716556429862976, - 1.0191675424575806, - -0.9828999638557434, - -0.8442617058753967, - -0.7049974203109741, - -0.5650985240936279, - -0.4245564043521881, - -0.2833620309829712, - -0.141506165266037, - 0.0010204038117080927, - 0.14422748982906342, - 0.28812482953071594, - 0.4327225089073181, - 0.5780308246612549, - 0.7240604758262634, - 0.8708221912384033, - 1.0183271169662476, - -0.9834371209144592, - -0.8448028564453125, - -0.7055427432060242, - -0.5656480193138123, - -0.4251101613044739, - -0.2839200794696808, - -0.14206862449645996, - 0.0004534779582172632, - 0.14365601539611816, - 0.2875487804412842, - 0.4321417510509491, - 0.5774453282356262, - 0.7234700918197632, - 0.8702268600463867, - 1.0177267789840698, - -0.983759343624115, - -0.8451275825500488, - -0.7058699131011963, - -0.5659777522087097, - -0.4254423975944519, - -0.28425490856170654, - -0.14240609109401703, - 0.00011333441943861544, - 0.14331315457820892, - 0.2872031331062317, - 0.43179330229759216, - 0.5770940184593201, - 0.7231159210205078, - 0.8698697090148926, - 1.017366647720337, - -0.9838667511940002, - -0.8452358245849609, - -0.7059789299964905, - -0.5660876035690308, - -0.4255531430244446, - -0.28436651825904846, - -0.14251857995986938, - -4.470348358154297e-8, - 0.1431988626718521, - 0.28708791732788086, - 0.4316771626472473, - 0.5769768953323364, - 0.7229978442192078, - 0.8697506189346313, - 1.0172464847564697, - -0.983759343624115, - -0.8451275825500488, - -0.7058699131011963, - -0.5659777522087097, - -0.4254423975944519, - -0.28425490856170654, - -0.14240609109401703, - 0.00011333441943861544, - 0.14331315457820892, - 0.2872031331062317, - 0.43179330229759216, - 0.5770940184593201, - 0.7231159210205078, - 0.8698697090148926, - 1.017366647720337, - -0.9834371209144592, - -0.8448028564453125, - -0.7055427432060242, - -0.5656480193138123, - -0.4251101613044739, - -0.2839200794696808, - -0.14206862449645996, - 0.0004534779582172632, - 0.14365601539611816, - 0.2875487804412842, - 0.4321417510509491, - 0.5774453282356262, - 0.7234700918197632, - 0.8702268600463867, - 1.0177267789840698, - -0.9828999638557434, - -0.8442617058753967, - -0.7049974203109741, - -0.5650985240936279, - -0.4245564043521881, - -0.2833620309829712, - -0.141506165266037, - 0.0010204038117080927, - 0.14422748982906342, - 0.28812482953071594, - 0.4327225089073181, - 0.5780308246612549, - 0.7240604758262634, - 0.8708221912384033, - 1.0183271169662476, - -0.9821479916572571, - -0.843504011631012, - -0.7042340040206909, - -0.564329206943512, - -0.4237811267375946, - -0.2825806736946106, - -0.14071866869926453, - 0.001814141753129661, - 0.14502757787704468, - 0.28893139958381653, - 0.4335356056690216, - 0.5788506269454956, - 0.7248870730400085, - 0.8716556429862976, - 1.0191675424575806, - -0.9811810851097107, - -0.8425297737121582, - -0.7032523155212402, - -0.5633400082588196, - -0.4227842688560486, - -0.2815760374069214, - -0.13970611989498138, - 0.0028347347397357225, - 0.14605633914470673, - 0.28996846079826355, - 0.43458113074302673, - 0.5799047350883484, - 0.7259498834609985, - 0.8727273344993591, - 1.020248293876648, - -0.9799991846084595, - -0.8413389921188354, - -0.7020524144172668, - -0.562130868434906, - -0.4215657711029053, - -0.2803480327129364, - -0.1384684443473816, - 0.004082235973328352, - 0.14731381833553314, - 0.2912360727787018, - 0.4358590841293335, - 0.5811931490898132, - 0.7272489666938782, - 0.8740373253822327, - 1.0215692520141602, - -0.9786022901535034, - -0.8399314880371094, - -0.7006341814994812, - -0.5607017874717712, - -0.4201256036758423, - -0.27889660000801086, - -0.13700558245182037, - 0.005556710995733738, - 0.1488001048564911, - 0.2927343547344208, - 0.43736955523490906, - 0.5827160477638245, - 0.7287845015525818, - 0.8755856156349182, - 1.0231306552886963 - ], - "yaxis": "y3" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": true, - "x": [ - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - -4.470348358154297e-8, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - "xaxis": "x3", - "y": [ - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.516914486885071e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.50456028033841e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.4941064203385395e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.485553617428195e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.478901161064641e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.4741497617906134e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.471298709063376e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.471298709063376e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.4741497617906134e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.478901161064641e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.485553617428195e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.4941064203385395e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.50456028033841e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.516914486885071e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1 - ], - "yaxis": "y3" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -1.0114988088607788, - -1.0098243951797485, - -1.0081636905670166, - -1.0065168142318726, - -1.0048834085464478, - -1.003263235092163, - -1.0016560554504395, - -1.0000617504119873, - -0.9984800219535828, - -0.9969107508659363, - -0.995353639125824, - -0.9938085675239563, - -0.9922753572463989, - -0.990753710269928, - -0.9892436265945435, - -0.8669837713241577, - -0.8655486702919006, - -0.8641254901885986, - -0.8627139925956726, - -0.8613141179084778, - -0.8599255681037903, - -0.8585481643676758, - -0.8571817278862, - -0.8558261394500732, - -0.8544811606407166, - -0.8531466722488403, - -0.8518224954605103, - -0.8505083918571472, - -0.8492043018341064, - -0.8479100465774536, - -0.7224757671356201, - -0.7212799787521362, - -0.7200940847396851, - -0.7189180254936218, - -0.7177515029907227, - -0.7165945172309875, - -0.7154467701911926, - -0.7143082022666931, - -0.7131786942481995, - -0.7120579481124878, - -0.7109459638595581, - -0.7098425626754761, - -0.7087476253509521, - -0.7076610326766968, - -0.7065825462341309, - -0.5779735445976257, - -0.5770170092582703, - -0.5760683417320251, - -0.5751275420188904, - -0.5741944909095764, - -0.5732689499855042, - -0.5723508596420288, - -0.5714400410652161, - -0.5705364942550659, - -0.5696399807929993, - -0.5687505006790161, - -0.5678678154945374, - -0.566991925239563, - -0.5661227107048035, - -0.5652599930763245, - -0.433476060628891, - -0.4327586889266968, - -0.4320472776889801, - -0.4313417375087738, - -0.43064194917678833, - -0.4299478232860565, - -0.4292593002319336, - -0.42857626080513, - -0.4278986155986786, - -0.42722630500793457, - -0.4265592098236084, - -0.4258972406387329, - -0.4252403676509857, - -0.42458847165107727, - -0.4239414930343628, - -0.288982093334198, - -0.28850385546684265, - -0.28802961111068726, - -0.28755927085876465, - -0.28709277510643005, - -0.2866300344467163, - -0.2861710488796234, - -0.2857156991958618, - -0.28526395559310913, - -0.2848157584667206, - -0.2843710482120514, - -0.2839297652244568, - -0.2834918797016144, - -0.283057302236557, - -0.2826260030269623, - -0.14449043571949005, - -0.14425133168697357, - -0.14401420950889587, - -0.14377903938293457, - -0.14354579150676727, - -0.1433144360780716, - -0.14308494329452515, - -0.14285728335380554, - -0.1426314264535904, - -0.14240732789039612, - -0.14218497276306152, - -0.14196434617042542, - -0.14174538850784302, - -0.14152811467647552, - -0.14131246507167816, - -4.5214530786097384e-8, - -4.5139710636021846e-8, - -4.506550865812642e-8, - -4.4991921299697424e-8, - -4.4918934349880146e-8, - -4.484653715053355e-8, - -4.4774726148943955e-8, - -4.470348358154297e-8, - -4.463280589561691e-8, - -4.456268243302475e-8, - -4.449310253562544e-8, - -4.442406265070531e-8, - -4.435554856740964e-8, - -4.428755673302476e-8, - -4.422007648940962e-8, - 0.14449043571949005, - 0.14425133168697357, - 0.14401420950889587, - 0.14377903938293457, - 0.14354579150676727, - 0.1433144360780716, - 0.14308494329452515, - 0.14285728335380554, - 0.1426314264535904, - 0.14240732789039612, - 0.14218497276306152, - 0.14196434617042542, - 0.14174538850784302, - 0.14152811467647552, - 0.14131246507167816, - 0.288982093334198, - 0.28850385546684265, - 0.28802961111068726, - 0.28755927085876465, - 0.28709277510643005, - 0.2866300344467163, - 0.2861710488796234, - 0.2857156991958618, - 0.28526395559310913, - 0.2848157584667206, - 0.2843710482120514, - 0.2839297652244568, - 0.2834918797016144, - 0.283057302236557, - 0.2826260030269623, - 0.433476060628891, - 0.4327586889266968, - 0.4320472776889801, - 0.4313417375087738, - 0.43064194917678833, - 0.4299478232860565, - 0.4292593002319336, - 0.42857626080513, - 0.4278986155986786, - 0.42722630500793457, - 0.4265592098236084, - 0.4258972406387329, - 0.4252403676509857, - 0.42458847165107727, - 0.4239414930343628, - 0.5779735445976257, - 0.5770170092582703, - 0.5760683417320251, - 0.5751275420188904, - 0.5741944909095764, - 0.5732689499855042, - 0.5723508596420288, - 0.5714400410652161, - 0.5705364942550659, - 0.5696399807929993, - 0.5687505006790161, - 0.5678678154945374, - 0.566991925239563, - 0.5661227107048035, - 0.5652599930763245, - 0.7224757671356201, - 0.7212799787521362, - 0.7200940847396851, - 0.7189180254936218, - 0.7177515029907227, - 0.7165945172309875, - 0.7154467701911926, - 0.7143082022666931, - 0.7131786942481995, - 0.7120579481124878, - 0.7109459638595581, - 0.7098425626754761, - 0.7087476253509521, - 0.7076610326766968, - 0.7065825462341309, - 0.8669837713241577, - 0.8655486702919006, - 0.8641254901885986, - 0.8627139925956726, - 0.8613141179084778, - 0.8599255681037903, - 0.8585481643676758, - 0.8571817278862, - 0.8558261394500732, - 0.8544811606407166, - 0.8531466722488403, - 0.8518224954605103, - 0.8505083918571472, - 0.8492043018341064, - 0.8479100465774536, - 1.0114988088607788, - 1.0098243951797485, - 1.0081636905670166, - 1.0065168142318726, - 1.0048834085464478, - 1.003263235092163, - 1.0016560554504395, - 1.0000617504119873, - 0.9984800219535828, - 0.9969107508659363, - 0.995353639125824, - 0.9938085675239563, - 0.9922753572463989, - 0.990753710269928, - 0.9892436265945435 - ], - "xaxis": "x3", - "y": [ - -1.0231306552886963, - -0.8755856156349182, - -0.7287845015525818, - -0.5827160477638245, - -0.43736955523490906, - -0.2927343547344208, - -0.1488001048564911, - -0.005556801334023476, - 0.13700558245182037, - 0.27889660000801086, - 0.4201256036758423, - 0.5607017874717712, - 0.7006341814994812, - 0.8399314880371094, - 0.9786022901535034, - -1.0215692520141602, - -0.8740373253822327, - -0.7272489666938782, - -0.5811931490898132, - -0.4358590841293335, - -0.2912360727787018, - -0.14731381833553314, - -0.004082325845956802, - 0.1384684443473816, - 0.2803480327129364, - 0.4215657711029053, - 0.5621309280395508, - 0.7020524144172668, - 0.8413389921188354, - 0.9799991846084595, - -1.020248293876648, - -0.8727273344993591, - -0.7259498834609985, - -0.5799047350883484, - -0.43458113074302673, - -0.28996846079826355, - -0.14605633914470673, - -0.002834824612364173, - 0.13970611989498138, - 0.2815760374069214, - 0.4227842688560486, - 0.5633400082588196, - 0.7032523155212402, - 0.8425297737121582, - 0.9811810851097107, - -1.0191675424575806, - -0.8716556429862976, - -0.7248870730400085, - -0.5788506269454956, - -0.4335356056690216, - -0.28893139958381653, - -0.14502757787704468, - -0.0018142315093427896, - 0.14071866869926453, - 0.2825806736946106, - 0.4237811267375946, - 0.564329206943512, - 0.7042339444160461, - 0.843504011631012, - 0.9821479916572571, - -1.0183271169662476, - -0.8708221912384033, - -0.7240604758262634, - -0.5780308246612549, - -0.4327225089073181, - -0.28812482953071594, - -0.14422748982906342, - -0.0010204933350905776, - 0.141506165266037, - 0.2833620309829712, - 0.4245564043521881, - 0.5650985240936279, - 0.7049974203109741, - 0.8442617058753967, - 0.9828999638557434, - -1.0177267789840698, - -0.8702268600463867, - -0.7234700918197632, - -0.5774453282356262, - -0.4321417510509491, - -0.2875487804412842, - -0.14365601539611816, - -0.0004535674233920872, - 0.14206862449645996, - 0.2839200794696808, - 0.4251101613044739, - 0.5656480193138123, - 0.7055427432060242, - 0.8448028564453125, - 0.9834371209144592, - -1.017366647720337, - -0.8698697090148926, - -0.7231159210205078, - -0.5770940184593201, - -0.43179330229759216, - -0.2872031331062317, - -0.14331315457820892, - -0.00011342384095769376, - 0.14240609109401703, - 0.28425490856170654, - 0.4254423975944519, - 0.5659777522087097, - 0.7058699131011963, - 0.8451275825500488, - 0.983759343624115, - -1.0172464847564697, - -0.8697506189346313, - -0.7229978442192078, - -0.5769768953323364, - -0.4316771626472473, - -0.28708791732788086, - -0.1431988626718521, - -4.470348358154297e-8, - 0.14251857995986938, - 0.28436651825904846, - 0.4255531430244446, - 0.5660876035690308, - 0.7059789299964905, - 0.8452358245849609, - 0.9838667511940002, - -1.017366647720337, - -0.8698697090148926, - -0.7231159210205078, - -0.5770940184593201, - -0.43179330229759216, - -0.2872031331062317, - -0.14331315457820892, - -0.00011342384095769376, - 0.14240609109401703, - 0.28425490856170654, - 0.4254423975944519, - 0.5659777522087097, - 0.7058699131011963, - 0.8451275825500488, - 0.983759343624115, - -1.0177267789840698, - -0.8702268600463867, - -0.7234700918197632, - -0.5774453282356262, - -0.4321417510509491, - -0.2875487804412842, - -0.14365601539611816, - -0.0004535674233920872, - 0.14206862449645996, - 0.2839200794696808, - 0.4251101613044739, - 0.5656480193138123, - 0.7055427432060242, - 0.8448028564453125, - 0.9834371209144592, - -1.0183271169662476, - -0.8708221912384033, - -0.7240604758262634, - -0.5780308246612549, - -0.4327225089073181, - -0.28812482953071594, - -0.14422748982906342, - -0.0010204933350905776, - 0.141506165266037, - 0.2833620309829712, - 0.4245564043521881, - 0.5650985240936279, - 0.7049974203109741, - 0.8442617058753967, - 0.9828999638557434, - -1.0191675424575806, - -0.8716556429862976, - -0.7248870730400085, - -0.5788506269454956, - -0.4335356056690216, - -0.28893139958381653, - -0.14502757787704468, - -0.0018142315093427896, - 0.14071866869926453, - 0.2825806736946106, - 0.4237811267375946, - 0.564329206943512, - 0.7042339444160461, - 0.843504011631012, - 0.9821479916572571, - -1.020248293876648, - -0.8727273344993591, - -0.7259498834609985, - -0.5799047350883484, - -0.43458113074302673, - -0.28996846079826355, - -0.14605633914470673, - -0.002834824612364173, - 0.13970611989498138, - 0.2815760374069214, - 0.4227842688560486, - 0.5633400082588196, - 0.7032523155212402, - 0.8425297737121582, - 0.9811810851097107, - -1.0215692520141602, - -0.8740373253822327, - -0.7272489666938782, - -0.5811931490898132, - -0.4358590841293335, - -0.2912360727787018, - -0.14731381833553314, - -0.004082325845956802, - 0.1384684443473816, - 0.2803480327129364, - 0.4215657711029053, - 0.5621309280395508, - 0.7020524144172668, - 0.8413389921188354, - 0.9799991846084595, - -1.0231306552886963, - -0.8755856156349182, - -0.7287845015525818, - -0.5827160477638245, - -0.43736955523490906, - -0.2927343547344208, - -0.1488001048564911, - -0.005556801334023476, - 0.13700558245182037, - 0.27889660000801086, - 0.4201256036758423, - 0.5607017874717712, - 0.7006341814994812, - 0.8399314880371094, - 0.9786022901535034 - ], - "yaxis": "y3" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -1.023850679397583, - -1.020302653312683, - -1.0168167352676392, - -1.0133908987045288, - -1.0100228786468506, - -1.0067108869552612, - -1.0034528970718384, - -1.0002472400665283, - -0.9970921277999878, - -0.9939860701560974, - -0.9909274578094482, - -0.9879149198532104, - -0.9849469065666199, - -0.9820223450660706, - -0.9791397452354431, - -0.8775199055671692, - -0.8744803667068481, - -0.8714940547943115, - -0.8685590624809265, - -0.8656736612319946, - -0.8628361225128174, - -0.8600449562072754, - -0.8572984933853149, - -0.8545953631401062, - -0.8519341945648193, - -0.8493136763572693, - -0.8467325568199158, - -0.8441897034645081, - -0.8416839241981506, - -0.8392141461372375, - -0.7312198877334595, - -0.7286880016326904, - -0.726200520992279, - -0.7237557768821716, - -0.7213522791862488, - -0.7189886569976807, - -0.7166635990142822, - -0.7143757939338684, - -0.7121240496635437, - -0.7099072337150574, - -0.7077242732048035, - -0.7055741548538208, - -0.7034558057785034, - -0.7013683915138245, - -0.6993108987808228, - -0.5849452614784241, - -0.5829205513000488, - -0.5809312462806702, - -0.5789760947227478, - -0.5770540237426758, - -0.575163722038269, - -0.573304295539856, - -0.5714746117591858, - -0.5696737766265869, - -0.5679008960723877, - -0.5661550760269165, - -0.5644354820251465, - -0.5627412796020508, - -0.5610718131065369, - -0.5594263076782227, - -0.438691109418869, - -0.4371730089187622, - -0.43568146228790283, - -0.4342155158519745, - -0.43277430534362793, - -0.4313569664955139, - -0.42996275424957275, - -0.4285908341407776, - -0.4272405505180359, - -0.42591121792793274, - -0.42460212111473083, - -0.4233127236366272, - -0.4220423996448517, - -0.42079055309295654, - -0.41955670714378357, - -0.29245224595069885, - -0.2914403975009918, - -0.2904462218284607, - -0.2894691228866577, - -0.28850850462913513, - -0.2875637710094452, - -0.2866344749927521, - -0.28572002053260803, - -0.28481999039649963, - -0.2839339077472687, - -0.28306135535240173, - -0.282201886177063, - -0.2813551127910614, - -0.2805207073688507, - -0.2796982526779175, - -0.1462235450744629, - -0.14571768045425415, - -0.14522065222263336, - -0.14473216235637665, - -0.14425189793109894, - -0.14377960562705994, - -0.14331498742103577, - -0.14285781979560852, - -0.1424078494310379, - -0.141964852809906, - -0.14152862131595612, - -0.14109893143177032, - -0.1406755894422531, - -0.14025841653347015, - -0.13984723389148712, - -4.5756660682627626e-8, - -4.559836597195499e-8, - -4.544284237795182e-8, - -4.528998687192143e-8, - -4.5139710636021846e-8, - -4.4991921299697424e-8, - -4.484653715053355e-8, - -4.470348358154297e-8, - -4.456268243302475e-8, - -4.442406265070531e-8, - -4.428755673302476e-8, - -4.4153100731136874e-8, - -4.402063069619544e-8, - -4.389009333749527e-8, - -4.3761428258903834e-8, - 0.1462235450744629, - 0.14571768045425415, - 0.14522065222263336, - 0.14473216235637665, - 0.14425189793109894, - 0.14377960562705994, - 0.14331498742103577, - 0.14285781979560852, - 0.1424078494310379, - 0.141964852809906, - 0.14152862131595612, - 0.14109893143177032, - 0.1406755894422531, - 0.14025841653347015, - 0.13984723389148712, - 0.29245224595069885, - 0.2914403975009918, - 0.2904462218284607, - 0.2894691228866577, - 0.28850850462913513, - 0.2875637710094452, - 0.2866344749927521, - 0.28572002053260803, - 0.28481999039649963, - 0.2839339077472687, - 0.28306135535240173, - 0.282201886177063, - 0.2813551127910614, - 0.2805207073688507, - 0.2796982526779175, - 0.438691109418869, - 0.4371730089187622, - 0.43568146228790283, - 0.4342155158519745, - 0.43277430534362793, - 0.4313569664955139, - 0.42996275424957275, - 0.4285908341407776, - 0.4272405505180359, - 0.42591121792793274, - 0.42460212111473083, - 0.4233127236366272, - 0.4220423996448517, - 0.42079055309295654, - 0.41955670714378357, - 0.5849452614784241, - 0.5829205513000488, - 0.5809312462806702, - 0.5789760947227478, - 0.5770540237426758, - 0.575163722038269, - 0.573304295539856, - 0.5714746117591858, - 0.5696737766265869, - 0.5679008960723877, - 0.5661550760269165, - 0.5644354820251465, - 0.5627412796020508, - 0.5610718131065369, - 0.5594263076782227, - 0.7312198877334595, - 0.7286880016326904, - 0.726200520992279, - 0.7237557768821716, - 0.7213522791862488, - 0.7189886569976807, - 0.7166635990142822, - 0.7143757939338684, - 0.7121240496635437, - 0.7099072337150574, - 0.7077242732048035, - 0.7055741548538208, - 0.7034558057785034, - 0.7013683915138245, - 0.6993108987808228, - 0.8775199055671692, - 0.8744803667068481, - 0.8714940547943115, - 0.8685590624809265, - 0.8656736612319946, - 0.8628361225128174, - 0.8600449562072754, - 0.8572984933853149, - 0.8545953631401062, - 0.8519341945648193, - 0.8493136763572693, - 0.8467325568199158, - 0.8441897034645081, - 0.8416839241981506, - 0.8392141461372375, - 1.023850679397583, - 1.020302653312683, - 1.0168167352676392, - 1.0133908987045288, - 1.0100228786468506, - 1.0067108869552612, - 1.0034528970718384, - 1.0002472400665283, - 0.9970921277999878, - 0.9939860701560974, - 0.9909274578094482, - 0.9879149198532104, - 0.9849469065666199, - 0.9820223450660706, - 0.9791397452354431 - ], - "xaxis": "x3", - "y": [ - -1.0482770204544067, - -0.8954366445541382, - -0.7442366480827332, - -0.5946251749992371, - -0.4465533494949341, - -0.2999745011329651, - -0.15484429895877838, - -0.011120774783194065, - 0.13123641908168793, - 0.2722654342651367, - 0.4120027720928192, - 0.5504832863807678, - 0.6877403855323792, - 0.8238058090209961, - 0.9587101340293884, - -1.04495370388031, - -0.89217209815979, - -0.7410287857055664, - -0.5914720296859741, - -0.44345298409461975, - -0.2969251573085785, - -0.15184429287910461, - -0.008168499916791916, - 0.13414248824119568, - 0.27512675523757935, - 0.41482070088386536, - 0.5532591938972473, - 0.6904754638671875, - 0.8265012502670288, - 0.961367130279541, - -1.0421429872512817, - -0.8894110918045044, - -0.7383157014846802, - -0.5888051986694336, - -0.440830796957016, - -0.2943460941314697, - -0.14930693805217743, - -0.005671481601893902, - 0.13660043478012085, - 0.27754688262939453, - 0.4172041714191437, - 0.5556070804595947, - 0.69278883934021, - 0.8287811875343323, - 0.9636145234107971, - -1.0398443937301636, - -0.8871530890464783, - -0.7360967993736267, - -0.5866240859031677, - -0.43868616223335266, - -0.29223671555519104, - -0.14723165333271027, - -0.003629186889156699, - 0.1386108100414276, - 0.27952632308006287, - 0.4191536009311676, - 0.5575274229049683, - 0.6946810483932495, - 0.8306459784507751, - 0.9654527306556702, - -1.0380570888519287, - -0.8853973746299744, - -0.734371542930603, - -0.5849281549453735, - -0.43701863288879395, - -0.2905965745449066, - -0.1456180065870285, - -0.0020411850418895483, - 0.1401739865541458, - 0.2810654640197754, - 0.42066946625709534, - 0.5590206980705261, - 0.6961523294448853, - 0.8320960402488708, - 0.9668821096420288, - -1.036780834197998, - -0.884143590927124, - -0.7331395149230957, - -0.5837171077728271, - -0.4358277916908264, - -0.2894253134727478, - -0.14446566998958588, - -0.0009071381064131856, - 0.1412903070449829, - 0.282164603471756, - 0.4217519760131836, - 0.5600870847702026, - 0.6972030997276306, - 0.8331315517425537, - 0.9679028987884521, - -1.0360151529312134, - -0.8833914995193481, - -0.7324004173278809, - -0.5829905271530151, - -0.43511340022087097, - -0.2887226641178131, - -0.1437743604183197, - -0.00022680596157442778, - 0.141960009932518, - 0.28282400965690613, - 0.42240139842033386, - 0.5607268214225769, - 0.6978334784507751, - 0.8337528109550476, - 0.9685152769088745, - -1.0357599258422852, - -0.8831408023834229, - -0.7321540713310242, - -0.5827484130859375, - -0.4348752796649933, - -0.2884884476661682, - -0.14354392886161804, - -4.470348358154297e-8, - 0.14218322932720184, - 0.2830438017845154, - 0.4226178824901581, - 0.5609400868415833, - 0.6980435848236084, - 0.8339598774909973, - 0.9687194228172302, - -1.0360151529312134, - -0.8833914995193481, - -0.7324004173278809, - -0.5829905271530151, - -0.43511340022087097, - -0.2887226641178131, - -0.1437743604183197, - -0.00022680596157442778, - 0.141960009932518, - 0.28282400965690613, - 0.42240139842033386, - 0.5607268214225769, - 0.6978334784507751, - 0.8337528109550476, - 0.9685152769088745, - -1.036780834197998, - -0.884143590927124, - -0.7331395149230957, - -0.5837171077728271, - -0.4358277916908264, - -0.2894253134727478, - -0.14446566998958588, - -0.0009071381064131856, - 0.1412903070449829, - 0.282164603471756, - 0.4217519760131836, - 0.5600870847702026, - 0.6972030997276306, - 0.8331315517425537, - 0.9679028987884521, - -1.0380570888519287, - -0.8853973746299744, - -0.734371542930603, - -0.5849281549453735, - -0.43701863288879395, - -0.2905965745449066, - -0.1456180065870285, - -0.0020411850418895483, - 0.1401739865541458, - 0.2810654640197754, - 0.42066946625709534, - 0.5590206980705261, - 0.6961523294448853, - 0.8320960402488708, - 0.9668821096420288, - -1.0398443937301636, - -0.8871530890464783, - -0.7360967993736267, - -0.5866240859031677, - -0.43868616223335266, - -0.29223671555519104, - -0.14723165333271027, - -0.003629186889156699, - 0.1386108100414276, - 0.27952632308006287, - 0.4191536009311676, - 0.5575274229049683, - 0.6946810483932495, - 0.8306459784507751, - 0.9654527306556702, - -1.0421429872512817, - -0.8894110918045044, - -0.7383157014846802, - -0.5888051986694336, - -0.440830796957016, - -0.2943460941314697, - -0.14930693805217743, - -0.005671481601893902, - 0.13660043478012085, - 0.27754688262939453, - 0.4172041714191437, - 0.5556070804595947, - 0.69278883934021, - 0.8287811875343323, - 0.9636145234107971, - -1.04495370388031, - -0.89217209815979, - -0.7410287857055664, - -0.5914720296859741, - -0.44345298409461975, - -0.2969251573085785, - -0.15184429287910461, - -0.008168499916791916, - 0.13414248824119568, - 0.27512675523757935, - 0.41482070088386536, - 0.5532591938972473, - 0.6904754638671875, - 0.8265012502670288, - 0.961367130279541, - -1.0482770204544067, - -0.8954366445541382, - -0.7442366480827332, - -0.5946251749992371, - -0.4465533494949341, - -0.2999745011329651, - -0.15484429895877838, - -0.011120774783194065, - 0.13123641908168793, - 0.2722654342651367, - 0.4120027720928192, - 0.5504832863807678, - 0.6877403855323792, - 0.8238058090209961, - 0.9587101340293884 - ], - "yaxis": "y3" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -1.0371936559677124, - -1.0315274000167847, - -1.0260188579559326, - -1.02065908908844, - -1.0154401063919067, - -1.0103546380996704, - -1.0053956508636475, - -1.0005569458007812, - -0.9958327412605286, - -0.9912176132202148, - -0.986706554889679, - -0.9822948575019836, - -0.9779782891273499, - -0.9737526774406433, - -0.9696142673492432, - -0.888859212398529, - -0.8840087652206421, - -0.8792930841445923, - -0.8747045993804932, - -0.8702364563941956, - -0.8658823370933533, - -0.8616364598274231, - -0.8574933409690857, - -0.8534481525421143, - -0.8494962453842163, - -0.845633327960968, - -0.8418554067611694, - -0.8381587862968445, - -0.8345400094985962, - -0.8309958577156067, - -0.7406006455421448, - -0.7365630865097046, - -0.7326374650001526, - -0.7288177013397217, - -0.7250978946685791, - -0.7214729189872742, - -0.7179379463195801, - -0.7144884467124939, - -0.7111203670501709, - -0.7078298330307007, - -0.7046133279800415, - -0.7014675736427307, - -0.6983894109725952, - -0.6953759789466858, - -0.6924246549606323, - -0.5924050211906433, - -0.5891779065132141, - -0.5860401391983032, - -0.5829868912696838, - -0.5800134539604187, - -0.5771157145500183, - -0.574289858341217, - -0.5715323090553284, - -0.5688397288322449, - -0.566209077835083, - -0.5636376142501831, - -0.5611225962638855, - -0.5586615800857544, - -0.5562523007392883, - -0.5538926124572754, - -0.44425979256629944, - -0.44184115529060364, - -0.4394894540309906, - -0.43720096349716187, - -0.4349723160266876, - -0.4328003227710724, - -0.4306821823120117, - -0.42861515283584595, - -0.42659682035446167, - -0.4246249198913574, - -0.4226972758769989, - -0.4208119511604309, - -0.4189670979976654, - -0.4171609878540039, - -0.41539204120635986, - -0.2961522936820984, - -0.294540673494339, - -0.2929736077785492, - -0.2914486527442932, - -0.2899635434150696, - -0.28851619362831116, - -0.28710469603538513, - -0.28572723269462585, - -0.2843821942806244, - -0.28306809067726135, - -0.28178346157073975, - -0.2805270254611969, - -0.2792975604534149, - -0.2780939042568207, - -0.2769149839878082, - -0.1480698436498642, - -0.1472642719745636, - -0.1464809775352478, - -0.14571870863437653, - -0.14497636258602142, - -0.14425286650657654, - -0.14354728162288666, - -0.14285872876644135, - -0.14218637347221375, - -0.14152945578098297, - -0.1408872902393341, - -0.14025920629501343, - -0.139644593000412, - -0.13904288411140442, - -0.13845354318618774, - -4.633402284071053e-8, - -4.6081964910626994e-8, - -4.5836873852067583e-8, - -4.559836597195499e-8, - -4.5366085998921335e-8, - -4.5139710636021846e-8, - -4.4918934349880146e-8, - -4.470348358154297e-8, - -4.449310253562544e-8, - -4.428755673302476e-8, - -4.408662235277916e-8, - -4.389009333749527e-8, - -4.3697777840634444e-8, - -4.350950177922641e-8, - -4.332509462301459e-8, - 0.1480698436498642, - 0.1472642719745636, - 0.1464809775352478, - 0.14571870863437653, - 0.14497636258602142, - 0.14425286650657654, - 0.14354728162288666, - 0.14285872876644135, - 0.14218637347221375, - 0.14152945578098297, - 0.1408872902393341, - 0.14025920629501343, - 0.139644593000412, - 0.13904288411140442, - 0.13845354318618774, - 0.2961522936820984, - 0.294540673494339, - 0.2929736077785492, - 0.2914486527442932, - 0.2899635434150696, - 0.28851619362831116, - 0.28710469603538513, - 0.28572723269462585, - 0.2843821942806244, - 0.28306809067726135, - 0.28178346157073975, - 0.2805270254611969, - 0.2792975604534149, - 0.2780939042568207, - 0.2769149839878082, - 0.44425979256629944, - 0.44184115529060364, - 0.4394894540309906, - 0.43720096349716187, - 0.4349723160266876, - 0.4328003227710724, - 0.4306821823120117, - 0.42861515283584595, - 0.42659682035446167, - 0.4246249198913574, - 0.4226972758769989, - 0.4208119511604309, - 0.4189670979976654, - 0.4171609878540039, - 0.41539204120635986, - 0.5924050211906433, - 0.5891779065132141, - 0.5860401391983032, - 0.5829868912696838, - 0.5800134539604187, - 0.5771157145500183, - 0.574289858341217, - 0.5715323090553284, - 0.5688397288322449, - 0.566209077835083, - 0.5636376142501831, - 0.5611225962638855, - 0.5586615800857544, - 0.5562523007392883, - 0.5538926124572754, - 0.7406006455421448, - 0.7365630865097046, - 0.7326374650001526, - 0.7288177013397217, - 0.7250978946685791, - 0.7214729189872742, - 0.7179379463195801, - 0.7144884467124939, - 0.7111203670501709, - 0.7078298330307007, - 0.7046133279800415, - 0.7014675736427307, - 0.6983894109725952, - 0.6953759789466858, - 0.6924246549606323, - 0.888859212398529, - 0.8840087652206421, - 0.8792930841445923, - 0.8747045993804932, - 0.8702364563941956, - 0.8658823370933533, - 0.8616364598274231, - 0.8574933409690857, - 0.8534481525421143, - 0.8494962453842163, - 0.845633327960968, - 0.8418554067611694, - 0.8381587862968445, - 0.8345400094985962, - 0.8309958577156067, - 1.0371936559677124, - 1.0315274000167847, - 1.0260188579559326, - 1.02065908908844, - 1.0154401063919067, - 1.0103546380996704, - 1.0053956508636475, - 1.0005569458007812, - 0.9958327412605286, - 0.9912176132202148, - 0.986706554889679, - 0.9822948575019836, - 0.9779782891273499, - 0.9737526774406433, - 0.9696142673492432 - ], - "xaxis": "x3", - "y": [ - -1.075796365737915, - -0.9169135093688965, - -0.7607694864273071, - -0.6072272062301636, - -0.45616084337234497, - -0.30745428800582886, - -0.16100016236305237, - -0.016699226573109627, - 0.12554103136062622, - 0.2658064067363739, - 0.4041769504547119, - 0.5407274961471558, - 0.6755281090736389, - 0.8086443543434143, - 0.9401378631591797, - -1.0704623460769653, - -0.9117299914360046, - -0.7557278871536255, - -0.6023197770118713, - -0.45138049125671387, - -0.30279436707496643, - -0.1564546376466751, - -0.012262478470802307, - 0.12987416982650757, - 0.2700407803058624, - 0.4083169996738434, - 0.5447773933410645, - 0.6794917583465576, - 0.8125253915786743, - 0.9439396858215332, - -1.0659544467926025, - -0.9073490500450134, - -0.7514668107032776, - -0.5981719493865967, - -0.44733983278274536, - -0.29885539412498474, - -0.15261220932006836, - -0.008511897176504135, - 0.13353729248046875, - 0.27362048625946045, - 0.4118170738220215, - 0.5482013821601868, - 0.6828429102897644, - 0.8158066868782043, - 0.9471541047096252, - -1.062269926071167, - -0.9037682414054871, - -0.7479837536811829, - -0.5947813391685486, - -0.4440367519855499, - -0.29563531279563904, - -0.1494709998369217, - -0.00544568058103323, - 0.13653208315372467, - 0.2765471339225769, - 0.414678692817688, - 0.5510007739067078, - 0.6855828166007996, - 0.818489670753479, - 0.9497823715209961, - -1.0594065189361572, - -0.9009853005409241, - -0.7452768087387085, - -0.5921461582183838, - -0.4414695203304291, - -0.2931325435638428, - -0.14702944457530975, - -0.0030623627826571465, - 0.13885991275310516, - 0.27882206439971924, - 0.4169031083583832, - 0.5531769394874573, - 0.6877127289772034, - 0.8205752968788147, - 0.9518255591392517, - -1.0573625564575195, - -0.8989986777305603, - -0.7433443069458008, - -0.5902648568153381, - -0.4396367371082306, - -0.2913457453250885, - -0.14528632164001465, - -0.001360804890282452, - 0.14052189886569977, - 0.28044629096984863, - 0.41849130392074585, - 0.5547306537628174, - 0.6892334818840027, - 0.8220644593238831, - 0.9532844424247742, - -1.0561367273330688, - -0.8978071808815002, - -0.7421852946281433, - -0.58913654088974, - -0.43853744864463806, - -0.2902740240097046, - -0.14424081146717072, - -0.0003401940921321511, - 0.14151877164840698, - 0.2814205586910248, - 0.41944393515586853, - 0.5556626319885254, - 0.6901456713676453, - 0.8229576945304871, - 0.9541594982147217, - -1.0557280778884888, - -0.8974100947380066, - -0.741798996925354, - -0.588760495185852, - -0.4381710886955261, - -0.28991687297821045, - -0.1438923478126526, - -4.470348358154297e-8, - 0.1418510228395462, - 0.2817452549934387, - 0.41976141929626465, - 0.55597323179245, - 0.6904497146606445, - 0.8232554197311401, - 0.9544511437416077, - -1.0561367273330688, - -0.8978071808815002, - -0.7421852946281433, - -0.58913654088974, - -0.43853744864463806, - -0.2902740240097046, - -0.14424081146717072, - -0.0003401940921321511, - 0.14151877164840698, - 0.2814205586910248, - 0.41944393515586853, - 0.5556626319885254, - 0.6901456713676453, - 0.8229576945304871, - 0.9541594982147217, - -1.0573625564575195, - -0.8989986777305603, - -0.7433443069458008, - -0.5902648568153381, - -0.4396367371082306, - -0.2913457453250885, - -0.14528632164001465, - -0.001360804890282452, - 0.14052189886569977, - 0.28044629096984863, - 0.41849130392074585, - 0.5547306537628174, - 0.6892334818840027, - 0.8220644593238831, - 0.9532844424247742, - -1.0594065189361572, - -0.9009853005409241, - -0.7452768087387085, - -0.5921461582183838, - -0.4414695203304291, - -0.2931325435638428, - -0.14702944457530975, - -0.0030623627826571465, - 0.13885991275310516, - 0.27882206439971924, - 0.4169031083583832, - 0.5531769394874573, - 0.6877127289772034, - 0.8205752968788147, - 0.9518255591392517, - -1.062269926071167, - -0.9037682414054871, - -0.7479837536811829, - -0.5947813391685486, - -0.4440367519855499, - -0.29563531279563904, - -0.1494709998369217, - -0.00544568058103323, - 0.13653208315372467, - 0.2765471339225769, - 0.414678692817688, - 0.5510007739067078, - 0.6855828166007996, - 0.818489670753479, - 0.9497823715209961, - -1.0659544467926025, - -0.9073490500450134, - -0.7514668107032776, - -0.5981719493865967, - -0.44733983278274536, - -0.29885539412498474, - -0.15261220932006836, - -0.008511897176504135, - 0.13353729248046875, - 0.27362048625946045, - 0.4118170738220215, - 0.5482013821601868, - 0.6828429102897644, - 0.8158066868782043, - 0.9471541047096252, - -1.0704623460769653, - -0.9117299914360046, - -0.7557278871536255, - -0.6023197770118713, - -0.45138049125671387, - -0.30279436707496643, - -0.1564546376466751, - -0.012262478470802307, - 0.12987416982650757, - 0.2700407803058624, - 0.4083169996738434, - 0.5447773933410645, - 0.6794917583465576, - 0.8125253915786743, - 0.9439396858215332, - -1.075796365737915, - -0.9169135093688965, - -0.7607694864273071, - -0.6072272062301636, - -0.45616084337234497, - -0.30745428800582886, - -0.16100016236305237, - -0.016699226573109627, - 0.12554103136062622, - 0.2658064067363739, - 0.4041769504547119, - 0.5407274961471558, - 0.6755281090736389, - 0.8086443543434143, - 0.9401378631591797 - ], - "yaxis": "y3" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -1.0517041683197021, - -1.0436131954193115, - -1.035841941833496, - -1.028364896774292, - -1.0211600065231323, - -1.0142077207565308, - -1.0074903964996338, - -1.0009920597076416, - -0.9946988821029663, - -0.9885978698730469, - -0.9826775789260864, - -0.9769273996353149, - -0.9713376760482788, - -0.9658997058868408, - -0.960605263710022, - -0.9011380672454834, - -0.8942207098007202, - -0.8875756859779358, - -0.881181538105011, - -0.8750194311141968, - -0.8690726161003113, - -0.8633262515068054, - -0.85776686668396, - -0.852382481098175, - -0.847162127494812, - -0.8420960307121277, - -0.8371751308441162, - -0.8323913812637329, - -0.8277370929718018, - -0.8232055306434631, - -0.7507215738296509, - -0.7449696063995361, - -0.739443302154541, - -0.7341251969337463, - -0.7289995551109314, - -0.7240525484085083, - -0.7192718982696533, - -0.7146464586257935, - -0.710166335105896, - -0.7058224081993103, - -0.7016065716743469, - -0.6975114345550537, - -0.6935300827026367, - -0.6896564364433289, - -0.6858847141265869, - -0.6004291772842407, - -0.5958356261253357, - -0.5914219617843628, - -0.5871741771697998, - -0.5830798149108887, - -0.5791279077529907, - -0.575308620929718, - -0.571613073348999, - -0.5680334568023682, - -0.5645624399185181, - -0.5611937046051025, - -0.5579211711883545, - -0.5547394752502441, - -0.5516437292098999, - -0.5486292839050293, - -0.45023566484451294, - -0.4467952251434326, - -0.44348928332328796, - -0.4403073489665985, - -0.4372401535511017, - -0.43427950143814087, - -0.4314180314540863, - -0.4286492168903351, - -0.4259670674800873, - -0.4233662784099579, - -0.42084193229675293, - -0.4183896481990814, - -0.41600534319877625, - -0.4136853814125061, - -0.41142627596855164, - -0.3001161217689514, - -0.2978247404098511, - -0.2956227958202362, - -0.2935033440589905, - -0.2914602756500244, - -0.2894880473613739, - -0.2875818610191345, - -0.2857373058795929, - -0.28395044803619385, - -0.28221774101257324, - -0.28053590655326843, - -0.2789020538330078, - -0.2773134708404541, - -0.2757676839828491, - -0.2742624580860138, - -0.1500457525253296, - -0.14890071749687195, - -0.14780035614967346, - -0.14674119651317596, - -0.14572015404701233, - -0.14473453164100647, - -0.1437818557024002, - -0.14285998046398163, - -0.14196692407131195, - -0.1411009132862091, - -0.14026032388210297, - -0.13944369554519653, - -0.13864967226982117, - -0.13787704706192017, - -0.1371246874332428, - -4.6951704746334144e-8, - -4.6593470415245974e-8, - -4.624920180162917e-8, - -4.591782243323905e-8, - -4.559836597195499e-8, - -4.528998687192143e-8, - -4.4991921299697424e-8, - -4.470348358154297e-8, - -4.442406265070531e-8, - -4.4153100731136874e-8, - -4.389009333749527e-8, - -4.363458216971594e-8, - -4.33861444548711e-8, - -4.314439649988344e-8, - -4.290899013881244e-8, - 0.1500457525253296, - 0.14890071749687195, - 0.14780035614967346, - 0.14674119651317596, - 0.14572015404701233, - 0.14473453164100647, - 0.1437818557024002, - 0.14285998046398163, - 0.14196692407131195, - 0.1411009132862091, - 0.14026032388210297, - 0.13944369554519653, - 0.13864967226982117, - 0.13787704706192017, - 0.1371246874332428, - 0.3001161217689514, - 0.2978247404098511, - 0.2956227958202362, - 0.2935033440589905, - 0.2914602756500244, - 0.2894880473613739, - 0.2875818610191345, - 0.2857373058795929, - 0.28395044803619385, - 0.28221774101257324, - 0.28053590655326843, - 0.2789020538330078, - 0.2773134708404541, - 0.2757676839828491, - 0.2742624580860138, - 0.45023566484451294, - 0.4467952251434326, - 0.44348928332328796, - 0.4403073489665985, - 0.4372401535511017, - 0.43427950143814087, - 0.4314180314540863, - 0.4286492168903351, - 0.4259670674800873, - 0.4233662784099579, - 0.42084193229675293, - 0.4183896481990814, - 0.41600534319877625, - 0.4136853814125061, - 0.41142627596855164, - 0.6004291772842407, - 0.5958356261253357, - 0.5914219617843628, - 0.5871741771697998, - 0.5830798149108887, - 0.5791279077529907, - 0.575308620929718, - 0.571613073348999, - 0.5680334568023682, - 0.5645624399185181, - 0.5611937046051025, - 0.5579211711883545, - 0.5547394752502441, - 0.5516437292098999, - 0.5486292839050293, - 0.7507215738296509, - 0.7449696063995361, - 0.739443302154541, - 0.7341251969337463, - 0.7289995551109314, - 0.7240525484085083, - 0.7192718982696533, - 0.7146464586257935, - 0.710166335105896, - 0.7058224081993103, - 0.7016065716743469, - 0.6975114345550537, - 0.6935300827026367, - 0.6896564364433289, - 0.6858847141265869, - 0.9011380672454834, - 0.8942207098007202, - 0.8875756859779358, - 0.881181538105011, - 0.8750194311141968, - 0.8690726161003113, - 0.8633262515068054, - 0.85776686668396, - 0.852382481098175, - 0.847162127494812, - 0.8420960307121277, - 0.8371751308441162, - 0.8323913812637329, - 0.8277370929718018, - 0.8232055306434631, - 1.0517041683197021, - 1.0436131954193115, - 1.035841941833496, - 1.028364896774292, - 1.0211600065231323, - 1.0142077207565308, - 1.0074903964996338, - 1.0009920597076416, - 0.9946988821029663, - 0.9885978698730469, - 0.9826775789260864, - 0.9769273996353149, - 0.9713376760482788, - 0.9658997058868408, - 0.960605263710022 - ], - "xaxis": "x3", - "y": [ - -1.1061509847640991, - -0.9402885437011719, - -0.7785375118255615, - -0.6206061244010925, - -0.4662357270717621, - -0.31519564986228943, - -0.1672789603471756, - -0.02229953184723854, - 0.11991127580404282, - 0.25950634479522705, - 0.39662498235702515, - 0.5313946008682251, - 0.6639320850372314, - 0.7943447828292847, - 0.922731876373291, - -1.0984910726547241, - -0.9329372048377991, - -0.7714698910713196, - -0.6138004064559937, - -0.45967262983322144, - -0.3088579773902893, - -0.16115136444568634, - -0.016368217766284943, - 0.12565873563289642, - 0.2650811970233917, - 0.40203744173049927, - 0.536653995513916, - 0.669046938419342, - 0.7993228435516357, - 0.9275804162025452, - -1.0920253992080688, - -0.9267311096191406, - -0.7655025720596313, - -0.6080535650253296, - -0.4541301429271698, - -0.3035053610801697, - -0.15597571432590485, - -0.011357968673110008, - 0.13051404058933258, - 0.26979100704193115, - 0.4066103398799896, - 0.5410978198051453, - 0.6733688116073608, - 0.8035294413566589, - 0.9316776394844055, - -1.0867458581924438, - -0.9216630458831787, - -0.7606290578842163, - -0.6033596992492676, - -0.44960272312164307, - -0.29913270473480225, - -0.15174736082553864, - -0.0072644860483706, - 0.13448116183280945, - 0.2736394703388214, - 0.4103471338748932, - 0.5447292923927307, - 0.6769008636474609, - 0.8069673180580139, - 0.9350262880325317, - -1.0826462507247925, - -0.9177272319793701, - -0.7568439841270447, - -0.599713921546936, - -0.44608601927757263, - -0.29573601484298706, - -0.14846254885196686, - -0.004084271378815174, - 0.13756334781646729, - 0.27662959694862366, - 0.413250595331192, - 0.5475510358810425, - 0.6796454191207886, - 0.8096388578414917, - 0.9376286268234253, - -1.079721450805664, - -0.9149190783500671, - -0.754143238067627, - -0.5971124172210693, - -0.44357651472091675, - -0.2933120131492615, - -0.14611832797527313, - -0.0018146155634894967, - 0.13976313173770905, - 0.27876371145248413, - 0.4153229594230652, - 0.5495651364326477, - 0.6816044449806213, - 0.8115457892417908, - 0.9394862055778503, - -1.0779680013656616, - -0.9132354855537415, - -0.7525240182876587, - -0.5955525636672974, - -0.4420717656612396, - -0.2918585538864136, - -0.1447126269340515, - -0.00045359114301390946, - 0.1410822719335556, - 0.2800435423851013, - 0.41656574606895447, - 0.550773024559021, - 0.6827793717384338, - 0.812689483165741, - 0.9406002163887024, - -1.0773837566375732, - -0.9126745462417603, - -0.7519844174385071, - -0.595032811164856, - -0.44157037138938904, - -0.29137420654296875, - -0.14424419403076172, - -4.470348358154297e-8, - 0.1415218710899353, - 0.2804700434207916, - 0.41697990894317627, - 0.551175594329834, - 0.6831709146499634, - 0.8130705952644348, - 0.9409714937210083, - -1.0779680013656616, - -0.9132354855537415, - -0.7525240182876587, - -0.5955525636672974, - -0.4420717656612396, - -0.2918585538864136, - -0.1447126269340515, - -0.00045359114301390946, - 0.1410822719335556, - 0.2800435423851013, - 0.41656574606895447, - 0.550773024559021, - 0.6827793717384338, - 0.812689483165741, - 0.9406002163887024, - -1.079721450805664, - -0.9149190783500671, - -0.754143238067627, - -0.5971124172210693, - -0.44357651472091675, - -0.2933120131492615, - -0.14611832797527313, - -0.0018146155634894967, - 0.13976313173770905, - 0.27876371145248413, - 0.4153229594230652, - 0.5495651364326477, - 0.6816044449806213, - 0.8115457892417908, - 0.9394862055778503, - -1.0826462507247925, - -0.9177272319793701, - -0.7568439841270447, - -0.599713921546936, - -0.44608601927757263, - -0.29573601484298706, - -0.14846254885196686, - -0.004084271378815174, - 0.13756334781646729, - 0.27662959694862366, - 0.413250595331192, - 0.5475510358810425, - 0.6796454191207886, - 0.8096388578414917, - 0.9376286268234253, - -1.0867458581924438, - -0.9216630458831787, - -0.7606290578842163, - -0.6033596992492676, - -0.44960272312164307, - -0.29913270473480225, - -0.15174736082553864, - -0.0072644860483706, - 0.13448116183280945, - 0.2736394703388214, - 0.4103471338748932, - 0.5447292923927307, - 0.6769008636474609, - 0.8069673180580139, - 0.9350262880325317, - -1.0920253992080688, - -0.9267311096191406, - -0.7655025720596313, - -0.6080535650253296, - -0.4541301429271698, - -0.3035053610801697, - -0.15597571432590485, - -0.011357968673110008, - 0.13051404058933258, - 0.26979100704193115, - 0.4066103398799896, - 0.5410978198051453, - 0.6733688116073608, - 0.8035294413566589, - 0.9316776394844055, - -1.0984910726547241, - -0.9329372048377991, - -0.7714698910713196, - -0.6138004064559937, - -0.45967262983322144, - -0.3088579773902893, - -0.16115136444568634, - -0.016368217766284943, - 0.12565873563289642, - 0.2650811970233917, - 0.40203744173049927, - 0.536653995513916, - 0.669046938419342, - 0.7993228435516357, - 0.9275804162025452, - -1.1061509847640991, - -0.9402885437011719, - -0.7785375118255615, - -0.6206061244010925, - -0.4662357270717621, - -0.31519564986228943, - -0.1672789603471756, - -0.02229953184723854, - 0.11991127580404282, - 0.25950634479522705, - 0.39662498235702515, - 0.5313946008682251, - 0.6639320850372314, - 0.7943447828292847, - 0.922731876373291 - ], - "yaxis": "y3" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -1.067612648010254, - -1.0567044019699097, - -1.0463736057281494, - -1.0365595817565918, - -1.027211308479309, - -1.0182851552963257, - -1.0097436904907227, - -1.001554012298584, - -0.9936879277229309, - -0.9861201643943787, - -0.9788286685943604, - -0.9717937111854553, - -0.9649975895881653, - -0.9584245681762695, - -0.9520604014396667, - -0.9145327210426331, - -0.9052243232727051, - -0.8964056968688965, - -0.8880258798599243, - -0.880041778087616, - -0.8724165558815002, - -0.8651183843612671, - -0.8581196665763855, - -0.8513963222503662, - -0.8449270725250244, - -0.8386932015419006, - -0.8326778411865234, - -0.826866090297699, - -0.8212445378303528, - -0.8158010244369507, - -0.7617151737213135, - -0.7539870738983154, - -0.7466636896133423, - -0.7397029995918274, - -0.733069658279419, - -0.7267333269119263, - -0.7206677198410034, - -0.714850127696991, - -0.7092607021331787, - -0.7038818597793579, - -0.6986980438232422, - -0.6936955451965332, - -0.6888618469238281, - -0.6841859817504883, - -0.6796578168869019, - -0.609114408493042, - -0.6029506921768188, - -0.5971084833145142, - -0.591554582118988, - -0.586260974407196, - -0.5812035799026489, - -0.5763616561889648, - -0.5717171430587769, - -0.5672543048858643, - -0.5629591345787048, - -0.5588194131851196, - -0.5548240542411804, - -0.550963282585144, - -0.5472282767295837, - -0.5436110496520996, - -0.4566860496997833, - -0.4520741403102875, - -0.4477020502090454, - -0.4435451030731201, - -0.4395824670791626, - -0.43579620122909546, - -0.4321708679199219, - -0.428693026304245, - -0.42535093426704407, - -0.4221341907978058, - -0.41903358697891235, - -0.41604098677635193, - -0.41314896941185, - -0.410351037979126, - -0.40764120221138, - -0.3043862283229828, - -0.3013167679309845, - -0.29840657114982605, - -0.295639306306839, - -0.2930011451244354, - -0.2904801666736603, - -0.28806620836257935, - -0.28575026988983154, - -0.28352460265159607, - -0.281382292509079, - -0.2793172597885132, - -0.27732402086257935, - -0.27539771795272827, - -0.27353399991989136, - -0.27172887325286865, - -0.1521717756986618, - -0.15063859522342682, - -0.14918485283851624, - -0.1478024274110794, - -0.1464844048023224, - -0.1452248990535736, - -0.1440187692642212, - -0.14286160469055176, - -0.14174948632717133, - -0.1406789869070053, - -0.13964706659317017, - -0.13865099847316742, - -0.13768835365772247, - -0.13675697147846222, - -0.13585485517978668, - -4.76160515461288e-8, - -4.713644230491809e-8, - -4.6681673637749554e-8, - -4.624920180162917e-8, - -4.5836873852067583e-8, - -4.544284237795182e-8, - -4.506550865812642e-8, - -4.470348358154297e-8, - -4.435554856740964e-8, - -4.402063069619544e-8, - -4.369778139334812e-8, - -4.33861444548711e-8, - -4.308496315275079e-8, - -4.2793558918674535e-8, - -4.251131002774855e-8, - 0.1521717756986618, - 0.15063859522342682, - 0.14918485283851624, - 0.1478024274110794, - 0.1464844048023224, - 0.1452248990535736, - 0.1440187692642212, - 0.14286160469055176, - 0.14174948632717133, - 0.1406789869070053, - 0.13964706659317017, - 0.13865099847316742, - 0.13768835365772247, - 0.13675697147846222, - 0.13585485517978668, - 0.3043862283229828, - 0.3013167679309845, - 0.29840657114982605, - 0.295639306306839, - 0.2930011451244354, - 0.2904801666736603, - 0.28806620836257935, - 0.28575026988983154, - 0.28352460265159607, - 0.281382292509079, - 0.2793172597885132, - 0.27732402086257935, - 0.27539771795272827, - 0.27353399991989136, - 0.27172887325286865, - 0.4566860496997833, - 0.4520741403102875, - 0.4477020502090454, - 0.4435451030731201, - 0.4395824670791626, - 0.43579620122909546, - 0.4321708679199219, - 0.428693026304245, - 0.42535093426704407, - 0.4221341907978058, - 0.41903358697891235, - 0.41604098677635193, - 0.41314896941185, - 0.410351037979126, - 0.40764120221138, - 0.609114408493042, - 0.6029506921768188, - 0.5971084833145142, - 0.591554582118988, - 0.586260974407196, - 0.5812035799026489, - 0.5763616561889648, - 0.5717171430587769, - 0.5672543048858643, - 0.5629591345787048, - 0.5588194131851196, - 0.5548240542411804, - 0.550963282585144, - 0.5472282767295837, - 0.5436110496520996, - 0.7617151737213135, - 0.7539870738983154, - 0.7466636896133423, - 0.7397029995918274, - 0.733069658279419, - 0.7267333269119263, - 0.7206677198410034, - 0.714850127696991, - 0.7092607021331787, - 0.7038818597793579, - 0.6986980438232422, - 0.6936955451965332, - 0.6888618469238281, - 0.6841859817504883, - 0.6796578168869019, - 0.9145327210426331, - 0.9052243232727051, - 0.8964056968688965, - 0.8880258798599243, - 0.880041778087616, - 0.8724165558815002, - 0.8651183843612671, - 0.8581196665763855, - 0.8513963222503662, - 0.8449270725250244, - 0.8386932015419006, - 0.8326778411865234, - 0.826866090297699, - 0.8212445378303528, - 0.8158010244369507, - 1.067612648010254, - 1.0567044019699097, - 1.0463736057281494, - 1.0365595817565918, - 1.027211308479309, - 1.0182851552963257, - 1.0097436904907227, - 1.001554012298584, - 0.9936879277229309, - 0.9861201643943787, - 0.9788286685943604, - 0.9717937111854553, - 0.9649975895881653, - 0.9584245681762695, - 0.9520604014396667 - ], - "xaxis": "x3", - "y": [ - -1.1399519443511963, - -0.9659084677696228, - -0.7977307438850403, - -0.6348620057106018, - -0.4768286347389221, - -0.3232232928276062, - -0.17369292676448822, - -0.02792922779917717, - 0.1143394261598587, - 0.2533532381057739, - 0.3893261253833771, - 0.5224495530128479, - 0.6528957486152649, - 0.7808201313018799, - 0.9063637852668762, - -1.1295576095581055, - -0.9560787081718445, - -0.7884048819541931, - -0.6259890198707581, - -0.46836504340171814, - -0.31513190269470215, - -0.1659415364265442, - -0.020489737391471863, - 0.12149165570735931, - 0.26023992896080017, - 0.3959665596485138, - 0.5288609266281128, - 0.6590934991836548, - 0.7868181467056274, - 0.9121745228767395, - -1.1207996606826782, - -0.9477939009666443, - -0.7805426120758057, - -0.618506669998169, - -0.4612264335155487, - -0.30830591917037964, - -0.15940122306346893, - -0.014211617410182953, - 0.12752819061279297, - 0.26605308055877686, - 0.40157249569892883, - 0.5342741012573242, - 0.6643267869949341, - 0.7918832302093506, - 0.917081892490387, - -1.1136592626571655, - -0.9410374164581299, - -0.7741292715072632, - -0.6124020218849182, - -0.455401211977005, - -0.302734911441803, - -0.15406262874603271, - -0.009086383506655693, - 0.13245677947998047, - 0.27079981565475464, - 0.4061504602432251, - 0.5386950373649597, - 0.6686012148857117, - 0.7960205078125, - 0.9210906624794006, - -1.1081211566925049, - -0.9357960224151611, - -0.7691531181335449, - -0.6076647043228149, - -0.4508800506591797, - -0.2984105050563812, - -0.14991815388202667, - -0.005107154604047537, - 0.13628368079662323, - 0.2744857966899872, - 0.4097056984901428, - 0.5421285033226013, - 0.6719211339950562, - 0.79923415184021, - 0.9242045879364014, - -1.1041736602783203, - -0.9320594072341919, - -0.7656052112579346, - -0.6042865514755249, - -0.4476557672023773, - -0.29532626271247864, - -0.1469619870185852, - -0.0022686186712235212, - 0.13901375234127045, - 0.27711552381515503, - 0.41224226355552673, - 0.5445783734321594, - 0.6742900013923645, - 0.8015273213386536, - 0.9264267683029175, - -1.1018084287643433, - -0.9298203587532043, - -0.7634789943695068, - -0.6022619605064392, - -0.44572320580482483, - -0.29347753524780273, - -0.14518992602825165, - -0.0005670004175044596, - 0.1406504213809967, - 0.2786920964717865, - 0.41376304626464844, - 0.5460472106933594, - 0.6757103800773621, - 0.802902340888977, - 0.9277592301368713, - -1.1010205745697021, - -0.9290744662284851, - -0.7627706527709961, - -0.6015874743461609, - -0.44507938623428345, - -0.29286158084869385, - -0.1445995271205902, - -4.470348358154297e-8, - 0.14119574427604675, - 0.279217392206192, - 0.4142697751522064, - 0.5465366840362549, - 0.6761837005615234, - 0.8033605217933655, - 0.9282032251358032, - -1.1018084287643433, - -0.9298203587532043, - -0.7634789943695068, - -0.6022619605064392, - -0.44572320580482483, - -0.29347753524780273, - -0.14518992602825165, - -0.0005670004175044596, - 0.1406504213809967, - 0.2786920964717865, - 0.41376304626464844, - 0.5460472106933594, - 0.6757103800773621, - 0.802902340888977, - 0.9277592301368713, - -1.1041736602783203, - -0.9320594072341919, - -0.7656052112579346, - -0.6042865514755249, - -0.4476557672023773, - -0.29532626271247864, - -0.1469619870185852, - -0.0022686186712235212, - 0.13901375234127045, - 0.27711552381515503, - 0.41224226355552673, - 0.5445783734321594, - 0.6742900013923645, - 0.8015273213386536, - 0.9264267683029175, - -1.1081211566925049, - -0.9357960224151611, - -0.7691531181335449, - -0.6076647043228149, - -0.4508800506591797, - -0.2984105050563812, - -0.14991815388202667, - -0.005107154604047537, - 0.13628368079662323, - 0.2744857966899872, - 0.4097056984901428, - 0.5421285033226013, - 0.6719211339950562, - 0.79923415184021, - 0.9242045879364014, - -1.1136592626571655, - -0.9410374164581299, - -0.7741292715072632, - -0.6124020218849182, - -0.455401211977005, - -0.302734911441803, - -0.15406262874603271, - -0.009086383506655693, - 0.13245677947998047, - 0.27079981565475464, - 0.4061504602432251, - 0.5386950373649597, - 0.6686012148857117, - 0.7960205078125, - 0.9210906624794006, - -1.1207996606826782, - -0.9477939009666443, - -0.7805426120758057, - -0.618506669998169, - -0.4612264335155487, - -0.30830591917037964, - -0.15940122306346893, - -0.014211617410182953, - 0.12752819061279297, - 0.26605308055877686, - 0.40157249569892883, - 0.5342741012573242, - 0.6643267869949341, - 0.7918832302093506, - 0.917081892490387, - -1.1295576095581055, - -0.9560787081718445, - -0.7884048819541931, - -0.6259890198707581, - -0.46836504340171814, - -0.31513190269470215, - -0.1659415364265442, - -0.020489737391471863, - 0.12149165570735931, - 0.26023992896080017, - 0.3959665596485138, - 0.5288609266281128, - 0.6590934991836548, - 0.7868181467056274, - 0.9121745228767395, - -1.1399519443511963, - -0.9659084677696228, - -0.7977307438850403, - -0.6348620057106018, - -0.4768286347389221, - -0.3232232928276062, - -0.17369292676448822, - -0.02792922779917717, - 0.1143394261598587, - 0.2533532381057739, - 0.3893261253833771, - 0.5224495530128479, - 0.6528957486152649, - 0.7808201313018799, - 0.9063637852668762 - ], - "yaxis": "y3" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -1.0852291584014893, - -1.0709868669509888, - -1.057722568511963, - -1.045304536819458, - -1.0336272716522217, - -1.022603988647461, - -1.0121631622314453, - -1.0022448301315308, - -0.9927977323532104, - -0.9837784171104431, - -0.9751491546630859, - -0.966877281665802, - -0.95893394947052, - -0.9512940645217896, - -0.9439350366592407, - -0.9292769432067871, - -0.9171567559242249, - -0.9058611392974854, - -0.8952803015708923, - -0.8853256702423096, - -0.8759246468544006, - -0.8670172095298767, - -0.8585526943206787, - -0.8504881858825684, - -0.8427868485450745, - -0.8354169726371765, - -0.828350841999054, - -0.8215641975402832, - -0.8150356411933899, - -0.8087461590766907, - -0.7737548351287842, - -0.7637152671813965, - -0.7543535828590393, - -0.7455800771713257, - -0.7373224496841431, - -0.7295214533805847, - -0.7221276760101318, - -0.7150997519493103, - -0.7084023356437683, - -0.7020052075386047, - -0.695882260799408, - -0.690010666847229, - -0.6843704581260681, - -0.678943932056427, - -0.6737155318260193, - -0.6185861825942993, - -0.6105937361717224, - -0.6031374931335449, - -0.5961471199989319, - -0.5895655751228333, - -0.5833462476730347, - -0.577450156211853, - -0.5718445181846619, - -0.5665015578269958, - -0.5613973140716553, - -0.5565110445022583, - -0.551824688911438, - -0.5473225116729736, - -0.5429903864860535, - -0.538815975189209, - -0.4636974334716797, - -0.4577256739139557, - -0.45215266942977905, - -0.4469262659549713, - -0.44200435280799866, - -0.4373522698879242, - -0.43294113874435425, - -0.42874664068222046, - -0.42474809288978577, - -0.42092767357826233, - -0.4172699749469757, - -0.41376158595085144, - -0.410390704870224, - -0.4071469008922577, - -0.40402093529701233, - -0.30901676416397095, - -0.30504629015922546, - -0.3013399839401245, - -0.2978634834289551, - -0.29458895325660706, - -0.2914934456348419, - -0.28855785727500916, - -0.2857661545276642, - -0.2831045389175415, - -0.28056129813194275, - -0.27812615036964417, - -0.2757902443408966, - -0.2735457420349121, - -0.27138569951057434, - -0.2693040370941162, - -0.15447400510311127, - -0.15249194204807281, - -0.15064148604869843, - -0.14890556037425995, - -0.1472702920436859, - -0.14572429656982422, - -0.1442580670118332, - -0.14286358654499054, - -0.1415340155363083, - -0.14026348292827606, - -0.13904692232608795, - -0.1378798633813858, - -0.13675843179225922, - -0.13567917048931122, - -0.13463900983333588, - -4.8335117242004344e-8, - -4.77152113376178e-8, - -4.713644230491809e-8, - -4.6593470415245974e-8, - -4.6081964910626994e-8, - -4.559836597195499e-8, - -4.5139710636021846e-8, - -4.470348358154297e-8, - -4.428755673302476e-8, - -4.389009333749527e-8, - -4.350950177922641e-8, - -4.314439649988344e-8, - -4.2793558918674535e-8, - -4.2455909010641335e-8, - -4.2130491095804246e-8, - 0.15447400510311127, - 0.15249194204807281, - 0.15064148604869843, - 0.14890556037425995, - 0.1472702920436859, - 0.14572429656982422, - 0.1442580670118332, - 0.14286358654499054, - 0.1415340155363083, - 0.14026348292827606, - 0.13904692232608795, - 0.1378798633813858, - 0.13675843179225922, - 0.13567917048931122, - 0.13463900983333588, - 0.30901676416397095, - 0.30504629015922546, - 0.3013399839401245, - 0.2978634834289551, - 0.29458895325660706, - 0.2914934456348419, - 0.28855785727500916, - 0.2857661545276642, - 0.2831045389175415, - 0.28056129813194275, - 0.27812615036964417, - 0.2757902443408966, - 0.2735457420349121, - 0.27138569951057434, - 0.2693040370941162, - 0.4636974334716797, - 0.4577256739139557, - 0.45215266942977905, - 0.4469262659549713, - 0.44200435280799866, - 0.4373522698879242, - 0.43294113874435425, - 0.42874664068222046, - 0.42474809288978577, - 0.42092767357826233, - 0.4172699749469757, - 0.41376158595085144, - 0.410390704870224, - 0.4071469008922577, - 0.40402093529701233, - 0.6185861825942993, - 0.6105937361717224, - 0.6031374931335449, - 0.5961471199989319, - 0.5895655751228333, - 0.5833462476730347, - 0.577450156211853, - 0.5718445181846619, - 0.5665015578269958, - 0.5613973140716553, - 0.5565110445022583, - 0.551824688911438, - 0.5473225116729736, - 0.5429903864860535, - 0.538815975189209, - 0.7737548351287842, - 0.7637152671813965, - 0.7543535828590393, - 0.7455800771713257, - 0.7373224496841431, - 0.7295214533805847, - 0.7221276760101318, - 0.7150997519493103, - 0.7084023356437683, - 0.7020052075386047, - 0.695882260799408, - 0.690010666847229, - 0.6843704581260681, - 0.678943932056427, - 0.6737155318260193, - 0.9292769432067871, - 0.9171567559242249, - 0.9058611392974854, - 0.8952803015708923, - 0.8853256702423096, - 0.8759246468544006, - 0.8670172095298767, - 0.8585526943206787, - 0.8504881858825684, - 0.8427868485450745, - 0.8354169726371765, - 0.828350841999054, - 0.8215641975402832, - 0.8150356411933899, - 0.8087461590766907, - 1.0852291584014893, - 1.0709868669509888, - 1.057722568511963, - 1.045304536819458, - 1.0336272716522217, - 1.022603988647461, - 1.0121631622314453, - 1.0022448301315308, - 0.9927977323532104, - 0.9837784171104431, - 0.9751491546630859, - 0.966877281665802, - 0.95893394947052, - 0.9512940645217896, - 0.9439350366592407 - ], - "xaxis": "x3", - "y": [ - -1.1780338287353516, - -0.9942249655723572, - -0.8185867071151733, - -0.6501156091690063, - -0.48799851536750793, - -0.33156511187553406, - -0.1802554428577423, - -0.033596064895391464, - 0.10881805419921875, - 0.24733607470989227, - 0.38226181268692017, - 0.5138614773750305, - 0.6423699855804443, - 0.7679957747459412, - 0.890924870967865, - -1.1643582582473755, - -0.9815202951431274, - -0.8067179322242737, - -0.6389750242233276, - -0.4774986207485199, - -0.321633905172348, - -0.1708327829837799, - -0.024631138890981674, - 0.11736855655908585, - 0.2555094361305237, - 0.39009031653404236, - 0.5213733315467834, - 0.6495900750160217, - 0.7749459743499756, - 0.897624671459198, - -1.1528667211532593, - -0.970837414264679, - -0.7967322468757629, - -0.6295974850654602, - -0.4686568081378937, - -0.3132680058479309, - -0.16289278864860535, - -0.017074789851903915, - 0.1245773509144783, - 0.2624017596244812, - 0.3966931104660034, - 0.5277102589607239, - 0.6556817889213562, - 0.7808108329772949, - 0.9032789468765259, - -1.1435184478759766, - -0.9621421098709106, - -0.7886006832122803, - -0.6219581365585327, - -0.4614514112472534, - -0.30644842982292175, - -0.15641874074935913, - -0.010912158526480198, - 0.13045771420001984, - 0.2680249512195587, - 0.4020810127258301, - 0.5328818559646606, - 0.6606539487838745, - 0.7855983972549438, - 0.9078952074050903, - -1.1362805366516113, - -0.9554068446159363, - -0.7822997570037842, - -0.6160367727279663, - -0.45586496591567993, - -0.30115988850593567, - -0.15139715373516083, - -0.006131260190159082, - 0.13502036035060883, - 0.2723886966705322, - 0.40626266598701477, - 0.5368961691856384, - 0.6645138263702393, - 0.789315402507782, - 0.9114794731140137, - -1.131128191947937, - -0.9506106972694397, - -0.7778117060661316, - -0.6118181347846985, - -0.45188409090042114, - -0.2973906695842743, - -0.14781762659549713, - -0.0027228626422584057, - 0.13827353715896606, - 0.2755003869533539, - 0.4092448055744171, - 0.5397592186927795, - 0.6672669649124146, - 0.7919667363166809, - 0.9140362739562988, - -1.1280436515808105, - -0.9477388858795166, - -0.7751238346099854, - -0.6092911958694458, - -0.44949930906295776, - -0.29513242840766907, - -0.14567284286022186, - -0.0006804245640523732, - 0.14022311568260193, - 0.2773653268814087, - 0.41103219985961914, - 0.5414752960205078, - 0.6689172983169556, - 0.7935560941696167, - 0.9155690670013428, - -1.1270166635513306, - -0.9467825889587402, - -0.7742287516593933, - -0.6084496378898621, - -0.4487050175666809, - -0.294380247592926, - -0.14495839178562164, - -4.470348358154297e-8, - 0.14087259769439697, - 0.277986615896225, - 0.4116276800632477, - 0.5420470237731934, - 0.6694670915603638, - 0.794085681438446, - 0.9160798192024231, - -1.1280436515808105, - -0.9477388858795166, - -0.7751238346099854, - -0.6092911958694458, - -0.44949930906295776, - -0.29513242840766907, - -0.14567284286022186, - -0.0006804245640523732, - 0.14022311568260193, - 0.2773653268814087, - 0.41103219985961914, - 0.5414752960205078, - 0.6689172983169556, - 0.7935560941696167, - 0.9155690670013428, - -1.131128191947937, - -0.9506106972694397, - -0.7778117060661316, - -0.6118181347846985, - -0.45188409090042114, - -0.2973906695842743, - -0.14781762659549713, - -0.0027228626422584057, - 0.13827353715896606, - 0.2755003869533539, - 0.4092448055744171, - 0.5397592186927795, - 0.6672669649124146, - 0.7919667363166809, - 0.9140362739562988, - -1.1362805366516113, - -0.9554068446159363, - -0.7822997570037842, - -0.6160367727279663, - -0.45586496591567993, - -0.30115988850593567, - -0.15139715373516083, - -0.006131260190159082, - 0.13502036035060883, - 0.2723886966705322, - 0.40626266598701477, - 0.5368961691856384, - 0.6645138263702393, - 0.789315402507782, - 0.9114794731140137, - -1.1435184478759766, - -0.9621421098709106, - -0.7886006832122803, - -0.6219581365585327, - -0.4614514112472534, - -0.30644842982292175, - -0.15641874074935913, - -0.010912158526480198, - 0.13045771420001984, - 0.2680249512195587, - 0.4020810127258301, - 0.5328818559646606, - 0.6606539487838745, - 0.7855983972549438, - 0.9078952074050903, - -1.1528667211532593, - -0.970837414264679, - -0.7967322468757629, - -0.6295974850654602, - -0.4686568081378937, - -0.3132680058479309, - -0.16289278864860535, - -0.017074789851903915, - 0.1245773509144783, - 0.2624017596244812, - 0.3966931104660034, - 0.5277102589607239, - 0.6556817889213562, - 0.7808108329772949, - 0.9032789468765259, - -1.1643582582473755, - -0.9815202951431274, - -0.8067179322242737, - -0.6389750242233276, - -0.4774986207485199, - -0.321633905172348, - -0.1708327829837799, - -0.024631138890981674, - 0.11736855655908585, - 0.2555094361305237, - 0.39009031653404236, - 0.5213733315467834, - 0.6495900750160217, - 0.7749459743499756, - 0.897624671459198, - -1.1780338287353516, - -0.9942249655723572, - -0.8185867071151733, - -0.6501156091690063, - -0.48799851536750793, - -0.33156511187553406, - -0.1802554428577423, - -0.033596064895391464, - 0.10881805419921875, - 0.24733607470989227, - 0.38226181268692017, - 0.5138614773750305, - 0.6423699855804443, - 0.7679957747459412, - 0.890924870967865 - ], - "yaxis": "y3" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -1.1049867868423462, - -1.0867058038711548, - -1.0700255632400513, - -1.0546743869781494, - -1.0404468774795532, - -1.0271835327148438, - -1.0147576332092285, - -1.0030666589736938, - -0.9920265674591064, - -0.9815671443939209, - -0.9716294407844543, - -0.9621632695198059, - -0.9531254768371582, - -0.9444788098335266, - -0.9361907243728638, - -0.9456915259361267, - -0.9301964044570923, - -0.9160389304161072, - -0.9029955863952637, - -0.8908964395523071, - -0.8796089291572571, - -0.8690276145935059, - -0.8590669631958008, - -0.8496564626693726, - -0.8407374620437622, - -0.8322603702545166, - -0.8241830468177795, - -0.8164690732955933, - -0.8090871572494507, - -0.8020097613334656, - -0.7870748043060303, - -0.7742818593978882, - -0.7625804543495178, - -0.7517903447151184, - -0.7417740225791931, - -0.7324240207672119, - -0.7236545085906982, - -0.7153957486152649, - -0.7075902223587036, - -0.7001899480819702, - -0.6931542158126831, - -0.6864485740661621, - -0.6800431609153748, - -0.6739121079444885, - -0.6680329442024231, - -0.6290116310119629, - -0.6188539862632751, - -0.6095548272132874, - -0.6009737849235535, - -0.593003511428833, - -0.5855597853660583, - -0.5785753726959229, - -0.5719954371452332, - -0.56577467918396, - -0.5598753094673157, - -0.5542652606964111, - -0.548917293548584, - -0.5438077449798584, - -0.5389163494110107, - -0.5342251062393188, - -0.4713839590549469, - -0.4638097286224365, - -0.456870973110199, - -0.4504645764827728, - -0.4445115327835083, - -0.43894973397254944, - -0.4337294101715088, - -0.42881008982658386, - -0.4241582155227661, - -0.4197457730770111, - -0.4155489504337311, - -0.41154754161834717, - -0.407723993062973, - -0.4040631949901581, - -0.40055182576179504, - -0.3140787184238434, - -0.30904990434646606, - -0.30444082617759705, - -0.3001837730407715, - -0.29622671008110046, - -0.29252874851226807, - -0.28905704617500305, - -0.28578490018844604, - -0.2826901376247406, - -0.2797541916370392, - -0.27696141600608826, - -0.2742983400821686, - -0.2717534005641937, - -0.26931652426719666, - -0.266978919506073, - -0.15698638558387756, - -0.15447813272476196, - -0.1521785855293274, - -0.1500541865825653, - -0.14807912707328796, - -0.14623309671878815, - -0.1444997936487198, - -0.14286592602729797, - -0.14132048189640045, - -0.13985422253608704, - -0.13845933973789215, - -0.13712915778160095, - -0.13585790991783142, - -0.13464057445526123, - -0.13347278535366058, - -4.911936812845852e-8, - -4.8335117242004344e-8, - -4.76160515461288e-8, - -4.6951704746334144e-8, - -4.633402284071053e-8, - -4.5756660682627626e-8, - -4.5214530786097384e-8, - -4.470348358154297e-8, - -4.422007648940962e-8, - -4.3761428258903834e-8, - -4.332509462301459e-8, - -4.290899013881244e-8, - -4.251131002774855e-8, - -4.2130491095804246e-8, - -4.176516199549951e-8, - 0.15698638558387756, - 0.15447813272476196, - 0.1521785855293274, - 0.1500541865825653, - 0.14807912707328796, - 0.14623309671878815, - 0.1444997936487198, - 0.14286592602729797, - 0.14132048189640045, - 0.13985422253608704, - 0.13845933973789215, - 0.13712915778160095, - 0.13585790991783142, - 0.13464057445526123, - 0.13347278535366058, - 0.3140787184238434, - 0.30904990434646606, - 0.30444082617759705, - 0.3001837730407715, - 0.29622671008110046, - 0.29252874851226807, - 0.28905704617500305, - 0.28578490018844604, - 0.2826901376247406, - 0.2797541916370392, - 0.27696141600608826, - 0.2742983400821686, - 0.2717534005641937, - 0.26931652426719666, - 0.266978919506073, - 0.4713839590549469, - 0.4638097286224365, - 0.456870973110199, - 0.4504645764827728, - 0.4445115327835083, - 0.43894973397254944, - 0.4337294101715088, - 0.42881008982658386, - 0.4241582155227661, - 0.4197457730770111, - 0.4155489504337311, - 0.41154754161834717, - 0.407723993062973, - 0.4040631949901581, - 0.40055182576179504, - 0.6290116310119629, - 0.6188539862632751, - 0.6095548272132874, - 0.6009737849235535, - 0.593003511428833, - 0.5855597853660583, - 0.5785753726959229, - 0.5719954371452332, - 0.56577467918396, - 0.5598753094673157, - 0.5542652606964111, - 0.548917293548584, - 0.5438077449798584, - 0.5389163494110107, - 0.5342251062393188, - 0.7870748043060303, - 0.7742818593978882, - 0.7625804543495178, - 0.7517903447151184, - 0.7417740225791931, - 0.7324240207672119, - 0.7236545085906982, - 0.7153957486152649, - 0.7075902223587036, - 0.7001899480819702, - 0.6931542158126831, - 0.6864485740661621, - 0.6800431609153748, - 0.6739121079444885, - 0.6680329442024231, - 0.9456915259361267, - 0.9301964044570923, - 0.9160389304161072, - 0.9029955863952637, - 0.8908964395523071, - 0.8796089291572571, - 0.8690276145935059, - 0.8590669631958008, - 0.8496564626693726, - 0.8407374620437622, - 0.8322603702545166, - 0.8241830468177795, - 0.8164690732955933, - 0.8090871572494507, - 0.8020097613334656, - 1.1049867868423462, - 1.0867058038711548, - 1.0700255632400513, - 1.0546743869781494, - 1.0404468774795532, - 1.0271835327148438, - 1.0147576332092285, - 1.0030666589736938, - 0.9920265674591064, - 0.9815671443939209, - 0.9716294407844543, - 0.9621632695198059, - 0.9531254768371582, - 0.9444788098335266, - 0.9361907243728638 - ], - "xaxis": "x3", - "y": [ - -1.221579909324646, - -1.025842308998108, - -0.8414079546928406, - -0.6665142774581909, - -0.49981483817100525, - -0.34025290608406067, - -0.1869811713695526, - -0.039308082312345505, - 0.10333999991416931, - 0.2414446771144867, - 0.37541520595550537, - 0.5056028366088867, - 0.6323117613792419, - 0.7558072209358215, - 0.8763225674629211, - -1.2038630247116089, - -1.0097432136535645, - -0.8266409039497375, - -0.6528658270835876, - -0.4871208369731903, - -0.3283839225769043, - -0.17583337426185608, - -0.028796635568141937, - 0.11328533291816711, - 0.2508828043937683, - 0.3843960165977478, - 0.5141690373420715, - 0.6405001878738403, - 0.7636498808860779, - 0.8838474750518799, - -1.1890349388122559, - -0.9962506890296936, - -0.8142513632774353, - -0.6414047479629517, - -0.4764534533023834, - -0.31840381026268005, - -0.16645477712154388, - -0.01994946226477623, - 0.1216592788696289, - 0.2588323950767517, - 0.3919626772403717, - 0.5213882923126221, - 0.6474027037620544, - 0.7702623605728149, - 0.8901933431625366, - -1.177011489868164, - -0.9852979779243469, - -0.8041850924491882, - -0.6320862174034119, - -0.46777504682540894, - -0.3102804720401764, - -0.1588178426027298, - -0.012742607854306698, - 0.12848281860351562, - 0.26531192660331726, - 0.3981316387653351, - 0.5272753238677979, - 0.6530325412750244, - 0.7756566405296326, - 0.8953708410263062, - -1.1677260398864746, - -0.9768320322036743, - -0.7963990569114685, - -0.6248744130134583, - -0.46105557680130005, - -0.3039883077144623, - -0.15290042757987976, - -0.007156835403293371, - 0.1337728202342987, - 0.2703363597393036, - 0.40291619300842285, - 0.5318419933319092, - 0.6574004292488098, - 0.7798423171043396, - 0.8993889093399048, - -1.1611285209655762, - -0.970812976360321, - -0.7908604741096497, - -0.619742214679718, - -0.45627206563949585, - -0.29950767755508423, - -0.14868561923503876, - -0.003177395323291421, - 0.137542262673378, - 0.27391716837882996, - 0.4063265025615692, - 0.5350974798202515, - 0.6605145335197449, - 0.7828267812728882, - 0.9022541642189026, - -1.1571837663650513, - -0.9672126173973083, - -0.7875463962554932, - -0.6166704297065735, - -0.4534083604812622, - -0.29682478308677673, - -0.14616148173809052, - -0.000793866696767509, - 0.1398002952337265, - 0.27606239914894104, - 0.40836983919143677, - 0.5370481610298157, - 0.6623806357383728, - 0.7846153974533081, - 0.9039713740348816, - -1.1558711528778076, - -0.9660143256187439, - -0.7864432334899902, - -0.6156477928161621, - -0.4524548649787903, - -0.2959313988685608, - -0.14532089233398438, - -4.470348358154297e-8, - 0.14055235683918, - 0.2767769694328308, - 0.40905046463012695, - 0.537697970867157, - 0.6630023121833801, - 0.7852112650871277, - 0.9045434594154358, - -1.1571837663650513, - -0.9672126173973083, - -0.7875463962554932, - -0.6166704297065735, - -0.4534083604812622, - -0.29682478308677673, - -0.14616148173809052, - -0.000793866696767509, - 0.1398002952337265, - 0.27606239914894104, - 0.40836983919143677, - 0.5370481610298157, - 0.6623806357383728, - 0.7846153974533081, - 0.9039713740348816, - -1.1611285209655762, - -0.970812976360321, - -0.7908604741096497, - -0.619742214679718, - -0.45627206563949585, - -0.29950767755508423, - -0.14868561923503876, - -0.003177395323291421, - 0.137542262673378, - 0.27391716837882996, - 0.4063265025615692, - 0.5350974798202515, - 0.6605145335197449, - 0.7828267812728882, - 0.9022541642189026, - -1.1677260398864746, - -0.9768320322036743, - -0.7963990569114685, - -0.6248744130134583, - -0.46105557680130005, - -0.3039883077144623, - -0.15290042757987976, - -0.007156835403293371, - 0.1337728202342987, - 0.2703363597393036, - 0.40291619300842285, - 0.5318419933319092, - 0.6574004292488098, - 0.7798423171043396, - 0.8993889093399048, - -1.177011489868164, - -0.9852979779243469, - -0.8041850924491882, - -0.6320862174034119, - -0.46777504682540894, - -0.3102804720401764, - -0.1588178426027298, - -0.012742607854306698, - 0.12848281860351562, - 0.26531192660331726, - 0.3981316387653351, - 0.5272753238677979, - 0.6530325412750244, - 0.7756566405296326, - 0.8953708410263062, - -1.1890349388122559, - -0.9962506890296936, - -0.8142513632774353, - -0.6414047479629517, - -0.4764534533023834, - -0.31840381026268005, - -0.16645477712154388, - -0.01994946226477623, - 0.1216592788696289, - 0.2588323950767517, - 0.3919626772403717, - 0.5213882923126221, - 0.6474027037620544, - 0.7702623605728149, - 0.8901933431625366, - -1.2038630247116089, - -1.0097432136535645, - -0.8266409039497375, - -0.6528658270835876, - -0.4871208369731903, - -0.3283839225769043, - -0.17583337426185608, - -0.028796635568141937, - 0.11328533291816711, - 0.2508828043937683, - 0.3843960165977478, - 0.5141690373420715, - 0.6405001878738403, - 0.7636498808860779, - 0.8838474750518799, - -1.221579909324646, - -1.025842308998108, - -0.8414079546928406, - -0.6665142774581909, - -0.49981483817100525, - -0.34025290608406067, - -0.1869811713695526, - -0.039308082312345505, - 0.10333999991416931, - 0.2414446771144867, - 0.37541520595550537, - 0.5056028366088867, - 0.6323117613792419, - 0.7558072209358215, - 0.8763225674629211 - ], - "yaxis": "y3" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -1.1275204420089722, - -1.104196548461914, - -1.0834589004516602, - -1.0647602081298828, - -1.0477162599563599, - -1.0320459604263306, - -1.0175365209579468, - -1.0040227174758911, - -0.9913730025291443, - -0.9794813990592957, - -0.9682607650756836, - -0.9576383829116821, - -0.9475533366203308, - -0.9379534721374512, - -0.9287943243980408, - -0.9642359018325806, - -0.9445816874504089, - -0.9270614385604858, - -0.9112330675125122, - -0.8967836499214172, - -0.883482813835144, - -0.8711550831794739, - -0.8596638441085815, - -0.8489000201225281, - -0.8387752771377563, - -0.8292168974876404, - -0.820164144039154, - -0.8115659356117249, - -0.8033785820007324, - -0.7955646514892578, - -0.8020040988922119, - -0.7858544588088989, - -0.7714279890060425, - -0.7583740949630737, - -0.7464426755905151, - -0.7354487776756287, - -0.7252510190010071, - -0.7157387137413025, - -0.706823468208313, - -0.6984333992004395, - -0.6905093193054199, - -0.683001697063446, - -0.6758686304092407, - -0.6690744757652283, - -0.6625885367393494, - -0.640621542930603, - -0.6278468370437622, - -0.6164164543151855, - -0.6060604453086853, - -0.596585750579834, - -0.5878485441207886, - -0.5797387361526489, - -0.5721700191497803, - -0.5650730729103088, - -0.5583915710449219, - -0.5520789623260498, - -0.5460963845252991, - -0.5404106974601746, - -0.5349939465522766, - -0.5298218727111816, - -0.4799012243747711, - -0.47040271759033203, - -0.46189308166503906, - -0.45417600870132446, - -0.4471103250980377, - -0.4405907392501831, - -0.43453627824783325, - -0.4288834035396576, - -0.4235810339450836, - -0.4185875356197357, - -0.4138685464859009, - -0.40939515829086304, - -0.40514296293258667, - -0.40109115839004517, - -0.39722171425819397, - -0.319667786359787, - -0.31337401270866394, - -0.3077305257320404, - -0.30260926485061646, - -0.29791781306266785, - -0.2935870885848999, - -0.28956395387649536, - -0.2858065366744995, - -0.28228121995925903, - -0.27896058559417725, - -0.27582186460494995, - -0.2728460133075714, - -0.27001693844795227, - -0.26732081174850464, - -0.2647457420825958, - -0.15975449979305267, - -0.15661902725696564, - -0.15380607545375824, - -0.15125241875648499, - -0.14891234040260315, - -0.14675164222717285, - -0.14474399387836456, - -0.14286862313747406, - -0.14110884070396423, - -0.13945099711418152, - -0.13788381218910217, - -0.1363978236913681, - -0.13498498499393463, - -0.1336384415626526, - -0.13235227763652802, - -4.9982837424522586e-8, - -4.9002856883362256e-8, - -4.812352827343602e-8, - -4.732514824468126e-8, - -4.6593470415245974e-8, - -4.591782243323905e-8, - -4.528998687192143e-8, - -4.470348358154297e-8, - -4.4153100731136874e-8, - -4.363458216971594e-8, - -4.314439649988344e-8, - -4.2679591416572293e-8, - -4.223765870392526e-8, - -4.1816452522880354e-8, - -4.141412190961091e-8, - 0.15975449979305267, - 0.15661902725696564, - 0.15380607545375824, - 0.15125241875648499, - 0.14891234040260315, - 0.14675164222717285, - 0.14474399387836456, - 0.14286862313747406, - 0.14110884070396423, - 0.13945099711418152, - 0.13788381218910217, - 0.1363978236913681, - 0.13498498499393463, - 0.1336384415626526, - 0.13235227763652802, - 0.319667786359787, - 0.31337401270866394, - 0.3077305257320404, - 0.30260926485061646, - 0.29791781306266785, - 0.2935870885848999, - 0.28956395387649536, - 0.2858065366744995, - 0.28228121995925903, - 0.27896058559417725, - 0.27582186460494995, - 0.2728460133075714, - 0.27001693844795227, - 0.26732081174850464, - 0.2647457420825958, - 0.4799012243747711, - 0.47040271759033203, - 0.46189308166503906, - 0.45417600870132446, - 0.4471103250980377, - 0.4405907392501831, - 0.43453627824783325, - 0.4288834035396576, - 0.4235810339450836, - 0.4185875356197357, - 0.4138685464859009, - 0.40939515829086304, - 0.40514296293258667, - 0.40109115839004517, - 0.39722171425819397, - 0.640621542930603, - 0.6278468370437622, - 0.6164164543151855, - 0.6060604453086853, - 0.596585750579834, - 0.5878485441207886, - 0.5797387361526489, - 0.5721700191497803, - 0.5650730729103088, - 0.5583915710449219, - 0.5520789623260498, - 0.5460963845252991, - 0.5404106974601746, - 0.5349939465522766, - 0.5298218727111816, - 0.8020040988922119, - 0.7858544588088989, - 0.7714279890060425, - 0.7583740949630737, - 0.7464426755905151, - 0.7354487776756287, - 0.7252510190010071, - 0.7157387137413025, - 0.706823468208313, - 0.6984333992004395, - 0.6905093193054199, - 0.683001697063446, - 0.6758686304092407, - 0.6690744757652283, - 0.6625885367393494, - 0.9642359018325806, - 0.9445816874504089, - 0.9270614385604858, - 0.9112330675125122, - 0.8967836499214172, - 0.883482813835144, - 0.8711550831794739, - 0.8596638441085815, - 0.8489000201225281, - 0.8387752771377563, - 0.8292168974876404, - 0.820164144039154, - 0.8115659356117249, - 0.8033785820007324, - 0.7955646514892578, - 1.1275204420089722, - 1.104196548461914, - 1.0834589004516602, - 1.0647602081298828, - 1.0477162599563599, - 1.0320459604263306, - 1.0175365209579468, - 1.0040227174758911, - 0.9913730025291443, - 0.9794813990592957, - 0.9682607650756836, - 0.9576383829116821, - 0.9475533366203308, - 0.9379534721374512, - 0.9287943243980408 - ], - "xaxis": "x3", - "y": [ - -1.2723534107208252, - -1.0615968704223633, - -0.8665884137153625, - -0.6842405200004578, - -0.5123602151870728, - -0.3493231236934662, - -0.19388626515865326, - -0.045073673129081726, - 0.09789831191301346, - 0.23566964268684387, - 0.36877116560935974, - 0.4976491928100586, - 0.622683048248291, - 0.7441983819007874, - 0.8624772429466248, - -1.2494834661483765, - -1.041399359703064, - -0.8484700918197632, - -0.6677923202514648, - -0.49728715419769287, - -0.33540451526641846, - -0.18095232546329498, - -0.032990582287311554, - 0.10923799872398376, - 0.2463536262512207, - 0.3788721561431885, - 0.5072280764579773, - 0.6317914724349976, - 0.7528804540634155, - 0.8707711100578308, - -1.2304571866989136, - -1.0245509147644043, - -0.8333255648612976, - -0.6540226936340332, - -0.4846533238887787, - -0.3237268030643463, - -0.1700918972492218, - -0.022837670519948006, - 0.11877178400754929, - 0.25534066557884216, - 0.3873724937438965, - 0.5152921080589294, - 0.6394620537757874, - 0.7601941823959351, - 0.877759575843811, - -1.215103268623352, - -1.0109251737594604, - -0.8210581541061401, - -0.6428551077842712, - -0.47439679503440857, - -0.31423890590667725, - -0.1612621396780014, - -0.014578539878129959, - 0.1265309751033783, - 0.26265788078308105, - 0.39429590106010437, - 0.5218622088432312, - 0.6457132697105408, - 0.766156017780304, - 0.8834576606750488, - -1.2032899856567383, - -1.0004239082336426, - -0.8115919828414917, - -0.6342292428016663, - -0.46646857261657715, - -0.3069002032279968, - -0.15442895889282227, - -0.008184130303561687, - 0.13254056870937347, - 0.268326997756958, - 0.3996613919734955, - 0.5269551873207092, - 0.6505601406097412, - 0.7707794308662415, - 0.8878772258758545, - -1.1949193477630615, - -0.9929736852645874, - -0.8048699498176575, - -0.6280996203422546, - -0.46083149313926697, - -0.3016798496246338, - -0.14956632256507874, - -0.0036322653759270906, - 0.13681970536708832, - 0.27236464619636536, - 0.40348362922668457, - 0.5305839776992798, - 0.6540140509605408, - 0.7740746736526489, - 0.891027569770813, - -1.1899232864379883, - -0.9885236024856567, - -0.8008524179458618, - -0.6244344115257263, - -0.4574595093727112, - -0.29855620861053467, - -0.14665597677230835, - -0.0009073297260329127, - 0.13938184082508087, - 0.27478256821632385, - 0.405772864818573, - 0.532757580280304, - 0.6560832262039185, - 0.7760488986968994, - 0.8929151296615601, - -1.1882623434066772, - -0.9870434999465942, - -0.7995157837867737, - -0.6232147216796875, - -0.45633724331855774, - -0.297516405582428, - -0.145687073469162, - -4.470348358154297e-8, - 0.14023499190807343, - 0.275587797164917, - 0.406535267829895, - 0.5334815382957458, - 0.6567723751068115, - 0.7767064571380615, - 0.8935438990592957, - -1.1899232864379883, - -0.9885236024856567, - -0.8008524179458618, - -0.6244344115257263, - -0.4574595093727112, - -0.29855620861053467, - -0.14665597677230835, - -0.0009073297260329127, - 0.13938184082508087, - 0.27478256821632385, - 0.405772864818573, - 0.532757580280304, - 0.6560832262039185, - 0.7760488986968994, - 0.8929151296615601, - -1.1949193477630615, - -0.9929736852645874, - -0.8048699498176575, - -0.6280996203422546, - -0.46083149313926697, - -0.3016798496246338, - -0.14956632256507874, - -0.0036322653759270906, - 0.13681970536708832, - 0.27236464619636536, - 0.40348362922668457, - 0.5305839776992798, - 0.6540140509605408, - 0.7740746736526489, - 0.891027569770813, - -1.2032899856567383, - -1.0004239082336426, - -0.8115919828414917, - -0.6342292428016663, - -0.46646857261657715, - -0.3069002032279968, - -0.15442895889282227, - -0.008184130303561687, - 0.13254056870937347, - 0.268326997756958, - 0.3996613919734955, - 0.5269551873207092, - 0.6505601406097412, - 0.7707794308662415, - 0.8878772258758545, - -1.215103268623352, - -1.0109251737594604, - -0.8210581541061401, - -0.6428551077842712, - -0.47439679503440857, - -0.31423890590667725, - -0.1612621396780014, - -0.014578539878129959, - 0.1265309751033783, - 0.26265788078308105, - 0.39429590106010437, - 0.5218622088432312, - 0.6457132697105408, - 0.766156017780304, - 0.8834576606750488, - -1.2304571866989136, - -1.0245509147644043, - -0.8333255648612976, - -0.6540226936340332, - -0.4846533238887787, - -0.3237268030643463, - -0.1700918972492218, - -0.022837670519948006, - 0.11877178400754929, - 0.25534066557884216, - 0.3873724937438965, - 0.5152921080589294, - 0.6394620537757874, - 0.7601941823959351, - 0.877759575843811, - -1.2494834661483765, - -1.041399359703064, - -0.8484700918197632, - -0.6677923202514648, - -0.49728715419769287, - -0.33540451526641846, - -0.18095232546329498, - -0.032990582287311554, - 0.10923799872398376, - 0.2463536262512207, - 0.3788721561431885, - 0.5072280764579773, - 0.6317914724349976, - 0.7528804540634155, - 0.8707711100578308, - -1.2723534107208252, - -1.0615968704223633, - -0.8665884137153625, - -0.6842405200004578, - -0.5123602151870728, - -0.3493231236934662, - -0.19388626515865326, - -0.045073673129081726, - 0.09789831191301346, - 0.23566964268684387, - 0.36877116560935974, - 0.4976491928100586, - 0.622683048248291, - 0.7441983819007874, - 0.8624772429466248 - ], - "yaxis": "y3" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -1.153823733329773, - -1.1239358186721802, - -1.0982561111450195, - -1.075676441192627, - -1.0554907321929932, - -1.0372172594070435, - -1.0205111503601074, - -1.0051162242889404, - -0.9908361434936523, - -0.9775169491767883, - -0.9650352597236633, - -0.9532908201217651, - -0.9422006607055664, - -0.9316955208778381, - -0.9217167496681213, - -0.9856066107749939, - -0.9606429934501648, - -0.9390869140625, - -0.9200677871704102, - -0.9030221104621887, - -0.8875615000724792, - -0.8734056353569031, - -0.8603448271751404, - -0.8482176661491394, - -0.8368970155715942, - -0.8262805938720703, - -0.8162851333618164, - -0.8068414926528931, - -0.7978918552398682, - -0.7893871665000916, - -0.819028377532959, - -0.7986600399017334, - -0.781002402305603, - -0.7653798460960388, - -0.7513497471809387, - -0.7386044263839722, - -0.7269202470779419, - -0.7161291837692261, - -0.70610111951828, - -0.6967334151268005, - -0.6879433989524841, - -0.6796631813049316, - -0.6718367338180542, - -0.6644167304039001, - -0.6573632955551147, - -0.653749406337738, - -0.637725830078125, - -0.6237921714782715, - -0.6114377975463867, - -0.6003248691558838, - -0.5902170538902283, - -0.5809416770935059, - -0.5723683834075928, - -0.56439608335495, - -0.5569446086883545, - -0.5499492883682251, - -0.5433570742607117, - -0.5371237993240356, - -0.5312124490737915, - -0.5255915522575378, - -0.4894700050354004, - -0.4776046574115753, - -0.4672633111476898, - -0.45807912945747375, - -0.4498078525066376, - -0.44227761030197144, - -0.4353623390197754, - -0.4289666414260864, - -0.423016220331192, - -0.4174521863460541, - -0.4122268557548523, - -0.4073010981082916, - -0.40264227986335754, - -0.39822301268577576, - -0.3940199613571167, - -0.3259183466434479, - -0.3180786669254303, - -0.31123510003089905, - -0.30515044927597046, - -0.29966598749160767, - -0.29466956853866577, - -0.2900787889957428, - -0.285831093788147, - -0.2818777561187744, - -0.27818000316619873, - -0.2747064232826233, - -0.2714312672615051, - -0.2683330178260803, - -0.26539358496665955, - -0.26259753108024597, - -0.162841796875, - -0.15894274413585663, - -0.15553593635559082, - -0.15250492095947266, - -0.14977149665355682, - -0.14728035032749176, - -0.1449907422065735, - -0.14287169277668, - -0.14089906215667725, - -0.13905364274978638, - -0.13731984794139862, - -0.13568486273288727, - -0.13413800299167633, - -0.1326702982187271, - -0.1312740594148636, - -5.094500110658373e-8, - -4.972704203964895e-8, - -4.866252112378788e-8, - -4.77152113376178e-8, - -4.6860773039725245e-8, - -4.6081964910626994e-8, - -4.5366085998921335e-8, - -4.470348358154297e-8, - -4.408662235277916e-8, - -4.350950177922641e-8, - -4.2967265301285806e-8, - -4.2455909010641335e-8, - -4.197210046186228e-8, - -4.151302590571504e-8, - -4.107629436589377e-8, - 0.162841796875, - 0.15894274413585663, - 0.15553593635559082, - 0.15250492095947266, - 0.14977149665355682, - 0.14728035032749176, - 0.1449907422065735, - 0.14287169277668, - 0.14089906215667725, - 0.13905364274978638, - 0.13731984794139862, - 0.13568486273288727, - 0.13413800299167633, - 0.1326702982187271, - 0.1312740594148636, - 0.3259183466434479, - 0.3180786669254303, - 0.31123510003089905, - 0.30515044927597046, - 0.29966598749160767, - 0.29466956853866577, - 0.2900787889957428, - 0.285831093788147, - 0.2818777561187744, - 0.27818000316619873, - 0.2747064232826233, - 0.2714312672615051, - 0.2683330178260803, - 0.26539358496665955, - 0.26259753108024597, - 0.4894700050354004, - 0.4776046574115753, - 0.4672633111476898, - 0.45807912945747375, - 0.4498078525066376, - 0.44227761030197144, - 0.4353623390197754, - 0.4289666414260864, - 0.423016220331192, - 0.4174521863460541, - 0.4122268557548523, - 0.4073010981082916, - 0.40264227986335754, - 0.39822301268577576, - 0.3940199613571167, - 0.653749406337738, - 0.637725830078125, - 0.6237921714782715, - 0.6114377975463867, - 0.6003248691558838, - 0.5902170538902283, - 0.5809416770935059, - 0.5723683834075928, - 0.56439608335495, - 0.5569446086883545, - 0.5499492883682251, - 0.5433570742607117, - 0.5371237993240356, - 0.5312124490737915, - 0.5255915522575378, - 0.819028377532959, - 0.7986600399017334, - 0.781002402305603, - 0.7653798460960388, - 0.7513497471809387, - 0.7386044263839722, - 0.7269202470779419, - 0.7161291837692261, - 0.70610111951828, - 0.6967334151268005, - 0.6879433989524841, - 0.6796631813049316, - 0.6718367338180542, - 0.6644167304039001, - 0.6573632955551147, - 0.9856066107749939, - 0.9606429934501648, - 0.9390869140625, - 0.9200677871704102, - 0.9030221104621887, - 0.8875615000724792, - 0.8734056353569031, - 0.8603448271751404, - 0.8482176661491394, - 0.8368970155715942, - 0.8262805938720703, - 0.8162851333618164, - 0.8068414926528931, - 0.7978918552398682, - 0.7893871665000916, - 1.153823733329773, - 1.1239358186721802, - 1.0982561111450195, - 1.075676441192627, - 1.0554907321929932, - 1.0372172594070435, - 1.0205111503601074, - 1.0051162242889404, - 0.9908361434936523, - 0.9775169491767883, - 0.9650352597236633, - 0.9532908201217651, - 0.9422006607055664, - 0.9316955208778381, - 0.9217167496681213 - ], - "xaxis": "x3", - "y": [ - -1.3331646919250488, - -1.1026947498321533, - -0.8946552872657776, - -0.7035245895385742, - -0.5257338285446167, - -0.35881778597831726, - -0.20098872482776642, - -0.0509016253054142, - 0.09248623251914978, - 0.23000214993953705, - 0.362315833568573, - 0.48997852206230164, - 0.6134504079818726, - 0.7331202626228333, - 0.8493202328681946, - -1.3033980131149292, - -1.0774047374725342, - -0.8725926280021667, - -0.683915913105011, - -0.5080630779266357, - -0.34272122383117676, - -0.18619951605796814, - -0.037217479199171066, - 0.1052226722240448, - 0.24191594123840332, - 0.37350815534591675, - 0.5005325675010681, - 0.6234353184700012, - 0.7425943613052368, - 0.8583330512046814, - -1.2788646221160889, - -1.0564481019973755, - -0.8542438745498657, - -0.6675654053688049, - -0.49329936504364014, - -0.329252153635025, - -0.1738092005252838, - -0.025741487741470337, - 0.1159127950668335, - 0.2519226372241974, - 0.38291457295417786, - 0.509407103061676, - 0.6318351626396179, - 0.750567615032196, - 0.8659208416938782, - -1.2592114210128784, - -1.039589524269104, - -0.8394407033920288, - -0.6543468236923218, - -0.4813448190689087, - -0.31833240389823914, - -0.16375407576560974, - -0.016420770436525345, - 0.12460114061832428, - 0.26006022095680237, - 0.39056771993637085, - 0.5166305899620056, - 0.638674795627594, - 0.7570620775222778, - 0.8721030950546265, - -1.244174599647522, - -1.0266495943069458, - -0.82805335521698, - -0.6441620588302612, - -0.4721227288246155, - -0.3099004924297333, - -0.15598376095294952, - -0.009213397279381752, - 0.13132309913635254, - 0.266358882188797, - 0.3964937627315521, - 0.5222258567810059, - 0.643974244594574, - 0.7620953917503357, - 0.876895546913147, - -1.233562707901001, - -1.0174964666366577, - -0.8199855089187622, - -0.6369378566741943, - -0.4655754566192627, - -0.30390995740890503, - -0.1504601240158081, - -0.004087521694600582, - 0.13610564172267914, - 0.2708417773246765, - 0.40071263909339905, - 0.5262101888656616, - 0.6477488279342651, - 0.7656810879707336, - 0.8803102374076843, - -1.2272456884384155, - -1.0120396614074707, - -0.8151708245277405, - -0.6326232552528381, - -0.4616628587245941, - -0.30032840371131897, - -0.1471564769744873, - -0.0010208169696852565, - 0.13896767795085907, - 0.27352508902549744, - 0.4032383859157562, - 0.5285959839820862, - 0.650009274482727, - 0.767828643321991, - 0.8823556303977966, - -1.2251482009887695, - -1.0102264881134033, - -0.8135702013969421, - -0.6311883330345154, - -0.4603612720966339, - -0.2991366684436798, - -0.14605699479579926, - -4.470348358154297e-8, - 0.1399204432964325, - 0.274418443441391, - 0.4040793776512146, - 0.5293903946876526, - 0.6507620215415955, - 0.7685438990592957, - 0.8830369114875793, - -1.2272456884384155, - -1.0120396614074707, - -0.8151708245277405, - -0.6326232552528381, - -0.4616628587245941, - -0.30032840371131897, - -0.1471564769744873, - -0.0010208169696852565, - 0.13896767795085907, - 0.27352508902549744, - 0.4032383859157562, - 0.5285959839820862, - 0.650009274482727, - 0.767828643321991, - 0.8823556303977966, - -1.233562707901001, - -1.0174964666366577, - -0.8199855089187622, - -0.6369378566741943, - -0.4655754566192627, - -0.30390995740890503, - -0.1504601240158081, - -0.004087521694600582, - 0.13610564172267914, - 0.2708417773246765, - 0.40071263909339905, - 0.5262101888656616, - 0.6477488279342651, - 0.7656810879707336, - 0.8803102374076843, - -1.244174599647522, - -1.0266495943069458, - -0.82805335521698, - -0.6441620588302612, - -0.4721227288246155, - -0.3099004924297333, - -0.15598376095294952, - -0.009213397279381752, - 0.13132309913635254, - 0.266358882188797, - 0.3964937627315521, - 0.5222258567810059, - 0.643974244594574, - 0.7620953917503357, - 0.876895546913147, - -1.2592114210128784, - -1.039589524269104, - -0.8394407033920288, - -0.6543468236923218, - -0.4813448190689087, - -0.31833240389823914, - -0.16375407576560974, - -0.016420770436525345, - 0.12460114061832428, - 0.26006022095680237, - 0.39056771993637085, - 0.5166305899620056, - 0.638674795627594, - 0.7570620775222778, - 0.8721030950546265, - -1.2788646221160889, - -1.0564481019973755, - -0.8542438745498657, - -0.6675654053688049, - -0.49329936504364014, - -0.329252153635025, - -0.1738092005252838, - -0.025741487741470337, - 0.1159127950668335, - 0.2519226372241974, - 0.38291457295417786, - 0.509407103061676, - 0.6318351626396179, - 0.750567615032196, - 0.8659208416938782, - -1.3033980131149292, - -1.0774047374725342, - -0.8725926280021667, - -0.683915913105011, - -0.5080630779266357, - -0.34272122383117676, - -0.18619951605796814, - -0.037217479199171066, - 0.1052226722240448, - 0.24191594123840332, - 0.37350815534591675, - 0.5005325675010681, - 0.6234353184700012, - 0.7425943613052368, - 0.8583330512046814, - -1.3331646919250488, - -1.1026947498321533, - -0.8946552872657776, - -0.7035245895385742, - -0.5257338285446167, - -0.35881778597831726, - -0.20098872482776642, - -0.0509016253054142, - 0.09248623251914978, - 0.23000214993953705, - 0.362315833568573, - 0.48997852206230164, - 0.6134504079818726, - 0.7331202626228333, - 0.8493202328681946 - ], - "yaxis": "y3" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8493202328681946, - -0.8583330512046814, - -0.8659208416938782, - -0.8721030950546265, - -0.876895546913147, - -0.8803102374076843, - -0.8823556303977966, - -0.8830369114875793, - -0.8823556303977966, - -0.8803102374076843, - -0.876895546913147, - -0.8721030950546265, - -0.8659208416938782, - -0.8583330512046814, - -0.8493202328681946, - -0.7331202626228333, - -0.7425943613052368, - -0.750567615032196, - -0.7570620775222778, - -0.7620953917503357, - -0.7656810879707336, - -0.767828643321991, - -0.7685438990592957, - -0.767828643321991, - -0.7656810879707336, - -0.7620953917503357, - -0.7570620775222778, - -0.750567615032196, - -0.7425943613052368, - -0.7331202626228333, - -0.6134504079818726, - -0.6234353184700012, - -0.6318351626396179, - -0.638674795627594, - -0.643974244594574, - -0.6477488279342651, - -0.650009274482727, - -0.6507620215415955, - -0.650009274482727, - -0.6477488279342651, - -0.643974244594574, - -0.638674795627594, - -0.6318351626396179, - -0.6234353184700012, - -0.6134504079818726, - -0.48997852206230164, - -0.5005325675010681, - -0.509407103061676, - -0.5166305899620056, - -0.5222258567810059, - -0.5262101888656616, - -0.5285959839820862, - -0.5293903946876526, - -0.5285959839820862, - -0.5262101888656616, - -0.5222258567810059, - -0.5166305899620056, - -0.509407103061676, - -0.5005325675010681, - -0.48997852206230164, - -0.362315833568573, - -0.37350815534591675, - -0.38291457295417786, - -0.39056771993637085, - -0.3964937627315521, - -0.40071263909339905, - -0.4032383859157562, - -0.4040793776512146, - -0.4032383859157562, - -0.40071263909339905, - -0.3964937627315521, - -0.39056771993637085, - -0.38291457295417786, - -0.37350815534591675, - -0.362315833568573, - -0.23000214993953705, - -0.24191594123840332, - -0.2519226372241974, - -0.26006022095680237, - -0.266358882188797, - -0.2708417773246765, - -0.27352508902549744, - -0.274418443441391, - -0.27352508902549744, - -0.2708417773246765, - -0.266358882188797, - -0.26006022095680237, - -0.2519226372241974, - -0.24191594123840332, - -0.23000214993953705, - -0.09248623251914978, - -0.1052226722240448, - -0.1159127950668335, - -0.12460114061832428, - -0.13132309913635254, - -0.13610564172267914, - -0.13896767795085907, - -0.1399204432964325, - -0.13896767795085907, - -0.13610564172267914, - -0.13132309913635254, - -0.12460114061832428, - -0.1159127950668335, - -0.1052226722240448, - -0.09248623251914978, - 0.05090153589844704, - 0.0372173897922039, - 0.025741396471858025, - 0.016420681029558182, - 0.00921330600976944, - 0.004087432287633419, - 0.0010207275627180934, - -4.470348358154297e-8, - 0.0010207275627180934, - 0.004087432287633419, - 0.00921330600976944, - 0.016420681029558182, - 0.025741396471858025, - 0.0372173897922039, - 0.05090153589844704, - 0.20098872482776642, - 0.18619951605796814, - 0.1738092005252838, - 0.16375407576560974, - 0.15598376095294952, - 0.1504601240158081, - 0.1471564769744873, - 0.14605699479579926, - 0.1471564769744873, - 0.1504601240158081, - 0.15598376095294952, - 0.16375407576560974, - 0.1738092005252838, - 0.18619951605796814, - 0.20098872482776642, - 0.35881778597831726, - 0.34272122383117676, - 0.329252153635025, - 0.31833240389823914, - 0.3099004924297333, - 0.30390995740890503, - 0.30032840371131897, - 0.2991366684436798, - 0.30032840371131897, - 0.30390995740890503, - 0.3099004924297333, - 0.31833240389823914, - 0.329252153635025, - 0.34272122383117676, - 0.35881778597831726, - 0.5257338285446167, - 0.5080630779266357, - 0.49329936504364014, - 0.4813448190689087, - 0.4721227288246155, - 0.4655754566192627, - 0.4616628587245941, - 0.4603612720966339, - 0.4616628587245941, - 0.4655754566192627, - 0.4721227288246155, - 0.4813448190689087, - 0.49329936504364014, - 0.5080630779266357, - 0.5257338285446167, - 0.7035245895385742, - 0.683915913105011, - 0.6675654053688049, - 0.6543468236923218, - 0.6441620588302612, - 0.6369378566741943, - 0.6326232552528381, - 0.6311883330345154, - 0.6326232552528381, - 0.6369378566741943, - 0.6441620588302612, - 0.6543468236923218, - 0.6675654053688049, - 0.683915913105011, - 0.7035245895385742, - 0.8946552872657776, - 0.8725926280021667, - 0.8542438745498657, - 0.8394407033920288, - 0.82805335521698, - 0.8199855089187622, - 0.8151708245277405, - 0.8135702013969421, - 0.8151708245277405, - 0.8199855089187622, - 0.82805335521698, - 0.8394407033920288, - 0.8542438745498657, - 0.8725926280021667, - 0.8946552872657776, - 1.1026947498321533, - 1.0774047374725342, - 1.0564481019973755, - 1.039589524269104, - 1.0266495943069458, - 1.0174964666366577, - 1.0120396614074707, - 1.0102264881134033, - 1.0120396614074707, - 1.0174964666366577, - 1.0266495943069458, - 1.039589524269104, - 1.0564481019973755, - 1.0774047374725342, - 1.1026947498321533, - 1.3331646919250488, - 1.3033980131149292, - 1.2788646221160889, - 1.2592114210128784, - 1.244174599647522, - 1.233562707901001, - 1.2272456884384155, - 1.2251482009887695, - 1.2272456884384155, - 1.233562707901001, - 1.244174599647522, - 1.2592114210128784, - 1.2788646221160889, - 1.3033980131149292, - 1.3331646919250488 - ], - "xaxis": "x6", - "y": [ - -0.9217167496681213, - -0.7893871665000916, - -0.6573632955551147, - -0.5255915522575378, - -0.3940199613571167, - -0.26259753108024597, - -0.1312740594148636, - -4.107629436589377e-8, - 0.1312740594148636, - 0.26259753108024597, - 0.3940199613571167, - 0.5255915522575378, - 0.6573632955551147, - 0.7893871665000916, - 0.9217167496681213, - -0.9316955208778381, - -0.7978918552398682, - -0.6644167900085449, - -0.5312124490737915, - -0.39822301268577576, - -0.26539358496665955, - -0.1326702982187271, - -4.151302590571504e-8, - 0.1326702982187271, - 0.26539358496665955, - 0.39822301268577576, - 0.5312124490737915, - 0.6644167900085449, - 0.7978918552398682, - 0.9316955208778381, - -0.9422006607055664, - -0.8068414926528931, - -0.6718367338180542, - -0.5371237993240356, - -0.40264227986335754, - -0.2683330178260803, - -0.13413800299167633, - -4.197210046186228e-8, - 0.13413800299167633, - 0.2683330178260803, - 0.40264227986335754, - 0.5371237993240356, - 0.6718367338180542, - 0.8068414926528931, - 0.9422006607055664, - -0.9532908201217651, - -0.8162851333618164, - -0.6796631813049316, - -0.5433570742607117, - -0.4073010981082916, - -0.2714312672615051, - -0.13568486273288727, - -4.2455909010641335e-8, - 0.13568486273288727, - 0.2714312672615051, - 0.4073010981082916, - 0.5433570742607117, - 0.6796631813049316, - 0.8162851333618164, - 0.9532908201217651, - -0.9650352597236633, - -0.8262805938720703, - -0.6879433989524841, - -0.5499492883682251, - -0.4122268557548523, - -0.2747064232826233, - -0.13731984794139862, - -4.2967265301285806e-8, - 0.13731984794139862, - 0.2747064232826233, - 0.4122268557548523, - 0.5499492883682251, - 0.6879433989524841, - 0.8262805938720703, - 0.9650352597236633, - -0.9775169491767883, - -0.8368970155715942, - -0.6967334151268005, - -0.5569446086883545, - -0.4174521863460541, - -0.27818000316619873, - -0.13905364274978638, - -4.350950177922641e-8, - 0.13905364274978638, - 0.27818000316619873, - 0.4174521863460541, - 0.5569446086883545, - 0.6967334151268005, - 0.8368970155715942, - 0.9775169491767883, - -0.9908361434936523, - -0.8482176661491394, - -0.70610111951828, - -0.56439608335495, - -0.423016220331192, - -0.2818777561187744, - -0.14089906215667725, - -4.408662235277916e-8, - 0.14089906215667725, - 0.2818777561187744, - 0.423016220331192, - 0.56439608335495, - 0.70610111951828, - 0.8482176661491394, - 0.9908361434936523, - -1.0051162242889404, - -0.8603448271751404, - -0.7161291241645813, - -0.5723683834075928, - -0.42896661162376404, - -0.285831093788147, - -0.14287169277668, - -4.470348358154297e-8, - 0.14287169277668, - 0.285831093788147, - 0.42896661162376404, - 0.5723683834075928, - 0.7161291241645813, - 0.8603448271751404, - 1.0051162242889404, - -1.0205111503601074, - -0.8734056353569031, - -0.7269202470779419, - -0.5809416770935059, - -0.4353623390197754, - -0.2900787889957428, - -0.1449907422065735, - -4.5366085998921335e-8, - 0.1449907422065735, - 0.2900787889957428, - 0.4353623390197754, - 0.5809416770935059, - 0.7269202470779419, - 0.8734056353569031, - 1.0205111503601074, - -1.0372172594070435, - -0.8875615000724792, - -0.7386044263839722, - -0.5902170538902283, - -0.44227761030197144, - -0.29466956853866577, - -0.14728035032749176, - -4.6081964910626994e-8, - 0.14728035032749176, - 0.29466956853866577, - 0.44227761030197144, - 0.5902170538902283, - 0.7386044263839722, - 0.8875615000724792, - 1.0372172594070435, - -1.0554907321929932, - -0.9030221104621887, - -0.7513497471809387, - -0.6003248691558838, - -0.4498078525066376, - -0.29966598749160767, - -0.14977149665355682, - -4.6860773039725245e-8, - 0.14977149665355682, - 0.29966598749160767, - 0.4498078525066376, - 0.6003248691558838, - 0.7513497471809387, - 0.9030221104621887, - 1.0554907321929932, - -1.075676441192627, - -0.9200677871704102, - -0.7653798460960388, - -0.6114377975463867, - -0.45807912945747375, - -0.30515044927597046, - -0.15250492095947266, - -4.77152113376178e-8, - 0.15250492095947266, - 0.30515044927597046, - 0.45807912945747375, - 0.6114377975463867, - 0.7653798460960388, - 0.9200677871704102, - 1.075676441192627, - -1.0982561111450195, - -0.9390869140625, - -0.781002402305603, - -0.6237921714782715, - -0.4672633111476898, - -0.31123510003089905, - -0.15553593635559082, - -4.866252112378788e-8, - 0.15553593635559082, - 0.31123510003089905, - 0.4672633111476898, - 0.6237921714782715, - 0.781002402305603, - 0.9390869140625, - 1.0982561111450195, - -1.1239358186721802, - -0.9606429934501648, - -0.7986600399017334, - -0.637725830078125, - -0.4776046574115753, - -0.3180786669254303, - -0.15894274413585663, - -4.972704203964895e-8, - 0.15894274413585663, - 0.3180786669254303, - 0.4776046574115753, - 0.637725830078125, - 0.7986600399017334, - 0.9606429934501648, - 1.1239358186721802, - -1.153823733329773, - -0.9856066107749939, - -0.819028377532959, - -0.653749406337738, - -0.4894700050354004, - -0.3259183466434479, - -0.162841796875, - -5.094500110658373e-8, - 0.162841796875, - 0.3259183466434479, - 0.4894700050354004, - 0.653749406337738, - 0.819028377532959, - 0.9856066107749939, - 1.153823733329773 - ], - "yaxis": "y6" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8624773621559143, - -0.8707711100578308, - -0.877759575843811, - -0.8834576606750488, - -0.8878772258758545, - -0.891027569770813, - -0.8929151296615601, - -0.8935438990592957, - -0.8929151296615601, - -0.891027569770813, - -0.8878772258758545, - -0.8834576606750488, - -0.877759575843811, - -0.8707711100578308, - -0.8624773621559143, - -0.7441983819007874, - -0.7528804540634155, - -0.7601941823959351, - -0.766156017780304, - -0.7707794308662415, - -0.7740746736526489, - -0.7760488986968994, - -0.7767064571380615, - -0.7760488986968994, - -0.7740746736526489, - -0.7707794308662415, - -0.766156017780304, - -0.7601941823959351, - -0.7528804540634155, - -0.7441983819007874, - -0.622683048248291, - -0.6317914724349976, - -0.6394620537757874, - -0.6457132697105408, - -0.6505601406097412, - -0.6540140509605408, - -0.6560832262039185, - -0.6567723751068115, - -0.6560832262039185, - -0.6540140509605408, - -0.6505601406097412, - -0.6457132697105408, - -0.6394620537757874, - -0.6317914724349976, - -0.622683048248291, - -0.4976491928100586, - -0.5072280764579773, - -0.5152921080589294, - -0.5218622088432312, - -0.5269551873207092, - -0.5305839776992798, - -0.532757580280304, - -0.5334815382957458, - -0.532757580280304, - -0.5305839776992798, - -0.5269551873207092, - -0.5218622088432312, - -0.5152921080589294, - -0.5072280764579773, - -0.4976491928100586, - -0.36877116560935974, - -0.3788721561431885, - -0.3873724937438965, - -0.39429590106010437, - -0.3996613919734955, - -0.40348362922668457, - -0.405772864818573, - -0.406535267829895, - -0.405772864818573, - -0.40348362922668457, - -0.3996613919734955, - -0.39429590106010437, - -0.3873724937438965, - -0.3788721561431885, - -0.36877116560935974, - -0.23566964268684387, - -0.2463536262512207, - -0.25534066557884216, - -0.26265788078308105, - -0.268326997756958, - -0.27236464619636536, - -0.27478256821632385, - -0.275587797164917, - -0.27478256821632385, - -0.27236464619636536, - -0.268326997756958, - -0.26265788078308105, - -0.25534066557884216, - -0.2463536262512207, - -0.23566964268684387, - -0.09789831191301346, - -0.10923799872398376, - -0.11877178400754929, - -0.1265309751033783, - -0.13254056870937347, - -0.13681970536708832, - -0.13938184082508087, - -0.14023499190807343, - -0.13938184082508087, - -0.13681970536708832, - -0.13254056870937347, - -0.1265309751033783, - -0.11877178400754929, - -0.10923799872398376, - -0.09789831191301346, - 0.04507357254624367, - 0.03299049288034439, - 0.022837579250335693, - 0.014578450471162796, - 0.008184040896594524, - 0.003632175736129284, - 0.0009072403190657496, - -4.470348358154297e-8, - 0.0009072403190657496, - 0.003632175736129284, - 0.008184040896594524, - 0.014578450471162796, - 0.022837579250335693, - 0.03299049288034439, - 0.04507357254624367, - 0.19388626515865326, - 0.18095232546329498, - 0.1700918972492218, - 0.1612621396780014, - 0.15442895889282227, - 0.14956632256507874, - 0.14665597677230835, - 0.145687073469162, - 0.14665597677230835, - 0.14956632256507874, - 0.15442895889282227, - 0.1612621396780014, - 0.1700918972492218, - 0.18095232546329498, - 0.19388626515865326, - 0.3493231236934662, - 0.33540451526641846, - 0.3237268030643463, - 0.31423890590667725, - 0.3069002032279968, - 0.3016798496246338, - 0.29855620861053467, - 0.297516405582428, - 0.29855620861053467, - 0.3016798496246338, - 0.3069002032279968, - 0.31423890590667725, - 0.3237268030643463, - 0.33540451526641846, - 0.3493231236934662, - 0.5123602151870728, - 0.49728715419769287, - 0.4846533238887787, - 0.47439679503440857, - 0.46646857261657715, - 0.46083149313926697, - 0.4574595093727112, - 0.45633724331855774, - 0.4574595093727112, - 0.46083149313926697, - 0.46646857261657715, - 0.47439679503440857, - 0.4846533238887787, - 0.49728715419769287, - 0.5123602151870728, - 0.6842405200004578, - 0.6677923202514648, - 0.6540226936340332, - 0.6428551077842712, - 0.6342292428016663, - 0.6280996203422546, - 0.6244344115257263, - 0.6232147216796875, - 0.6244344115257263, - 0.6280996203422546, - 0.6342292428016663, - 0.6428551077842712, - 0.6540226936340332, - 0.6677923202514648, - 0.6842405200004578, - 0.8665884137153625, - 0.8484700918197632, - 0.8333255648612976, - 0.8210581541061401, - 0.8115919828414917, - 0.8048699498176575, - 0.8008524179458618, - 0.7995157837867737, - 0.8008524179458618, - 0.8048699498176575, - 0.8115919828414917, - 0.8210581541061401, - 0.8333255648612976, - 0.8484700918197632, - 0.8665884137153625, - 1.0615968704223633, - 1.041399359703064, - 1.0245509147644043, - 1.0109251737594604, - 1.0004239082336426, - 0.9929736852645874, - 0.9885236024856567, - 0.9870434999465942, - 0.9885236024856567, - 0.9929736852645874, - 1.0004239082336426, - 1.0109251737594604, - 1.0245509147644043, - 1.041399359703064, - 1.0615968704223633, - 1.2723534107208252, - 1.2494834661483765, - 1.2304571866989136, - 1.215103268623352, - 1.2032899856567383, - 1.1949193477630615, - 1.1899232864379883, - 1.1882623434066772, - 1.1899232864379883, - 1.1949193477630615, - 1.2032899856567383, - 1.215103268623352, - 1.2304571866989136, - 1.2494834661483765, - 1.2723534107208252 - ], - "xaxis": "x6", - "y": [ - -0.9287943243980408, - -0.7955646514892578, - -0.6625885367393494, - -0.5298218727111816, - -0.39722171425819397, - -0.2647457420825958, - -0.13235227763652802, - -4.141412190961091e-8, - 0.13235227763652802, - 0.2647457420825958, - 0.39722171425819397, - 0.5298218727111816, - 0.6625885367393494, - 0.7955646514892578, - 0.9287943243980408, - -0.9379534721374512, - -0.8033785820007324, - -0.6690744757652283, - -0.5349939465522766, - -0.40109115839004517, - -0.26732081174850464, - -0.1336384415626526, - -4.1816452522880354e-8, - 0.1336384415626526, - 0.26732081174850464, - 0.40109115839004517, - 0.5349939465522766, - 0.6690744757652283, - 0.8033785820007324, - 0.9379534721374512, - -0.9475533366203308, - -0.8115659356117249, - -0.6758686304092407, - -0.5404106974601746, - -0.40514296293258667, - -0.27001693844795227, - -0.13498498499393463, - -4.223765870392526e-8, - 0.13498498499393463, - 0.27001693844795227, - 0.40514296293258667, - 0.5404106974601746, - 0.6758686304092407, - 0.8115659356117249, - 0.9475533366203308, - -0.9576383829116821, - -0.820164144039154, - -0.683001697063446, - -0.5460963249206543, - -0.40939515829086304, - -0.2728460133075714, - -0.1363978236913681, - -4.2679591416572293e-8, - 0.1363978236913681, - 0.2728460133075714, - 0.40939515829086304, - 0.5460963249206543, - 0.683001697063446, - 0.820164144039154, - 0.9576383829116821, - -0.9682607650756836, - -0.8292168974876404, - -0.6905093193054199, - -0.5520789623260498, - -0.4138685464859009, - -0.27582186460494995, - -0.13788381218910217, - -4.314439649988344e-8, - 0.13788381218910217, - 0.27582186460494995, - 0.4138685464859009, - 0.5520789623260498, - 0.6905093193054199, - 0.8292168974876404, - 0.9682607650756836, - -0.9794813990592957, - -0.8387752771377563, - -0.6984333992004395, - -0.5583915710449219, - -0.4185875356197357, - -0.27896058559417725, - -0.13945099711418152, - -4.363458216971594e-8, - 0.13945099711418152, - 0.27896058559417725, - 0.4185875356197357, - 0.5583915710449219, - 0.6984333992004395, - 0.8387752771377563, - 0.9794813990592957, - -0.9913730025291443, - -0.8489000201225281, - -0.706823468208313, - -0.5650730729103088, - -0.4235810339450836, - -0.28228121995925903, - -0.14110884070396423, - -4.4153100731136874e-8, - 0.14110884070396423, - 0.28228121995925903, - 0.4235810339450836, - 0.5650730729103088, - 0.706823468208313, - 0.8489000201225281, - 0.9913730025291443, - -1.0040225982666016, - -0.8596638441085815, - -0.7157387137413025, - -0.5721700191497803, - -0.4288834035396576, - -0.2858065366744995, - -0.14286862313747406, - -4.470348358154297e-8, - 0.14286862313747406, - 0.2858065366744995, - 0.4288834035396576, - 0.5721700191497803, - 0.7157387137413025, - 0.8596638441085815, - 1.0040225982666016, - -1.0175365209579468, - -0.8711550831794739, - -0.7252510190010071, - -0.5797387361526489, - -0.43453627824783325, - -0.28956395387649536, - -0.14474399387836456, - -4.528998687192143e-8, - 0.14474399387836456, - 0.28956395387649536, - 0.43453627824783325, - 0.5797387361526489, - 0.7252510190010071, - 0.8711550831794739, - 1.0175365209579468, - -1.0320459604263306, - -0.883482813835144, - -0.7354487776756287, - -0.5878485441207886, - -0.4405907392501831, - -0.2935870885848999, - -0.14675164222717285, - -4.591782243323905e-8, - 0.14675164222717285, - 0.2935870885848999, - 0.4405907392501831, - 0.5878485441207886, - 0.7354487776756287, - 0.883482813835144, - 1.0320459604263306, - -1.0477162599563599, - -0.8967836499214172, - -0.7464426755905151, - -0.596585750579834, - -0.4471103250980377, - -0.29791781306266785, - -0.14891234040260315, - -4.6593470415245974e-8, - 0.14891234040260315, - 0.29791781306266785, - 0.4471103250980377, - 0.596585750579834, - 0.7464426755905151, - 0.8967836499214172, - 1.0477162599563599, - -1.0647602081298828, - -0.9112330675125122, - -0.7583740949630737, - -0.6060604453086853, - -0.45417600870132446, - -0.30260926485061646, - -0.15125241875648499, - -4.732514824468126e-8, - 0.15125241875648499, - 0.30260926485061646, - 0.45417600870132446, - 0.6060604453086853, - 0.7583740949630737, - 0.9112330675125122, - 1.0647602081298828, - -1.0834589004516602, - -0.9270614385604858, - -0.7714279890060425, - -0.6164164543151855, - -0.46189308166503906, - -0.3077305257320404, - -0.15380607545375824, - -4.812352827343602e-8, - 0.15380607545375824, - 0.3077305257320404, - 0.46189308166503906, - 0.6164164543151855, - 0.7714279890060425, - 0.9270614385604858, - 1.0834589004516602, - -1.104196548461914, - -0.9445816874504089, - -0.7858544588088989, - -0.6278468370437622, - -0.47040271759033203, - -0.31337401270866394, - -0.15661902725696564, - -4.9002856883362256e-8, - 0.15661902725696564, - 0.31337401270866394, - 0.47040271759033203, - 0.6278468370437622, - 0.7858544588088989, - 0.9445816874504089, - 1.104196548461914, - -1.1275204420089722, - -0.9642359018325806, - -0.8020040988922119, - -0.640621542930603, - -0.4799012243747711, - -0.319667786359787, - -0.15975449979305267, - -4.9982837424522586e-8, - 0.15975449979305267, - 0.319667786359787, - 0.4799012243747711, - 0.640621542930603, - 0.8020040988922119, - 0.9642359018325806, - 1.1275204420089722 - ], - "yaxis": "y6" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.8763225674629211, - -0.8838474750518799, - -0.8901933431625366, - -0.8953708410263062, - -0.8993889093399048, - -0.9022541642189026, - -0.9039713740348816, - -0.9045434594154358, - -0.9039713740348816, - -0.9022541642189026, - -0.8993889093399048, - -0.8953708410263062, - -0.8901933431625366, - -0.8838474750518799, - -0.8763225674629211, - -0.7558072209358215, - -0.7636498808860779, - -0.7702623605728149, - -0.7756566405296326, - -0.7798423171043396, - -0.7828267812728882, - -0.7846153974533081, - -0.7852112650871277, - -0.7846153974533081, - -0.7828267812728882, - -0.7798423171043396, - -0.7756566405296326, - -0.7702623605728149, - -0.7636498808860779, - -0.7558072209358215, - -0.6323117613792419, - -0.6405001878738403, - -0.6474027037620544, - -0.6530325412750244, - -0.6574004292488098, - -0.6605145335197449, - -0.6623806357383728, - -0.6630023121833801, - -0.6623806357383728, - -0.6605145335197449, - -0.6574004292488098, - -0.6530325412750244, - -0.6474027037620544, - -0.6405001878738403, - -0.6323117613792419, - -0.5056028366088867, - -0.5141690373420715, - -0.5213882923126221, - -0.5272753238677979, - -0.5318419933319092, - -0.5350974798202515, - -0.5370481610298157, - -0.537697970867157, - -0.5370481610298157, - -0.5350974798202515, - -0.5318419933319092, - -0.5272753238677979, - -0.5213882923126221, - -0.5141690373420715, - -0.5056028366088867, - -0.37541520595550537, - -0.3843960165977478, - -0.3919626772403717, - -0.3981316387653351, - -0.40291619300842285, - -0.4063265025615692, - -0.40836983919143677, - -0.40905046463012695, - -0.40836983919143677, - -0.4063265025615692, - -0.40291619300842285, - -0.3981316387653351, - -0.3919626772403717, - -0.3843960165977478, - -0.37541520595550537, - -0.2414446771144867, - -0.2508828043937683, - -0.2588323950767517, - -0.26531192660331726, - -0.2703363597393036, - -0.27391716837882996, - -0.27606239914894104, - -0.2767769694328308, - -0.27606239914894104, - -0.27391716837882996, - -0.2703363597393036, - -0.26531192660331726, - -0.2588323950767517, - -0.2508828043937683, - -0.2414446771144867, - -0.10333999991416931, - -0.11328533291816711, - -0.1216592788696289, - -0.12848281860351562, - -0.1337728202342987, - -0.137542262673378, - -0.1398002952337265, - -0.14055235683918, - -0.1398002952337265, - -0.137542262673378, - -0.1337728202342987, - -0.12848281860351562, - -0.1216592788696289, - -0.11328533291816711, - -0.10333999991416931, - 0.03930799290537834, - 0.028796546161174774, - 0.019949372857809067, - 0.012742518447339535, - 0.007156745530664921, - 0.003177305916324258, - 0.0007937772898003459, - -4.470348358154297e-8, - 0.0007937772898003459, - 0.003177305916324258, - 0.007156745530664921, - 0.012742518447339535, - 0.019949372857809067, - 0.028796546161174774, - 0.03930799290537834, - 0.1869811713695526, - 0.17583337426185608, - 0.16645477712154388, - 0.1588178426027298, - 0.15290042757987976, - 0.14868561923503876, - 0.14616148173809052, - 0.14532089233398438, - 0.14616148173809052, - 0.14868561923503876, - 0.15290042757987976, - 0.1588178426027298, - 0.16645477712154388, - 0.17583337426185608, - 0.1869811713695526, - 0.34025290608406067, - 0.3283839225769043, - 0.31840381026268005, - 0.3102804720401764, - 0.3039883077144623, - 0.29950767755508423, - 0.29682478308677673, - 0.2959313988685608, - 0.29682478308677673, - 0.29950767755508423, - 0.3039883077144623, - 0.3102804720401764, - 0.31840381026268005, - 0.3283839225769043, - 0.34025290608406067, - 0.49981483817100525, - 0.4871208369731903, - 0.4764534533023834, - 0.46777504682540894, - 0.46105557680130005, - 0.45627206563949585, - 0.4534083604812622, - 0.4524548649787903, - 0.4534083604812622, - 0.45627206563949585, - 0.46105557680130005, - 0.46777504682540894, - 0.4764534533023834, - 0.4871208369731903, - 0.49981483817100525, - 0.6665142774581909, - 0.6528658270835876, - 0.6414047479629517, - 0.6320862174034119, - 0.6248744130134583, - 0.619742214679718, - 0.6166704297065735, - 0.6156477928161621, - 0.6166704297065735, - 0.619742214679718, - 0.6248744130134583, - 0.6320862174034119, - 0.6414047479629517, - 0.6528658270835876, - 0.6665142774581909, - 0.8414079546928406, - 0.8266409039497375, - 0.8142513632774353, - 0.8041850924491882, - 0.7963990569114685, - 0.7908604741096497, - 0.7875463962554932, - 0.7864432334899902, - 0.7875463962554932, - 0.7908604741096497, - 0.7963990569114685, - 0.8041850924491882, - 0.8142513632774353, - 0.8266409039497375, - 0.8414079546928406, - 1.025842308998108, - 1.0097432136535645, - 0.9962506890296936, - 0.9852979779243469, - 0.9768320322036743, - 0.970812976360321, - 0.9672126173973083, - 0.9660143256187439, - 0.9672126173973083, - 0.970812976360321, - 0.9768320322036743, - 0.9852979779243469, - 0.9962506890296936, - 1.0097432136535645, - 1.025842308998108, - 1.221579909324646, - 1.2038630247116089, - 1.1890349388122559, - 1.177011489868164, - 1.1677260398864746, - 1.1611285209655762, - 1.1571837663650513, - 1.1558711528778076, - 1.1571837663650513, - 1.1611285209655762, - 1.1677260398864746, - 1.177011489868164, - 1.1890349388122559, - 1.2038630247116089, - 1.221579909324646 - ], - "xaxis": "x6", - "y": [ - -0.9361907243728638, - -0.8020097613334656, - -0.6680329442024231, - -0.5342251062393188, - -0.40055182576179504, - -0.2669789493083954, - -0.13347278535366058, - -4.176516199549951e-8, - 0.13347278535366058, - 0.2669789493083954, - 0.40055182576179504, - 0.5342251062393188, - 0.6680329442024231, - 0.8020097613334656, - 0.9361907243728638, - -0.9444788098335266, - -0.8090871572494507, - -0.6739121079444885, - -0.5389163494110107, - -0.4040631949901581, - -0.26931652426719666, - -0.13464057445526123, - -4.2130491095804246e-8, - 0.13464057445526123, - 0.26931652426719666, - 0.4040631949901581, - 0.5389163494110107, - 0.6739121079444885, - 0.8090871572494507, - 0.9444788098335266, - -0.9531254768371582, - -0.8164690732955933, - -0.6800431609153748, - -0.5438077449798584, - -0.407723993062973, - -0.2717534005641937, - -0.13585790991783142, - -4.251131002774855e-8, - 0.13585790991783142, - 0.2717534005641937, - 0.407723993062973, - 0.5438077449798584, - 0.6800431609153748, - 0.8164690732955933, - 0.9531254768371582, - -0.9621632695198059, - -0.8241830468177795, - -0.6864485740661621, - -0.548917293548584, - -0.41154754161834717, - -0.2742983400821686, - -0.13712915778160095, - -4.290899013881244e-8, - 0.13712915778160095, - 0.2742983400821686, - 0.41154754161834717, - 0.548917293548584, - 0.6864485740661621, - 0.8241830468177795, - 0.9621632695198059, - -0.9716294407844543, - -0.8322603702545166, - -0.6931542158126831, - -0.5542652606964111, - -0.4155489504337311, - -0.27696141600608826, - -0.13845933973789215, - -4.332509462301459e-8, - 0.13845933973789215, - 0.27696141600608826, - 0.4155489504337311, - 0.5542652606964111, - 0.6931542158126831, - 0.8322603702545166, - 0.9716294407844543, - -0.9815671443939209, - -0.8407374620437622, - -0.7001899480819702, - -0.5598753094673157, - -0.4197457730770111, - -0.2797541916370392, - -0.13985422253608704, - -4.3761428258903834e-8, - 0.13985422253608704, - 0.2797541916370392, - 0.4197457730770111, - 0.5598753094673157, - 0.7001899480819702, - 0.8407374620437622, - 0.9815671443939209, - -0.9920265674591064, - -0.8496564626693726, - -0.7075902223587036, - -0.56577467918396, - -0.4241582155227661, - -0.2826901376247406, - -0.14132048189640045, - -4.422007648940962e-8, - 0.14132048189640045, - 0.2826901376247406, - 0.4241582155227661, - 0.56577467918396, - 0.7075902223587036, - 0.8496564626693726, - 0.9920265674591064, - -1.0030666589736938, - -0.8590669631958008, - -0.7153957486152649, - -0.5719954371452332, - -0.42881008982658386, - -0.28578490018844604, - -0.14286592602729797, - -4.470348358154297e-8, - 0.14286592602729797, - 0.28578490018844604, - 0.42881008982658386, - 0.5719954371452332, - 0.7153957486152649, - 0.8590669631958008, - 1.0030666589736938, - -1.0147576332092285, - -0.8690276145935059, - -0.7236545085906982, - -0.5785753726959229, - -0.4337294101715088, - -0.28905704617500305, - -0.1444997936487198, - -4.5214530786097384e-8, - 0.1444997936487198, - 0.28905704617500305, - 0.4337294101715088, - 0.5785753726959229, - 0.7236545085906982, - 0.8690276145935059, - 1.0147576332092285, - -1.0271835327148438, - -0.8796089291572571, - -0.7324240207672119, - -0.5855597853660583, - -0.43894973397254944, - -0.29252874851226807, - -0.14623309671878815, - -4.5756660682627626e-8, - 0.14623309671878815, - 0.29252874851226807, - 0.43894973397254944, - 0.5855597853660583, - 0.7324240207672119, - 0.8796089291572571, - 1.0271835327148438, - -1.0404468774795532, - -0.8908964395523071, - -0.7417740225791931, - -0.593003511428833, - -0.4445115327835083, - -0.29622671008110046, - -0.14807912707328796, - -4.633402284071053e-8, - 0.14807912707328796, - 0.29622671008110046, - 0.4445115327835083, - 0.593003511428833, - 0.7417740225791931, - 0.8908964395523071, - 1.0404468774795532, - -1.0546743869781494, - -0.9029955863952637, - -0.7517903447151184, - -0.6009737849235535, - -0.4504645764827728, - -0.3001837730407715, - -0.1500541865825653, - -4.6951704746334144e-8, - 0.1500541865825653, - 0.3001837730407715, - 0.4504645764827728, - 0.6009737849235535, - 0.7517903447151184, - 0.9029955863952637, - 1.0546743869781494, - -1.0700255632400513, - -0.9160389304161072, - -0.7625804543495178, - -0.6095548272132874, - -0.456870973110199, - -0.30444082617759705, - -0.1521785855293274, - -4.76160515461288e-8, - 0.1521785855293274, - 0.30444082617759705, - 0.456870973110199, - 0.6095548272132874, - 0.7625804543495178, - 0.9160389304161072, - 1.0700255632400513, - -1.0867058038711548, - -0.9301964044570923, - -0.7742818593978882, - -0.6188539862632751, - -0.4638097286224365, - -0.30904990434646606, - -0.15447813272476196, - -4.8335117242004344e-8, - 0.15447813272476196, - 0.30904990434646606, - 0.4638097286224365, - 0.6188539862632751, - 0.7742818593978882, - 0.9301964044570923, - 1.0867058038711548, - -1.1049867868423462, - -0.9456915259361267, - -0.7870748043060303, - -0.6290116310119629, - -0.4713839590549469, - -0.3140787184238434, - -0.15698638558387756, - -4.911936812845852e-8, - 0.15698638558387756, - 0.3140787184238434, - 0.4713839590549469, - 0.6290116310119629, - 0.7870748043060303, - 0.9456915259361267, - 1.1049867868423462 - ], - "yaxis": "y6" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.890924870967865, - -0.897624671459198, - -0.9032789468765259, - -0.9078952074050903, - -0.9114794731140137, - -0.9140363335609436, - -0.9155690670013428, - -0.9160798192024231, - -0.9155690670013428, - -0.9140363335609436, - -0.9114794731140137, - -0.9078952074050903, - -0.9032789468765259, - -0.897624671459198, - -0.890924870967865, - -0.7679957747459412, - -0.7749459743499756, - -0.7808108329772949, - -0.7855984568595886, - -0.7893153429031372, - -0.7919667363166809, - -0.7935560941696167, - -0.794085681438446, - -0.7935560941696167, - -0.7919667363166809, - -0.7893153429031372, - -0.7855984568595886, - -0.7808108329772949, - -0.7749459743499756, - -0.7679957747459412, - -0.6423699855804443, - -0.6495900750160217, - -0.6556817889213562, - -0.6606539487838745, - -0.6645138263702393, - -0.6672669649124146, - -0.6689172983169556, - -0.6694670915603638, - -0.6689172983169556, - -0.6672669649124146, - -0.6645138263702393, - -0.6606539487838745, - -0.6556817889213562, - -0.6495900750160217, - -0.6423699855804443, - -0.5138614773750305, - -0.5213733315467834, - -0.5277102589607239, - -0.5328818559646606, - -0.5368961691856384, - -0.5397592186927795, - -0.5414752960205078, - -0.5420470237731934, - -0.5414752960205078, - -0.5397592186927795, - -0.5368961691856384, - -0.5328818559646606, - -0.5277102589607239, - -0.5213733315467834, - -0.5138614773750305, - -0.38226181268692017, - -0.39009031653404236, - -0.3966931104660034, - -0.4020810127258301, - -0.40626266598701477, - -0.4092448055744171, - -0.41103219985961914, - -0.4116276800632477, - -0.41103219985961914, - -0.4092448055744171, - -0.40626266598701477, - -0.4020810127258301, - -0.3966931104660034, - -0.39009031653404236, - -0.38226181268692017, - -0.24733610451221466, - -0.2555094361305237, - -0.2624017596244812, - -0.2680249810218811, - -0.2723886966705322, - -0.2755003869533539, - -0.2773653268814087, - -0.277986615896225, - -0.2773653268814087, - -0.2755003869533539, - -0.2723886966705322, - -0.2680249810218811, - -0.2624017596244812, - -0.2555094361305237, - -0.24733610451221466, - -0.10881805419921875, - -0.11736855655908585, - -0.1245773658156395, - -0.13045771420001984, - -0.13502036035060883, - -0.13827353715896606, - -0.14022311568260193, - -0.14087259769439697, - -0.14022311568260193, - -0.13827353715896606, - -0.13502036035060883, - -0.13045771420001984, - -0.1245773658156395, - -0.11736855655908585, - -0.10881805419921875, - 0.033595971763134, - 0.024631047621369362, - 0.017074698582291603, - 0.010912067256867886, - 0.006131169851869345, - 0.002722773002460599, - 0.0006803350406698883, - -4.470348358154297e-8, - 0.0006803350406698883, - 0.002722773002460599, - 0.006131169851869345, - 0.010912067256867886, - 0.017074698582291603, - 0.024631047621369362, - 0.033595971763134, - 0.1802554428577423, - 0.1708327829837799, - 0.16289278864860535, - 0.15641874074935913, - 0.15139715373516083, - 0.14781762659549713, - 0.14567284286022186, - 0.14495839178562164, - 0.14567284286022186, - 0.14781762659549713, - 0.15139715373516083, - 0.15641874074935913, - 0.16289278864860535, - 0.1708327829837799, - 0.1802554428577423, - 0.33156511187553406, - 0.321633905172348, - 0.3132680058479309, - 0.30644842982292175, - 0.30115988850593567, - 0.2973906695842743, - 0.29513242840766907, - 0.294380247592926, - 0.29513242840766907, - 0.2973906695842743, - 0.30115988850593567, - 0.30644842982292175, - 0.3132680058479309, - 0.321633905172348, - 0.33156511187553406, - 0.48799848556518555, - 0.4774986207485199, - 0.4686568081378937, - 0.46145138144493103, - 0.45586493611335754, - 0.45188409090042114, - 0.44949930906295776, - 0.4487050175666809, - 0.44949930906295776, - 0.45188409090042114, - 0.45586493611335754, - 0.46145138144493103, - 0.4686568081378937, - 0.4774986207485199, - 0.48799848556518555, - 0.6501156091690063, - 0.6389750242233276, - 0.6295974850654602, - 0.6219580769538879, - 0.6160367727279663, - 0.6118180751800537, - 0.6092911958694458, - 0.6084496378898621, - 0.6092911958694458, - 0.6118180751800537, - 0.6160367727279663, - 0.6219580769538879, - 0.6295974850654602, - 0.6389750242233276, - 0.6501156091690063, - 0.8185867071151733, - 0.8067179322242737, - 0.7967322468757629, - 0.7886006832122803, - 0.7822997570037842, - 0.7778117060661316, - 0.7751238346099854, - 0.7742287516593933, - 0.7751238346099854, - 0.7778117060661316, - 0.7822997570037842, - 0.7886006832122803, - 0.7967322468757629, - 0.8067179322242737, - 0.8185867071151733, - 0.9942249059677124, - 0.9815202951431274, - 0.970837414264679, - 0.9621421098709106, - 0.9554068446159363, - 0.9506106972694397, - 0.9477388858795166, - 0.9467825889587402, - 0.9477388858795166, - 0.9506106972694397, - 0.9554068446159363, - 0.9621421098709106, - 0.970837414264679, - 0.9815202951431274, - 0.9942249059677124, - 1.1780338287353516, - 1.164358139038086, - 1.1528667211532593, - 1.1435184478759766, - 1.1362805366516113, - 1.131128191947937, - 1.1280436515808105, - 1.1270166635513306, - 1.1280436515808105, - 1.131128191947937, - 1.1362805366516113, - 1.1435184478759766, - 1.1528667211532593, - 1.164358139038086, - 1.1780338287353516 - ], - "xaxis": "x6", - "y": [ - -0.9439350366592407, - -0.8087461590766907, - -0.6737155318260193, - -0.538815975189209, - -0.4040209650993347, - -0.2693040370941162, - -0.13463900983333588, - -4.2130491095804246e-8, - 0.13463900983333588, - 0.2693040370941162, - 0.4040209650993347, - 0.538815975189209, - 0.6737155318260193, - 0.8087461590766907, - 0.9439350366592407, - -0.9512940645217896, - -0.8150356411933899, - -0.678943932056427, - -0.5429903864860535, - -0.4071469306945801, - -0.27138569951057434, - -0.13567917048931122, - -4.2455909010641335e-8, - 0.13567917048931122, - 0.27138569951057434, - 0.4071469306945801, - 0.5429903864860535, - 0.678943932056427, - 0.8150356411933899, - 0.9512940645217896, - -0.95893394947052, - -0.8215641975402832, - -0.6843704581260681, - -0.5473225116729736, - -0.410390704870224, - -0.2735457420349121, - -0.13675843179225922, - -4.2793558918674535e-8, - 0.13675843179225922, - 0.2735457420349121, - 0.410390704870224, - 0.5473225116729736, - 0.6843704581260681, - 0.8215641975402832, - 0.95893394947052, - -0.966877281665802, - -0.828350841999054, - -0.690010666847229, - -0.551824688911438, - -0.41376161575317383, - -0.2757902443408966, - -0.1378798633813858, - -4.314439649988344e-8, - 0.1378798633813858, - 0.2757902443408966, - 0.41376161575317383, - 0.551824688911438, - 0.690010666847229, - 0.828350841999054, - 0.966877281665802, - -0.9751492142677307, - -0.8354169726371765, - -0.695882260799408, - -0.5565110445022583, - -0.4172699749469757, - -0.27812615036964417, - -0.13904692232608795, - -4.350950177922641e-8, - 0.13904692232608795, - 0.27812615036964417, - 0.4172699749469757, - 0.5565110445022583, - 0.695882260799408, - 0.8354169726371765, - 0.9751492142677307, - -0.9837784171104431, - -0.8427868485450745, - -0.7020052671432495, - -0.5613973140716553, - -0.42092767357826233, - -0.28056129813194275, - -0.14026348292827606, - -4.389009333749527e-8, - 0.14026348292827606, - 0.28056129813194275, - 0.42092767357826233, - 0.5613973140716553, - 0.7020052671432495, - 0.8427868485450745, - 0.9837784171104431, - -0.9927977323532104, - -0.8504881858825684, - -0.7084023356437683, - -0.5665015578269958, - -0.42474809288978577, - -0.2831045389175415, - -0.1415340155363083, - -4.428755673302476e-8, - 0.1415340155363083, - 0.2831045389175415, - 0.42474809288978577, - 0.5665015578269958, - 0.7084023356437683, - 0.8504881858825684, - 0.9927977323532104, - -1.0022448301315308, - -0.8585526943206787, - -0.7150997519493103, - -0.5718445181846619, - -0.42874664068222046, - -0.2857661545276642, - -0.14286358654499054, - -4.470348358154297e-8, - 0.14286358654499054, - 0.2857661545276642, - 0.42874664068222046, - 0.5718445181846619, - 0.7150997519493103, - 0.8585526943206787, - 1.0022448301315308, - -1.0121632814407349, - -0.8670172095298767, - -0.7221276760101318, - -0.577450156211853, - -0.43294113874435425, - -0.28855785727500916, - -0.1442580670118332, - -4.5139710636021846e-8, - 0.1442580670118332, - 0.28855785727500916, - 0.43294113874435425, - 0.577450156211853, - 0.7221276760101318, - 0.8670172095298767, - 1.0121632814407349, - -1.022603988647461, - -0.8759246468544006, - -0.7295214533805847, - -0.5833462476730347, - -0.4373522698879242, - -0.29149341583251953, - -0.14572429656982422, - -4.559836597195499e-8, - 0.14572429656982422, - 0.29149341583251953, - 0.4373522698879242, - 0.5833462476730347, - 0.7295214533805847, - 0.8759246468544006, - 1.022603988647461, - -1.0336272716522217, - -0.8853256702423096, - -0.7373224496841431, - -0.5895655751228333, - -0.44200435280799866, - -0.29458895325660706, - -0.1472702920436859, - -4.6081964910626994e-8, - 0.1472702920436859, - 0.29458895325660706, - 0.44200435280799866, - 0.5895655751228333, - 0.7373224496841431, - 0.8853256702423096, - 1.0336272716522217, - -1.045304536819458, - -0.8952803015708923, - -0.7455800771713257, - -0.5961471199989319, - -0.4469262659549713, - -0.2978634834289551, - -0.14890556037425995, - -4.6593466862532296e-8, - 0.14890556037425995, - 0.2978634834289551, - 0.4469262659549713, - 0.5961471199989319, - 0.7455800771713257, - 0.8952803015708923, - 1.045304536819458, - -1.057722568511963, - -0.9058611392974854, - -0.7543535828590393, - -0.6031374931335449, - -0.45215266942977905, - -0.3013399839401245, - -0.15064148604869843, - -4.713644230491809e-8, - 0.15064148604869843, - 0.3013399839401245, - 0.45215266942977905, - 0.6031374931335449, - 0.7543535828590393, - 0.9058611392974854, - 1.057722568511963, - -1.0709867477416992, - -0.9171566963195801, - -0.7637152671813965, - -0.6105937361717224, - -0.4577256739139557, - -0.30504629015922546, - -0.15249194204807281, - -4.77152113376178e-8, - 0.15249194204807281, - 0.30504629015922546, - 0.4577256739139557, - 0.6105937361717224, - 0.7637152671813965, - 0.9171566963195801, - 1.0709867477416992, - -1.0852291584014893, - -0.9292769432067871, - -0.7737548351287842, - -0.6185861825942993, - -0.4636974334716797, - -0.30901676416397095, - -0.15447400510311127, - -4.8335117242004344e-8, - 0.15447400510311127, - 0.30901676416397095, - 0.4636974334716797, - 0.6185861825942993, - 0.7737548351287842, - 0.9292769432067871, - 1.0852291584014893 - ], - "yaxis": "y6" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9063637852668762, - -0.9121745228767395, - -0.917081892490387, - -0.9210906624794006, - -0.9242046475410461, - -0.9264267683029175, - -0.9277592301368713, - -0.9282032251358032, - -0.9277592301368713, - -0.9264267683029175, - -0.9242046475410461, - -0.9210906624794006, - -0.917081892490387, - -0.9121745228767395, - -0.9063637852668762, - -0.7808201313018799, - -0.7868181467056274, - -0.7918832302093506, - -0.7960205078125, - -0.79923415184021, - -0.8015273213386536, - -0.802902340888977, - -0.8033605217933655, - -0.802902340888977, - -0.8015273213386536, - -0.79923415184021, - -0.7960205078125, - -0.7918832302093506, - -0.7868181467056274, - -0.7808201313018799, - -0.6528957486152649, - -0.6590934991836548, - -0.6643268465995789, - -0.6686012148857117, - -0.6719211339950562, - -0.6742900013923645, - -0.6757103800773621, - -0.6761837005615234, - -0.6757103800773621, - -0.6742900013923645, - -0.6719211339950562, - -0.6686012148857117, - -0.6643268465995789, - -0.6590934991836548, - -0.6528957486152649, - -0.5224495530128479, - -0.5288609266281128, - -0.5342741012573242, - -0.5386950373649597, - -0.5421285033226013, - -0.5445783734321594, - -0.5460472106933594, - -0.5465366840362549, - -0.5460472106933594, - -0.5445783734321594, - -0.5421285033226013, - -0.5386950373649597, - -0.5342741012573242, - -0.5288609266281128, - -0.5224495530128479, - -0.3893261253833771, - -0.3959665596485138, - -0.40157249569892883, - -0.4061504602432251, - -0.4097056984901428, - -0.41224226355552673, - -0.41376304626464844, - -0.4142697751522064, - -0.41376304626464844, - -0.41224226355552673, - -0.4097056984901428, - -0.4061504602432251, - -0.40157249569892883, - -0.3959665596485138, - -0.3893261253833771, - -0.2533532381057739, - -0.26023992896080017, - -0.26605308055877686, - -0.27079981565475464, - -0.2744857966899872, - -0.27711552381515503, - -0.2786920964717865, - -0.279217392206192, - -0.2786920964717865, - -0.27711552381515503, - -0.2744857966899872, - -0.27079981565475464, - -0.26605308055877686, - -0.26023992896080017, - -0.2533532381057739, - -0.1143394261598587, - -0.12149165570735931, - -0.12752819061279297, - -0.13245677947998047, - -0.13628368079662323, - -0.13901375234127045, - -0.1406504213809967, - -0.14119574427604675, - -0.1406504213809967, - -0.13901375234127045, - -0.13628368079662323, - -0.13245677947998047, - -0.12752819061279297, - -0.12149165570735931, - -0.1143394261598587, - 0.027929136529564857, - 0.02048964612185955, - 0.014211527071893215, - 0.009086293168365955, - 0.005107065197080374, - 0.0022685290314257145, - 0.0005669109523296356, - -4.470348358154297e-8, - 0.0005669109523296356, - 0.0022685290314257145, - 0.005107065197080374, - 0.009086293168365955, - 0.014211527071893215, - 0.02048964612185955, - 0.027929136529564857, - 0.17369292676448822, - 0.1659415364265442, - 0.15940122306346893, - 0.15406262874603271, - 0.14991815388202667, - 0.1469619870185852, - 0.14518992602825165, - 0.1445995271205902, - 0.14518992602825165, - 0.1469619870185852, - 0.14991815388202667, - 0.15406262874603271, - 0.15940122306346893, - 0.1659415364265442, - 0.17369292676448822, - 0.3232232928276062, - 0.31513190269470215, - 0.30830591917037964, - 0.302734911441803, - 0.2984105050563812, - 0.29532626271247864, - 0.29347753524780273, - 0.29286158084869385, - 0.29347753524780273, - 0.29532626271247864, - 0.2984105050563812, - 0.302734911441803, - 0.30830591917037964, - 0.31513190269470215, - 0.3232232928276062, - 0.47682860493659973, - 0.46836504340171814, - 0.4612264335155487, - 0.455401211977005, - 0.4508800506591797, - 0.4476557672023773, - 0.44572320580482483, - 0.44507938623428345, - 0.44572320580482483, - 0.4476557672023773, - 0.4508800506591797, - 0.455401211977005, - 0.4612264335155487, - 0.46836504340171814, - 0.47682860493659973, - 0.6348620057106018, - 0.6259890198707581, - 0.618506669998169, - 0.6124020218849182, - 0.6076647043228149, - 0.6042865514755249, - 0.6022619605064392, - 0.6015874743461609, - 0.6022619605064392, - 0.6042865514755249, - 0.6076647043228149, - 0.6124020218849182, - 0.618506669998169, - 0.6259890198707581, - 0.6348620057106018, - 0.7977307438850403, - 0.7884048819541931, - 0.7805426120758057, - 0.7741292715072632, - 0.7691531181335449, - 0.7656052112579346, - 0.7634789943695068, - 0.7627706527709961, - 0.7634789943695068, - 0.7656052112579346, - 0.7691531181335449, - 0.7741292715072632, - 0.7805426120758057, - 0.7884048819541931, - 0.7977307438850403, - 0.9659084677696228, - 0.9560787081718445, - 0.9477938413619995, - 0.9410374164581299, - 0.9357960224151611, - 0.9320594072341919, - 0.9298203587532043, - 0.9290744662284851, - 0.9298203587532043, - 0.9320594072341919, - 0.9357960224151611, - 0.9410374164581299, - 0.9477938413619995, - 0.9560787081718445, - 0.9659084677696228, - 1.1399519443511963, - 1.129557490348816, - 1.1207996606826782, - 1.113659143447876, - 1.1081211566925049, - 1.1041735410690308, - 1.1018084287643433, - 1.1010205745697021, - 1.1018084287643433, - 1.1041735410690308, - 1.1081211566925049, - 1.113659143447876, - 1.1207996606826782, - 1.129557490348816, - 1.1399519443511963 - ], - "xaxis": "x6", - "y": [ - -0.9520604014396667, - -0.8158010244369507, - -0.6796578168869019, - -0.5436110496520996, - -0.4076411724090576, - -0.27172887325286865, - -0.13585485517978668, - -4.251131002774855e-8, - 0.13585485517978668, - 0.27172887325286865, - 0.4076411724090576, - 0.5436110496520996, - 0.6796578168869019, - 0.8158010244369507, - 0.9520604014396667, - -0.9584246277809143, - -0.8212445378303528, - -0.6841859817504883, - -0.5472282767295837, - -0.410351037979126, - -0.27353399991989136, - -0.13675697147846222, - -4.2793558918674535e-8, - 0.13675697147846222, - 0.27353399991989136, - 0.410351037979126, - 0.5472282767295837, - 0.6841859817504883, - 0.8212445378303528, - 0.9584246277809143, - -0.9649976491928101, - -0.826866090297699, - -0.6888618469238281, - -0.550963282585144, - -0.41314899921417236, - -0.27539771795272827, - -0.13768835365772247, - -4.308496315275079e-8, - 0.13768835365772247, - 0.27539771795272827, - 0.41314899921417236, - 0.550963282585144, - 0.6888618469238281, - 0.826866090297699, - 0.9649976491928101, - -0.9717937111854553, - -0.8326778411865234, - -0.6936955451965332, - -0.5548240542411804, - -0.41604098677635193, - -0.27732402086257935, - -0.13865099847316742, - -4.33861444548711e-8, - 0.13865099847316742, - 0.27732402086257935, - 0.41604098677635193, - 0.5548240542411804, - 0.6936955451965332, - 0.8326778411865234, - 0.9717937111854553, - -0.9788286685943604, - -0.8386932015419006, - -0.6986980438232422, - -0.5588194131851196, - -0.41903358697891235, - -0.2793172597885132, - -0.13964706659317017, - -4.369778139334812e-8, - 0.13964706659317017, - 0.2793172597885132, - 0.41903358697891235, - 0.5588194131851196, - 0.6986980438232422, - 0.8386932015419006, - 0.9788286685943604, - -0.9861201643943787, - -0.8449270725250244, - -0.7038818597793579, - -0.5629591345787048, - -0.4221341907978058, - -0.281382292509079, - -0.1406789869070053, - -4.402063069619544e-8, - 0.1406789869070053, - 0.281382292509079, - 0.4221341907978058, - 0.5629591345787048, - 0.7038818597793579, - 0.8449270725250244, - 0.9861201643943787, - -0.9936879277229309, - -0.8513963222503662, - -0.7092607021331787, - -0.5672543048858643, - -0.42535093426704407, - -0.28352460265159607, - -0.14174948632717133, - -4.435554856740964e-8, - 0.14174948632717133, - 0.28352460265159607, - 0.42535093426704407, - 0.5672543048858643, - 0.7092607021331787, - 0.8513963222503662, - 0.9936879277229309, - -1.001554012298584, - -0.8581196665763855, - -0.714850127696991, - -0.5717171430587769, - -0.428693026304245, - -0.28575026988983154, - -0.14286160469055176, - -4.470348358154297e-8, - 0.14286160469055176, - 0.28575026988983154, - 0.428693026304245, - 0.5717171430587769, - 0.714850127696991, - 0.8581196665763855, - 1.001554012298584, - -1.0097436904907227, - -0.8651183843612671, - -0.7206677198410034, - -0.5763616561889648, - -0.4321708679199219, - -0.28806620836257935, - -0.1440187692642212, - -4.506550865812642e-8, - 0.1440187692642212, - 0.28806620836257935, - 0.4321708679199219, - 0.5763616561889648, - 0.7206677198410034, - 0.8651183843612671, - 1.0097436904907227, - -1.0182851552963257, - -0.8724165558815002, - -0.7267332673072815, - -0.5812035799026489, - -0.43579620122909546, - -0.2904801666736603, - -0.1452248990535736, - -4.544284237795182e-8, - 0.1452248990535736, - 0.2904801666736603, - 0.43579620122909546, - 0.5812035799026489, - 0.7267332673072815, - 0.8724165558815002, - 1.0182851552963257, - -1.027211308479309, - -0.880041778087616, - -0.733069658279419, - -0.586260974407196, - -0.4395824670791626, - -0.2930011451244354, - -0.1464844048023224, - -4.5836873852067583e-8, - 0.1464844048023224, - 0.2930011451244354, - 0.4395824670791626, - 0.586260974407196, - 0.733069658279419, - 0.880041778087616, - 1.027211308479309, - -1.0365595817565918, - -0.8880258798599243, - -0.7397029995918274, - -0.591554582118988, - -0.4435451030731201, - -0.295639306306839, - -0.1478024274110794, - -4.624920180162917e-8, - 0.1478024274110794, - 0.295639306306839, - 0.4435451030731201, - 0.591554582118988, - 0.7397029995918274, - 0.8880258798599243, - 1.0365595817565918, - -1.0463736057281494, - -0.8964056968688965, - -0.7466636896133423, - -0.5971084833145142, - -0.4477020502090454, - -0.29840657114982605, - -0.14918485283851624, - -4.6681673637749554e-8, - 0.14918485283851624, - 0.29840657114982605, - 0.4477020502090454, - 0.5971084833145142, - 0.7466636896133423, - 0.8964056968688965, - 1.0463736057281494, - -1.0567044019699097, - -0.9052242636680603, - -0.7539870738983154, - -0.6029506921768188, - -0.4520741403102875, - -0.3013167679309845, - -0.15063859522342682, - -4.713644230491809e-8, - 0.15063859522342682, - 0.3013167679309845, - 0.4520741403102875, - 0.6029506921768188, - 0.7539870738983154, - 0.9052242636680603, - 1.0567044019699097, - -1.067612648010254, - -0.9145327210426331, - -0.7617151737213135, - -0.609114408493042, - -0.4566860496997833, - -0.3043862283229828, - -0.1521717756986618, - -4.76160515461288e-8, - 0.1521717756986618, - 0.3043862283229828, - 0.4566860496997833, - 0.609114408493042, - 0.7617151737213135, - 0.9145327210426331, - 1.067612648010254 - ], - "yaxis": "y6" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.922731876373291, - -0.9275804162025452, - -0.9316776394844055, - -0.9350262880325317, - -0.9376286268234253, - -0.9394862055778503, - -0.9406002163887024, - -0.9409714937210083, - -0.9406002163887024, - -0.9394862055778503, - -0.9376286268234253, - -0.9350262880325317, - -0.9316776394844055, - -0.9275804162025452, - -0.922731876373291, - -0.7943447828292847, - -0.7993228435516357, - -0.8035294413566589, - -0.8069673180580139, - -0.8096388578414917, - -0.8115457892417908, - -0.812689483165741, - -0.8130705952644348, - -0.812689483165741, - -0.8115457892417908, - -0.8096388578414917, - -0.8069673180580139, - -0.8035294413566589, - -0.7993228435516357, - -0.7943447828292847, - -0.6639320850372314, - -0.669046938419342, - -0.6733688116073608, - -0.6769008636474609, - -0.6796454191207886, - -0.6816044449806213, - -0.6827793717384338, - -0.6831709146499634, - -0.6827793717384338, - -0.6816044449806213, - -0.6796454191207886, - -0.6769008636474609, - -0.6733688116073608, - -0.669046938419342, - -0.6639320850372314, - -0.5313946008682251, - -0.536653995513916, - -0.5410978198051453, - -0.5447292923927307, - -0.5475510358810425, - -0.5495651364326477, - -0.550773024559021, - -0.551175594329834, - -0.550773024559021, - -0.5495651364326477, - -0.5475510358810425, - -0.5447292923927307, - -0.5410978198051453, - -0.536653995513916, - -0.5313946008682251, - -0.39662498235702515, - -0.40203744173049927, - -0.4066103398799896, - -0.4103471338748932, - -0.413250595331192, - -0.4153229594230652, - -0.41656574606895447, - -0.41697990894317627, - -0.41656574606895447, - -0.4153229594230652, - -0.413250595331192, - -0.4103471338748932, - -0.4066103398799896, - -0.40203744173049927, - -0.39662498235702515, - -0.25950634479522705, - -0.2650811970233917, - -0.26979100704193115, - -0.2736394703388214, - -0.27662959694862366, - -0.27876371145248413, - -0.2800435423851013, - -0.2804700434207916, - -0.2800435423851013, - -0.27876371145248413, - -0.27662959694862366, - -0.2736394703388214, - -0.26979100704193115, - -0.2650811970233917, - -0.25950634479522705, - -0.11991127580404282, - -0.12565873563289642, - -0.13051404058933258, - -0.13448116183280945, - -0.13756334781646729, - -0.13976313173770905, - -0.1410822719335556, - -0.1415218710899353, - -0.1410822719335556, - -0.13976313173770905, - -0.13756334781646729, - -0.13448116183280945, - -0.13051404058933258, - -0.12565873563289642, - -0.11991127580404282, - 0.022299442440271378, - 0.01636812835931778, - 0.011357879266142845, - 0.007264396175742149, - 0.004084181971848011, - 0.0018145261565223336, - 0.0004535017360467464, - -4.470348358154297e-8, - 0.0004535017360467464, - 0.0018145261565223336, - 0.004084181971848011, - 0.007264396175742149, - 0.011357879266142845, - 0.01636812835931778, - 0.022299442440271378, - 0.1672789603471756, - 0.16115136444568634, - 0.15597571432590485, - 0.15174736082553864, - 0.14846254885196686, - 0.14611832797527313, - 0.1447126269340515, - 0.14424419403076172, - 0.1447126269340515, - 0.14611832797527313, - 0.14846254885196686, - 0.15174736082553864, - 0.15597571432590485, - 0.16115136444568634, - 0.1672789603471756, - 0.31519564986228943, - 0.3088579773902893, - 0.3035053610801697, - 0.29913270473480225, - 0.29573601484298706, - 0.2933120131492615, - 0.2918585538864136, - 0.29137420654296875, - 0.2918585538864136, - 0.2933120131492615, - 0.29573601484298706, - 0.29913270473480225, - 0.3035053610801697, - 0.3088579773902893, - 0.31519564986228943, - 0.4662357270717621, - 0.45967262983322144, - 0.4541301429271698, - 0.44960272312164307, - 0.44608601927757263, - 0.44357651472091675, - 0.4420717656612396, - 0.44157037138938904, - 0.4420717656612396, - 0.44357651472091675, - 0.44608601927757263, - 0.44960272312164307, - 0.4541301429271698, - 0.45967262983322144, - 0.4662357270717621, - 0.6206061244010925, - 0.6138004064559937, - 0.6080535650253296, - 0.6033596992492676, - 0.599713921546936, - 0.5971124172210693, - 0.5955525636672974, - 0.595032811164856, - 0.5955525636672974, - 0.5971124172210693, - 0.599713921546936, - 0.6033596992492676, - 0.6080535650253296, - 0.6138004064559937, - 0.6206061244010925, - 0.7785375118255615, - 0.7714698910713196, - 0.7655025720596313, - 0.7606290578842163, - 0.7568439841270447, - 0.754143238067627, - 0.7525240182876587, - 0.7519844174385071, - 0.7525240182876587, - 0.754143238067627, - 0.7568439841270447, - 0.7606290578842163, - 0.7655025720596313, - 0.7714698910713196, - 0.7785375118255615, - 0.9402885437011719, - 0.9329372048377991, - 0.9267311096191406, - 0.9216630458831787, - 0.9177272319793701, - 0.9149190783500671, - 0.9132354855537415, - 0.9126745462417603, - 0.9132354855537415, - 0.9149190783500671, - 0.9177272319793701, - 0.9216630458831787, - 0.9267311096191406, - 0.9329372048377991, - 0.9402885437011719, - 1.1061509847640991, - 1.0984910726547241, - 1.0920253992080688, - 1.0867458581924438, - 1.0826462507247925, - 1.079721450805664, - 1.0779680013656616, - 1.0773837566375732, - 1.0779680013656616, - 1.079721450805664, - 1.0826462507247925, - 1.0867458581924438, - 1.0920253992080688, - 1.0984910726547241, - 1.1061509847640991 - ], - "xaxis": "x6", - "y": [ - -0.960605263710022, - -0.8232055306434631, - -0.6858847141265869, - -0.5486292839050293, - -0.41142627596855164, - -0.2742624580860138, - -0.1371246874332428, - -4.290899013881244e-8, - 0.1371246874332428, - 0.2742624580860138, - 0.41142627596855164, - 0.5486292839050293, - 0.6858847141265869, - 0.8232055306434631, - 0.960605263710022, - -0.9658997058868408, - -0.8277371525764465, - -0.6896564364433289, - -0.5516437292098999, - -0.4136853814125061, - -0.2757676839828491, - -0.13787704706192017, - -4.314439649988344e-8, - 0.13787704706192017, - 0.2757676839828491, - 0.4136853814125061, - 0.5516437292098999, - 0.6896564364433289, - 0.8277371525764465, - 0.9658997058868408, - -0.9713376760482788, - -0.8323913812637329, - -0.6935300827026367, - -0.5547394752502441, - -0.41600534319877625, - -0.2773134708404541, - -0.13864967226982117, - -4.33861444548711e-8, - 0.13864967226982117, - 0.2773134708404541, - 0.41600534319877625, - 0.5547394752502441, - 0.6935300827026367, - 0.8323913812637329, - 0.9713376760482788, - -0.9769273996353149, - -0.8371751308441162, - -0.6975114345550537, - -0.5579211711883545, - -0.4183896481990814, - -0.2789020538330078, - -0.13944369554519653, - -4.363458216971594e-8, - 0.13944369554519653, - 0.2789020538330078, - 0.4183896481990814, - 0.5579211711883545, - 0.6975114345550537, - 0.8371751308441162, - 0.9769273996353149, - -0.9826775789260864, - -0.8420960307121277, - -0.7016065716743469, - -0.5611937046051025, - -0.42084193229675293, - -0.28053590655326843, - -0.14026032388210297, - -4.389009333749527e-8, - 0.14026032388210297, - 0.28053590655326843, - 0.42084193229675293, - 0.5611937046051025, - 0.7016065716743469, - 0.8420960307121277, - 0.9826775789260864, - -0.9885978698730469, - -0.847162127494812, - -0.7058224081993103, - -0.5645624399185181, - -0.4233662486076355, - -0.28221774101257324, - -0.1411009132862091, - -4.4153100731136874e-8, - 0.1411009132862091, - 0.28221774101257324, - 0.4233662486076355, - 0.5645624399185181, - 0.7058224081993103, - 0.847162127494812, - 0.9885978698730469, - -0.9946988821029663, - -0.8523824214935303, - -0.710166335105896, - -0.5680334568023682, - -0.4259670674800873, - -0.28395044803619385, - -0.14196692407131195, - -4.442406265070531e-8, - 0.14196692407131195, - 0.28395044803619385, - 0.4259670674800873, - 0.5680334568023682, - 0.710166335105896, - 0.8523824214935303, - 0.9946988821029663, - -1.0009920597076416, - -0.85776686668396, - -0.7146464586257935, - -0.571613073348999, - -0.4286492168903351, - -0.2857373058795929, - -0.14285998046398163, - -4.470348358154297e-8, - 0.14285998046398163, - 0.2857373058795929, - 0.4286492168903351, - 0.571613073348999, - 0.7146464586257935, - 0.85776686668396, - 1.0009920597076416, - -1.0074903964996338, - -0.8633262515068054, - -0.7192718982696533, - -0.575308620929718, - -0.4314180314540863, - -0.2875818610191345, - -0.1437818557024002, - -4.4991921299697424e-8, - 0.1437818557024002, - 0.2875818610191345, - 0.4314180314540863, - 0.575308620929718, - 0.7192718982696533, - 0.8633262515068054, - 1.0074903964996338, - -1.0142077207565308, - -0.8690726161003113, - -0.7240525484085083, - -0.5791279077529907, - -0.43427950143814087, - -0.2894880473613739, - -0.14473453164100647, - -4.528998687192143e-8, - 0.14473453164100647, - 0.2894880473613739, - 0.43427950143814087, - 0.5791279077529907, - 0.7240525484085083, - 0.8690726161003113, - 1.0142077207565308, - -1.0211600065231323, - -0.8750194311141968, - -0.7289995551109314, - -0.5830798149108887, - -0.4372401535511017, - -0.2914602756500244, - -0.14572015404701233, - -4.559836597195499e-8, - 0.14572015404701233, - 0.2914602756500244, - 0.4372401535511017, - 0.5830798149108887, - 0.7289995551109314, - 0.8750194311141968, - 1.0211600065231323, - -1.028364896774292, - -0.881181538105011, - -0.7341251969337463, - -0.5871741771697998, - -0.4403073489665985, - -0.2935033440589905, - -0.14674119651317596, - -4.591782243323905e-8, - 0.14674119651317596, - 0.2935033440589905, - 0.4403073489665985, - 0.5871741771697998, - 0.7341251969337463, - 0.881181538105011, - 1.028364896774292, - -1.035841941833496, - -0.8875756859779358, - -0.739443302154541, - -0.5914219617843628, - -0.44348928332328796, - -0.2956227958202362, - -0.14780037105083466, - -4.624920180162917e-8, - 0.14780037105083466, - 0.2956227958202362, - 0.44348928332328796, - 0.5914219617843628, - 0.739443302154541, - 0.8875756859779358, - 1.035841941833496, - -1.0436131954193115, - -0.8942207098007202, - -0.7449696063995361, - -0.5958356261253357, - -0.4467952251434326, - -0.2978247404098511, - -0.14890071749687195, - -4.6593470415245974e-8, - 0.14890071749687195, - 0.2978247404098511, - 0.4467952251434326, - 0.5958356261253357, - 0.7449696063995361, - 0.8942207098007202, - 1.0436131954193115, - -1.0517041683197021, - -0.9011380672454834, - -0.7507215738296509, - -0.6004291772842407, - -0.45023566484451294, - -0.3001161217689514, - -0.1500457525253296, - -4.6951704746334144e-8, - 0.1500457525253296, - 0.3001161217689514, - 0.45023566484451294, - 0.6004291772842407, - 0.7507215738296509, - 0.9011380672454834, - 1.0517041683197021 - ], - "yaxis": "y6" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9401378631591797, - -0.9439396858215332, - -0.9471541047096252, - -0.9497823715209961, - -0.9518255591392517, - -0.9532844424247742, - -0.9541594982147217, - -0.9544511437416077, - -0.9541594982147217, - -0.9532844424247742, - -0.9518255591392517, - -0.9497823715209961, - -0.9471541047096252, - -0.9439396858215332, - -0.9401378631591797, - -0.8086443543434143, - -0.8125253915786743, - -0.8158066868782043, - -0.818489670753479, - -0.8205752968788147, - -0.8220644593238831, - -0.8229576945304871, - -0.8232554197311401, - -0.8229576945304871, - -0.8220644593238831, - -0.8205752968788147, - -0.818489670753479, - -0.8158066868782043, - -0.8125253915786743, - -0.8086443543434143, - -0.6755281090736389, - -0.6794917583465576, - -0.6828429102897644, - -0.6855828166007996, - -0.6877127289772034, - -0.6892334818840027, - -0.6901456713676453, - -0.6904497146606445, - -0.6901456713676453, - -0.6892334818840027, - -0.6877127289772034, - -0.6855828166007996, - -0.6828429102897644, - -0.6794917583465576, - -0.6755281090736389, - -0.5407274961471558, - -0.5447773933410645, - -0.5482013821601868, - -0.5510007739067078, - -0.5531769394874573, - -0.5547306537628174, - -0.5556626319885254, - -0.55597323179245, - -0.5556626319885254, - -0.5547306537628174, - -0.5531769394874573, - -0.5510007739067078, - -0.5482013821601868, - -0.5447773933410645, - -0.5407274961471558, - -0.4041769504547119, - -0.4083169996738434, - -0.4118170738220215, - -0.414678692817688, - -0.4169031083583832, - -0.41849130392074585, - -0.41944393515586853, - -0.41976141929626465, - -0.41944393515586853, - -0.41849130392074585, - -0.4169031083583832, - -0.414678692817688, - -0.4118170738220215, - -0.4083169996738434, - -0.4041769504547119, - -0.2658064067363739, - -0.2700407803058624, - -0.27362048625946045, - -0.2765471339225769, - -0.27882206439971924, - -0.28044629096984863, - -0.2814205586910248, - -0.2817452549934387, - -0.2814205586910248, - -0.28044629096984863, - -0.27882206439971924, - -0.2765471339225769, - -0.27362048625946045, - -0.2700407803058624, - -0.2658064067363739, - -0.12554103136062622, - -0.12987418472766876, - -0.13353729248046875, - -0.13653208315372467, - -0.13885991275310516, - -0.14052189886569977, - -0.14151877164840698, - -0.1418510228395462, - -0.14151877164840698, - -0.14052189886569977, - -0.13885991275310516, - -0.13653208315372467, - -0.13353729248046875, - -0.12987418472766876, - -0.12554103136062622, - 0.016699135303497314, - 0.01226238626986742, - 0.008511806838214397, - 0.0054455907084047794, - 0.0030622731428593397, - 0.0013607153668999672, - 0.0003401046560611576, - -4.470348358154297e-8, - 0.0003401046560611576, - 0.0013607153668999672, - 0.0030622731428593397, - 0.0054455907084047794, - 0.008511806838214397, - 0.01226238626986742, - 0.016699135303497314, - 0.16100016236305237, - 0.15645462274551392, - 0.15261220932006836, - 0.1494709998369217, - 0.14702944457530975, - 0.14528632164001465, - 0.14424081146717072, - 0.1438923478126526, - 0.14424081146717072, - 0.14528632164001465, - 0.14702944457530975, - 0.1494709998369217, - 0.15261220932006836, - 0.15645462274551392, - 0.16100016236305237, - 0.30745428800582886, - 0.30279436707496643, - 0.29885539412498474, - 0.29563531279563904, - 0.2931325435638428, - 0.2913457453250885, - 0.2902740240097046, - 0.28991687297821045, - 0.2902740240097046, - 0.2913457453250885, - 0.2931325435638428, - 0.29563531279563904, - 0.29885539412498474, - 0.30279436707496643, - 0.30745428800582886, - 0.45616084337234497, - 0.45138049125671387, - 0.44733983278274536, - 0.4440367519855499, - 0.4414695203304291, - 0.4396367371082306, - 0.43853744864463806, - 0.4381710886955261, - 0.43853744864463806, - 0.4396367371082306, - 0.4414695203304291, - 0.4440367519855499, - 0.44733983278274536, - 0.45138049125671387, - 0.45616084337234497, - 0.6072272062301636, - 0.6023197770118713, - 0.5981719493865967, - 0.5947813391685486, - 0.5921461582183838, - 0.5902648568153381, - 0.58913654088974, - 0.588760495185852, - 0.58913654088974, - 0.5902648568153381, - 0.5921461582183838, - 0.5947813391685486, - 0.5981719493865967, - 0.6023197770118713, - 0.6072272062301636, - 0.7607694864273071, - 0.7557278871536255, - 0.7514668107032776, - 0.7479837536811829, - 0.7452768087387085, - 0.7433443069458008, - 0.7421852946281433, - 0.741798996925354, - 0.7421852946281433, - 0.7433443069458008, - 0.7452768087387085, - 0.7479837536811829, - 0.7514668107032776, - 0.7557278871536255, - 0.7607694864273071, - 0.9169135093688965, - 0.9117299318313599, - 0.9073490500450134, - 0.9037682414054871, - 0.9009853005409241, - 0.8989986777305603, - 0.8978071808815002, - 0.8974100947380066, - 0.8978071808815002, - 0.8989986777305603, - 0.9009853005409241, - 0.9037682414054871, - 0.9073490500450134, - 0.9117299318313599, - 0.9169135093688965, - 1.075796365737915, - 1.0704623460769653, - 1.0659544467926025, - 1.062269926071167, - 1.0594065189361572, - 1.0573625564575195, - 1.0561366081237793, - 1.0557280778884888, - 1.0561366081237793, - 1.0573625564575195, - 1.0594065189361572, - 1.062269926071167, - 1.0659544467926025, - 1.0704623460769653, - 1.075796365737915 - ], - "xaxis": "x6", - "y": [ - -0.9696143269538879, - -0.8309958577156067, - -0.6924246549606323, - -0.5538926124572754, - -0.41539204120635986, - -0.2769149839878082, - -0.13845354318618774, - -4.332509462301459e-8, - 0.13845354318618774, - 0.2769149839878082, - 0.41539204120635986, - 0.5538926124572754, - 0.6924246549606323, - 0.8309958577156067, - 0.9696143269538879, - -0.9737526774406433, - -0.8345400094985962, - -0.6953759789466858, - -0.5562523007392883, - -0.4171610176563263, - -0.2780939042568207, - -0.13904288411140442, - -4.350950177922641e-8, - 0.13904288411140442, - 0.2780939042568207, - 0.4171610176563263, - 0.5562523007392883, - 0.6953759789466858, - 0.8345400094985962, - 0.9737526774406433, - -0.9779782891273499, - -0.8381587862968445, - -0.6983894109725952, - -0.5586615800857544, - -0.4189670979976654, - -0.2792975604534149, - -0.13964460790157318, - -4.369778139334812e-8, - 0.13964460790157318, - 0.2792975604534149, - 0.4189670979976654, - 0.5586615800857544, - 0.6983894109725952, - 0.8381587862968445, - 0.9779782891273499, - -0.9822948575019836, - -0.8418554067611694, - -0.7014675736427307, - -0.5611225962638855, - -0.4208119511604309, - -0.2805270254611969, - -0.14025920629501343, - -4.389009333749527e-8, - 0.14025920629501343, - 0.2805270254611969, - 0.4208119511604309, - 0.5611225962638855, - 0.7014675736427307, - 0.8418554067611694, - 0.9822948575019836, - -0.986706554889679, - -0.845633327960968, - -0.7046133279800415, - -0.5636376142501831, - -0.4226972758769989, - -0.28178346157073975, - -0.1408872902393341, - -4.408662235277916e-8, - 0.1408872902393341, - 0.28178346157073975, - 0.4226972758769989, - 0.5636376142501831, - 0.7046133279800415, - 0.845633327960968, - 0.986706554889679, - -0.9912176132202148, - -0.8494962453842163, - -0.7078298330307007, - -0.566209077835083, - -0.4246249198913574, - -0.28306809067726135, - -0.14152945578098297, - -4.428755673302476e-8, - 0.14152945578098297, - 0.28306809067726135, - 0.4246249198913574, - 0.566209077835083, - 0.7078298330307007, - 0.8494962453842163, - 0.9912176132202148, - -0.9958327412605286, - -0.8534481525421143, - -0.7111203670501709, - -0.5688397288322449, - -0.42659682035446167, - -0.2843821942806244, - -0.14218637347221375, - -4.449310253562544e-8, - 0.14218637347221375, - 0.2843821942806244, - 0.42659682035446167, - 0.5688397288322449, - 0.7111203670501709, - 0.8534481525421143, - 0.9958327412605286, - -1.0005569458007812, - -0.8574933409690857, - -0.7144884467124939, - -0.5715323090553284, - -0.42861515283584595, - -0.28572723269462585, - -0.14285872876644135, - -4.470348358154297e-8, - 0.14285872876644135, - 0.28572723269462585, - 0.42861515283584595, - 0.5715323090553284, - 0.7144884467124939, - 0.8574933409690857, - 1.0005569458007812, - -1.0053956508636475, - -0.8616364598274231, - -0.7179379463195801, - -0.574289858341217, - -0.4306821823120117, - -0.28710469603538513, - -0.14354728162288666, - -4.4918934349880146e-8, - 0.14354728162288666, - 0.28710469603538513, - 0.4306821823120117, - 0.574289858341217, - 0.7179379463195801, - 0.8616364598274231, - 1.0053956508636475, - -1.0103546380996704, - -0.8658823370933533, - -0.7214729189872742, - -0.5771157145500183, - -0.4328003227710724, - -0.28851619362831116, - -0.14425286650657654, - -4.5139710636021846e-8, - 0.14425286650657654, - 0.28851619362831116, - 0.4328003227710724, - 0.5771157145500183, - 0.7214729189872742, - 0.8658823370933533, - 1.0103546380996704, - -1.0154401063919067, - -0.8702364563941956, - -0.7250978946685791, - -0.5800134539604187, - -0.4349723160266876, - -0.2899635434150696, - -0.14497636258602142, - -4.5366085998921335e-8, - 0.14497636258602142, - 0.2899635434150696, - 0.4349723160266876, - 0.5800134539604187, - 0.7250978946685791, - 0.8702364563941956, - 1.0154401063919067, - -1.02065908908844, - -0.8747045993804932, - -0.7288177013397217, - -0.5829868316650391, - -0.43720096349716187, - -0.2914486527442932, - -0.14571870863437653, - -4.559836597195499e-8, - 0.14571870863437653, - 0.2914486527442932, - 0.43720096349716187, - 0.5829868316650391, - 0.7288177013397217, - 0.8747045993804932, - 1.02065908908844, - -1.0260188579559326, - -0.8792930841445923, - -0.7326374650001526, - -0.5860401391983032, - -0.4394894540309906, - -0.2929736077785492, - -0.1464809775352478, - -4.5836873852067583e-8, - 0.1464809775352478, - 0.2929736077785492, - 0.4394894540309906, - 0.5860401391983032, - 0.7326374650001526, - 0.8792930841445923, - 1.0260188579559326, - -1.0315274000167847, - -0.8840087652206421, - -0.7365630269050598, - -0.5891779065132141, - -0.44184115529060364, - -0.2945406436920166, - -0.1472642719745636, - -4.6081964910626994e-8, - 0.1472642719745636, - 0.2945406436920166, - 0.44184115529060364, - 0.5891779065132141, - 0.7365630269050598, - 0.8840087652206421, - 1.0315274000167847, - -1.0371936559677124, - -0.888859212398529, - -0.7406005859375, - -0.5924050211906433, - -0.44425979256629944, - -0.2961522936820984, - -0.1480698436498642, - -4.633402284071053e-8, - 0.1480698436498642, - 0.2961522936820984, - 0.44425979256629944, - 0.5924050211906433, - 0.7406005859375, - 0.888859212398529, - 1.0371936559677124 - ], - "yaxis": "y6" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9587101340293884, - -0.961367130279541, - -0.9636145234107971, - -0.9654527306556702, - -0.9668821096420288, - -0.9679028987884521, - -0.9685152769088745, - -0.9687194228172302, - -0.9685152769088745, - -0.9679028987884521, - -0.9668821096420288, - -0.9654527306556702, - -0.9636145234107971, - -0.961367130279541, - -0.9587101340293884, - -0.8238058090209961, - -0.8265012502670288, - -0.8287811875343323, - -0.8306459784507751, - -0.8320960402488708, - -0.8331315517425537, - -0.8337528109550476, - -0.8339598774909973, - -0.8337528109550476, - -0.8331315517425537, - -0.8320960402488708, - -0.8306459784507751, - -0.8287811875343323, - -0.8265012502670288, - -0.8238058090209961, - -0.6877403855323792, - -0.6904754638671875, - -0.69278883934021, - -0.6946810483932495, - -0.6961523294448853, - -0.6972030997276306, - -0.6978334784507751, - -0.6980435848236084, - -0.6978334784507751, - -0.6972030997276306, - -0.6961523294448853, - -0.6946810483932495, - -0.69278883934021, - -0.6904754638671875, - -0.6877403855323792, - -0.5504832863807678, - -0.5532591938972473, - -0.5556070804595947, - -0.5575274229049683, - -0.5590206980705261, - -0.5600870847702026, - -0.5607268214225769, - -0.5609400868415833, - -0.5607268214225769, - -0.5600870847702026, - -0.5590206980705261, - -0.5575274229049683, - -0.5556070804595947, - -0.5532591938972473, - -0.5504832863807678, - -0.4120027720928192, - -0.41482070088386536, - -0.4172041714191437, - -0.4191536009311676, - -0.42066946625709534, - -0.4217519760131836, - -0.42240139842033386, - -0.4226178824901581, - -0.42240139842033386, - -0.4217519760131836, - -0.42066946625709534, - -0.4191536009311676, - -0.4172041714191437, - -0.41482070088386536, - -0.4120027720928192, - -0.2722654640674591, - -0.27512675523757935, - -0.27754688262939453, - -0.27952632308006287, - -0.2810654640197754, - -0.282164603471756, - -0.28282400965690613, - -0.2830438017845154, - -0.28282400965690613, - -0.282164603471756, - -0.2810654640197754, - -0.27952632308006287, - -0.27754688262939453, - -0.27512675523757935, - -0.2722654640674591, - -0.13123641908168793, - -0.13414248824119568, - -0.13660043478012085, - -0.1386108100414276, - -0.1401739865541458, - -0.1412903070449829, - -0.141960009932518, - -0.14218322932720184, - -0.141960009932518, - -0.1412903070449829, - -0.1401739865541458, - -0.1386108100414276, - -0.13660043478012085, - -0.13414248824119568, - -0.13123641908168793, - 0.011120683513581753, - 0.008168408647179604, - 0.005671391263604164, - 0.003629096783697605, - 0.002041095169261098, - 0.0009070485248230398, - 0.000226716510951519, - -4.470348358154297e-8, - 0.000226716510951519, - 0.0009070485248230398, - 0.002041095169261098, - 0.003629096783697605, - 0.005671391263604164, - 0.008168408647179604, - 0.011120683513581753, - 0.15484429895877838, - 0.15184429287910461, - 0.14930693805217743, - 0.14723165333271027, - 0.1456180065870285, - 0.14446566998958588, - 0.1437743604183197, - 0.14354392886161804, - 0.1437743604183197, - 0.14446566998958588, - 0.1456180065870285, - 0.14723165333271027, - 0.14930693805217743, - 0.15184429287910461, - 0.15484429895877838, - 0.2999745011329651, - 0.2969251573085785, - 0.2943460941314697, - 0.29223671555519104, - 0.2905965745449066, - 0.2894253134727478, - 0.2887226641178131, - 0.2884884476661682, - 0.2887226641178131, - 0.2894253134727478, - 0.2905965745449066, - 0.29223671555519104, - 0.2943460941314697, - 0.2969251573085785, - 0.2999745011329651, - 0.4465533494949341, - 0.44345298409461975, - 0.440830796957016, - 0.43868616223335266, - 0.43701863288879395, - 0.4358277916908264, - 0.43511340022087097, - 0.4348752796649933, - 0.43511340022087097, - 0.4358277916908264, - 0.43701863288879395, - 0.43868616223335266, - 0.440830796957016, - 0.44345298409461975, - 0.4465533494949341, - 0.5946251749992371, - 0.5914720296859741, - 0.5888051986694336, - 0.586624026298523, - 0.5849281549453735, - 0.5837171077728271, - 0.5829905271530151, - 0.5827484130859375, - 0.5829905271530151, - 0.5837171077728271, - 0.5849281549453735, - 0.586624026298523, - 0.5888051986694336, - 0.5914720296859741, - 0.5946251749992371, - 0.7442366480827332, - 0.7410287857055664, - 0.7383157014846802, - 0.7360967993736267, - 0.734371542930603, - 0.7331395149230957, - 0.7324004173278809, - 0.7321540713310242, - 0.7324004173278809, - 0.7331395149230957, - 0.734371542930603, - 0.7360967993736267, - 0.7383157014846802, - 0.7410287857055664, - 0.7442366480827332, - 0.8954365849494934, - 0.89217209815979, - 0.8894110918045044, - 0.8871530890464783, - 0.8853973746299744, - 0.884143590927124, - 0.8833914995193481, - 0.8831408023834229, - 0.8833914995193481, - 0.884143590927124, - 0.8853973746299744, - 0.8871530890464783, - 0.8894110918045044, - 0.89217209815979, - 0.8954365849494934, - 1.0482769012451172, - 1.0449535846710205, - 1.0421429872512817, - 1.039844274520874, - 1.0380570888519287, - 1.036780834197998, - 1.0360151529312134, - 1.0357599258422852, - 1.0360151529312134, - 1.036780834197998, - 1.0380570888519287, - 1.039844274520874, - 1.0421429872512817, - 1.0449535846710205, - 1.0482769012451172 - ], - "xaxis": "x6", - "y": [ - -0.9791397452354431, - -0.8392141461372375, - -0.6993109583854675, - -0.5594263076782227, - -0.41955670714378357, - -0.2796982526779175, - -0.13984723389148712, - -4.3761428258903834e-8, - 0.13984723389148712, - 0.2796982526779175, - 0.41955670714378357, - 0.5594263076782227, - 0.6993109583854675, - 0.8392141461372375, - 0.9791397452354431, - -0.9820223450660706, - -0.8416839241981506, - -0.7013683915138245, - -0.5610718131065369, - -0.42079055309295654, - -0.2805207073688507, - -0.14025841653347015, - -4.389009333749527e-8, - 0.14025841653347015, - 0.2805207073688507, - 0.42079055309295654, - 0.5610718131065369, - 0.7013683915138245, - 0.8416839241981506, - 0.9820223450660706, - -0.9849469661712646, - -0.8441897034645081, - -0.7034558057785034, - -0.5627412796020508, - -0.4220423996448517, - -0.2813551127910614, - -0.1406755894422531, - -4.402063069619544e-8, - 0.1406755894422531, - 0.2813551127910614, - 0.4220423996448517, - 0.5627412796020508, - 0.7034558057785034, - 0.8441897034645081, - 0.9849469661712646, - -0.9879149198532104, - -0.8467325568199158, - -0.7055741548538208, - -0.5644354820251465, - -0.4233127236366272, - -0.282201886177063, - -0.14109893143177032, - -4.4153100731136874e-8, - 0.14109893143177032, - 0.282201886177063, - 0.4233127236366272, - 0.5644354820251465, - 0.7055741548538208, - 0.8467325568199158, - 0.9879149198532104, - -0.9909274578094482, - -0.8493136763572693, - -0.7077242732048035, - -0.5661550760269165, - -0.42460212111473083, - -0.28306135535240173, - -0.14152862131595612, - -4.428755673302476e-8, - 0.14152862131595612, - 0.28306135535240173, - 0.42460212111473083, - 0.5661550760269165, - 0.7077242732048035, - 0.8493136763572693, - 0.9909274578094482, - -0.9939860701560974, - -0.8519341945648193, - -0.7099072337150574, - -0.5679008960723877, - -0.42591121792793274, - -0.2839339077472687, - -0.141964852809906, - -4.442406265070531e-8, - 0.141964852809906, - 0.2839339077472687, - 0.42591121792793274, - 0.5679008960723877, - 0.7099072337150574, - 0.8519341945648193, - 0.9939860701560974, - -0.9970921277999878, - -0.8545953631401062, - -0.7121240496635437, - -0.5696737766265869, - -0.4272405505180359, - -0.28481999039649963, - -0.1424078494310379, - -4.456268243302475e-8, - 0.1424078494310379, - 0.28481999039649963, - 0.4272405505180359, - 0.5696737766265869, - 0.7121240496635437, - 0.8545953631401062, - 0.9970921277999878, - -1.0002472400665283, - -0.8572984933853149, - -0.7143757939338684, - -0.5714746117591858, - -0.4285908341407776, - -0.28572002053260803, - -0.14285781979560852, - -4.470348358154297e-8, - 0.14285781979560852, - 0.28572002053260803, - 0.4285908341407776, - 0.5714746117591858, - 0.7143757939338684, - 0.8572984933853149, - 1.0002472400665283, - -1.0034528970718384, - -0.8600449562072754, - -0.7166635990142822, - -0.573304295539856, - -0.42996275424957275, - -0.2866344749927521, - -0.14331498742103577, - -4.484653715053355e-8, - 0.14331498742103577, - 0.2866344749927521, - 0.42996275424957275, - 0.573304295539856, - 0.7166635990142822, - 0.8600449562072754, - 1.0034528970718384, - -1.0067108869552612, - -0.8628361225128174, - -0.7189886569976807, - -0.575163722038269, - -0.4313569664955139, - -0.2875637710094452, - -0.14377960562705994, - -4.4991921299697424e-8, - 0.14377960562705994, - 0.2875637710094452, - 0.4313569664955139, - 0.575163722038269, - 0.7189886569976807, - 0.8628361225128174, - 1.0067108869552612, - -1.0100228786468506, - -0.8656736612319946, - -0.7213522791862488, - -0.5770540237426758, - -0.43277430534362793, - -0.28850850462913513, - -0.14425189793109894, - -4.5139710636021846e-8, - 0.14425189793109894, - 0.28850850462913513, - 0.43277430534362793, - 0.5770540237426758, - 0.7213522791862488, - 0.8656736612319946, - 1.0100228786468506, - -1.0133907794952393, - -0.8685590624809265, - -0.7237557768821716, - -0.5789760947227478, - -0.4342155158519745, - -0.2894691228866577, - -0.14473216235637665, - -4.528998687192143e-8, - 0.14473216235637665, - 0.2894691228866577, - 0.4342155158519745, - 0.5789760947227478, - 0.7237557768821716, - 0.8685590624809265, - 1.0133907794952393, - -1.0168167352676392, - -0.8714939951896667, - -0.726200520992279, - -0.5809312462806702, - -0.43568146228790283, - -0.2904462218284607, - -0.14522065222263336, - -4.544284237795182e-8, - 0.14522065222263336, - 0.2904462218284607, - 0.43568146228790283, - 0.5809312462806702, - 0.726200520992279, - 0.8714939951896667, - 1.0168167352676392, - -1.020302653312683, - -0.8744803667068481, - -0.7286880016326904, - -0.5829205513000488, - -0.4371730089187622, - -0.29144036769866943, - -0.14571768045425415, - -4.559836597195499e-8, - 0.14571768045425415, - 0.29144036769866943, - 0.4371730089187622, - 0.5829205513000488, - 0.7286880016326904, - 0.8744803667068481, - 1.020302653312683, - -1.023850679397583, - -0.8775199055671692, - -0.7312198281288147, - -0.5849452614784241, - -0.438691109418869, - -0.29245224595069885, - -0.1462235450744629, - -4.5756660682627626e-8, - 0.1462235450744629, - 0.29245224595069885, - 0.438691109418869, - 0.5849452614784241, - 0.7312198281288147, - 0.8775199055671692, - 1.023850679397583 - ], - "yaxis": "y6" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -0.9786022901535034, - -0.9799991846084595, - -0.9811810851097107, - -0.9821479916572571, - -0.9828999638557434, - -0.9834371209144592, - -0.983759343624115, - -0.9838667511940002, - -0.983759343624115, - -0.9834371209144592, - -0.9828999638557434, - -0.9821479916572571, - -0.9811810851097107, - -0.9799991846084595, - -0.9786022901535034, - -0.8399314880371094, - -0.8413389921188354, - -0.8425297737121582, - -0.843504011631012, - -0.8442617058753967, - -0.8448028564453125, - -0.8451275825500488, - -0.8452358245849609, - -0.8451275825500488, - -0.8448028564453125, - -0.8442617058753967, - -0.843504011631012, - -0.8425297737121582, - -0.8413389921188354, - -0.8399314880371094, - -0.7006341814994812, - -0.7020524144172668, - -0.7032523155212402, - -0.7042340040206909, - -0.7049974203109741, - -0.7055427432060242, - -0.7058699131011963, - -0.7059789299964905, - -0.7058699131011963, - -0.7055427432060242, - -0.7049974203109741, - -0.7042340040206909, - -0.7032523155212402, - -0.7020524144172668, - -0.7006341814994812, - -0.5607017874717712, - -0.562130868434906, - -0.5633400082588196, - -0.564329206943512, - -0.5650985240936279, - -0.5656480193138123, - -0.5659777522087097, - -0.5660876035690308, - -0.5659777522087097, - -0.5656480193138123, - -0.5650985240936279, - -0.564329206943512, - -0.5633400082588196, - -0.562130868434906, - -0.5607017874717712, - -0.4201256036758423, - -0.4215657711029053, - -0.4227842688560486, - -0.4237811267375946, - -0.4245564043521881, - -0.4251101613044739, - -0.4254423975944519, - -0.4255531430244446, - -0.4254423975944519, - -0.4251101613044739, - -0.4245564043521881, - -0.4237811267375946, - -0.4227842688560486, - -0.4215657711029053, - -0.4201256036758423, - -0.27889660000801086, - -0.2803480327129364, - -0.2815760374069214, - -0.2825806736946106, - -0.2833620309829712, - -0.2839200794696808, - -0.28425490856170654, - -0.28436651825904846, - -0.28425490856170654, - -0.2839200794696808, - -0.2833620309829712, - -0.2825806736946106, - -0.2815760374069214, - -0.2803480327129364, - -0.27889660000801086, - -0.13700558245182037, - -0.1384684443473816, - -0.13970611989498138, - -0.14071866869926453, - -0.141506165266037, - -0.14206862449645996, - -0.14240609109401703, - -0.14251857995986938, - -0.14240609109401703, - -0.14206862449645996, - -0.141506165266037, - -0.14071866869926453, - -0.13970611989498138, - -0.1384684443473816, - -0.13700558245182037, - 0.005556710995733738, - 0.004082235973328352, - 0.0028347347397357225, - 0.001814141753129661, - 0.0010204038117080927, - 0.0004534779582172632, - 0.00011333441943861544, - -4.470348358154297e-8, - 0.00011333441943861544, - 0.0004534779582172632, - 0.0010204038117080927, - 0.001814141753129661, - 0.0028347347397357225, - 0.004082235973328352, - 0.005556710995733738, - 0.1488001048564911, - 0.14731381833553314, - 0.14605633914470673, - 0.14502757787704468, - 0.14422748982906342, - 0.14365601539611816, - 0.14331315457820892, - 0.1431988626718521, - 0.14331315457820892, - 0.14365601539611816, - 0.14422748982906342, - 0.14502757787704468, - 0.14605633914470673, - 0.14731381833553314, - 0.1488001048564911, - 0.2927343547344208, - 0.2912360727787018, - 0.28996846079826355, - 0.28893139958381653, - 0.28812482953071594, - 0.2875487804412842, - 0.2872031331062317, - 0.28708791732788086, - 0.2872031331062317, - 0.2875487804412842, - 0.28812482953071594, - 0.28893139958381653, - 0.28996846079826355, - 0.2912360727787018, - 0.2927343547344208, - 0.43736955523490906, - 0.4358590841293335, - 0.43458113074302673, - 0.4335356056690216, - 0.4327225089073181, - 0.4321417510509491, - 0.43179330229759216, - 0.4316771626472473, - 0.43179330229759216, - 0.4321417510509491, - 0.4327225089073181, - 0.4335356056690216, - 0.43458113074302673, - 0.4358590841293335, - 0.43736955523490906, - 0.5827160477638245, - 0.5811931490898132, - 0.5799047350883484, - 0.5788506269454956, - 0.5780308246612549, - 0.5774453282356262, - 0.5770940184593201, - 0.5769768953323364, - 0.5770940184593201, - 0.5774453282356262, - 0.5780308246612549, - 0.5788506269454956, - 0.5799047350883484, - 0.5811931490898132, - 0.5827160477638245, - 0.7287845015525818, - 0.7272489666938782, - 0.7259498834609985, - 0.7248870730400085, - 0.7240604758262634, - 0.7234700918197632, - 0.7231159210205078, - 0.7229978442192078, - 0.7231159210205078, - 0.7234700918197632, - 0.7240604758262634, - 0.7248870730400085, - 0.7259498834609985, - 0.7272489666938782, - 0.7287845015525818, - 0.8755856156349182, - 0.8740373253822327, - 0.8727273344993591, - 0.8716556429862976, - 0.8708221912384033, - 0.8702268600463867, - 0.8698697090148926, - 0.8697506189346313, - 0.8698697090148926, - 0.8702268600463867, - 0.8708221912384033, - 0.8716556429862976, - 0.8727273344993591, - 0.8740373253822327, - 0.8755856156349182, - 1.0231306552886963, - 1.0215692520141602, - 1.020248293876648, - 1.0191675424575806, - 1.0183271169662476, - 1.0177267789840698, - 1.017366647720337, - 1.0172464847564697, - 1.017366647720337, - 1.0177267789840698, - 1.0183271169662476, - 1.0191675424575806, - 1.020248293876648, - 1.0215692520141602, - 1.0231306552886963 - ], - "xaxis": "x6", - "y": [ - -0.9892436265945435, - -0.8479100465774536, - -0.7065825462341309, - -0.5652599930763245, - -0.4239414930343628, - -0.2826260030269623, - -0.14131246507167816, - -4.422007648940962e-8, - 0.14131246507167816, - 0.2826260030269623, - 0.4239414930343628, - 0.5652599930763245, - 0.7065825462341309, - 0.8479100465774536, - 0.9892436265945435, - -0.990753710269928, - -0.8492043018341064, - -0.7076610326766968, - -0.5661227107048035, - -0.42458847165107727, - -0.283057302236557, - -0.14152811467647552, - -4.428755673302476e-8, - 0.14152811467647552, - 0.283057302236557, - 0.42458847165107727, - 0.5661227107048035, - 0.7076610326766968, - 0.8492043018341064, - 0.990753710269928, - -0.9922753572463989, - -0.8505083918571472, - -0.7087476253509521, - -0.566991925239563, - -0.4252403676509857, - -0.2834918797016144, - -0.14174538850784302, - -4.435554856740964e-8, - 0.14174538850784302, - 0.2834918797016144, - 0.4252403676509857, - 0.566991925239563, - 0.7087476253509521, - 0.8505083918571472, - 0.9922753572463989, - -0.9938085675239563, - -0.8518224954605103, - -0.7098425626754761, - -0.5678678154945374, - -0.4258972406387329, - -0.2839297652244568, - -0.14196434617042542, - -4.442406265070531e-8, - 0.14196434617042542, - 0.2839297652244568, - 0.4258972406387329, - 0.5678678154945374, - 0.7098425626754761, - 0.8518224954605103, - 0.9938085675239563, - -0.995353639125824, - -0.8531466722488403, - -0.7109459638595581, - -0.5687505006790161, - -0.4265592098236084, - -0.2843710482120514, - -0.14218497276306152, - -4.449310253562544e-8, - 0.14218497276306152, - 0.2843710482120514, - 0.4265592098236084, - 0.5687505006790161, - 0.7109459638595581, - 0.8531466722488403, - 0.995353639125824, - -0.9969107508659363, - -0.8544811606407166, - -0.7120579481124878, - -0.5696399807929993, - -0.42722630500793457, - -0.2848157584667206, - -0.14240732789039612, - -4.456268243302475e-8, - 0.14240732789039612, - 0.2848157584667206, - 0.42722630500793457, - 0.5696399807929993, - 0.7120579481124878, - 0.8544811606407166, - 0.9969107508659363, - -0.9984800219535828, - -0.8558261394500732, - -0.7131786942481995, - -0.5705364942550659, - -0.4278986155986786, - -0.28526395559310913, - -0.1426314264535904, - -4.463280589561691e-8, - 0.1426314264535904, - 0.28526395559310913, - 0.4278986155986786, - 0.5705364942550659, - 0.7131786942481995, - 0.8558261394500732, - 0.9984800219535828, - -1.0000617504119873, - -0.8571817278862, - -0.7143082022666931, - -0.5714400410652161, - -0.42857626080513, - -0.2857156991958618, - -0.14285728335380554, - -4.470348358154297e-8, - 0.14285728335380554, - 0.2857156991958618, - 0.42857626080513, - 0.5714400410652161, - 0.7143082022666931, - 0.8571817278862, - 1.0000617504119873, - -1.0016560554504395, - -0.8585481643676758, - -0.7154467701911926, - -0.5723508596420288, - -0.4292593002319336, - -0.2861710488796234, - -0.14308494329452515, - -4.4774726148943955e-8, - 0.14308494329452515, - 0.2861710488796234, - 0.4292593002319336, - 0.5723508596420288, - 0.7154467701911926, - 0.8585481643676758, - 1.0016560554504395, - -1.003263235092163, - -0.8599255681037903, - -0.7165945172309875, - -0.5732689499855042, - -0.4299478232860565, - -0.2866300344467163, - -0.1433144360780716, - -4.484653715053355e-8, - 0.1433144360780716, - 0.2866300344467163, - 0.4299478232860565, - 0.5732689499855042, - 0.7165945172309875, - 0.8599255681037903, - 1.003263235092163, - -1.0048834085464478, - -0.8613141179084778, - -0.7177515029907227, - -0.5741944909095764, - -0.43064194917678833, - -0.28709277510643005, - -0.14354579150676727, - -4.4918934349880146e-8, - 0.14354579150676727, - 0.28709277510643005, - 0.43064194917678833, - 0.5741944909095764, - 0.7177515029907227, - 0.8613141179084778, - 1.0048834085464478, - -1.0065168142318726, - -0.8627139925956726, - -0.7189180254936218, - -0.5751275420188904, - -0.4313417375087738, - -0.28755927085876465, - -0.14377903938293457, - -4.4991921299697424e-8, - 0.14377903938293457, - 0.28755927085876465, - 0.4313417375087738, - 0.5751275420188904, - 0.7189180254936218, - 0.8627139925956726, - 1.0065168142318726, - -1.0081636905670166, - -0.8641254901885986, - -0.7200940847396851, - -0.5760683417320251, - -0.4320472776889801, - -0.28802961111068726, - -0.14401420950889587, - -4.506550865812642e-8, - 0.14401420950889587, - 0.28802961111068726, - 0.4320472776889801, - 0.5760683417320251, - 0.7200940847396851, - 0.8641254901885986, - 1.0081636905670166, - -1.009824275970459, - -0.8655486702919006, - -0.7212799787521362, - -0.5770170092582703, - -0.4327586889266968, - -0.28850385546684265, - -0.14425133168697357, - -4.5139710636021846e-8, - 0.14425133168697357, - 0.28850385546684265, - 0.4327586889266968, - 0.5770170092582703, - 0.7212799787521362, - 0.8655486702919006, - 1.009824275970459, - -1.0114988088607788, - -0.8669837713241577, - -0.7224757671356201, - -0.5779735445976257, - -0.433476060628891, - -0.288982093334198, - -0.14449043571949005, - -4.5214530786097384e-8, - 0.14449043571949005, - 0.288982093334198, - 0.433476060628891, - 0.5779735445976257, - 0.7224757671356201, - 0.8669837713241577, - 1.0114988088607788 - ], - "yaxis": "y6" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": true, - "x": [ - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.8571428656578064, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.7142857313156128, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.5714285373687744, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.4285714030265808, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.2857142686843872, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -0.14285710453987122, - -4.516914486885071e-8, - -4.50456028033841e-8, - -4.4941064203385395e-8, - -4.485553617428195e-8, - -4.478901161064641e-8, - -4.4741497617906134e-8, - -4.471298709063376e-8, - -4.470348358154297e-8, - -4.471298709063376e-8, - -4.4741497617906134e-8, - -4.478901161064641e-8, - -4.485553617428195e-8, - -4.4941064203385395e-8, - -4.50456028033841e-8, - -4.516914486885071e-8, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.14285710453987122, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.2857142686843872, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.4285714030265808, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.5714285373687744, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.7142857313156128, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 0.8571428656578064, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - "xaxis": "x6", - "y": [ - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1, - -1, - -0.8571428656578064, - -0.7142857313156128, - -0.5714285373687744, - -0.4285714030265808, - -0.2857142686843872, - -0.14285710453987122, - -4.470348358154297e-8, - 0.14285710453987122, - 0.2857142686843872, - 0.4285714030265808, - 0.5714285373687744, - 0.7142857313156128, - 0.8571428656578064, - 1 - ], - "yaxis": "y6" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -1.0231306552886963, - -1.0215692520141602, - -1.020248293876648, - -1.0191675424575806, - -1.0183271169662476, - -1.0177267789840698, - -1.017366647720337, - -1.0172464847564697, - -1.017366647720337, - -1.0177267789840698, - -1.0183271169662476, - -1.0191675424575806, - -1.020248293876648, - -1.0215692520141602, - -1.0231306552886963, - -0.8755856156349182, - -0.8740373253822327, - -0.8727273344993591, - -0.8716556429862976, - -0.8708221912384033, - -0.8702268600463867, - -0.8698697090148926, - -0.8697506189346313, - -0.8698697090148926, - -0.8702268600463867, - -0.8708221912384033, - -0.8716556429862976, - -0.8727273344993591, - -0.8740373253822327, - -0.8755856156349182, - -0.7287845015525818, - -0.7272489666938782, - -0.7259498834609985, - -0.7248870730400085, - -0.7240604758262634, - -0.7234700918197632, - -0.7231159210205078, - -0.7229978442192078, - -0.7231159210205078, - -0.7234700918197632, - -0.7240604758262634, - -0.7248870730400085, - -0.7259498834609985, - -0.7272489666938782, - -0.7287845015525818, - -0.5827160477638245, - -0.5811931490898132, - -0.5799047350883484, - -0.5788506269454956, - -0.5780308246612549, - -0.5774453282356262, - -0.5770940184593201, - -0.5769768953323364, - -0.5770940184593201, - -0.5774453282356262, - -0.5780308246612549, - -0.5788506269454956, - -0.5799047350883484, - -0.5811931490898132, - -0.5827160477638245, - -0.43736955523490906, - -0.4358590841293335, - -0.43458113074302673, - -0.4335356056690216, - -0.4327225089073181, - -0.4321417510509491, - -0.43179330229759216, - -0.4316771626472473, - -0.43179330229759216, - -0.4321417510509491, - -0.4327225089073181, - -0.4335356056690216, - -0.43458113074302673, - -0.4358590841293335, - -0.43736955523490906, - -0.2927343547344208, - -0.2912360727787018, - -0.28996846079826355, - -0.28893139958381653, - -0.28812482953071594, - -0.2875487804412842, - -0.2872031331062317, - -0.28708791732788086, - -0.2872031331062317, - -0.2875487804412842, - -0.28812482953071594, - -0.28893139958381653, - -0.28996846079826355, - -0.2912360727787018, - -0.2927343547344208, - -0.1488001048564911, - -0.14731381833553314, - -0.14605633914470673, - -0.14502757787704468, - -0.14422748982906342, - -0.14365601539611816, - -0.14331315457820892, - -0.1431988626718521, - -0.14331315457820892, - -0.14365601539611816, - -0.14422748982906342, - -0.14502757787704468, - -0.14605633914470673, - -0.14731381833553314, - -0.1488001048564911, - -0.005556801334023476, - -0.004082325845956802, - -0.002834824612364173, - -0.0018142315093427896, - -0.0010204933350905776, - -0.0004535674233920872, - -0.00011342384095769376, - -4.470348358154297e-8, - -0.00011342384095769376, - -0.0004535674233920872, - -0.0010204933350905776, - -0.0018142315093427896, - -0.002834824612364173, - -0.004082325845956802, - -0.005556801334023476, - 0.13700558245182037, - 0.1384684443473816, - 0.13970611989498138, - 0.14071866869926453, - 0.141506165266037, - 0.14206862449645996, - 0.14240609109401703, - 0.14251857995986938, - 0.14240609109401703, - 0.14206862449645996, - 0.141506165266037, - 0.14071866869926453, - 0.13970611989498138, - 0.1384684443473816, - 0.13700558245182037, - 0.27889660000801086, - 0.2803480327129364, - 0.2815760374069214, - 0.2825806736946106, - 0.2833620309829712, - 0.2839200794696808, - 0.28425490856170654, - 0.28436651825904846, - 0.28425490856170654, - 0.2839200794696808, - 0.2833620309829712, - 0.2825806736946106, - 0.2815760374069214, - 0.2803480327129364, - 0.27889660000801086, - 0.4201256036758423, - 0.4215657711029053, - 0.4227842688560486, - 0.4237811267375946, - 0.4245564043521881, - 0.4251101613044739, - 0.4254423975944519, - 0.4255531430244446, - 0.4254423975944519, - 0.4251101613044739, - 0.4245564043521881, - 0.4237811267375946, - 0.4227842688560486, - 0.4215657711029053, - 0.4201256036758423, - 0.5607017874717712, - 0.5621309280395508, - 0.5633400082588196, - 0.564329206943512, - 0.5650985240936279, - 0.5656480193138123, - 0.5659777522087097, - 0.5660876035690308, - 0.5659777522087097, - 0.5656480193138123, - 0.5650985240936279, - 0.564329206943512, - 0.5633400082588196, - 0.5621309280395508, - 0.5607017874717712, - 0.7006341814994812, - 0.7020524144172668, - 0.7032523155212402, - 0.7042339444160461, - 0.7049974203109741, - 0.7055427432060242, - 0.7058699131011963, - 0.7059789299964905, - 0.7058699131011963, - 0.7055427432060242, - 0.7049974203109741, - 0.7042339444160461, - 0.7032523155212402, - 0.7020524144172668, - 0.7006341814994812, - 0.8399314880371094, - 0.8413389921188354, - 0.8425297737121582, - 0.843504011631012, - 0.8442617058753967, - 0.8448028564453125, - 0.8451275825500488, - 0.8452358245849609, - 0.8451275825500488, - 0.8448028564453125, - 0.8442617058753967, - 0.843504011631012, - 0.8425297737121582, - 0.8413389921188354, - 0.8399314880371094, - 0.9786022901535034, - 0.9799991846084595, - 0.9811810851097107, - 0.9821479916572571, - 0.9828999638557434, - 0.9834371209144592, - 0.983759343624115, - 0.9838667511940002, - 0.983759343624115, - 0.9834371209144592, - 0.9828999638557434, - 0.9821479916572571, - 0.9811810851097107, - 0.9799991846084595, - 0.9786022901535034 - ], - "xaxis": "x6", - "y": [ - -1.0114988088607788, - -0.8669838309288025, - -0.7224757671356201, - -0.5779735445976257, - -0.433476060628891, - -0.288982093334198, - -0.14449043571949005, - -4.5214530786097384e-8, - 0.14449043571949005, - 0.288982093334198, - 0.433476060628891, - 0.5779735445976257, - 0.7224757671356201, - 0.8669838309288025, - 1.0114988088607788, - -1.0098243951797485, - -0.8655486702919006, - -0.7212799787521362, - -0.5770170092582703, - -0.4327586889266968, - -0.28850385546684265, - -0.14425133168697357, - -4.5139710636021846e-8, - 0.14425133168697357, - 0.28850385546684265, - 0.4327586889266968, - 0.5770170092582703, - 0.7212799787521362, - 0.8655486702919006, - 1.0098243951797485, - -1.0081636905670166, - -0.8641254901885986, - -0.7200940847396851, - -0.5760683417320251, - -0.4320472776889801, - -0.28802961111068726, - -0.14401420950889587, - -4.506550865812642e-8, - 0.14401420950889587, - 0.28802961111068726, - 0.4320472776889801, - 0.5760683417320251, - 0.7200940847396851, - 0.8641254901885986, - 1.0081636905670166, - -1.0065168142318726, - -0.8627139925956726, - -0.7189180254936218, - -0.5751275420188904, - -0.4313417375087738, - -0.28755927085876465, - -0.14377903938293457, - -4.4991921299697424e-8, - 0.14377903938293457, - 0.28755927085876465, - 0.4313417375087738, - 0.5751275420188904, - 0.7189180254936218, - 0.8627139925956726, - 1.0065168142318726, - -1.0048834085464478, - -0.8613141179084778, - -0.7177515029907227, - -0.5741944909095764, - -0.43064194917678833, - -0.28709277510643005, - -0.14354579150676727, - -4.4918934349880146e-8, - 0.14354579150676727, - 0.28709277510643005, - 0.43064194917678833, - 0.5741944909095764, - 0.7177515029907227, - 0.8613141179084778, - 1.0048834085464478, - -1.003263235092163, - -0.8599255681037903, - -0.7165945172309875, - -0.5732689499855042, - -0.4299478232860565, - -0.2866300344467163, - -0.1433144360780716, - -4.484653715053355e-8, - 0.1433144360780716, - 0.2866300344467163, - 0.4299478232860565, - 0.5732689499855042, - 0.7165945172309875, - 0.8599255681037903, - 1.003263235092163, - -1.0016560554504395, - -0.8585481643676758, - -0.7154467701911926, - -0.5723508596420288, - -0.4292593002319336, - -0.2861710488796234, - -0.14308494329452515, - -4.4774726148943955e-8, - 0.14308494329452515, - 0.2861710488796234, - 0.4292593002319336, - 0.5723508596420288, - 0.7154467701911926, - 0.8585481643676758, - 1.0016560554504395, - -1.0000617504119873, - -0.8571817278862, - -0.7143082022666931, - -0.5714400410652161, - -0.42857626080513, - -0.2857156991958618, - -0.14285728335380554, - -4.470348358154297e-8, - 0.14285728335380554, - 0.2857156991958618, - 0.42857626080513, - 0.5714400410652161, - 0.7143082022666931, - 0.8571817278862, - 1.0000617504119873, - -0.9984800219535828, - -0.8558261394500732, - -0.7131786942481995, - -0.5705364942550659, - -0.4278986155986786, - -0.28526395559310913, - -0.1426314264535904, - -4.463280589561691e-8, - 0.1426314264535904, - 0.28526395559310913, - 0.4278986155986786, - 0.5705364942550659, - 0.7131786942481995, - 0.8558261394500732, - 0.9984800219535828, - -0.9969107508659363, - -0.8544811606407166, - -0.7120579481124878, - -0.5696399807929993, - -0.42722630500793457, - -0.2848157584667206, - -0.14240732789039612, - -4.456268243302475e-8, - 0.14240732789039612, - 0.2848157584667206, - 0.42722630500793457, - 0.5696399807929993, - 0.7120579481124878, - 0.8544811606407166, - 0.9969107508659363, - -0.995353639125824, - -0.8531466722488403, - -0.7109459638595581, - -0.5687505006790161, - -0.4265592098236084, - -0.2843710482120514, - -0.14218497276306152, - -4.449310253562544e-8, - 0.14218497276306152, - 0.2843710482120514, - 0.4265592098236084, - 0.5687505006790161, - 0.7109459638595581, - 0.8531466722488403, - 0.995353639125824, - -0.9938085675239563, - -0.8518224954605103, - -0.7098425626754761, - -0.5678678154945374, - -0.4258972406387329, - -0.2839297652244568, - -0.14196434617042542, - -4.442406265070531e-8, - 0.14196434617042542, - 0.2839297652244568, - 0.4258972406387329, - 0.5678678154945374, - 0.7098425626754761, - 0.8518224954605103, - 0.9938085675239563, - -0.9922753572463989, - -0.8505083918571472, - -0.7087476253509521, - -0.566991925239563, - -0.4252403676509857, - -0.2834918797016144, - -0.14174538850784302, - -4.435554856740964e-8, - 0.14174538850784302, - 0.2834918797016144, - 0.4252403676509857, - 0.566991925239563, - 0.7087476253509521, - 0.8505083918571472, - 0.9922753572463989, - -0.990753710269928, - -0.8492043018341064, - -0.7076610326766968, - -0.5661227107048035, - -0.42458847165107727, - -0.283057302236557, - -0.14152811467647552, - -4.428755673302476e-8, - 0.14152811467647552, - 0.283057302236557, - 0.42458847165107727, - 0.5661227107048035, - 0.7076610326766968, - 0.8492043018341064, - 0.990753710269928, - -0.9892436265945435, - -0.8479100465774536, - -0.7065825462341309, - -0.5652599930763245, - -0.4239414930343628, - -0.2826260030269623, - -0.14131246507167816, - -4.422007648940962e-8, - 0.14131246507167816, - 0.2826260030269623, - 0.4239414930343628, - 0.5652599930763245, - 0.7065825462341309, - 0.8479100465774536, - 0.9892436265945435 - ], - "yaxis": "y6" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -1.0482770204544067, - -1.04495370388031, - -1.0421429872512817, - -1.0398443937301636, - -1.0380570888519287, - -1.036780834197998, - -1.0360151529312134, - -1.0357599258422852, - -1.0360151529312134, - -1.036780834197998, - -1.0380570888519287, - -1.0398443937301636, - -1.0421429872512817, - -1.04495370388031, - -1.0482770204544067, - -0.8954366445541382, - -0.89217209815979, - -0.8894110918045044, - -0.8871530890464783, - -0.8853973746299744, - -0.884143590927124, - -0.8833914995193481, - -0.8831408023834229, - -0.8833914995193481, - -0.884143590927124, - -0.8853973746299744, - -0.8871530890464783, - -0.8894110918045044, - -0.89217209815979, - -0.8954366445541382, - -0.7442366480827332, - -0.7410287857055664, - -0.7383157014846802, - -0.7360967993736267, - -0.734371542930603, - -0.7331395149230957, - -0.7324004173278809, - -0.7321540713310242, - -0.7324004173278809, - -0.7331395149230957, - -0.734371542930603, - -0.7360967993736267, - -0.7383157014846802, - -0.7410287857055664, - -0.7442366480827332, - -0.5946251749992371, - -0.5914720296859741, - -0.5888051986694336, - -0.5866240859031677, - -0.5849281549453735, - -0.5837171077728271, - -0.5829905271530151, - -0.5827484130859375, - -0.5829905271530151, - -0.5837171077728271, - -0.5849281549453735, - -0.5866240859031677, - -0.5888051986694336, - -0.5914720296859741, - -0.5946251749992371, - -0.4465533494949341, - -0.44345298409461975, - -0.440830796957016, - -0.43868616223335266, - -0.43701863288879395, - -0.4358277916908264, - -0.43511340022087097, - -0.4348752796649933, - -0.43511340022087097, - -0.4358277916908264, - -0.43701863288879395, - -0.43868616223335266, - -0.440830796957016, - -0.44345298409461975, - -0.4465533494949341, - -0.2999745011329651, - -0.2969251573085785, - -0.2943460941314697, - -0.29223671555519104, - -0.2905965745449066, - -0.2894253134727478, - -0.2887226641178131, - -0.2884884476661682, - -0.2887226641178131, - -0.2894253134727478, - -0.2905965745449066, - -0.29223671555519104, - -0.2943460941314697, - -0.2969251573085785, - -0.2999745011329651, - -0.15484429895877838, - -0.15184429287910461, - -0.14930693805217743, - -0.14723165333271027, - -0.1456180065870285, - -0.14446566998958588, - -0.1437743604183197, - -0.14354392886161804, - -0.1437743604183197, - -0.14446566998958588, - -0.1456180065870285, - -0.14723165333271027, - -0.14930693805217743, - -0.15184429287910461, - -0.15484429895877838, - -0.011120774783194065, - -0.008168499916791916, - -0.005671481601893902, - -0.003629186889156699, - -0.0020411850418895483, - -0.0009071381064131856, - -0.00022680596157442778, - -4.470348358154297e-8, - -0.00022680596157442778, - -0.0009071381064131856, - -0.0020411850418895483, - -0.003629186889156699, - -0.005671481601893902, - -0.008168499916791916, - -0.011120774783194065, - 0.13123641908168793, - 0.13414248824119568, - 0.13660043478012085, - 0.1386108100414276, - 0.1401739865541458, - 0.1412903070449829, - 0.141960009932518, - 0.14218322932720184, - 0.141960009932518, - 0.1412903070449829, - 0.1401739865541458, - 0.1386108100414276, - 0.13660043478012085, - 0.13414248824119568, - 0.13123641908168793, - 0.2722654342651367, - 0.27512675523757935, - 0.27754688262939453, - 0.27952632308006287, - 0.2810654640197754, - 0.282164603471756, - 0.28282400965690613, - 0.2830438017845154, - 0.28282400965690613, - 0.282164603471756, - 0.2810654640197754, - 0.27952632308006287, - 0.27754688262939453, - 0.27512675523757935, - 0.2722654342651367, - 0.4120027720928192, - 0.41482070088386536, - 0.4172041714191437, - 0.4191536009311676, - 0.42066946625709534, - 0.4217519760131836, - 0.42240139842033386, - 0.4226178824901581, - 0.42240139842033386, - 0.4217519760131836, - 0.42066946625709534, - 0.4191536009311676, - 0.4172041714191437, - 0.41482070088386536, - 0.4120027720928192, - 0.5504832863807678, - 0.5532591938972473, - 0.5556070804595947, - 0.5575274229049683, - 0.5590206980705261, - 0.5600870847702026, - 0.5607268214225769, - 0.5609400868415833, - 0.5607268214225769, - 0.5600870847702026, - 0.5590206980705261, - 0.5575274229049683, - 0.5556070804595947, - 0.5532591938972473, - 0.5504832863807678, - 0.6877403855323792, - 0.6904754638671875, - 0.69278883934021, - 0.6946810483932495, - 0.6961523294448853, - 0.6972030997276306, - 0.6978334784507751, - 0.6980435848236084, - 0.6978334784507751, - 0.6972030997276306, - 0.6961523294448853, - 0.6946810483932495, - 0.69278883934021, - 0.6904754638671875, - 0.6877403855323792, - 0.8238058090209961, - 0.8265012502670288, - 0.8287811875343323, - 0.8306459784507751, - 0.8320960402488708, - 0.8331315517425537, - 0.8337528109550476, - 0.8339598774909973, - 0.8337528109550476, - 0.8331315517425537, - 0.8320960402488708, - 0.8306459784507751, - 0.8287811875343323, - 0.8265012502670288, - 0.8238058090209961, - 0.9587101340293884, - 0.961367130279541, - 0.9636145234107971, - 0.9654527306556702, - 0.9668821096420288, - 0.9679028987884521, - 0.9685152769088745, - 0.9687194228172302, - 0.9685152769088745, - 0.9679028987884521, - 0.9668821096420288, - 0.9654527306556702, - 0.9636145234107971, - 0.961367130279541, - 0.9587101340293884 - ], - "xaxis": "x6", - "y": [ - -1.023850679397583, - -0.8775199055671692, - -0.7312198877334595, - -0.5849452614784241, - -0.438691109418869, - -0.29245224595069885, - -0.1462235450744629, - -4.5756660682627626e-8, - 0.1462235450744629, - 0.29245224595069885, - 0.438691109418869, - 0.5849452614784241, - 0.7312198877334595, - 0.8775199055671692, - 1.023850679397583, - -1.020302653312683, - -0.8744803667068481, - -0.7286880016326904, - -0.5829205513000488, - -0.4371730089187622, - -0.2914403975009918, - -0.14571768045425415, - -4.559836597195499e-8, - 0.14571768045425415, - 0.2914403975009918, - 0.4371730089187622, - 0.5829205513000488, - 0.7286880016326904, - 0.8744803667068481, - 1.020302653312683, - -1.0168167352676392, - -0.8714940547943115, - -0.726200520992279, - -0.5809312462806702, - -0.43568146228790283, - -0.2904462218284607, - -0.14522065222263336, - -4.544284237795182e-8, - 0.14522065222263336, - 0.2904462218284607, - 0.43568146228790283, - 0.5809312462806702, - 0.726200520992279, - 0.8714940547943115, - 1.0168167352676392, - -1.0133908987045288, - -0.8685590624809265, - -0.7237557768821716, - -0.5789760947227478, - -0.4342155158519745, - -0.2894691228866577, - -0.14473216235637665, - -4.528998687192143e-8, - 0.14473216235637665, - 0.2894691228866577, - 0.4342155158519745, - 0.5789760947227478, - 0.7237557768821716, - 0.8685590624809265, - 1.0133908987045288, - -1.0100228786468506, - -0.8656736612319946, - -0.7213522791862488, - -0.5770540237426758, - -0.43277430534362793, - -0.28850850462913513, - -0.14425189793109894, - -4.5139710636021846e-8, - 0.14425189793109894, - 0.28850850462913513, - 0.43277430534362793, - 0.5770540237426758, - 0.7213522791862488, - 0.8656736612319946, - 1.0100228786468506, - -1.0067108869552612, - -0.8628361225128174, - -0.7189886569976807, - -0.575163722038269, - -0.4313569664955139, - -0.2875637710094452, - -0.14377960562705994, - -4.4991921299697424e-8, - 0.14377960562705994, - 0.2875637710094452, - 0.4313569664955139, - 0.575163722038269, - 0.7189886569976807, - 0.8628361225128174, - 1.0067108869552612, - -1.0034528970718384, - -0.8600449562072754, - -0.7166635990142822, - -0.573304295539856, - -0.42996275424957275, - -0.2866344749927521, - -0.14331498742103577, - -4.484653715053355e-8, - 0.14331498742103577, - 0.2866344749927521, - 0.42996275424957275, - 0.573304295539856, - 0.7166635990142822, - 0.8600449562072754, - 1.0034528970718384, - -1.0002472400665283, - -0.8572984933853149, - -0.7143757939338684, - -0.5714746117591858, - -0.4285908341407776, - -0.28572002053260803, - -0.14285781979560852, - -4.470348358154297e-8, - 0.14285781979560852, - 0.28572002053260803, - 0.4285908341407776, - 0.5714746117591858, - 0.7143757939338684, - 0.8572984933853149, - 1.0002472400665283, - -0.9970921277999878, - -0.8545953631401062, - -0.7121240496635437, - -0.5696737766265869, - -0.4272405505180359, - -0.28481999039649963, - -0.1424078494310379, - -4.456268243302475e-8, - 0.1424078494310379, - 0.28481999039649963, - 0.4272405505180359, - 0.5696737766265869, - 0.7121240496635437, - 0.8545953631401062, - 0.9970921277999878, - -0.9939860701560974, - -0.8519341945648193, - -0.7099072337150574, - -0.5679008960723877, - -0.42591121792793274, - -0.2839339077472687, - -0.141964852809906, - -4.442406265070531e-8, - 0.141964852809906, - 0.2839339077472687, - 0.42591121792793274, - 0.5679008960723877, - 0.7099072337150574, - 0.8519341945648193, - 0.9939860701560974, - -0.9909274578094482, - -0.8493136763572693, - -0.7077242732048035, - -0.5661550760269165, - -0.42460212111473083, - -0.28306135535240173, - -0.14152862131595612, - -4.428755673302476e-8, - 0.14152862131595612, - 0.28306135535240173, - 0.42460212111473083, - 0.5661550760269165, - 0.7077242732048035, - 0.8493136763572693, - 0.9909274578094482, - -0.9879149198532104, - -0.8467325568199158, - -0.7055741548538208, - -0.5644354820251465, - -0.4233127236366272, - -0.282201886177063, - -0.14109893143177032, - -4.4153100731136874e-8, - 0.14109893143177032, - 0.282201886177063, - 0.4233127236366272, - 0.5644354820251465, - 0.7055741548538208, - 0.8467325568199158, - 0.9879149198532104, - -0.9849469065666199, - -0.8441897034645081, - -0.7034558057785034, - -0.5627412796020508, - -0.4220423996448517, - -0.2813551127910614, - -0.1406755894422531, - -4.402063069619544e-8, - 0.1406755894422531, - 0.2813551127910614, - 0.4220423996448517, - 0.5627412796020508, - 0.7034558057785034, - 0.8441897034645081, - 0.9849469065666199, - -0.9820223450660706, - -0.8416839241981506, - -0.7013683915138245, - -0.5610718131065369, - -0.42079055309295654, - -0.2805207073688507, - -0.14025841653347015, - -4.389009333749527e-8, - 0.14025841653347015, - 0.2805207073688507, - 0.42079055309295654, - 0.5610718131065369, - 0.7013683915138245, - 0.8416839241981506, - 0.9820223450660706, - -0.9791397452354431, - -0.8392141461372375, - -0.6993108987808228, - -0.5594263076782227, - -0.41955670714378357, - -0.2796982526779175, - -0.13984723389148712, - -4.3761428258903834e-8, - 0.13984723389148712, - 0.2796982526779175, - 0.41955670714378357, - 0.5594263076782227, - 0.6993108987808228, - 0.8392141461372375, - 0.9791397452354431 - ], - "yaxis": "y6" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -1.075796365737915, - -1.0704623460769653, - -1.0659544467926025, - -1.062269926071167, - -1.0594065189361572, - -1.0573625564575195, - -1.0561367273330688, - -1.0557280778884888, - -1.0561367273330688, - -1.0573625564575195, - -1.0594065189361572, - -1.062269926071167, - -1.0659544467926025, - -1.0704623460769653, - -1.075796365737915, - -0.9169135093688965, - -0.9117299914360046, - -0.9073490500450134, - -0.9037682414054871, - -0.9009853005409241, - -0.8989986777305603, - -0.8978071808815002, - -0.8974100947380066, - -0.8978071808815002, - -0.8989986777305603, - -0.9009853005409241, - -0.9037682414054871, - -0.9073490500450134, - -0.9117299914360046, - -0.9169135093688965, - -0.7607694864273071, - -0.7557278871536255, - -0.7514668107032776, - -0.7479837536811829, - -0.7452768087387085, - -0.7433443069458008, - -0.7421852946281433, - -0.741798996925354, - -0.7421852946281433, - -0.7433443069458008, - -0.7452768087387085, - -0.7479837536811829, - -0.7514668107032776, - -0.7557278871536255, - -0.7607694864273071, - -0.6072272062301636, - -0.6023197770118713, - -0.5981719493865967, - -0.5947813391685486, - -0.5921461582183838, - -0.5902648568153381, - -0.58913654088974, - -0.588760495185852, - -0.58913654088974, - -0.5902648568153381, - -0.5921461582183838, - -0.5947813391685486, - -0.5981719493865967, - -0.6023197770118713, - -0.6072272062301636, - -0.45616084337234497, - -0.45138049125671387, - -0.44733983278274536, - -0.4440367519855499, - -0.4414695203304291, - -0.4396367371082306, - -0.43853744864463806, - -0.4381710886955261, - -0.43853744864463806, - -0.4396367371082306, - -0.4414695203304291, - -0.4440367519855499, - -0.44733983278274536, - -0.45138049125671387, - -0.45616084337234497, - -0.30745428800582886, - -0.30279436707496643, - -0.29885539412498474, - -0.29563531279563904, - -0.2931325435638428, - -0.2913457453250885, - -0.2902740240097046, - -0.28991687297821045, - -0.2902740240097046, - -0.2913457453250885, - -0.2931325435638428, - -0.29563531279563904, - -0.29885539412498474, - -0.30279436707496643, - -0.30745428800582886, - -0.16100016236305237, - -0.1564546376466751, - -0.15261220932006836, - -0.1494709998369217, - -0.14702944457530975, - -0.14528632164001465, - -0.14424081146717072, - -0.1438923478126526, - -0.14424081146717072, - -0.14528632164001465, - -0.14702944457530975, - -0.1494709998369217, - -0.15261220932006836, - -0.1564546376466751, - -0.16100016236305237, - -0.016699226573109627, - -0.012262478470802307, - -0.008511897176504135, - -0.00544568058103323, - -0.0030623627826571465, - -0.001360804890282452, - -0.0003401940921321511, - -4.470348358154297e-8, - -0.0003401940921321511, - -0.001360804890282452, - -0.0030623627826571465, - -0.00544568058103323, - -0.008511897176504135, - -0.012262478470802307, - -0.016699226573109627, - 0.12554103136062622, - 0.12987416982650757, - 0.13353729248046875, - 0.13653208315372467, - 0.13885991275310516, - 0.14052189886569977, - 0.14151877164840698, - 0.1418510228395462, - 0.14151877164840698, - 0.14052189886569977, - 0.13885991275310516, - 0.13653208315372467, - 0.13353729248046875, - 0.12987416982650757, - 0.12554103136062622, - 0.2658064067363739, - 0.2700407803058624, - 0.27362048625946045, - 0.2765471339225769, - 0.27882206439971924, - 0.28044629096984863, - 0.2814205586910248, - 0.2817452549934387, - 0.2814205586910248, - 0.28044629096984863, - 0.27882206439971924, - 0.2765471339225769, - 0.27362048625946045, - 0.2700407803058624, - 0.2658064067363739, - 0.4041769504547119, - 0.4083169996738434, - 0.4118170738220215, - 0.414678692817688, - 0.4169031083583832, - 0.41849130392074585, - 0.41944393515586853, - 0.41976141929626465, - 0.41944393515586853, - 0.41849130392074585, - 0.4169031083583832, - 0.414678692817688, - 0.4118170738220215, - 0.4083169996738434, - 0.4041769504547119, - 0.5407274961471558, - 0.5447773933410645, - 0.5482013821601868, - 0.5510007739067078, - 0.5531769394874573, - 0.5547306537628174, - 0.5556626319885254, - 0.55597323179245, - 0.5556626319885254, - 0.5547306537628174, - 0.5531769394874573, - 0.5510007739067078, - 0.5482013821601868, - 0.5447773933410645, - 0.5407274961471558, - 0.6755281090736389, - 0.6794917583465576, - 0.6828429102897644, - 0.6855828166007996, - 0.6877127289772034, - 0.6892334818840027, - 0.6901456713676453, - 0.6904497146606445, - 0.6901456713676453, - 0.6892334818840027, - 0.6877127289772034, - 0.6855828166007996, - 0.6828429102897644, - 0.6794917583465576, - 0.6755281090736389, - 0.8086443543434143, - 0.8125253915786743, - 0.8158066868782043, - 0.818489670753479, - 0.8205752968788147, - 0.8220644593238831, - 0.8229576945304871, - 0.8232554197311401, - 0.8229576945304871, - 0.8220644593238831, - 0.8205752968788147, - 0.818489670753479, - 0.8158066868782043, - 0.8125253915786743, - 0.8086443543434143, - 0.9401378631591797, - 0.9439396858215332, - 0.9471541047096252, - 0.9497823715209961, - 0.9518255591392517, - 0.9532844424247742, - 0.9541594982147217, - 0.9544511437416077, - 0.9541594982147217, - 0.9532844424247742, - 0.9518255591392517, - 0.9497823715209961, - 0.9471541047096252, - 0.9439396858215332, - 0.9401378631591797 - ], - "xaxis": "x6", - "y": [ - -1.0371936559677124, - -0.888859212398529, - -0.7406006455421448, - -0.5924050211906433, - -0.44425979256629944, - -0.2961522936820984, - -0.1480698436498642, - -4.633402284071053e-8, - 0.1480698436498642, - 0.2961522936820984, - 0.44425979256629944, - 0.5924050211906433, - 0.7406006455421448, - 0.888859212398529, - 1.0371936559677124, - -1.0315274000167847, - -0.8840087652206421, - -0.7365630865097046, - -0.5891779065132141, - -0.44184115529060364, - -0.294540673494339, - -0.1472642719745636, - -4.6081964910626994e-8, - 0.1472642719745636, - 0.294540673494339, - 0.44184115529060364, - 0.5891779065132141, - 0.7365630865097046, - 0.8840087652206421, - 1.0315274000167847, - -1.0260188579559326, - -0.8792930841445923, - -0.7326374650001526, - -0.5860401391983032, - -0.4394894540309906, - -0.2929736077785492, - -0.1464809775352478, - -4.5836873852067583e-8, - 0.1464809775352478, - 0.2929736077785492, - 0.4394894540309906, - 0.5860401391983032, - 0.7326374650001526, - 0.8792930841445923, - 1.0260188579559326, - -1.02065908908844, - -0.8747045993804932, - -0.7288177013397217, - -0.5829868912696838, - -0.43720096349716187, - -0.2914486527442932, - -0.14571870863437653, - -4.559836597195499e-8, - 0.14571870863437653, - 0.2914486527442932, - 0.43720096349716187, - 0.5829868912696838, - 0.7288177013397217, - 0.8747045993804932, - 1.02065908908844, - -1.0154401063919067, - -0.8702364563941956, - -0.7250978946685791, - -0.5800134539604187, - -0.4349723160266876, - -0.2899635434150696, - -0.14497636258602142, - -4.5366085998921335e-8, - 0.14497636258602142, - 0.2899635434150696, - 0.4349723160266876, - 0.5800134539604187, - 0.7250978946685791, - 0.8702364563941956, - 1.0154401063919067, - -1.0103546380996704, - -0.8658823370933533, - -0.7214729189872742, - -0.5771157145500183, - -0.4328003227710724, - -0.28851619362831116, - -0.14425286650657654, - -4.5139710636021846e-8, - 0.14425286650657654, - 0.28851619362831116, - 0.4328003227710724, - 0.5771157145500183, - 0.7214729189872742, - 0.8658823370933533, - 1.0103546380996704, - -1.0053956508636475, - -0.8616364598274231, - -0.7179379463195801, - -0.574289858341217, - -0.4306821823120117, - -0.28710469603538513, - -0.14354728162288666, - -4.4918934349880146e-8, - 0.14354728162288666, - 0.28710469603538513, - 0.4306821823120117, - 0.574289858341217, - 0.7179379463195801, - 0.8616364598274231, - 1.0053956508636475, - -1.0005569458007812, - -0.8574933409690857, - -0.7144884467124939, - -0.5715323090553284, - -0.42861515283584595, - -0.28572723269462585, - -0.14285872876644135, - -4.470348358154297e-8, - 0.14285872876644135, - 0.28572723269462585, - 0.42861515283584595, - 0.5715323090553284, - 0.7144884467124939, - 0.8574933409690857, - 1.0005569458007812, - -0.9958327412605286, - -0.8534481525421143, - -0.7111203670501709, - -0.5688397288322449, - -0.42659682035446167, - -0.2843821942806244, - -0.14218637347221375, - -4.449310253562544e-8, - 0.14218637347221375, - 0.2843821942806244, - 0.42659682035446167, - 0.5688397288322449, - 0.7111203670501709, - 0.8534481525421143, - 0.9958327412605286, - -0.9912176132202148, - -0.8494962453842163, - -0.7078298330307007, - -0.566209077835083, - -0.4246249198913574, - -0.28306809067726135, - -0.14152945578098297, - -4.428755673302476e-8, - 0.14152945578098297, - 0.28306809067726135, - 0.4246249198913574, - 0.566209077835083, - 0.7078298330307007, - 0.8494962453842163, - 0.9912176132202148, - -0.986706554889679, - -0.845633327960968, - -0.7046133279800415, - -0.5636376142501831, - -0.4226972758769989, - -0.28178346157073975, - -0.1408872902393341, - -4.408662235277916e-8, - 0.1408872902393341, - 0.28178346157073975, - 0.4226972758769989, - 0.5636376142501831, - 0.7046133279800415, - 0.845633327960968, - 0.986706554889679, - -0.9822948575019836, - -0.8418554067611694, - -0.7014675736427307, - -0.5611225962638855, - -0.4208119511604309, - -0.2805270254611969, - -0.14025920629501343, - -4.389009333749527e-8, - 0.14025920629501343, - 0.2805270254611969, - 0.4208119511604309, - 0.5611225962638855, - 0.7014675736427307, - 0.8418554067611694, - 0.9822948575019836, - -0.9779782891273499, - -0.8381587862968445, - -0.6983894109725952, - -0.5586615800857544, - -0.4189670979976654, - -0.2792975604534149, - -0.139644593000412, - -4.3697777840634444e-8, - 0.139644593000412, - 0.2792975604534149, - 0.4189670979976654, - 0.5586615800857544, - 0.6983894109725952, - 0.8381587862968445, - 0.9779782891273499, - -0.9737526774406433, - -0.8345400094985962, - -0.6953759789466858, - -0.5562523007392883, - -0.4171609878540039, - -0.2780939042568207, - -0.13904288411140442, - -4.350950177922641e-8, - 0.13904288411140442, - 0.2780939042568207, - 0.4171609878540039, - 0.5562523007392883, - 0.6953759789466858, - 0.8345400094985962, - 0.9737526774406433, - -0.9696142673492432, - -0.8309958577156067, - -0.6924246549606323, - -0.5538926124572754, - -0.41539204120635986, - -0.2769149839878082, - -0.13845354318618774, - -4.332509462301459e-8, - 0.13845354318618774, - 0.2769149839878082, - 0.41539204120635986, - 0.5538926124572754, - 0.6924246549606323, - 0.8309958577156067, - 0.9696142673492432 - ], - "yaxis": "y6" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -1.1061509847640991, - -1.0984910726547241, - -1.0920253992080688, - -1.0867458581924438, - -1.0826462507247925, - -1.079721450805664, - -1.0779680013656616, - -1.0773837566375732, - -1.0779680013656616, - -1.079721450805664, - -1.0826462507247925, - -1.0867458581924438, - -1.0920253992080688, - -1.0984910726547241, - -1.1061509847640991, - -0.9402885437011719, - -0.9329372048377991, - -0.9267311096191406, - -0.9216630458831787, - -0.9177272319793701, - -0.9149190783500671, - -0.9132354855537415, - -0.9126745462417603, - -0.9132354855537415, - -0.9149190783500671, - -0.9177272319793701, - -0.9216630458831787, - -0.9267311096191406, - -0.9329372048377991, - -0.9402885437011719, - -0.7785375118255615, - -0.7714698910713196, - -0.7655025720596313, - -0.7606290578842163, - -0.7568439841270447, - -0.754143238067627, - -0.7525240182876587, - -0.7519844174385071, - -0.7525240182876587, - -0.754143238067627, - -0.7568439841270447, - -0.7606290578842163, - -0.7655025720596313, - -0.7714698910713196, - -0.7785375118255615, - -0.6206061244010925, - -0.6138004064559937, - -0.6080535650253296, - -0.6033596992492676, - -0.599713921546936, - -0.5971124172210693, - -0.5955525636672974, - -0.595032811164856, - -0.5955525636672974, - -0.5971124172210693, - -0.599713921546936, - -0.6033596992492676, - -0.6080535650253296, - -0.6138004064559937, - -0.6206061244010925, - -0.4662357270717621, - -0.45967262983322144, - -0.4541301429271698, - -0.44960272312164307, - -0.44608601927757263, - -0.44357651472091675, - -0.4420717656612396, - -0.44157037138938904, - -0.4420717656612396, - -0.44357651472091675, - -0.44608601927757263, - -0.44960272312164307, - -0.4541301429271698, - -0.45967262983322144, - -0.4662357270717621, - -0.31519564986228943, - -0.3088579773902893, - -0.3035053610801697, - -0.29913270473480225, - -0.29573601484298706, - -0.2933120131492615, - -0.2918585538864136, - -0.29137420654296875, - -0.2918585538864136, - -0.2933120131492615, - -0.29573601484298706, - -0.29913270473480225, - -0.3035053610801697, - -0.3088579773902893, - -0.31519564986228943, - -0.1672789603471756, - -0.16115136444568634, - -0.15597571432590485, - -0.15174736082553864, - -0.14846254885196686, - -0.14611832797527313, - -0.1447126269340515, - -0.14424419403076172, - -0.1447126269340515, - -0.14611832797527313, - -0.14846254885196686, - -0.15174736082553864, - -0.15597571432590485, - -0.16115136444568634, - -0.1672789603471756, - -0.02229953184723854, - -0.016368217766284943, - -0.011357968673110008, - -0.0072644860483706, - -0.004084271378815174, - -0.0018146155634894967, - -0.00045359114301390946, - -4.470348358154297e-8, - -0.00045359114301390946, - -0.0018146155634894967, - -0.004084271378815174, - -0.0072644860483706, - -0.011357968673110008, - -0.016368217766284943, - -0.02229953184723854, - 0.11991127580404282, - 0.12565873563289642, - 0.13051404058933258, - 0.13448116183280945, - 0.13756334781646729, - 0.13976313173770905, - 0.1410822719335556, - 0.1415218710899353, - 0.1410822719335556, - 0.13976313173770905, - 0.13756334781646729, - 0.13448116183280945, - 0.13051404058933258, - 0.12565873563289642, - 0.11991127580404282, - 0.25950634479522705, - 0.2650811970233917, - 0.26979100704193115, - 0.2736394703388214, - 0.27662959694862366, - 0.27876371145248413, - 0.2800435423851013, - 0.2804700434207916, - 0.2800435423851013, - 0.27876371145248413, - 0.27662959694862366, - 0.2736394703388214, - 0.26979100704193115, - 0.2650811970233917, - 0.25950634479522705, - 0.39662498235702515, - 0.40203744173049927, - 0.4066103398799896, - 0.4103471338748932, - 0.413250595331192, - 0.4153229594230652, - 0.41656574606895447, - 0.41697990894317627, - 0.41656574606895447, - 0.4153229594230652, - 0.413250595331192, - 0.4103471338748932, - 0.4066103398799896, - 0.40203744173049927, - 0.39662498235702515, - 0.5313946008682251, - 0.536653995513916, - 0.5410978198051453, - 0.5447292923927307, - 0.5475510358810425, - 0.5495651364326477, - 0.550773024559021, - 0.551175594329834, - 0.550773024559021, - 0.5495651364326477, - 0.5475510358810425, - 0.5447292923927307, - 0.5410978198051453, - 0.536653995513916, - 0.5313946008682251, - 0.6639320850372314, - 0.669046938419342, - 0.6733688116073608, - 0.6769008636474609, - 0.6796454191207886, - 0.6816044449806213, - 0.6827793717384338, - 0.6831709146499634, - 0.6827793717384338, - 0.6816044449806213, - 0.6796454191207886, - 0.6769008636474609, - 0.6733688116073608, - 0.669046938419342, - 0.6639320850372314, - 0.7943447828292847, - 0.7993228435516357, - 0.8035294413566589, - 0.8069673180580139, - 0.8096388578414917, - 0.8115457892417908, - 0.812689483165741, - 0.8130705952644348, - 0.812689483165741, - 0.8115457892417908, - 0.8096388578414917, - 0.8069673180580139, - 0.8035294413566589, - 0.7993228435516357, - 0.7943447828292847, - 0.922731876373291, - 0.9275804162025452, - 0.9316776394844055, - 0.9350262880325317, - 0.9376286268234253, - 0.9394862055778503, - 0.9406002163887024, - 0.9409714937210083, - 0.9406002163887024, - 0.9394862055778503, - 0.9376286268234253, - 0.9350262880325317, - 0.9316776394844055, - 0.9275804162025452, - 0.922731876373291 - ], - "xaxis": "x6", - "y": [ - -1.0517041683197021, - -0.9011380672454834, - -0.7507215738296509, - -0.6004291772842407, - -0.45023566484451294, - -0.3001161217689514, - -0.1500457525253296, - -4.6951704746334144e-8, - 0.1500457525253296, - 0.3001161217689514, - 0.45023566484451294, - 0.6004291772842407, - 0.7507215738296509, - 0.9011380672454834, - 1.0517041683197021, - -1.0436131954193115, - -0.8942207098007202, - -0.7449696063995361, - -0.5958356261253357, - -0.4467952251434326, - -0.2978247404098511, - -0.14890071749687195, - -4.6593470415245974e-8, - 0.14890071749687195, - 0.2978247404098511, - 0.4467952251434326, - 0.5958356261253357, - 0.7449696063995361, - 0.8942207098007202, - 1.0436131954193115, - -1.035841941833496, - -0.8875756859779358, - -0.739443302154541, - -0.5914219617843628, - -0.44348928332328796, - -0.2956227958202362, - -0.14780037105083466, - -4.624920180162917e-8, - 0.14780037105083466, - 0.2956227958202362, - 0.44348928332328796, - 0.5914219617843628, - 0.739443302154541, - 0.8875756859779358, - 1.035841941833496, - -1.028364896774292, - -0.881181538105011, - -0.7341251969337463, - -0.5871741771697998, - -0.4403073489665985, - -0.2935033440589905, - -0.14674119651317596, - -4.591782243323905e-8, - 0.14674119651317596, - 0.2935033440589905, - 0.4403073489665985, - 0.5871741771697998, - 0.7341251969337463, - 0.881181538105011, - 1.028364896774292, - -1.0211600065231323, - -0.8750194311141968, - -0.7289995551109314, - -0.5830798149108887, - -0.4372401535511017, - -0.2914602756500244, - -0.14572015404701233, - -4.559836597195499e-8, - 0.14572015404701233, - 0.2914602756500244, - 0.4372401535511017, - 0.5830798149108887, - 0.7289995551109314, - 0.8750194311141968, - 1.0211600065231323, - -1.0142077207565308, - -0.8690726161003113, - -0.7240525484085083, - -0.5791279077529907, - -0.43427950143814087, - -0.2894880473613739, - -0.14473453164100647, - -4.528998687192143e-8, - 0.14473453164100647, - 0.2894880473613739, - 0.43427950143814087, - 0.5791279077529907, - 0.7240525484085083, - 0.8690726161003113, - 1.0142077207565308, - -1.0074903964996338, - -0.8633262515068054, - -0.7192718982696533, - -0.575308620929718, - -0.4314180314540863, - -0.2875818610191345, - -0.1437818557024002, - -4.4991921299697424e-8, - 0.1437818557024002, - 0.2875818610191345, - 0.4314180314540863, - 0.575308620929718, - 0.7192718982696533, - 0.8633262515068054, - 1.0074903964996338, - -1.0009920597076416, - -0.85776686668396, - -0.7146464586257935, - -0.571613073348999, - -0.4286492168903351, - -0.2857373058795929, - -0.14285998046398163, - -4.470348358154297e-8, - 0.14285998046398163, - 0.2857373058795929, - 0.4286492168903351, - 0.571613073348999, - 0.7146464586257935, - 0.85776686668396, - 1.0009920597076416, - -0.9946988821029663, - -0.8523824214935303, - -0.710166335105896, - -0.5680334568023682, - -0.4259670674800873, - -0.28395044803619385, - -0.14196692407131195, - -4.442406265070531e-8, - 0.14196692407131195, - 0.28395044803619385, - 0.4259670674800873, - 0.5680334568023682, - 0.710166335105896, - 0.8523824214935303, - 0.9946988821029663, - -0.9885978698730469, - -0.847162127494812, - -0.7058224081993103, - -0.5645624399185181, - -0.4233662486076355, - -0.28221774101257324, - -0.1411009132862091, - -4.4153100731136874e-8, - 0.1411009132862091, - 0.28221774101257324, - 0.4233662486076355, - 0.5645624399185181, - 0.7058224081993103, - 0.847162127494812, - 0.9885978698730469, - -0.9826775789260864, - -0.8420960307121277, - -0.7016065716743469, - -0.5611937046051025, - -0.42084193229675293, - -0.28053590655326843, - -0.14026032388210297, - -4.389009333749527e-8, - 0.14026032388210297, - 0.28053590655326843, - 0.42084193229675293, - 0.5611937046051025, - 0.7016065716743469, - 0.8420960307121277, - 0.9826775789260864, - -0.9769273996353149, - -0.8371751308441162, - -0.6975114345550537, - -0.5579211711883545, - -0.4183896481990814, - -0.2789020538330078, - -0.13944369554519653, - -4.363458216971594e-8, - 0.13944369554519653, - 0.2789020538330078, - 0.4183896481990814, - 0.5579211711883545, - 0.6975114345550537, - 0.8371751308441162, - 0.9769273996353149, - -0.9713376760482788, - -0.8323913812637329, - -0.6935300827026367, - -0.5547394752502441, - -0.41600534319877625, - -0.2773134708404541, - -0.13864967226982117, - -4.33861444548711e-8, - 0.13864967226982117, - 0.2773134708404541, - 0.41600534319877625, - 0.5547394752502441, - 0.6935300827026367, - 0.8323913812637329, - 0.9713376760482788, - -0.9658997058868408, - -0.8277371525764465, - -0.6896564364433289, - -0.5516437292098999, - -0.4136853814125061, - -0.2757676839828491, - -0.13787704706192017, - -4.314439649988344e-8, - 0.13787704706192017, - 0.2757676839828491, - 0.4136853814125061, - 0.5516437292098999, - 0.6896564364433289, - 0.8277371525764465, - 0.9658997058868408, - -0.960605263710022, - -0.8232055306434631, - -0.6858847141265869, - -0.5486292839050293, - -0.41142627596855164, - -0.2742624580860138, - -0.1371246874332428, - -4.290899013881244e-8, - 0.1371246874332428, - 0.2742624580860138, - 0.41142627596855164, - 0.5486292839050293, - 0.6858847141265869, - 0.8232055306434631, - 0.960605263710022 - ], - "yaxis": "y6" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -1.1399519443511963, - -1.1295576095581055, - -1.1207996606826782, - -1.1136592626571655, - -1.1081211566925049, - -1.1041736602783203, - -1.1018084287643433, - -1.1010205745697021, - -1.1018084287643433, - -1.1041736602783203, - -1.1081211566925049, - -1.1136592626571655, - -1.1207996606826782, - -1.1295576095581055, - -1.1399519443511963, - -0.9659084677696228, - -0.9560787081718445, - -0.9477939009666443, - -0.9410374164581299, - -0.9357960224151611, - -0.9320594072341919, - -0.9298203587532043, - -0.9290744662284851, - -0.9298203587532043, - -0.9320594072341919, - -0.9357960224151611, - -0.9410374164581299, - -0.9477939009666443, - -0.9560787081718445, - -0.9659084677696228, - -0.7977307438850403, - -0.7884048819541931, - -0.7805426120758057, - -0.7741292715072632, - -0.7691531181335449, - -0.7656052112579346, - -0.7634789943695068, - -0.7627706527709961, - -0.7634789943695068, - -0.7656052112579346, - -0.7691531181335449, - -0.7741292715072632, - -0.7805426120758057, - -0.7884048819541931, - -0.7977307438850403, - -0.6348620057106018, - -0.6259890198707581, - -0.618506669998169, - -0.6124020218849182, - -0.6076647043228149, - -0.6042865514755249, - -0.6022619605064392, - -0.6015874743461609, - -0.6022619605064392, - -0.6042865514755249, - -0.6076647043228149, - -0.6124020218849182, - -0.618506669998169, - -0.6259890198707581, - -0.6348620057106018, - -0.4768286347389221, - -0.46836504340171814, - -0.4612264335155487, - -0.455401211977005, - -0.4508800506591797, - -0.4476557672023773, - -0.44572320580482483, - -0.44507938623428345, - -0.44572320580482483, - -0.4476557672023773, - -0.4508800506591797, - -0.455401211977005, - -0.4612264335155487, - -0.46836504340171814, - -0.4768286347389221, - -0.3232232928276062, - -0.31513190269470215, - -0.30830591917037964, - -0.302734911441803, - -0.2984105050563812, - -0.29532626271247864, - -0.29347753524780273, - -0.29286158084869385, - -0.29347753524780273, - -0.29532626271247864, - -0.2984105050563812, - -0.302734911441803, - -0.30830591917037964, - -0.31513190269470215, - -0.3232232928276062, - -0.17369292676448822, - -0.1659415364265442, - -0.15940122306346893, - -0.15406262874603271, - -0.14991815388202667, - -0.1469619870185852, - -0.14518992602825165, - -0.1445995271205902, - -0.14518992602825165, - -0.1469619870185852, - -0.14991815388202667, - -0.15406262874603271, - -0.15940122306346893, - -0.1659415364265442, - -0.17369292676448822, - -0.02792922779917717, - -0.020489737391471863, - -0.014211617410182953, - -0.009086383506655693, - -0.005107154604047537, - -0.0022686186712235212, - -0.0005670004175044596, - -4.470348358154297e-8, - -0.0005670004175044596, - -0.0022686186712235212, - -0.005107154604047537, - -0.009086383506655693, - -0.014211617410182953, - -0.020489737391471863, - -0.02792922779917717, - 0.1143394261598587, - 0.12149165570735931, - 0.12752819061279297, - 0.13245677947998047, - 0.13628368079662323, - 0.13901375234127045, - 0.1406504213809967, - 0.14119574427604675, - 0.1406504213809967, - 0.13901375234127045, - 0.13628368079662323, - 0.13245677947998047, - 0.12752819061279297, - 0.12149165570735931, - 0.1143394261598587, - 0.2533532381057739, - 0.26023992896080017, - 0.26605308055877686, - 0.27079981565475464, - 0.2744857966899872, - 0.27711552381515503, - 0.2786920964717865, - 0.279217392206192, - 0.2786920964717865, - 0.27711552381515503, - 0.2744857966899872, - 0.27079981565475464, - 0.26605308055877686, - 0.26023992896080017, - 0.2533532381057739, - 0.3893261253833771, - 0.3959665596485138, - 0.40157249569892883, - 0.4061504602432251, - 0.4097056984901428, - 0.41224226355552673, - 0.41376304626464844, - 0.4142697751522064, - 0.41376304626464844, - 0.41224226355552673, - 0.4097056984901428, - 0.4061504602432251, - 0.40157249569892883, - 0.3959665596485138, - 0.3893261253833771, - 0.5224495530128479, - 0.5288609266281128, - 0.5342741012573242, - 0.5386950373649597, - 0.5421285033226013, - 0.5445783734321594, - 0.5460472106933594, - 0.5465366840362549, - 0.5460472106933594, - 0.5445783734321594, - 0.5421285033226013, - 0.5386950373649597, - 0.5342741012573242, - 0.5288609266281128, - 0.5224495530128479, - 0.6528957486152649, - 0.6590934991836548, - 0.6643267869949341, - 0.6686012148857117, - 0.6719211339950562, - 0.6742900013923645, - 0.6757103800773621, - 0.6761837005615234, - 0.6757103800773621, - 0.6742900013923645, - 0.6719211339950562, - 0.6686012148857117, - 0.6643267869949341, - 0.6590934991836548, - 0.6528957486152649, - 0.7808201313018799, - 0.7868181467056274, - 0.7918832302093506, - 0.7960205078125, - 0.79923415184021, - 0.8015273213386536, - 0.802902340888977, - 0.8033605217933655, - 0.802902340888977, - 0.8015273213386536, - 0.79923415184021, - 0.7960205078125, - 0.7918832302093506, - 0.7868181467056274, - 0.7808201313018799, - 0.9063637852668762, - 0.9121745228767395, - 0.917081892490387, - 0.9210906624794006, - 0.9242045879364014, - 0.9264267683029175, - 0.9277592301368713, - 0.9282032251358032, - 0.9277592301368713, - 0.9264267683029175, - 0.9242045879364014, - 0.9210906624794006, - 0.917081892490387, - 0.9121745228767395, - 0.9063637852668762 - ], - "xaxis": "x6", - "y": [ - -1.067612648010254, - -0.9145327210426331, - -0.7617151737213135, - -0.609114408493042, - -0.4566860496997833, - -0.3043862283229828, - -0.1521717756986618, - -4.76160515461288e-8, - 0.1521717756986618, - 0.3043862283229828, - 0.4566860496997833, - 0.609114408493042, - 0.7617151737213135, - 0.9145327210426331, - 1.067612648010254, - -1.0567044019699097, - -0.9052243232727051, - -0.7539870738983154, - -0.6029506921768188, - -0.4520741403102875, - -0.3013167679309845, - -0.15063859522342682, - -4.713644230491809e-8, - 0.15063859522342682, - 0.3013167679309845, - 0.4520741403102875, - 0.6029506921768188, - 0.7539870738983154, - 0.9052243232727051, - 1.0567044019699097, - -1.0463736057281494, - -0.8964056968688965, - -0.7466636896133423, - -0.5971084833145142, - -0.4477020502090454, - -0.29840657114982605, - -0.14918485283851624, - -4.6681673637749554e-8, - 0.14918485283851624, - 0.29840657114982605, - 0.4477020502090454, - 0.5971084833145142, - 0.7466636896133423, - 0.8964056968688965, - 1.0463736057281494, - -1.0365595817565918, - -0.8880258798599243, - -0.7397029995918274, - -0.591554582118988, - -0.4435451030731201, - -0.295639306306839, - -0.1478024274110794, - -4.624920180162917e-8, - 0.1478024274110794, - 0.295639306306839, - 0.4435451030731201, - 0.591554582118988, - 0.7397029995918274, - 0.8880258798599243, - 1.0365595817565918, - -1.027211308479309, - -0.880041778087616, - -0.733069658279419, - -0.586260974407196, - -0.4395824670791626, - -0.2930011451244354, - -0.1464844048023224, - -4.5836873852067583e-8, - 0.1464844048023224, - 0.2930011451244354, - 0.4395824670791626, - 0.586260974407196, - 0.733069658279419, - 0.880041778087616, - 1.027211308479309, - -1.0182851552963257, - -0.8724165558815002, - -0.7267333269119263, - -0.5812035799026489, - -0.43579620122909546, - -0.2904801666736603, - -0.1452248990535736, - -4.544284237795182e-8, - 0.1452248990535736, - 0.2904801666736603, - 0.43579620122909546, - 0.5812035799026489, - 0.7267333269119263, - 0.8724165558815002, - 1.0182851552963257, - -1.0097436904907227, - -0.8651183843612671, - -0.7206677198410034, - -0.5763616561889648, - -0.4321708679199219, - -0.28806620836257935, - -0.1440187692642212, - -4.506550865812642e-8, - 0.1440187692642212, - 0.28806620836257935, - 0.4321708679199219, - 0.5763616561889648, - 0.7206677198410034, - 0.8651183843612671, - 1.0097436904907227, - -1.001554012298584, - -0.8581196665763855, - -0.714850127696991, - -0.5717171430587769, - -0.428693026304245, - -0.28575026988983154, - -0.14286160469055176, - -4.470348358154297e-8, - 0.14286160469055176, - 0.28575026988983154, - 0.428693026304245, - 0.5717171430587769, - 0.714850127696991, - 0.8581196665763855, - 1.001554012298584, - -0.9936879277229309, - -0.8513963222503662, - -0.7092607021331787, - -0.5672543048858643, - -0.42535093426704407, - -0.28352460265159607, - -0.14174948632717133, - -4.435554856740964e-8, - 0.14174948632717133, - 0.28352460265159607, - 0.42535093426704407, - 0.5672543048858643, - 0.7092607021331787, - 0.8513963222503662, - 0.9936879277229309, - -0.9861201643943787, - -0.8449270725250244, - -0.7038818597793579, - -0.5629591345787048, - -0.4221341907978058, - -0.281382292509079, - -0.1406789869070053, - -4.402063069619544e-8, - 0.1406789869070053, - 0.281382292509079, - 0.4221341907978058, - 0.5629591345787048, - 0.7038818597793579, - 0.8449270725250244, - 0.9861201643943787, - -0.9788286685943604, - -0.8386931419372559, - -0.6986980438232422, - -0.5588194131851196, - -0.41903358697891235, - -0.2793172597885132, - -0.13964706659317017, - -4.369778139334812e-8, - 0.13964706659317017, - 0.2793172597885132, - 0.41903358697891235, - 0.5588194131851196, - 0.6986980438232422, - 0.8386931419372559, - 0.9788286685943604, - -0.9717937111854553, - -0.8326778411865234, - -0.6936955451965332, - -0.5548240542411804, - -0.41604098677635193, - -0.27732402086257935, - -0.13865099847316742, - -4.33861444548711e-8, - 0.13865099847316742, - 0.27732402086257935, - 0.41604098677635193, - 0.5548240542411804, - 0.6936955451965332, - 0.8326778411865234, - 0.9717937111854553, - -0.9649975895881653, - -0.826866090297699, - -0.6888618469238281, - -0.550963282585144, - -0.41314896941185, - -0.27539771795272827, - -0.13768835365772247, - -4.308496315275079e-8, - 0.13768835365772247, - 0.27539771795272827, - 0.41314896941185, - 0.550963282585144, - 0.6888618469238281, - 0.826866090297699, - 0.9649975895881653, - -0.9584245681762695, - -0.8212445378303528, - -0.6841859817504883, - -0.5472282767295837, - -0.410351037979126, - -0.27353399991989136, - -0.13675697147846222, - -4.2793558918674535e-8, - 0.13675697147846222, - 0.27353399991989136, - 0.410351037979126, - 0.5472282767295837, - 0.6841859817504883, - 0.8212445378303528, - 0.9584245681762695, - -0.9520604014396667, - -0.8158010244369507, - -0.6796578168869019, - -0.5436110496520996, - -0.4076411724090576, - -0.27172887325286865, - -0.13585485517978668, - -4.251131002774855e-8, - 0.13585485517978668, - 0.27172887325286865, - 0.4076411724090576, - 0.5436110496520996, - 0.6796578168869019, - 0.8158010244369507, - 0.9520604014396667 - ], - "yaxis": "y6" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -1.1780338287353516, - -1.1643582582473755, - -1.1528667211532593, - -1.1435184478759766, - -1.1362805366516113, - -1.131128191947937, - -1.1280436515808105, - -1.1270166635513306, - -1.1280436515808105, - -1.131128191947937, - -1.1362805366516113, - -1.1435184478759766, - -1.1528667211532593, - -1.1643582582473755, - -1.1780338287353516, - -0.9942249655723572, - -0.9815202951431274, - -0.970837414264679, - -0.9621421098709106, - -0.9554068446159363, - -0.9506106972694397, - -0.9477388858795166, - -0.9467825889587402, - -0.9477388858795166, - -0.9506106972694397, - -0.9554068446159363, - -0.9621421098709106, - -0.970837414264679, - -0.9815202951431274, - -0.9942249655723572, - -0.8185867071151733, - -0.8067179322242737, - -0.7967322468757629, - -0.7886006832122803, - -0.7822997570037842, - -0.7778117060661316, - -0.7751238346099854, - -0.7742287516593933, - -0.7751238346099854, - -0.7778117060661316, - -0.7822997570037842, - -0.7886006832122803, - -0.7967322468757629, - -0.8067179322242737, - -0.8185867071151733, - -0.6501156091690063, - -0.6389750242233276, - -0.6295974850654602, - -0.6219581365585327, - -0.6160367727279663, - -0.6118181347846985, - -0.6092911958694458, - -0.6084496378898621, - -0.6092911958694458, - -0.6118181347846985, - -0.6160367727279663, - -0.6219581365585327, - -0.6295974850654602, - -0.6389750242233276, - -0.6501156091690063, - -0.48799851536750793, - -0.4774986207485199, - -0.4686568081378937, - -0.4614514112472534, - -0.45586496591567993, - -0.45188409090042114, - -0.44949930906295776, - -0.4487050175666809, - -0.44949930906295776, - -0.45188409090042114, - -0.45586496591567993, - -0.4614514112472534, - -0.4686568081378937, - -0.4774986207485199, - -0.48799851536750793, - -0.33156511187553406, - -0.321633905172348, - -0.3132680058479309, - -0.30644842982292175, - -0.30115988850593567, - -0.2973906695842743, - -0.29513242840766907, - -0.294380247592926, - -0.29513242840766907, - -0.2973906695842743, - -0.30115988850593567, - -0.30644842982292175, - -0.3132680058479309, - -0.321633905172348, - -0.33156511187553406, - -0.1802554428577423, - -0.1708327829837799, - -0.16289278864860535, - -0.15641874074935913, - -0.15139715373516083, - -0.14781762659549713, - -0.14567284286022186, - -0.14495839178562164, - -0.14567284286022186, - -0.14781762659549713, - -0.15139715373516083, - -0.15641874074935913, - -0.16289278864860535, - -0.1708327829837799, - -0.1802554428577423, - -0.033596064895391464, - -0.024631138890981674, - -0.017074789851903915, - -0.010912158526480198, - -0.006131260190159082, - -0.0027228626422584057, - -0.0006804245640523732, - -4.470348358154297e-8, - -0.0006804245640523732, - -0.0027228626422584057, - -0.006131260190159082, - -0.010912158526480198, - -0.017074789851903915, - -0.024631138890981674, - -0.033596064895391464, - 0.10881805419921875, - 0.11736855655908585, - 0.1245773509144783, - 0.13045771420001984, - 0.13502036035060883, - 0.13827353715896606, - 0.14022311568260193, - 0.14087259769439697, - 0.14022311568260193, - 0.13827353715896606, - 0.13502036035060883, - 0.13045771420001984, - 0.1245773509144783, - 0.11736855655908585, - 0.10881805419921875, - 0.24733607470989227, - 0.2555094361305237, - 0.2624017596244812, - 0.2680249512195587, - 0.2723886966705322, - 0.2755003869533539, - 0.2773653268814087, - 0.277986615896225, - 0.2773653268814087, - 0.2755003869533539, - 0.2723886966705322, - 0.2680249512195587, - 0.2624017596244812, - 0.2555094361305237, - 0.24733607470989227, - 0.38226181268692017, - 0.39009031653404236, - 0.3966931104660034, - 0.4020810127258301, - 0.40626266598701477, - 0.4092448055744171, - 0.41103219985961914, - 0.4116276800632477, - 0.41103219985961914, - 0.4092448055744171, - 0.40626266598701477, - 0.4020810127258301, - 0.3966931104660034, - 0.39009031653404236, - 0.38226181268692017, - 0.5138614773750305, - 0.5213733315467834, - 0.5277102589607239, - 0.5328818559646606, - 0.5368961691856384, - 0.5397592186927795, - 0.5414752960205078, - 0.5420470237731934, - 0.5414752960205078, - 0.5397592186927795, - 0.5368961691856384, - 0.5328818559646606, - 0.5277102589607239, - 0.5213733315467834, - 0.5138614773750305, - 0.6423699855804443, - 0.6495900750160217, - 0.6556817889213562, - 0.6606539487838745, - 0.6645138263702393, - 0.6672669649124146, - 0.6689172983169556, - 0.6694670915603638, - 0.6689172983169556, - 0.6672669649124146, - 0.6645138263702393, - 0.6606539487838745, - 0.6556817889213562, - 0.6495900750160217, - 0.6423699855804443, - 0.7679957747459412, - 0.7749459743499756, - 0.7808108329772949, - 0.7855983972549438, - 0.789315402507782, - 0.7919667363166809, - 0.7935560941696167, - 0.794085681438446, - 0.7935560941696167, - 0.7919667363166809, - 0.789315402507782, - 0.7855983972549438, - 0.7808108329772949, - 0.7749459743499756, - 0.7679957747459412, - 0.890924870967865, - 0.897624671459198, - 0.9032789468765259, - 0.9078952074050903, - 0.9114794731140137, - 0.9140362739562988, - 0.9155690670013428, - 0.9160798192024231, - 0.9155690670013428, - 0.9140362739562988, - 0.9114794731140137, - 0.9078952074050903, - 0.9032789468765259, - 0.897624671459198, - 0.890924870967865 - ], - "xaxis": "x6", - "y": [ - -1.0852291584014893, - -0.9292769432067871, - -0.7737548351287842, - -0.6185861825942993, - -0.4636974334716797, - -0.30901676416397095, - -0.15447400510311127, - -4.8335117242004344e-8, - 0.15447400510311127, - 0.30901676416397095, - 0.4636974334716797, - 0.6185861825942993, - 0.7737548351287842, - 0.9292769432067871, - 1.0852291584014893, - -1.0709868669509888, - -0.9171567559242249, - -0.7637152671813965, - -0.6105937361717224, - -0.4577257037162781, - -0.30504629015922546, - -0.15249194204807281, - -4.77152113376178e-8, - 0.15249194204807281, - 0.30504629015922546, - 0.4577257037162781, - 0.6105937361717224, - 0.7637152671813965, - 0.9171567559242249, - 1.0709868669509888, - -1.057722568511963, - -0.9058611392974854, - -0.7543535828590393, - -0.6031374931335449, - -0.45215266942977905, - -0.3013399839401245, - -0.15064148604869843, - -4.713644230491809e-8, - 0.15064148604869843, - 0.3013399839401245, - 0.45215266942977905, - 0.6031374931335449, - 0.7543535828590393, - 0.9058611392974854, - 1.057722568511963, - -1.0453046560287476, - -0.8952803015708923, - -0.7455800771713257, - -0.5961471199989319, - -0.4469262659549713, - -0.2978634834289551, - -0.14890556037425995, - -4.6593470415245974e-8, - 0.14890556037425995, - 0.2978634834289551, - 0.4469262659549713, - 0.5961471199989319, - 0.7455800771713257, - 0.8952803015708923, - 1.0453046560287476, - -1.0336272716522217, - -0.8853256702423096, - -0.7373224496841431, - -0.5895655751228333, - -0.44200435280799866, - -0.29458895325660706, - -0.1472702920436859, - -4.6081964910626994e-8, - 0.1472702920436859, - 0.29458895325660706, - 0.44200435280799866, - 0.5895655751228333, - 0.7373224496841431, - 0.8853256702423096, - 1.0336272716522217, - -1.022603988647461, - -0.8759246468544006, - -0.7295214533805847, - -0.5833462476730347, - -0.4373522698879242, - -0.2914934456348419, - -0.14572429656982422, - -4.559836597195499e-8, - 0.14572429656982422, - 0.2914934456348419, - 0.4373522698879242, - 0.5833462476730347, - 0.7295214533805847, - 0.8759246468544006, - 1.022603988647461, - -1.0121631622314453, - -0.8670172095298767, - -0.7221276760101318, - -0.577450156211853, - -0.43294113874435425, - -0.28855785727500916, - -0.1442580670118332, - -4.5139710636021846e-8, - 0.1442580670118332, - 0.28855785727500916, - 0.43294113874435425, - 0.577450156211853, - 0.7221276760101318, - 0.8670172095298767, - 1.0121631622314453, - -1.0022448301315308, - -0.8585526943206787, - -0.7150997519493103, - -0.5718445181846619, - -0.42874664068222046, - -0.2857661545276642, - -0.14286358654499054, - -4.470348358154297e-8, - 0.14286358654499054, - 0.2857661545276642, - 0.42874664068222046, - 0.5718445181846619, - 0.7150997519493103, - 0.8585526943206787, - 1.0022448301315308, - -0.9927977323532104, - -0.8504881858825684, - -0.7084023356437683, - -0.5665015578269958, - -0.42474809288978577, - -0.2831045389175415, - -0.1415340155363083, - -4.428755673302476e-8, - 0.1415340155363083, - 0.2831045389175415, - 0.42474809288978577, - 0.5665015578269958, - 0.7084023356437683, - 0.8504881858825684, - 0.9927977323532104, - -0.9837784171104431, - -0.8427868485450745, - -0.7020052075386047, - -0.5613973140716553, - -0.42092767357826233, - -0.28056129813194275, - -0.14026348292827606, - -4.389009333749527e-8, - 0.14026348292827606, - 0.28056129813194275, - 0.42092767357826233, - 0.5613973140716553, - 0.7020052075386047, - 0.8427868485450745, - 0.9837784171104431, - -0.9751491546630859, - -0.8354169726371765, - -0.695882260799408, - -0.5565110445022583, - -0.4172699749469757, - -0.27812615036964417, - -0.13904692232608795, - -4.350950177922641e-8, - 0.13904692232608795, - 0.27812615036964417, - 0.4172699749469757, - 0.5565110445022583, - 0.695882260799408, - 0.8354169726371765, - 0.9751491546630859, - -0.966877281665802, - -0.828350841999054, - -0.690010666847229, - -0.551824688911438, - -0.41376158595085144, - -0.2757902443408966, - -0.1378798633813858, - -4.314439649988344e-8, - 0.1378798633813858, - 0.2757902443408966, - 0.41376158595085144, - 0.551824688911438, - 0.690010666847229, - 0.828350841999054, - 0.966877281665802, - -0.95893394947052, - -0.8215641975402832, - -0.6843704581260681, - -0.5473225116729736, - -0.410390704870224, - -0.2735457420349121, - -0.13675843179225922, - -4.2793558918674535e-8, - 0.13675843179225922, - 0.2735457420349121, - 0.410390704870224, - 0.5473225116729736, - 0.6843704581260681, - 0.8215641975402832, - 0.95893394947052, - -0.9512940645217896, - -0.8150356411933899, - -0.678943932056427, - -0.5429903864860535, - -0.4071469008922577, - -0.27138569951057434, - -0.13567917048931122, - -4.2455909010641335e-8, - 0.13567917048931122, - 0.27138569951057434, - 0.4071469008922577, - 0.5429903864860535, - 0.678943932056427, - 0.8150356411933899, - 0.9512940645217896, - -0.9439350366592407, - -0.8087461590766907, - -0.6737155318260193, - -0.538815975189209, - -0.40402093529701233, - -0.2693040370941162, - -0.13463900983333588, - -4.2130491095804246e-8, - 0.13463900983333588, - 0.2693040370941162, - 0.40402093529701233, - 0.538815975189209, - 0.6737155318260193, - 0.8087461590766907, - 0.9439350366592407 - ], - "yaxis": "y6" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -1.221579909324646, - -1.2038630247116089, - -1.1890349388122559, - -1.177011489868164, - -1.1677260398864746, - -1.1611285209655762, - -1.1571837663650513, - -1.1558711528778076, - -1.1571837663650513, - -1.1611285209655762, - -1.1677260398864746, - -1.177011489868164, - -1.1890349388122559, - -1.2038630247116089, - -1.221579909324646, - -1.025842308998108, - -1.0097432136535645, - -0.9962506890296936, - -0.9852979779243469, - -0.9768320322036743, - -0.970812976360321, - -0.9672126173973083, - -0.9660143256187439, - -0.9672126173973083, - -0.970812976360321, - -0.9768320322036743, - -0.9852979779243469, - -0.9962506890296936, - -1.0097432136535645, - -1.025842308998108, - -0.8414079546928406, - -0.8266409039497375, - -0.8142513632774353, - -0.8041850924491882, - -0.7963990569114685, - -0.7908604741096497, - -0.7875463962554932, - -0.7864432334899902, - -0.7875463962554932, - -0.7908604741096497, - -0.7963990569114685, - -0.8041850924491882, - -0.8142513632774353, - -0.8266409039497375, - -0.8414079546928406, - -0.6665142774581909, - -0.6528658270835876, - -0.6414047479629517, - -0.6320862174034119, - -0.6248744130134583, - -0.619742214679718, - -0.6166704297065735, - -0.6156477928161621, - -0.6166704297065735, - -0.619742214679718, - -0.6248744130134583, - -0.6320862174034119, - -0.6414047479629517, - -0.6528658270835876, - -0.6665142774581909, - -0.49981483817100525, - -0.4871208369731903, - -0.4764534533023834, - -0.46777504682540894, - -0.46105557680130005, - -0.45627206563949585, - -0.4534083604812622, - -0.4524548649787903, - -0.4534083604812622, - -0.45627206563949585, - -0.46105557680130005, - -0.46777504682540894, - -0.4764534533023834, - -0.4871208369731903, - -0.49981483817100525, - -0.34025290608406067, - -0.3283839225769043, - -0.31840381026268005, - -0.3102804720401764, - -0.3039883077144623, - -0.29950767755508423, - -0.29682478308677673, - -0.2959313988685608, - -0.29682478308677673, - -0.29950767755508423, - -0.3039883077144623, - -0.3102804720401764, - -0.31840381026268005, - -0.3283839225769043, - -0.34025290608406067, - -0.1869811713695526, - -0.17583337426185608, - -0.16645477712154388, - -0.1588178426027298, - -0.15290042757987976, - -0.14868561923503876, - -0.14616148173809052, - -0.14532089233398438, - -0.14616148173809052, - -0.14868561923503876, - -0.15290042757987976, - -0.1588178426027298, - -0.16645477712154388, - -0.17583337426185608, - -0.1869811713695526, - -0.039308082312345505, - -0.028796635568141937, - -0.01994946226477623, - -0.012742607854306698, - -0.007156835403293371, - -0.003177395323291421, - -0.000793866696767509, - -4.470348358154297e-8, - -0.000793866696767509, - -0.003177395323291421, - -0.007156835403293371, - -0.012742607854306698, - -0.01994946226477623, - -0.028796635568141937, - -0.039308082312345505, - 0.10333999991416931, - 0.11328533291816711, - 0.1216592788696289, - 0.12848281860351562, - 0.1337728202342987, - 0.137542262673378, - 0.1398002952337265, - 0.14055235683918, - 0.1398002952337265, - 0.137542262673378, - 0.1337728202342987, - 0.12848281860351562, - 0.1216592788696289, - 0.11328533291816711, - 0.10333999991416931, - 0.2414446771144867, - 0.2508828043937683, - 0.2588323950767517, - 0.26531192660331726, - 0.2703363597393036, - 0.27391716837882996, - 0.27606239914894104, - 0.2767769694328308, - 0.27606239914894104, - 0.27391716837882996, - 0.2703363597393036, - 0.26531192660331726, - 0.2588323950767517, - 0.2508828043937683, - 0.2414446771144867, - 0.37541520595550537, - 0.3843960165977478, - 0.3919626772403717, - 0.3981316387653351, - 0.40291619300842285, - 0.4063265025615692, - 0.40836983919143677, - 0.40905046463012695, - 0.40836983919143677, - 0.4063265025615692, - 0.40291619300842285, - 0.3981316387653351, - 0.3919626772403717, - 0.3843960165977478, - 0.37541520595550537, - 0.5056028366088867, - 0.5141690373420715, - 0.5213882923126221, - 0.5272753238677979, - 0.5318419933319092, - 0.5350974798202515, - 0.5370481610298157, - 0.537697970867157, - 0.5370481610298157, - 0.5350974798202515, - 0.5318419933319092, - 0.5272753238677979, - 0.5213882923126221, - 0.5141690373420715, - 0.5056028366088867, - 0.6323117613792419, - 0.6405001878738403, - 0.6474027037620544, - 0.6530325412750244, - 0.6574004292488098, - 0.6605145335197449, - 0.6623806357383728, - 0.6630023121833801, - 0.6623806357383728, - 0.6605145335197449, - 0.6574004292488098, - 0.6530325412750244, - 0.6474027037620544, - 0.6405001878738403, - 0.6323117613792419, - 0.7558072209358215, - 0.7636498808860779, - 0.7702623605728149, - 0.7756566405296326, - 0.7798423171043396, - 0.7828267812728882, - 0.7846153974533081, - 0.7852112650871277, - 0.7846153974533081, - 0.7828267812728882, - 0.7798423171043396, - 0.7756566405296326, - 0.7702623605728149, - 0.7636498808860779, - 0.7558072209358215, - 0.8763225674629211, - 0.8838474750518799, - 0.8901933431625366, - 0.8953708410263062, - 0.8993889093399048, - 0.9022541642189026, - 0.9039713740348816, - 0.9045434594154358, - 0.9039713740348816, - 0.9022541642189026, - 0.8993889093399048, - 0.8953708410263062, - 0.8901933431625366, - 0.8838474750518799, - 0.8763225674629211 - ], - "xaxis": "x6", - "y": [ - -1.1049867868423462, - -0.9456915259361267, - -0.7870748043060303, - -0.6290116310119629, - -0.4713839590549469, - -0.3140787184238434, - -0.15698638558387756, - -4.911936812845852e-8, - 0.15698638558387756, - 0.3140787184238434, - 0.4713839590549469, - 0.6290116310119629, - 0.7870748043060303, - 0.9456915259361267, - 1.1049867868423462, - -1.0867058038711548, - -0.9301964044570923, - -0.7742818593978882, - -0.6188539862632751, - -0.4638097286224365, - -0.30904990434646606, - -0.15447813272476196, - -4.8335117242004344e-8, - 0.15447813272476196, - 0.30904990434646606, - 0.4638097286224365, - 0.6188539862632751, - 0.7742818593978882, - 0.9301964044570923, - 1.0867058038711548, - -1.0700255632400513, - -0.9160389304161072, - -0.7625804543495178, - -0.6095548272132874, - -0.456870973110199, - -0.30444082617759705, - -0.1521785855293274, - -4.76160515461288e-8, - 0.1521785855293274, - 0.30444082617759705, - 0.456870973110199, - 0.6095548272132874, - 0.7625804543495178, - 0.9160389304161072, - 1.0700255632400513, - -1.0546743869781494, - -0.9029955863952637, - -0.7517903447151184, - -0.6009737849235535, - -0.4504645764827728, - -0.3001837730407715, - -0.1500541865825653, - -4.6951704746334144e-8, - 0.1500541865825653, - 0.3001837730407715, - 0.4504645764827728, - 0.6009737849235535, - 0.7517903447151184, - 0.9029955863952637, - 1.0546743869781494, - -1.0404468774795532, - -0.8908964395523071, - -0.7417740225791931, - -0.593003511428833, - -0.4445115327835083, - -0.29622671008110046, - -0.14807912707328796, - -4.633402284071053e-8, - 0.14807912707328796, - 0.29622671008110046, - 0.4445115327835083, - 0.593003511428833, - 0.7417740225791931, - 0.8908964395523071, - 1.0404468774795532, - -1.0271835327148438, - -0.8796089291572571, - -0.7324240207672119, - -0.5855597853660583, - -0.43894973397254944, - -0.29252874851226807, - -0.14623309671878815, - -4.5756660682627626e-8, - 0.14623309671878815, - 0.29252874851226807, - 0.43894973397254944, - 0.5855597853660583, - 0.7324240207672119, - 0.8796089291572571, - 1.0271835327148438, - -1.0147576332092285, - -0.8690276145935059, - -0.7236545085906982, - -0.5785753726959229, - -0.4337294101715088, - -0.28905704617500305, - -0.1444997936487198, - -4.5214530786097384e-8, - 0.1444997936487198, - 0.28905704617500305, - 0.4337294101715088, - 0.5785753726959229, - 0.7236545085906982, - 0.8690276145935059, - 1.0147576332092285, - -1.0030666589736938, - -0.8590669631958008, - -0.7153957486152649, - -0.5719954371452332, - -0.42881008982658386, - -0.28578490018844604, - -0.14286592602729797, - -4.470348358154297e-8, - 0.14286592602729797, - 0.28578490018844604, - 0.42881008982658386, - 0.5719954371452332, - 0.7153957486152649, - 0.8590669631958008, - 1.0030666589736938, - -0.9920265674591064, - -0.8496564626693726, - -0.7075902223587036, - -0.56577467918396, - -0.4241582155227661, - -0.2826901376247406, - -0.14132048189640045, - -4.422007648940962e-8, - 0.14132048189640045, - 0.2826901376247406, - 0.4241582155227661, - 0.56577467918396, - 0.7075902223587036, - 0.8496564626693726, - 0.9920265674591064, - -0.9815671443939209, - -0.8407374620437622, - -0.7001899480819702, - -0.5598753094673157, - -0.4197457730770111, - -0.2797541916370392, - -0.13985422253608704, - -4.3761428258903834e-8, - 0.13985422253608704, - 0.2797541916370392, - 0.4197457730770111, - 0.5598753094673157, - 0.7001899480819702, - 0.8407374620437622, - 0.9815671443939209, - -0.9716294407844543, - -0.8322603702545166, - -0.6931542158126831, - -0.5542652606964111, - -0.4155489504337311, - -0.27696141600608826, - -0.13845933973789215, - -4.332509462301459e-8, - 0.13845933973789215, - 0.27696141600608826, - 0.4155489504337311, - 0.5542652606964111, - 0.6931542158126831, - 0.8322603702545166, - 0.9716294407844543, - -0.9621632695198059, - -0.8241830468177795, - -0.6864485740661621, - -0.548917293548584, - -0.41154754161834717, - -0.2742983400821686, - -0.13712915778160095, - -4.290899013881244e-8, - 0.13712915778160095, - 0.2742983400821686, - 0.41154754161834717, - 0.548917293548584, - 0.6864485740661621, - 0.8241830468177795, - 0.9621632695198059, - -0.9531254768371582, - -0.8164690732955933, - -0.6800431609153748, - -0.5438077449798584, - -0.407723993062973, - -0.2717534005641937, - -0.13585790991783142, - -4.251131002774855e-8, - 0.13585790991783142, - 0.2717534005641937, - 0.407723993062973, - 0.5438077449798584, - 0.6800431609153748, - 0.8164690732955933, - 0.9531254768371582, - -0.9444788098335266, - -0.8090871572494507, - -0.6739121079444885, - -0.5389163494110107, - -0.4040631949901581, - -0.26931652426719666, - -0.13464057445526123, - -4.2130491095804246e-8, - 0.13464057445526123, - 0.26931652426719666, - 0.4040631949901581, - 0.5389163494110107, - 0.6739121079444885, - 0.8090871572494507, - 0.9444788098335266, - -0.9361907243728638, - -0.8020097613334656, - -0.6680329442024231, - -0.5342251062393188, - -0.40055182576179504, - -0.2669789493083954, - -0.13347278535366058, - -4.176516199549951e-8, - 0.13347278535366058, - 0.2669789493083954, - 0.40055182576179504, - 0.5342251062393188, - 0.6680329442024231, - 0.8020097613334656, - 0.9361907243728638 - ], - "yaxis": "y6" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -1.2723534107208252, - -1.2494834661483765, - -1.2304571866989136, - -1.215103268623352, - -1.2032899856567383, - -1.1949193477630615, - -1.1899232864379883, - -1.1882623434066772, - -1.1899232864379883, - -1.1949193477630615, - -1.2032899856567383, - -1.215103268623352, - -1.2304571866989136, - -1.2494834661483765, - -1.2723534107208252, - -1.0615968704223633, - -1.041399359703064, - -1.0245509147644043, - -1.0109251737594604, - -1.0004239082336426, - -0.9929736852645874, - -0.9885236024856567, - -0.9870434999465942, - -0.9885236024856567, - -0.9929736852645874, - -1.0004239082336426, - -1.0109251737594604, - -1.0245509147644043, - -1.041399359703064, - -1.0615968704223633, - -0.8665884137153625, - -0.8484700918197632, - -0.8333255648612976, - -0.8210581541061401, - -0.8115919828414917, - -0.8048699498176575, - -0.8008524179458618, - -0.7995157837867737, - -0.8008524179458618, - -0.8048699498176575, - -0.8115919828414917, - -0.8210581541061401, - -0.8333255648612976, - -0.8484700918197632, - -0.8665884137153625, - -0.6842405200004578, - -0.6677923202514648, - -0.6540226936340332, - -0.6428551077842712, - -0.6342292428016663, - -0.6280996203422546, - -0.6244344115257263, - -0.6232147216796875, - -0.6244344115257263, - -0.6280996203422546, - -0.6342292428016663, - -0.6428551077842712, - -0.6540226936340332, - -0.6677923202514648, - -0.6842405200004578, - -0.5123602151870728, - -0.49728715419769287, - -0.4846533238887787, - -0.47439679503440857, - -0.46646857261657715, - -0.46083149313926697, - -0.4574595093727112, - -0.45633724331855774, - -0.4574595093727112, - -0.46083149313926697, - -0.46646857261657715, - -0.47439679503440857, - -0.4846533238887787, - -0.49728715419769287, - -0.5123602151870728, - -0.3493231236934662, - -0.33540451526641846, - -0.3237268030643463, - -0.31423890590667725, - -0.3069002032279968, - -0.3016798496246338, - -0.29855620861053467, - -0.297516405582428, - -0.29855620861053467, - -0.3016798496246338, - -0.3069002032279968, - -0.31423890590667725, - -0.3237268030643463, - -0.33540451526641846, - -0.3493231236934662, - -0.19388626515865326, - -0.18095232546329498, - -0.1700918972492218, - -0.1612621396780014, - -0.15442895889282227, - -0.14956632256507874, - -0.14665597677230835, - -0.145687073469162, - -0.14665597677230835, - -0.14956632256507874, - -0.15442895889282227, - -0.1612621396780014, - -0.1700918972492218, - -0.18095232546329498, - -0.19388626515865326, - -0.045073673129081726, - -0.032990582287311554, - -0.022837670519948006, - -0.014578539878129959, - -0.008184130303561687, - -0.0036322653759270906, - -0.0009073297260329127, - -4.470348358154297e-8, - -0.0009073297260329127, - -0.0036322653759270906, - -0.008184130303561687, - -0.014578539878129959, - -0.022837670519948006, - -0.032990582287311554, - -0.045073673129081726, - 0.09789831191301346, - 0.10923799872398376, - 0.11877178400754929, - 0.1265309751033783, - 0.13254056870937347, - 0.13681970536708832, - 0.13938184082508087, - 0.14023499190807343, - 0.13938184082508087, - 0.13681970536708832, - 0.13254056870937347, - 0.1265309751033783, - 0.11877178400754929, - 0.10923799872398376, - 0.09789831191301346, - 0.23566964268684387, - 0.2463536262512207, - 0.25534066557884216, - 0.26265788078308105, - 0.268326997756958, - 0.27236464619636536, - 0.27478256821632385, - 0.275587797164917, - 0.27478256821632385, - 0.27236464619636536, - 0.268326997756958, - 0.26265788078308105, - 0.25534066557884216, - 0.2463536262512207, - 0.23566964268684387, - 0.36877116560935974, - 0.3788721561431885, - 0.3873724937438965, - 0.39429590106010437, - 0.3996613919734955, - 0.40348362922668457, - 0.405772864818573, - 0.406535267829895, - 0.405772864818573, - 0.40348362922668457, - 0.3996613919734955, - 0.39429590106010437, - 0.3873724937438965, - 0.3788721561431885, - 0.36877116560935974, - 0.4976491928100586, - 0.5072280764579773, - 0.5152921080589294, - 0.5218622088432312, - 0.5269551873207092, - 0.5305839776992798, - 0.532757580280304, - 0.5334815382957458, - 0.532757580280304, - 0.5305839776992798, - 0.5269551873207092, - 0.5218622088432312, - 0.5152921080589294, - 0.5072280764579773, - 0.4976491928100586, - 0.622683048248291, - 0.6317914724349976, - 0.6394620537757874, - 0.6457132697105408, - 0.6505601406097412, - 0.6540140509605408, - 0.6560832262039185, - 0.6567723751068115, - 0.6560832262039185, - 0.6540140509605408, - 0.6505601406097412, - 0.6457132697105408, - 0.6394620537757874, - 0.6317914724349976, - 0.622683048248291, - 0.7441983819007874, - 0.7528804540634155, - 0.7601941823959351, - 0.766156017780304, - 0.7707794308662415, - 0.7740746736526489, - 0.7760488986968994, - 0.7767064571380615, - 0.7760488986968994, - 0.7740746736526489, - 0.7707794308662415, - 0.766156017780304, - 0.7601941823959351, - 0.7528804540634155, - 0.7441983819007874, - 0.8624773621559143, - 0.8707711100578308, - 0.877759575843811, - 0.8834576606750488, - 0.8878772258758545, - 0.891027569770813, - 0.8929151296615601, - 0.8935438990592957, - 0.8929151296615601, - 0.891027569770813, - 0.8878772258758545, - 0.8834576606750488, - 0.877759575843811, - 0.8707711100578308, - 0.8624773621559143 - ], - "xaxis": "x6", - "y": [ - -1.1275204420089722, - -0.9642359018325806, - -0.8020040988922119, - -0.640621542930603, - -0.4799012243747711, - -0.319667786359787, - -0.15975449979305267, - -4.9982837424522586e-8, - 0.15975449979305267, - 0.319667786359787, - 0.4799012243747711, - 0.640621542930603, - 0.8020040988922119, - 0.9642359018325806, - 1.1275204420089722, - -1.104196548461914, - -0.9445816874504089, - -0.7858544588088989, - -0.6278468370437622, - -0.47040271759033203, - -0.31337401270866394, - -0.15661902725696564, - -4.9002856883362256e-8, - 0.15661902725696564, - 0.31337401270866394, - 0.47040271759033203, - 0.6278468370437622, - 0.7858544588088989, - 0.9445816874504089, - 1.104196548461914, - -1.0834589004516602, - -0.9270614385604858, - -0.7714279890060425, - -0.6164164543151855, - -0.46189308166503906, - -0.3077305257320404, - -0.15380607545375824, - -4.812352827343602e-8, - 0.15380607545375824, - 0.3077305257320404, - 0.46189308166503906, - 0.6164164543151855, - 0.7714279890060425, - 0.9270614385604858, - 1.0834589004516602, - -1.0647602081298828, - -0.9112330675125122, - -0.7583740949630737, - -0.6060604453086853, - -0.45417600870132446, - -0.30260926485061646, - -0.15125241875648499, - -4.732514824468126e-8, - 0.15125241875648499, - 0.30260926485061646, - 0.45417600870132446, - 0.6060604453086853, - 0.7583740949630737, - 0.9112330675125122, - 1.0647602081298828, - -1.0477162599563599, - -0.8967836499214172, - -0.7464426755905151, - -0.596585750579834, - -0.4471103250980377, - -0.29791781306266785, - -0.14891234040260315, - -4.6593470415245974e-8, - 0.14891234040260315, - 0.29791781306266785, - 0.4471103250980377, - 0.596585750579834, - 0.7464426755905151, - 0.8967836499214172, - 1.0477162599563599, - -1.0320459604263306, - -0.883482813835144, - -0.7354487776756287, - -0.5878485441207886, - -0.4405907392501831, - -0.2935870885848999, - -0.14675164222717285, - -4.591782243323905e-8, - 0.14675164222717285, - 0.2935870885848999, - 0.4405907392501831, - 0.5878485441207886, - 0.7354487776756287, - 0.883482813835144, - 1.0320459604263306, - -1.0175365209579468, - -0.8711550831794739, - -0.7252510190010071, - -0.5797387361526489, - -0.43453627824783325, - -0.28956395387649536, - -0.14474399387836456, - -4.528998687192143e-8, - 0.14474399387836456, - 0.28956395387649536, - 0.43453627824783325, - 0.5797387361526489, - 0.7252510190010071, - 0.8711550831794739, - 1.0175365209579468, - -1.0040227174758911, - -0.8596638441085815, - -0.7157387137413025, - -0.5721700191497803, - -0.4288834035396576, - -0.2858065366744995, - -0.14286862313747406, - -4.470348358154297e-8, - 0.14286862313747406, - 0.2858065366744995, - 0.4288834035396576, - 0.5721700191497803, - 0.7157387137413025, - 0.8596638441085815, - 1.0040227174758911, - -0.9913730025291443, - -0.8489000201225281, - -0.706823468208313, - -0.5650730729103088, - -0.4235810339450836, - -0.28228121995925903, - -0.14110884070396423, - -4.4153100731136874e-8, - 0.14110884070396423, - 0.28228121995925903, - 0.4235810339450836, - 0.5650730729103088, - 0.706823468208313, - 0.8489000201225281, - 0.9913730025291443, - -0.9794813990592957, - -0.8387752771377563, - -0.6984333992004395, - -0.5583915710449219, - -0.4185875356197357, - -0.27896058559417725, - -0.13945099711418152, - -4.363458216971594e-8, - 0.13945099711418152, - 0.27896058559417725, - 0.4185875356197357, - 0.5583915710449219, - 0.6984333992004395, - 0.8387752771377563, - 0.9794813990592957, - -0.9682607650756836, - -0.8292168974876404, - -0.6905093193054199, - -0.5520789623260498, - -0.4138685464859009, - -0.27582186460494995, - -0.13788381218910217, - -4.314439649988344e-8, - 0.13788381218910217, - 0.27582186460494995, - 0.4138685464859009, - 0.5520789623260498, - 0.6905093193054199, - 0.8292168974876404, - 0.9682607650756836, - -0.9576383829116821, - -0.820164144039154, - -0.683001697063446, - -0.5460963249206543, - -0.40939515829086304, - -0.2728460133075714, - -0.1363978236913681, - -4.2679591416572293e-8, - 0.1363978236913681, - 0.2728460133075714, - 0.40939515829086304, - 0.5460963249206543, - 0.683001697063446, - 0.820164144039154, - 0.9576383829116821, - -0.9475533366203308, - -0.8115659356117249, - -0.6758686304092407, - -0.5404106974601746, - -0.40514296293258667, - -0.27001693844795227, - -0.13498498499393463, - -4.223765870392526e-8, - 0.13498498499393463, - 0.27001693844795227, - 0.40514296293258667, - 0.5404106974601746, - 0.6758686304092407, - 0.8115659356117249, - 0.9475533366203308, - -0.9379534721374512, - -0.8033785820007324, - -0.6690744757652283, - -0.5349939465522766, - -0.40109115839004517, - -0.26732081174850464, - -0.1336384415626526, - -4.1816452522880354e-8, - 0.1336384415626526, - 0.26732081174850464, - 0.40109115839004517, - 0.5349939465522766, - 0.6690744757652283, - 0.8033785820007324, - 0.9379534721374512, - -0.9287943243980408, - -0.7955646514892578, - -0.6625885367393494, - -0.5298218727111816, - -0.39722171425819397, - -0.2647457420825958, - -0.13235227763652802, - -4.141412190961091e-8, - 0.13235227763652802, - 0.2647457420825958, - 0.39722171425819397, - 0.5298218727111816, - 0.6625885367393494, - 0.7955646514892578, - 0.9287943243980408 - ], - "yaxis": "y6" - }, - { - "marker": { - "size": 10 - }, - "mode": "markers", - "type": "scatter", - "visible": false, - "x": [ - -1.3331646919250488, - -1.3033980131149292, - -1.2788646221160889, - -1.2592114210128784, - -1.244174599647522, - -1.233562707901001, - -1.2272456884384155, - -1.2251482009887695, - -1.2272456884384155, - -1.233562707901001, - -1.244174599647522, - -1.2592114210128784, - -1.2788646221160889, - -1.3033980131149292, - -1.3331646919250488, - -1.1026947498321533, - -1.0774047374725342, - -1.0564481019973755, - -1.039589524269104, - -1.0266495943069458, - -1.0174964666366577, - -1.0120396614074707, - -1.0102264881134033, - -1.0120396614074707, - -1.0174964666366577, - -1.0266495943069458, - -1.039589524269104, - -1.0564481019973755, - -1.0774047374725342, - -1.1026947498321533, - -0.8946552872657776, - -0.8725926280021667, - -0.8542438745498657, - -0.8394407033920288, - -0.82805335521698, - -0.8199855089187622, - -0.8151708245277405, - -0.8135702013969421, - -0.8151708245277405, - -0.8199855089187622, - -0.82805335521698, - -0.8394407033920288, - -0.8542438745498657, - -0.8725926280021667, - -0.8946552872657776, - -0.7035245895385742, - -0.683915913105011, - -0.6675654053688049, - -0.6543468236923218, - -0.6441620588302612, - -0.6369378566741943, - -0.6326232552528381, - -0.6311883330345154, - -0.6326232552528381, - -0.6369378566741943, - -0.6441620588302612, - -0.6543468236923218, - -0.6675654053688049, - -0.683915913105011, - -0.7035245895385742, - -0.5257338285446167, - -0.5080630779266357, - -0.49329936504364014, - -0.4813448190689087, - -0.4721227288246155, - -0.4655754566192627, - -0.4616628587245941, - -0.4603612720966339, - -0.4616628587245941, - -0.4655754566192627, - -0.4721227288246155, - -0.4813448190689087, - -0.49329936504364014, - -0.5080630779266357, - -0.5257338285446167, - -0.35881778597831726, - -0.34272122383117676, - -0.329252153635025, - -0.31833240389823914, - -0.3099004924297333, - -0.30390995740890503, - -0.30032840371131897, - -0.2991366684436798, - -0.30032840371131897, - -0.30390995740890503, - -0.3099004924297333, - -0.31833240389823914, - -0.329252153635025, - -0.34272122383117676, - -0.35881778597831726, - -0.20098872482776642, - -0.18619951605796814, - -0.1738092005252838, - -0.16375407576560974, - -0.15598376095294952, - -0.1504601240158081, - -0.1471564769744873, - -0.14605699479579926, - -0.1471564769744873, - -0.1504601240158081, - -0.15598376095294952, - -0.16375407576560974, - -0.1738092005252838, - -0.18619951605796814, - -0.20098872482776642, - -0.0509016253054142, - -0.037217479199171066, - -0.025741487741470337, - -0.016420770436525345, - -0.009213397279381752, - -0.004087521694600582, - -0.0010208169696852565, - -4.470348358154297e-8, - -0.0010208169696852565, - -0.004087521694600582, - -0.009213397279381752, - -0.016420770436525345, - -0.025741487741470337, - -0.037217479199171066, - -0.0509016253054142, - 0.09248623251914978, - 0.1052226722240448, - 0.1159127950668335, - 0.12460114061832428, - 0.13132309913635254, - 0.13610564172267914, - 0.13896767795085907, - 0.1399204432964325, - 0.13896767795085907, - 0.13610564172267914, - 0.13132309913635254, - 0.12460114061832428, - 0.1159127950668335, - 0.1052226722240448, - 0.09248623251914978, - 0.23000214993953705, - 0.24191594123840332, - 0.2519226372241974, - 0.26006022095680237, - 0.266358882188797, - 0.2708417773246765, - 0.27352508902549744, - 0.274418443441391, - 0.27352508902549744, - 0.2708417773246765, - 0.266358882188797, - 0.26006022095680237, - 0.2519226372241974, - 0.24191594123840332, - 0.23000214993953705, - 0.362315833568573, - 0.37350815534591675, - 0.38291457295417786, - 0.39056771993637085, - 0.3964937627315521, - 0.40071263909339905, - 0.4032383859157562, - 0.4040793776512146, - 0.4032383859157562, - 0.40071263909339905, - 0.3964937627315521, - 0.39056771993637085, - 0.38291457295417786, - 0.37350815534591675, - 0.362315833568573, - 0.48997852206230164, - 0.5005325675010681, - 0.509407103061676, - 0.5166305899620056, - 0.5222258567810059, - 0.5262101888656616, - 0.5285959839820862, - 0.5293903946876526, - 0.5285959839820862, - 0.5262101888656616, - 0.5222258567810059, - 0.5166305899620056, - 0.509407103061676, - 0.5005325675010681, - 0.48997852206230164, - 0.6134504079818726, - 0.6234353184700012, - 0.6318351626396179, - 0.638674795627594, - 0.643974244594574, - 0.6477488279342651, - 0.650009274482727, - 0.6507620215415955, - 0.650009274482727, - 0.6477488279342651, - 0.643974244594574, - 0.638674795627594, - 0.6318351626396179, - 0.6234353184700012, - 0.6134504079818726, - 0.7331202626228333, - 0.7425943613052368, - 0.750567615032196, - 0.7570620775222778, - 0.7620953917503357, - 0.7656810879707336, - 0.767828643321991, - 0.7685438990592957, - 0.767828643321991, - 0.7656810879707336, - 0.7620953917503357, - 0.7570620775222778, - 0.750567615032196, - 0.7425943613052368, - 0.7331202626228333, - 0.8493202328681946, - 0.8583330512046814, - 0.8659208416938782, - 0.8721030950546265, - 0.876895546913147, - 0.8803102374076843, - 0.8823556303977966, - 0.8830369114875793, - 0.8823556303977966, - 0.8803102374076843, - 0.876895546913147, - 0.8721030950546265, - 0.8659208416938782, - 0.8583330512046814, - 0.8493202328681946 - ], - "xaxis": "x6", - "y": [ - -1.153823733329773, - -0.9856066107749939, - -0.819028377532959, - -0.653749406337738, - -0.4894700050354004, - -0.3259183466434479, - -0.162841796875, - -5.094500110658373e-8, - 0.162841796875, - 0.3259183466434479, - 0.4894700050354004, - 0.653749406337738, - 0.819028377532959, - 0.9856066107749939, - 1.153823733329773, - -1.1239358186721802, - -0.9606429934501648, - -0.7986600399017334, - -0.637725830078125, - -0.4776046574115753, - -0.3180786669254303, - -0.15894274413585663, - -4.972704203964895e-8, - 0.15894274413585663, - 0.3180786669254303, - 0.4776046574115753, - 0.637725830078125, - 0.7986600399017334, - 0.9606429934501648, - 1.1239358186721802, - -1.0982561111450195, - -0.9390869140625, - -0.781002402305603, - -0.6237921714782715, - -0.4672633111476898, - -0.31123510003089905, - -0.15553593635559082, - -4.866252112378788e-8, - 0.15553593635559082, - 0.31123510003089905, - 0.4672633111476898, - 0.6237921714782715, - 0.781002402305603, - 0.9390869140625, - 1.0982561111450195, - -1.075676441192627, - -0.9200677871704102, - -0.7653798460960388, - -0.6114377975463867, - -0.45807912945747375, - -0.30515044927597046, - -0.15250492095947266, - -4.77152113376178e-8, - 0.15250492095947266, - 0.30515044927597046, - 0.45807912945747375, - 0.6114377975463867, - 0.7653798460960388, - 0.9200677871704102, - 1.075676441192627, - -1.0554907321929932, - -0.9030221104621887, - -0.7513497471809387, - -0.6003248691558838, - -0.4498078525066376, - -0.29966598749160767, - -0.14977149665355682, - -4.6860773039725245e-8, - 0.14977149665355682, - 0.29966598749160767, - 0.4498078525066376, - 0.6003248691558838, - 0.7513497471809387, - 0.9030221104621887, - 1.0554907321929932, - -1.0372172594070435, - -0.8875615000724792, - -0.7386044263839722, - -0.5902170538902283, - -0.44227761030197144, - -0.29466956853866577, - -0.14728035032749176, - -4.6081964910626994e-8, - 0.14728035032749176, - 0.29466956853866577, - 0.44227761030197144, - 0.5902170538902283, - 0.7386044263839722, - 0.8875615000724792, - 1.0372172594070435, - -1.0205111503601074, - -0.8734056353569031, - -0.7269202470779419, - -0.5809416770935059, - -0.4353623390197754, - -0.2900787889957428, - -0.1449907422065735, - -4.5366085998921335e-8, - 0.1449907422065735, - 0.2900787889957428, - 0.4353623390197754, - 0.5809416770935059, - 0.7269202470779419, - 0.8734056353569031, - 1.0205111503601074, - -1.0051162242889404, - -0.8603448271751404, - -0.7161291837692261, - -0.5723683834075928, - -0.4289666414260864, - -0.285831093788147, - -0.14287169277668, - -4.470348358154297e-8, - 0.14287169277668, - 0.285831093788147, - 0.4289666414260864, - 0.5723683834075928, - 0.7161291837692261, - 0.8603448271751404, - 1.0051162242889404, - -0.9908361434936523, - -0.8482176661491394, - -0.70610111951828, - -0.56439608335495, - -0.423016220331192, - -0.2818777561187744, - -0.14089906215667725, - -4.408662235277916e-8, - 0.14089906215667725, - 0.2818777561187744, - 0.423016220331192, - 0.56439608335495, - 0.70610111951828, - 0.8482176661491394, - 0.9908361434936523, - -0.9775169491767883, - -0.8368970155715942, - -0.6967334151268005, - -0.5569446086883545, - -0.4174521863460541, - -0.27818000316619873, - -0.13905364274978638, - -4.350950177922641e-8, - 0.13905364274978638, - 0.27818000316619873, - 0.4174521863460541, - 0.5569446086883545, - 0.6967334151268005, - 0.8368970155715942, - 0.9775169491767883, - -0.9650352597236633, - -0.8262805938720703, - -0.6879433989524841, - -0.5499492883682251, - -0.4122268557548523, - -0.2747064232826233, - -0.13731984794139862, - -4.2967265301285806e-8, - 0.13731984794139862, - 0.2747064232826233, - 0.4122268557548523, - 0.5499492883682251, - 0.6879433989524841, - 0.8262805938720703, - 0.9650352597236633, - -0.9532908201217651, - -0.8162851333618164, - -0.6796631813049316, - -0.5433570742607117, - -0.4073010981082916, - -0.2714312672615051, - -0.13568486273288727, - -4.2455909010641335e-8, - 0.13568486273288727, - 0.2714312672615051, - 0.4073010981082916, - 0.5433570742607117, - 0.6796631813049316, - 0.8162851333618164, - 0.9532908201217651, - -0.9422006607055664, - -0.8068414926528931, - -0.6718367338180542, - -0.5371237993240356, - -0.40264227986335754, - -0.2683330178260803, - -0.13413800299167633, - -4.197210046186228e-8, - 0.13413800299167633, - 0.2683330178260803, - 0.40264227986335754, - 0.5371237993240356, - 0.6718367338180542, - 0.8068414926528931, - 0.9422006607055664, - -0.9316955208778381, - -0.7978918552398682, - -0.6644167900085449, - -0.5312124490737915, - -0.39822301268577576, - -0.26539358496665955, - -0.1326702982187271, - -4.151302590571504e-8, - 0.1326702982187271, - 0.26539358496665955, - 0.39822301268577576, - 0.5312124490737915, - 0.6644167900085449, - 0.7978918552398682, - 0.9316955208778381, - -0.9217167496681213, - -0.7893871665000916, - -0.6573632955551147, - -0.5255915522575378, - -0.3940199613571167, - -0.26259753108024597, - -0.1312740594148636, - -4.107629436589377e-8, - 0.1312740594148636, - 0.26259753108024597, - 0.3940199613571167, - 0.5255915522575378, - 0.6573632955551147, - 0.7893871665000916, - 0.9217167496681213 - ], - "yaxis": "y6" - } - ], - "layout": { - "annotations": [ - { - "font": { - "size": 16 - }, - "showarrow": false, - "text": "k1", - "x": 0.14444444444444446, - "xanchor": "center", - "xref": "paper", - "y": 1, - "yanchor": "bottom", - "yref": "paper" - }, - { - "font": { - "size": 16 - }, - "showarrow": false, - "text": "k2", - "x": 0.5, - "xanchor": "center", - "xref": "paper", - "y": 1, - "yanchor": "bottom", - "yref": "paper" - }, - { - "font": { - "size": 16 - }, - "showarrow": false, - "text": "p1", - "x": 0.8555555555555556, - "xanchor": "center", - "xref": "paper", - "y": 1, - "yanchor": "bottom", - "yref": "paper" - }, - { - "font": { - "size": 16 - }, - "showarrow": false, - "text": "k3", - "x": 0.14444444444444446, - "xanchor": "center", - "xref": "paper", - "y": 0.45, - "yanchor": "bottom", - "yref": "paper" - }, - { - "font": { - "size": 16 - }, - "showarrow": false, - "text": "k4", - "x": 0.5, - "xanchor": "center", - "xref": "paper", - "y": 0.45, - "yanchor": "bottom", - "yref": "paper" - }, - { - "font": { - "size": 16 - }, - "showarrow": false, - "text": "p2", - "x": 0.8555555555555556, - "xanchor": "center", - "xref": "paper", - "y": 0.45, - "yanchor": "bottom", - "yref": "paper" - } - ], - "font": { - "color": "#a3a3a3", - "size": 18 - }, - "height": 600, - "hovermode": false, - "margin": { - "b": 0, - "l": 0, - "r": 0, - "t": 20 - }, - "paper_bgcolor": "rgba(0,0,0,0)", - "plot_bgcolor": "rgba(0,0,0,0)", - "showlegend": false, - "sliders": [ - { - "active": 9, - "len": 0.5, - "pad": { - "t": 10 - }, - "steps": [ - { - "args": [ - { - "visible": [ - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false - ] - } - ], - "label": "", - "method": "update" - }, - { - "args": [ - { - "visible": [ - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false - ] - } - ], - "label": "", - "method": "update" - }, - { - "args": [ - { - "visible": [ - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false - ] - } - ], - "label": "", - "method": "update" - }, - { - "args": [ - { - "visible": [ - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false - ] - } - ], - "label": "", - "method": "update" - }, - { - "args": [ - { - "visible": [ - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false - ] - } - ], - "label": "", - "method": "update" - }, - { - "args": [ - { - "visible": [ - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false - ] - } - ], - "label": "", - "method": "update" - }, - { - "args": [ - { - "visible": [ - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false - ] - } - ], - "label": "", - "method": "update" - }, - { - "args": [ - { - "visible": [ - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false - ] - } - ], - "label": "", - "method": "update" - }, - { - "args": [ - { - "visible": [ - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false - ] - } - ], - "label": "", - "method": "update" - }, - { - "args": [ - { - "visible": [ - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false - ] - } - ], - "label": "", - "method": "update" - }, - { - "args": [ - { - "visible": [ - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false - ] - } - ], - "label": "", - "method": "update" - }, - { - "args": [ - { - "visible": [ - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false - ] - } - ], - "label": "", - "method": "update" - }, - { - "args": [ - { - "visible": [ - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false - ] - } - ], - "label": "", - "method": "update" - }, - { - "args": [ - { - "visible": [ - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false - ] - } - ], - "label": "", - "method": "update" - }, - { - "args": [ - { - "visible": [ - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false - ] - } - ], - "label": "", - "method": "update" - }, - { - "args": [ - { - "visible": [ - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false - ] - } - ], - "label": "", - "method": "update" - }, - { - "args": [ - { - "visible": [ - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false - ] - } - ], - "label": "", - "method": "update" - }, - { - "args": [ - { - "visible": [ - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false - ] - } - ], - "label": "", - "method": "update" - }, - { - "args": [ - { - "visible": [ - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true - ] - } - ], - "label": "", - "method": "update" - } - ], - "x": 0.5, - "xanchor": "center" - } - ], - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - }, - "xaxis": { - "anchor": "y", - "domain": [ - 0, - 0.2888888888888889 - ], - "scaleanchor": "y", - "scaleratio": 1, - "showgrid": false, - "visible": false - }, - "xaxis2": { - "anchor": "y2", - "domain": [ - 0.35555555555555557, - 0.6444444444444445 - ], - "scaleanchor": "y", - "scaleratio": 1, - "showgrid": false, - "visible": false - }, - "xaxis3": { - "anchor": "y3", - "domain": [ - 0.7111111111111111, - 1 - ], - "scaleanchor": "y", - "scaleratio": 1, - "showgrid": false, - "visible": false - }, - "xaxis4": { - "anchor": "y4", - "domain": [ - 0, - 0.2888888888888889 - ], - "scaleanchor": "y", - "scaleratio": 1, - "showgrid": false, - "visible": false - }, - "xaxis5": { - "anchor": "y5", - "domain": [ - 0.35555555555555557, - 0.6444444444444445 - ], - "scaleanchor": "y", - "scaleratio": 1, - "showgrid": false, - "visible": false - }, - "xaxis6": { - "anchor": "y6", - "domain": [ - 0.7111111111111111, - 1 - ], - "scaleanchor": "y", - "scaleratio": 1, - "showgrid": false, - "visible": false - }, - "yaxis": { - "anchor": "x", - "constrain": "domain", - "domain": [ - 0.55, - 1 - ], - "range": [ - -1.3, - 1.3 - ], - "showgrid": false, - "visible": false - }, - "yaxis2": { - "anchor": "x2", - "constrain": "domain", - "domain": [ - 0.55, - 1 - ], - "range": [ - -1.3, - 1.3 - ], - "showgrid": false, - "visible": false - }, - "yaxis3": { - "anchor": "x3", - "constrain": "domain", - "domain": [ - 0.55, - 1 - ], - "range": [ - -1.3, - 1.3 - ], - "showgrid": false, - "visible": false - }, - "yaxis4": { - "anchor": "x4", - "constrain": "domain", - "domain": [ - 0, - 0.45 - ], - "range": [ - -1.3, - 1.3 - ], - "showgrid": false, - "visible": false - }, - "yaxis5": { - "anchor": "x5", - "constrain": "domain", - "domain": [ - 0, - 0.45 - ], - "range": [ - -1.3, - 1.3 - ], - "showgrid": false, - "visible": false - }, - "yaxis6": { - "anchor": "x6", - "constrain": "domain", - "domain": [ - 0, - 0.45 - ], - "range": [ - -1.3, - 1.3 - ], - "showgrid": false, - "visible": false - } - } - }, - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# OUTPUT_ONLY\n", - "height = 15\n", - "width = 15\n", - "\n", - "from plotly.subplots import make_subplots\n", - "\n", - "distortion_names = (\"k1\", \"k2\", \"p1\", \"k3\", \"k4\", \"p2\")\n", - "distortion_min = (0.01, 0.001, 0.01, 0.001, -0.05, -0.05)\n", - "distortion_max = (0.05, 0.05, 0.05, 0.05, 0.05, 0.05)\n", - "fig = make_subplots(rows=2, cols=3, vertical_spacing=0.1, subplot_titles=distortion_names)\n", - "\n", - "num_steps = 19\n", - "all_steps = []\n", - "for i in range(len(distortion_names)):\n", - " for step in torch.linspace(distortion_min[i], distortion_max[i], num_steps):\n", - " distortion_params = torch.zeros(6)\n", - " distortion_params[i] = step\n", - "\n", - " from nerfstudio.cameras import camera_utils\n", - "\n", - " coords = torch.meshgrid(torch.linspace(-1, 1, height), torch.linspace(-1, 1, width), indexing=\"ij\")\n", - " coords = torch.stack(coords, dim=-1)\n", - "\n", - " coords = camera_utils.radial_and_tangential_undistort(coords, distortion_params)\n", - "\n", - " fig.add_trace(\n", - " go.Scatter(\n", - " x=coords[..., 0].flatten(),\n", - " y=coords[..., 1].flatten(),\n", - " mode=\"markers\",\n", - " marker=dict(\n", - " size=10,\n", - " ),\n", - " visible=False,\n", - " ),\n", - " row=i % 2 + 1,\n", - " col=i // 2 + 1,\n", - " )\n", - "\n", - " fig.data[num_steps * i + num_steps // 2].visible = True\n", - "\n", - "# Create and add slider\n", - "steps = []\n", - "for i in range(num_steps):\n", - " step = dict(method=\"update\", args=[{\"visible\": [False] * len(fig.data)}], label=\"\")\n", - " for d in range(len(distortion_names)):\n", - " step[\"args\"][0][\"visible\"][num_steps * d + i] = True\n", - " steps.append(step)\n", - "\n", - "sliders = [\n", - " dict(\n", - " active=num_steps // 2,\n", - " pad={\"t\": 10},\n", - " steps=steps,\n", - " len=0.5,\n", - " x=0.5,\n", - " xanchor=\"center\",\n", - " )\n", - "]\n", - "\n", - "webdocs_layout = go.Layout(\n", - " height=600,\n", - " sliders=sliders,\n", - " margin=dict(r=0, b=0, l=0, t=20),\n", - " hovermode=False,\n", - " showlegend=False,\n", - " paper_bgcolor=\"rgba(0,0,0,0)\",\n", - " plot_bgcolor=\"rgba(0,0,0,0)\",\n", - " font=dict(color=\"#a3a3a3\", size=18),\n", - ")\n", - "fig.for_each_yaxis(lambda x: x.update(range=[-1.3, 1.3], constrain=\"domain\", showgrid=False, visible=False))\n", - "fig.for_each_xaxis(lambda x: x.update(scaleanchor=\"y\", scaleratio=1, showgrid=False, visible=False))\n", - "fig.update_layout(webdocs_layout)\n", - "\n", - "fig.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "nerfactory", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.8.12" - }, - "vscode": { - "interpreter": { - "hash": "34c28001ff35fb390494047002768a8182dcf55b1b11415165e62ea61557ab83" - } - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/docs/nerfology/model_components/visualize_encoders.ipynb b/docs/nerfology/model_components/visualize_encoders.ipynb deleted file mode 100644 index b4707732..00000000 --- a/docs/nerfology/model_components/visualize_encoders.ipynb +++ /dev/null @@ -1,571 +0,0 @@ -{ - "cells": [ - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Field Encoders" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "(nerf)=\n", - "## NeRF Positional Encoding\n", - "First introduced in the original NeRF paper. This encoding assumes the inputs are between zero and one and can opperate on any dimensional input." - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": { - "tags": [ - "hide-input" - ] - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Input Values:\n" - ] - }, - { - "data": { - "text/html": [ - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Encoded Values:\n" - ] - }, - { - "data": { - "text/html": [ - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Encoded Integrate Values:\n", - "Covariance Magnitude: 0.01\n" - ] - }, - { - "data": { - "text/html": [ - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Covariance Magnitude: 0.1\n" - ] - }, - { - "data": { - "text/html": [ - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Covariance Magnitude: 1\n" - ] - }, - { - "data": { - "text/html": [ - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# COLLAPSED\n", - "import torch\n", - "import mediapy as media\n", - "from nerfstudio.field_components import encodings as encoding\n", - "\n", - "num_frequencies = 4\n", - "min_freq_exp = 0\n", - "max_freq_exp = 6\n", - "include_input = False\n", - "resolution = 128\n", - "covariance_magnitudes = [0.01, 0.1, 1]\n", - "\n", - "encoder = encoding.NeRFEncoding(\n", - " in_dim=2,\n", - " num_frequencies=num_frequencies,\n", - " min_freq_exp=min_freq_exp,\n", - " max_freq_exp=max_freq_exp,\n", - " include_input=include_input,\n", - ")\n", - "\n", - "x_samples = torch.linspace(0, 1, resolution)\n", - "grid = torch.stack(torch.meshgrid([x_samples, x_samples], indexing=\"ij\"), dim=-1)\n", - "\n", - "encoded_values = encoder(grid)\n", - "\n", - "print(\"Input Values:\")\n", - "media.show_images(torch.moveaxis(grid, 2, 0), cmap=\"plasma\", border=True)\n", - "print(\"Encoded Values:\")\n", - "media.show_images(torch.moveaxis(encoded_values, 2, 0), vmin=-1, vmax=1, cmap=\"plasma\", border=True)\n", - "\n", - "print(\"Encoded Integrate Values:\")\n", - "for covariance_magnitude in covariance_magnitudes:\n", - " print(f\"Covariance Magnitude: {covariance_magnitude}\")\n", - " covs = torch.eye(2)[None, None, :, :] * covariance_magnitude\n", - " encoded_values = encoder(grid, covs=covs)\n", - " media.show_images(torch.moveaxis(encoded_values, 2, 0), vmin=-1, vmax=1, cmap=\"plasma\", border=True)" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "(rff)=\n", - "## Random Fourier Feature (RFF) Encoding\n", - "This encoding assumes the inputs are between zero and one and can opperate on any dimensional input." - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": { - "tags": [ - "hide-input" - ] - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Input Values:\n" - ] - }, - { - "data": { - "text/html": [ - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Encoded Values:\n" - ] - }, - { - "data": { - "text/html": [ - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Encoded Integrate Values:\n", - "Covariance Magnitude: 0.001\n" - ] - }, - { - "data": { - "text/html": [ - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Covariance Magnitude: 0.01\n" - ] - }, - { - "data": { - "text/html": [ - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Covariance Magnitude: 0.1\n" - ] - }, - { - "data": { - "text/html": [ - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# COLLAPSED\n", - "import torch\n", - "import mediapy as media\n", - "from nerfstudio.field_components import encodings as encoding\n", - "\n", - "num_frequencies = 8\n", - "scale = 10\n", - "resolution = 128\n", - "covariance_magnitudes = [0.001, 0.01, 0.1]\n", - "\n", - "encoder = encoding.RFFEncoding(in_dim=2, num_frequencies=num_frequencies, scale=scale)\n", - "\n", - "x_samples = torch.linspace(0, 1, resolution)\n", - "grid = torch.stack(torch.meshgrid([x_samples, x_samples], indexing=\"ij\"), dim=-1)\n", - "\n", - "encoded_values = encoder(grid)\n", - "\n", - "print(\"Input Values:\")\n", - "media.show_images(torch.moveaxis(grid, 2, 0), cmap=\"plasma\", border=True)\n", - "print(\"Encoded Values:\")\n", - "media.show_images(torch.moveaxis(encoded_values, 2, 0), cmap=\"plasma\", vmin=-1, vmax=1, border=True)\n", - "\n", - "print(\"Encoded Integrate Values:\")\n", - "for covariance_magnitude in covariance_magnitudes:\n", - " print(f\"Covariance Magnitude: {covariance_magnitude}\")\n", - " covs = torch.eye(2)[None, None, :, :] * covariance_magnitude\n", - " encoded_values = encoder(grid, covs=covs)\n", - " media.show_images(torch.moveaxis(encoded_values, 2, 0), cmap=\"plasma\", vmin=-1, vmax=1, border=True)" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "(hash)=\n", - "## Hash Encoding\n", - "The hash incoding was originally introduced in Instant-NGP. The encoding is optimized during training. This is a visualization of the initialization." - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": { - "tags": [ - "hide-input" - ] - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "tensor(0.0010, grad_fn=)\n", - "tensor(-0.0010, grad_fn=)\n", - "Input Values:\n" - ] - }, - { - "data": { - "text/html": [ - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Encoded Values:\n" - ] - }, - { - "data": { - "text/html": [ - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# COLLAPSED\n", - "import torch\n", - "import mediapy as media\n", - "from nerfstudio.field_components import encodings as encoding\n", - "\n", - "num_levels = 8\n", - "min_res = 2\n", - "max_res = 128\n", - "log2_hashmap_size = 4 # Typically much larger tables are used\n", - "\n", - "resolution = 128\n", - "slice = 0\n", - "\n", - "# Fixing features_per_level to 3 for easy RGB visualization. Typical value is 2 in networks\n", - "features_per_level = 3\n", - "\n", - "encoder = encoding.HashEncoding(\n", - " num_levels=num_levels,\n", - " min_res=min_res,\n", - " max_res=max_res,\n", - " log2_hashmap_size=log2_hashmap_size,\n", - " features_per_level=features_per_level,\n", - " hash_init_scale=0.001,\n", - " implementation=\"torch\",\n", - ")\n", - "\n", - "x_samples = torch.linspace(0, 1, resolution)\n", - "grid = torch.stack(torch.meshgrid([x_samples, x_samples, x_samples], indexing=\"ij\"), dim=-1)\n", - "\n", - "encoded_values = encoder(grid)\n", - "print(torch.max(encoded_values))\n", - "print(torch.min(encoded_values))\n", - "\n", - "grid_slice = grid[slice, ...]\n", - "encoded_values_slice = encoded_values[slice, ...]\n", - "\n", - "print(\"Input Values:\")\n", - "media.show_images(torch.moveaxis(grid_slice, 2, 0), cmap=\"plasma\", border=True)\n", - "\n", - "print(\"Encoded Values:\")\n", - "encoded_images = encoded_values_slice.view(resolution, resolution, num_levels, 3)\n", - "encoded_images = torch.moveaxis(encoded_images, 2, 0)\n", - "encoded_images -= torch.min(encoded_images)\n", - "encoded_images /= torch.max(encoded_images)\n", - "media.show_images(encoded_images.detach().numpy(), cmap=\"plasma\", border=True)" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "(spherical)=\n", - "## Spherical Harmonic Encoding\n", - "Encode direction using spherical harmonics. (Mostly used to encode viewing direction)" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": { - "tags": [ - "hide-input" - ] - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Level: 1\n" - ] - }, - { - "data": { - "text/html": [ - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Level: 2\n" - ] - }, - { - "data": { - "text/html": [ - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Level: 3\n" - ] - }, - { - "data": { - "text/html": [ - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Level: 4\n" - ] - }, - { - "data": { - "text/html": [ - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# COLLAPSED\n", - "import torch\n", - "import mediapy as media\n", - "from nerfstudio.field_components import encodings as encoding\n", - "\n", - "levels = 4\n", - "\n", - "height = 100\n", - "width = 150\n", - "\n", - "encoder = encoding.SHEncoding(levels=levels)\n", - "\n", - "theta = torch.linspace(-torch.pi, torch.pi, width)\n", - "phi = torch.linspace(0, torch.pi, height)\n", - "[theta, phi] = torch.meshgrid([theta, phi], indexing=\"xy\")\n", - "\n", - "directions = torch.stack([torch.cos(theta) * torch.sin(phi), torch.sin(theta) * torch.sin(phi), torch.cos(phi)], dim=-1)\n", - "\n", - "encoded_values = encoder(directions)\n", - "encoded_values = torch.moveaxis(encoded_values, 2, 0)\n", - "\n", - "for level in range(levels):\n", - " print(f\"Level: {level+1}\")\n", - " media.show_images(encoded_values[level**2 : (level + 1) ** 2, ...], cmap=\"plasma\", border=True)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3.8.12 ('nerfactory')", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.8.12" - }, - "vscode": { - "interpreter": { - "hash": "34c28001ff35fb390494047002768a8182dcf55b1b11415165e62ea61557ab83" - } - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/docs/nerfology/model_components/visualize_samplers.ipynb b/docs/nerfology/model_components/visualize_samplers.ipynb deleted file mode 100644 index a91c754e..00000000 --- a/docs/nerfology/model_components/visualize_samplers.ipynb +++ /dev/null @@ -1,7441 +0,0 @@ -{ - "cells": [ - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Ray Samplers\n", - "\n", - "## Overview\n", - "\n", - "Once we have a set of cameras, we want to cast camera rays associated with each pixel. \n", - "\n", - "Along these ray we will sample the _field_ and aggregate the samples to predict the pixels value (ie. color). The parameterization of the samples are described [here](./visualize_samples.ipynb) however we must decide where to place these samples along a ray. For this task we will use a [`Sampler`](../../reference/api/model_components/ray_sampler.rst).\n", - "\n", - "In the ideal world we would compute many dense samples along a ray. Unfortunately, each additional sample adds a computation cost to the system as it needs to be processed by the _field_ which is often a neural network.\n", - "\n", - "As a result it is common for NeRF methods to use on the order of 100 samples. Therefore, we want to optimize where those samples are placed in the scene.\n", - "\n", - "For example, if the scene can be bounded by a box and the objects are all similar scales, uniform sampling along the ray may be a good option. On the other hand if the scene is unbounded (potential extending as far as the eye can see) uniform sampling does not make sense as the samples would be very sparse for close objects. In this case a different sampling like _Uniform in Disparity_ may perform better.\n", - "\n", - "```{image} imgs/samplers_type-light.png\n", - ":align: center\n", - ":class: only-light\n", - "```\n", - "\n", - "```{image} imgs/samplers_type-dark.png\n", - ":align: center\n", - ":class: only-dark\n", - "```\n", - "\n", - "### Stratified Sampling\n", - "\n", - "Most samplers has the option to _stratify_ the samplers. When stratified, each sample is randomly perturbed. \n", - "\n", - "The magnitude of the pertubation is such that the sample ordering remains consistent and the overall distribution statistics are not changed. Using stratified samples during training generally improves the reconstructions as it help prevent overfitting.\n", - "\n", - "During inference stratified sampling should be disabled (nerfstudio samplers will do this) as it can cause noisy artifacts when the camera moves.\n", - "\n", - "```{image} imgs/samplers_stratified-light.png\n", - ":align: center\n", - ":class: only-light\n", - "```\n", - "\n", - "```{image} imgs/samplers_stratified-dark.png\n", - ":align: center\n", - ":class: only-dark\n", - "```\n", - "\n", - "### Hierarchical Sampling\n", - "\n", - "It is important to sample the scene where it has content otherwise the reconstruction quality will be reduced. \n", - "\n", - "One trick that is often employed in NeRF methods is to do multiple round of sampling. The first round can use a predefined sampler (ie. Uniform) to generate an image. Once the space is sampled, we have an idea which samples contributed to the final color. \n", - "\n", - "We can use this information to sample more around those regions using a `PDFSampler`. The PDF sampler is described more below." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Spaced Samplers\n", - "\n", - "These are the most basic samplers that spaces samples based on a predefined function. These samplers have all have a starting and ending distance (also known as a near/far plane). The plots below are histograms of points sampled from some predefined samplers. \n" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": { - "tags": [ - "hide-input" - ] - }, - "outputs": [ - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "3e6b9d9b42cb4dc89f40a570007d00ec", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "Output()" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
\n"
-      ],
-      "text/plain": []
-     },
-     "metadata": {},
-     "output_type": "display_data"
-    },
-    {
-     "data": {
-      "text/html": [
-       "        \n",
-       "        "
-      ]
-     },
-     "metadata": {},
-     "output_type": "display_data"
-    },
-    {
-     "data": {
-      "application/vnd.plotly.v1+json": {
-       "config": {
-        "plotlyServerURL": "https://plot.ly"
-       },
-       "data": [
-        {
-         "nbinsx": 50,
-         "opacity": 0.7,
-         "type": "histogram",
-         "x": [
-          2,
-          2.003000020980835,
-          2.00600004196167,
-          2.009000062942505,
-          2.01200008392334,
-          2.015000104904175,
-          2.0180001258850098,
-          2.0209999084472656,
-          2.0239999294281006,
-          2.0269999504089355,
-          2.0299999713897705,
-          2.0329999923706055,
-          2.0360000133514404,
-          2.0390000343322754,
-          2.0420000553131104,
-          2.0450000762939453,
-          2.0480000972747803,
-          2.050999879837036,
-          2.053999900817871,
-          2.056999921798706,
-          2.059999942779541,
-          2.062999963760376,
-          2.065999984741211,
-          2.069000005722046,
-          2.072000026702881,
-          2.075000047683716,
-          2.078000068664551,
-          2.0810000896453857,
-          2.0840001106262207,
-          2.0870001316070557,
-          2.0900001525878906,
-          2.0929999351501465,
-          2.0959999561309814,
-          2.0989999771118164,
-          2.1019999980926514,
-          2.1050000190734863,
-          2.1080000400543213,
-          2.1110000610351562,
-          2.114000082015991,
-          2.117000102996826,
-          2.119999885559082,
-          2.122999906539917,
-          2.125999927520752,
-          2.128999948501587,
-          2.131999969482422,
-          2.134999990463257,
-          2.138000011444092,
-          2.1410000324249268,
-          2.1440000534057617,
-          2.1469998359680176,
-          2.1500000953674316,
-          2.1529998779296875,
-          2.1560001373291016,
-          2.1589999198913574,
-          2.1619999408721924,
-          2.1649999618530273,
-          2.1679999828338623,
-          2.1710000038146973,
-          2.1740000247955322,
-          2.177000045776367,
-          2.180000066757202,
-          2.183000087738037,
-          2.186000108718872,
-          2.188999891281128,
-          2.191999912261963,
-          2.194999933242798,
-          2.197999954223633,
-          2.2009999752044678,
-          2.2039999961853027,
-          2.2070000171661377,
-          2.2100000381469727,
-          2.2130000591278076,
-          2.2160000801086426,
-          2.2190001010894775,
-          2.2220001220703125,
-          2.2249999046325684,
-          2.2280001640319824,
-          2.2309999465942383,
-          2.2339999675750732,
-          2.236999988555908,
-          2.240000009536743,
-          2.243000030517578,
-          2.246000051498413,
-          2.249000072479248,
-          2.252000093460083,
-          2.254999876022339,
-          2.257999897003174,
-          2.260999917984009,
-          2.2639999389648438,
-          2.267000198364258,
-          2.2699999809265137,
-          2.2730000019073486,
-          2.2760000228881836,
-          2.2790000438690186,
-          2.2820000648498535,
-          2.2849998474121094,
-          2.2880001068115234,
-          2.2909998893737793,
-          2.2939999103546143,
-          2.296999931335449,
-          2.299999952316284,
-          2.302999973297119,
-          2.305999994277954,
-          2.309000015258789,
-          2.312000036239624,
-          2.315000057220459,
-          2.317999839782715,
-          2.321000099182129,
-          2.324000120162964,
-          2.3269999027252197,
-          2.3299999237060547,
-          2.3329999446868896,
-          2.3359999656677246,
-          2.3389999866485596,
-          2.3420000076293945,
-          2.3450000286102295,
-          2.3480000495910645,
-          2.3510000705718994,
-          2.3540000915527344,
-          2.3569998741149902,
-          2.3600001335144043,
-          2.36299991607666,
-          2.366000175476074,
-          2.36899995803833,
-          2.371999979019165,
-          2.375,
-          2.378000020980835,
-          2.38100004196167,
-          2.384000062942505,
-          2.38700008392334,
-          2.390000104904175,
-          2.3930001258850098,
-          2.3959999084472656,
-          2.3989999294281006,
-          2.4019999504089355,
-          2.4049999713897705,
-          2.4079999923706055,
-          2.4110000133514404,
-          2.4140000343322754,
-          2.4170000553131104,
-          2.4200000762939453,
-          2.422999858856201,
-          2.4260001182556152,
-          2.428999900817871,
-          2.432000160217285,
-          2.434999942779541,
-          2.437999963760376,
-          2.440999984741211,
-          2.444000005722046,
-          2.447000026702881,
-          2.450000047683716,
-          2.453000068664551,
-          2.4560000896453857,
-          2.4590001106262207,
-          2.4619998931884766,
-          2.4650001525878906,
-          2.4679999351501465,
-          2.4709999561309814,
-          2.4739999771118164,
-          2.4769999980926514,
-          2.4800000190734863,
-          2.4830000400543213,
-          2.4860000610351562,
-          2.489000082015991,
-          2.492000102996826,
-          2.494999885559082,
-          2.498000144958496,
-          2.500999927520752,
-          2.504000186920166,
-          2.506999969482422,
-          2.509999990463257,
-          2.513000011444092,
-          2.5160000324249268,
-          2.5190000534057617,
-          2.5220000743865967,
-          2.5250000953674316,
-          2.5280001163482666,
-          2.5310001373291016,
-          2.5339999198913574,
-          2.5370001792907715,
-          2.5399999618530273,
-          2.5429999828338623,
-          2.5460000038146973,
-          2.5490000247955322,
-          2.552000045776367,
-          2.555000066757202,
-          2.558000087738037,
-          2.561000108718872,
-          2.564000129699707,
-          2.566999912261963,
-          2.570000171661377,
-          2.572999954223633,
-          2.5759999752044678,
-          2.5789999961853027,
-          2.5820000171661377,
-          2.5850000381469727,
-          2.5880000591278076,
-          2.5910000801086426,
-          2.5939998626708984,
-          2.5970001220703125,
-          2.5999999046325684,
-          2.6030001640319824,
-          2.6059999465942383,
-          2.6090002059936523,
-          2.611999988555908,
-          2.615000009536743,
-          2.618000030517578,
-          2.620999813079834,
-          2.624000072479248,
-          2.627000093460083,
-          2.630000114440918,
-          2.632999897003174,
-          2.635999917984009,
-          2.6389999389648438,
-          2.642000198364258,
-          2.6449999809265137,
-          2.6480000019073486,
-          2.6510000228881836,
-          2.6540000438690186,
-          2.6570000648498535,
-          2.6599998474121094,
-          2.6630001068115234,
-          2.6659998893737793,
-          2.6690001487731934,
-          2.671999931335449,
-          2.674999952316284,
-          2.677999973297119,
-          2.681000232696533,
-          2.684000015258789,
-          2.687000036239624,
-          2.690000057220459,
-          2.692999839782715,
-          2.696000099182129,
-          2.6989998817443848,
-          2.702000141143799,
-          2.7049999237060547,
-          2.7080001831054688,
-          2.7109999656677246,
-          2.7139999866485596,
-          2.7170000076293945,
-          2.7200000286102295,
-          2.7230000495910645,
-          2.7260000705718994,
-          2.7290000915527344,
-          2.7319998741149902,
-          2.7350001335144043,
-          2.73799991607666,
-          2.741000175476074,
-          2.74399995803833,
-          2.747000217437744,
-          2.75,
-          2.753000020980835,
-          2.75600004196167,
-          2.759000062942505,
-          2.76200008392334,
-          2.765000104904175,
-          2.7680001258850098,
-          2.7709999084472656,
-          2.7740001678466797,
-          2.7769999504089355,
-          2.7800002098083496,
-          2.7829999923706055,
-          2.7860002517700195,
-          2.7890000343322754,
-          2.7919998168945312,
-          2.7950000762939453,
-          2.797999858856201,
-          2.8010001182556152,
-          2.803999900817871,
-          2.807000160217285,
-          2.809999942779541,
-          2.812999963760376,
-          2.815999984741211,
-          2.819000005722046,
-          2.822000026702881,
-          2.825000047683716,
-          2.828000068664551,
-          2.8309998512268066,
-          2.8340001106262207,
-          2.8369998931884766,
-          2.8400001525878906,
-          2.8429999351501465,
-          2.8460001945495605,
-          2.8489999771118164,
-          2.8519999980926514,
-          2.8550000190734863,
-          2.8580000400543213,
-          2.8610000610351562,
-          2.864000082015991,
-          2.867000102996826,
-          2.869999885559082,
-          2.873000144958496,
-          2.875999927520752,
-          2.879000186920166,
-          2.881999969482422,
-          2.885000228881836,
-          2.888000011444092,
-          2.8909997940063477,
-          2.8940000534057617,
-          2.8969998359680176,
-          2.9000000953674316,
-          2.9029998779296875,
-          2.9060001373291016,
-          2.9089999198913574,
-          2.9120001792907715,
-          2.9149999618530273,
-          2.9180002212524414,
-          2.9210000038146973,
-          2.9240002632141113,
-          2.927000045776367,
-          2.930000066757202,
-          2.933000087738037,
-          2.935999870300293,
-          2.939000129699707,
-          2.941999912261963,
-          2.945000171661377,
-          2.947999954223633,
-          2.9509999752044678,
-          2.9539999961853027,
-          2.9570000171661377,
-          2.9600000381469727,
-          2.9630000591278076,
-          2.9660000801086426,
-          2.9689998626708984,
-          2.9720001220703125,
-          2.9749999046325684,
-          2.9780001640319824,
-          2.9809999465942383,
-          2.9840002059936523,
-          2.986999988555908,
-          2.990000009536743,
-          2.993000030517578,
-          2.996000051498413,
-          2.999000072479248,
-          3.002000093460083,
-          3.005000114440918,
-          3.007999897003174,
-          3.011000156402588,
-          3.0139999389648438,
-          3.017000198364258,
-          3.0199999809265137,
-          3.0230002403259277,
-          3.0260000228881836,
-          3.0290000438690186,
-          3.0320000648498535,
-          3.0349998474121094,
-          3.0380001068115234,
-          3.0409998893737793,
-          3.0440001487731934,
-          3.046999931335449,
-          3.0500001907348633,
-          3.052999973297119,
-          3.056000232696533,
-          3.059000015258789,
-          3.062000274658203,
-          3.065000057220459,
-          3.068000078201294,
-          3.071000099182129,
-          3.074000120162964,
-          3.077000141143799,
-          3.0799999237060547,
-          3.0830001831054688,
-          3.0859999656677246,
-          3.0889999866485596,
-          3.0920000076293945,
-          3.0950000286102295,
-          3.0980000495910645,
-          3.1010000705718994,
-          3.1040000915527344,
-          3.1069998741149902,
-          3.1100001335144043,
-          3.11299991607666,
-          3.116000175476074,
-          3.11899995803833,
-          3.122000217437744,
-          3.125,
-          3.128000020980835,
-          3.13100004196167,
-          3.134000062942505,
-          3.13700008392334,
-          3.140000104904175,
-          3.1430001258850098,
-          3.1459999084472656,
-          3.1490001678466797,
-          3.1519999504089355,
-          3.1549999713897705,
-          3.1579999923706055,
-          3.1610000133514404,
-          3.1640000343322754,
-          3.1669998168945312,
-          3.1700000762939453,
-          3.172999858856201,
-          3.1760001182556152,
-          3.178999900817871,
-          3.182000160217285,
-          3.184999942779541,
-          3.188000202178955,
-          3.190999984741211,
-          3.194000244140625,
-          3.197000026702881,
-          3.200000047683716,
-          3.2029998302459717,
-          3.2059998512268066,
-          3.2089998722076416,
-          3.2119998931884766,
-          3.2150001525878906,
-          3.2180001735687256,
-          3.2210001945495605,
-          3.2240002155303955,
-          3.2269999980926514,
-          3.2300000190734863,
-          3.2330000400543213,
-          3.2360000610351562,
-          3.239000082015991,
-          3.242000102996826,
-          3.244999885559082,
-          3.247999906539917,
-          3.250999927520752,
-          3.254000186920166,
-          3.256999969482422,
-          3.260000228881836,
-          3.263000011444092,
-          3.2660000324249268,
-          3.2690000534057617,
-          3.2720000743865967,
-          3.2750000953674316,
-          3.2780001163482666,
-          3.2809998989105225,
-          3.2839999198913574,
-          3.2869999408721924,
-          3.2899999618530273,
-          3.2930002212524414,
-          3.2960000038146973,
-          3.2990000247955322,
-          3.302000045776367,
-          3.304999828338623,
-          3.308000087738037,
-          3.310999870300293,
-          3.314000129699707,
-          3.317000150680542,
-          3.319999933242798,
-          3.323000192642212,
-          3.3259999752044678,
-          3.3289999961853027,
-          3.332000255584717,
-          3.3350000381469727,
-          3.3380002975463867,
-          3.3410000801086426,
-          3.3439998626708984,
-          3.3469998836517334,
-          3.3499999046325684,
-          3.3530001640319824,
-          3.3560001850128174,
-          3.3590002059936523,
-          3.3620002269744873,
-          3.365000009536743,
-          3.368000030517578,
-          3.371000051498413,
-          3.374000072479248,
-          3.377000093460083,
-          3.380000114440918,
-          3.382999897003174,
-          3.386000156402588,
-          3.3889999389648438,
-          3.392000198364258,
-          3.3949999809265137,
-          3.3980002403259277,
-          3.4010000228881836,
-          3.4040000438690186,
-          3.4070000648498535,
-          3.4100000858306885,
-          3.4130001068115234,
-          3.4160001277923584,
-          3.4189999103546143,
-          3.421999931335449,
-          3.424999952316284,
-          3.427999973297119,
-          3.431000232696533,
-          3.434000253677368,
-          3.437000274658203,
-          3.440000057220459,
-          3.442999839782715,
-          3.446000099182129,
-          3.4489998817443848,
-          3.452000141143799,
-          3.455000162124634,
-          3.4579999446868896,
-          3.4610002040863037,
-          3.4639999866485596,
-          3.4670000076293945,
-          3.4700002670288086,
-          3.4730000495910645,
-          3.4760003089904785,
-          3.4790000915527344,
-          3.4820001125335693,
-          3.4850001335144043,
-          3.48799991607666,
-          3.491000175476074,
-          3.494000196456909,
-          3.497000217437744,
-          3.5,
-          3.503000020980835,
-          3.50600004196167,
-          3.509000062942505,
-          3.5119998455047607,
-          3.5149998664855957,
-          3.5179998874664307,
-          3.5209999084472656,
-          3.5239996910095215,
-          3.5269997119903564,
-          3.5299997329711914,
-          3.5329999923706055,
-          3.5360000133514404,
-          3.5390000343322754,
-          3.5419998168945312,
-          3.544999837875366,
-          3.547999858856201,
-          3.550999879837036,
-          3.553999900817871,
-          3.557000160217285,
-          3.559999942779541,
-          3.562999725341797,
-          3.565999746322632,
-          3.569000005722046,
-          3.572000026702881,
-          3.575000047683716,
-          3.578000068664551,
-          3.5809998512268066,
-          3.5839998722076416,
-          3.5869998931884766,
-          3.5899999141693115,
-          3.5930001735687256,
-          3.5960001945495605,
-          3.5989999771118164,
-          3.6019997596740723,
-          3.6050000190734863,
-          3.607999801635742,
-          3.610999822616577,
-          3.613999843597412,
-          3.617000102996826,
-          3.619999885559082,
-          3.622999668121338,
-          3.625999689102173,
-          3.628999948501587,
-          3.631999969482422,
-          3.634999990463257,
-          3.638000011444092,
-          3.6409997940063477,
-          3.6439998149871826,
-          3.6469998359680176,
-          3.6499998569488525,
-          3.6530001163482666,
-          3.6560001373291016,
-          3.6589999198913574,
-          3.6619997024536133,
-          3.6649999618530273,
-          3.6679999828338623,
-          3.6710000038146973,
-          3.6740000247955322,
-          3.677000045776367,
-          3.679999828338623,
-          3.682999849319458,
-          3.685999870300293,
-          3.689000129699707,
-          3.692000150680542,
-          3.695000171661377,
-          3.697999954223633,
-          3.7009999752044678,
-          3.7039997577667236,
-          3.7069997787475586,
-          3.7099997997283936,
-          3.7130000591278076,
-          3.7160000801086426,
-          3.7189998626708984,
-          3.7219996452331543,
-          3.7249999046325684,
-          3.7279999256134033,
-          3.7309999465942383,
-          3.7339999675750732,
-          3.736999988555908,
-          3.739999771118164,
-          3.742999792098999,
-          3.745999813079834,
-          3.749000072479248,
-          3.752000093460083,
-          3.755000114440918,
-          3.757999897003174,
-          3.760999917984009,
-          3.7639999389648438,
-          3.7669999599456787,
-          3.7699999809265137,
-          3.7730002403259277,
-          3.7760000228881836,
-          3.7789998054504395,
-          3.7819998264312744,
-          3.7850000858306885,
-          3.7880001068115234,
-          3.7910001277923584,
-          3.7940001487731934,
-          3.796999931335449,
-          3.799999713897705,
-          3.80299973487854,
-          3.805999755859375,
-          3.809000015258789,
-          3.812000036239624,
-          3.815000057220459,
-          3.817999839782715,
-          3.82099986076355,
-          3.8239998817443848,
-          3.8269999027252197,
-          3.8299999237060547,
-          3.8330001831054688,
-          3.8359999656677246,
-          3.8389997482299805,
-          3.8419997692108154,
-          3.8450000286102295,
-          3.8480000495910645,
-          3.8510000705718994,
-          3.8540000915527344,
-          3.8569998741149902,
-          3.859999895095825,
-          3.86299991607666,
-          3.865999937057495,
-          3.869000196456909,
-          3.871999979019165,
-          3.875,
-          3.877999782562256,
-          3.880999803543091,
-          3.883999824523926,
-          3.8869998455047607,
-          3.8899998664855957,
-          3.8930001258850098,
-          3.8959999084472656,
-          3.8989996910095215,
-          3.9019997119903564,
-          3.9049999713897705,
-          3.9079999923706055,
-          3.9110000133514404,
-          3.9140000343322754,
-          3.9169998168945312,
-          3.919999837875366,
-          3.922999858856201,
-          3.925999879837036,
-          3.92900013923645,
-          3.932000160217285,
-          3.934999942779541,
-          3.937999725341797,
-          3.940999984741211,
-          3.944000005722046,
-          3.947000026702881,
-          3.950000047683716,
-          3.953000068664551,
-          3.9559998512268066,
-          3.9589998722076416,
-          3.9619998931884766,
-          3.9650001525878906,
-          3.9679999351501465,
-          3.9709999561309814,
-          3.9739999771118164,
-          3.9769997596740723,
-          3.9799997806549072,
-          3.982999801635742,
-          3.985999822616577,
-          3.989000082015991,
-          3.992000102996826,
-          3.994999885559082,
-          3.997999668121338,
-          4.000999927520752,
-          4.003999710083008,
-          4.006999969482422,
-          4.010000228881836,
-          4.013000011444092,
-          4.015999794006348,
-          4.019000053405762,
-          4.021999835968018,
-          4.025000095367432,
-          4.0279998779296875,
-          4.031000137329102,
-          4.033999919891357,
-          4.036999702453613,
-          4.039999961853027,
-          4.043000221252441,
-          4.046000003814697,
-          4.049000263214111,
-          4.052000045776367,
-          4.054999828338623,
-          4.057999610900879,
-          4.060999870300293,
-          4.064000129699707,
-          4.066999912261963,
-          4.069999694824219,
-          4.072999954223633,
-          4.075999736785889,
-          4.0789995193481445,
-          4.081999778747559,
-          4.085000038146973,
-          4.088000297546387,
-          4.091000080108643,
-          4.093999862670898,
-          4.0970001220703125,
-          4.099999904632568,
-          4.102999687194824,
-          4.105999946594238,
-          4.109000205993652,
-          4.111999988555908,
-          4.114999771118164,
-          4.118000030517578,
-          4.121000289916992,
-          4.124000072479248,
-          4.126999855041504,
-          4.130000114440918,
-          4.132999897003174,
-          4.13599967956543,
-          4.138999938964844,
-          4.142000198364258,
-          4.145000457763672,
-          4.148000240325928,
-          4.151000022888184,
-          4.1539998054504395,
-          4.1570000648498535,
-          4.159999847412109,
-          4.163000106811523,
-          4.165999889373779,
-          4.169000148773193,
-          4.171999931335449,
-          4.174999713897705,
-          4.177999496459961,
-          4.180999755859375,
-          4.184000015258789,
-          4.187000274658203,
-          4.190000057220459,
-          4.192999839782715,
-          4.196000099182129,
-          4.198999881744385,
-          4.201999664306641,
-          4.204999923706055,
-          4.208000183105469,
-          4.210999965667725,
-          4.2139997482299805,
-          4.2170000076293945,
-          4.220000267028809,
-          4.2230000495910645,
-          4.22599983215332,
-          4.229000091552734,
-          4.23199987411499,
-          4.234999656677246,
-          4.23799991607666,
-          4.241000175476074,
-          4.24399995803833,
-          4.246999740600586,
-          4.25,
-          4.252999782562256,
-          4.255999565124512,
-          4.258999824523926,
-          4.26200008392334,
-          4.265000343322754,
-          4.26800012588501,
-          4.270999908447266,
-          4.2739996910095215,
-          4.2769999504089355,
-          4.279999732971191,
-          4.2829999923706055,
-          4.2860002517700195,
-          4.289000034332275,
-          4.291999816894531,
-          4.295000076293945,
-          4.297999858856201,
-          4.301000118255615,
-          4.303999900817871,
-          4.307000160217285,
-          4.309999942779541,
-          4.312999725341797,
-          4.315999984741211,
-          4.319000244140625,
-          4.322000026702881,
-          4.325000286102295,
-          4.328000068664551,
-          4.330999851226807,
-          4.3339996337890625,
-          4.336999893188477,
-          4.340000152587891,
-          4.3429999351501465,
-          4.345999717712402,
-          4.348999977111816,
-          4.351999759674072,
-          4.354999542236328,
-          4.357999801635742,
-          4.361000061035156,
-          4.36400032043457,
-          4.367000102996826,
-          4.369999885559082,
-          4.373000144958496,
-          4.375999927520752,
-          4.378999710083008,
-          4.381999969482422,
-          4.385000228881836,
-          4.388000011444092,
-          4.390999794006348,
-          4.394000053405762,
-          4.397000312805176,
-          4.400000095367432,
-          4.4029998779296875,
-          4.405999660491943,
-          4.409000396728516,
-          4.411999702453613,
-          4.414999961853027,
-          4.417999744415283,
-          4.4210004806518555,
-          4.423999786376953,
-          4.426999568939209,
-          4.429999828338623,
-          4.432999610900879,
-          4.435999870300293,
-          4.438999652862549,
-          4.441999912261963,
-          4.444999694824219,
-          4.447999954223633,
-          4.451000213623047,
-          4.4539995193481445,
-          4.457000255584717,
-          4.460000038146973,
-          4.463000297546387,
-          4.465999603271484,
-          4.469000339508057,
-          4.4720001220703125,
-          4.474999904632568,
-          4.478000164031982,
-          4.480999946594238,
-          4.483999729156494,
-          4.486999988555908,
-          4.490000247955322,
-          4.493000030517578,
-          4.495999813079834,
-          4.499000072479248,
-          4.501999855041504,
-          4.505000114440918,
-          4.508000373840332,
-          4.51099967956543,
-          4.513999938964844,
-          4.517000198364258,
-          4.519999980926514,
-          4.5229997634887695,
-          4.525999546051025,
-          4.529000282287598,
-          4.531999588012695,
-          4.534999847412109,
-          4.537999629974365,
-          4.5410003662109375,
-          4.543999671936035,
-          4.546999931335449,
-          4.550000190734863,
-          4.552999973297119,
-          4.556000232696533,
-          4.559000015258789,
-          4.562000274658203,
-          4.565000057220459,
-          4.568000316619873,
-          4.571000099182129,
-          4.573999881744385,
-          4.577000141143799,
-          4.579999923706055,
-          4.5829997062683105,
-          4.585999965667725,
-          4.5889997482299805,
-          4.5920000076293945,
-          4.59499979019165,
-          4.5980000495910645,
-          4.60099983215332,
-          4.604000091552734,
-          4.607000350952148,
-          4.609999656677246,
-          4.613000392913818,
-          4.615999698638916,
-          4.61899995803833,
-          4.621999740600586,
-          4.625,
-          4.628000259399414,
-          4.630999565124512,
-          4.633999824523926,
-          4.63700008392334,
-          4.640000343322754,
-          4.642999649047852,
-          4.645999908447266,
-          4.64900016784668,
-          4.6519999504089355,
-          4.65500020980835,
-          4.6579999923706055,
-          4.660999774932861,
-          4.664000034332275,
-          4.6670002937316895,
-          4.670000076293945,
-          4.672999858856201,
-          4.676000118255615,
-          4.678999900817871,
-          4.681999683380127,
-          4.685000419616699,
-          4.688000202178955,
-          4.690999984741211,
-          4.693999767303467,
-          4.697000026702881,
-          4.699999809265137,
-          4.702999591827393,
-          4.705999851226807,
-          4.7089996337890625,
-          4.711999893188477,
-          4.714999675750732,
-          4.7179999351501465,
-          4.720999717712402,
-          4.723999977111816,
-          4.7270002365112305,
-          4.729999542236328,
-          4.7330002784729,
-          4.736000061035156,
-          4.73900032043457,
-          4.741999626159668,
-          4.74500036239624,
-          4.748000144958496,
-          4.750999927520752,
-          4.754000186920166,
-          4.756999969482422,
-          4.759999752044678,
-          4.763000011444092,
-          4.766000270843506,
-          4.769000053405762,
-          4.771999835968018,
-          4.775000095367432,
-          4.7779998779296875,
-          4.781000137329102,
-          4.783999919891357,
-          4.7870001792907715,
-          4.789999961853027,
-          4.792999744415283,
-          4.796000003814697,
-          4.798999786376953,
-          4.801999568939209,
-          4.805000305175781,
-          4.807999610900879,
-          4.810999870300293,
-          4.813999652862549,
-          4.817000389099121,
-          4.819999694824219,
-          4.822999954223633,
-          4.826000213623047,
-          4.828999996185303,
-          4.832000255584717,
-          4.835000038146973,
-          4.838000297546387,
-          4.841000080108643,
-          4.844000339508057,
-          4.8470001220703125,
-          4.849999904632568,
-          4.853000164031982,
-          4.855999946594238,
-          4.858999729156494,
-          4.861999988555908,
-          4.864999771118164,
-          4.868000030517578,
-          4.870999813079834,
-          4.874000072479248,
-          4.876999855041504,
-          4.87999963760376,
-          4.882999897003174,
-          4.886000156402588,
-          4.888999938964844,
-          4.8919997215271,
-          4.894999980926514,
-          4.8979997634887695,
-          4.901000022888184,
-          4.904000282287598,
-          4.906999588012695,
-          4.909999847412109,
-          4.913000106811523,
-          4.9160003662109375,
-          4.918999671936035,
-          4.921999931335449,
-          4.925000190734863,
-          4.927999973297119,
-          4.931000232696533,
-          4.934000015258789,
-          4.936999797821045,
-          4.940000057220459,
-          4.943000316619873,
-          4.946000099182129,
-          4.948999881744385,
-          4.952000141143799,
-          4.954999923706055,
-          4.9579997062683105,
-          4.961000442504883,
-          4.9639997482299805,
-          4.9670000076293945,
-          4.96999979019165,
-          4.973000526428223,
-          4.97599983215332,
-          4.978999614715576,
-          4.982000350952148,
-          4.984999656677246,
-          4.98799991607666,
-          4.990999698638916,
-          4.994000434875488,
-          4.996999740600586
-         ],
-         "xaxis": "x",
-         "yaxis": "y"
-        },
-        {
-         "nbinsx": 50,
-         "opacity": 0.7,
-         "type": "histogram",
-         "x": [
-          2,
-          2.0012006759643555,
-          2.0024027824401855,
-          2.0036065578460693,
-          2.0048115253448486,
-          2.0060181617736816,
-          2.00722599029541,
-          2.0084354877471924,
-          2.009646415710449,
-          2.0108585357666016,
-          2.0120723247528076,
-          2.0132875442504883,
-          2.0145044326782227,
-          2.0157225131988525,
-          2.016942262649536,
-          2.0181634426116943,
-          2.019386053085327,
-          2.0206103324890137,
-          2.0218358039855957,
-          2.0230629444122314,
-          2.024291515350342,
-          2.0255215167999268,
-          2.0267531871795654,
-          2.0279862880706787,
-          2.0292208194732666,
-          2.030456781387329,
-          2.0316944122314453,
-          2.032933473587036,
-          2.0341742038726807,
-          2.0354161262512207,
-          2.0366597175598145,
-          2.037905216217041,
-          2.039151668548584,
-          2.0404000282287598,
-          2.041649580001831,
-          2.042901039123535,
-          2.0441536903381348,
-          2.045408010482788,
-          2.046663761138916,
-          2.0479211807250977,
-          2.049180507659912,
-          2.050440788269043,
-          2.0517029762268066,
-          2.052966594696045,
-          2.054231882095337,
-          2.0554983615875244,
-          2.0567667484283447,
-          2.0580365657806396,
-          2.0593080520629883,
-          2.0605812072753906,
-          2.0618557929992676,
-          2.063131809234619,
-          2.0644094944000244,
-          2.0656888484954834,
-          2.066969871520996,
-          2.0682523250579834,
-          2.0695364475250244,
-          2.07082200050354,
-          2.0721094608306885,
-          2.0733983516693115,
-          2.0746889114379883,
-          2.0759809017181396,
-          2.0772745609283447,
-          2.0785698890686035,
-          2.079866886138916,
-          2.081165313720703,
-          2.082465648651123,
-          2.0837676525115967,
-          2.085071086883545,
-          2.0863759517669678,
-          2.0876827239990234,
-          2.0889909267425537,
-          2.090301036834717,
-          2.0916125774383545,
-          2.092925786972046,
-          2.094240665435791,
-          2.095557451248169,
-          2.0968756675720215,
-          2.0981955528259277,
-          2.0995171070098877,
-          2.1008403301239014,
-          2.1021652221679688,
-          2.10349178314209,
-          2.1048200130462646,
-          2.106149911880493,
-          2.1074817180633545,
-          2.1088149547576904,
-          2.11014986038208,
-          2.1114864349365234,
-          2.1128249168395996,
-          2.1141650676727295,
-          2.115506649017334,
-          2.1168501377105713,
-          2.1181952953338623,
-          2.119542121887207,
-          2.1208908557891846,
-          2.1222410202026367,
-          2.1235930919647217,
-          2.1249468326568604,
-          2.1263022422790527,
-          2.127659559249878,
-          2.129018545150757,
-          2.1303791999816895,
-          2.131741523742676,
-          2.133105754852295,
-          2.1344716548919678,
-          2.1358394622802734,
-          2.1372087001800537,
-          2.138579845428467,
-          2.1399528980255127,
-          2.1413276195526123,
-          2.1427042484283447,
-          2.1440823078155518,
-          2.1454625129699707,
-          2.1468441486358643,
-          2.1482276916503906,
-          2.14961314201355,
-          2.1510000228881836,
-          2.1523890495300293,
-          2.153779983520508,
-          2.15517258644104,
-          2.156566858291626,
-          2.1579627990722656,
-          2.159360885620117,
-          2.1607606410980225,
-          2.1621620655059814,
-          2.1635653972625732,
-          2.164970636367798,
-          2.1663777828216553,
-          2.1677868366241455,
-          2.1691973209381104,
-          2.170609951019287,
-          2.1720242500305176,
-          2.17344069480896,
-          2.174858570098877,
-          2.176278591156006,
-          2.1777002811431885,
-          2.179124116897583,
-          2.1805496215820312,
-          2.181976795196533,
-          2.183406114578247,
-          2.1848373413085938,
-          2.186270236968994,
-          2.1877050399780273,
-          2.1891417503356934,
-          2.190580368041992,
-          2.192021131515503,
-          2.1934635639190674,
-          2.1949079036712646,
-          2.1963541507720947,
-          2.1978020668029785,
-          2.1992523670196533,
-          2.2007040977478027,
-          2.202157974243164,
-          2.2036139965057373,
-          2.2050716876983643,
-          2.206531524658203,
-          2.2079930305480957,
-          2.209456443786621,
-          2.2109220027923584,
-          2.2123894691467285,
-          2.2138588428497314,
-          2.215330123901367,
-          2.2168033123016357,
-          2.218278646469116,
-          2.2197558879852295,
-          2.2212350368499756,
-          2.2227160930633545,
-          2.2241992950439453,
-          2.225684404373169,
-          2.2271714210510254,
-          2.2286605834960938,
-          2.230151653289795,
-          2.231644630432129,
-          2.233139991760254,
-          2.2346370220184326,
-          2.236135959625244,
-          2.2376370429992676,
-          2.239140272140503,
-          2.240645408630371,
-          2.242152452468872,
-          2.243661642074585,
-          2.2451729774475098,
-          2.2466862201690674,
-          2.248201608657837,
-          2.2497189044952393,
-          2.2512381076812744,
-          2.2527596950531006,
-          2.2542831897735596,
-          2.2558085918426514,
-          2.257336139678955,
-          2.25886607170105,
-          2.2603979110717773,
-          2.2619316577911377,
-          2.26346755027771,
-          2.265005588531494,
-          2.2665457725524902,
-          2.2680881023406982,
-          2.269632339477539,
-          2.271178722381592,
-          2.2727272510528564,
-          2.274277925491333,
-          2.2758307456970215,
-          2.2773854732513428,
-          2.278942584991455,
-          2.2805016040802,
-          2.2820627689361572,
-          2.2836263179779053,
-          2.2851920127868652,
-          2.286759614944458,
-          2.288329601287842,
-          2.2899014949798584,
-          2.291475772857666,
-          2.2930519580841064,
-          2.294630527496338,
-          2.2962112426757812,
-          2.2977943420410156,
-          2.299379348754883,
-          2.300966501235962,
-          2.302555799484253,
-          2.304147481918335,
-          2.305741310119629,
-          2.3073372840881348,
-          2.3089354038238525,
-          2.3105359077453613,
-          2.312138795852661,
-          2.313743829727173,
-          2.3153507709503174,
-          2.316960096359253,
-          2.3185715675354004,
-          2.320185661315918,
-          2.3218016624450684,
-          2.3234200477600098,
-          2.325040817260742,
-          2.3266637325286865,
-          2.3282887935638428,
-          2.32991623878479,
-          2.331545829772949,
-          2.3331778049468994,
-          2.3348121643066406,
-          2.3364486694335938,
-          2.338087320327759,
-          2.339728355407715,
-          2.341372013092041,
-          2.343017816543579,
-          2.344666004180908,
-          2.346316337585449,
-          2.3479690551757812,
-          2.3496241569519043,
-          2.3512814044952393,
-          2.3529410362243652,
-          2.3546032905578613,
-          2.3562676906585693,
-          2.3579344749450684,
-          2.3596036434173584,
-          2.3612751960754395,
-          2.3629491329193115,
-          2.3646249771118164,
-          2.3663039207458496,
-          2.3679847717285156,
-          2.3696682453155518,
-          2.371354103088379,
-          2.373042345046997,
-          2.3747329711914062,
-          2.3764257431030273,
-          2.3781211376190186,
-          2.37981915473938,
-          2.381519317626953,
-          2.3832221031188965,
-          2.384927272796631,
-          2.3866348266601562,
-          2.3883450031280518,
-          2.390057325363159,
-          2.3917722702026367,
-          2.3934898376464844,
-          2.395209550857544,
-          2.3969318866729736,
-          2.3986566066741943,
-          2.400383949279785,
-          2.402114152908325,
-          2.403846025466919,
-          2.405580997467041,
-          2.407318353652954,
-          2.409058094024658,
-          2.4108004570007324,
-          2.4125449657440186,
-          2.414292573928833,
-          2.4160425662994385,
-          2.417794942855835,
-          2.4195501804351807,
-          2.4213075637817383,
-          2.423067569732666,
-          2.424830436706543,
-          2.426595449447632,
-          2.42836332321167,
-          2.430133581161499,
-          2.4319067001342773,
-          2.4336822032928467,
-          2.435460329055786,
-          2.4372410774230957,
-          2.4390244483947754,
-          2.440810203552246,
-          2.442599058151245,
-          2.444390058517456,
-          2.446183919906616,
-          2.4479804039001465,
-          2.449779510498047,
-          2.4515814781188965,
-          2.453385829925537,
-          2.455192804336548,
-          2.457002639770508,
-          2.458814859390259,
-          2.460629940032959,
-          2.46244740486145,
-          2.464268207550049,
-          2.4660913944244385,
-          2.467916965484619,
-          2.469745635986328,
-          2.4715769290924072,
-          2.4734108448028564,
-          2.475247621536255,
-          2.4770867824554443,
-          2.478929042816162,
-          2.48077392578125,
-          2.482621431350708,
-          2.4844722747802734,
-          2.486325263977051,
-          2.4881811141967773,
-          2.490039825439453,
-          2.491901159286499,
-          2.4937655925750732,
-          2.4956324100494385,
-          2.497502565383911,
-          2.499375104904175,
-          2.5012505054473877,
-          2.503129005432129,
-          2.5050101280212402,
-          2.5068938732147217,
-          2.5087809562683105,
-          2.5106701850891113,
-          2.5125627517700195,
-          2.514457941055298,
-          2.5163562297821045,
-          2.5182576179504395,
-          2.5201611518859863,
-          2.5220682621002197,
-          2.523977756500244,
-          2.525890350341797,
-          2.527805805206299,
-          2.52972412109375,
-          2.5316457748413086,
-          2.533569812774658,
-          2.535496950149536,
-          2.5374271869659424,
-          2.5393600463867188,
-          2.5412960052490234,
-          2.5432350635528564,
-          2.5451767444610596,
-          2.54712176322937,
-          2.54906964302063,
-          2.551020383834839,
-          2.552974224090576,
-          2.5549309253692627,
-          2.5568909645080566,
-          2.5588536262512207,
-          2.560819387435913,
-          2.562788486480713,
-          2.5647599697113037,
-          2.56673526763916,
-          2.5687131881713867,
-          2.5706942081451416,
-          2.572678327560425,
-          2.5746653079986572,
-          2.576655626296997,
-          2.5786490440368652,
-          2.5806450843811035,
-          2.5826447010040283,
-          2.5846471786499023,
-          2.586652994155884,
-          2.5886616706848145,
-          2.5906734466552734,
-          2.592688798904419,
-          2.5947067737579346,
-          2.5967280864715576,
-          2.598752498626709,
-          2.6007802486419678,
-          2.602811098098755,
-          2.604844808578491,
-          2.606882095336914,
-          2.6089224815368652,
-          2.6109659671783447,
-          2.6130127906799316,
-          2.615062713623047,
-          2.6171159744262695,
-          2.6191723346710205,
-          2.621232032775879,
-          2.6232950687408447,
-          2.6253609657287598,
-          2.6274304389953613,
-          2.629503011703491,
-          2.6315786838531494,
-          2.6336581707000732,
-          2.6357405185699463,
-          2.637826442718506,
-          2.639915704727173,
-          2.642007827758789,
-          2.644103765487671,
-          2.646202564239502,
-          2.6483049392700195,
-          2.6504108905792236,
-          2.652519941329956,
-          2.654632329940796,
-          2.6567482948303223,
-          2.658867359161377,
-          2.660989999771118,
-          2.663115978240967,
-          2.665245294570923,
-          2.6673779487609863,
-          2.6695139408111572,
-          2.6716537475585938,
-          2.6737966537475586,
-          2.675943374633789,
-          2.678093433380127,
-          2.680246591567993,
-          2.682403564453125,
-          2.684563636779785,
-          2.686727523803711,
-          2.6888949871063232,
-          2.691065549850464,
-          2.693240165710449,
-          2.695417881011963,
-          2.697599172592163,
-          2.69978404045105,
-          2.701972246170044,
-          2.704164505004883,
-          2.70635986328125,
-          2.7085587978363037,
-          2.710761785507202,
-          2.712967872619629,
-          2.7151780128479004,
-          2.7173914909362793,
-          2.7196083068847656,
-          2.7218291759490967,
-          2.724053382873535,
-          2.72628116607666,
-          2.72851300239563,
-          2.730748176574707,
-          2.732987403869629,
-          2.735229730606079,
-          2.737476110458374,
-          2.7397260665893555,
-          2.7419795989990234,
-          2.744237184524536,
-          2.7464981079101562,
-          2.748762845993042,
-          2.7510316371917725,
-          2.7533040046691895,
-          2.755580186843872,
-          2.7578601837158203,
-          2.760143518447876,
-          2.7624311447143555,
-          2.7647221088409424,
-          2.767017126083374,
-          2.7693159580230713,
-          2.771618366241455,
-          2.773925304412842,
-          2.776235580444336,
-          2.7785496711730957,
-          2.7808678150177,
-          2.783189296722412,
-          2.785515308380127,
-          2.7878448963165283,
-          2.7901785373687744,
-          2.792515993118286,
-          2.7948575019836426,
-          2.7972028255462646,
-          2.7995524406433105,
-          2.8019051551818848,
-          2.804262638092041,
-          2.806623697280884,
-          2.8089888095855713,
-          2.8113577365875244,
-          2.8137307167053223,
-          2.816108226776123,
-          2.8184893131256104,
-          2.8208744525909424,
-          2.8232638835906982,
-          2.8256568908691406,
-          2.828054428100586,
-          2.830455780029297,
-          2.8328611850738525,
-          2.835270881652832,
-          2.837684392929077,
-          2.840102434158325,
-          2.842524528503418,
-          2.8449501991271973,
-          2.8473806381225586,
-          2.8498146533966064,
-          2.8522531986236572,
-          2.8546957969665527,
-          2.857142925262451,
-          2.8595941066741943,
-          2.8620493412017822,
-          2.864508867263794,
-          2.8669724464416504,
-          2.8694403171539307,
-          2.8719124794006348,
-          2.874389171600342,
-          2.8768699169158936,
-          2.879354953765869,
-          2.8818440437316895,
-          2.884337902069092,
-          2.886835813522339,
-          2.8893380165100098,
-          2.8918449878692627,
-          2.8943560123443604,
-          2.896871328353882,
-          2.899390935897827,
-          2.9019150733947754,
-          2.9044437408447266,
-          2.9069766998291016,
-          2.9095139503479004,
-          2.9120559692382812,
-          2.914602041244507,
-          2.9171526432037354,
-          2.919708013534546,
-          2.9222676753997803,
-          2.9248318672180176,
-          2.9274003505706787,
-          2.929973602294922,
-          2.932551145553589,
-          2.935133457183838,
-          2.93772029876709,
-          2.9403116703033447,
-          2.9429075717926025,
-          2.9455080032348633,
-          2.948112964630127,
-          2.9507226943969727,
-          2.9533369541168213,
-          2.955955982208252,
-          2.9585797786712646,
-          2.9612081050872803,
-          2.963840961456299,
-          2.9664788246154785,
-          2.969120979309082,
-          2.9717681407928467,
-          2.9744198322296143,
-          2.977076530456543,
-          2.9797375202178955,
-          2.982403516769409,
-          2.985074520111084,
-          2.987750291824341,
-          2.9904305934906006,
-          2.9931156635284424,
-          2.9958057403564453,
-          2.9985008239746094,
-          3.0012004375457764,
-          3.0039048194885254,
-          3.0066146850585938,
-          3.009328842163086,
-          3.0120480060577393,
-          3.014772415161133,
-          3.0175013542175293,
-          3.020235776901245,
-          3.022974729537964,
-          3.0257184505462646,
-          3.0284674167633057,
-          3.031221628189087,
-          3.03398060798645,
-          3.0367443561553955,
-          3.039513349533081,
-          3.042287826538086,
-          3.0450668334960938,
-          3.047851085662842,
-          3.050640344619751,
-          3.0534350872039795,
-          3.056234836578369,
-          3.059039354324341,
-          3.0618491172790527,
-          3.064664363861084,
-          3.0674846172332764,
-          3.07030987739563,
-          3.0731406211853027,
-          3.075976610183716,
-          3.07881760597229,
-          3.0816638469696045,
-          3.0845155715942383,
-          3.0873727798461914,
-          3.0902349948883057,
-          3.09310245513916,
-          3.095975160598755,
-          3.098853588104248,
-          3.1017370223999023,
-          3.104625701904297,
-          3.107520341873169,
-          3.110419988632202,
-          3.1133248805999756,
-          3.1162357330322266,
-          3.1191515922546387,
-          3.122073173522949,
-          3.124999761581421,
-          3.12793231010437,
-          3.1308703422546387,
-          3.1338136196136475,
-          3.136762857437134,
-          3.1397173404693604,
-          3.1426773071289062,
-          3.1456432342529297,
-          3.1486144065856934,
-          3.1515913009643555,
-          3.154573917388916,
-          3.157562255859375,
-          3.1605563163757324,
-          3.163555860519409,
-          3.1665608882904053,
-          3.169572114944458,
-          3.17258882522583,
-          3.1756112575531006,
-          3.1786394119262695,
-          3.181673526763916,
-          3.184713363647461,
-          3.187758684158325,
-          3.190810441970825,
-          3.1938679218292236,
-          3.1969306468963623,
-          3.1999998092651367,
-          3.2030749320983887,
-          3.20615553855896,
-          3.209242343902588,
-          3.2123348712921143,
-          3.2154338359832764,
-          3.218538761138916,
-          3.221649408340454,
-          3.2247660160064697,
-          3.227888584136963,
-          3.231017589569092,
-          3.2341527938842773,
-          3.2372937202453613,
-          3.240440607070923,
-          3.243593692779541,
-          3.246752977371216,
-          3.2499186992645264,
-          3.2530901432037354,
-          3.256268262863159,
-          3.2594523429870605,
-          3.2626426219940186,
-          3.265839099884033,
-          3.269042491912842,
-          3.2722513675689697,
-          3.2754666805267334,
-          3.278688430786133,
-          3.281916379928589,
-          3.285151243209839,
-          3.2883918285369873,
-          3.2916393280029297,
-          3.2948930263519287,
-          3.2981529235839844,
-          3.301419496536255,
-          3.304692268371582,
-          3.3079721927642822,
-          3.31125807762146,
-          3.3145508766174316,
-          3.31784987449646,
-          3.321155548095703,
-          3.324467897415161,
-          3.327786684036255,
-          3.3311123847961426,
-          3.334444761276245,
-          3.3377835750579834,
-          3.3411290645599365,
-          3.3444812297821045,
-          3.3478405475616455,
-          3.3512065410614014,
-          3.354578971862793,
-          3.3579583168029785,
-          3.361344337463379,
-          3.3647372722625732,
-          3.3681373596191406,
-          3.371544122695923,
-          3.374957799911499,
-          3.378378391265869,
-          3.381805658340454,
-          3.385240077972412,
-          3.3886821269989014,
-          3.3921303749084473,
-          3.395585775375366,
-          3.399048328399658,
-          3.402517795562744,
-          3.405994176864624,
-          3.409477949142456,
-          3.412968873977661,
-          3.4164674282073975,
-          3.4199726581573486,
-          3.423485040664673,
-          3.42700457572937,
-          3.4305317401885986,
-          3.434065818786621,
-          3.437607526779175,
-          3.4411561489105225,
-          3.4447121620178223,
-          3.448275566101074,
-          3.4518463611602783,
-          3.4554247856140137,
-          3.4590108394622803,
-          3.462603807449341,
-          3.4662044048309326,
-          3.4698123931884766,
-          3.473428249359131,
-          3.4770517349243164,
-          3.480682373046875,
-          3.484320640563965,
-          3.487966299057007,
-          3.491619825363159,
-          3.495281457901001,
-          3.498950242996216,
-          3.50262713432312,
-          3.5063114166259766,
-          3.5100033283233643,
-          3.5137031078338623,
-          3.517411470413208,
-          3.5211267471313477,
-          3.5248498916625977,
-          3.5285816192626953,
-          3.532320737838745,
-          3.5360677242279053,
-          3.539822578430176,
-          3.5435855388641357,
-          3.5473573207855225,
-          3.5511364936828613,
-          3.5549235343933105,
-          3.558718681335449,
-          3.5625221729278564,
-          3.566333770751953,
-          3.5701537132263184,
-          3.573981523513794,
-          3.577817440032959,
-          3.5816617012023926,
-          3.5855140686035156,
-          3.5893752574920654,
-          3.593244791030884,
-          3.5971224308013916,
-          3.601008176803589,
-          3.604902505874634,
-          3.6088054180145264,
-          3.6127161979675293,
-          3.616636276245117,
-          3.6205644607543945,
-          3.6245014667510986,
-          3.6284468173980713,
-          3.6324007511138916,
-          3.6363632678985596,
-          3.6403350830078125,
-          3.644315004348755,
-          3.648303508758545,
-          3.6523008346557617,
-          3.656306743621826,
-          3.6603219509124756,
-          3.6643457412719727,
-          3.6683785915374756,
-          3.672420024871826,
-          3.6764702796936035,
-          3.6805295944213867,
-          3.684597969055176,
-          3.688675880432129,
-          3.6927623748779297,
-          3.6968576908111572,
-          3.7009620666503906,
-          3.705075979232788,
-          3.7091987133026123,
-          3.7133309841156006,
-          3.7174723148345947,
-          3.7216224670410156,
-          3.7257821559906006,
-          3.7299511432647705,
-          3.7341299057006836,
-          3.7383179664611816,
-          3.7425150871276855,
-          3.7467215061187744,
-          3.7509374618530273,
-          3.7551629543304443,
-          3.7593979835510254,
-          3.7636430263519287,
-          3.767897129058838,
-          3.7721614837646484,
-          3.776434898376465,
-          3.7807180881500244,
-          3.785010814666748,
-          3.7893145084381104,
-          3.7936267852783203,
-          3.7979490756988525,
-          3.802281141281128,
-          3.8066232204437256,
-          3.8109755516052246,
-          3.8153374195098877,
-          3.8197097778320312,
-          3.824091672897339,
-          3.828483819961548,
-          3.8328857421875,
-          3.8372981548309326,
-          3.841721296310425,
-          3.846153974533081,
-          3.8505969047546387,
-          3.8550498485565186,
-          3.859513759613037,
-          3.863987684249878,
-          3.8684723377227783,
-          3.872966766357422,
-          3.877471923828125,
-          3.8819873332977295,
-          3.8865134716033936,
-          3.891050100326538,
-          3.8955979347229004,
-          3.900156259536743,
-          3.9047248363494873,
-          3.909303903579712,
-          3.913893938064575,
-          3.918494939804077,
-          3.9231069087982178,
-          3.927729606628418,
-          3.932363271713257,
-          3.9370076656341553,
-          3.9416630268096924,
-          3.9463295936584473,
-          3.951007843017578,
-          3.9556963443756104,
-          3.9603960514068604,
-          3.965106964111328,
-          3.9698290824890137,
-          3.974562883377075,
-          3.9793074131011963,
-          3.9840638637542725,
-          3.9888312816619873,
-          3.993610143661499,
-          3.9984004497528076,
-          4.003202438354492,
-          4.008016109466553,
-          4.01284122467041,
-          4.0176777839660645,
-          4.022526264190674,
-          4.027386665344238,
-          4.032258033752441,
-          4.0371413230896,
-          4.042037010192871,
-          4.046944618225098,
-          4.051863670349121,
-          4.0567946434021,
-          4.06173849105835,
-          4.0666937828063965,
-          4.071661472320557,
-          4.076640605926514,
-          4.081632137298584,
-          4.086636543273926,
-          4.091652870178223,
-          4.096681594848633,
-          4.101722717285156,
-          4.106776237487793,
-          4.111842155456543,
-          4.116920471191406,
-          4.122011184692383,
-          4.127115249633789,
-          4.13223123550415,
-          4.137360095977783,
-          4.1425018310546875,
-          4.147656440734863,
-          4.1528239250183105,
-          4.158004283905029,
-          4.1631975173950195,
-          4.168403625488281,
-          4.173623085021973,
-          4.178854942321777,
-          4.184100151062012,
-          4.189359188079834,
-          4.1946306228637695,
-          4.199915885925293,
-          4.205214023590088,
-          4.210526466369629,
-          4.215851306915283,
-          4.221189975738525,
-          4.2265424728393555,
-          4.231908321380615,
-          4.237287998199463,
-          4.24268102645874,
-          4.248088359832764,
-          4.253509044647217,
-          4.258944034576416,
-          4.264392375946045,
-          4.269854545593262,
-          4.275331497192383,
-          4.280821800231934,
-          4.2863264083862305,
-          4.291845321655273,
-          4.297379016876221,
-          4.302926063537598,
-          4.308487892150879,
-          4.314063549041748,
-          4.319654941558838,
-          4.325259208679199,
-          4.330878734588623,
-          4.336513042449951,
-          4.342162132263184,
-          4.34782600402832,
-          4.353504180908203,
-          4.359197616577148,
-          4.364906311035156,
-          4.37062931060791,
-          4.376367568969727,
-          4.382120609283447,
-          4.387889385223389,
-          4.393672943115234,
-          4.399472236633301,
-          4.4052863121032715,
-          4.411116123199463,
-          4.416961193084717,
-          4.422821521759033,
-          4.42869758605957,
-          4.434589862823486,
-          4.440497398376465,
-          4.446420669555664,
-          4.452359676361084,
-          4.458314895629883,
-          4.464285850524902,
-          4.470272541046143,
-          4.476275444030762,
-          4.482295036315918,
-          4.488330364227295,
-          4.494381904602051,
-          4.500450134277344,
-          4.506534576416016,
-          4.512635231018066,
-          4.518752574920654,
-          4.524886608123779,
-          4.531037330627441,
-          4.537204742431641,
-          4.543388843536377,
-          4.549590110778809,
-          4.5558085441589355,
-          4.5620436668396,
-          4.568295955657959,
-          4.5745649337768555,
-          4.580852031707764,
-          4.587155818939209,
-          4.593477249145508,
-          4.599815845489502,
-          4.606172561645508,
-          4.612545967102051,
-          4.6189374923706055,
-          4.625346660614014,
-          4.631774425506592,
-          4.638218879699707,
-          4.644681453704834,
-          4.651162624359131,
-          4.6576619148254395,
-          4.66417932510376,
-          4.670714378356934,
-          4.6772685050964355,
-          4.683840751647949,
-          4.690431594848633,
-          4.697041034698486,
-          4.703668594360352,
-          4.710315704345703,
-          4.716980934143066,
-          4.723665237426758,
-          4.730368614196777,
-          4.737091541290283,
-          4.743833065032959,
-          4.750593662261963,
-          4.757373809814453,
-          4.7641730308532715,
-          4.770992279052734,
-          4.777830600738525,
-          4.784688949584961,
-          4.791566848754883,
-          4.798464775085449,
-          4.805381774902344,
-          4.812319278717041,
-          4.819277286529541,
-          4.826254844665527,
-          4.833252906799316,
-          4.84027099609375,
-          4.8473100662231445,
-          4.854369163513184,
-          4.861448764801025,
-          4.86854887008667,
-          4.875670909881592,
-          4.8828125,
-          4.889975547790527,
-          4.897159576416016,
-          4.904365062713623,
-          4.911591529846191,
-          4.918838977813721,
-          4.926108360290527,
-          4.933399200439453,
-          4.94071102142334,
-          4.948045253753662,
-          4.955401420593262,
-          4.9627790451049805,
-          4.970178604125977,
-          4.977600574493408,
-          4.985044956207275,
-          4.99251127243042
-         ],
-         "xaxis": "x2",
-         "yaxis": "y2"
-        },
-        {
-         "nbinsx": 50,
-         "opacity": 0.7,
-         "type": "histogram",
-         "x": [
-          1.9999998807907104,
-          2.0023250579833984,
-          2.0046520233154297,
-          2.006979465484619,
-          2.0093090534210205,
-          2.0116395950317383,
-          2.0139718055725098,
-          2.0163047313690186,
-          2.0186398029327393,
-          2.020975351333618,
-          2.023313045501709,
-          2.025651693344116,
-          2.027991771697998,
-          2.0303330421447754,
-          2.0326759815216064,
-          2.035020112991333,
-          2.0373659133911133,
-          2.039712429046631,
-          2.0420608520507812,
-          2.0444107055664062,
-          2.0467615127563477,
-          2.0491137504577637,
-          2.051467180252075,
-          2.0538220405578613,
-          2.056178331375122,
-          2.0585358142852783,
-          2.060894727706909,
-          2.0632550716400146,
-          2.065617084503174,
-          2.0679800510406494,
-          2.0703446865081787,
-          2.0727100372314453,
-          2.0750772953033447,
-          2.0774457454681396,
-          2.0798158645629883,
-          2.082186698913574,
-          2.084559440612793,
-          2.086933135986328,
-          2.089308261871338,
-          2.0916848182678223,
-          2.094062566757202,
-          2.0964417457580566,
-          2.098822832107544,
-          2.1012046337127686,
-          2.1035878658294678,
-          2.1059725284576416,
-          2.108358860015869,
-          2.110746145248413,
-          2.1131350994110107,
-          2.1155247688293457,
-          2.1179163455963135,
-          2.1203091144561768,
-          2.1227030754089355,
-          2.125098466873169,
-          2.127495288848877,
-          2.1298933029174805,
-          2.132293224334717,
-          2.1346940994262695,
-          2.1370961666107178,
-          2.1394996643066406,
-          2.141904830932617,
-          2.1443111896514893,
-          2.146718978881836,
-          2.14912748336792,
-          2.151538133621216,
-          2.1539502143859863,
-          2.156363010406494,
-          2.1587769985198975,
-          2.1611931324005127,
-          2.1636102199554443,
-          2.1660284996032715,
-          2.1684482097625732,
-          2.1708693504333496,
-          2.1732916831970215,
-          2.175715684890747,
-          2.178140878677368,
-          2.180567741394043,
-          2.182995557785034,
-          2.1854248046875,
-          2.1878552436828613,
-          2.1902875900268555,
-          2.192720413208008,
-          2.195155382156372,
-          2.1975908279418945,
-          2.200028419494629,
-          2.2024667263031006,
-          2.204907178878784,
-          2.207348346710205,
-          2.209791421890259,
-          2.212235450744629,
-          2.2146809101104736,
-          2.217127561569214,
-          2.219576120376587,
-          2.2220258712768555,
-          2.2244765758514404,
-          2.226928472518921,
-          2.229382276535034,
-          2.231837034225464,
-          2.234293222427368,
-          2.236750841140747,
-          2.2392096519470215,
-          2.2416698932647705,
-          2.2441320419311523,
-          2.2465949058532715,
-          2.2490594387054443,
-          2.2515249252319336,
-          2.2539920806884766,
-          2.256460428237915,
-          2.2589306831359863,
-          2.2614011764526367,
-          2.263874053955078,
-          2.266347885131836,
-          2.2688229084014893,
-          2.2712996006011963,
-          2.2737772464752197,
-          2.2762563228607178,
-          2.2787370681762695,
-          2.281219005584717,
-          2.2837021350860596,
-          2.286186695098877,
-          2.288673162460327,
-          2.2911605834960938,
-          2.293649196624756,
-          2.2961390018463135,
-          2.298630475997925,
-          2.3011231422424316,
-          2.303617238998413,
-          2.30611252784729,
-          2.3086097240448,
-          2.3111073970794678,
-          2.3136072158813477,
-          2.3161075115203857,
-          2.318610429763794,
-          2.3211135864257812,
-          2.3236186504364014,
-          2.326124906539917,
-          2.328632354736328,
-          2.331141233444214,
-          2.3336517810821533,
-          2.3361637592315674,
-          2.338676691055298,
-          2.3411905765533447,
-          2.3437066078186035,
-          2.3462233543395996,
-          2.3487420082092285,
-          2.351261615753174,
-          2.3537826538085938,
-          2.3563051223754883,
-          2.3588292598724365,
-          2.361354112625122,
-          2.3638811111450195,
-          2.366408348083496,
-          2.3689379692077637,
-          2.3714685440063477,
-          2.374000310897827,
-          2.3765335083007812,
-          2.379068374633789,
-          2.3816041946411133,
-          2.384141445159912,
-          2.3866801261901855,
-          2.3892199993133545,
-          2.3917617797851562,
-          2.3943042755126953,
-          2.396848440170288,
-          2.3993937969207764,
-          2.40194034576416,
-          2.4044888019561768,
-          2.4070382118225098,
-          2.4095892906188965,
-          2.4121413230895996,
-          2.4146947860717773,
-          2.4172496795654297,
-          2.4198057651519775,
-          2.42236328125,
-          2.424922227859497,
-          2.4274823665618896,
-          2.430044412612915,
-          2.4326069355010986,
-          2.435171604156494,
-          2.437737464904785,
-          2.4403045177459717,
-          2.4428727626800537,
-          2.4454424381256104,
-          2.4480133056640625,
-          2.4505860805511475,
-          2.453160285949707,
-          2.455734968185425,
-          2.4583117961883545,
-          2.4608895778656006,
-          2.463468313217163,
-          2.4660491943359375,
-          2.468630790710449,
-          2.4712140560150146,
-          2.4737985134124756,
-          2.4763848781585693,
-          2.4789719581604004,
-          2.4815609455108643,
-          2.4841506481170654,
-          2.4867422580718994,
-          2.48933482170105,
-          2.491929292678833,
-          2.4945242404937744,
-          2.4971210956573486,
-          2.4997189044952393,
-          2.5023181438446045,
-          2.5049192905426025,
-          2.507521867752075,
-          2.510124921798706,
-          2.512730121612549,
-          2.515336036682129,
-          2.5179436206817627,
-          2.520552396774292,
-          2.523162603378296,
-          2.5257744789123535,
-          2.5283877849578857,
-          2.5310018062591553,
-          2.5336177349090576,
-          2.536234140396118,
-          2.5388529300689697,
-          2.5414724349975586,
-          2.544093608856201,
-          2.5467159748077393,
-          2.549339532852173,
-          2.5519649982452393,
-          2.5545918941497803,
-          2.5572192668914795,
-          2.5598485469818115,
-          2.562479019165039,
-          2.565110921859741,
-          2.567744493484497,
-          2.570378541946411,
-          2.573014736175537,
-          2.5756516456604004,
-          2.5782904624938965,
-          2.580930471420288,
-          2.5835721492767334,
-          2.586214780807495,
-          2.5888586044311523,
-          2.591503858566284,
-          2.5941505432128906,
-          2.5967986583709717,
-          2.5994484424591064,
-          2.6020994186401367,
-          2.6047515869140625,
-          2.607404947280884,
-          2.6100597381591797,
-          2.612715721130371,
-          2.615373373031616,
-          2.618032217025757,
-          2.620692253112793,
-          2.6233537197113037,
-          2.626016616821289,
-          2.6286816596984863,
-          2.631347179412842,
-          2.634014129638672,
-          2.6366825103759766,
-          2.6393520832061768,
-          2.6420233249664307,
-          2.64469575881958,
-          2.647369384765625,
-          2.6500449180603027,
-          2.6527209281921387,
-          2.6553988456726074,
-          2.6580777168273926,
-          2.6607584953308105,
-          2.663440227508545,
-          2.666123390197754,
-          2.6688082218170166,
-          2.6714937686920166,
-          2.6741812229156494,
-          2.676870107650757,
-          2.6795597076416016,
-          2.682251214981079,
-          2.684943914413452,
-          2.6876378059387207,
-          2.690333127975464,
-          2.6930301189422607,
-          2.695727825164795,
-          2.698427438735962,
-          2.7011282444000244,
-          2.7038307189941406,
-          2.706533193588257,
-          2.7092387676239014,
-          2.711944818496704,
-          2.7146522998809814,
-          2.7173614501953125,
-          2.720071315765381,
-          2.722783088684082,
-          2.725496530532837,
-          2.728210210800171,
-          2.730926275253296,
-          2.733643054962158,
-          2.736361265182495,
-          2.7390809059143066,
-          2.7418019771575928,
-          2.7445242404937744,
-          2.7472479343414307,
-          2.7499728202819824,
-          2.752700090408325,
-          2.755427360534668,
-          2.7581567764282227,
-          2.7608871459960938,
-          2.7636189460754395,
-          2.7663521766662598,
-          2.7690865993499756,
-          2.771822452545166,
-          2.7745602130889893,
-          2.7772979736328125,
-          2.780038595199585,
-          2.7827799320220947,
-          2.7855224609375,
-          2.78826642036438,
-          2.7910118103027344,
-          2.7937586307525635,
-          2.796506404876709,
-          2.7992560863494873,
-          2.8020071983337402,
-          2.8047587871551514,
-          2.8075125217437744,
-          2.810267210006714,
-          2.813023328781128,
-          2.8157806396484375,
-          2.818539619445801,
-          2.8212995529174805,
-          2.824061870574951,
-          2.8268239498138428,
-          2.8295888900756836,
-          2.8323545455932617,
-          2.8351213932037354,
-          2.8378896713256836,
-          2.8406591415405273,
-          2.8434300422668457,
-          2.8462023735046387,
-          2.8489761352539062,
-          2.8517513275146484,
-          2.854527473449707,
-          2.8573057651519775,
-          2.8600850105285645,
-          2.8628652095794678,
-          2.865647077560425,
-          2.8684301376342773,
-          2.8712146282196045,
-          2.8740007877349854,
-          2.8767879009246826,
-          2.8795769214630127,
-          2.882366418838501,
-          2.885157823562622,
-          2.8879504203796387,
-          2.89074444770813,
-          2.8935396671295166,
-          2.896336317062378,
-          2.8991341590881348,
-          2.9019343852996826,
-          2.9047341346740723,
-          2.9075369834899902,
-          2.9103403091430664,
-          2.913145065307617,
-          2.9159510135650635,
-          2.9187583923339844,
-          2.92156720161438,
-          2.92437744140625,
-          2.927189350128174,
-          2.930001974105835,
-          2.93281626701355,
-          2.93563175201416,
-          2.938448905944824,
-          2.941267251968384,
-          2.944086790084839,
-          2.9469077587127686,
-          2.9497299194335938,
-          2.9525539875030518,
-          2.955378532409668,
-          2.9582056999206543,
-          2.9610331058502197,
-          2.963862419128418,
-          2.9666926860809326,
-          2.969524621963501,
-          2.9723575115203857,
-          2.975192070007324,
-          2.978027820587158,
-          2.980865240097046,
-          2.983703374862671,
-          2.986544132232666,
-          2.9893853664398193,
-          2.992227792739868,
-          2.9950716495513916,
-          2.9979169368743896,
-          3.000763416290283,
-          3.0036113262176514,
-          3.006460666656494,
-          3.009312152862549,
-          3.0121636390686035,
-          3.015017509460449,
-          3.0178720951080322,
-          3.020728349685669,
-          3.023585557937622,
-          3.026444435119629,
-          3.0293045043945312,
-          3.0321667194366455,
-          3.0350286960601807,
-          3.037893772125244,
-          3.0407583713531494,
-          3.043626070022583,
-          3.046494245529175,
-          3.049363851547241,
-          3.052234649658203,
-          3.0551068782806396,
-          3.057981014251709,
-          3.0608558654785156,
-          3.063732147216797,
-          3.0666098594665527,
-          3.0694892406463623,
-          3.072369337081909,
-          3.075251340866089,
-          3.078134298324585,
-          3.0810189247131348,
-          3.083904504776001,
-          3.086791753768921,
-          3.0896809101104736,
-          3.0925700664520264,
-          3.0954620838165283,
-          3.0983545780181885,
-          3.101248264312744,
-          3.1041436195373535,
-          3.1070401668548584,
-          3.109938144683838,
-          3.112837791442871,
-          3.1157379150390625,
-          3.118640661239624,
-          3.121544122695923,
-          3.124448776245117,
-          3.127354860305786,
-          3.1302621364593506,
-          3.1331708431243896,
-          3.1360809803009033,
-          3.1389923095703125,
-          3.1419055461883545,
-          3.1448192596435547,
-          3.147735595703125,
-          3.1506524085998535,
-          3.1535706520080566,
-          3.1564900875091553,
-          3.1594109535217285,
-          3.1623332500457764,
-          3.165257692337036,
-          3.1681816577911377,
-          3.1711089611053467,
-          3.1740360260009766,
-          3.1769649982452393,
-          3.1798958778381348,
-          3.1828272342681885,
-          3.185760498046875,
-          3.1886954307556152,
-          3.1916308403015137,
-          3.194568634033203,
-          3.1975061893463135,
-          3.200446844100952,
-          3.203387975692749,
-          3.2063305377960205,
-          3.2092742919921875,
-          3.212219476699829,
-          3.2151660919189453,
-          3.2181143760681152,
-          3.2210633754730225,
-          3.2240142822265625,
-          3.226966381072998,
-          3.229919672012329,
-          3.232874631881714,
-          3.235830545425415,
-          3.23878812789917,
-          3.241746664047241,
-          3.244706869125366,
-          3.247668981552124,
-          3.2506308555603027,
-          3.2535958290100098,
-          3.256561279296875,
-          3.259528160095215,
-          3.26249623298645,
-          3.26546573638916,
-          3.2684366703033447,
-          3.271409034729004,
-          3.2743828296661377,
-          3.277357339859009,
-          3.280333995819092,
-          3.2833120822906494,
-          3.2862911224365234,
-          3.289271354675293,
-          3.292253017425537,
-          3.295236110687256,
-          3.29822039604187,
-          3.301206588745117,
-          3.3041932582855225,
-          3.3071820735931396,
-          3.3101718425750732,
-          3.3131635189056396,
-          3.3161559104919434,
-          3.3191492557525635,
-          3.3221449851989746,
-          3.325141429901123,
-          3.328139305114746,
-          3.3311386108398438,
-          3.334139108657837,
-          3.337141990661621,
-          3.3401453495025635,
-          3.343149423599243,
-          3.3461554050445557,
-          3.349163293838501,
-          3.3521718978881836,
-          3.355181932449341,
-          3.3581933975219727,
-          3.3612060546875,
-          3.364220142364502,
-          3.3672356605529785,
-          3.370253324508667,
-          3.3732714653015137,
-          3.376291036605835,
-          3.3793118000030518,
-          3.382333993911743,
-          3.385357618331909,
-          3.3883824348449707,
-          3.391409158706665,
-          3.3944365978240967,
-          3.397465705871582,
-          3.400496006011963,
-          3.4035279750823975,
-          3.4065611362457275,
-          3.409595489501953,
-          3.412631034851074,
-          3.415668249130249,
-          3.4187066555023193,
-          3.421746253967285,
-          3.424788236618042,
-          3.427830696105957,
-          3.4308745861053467,
-          3.433919668197632,
-          3.4369661808013916,
-          3.440014123916626,
-          3.443063259124756,
-          3.4461138248443604,
-          3.4491662979125977,
-          3.452219009399414,
-          3.4552736282348633,
-          3.4583306312561035,
-          3.461387872695923,
-          3.464446544647217,
-          3.4675066471099854,
-          3.4705679416656494,
-          3.473630666732788,
-          3.4766948223114014,
-          3.4797606468200684,
-          3.4828274250030518,
-          3.4858953952789307,
-          3.4889655113220215,
-          3.4920363426208496,
-          3.4951083660125732,
-          3.4981822967529297,
-          3.5012567043304443,
-          3.504333019256592,
-          3.5074105262756348,
-          3.5104904174804688,
-          3.513570785522461,
-          3.5166523456573486,
-          3.5197348594665527,
-          3.522819757461548,
-          3.5259053707122803,
-          3.5289924144744873,
-          3.532081127166748,
-          3.5351710319519043,
-          3.538261651992798,
-          3.541353940963745,
-          3.5444488525390625,
-          3.547544002532959,
-          3.550640344619751,
-          3.5537381172180176,
-          3.556837320327759,
-          3.5599379539489746,
-          3.563039779663086,
-          3.56614351272583,
-          3.5692481994628906,
-          3.5723540782928467,
-          3.5754618644714355,
-          3.578570604324341,
-          3.5816805362701416,
-          3.584791898727417,
-          3.587904930114746,
-          3.5910186767578125,
-          3.5941340923309326,
-          3.5972516536712646,
-          3.600369691848755,
-          3.6034891605377197,
-          3.606610059738159,
-          3.609732151031494,
-          3.6128556728363037,
-          3.615980625152588,
-          3.6191067695617676,
-          3.6222352981567383,
-          3.62536358833313,
-          3.6284940242767334,
-          3.6316261291503906,
-          3.634758949279785,
-          3.6378931999206543,
-          3.641028881072998,
-          3.6441659927368164,
-          3.6473042964935303,
-          3.6504440307617188,
-          3.6535861492156982,
-          3.6567280292510986,
-          3.65987229347229,
-          3.6630170345306396,
-          3.666163921356201,
-          3.669311761856079,
-          3.6724607944488525,
-          3.675611734390259,
-          3.6787636280059814,
-          3.6819164752960205,
-          3.6850714683532715,
-          3.688227891921997,
-          3.691385269165039,
-          3.6945438385009766,
-          3.6977038383483887,
-          3.7008650302886963,
-          3.7040278911590576,
-          3.7071919441223145,
-          3.710358142852783,
-          3.713524341583252,
-          3.7166924476623535,
-          3.7198615074157715,
-          3.7230331897735596,
-          3.726205348968506,
-          3.7293789386749268,
-          3.732553720474243,
-          3.735729932785034,
-          3.7389073371887207,
-          3.742086410522461,
-          3.745266914367676,
-          3.7484490871429443,
-          3.75163197517395,
-          3.7548162937164307,
-          3.7580020427703857,
-          3.7611889839172363,
-          3.7643773555755615,
-          3.7675673961639404,
-          3.770758628845215,
-          3.7739508152008057,
-          3.7771451473236084,
-          3.7803401947021484,
-          3.783536672592163,
-          3.7867345809936523,
-          3.789933681488037,
-          3.7931342124938965,
-          3.7963359355926514,
-          3.7995402812957764,
-          3.8027443885803223,
-          3.805950164794922,
-          3.809157371520996,
-          3.812366485595703,
-          3.8155765533447266,
-          3.8187878131866455,
-          3.822000503540039,
-          3.8252148628234863,
-          3.828429937362671,
-          3.831646680831909,
-          3.834865093231201,
-          3.8380849361419678,
-          3.841305732727051,
-          3.84452748298645,
-          3.8477513790130615,
-          3.8509762287139893,
-          3.8542022705078125,
-          3.8574302196502686,
-          3.860659122467041,
-          3.863889455795288,
-          3.8671209812164307,
-          3.870354413986206,
-          3.873588800430298,
-          3.876824378967285,
-          3.8800618648529053,
-          3.8832995891571045,
-          3.8865392208099365,
-          3.8897812366485596,
-          3.893023729324341,
-          3.8962669372558594,
-          3.8995120525360107,
-          3.902758836746216,
-          3.9060068130493164,
-          3.9092557430267334,
-          3.912506341934204,
-          3.9157586097717285,
-          3.9190118312835693,
-          3.9222660064697266,
-          3.9255218505859375,
-          3.9287800788879395,
-          3.9320385456085205,
-          3.935297966003418,
-          3.9385597705841064,
-          3.9418225288391113,
-          3.9450864791870117,
-          3.9483518600463867,
-          3.9516189098358154,
-          3.9548871517181396,
-          3.9581563472747803,
-          3.961427688598633,
-          3.9646997451782227,
-          3.967973232269287,
-          3.9712483882904053,
-          3.974524736404419,
-          3.97780179977417,
-          3.981081008911133,
-          3.9843616485595703,
-          3.987643241882324,
-          3.9909257888793945,
-          3.9942104816436768,
-          3.9974961280822754,
-          4.0007829666137695,
-          4.004071235656738,
-          4.007361888885498,
-          4.010653018951416,
-          4.01394510269165,
-          4.017238140106201,
-          4.020534038543701,
-          4.023830413818359,
-          4.027128219604492,
-          4.0304274559021,
-          4.033727645874023,
-          4.03702974319458,
-          4.040332794189453,
-          4.043638229370117,
-          4.0469441413879395,
-          4.050251483917236,
-          4.053560256958008,
-          4.056869983673096,
-          4.060181140899658,
-          4.063493728637695,
-          4.066807746887207,
-          4.070123195648193,
-          4.073440074920654,
-          4.076758861541748,
-          4.080078125,
-          4.083398818969727,
-          4.086720943450928,
-          4.0900444984436035,
-          4.093369483947754,
-          4.096695423126221,
-          4.1000237464904785,
-          4.1033525466918945,
-          4.106681823730469,
-          4.110013484954834,
-          4.11334753036499,
-          4.1166815757751465,
-          4.120017051696777,
-          4.123353958129883,
-          4.126692295074463,
-          4.130032062530518,
-          4.133372783660889,
-          4.136716365814209,
-          4.140059947967529,
-          4.143404960632324,
-          4.146751403808594,
-          4.150099277496338,
-          4.153448104858398,
-          4.156798839569092,
-          4.160150527954102,
-          4.163503646850586,
-          4.166858196258545,
-          4.1702141761779785,
-          4.173572063446045,
-          4.176930904388428,
-          4.180290699005127,
-          4.183651924133301,
-          4.187014579772949,
-          4.190378665924072,
-          4.193743705749512,
-          4.1971116065979,
-          4.200479507446289,
-          4.203847885131836,
-          4.20721960067749,
-          4.210591793060303,
-          4.213964939117432,
-          4.217339992523193,
-          4.2207159996032715,
-          4.224093437194824,
-          4.227472305297852,
-          4.2308526039123535,
-          4.234234809875488,
-          4.2376179695129395,
-          4.241002082824707,
-          4.244387626647949,
-          4.247774600982666,
-          4.251163005828857,
-          4.254552364349365,
-          4.257943630218506,
-          4.261336803436279,
-          4.2647294998168945,
-          4.268125534057617,
-          4.27152156829834,
-          4.274919509887695,
-          4.278318405151367,
-          4.281719207763672,
-          4.285120964050293,
-          4.288524150848389,
-          4.291929244995117,
-          4.295335292816162,
-          4.298742294311523,
-          4.302151203155518,
-          4.305561065673828,
-          4.308972358703613,
-          4.312384605407715,
-          4.315799713134766,
-          4.3192138671875,
-          4.322630405426025,
-          4.326048374176025,
-          4.329468727111816,
-          4.332889556884766,
-          4.3363118171691895,
-          4.33973503112793,
-          4.3431596755981445,
-          4.346585750579834,
-          4.350013256072998,
-          4.353443145751953,
-          4.356873512268066,
-          4.360304832458496,
-          4.363736629486084,
-          4.367171764373779,
-          4.370607376098633,
-          4.374044418334961,
-          4.3774824142456055,
-          4.380922317504883,
-          4.384363174438477,
-          4.387806415557861,
-          4.391250133514404,
-          4.394695281982422,
-          4.398141384124756,
-          4.401589393615723,
-          4.405038356781006,
-          4.408488750457764,
-          4.4119415283203125,
-          4.4153947830200195,
-          4.418848037719727,
-          4.422303676605225,
-          4.425762176513672,
-          4.429220676422119,
-          4.432680606842041,
-          4.436141490936279,
-          4.43960428237915,
-          4.443068027496338,
-          4.446533203125,
-          4.449999809265137,
-          4.4534687995910645,
-          4.45693826675415,
-          4.460409164428711,
-          4.463881015777588,
-          4.4673542976379395,
-          4.470829010009766,
-          4.474305152893066,
-          4.477782726287842,
-          4.481261253356934,
-          4.484741687774658,
-          4.488224029541016,
-          4.491706848144531,
-          4.4951910972595215,
-          4.498676776885986,
-          4.502163410186768,
-          4.505651950836182,
-          4.509141445159912,
-          4.512633323669434,
-          4.516125679016113,
-          4.519618034362793,
-          4.523114204406738,
-          4.526610374450684,
-          4.530108451843262,
-          4.533607482910156,
-          4.537107467651367,
-          4.540609359741211,
-          4.544112682342529,
-          4.547616958618164,
-          4.55112361907959,
-          4.554630756378174,
-          4.558139324188232,
-          4.561649322509766,
-          4.565160274505615,
-          4.568673133850098,
-          4.5721869468688965,
-          4.57570219039917,
-          4.579218864440918,
-          4.582736968994141,
-          4.586256980895996,
-          4.589777946472168,
-          4.593299865722656,
-          4.596823215484619,
-          4.600347995758057,
-          4.6038737297058105,
-          4.607401371002197,
-          4.610930919647217,
-          4.614461421966553,
-          4.617992877960205,
-          4.621525287628174,
-          4.625059604644775,
-          4.628593921661377,
-          4.632132053375244,
-          4.635670185089111,
-          4.639209747314453,
-          4.642751693725586,
-          4.6462931632995605,
-          4.649836540222168,
-          4.653382778167725,
-          4.656929016113281,
-          4.6604766845703125,
-          4.664025783538818,
-          4.667575836181641,
-          4.671127796173096,
-          4.674680709838867,
-          4.6782355308532715,
-          4.681791305541992,
-          4.685349464416504,
-          4.688906669616699,
-          4.69246768951416,
-          4.696028709411621,
-          4.699591159820557,
-          4.703155040740967,
-          4.706721305847168,
-          4.710287094116211,
-          4.713855743408203,
-          4.717424392700195,
-          4.720995903015137,
-          4.724567890167236,
-          4.7281413078308105,
-          4.731715679168701,
-          4.735292911529541,
-          4.7388691902160645,
-          4.742447853088379,
-          4.746027946472168,
-          4.749609470367432,
-          4.753193378448486,
-          4.756777763366699,
-          4.7603631019592285,
-          4.763949871063232,
-          4.767538070678711,
-          4.7711286544799805,
-          4.774718761444092,
-          4.778310775756836,
-          4.781904697418213,
-          4.785500526428223,
-          4.789095878601074,
-          4.792693614959717,
-          4.796293258666992,
-          4.799893856048584,
-          4.803495407104492,
-          4.80709981918335,
-          4.810702800750732,
-          4.814309597015381,
-          4.817915916442871,
-          4.821525573730469,
-          4.825135231018066,
-          4.828746318817139,
-          4.832359790802002,
-          4.835973739624023,
-          4.839588165283203,
-          4.843204498291016,
-          4.846823692321777,
-          4.850442886352539,
-          4.854063510894775,
-          4.857684135437012,
-          4.861308574676514,
-          4.864933490753174,
-          4.86855936050415,
-          4.872187614440918,
-          4.875815391540527,
-          4.879445552825928,
-          4.883078098297119,
-          4.8867106437683105,
-          4.89034366607666,
-          4.893980503082275,
-          4.897617340087891,
-          4.9012556076049805,
-          4.904894828796387,
-          4.908535957336426,
-          4.912178039550781,
-          4.915822505950928,
-          4.919466495513916,
-          4.923113822937012,
-          4.926761627197266,
-          4.930410385131836,
-          4.934061050415039,
-          4.937713623046875,
-          4.941365718841553,
-          4.945021152496338,
-          4.948677062988281,
-          4.952333927154541,
-          4.955991268157959,
-          4.959651947021484,
-          4.963313102722168,
-          4.966975688934326,
-          4.970639705657959,
-          4.974304676055908,
-          4.977972507476807,
-          4.981639385223389,
-          4.985309600830078,
-          4.988980293273926,
-          4.992652416229248,
-          4.996325492858887
-         ],
-         "xaxis": "x3",
-         "yaxis": "y3"
-        },
-        {
-         "nbinsx": 50,
-         "opacity": 0.7,
-         "type": "histogram",
-         "x": [
-          2,
-          2.001833438873291,
-          2.0036685466766357,
-          2.005505323410034,
-          2.0073437690734863,
-          2.009183883666992,
-          2.011025905609131,
-          2.012869119644165,
-          2.014714479446411,
-          2.016561508178711,
-          2.0184099674224854,
-          2.0202603340148926,
-          2.0221123695373535,
-          2.023966073989868,
-          2.0258214473724365,
-          2.0276784896850586,
-          2.0295372009277344,
-          2.031397819519043,
-          2.033259868621826,
-          2.0351240634918213,
-          2.036989688873291,
-          2.0388569831848145,
-          2.0407259464263916,
-          2.0425965785980225,
-          2.044469118118286,
-          2.0463433265686035,
-          2.0482192039489746,
-          2.0500967502593994,
-          2.051976203918457,
-          2.0538573265075684,
-          2.0557401180267334,
-          2.057624340057373,
-          2.0595107078552246,
-          2.06139874458313,
-          2.063288450241089,
-          2.0651798248291016,
-          2.067073106765747,
-          2.0689680576324463,
-          2.070864677429199,
-          2.072763204574585,
-          2.0746631622314453,
-          2.0765652656555176,
-          2.0784685611724854,
-          2.080374002456665,
-          2.0822811126708984,
-          2.0841898918151855,
-          2.0861005783081055,
-          2.088012933731079,
-          2.0899269580841064,
-          2.0918428897857666,
-          2.0937604904174805,
-          2.095679759979248,
-          2.0976009368896484,
-          2.0995237827301025,
-          2.1014485359191895,
-          2.10337495803833,
-          2.1053032875061035,
-          2.1072332859039307,
-          2.1091647148132324,
-          2.111098289489746,
-          2.1130335330963135,
-          2.1149706840515137,
-          2.1169095039367676,
-          2.118849992752075,
-          2.1207923889160156,
-          2.122736692428589,
-          2.124682664871216,
-          2.1266300678253174,
-          2.128579616546631,
-          2.130530834197998,
-          2.132483959197998,
-          2.134438991546631,
-          2.1363956928253174,
-          2.1383540630340576,
-          2.1403143405914307,
-          2.1422765254974365,
-          2.144240379333496,
-          2.1462059020996094,
-          2.1481733322143555,
-          2.1501426696777344,
-          2.152113676071167,
-          2.1540863513946533,
-          2.1560611724853516,
-          2.1580376625061035,
-          2.1600160598754883,
-          2.1619961261749268,
-          2.163978099822998,
-          2.165961742401123,
-          2.167947292327881,
-          2.1699347496032715,
-          2.171923875808716,
-          2.173914909362793,
-          2.175907850265503,
-          2.1779024600982666,
-          2.179898977279663,
-          2.1818971633911133,
-          2.1838972568511963,
-          2.185899496078491,
-          2.1879031658172607,
-          2.189908981323242,
-          2.1919164657592773,
-          2.1939258575439453,
-          2.195936918258667,
-          2.1979501247406006,
-          2.199965000152588,
-          2.201981544494629,
-          2.204000234603882,
-          2.2060208320617676,
-          2.208043098449707,
-          2.2100670337677,
-          2.2120931148529053,
-          2.214120864868164,
-          2.2161505222320557,
-          2.218182325363159,
-          2.2202155590057373,
-          2.2222509384155273,
-          2.22428822517395,
-          2.2263271808624268,
-          2.228368043899536,
-          2.2304108142852783,
-          2.2324554920196533,
-          2.234502077102661,
-          2.2365503311157227,
-          2.238600492477417,
-          2.2406527996063232,
-          2.242706775665283,
-          2.244762659072876,
-          2.2468204498291016,
-          2.248880386352539,
-          2.250941753387451,
-          2.253005266189575,
-          2.255070686340332,
-          2.2571377754211426,
-          2.259207010269165,
-          2.261277914047241,
-          2.2633509635925293,
-          2.26542592048645,
-          2.267502546310425,
-          2.2695813179016113,
-          2.2716617584228516,
-          2.2737441062927246,
-          2.2758283615112305,
-          2.2779147624969482,
-          2.2800028324127197,
-          2.2820932865142822,
-          2.2841851711273193,
-          2.2862789630889893,
-          2.288374900817871,
-          2.2904727458953857,
-          2.292572259902954,
-          2.2946739196777344,
-          2.2967774868011475,
-          2.2988831996917725,
-          2.300990581512451,
-          2.3030998706817627,
-          2.305211067199707,
-          2.3073244094848633,
-          2.3094394207000732,
-          2.311556577682495,
-          2.3136754035949707,
-          2.3157966136932373,
-          2.3179194927215576,
-          2.32004451751709,
-          2.322171211242676,
-          2.3242998123168945,
-          2.326430559158325,
-          2.3285632133483887,
-          2.330698013305664,
-          2.332834482192993,
-          2.334972858428955,
-          2.337113618850708,
-          2.3392558097839355,
-          2.341400384902954,
-          2.3435468673706055,
-          2.3456952571868896,
-          2.3478455543518066,
-          2.3499977588653564,
-          2.352151870727539,
-          2.3543083667755127,
-          2.356466293334961,
-          2.3586268424987793,
-          2.3607888221740723,
-          2.362952947616577,
-          2.365119218826294,
-          2.3672873973846436,
-          2.369457483291626,
-          2.371629476547241,
-          2.3738036155700684,
-          2.3759796619415283,
-          2.3781578540802,
-          2.380337953567505,
-          2.3825199604034424,
-          2.3847038745880127,
-          2.386890172958374,
-          2.389078140258789,
-          2.391268253326416,
-          2.393460512161255,
-          2.3956544399261475,
-          2.397850513458252,
-          2.4000487327575684,
-          2.4022488594055176,
-          2.4044508934020996,
-          2.4066553115844727,
-          2.4088613986968994,
-          2.411069631576538,
-          2.4132800102233887,
-          2.415492296218872,
-          2.4177064895629883,
-          2.4199228286743164,
-          2.4221413135528564,
-          2.4243617057800293,
-          2.426584005355835,
-          2.4288084506988525,
-          2.431035041809082,
-          2.4332635402679443,
-          2.4354941844940186,
-          2.4377267360687256,
-          2.4399616718292236,
-          2.4421985149383545,
-          2.444437265396118,
-          2.4466779232025146,
-          2.448920726776123,
-          2.4511656761169434,
-          2.4534127712249756,
-          2.4556617736816406,
-          2.4579129219055176,
-          2.4601662158966064,
-          2.462421417236328,
-          2.4646787643432617,
-          2.4669382572174072,
-          2.4691996574401855,
-          2.4714629650115967,
-          2.473728895187378,
-          2.475996494293213,
-          2.4782662391662598,
-          2.4805381298065186,
-          2.48281192779541,
-          2.4850881099700928,
-          2.487366199493408,
-          2.4896464347839355,
-          2.4919285774230957,
-          2.494213104248047,
-          2.496499538421631,
-          2.4987881183624268,
-          2.5010786056518555,
-          2.503371477127075,
-          2.5056662559509277,
-          2.5079634189605713,
-          2.5102622509002686,
-          2.512563705444336,
-          2.514866828918457,
-          2.51717209815979,
-          2.519479751586914,
-          2.52178955078125,
-          2.5241012573242188,
-          2.5264151096343994,
-          2.528730869293213,
-          2.5310492515563965,
-          2.533369302749634,
-          2.535691738128662,
-          2.5380163192749023,
-          2.5403428077697754,
-          2.5426716804504395,
-          2.5450026988983154,
-          2.547335624694824,
-          2.549670696258545,
-          2.5520079135894775,
-          2.554347515106201,
-          2.5566890239715576,
-          2.559032917022705,
-          2.5613789558410645,
-          2.5637266635894775,
-          2.5660769939422607,
-          2.5684292316436768,
-          2.570783853530884,
-          2.5731403827667236,
-          2.5754995346069336,
-          2.5778603553771973,
-          2.580223798751831,
-          2.5825886726379395,
-          2.584956169128418,
-          2.5873258113861084,
-          2.58969783782959,
-          2.592071771621704,
-          2.5944480895996094,
-          2.5968263149261475,
-          2.5992069244384766,
-          2.6015896797180176,
-          2.6039745807647705,
-          2.6063616275787354,
-          2.608750820159912,
-          2.61114239692688,
-          2.6135358810424805,
-          2.615931987762451,
-          2.6183300018310547,
-          2.62073016166687,
-          2.6231327056884766,
-          2.625537157058716,
-          2.627944231033325,
-          2.6303532123565674,
-          2.6327643394470215,
-          2.6351780891418457,
-          2.6375935077667236,
-          2.6400115489959717,
-          2.6424317359924316,
-          2.6448538303375244,
-          2.6472787857055664,
-          2.649705410003662,
-          2.652134656906128,
-          2.6545655727386475,
-          2.656999111175537,
-          2.6594347953796387,
-          2.661872625350952,
-          2.6643130779266357,
-          2.666755437850952,
-          2.6691999435424805,
-          2.6716468334198,
-          2.674095869064331,
-          2.6765475273132324,
-          2.6790008544921875,
-          2.6814568042755127,
-          2.68391489982605,
-          2.686375379562378,
-          2.688838005065918,
-          2.691303014755249,
-          2.693769931793213,
-          2.696239471435547,
-          2.6987109184265137,
-          2.7011852264404297,
-          2.7036612033843994,
-          2.70613956451416,
-          2.708620548248291,
-          2.7111034393310547,
-          2.7135889530181885,
-          2.716076374053955,
-          2.718566417694092,
-          2.7210583686828613,
-          2.723552703857422,
-          2.7260496616363525,
-          2.728548526763916,
-          2.7310500144958496,
-          2.733553409576416,
-          2.7360594272613525,
-          2.7385671138763428,
-          2.7410778999328613,
-          2.7435903549194336,
-          2.746105670928955,
-          2.7486228942871094,
-          2.751142978668213,
-          2.75366473197937,
-          2.7561888694763184,
-          2.7587156295776367,
-          2.761244535446167,
-          2.763775587081909,
-          2.7663094997406006,
-          2.768845558166504,
-          2.771383762359619,
-          2.7739243507385254,
-          2.7764670848846436,
-          2.779012680053711,
-          2.781559944152832,
-          2.7841098308563232,
-          2.7866618633270264,
-          2.7892162799835205,
-          2.7917733192443848,
-          2.794332504272461,
-          2.7968943119049072,
-          2.7994580268859863,
-          2.8020246028900146,
-          2.804593086242676,
-          2.807164192199707,
-          2.80973744392395,
-          2.8123130798339844,
-          2.8148913383483887,
-          2.817471742630005,
-          2.820054769515991,
-          2.8226397037506104,
-          2.8252270221710205,
-          2.82781720161438,
-          2.830409288406372,
-          2.8330042362213135,
-          2.8356010913848877,
-          2.838200569152832,
-          2.8408024311065674,
-          2.8434064388275146,
-          2.846013307571411,
-          2.8486220836639404,
-          2.851233720779419,
-          2.8538472652435303,
-          2.8564634323120117,
-          2.8590822219848633,
-          2.8617029190063477,
-          2.8643264770507812,
-          2.8669521808624268,
-          2.8695805072784424,
-          2.87221097946167,
-          2.8748438358306885,
-          2.877479076385498,
-          2.8801169395446777,
-          2.8827571868896484,
-          2.8854000568389893,
-          2.888044834136963,
-          2.8906922340393066,
-          2.8933424949645996,
-          2.8959946632385254,
-          2.8986496925354004,
-          2.901306629180908,
-          2.9039666652679443,
-          2.9066286087036133,
-          2.9092929363250732,
-          2.9119601249694824,
-          2.9146294593811035,
-          2.9173014163970947,
-          2.919975757598877,
-          2.9226527214050293,
-          2.9253318309783936,
-          2.928013324737549,
-          2.930697202682495,
-          2.933384418487549,
-          2.936073064804077,
-          2.938764810562134,
-          2.9414587020874023,
-          2.944154977798462,
-          2.9468541145324707,
-          2.9495556354522705,
-          2.9522595405578613,
-          2.954965591430664,
-          2.957674741744995,
-          2.960386037826538,
-          2.963099479675293,
-          2.965816020965576,
-          2.9685347080230713,
-          2.9712560176849365,
-          2.973979949951172,
-          2.9767065048217773,
-          2.9794349670410156,
-          2.982166051864624,
-          2.9848997592926025,
-          2.9876363277435303,
-          2.990375280380249,
-          2.9931163787841797,
-          2.9958600997924805,
-          2.9986066818237305,
-          3.0013554096221924,
-          3.0041069984436035,
-          3.0068607330322266,
-          3.0096170902252197,
-          3.012376308441162,
-          3.0151374340057373,
-          3.017901659011841,
-          3.0206682682037354,
-          3.023437023162842,
-          3.0262088775634766,
-          3.0289828777313232,
-          3.031759738922119,
-          3.034538984298706,
-          3.037320613861084,
-          3.040104866027832,
-          3.0428919792175293,
-          3.0456814765930176,
-          3.048473358154297,
-          3.0512678623199463,
-          3.054065227508545,
-          3.0568647384643555,
-          3.0596671104431152,
-          3.062471866607666,
-          3.065279245376587,
-          3.068089246749878,
-          3.070901870727539,
-          3.0737171173095703,
-          3.0765347480773926,
-          3.079354763031006,
-          3.0821778774261475,
-          3.085003137588501,
-          3.087831497192383,
-          3.0906620025634766,
-          3.0934951305389404,
-          3.0963311195373535,
-          3.0991697311401367,
-          3.102010726928711,
-          3.104854106903076,
-          3.1077003479003906,
-          3.1105494499206543,
-          3.11340069770813,
-          3.116255044937134,
-          3.1191115379333496,
-          3.1219706535339355,
-          3.12483286857605,
-          3.127697229385376,
-          3.1305646896362305,
-          3.133434534072876,
-          3.1363067626953125,
-          3.1391820907592773,
-          3.1420600414276123,
-          3.144940137863159,
-          3.1478230953216553,
-          3.1507084369659424,
-          3.153597116470337,
-          3.1564881801605225,
-          3.159381628036499,
-          3.1622776985168457,
-          3.1651768684387207,
-          3.1680781841278076,
-          3.1709823608398438,
-          3.173888921737671,
-          3.1767988204956055,
-          3.179710865020752,
-          3.1826255321502686,
-          3.1855432987213135,
-          3.1884634494781494,
-          3.1913864612579346,
-          3.1943118572235107,
-          3.1972403526306152,
-          3.2001712322235107,
-          3.2031047344207764,
-          3.2060413360595703,
-          3.208980083465576,
-          3.2119216918945312,
-          3.2148663997650146,
-          3.217813491821289,
-          3.2207632064819336,
-          3.2237155437469482,
-          3.226670742034912,
-          3.229628801345825,
-          3.2325897216796875,
-          3.2355527877807617,
-          3.238518714904785,
-          3.241487741470337,
-          3.244459629058838,
-          3.247433662414551,
-          3.250410318374634,
-          3.253390312194824,
-          3.2563726902008057,
-          3.2593576908111572,
-          3.262345790863037,
-          3.265336275100708,
-          3.268329381942749,
-          3.2713253498077393,
-          3.274324417114258,
-          3.2773263454437256,
-          3.2803304195404053,
-          3.283337354660034,
-          3.2863476276397705,
-          3.289360284805298,
-          3.2923755645751953,
-          3.295393705368042,
-          3.298414468765259,
-          3.301438331604004,
-          3.30446457862854,
-          3.3074941635131836,
-          3.310525894165039,
-          3.3135604858398438,
-          3.316598415374756,
-          3.319638729095459,
-          3.3226819038391113,
-          3.325727701187134,
-          3.3287768363952637,
-          3.3318281173706055,
-          3.3348822593688965,
-          3.337939739227295,
-          3.3409993648529053,
-          3.344061851501465,
-          3.347127676010132,
-          3.350196361541748,
-          3.3532674312591553,
-          3.3563411235809326,
-          3.359417676925659,
-          3.362497568130493,
-          3.365579843521118,
-          3.3686654567718506,
-          3.371753215789795,
-          3.374844551086426,
-          3.3779380321502686,
-          3.3810346126556396,
-          3.384134292602539,
-          3.3872363567352295,
-          3.390341281890869,
-          3.393449544906616,
-          3.3965601921081543,
-          3.3996739387512207,
-          3.4027903079986572,
-          3.405909538269043,
-          3.409032106399536,
-          3.4121572971343994,
-          3.415285110473633,
-          3.4184157848358154,
-          3.4215493202209473,
-          3.4246866703033447,
-          3.427825927734375,
-          3.4309680461883545,
-          3.434113025665283,
-          3.4372613430023193,
-          3.4404122829437256,
-          3.443565845489502,
-          3.446722984313965,
-          3.4498822689056396,
-          3.453045129776001,
-          3.4562103748321533,
-          3.459378957748413,
-          3.462550163269043,
-          3.465724229812622,
-          3.4689009189605713,
-          3.472081184387207,
-          3.475264310836792,
-          3.478450059890747,
-          3.4816386699676514,
-          3.484830141067505,
-          3.488024950027466,
-          3.4912221431732178,
-          3.4944229125976562,
-          3.4976260662078857,
-          3.5008327960968018,
-          3.504041910171509,
-          3.507254123687744,
-          3.5104691982269287,
-          3.5136871337890625,
-          3.5169084072113037,
-          3.520132303237915,
-          3.5233592987060547,
-          3.5265891551971436,
-          3.52982234954834,
-          3.533057928085327,
-          3.5362966060638428,
-          3.539538621902466,
-          3.542782783508301,
-          3.5460307598114014,
-          3.549281120300293,
-          3.5525355339050293,
-          3.5557916164398193,
-          3.559051513671875,
-          3.5623137950897217,
-          3.565579414367676,
-          3.568848133087158,
-          3.572119951248169,
-          3.57539439201355,
-          3.578671932220459,
-          3.5819528102874756,
-          3.585236072540283,
-          3.5885231494903564,
-          3.5918126106262207,
-          3.595104932785034,
-          3.598400831222534,
-          3.6016998291015625,
-          3.605001449584961,
-          3.6083059310913086,
-          3.6116139888763428,
-          3.614924192428589,
-          3.618238687515259,
-          3.6215555667877197,
-          3.624875545501709,
-          3.6281979084014893,
-          3.6315243244171143,
-          3.6348536014556885,
-          3.6381850242614746,
-          3.6415205001831055,
-          3.6448590755462646,
-          3.648200035095215,
-          3.6515438556671143,
-          3.6548914909362793,
-          3.6582422256469727,
-          3.6615960597991943,
-          3.664952039718628,
-          3.6683120727539062,
-          3.671674966812134,
-          3.6750407218933105,
-          3.6784095764160156,
-          3.681781768798828,
-          3.685157299041748,
-          3.688534736633301,
-          3.6919164657592773,
-          3.695300579071045,
-          3.698688507080078,
-          3.7020788192749023,
-          3.705472946166992,
-          3.708869457244873,
-          3.7122693061828613,
-          3.715672731399536,
-          3.71907901763916,
-          3.7224881649017334,
-          3.725900411605835,
-          3.729316473007202,
-          3.7327349185943604,
-          3.736156940460205,
-          3.739581823348999,
-          3.7430098056793213,
-          3.746441125869751,
-          3.749875545501709,
-          3.7533133029937744,
-          3.75675368309021,
-          3.760197401046753,
-          3.7636446952819824,
-          3.767094850540161,
-          3.7705483436584473,
-          3.7740046977996826,
-          3.7774641513824463,
-          3.7809271812438965,
-          3.784393072128296,
-          3.787862539291382,
-          3.791334390640259,
-          3.7948100566864014,
-          3.7982890605926514,
-          3.8017709255218506,
-          3.805255889892578,
-          3.808744430541992,
-          3.8122363090515137,
-          3.815730333328247,
-          3.819228410720825,
-          3.8227298259735107,
-          3.8262341022491455,
-          3.8297414779663086,
-          3.833252429962158,
-          3.8367667198181152,
-          3.8402836322784424,
-          3.843803882598877,
-          3.847327470779419,
-          3.8508546352386475,
-          3.854384422302246,
-          3.8579182624816895,
-          3.861454486846924,
-          3.8649942874908447,
-          3.868537187576294,
-          3.8720836639404297,
-          3.875633478164673,
-          3.8791861534118652,
-          3.882742166519165,
-          3.8863017559051514,
-          3.889864206314087,
-          3.893429756164551,
-          3.8969993591308594,
-          3.900571584701538,
-          3.9041473865509033,
-          3.907726287841797,
-          3.911308765411377,
-          3.9148941040039062,
-          3.918482780456543,
-          3.9220752716064453,
-          3.925670862197876,
-          3.929269313812256,
-          3.932871103286743,
-          3.936476707458496,
-          3.9400851726531982,
-          3.943696975708008,
-          3.9473118782043457,
-          3.9509313106536865,
-          3.954552412033081,
-          3.9581780433654785,
-          3.961805820465088,
-          3.9654383659362793,
-          3.9690732955932617,
-          3.9727115631103516,
-          3.976353168487549,
-          3.97999906539917,
-          3.983647584915161,
-          3.9872992038726807,
-          3.9909541606903076,
-          3.9946129322052,
-          3.998274803161621,
-          4.00193977355957,
-          4.005608558654785,
-          4.009281158447266,
-          4.012956142425537,
-          4.016634464263916,
-          4.020317077636719,
-          4.0240020751953125,
-          4.027690887451172,
-          4.031383514404297,
-          4.035079479217529,
-          4.038778305053711,
-          4.04248046875,
-          4.046186447143555,
-          4.049895286560059,
-          4.053608417510986,
-          4.057323932647705,
-          4.061043739318848,
-          4.0647664070129395,
-          4.068492412567139,
-          4.072221755981445,
-          4.075955390930176,
-          4.079691410064697,
-          4.083431243896484,
-          4.087174892425537,
-          4.090921878814697,
-          4.094671249389648,
-          4.098425388336182,
-          4.102182388305664,
-          4.105942726135254,
-          4.109706878662109,
-          4.113474369049072,
-          4.117245197296143,
-          4.12101936340332,
-          4.124797344207764,
-          4.1285786628723145,
-          4.132363319396973,
-          4.136151313781738,
-          4.139942646026611,
-          4.143738746643066,
-          4.147536754608154,
-          4.151339054107666,
-          4.155144214630127,
-          4.158953666687012,
-          4.162765979766846,
-          4.1665825843811035,
-          4.170401573181152,
-          4.174224376678467,
-          4.178051471710205,
-          4.181881427764893,
-          4.185715198516846,
-          4.189551830291748,
-          4.193392276763916,
-          4.19723653793335,
-          4.201084136962891,
-          4.204935550689697,
-          4.208790302276611,
-          4.212648391723633,
-          4.21651029586792,
-          4.2203755378723145,
-          4.224244594573975,
-          4.228116989135742,
-          4.231992721557617,
-          4.235872745513916,
-          4.239755153656006,
-          4.243642330169678,
-          4.247532367706299,
-          4.251425743103027,
-          4.25532341003418,
-          4.259224891662598,
-          4.263128280639648,
-          4.2670369148254395,
-          4.270948886871338,
-          4.2748637199401855,
-          4.278782367706299,
-          4.282705307006836,
-          4.2866315841674805,
-          4.290560245513916,
-          4.294493675231934,
-          4.298430919647217,
-          4.302371025085449,
-          4.306314945220947,
-          4.310262203216553,
-          4.31421422958374,
-          4.318169116973877,
-          4.322126865386963,
-          4.326089382171631,
-          4.330055236816406,
-          4.334023952484131,
-          4.3379974365234375,
-          4.341973781585693,
-          4.345954895019531,
-          4.34993839263916,
-          4.353926181793213,
-          4.357917308807373,
-          4.361912250518799,
-          4.36591100692749,
-          4.369913101196289,
-          4.373919486999512,
-          4.377928733825684,
-          4.381942272186279,
-          4.385959148406982,
-          4.389980316162109,
-          4.3940043449401855,
-          4.3980326652526855,
-          4.402064323425293,
-          4.406099796295166,
-          4.4101386070251465,
-          4.414181232452393,
-          4.4182281494140625,
-          4.422277927398682,
-          4.426332473754883,
-          4.430389881134033,
-          4.434451580047607,
-          4.438516139984131,
-          4.442584991455078,
-          4.446657657623291,
-          4.4507341384887695,
-          4.454813480377197,
-          4.458898067474365,
-          4.462985515594482,
-          4.467076778411865,
-          4.4711713790893555,
-          4.4752702713012695,
-          4.479372978210449,
-          4.483478546142578,
-          4.487588882446289,
-          4.491703033447266,
-          4.495820999145508,
-          4.499941825866699,
-          4.5040669441223145,
-          4.5081963539123535,
-          4.512328147888184,
-          4.516465187072754,
-          4.52060604095459,
-          4.524750232696533,
-          4.528897285461426,
-          4.533049583435059,
-          4.537204742431641,
-          4.541363716125488,
-          4.545526504516602,
-          4.549694061279297,
-          4.553864479064941,
-          4.558039665222168,
-          4.562217712402344,
-          4.566400051116943,
-          4.57058572769165,
-          4.574775695800781,
-          4.578969478607178,
-          4.58316707611084,
-          4.587368965148926,
-          4.591573715209961,
-          4.595783233642578,
-          4.599996089935303,
-          4.604213237762451,
-          4.608433723449707,
-          4.612658500671387,
-          4.616887092590332,
-          4.621119022369385,
-          4.6253557205200195,
-          4.629595756530762,
-          4.633840084075928,
-          4.638086795806885,
-          4.642339706420898,
-          4.646595001220703,
-          4.650854587554932,
-          4.655117511749268,
-          4.659385681152344,
-          4.663657188415527,
-          4.66793155670166,
-          4.672211170196533,
-          4.676494598388672,
-          4.680781364440918,
-          4.68507194519043,
-          4.689366340637207,
-          4.693665504455566,
-          4.69796895980835,
-          4.702274799346924,
-          4.70658540725708,
-          4.71090030670166,
-          4.715219020843506,
-          4.719541072845459,
-          4.723867893218994,
-          4.728198528289795,
-          4.732532024383545,
-          4.736870765686035,
-          4.741212844848633,
-          4.7455596923828125,
-          4.7499098777771,
-          4.7542643547058105,
-          4.758622646331787,
-          4.762984275817871,
-          4.767351150512695,
-          4.771721839904785,
-          4.776095867156982,
-          4.780473709106445,
-          4.78485631942749,
-          4.789242744445801,
-          4.793633460998535,
-          4.798027515411377,
-          4.802426338195801,
-          4.806828498840332,
-          4.811234474182129,
-          4.815645694732666,
-          4.820059776306152,
-          4.8244781494140625,
-          4.828900337219238,
-          4.833327770233154,
-          4.837758541107178,
-          4.842193126678467,
-          4.84663200378418,
-          4.851075172424316,
-          4.855522155761719,
-          4.859972953796387,
-          4.8644280433654785,
-          4.868887901306152,
-          4.873351097106934,
-          4.877818584442139,
-          4.882289886474609,
-          4.886765956878662,
-          4.891245365142822,
-          4.895729064941406,
-          4.900217056274414,
-          4.904709815979004,
-          4.909205436706543,
-          4.913705825805664,
-          4.918210506439209,
-          4.9227190017700195,
-          4.927231311798096,
-          4.931748390197754,
-          4.936269760131836,
-          4.940794944763184,
-          4.945323944091797,
-          4.949857711791992,
-          4.954394817352295,
-          4.958937168121338,
-          4.963481903076172,
-          4.968032360076904,
-          4.9725871086120605,
-          4.977145195007324,
-          4.981707572937012,
-          4.986274719238281,
-          4.990845680236816,
-          4.995420455932617
-         ],
-         "xaxis": "x4",
-         "yaxis": "y4"
-        }
-       ],
-       "layout": {
-        "annotations": [
-         {
-          "font": {
-           "size": 16
-          },
-          "showarrow": false,
-          "text": "Uniform",
-          "x": 0.225,
-          "xanchor": "center",
-          "xref": "paper",
-          "y": 1,
-          "yanchor": "bottom",
-          "yref": "paper"
-         },
-         {
-          "font": {
-           "size": 16
-          },
-          "showarrow": false,
-          "text": "Linear in Disparity",
-          "x": 0.775,
-          "xanchor": "center",
-          "xref": "paper",
-          "y": 1,
-          "yanchor": "bottom",
-          "yref": "paper"
-         },
-         {
-          "font": {
-           "size": 16
-          },
-          "showarrow": false,
-          "text": "Square Root",
-          "x": 0.225,
-          "xanchor": "center",
-          "xref": "paper",
-          "y": 0.45,
-          "yanchor": "bottom",
-          "yref": "paper"
-         },
-         {
-          "font": {
-           "size": 16
-          },
-          "showarrow": false,
-          "text": "Log Sampler",
-          "x": 0.775,
-          "xanchor": "center",
-          "xref": "paper",
-          "y": 0.45,
-          "yanchor": "bottom",
-          "yref": "paper"
-         }
-        ],
-        "height": 700,
-        "hovermode": false,
-        "margin": {
-         "b": 20,
-         "l": 20,
-         "r": 20,
-         "t": 50
-        },
-        "showlegend": false,
-        "template": {
-         "data": {
-          "bar": [
-           {
-            "error_x": {
-             "color": "#2a3f5f"
-            },
-            "error_y": {
-             "color": "#2a3f5f"
-            },
-            "marker": {
-             "line": {
-              "color": "#E5ECF6",
-              "width": 0.5
-             },
-             "pattern": {
-              "fillmode": "overlay",
-              "size": 10,
-              "solidity": 0.2
-             }
-            },
-            "type": "bar"
-           }
-          ],
-          "barpolar": [
-           {
-            "marker": {
-             "line": {
-              "color": "#E5ECF6",
-              "width": 0.5
-             },
-             "pattern": {
-              "fillmode": "overlay",
-              "size": 10,
-              "solidity": 0.2
-             }
-            },
-            "type": "barpolar"
-           }
-          ],
-          "carpet": [
-           {
-            "aaxis": {
-             "endlinecolor": "#2a3f5f",
-             "gridcolor": "white",
-             "linecolor": "white",
-             "minorgridcolor": "white",
-             "startlinecolor": "#2a3f5f"
-            },
-            "baxis": {
-             "endlinecolor": "#2a3f5f",
-             "gridcolor": "white",
-             "linecolor": "white",
-             "minorgridcolor": "white",
-             "startlinecolor": "#2a3f5f"
-            },
-            "type": "carpet"
-           }
-          ],
-          "choropleth": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "type": "choropleth"
-           }
-          ],
-          "contour": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "contour"
-           }
-          ],
-          "contourcarpet": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "type": "contourcarpet"
-           }
-          ],
-          "heatmap": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "heatmap"
-           }
-          ],
-          "heatmapgl": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "heatmapgl"
-           }
-          ],
-          "histogram": [
-           {
-            "marker": {
-             "pattern": {
-              "fillmode": "overlay",
-              "size": 10,
-              "solidity": 0.2
-             }
-            },
-            "type": "histogram"
-           }
-          ],
-          "histogram2d": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "histogram2d"
-           }
-          ],
-          "histogram2dcontour": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "histogram2dcontour"
-           }
-          ],
-          "mesh3d": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "type": "mesh3d"
-           }
-          ],
-          "parcoords": [
-           {
-            "line": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "parcoords"
-           }
-          ],
-          "pie": [
-           {
-            "automargin": true,
-            "type": "pie"
-           }
-          ],
-          "scatter": [
-           {
-            "fillpattern": {
-             "fillmode": "overlay",
-             "size": 10,
-             "solidity": 0.2
-            },
-            "type": "scatter"
-           }
-          ],
-          "scatter3d": [
-           {
-            "line": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scatter3d"
-           }
-          ],
-          "scattercarpet": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scattercarpet"
-           }
-          ],
-          "scattergeo": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scattergeo"
-           }
-          ],
-          "scattergl": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scattergl"
-           }
-          ],
-          "scattermapbox": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scattermapbox"
-           }
-          ],
-          "scatterpolar": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scatterpolar"
-           }
-          ],
-          "scatterpolargl": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scatterpolargl"
-           }
-          ],
-          "scatterternary": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scatterternary"
-           }
-          ],
-          "surface": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "surface"
-           }
-          ],
-          "table": [
-           {
-            "cells": {
-             "fill": {
-              "color": "#EBF0F8"
-             },
-             "line": {
-              "color": "white"
-             }
-            },
-            "header": {
-             "fill": {
-              "color": "#C8D4E3"
-             },
-             "line": {
-              "color": "white"
-             }
-            },
-            "type": "table"
-           }
-          ]
-         },
-         "layout": {
-          "annotationdefaults": {
-           "arrowcolor": "#2a3f5f",
-           "arrowhead": 0,
-           "arrowwidth": 1
-          },
-          "autotypenumbers": "strict",
-          "coloraxis": {
-           "colorbar": {
-            "outlinewidth": 0,
-            "ticks": ""
-           }
-          },
-          "colorscale": {
-           "diverging": [
-            [
-             0,
-             "#8e0152"
-            ],
-            [
-             0.1,
-             "#c51b7d"
-            ],
-            [
-             0.2,
-             "#de77ae"
-            ],
-            [
-             0.3,
-             "#f1b6da"
-            ],
-            [
-             0.4,
-             "#fde0ef"
-            ],
-            [
-             0.5,
-             "#f7f7f7"
-            ],
-            [
-             0.6,
-             "#e6f5d0"
-            ],
-            [
-             0.7,
-             "#b8e186"
-            ],
-            [
-             0.8,
-             "#7fbc41"
-            ],
-            [
-             0.9,
-             "#4d9221"
-            ],
-            [
-             1,
-             "#276419"
-            ]
-           ],
-           "sequential": [
-            [
-             0,
-             "#0d0887"
-            ],
-            [
-             0.1111111111111111,
-             "#46039f"
-            ],
-            [
-             0.2222222222222222,
-             "#7201a8"
-            ],
-            [
-             0.3333333333333333,
-             "#9c179e"
-            ],
-            [
-             0.4444444444444444,
-             "#bd3786"
-            ],
-            [
-             0.5555555555555556,
-             "#d8576b"
-            ],
-            [
-             0.6666666666666666,
-             "#ed7953"
-            ],
-            [
-             0.7777777777777778,
-             "#fb9f3a"
-            ],
-            [
-             0.8888888888888888,
-             "#fdca26"
-            ],
-            [
-             1,
-             "#f0f921"
-            ]
-           ],
-           "sequentialminus": [
-            [
-             0,
-             "#0d0887"
-            ],
-            [
-             0.1111111111111111,
-             "#46039f"
-            ],
-            [
-             0.2222222222222222,
-             "#7201a8"
-            ],
-            [
-             0.3333333333333333,
-             "#9c179e"
-            ],
-            [
-             0.4444444444444444,
-             "#bd3786"
-            ],
-            [
-             0.5555555555555556,
-             "#d8576b"
-            ],
-            [
-             0.6666666666666666,
-             "#ed7953"
-            ],
-            [
-             0.7777777777777778,
-             "#fb9f3a"
-            ],
-            [
-             0.8888888888888888,
-             "#fdca26"
-            ],
-            [
-             1,
-             "#f0f921"
-            ]
-           ]
-          },
-          "colorway": [
-           "#636efa",
-           "#EF553B",
-           "#00cc96",
-           "#ab63fa",
-           "#FFA15A",
-           "#19d3f3",
-           "#FF6692",
-           "#B6E880",
-           "#FF97FF",
-           "#FECB52"
-          ],
-          "font": {
-           "color": "#2a3f5f"
-          },
-          "geo": {
-           "bgcolor": "white",
-           "lakecolor": "white",
-           "landcolor": "#E5ECF6",
-           "showlakes": true,
-           "showland": true,
-           "subunitcolor": "white"
-          },
-          "hoverlabel": {
-           "align": "left"
-          },
-          "hovermode": "closest",
-          "mapbox": {
-           "style": "light"
-          },
-          "paper_bgcolor": "white",
-          "plot_bgcolor": "#E5ECF6",
-          "polar": {
-           "angularaxis": {
-            "gridcolor": "white",
-            "linecolor": "white",
-            "ticks": ""
-           },
-           "bgcolor": "#E5ECF6",
-           "radialaxis": {
-            "gridcolor": "white",
-            "linecolor": "white",
-            "ticks": ""
-           }
-          },
-          "scene": {
-           "xaxis": {
-            "backgroundcolor": "#E5ECF6",
-            "gridcolor": "white",
-            "gridwidth": 2,
-            "linecolor": "white",
-            "showbackground": true,
-            "ticks": "",
-            "zerolinecolor": "white"
-           },
-           "yaxis": {
-            "backgroundcolor": "#E5ECF6",
-            "gridcolor": "white",
-            "gridwidth": 2,
-            "linecolor": "white",
-            "showbackground": true,
-            "ticks": "",
-            "zerolinecolor": "white"
-           },
-           "zaxis": {
-            "backgroundcolor": "#E5ECF6",
-            "gridcolor": "white",
-            "gridwidth": 2,
-            "linecolor": "white",
-            "showbackground": true,
-            "ticks": "",
-            "zerolinecolor": "white"
-           }
-          },
-          "shapedefaults": {
-           "line": {
-            "color": "#2a3f5f"
-           }
-          },
-          "ternary": {
-           "aaxis": {
-            "gridcolor": "white",
-            "linecolor": "white",
-            "ticks": ""
-           },
-           "baxis": {
-            "gridcolor": "white",
-            "linecolor": "white",
-            "ticks": ""
-           },
-           "bgcolor": "#E5ECF6",
-           "caxis": {
-            "gridcolor": "white",
-            "linecolor": "white",
-            "ticks": ""
-           }
-          },
-          "title": {
-           "x": 0.05
-          },
-          "xaxis": {
-           "automargin": true,
-           "gridcolor": "white",
-           "linecolor": "white",
-           "ticks": "",
-           "title": {
-            "standoff": 15
-           },
-           "zerolinecolor": "white",
-           "zerolinewidth": 2
-          },
-          "yaxis": {
-           "automargin": true,
-           "gridcolor": "white",
-           "linecolor": "white",
-           "ticks": "",
-           "title": {
-            "standoff": 15
-           },
-           "zerolinecolor": "white",
-           "zerolinewidth": 2
-          }
-         }
-        },
-        "xaxis": {
-         "anchor": "y",
-         "domain": [
-          0,
-          0.45
-         ],
-         "matches": "x3",
-         "showticklabels": false
-        },
-        "xaxis2": {
-         "anchor": "y2",
-         "domain": [
-          0.55,
-          1
-         ],
-         "matches": "x4",
-         "showticklabels": false
-        },
-        "xaxis3": {
-         "anchor": "y3",
-         "domain": [
-          0,
-          0.45
-         ],
-         "title": {
-          "text": "Distance"
-         }
-        },
-        "xaxis4": {
-         "anchor": "y4",
-         "domain": [
-          0.55,
-          1
-         ],
-         "title": {
-          "text": "Distance"
-         }
-        },
-        "yaxis": {
-         "anchor": "x",
-         "domain": [
-          0.55,
-          1
-         ],
-         "range": [
-          0,
-          80
-         ],
-         "title": {
-          "text": "# Samples"
-         }
-        },
-        "yaxis2": {
-         "anchor": "x2",
-         "domain": [
-          0.55,
-          1
-         ],
-         "matches": "y",
-         "range": [
-          0,
-          80
-         ],
-         "showticklabels": false
-        },
-        "yaxis3": {
-         "anchor": "x3",
-         "domain": [
-          0,
-          0.45
-         ],
-         "range": [
-          0,
-          80
-         ],
-         "title": {
-          "text": "# Samples"
-         }
-        },
-        "yaxis4": {
-         "anchor": "x4",
-         "domain": [
-          0,
-          0.45
-         ],
-         "matches": "y3",
-         "range": [
-          0,
-          80
-         ],
-         "showticklabels": false
-        }
-       }
-      },
-      "text/html": [
-       "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# COLLAPSED\n", - "import torch\n", - "from nerfstudio.cameras.rays import RayBundle\n", - "from nerfstudio.model_components import ray_sampler\n", - "import plotly.graph_objects as go\n", - "from plotly.subplots import make_subplots\n", - "\n", - "\n", - "num_samples = 1000\n", - "near = 2\n", - "far = 5\n", - "train_stratified = False\n", - "\n", - "samplers = [\n", - " ray_sampler.UniformSampler,\n", - " ray_sampler.LinearDisparitySampler,\n", - " ray_sampler.SqrtSampler,\n", - " ray_sampler.LogSampler,\n", - "]\n", - "\n", - "fig = make_subplots(\n", - " rows=2,\n", - " cols=2,\n", - " subplot_titles=(\"Uniform\", \"Linear in Disparity\", \"Square Root\", \"Log Sampler\"),\n", - " shared_xaxes=True,\n", - " shared_yaxes=True,\n", - " vertical_spacing=0.1,\n", - ")\n", - "\n", - "for i, Sampler in enumerate(samplers):\n", - " sampler = Sampler(num_samples=num_samples, train_stratified=train_stratified)\n", - "\n", - " ray_bundle = RayBundle(\n", - " origins=torch.ones([1, 3]),\n", - " directions=torch.ones([1, 3]),\n", - " pixel_area=torch.ones([1, 1]),\n", - " nears=torch.ones([1, 1]) * near,\n", - " fars=torch.ones([1, 1]) * far,\n", - " )\n", - "\n", - " samples = sampler.generate_ray_samples(ray_bundle)\n", - "\n", - " trace = go.Histogram(x=samples.frustums.starts[0, :, 0], nbinsx=50)\n", - " fig.append_trace(trace, i // 2 + 1, i % 2 + 1)\n", - "\n", - "fig.update_yaxes(title_text=\"# Samples\", row=1, col=1)\n", - "fig.update_yaxes(title_text=\"# Samples\", row=2, col=1)\n", - "fig.update_xaxes(title_text=\"Distance\", row=2, col=1)\n", - "fig.update_xaxes(title_text=\"Distance\", row=2, col=2)\n", - "\n", - "# Overlay both histograms\n", - "fig.update_layout(height=700, hovermode=False, showlegend=False, margin=dict(l=20, r=20, t=50, b=20))\n", - "fig.update_yaxes(range=[0, 80])\n", - "fig.update_traces(opacity=0.7)\n", - "fig.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## PDF Sampler\n", - "\n", - "The Probability Distribution Function (PDF) Sampler generates samples that match a given distribution. \n", - "\n", - "In the example below we first create a `UniformSampler` to generate a set of initial samples. We then assign weights to each of these samples to define the PDF (here it is an arbitrary function, but usually you would use the predicted weights from the field). The left plot the target PDF, on the right we plot a histogram of samples generated from the `PDFSampler`." - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": { - "tags": [ - "hide-input" - ] - }, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "opacity": 0.7, - "type": "scatter", - "x": [ - 2, - 2.1500000953674316, - 2.1500000953674316, - 2.299999952316284, - 2.299999952316284, - 2.450000047683716, - 2.450000047683716, - 2.5999999046325684, - 2.5999999046325684, - 2.75, - 2.75, - 2.9000000953674316, - 2.9000000953674316, - 3.049999952316284, - 3.049999952316284, - 3.200000047683716, - 3.200000047683716, - 3.3499999046325684, - 3.3499999046325684, - 3.5, - 3.5, - 3.6500000953674316, - 3.6500000953674316, - 3.799999952316284, - 3.799999952316284, - 3.950000047683716, - 3.950000047683716, - 4.100000381469727, - 4.100000381469727, - 4.25, - 4.25, - 4.400000095367432, - 4.400000095367432, - 4.550000190734863, - 4.550000190734863, - 4.699999809265137, - 4.699999809265137, - 4.849999904632568, - 4.849999904632568, - 5 - ], - "xaxis": "x", - "y": [ - 0.013052567839622498, - 0.013052567839622498, - 0.03800889104604721, - 0.03800889104604721, - 0.057813677936792374, - 0.057813677936792374, - 0.06855124980211258, - 0.06855124980211258, - 0.06847988814115524, - 0.06847988814115524, - 0.058445800095796585, - 0.058445800095796585, - 0.041673533618450165, - 0.041673533618450165, - 0.022983169183135033, - 0.022983169183135033, - 0.007623155601322651, - 0.007623155601322651, - 0, - 0, - 0.002611340256407857, - 0.002611340256407857, - 0.015439355745911598, - 0.015439355745911598, - 0.03595082834362984, - 0.03595082834362984, - 0.05970405042171478, - 0.05970405042171478, - 0.0814160406589508, - 0.0814160406589508, - 0.09623293578624725, - 0.09623293578624725, - 0.10089751332998276, - 0.10089751332998276, - 0.09453219175338745, - 0.09453219175338745, - 0.07884885370731354, - 0.07884885370731354, - 0.057734981179237366, - 0.057734981179237366 - ], - "yaxis": "y" - }, - { - "nbinsx": 100, - "opacity": 0.7, - "type": "histogram", - "x": [ - 2.0039002895355225, - 2.0117006301879883, - 2.019501209259033, - 2.027301549911499, - 2.035102128982544, - 2.0429024696350098, - 2.0507028102874756, - 2.0585033893585205, - 2.0663037300109863, - 2.074104070663452, - 2.081904649734497, - 2.089704990386963, - 2.097505569458008, - 2.1053059101104736, - 2.1131062507629395, - 2.1209068298339844, - 2.12870717048645, - 2.136507749557495, - 2.144308090209961, - 2.151012420654297, - 2.1547579765319824, - 2.158503532409668, - 2.1622490882873535, - 2.165994644165039, - 2.1697402000427246, - 2.17348575592041, - 2.1772313117980957, - 2.1809771060943604, - 2.184722423553467, - 2.1884679794311523, - 2.192213535308838, - 2.1959590911865234, - 2.199704647064209, - 2.2034502029418945, - 2.207195997238159, - 2.2109413146972656, - 2.214686870574951, - 2.218432664871216, - 2.2221782207489014, - 2.225923538208008, - 2.2296690940856934, - 2.233414888381958, - 2.2371604442596436, - 2.24090576171875, - 2.2446515560150146, - 2.2483971118927, - 2.2521424293518066, - 2.2558882236480713, - 2.259633779525757, - 2.2633793354034424, - 2.267124891281128, - 2.2708704471588135, - 2.274616003036499, - 2.2783615589141846, - 2.28210711479187, - 2.2858526706695557, - 2.289598226547241, - 2.2933437824249268, - 2.2970893383026123, - 2.300590991973877, - 2.3032426834106445, - 2.305894374847412, - 2.3085460662841797, - 2.3111977577209473, - 2.313849449157715, - 2.3165011405944824, - 2.31915283203125, - 2.3218045234680176, - 2.324456214904785, - 2.3271079063415527, - 2.3297595977783203, - 2.332411289215088, - 2.3350629806518555, - 2.337714672088623, - 2.3403663635253906, - 2.343018054962158, - 2.3456695079803467, - 2.3483211994171143, - 2.350973129272461, - 2.3536248207092285, - 2.356276273727417, - 2.3589279651641846, - 2.361579656600952, - 2.3642313480377197, - 2.3668830394744873, - 2.369534730911255, - 2.3721864223480225, - 2.37483811378479, - 2.3774898052215576, - 2.380141496658325, - 2.3827931880950928, - 2.3854446411132812, - 2.388096570968628, - 2.3907480239868164, - 2.393399715423584, - 2.3960514068603516, - 2.398703098297119, - 2.4013547897338867, - 2.4040064811706543, - 2.406658172607422, - 2.4093098640441895, - 2.411961555480957, - 2.4146132469177246, - 2.417264938354492, - 2.4199166297912598, - 2.4225683212280273, - 2.425220012664795, - 2.4278717041015625, - 2.43052339553833, - 2.4331750869750977, - 2.4358267784118652, - 2.438478469848633, - 2.4411301612854004, - 2.443781852722168, - 2.4464335441589355, - 2.449085235595703, - 2.4514994621276855, - 2.4537887573242188, - 2.456077814102173, - 2.458367109298706, - 2.46065616607666, - 2.4629454612731934, - 2.4652347564697266, - 2.4675238132476807, - 2.469813108444214, - 2.472102165222168, - 2.474391460418701, - 2.4766807556152344, - 2.4789698123931885, - 2.4812591075897217, - 2.483548402786255, - 2.485837459564209, - 2.488126754760742, - 2.4904160499572754, - 2.4927051067352295, - 2.4949944019317627, - 2.497283458709717, - 2.49957275390625, - 2.501862049102783, - 2.5041511058807373, - 2.5064404010772705, - 2.5087296962738037, - 2.511018753051758, - 2.513308048248291, - 2.515597343444824, - 2.5178864002227783, - 2.5201756954193115, - 2.5224647521972656, - 2.524754047393799, - 2.527043342590332, - 2.529332399368286, - 2.5316216945648193, - 2.5339109897613525, - 2.5362000465393066, - 2.53848934173584, - 2.540778636932373, - 2.543067693710327, - 2.5453569889068604, - 2.5476460456848145, - 2.5499353408813477, - 2.552224636077881, - 2.554513692855835, - 2.556802988052368, - 2.5590920448303223, - 2.5613813400268555, - 2.5636706352233887, - 2.565959930419922, - 2.568248987197876, - 2.570538282394409, - 2.5728273391723633, - 2.5751166343688965, - 2.5774059295654297, - 2.579694986343384, - 2.581984281539917, - 2.58427357673645, - 2.5865626335144043, - 2.5888519287109375, - 2.5911412239074707, - 2.593430280685425, - 2.595719575881958, - 2.598008632659912, - 2.6002981662750244, - 2.6025896072387695, - 2.6048808097839355, - 2.6071720123291016, - 2.6094634532928467, - 2.611754894256592, - 2.6140458583831787, - 2.616337299346924, - 2.61862850189209, - 2.620919704437256, - 2.623211145401001, - 2.625502586364746, - 2.627793788909912, - 2.630084991455078, - 2.632376194000244, - 2.6346676349639893, - 2.6369590759277344, - 2.6392502784729004, - 2.6415414810180664, - 2.6438326835632324, - 2.6461238861083984, - 2.6484153270721436, - 2.6507067680358887, - 2.6529979705810547, - 2.6552891731262207, - 2.6575803756713867, - 2.659871816635132, - 2.662163257598877, - 2.664454460144043, - 2.666745662689209, - 2.669036865234375, - 2.671328067779541, - 2.673619508743286, - 2.6759109497070312, - 2.6782021522521973, - 2.6804933547973633, - 2.6827845573425293, - 2.6850759983062744, - 2.6873672008514404, - 2.6896584033966064, - 2.6919498443603516, - 2.6942410469055176, - 2.6965322494506836, - 2.6988236904144287, - 2.701115131378174, - 2.70340633392334, - 2.705697536468506, - 2.707988739013672, - 2.710280179977417, - 2.712571620941162, - 2.714862823486328, - 2.717154026031494, - 2.71944522857666, - 2.721736431121826, - 2.724027633666992, - 2.7263193130493164, - 2.7286105155944824, - 2.7309017181396484, - 2.7331929206848145, - 2.7354843616485596, - 2.7377758026123047, - 2.7400670051574707, - 2.7423582077026367, - 2.7446494102478027, - 2.7469406127929688, - 2.749232053756714, - 2.751746654510498, - 2.754373788833618, - 2.7570009231567383, - 2.7596282958984375, - 2.7622551918029785, - 2.7648825645446777, - 2.767509698867798, - 2.770136833190918, - 2.772764205932617, - 2.7753913402557373, - 2.7780184745788574, - 2.7806458473205566, - 2.7832727432250977, - 2.785900115966797, - 2.788527488708496, - 2.791154384613037, - 2.7937817573547363, - 2.7964086532592773, - 2.7990360260009766, - 2.8016631603240967, - 2.804290294647217, - 2.806917667388916, - 2.8095450401306152, - 2.8121719360351562, - 2.8147993087768555, - 2.8174264430999756, - 2.8200535774230957, - 2.822680950164795, - 2.825307846069336, - 2.827935218811035, - 2.8305623531341553, - 2.8331894874572754, - 2.8358168601989746, - 2.8384439945220947, - 2.841071128845215, - 2.843698501586914, - 2.846325397491455, - 2.8489527702331543, - 2.8515799045562744, - 2.8542070388793945, - 2.8568344116210938, - 2.8594613075256348, - 2.862088680267334, - 2.864715814590454, - 2.867342948913574, - 2.8699703216552734, - 2.8725974559783936, - 2.8752245903015137, - 2.877851963043213, - 2.880478858947754, - 2.883106231689453, - 2.8857333660125732, - 2.8883605003356934, - 2.8909878730773926, - 2.8936147689819336, - 2.896242141723633, - 2.898869037628174, - 2.901982307434082, - 2.9054622650146484, - 2.908942222595215, - 2.9124221801757812, - 2.9159021377563477, - 2.919382095336914, - 2.9228615760803223, - 2.9263415336608887, - 2.929821491241455, - 2.9333014488220215, - 2.936781406402588, - 2.9402613639831543, - 2.9437413215637207, - 2.947221279144287, - 2.9507012367248535, - 2.95418119430542, - 2.9576611518859863, - 2.9611411094665527, - 2.964621067047119, - 2.9681007862091064, - 2.971580743789673, - 2.9750607013702393, - 2.9785404205322266, - 2.982020378112793, - 2.9855003356933594, - 2.988980293273926, - 2.992460250854492, - 2.9959402084350586, - 2.999420166015625, - 3.0029001235961914, - 3.006380081176758, - 3.009860038757324, - 3.0133399963378906, - 3.016819953918457, - 3.0202996730804443, - 3.02377986907959, - 3.027259588241577, - 3.0307395458221436, - 3.034219264984131, - 3.0376992225646973, - 3.0411791801452637, - 3.04465913772583, - 3.0481390953063965, - 3.0525364875793457, - 3.057988405227661, - 3.0634403228759766, - 3.068892002105713, - 3.0743441581726074, - 3.0797958374023438, - 3.08524751663208, - 3.0906996726989746, - 3.096151351928711, - 3.1016035079956055, - 3.107055187225342, - 3.1125071048736572, - 3.1179590225219727, - 3.123410940170288, - 3.1288628578186035, - 3.134314775466919, - 3.1397666931152344, - 3.14521861076355, - 3.1506705284118652, - 3.1561222076416016, - 3.161573886871338, - 3.1670260429382324, - 3.1724777221679688, - 3.1779298782348633, - 3.1833815574645996, - 3.188833713531494, - 3.1942853927612305, - 3.199737071990967, - 3.209711790084839, - 3.2199153900146484, - 3.230119228363037, - 3.2403225898742676, - 3.2505264282226562, - 3.260730028152466, - 3.2709336280822754, - 3.281137228012085, - 3.2913408279418945, - 3.3015449047088623, - 3.311748504638672, - 3.3219521045684814, - 3.332155704498291, - 3.3423593044281006, - 3.3545167446136475, - 3.3724982738494873, - 3.3904805183410645, - 3.4084625244140625, - 3.4264445304870605, - 3.4444267749786377, - 3.462409019470215, - 3.480390787124634, - 3.498373031616211, - 3.512968063354492, - 3.5272269248962402, - 3.54148530960083, - 3.555744171142578, - 3.570002555847168, - 3.584261417388916, - 3.598519802093506, - 3.612778663635254, - 3.6270365715026855, - 3.6412954330444336, - 3.6527533531188965, - 3.6598219871520996, - 3.6668906211853027, - 3.6739590167999268, - 3.681027889251709, - 3.688096523284912, - 3.695164680480957, - 3.70223331451416, - 3.7093024253845215, - 3.7163705825805664, - 3.7234394550323486, - 3.7305080890655518, - 3.737576484680176, - 3.744645118713379, - 3.751713514328003, - 3.758782386779785, - 3.76585054397583, - 3.7729194164276123, - 3.7799880504608154, - 3.7870564460754395, - 3.7941250801086426, - 3.8006608486175537, - 3.8045742511749268, - 3.8084874153137207, - 3.8124008178710938, - 3.816314220428467, - 3.8202273845672607, - 3.824141025543213, - 3.828054189682007, - 3.831967353820801, - 3.835880756378174, - 3.8397939205169678, - 3.843707323074341, - 3.8476204872131348, - 3.851533889770508, - 3.855447292327881, - 3.859360456466675, - 3.863274097442627, - 3.867187023162842, - 3.871100425720215, - 3.875014066696167, - 3.878927230834961, - 3.882840633392334, - 3.886753797531128, - 3.890666961669922, - 3.894580602645874, - 3.898493528366089, - 3.902407169342041, - 3.906320333480835, - 3.910233497619629, - 3.914147138595581, - 3.918060302734375, - 3.921973705291748, - 3.925887107849121, - 3.929800033569336, - 3.933713674545288, - 3.937626838684082, - 3.941540241241455, - 3.945453643798828, - 3.949366807937622, - 3.952162265777588, - 3.954742193222046, - 3.9573216438293457, - 3.9599015712738037, - 3.9624814987182617, - 3.9650611877441406, - 3.9676411151885986, - 3.9702205657958984, - 3.9728004932403564, - 3.9753804206848145, - 3.9779598712921143, - 3.9805397987365723, - 3.983119487762451, - 3.985699415206909, - 3.988279342651367, - 3.990858793258667, - 3.993438720703125, - 3.996018409729004, - 3.998598098754883, - 4.001177787780762, - 4.003757476806641, - 4.0063371658325195, - 4.008917331695557, - 4.0114970207214355, - 4.014077186584473, - 4.016656398773193, - 4.0192365646362305, - 4.021816253662109, - 4.024395942687988, - 4.026975631713867, - 4.029555320739746, - 4.032135009765625, - 4.034715175628662, - 4.037294387817383, - 4.039874076843262, - 4.042454242706299, - 4.045034408569336, - 4.047614097595215, - 4.050193786621094, - 4.052773475646973, - 4.055353164672852, - 4.0579328536987305, - 4.060512542724609, - 4.063092231750488, - 4.065672397613525, - 4.068252086639404, - 4.070831775665283, - 4.07341194152832, - 4.075991153717041, - 4.078571319580078, - 4.081151008605957, - 4.083730697631836, - 4.086310386657715, - 4.088890075683594, - 4.091469764709473, - 4.09404993057251, - 4.096629619598389, - 4.099209308624268, - 4.1013641357421875, - 4.103331089019775, - 4.105298042297363, - 4.107264995574951, - 4.109231948852539, - 4.111199378967285, - 4.113166332244873, - 4.115133285522461, - 4.117100715637207, - 4.119067668914795, - 4.121034622192383, - 4.123002052307129, - 4.124969005584717, - 4.126935958862305, - 4.128902912139893, - 4.1308698654174805, - 4.132836818695068, - 4.134803771972656, - 4.136771202087402, - 4.138737678527832, - 4.140705108642578, - 4.142672061920166, - 4.144639015197754, - 4.1466064453125, - 4.148573398590088, - 4.150540351867676, - 4.152507781982422, - 4.15447473526001, - 4.156441688537598, - 4.1584086418151855, - 4.160375595092773, - 4.162342548370361, - 4.164309501647949, - 4.166276931762695, - 4.168243885040283, - 4.170210838317871, - 4.172178268432617, - 4.174145221710205, - 4.176112174987793, - 4.178079605102539, - 4.180046558380127, - 4.182013511657715, - 4.183980464935303, - 4.185947418212891, - 4.1879143714904785, - 4.189881324768066, - 4.191848278045654, - 4.193815231323242, - 4.195782661437988, - 4.197749614715576, - 4.199716567993164, - 4.20168399810791, - 4.203650951385498, - 4.205617904663086, - 4.207585334777832, - 4.209551811218262, - 4.211519241333008, - 4.213486194610596, - 4.215453147888184, - 4.2174201011657715, - 4.219387054443359, - 4.2213544845581055, - 4.223321437835693, - 4.225288391113281, - 4.227255821228027, - 4.229222297668457, - 4.231189727783203, - 4.233156681060791, - 4.235123634338379, - 4.237091064453125, - 4.239058017730713, - 4.241024971008301, - 4.242991924285889, - 4.244958877563477, - 4.2469258308410645, - 4.248892784118652, - 4.250740051269531, - 4.252432823181152, - 4.254125595092773, - 4.2558183670043945, - 4.257511138916016, - 4.259203910827637, - 4.2608962059021, - 4.262588977813721, - 4.2642822265625, - 4.265974521636963, - 4.267666816711426, - 4.269359588623047, - 4.271052837371826, - 4.272745132446289, - 4.27443790435791, - 4.276130676269531, - 4.277823448181152, - 4.279515743255615, - 4.2812089920043945, - 4.282901763916016, - 4.2845940589904785, - 4.286286354064941, - 4.287979602813721, - 4.289672374725342, - 4.291364669799805, - 4.293057441711426, - 4.294750213623047, - 4.296442985534668, - 4.298135757446289, - 4.29982852935791, - 4.301521301269531, - 4.303213596343994, - 4.304906368255615, - 4.306599140167236, - 4.308291912078857, - 4.30998420715332, - 4.3116774559021, - 4.313370227813721, - 4.315062522888184, - 4.316755294799805, - 4.318448066711426, - 4.320140838623047, - 4.321833610534668, - 4.323526382446289, - 4.32521915435791, - 4.326911449432373, - 4.328604221343994, - 4.330296993255615, - 4.331989765167236, - 4.333682060241699, - 4.33537483215332, - 4.337067604064941, - 4.3387603759765625, - 4.340453147888184, - 4.342145919799805, - 4.343838691711426, - 4.345530986785889, - 4.34722375869751, - 4.348916530609131, - 4.350609302520752, - 4.352301597595215, - 4.353994369506836, - 4.355687141418457, - 4.357379913330078, - 4.359072685241699, - 4.36076545715332, - 4.362458229064941, - 4.3641510009765625, - 4.365843772888184, - 4.367536544799805, - 4.369228839874268, - 4.370921611785889, - 4.37261438369751, - 4.374307155609131, - 4.375999450683594, - 4.377692222595215, - 4.379384994506836, - 4.381077766418457, - 4.382770538330078, - 4.384463310241699, - 4.38615608215332, - 4.387848377227783, - 4.389541149139404, - 4.391233921051025, - 4.3929266929626465, - 4.394618988037109, - 4.3963117599487305, - 4.398004531860352, - 4.399697303771973, - 4.401331424713135, - 4.402953147888184, - 4.404574871063232, - 4.406196117401123, - 4.407817363739014, - 4.409439563751221, - 4.411060810089111, - 4.41268253326416, - 4.414303779602051, - 4.4159255027771, - 4.41754674911499, - 4.419168472290039, - 4.42078971862793, - 4.4224114418029785, - 4.424032688140869, - 4.425654411315918, - 4.427275657653809, - 4.428897380828857, - 4.430518627166748, - 4.432140350341797, - 4.4337615966796875, - 4.435382843017578, - 4.437005043029785, - 4.438626289367676, - 4.440247535705566, - 4.441868782043457, - 4.443490982055664, - 4.445112228393555, - 4.446733474731445, - 4.448355197906494, - 4.449976444244385, - 4.451598167419434, - 4.453219413757324, - 4.454841136932373, - 4.456462383270264, - 4.4580841064453125, - 4.459705352783203, - 4.461327075958252, - 4.462948322296143, - 4.464570045471191, - 4.466191291809082, - 4.467813014984131, - 4.4694342613220215, - 4.4710564613342285, - 4.472677707672119, - 4.47429895401001, - 4.475920677185059, - 4.477542400360107, - 4.479163646697998, - 4.480784893035889, - 4.4824066162109375, - 4.484028339385986, - 4.485649585723877, - 4.487271308898926, - 4.488893032073975, - 4.490514278411865, - 4.492136001586914, - 4.493757247924805, - 4.4953789710998535, - 4.497000217437744, - 4.498621940612793, - 4.500243186950684, - 4.501864910125732, - 4.503486156463623, - 4.505107879638672, - 4.5067291259765625, - 4.508350849151611, - 4.50997257232666, - 4.511593818664551, - 4.513215065002441, - 4.514836311340332, - 4.516458511352539, - 4.51807975769043, - 4.51970100402832, - 4.521322250366211, - 4.52294397354126, - 4.524565696716309, - 4.526186943054199, - 4.52780818939209, - 4.529430389404297, - 4.5310516357421875, - 4.532672882080078, - 4.534294605255127, - 4.535915851593018, - 4.537537574768066, - 4.539158821105957, - 4.540780544281006, - 4.5424017906188965, - 4.544023513793945, - 4.545645236968994, - 4.547266483306885, - 4.548888206481934, - 4.550540924072266, - 4.5522613525390625, - 4.553980827331543, - 4.55570125579834, - 4.557421684265137, - 4.559141635894775, - 4.560862064361572, - 4.562582015991211, - 4.564302444458008, - 4.5660223960876465, - 4.567742824554443, - 4.56946325302124, - 4.571183681488037, - 4.572904109954834, - 4.574624061584473, - 4.5763444900512695, - 4.578064441680908, - 4.579784393310547, - 4.581504821777344, - 4.583225250244141, - 4.5849456787109375, - 4.586665630340576, - 4.588385581970215, - 4.590106010437012, - 4.59182596206665, - 4.593546390533447, - 4.595266819000244, - 4.596987247467041, - 4.59870719909668, - 4.600427627563477, - 4.602148056030273, - 4.60386848449707, - 4.605587959289551, - 4.607308387756348, - 4.6090288162231445, - 4.610749244689941, - 4.612468719482422, - 4.614189147949219, - 4.615909576416016, - 4.617629528045654, - 4.619349956512451, - 4.621070384979248, - 4.622790813446045, - 4.624510765075684, - 4.626230716705322, - 4.627951622009277, - 4.629671573638916, - 4.631391525268555, - 4.633111953735352, - 4.634832382202148, - 4.636552810668945, - 4.638272762298584, - 4.639992713928223, - 4.6417131423950195, - 4.643433094024658, - 4.645153522491455, - 4.646873950958252, - 4.648594379425049, - 4.6503143310546875, - 4.652034282684326, - 4.653754711151123, - 4.65547513961792, - 4.657195568084717, - 4.6589155197143555, - 4.660635948181152, - 4.662356376647949, - 4.66407585144043, - 4.665796279907227, - 4.667516708374023, - 4.669236660003662, - 4.670957088470459, - 4.672677516937256, - 4.674397945404053, - 4.676117897033691, - 4.67783784866333, - 4.679558277130127, - 4.681278705596924, - 4.682999134063721, - 4.684719085693359, - 4.686439514160156, - 4.688159465789795, - 4.689879417419434, - 4.6915998458862305, - 4.693320274353027, - 4.695040702819824, - 4.696760654449463, - 4.698480606079102, - 4.7002363204956055, - 4.702260494232178, - 4.704284191131592, - 4.706308364868164, - 4.708332538604736, - 4.710355758666992, - 4.712380409240723, - 4.7144036293029785, - 4.716427803039551, - 4.718451976776123, - 4.720475196838379, - 4.722499370574951, - 4.724523067474365, - 4.7265472412109375, - 4.72857141494751, - 4.730594635009766, - 4.732619285583496, - 4.734642505645752, - 4.736666679382324, - 4.7386908531188965, - 4.740714073181152, - 4.742738246917725, - 4.744761943817139, - 4.746786117553711, - 4.748810291290283, - 4.750833511352539, - 4.7528581619262695, - 4.754881381988525, - 4.756905555725098, - 4.75892972946167, - 4.760953426361084, - 4.762977600097656, - 4.76500129699707, - 4.767024993896484, - 4.769049167633057, - 4.7710723876953125, - 4.773097038269043, - 4.775120258331299, - 4.777144432067871, - 4.779168605804443, - 4.781191825866699, - 4.78321647644043, - 4.7852396965026855, - 4.787263870239258, - 4.78928804397583, - 4.791311264038086, - 4.793335914611816, - 4.795359134674072, - 4.7973833084106445, - 4.799407482147217, - 4.801431179046631, - 4.803455352783203, - 4.805479049682617, - 4.807502746582031, - 4.8095269203186035, - 4.811550617218018, - 4.81357479095459, - 4.815598487854004, - 4.817622184753418, - 4.81964635848999, - 4.821669578552246, - 4.823694229125977, - 4.825717449188232, - 4.827741622924805, - 4.829765796661377, - 4.831789016723633, - 4.833813667297363, - 4.835836887359619, - 4.837861061096191, - 4.839885234832764, - 4.841908931732178, - 4.84393310546875, - 4.845956802368164, - 4.847980499267578, - 4.850006103515625, - 4.852660655975342, - 4.855315208435059, - 4.857970237731934, - 4.86062479019165, - 4.863279819488525, - 4.8659348487854, - 4.868589401245117, - 4.871243953704834, - 4.873898506164551, - 4.876553535461426, - 4.879208087921143, - 4.881862640380859, - 4.884518146514893, - 4.887172698974609, - 4.889827728271484, - 4.892482280731201, - 4.895136833190918, - 4.897791862487793, - 4.90044641494751, - 4.903100967407227, - 4.905755996704102, - 4.908410549163818, - 4.911065101623535, - 4.91372013092041, - 4.916375160217285, - 4.919029712677002, - 4.921684265136719, - 4.924339294433594, - 4.9269938468933105, - 4.929648399353027, - 4.932303428649902, - 4.934958457946777, - 4.937613010406494, - 4.940267562866211, - 4.942922592163086, - 4.945577144622803, - 4.948232173919678, - 4.950887203216553, - 4.9535417556762695, - 4.9561967849731445, - 4.958850860595703, - 4.961505889892578, - 4.964160442352295, - 4.96681547164917, - 4.969470500946045, - 4.972125053405762, - 4.974780082702637, - 4.9774346351623535, - 4.9800896644592285, - 4.982744216918945, - 4.98539924621582, - 4.988053321838379, - 4.990708351135254, - 4.993362903594971, - 4.996017932891846 - ], - "xaxis": "x2", - "yaxis": "y2" - } - ], - "layout": { - "annotations": [ - { - "font": { - "size": 16 - }, - "showarrow": false, - "text": "PDF", - "x": 0.225, - "xanchor": "center", - "xref": "paper", - "y": 1, - "yanchor": "bottom", - "yref": "paper" - }, - { - "font": { - "size": 16 - }, - "showarrow": false, - "text": "Samples", - "x": 0.775, - "xanchor": "center", - "xref": "paper", - "y": 1, - "yanchor": "bottom", - "yref": "paper" - } - ], - "height": 400, - "hovermode": false, - "margin": { - "b": 20, - "l": 20, - "r": 20, - "t": 50 - }, - "showlegend": false, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - }, - "xaxis": { - "anchor": "y", - "domain": [ - 0, - 0.45 - ], - "title": { - "text": "Distance" - } - }, - "xaxis2": { - "anchor": "y2", - "domain": [ - 0.55, - 1 - ], - "title": { - "text": "Distance" - } - }, - "yaxis": { - "anchor": "x", - "domain": [ - 0, - 1 - ] - }, - "yaxis2": { - "anchor": "x2", - "domain": [ - 0, - 1 - ], - "title": { - "text": "# Samples" - } - } - } - }, - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# COLLAPSED\n", - "import torch\n", - "from nerfstudio.cameras.rays import RayBundle\n", - "from nerfstudio.model_components import ray_sampler\n", - "import plotly.graph_objects as go\n", - "from plotly.subplots import make_subplots\n", - "\n", - "num_coarse_samples = 20\n", - "num_samples = 1000\n", - "near = 2\n", - "far = 5\n", - "train_stratified = False\n", - "\n", - "fig = make_subplots(\n", - " rows=1,\n", - " cols=2,\n", - " subplot_titles=(\"PDF\", \"Samples\"),\n", - ")\n", - "\n", - "uniform_sampler = ray_sampler.UniformSampler(num_samples=num_coarse_samples, train_stratified=train_stratified)\n", - "pdf_sampler = ray_sampler.PDFSampler(num_samples=num_samples, train_stratified=train_stratified, include_original=False)\n", - "\n", - "ray_bundle = RayBundle(\n", - " origins=torch.ones([1, 3]),\n", - " directions=torch.ones([1, 3]),\n", - " pixel_area=torch.ones([1, 1]),\n", - " nears=torch.ones([1, 1]) * near,\n", - " fars=torch.ones([1, 1]) * far,\n", - ")\n", - "\n", - "coarse_ray_samples = uniform_sampler(ray_bundle)\n", - "\n", - "# Generate arbitrary PDF\n", - "weights = torch.ones(num_coarse_samples)\n", - "weights += torch.sin(torch.linspace(0, 3 * torch.pi, num_coarse_samples))\n", - "weights += torch.sin(torch.linspace(0, 0.5 * torch.pi, num_coarse_samples))\n", - "weights -= torch.min(weights)\n", - "weights /= torch.sum(weights)\n", - "\n", - "samples = pdf_sampler.generate_ray_samples(ray_bundle, coarse_ray_samples, weights[None, :, None], num_samples)\n", - "\n", - "# Plotting stuff\n", - "x = torch.ones((num_coarse_samples * 2))\n", - "x[::2] = coarse_ray_samples.frustums.starts[0, :, 0]\n", - "x[1::2] = coarse_ray_samples.frustums.ends[0, :, 0]\n", - "\n", - "y = torch.ones((num_coarse_samples * 2))\n", - "y[::2] = weights\n", - "y[1::2] = weights\n", - "\n", - "pdf_trace = go.Scatter(x=x, y=y)\n", - "fig.append_trace(pdf_trace, 1, 1)\n", - "\n", - "samples_trace = go.Histogram(x=samples.frustums.starts[0, :, 0], nbinsx=100)\n", - "fig.append_trace(samples_trace, 1, 2)\n", - "\n", - "fig.update_yaxes(title_text=\"# Samples\", row=1, col=2)\n", - "fig.update_xaxes(title_text=\"Distance\", row=1, col=1)\n", - "fig.update_xaxes(title_text=\"Distance\", row=1, col=2)\n", - "\n", - "# Overlay both histograms\n", - "fig.update_layout(height=400, hovermode=False, showlegend=False, margin=dict(l=20, r=20, t=50, b=20))\n", - "fig.update_traces(opacity=0.7)\n", - "fig.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.7" - }, - "vscode": { - "interpreter": { - "hash": "916dbcbb3f70747c44a77c7bcd40155683ae19c65e1c03b4aa3499c5328201f1" - } - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/docs/nerfology/model_components/visualize_samples.ipynb b/docs/nerfology/model_components/visualize_samples.ipynb deleted file mode 100644 index 55f30908..00000000 --- a/docs/nerfology/model_components/visualize_samples.ipynb +++ /dev/null @@ -1,68255 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Sample Representation\n", - "\n", - "A core component of volumetric rendering is computing samples along a ray. The representation of these samples is important. We use conical frustums to represent samples. The conical frustums are defined via the following parameters:\n", - "\n", - "```{image} imgs/frustums.png\n", - ":align: center\n", - ":class: only-light\n", - ":width: 600\n", - "```\n", - "\n", - "```{image} imgs/frustums-dark.png\n", - ":align: center\n", - ":class: only-dark\n", - ":width: 600\n", - "```\n", - "\n", - "| Parameter | Dimension | Description |\n", - "| ---------- | :-------: | ----------------------------------------------------- |\n", - "| origin | 3 | The _x,y,z_ origin of the ray |\n", - "| direction | 3 | The direction of the ray represented as a unit vector |\n", - "| pixel area | 1 | The pixel's area a distance of 1 from the origin |\n", - "| start | 1 | The distance at which the frustum starts |\n", - "| end | 1 | The distance at which the frustums ends |\n", - "\n", - ":::{note}\n", - "Why conical frustums and not pyramidal frustums? Those interested in this question may be interested in [_A Pixel Is Not A Little Square_](http://alvyray.com/Memos/CG/Microsoft/6_pixel.pdf) by Alvy Ray Smith.\n", - ":::\n", - "\n", - ":::{important}\n", - "This representation is only an approximation.\n", - "nerfstudio calculates $pixel area$ as $dx * dy$ where $dx$ and $dy$ are the distance between points neighboring rays in the $x$ and $y$ direction a distance of 1 from the origin.\n", - ":::\n", - "\n", - "\n", - "## 3D Frustum\n" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": { - "tags": [ - "remove-cell" - ] - }, - "outputs": [], - "source": [ - "# HIDDEN\n", - "import plotly.graph_objects as go\n", - "\n", - "webdocs_layout = go.Layout(\n", - " scene=dict(\n", - " aspectmode=\"data\",\n", - " xaxis=dict(showspikes=False),\n", - " yaxis=dict(showspikes=False),\n", - " zaxis=dict(showspikes=False),\n", - " xaxis_visible=False,\n", - " yaxis_visible=False,\n", - " zaxis_visible=False,\n", - " ),\n", - " scene_camera=dict(up=dict(x=0, y=1, z=0)),\n", - " margin=dict(r=0, b=10, l=0, t=10),\n", - " hovermode=False,\n", - " showlegend=False,\n", - " paper_bgcolor=\"rgba(0,0,0,0)\",\n", - ")" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": { - "tags": [ - "hide-input" - ] - }, - "outputs": [ - { - "data": { - "text/html": [ - " \n", - " " - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "line": { - "color": "teal", - "width": 1 - }, - "mode": "lines", - "name": "Ray Bundle", - "type": "scatter3d", - "x": [ - 0, - -0.4402044117450714, - 0, - -0.1481594443321228, - 0, - 0.1481594443321228, - 0, - 0.4402044117450714, - 0, - -0.4444783329963684, - 0, - -0.14962640404701233, - 0, - 0.14962640404701233, - 0, - 0.4444783329963684, - 0, - -0.4444783329963684, - 0, - -0.14962640404701233, - 0, - 0.14962640404701233, - 0, - 0.4444783329963684, - 0, - -0.4402044117450714, - 0, - -0.1481594443321228, - 0, - 0.1481594443321228, - 0, - 0.4402044117450714 - ], - "y": [ - 0, - 0.4402044117450714, - 0, - 0.4444783329963684, - 0, - 0.4444783329963684, - 0, - 0.4402044117450714, - 0, - 0.1481594443321228, - 0, - 0.14962640404701233, - 0, - 0.14962640404701233, - 0, - 0.1481594443321228, - 0, - -0.1481594443321228, - 0, - -0.14962640404701233, - 0, - -0.14962640404701233, - 0, - -0.1481594443321228, - 0, - -0.4402044117450714, - 0, - -0.4444783329963684, - 0, - -0.4444783329963684, - 0, - -0.4402044117450714 - ], - "z": [ - 0, - -2.9346959590911865, - 0, - -2.963188886642456, - 0, - -2.963188886642456, - 0, - -2.9346959590911865, - 0, - -2.963188886642456, - 0, - -2.992527961730957, - 0, - -2.992527961730957, - 0, - -2.963188886642456, - 0, - -2.963188886642456, - 0, - -2.992527961730957, - 0, - -2.992527961730957, - 0, - -2.963188886642456, - 0, - -2.9346959590911865, - 0, - -2.963188886642456, - 0, - -2.963188886642456, - 0, - -2.9346959590911865 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.10855939984321594, - -0.09795648604631424, - -0.09263946861028671, - -0.09318450093269348, - -0.09953255951404572, - -0.11099569499492645, - -0.12633173167705536, - -0.1438787579536438, - -0.16173526644706726, - -0.17796623706817627, - -0.1908128261566162, - -0.1988828480243683, - -0.20130184292793274, - -0.19780763983726501, - -0.18877892196178436, - -0.17519405484199524, - -0.15852516889572144, - -0.14057862758636475, - -0.12329919636249542, - -0.10855939984321594, - -0.18093234300613403, - -0.1632608324289322, - -0.154399111866951, - -0.15530751645565033, - -0.16588760912418365, - -0.18499283492565155, - -0.2105529010295868, - -0.2397979199886322, - -0.26955878734588623, - -0.29661044478416443, - -0.31802141666412354, - -0.3314714729785919, - -0.33550310134887695, - -0.3296794295310974, - -0.31463155150413513, - -0.29199010133743286, - -0.2642086446285248, - -0.2342977225780487, - -0.20549868047237396, - -0.18093234300613403 - ], - "y": [ - 0.10855939984321594, - 0.12329921871423721, - 0.14057864248752594, - 0.15852516889572144, - 0.17519403994083405, - 0.18877892196178436, - 0.1978076547384262, - 0.20130184292793274, - 0.1988828480243683, - 0.1908128261566162, - 0.17796626687049866, - 0.16173526644706726, - 0.1438787579536438, - 0.12633171677589417, - 0.11099570244550705, - 0.09953256696462631, - 0.09318450838327408, - 0.09263946115970612, - 0.09795649349689484, - 0.10855939984321594, - 0.18093234300613403, - 0.20549872517585754, - 0.2342977374792099, - 0.2642086148262024, - 0.2919900715351105, - 0.31463155150413513, - 0.3296794295310974, - 0.33550310134887695, - 0.3314714729785919, - 0.31802141666412354, - 0.29661044478416443, - 0.26955878734588623, - 0.2397979497909546, - 0.2105528861284256, - 0.18499283492565155, - 0.16588762402534485, - 0.15530753135681152, - 0.15439912676811218, - 0.16326084733009338, - 0.18093237280845642 - ], - "z": [ - -0.9896845817565918, - -0.9890640377998352, - -0.9872696995735168, - -0.9844959378242493, - -0.9810433983802795, - -0.9772862195968628, - -0.9736315011978149, - -0.9704753160476685, - -0.9681596755981445, - -0.9669355154037476, - -0.9669355154037476, - -0.9681596755981445, - -0.9704753160476685, - -0.9736315011978149, - -0.9772862195968628, - -0.9810433983802795, - -0.9844959378242493, - -0.9872696995735168, - -0.9890640377998352, - -0.9896845817565918, - -1.6494743824005127, - -1.6484402418136597, - -1.6454496383666992, - -1.64082670211792, - -1.6350724697113037, - -1.6288104057312012, - -1.6227192878723145, - -1.6174589395523071, - -1.6135995388031006, - -1.6115593910217285, - -1.6115593910217285, - -1.6135995388031006, - -1.6174589395523071, - -1.6227192878723145, - -1.6288104057312012, - -1.6350724697113037, - -1.64082670211792, - -1.6454496383666992, - -1.6484402418136597, - -1.6494743824005127 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.18093234300613403, - -0.1632608324289322, - -0.154399111866951, - -0.15530751645565033, - -0.16588760912418365, - -0.18499283492565155, - -0.2105529010295868, - -0.2397979199886322, - -0.26955878734588623, - -0.29661044478416443, - -0.31802141666412354, - -0.3314714729785919, - -0.33550310134887695, - -0.3296794295310974, - -0.31463155150413513, - -0.29199010133743286, - -0.2642086446285248, - -0.2342977225780487, - -0.20549868047237396, - -0.18093234300613403, - -0.2533052861690521, - -0.22856515645980835, - -0.21615874767303467, - -0.2174305021762848, - -0.232242614030838, - -0.25898995995521545, - -0.29477402567863464, - -0.3357170820236206, - -0.3773822784423828, - -0.4152545928955078, - -0.4452299475669861, - -0.4640600085258484, - -0.4697043001651764, - -0.46155115962028503, - -0.4404841363430023, - -0.4087861180305481, - -0.36989209055900574, - -0.32801681756973267, - -0.28769809007644653, - -0.25330525636672974 - ], - "y": [ - 0.18093234300613403, - 0.20549872517585754, - 0.2342977374792099, - 0.2642086148262024, - 0.2919900715351105, - 0.31463155150413513, - 0.3296794295310974, - 0.33550310134887695, - 0.3314714729785919, - 0.31802141666412354, - 0.29661044478416443, - 0.26955878734588623, - 0.2397979497909546, - 0.2105528861284256, - 0.18499283492565155, - 0.16588762402534485, - 0.15530753135681152, - 0.15439912676811218, - 0.16326084733009338, - 0.18093237280845642, - 0.2533052861690521, - 0.2876981496810913, - 0.32801681756973267, - 0.36989209055900574, - 0.4087860882282257, - 0.4404841363430023, - 0.46155115962028503, - 0.4697043299674988, - 0.4640600085258484, - 0.4452299475669861, - 0.4152545928955078, - 0.3773822784423828, - 0.335717111825943, - 0.29477402567863464, - 0.25898995995521545, - 0.2322426438331604, - 0.2174305021762848, - 0.21615873277187347, - 0.22856517136096954, - 0.2533053159713745 - ], - "z": [ - -1.6494743824005127, - -1.6484402418136597, - -1.6454496383666992, - -1.64082670211792, - -1.6350724697113037, - -1.6288104057312012, - -1.6227192878723145, - -1.6174589395523071, - -1.6135995388031006, - -1.6115593910217285, - -1.6115593910217285, - -1.6135995388031006, - -1.6174589395523071, - -1.6227192878723145, - -1.6288104057312012, - -1.6350724697113037, - -1.64082670211792, - -1.6454496383666992, - -1.6484402418136597, - -1.6494743824005127, - -2.3092639446258545, - -2.3078160285949707, - -2.3036293983459473, - -2.2971572875976562, - -2.2891013622283936, - -2.28033447265625, - -2.2718069553375244, - -2.2644424438476562, - -2.2590394020080566, - -2.256182909011841, - -2.256182909011841, - -2.2590394020080566, - -2.2644424438476562, - -2.2718069553375244, - -2.28033447265625, - -2.2891013622283936, - -2.2971572875976562, - -2.3036293983459473, - -2.3078160285949707, - -2.3092639446258545 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.2533052861690521, - -0.22856515645980835, - -0.21615874767303467, - -0.2174305021762848, - -0.232242614030838, - -0.25898995995521545, - -0.29477402567863464, - -0.3357170820236206, - -0.3773822784423828, - -0.4152545928955078, - -0.4452299475669861, - -0.4640600085258484, - -0.4697043001651764, - -0.46155115962028503, - -0.4404841363430023, - -0.4087861180305481, - -0.36989209055900574, - -0.32801681756973267, - -0.28769809007644653, - -0.25330525636672974, - -0.3256782293319702, - -0.2938694655895233, - -0.27791839838027954, - -0.27955353260040283, - -0.29859766364097595, - -0.33298709988594055, - -0.3789951801300049, - -0.431636244058609, - -0.4852057993412018, - -0.5338987708091736, - -0.5724384784698486, - -0.5966485738754272, - -0.6039055585861206, - -0.5934229493141174, - -0.5663367509841919, - -0.5255821347236633, - -0.4755755066871643, - -0.42173588275909424, - -0.3698975443840027, - -0.32567816972732544 - ], - "y": [ - 0.2533052861690521, - 0.2876981496810913, - 0.32801681756973267, - 0.36989209055900574, - 0.4087860882282257, - 0.4404841363430023, - 0.46155115962028503, - 0.4697043299674988, - 0.4640600085258484, - 0.4452299475669861, - 0.4152545928955078, - 0.3773822784423828, - 0.335717111825943, - 0.29477402567863464, - 0.25898995995521545, - 0.2322426438331604, - 0.2174305021762848, - 0.21615873277187347, - 0.22856517136096954, - 0.2533053159713745, - 0.3256782293319702, - 0.36989763379096985, - 0.42173588275909424, - 0.4755755066871643, - 0.5255821347236633, - 0.5663366913795471, - 0.5934229493141174, - 0.6039055585861206, - 0.5966485738754272, - 0.5724384784698486, - 0.5338987708091736, - 0.48520582914352417, - 0.4316362738609314, - 0.3789951503276825, - 0.33298709988594055, - 0.29859766364097595, - 0.27955353260040283, - 0.27791839838027954, - 0.2938694953918457, - 0.3256782293319702 - ], - "z": [ - -2.3092639446258545, - -2.3078160285949707, - -2.3036293983459473, - -2.2971572875976562, - -2.2891013622283936, - -2.28033447265625, - -2.2718069553375244, - -2.2644424438476562, - -2.2590394020080566, - -2.256182909011841, - -2.256182909011841, - -2.2590394020080566, - -2.2644424438476562, - -2.2718069553375244, - -2.28033447265625, - -2.2891013622283936, - -2.2971572875976562, - -2.3036293983459473, - -2.3078160285949707, - -2.3092639446258545, - -2.9690537452697754, - -2.9671921730041504, - -2.9618091583251953, - -2.9534878730773926, - -2.9431302547454834, - -2.931858777999878, - -2.9208946228027344, - -2.911426067352295, - -2.9044790267944336, - -2.9008066654205322, - -2.9008066654205322, - -2.9044790267944336, - -2.911426067352295, - -2.9208946228027344, - -2.931858777999878, - -2.9431302547454834, - -2.9534878730773926, - -2.9618091583251953, - -2.9671921730041504, - -2.9690537452697754 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.03198060393333435, - -0.015758033841848373, - -0.0031796302646398544, - 0.004391547292470932, - 0.006135040428489447, - 0.0018619114998728037, - -0.00796477310359478, - -0.022280141711235046, - -0.03953290358185768, - -0.05785345286130905, - -0.07525648176670074, - -0.0898560881614685, - -0.10007017850875854, - -0.10479191690683365, - -0.10350960493087769, - -0.09636223316192627, - -0.08412428200244904, - -0.06812195479869843, - -0.05008935183286667, - -0.031980596482753754, - -0.05330101400613785, - -0.026263395324349403, - -0.005299383774399757, - 0.007319245487451553, - 0.01022506132721901, - 0.0031031868420541286, - -0.013274616561830044, - -0.03713356703519821, - -0.0658881813287735, - -0.09642242640256882, - -0.1254274696111679, - -0.1497601419687271, - -0.1667836606502533, - -0.17465320229530334, - -0.17251603305339813, - -0.16060373187065125, - -0.14020715653896332, - -0.11353660374879837, - -0.08348225057125092, - -0.053300999104976654 - ], - "y": [ - 0.09594181180000305, - 0.10449299216270447, - 0.11777611821889877, - 0.13435174524784088, - 0.1524236500263214, - 0.17003345489501953, - 0.18527288734912872, - 0.19649049639701843, - 0.20247067511081696, - 0.20256540179252625, - 0.19676440954208374, - 0.1856962889432907, - 0.17056047916412354, - 0.15299716591835022, - 0.13490962982177734, - 0.11825791746377945, - 0.10484646260738373, - 0.09612865746021271, - 0.09304921329021454, - 0.09594181180000305, - 0.15990301966667175, - 0.17415499687194824, - 0.19629351794719696, - 0.2239195704460144, - 0.2540394365787506, - 0.2833891212940216, - 0.30878815054893494, - 0.3274841904640198, - 0.33745115995407104, - 0.33760902285575867, - 0.3279406726360321, - 0.3094938397407532, - 0.28426748514175415, - 0.25499528646469116, - 0.2248493731021881, - 0.19709651172161102, - 0.174744114279747, - 0.16021445393562317, - 0.15508201718330383, - 0.15990301966667175 - ], - "z": [ - -0.9964325428009033, - -0.9959610104560852, - -0.9945974349975586, - -0.9924896955490112, - -0.9898660778999329, - -0.9870109558105469, - -0.9842336773872375, - -0.9818352460861206, - -0.9800755977630615, - -0.979145348072052, - -0.979145348072052, - -0.9800755977630615, - -0.9818352460861206, - -0.9842336773872375, - -0.9870108962059021, - -0.9898660778999329, - -0.9924896359443665, - -0.9945974349975586, - -0.9959610104560852, - -0.9964325428009033, - -1.660720944404602, - -1.6599349975585938, - -1.6576623916625977, - -1.6541494131088257, - -1.649776816368103, - -1.645018219947815, - -1.6403894424438477, - -1.6363921165466309, - -1.6334593296051025, - -1.6319090127944946, - -1.6319090127944946, - -1.6334593296051025, - -1.6363921165466309, - -1.6403894424438477, - -1.645018219947815, - -1.649776816368103, - -1.6541494131088257, - -1.6576623916625977, - -1.6599349975585938, - -1.660720944404602 - ] - }, - { - "alphahull": 0, - "color": "#FFA15A", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.05330101400613785, - -0.026263395324349403, - -0.005299383774399757, - 0.007319245487451553, - 0.01022506132721901, - 0.0031031868420541286, - -0.013274616561830044, - -0.03713356703519821, - -0.0658881813287735, - -0.09642242640256882, - -0.1254274696111679, - -0.1497601419687271, - -0.1667836606502533, - -0.17465320229530334, - -0.17251603305339813, - -0.16060373187065125, - -0.14020715653896332, - -0.11353660374879837, - -0.08348225057125092, - -0.053300999104976654, - -0.07462140917778015, - -0.036768749356269836, - -0.007419135421514511, - 0.010246945545077324, - 0.014315084554255009, - 0.004344459157437086, - -0.018584467470645905, - -0.051986999809741974, - -0.09224343299865723, - -0.1349913775920868, - -0.17559844255447388, - -0.20966418087482452, - -0.23349706828594208, - -0.24451446533203125, - -0.2415224015712738, - -0.22484520077705383, - -0.1962900012731552, - -0.15895122289657593, - -0.11687514185905457, - -0.07462137937545776 - ], - "y": [ - 0.15990301966667175, - 0.17415499687194824, - 0.19629351794719696, - 0.2239195704460144, - 0.2540394365787506, - 0.2833891212940216, - 0.30878815054893494, - 0.3274841904640198, - 0.33745115995407104, - 0.33760902285575867, - 0.3279406726360321, - 0.3094938397407532, - 0.28426748514175415, - 0.25499528646469116, - 0.2248493731021881, - 0.19709651172161102, - 0.174744114279747, - 0.16021445393562317, - 0.15508201718330383, - 0.15990301966667175, - 0.22386422753334045, - 0.24381700158119202, - 0.27481094002723694, - 0.31348738074302673, - 0.35565516352653503, - 0.3967447280883789, - 0.43230336904525757, - 0.45847779512405396, - 0.4724315404891968, - 0.4726525843143463, - 0.4591169059276581, - 0.43329131603240967, - 0.39797443151474, - 0.3569933772087097, - 0.3147891163825989, - 0.2759351134300232, - 0.2446417510509491, - 0.22430020570755005, - 0.21711483597755432, - 0.22386422753334045 - ], - "z": [ - -1.660720944404602, - -1.6599349975585938, - -1.6576623916625977, - -1.6541494131088257, - -1.649776816368103, - -1.645018219947815, - -1.6403894424438477, - -1.6363921165466309, - -1.6334593296051025, - -1.6319090127944946, - -1.6319090127944946, - -1.6334593296051025, - -1.6363921165466309, - -1.6403894424438477, - -1.645018219947815, - -1.649776816368103, - -1.6541494131088257, - -1.6576623916625977, - -1.6599349975585938, - -1.660720944404602, - -2.3250091075897217, - -2.323908805847168, - -2.3207273483276367, - -2.3158090114593506, - -2.309687376022339, - -2.303025245666504, - -2.2965450286865234, - -2.2909488677978516, - -2.2868428230285645, - -2.284672498703003, - -2.284672498703003, - -2.2868428230285645, - -2.2909488677978516, - -2.2965450286865234, - -2.303025245666504, - -2.309687376022339, - -2.3158090114593506, - -2.3207273483276367, - -2.323908805847168, - -2.3250091075897217 - ] - }, - { - "alphahull": 0, - "color": "#19D3F3", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.07462140917778015, - -0.036768749356269836, - -0.007419135421514511, - 0.010246945545077324, - 0.014315084554255009, - 0.004344459157437086, - -0.018584467470645905, - -0.051986999809741974, - -0.09224343299865723, - -0.1349913775920868, - -0.17559844255447388, - -0.20966418087482452, - -0.23349706828594208, - -0.24451446533203125, - -0.2415224015712738, - -0.22484520077705383, - -0.1962900012731552, - -0.15895122289657593, - -0.11687514185905457, - -0.07462137937545776, - -0.09594181180000305, - -0.04727409780025482, - -0.009538881480693817, - 0.01317465491592884, - 0.018405131995677948, - 0.005585745442658663, - -0.02389432117342949, - -0.06684041768312454, - -0.11859871447086334, - -0.17356036603450775, - -0.22576943039894104, - -0.2695682644844055, - -0.300210565328598, - -0.31437575817108154, - -0.31052881479263306, - -0.2890866994857788, - -0.2523728609085083, - -0.20436586439609528, - -0.15026803314685822, - -0.09594178199768066 - ], - "y": [ - 0.22386422753334045, - 0.24381700158119202, - 0.27481094002723694, - 0.31348738074302673, - 0.35565516352653503, - 0.3967447280883789, - 0.43230336904525757, - 0.45847779512405396, - 0.4724315404891968, - 0.4726525843143463, - 0.4591169059276581, - 0.43329131603240967, - 0.39797443151474, - 0.3569933772087097, - 0.3147891163825989, - 0.2759351134300232, - 0.2446417510509491, - 0.22430020570755005, - 0.21711483597755432, - 0.22386422753334045, - 0.28782540559768677, - 0.313478946685791, - 0.3533283472061157, - 0.40305522084236145, - 0.45727095007896423, - 0.5101003646850586, - 0.5558186769485474, - 0.5894714593887329, - 0.6074120402336121, - 0.6076961755752563, - 0.5902931690216064, - 0.5570888519287109, - 0.5116814374923706, - 0.45899149775505066, - 0.40472885966300964, - 0.35477373003959656, - 0.3145394027233124, - 0.2883860170841217, - 0.2791476249694824, - 0.28782540559768677 - ], - "z": [ - -2.3250091075897217, - -2.323908805847168, - -2.3207273483276367, - -2.3158090114593506, - -2.309687376022339, - -2.303025245666504, - -2.2965450286865234, - -2.2909488677978516, - -2.2868428230285645, - -2.284672498703003, - -2.284672498703003, - -2.2868428230285645, - -2.2909488677978516, - -2.2965450286865234, - -2.303025245666504, - -2.309687376022339, - -2.3158090114593506, - -2.3207273483276367, - -2.323908805847168, - -2.3250091075897217, - -2.98929762840271, - -2.9878830909729004, - -2.983792304992676, - -2.977468967437744, - -2.9695982933044434, - -2.9610328674316406, - -2.9527010917663574, - -2.9455058574676514, - -2.9402267932891846, - -2.937436103820801, - -2.937436103820801, - -2.9402267932891846, - -2.9455058574676514, - -2.9527010917663574, - -2.9610328674316406, - -2.9695982933044434, - -2.977468967437744, - -2.983792304992676, - -2.9878830909729004, - -2.98929762840271 - ] - }, - { - "alphahull": 0, - "color": "#FF6692", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.03206469491124153, - 0.05008597671985626, - 0.06803145259618759, - 0.08395645767450333, - 0.09613528102636337, - 0.10324813425540924, - 0.10452423989772797, - 0.09982532262802124, - 0.08966057747602463, - 0.07513149827718735, - 0.05781255662441254, - 0.039580512791872025, - 0.022411100566387177, - 0.00816488079726696, - -0.0016143241664394736, - -0.005866806022822857, - -0.004131737165153027, - 0.0034028664231300354, - 0.015920516103506088, - 0.03206470236182213, - 0.053441163152456284, - 0.08347663283348083, - 0.11338576674461365, - 0.1399274468421936, - 0.16022546589374542, - 0.17208023369312286, - 0.17420707643032074, - 0.1663755476474762, - 0.14943429827690125, - 0.1252191811800003, - 0.09635426104068756, - 0.06596752256155014, - 0.037351831793785095, - 0.013608136214315891, - -0.0026905375998467207, - -0.009778005070984364, - -0.00688621960580349, - 0.005671447142958641, - 0.026534201577305794, - 0.05344117805361748 - ], - "y": [ - 0.0961940810084343, - 0.09331546723842621, - 0.09638003259897232, - 0.10505571216344833, - 0.11840235441923141, - 0.13497363030910492, - 0.15297380089759827, - 0.17045225203037262, - 0.18551494181156158, - 0.1965295821428299, - 0.20230256021022797, - 0.20220829546451569, - 0.19625699520111084, - 0.18509358167648315, - 0.16992779076099396, - 0.1524030566215515, - 0.13441845774650574, - 0.11792288720607758, - 0.10470394045114517, - 0.0961940810084343, - 0.16032347083091736, - 0.15552577376365662, - 0.1606334149837494, - 0.175092875957489, - 0.19733725488185883, - 0.22495606541633606, - 0.25495633482933044, - 0.28408709168434143, - 0.30919158458709717, - 0.3275493085384369, - 0.33717095851898193, - 0.337013840675354, - 0.32709503173828125, - 0.30848929286003113, - 0.2832129895687103, - 0.25400510430336, - 0.2240307480096817, - 0.19653816521167755, - 0.17450657486915588, - 0.16032347083091736 - ], - "z": [ - -0.9963905215263367, - -0.99592125415802, - -0.9945642948150635, - -0.9924666881561279, - -0.9898557066917419, - -0.9870144128799438, - -0.984250545501709, - -0.9818637371063232, - -0.9801125526428223, - -0.9791868329048157, - -0.9791868329048157, - -0.9801125526428223, - -0.9818637371063232, - -0.984250545501709, - -0.9870144128799438, - -0.9898557066917419, - -0.9924666881561279, - -0.9945642948150635, - -0.99592125415802, - -0.9963905215263367, - -1.6606508493423462, - -1.6598687171936035, - -1.6576071977615356, - -1.6541111469268799, - -1.6497595310211182, - -1.645024061203003, - -1.6404175758361816, - -1.636439561843872, - -1.6335209608078003, - -1.6319780349731445, - -1.6319780349731445, - -1.6335209608078003, - -1.636439561843872, - -1.6404175758361816, - -1.645024061203003, - -1.6497595310211182, - -1.6541111469268799, - -1.6576071977615356, - -1.6598687171936035, - -1.6606508493423462 - ] - }, - { - "alphahull": 0, - "color": "#B6E880", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.053441163152456284, - 0.08347663283348083, - 0.11338576674461365, - 0.1399274468421936, - 0.16022546589374542, - 0.17208023369312286, - 0.17420707643032074, - 0.1663755476474762, - 0.14943429827690125, - 0.1252191811800003, - 0.09635426104068756, - 0.06596752256155014, - 0.037351831793785095, - 0.013608136214315891, - -0.0026905375998467207, - -0.009778005070984364, - -0.00688621960580349, - 0.005671447142958641, - 0.026534201577305794, - 0.05344117805361748, - 0.07481761276721954, - 0.11686727404594421, - 0.1587400585412979, - 0.1958984136581421, - 0.22431564331054688, - 0.2409122884273529, - 0.24388989806175232, - 0.23292574286460876, - 0.20920799672603607, - 0.17530682682991028, - 0.1348959505558014, - 0.09235452115535736, - 0.052292559295892715, - 0.019051384180784225, - -0.0037667513824999332, - -0.01368921808898449, - -0.009640727192163467, - 0.007940016686916351, - 0.03714786469936371, - 0.07481764256954193 - ], - "y": [ - 0.16032347083091736, - 0.15552577376365662, - 0.1606334149837494, - 0.175092875957489, - 0.19733725488185883, - 0.22495606541633606, - 0.25495633482933044, - 0.28408709168434143, - 0.30919158458709717, - 0.3275493085384369, - 0.33717095851898193, - 0.337013840675354, - 0.32709503173828125, - 0.30848929286003113, - 0.2832129895687103, - 0.25400510430336, - 0.2240307480096817, - 0.19653816521167755, - 0.17450657486915588, - 0.16032347083091736, - 0.22445285320281982, - 0.21773608028888702, - 0.22488674521446228, - 0.2451300024986267, - 0.27627214789390564, - 0.314938485622406, - 0.35693883895874023, - 0.39772191643714905, - 0.43286818265914917, - 0.4585689902305603, - 0.47203928232192993, - 0.47181934118270874, - 0.4579330086708069, - 0.4318850040435791, - 0.3964981436729431, - 0.35560715198516846, - 0.31364303827285767, - 0.27515339851379395, - 0.2443091869354248, - 0.22445285320281982 - ], - "z": [ - -1.6606508493423462, - -1.6598687171936035, - -1.6576071977615356, - -1.6541111469268799, - -1.6497595310211182, - -1.645024061203003, - -1.6404175758361816, - -1.636439561843872, - -1.6335209608078003, - -1.6319780349731445, - -1.6319780349731445, - -1.6335209608078003, - -1.636439561843872, - -1.6404175758361816, - -1.645024061203003, - -1.6497595310211182, - -1.6541111469268799, - -1.6576071977615356, - -1.6598687171936035, - -1.6606508493423462, - -2.324911117553711, - -2.3238160610198975, - -2.3206498622894287, - -2.3157553672790527, - -2.3096632957458496, - -2.3030333518981934, - -2.2965846061706543, - -2.291015148162842, - -2.286929130554199, - -2.284769058227539, - -2.284769058227539, - -2.286929130554199, - -2.291015148162842, - -2.2965846061706543, - -2.3030333518981934, - -2.3096632957458496, - -2.3157553672790527, - -2.3206498622894287, - -2.3238160610198975, - -2.324911117553711 - ] - }, - { - "alphahull": 0, - "color": "#FF97FF", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.07481761276721954, - 0.11686727404594421, - 0.1587400585412979, - 0.1958984136581421, - 0.22431564331054688, - 0.2409122884273529, - 0.24388989806175232, - 0.23292574286460876, - 0.20920799672603607, - 0.17530682682991028, - 0.1348959505558014, - 0.09235452115535736, - 0.052292559295892715, - 0.019051384180784225, - -0.0037667513824999332, - -0.01368921808898449, - -0.009640727192163467, - 0.007940016686916351, - 0.03714786469936371, - 0.07481764256954193, - 0.0961940810084343, - 0.1502579152584076, - 0.20409435033798218, - 0.2518693804740906, - 0.2884058356285095, - 0.30974438786506653, - 0.3135727643966675, - 0.2994759678840637, - 0.2689816951751709, - 0.22539448738098145, - 0.17343765497207642, - 0.11874153465032578, - 0.06723330169916153, - 0.02449464052915573, - -0.004842964932322502, - -0.0176004096865654, - -0.012395206838846207, - 0.010208602994680405, - 0.047761548310518265, - 0.09619411081075668 - ], - "y": [ - 0.22445285320281982, - 0.21773608028888702, - 0.22488674521446228, - 0.2451300024986267, - 0.27627214789390564, - 0.314938485622406, - 0.35693883895874023, - 0.39772191643714905, - 0.43286818265914917, - 0.4585689902305603, - 0.47203928232192993, - 0.47181934118270874, - 0.4579330086708069, - 0.4318850040435791, - 0.3964981436729431, - 0.35560715198516846, - 0.31364303827285767, - 0.27515339851379395, - 0.2443091869354248, - 0.22445285320281982, - 0.2885822653770447, - 0.27994638681411743, - 0.28914010524749756, - 0.3151671290397644, - 0.35520705580711365, - 0.40492090582847595, - 0.4589213728904724, - 0.511356770992279, - 0.556544840335846, - 0.5895887017250061, - 0.6069076657295227, - 0.6066249012947083, - 0.5887709856033325, - 0.5552807450294495, - 0.5097833871841431, - 0.45720919966697693, - 0.4032553732395172, - 0.3537687063217163, - 0.3141118288040161, - 0.2885822653770447 - ], - "z": [ - -2.324911117553711, - -2.3238160610198975, - -2.3206498622894287, - -2.3157553672790527, - -2.3096632957458496, - -2.3030333518981934, - -2.2965846061706543, - -2.291015148162842, - -2.286929130554199, - -2.284769058227539, - -2.284769058227539, - -2.286929130554199, - -2.291015148162842, - -2.2965846061706543, - -2.3030333518981934, - -2.3096632957458496, - -2.3157553672790527, - -2.3206498622894287, - -2.3238160610198975, - -2.324911117553711, - -2.9891715049743652, - -2.9877636432647705, - -2.9836928844451904, - -2.977400064468384, - -2.96956729888916, - -2.961043357849121, - -2.952751874923706, - -2.9455912113189697, - -2.940337896347046, - -2.937560558319092, - -2.937560558319092, - -2.940337896347046, - -2.9455912113189697, - -2.952751874923706, - -2.961043357849121, - -2.96956729888916, - -2.977400064468384, - -2.9836928844451904, - -2.9877636432647705, - -2.9891715049743652 - ] - }, - { - "alphahull": 0, - "color": "#FECB52", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.10909973829984665, - 0.12363092601299286, - 0.14066576957702637, - 0.15835829079151154, - 0.17479121685028076, - 0.18818381428718567, - 0.19708476960659027, - 0.20052950084209442, - 0.19814476370811462, - 0.1901889443397522, - 0.17752420902252197, - 0.16152295470237732, - 0.1439191848039627, - 0.12662050127983093, - 0.1115015521645546, - 0.10020066052675247, - 0.09394245594739914, - 0.09340512752532959, - 0.09864690154790878, - 0.10909973829984665, - 0.1818329095840454, - 0.2060515582561493, - 0.23444296419620514, - 0.2639304995536804, - 0.29131871461868286, - 0.31363970041275024, - 0.32847464084625244, - 0.33421584963798523, - 0.33024129271507263, - 0.31698158383369446, - 0.2958737015724182, - 0.2692049443721771, - 0.23986531794071198, - 0.21103417873382568, - 0.18583594262599945, - 0.16700111329555511, - 0.15657076239585876, - 0.1556752324104309, - 0.1644115298986435, - 0.1818329244852066 - ], - "y": [ - 0.10909973829984665, - 0.09864689409732819, - 0.09340512752532959, - 0.09394244849681854, - 0.10020066052675247, - 0.111501544713974, - 0.12662051618099213, - 0.1439191699028015, - 0.16152295470237732, - 0.17752420902252197, - 0.1901889443397522, - 0.19814476370811462, - 0.20052950084209442, - 0.19708475470542908, - 0.18818381428718567, - 0.17479123175144196, - 0.15835829079151154, - 0.14066576957702637, - 0.12363090366125107, - 0.10909973829984665, - 0.1818329095840454, - 0.1644115149974823, - 0.15567521750926971, - 0.15657076239585876, - 0.16700111329555511, - 0.18583592772483826, - 0.21103420853614807, - 0.23986530303955078, - 0.2692049443721771, - 0.2958737015724182, - 0.31698158383369446, - 0.33024126291275024, - 0.33421584963798523, - 0.32847461104393005, - 0.31363970041275024, - 0.29131874442100525, - 0.2639304995536804, - 0.23444296419620514, - 0.2060515284538269, - 0.18183289468288422 - ], - "z": [ - -0.9895224571228027, - -0.9889107346534729, - -0.9871417880058289, - -0.9844073057174683, - -0.9810036420822144, - -0.9772996306419373, - -0.9736965894699097, - -0.9705851078033447, - -0.9683022499084473, - -0.9670954346656799, - -0.9670954346656799, - -0.9683022499084473, - -0.9705851078033447, - -0.9736965894699097, - -0.9772996306419373, - -0.9810036420822144, - -0.9844073057174683, - -0.9871417880058289, - -0.9889107346534729, - -0.9895224571228027, - -1.6492042541503906, - -1.6481846570968628, - -1.6452363729476929, - -1.640678882598877, - -1.6350061893463135, - -1.6288328170776367, - -1.6228277683258057, - -1.6176419258117676, - -1.6138372421264648, - -1.6118258237838745, - -1.6118258237838745, - -1.6138372421264648, - -1.6176419258117676, - -1.6228277683258057, - -1.6288328170776367, - -1.6350061893463135, - -1.640678882598877, - -1.6452363729476929, - -1.6481846570968628, - -1.6492042541503906 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.1818329095840454, - 0.2060515582561493, - 0.23444296419620514, - 0.2639304995536804, - 0.29131871461868286, - 0.31363970041275024, - 0.32847464084625244, - 0.33421584963798523, - 0.33024129271507263, - 0.31698158383369446, - 0.2958737015724182, - 0.2692049443721771, - 0.23986531794071198, - 0.21103417873382568, - 0.18583594262599945, - 0.16700111329555511, - 0.15657076239585876, - 0.1556752324104309, - 0.1644115298986435, - 0.1818329244852066, - 0.2545660734176636, - 0.28847214579582214, - 0.3282201290130615, - 0.3695026636123657, - 0.40784621238708496, - 0.43909555673599243, - 0.45986443758010864, - 0.46790215373039246, - 0.46233776211738586, - 0.4437742233276367, - 0.4142231345176697, - 0.37688687443733215, - 0.33581143617630005, - 0.29544785618782043, - 0.2601702809333801, - 0.23380155861377716, - 0.219199076294899, - 0.21794530749320984, - 0.23017612099647522, - 0.2545660734176636 - ], - "y": [ - 0.1818329095840454, - 0.1644115149974823, - 0.15567521750926971, - 0.15657076239585876, - 0.16700111329555511, - 0.18583592772483826, - 0.21103420853614807, - 0.23986530303955078, - 0.2692049443721771, - 0.2958737015724182, - 0.31698158383369446, - 0.33024126291275024, - 0.33421584963798523, - 0.32847461104393005, - 0.31363970041275024, - 0.29131874442100525, - 0.2639304995536804, - 0.23444296419620514, - 0.2060515284538269, - 0.18183289468288422, - 0.2545660734176636, - 0.23017612099647522, - 0.21794529259204865, - 0.2191990613937378, - 0.23380152881145477, - 0.2601702809333801, - 0.2954478859901428, - 0.33581140637397766, - 0.37688687443733215, - 0.4142231345176697, - 0.4437742233276367, - 0.46233776211738586, - 0.46790218353271484, - 0.45986440777778625, - 0.43909555673599243, - 0.40784621238708496, - 0.3695026636123657, - 0.32822009921073914, - 0.28847208619117737, - 0.2545660138130188 - ], - "z": [ - -1.6492042541503906, - -1.6481846570968628, - -1.6452363729476929, - -1.640678882598877, - -1.6350061893463135, - -1.6288328170776367, - -1.6228277683258057, - -1.6176419258117676, - -1.6138372421264648, - -1.6118258237838745, - -1.6118258237838745, - -1.6138372421264648, - -1.6176419258117676, - -1.6228277683258057, - -1.6288328170776367, - -1.6350061893463135, - -1.640678882598877, - -1.6452363729476929, - -1.6481846570968628, - -1.6492042541503906, - -2.3088858127593994, - -2.3074584007263184, - -2.303330898284912, - -2.296950340270996, - -2.289008378982544, - -2.2803657054901123, - -2.271958827972412, - -2.2646985054016113, - -2.2593719959259033, - -2.2565560340881348, - -2.2565560340881348, - -2.2593719959259033, - -2.2646985054016113, - -2.271958827972412, - -2.2803657054901123, - -2.289008378982544, - -2.296950340270996, - -2.303330898284912, - -2.3074584007263184, - -2.3088858127593994 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.2545660734176636, - 0.28847214579582214, - 0.3282201290130615, - 0.3695026636123657, - 0.40784621238708496, - 0.43909555673599243, - 0.45986443758010864, - 0.46790215373039246, - 0.46233776211738586, - 0.4437742233276367, - 0.4142231345176697, - 0.37688687443733215, - 0.33581143617630005, - 0.29544785618782043, - 0.2601702809333801, - 0.23380155861377716, - 0.219199076294899, - 0.21794530749320984, - 0.23017612099647522, - 0.2545660734176636, - 0.32729920744895935, - 0.3708927631378174, - 0.4219972789287567, - 0.4750748574733734, - 0.5243737101554871, - 0.5645514726638794, - 0.5912542343139648, - 0.6015884876251221, - 0.5944342613220215, - 0.5705668330192566, - 0.5325726270675659, - 0.48456883430480957, - 0.43175753951072693, - 0.3798615038394928, - 0.3345046639442444, - 0.300601989030838, - 0.2818273901939392, - 0.28021541237831116, - 0.2959407567977905, - 0.32729923725128174 - ], - "y": [ - 0.2545660734176636, - 0.23017612099647522, - 0.21794529259204865, - 0.2191990613937378, - 0.23380152881145477, - 0.2601702809333801, - 0.2954478859901428, - 0.33581140637397766, - 0.37688687443733215, - 0.4142231345176697, - 0.4437742233276367, - 0.46233776211738586, - 0.46790218353271484, - 0.45986440777778625, - 0.43909555673599243, - 0.40784621238708496, - 0.3695026636123657, - 0.32822009921073914, - 0.28847208619117737, - 0.2545660138130188, - 0.32729920744895935, - 0.29594069719314575, - 0.28021538257598877, - 0.2818273603916168, - 0.300601989030838, - 0.334504634141922, - 0.3798615634441376, - 0.43175753951072693, - 0.48456883430480957, - 0.5325726270675659, - 0.5705668330192566, - 0.5944342613220215, - 0.6015884876251221, - 0.5912542343139648, - 0.5645514726638794, - 0.5243737101554871, - 0.4750748872756958, - 0.4219972789287567, - 0.3708927035331726, - 0.32729917764663696 - ], - "z": [ - -2.3088858127593994, - -2.3074584007263184, - -2.303330898284912, - -2.296950340270996, - -2.289008378982544, - -2.2803657054901123, - -2.271958827972412, - -2.2646985054016113, - -2.2593719959259033, - -2.2565560340881348, - -2.2565560340881348, - -2.2593719959259033, - -2.2646985054016113, - -2.271958827972412, - -2.2803657054901123, - -2.289008378982544, - -2.296950340270996, - -2.303330898284912, - -2.3074584007263184, - -2.3088858127593994, - -2.9685676097869873, - -2.9667322635650635, - -2.961425304412842, - -2.9532220363616943, - -2.9430110454559326, - -2.931898832321167, - -2.9210898876190186, - -2.911755323410034, - -2.904906749725342, - -2.9012863636016846, - -2.9012863636016846, - -2.904906749725342, - -2.911755323410034, - -2.9210898876190186, - -2.931898832321167, - -2.9430108070373535, - -2.9532220363616943, - -2.961425304412842, - -2.9667322635650635, - -2.9685676097869873 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.09594181180000305, - -0.09304922819137573, - -0.0961286649107933, - -0.10484646260738373, - -0.11825790256261826, - -0.13490962982177734, - -0.1529971808195114, - -0.17056047916412354, - -0.1856962889432907, - -0.19676437973976135, - -0.20256540179252625, - -0.20247067511081696, - -0.19649049639701843, - -0.18527287244796753, - -0.17003345489501953, - -0.1524236500263214, - -0.13435174524784088, - -0.11777611076831818, - -0.10449297726154327, - -0.09594181180000305, - -0.15990301966667175, - -0.15508204698562622, - -0.16021445393562317, - -0.174744114279747, - -0.19709649682044983, - -0.2248493731021881, - -0.25499528646469116, - -0.28426748514175415, - -0.3094938397407532, - -0.3279406726360321, - -0.33760902285575867, - -0.33745115995407104, - -0.3274841904640198, - -0.30878815054893494, - -0.2833891212940216, - -0.254039466381073, - -0.2239195704460144, - -0.19629350304603577, - -0.17415496706962585, - -0.15990301966667175 - ], - "y": [ - 0.03198060393333435, - 0.05008936673402786, - 0.06812196969985962, - 0.08412428200244904, - 0.09636221826076508, - 0.10350960493087769, - 0.10479191690683365, - 0.10007018595933914, - 0.0898560881614685, - 0.07525648176670074, - 0.05785345658659935, - 0.03953290730714798, - 0.022280145436525345, - 0.007964766584336758, - -0.0018619104521349072, - -0.006135039031505585, - -0.004391546361148357, - 0.0031796349212527275, - 0.015758050605654716, - 0.03198061138391495, - 0.05330101400613785, - 0.0834822878241539, - 0.11353661864995956, - 0.14020715653896332, - 0.16060371696949005, - 0.17251603305339813, - 0.17465320229530334, - 0.1667836606502533, - 0.1497601568698883, - 0.1254274845123291, - 0.09642243385314941, - 0.0658881813287735, - 0.037133581936359406, - 0.01327461376786232, - -0.003103185212239623, - -0.01022506132721901, - -0.007319243624806404, - 0.0052993930876255035, - 0.02626342512667179, - 0.05330102890729904 - ], - "z": [ - -0.9964325428009033, - -0.9959610104560852, - -0.9945974349975586, - -0.9924896955490112, - -0.9898660778999329, - -0.9870109558105469, - -0.9842336773872375, - -0.9818352460861206, - -0.9800755977630615, - -0.979145348072052, - -0.979145348072052, - -0.9800755977630615, - -0.9818352460861206, - -0.9842336773872375, - -0.9870108962059021, - -0.9898660778999329, - -0.9924896359443665, - -0.9945974349975586, - -0.9959610104560852, - -0.9964325428009033, - -1.660720944404602, - -1.6599349975585938, - -1.6576623916625977, - -1.6541494131088257, - -1.649776816368103, - -1.645018219947815, - -1.6403894424438477, - -1.6363921165466309, - -1.6334593296051025, - -1.6319090127944946, - -1.6319090127944946, - -1.6334593296051025, - -1.6363921165466309, - -1.6403894424438477, - -1.645018219947815, - -1.649776816368103, - -1.6541494131088257, - -1.6576623916625977, - -1.6599349975585938, - -1.660720944404602 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.15990301966667175, - -0.15508204698562622, - -0.16021445393562317, - -0.174744114279747, - -0.19709649682044983, - -0.2248493731021881, - -0.25499528646469116, - -0.28426748514175415, - -0.3094938397407532, - -0.3279406726360321, - -0.33760902285575867, - -0.33745115995407104, - -0.3274841904640198, - -0.30878815054893494, - -0.2833891212940216, - -0.254039466381073, - -0.2239195704460144, - -0.19629350304603577, - -0.17415496706962585, - -0.15990301966667175, - -0.22386422753334045, - -0.21711483597755432, - -0.22430023550987244, - -0.2446417510509491, - -0.2759350836277008, - -0.3147891163825989, - -0.3569933772087097, - -0.39797443151474, - -0.43329131603240967, - -0.4591169059276581, - -0.4726525843143463, - -0.4724315404891968, - -0.45847779512405396, - -0.43230336904525757, - -0.3967447280883789, - -0.3556551933288574, - -0.31348738074302673, - -0.27481091022491455, - -0.24381694197654724, - -0.22386422753334045 - ], - "y": [ - 0.05330101400613785, - 0.0834822878241539, - 0.11353661864995956, - 0.14020715653896332, - 0.16060371696949005, - 0.17251603305339813, - 0.17465320229530334, - 0.1667836606502533, - 0.1497601568698883, - 0.1254274845123291, - 0.09642243385314941, - 0.0658881813287735, - 0.037133581936359406, - 0.01327461376786232, - -0.003103185212239623, - -0.01022506132721901, - -0.007319243624806404, - 0.0052993930876255035, - 0.02626342512667179, - 0.05330102890729904, - 0.07462140917778015, - 0.11687518656253815, - 0.15895125269889832, - 0.1962900012731552, - 0.22484515607357025, - 0.2415224015712738, - 0.24451445043087006, - 0.23349708318710327, - 0.20966419577598572, - 0.17559844255447388, - 0.13499140739440918, - 0.09224344789981842, - 0.05198701098561287, - 0.01858445443212986, - -0.00434445682913065, - -0.014315088279545307, - -0.010246943682432175, - 0.0074191465973854065, - 0.03676879033446312, - 0.07462142407894135 - ], - "z": [ - -1.660720944404602, - -1.6599349975585938, - -1.6576623916625977, - -1.6541494131088257, - -1.649776816368103, - -1.645018219947815, - -1.6403894424438477, - -1.6363921165466309, - -1.6334593296051025, - -1.6319090127944946, - -1.6319090127944946, - -1.6334593296051025, - -1.6363921165466309, - -1.6403894424438477, - -1.645018219947815, - -1.649776816368103, - -1.6541494131088257, - -1.6576623916625977, - -1.6599349975585938, - -1.660720944404602, - -2.3250091075897217, - -2.323908805847168, - -2.3207273483276367, - -2.3158090114593506, - -2.309687376022339, - -2.303025245666504, - -2.2965450286865234, - -2.2909488677978516, - -2.2868428230285645, - -2.284672498703003, - -2.284672498703003, - -2.2868428230285645, - -2.2909488677978516, - -2.2965450286865234, - -2.303025245666504, - -2.309687376022339, - -2.3158090114593506, - -2.3207273483276367, - -2.323908805847168, - -2.3250091075897217 - ] - }, - { - "alphahull": 0, - "color": "#FFA15A", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.22386422753334045, - -0.21711483597755432, - -0.22430023550987244, - -0.2446417510509491, - -0.2759350836277008, - -0.3147891163825989, - -0.3569933772087097, - -0.39797443151474, - -0.43329131603240967, - -0.4591169059276581, - -0.4726525843143463, - -0.4724315404891968, - -0.45847779512405396, - -0.43230336904525757, - -0.3967447280883789, - -0.3556551933288574, - -0.31348738074302673, - -0.27481091022491455, - -0.24381694197654724, - -0.22386422753334045, - -0.28782540559768677, - -0.2791476249694824, - -0.2883859872817993, - -0.3145394027233124, - -0.3547736704349518, - -0.40472885966300964, - -0.45899152755737305, - -0.5116814374923706, - -0.5570888519287109, - -0.5902931690216064, - -0.6076961755752563, - -0.6074120402336121, - -0.5894714593887329, - -0.5558186173439026, - -0.5101004242897034, - -0.457271009683609, - -0.40305522084236145, - -0.35332831740379333, - -0.313478946685791, - -0.28782540559768677 - ], - "y": [ - 0.07462140917778015, - 0.11687518656253815, - 0.15895125269889832, - 0.1962900012731552, - 0.22484515607357025, - 0.2415224015712738, - 0.24451445043087006, - 0.23349708318710327, - 0.20966419577598572, - 0.17559844255447388, - 0.13499140739440918, - 0.09224344789981842, - 0.05198701098561287, - 0.01858445443212986, - -0.00434445682913065, - -0.014315088279545307, - -0.010246943682432175, - 0.0074191465973854065, - 0.03676879033446312, - 0.07462142407894135, - 0.09594181180000305, - 0.15026810765266418, - 0.20436590909957886, - 0.2523728609085083, - 0.2890866696834564, - 0.31052881479263306, - 0.31437575817108154, - 0.30021053552627563, - 0.2695682644844055, - 0.22576944530010223, - 0.17356036603450775, - 0.11859871447086334, - 0.06684044003486633, - 0.02389429695904255, - -0.005585742648690939, - -0.018405131995677948, - -0.013174651190638542, - 0.00953890010714531, - 0.0472741536796093, - 0.09594184160232544 - ], - "z": [ - -2.3250091075897217, - -2.323908805847168, - -2.3207273483276367, - -2.3158090114593506, - -2.309687376022339, - -2.303025245666504, - -2.2965450286865234, - -2.2909488677978516, - -2.2868428230285645, - -2.284672498703003, - -2.284672498703003, - -2.2868428230285645, - -2.2909488677978516, - -2.2965450286865234, - -2.303025245666504, - -2.309687376022339, - -2.3158090114593506, - -2.3207273483276367, - -2.323908805847168, - -2.3250091075897217, - -2.98929762840271, - -2.9878830909729004, - -2.983792304992676, - -2.977468967437744, - -2.9695982933044434, - -2.9610328674316406, - -2.9527010917663574, - -2.9455058574676514, - -2.9402267932891846, - -2.937436103820801, - -2.937436103820801, - -2.9402267932891846, - -2.9455058574676514, - -2.9527010917663574, - -2.9610328674316406, - -2.9695982933044434, - -2.977468967437744, - -2.983792304992676, - -2.9878830909729004, - -2.98929762840271 - ] - }, - { - "alphahull": 0, - "color": "#19D3F3", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.010179717093706131, - 0.0005908310413360596, - 0.005892569199204445, - 0.005150981247425079, - -0.001553582027554512, - -0.013494571670889854, - -0.02937799133360386, - -0.04748263582587242, - -0.06584657728672028, - -0.0824798047542572, - -0.0955798402428627, - -0.10372710227966309, - -0.10603870451450348, - -0.1022641509771347, - -0.09281247109174728, - -0.07870790362358093, - -0.0614788793027401, - -0.042992446571588516, - -0.02525188773870468, - -0.010179709643125534, - -0.016966193914413452, - 0.0009847134351730347, - 0.009820953011512756, - 0.008584968745708466, - -0.0025893021374940872, - -0.02249094843864441, - -0.04896332323551178, - -0.07913772761821747, - -0.10974430292844772, - -0.13746634125709534, - -0.15929974615573883, - -0.17287851870059967, - -0.1767311990261078, - -0.17044025659561157, - -0.15468746423721313, - -0.13117986917495728, - -0.10246481001377106, - -0.0716540664434433, - -0.042086489498615265, - -0.01696617901325226 - ], - "y": [ - 0.010179717093706131, - 0.025251910090446472, - 0.042992450296878815, - 0.0614788755774498, - 0.07870788872241974, - 0.09281246364116669, - 0.10226414352655411, - 0.10603870451450348, - 0.10372710227966309, - 0.0955798476934433, - 0.0824798047542572, - 0.06584657728672028, - 0.04748263955116272, - 0.029377982020378113, - 0.013494573533535004, - 0.0015535904094576836, - -0.005150977522134781, - -0.005892571061849594, - -0.0005908235907554626, - 0.010179724544286728, - 0.016966193914413452, - 0.04208652675151825, - 0.07165409624576569, - 0.10246480256319046, - 0.1311798244714737, - 0.15468746423721313, - 0.17044025659561157, - 0.1767311841249466, - 0.17287851870059967, - 0.15929976105690002, - 0.13746635615825653, - 0.10974431037902832, - 0.07913774251937866, - 0.048963308334350586, - 0.022490952163934708, - 0.002589315176010132, - -0.008584965020418167, - -0.009820953011512756, - -0.0009847059845924377, - 0.016966208815574646 - ], - "z": [ - -1.001478910446167, - -1.0012638568878174, - -1.000641942024231, - -0.9996805191040039, - -0.9984838366508484, - -0.9971815347671509, - -0.9959148168563843, - -0.9948208332061768, - -0.9940181970596313, - -0.9935939311981201, - -0.9935939311981201, - -0.9940181970596313, - -0.9948208332061768, - -0.9959148168563843, - -0.9971815347671509, - -0.9984838366508484, - -0.9996805191040039, - -1.000641942024231, - -1.0012638568878174, - -1.001478910446167, - -1.6691316366195679, - -1.6687731742858887, - -1.667736530303955, - -1.666134238243103, - -1.664139747619629, - -1.6619693040847778, - -1.659857988357544, - -1.6580348014831543, - -1.6566970348358154, - -1.6559898853302002, - -1.6559898853302002, - -1.6566970348358154, - -1.6580348014831543, - -1.659857988357544, - -1.6619693040847778, - -1.664139747619629, - -1.666134238243103, - -1.667736530303955, - -1.6687731742858887, - -1.6691316366195679 - ] - }, - { - "alphahull": 0, - "color": "#FF6692", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.016966193914413452, - 0.0009847134351730347, - 0.009820953011512756, - 0.008584968745708466, - -0.0025893021374940872, - -0.02249094843864441, - -0.04896332323551178, - -0.07913772761821747, - -0.10974430292844772, - -0.13746634125709534, - -0.15929974615573883, - -0.17287851870059967, - -0.1767311990261078, - -0.17044025659561157, - -0.15468746423721313, - -0.13117986917495728, - -0.10246481001377106, - -0.0716540664434433, - -0.042086489498615265, - -0.01696617901325226, - -0.023752667009830475, - 0.0013786181807518005, - 0.013749334961175919, - 0.01201895996928215, - -0.0036250166594982147, - -0.031487323343753815, - -0.06854864209890366, - -0.11079280823469162, - -0.15364199876785278, - -0.19245286285877228, - -0.22301962971687317, - -0.24202990531921387, - -0.24742363393306732, - -0.23861631751060486, - -0.2165624052286148, - -0.18365177512168884, - -0.14345072209835052, - -0.10031569004058838, - -0.05892106890678406, - -0.02375265210866928 - ], - "y": [ - 0.016966193914413452, - 0.04208652675151825, - 0.07165409624576569, - 0.10246480256319046, - 0.1311798244714737, - 0.15468746423721313, - 0.17044025659561157, - 0.1767311841249466, - 0.17287851870059967, - 0.15929976105690002, - 0.13746635615825653, - 0.10974431037902832, - 0.07913774251937866, - 0.048963308334350586, - 0.022490952163934708, - 0.002589315176010132, - -0.008584965020418167, - -0.009820953011512756, - -0.0009847059845924377, - 0.016966208815574646, - 0.023752667009830475, - 0.05892111361026764, - 0.10031571984291077, - 0.14345072209835052, - 0.18365174531936646, - 0.2165624052286148, - 0.23861634731292725, - 0.24742364883422852, - 0.24202990531921387, - 0.22301962971687317, - 0.19245287775993347, - 0.15364202857017517, - 0.11079282313585281, - 0.06854862719774246, - 0.03148732706904411, - 0.0036250390112400055, - -0.012018956243991852, - -0.013749338686466217, - -0.0013785958290100098, - 0.02375268191099167 - ], - "z": [ - -1.6691316366195679, - -1.6687731742858887, - -1.667736530303955, - -1.666134238243103, - -1.664139747619629, - -1.6619693040847778, - -1.659857988357544, - -1.6580348014831543, - -1.6566970348358154, - -1.6559898853302002, - -1.6559898853302002, - -1.6566970348358154, - -1.6580348014831543, - -1.659857988357544, - -1.6619693040847778, - -1.664139747619629, - -1.666134238243103, - -1.667736530303955, - -1.6687731742858887, - -1.6691316366195679, - -2.3367841243743896, - -2.336282253265381, - -2.3348309993743896, - -2.332587718963623, - -2.3297955989837646, - -2.3267569541931152, - -2.323801279067993, - -2.3212485313415527, - -2.31937575340271, - -2.3183858394622803, - -2.3183858394622803, - -2.31937575340271, - -2.3212485313415527, - -2.323801279067993, - -2.3267569541931152, - -2.3297955989837646, - -2.332587718963623, - -2.3348309993743896, - -2.336282253265381, - -2.3367841243743896 - ] - }, - { - "alphahull": 0, - "color": "#B6E880", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.023752667009830475, - 0.0013786181807518005, - 0.013749334961175919, - 0.01201895996928215, - -0.0036250166594982147, - -0.031487323343753815, - -0.06854864209890366, - -0.11079280823469162, - -0.15364199876785278, - -0.19245286285877228, - -0.22301962971687317, - -0.24202990531921387, - -0.24742363393306732, - -0.23861631751060486, - -0.2165624052286148, - -0.18365177512168884, - -0.14345072209835052, - -0.10031569004058838, - -0.05892106890678406, - -0.02375265210866928, - -0.030539140105247498, - 0.0017724931240081787, - 0.01767771691083908, - 0.015452951192855835, - -0.00466073676943779, - -0.040483713150024414, - -0.08813397586345673, - -0.14244790375232697, - -0.19753973186016083, - -0.2474394142627716, - -0.2867395281791687, - -0.31118130683898926, - -0.31811609864234924, - -0.3067924380302429, - -0.27843737602233887, - -0.236123725771904, - -0.1844366490840912, - -0.12897732853889465, - -0.07575567811727524, - -0.030539125204086304 - ], - "y": [ - 0.023752667009830475, - 0.05892111361026764, - 0.10031571984291077, - 0.14345072209835052, - 0.18365174531936646, - 0.2165624052286148, - 0.23861634731292725, - 0.24742364883422852, - 0.24202990531921387, - 0.22301962971687317, - 0.19245287775993347, - 0.15364202857017517, - 0.11079282313585281, - 0.06854862719774246, - 0.03148732706904411, - 0.0036250390112400055, - -0.012018956243991852, - -0.013749338686466217, - -0.0013785958290100098, - 0.02375268191099167, - 0.030539140105247498, - 0.07575574517250061, - 0.12897735834121704, - 0.1844366490840912, - 0.2361236810684204, - 0.27843737602233887, - 0.3067924678325653, - 0.31811612844467163, - 0.31118130683898926, - 0.2867395281791687, - 0.2474394142627716, - 0.19753974676132202, - 0.14244791865348816, - 0.08813394606113434, - 0.04048371687531471, - 0.0046607740223407745, - -0.015452943742275238, - -0.01767771691083908, - -0.001772470772266388, - 0.03053915500640869 - ], - "z": [ - -2.3367841243743896, - -2.336282253265381, - -2.3348309993743896, - -2.332587718963623, - -2.3297955989837646, - -2.3267569541931152, - -2.323801279067993, - -2.3212485313415527, - -2.31937575340271, - -2.3183858394622803, - -2.3183858394622803, - -2.31937575340271, - -2.3212485313415527, - -2.323801279067993, - -2.3267569541931152, - -2.3297955989837646, - -2.332587718963623, - -2.3348309993743896, - -2.336282253265381, - -2.3367841243743896, - -3.004436731338501, - -3.003791332244873, - -3.0019257068634033, - -2.9990413188934326, - -2.9954514503479004, - -2.991544485092163, - -2.9877443313598633, - -2.9844624996185303, - -2.9820544719696045, - -2.9807815551757812, - -2.9807815551757812, - -2.9820544719696045, - -2.9844624996185303, - -2.9877443313598633, - -2.991544485092163, - -2.9954514503479004, - -2.9990413188934326, - -3.0019257068634033, - -3.003791332244873, - -3.004436731338501 - ] - }, - { - "alphahull": 0, - "color": "#FF97FF", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.010375268757343292, - 0.025373220443725586, - 0.043026357889175415, - 0.0614217109978199, - 0.07856585085391998, - 0.09260094165802002, - 0.10200606286525726, - 0.10576202720403671, - 0.10346181690692902, - 0.09535469114780426, - 0.08231918513774872, - 0.06576789915561676, - 0.04749442636966705, - 0.02947895973920822, - 0.013673798181116581, - 0.0017916373908519745, - -0.004879903048276901, - -0.005617843940854073, - -0.0003422088921070099, - 0.01037527620792389, - 0.017292119562625885, - 0.04228869825601578, - 0.07171060889959335, - 0.102369524538517, - 0.13094308972358704, - 0.1543349176645279, - 0.17001010477542877, - 0.17627005279064178, - 0.17243637144565582, - 0.15892449021339417, - 0.13719865679740906, - 0.10961317270994186, - 0.07915738224983215, - 0.0491316020488739, - 0.02278965897858143, - 0.002986069768667221, - -0.008133169263601303, - -0.009363066405057907, - -0.0005703456699848175, - 0.01729213446378708 - ], - "y": [ - 0.010375268757343292, - -0.0003422163426876068, - -0.005617840215563774, - -0.0048799067735672, - 0.0017916299402713776, - 0.013673795387148857, - 0.029478969052433968, - 0.047494422644376755, - 0.06576789915561676, - 0.08231918513774872, - 0.09535469114780426, - 0.10346181690692902, - 0.10576201975345612, - 0.10200606286525726, - 0.09260094165802002, - 0.07856587320566177, - 0.0614217147231102, - 0.04302635416388512, - 0.025373198091983795, - 0.010375261306762695, - 0.017292119562625885, - -0.0005703642964363098, - -0.009363062679767609, - -0.008133172988891602, - 0.0029860511422157288, - 0.02278965525329113, - 0.049131616950035095, - 0.07915736734867096, - 0.10961316525936127, - 0.13719864189624786, - 0.15892449021339417, - 0.17243635654449463, - 0.17627006769180298, - 0.17001011967658997, - 0.1543349325656891, - 0.13094311952590942, - 0.1023695319890976, - 0.07171058654785156, - 0.042288657277822495, - 0.01729210466146469 - ], - "z": [ - -1.0014593601226807, - -1.001245379447937, - -1.0006264448165894, - -0.9996697902679443, - -0.9984790086746216, - -0.9971831440925598, - -0.9959226846694946, - -0.9948340654373169, - -0.9940354228019714, - -0.9936132431030273, - -0.9936132431030273, - -0.9940354228019714, - -0.9948340654373169, - -0.9959226846694946, - -0.9971831440925598, - -0.9984790086746216, - -0.9996697902679443, - -1.0006264448165894, - -1.001245379447937, - -1.0014593601226807, - -1.669098973274231, - -1.668742299079895, - -1.6677109003067017, - -1.6661163568496704, - -1.664131760597229, - -1.6619720458984375, - -1.6598711013793945, - -1.6580568552017212, - -1.6567257642745972, - -1.656022071838379, - -1.656022071838379, - -1.6567257642745972, - -1.6580568552017212, - -1.6598711013793945, - -1.6619720458984375, - -1.664131760597229, - -1.6661163568496704, - -1.6677109003067017, - -1.668742299079895, - -1.669098973274231 - ] - }, - { - "alphahull": 0, - "color": "#FECB52", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.017292119562625885, - 0.04228869825601578, - 0.07171060889959335, - 0.102369524538517, - 0.13094308972358704, - 0.1543349176645279, - 0.17001010477542877, - 0.17627005279064178, - 0.17243637144565582, - 0.15892449021339417, - 0.13719865679740906, - 0.10961317270994186, - 0.07915738224983215, - 0.0491316020488739, - 0.02278965897858143, - 0.002986069768667221, - -0.008133169263601303, - -0.009363066405057907, - -0.0005703456699848175, - 0.01729213446378708, - 0.024208955466747284, - 0.05920416861772537, - 0.1003948301076889, - 0.1433173269033432, - 0.1833203285932541, - 0.21606886386871338, - 0.23801414668560028, - 0.24677805602550507, - 0.24141089618206024, - 0.22249427437782288, - 0.19207808375358582, - 0.15345843136310577, - 0.11082032322883606, - 0.06878423690795898, - 0.03190552070736885, - 0.004180485382676125, - -0.0113864466547966, - -0.013108298182487488, - -0.0007984936237335205, - 0.024208970367908478 - ], - "y": [ - 0.017292119562625885, - -0.0005703642964363098, - -0.009363062679767609, - -0.008133172988891602, - 0.0029860511422157288, - 0.02278965525329113, - 0.049131616950035095, - 0.07915736734867096, - 0.10961316525936127, - 0.13719864189624786, - 0.15892449021339417, - 0.17243635654449463, - 0.17627006769180298, - 0.17001011967658997, - 0.1543349325656891, - 0.13094311952590942, - 0.1023695319890976, - 0.07171058654785156, - 0.042288657277822495, - 0.01729210466146469, - 0.024208955466747284, - -0.0007985159754753113, - -0.013108301907777786, - -0.011386450380086899, - 0.004180459305644035, - 0.031905513256788254, - 0.06878425180912018, - 0.11082030832767487, - 0.15345843136310577, - 0.19207808375358582, - 0.22249425947666168, - 0.24141089618206024, - 0.24677807092666626, - 0.2380141317844391, - 0.21606887876987457, - 0.18332035839557648, - 0.1433173269033432, - 0.1003948226571083, - 0.0592041090130806, - 0.02420894056558609 - ], - "z": [ - -1.669098973274231, - -1.668742299079895, - -1.6677109003067017, - -1.6661163568496704, - -1.664131760597229, - -1.6619720458984375, - -1.6598711013793945, - -1.6580568552017212, - -1.6567257642745972, - -1.656022071838379, - -1.656022071838379, - -1.6567257642745972, - -1.6580568552017212, - -1.6598711013793945, - -1.6619720458984375, - -1.664131760597229, - -1.6661163568496704, - -1.6677109003067017, - -1.668742299079895, - -1.669098973274231, - -2.3367385864257812, - -2.3362390995025635, - -2.3347949981689453, - -2.3325629234313965, - -2.329784393310547, - -2.326760768890381, - -2.323819398880005, - -2.321279525756836, - -2.319416046142578, - -2.3184309005737305, - -2.3184309005737305, - -2.319416046142578, - -2.321279525756836, - -2.323819398880005, - -2.326760768890381, - -2.329784393310547, - -2.3325629234313965, - -2.3347949981689453, - -2.3362390995025635, - -2.3367385864257812 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.024208955466747284, - 0.05920416861772537, - 0.1003948301076889, - 0.1433173269033432, - 0.1833203285932541, - 0.21606886386871338, - 0.23801414668560028, - 0.24677805602550507, - 0.24141089618206024, - 0.22249427437782288, - 0.19207808375358582, - 0.15345843136310577, - 0.11082032322883606, - 0.06878423690795898, - 0.03190552070736885, - 0.004180485382676125, - -0.0113864466547966, - -0.013108298182487488, - -0.0007984936237335205, - 0.024208970367908478, - 0.031125806272029877, - 0.07611963897943497, - 0.12907910346984863, - 0.1842651516199112, - 0.23569755256175995, - 0.27780282497406006, - 0.3060181736946106, - 0.31728607416152954, - 0.31038543581962585, - 0.2860640585422516, - 0.24695754051208496, - 0.19730371236801147, - 0.14248329401016235, - 0.08843687176704407, - 0.04102138802409172, - 0.005374915897846222, - -0.014639705419540405, - -0.016853518784046173, - -0.0010266304016113281, - 0.03112582117319107 - ], - "y": [ - 0.024208955466747284, - -0.0007985159754753113, - -0.013108301907777786, - -0.011386450380086899, - 0.004180459305644035, - 0.031905513256788254, - 0.06878425180912018, - 0.11082030832767487, - 0.15345843136310577, - 0.19207808375358582, - 0.22249425947666168, - 0.24141089618206024, - 0.24677807092666626, - 0.2380141317844391, - 0.21606887876987457, - 0.18332035839557648, - 0.1433173269033432, - 0.1003948226571083, - 0.0592041090130806, - 0.02420894056558609, - 0.031125806272029877, - -0.001026652753353119, - -0.016853511333465576, - -0.014639712870121002, - 0.0053748805075883865, - 0.041021380573511124, - 0.08843690156936646, - 0.14248326420783997, - 0.1973036825656891, - 0.24695754051208496, - 0.2860640585422516, - 0.31038543581962585, - 0.31728607416152954, - 0.306018203496933, - 0.27780282497406006, - 0.23569759726524353, - 0.1842651665210724, - 0.12907904386520386, - 0.0761195719242096, - 0.031125791370868683 - ], - "z": [ - -2.3367385864257812, - -2.3362390995025635, - -2.3347949981689453, - -2.3325629234313965, - -2.329784393310547, - -2.326760768890381, - -2.323819398880005, - -2.321279525756836, - -2.319416046142578, - -2.3184309005737305, - -2.3184309005737305, - -2.319416046142578, - -2.321279525756836, - -2.323819398880005, - -2.326760768890381, - -2.329784393310547, - -2.3325629234313965, - -2.3347949981689453, - -2.3362390995025635, - -2.3367385864257812, - -3.004378080368042, - -3.0037360191345215, - -3.0018792152404785, - -2.999009370803833, - -2.995436906814575, - -2.991549491882324, - -2.9877679347991943, - -2.984502077102661, - -2.9821062088012695, - -2.980839490890503, - -2.980839490890503, - -2.9821062088012695, - -2.984502077102661, - -2.9877679347991943, - -2.991549491882324, - -2.995436906814575, - -2.999009370803833, - -3.0018792152404785, - -3.0037360191345215, - -3.004378080368042 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.09669512510299683, - 0.10512294620275497, - 0.1182144433259964, - 0.13455092906951904, - 0.1523621380329132, - 0.16971789300441742, - 0.18473747372627258, - 0.1957932561635971, - 0.20168715715408325, - 0.2017805129289627, - 0.19606320559978485, - 0.1851547658443451, - 0.17023731768131256, - 0.15292736887931824, - 0.13510076701641083, - 0.11868928372859955, - 0.10547132045030594, - 0.0968792736530304, - 0.09384426474571228, - 0.09669512510299683, - 0.16115853190422058, - 0.17520490288734436, - 0.19702406227588654, - 0.22425156831741333, - 0.25393691658973694, - 0.28286316990852356, - 0.30789580941200256, - 0.32632210850715637, - 0.336145281791687, - 0.33630087971687317, - 0.326772004365921, - 0.3085912764072418, - 0.28372886776924133, - 0.254878968000412, - 0.22516795992851257, - 0.19781547784805298, - 0.17578554153442383, - 0.16146546602249146, - 0.15640708804130554, - 0.16115853190422058 - ], - "y": [ - 0.032231710851192474, - 0.01624317094683647, - 0.003846229985356331, - -0.0036157211288809776, - -0.005334062036126852, - -0.0011225839843973517, - 0.00856233760714531, - 0.02267119102180004, - 0.03967505693435669, - 0.05773130804300308, - 0.07488326728343964, - 0.08927225321531296, - 0.09933899343013763, - 0.10399261116981506, - 0.10272880643606186, - 0.09568454325199127, - 0.08362314105033875, - 0.06785167753696442, - 0.05007920414209366, - 0.03223170340061188, - 0.053719520568847656, - 0.027071958407759666, - 0.006410378962755203, - -0.006026208400726318, - -0.008890110068023205, - -0.0018709693104028702, - 0.014270561747252941, - 0.03778532147407532, - 0.06612510234117508, - 0.09621885418891907, - 0.12480545043945312, - 0.14878709614276886, - 0.16556501388549805, - 0.17332103848457336, - 0.17121468484401703, - 0.15947425365447998, - 0.13937191665172577, - 0.11308613419532776, - 0.08346535265445709, - 0.05371950566768646 - ], - "z": [ - -0.9963070154190063, - -0.9958422780036926, - -0.9944983720779419, - -0.9924209713935852, - -0.989835262298584, - -0.987021267414093, - -0.9842841029167175, - -0.9819203019142151, - -0.9801860451698303, - -0.9792692065238953, - -0.9792692065238953, - -0.9801860451698303, - -0.9819203019142151, - -0.9842841029167175, - -0.987021267414093, - -0.9898352026939392, - -0.9924209713935852, - -0.9944983720779419, - -0.9958422780036926, - -0.9963070154190063, - -1.6605117321014404, - -1.6597371101379395, - -1.6574972867965698, - -1.654034972190857, - -1.6497254371643066, - -1.6450355052947998, - -1.640473484992981, - -1.6365338563919067, - -1.633643388748169, - -1.632115364074707, - -1.632115364074707, - -1.633643388748169, - -1.6365338563919067, - -1.640473484992981, - -1.6450355052947998, - -1.6497254371643066, - -1.654034972190857, - -1.6574972867965698, - -1.6597371101379395, - -1.6605117321014404 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.16115853190422058, - 0.17520490288734436, - 0.19702406227588654, - 0.22425156831741333, - 0.25393691658973694, - 0.28286316990852356, - 0.30789580941200256, - 0.32632210850715637, - 0.336145281791687, - 0.33630087971687317, - 0.326772004365921, - 0.3085912764072418, - 0.28372886776924133, - 0.254878968000412, - 0.22516795992851257, - 0.19781547784805298, - 0.17578554153442383, - 0.16146546602249146, - 0.15640708804130554, - 0.16115853190422058, - 0.22562193870544434, - 0.24528686702251434, - 0.27583369612693787, - 0.31395214796066284, - 0.3555116355419159, - 0.3960084021091461, - 0.43105411529541016, - 0.45685088634490967, - 0.4706033766269684, - 0.47082120180130005, - 0.457480788230896, - 0.43202778697013855, - 0.3972204029560089, - 0.35683050751686096, - 0.3152351379394531, - 0.2769416570663452, - 0.24609974026679993, - 0.22605162858963013, - 0.2189699411392212, - 0.22562193870544434 - ], - "y": [ - 0.053719520568847656, - 0.027071958407759666, - 0.006410378962755203, - -0.006026208400726318, - -0.008890110068023205, - -0.0018709693104028702, - 0.014270561747252941, - 0.03778532147407532, - 0.06612510234117508, - 0.09621885418891907, - 0.12480545043945312, - 0.14878709614276886, - 0.16556501388549805, - 0.17332103848457336, - 0.17121468484401703, - 0.15947425365447998, - 0.13937191665172577, - 0.11308613419532776, - 0.08346535265445709, - 0.05371950566768646, - 0.07520730793476105, - 0.037900734692811966, - 0.008974522352218628, - -0.008436696603894234, - -0.012446160428225994, - -0.0026193587109446526, - 0.019978784024715424, - 0.05289943888783455, - 0.09257512539625168, - 0.13470637798309326, - 0.17472761869430542, - 0.20830190181732178, - 0.23179098963737488, - 0.24264943599700928, - 0.2397005259990692, - 0.2232639342546463, - 0.1951206773519516, - 0.1583205759525299, - 0.11685147881507874, - 0.07520729303359985 - ], - "z": [ - -1.6605117321014404, - -1.6597371101379395, - -1.6574972867965698, - -1.654034972190857, - -1.6497254371643066, - -1.6450355052947998, - -1.640473484992981, - -1.6365338563919067, - -1.633643388748169, - -1.632115364074707, - -1.632115364074707, - -1.633643388748169, - -1.6365338563919067, - -1.640473484992981, - -1.6450355052947998, - -1.6497254371643066, - -1.654034972190857, - -1.6574972867965698, - -1.6597371101379395, - -1.6605117321014404, - -2.324716091156006, - -2.323631763458252, - -2.320496082305908, - -2.3156487941741943, - -2.30961537361145, - -2.3030495643615723, - -2.2966628074645996, - -2.291147232055664, - -2.2871005535125732, - -2.284961223602295, - -2.284961223602295, - -2.2871005535125732, - -2.291147232055664, - -2.2966628074645996, - -2.3030495643615723, - -2.30961537361145, - -2.3156487941741943, - -2.320496082305908, - -2.323631763458252, - -2.324716091156006 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.22562193870544434, - 0.24528686702251434, - 0.27583369612693787, - 0.31395214796066284, - 0.3555116355419159, - 0.3960084021091461, - 0.43105411529541016, - 0.45685088634490967, - 0.4706033766269684, - 0.47082120180130005, - 0.457480788230896, - 0.43202778697013855, - 0.3972204029560089, - 0.35683050751686096, - 0.3152351379394531, - 0.2769416570663452, - 0.24609974026679993, - 0.22605162858963013, - 0.2189699411392212, - 0.22562193870544434, - 0.2900853753089905, - 0.3153688311576843, - 0.3546432852745056, - 0.40365278720855713, - 0.45708638429641724, - 0.5091536641120911, - 0.5542123913764954, - 0.5873797535896301, - 0.6050615310668945, - 0.6053415536880493, - 0.5881896018981934, - 0.5554642677307129, - 0.5107119679450989, - 0.4587821364402771, - 0.4053023159503937, - 0.35606783628463745, - 0.3164139688014984, - 0.2906378507614136, - 0.28153276443481445, - 0.2900853753089905 - ], - "y": [ - 0.07520730793476105, - 0.037900734692811966, - 0.008974522352218628, - -0.008436696603894234, - -0.012446160428225994, - -0.0026193587109446526, - 0.019978784024715424, - 0.05289943888783455, - 0.09257512539625168, - 0.13470637798309326, - 0.17472761869430542, - 0.20830190181732178, - 0.23179098963737488, - 0.24264943599700928, - 0.2397005259990692, - 0.2232639342546463, - 0.1951206773519516, - 0.1583205759525299, - 0.11685147881507874, - 0.07520729303359985, - 0.09669512510299683, - 0.04872951656579971, - 0.011538680642843246, - -0.010847175493836403, - -0.016002196818590164, - -0.0033677485771477222, - 0.025686997920274734, - 0.06801356375217438, - 0.11902517080307007, - 0.17319391667842865, - 0.22464978694915771, - 0.2678167521953583, - 0.2980169951915741, - 0.3119778633117676, - 0.30818644165992737, - 0.28705358505249023, - 0.25086942315101624, - 0.20355501770973206, - 0.15023761987686157, - 0.09669509530067444 - ], - "z": [ - -2.324716091156006, - -2.323631763458252, - -2.320496082305908, - -2.3156487941741943, - -2.30961537361145, - -2.3030495643615723, - -2.2966628074645996, - -2.291147232055664, - -2.2871005535125732, - -2.284961223602295, - -2.284961223602295, - -2.2871005535125732, - -2.291147232055664, - -2.2966628074645996, - -2.3030495643615723, - -2.30961537361145, - -2.3156487941741943, - -2.320496082305908, - -2.323631763458252, - -2.324716091156006, - -2.9889211654663086, - -2.9875268936157227, - -2.9834952354431152, - -2.9772629737854004, - -2.969505786895752, - -2.961063861846924, - -2.952852487564087, - -2.94576096534729, - -2.9405581951141357, - -2.937807559967041, - -2.937807559967041, - -2.9405581951141357, - -2.94576096534729, - -2.952852487564087, - -2.961063861846924, - -2.969505786895752, - -2.9772629737854004, - -2.9834952354431152, - -2.9875268936157227, - -2.9889211654663086 - ] - }, - { - "alphahull": 0, - "color": "#FFA15A", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.0961940810084343, - -0.10470394790172577, - -0.11792290955781937, - -0.13441845774650574, - -0.15240304172039032, - -0.16992779076099396, - -0.18509358167648315, - -0.19625701010227203, - -0.20220829546451569, - -0.20230256021022797, - -0.1965295821428299, - -0.18551494181156158, - -0.1704522669315338, - -0.15297380089759827, - -0.13497363030910492, - -0.11840236932039261, - -0.10505571961402893, - -0.09638004004955292, - -0.09331545978784561, - -0.0961940810084343, - -0.16032347083091736, - -0.17450658977031708, - -0.19653818011283875, - -0.2240307331085205, - -0.2540050745010376, - -0.2832129895687103, - -0.3084893226623535, - -0.32709500193595886, - -0.337013840675354, - -0.33717095851898193, - -0.3275493383407593, - -0.30919158458709717, - -0.2840871214866638, - -0.25495633482933044, - -0.22495606541633606, - -0.1973372846841812, - -0.175092875957489, - -0.1606334000825882, - -0.15552577376365662, - -0.16032347083091736 - ], - "y": [ - -0.03206469491124153, - -0.015920497477054596, - -0.0034028617665171623, - 0.004131738096475601, - 0.005866807419806719, - 0.00161432521417737, - -0.008164886385202408, - -0.022411096841096878, - -0.039580509066581726, - -0.05781254917383194, - -0.07513149827718735, - -0.08966057002544403, - -0.09982532262802124, - -0.10452424734830856, - -0.10324813425540924, - -0.09613528847694397, - -0.08395645767450333, - -0.068031445145607, - -0.05008595064282417, - -0.032064687460660934, - -0.053441163152456284, - -0.026534169912338257, - -0.005671437829732895, - 0.006886221468448639, - 0.009778006002306938, - 0.00269053946249187, - -0.013608148321509361, - -0.037351831793785095, - -0.06596752256155014, - -0.09635425359010696, - -0.1252191662788391, - -0.14943429827690125, - -0.1663755476474762, - -0.17420709133148193, - -0.17208023369312286, - -0.1602254956960678, - -0.1399274468421936, - -0.11338574439287186, - -0.08347658812999725, - -0.05344114825129509 - ], - "z": [ - -0.9963905215263367, - -0.99592125415802, - -0.9945642948150635, - -0.9924666881561279, - -0.9898557066917419, - -0.9870144128799438, - -0.984250545501709, - -0.9818637371063232, - -0.9801125526428223, - -0.9791868329048157, - -0.9791868329048157, - -0.9801125526428223, - -0.9818637371063232, - -0.984250545501709, - -0.9870144128799438, - -0.9898557066917419, - -0.9924666881561279, - -0.9945642948150635, - -0.99592125415802, - -0.9963905215263367, - -1.6606508493423462, - -1.6598687171936035, - -1.6576071977615356, - -1.6541111469268799, - -1.6497595310211182, - -1.645024061203003, - -1.6404175758361816, - -1.636439561843872, - -1.6335209608078003, - -1.6319780349731445, - -1.6319780349731445, - -1.6335209608078003, - -1.636439561843872, - -1.6404175758361816, - -1.645024061203003, - -1.6497595310211182, - -1.6541111469268799, - -1.6576071977615356, - -1.6598687171936035, - -1.6606508493423462 - ] - }, - { - "alphahull": 0, - "color": "#19D3F3", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.16032347083091736, - -0.17450658977031708, - -0.19653818011283875, - -0.2240307331085205, - -0.2540050745010376, - -0.2832129895687103, - -0.3084893226623535, - -0.32709500193595886, - -0.337013840675354, - -0.33717095851898193, - -0.3275493383407593, - -0.30919158458709717, - -0.2840871214866638, - -0.25495633482933044, - -0.22495606541633606, - -0.1973372846841812, - -0.175092875957489, - -0.1606334000825882, - -0.15552577376365662, - -0.16032347083091736, - -0.22445285320281982, - -0.244309201836586, - -0.27515342831611633, - -0.31364303827285767, - -0.35560712218284607, - -0.3964981436729431, - -0.4318850040435791, - -0.4579329788684845, - -0.47181934118270874, - -0.47203928232192993, - -0.4585689902305603, - -0.43286818265914917, - -0.39772194623947144, - -0.35693883895874023, - -0.314938485622406, - -0.276272177696228, - -0.2451300024986267, - -0.2248867303133011, - -0.21773606538772583, - -0.22445285320281982 - ], - "y": [ - -0.053441163152456284, - -0.026534169912338257, - -0.005671437829732895, - 0.006886221468448639, - 0.009778006002306938, - 0.00269053946249187, - -0.013608148321509361, - -0.037351831793785095, - -0.06596752256155014, - -0.09635425359010696, - -0.1252191662788391, - -0.14943429827690125, - -0.1663755476474762, - -0.17420709133148193, - -0.17208023369312286, - -0.1602254956960678, - -0.1399274468421936, - -0.11338574439287186, - -0.08347658812999725, - -0.05344114825129509, - -0.07481761276721954, - -0.03714781999588013, - -0.007940005511045456, - 0.009640729054808617, - 0.013689215295016766, - 0.0037667537108063698, - -0.01905139721930027, - -0.05229254812002182, - -0.09235451370477676, - -0.1348959505558014, - -0.17530682682991028, - -0.20920799672603607, - -0.23292574286460876, - -0.24388988316059113, - -0.2409122884273529, - -0.22431565821170807, - -0.1958984136581421, - -0.15874004364013672, - -0.11686722189188004, - -0.07481759786605835 - ], - "z": [ - -1.6606508493423462, - -1.6598687171936035, - -1.6576071977615356, - -1.6541111469268799, - -1.6497595310211182, - -1.645024061203003, - -1.6404175758361816, - -1.636439561843872, - -1.6335209608078003, - -1.6319780349731445, - -1.6319780349731445, - -1.6335209608078003, - -1.636439561843872, - -1.6404175758361816, - -1.645024061203003, - -1.6497595310211182, - -1.6541111469268799, - -1.6576071977615356, - -1.6598687171936035, - -1.6606508493423462, - -2.324911117553711, - -2.3238160610198975, - -2.3206498622894287, - -2.3157553672790527, - -2.3096632957458496, - -2.3030333518981934, - -2.2965846061706543, - -2.291015148162842, - -2.286929130554199, - -2.284769058227539, - -2.284769058227539, - -2.286929130554199, - -2.291015148162842, - -2.2965846061706543, - -2.3030333518981934, - -2.3096632957458496, - -2.3157553672790527, - -2.3206498622894287, - -2.3238160610198975, - -2.324911117553711 - ] - }, - { - "alphahull": 0, - "color": "#FF6692", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.22445285320281982, - -0.244309201836586, - -0.27515342831611633, - -0.31364303827285767, - -0.35560712218284607, - -0.3964981436729431, - -0.4318850040435791, - -0.4579329788684845, - -0.47181934118270874, - -0.47203928232192993, - -0.4585689902305603, - -0.43286818265914917, - -0.39772194623947144, - -0.35693883895874023, - -0.314938485622406, - -0.276272177696228, - -0.2451300024986267, - -0.2248867303133011, - -0.21773606538772583, - -0.22445285320281982, - -0.2885822653770447, - -0.3141118884086609, - -0.3537687063217163, - -0.4032553434371948, - -0.45720914006233215, - -0.5097833275794983, - -0.5552807450294495, - -0.5887709856033325, - -0.6066249012947083, - -0.6069076657295227, - -0.5895887017250061, - -0.556544840335846, - -0.511356770992279, - -0.4589213728904724, - -0.40492090582847595, - -0.3552071154117584, - -0.3151671588420868, - -0.28914010524749756, - -0.27994638681411743, - -0.2885822653770447 - ], - "y": [ - -0.07481761276721954, - -0.03714781999588013, - -0.007940005511045456, - 0.009640729054808617, - 0.013689215295016766, - 0.0037667537108063698, - -0.01905139721930027, - -0.05229254812002182, - -0.09235451370477676, - -0.1348959505558014, - -0.17530682682991028, - -0.20920799672603607, - -0.23292574286460876, - -0.24388988316059113, - -0.2409122884273529, - -0.22431565821170807, - -0.1958984136581421, - -0.15874004364013672, - -0.11686722189188004, - -0.07481759786605835, - -0.0961940810084343, - -0.047761499881744385, - -0.010208584368228912, - 0.012395208701491356, - 0.017600424587726593, - 0.004842968191951513, - -0.024494647979736328, - -0.06723329424858093, - -0.11874152719974518, - -0.17343764007091522, - -0.22539448738098145, - -0.2689816951751709, - -0.2994759678840637, - -0.3135727345943451, - -0.30974438786506653, - -0.2884058356285095, - -0.2518693804740906, - -0.20409433543682098, - -0.15025784075260162, - -0.09619405120611191 - ], - "z": [ - -2.324911117553711, - -2.3238160610198975, - -2.3206498622894287, - -2.3157553672790527, - -2.3096632957458496, - -2.3030333518981934, - -2.2965846061706543, - -2.291015148162842, - -2.286929130554199, - -2.284769058227539, - -2.284769058227539, - -2.286929130554199, - -2.291015148162842, - -2.2965846061706543, - -2.3030333518981934, - -2.3096632957458496, - -2.3157553672790527, - -2.3206498622894287, - -2.3238160610198975, - -2.324911117553711, - -2.9891715049743652, - -2.9877636432647705, - -2.9836928844451904, - -2.977400064468384, - -2.96956729888916, - -2.961043357849121, - -2.952751874923706, - -2.9455912113189697, - -2.940337896347046, - -2.937560558319092, - -2.937560558319092, - -2.940337896347046, - -2.9455912113189697, - -2.952751874923706, - -2.961043357849121, - -2.96956729888916, - -2.977400064468384, - -2.9836928844451904, - -2.9877636432647705, - -2.9891715049743652 - ] - }, - { - "alphahull": 0, - "color": "#B6E880", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.010375268757343292, - -0.025373220443725586, - -0.043026357889175415, - -0.0614217109978199, - -0.07856585085391998, - -0.09260094165802002, - -0.10200606286525726, - -0.10576202720403671, - -0.10346181690692902, - -0.09535469114780426, - -0.08231918513774872, - -0.06576789915561676, - -0.04749442636966705, - -0.02947895973920822, - -0.013673798181116581, - -0.0017916373908519745, - 0.004879903048276901, - 0.005617843940854073, - 0.0003422088921070099, - -0.01037527620792389, - -0.017292119562625885, - -0.04228869825601578, - -0.07171060889959335, - -0.102369524538517, - -0.13094308972358704, - -0.1543349176645279, - -0.17001010477542877, - -0.17627005279064178, - -0.17243637144565582, - -0.15892449021339417, - -0.13719865679740906, - -0.10961317270994186, - -0.07915738224983215, - -0.0491316020488739, - -0.02278965897858143, - -0.002986069768667221, - 0.008133169263601303, - 0.009363066405057907, - 0.0005703456699848175, - -0.01729213446378708 - ], - "y": [ - -0.010375268757343292, - 0.0003422163426876068, - 0.005617840215563774, - 0.0048799067735672, - -0.0017916299402713776, - -0.013673795387148857, - -0.029478969052433968, - -0.047494422644376755, - -0.06576789915561676, - -0.08231918513774872, - -0.09535469114780426, - -0.10346181690692902, - -0.10576201975345612, - -0.10200606286525726, - -0.09260094165802002, - -0.07856587320566177, - -0.0614217147231102, - -0.04302635416388512, - -0.025373198091983795, - -0.010375261306762695, - -0.017292119562625885, - 0.0005703642964363098, - 0.009363062679767609, - 0.008133172988891602, - -0.0029860511422157288, - -0.02278965525329113, - -0.049131616950035095, - -0.07915736734867096, - -0.10961316525936127, - -0.13719864189624786, - -0.15892449021339417, - -0.17243635654449463, - -0.17627006769180298, - -0.17001011967658997, - -0.1543349325656891, - -0.13094311952590942, - -0.1023695319890976, - -0.07171058654785156, - -0.042288657277822495, - -0.01729210466146469 - ], - "z": [ - -1.0014593601226807, - -1.001245379447937, - -1.0006264448165894, - -0.9996697902679443, - -0.9984790086746216, - -0.9971831440925598, - -0.9959226846694946, - -0.9948340654373169, - -0.9940354228019714, - -0.9936132431030273, - -0.9936132431030273, - -0.9940354228019714, - -0.9948340654373169, - -0.9959226846694946, - -0.9971831440925598, - -0.9984790086746216, - -0.9996697902679443, - -1.0006264448165894, - -1.001245379447937, - -1.0014593601226807, - -1.669098973274231, - -1.668742299079895, - -1.6677109003067017, - -1.6661163568496704, - -1.664131760597229, - -1.6619720458984375, - -1.6598711013793945, - -1.6580568552017212, - -1.6567257642745972, - -1.656022071838379, - -1.656022071838379, - -1.6567257642745972, - -1.6580568552017212, - -1.6598711013793945, - -1.6619720458984375, - -1.664131760597229, - -1.6661163568496704, - -1.6677109003067017, - -1.668742299079895, - -1.669098973274231 - ] - }, - { - "alphahull": 0, - "color": "#FF97FF", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.017292119562625885, - -0.04228869825601578, - -0.07171060889959335, - -0.102369524538517, - -0.13094308972358704, - -0.1543349176645279, - -0.17001010477542877, - -0.17627005279064178, - -0.17243637144565582, - -0.15892449021339417, - -0.13719865679740906, - -0.10961317270994186, - -0.07915738224983215, - -0.0491316020488739, - -0.02278965897858143, - -0.002986069768667221, - 0.008133169263601303, - 0.009363066405057907, - 0.0005703456699848175, - -0.01729213446378708, - -0.024208955466747284, - -0.05920416861772537, - -0.1003948301076889, - -0.1433173269033432, - -0.1833203285932541, - -0.21606886386871338, - -0.23801414668560028, - -0.24677805602550507, - -0.24141089618206024, - -0.22249427437782288, - -0.19207808375358582, - -0.15345843136310577, - -0.11082032322883606, - -0.06878423690795898, - -0.03190552070736885, - -0.004180485382676125, - 0.0113864466547966, - 0.013108298182487488, - 0.0007984936237335205, - -0.024208970367908478 - ], - "y": [ - -0.017292119562625885, - 0.0005703642964363098, - 0.009363062679767609, - 0.008133172988891602, - -0.0029860511422157288, - -0.02278965525329113, - -0.049131616950035095, - -0.07915736734867096, - -0.10961316525936127, - -0.13719864189624786, - -0.15892449021339417, - -0.17243635654449463, - -0.17627006769180298, - -0.17001011967658997, - -0.1543349325656891, - -0.13094311952590942, - -0.1023695319890976, - -0.07171058654785156, - -0.042288657277822495, - -0.01729210466146469, - -0.024208955466747284, - 0.0007985159754753113, - 0.013108301907777786, - 0.011386450380086899, - -0.004180459305644035, - -0.031905513256788254, - -0.06878425180912018, - -0.11082030832767487, - -0.15345843136310577, - -0.19207808375358582, - -0.22249425947666168, - -0.24141089618206024, - -0.24677807092666626, - -0.2380141317844391, - -0.21606887876987457, - -0.18332035839557648, - -0.1433173269033432, - -0.1003948226571083, - -0.0592041090130806, - -0.02420894056558609 - ], - "z": [ - -1.669098973274231, - -1.668742299079895, - -1.6677109003067017, - -1.6661163568496704, - -1.664131760597229, - -1.6619720458984375, - -1.6598711013793945, - -1.6580568552017212, - -1.6567257642745972, - -1.656022071838379, - -1.656022071838379, - -1.6567257642745972, - -1.6580568552017212, - -1.6598711013793945, - -1.6619720458984375, - -1.664131760597229, - -1.6661163568496704, - -1.6677109003067017, - -1.668742299079895, - -1.669098973274231, - -2.3367385864257812, - -2.3362390995025635, - -2.3347949981689453, - -2.3325629234313965, - -2.329784393310547, - -2.326760768890381, - -2.323819398880005, - -2.321279525756836, - -2.319416046142578, - -2.3184309005737305, - -2.3184309005737305, - -2.319416046142578, - -2.321279525756836, - -2.323819398880005, - -2.326760768890381, - -2.329784393310547, - -2.3325629234313965, - -2.3347949981689453, - -2.3362390995025635, - -2.3367385864257812 - ] - }, - { - "alphahull": 0, - "color": "#FECB52", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.024208955466747284, - -0.05920416861772537, - -0.1003948301076889, - -0.1433173269033432, - -0.1833203285932541, - -0.21606886386871338, - -0.23801414668560028, - -0.24677805602550507, - -0.24141089618206024, - -0.22249427437782288, - -0.19207808375358582, - -0.15345843136310577, - -0.11082032322883606, - -0.06878423690795898, - -0.03190552070736885, - -0.004180485382676125, - 0.0113864466547966, - 0.013108298182487488, - 0.0007984936237335205, - -0.024208970367908478, - -0.031125806272029877, - -0.07611963897943497, - -0.12907910346984863, - -0.1842651516199112, - -0.23569755256175995, - -0.27780282497406006, - -0.3060181736946106, - -0.31728607416152954, - -0.31038543581962585, - -0.2860640585422516, - -0.24695754051208496, - -0.19730371236801147, - -0.14248329401016235, - -0.08843687176704407, - -0.04102138802409172, - -0.005374915897846222, - 0.014639705419540405, - 0.016853518784046173, - 0.0010266304016113281, - -0.03112582117319107 - ], - "y": [ - -0.024208955466747284, - 0.0007985159754753113, - 0.013108301907777786, - 0.011386450380086899, - -0.004180459305644035, - -0.031905513256788254, - -0.06878425180912018, - -0.11082030832767487, - -0.15345843136310577, - -0.19207808375358582, - -0.22249425947666168, - -0.24141089618206024, - -0.24677807092666626, - -0.2380141317844391, - -0.21606887876987457, - -0.18332035839557648, - -0.1433173269033432, - -0.1003948226571083, - -0.0592041090130806, - -0.02420894056558609, - -0.031125806272029877, - 0.001026652753353119, - 0.016853511333465576, - 0.014639712870121002, - -0.0053748805075883865, - -0.041021380573511124, - -0.08843690156936646, - -0.14248326420783997, - -0.1973036825656891, - -0.24695754051208496, - -0.2860640585422516, - -0.31038543581962585, - -0.31728607416152954, - -0.306018203496933, - -0.27780282497406006, - -0.23569759726524353, - -0.1842651665210724, - -0.12907904386520386, - -0.0761195719242096, - -0.031125791370868683 - ], - "z": [ - -2.3367385864257812, - -2.3362390995025635, - -2.3347949981689453, - -2.3325629234313965, - -2.329784393310547, - -2.326760768890381, - -2.323819398880005, - -2.321279525756836, - -2.319416046142578, - -2.3184309005737305, - -2.3184309005737305, - -2.319416046142578, - -2.321279525756836, - -2.323819398880005, - -2.326760768890381, - -2.329784393310547, - -2.3325629234313965, - -2.3347949981689453, - -2.3362390995025635, - -2.3367385864257812, - -3.004378080368042, - -3.0037360191345215, - -3.0018792152404785, - -2.999009370803833, - -2.995436906814575, - -2.991549491882324, - -2.9877679347991943, - -2.984502077102661, - -2.9821062088012695, - -2.980839490890503, - -2.980839490890503, - -2.9821062088012695, - -2.984502077102661, - -2.9877679347991943, - -2.991549491882324, - -2.995436906814575, - -2.999009370803833, - -3.0018792152404785, - -3.0037360191345215, - -3.004378080368042 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.010569855570793152, - -0.00009483098983764648, - -0.0053444672375917435, - -0.004610165953636169, - 0.002028500661253929, - 0.013852131552994251, - 0.029579445719718933, - 0.04750615358352661, - 0.06568960845470428, - 0.08215935528278351, - 0.09513065218925476, - 0.10319782793521881, - 0.10548672080039978, - 0.1017492488026619, - 0.09239046275615692, - 0.07842452824115753, - 0.06136484444141388, - 0.043060094118118286, - 0.025493893772363663, - 0.010569848120212555, - 0.017616428434848785, - -0.0001580566167831421, - -0.008907448500394821, - -0.007683612406253815, - 0.00338083878159523, - 0.02308688312768936, - 0.049299079924821854, - 0.07917691767215729, - 0.10948269069194794, - 0.13693226873874664, - 0.15855108201503754, - 0.17199639976024628, - 0.17581120133399963, - 0.16958209872245789, - 0.15398412942886353, - 0.13070756196975708, - 0.10227474570274353, - 0.07176682353019714, - 0.042489826679229736, - 0.01761641353368759 - ], - "y": [ - -0.010569855570793152, - -0.025493919849395752, - -0.04306010529398918, - -0.06136484071612358, - -0.07842452079057693, - -0.09239046275615692, - -0.10174925625324249, - -0.10548672080039978, - -0.10319782793521881, - -0.09513065218925476, - -0.08215935528278351, - -0.06568960845470428, - -0.04750615730881691, - -0.029579440131783485, - -0.0138521334156394, - -0.002028512768447399, - 0.00461016409099102, - 0.0053444672375917435, - 0.00009482726454734802, - -0.010569863021373749, - -0.017616428434848785, - -0.04248987138271332, - -0.07176683843135834, - -0.10227473080158234, - -0.1307075321674347, - -0.15398412942886353, - -0.16958211362361908, - -0.17581121623516083, - -0.17199639976024628, - -0.15855108201503754, - -0.13693226873874664, - -0.10948269069194794, - -0.07917693257331848, - -0.04929906502366066, - -0.02308688871562481, - -0.0033808518201112747, - 0.007683604955673218, - 0.008907441049814224, - 0.00015804171562194824, - -0.01761644333600998 - ], - "z": [ - -1.0014399290084839, - -1.0012269020080566, - -1.0006110668182373, - -0.9996591806411743, - -0.9984742403030396, - -0.9971847534179688, - -0.9959304928779602, - -0.9948472380638123, - -0.994052529335022, - -0.993632435798645, - -0.993632435798645, - -0.994052529335022, - -0.9948472380638123, - -0.9959304928779602, - -0.9971847534179688, - -0.9984742403030396, - -0.9996591806411743, - -1.0006110668182373, - -1.0012269020080566, - -1.0014399290084839, - -1.6690665483474731, - -1.6687116622924805, - -1.6676852703094482, - -1.666098713874817, - -1.664123773574829, - -1.6619746685028076, - -1.6598842144012451, - -1.6580787897109985, - -1.6567542552947998, - -1.6560540199279785, - -1.6560540199279785, - -1.6567542552947998, - -1.6580787897109985, - -1.6598842144012451, - -1.6619746685028076, - -1.664123773574829, - -1.666098713874817, - -1.6676852703094482, - -1.6687116622924805, - -1.6690665483474731 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.017616428434848785, - -0.0001580566167831421, - -0.008907448500394821, - -0.007683612406253815, - 0.00338083878159523, - 0.02308688312768936, - 0.049299079924821854, - 0.07917691767215729, - 0.10948269069194794, - 0.13693226873874664, - 0.15855108201503754, - 0.17199639976024628, - 0.17581120133399963, - 0.16958209872245789, - 0.15398412942886353, - 0.13070756196975708, - 0.10227474570274353, - 0.07176682353019714, - 0.042489826679229736, - 0.01761641353368759, - 0.024662993848323822, - -0.00022127479314804077, - -0.012470420449972153, - -0.010757055133581161, - 0.004733165726065636, - 0.03232163190841675, - 0.06901870667934418, - 0.11084768176078796, - 0.1532757431268692, - 0.19170516729354858, - 0.2219715118408203, - 0.24079494178295135, - 0.2461356520652771, - 0.2374148964881897, - 0.21557775139808655, - 0.18299056589603424, - 0.1431846022605896, - 0.1004735454916954, - 0.05948575586080551, - 0.024662978947162628 - ], - "y": [ - -0.017616428434848785, - -0.04248987138271332, - -0.07176683843135834, - -0.10227473080158234, - -0.1307075321674347, - -0.15398412942886353, - -0.16958211362361908, - -0.17581121623516083, - -0.17199639976024628, - -0.15855108201503754, - -0.13693226873874664, - -0.10948269069194794, - -0.07917693257331848, - -0.04929906502366066, - -0.02308688871562481, - -0.0033808518201112747, - 0.007683604955673218, - 0.008907441049814224, - 0.00015804171562194824, - -0.01761644333600998, - -0.024662993848323822, - -0.05948580801486969, - -0.1004735603928566, - -0.1431846022605896, - -0.18299053609371185, - -0.21557775139808655, - -0.2374149113893509, - -0.2461356520652771, - -0.24079494178295135, - -0.2219715118408203, - -0.19170516729354858, - -0.1532757580280304, - -0.11084768921136856, - -0.06901869177818298, - -0.032321639358997345, - -0.004733191803097725, - 0.010757051408290863, - 0.012470424175262451, - 0.00022125989198684692, - -0.024663008749485016 - ], - "z": [ - -1.6690665483474731, - -1.6687116622924805, - -1.6676852703094482, - -1.666098713874817, - -1.664123773574829, - -1.6619746685028076, - -1.6598842144012451, - -1.6580787897109985, - -1.6567542552947998, - -1.6560540199279785, - -1.6560540199279785, - -1.6567542552947998, - -1.6580787897109985, - -1.6598842144012451, - -1.6619746685028076, - -1.664123773574829, - -1.666098713874817, - -1.6676852703094482, - -1.6687116622924805, - -1.6690665483474731, - -2.336693048477173, - -2.336196184158325, - -2.33475923538208, - -2.33253812789917, - -2.329773187637329, - -2.3267643451690674, - -2.3238377571105957, - -2.32131028175354, - -2.319455862045288, - -2.3184754848480225, - -2.3184754848480225, - -2.319455862045288, - -2.32131028175354, - -2.3238377571105957, - -2.3267643451690674, - -2.329773187637329, - -2.33253812789917, - -2.33475923538208, - -2.336196184158325, - -2.336693048477173 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.024662993848323822, - -0.00022127479314804077, - -0.012470420449972153, - -0.010757055133581161, - 0.004733165726065636, - 0.03232163190841675, - 0.06901870667934418, - 0.11084768176078796, - 0.1532757431268692, - 0.19170516729354858, - 0.2219715118408203, - 0.24079494178295135, - 0.2461356520652771, - 0.2374148964881897, - 0.21557775139808655, - 0.18299056589603424, - 0.1431846022605896, - 0.1004735454916954, - 0.05948575586080551, - 0.024662978947162628, - 0.031709566712379456, - -0.00028449296951293945, - -0.01603340357542038, - -0.013830505311489105, - 0.006085511296987534, - 0.04155639559030533, - 0.0887383371591568, - 0.14251846075057983, - 0.19706881046295166, - 0.24647808074951172, - 0.2853919267654419, - 0.3095934987068176, - 0.31646013259887695, - 0.3052477538585663, - 0.27717140316963196, - 0.23527361452579498, - 0.18409451842308044, - 0.12918026745319366, - 0.07648169249296188, - 0.03170955181121826 - ], - "y": [ - -0.024662993848323822, - -0.05948580801486969, - -0.1004735603928566, - -0.1431846022605896, - -0.18299053609371185, - -0.21557775139808655, - -0.2374149113893509, - -0.2461356520652771, - -0.24079494178295135, - -0.2219715118408203, - -0.19170516729354858, - -0.1532757580280304, - -0.11084768921136856, - -0.06901869177818298, - -0.032321639358997345, - -0.004733191803097725, - 0.010757051408290863, - 0.012470424175262451, - 0.00022125989198684692, - -0.024663008749485016, - -0.031709566712379456, - -0.07648175954818726, - -0.12918031215667725, - -0.18409451842308044, - -0.235273540019989, - -0.27717140316963196, - -0.3052477538585663, - -0.31646016240119934, - -0.3095934987068176, - -0.2853919565677643, - -0.24647808074951172, - -0.19706884026527405, - -0.14251846075057983, - -0.08873830735683441, - -0.041556403040885925, - -0.006085531786084175, - 0.013830497860908508, - 0.01603340357542038, - 0.0002844706177711487, - -0.03170958161354065 - ], - "z": [ - -2.336693048477173, - -2.336196184158325, - -2.33475923538208, - -2.33253812789917, - -2.329773187637329, - -2.3267643451690674, - -2.3238377571105957, - -2.32131028175354, - -2.319455862045288, - -2.3184754848480225, - -2.3184754848480225, - -2.319455862045288, - -2.32131028175354, - -2.3238377571105957, - -2.3267643451690674, - -2.329773187637329, - -2.33253812789917, - -2.33475923538208, - -2.336196184158325, - -2.336693048477173, - -3.004319667816162, - -3.00368070602417, - -3.001833200454712, - -2.9989774227142334, - -2.995422601699829, - -2.9915542602539062, - -2.9877912998199463, - -2.984541654586792, - -2.9821574687957764, - -2.9808971881866455, - -2.9808971881866455, - -2.9821574687957764, - -2.984541654586792, - -2.9877912998199463, - -2.9915542602539062, - -2.995422601699829, - -2.9989774227142334, - -3.001833200454712, - -3.00368070602417, - -3.004319667816162 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.09694375097751617, - 0.09410664439201355, - 0.0971270278096199, - 0.1056775450706482, - 0.11883164197206497, - 0.13516385853290558, - 0.15290434658527374, - 0.170130655169487, - 0.18497604131698608, - 0.1958317756652832, - 0.20152148604393005, - 0.20142856240272522, - 0.19556313753128052, - 0.18456074595451355, - 0.16961374878883362, - 0.15234185755252838, - 0.1346166729927063, - 0.11835908889770508, - 0.10533083975315094, - 0.09694375097751617, - 0.1615729182958603, - 0.15684443712234497, - 0.16187837719917297, - 0.17612925171852112, - 0.19805273413658142, - 0.22527310252189636, - 0.25484058260917664, - 0.28355109691619873, - 0.3082934021949768, - 0.32638630270957947, - 0.3358691334724426, - 0.33571428060531616, - 0.32593855261802673, - 0.30760127305984497, - 0.2826896011829376, - 0.2539030909538269, - 0.22436115145683289, - 0.197265163064003, - 0.1755514144897461, - 0.1615729182958603 - ], - "y": [ - -0.03231458365917206, - -0.05007588118314743, - -0.06776247918605804, - -0.08345774561166763, - -0.09546086192131042, - -0.10247110575437546, - -0.10372880846261978, - -0.09909767657518387, - -0.08907957375049591, - -0.07476009428501129, - -0.057690996676683426, - -0.03972197696566582, - -0.022800257429480553, - -0.008759558200836182, - 0.0008785693207755685, - 0.005069705657660961, - 0.0033596670255064964, - -0.004066239111125469, - -0.016403306275606155, - -0.032314591109752655, - -0.05385764688253403, - -0.08345980942249298, - -0.11293746531009674, - -0.13909626007080078, - -0.1591014415025711, - -0.17078518867492676, - -0.1728813499212265, - -0.1651628017425537, - -0.14846596121788025, - -0.12460017204284668, - -0.09615166485309601, - -0.0662032961845398, - -0.0380004346370697, - -0.014599261805415154, - 0.0014642772730439901, - 0.008449504151940346, - 0.005599444732069969, - -0.006777066737413406, - -0.027338849380612373, - -0.05385766178369522 - ], - "z": [ - -0.9962655305862427, - -0.9958030581474304, - -0.9944656491279602, - -0.9923983216285706, - -0.9898250699043274, - -0.98702472448349, - -0.9843007326126099, - -0.9819483757019043, - -0.9802224636077881, - -0.9793100953102112, - -0.9793100953102112, - -0.9802224636077881, - -0.9819483757019043, - -0.9843007326126099, - -0.98702472448349, - -0.9898250699043274, - -0.9923983216285706, - -0.9944656491279602, - -0.9958030581474304, - -0.9962655305862427, - -1.660442590713501, - -1.6596717834472656, - -1.6574428081512451, - -1.6539971828460693, - -1.6497085094451904, - -1.6450412273406982, - -1.6405012607574463, - -1.6365805864334106, - -1.6337041854858398, - -1.6321834325790405, - -1.6321834325790405, - -1.6337041854858398, - -1.6365805864334106, - -1.6405012607574463, - -1.6450412273406982, - -1.6497085094451904, - -1.6539971828460693, - -1.6574428081512451, - -1.6596717834472656, - -1.660442590713501 - ] - }, - { - "alphahull": 0, - "color": "#FFA15A", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.1615729182958603, - 0.15684443712234497, - 0.16187837719917297, - 0.17612925171852112, - 0.19805273413658142, - 0.22527310252189636, - 0.25484058260917664, - 0.28355109691619873, - 0.3082934021949768, - 0.32638630270957947, - 0.3358691334724426, - 0.33571428060531616, - 0.32593855261802673, - 0.30760127305984497, - 0.2826896011829376, - 0.2539030909538269, - 0.22436115145683289, - 0.197265163064003, - 0.1755514144897461, - 0.1615729182958603, - 0.2262020707130432, - 0.219582200050354, - 0.22662970423698425, - 0.24658092856407166, - 0.2772738039493561, - 0.31538233160972595, - 0.35677677392959595, - 0.39697152376174927, - 0.43161073327064514, - 0.45694079995155334, - 0.4702167809009552, - 0.4699999690055847, - 0.45631396770477295, - 0.430641770362854, - 0.39576539397239685, - 0.35546430945396423, - 0.3141056001186371, - 0.2761712074279785, - 0.24577194452285767, - 0.2262020707130432 - ], - "y": [ - -0.05385764688253403, - -0.08345980942249298, - -0.11293746531009674, - -0.13909626007080078, - -0.1591014415025711, - -0.17078518867492676, - -0.1728813499212265, - -0.1651628017425537, - -0.14846596121788025, - -0.12460017204284668, - -0.09615166485309601, - -0.0662032961845398, - -0.0380004346370697, - -0.014599261805415154, - 0.0014642772730439901, - 0.008449504151940346, - 0.005599444732069969, - -0.006777066737413406, - -0.027338849380612373, - -0.05385766178369522, - -0.0754006952047348, - -0.11684372276067734, - -0.15811243653297424, - -0.19473472237586975, - -0.2227419912815094, - -0.23909924924373627, - -0.24203386902809143, - -0.23122790455818176, - -0.207852303981781, - -0.17444021999835968, - -0.1346123218536377, - -0.09268461167812347, - -0.05320059508085251, - -0.020438963547348976, - 0.002049993025138974, - 0.011829303577542305, - 0.007839223369956017, - -0.00948788970708847, - -0.0382743775844574, - -0.075400710105896 - ], - "z": [ - -1.660442590713501, - -1.6596717834472656, - -1.6574428081512451, - -1.6539971828460693, - -1.6497085094451904, - -1.6450412273406982, - -1.6405012607574463, - -1.6365805864334106, - -1.6337041854858398, - -1.6321834325790405, - -1.6321834325790405, - -1.6337041854858398, - -1.6365805864334106, - -1.6405012607574463, - -1.6450412273406982, - -1.6497085094451904, - -1.6539971828460693, - -1.6574428081512451, - -1.6596717834472656, - -1.660442590713501, - -2.3246195316314697, - -2.323540210723877, - -2.3204197883605957, - -2.315595865249634, - -2.309591770172119, - -2.3030574321746826, - -2.296701669692993, - -2.291212797164917, - -2.2871856689453125, - -2.2850568294525146, - -2.2850568294525146, - -2.2871856689453125, - -2.291212797164917, - -2.296701669692993, - -2.3030574321746826, - -2.309591770172119, - -2.315595865249634, - -2.3204197883605957, - -2.323540210723877, - -2.3246195316314697 - ] - }, - { - "alphahull": 0, - "color": "#19D3F3", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.2262020707130432, - 0.219582200050354, - 0.22662970423698425, - 0.24658092856407166, - 0.2772738039493561, - 0.31538233160972595, - 0.35677677392959595, - 0.39697152376174927, - 0.43161073327064514, - 0.45694079995155334, - 0.4702167809009552, - 0.4699999690055847, - 0.45631396770477295, - 0.430641770362854, - 0.39576539397239685, - 0.35546430945396423, - 0.3141056001186371, - 0.2761712074279785, - 0.24577194452285767, - 0.2262020707130432, - 0.29083123803138733, - 0.28231996297836304, - 0.2913810610771179, - 0.3170326352119446, - 0.3564949035644531, - 0.40549156069755554, - 0.45871302485466003, - 0.5103919506072998, - 0.5549281239509583, - 0.5874953269958496, - 0.6045644283294678, - 0.604285717010498, - 0.5866893529891968, - 0.553682267665863, - 0.5088412761688232, - 0.45702552795410156, - 0.4038500189781189, - 0.35507726669311523, - 0.315992534160614, - 0.29083123803138733 - ], - "y": [ - -0.0754006952047348, - -0.11684372276067734, - -0.15811243653297424, - -0.19473472237586975, - -0.2227419912815094, - -0.23909924924373627, - -0.24203386902809143, - -0.23122790455818176, - -0.207852303981781, - -0.17444021999835968, - -0.1346123218536377, - -0.09268461167812347, - -0.05320059508085251, - -0.020438963547348976, - 0.002049993025138974, - 0.011829303577542305, - 0.007839223369956017, - -0.00948788970708847, - -0.0382743775844574, - -0.075400710105896, - -0.09694375097751617, - -0.1502276360988617, - -0.20328742265701294, - -0.2503732442855835, - -0.28638261556625366, - -0.30741333961486816, - -0.31118643283843994, - -0.2972930073738098, - -0.26723867654800415, - -0.22428028285503387, - -0.17307297885417938, - -0.11916591972112656, - -0.06840076297521591, - -0.026278652250766754, - 0.0026357085444033146, - 0.015209128148853779, - 0.010079005733132362, - -0.012198716402053833, - -0.049209918826818466, - -0.09694378077983856 - ], - "z": [ - -2.3246195316314697, - -2.323540210723877, - -2.3204197883605957, - -2.315595865249634, - -2.309591770172119, - -2.3030574321746826, - -2.296701669692993, - -2.291212797164917, - -2.2871856689453125, - -2.2850568294525146, - -2.2850568294525146, - -2.2871856689453125, - -2.291212797164917, - -2.296701669692993, - -2.3030574321746826, - -2.309591770172119, - -2.315595865249634, - -2.3204197883605957, - -2.323540210723877, - -2.3246195316314697, - -2.9887967109680176, - -2.9874091148376465, - -2.9833970069885254, - -2.9771950244903564, - -2.969475269317627, - -2.961074113845825, - -2.952902317047119, - -2.945845127105713, - -2.9406673908233643, - -2.9379303455352783, - -2.9379303455352783, - -2.9406673908233643, - -2.945845127105713, - -2.952902317047119, - -2.961074113845825, - -2.969475269317627, - -2.9771950244903564, - -2.9833970069885254, - -2.9874093532562256, - -2.9887967109680176 - ] - }, - { - "alphahull": 0, - "color": "#FF6692", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.10909973829984665, - -0.12363092601299286, - -0.14066576957702637, - -0.15835829079151154, - -0.17479121685028076, - -0.18818381428718567, - -0.19708476960659027, - -0.20052950084209442, - -0.19814476370811462, - -0.1901889443397522, - -0.17752420902252197, - -0.16152295470237732, - -0.1439191848039627, - -0.12662050127983093, - -0.1115015521645546, - -0.10020066052675247, - -0.09394245594739914, - -0.09340512752532959, - -0.09864690154790878, - -0.10909973829984665, - -0.1818329095840454, - -0.2060515582561493, - -0.23444296419620514, - -0.2639304995536804, - -0.29131871461868286, - -0.31363970041275024, - -0.32847464084625244, - -0.33421584963798523, - -0.33024129271507263, - -0.31698158383369446, - -0.2958737015724182, - -0.2692049443721771, - -0.23986531794071198, - -0.21103417873382568, - -0.18583594262599945, - -0.16700111329555511, - -0.15657076239585876, - -0.1556752324104309, - -0.1644115298986435, - -0.1818329244852066 - ], - "y": [ - -0.10909973829984665, - -0.09864689409732819, - -0.09340512752532959, - -0.09394244849681854, - -0.10020066052675247, - -0.111501544713974, - -0.12662051618099213, - -0.1439191699028015, - -0.16152295470237732, - -0.17752420902252197, - -0.1901889443397522, - -0.19814476370811462, - -0.20052950084209442, - -0.19708475470542908, - -0.18818381428718567, - -0.17479123175144196, - -0.15835829079151154, - -0.14066576957702637, - -0.12363090366125107, - -0.10909973829984665, - -0.1818329095840454, - -0.1644115149974823, - -0.15567521750926971, - -0.15657076239585876, - -0.16700111329555511, - -0.18583592772483826, - -0.21103420853614807, - -0.23986530303955078, - -0.2692049443721771, - -0.2958737015724182, - -0.31698158383369446, - -0.33024126291275024, - -0.33421584963798523, - -0.32847461104393005, - -0.31363970041275024, - -0.29131874442100525, - -0.2639304995536804, - -0.23444296419620514, - -0.2060515284538269, - -0.18183289468288422 - ], - "z": [ - -0.9895224571228027, - -0.9889107346534729, - -0.9871417880058289, - -0.9844073057174683, - -0.9810036420822144, - -0.9772996306419373, - -0.9736965894699097, - -0.9705851078033447, - -0.9683022499084473, - -0.9670954346656799, - -0.9670954346656799, - -0.9683022499084473, - -0.9705851078033447, - -0.9736965894699097, - -0.9772996306419373, - -0.9810036420822144, - -0.9844073057174683, - -0.9871417880058289, - -0.9889107346534729, - -0.9895224571228027, - -1.6492042541503906, - -1.6481846570968628, - -1.6452363729476929, - -1.640678882598877, - -1.6350061893463135, - -1.6288328170776367, - -1.6228277683258057, - -1.6176419258117676, - -1.6138372421264648, - -1.6118258237838745, - -1.6118258237838745, - -1.6138372421264648, - -1.6176419258117676, - -1.6228277683258057, - -1.6288328170776367, - -1.6350061893463135, - -1.640678882598877, - -1.6452363729476929, - -1.6481846570968628, - -1.6492042541503906 - ] - }, - { - "alphahull": 0, - "color": "#B6E880", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.1818329095840454, - -0.2060515582561493, - -0.23444296419620514, - -0.2639304995536804, - -0.29131871461868286, - -0.31363970041275024, - -0.32847464084625244, - -0.33421584963798523, - -0.33024129271507263, - -0.31698158383369446, - -0.2958737015724182, - -0.2692049443721771, - -0.23986531794071198, - -0.21103417873382568, - -0.18583594262599945, - -0.16700111329555511, - -0.15657076239585876, - -0.1556752324104309, - -0.1644115298986435, - -0.1818329244852066, - -0.2545660734176636, - -0.28847214579582214, - -0.3282201290130615, - -0.3695026636123657, - -0.40784621238708496, - -0.43909555673599243, - -0.45986443758010864, - -0.46790215373039246, - -0.46233776211738586, - -0.4437742233276367, - -0.4142231345176697, - -0.37688687443733215, - -0.33581143617630005, - -0.29544785618782043, - -0.2601702809333801, - -0.23380155861377716, - -0.219199076294899, - -0.21794530749320984, - -0.23017612099647522, - -0.2545660734176636 - ], - "y": [ - -0.1818329095840454, - -0.1644115149974823, - -0.15567521750926971, - -0.15657076239585876, - -0.16700111329555511, - -0.18583592772483826, - -0.21103420853614807, - -0.23986530303955078, - -0.2692049443721771, - -0.2958737015724182, - -0.31698158383369446, - -0.33024126291275024, - -0.33421584963798523, - -0.32847461104393005, - -0.31363970041275024, - -0.29131874442100525, - -0.2639304995536804, - -0.23444296419620514, - -0.2060515284538269, - -0.18183289468288422, - -0.2545660734176636, - -0.23017612099647522, - -0.21794529259204865, - -0.2191990613937378, - -0.23380152881145477, - -0.2601702809333801, - -0.2954478859901428, - -0.33581140637397766, - -0.37688687443733215, - -0.4142231345176697, - -0.4437742233276367, - -0.46233776211738586, - -0.46790218353271484, - -0.45986440777778625, - -0.43909555673599243, - -0.40784621238708496, - -0.3695026636123657, - -0.32822009921073914, - -0.28847208619117737, - -0.2545660138130188 - ], - "z": [ - -1.6492042541503906, - -1.6481846570968628, - -1.6452363729476929, - -1.640678882598877, - -1.6350061893463135, - -1.6288328170776367, - -1.6228277683258057, - -1.6176419258117676, - -1.6138372421264648, - -1.6118258237838745, - -1.6118258237838745, - -1.6138372421264648, - -1.6176419258117676, - -1.6228277683258057, - -1.6288328170776367, - -1.6350061893463135, - -1.640678882598877, - -1.6452363729476929, - -1.6481846570968628, - -1.6492042541503906, - -2.3088858127593994, - -2.3074584007263184, - -2.303330898284912, - -2.296950340270996, - -2.289008378982544, - -2.2803657054901123, - -2.271958827972412, - -2.2646985054016113, - -2.2593719959259033, - -2.2565560340881348, - -2.2565560340881348, - -2.2593719959259033, - -2.2646985054016113, - -2.271958827972412, - -2.2803657054901123, - -2.289008378982544, - -2.296950340270996, - -2.303330898284912, - -2.3074584007263184, - -2.3088858127593994 - ] - }, - { - "alphahull": 0, - "color": "#FF97FF", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.2545660734176636, - -0.28847214579582214, - -0.3282201290130615, - -0.3695026636123657, - -0.40784621238708496, - -0.43909555673599243, - -0.45986443758010864, - -0.46790215373039246, - -0.46233776211738586, - -0.4437742233276367, - -0.4142231345176697, - -0.37688687443733215, - -0.33581143617630005, - -0.29544785618782043, - -0.2601702809333801, - -0.23380155861377716, - -0.219199076294899, - -0.21794530749320984, - -0.23017612099647522, - -0.2545660734176636, - -0.32729920744895935, - -0.3708927631378174, - -0.4219972789287567, - -0.4750748574733734, - -0.5243737101554871, - -0.5645514726638794, - -0.5912542343139648, - -0.6015884876251221, - -0.5944342613220215, - -0.5705668330192566, - -0.5325726270675659, - -0.48456883430480957, - -0.43175753951072693, - -0.3798615038394928, - -0.3345046639442444, - -0.300601989030838, - -0.2818273901939392, - -0.28021541237831116, - -0.2959407567977905, - -0.32729923725128174 - ], - "y": [ - -0.2545660734176636, - -0.23017612099647522, - -0.21794529259204865, - -0.2191990613937378, - -0.23380152881145477, - -0.2601702809333801, - -0.2954478859901428, - -0.33581140637397766, - -0.37688687443733215, - -0.4142231345176697, - -0.4437742233276367, - -0.46233776211738586, - -0.46790218353271484, - -0.45986440777778625, - -0.43909555673599243, - -0.40784621238708496, - -0.3695026636123657, - -0.32822009921073914, - -0.28847208619117737, - -0.2545660138130188, - -0.32729920744895935, - -0.29594069719314575, - -0.28021538257598877, - -0.2818273603916168, - -0.300601989030838, - -0.334504634141922, - -0.3798615634441376, - -0.43175753951072693, - -0.48456883430480957, - -0.5325726270675659, - -0.5705668330192566, - -0.5944342613220215, - -0.6015884876251221, - -0.5912542343139648, - -0.5645514726638794, - -0.5243737101554871, - -0.4750748872756958, - -0.4219972789287567, - -0.3708927035331726, - -0.32729917764663696 - ], - "z": [ - -2.3088858127593994, - -2.3074584007263184, - -2.303330898284912, - -2.296950340270996, - -2.289008378982544, - -2.2803657054901123, - -2.271958827972412, - -2.2646985054016113, - -2.2593719959259033, - -2.2565560340881348, - -2.2565560340881348, - -2.2593719959259033, - -2.2646985054016113, - -2.271958827972412, - -2.2803657054901123, - -2.289008378982544, - -2.296950340270996, - -2.303330898284912, - -2.3074584007263184, - -2.3088858127593994, - -2.9685676097869873, - -2.9667322635650635, - -2.961425304412842, - -2.9532220363616943, - -2.9430110454559326, - -2.931898832321167, - -2.9210898876190186, - -2.911755323410034, - -2.904906749725342, - -2.9012863636016846, - -2.9012863636016846, - -2.904906749725342, - -2.911755323410034, - -2.9210898876190186, - -2.931898832321167, - -2.9430108070373535, - -2.9532220363616943, - -2.961425304412842, - -2.9667322635650635, - -2.9685676097869873 - ] - }, - { - "alphahull": 0, - "color": "#FECB52", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.032231710851192474, - -0.05007923021912575, - -0.06785167753696442, - -0.08362314105033875, - -0.09568452835083008, - -0.10272880643606186, - -0.10399261116981506, - -0.09933900088071823, - -0.08927225321531296, - -0.07488326728343964, - -0.05773130804300308, - -0.03967506065964699, - -0.02267119660973549, - -0.00856233574450016, - 0.0011225829366594553, - 0.00533406063914299, - 0.0036157211288809776, - -0.00384623184800148, - -0.016243191435933113, - -0.03223171830177307, - -0.053719520568847656, - -0.08346538990736008, - -0.11308614909648895, - -0.13937190175056458, - -0.1594742387533188, - -0.17121468484401703, - -0.17332105338573456, - -0.16556501388549805, - -0.14878709614276886, - -0.12480546534061432, - -0.09621885418891907, - -0.06612510234117508, - -0.037785328924655914, - -0.014270549640059471, - 0.0018709676805883646, - 0.00889010913670063, - 0.006026206538081169, - -0.006410388275980949, - -0.027071984484791756, - -0.05371953547000885 - ], - "y": [ - -0.09669512510299683, - -0.09384425729513168, - -0.09687928855419159, - -0.10547132045030594, - -0.11868926882743835, - -0.13510076701641083, - -0.15292736887931824, - -0.17023731768131256, - -0.1851547658443451, - -0.19606320559978485, - -0.2017805129289627, - -0.20168715715408325, - -0.1957932561635971, - -0.18473747372627258, - -0.16971789300441742, - -0.1523621529340744, - -0.13455092906951904, - -0.1182144284248352, - -0.10512292385101318, - -0.09669512510299683, - -0.16115853190422058, - -0.15640708804130554, - -0.16146548092365265, - -0.17578554153442383, - -0.1978154480457306, - -0.22516795992851257, - -0.2548789978027344, - -0.28372886776924133, - -0.3085912764072418, - -0.326772004365921, - -0.33630087971687317, - -0.336145281791687, - -0.32632210850715637, - -0.30789580941200256, - -0.28286316990852356, - -0.2539369463920593, - -0.22425156831741333, - -0.19702404737472534, - -0.17520490288734436, - -0.16115853190422058 - ], - "z": [ - -0.9963070154190063, - -0.9958422780036926, - -0.9944983720779419, - -0.9924209713935852, - -0.989835262298584, - -0.987021267414093, - -0.9842841029167175, - -0.9819203019142151, - -0.9801860451698303, - -0.9792692065238953, - -0.9792692065238953, - -0.9801860451698303, - -0.9819203019142151, - -0.9842841029167175, - -0.987021267414093, - -0.9898352026939392, - -0.9924209713935852, - -0.9944983720779419, - -0.9958422780036926, - -0.9963070154190063, - -1.6605117321014404, - -1.6597371101379395, - -1.6574972867965698, - -1.654034972190857, - -1.6497254371643066, - -1.6450355052947998, - -1.640473484992981, - -1.6365338563919067, - -1.633643388748169, - -1.632115364074707, - -1.632115364074707, - -1.633643388748169, - -1.6365338563919067, - -1.640473484992981, - -1.6450355052947998, - -1.6497254371643066, - -1.654034972190857, - -1.6574972867965698, - -1.6597371101379395, - -1.6605117321014404 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.053719520568847656, - -0.08346538990736008, - -0.11308614909648895, - -0.13937190175056458, - -0.1594742387533188, - -0.17121468484401703, - -0.17332105338573456, - -0.16556501388549805, - -0.14878709614276886, - -0.12480546534061432, - -0.09621885418891907, - -0.06612510234117508, - -0.037785328924655914, - -0.014270549640059471, - 0.0018709676805883646, - 0.00889010913670063, - 0.006026206538081169, - -0.006410388275980949, - -0.027071984484791756, - -0.05371953547000885, - -0.07520730793476105, - -0.11685152351856232, - -0.1583205759525299, - -0.1951206624507904, - -0.2232639193534851, - -0.2397005259990692, - -0.24264943599700928, - -0.23179098963737488, - -0.20830193161964417, - -0.17472761869430542, - -0.13470637798309326, - -0.09257513284683228, - -0.052899450063705444, - -0.01997877098619938, - 0.002619356382638216, - 0.012446155771613121, - 0.008436691015958786, - -0.008974533528089523, - -0.03790077194571495, - -0.07520733773708344 - ], - "y": [ - -0.16115853190422058, - -0.15640708804130554, - -0.16146548092365265, - -0.17578554153442383, - -0.1978154480457306, - -0.22516795992851257, - -0.2548789978027344, - -0.28372886776924133, - -0.3085912764072418, - -0.326772004365921, - -0.33630087971687317, - -0.336145281791687, - -0.32632210850715637, - -0.30789580941200256, - -0.28286316990852356, - -0.2539369463920593, - -0.22425156831741333, - -0.19702404737472534, - -0.17520490288734436, - -0.16115853190422058, - -0.22562193870544434, - -0.21896992623806, - -0.22605165839195251, - -0.24609972536563873, - -0.2769416272640228, - -0.31523510813713074, - -0.35683053731918335, - -0.3972203731536865, - -0.43202778697013855, - -0.457480788230896, - -0.47082120180130005, - -0.4706033766269684, - -0.45685091614723206, - -0.43105408549308777, - -0.3960084319114685, - -0.3555116653442383, - -0.31395217776298523, - -0.2758336663246155, - -0.24528682231903076, - -0.22562193870544434 - ], - "z": [ - -1.6605117321014404, - -1.6597371101379395, - -1.6574972867965698, - -1.654034972190857, - -1.6497254371643066, - -1.6450355052947998, - -1.640473484992981, - -1.6365338563919067, - -1.633643388748169, - -1.632115364074707, - -1.632115364074707, - -1.633643388748169, - -1.6365338563919067, - -1.640473484992981, - -1.6450355052947998, - -1.6497254371643066, - -1.654034972190857, - -1.6574972867965698, - -1.6597371101379395, - -1.6605117321014404, - -2.324716091156006, - -2.323631763458252, - -2.320496082305908, - -2.3156487941741943, - -2.30961537361145, - -2.3030495643615723, - -2.2966628074645996, - -2.291147232055664, - -2.2871005535125732, - -2.284961223602295, - -2.284961223602295, - -2.2871005535125732, - -2.291147232055664, - -2.2966628074645996, - -2.3030495643615723, - -2.30961537361145, - -2.3156487941741943, - -2.320496082305908, - -2.323631763458252, - -2.324716091156006 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - -0.07520730793476105, - -0.11685152351856232, - -0.1583205759525299, - -0.1951206624507904, - -0.2232639193534851, - -0.2397005259990692, - -0.24264943599700928, - -0.23179098963737488, - -0.20830193161964417, - -0.17472761869430542, - -0.13470637798309326, - -0.09257513284683228, - -0.052899450063705444, - -0.01997877098619938, - 0.002619356382638216, - 0.012446155771613121, - 0.008436691015958786, - -0.008974533528089523, - -0.03790077194571495, - -0.07520733773708344, - -0.09669512510299683, - -0.15023767948150635, - -0.20355504751205444, - -0.25086942315101624, - -0.28705358505249023, - -0.30818644165992737, - -0.3119778633117676, - -0.2980169951915741, - -0.26781678199768066, - -0.2246498018503189, - -0.17319393157958984, - -0.11902517080307007, - -0.06801357865333557, - -0.025686992332339287, - 0.003367745317518711, - 0.01600218191742897, - 0.010847173631191254, - -0.011538699269294739, - -0.04872956871986389, - -0.09669515490531921 - ], - "y": [ - -0.22562193870544434, - -0.21896992623806, - -0.22605165839195251, - -0.24609972536563873, - -0.2769416272640228, - -0.31523510813713074, - -0.35683053731918335, - -0.3972203731536865, - -0.43202778697013855, - -0.457480788230896, - -0.47082120180130005, - -0.4706033766269684, - -0.45685091614723206, - -0.43105408549308777, - -0.3960084319114685, - -0.3555116653442383, - -0.31395217776298523, - -0.2758336663246155, - -0.24528682231903076, - -0.22562193870544434, - -0.2900853753089905, - -0.28153276443481445, - -0.2906378507614136, - -0.316413938999176, - -0.3560677766799927, - -0.4053023159503937, - -0.4587821364402771, - -0.5107119679450989, - -0.5554642677307129, - -0.5881896018981934, - -0.6053415536880493, - -0.6050615310668945, - -0.5873797535896301, - -0.5542123913764954, - -0.5091537237167358, - -0.457086443901062, - -0.4036528170108795, - -0.3546432852745056, - -0.31536877155303955, - -0.2900853753089905 - ], - "z": [ - -2.324716091156006, - -2.323631763458252, - -2.320496082305908, - -2.3156487941741943, - -2.30961537361145, - -2.3030495643615723, - -2.2966628074645996, - -2.291147232055664, - -2.2871005535125732, - -2.284961223602295, - -2.284961223602295, - -2.2871005535125732, - -2.291147232055664, - -2.2966628074645996, - -2.3030495643615723, - -2.30961537361145, - -2.3156487941741943, - -2.320496082305908, - -2.323631763458252, - -2.324716091156006, - -2.9889211654663086, - -2.9875268936157227, - -2.9834952354431152, - -2.9772629737854004, - -2.969505786895752, - -2.961063861846924, - -2.952852487564087, - -2.94576096534729, - -2.9405581951141357, - -2.937807559967041, - -2.937807559967041, - -2.9405581951141357, - -2.94576096534729, - -2.952852487564087, - -2.961063861846924, - -2.969505786895752, - -2.9772629737854004, - -2.9834952354431152, - -2.9875268936157227, - -2.9889211654663086 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.03231458365917206, - 0.016403289511799812, - 0.004066234454512596, - -0.0033596688881516457, - -0.005069707054644823, - -0.0008785703685134649, - 0.008759560994803905, - 0.022800251841545105, - 0.03972197324037552, - 0.05769099295139313, - 0.07476009428501129, - 0.08907955884933472, - 0.09909766912460327, - 0.10372880846261978, - 0.10247110575437546, - 0.09546086937189102, - 0.08345775306224823, - 0.06776246428489685, - 0.05007585883140564, - 0.03231457620859146, - 0.05385764688253403, - 0.027338819578289986, - 0.0067770592868328094, - -0.005599446594715118, - -0.008449504151940346, - -0.0014642791356891394, - 0.014599272981286049, - 0.03800042346119881, - 0.0662032887339592, - 0.09615166485309601, - 0.12460015714168549, - 0.14846594631671906, - 0.1651628017425537, - 0.1728813648223877, - 0.17078518867492676, - 0.1591014564037323, - 0.13909626007080078, - 0.11293745040893555, - 0.0834597796201706, - 0.05385763198137283 - ], - "y": [ - -0.09694375097751617, - -0.10533085465431213, - -0.11835909634828568, - -0.1346166729927063, - -0.152341827750206, - -0.16961373388767242, - -0.18456076085567474, - -0.19556312263011932, - -0.20142856240272522, - -0.20152148604393005, - -0.1958317756652832, - -0.18497604131698608, - -0.1701306700706482, - -0.15290433168411255, - -0.13516387343406677, - -0.11883164197206497, - -0.10567755252122879, - -0.0971270203590393, - -0.09410665929317474, - -0.09694375097751617, - -0.1615729182958603, - -0.1755514144897461, - -0.19726517796516418, - -0.22436115145683289, - -0.2539030611515045, - -0.2826896011829376, - -0.30760130286216736, - -0.3259385824203491, - -0.33571428060531616, - -0.335869163274765, - -0.32638630270957947, - -0.3082934021949768, - -0.28355109691619873, - -0.25484058260917664, - -0.22527310252189636, - -0.1980527639389038, - -0.17612925171852112, - -0.16187836229801178, - -0.15684443712234497, - -0.1615729182958603 - ], - "z": [ - -0.9962655305862427, - -0.9958030581474304, - -0.9944656491279602, - -0.9923983216285706, - -0.9898250699043274, - -0.98702472448349, - -0.9843007326126099, - -0.9819483757019043, - -0.9802224636077881, - -0.9793100953102112, - -0.9793100953102112, - -0.9802224636077881, - -0.9819483757019043, - -0.9843007326126099, - -0.98702472448349, - -0.9898250699043274, - -0.9923983216285706, - -0.9944656491279602, - -0.9958030581474304, - -0.9962655305862427, - -1.660442590713501, - -1.6596717834472656, - -1.6574428081512451, - -1.6539971828460693, - -1.6497085094451904, - -1.6450412273406982, - -1.6405012607574463, - -1.6365805864334106, - -1.6337041854858398, - -1.6321834325790405, - -1.6321834325790405, - -1.6337041854858398, - -1.6365805864334106, - -1.6405012607574463, - -1.6450412273406982, - -1.6497085094451904, - -1.6539971828460693, - -1.6574428081512451, - -1.6596717834472656, - -1.660442590713501 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.05385764688253403, - 0.027338819578289986, - 0.0067770592868328094, - -0.005599446594715118, - -0.008449504151940346, - -0.0014642791356891394, - 0.014599272981286049, - 0.03800042346119881, - 0.0662032887339592, - 0.09615166485309601, - 0.12460015714168549, - 0.14846594631671906, - 0.1651628017425537, - 0.1728813648223877, - 0.17078518867492676, - 0.1591014564037323, - 0.13909626007080078, - 0.11293745040893555, - 0.0834597796201706, - 0.05385763198137283, - 0.0754006952047348, - 0.03827434033155441, - 0.009487882256507874, - -0.007839225232601166, - -0.011829309165477753, - -0.0020499955862760544, - 0.02043897658586502, - 0.05320058763027191, - 0.09268459677696228, - 0.1346123069524765, - 0.1744402050971985, - 0.2078522890806198, - 0.23122790455818176, - 0.24203388392925262, - 0.23909924924373627, - 0.2227420210838318, - 0.19473473727703094, - 0.15811242163181305, - 0.11684367060661316, - 0.07540066540241241 - ], - "y": [ - -0.1615729182958603, - -0.1755514144897461, - -0.19726517796516418, - -0.22436115145683289, - -0.2539030611515045, - -0.2826896011829376, - -0.30760130286216736, - -0.3259385824203491, - -0.33571428060531616, - -0.335869163274765, - -0.32638630270957947, - -0.3082934021949768, - -0.28355109691619873, - -0.25484058260917664, - -0.22527310252189636, - -0.1980527639389038, - -0.17612925171852112, - -0.16187836229801178, - -0.15684443712234497, - -0.1615729182958603, - -0.2262020707130432, - -0.24577200412750244, - -0.2761712372303009, - -0.3141056001186371, - -0.35546424984931946, - -0.39576539397239685, - -0.430641770362854, - -0.45631396770477295, - -0.4699999988079071, - -0.4702167809009552, - -0.45694079995155334, - -0.43161076307296753, - -0.39697152376174927, - -0.35677677392959595, - -0.31538233160972595, - -0.27727386355400085, - -0.24658092856407166, - -0.22662968933582306, - -0.219582200050354, - -0.2262020707130432 - ], - "z": [ - -1.660442590713501, - -1.6596717834472656, - -1.6574428081512451, - -1.6539971828460693, - -1.6497085094451904, - -1.6450412273406982, - -1.6405012607574463, - -1.6365805864334106, - -1.6337041854858398, - -1.6321834325790405, - -1.6321834325790405, - -1.6337041854858398, - -1.6365805864334106, - -1.6405012607574463, - -1.6450412273406982, - -1.6497085094451904, - -1.6539971828460693, - -1.6574428081512451, - -1.6596717834472656, - -1.660442590713501, - -2.3246195316314697, - -2.323540210723877, - -2.3204197883605957, - -2.315595865249634, - -2.309591770172119, - -2.3030574321746826, - -2.296701669692993, - -2.291212797164917, - -2.2871856689453125, - -2.2850568294525146, - -2.2850568294525146, - -2.2871856689453125, - -2.291212797164917, - -2.296701669692993, - -2.3030574321746826, - -2.309591770172119, - -2.315595865249634, - -2.3204197883605957, - -2.323540210723877, - -2.3246195316314697 - ] - }, - { - "alphahull": 0, - "color": "#FFA15A", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.0754006952047348, - 0.03827434033155441, - 0.009487882256507874, - -0.007839225232601166, - -0.011829309165477753, - -0.0020499955862760544, - 0.02043897658586502, - 0.05320058763027191, - 0.09268459677696228, - 0.1346123069524765, - 0.1744402050971985, - 0.2078522890806198, - 0.23122790455818176, - 0.24203388392925262, - 0.23909924924373627, - 0.2227420210838318, - 0.19473473727703094, - 0.15811242163181305, - 0.11684367060661316, - 0.07540066540241241, - 0.09694375097751617, - 0.04920986667275429, - 0.01219870150089264, - -0.010079007595777512, - -0.015209128148853779, - -0.0026357113383710384, - 0.026278676465153694, - 0.06840074807405472, - 0.11916590481996536, - 0.17307297885417938, - 0.22428026795387268, - 0.26723867654800415, - 0.2972930371761322, - 0.31118646264076233, - 0.30741333961486816, - 0.28638261556625366, - 0.2503732442855835, - 0.20328739285469055, - 0.15022757649421692, - 0.09694372117519379 - ], - "y": [ - -0.2262020707130432, - -0.24577200412750244, - -0.2761712372303009, - -0.3141056001186371, - -0.35546424984931946, - -0.39576539397239685, - -0.430641770362854, - -0.45631396770477295, - -0.4699999988079071, - -0.4702167809009552, - -0.45694079995155334, - -0.43161076307296753, - -0.39697152376174927, - -0.35677677392959595, - -0.31538233160972595, - -0.27727386355400085, - -0.24658092856407166, - -0.22662968933582306, - -0.219582200050354, - -0.2262020707130432, - -0.29083123803138733, - -0.315992534160614, - -0.35507732629776, - -0.4038500189781189, - -0.4570254683494568, - -0.5088412761688232, - -0.5536823272705078, - -0.5866893529891968, - -0.604285717010498, - -0.6045644283294678, - -0.5874953269958496, - -0.5549281239509583, - -0.5103919506072998, - -0.45871299505233765, - -0.40549156069755554, - -0.3564949631690979, - -0.3170326352119446, - -0.2913810610771179, - -0.28231996297836304, - -0.29083123803138733 - ], - "z": [ - -2.3246195316314697, - -2.323540210723877, - -2.3204197883605957, - -2.315595865249634, - -2.309591770172119, - -2.3030574321746826, - -2.296701669692993, - -2.291212797164917, - -2.2871856689453125, - -2.2850568294525146, - -2.2850568294525146, - -2.2871856689453125, - -2.291212797164917, - -2.296701669692993, - -2.3030574321746826, - -2.309591770172119, - -2.315595865249634, - -2.3204197883605957, - -2.323540210723877, - -2.3246195316314697, - -2.9887967109680176, - -2.9874091148376465, - -2.9833970069885254, - -2.9771950244903564, - -2.969475269317627, - -2.961074113845825, - -2.952902317047119, - -2.945845127105713, - -2.9406673908233643, - -2.9379303455352783, - -2.9379303455352783, - -2.9406673908233643, - -2.945845127105713, - -2.952902317047119, - -2.961074113845825, - -2.969475269317627, - -2.9771950244903564, - -2.9833970069885254, - -2.9874093532562256, - -2.9887967109680176 - ] - }, - { - "alphahull": 0, - "color": "#19D3F3", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.10963243246078491, - 0.09932754188776016, - 0.09415996819734573, - 0.09468968212604523, - 0.10085929930210114, - 0.1120002418756485, - 0.12690521776676178, - 0.14395903050899506, - 0.16131363809108734, - 0.1770884096622467, - 0.18957388401031494, - 0.19741709530353546, - 0.1997680813074112, - 0.19637209177017212, - 0.1875971406698227, - 0.1743941307067871, - 0.15819378197193146, - 0.1407516598701477, - 0.12395791709423065, - 0.10963243246078491, - 0.18272072076797485, - 0.16554591059684753, - 0.15693329274654388, - 0.15781614184379578, - 0.16809885203838348, - 0.1866670846939087, - 0.21150870621204376, - 0.23993173241615295, - 0.26885607838630676, - 0.2951473593711853, - 0.3159565031528473, - 0.32902848720550537, - 0.3329468369483948, - 0.32728686928749084, - 0.31266191601753235, - 0.2906568944454193, - 0.2636563181877136, - 0.23458611965179443, - 0.2065965235233307, - 0.18272072076797485 - ], - "y": [ - -0.10963243246078491, - -0.12395793944597244, - -0.1407516598701477, - -0.15819378197193146, - -0.17439411580562592, - -0.1875971406698227, - -0.1963721066713333, - -0.1997680813074112, - -0.19741709530353546, - -0.18957388401031494, - -0.1770884096622467, - -0.16131363809108734, - -0.14395903050899506, - -0.12690520286560059, - -0.1120002493262291, - -0.10085931420326233, - -0.09468968212604523, - -0.09415996074676514, - -0.09932754933834076, - -0.10963243246078491, - -0.18272072076797485, - -0.20659656822681427, - -0.23458613455295563, - -0.2636563181877136, - -0.2906568646430969, - -0.31266191601753235, - -0.32728683948516846, - -0.3329468369483948, - -0.32902848720550537, - -0.3159565031528473, - -0.2951473593711853, - -0.26885607838630676, - -0.23993173241615295, - -0.21150867640972137, - -0.1866670846939087, - -0.16809886693954468, - -0.15781615674495697, - -0.1569332778453827, - -0.16554592549800873, - -0.18272075057029724 - ], - "z": [ - -0.9893626570701599, - -0.9887595772743225, - -0.9870156645774841, - -0.9843198657035828, - -0.9809644222259521, - -0.9773128032684326, - -0.9737607836723328, - -0.9706933498382568, - -0.9684427976608276, - -0.9672530889511108, - -0.9672530889511108, - -0.9684427976608276, - -0.9706933498382568, - -0.9737607836723328, - -0.9773128032684326, - -0.9809643626213074, - -0.9843198657035828, - -0.9870156645774841, - -0.9887595772743225, - -0.9893626570701599, - -1.6489379405975342, - -1.647932767868042, - -1.6450262069702148, - -1.640533208847046, - -1.63494074344635, - -1.628854751586914, - -1.6229348182678223, - -1.617822289466858, - -1.6140713691711426, - -1.6120885610580444, - -1.6120885610580444, - -1.6140713691711426, - -1.617822289466858, - -1.6229348182678223, - -1.628854751586914, - -1.63494074344635, - -1.640533208847046, - -1.6450262069702148, - -1.647932767868042, - -1.6489379405975342 - ] - }, - { - "alphahull": 0, - "color": "#FF6692", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.18272072076797485, - 0.16554591059684753, - 0.15693329274654388, - 0.15781614184379578, - 0.16809885203838348, - 0.1866670846939087, - 0.21150870621204376, - 0.23993173241615295, - 0.26885607838630676, - 0.2951473593711853, - 0.3159565031528473, - 0.32902848720550537, - 0.3329468369483948, - 0.32728686928749084, - 0.31266191601753235, - 0.2906568944454193, - 0.2636563181877136, - 0.23458611965179443, - 0.2065965235233307, - 0.18272072076797485, - 0.2558090090751648, - 0.23176425695419312, - 0.21970658004283905, - 0.22094260156154633, - 0.23533838987350464, - 0.2613339126110077, - 0.29611214995384216, - 0.33590441942214966, - 0.376398503780365, - 0.4132062792778015, - 0.44233906269073486, - 0.4606398940086365, - 0.4661255478858948, - 0.4582015573978424, - 0.4377266466617584, - 0.4069196283817291, - 0.3691188097000122, - 0.3284205496311188, - 0.2892351448535919, - 0.2558089792728424 - ], - "y": [ - -0.18272072076797485, - -0.20659656822681427, - -0.23458613455295563, - -0.2636563181877136, - -0.2906568646430969, - -0.31266191601753235, - -0.32728683948516846, - -0.3329468369483948, - -0.32902848720550537, - -0.3159565031528473, - -0.2951473593711853, - -0.26885607838630676, - -0.23993173241615295, - -0.21150867640972137, - -0.1866670846939087, - -0.16809886693954468, - -0.15781615674495697, - -0.1569332778453827, - -0.16554592549800873, - -0.18272075057029724, - -0.2558090090751648, - -0.2892351746559143, - -0.32842057943344116, - -0.3691188097000122, - -0.40691959857940674, - -0.4377266466617584, - -0.4582015573978424, - -0.4661255478858948, - -0.4606398940086365, - -0.44233906269073486, - -0.4132062792778015, - -0.376398503780365, - -0.33590441942214966, - -0.29611214995384216, - -0.2613339126110077, - -0.23533840477466583, - -0.22094260156154633, - -0.21970656514167786, - -0.2317642867565155, - -0.2558090388774872 - ], - "z": [ - -1.6489379405975342, - -1.647932767868042, - -1.6450262069702148, - -1.640533208847046, - -1.63494074344635, - -1.628854751586914, - -1.6229348182678223, - -1.617822289466858, - -1.6140713691711426, - -1.6120885610580444, - -1.6120885610580444, - -1.6140713691711426, - -1.617822289466858, - -1.6229348182678223, - -1.628854751586914, - -1.63494074344635, - -1.640533208847046, - -1.6450262069702148, - -1.647932767868042, - -1.6489379405975342, - -2.3085129261016846, - -2.307105779647827, - -2.3030364513397217, - -2.2967464923858643, - -2.288916826248169, - -2.2803964614868164, - -2.272108554840088, - -2.264951229095459, - -2.259699821472168, - -2.2569239139556885, - -2.2569239139556885, - -2.259699821472168, - -2.264951229095459, - -2.272108554840088, - -2.2803964614868164, - -2.288916826248169, - -2.2967464923858643, - -2.3030364513397217, - -2.307105779647827, - -2.3085129261016846 - ] - }, - { - "alphahull": 0, - "color": "#B6E880", - "flatshading": true, - "name": "Frustums", - "opacity": 1, - "type": "mesh3d", - "x": [ - 0.2558090090751648, - 0.23176425695419312, - 0.21970658004283905, - 0.22094260156154633, - 0.23533838987350464, - 0.2613339126110077, - 0.29611214995384216, - 0.33590441942214966, - 0.376398503780365, - 0.4132062792778015, - 0.44233906269073486, - 0.4606398940086365, - 0.4661255478858948, - 0.4582015573978424, - 0.4377266466617584, - 0.4069196283817291, - 0.3691188097000122, - 0.3284205496311188, - 0.2892351448535919, - 0.2558089792728424, - 0.32889729738235474, - 0.2979826033115387, - 0.2824799120426178, - 0.2840690612792969, - 0.3025779128074646, - 0.3360007405281067, - 0.38071563839912415, - 0.431877076625824, - 0.48394089937210083, - 0.5312652587890625, - 0.5687216520309448, - 0.5922513008117676, - 0.5993042588233948, - 0.5891162753105164, - 0.5627914071083069, - 0.5231823921203613, - 0.4745813012123108, - 0.4222549796104431, - 0.37187373638153076, - 0.32889726758003235 - ], - "y": [ - -0.2558090090751648, - -0.2892351746559143, - -0.32842057943344116, - -0.3691188097000122, - -0.40691959857940674, - -0.4377266466617584, - -0.4582015573978424, - -0.4661255478858948, - -0.4606398940086365, - -0.44233906269073486, - -0.4132062792778015, - -0.376398503780365, - -0.33590441942214966, - -0.29611214995384216, - -0.2613339126110077, - -0.23533840477466583, - -0.22094260156154633, - -0.21970656514167786, - -0.2317642867565155, - -0.2558090388774872, - -0.32889729738235474, - -0.3718738257884979, - -0.4222550094127655, - -0.4745813012123108, - -0.5231823325157166, - -0.5627914071083069, - -0.5891162753105164, - -0.59930419921875, - -0.5922513008117676, - -0.5687216520309448, - -0.5312652587890625, - -0.4839409291744232, - -0.431877076625824, - -0.38071560859680176, - -0.3360007405281067, - -0.302577942609787, - -0.2840690612792969, - -0.2824798822402954, - -0.2979826331138611, - -0.3288973271846771 - ], - "z": [ - -2.3085129261016846, - -2.307105779647827, - -2.3030364513397217, - -2.2967464923858643, - -2.288916826248169, - -2.2803964614868164, - -2.272108554840088, - -2.264951229095459, - -2.259699821472168, - -2.2569239139556885, - -2.2569239139556885, - -2.259699821472168, - -2.264951229095459, - -2.272108554840088, - -2.2803964614868164, - -2.288916826248169, - -2.2967464923858643, - -2.3030364513397217, - -2.307105779647827, - -2.3085129261016846, - -2.968088150024414, - -2.9662787914276123, - -2.9610469341278076, - -2.9529597759246826, - -2.9428932666778564, - -2.931938409805298, - -2.9212825298309326, - -2.9120800495147705, - -2.9053285121917725, - -2.901759147644043, - -2.901759147644043, - -2.9053285121917725, - -2.9120800495147705, - -2.9212825298309326, - -2.931938409805298, - -2.9428932666778564, - -2.9529597759246826, - -2.9610469341278076, - -2.9662787914276123, - -2.968088150024414 - ] - } - ], - "layout": { - "hovermode": false, - "margin": { - "b": 10, - "l": 0, - "r": 0, - "t": 10 - }, - "paper_bgcolor": "rgba(0,0,0,0)", - "scene": { - "aspectmode": "data", - "camera": { - "up": { - "x": 0, - "y": 1, - "z": 0 - } - }, - "xaxis": { - "showspikes": false, - "visible": false - }, - "yaxis": { - "showspikes": false, - "visible": false - }, - "zaxis": { - "showspikes": false, - "visible": false - } - }, - "showlegend": false, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - } - } - }, - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# COLLAPSED\n", - "import torch\n", - "from nerfstudio.cameras.cameras import Cameras, CameraType\n", - "from nerfstudio.utils import plotly_utils as vis\n", - "import plotly.graph_objects as go\n", - "\n", - "cx = 2.0\n", - "cy = 2.0\n", - "fx = 10.0\n", - "fy = 10.0\n", - "\n", - "num_samples = 3\n", - "near_plane = 1\n", - "far_plane = 3\n", - "\n", - "c2w = torch.eye(4)[None, :3, :]\n", - "camera = Cameras(fx=fx, fy=fy, cx=cx, cy=cy, camera_to_worlds=c2w, camera_type=CameraType.PERSPECTIVE)\n", - "ray_bundle = camera.generate_rays(camera_indices=0)\n", - "\n", - "bins = torch.linspace(near_plane, far_plane, num_samples + 1)[..., None]\n", - "ray_samples = ray_bundle.get_ray_samples(bin_starts=bins[:-1, :], bin_ends=bins[1:, :])\n", - "\n", - "vis_rays = vis.get_ray_bundle_lines(ray_bundle, color=\"teal\", length=far_plane)\n", - "\n", - "fig = go.Figure(data=[vis_rays] + vis.get_frustums_mesh_list(ray_samples.frustums), layout=webdocs_layout)\n", - "fig.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Representing Frustums as Points\n", - "\n", - "These frustums can be converted into point samples using `frustum.get_positions()`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": { - "tags": [ - "hide-input" - ] - }, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "line": { - "color": "teal", - "width": 1 - }, - "mode": "lines", - "name": "Ray Bundle", - "type": "scatter3d", - "x": [ - 0, - -0.4402044117450714, - 0, - -0.1481594443321228, - 0, - 0.1481594443321228, - 0, - 0.4402044117450714, - 0, - -0.4444783329963684, - 0, - -0.14962640404701233, - 0, - 0.14962640404701233, - 0, - 0.4444783329963684, - 0, - -0.4444783329963684, - 0, - -0.14962640404701233, - 0, - 0.14962640404701233, - 0, - 0.4444783329963684, - 0, - -0.4402044117450714, - 0, - -0.1481594443321228, - 0, - 0.1481594443321228, - 0, - 0.4402044117450714 - ], - "y": [ - 0, - 0.4402044117450714, - 0, - 0.4444783329963684, - 0, - 0.4444783329963684, - 0, - 0.4402044117450714, - 0, - 0.1481594443321228, - 0, - 0.14962640404701233, - 0, - 0.14962640404701233, - 0, - 0.1481594443321228, - 0, - -0.1481594443321228, - 0, - -0.14962640404701233, - 0, - -0.14962640404701233, - 0, - -0.1481594443321228, - 0, - -0.4402044117450714, - 0, - -0.4444783329963684, - 0, - -0.4444783329963684, - 0, - -0.4402044117450714 - ], - "z": [ - 0, - -2.9346959590911865, - 0, - -2.963188886642456, - 0, - -2.963188886642456, - 0, - -2.9346959590911865, - 0, - -2.963188886642456, - 0, - -2.992527961730957, - 0, - -2.992527961730957, - 0, - -2.963188886642456, - 0, - -2.963188886642456, - 0, - -2.992527961730957, - 0, - -2.992527961730957, - 0, - -2.963188886642456, - 0, - -2.9346959590911865, - 0, - -2.963188886642456, - 0, - -2.963188886642456, - 0, - -2.9346959590911865 - ] - }, - { - "marker": { - "color": "forestgreen", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Frustums -> Positions", - "type": "scatter3d", - "x": [ - -0.19564640522003174, - -0.2934696078300476, - -0.3912927806377411, - -0.06584864854812622, - -0.09877296537160873, - -0.13169728219509125, - 0.06584864854812622, - 0.09877296537160873, - 0.13169728219509125, - 0.19564640522003174, - 0.2934696078300476, - 0.3912927806377411, - -0.19754593074321747, - -0.2963188886642456, - -0.39509183168411255, - -0.06650062650442123, - -0.09975093603134155, - -0.13300123810768127, - 0.06650062650442123, - 0.09975093603134155, - 0.13300123810768127, - 0.19754593074321747, - 0.2963188886642456, - 0.39509183168411255, - -0.19754593074321747, - -0.2963188886642456, - -0.39509183168411255, - -0.06650062650442123, - -0.09975093603134155, - -0.13300123810768127, - 0.06650062650442123, - 0.09975093603134155, - 0.13300123810768127, - 0.19754593074321747, - 0.2963188886642456, - 0.39509183168411255, - -0.19564640522003174, - -0.2934696078300476, - -0.3912927806377411, - -0.06584864854812622, - -0.09877296537160873, - -0.13169728219509125, - 0.06584864854812622, - 0.09877296537160873, - 0.13169728219509125, - 0.19564640522003174, - 0.2934696078300476, - 0.3912927806377411 - ], - "y": [ - 0.19564640522003174, - 0.2934696078300476, - 0.3912927806377411, - 0.19754593074321747, - 0.2963188886642456, - 0.39509183168411255, - 0.19754593074321747, - 0.2963188886642456, - 0.39509183168411255, - 0.19564640522003174, - 0.2934696078300476, - 0.3912927806377411, - 0.06584864854812622, - 0.09877296537160873, - 0.13169728219509125, - 0.06650062650442123, - 0.09975093603134155, - 0.13300123810768127, - 0.06650062650442123, - 0.09975093603134155, - 0.13300123810768127, - 0.06584864854812622, - 0.09877296537160873, - 0.13169728219509125, - -0.06584864854812622, - -0.09877296537160873, - -0.13169728219509125, - -0.06650062650442123, - -0.09975093603134155, - -0.13300123810768127, - -0.06650062650442123, - -0.09975093603134155, - -0.13300123810768127, - -0.06584864854812622, - -0.09877296537160873, - -0.13169728219509125, - -0.19564640522003174, - -0.2934696078300476, - -0.3912927806377411, - -0.19754593074321747, - -0.2963188886642456, - -0.39509183168411255, - -0.19754593074321747, - -0.2963188886642456, - -0.39509183168411255, - -0.19564640522003174, - -0.2934696078300476, - -0.3912927806377411 - ], - "z": [ - -1.304309368133545, - -1.9564639329910278, - -2.6086184978485107, - -1.3169728517532349, - -1.9754592180252075, - -2.6339454650878906, - -1.3169728517532349, - -1.9754592180252075, - -2.6339454650878906, - -1.304309368133545, - -1.9564639329910278, - -2.6086184978485107, - -1.3169728517532349, - -1.9754592180252075, - -2.6339454650878906, - -1.330012559890747, - -1.995018720626831, - -2.660024881362915, - -1.330012559890747, - -1.995018720626831, - -2.660024881362915, - -1.3169728517532349, - -1.9754592180252075, - -2.6339454650878906, - -1.3169728517532349, - -1.9754592180252075, - -2.6339454650878906, - -1.330012559890747, - -1.995018720626831, - -2.660024881362915, - -1.330012559890747, - -1.995018720626831, - -2.660024881362915, - -1.3169728517532349, - -1.9754592180252075, - -2.6339454650878906, - -1.304309368133545, - -1.9564639329910278, - -2.6086184978485107, - -1.3169728517532349, - -1.9754592180252075, - -2.6339454650878906, - -1.3169728517532349, - -1.9754592180252075, - -2.6339454650878906, - -1.304309368133545, - -1.9564639329910278, - -2.6086184978485107 - ] - } - ], - "layout": { - "hovermode": false, - "margin": { - "b": 10, - "l": 0, - "r": 0, - "t": 10 - }, - "paper_bgcolor": "rgba(0,0,0,0)", - "scene": { - "aspectmode": "data", - "camera": { - "up": { - "x": 0, - "y": 1, - "z": 0 - } - }, - "xaxis": { - "showspikes": false, - "visible": false - }, - "yaxis": { - "showspikes": false, - "visible": false - }, - "zaxis": { - "showspikes": false, - "visible": false - } - }, - "showlegend": false, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - } - } - }, - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# COLLAPSED\n", - "fig = go.Figure(data=[vis_rays, vis.get_frustum_points(ray_samples.frustums)], layout=webdocs_layout)\n", - "fig.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Representing Frustums as Gaussians\n", - "\n", - "We can also appoximate the frustums using Gaussians with `frustum.get_gaussian_blob()`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": { - "tags": [ - "hide-input" - ] - }, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "line": { - "color": "teal", - "width": 1 - }, - "mode": "lines", - "name": "Ray Bundle", - "type": "scatter3d", - "x": [ - 0, - -0.4402044117450714, - 0, - -0.1481594443321228, - 0, - 0.1481594443321228, - 0, - 0.4402044117450714, - 0, - -0.4444783329963684, - 0, - -0.14962640404701233, - 0, - 0.14962640404701233, - 0, - 0.4444783329963684, - 0, - -0.4444783329963684, - 0, - -0.14962640404701233, - 0, - 0.14962640404701233, - 0, - 0.4444783329963684, - 0, - -0.4402044117450714, - 0, - -0.1481594443321228, - 0, - 0.1481594443321228, - 0, - 0.4402044117450714 - ], - "y": [ - 0, - 0.4402044117450714, - 0, - 0.4444783329963684, - 0, - 0.4444783329963684, - 0, - 0.4402044117450714, - 0, - 0.1481594443321228, - 0, - 0.14962640404701233, - 0, - 0.14962640404701233, - 0, - 0.1481594443321228, - 0, - -0.1481594443321228, - 0, - -0.14962640404701233, - 0, - -0.14962640404701233, - 0, - -0.1481594443321228, - 0, - -0.4402044117450714, - 0, - -0.4444783329963684, - 0, - -0.4444783329963684, - 0, - -0.4402044117450714 - ], - "z": [ - 0, - -2.9346959590911865, - 0, - -2.963188886642456, - 0, - -2.963188886642456, - 0, - -2.9346959590911865, - 0, - -2.963188886642456, - 0, - -2.992527961730957, - 0, - -2.992527961730957, - 0, - -2.963188886642456, - 0, - -2.963188886642456, - 0, - -2.992527961730957, - 0, - -2.992527961730957, - 0, - -2.963188886642456, - 0, - -2.9346959590911865, - 0, - -2.963188886642456, - 0, - -2.963188886642456, - 0, - -2.9346959590911865 - ] - }, - { - "marker": { - "color": "black", - "size": 2 - }, - "mode": "markers", - "name": "Means", - "type": "scatter3d", - "x": [ - -0.20363198220729828, - -0.29885435104370117, - -0.3953476548194885, - -0.06853634864091873, - -0.10058531165122986, - -0.13306201994419098, - 0.06853634864091873, - 0.10058531165122986, - 0.13306201994419098, - 0.20363198220729828, - 0.29885435104370117, - 0.3953476548194885, - -0.2056090384721756, - -0.3017559051513672, - -0.39918604493141174, - -0.06921494007110596, - -0.10158122330904007, - -0.13437949120998383, - 0.06921494007110596, - 0.10158122330904007, - 0.13437949120998383, - 0.2056090384721756, - 0.3017559051513672, - 0.39918604493141174, - -0.2056090384721756, - -0.3017559051513672, - -0.39918604493141174, - -0.06921494007110596, - -0.10158122330904007, - -0.13437949120998383, - 0.06921494007110596, - 0.10158122330904007, - 0.13437949120998383, - 0.2056090384721756, - 0.3017559051513672, - 0.39918604493141174, - -0.20363198220729828, - -0.29885435104370117, - -0.3953476548194885, - -0.06853634864091873, - -0.10058531165122986, - -0.13306201994419098, - 0.06853634864091873, - 0.10058531165122986, - 0.13306201994419098, - 0.20363198220729828, - 0.29885435104370117, - 0.3953476548194885 - ], - "y": [ - 0.20363198220729828, - 0.29885435104370117, - 0.3953476548194885, - 0.2056090384721756, - 0.3017559051513672, - 0.39918604493141174, - 0.2056090384721756, - 0.3017559051513672, - 0.39918604493141174, - 0.20363198220729828, - 0.29885435104370117, - 0.3953476548194885, - 0.06853634864091873, - 0.10058531165122986, - 0.13306201994419098, - 0.06921494007110596, - 0.10158122330904007, - 0.13437949120998383, - 0.06921494007110596, - 0.10158122330904007, - 0.13437949120998383, - 0.06853634864091873, - 0.10058531165122986, - 0.13306201994419098, - -0.06853634864091873, - -0.10058531165122986, - -0.13306201994419098, - -0.06921494007110596, - -0.10158122330904007, - -0.13437949120998383, - -0.06921494007110596, - -0.10158122330904007, - -0.13437949120998383, - -0.06853634864091873, - -0.10058531165122986, - -0.13306201994419098, - -0.20363198220729828, - -0.29885435104370117, - -0.3953476548194885, - -0.2056090384721756, - -0.3017559051513672, - -0.39918604493141174, - -0.2056090384721756, - -0.3017559051513672, - -0.39918604493141174, - -0.20363198220729828, - -0.29885435104370117, - -0.3953476548194885 - ], - "z": [ - -1.3575464487075806, - -1.9923622608184814, - -2.635650873184204, - -1.3707268238067627, - -2.0117061138153076, - -2.661240339279175, - -1.3707268238067627, - -2.0117061138153076, - -2.661240339279175, - -1.3575464487075806, - -1.9923622608184814, - -2.635650873184204, - -1.3707268238067627, - -2.0117061138153076, - -2.661240339279175, - -1.3842988014221191, - -2.0316245555877686, - -2.6875898838043213, - -1.3842988014221191, - -2.0316245555877686, - -2.6875898838043213, - -1.3707268238067627, - -2.0117061138153076, - -2.661240339279175, - -1.3707268238067627, - -2.0117061138153076, - -2.661240339279175, - -1.3842988014221191, - -2.0316245555877686, - -2.6875898838043213, - -1.3842988014221191, - -2.0316245555877686, - -2.6875898838043213, - -1.3707268238067627, - -2.0117061138153076, - -2.661240339279175, - -1.3575464487075806, - -1.9923622608184814, - -2.635650873184204, - -1.3707268238067627, - -2.0117061138153076, - -2.661240339279175, - -1.3707268238067627, - -2.0117061138153076, - -2.661240339279175, - -1.3575464487075806, - -1.9923622608184814, - -2.635650873184204 - ] - }, - { - "alphahull": 0, - "color": "#19D3F3", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.2582835555076599, - -0.25644052028656006, - -0.25315696001052856, - -0.24852252006530762, - -0.24266357719898224, - -0.23573994636535645, - -0.22794049978256226, - -0.21947798132896423, - -0.21058322489261627, - -0.2014988511800766, - -0.1924726665019989, - -0.18375088274478912, - -0.17557139694690704, - -0.16815733909606934, - -0.1617109328508377, - -0.15640802681446075, - -0.15239325165748596, - -0.1497761458158493, - -0.1486280858516693, - -0.14898040890693665, - -0.2582835555076599, - -0.26056963205337524, - -0.2613025903701782, - -0.2604624330997467, - -0.2580721080303192, - -0.25419679284095764, - -0.24894219636917114, - -0.24245166778564453, - -0.23490223288536072, - -0.22649982571601868, - -0.21747362613677979, - -0.20806989073753357, - -0.19854508340358734, - -0.18915903568267822, - -0.1801677793264389, - -0.17181655764579773, - -0.16433317959308624, - -0.15792176127433777, - -0.15275722742080688, - -0.14898040890693665, - -0.2582835555076599, - -0.26437026262283325, - -0.26880016922950745, - -0.2714524567127228, - -0.2722547650337219, - -0.2711852490901947, - -0.2682730555534363, - -0.26359760761260986, - -0.2572864592075348, - -0.24951176345348358, - -0.24048557877540588, - -0.23045413196086884, - -0.21969103813171387, - -0.20848989486694336, - -0.19715625047683716, - -0.18599922955036163, - -0.17532318830490112, - -0.165419340133667, - -0.1565578430891037, - -0.14898039400577545, - -0.2582835555076599, - -0.26743051409721375, - -0.2748372256755829, - -0.28030163049697876, - -0.2836746871471405, - -0.2848643660545349, - -0.28383827209472656, - -0.2806243300437927, - -0.2753102779388428, - -0.2680409848690033, - -0.2590148150920868, - -0.24847793579101562, - -0.23671776056289673, - -0.22405511140823364, - -0.21083536744117737, - -0.19741912186145782, - -0.1841723471879959, - -0.17145639657974243, - -0.15961810946464539, - -0.14898039400577545, - -0.2582835555076599, - -0.26941877603530884, - -0.27875953912734985, - -0.2860509753227234, - -0.29109427332878113, - -0.2937517762184143, - -0.2939510941505432, - -0.2916867136955261, - -0.2870204448699951, - -0.28007954359054565, - -0.27105337381362915, - -0.26018810272216797, - -0.24778014421463013, - -0.2341679334640503, - -0.21972277760505676, - -0.20483870804309845, - -0.18992172181606293, - -0.1753787100315094, - -0.16160637140274048, - -0.14898039400577545, - -0.2582835555076599, - -0.2701196074485779, - -0.28014206886291504, - -0.2880775034427643, - -0.29370951652526855, - -0.2968844175338745, - -0.2975156605243683, - -0.2955859899520874, - -0.2911480665206909, - -0.28432291746139526, - -0.27529674768447876, - -0.26431572437286377, - -0.2516794204711914, - -0.23773249983787537, - -0.22285541892051697, - -0.20745396614074707, - -0.19194824993610382, - -0.17676123976707458, - -0.16230720281600952, - -0.14898039400577545, - -0.2582835555076599, - -0.26945704221725464, - -0.2788349986076355, - -0.2861616015434265, - -0.2912370562553406, - -0.2939228117465973, - -0.29414570331573486, - -0.2918996214866638, - -0.28724581003189087, - -0.2803112268447876, - -0.2712850272655487, - -0.2604134678840637, - -0.24799302220344543, - -0.23436252772808075, - -0.21989379823207855, - -0.2049814909696579, - -0.19003234803676605, - -0.17545418441295624, - -0.16164463758468628, - -0.14898039400577545, - -0.2582835555076599, - -0.26750290393829346, - -0.27498000860214233, - -0.28051090240478516, - -0.2839447557926178, - -0.28518787026405334, - -0.2842063903808594, - -0.28102701902389526, - -0.2757365107536316, - -0.26847919821739197, - -0.25945302844047546, - -0.24890418350696564, - -0.23712043464183807, - -0.22442321479320526, - -0.2111588716506958, - -0.1976892054080963, - -0.1843816339969635, - -0.17159916460514069, - -0.1596904844045639, - -0.14898039400577545, - -0.2582835555076599, - -0.2644689083099365, - -0.2689947783946991, - -0.2717376947402954, - -0.27262288331985474, - -0.27162620425224304, - -0.2687748074531555, - -0.26414647698402405, - -0.2578674554824829, - -0.2501090466976166, - -0.24108286201953888, - -0.23103511333465576, - -0.22023989260196686, - -0.2089916318655014, - -0.1975971907377243, - -0.18636734783649445, - -0.17560844123363495, - -0.16561394929885864, - -0.15665648877620697, - -0.14898039400577545, - -0.2582835555076599, - -0.2606838643550873, - -0.2615279257297516, - -0.26079273223876953, - -0.2584983706474304, - -0.254707396030426, - -0.24952319264411926, - -0.24308720231056213, - -0.23557499051094055, - -0.22719144821166992, - -0.21816526353359222, - -0.2087426483631134, - -0.19918063282966614, - -0.18974003195762634, - -0.1806783676147461, - -0.17224282026290894, - -0.16466349363327026, - -0.15814711153507233, - -0.15287144482135773, - -0.14898040890693665, - -0.2582835555076599, - -0.2565579414367676, - -0.2533886432647705, - -0.24886208772659302, - -0.2431017905473709, - -0.23626485466957092, - -0.22853778302669525, - -0.22013133764266968, - -0.21127484738826752, - -0.20220987498760223, - -0.19318369030952454, - -0.18444250524044037, - -0.17622476816177368, - -0.16875462234020233, - -0.16223584115505219, - -0.15684622526168823, - -0.15273281931877136, - -0.15000781416893005, - -0.14874552190303802, - -0.14898040890693665, - -0.2582835555076599, - -0.2525382339954376, - -0.24545888602733612, - -0.2372385859489441, - -0.22810159623622894, - -0.21829713881015778, - -0.20809265971183777, - -0.1977664977312088, - -0.18760032951831818, - -0.1778714656829834, - -0.1688452959060669, - -0.16076800227165222, - -0.1538599133491516, - -0.14830949902534485, - -0.14426812529563904, - -0.14184604585170746, - -0.14110931754112244, - -0.14207805693149567, - -0.14472582936286926, - -0.14898040890693665, - -0.2582835555076599, - -0.24906036257743835, - -0.23859800398349762, - -0.2271818369626999, - -0.21512332558631897, - -0.20275133848190308, - -0.19040337204933167, - -0.17841625213623047, - -0.1671169400215149, - -0.15681368112564087, - -0.14778751134872437, - -0.14028461277484894, - -0.13450966775417328, - -0.13062021136283875, - -0.12872231006622314, - -0.1288677603006363, - -0.13105258345603943, - -0.13521717488765717, - -0.14124795794487, - -0.14898040890693665, - -0.2582835555076599, - -0.24650119245052338, - -0.23354946076869965, - -0.21978165209293365, - -0.20557332038879395, - -0.1913120448589325, - -0.1773868203163147, - -0.16417747735977173, - -0.1520443707704544, - -0.1413184553384781, - -0.1322922706604004, - -0.12521204352378845, - -0.12027090042829514, - -0.11760365217924118, - -0.11728302389383316, - -0.11931777000427246, - -0.1236523911356926, - -0.1301686316728592, - -0.13868877291679382, - -0.14898040890693665, - -0.2582835555076599, - -0.2451380491256714, - -0.2308603674173355, - -0.2158399373292923, - -0.20048652589321136, - -0.1852189153432846, - -0.17045356333255768, - -0.1565932333469391, - -0.14401599764823914, - -0.13306492567062378, - -0.12403874099254608, - -0.11718366295099258, - -0.1126866564154625, - -0.11067039519548416, - -0.11118989437818527, - -0.11423097550868988, - -0.11971068382263184, - -0.12747953832149506, - -0.13732564449310303, - -0.14898040890693665, - -0.2582835555076599, - -0.245118647813797, - -0.2308221012353897, - -0.21578386425971985, - -0.20041415095329285, - -0.1851322203874588, - -0.1703549176454544, - -0.15648531913757324, - -0.1439017504453659, - -0.13294748961925507, - -0.12392131239175797, - -0.11706941574811935, - -0.11257873475551605, - -0.11057174950838089, - -0.11110319942235947, - -0.11415860056877136, - -0.11965460330247879, - -0.12744127213954926, - -0.13730624318122864, - -0.14898040890693665, - -0.2582835555076599, - -0.24644511938095093, - -0.23343881964683533, - -0.219619482755661, - -0.20536404848098755, - -0.1910613626241684, - -0.17710158228874207, - -0.16386546194553375, - -0.15171407163143158, - -0.1409788727760315, - -0.131952702999115, - -0.12488173693418503, - -0.11995888501405716, - -0.11731840670108795, - -0.11703234165906906, - -0.11910849064588547, - -0.12349022179841995, - -0.13005799055099487, - -0.13863269984722137, - -0.14898040890693665, - -0.2582835555076599, - -0.24897366762161255, - -0.23842698335647583, - -0.2269311547279358, - -0.21479980647563934, - -0.20236383378505707, - -0.1899624466896057, - -0.17793391644954681, - -0.1666063666343689, - -0.15628878772258759, - -0.1472626030445099, - -0.13977402448654175, - -0.13402733206748962, - -0.1301792860031128, - -0.12833480536937714, - -0.12854425609111786, - -0.13080190122127533, - -0.13504615426063538, - -0.1411612629890442, - -0.14898040890693665, - -0.2582835555076599, - -0.2524303197860718, - -0.245246022939682, - -0.23692657053470612, - -0.2276989370584488, - -0.21781481802463531, - -0.20754383504390717, - -0.19716614484786987, - -0.18696482479572296, - -0.17721813917160034, - -0.16819195449352264, - -0.1601324826478958, - -0.15325956046581268, - -0.14776067435741425, - -0.14378580451011658, - -0.1414433866739273, - -0.14079731702804565, - -0.14186519384384155, - -0.1446179300546646, - -0.14898040890693665, - -0.2582835555076599, - -0.25644052028656006, - -0.25315698981285095, - -0.24852252006530762, - -0.24266359210014343, - -0.23573996126651764, - -0.22794051468372345, - -0.21947799623012543, - -0.21058323979377747, - -0.2014988660812378, - -0.1924726814031601, - -0.18375089764595032, - -0.17557141184806824, - -0.16815735399723053, - -0.1617109477519989, - -0.15640802681446075, - -0.15239326655864716, - -0.1497761607170105, - -0.1486281007528305, - -0.14898040890693665 - ], - "y": [ - 0.25828349590301514, - 0.27009278535842896, - 0.28008922934532166, - 0.28800010681152344, - 0.293609619140625, - 0.2967647910118103, - 0.2973795533180237, - 0.2954370975494385, - 0.2909904718399048, - 0.28416091203689575, - 0.27513474225997925, - 0.2641581594944, - 0.25153058767318726, - 0.23759645223617554, - 0.22273588180541992, - 0.20735417306423187, - 0.19187094271183014, - 0.17670851945877075, - 0.16228051483631134, - 0.14898046851158142, - 0.25828349590301514, - 0.26967933773994446, - 0.2792735695838928, - 0.2868044972419739, - 0.29206669330596924, - 0.29491662979125977, - 0.29527655243873596, - 0.2931366562843323, - 0.2885552942752838, - 0.28165745735168457, - 0.27263128757476807, - 0.26172298192977905, - 0.24923013150691986, - 0.235493466258049, - 0.2208877056837082, - 0.2058112472295761, - 0.19067534804344177, - 0.1758928745985031, - 0.16186705231666565, - 0.14898046851158142, - 0.25828349590301514, - 0.267950177192688, - 0.2758624255657196, - 0.2818044126033783, - 0.2856140434741974, - 0.28718745708465576, - 0.28648167848587036, - 0.28351595997810364, - 0.2783712148666382, - 0.27118778228759766, - 0.26216161251068115, - 0.2515389025211334, - 0.23960943520069122, - 0.22669857740402222, - 0.213158518075943, - 0.19935861229896545, - 0.1856752634048462, - 0.1724817156791687, - 0.16013789176940918, - 0.14898046851158142, - 0.25828349590301514, - 0.2650927007198334, - 0.2702254354953766, - 0.273541659116745, - 0.27495095133781433, - 0.2744148373603821, - 0.2719479203224182, - 0.2676175832748413, - 0.26154184341430664, - 0.25388646125793457, - 0.24486029148101807, - 0.23470953106880188, - 0.2237110435962677, - 0.21216484904289246, - 0.2003858983516693, - 0.1886955052614212, - 0.17741252481937408, - 0.16684474050998688, - 0.15728043019771576, - 0.14898046851158142, - 0.25828349590301514, - 0.26141658425331116, - 0.26297348737716675, - 0.26291167736053467, - 0.2612328827381134, - 0.25798287987709045, - 0.2532503306865692, - 0.24716432392597198, - 0.23989085853099823, - 0.23162835836410522, - 0.22260218858718872, - 0.21305856108665466, - 0.20325779914855957, - 0.19346722960472107, - 0.18395394086837769, - 0.17497742176055908, - 0.16678252816200256, - 0.15959277749061584, - 0.15360431373119354, - 0.14898046851158142, - 0.25828349590301514, - 0.2573201656341553, - 0.25489237904548645, - 0.25106632709503174, - 0.24594640731811523, - 0.23967225849628448, - 0.23241502046585083, - 0.22437265515327454, - 0.21576452255249023, - 0.20682546496391296, - 0.19779929518699646, - 0.18893222510814667, - 0.18046611547470093, - 0.17263191938400269, - 0.1656433343887329, - 0.1596909612417221, - 0.15493719279766083, - 0.15151168406009674, - 0.14950789511203766, - 0.14898046851158142, - 0.25828349590301514, - 0.25324738025665283, - 0.2468578964471817, - 0.2392893135547638, - 0.23074808716773987, - 0.22146721184253693, - 0.21169982850551605, - 0.20171238481998444, - 0.1917772889137268, - 0.18216557800769806, - 0.17313940823078156, - 0.16494499146938324, - 0.15780586004257202, - 0.1519167423248291, - 0.14743827283382416, - 0.14449262619018555, - 0.1431601643562317, - 0.143477201461792, - 0.14543509483337402, - 0.14898046851158142, - 0.25828349590301514, - 0.24963955581188202, - 0.23974065482616425, - 0.22885678708553314, - 0.21728485822677612, - 0.20534051954746246, - 0.19334958493709564, - 0.18163910508155823, - 0.17052854597568512, - 0.1603209674358368, - 0.1512947976589203, - 0.14369624853134155, - 0.1377325803041458, - 0.1335664838552475, - 0.1313115954399109, - 0.131029412150383, - 0.13272765278816223, - 0.13635995984077454, - 0.1418272852897644, - 0.14898046851158142, - 0.25828349590301514, - 0.24688765406608582, - 0.23431192338466644, - 0.2208993136882782, - 0.20701569318771362, - 0.19303978979587555, - 0.179352805018425, - 0.1663280874490738, - 0.15432092547416687, - 0.1436588317155838, - 0.1346326619386673, - 0.1274886131286621, - 0.12242155522108078, - 0.11956970393657684, - 0.11901085823774338, - 0.1207602471113205, - 0.12477017194032669, - 0.13093122839927673, - 0.1390753835439682, - 0.14898046851158142, - 0.25828349590301514, - 0.2452899068593979, - 0.2311599999666214, - 0.21627919375896454, - 0.2010534107685089, - 0.18589797616004944, - 0.17122626304626465, - 0.1574384868144989, - 0.1449107527732849, - 0.13398480415344238, - 0.12495861947536469, - 0.11807844787836075, - 0.11353196203708649, - 0.1114431619644165, - 0.11186903715133667, - 0.11479796469211578, - 0.12015005201101303, - 0.1277793049812317, - 0.13747763633728027, - 0.14898046851158142, - 0.25828349590301514, - 0.24501943588256836, - 0.2306264489889145, - 0.21549710631370544, - 0.20004412531852722, - 0.184689000248909, - 0.16985060274600983, - 0.1559336632490158, - 0.1433178037405014, - 0.13234716653823853, - 0.12332098931074142, - 0.11648549884557724, - 0.1120271310210228, - 0.11006750166416168, - 0.11066006869077682, - 0.1137886717915535, - 0.11936795711517334, - 0.12724575400352478, - 0.13720716536045074, - 0.14898046851158142, - 0.25828349590301514, - 0.24610556662082672, - 0.23276907205581665, - 0.21863777935504913, - 0.204097181558609, - 0.18954388797283173, - 0.17537488043308258, - 0.1619766503572464, - 0.14971467852592468, - 0.13892343640327454, - 0.12989725172519684, - 0.12288237363100052, - 0.11807012557983398, - 0.11559178680181503, - 0.11551495641469955, - 0.11784172803163528, - 0.12250863760709763, - 0.12938836216926575, - 0.1382932960987091, - 0.14898046851158142, - 0.25828349590301514, - 0.24843057990074158, - 0.23735569417476654, - 0.22536088526248932, - 0.2127733826637268, - 0.19993652403354645, - 0.18720048666000366, - 0.17491263151168823, - 0.16340816020965576, - 0.15300092101097107, - 0.14397473633289337, - 0.1365758627653122, - 0.13100609183311462, - 0.12741738557815552, - 0.12590759992599487, - 0.12651793658733368, - 0.1292317509651184, - 0.13397499918937683, - 0.14061830937862396, - 0.14898046851158142, - 0.25828349590301514, - 0.25174254179000854, - 0.24388927221298218, - 0.2349378764629364, - 0.225132554769516, - 0.21474073827266693, - 0.20404590666294098, - 0.1933397799730301, - 0.18291440606117249, - 0.17305414378643036, - 0.16402797400951385, - 0.15608209371566772, - 0.14943325519561768, - 0.14426282048225403, - 0.14071181416511536, - 0.13887709379196167, - 0.1388087421655655, - 0.14050857722759247, - 0.14393027126789093, - 0.14898046851158142, - 0.25828349590301514, - 0.2556825578212738, - 0.2516618072986603, - 0.24633091688156128, - 0.23983533680438995, - 0.23235221207141876, - 0.22408567368984222, - 0.21526120603084564, - 0.20611952245235443, - 0.19690999388694763, - 0.18788382411003113, - 0.17928722500801086, - 0.17135468125343323, - 0.16430257260799408, - 0.158323273062706, - 0.15357989072799683, - 0.15020178258419037, - 0.14828111231327057, - 0.147870272397995, - 0.14898046851158142, - 0.25828349590301514, - 0.25982362031936646, - 0.2598310112953186, - 0.2583054006099701, - 0.2552884817123413, - 0.2508624792098999, - 0.245148167014122, - 0.23830139636993408, - 0.2305089384317398, - 0.22198334336280823, - 0.21295715868473053, - 0.20367662608623505, - 0.19439487159252167, - 0.18536508083343506, - 0.17683355510234833, - 0.169033020734787, - 0.16217626631259918, - 0.1564503014087677, - 0.15201134979724884, - 0.14898046851158142, - 0.25828349590301514, - 0.26371705532073975, - 0.26751163601875305, - 0.2695637345314026, - 0.26981741189956665, - 0.2682657241821289, - 0.2649509906768799, - 0.25996363162994385, - 0.25343969464302063, - 0.24555712938308716, - 0.23653094470500946, - 0.22660738229751587, - 0.21605710685253143, - 0.20516788959503174, - 0.19423680007457733, - 0.18356196582317352, - 0.17343460023403168, - 0.16413094103336334, - 0.15590476989746094, - 0.14898046851158142, - 0.25828349590301514, - 0.2669408917427063, - 0.27387136220932007, - 0.2788859009742737, - 0.28184768557548523, - 0.28267598152160645, - 0.2813481390476227, - 0.27790042757987976, - 0.2724268436431885, - 0.26507672667503357, - 0.25605055689811707, - 0.2455945461988449, - 0.23399388790130615, - 0.22156505286693573, - 0.20864705741405487, - 0.1955922544002533, - 0.18275675177574158, - 0.17049065232276917, - 0.1591286063194275, - 0.14898046851158142, - 0.25828349590301514, - 0.26914578676223755, - 0.2782210111618042, - 0.2852616310119629, - 0.2900756299495697, - 0.29253166913986206, - 0.2925627529621124, - 0.29016804695129395, - 0.28541284799575806, - 0.2784268856048584, - 0.2694007158279419, - 0.2585805654525757, - 0.24626152217388153, - 0.23277968168258667, - 0.21850275993347168, - 0.20382019877433777, - 0.18913249671459198, - 0.1748403161764145, - 0.16133350133895874, - 0.14898046851158142, - 0.25828349590301514, - 0.27009278535842896, - 0.28008922934532166, - 0.28800010681152344, - 0.293609619140625, - 0.2967647910118103, - 0.2973795533180237, - 0.2954370975494385, - 0.2909904718399048, - 0.28416091203689575, - 0.27513474225997925, - 0.2641581594944, - 0.25153058767318726, - 0.23759645223617554, - 0.22273588180541992, - 0.20735417306423187, - 0.19187094271183014, - 0.17670851945877075, - 0.16228051483631134, - 0.14898046851158142 - ], - "z": [ - -1.7218902111053467, - -1.7152024507522583, - -1.698758840560913, - -1.6730077266693115, - -1.6386518478393555, - -1.596627950668335, - -1.548082709312439, - -1.494339942932129, - -1.4368659257888794, - -1.3772282600402832, - -1.3170537948608398, - -1.2579838037490845, - -1.201629638671875, - -1.1495283842086792, - -1.103101372718811, - -1.0636149644851685, - -1.0321462154388428, - -1.0095536708831787, - -0.9964532852172852, - -0.9932026863098145, - -1.7218902111053467, - -1.7146451473236084, - -1.6976593732833862, - -1.6713961362838745, - -1.636572003364563, - -1.5941367149353027, - -1.5452479124069214, - -1.491239070892334, - -1.433583378791809, - -1.3738536834716797, - -1.3136790990829468, - -1.2547011375427246, - -1.198528528213501, - -1.1466935873031616, - -1.1006101369857788, - -1.061535120010376, - -1.0305346250534058, - -1.0084540843963623, - -0.9958959817886353, - -0.9932026863098145, - -1.7218902111053467, - -1.7143343687057495, - -1.6970463991165161, - -1.6704976558685303, - -1.6354124546051025, - -1.5927478075027466, - -1.5436674356460571, - -1.4895102977752686, - -1.431753396987915, - -1.3719723224639893, - -1.3117977380752563, - -1.2528711557388306, - -1.1967997550964355, - -1.145113229751587, - -1.0992212295532227, - -1.060375690460205, - -1.0296361446380615, - -1.0078411102294922, - -0.9955852627754211, - -0.9932026863098145, - -1.7218902111053467, - -1.714303970336914, - -1.696986436843872, - -1.6704096794128418, - -1.6352989673614502, - -1.5926117897033691, - -1.5435127019882202, - -1.4893410205841064, - -1.4315742254257202, - -1.3717881441116333, - -1.3116135597229004, - -1.2526919841766357, - -1.196630597114563, - -1.14495849609375, - -1.0990852117538452, - -1.0602622032165527, - -1.029548168182373, - -1.0077811479568481, - -0.9955548048019409, - -0.9932026863098145, - -1.7218902111053467, - -1.71455717086792, - -1.6974858045578003, - -1.6711417436599731, - -1.6362437009811401, - -1.5937435626983643, - -1.5448005199432373, - -1.4907495975494385, - -1.4330652952194214, - -1.3733210563659668, - -1.3131465911865234, - -1.2541831731796265, - -1.198039174079895, - -1.1462461948394775, - -1.1002168655395508, - -1.0612069368362427, - -1.030280351638794, - -1.0082805156707764, - -0.9958080053329468, - -0.9932026863098145, - -1.7218902111053467, - -1.7150664329528809, - -1.6984906196594238, - -1.672614574432373, - -1.6381443738937378, - -1.596020221710205, - -1.5473910570144653, - -1.4935834407806396, - -1.4360650777816772, - -1.3764050006866455, - -1.3162304162979126, - -1.2571829557418823, - -1.2008730173110962, - -1.1488367319107056, - -1.1024935245513916, - -1.0631076097488403, - -1.0317530632019043, - -1.0092853307724, - -0.9963173866271973, - -0.9932026863098145, - -1.7218902111053467, - -1.715776801109314, - -1.6998918056488037, - -1.674668550491333, - -1.6407949924468994, - -1.5991952419281006, - -1.5510038137435913, - -1.4975354671478271, - -1.4402484893798828, - -1.380705714225769, - -1.3205312490463257, - -1.261366367340088, - -1.2048250436782837, - -1.152449607849121, - -1.105668544769287, - -1.065758228302002, - -1.0338070392608643, - -1.0106866359710693, - -0.9970276355743408, - -0.9932026863098145, - -1.7218902111053467, - -1.7166111469268799, - -1.7015377283096313, - -1.6770809888839722, - -1.6439083814620972, - -1.6029244661331177, - -1.5552473068237305, - -1.502177357673645, - -1.445162296295166, - -1.3857572078704834, - -1.32558274269104, - -1.2662800550460815, - -1.2094669342041016, - -1.1566929817199707, - -1.1093978881835938, - -1.0688714981079102, - -1.0362194776535034, - -1.0123324394226074, - -0.9978619813919067, - -0.9932026863098145, - -1.7218902111053467, - -1.7174789905548096, - -1.7032498121261597, - -1.6795905828475952, - -1.6471469402313232, - -1.6068037748336792, - -1.5596615076065063, - -1.507006049156189, - -1.4502737522125244, - -1.3910120725631714, - -1.3308374881744385, - -1.27139151096344, - -1.2142956256866455, - -1.1611073017120361, - -1.1132771968841553, - -1.0721101760864258, - -1.038729190826416, - -1.0140445232391357, - -0.9987298250198364, - -0.9932026863098145, - -1.7218902111053467, - -1.718286395072937, - -1.7048425674438477, - -1.6819254159927368, - -1.6501600742340088, - -1.610412836074829, - -1.5637682676315308, - -1.5114984512329102, - -1.4550291299819946, - -1.395900845527649, - -1.335726261138916, - -1.2761468887329102, - -1.2187879085540771, - -1.165213942527771, - -1.1168862581253052, - -1.0751231908798218, - -1.041063904762268, - -1.0156373977661133, - -0.9995372295379639, - -0.9932026863098145, - -1.7218902111053467, - -1.718945860862732, - -1.7061434984207153, - -1.6838322877883911, - -1.6526209115982056, - -1.6133606433868408, - -1.567122459411621, - -1.515167474746704, - -1.4589130878448486, - -1.3998936414718628, - -1.3397191762924194, - -1.2800309658050537, - -1.2224570512771606, - -1.1685681343078613, - -1.119834065437317, - -1.0775840282440186, - -1.0429707765579224, - -1.0169382095336914, - -1.0001966953277588, - -0.9932026863098145, - -1.7218902111053467, - -1.7193858623504639, - -1.7070115804672241, - -1.6851047277450562, - -1.6542630195617676, - -1.6153275966644287, - -1.5693604946136475, - -1.517615795135498, - -1.4615046977996826, - -1.4025579690933228, - -1.3423835039138794, - -1.2826225757598877, - -1.2249053716659546, - -1.1708062887191772, - -1.1218008995056152, - -1.0792261362075806, - -1.0442432165145874, - -1.0178062915802002, - -1.0006368160247803, - -0.9932026863098145, - -1.7218902111053467, - -1.719558835029602, - -1.7073527574539185, - -1.6856048107147217, - -1.654908299446106, - -1.616100549697876, - -1.5702400207519531, - -1.5185779333114624, - -1.4625232219696045, - -1.4036051034927368, - -1.343430519104004, - -1.2836410999298096, - -1.225867509841919, - -1.171685814857483, - -1.122573971748352, - -1.079871416091919, - -1.044743299484253, - -1.0181474685668945, - -1.000809669494629, - -0.9932026863098145, - -1.7218902111053467, - -1.7194459438323975, - -1.707129955291748, - -1.6852781772613525, - -1.654486894607544, - -1.615595817565918, - -1.569665789604187, - -1.5179497003555298, - -1.4618581533432007, - -1.4029213190078735, - -1.3427468538284302, - -1.2829760313034058, - -1.2252392768859863, - -1.1711114645004272, - -1.122069239616394, - -1.0794501304626465, - -1.0444167852401733, - -1.0179247856140137, - -1.0006967782974243, - -0.9932026863098145, - -1.7218902111053467, - -1.7190593481063843, - -1.7063674926757812, - -1.6841604709625244, - -1.6530444622039795, - -1.613867998123169, - -1.5676997900009155, - -1.5157990455627441, - -1.459581732749939, - -1.4005810022354126, - -1.3404065370559692, - -1.2806994915008545, - -1.2230886220932007, - -1.1691454648971558, - -1.120341420173645, - -1.078007698059082, - -1.0432990789413452, - -1.0171622037887573, - -1.0003101825714111, - -0.9932026863098145, - -1.7218902111053467, - -1.718441128730774, - -1.7051478624343872, - -1.682372808456421, - -1.6507374048233032, - -1.6111044883728027, - -1.5645551681518555, - -1.5123592615127563, - -1.4559403657913208, - -1.396837592124939, - -1.3366631269454956, - -1.2770582437515259, - -1.219648838043213, - -1.1660009622573853, - -1.1175779104232788, - -1.0757005214691162, - -1.0415112972259521, - -1.0159425735473633, - -0.9996919631958008, - -0.9932026863098145, - -1.7218902111053467, - -1.7176581621170044, - -1.7036032676696777, - -1.680108666419983, - -1.6478155851364136, - -1.6076046228408813, - -1.5605727434158325, - -1.5080028772354126, - -1.451328992843628, - -1.3920968770980835, - -1.3319222927093506, - -1.2724467515945435, - -1.2152924537658691, - -1.1620185375213623, - -1.1140780448913574, - -1.0727787017822266, - -1.0392471551895142, - -1.0143979787826538, - -0.9989089965820312, - -0.9932026863098145, - -1.7218902111053467, - -1.7167953252792358, - -1.7019010782241821, - -1.677613615989685, - -1.6445956230163574, - -1.6037477254867554, - -1.5561840534210205, - -1.5032020807266235, - -1.4462471008300781, - -1.386872410774231, - -1.3266979455947876, - -1.2673648595809937, - -1.21049165725708, - -1.1576298475265503, - -1.1102211475372314, - -1.06955885887146, - -1.0367521047592163, - -1.0126957893371582, - -0.9980461597442627, - -0.9932026863098145, - -1.7218902111053467, - -1.715946078300476, - -1.7002257108688354, - -1.675157904624939, - -1.6414265632629395, - -1.5999517440795898, - -1.5518646240234375, - -1.4984771013259888, - -1.4412453174591064, - -1.381730556488037, - -1.3215559720993042, - -1.2623631954193115, - -1.2057666778564453, - -1.1533104181289673, - -1.106425166130066, - -1.066389799118042, - -1.0342965126037598, - -1.0110204219818115, - -0.9971969127655029, - -0.9932026863098145, - -1.7218902111053467, - -1.7152024507522583, - -1.698758840560913, - -1.6730077266693115, - -1.6386518478393555, - -1.596627950668335, - -1.548082709312439, - -1.494339942932129, - -1.4368659257888794, - -1.3772282600402832, - -1.3170537948608398, - -1.2579838037490845, - -1.201629638671875, - -1.1495283842086792, - -1.103101372718811, - -1.0636149644851685, - -1.0321462154388428, - -1.0095536708831787, - -0.9964532852172852, - -0.9932026863098145 - ] - }, - { - "alphahull": 0, - "color": "#FECB52", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.3545070290565491, - -0.37212803959846497, - -0.3877503573894501, - -0.40094780921936035, - -0.41136041283607483, - -0.41870415210723877, - -0.4227786958217621, - -0.42347294092178345, - -0.4207678735256195, - -0.414737343788147, - -0.40554580092430115, - -0.3934440314769745, - -0.37876206636428833, - -0.3619004487991333, - -0.3433191180229187, - -0.3235248625278473, - -0.3030576705932617, - -0.2824758291244507, - -0.2623407542705536, - -0.24320167303085327, - -0.3545070290565491, - -0.37113216519355774, - -0.3857857584953308, - -0.39806807041168213, - -0.407644122838974, - -0.4142526388168335, - -0.4177134037017822, - -0.41793203353881836, - -0.4149025082588196, - -0.40870749950408936, - -0.39951595664024353, - -0.3875786364078522, - -0.37322115898132324, - -0.35683515667915344, - -0.3388676047325134, - -0.3198085427284241, - -0.3001779317855835, - -0.2805112302303314, - -0.26134487986564636, - -0.24320167303085327, - -0.3545070290565491, - -0.3682524263858795, - -0.38010483980178833, - -0.3897409439086914, - -0.39689791202545166, - -0.4013805091381073, - -0.4030664563179016, - -0.4019097685813904, - -0.3979420065879822, - -0.39127135276794434, - -0.3820798397064209, - -0.37061816453933716, - -0.35719892382621765, - -0.3421882092952728, - -0.32599547505378723, - -0.3090623617172241, - -0.29185083508491516, - -0.27483034133911133, - -0.25846514105796814, - -0.24320167303085327, - -0.3545070290565491, - -0.36380094289779663, - -0.37132325768470764, - -0.3768688440322876, - -0.3802863657474518, - -0.38148266077041626, - -0.38042503595352173, - -0.37714242935180664, - -0.37172430753707886, - -0.36431846022605896, - -0.35512691736221313, - -0.34440043568611145, - -0.3324315845966339, - -0.31954678893089294, - -0.3060975968837738, - -0.29245081543922424, - -0.27897870540618896, - -0.26604872941970825, - -0.25401362776756287, - -0.24320167303085327, - -0.3545070290565491, - -0.35826003551483154, - -0.36039260029792786, - -0.3608465790748596, - -0.35960954427719116, - -0.35671529173851013, - -0.35224273800849915, - -0.3463138937950134, - -0.3390904664993286, - -0.33076950907707214, - -0.3215779960155487, - -0.3117666244506836, - -0.3016030490398407, - -0.29136449098587036, - -0.28133025765419006, - -0.2717739939689636, - -0.262956440448761, - -0.25511807203292847, - -0.24847273528575897, - -0.24320167303085327, - -0.3545070290565491, - -0.3522301912307739, - -0.3484973907470703, - -0.343410462141037, - -0.33710816502571106, - -0.32976239919662476, - -0.32157352566719055, - -0.312764972448349, - -0.3035769462585449, - -0.29426008462905884, - -0.2850685715675354, - -0.2762530744075775, - -0.2680540978908539, - -0.26069527864456177, - -0.2543773353099823, - -0.24927259981632233, - -0.24552032351493835, - -0.24322286248207092, - -0.24244289100170135, - -0.24320167303085327, - -0.3545070290565491, - -0.346364825963974, - -0.3369266390800476, - -0.3264499604701996, - -0.31522053480148315, - -0.30354470014572144, - -0.29174089431762695, - -0.28013116121292114, - -0.2690321207046509, - -0.25874656438827515, - -0.24955502152442932, - -0.24170826375484467, - -0.23542028665542603, - -0.23086264729499817, - -0.22815962135791779, - -0.22738496959209442, - -0.22855982184410095, - -0.23165211081504822, - -0.23657752573490143, - -0.24320167303085327, - -0.3545070290565491, - -0.34129953384399414, - -0.32693424820899963, - -0.3118029832839966, - -0.29631856083869934, - -0.28090327978134155, - -0.2659776508808136, - -0.25194883346557617, - -0.2391994744539261, - -0.22807733714580536, - -0.21888580918312073, - -0.21187561750411987, - -0.20723798871040344, - -0.20509940385818481, - -0.2055182158946991, - -0.20848298072814941, - -0.21391287446022034, - -0.22165971994400024, - -0.23151223361492157, - -0.24320167303085327, - -0.3545070290565491, - -0.3375832438468933, - -0.31960299611091614, - -0.30105680227279663, - -0.28245052695274353, - -0.2642917335033417, - -0.24707567691802979, - -0.23127204179763794, - -0.21731184422969818, - -0.20557592809200287, - -0.19638440012931824, - -0.18998798727989197, - -0.18656118214130402, - -0.1861974149942398, - -0.18890665471553802, - -0.194614976644516, - -0.2031666785478592, - -0.21432846784591675, - -0.22779592871665955, - -0.24320167303085327, - -0.3545070290565491, - -0.33561864495277405, - -0.3157274127006531, - -0.29537591338157654, - -0.2751193046569824, - -0.255510151386261, - -0.2370832860469818, - -0.22034135460853577, - -0.20574110746383667, - -0.19368070363998413, - -0.1844891905784607, - -0.17841725051403046, - -0.17563050985336304, - -0.17620500922203064, - -0.18012505769729614, - -0.1872837394475937, - -0.1974857747554779, - -0.2104528695344925, - -0.22583132982254028, - -0.24320167303085327, - -0.3545070290565491, - -0.33561864495277405, - -0.3157274127006531, - -0.29537591338157654, - -0.2751193046569824, - -0.255510151386261, - -0.2370832860469818, - -0.22034135460853577, - -0.20574110746383667, - -0.19368070363998413, - -0.1844891905784607, - -0.17841725051403046, - -0.17563050985336304, - -0.17620500922203064, - -0.18012505769729614, - -0.1872837394475937, - -0.1974857747554779, - -0.2104528695344925, - -0.22583132982254028, - -0.24320167303085327, - -0.3545070290565491, - -0.3375832438468933, - -0.31960299611091614, - -0.30105680227279663, - -0.28245052695274353, - -0.2642917335033417, - -0.24707567691802979, - -0.23127204179763794, - -0.21731184422969818, - -0.20557592809200287, - -0.19638440012931824, - -0.18998798727989197, - -0.18656118214130402, - -0.1861974149942398, - -0.18890665471553802, - -0.194614976644516, - -0.2031666785478592, - -0.21432846784591675, - -0.22779592871665955, - -0.24320167303085327, - -0.3545070290565491, - -0.34129953384399414, - -0.32693424820899963, - -0.3118029832839966, - -0.29631856083869934, - -0.28090327978134155, - -0.2659776508808136, - -0.25194883346557617, - -0.2391994595527649, - -0.22807732224464417, - -0.21888580918312073, - -0.21187561750411987, - -0.20723798871040344, - -0.20509940385818481, - -0.2055182158946991, - -0.20848298072814941, - -0.21391287446022034, - -0.22165971994400024, - -0.23151223361492157, - -0.24320167303085327, - -0.3545070290565491, - -0.346364825963974, - -0.3369266390800476, - -0.3264499604701996, - -0.31522053480148315, - -0.30354470014572144, - -0.29174092411994934, - -0.28013116121292114, - -0.2690321207046509, - -0.25874656438827515, - -0.2495550513267517, - -0.24170827865600586, - -0.23542030155658722, - -0.23086264729499817, - -0.22815963625907898, - -0.22738498449325562, - -0.22855983674526215, - -0.2316521257162094, - -0.23657752573490143, - -0.24320167303085327, - -0.3545070290565491, - -0.3522301912307739, - -0.3484973907470703, - -0.343410462141037, - -0.33710816502571106, - -0.32976239919662476, - -0.32157352566719055, - -0.3127649426460266, - -0.30357691645622253, - -0.29426008462905884, - -0.2850685715675354, - -0.2762530744075775, - -0.2680540978908539, - -0.26069527864456177, - -0.2543773353099823, - -0.24927259981632233, - -0.24552032351493835, - -0.24322286248207092, - -0.24244289100170135, - -0.24320167303085327, - -0.3545070290565491, - -0.35826003551483154, - -0.36039260029792786, - -0.36084654927253723, - -0.35960954427719116, - -0.35671529173851013, - -0.35224270820617676, - -0.34631386399269104, - -0.3390904366970062, - -0.33076947927474976, - -0.3215779662132263, - -0.3117665946483612, - -0.3016030192375183, - -0.291364461183548, - -0.2813302278518677, - -0.2717739939689636, - -0.262956440448761, - -0.25511807203292847, - -0.24847273528575897, - -0.24320167303085327, - -0.3545070290565491, - -0.36380094289779663, - -0.37132325768470764, - -0.3768688142299652, - -0.3802863657474518, - -0.38148266077041626, - -0.38042503595352173, - -0.37714242935180664, - -0.37172427773475647, - -0.36431846022605896, - -0.35512691736221313, - -0.34440043568611145, - -0.3324315547943115, - -0.31954678893089294, - -0.3060975968837738, - -0.29245081543922424, - -0.27897870540618896, - -0.26604872941970825, - -0.25401362776756287, - -0.24320167303085327, - -0.3545070290565491, - -0.3682524561882019, - -0.3801048696041107, - -0.3897409737110138, - -0.39689794182777405, - -0.4013805389404297, - -0.4030664563179016, - -0.4019097685813904, - -0.3979420065879822, - -0.3912713825702667, - -0.3820798695087433, - -0.37061816453933716, - -0.35719892382621765, - -0.3421882092952728, - -0.32599547505378723, - -0.3090623915195465, - -0.29185083508491516, - -0.27483034133911133, - -0.25846514105796814, - -0.24320167303085327, - -0.3545070290565491, - -0.37113216519355774, - -0.3857857584953308, - -0.39806807041168213, - -0.407644122838974, - -0.4142526388168335, - -0.4177134335041046, - -0.41793203353881836, - -0.4149025082588196, - -0.40870749950408936, - -0.3995159864425659, - -0.38757866621017456, - -0.37322118878364563, - -0.35683518648147583, - -0.3388676047325134, - -0.31980857253074646, - -0.3001779615879059, - -0.2805112302303314, - -0.26134487986564636, - -0.24320167303085327, - -0.3545070290565491, - -0.37212803959846497, - -0.3877503573894501, - -0.40094780921936035, - -0.41136041283607483, - -0.41870415210723877, - -0.4227786958217621, - -0.42347294092178345, - -0.4207678735256195, - -0.414737343788147, - -0.40554580092430115, - -0.3934440314769745, - -0.37876206636428833, - -0.3619004487991333, - -0.3433191180229187, - -0.3235248625278473, - -0.3030576705932617, - -0.2824758291244507, - -0.2623407542705536, - -0.24320167303085327 - ], - "y": [ - 0.3545070290565491, - 0.35334354639053345, - 0.3506937623023987, - 0.34662988781929016, - 0.3412628471851349, - 0.3347390294075012, - 0.3272363543510437, - 0.318959504365921, - 0.3101342022418976, - 0.30100125074386597, - 0.29180973768234253, - 0.28281036019325256, - 0.2742486298084259, - 0.26635807752609253, - 0.25935396552085876, - 0.25342729687690735, - 0.24873976409435272, - 0.2454192191362381, - 0.24355626106262207, - 0.24320167303085327, - 0.3545070290565491, - 0.35933202505111694, - 0.36250731348991394, - 0.3639463186264038, - 0.36360982060432434, - 0.36150693893432617, - 0.357695072889328, - 0.3522781729698181, - 0.3454039990901947, - 0.33726009726524353, - 0.3280685544013977, - 0.3180801570415497, - 0.3075673282146454, - 0.29681679606437683, - 0.2861218750476837, - 0.2757742702960968, - 0.26605620980262756, - 0.25723278522491455, - 0.24954470992088318, - 0.24320167303085327, - 0.3545070290565491, - 0.3647153377532959, - 0.37312716245651245, - 0.3795130252838135, - 0.3836987018585205, - 0.38557004928588867, - 0.38507601618766785, - 0.38223010301589966, - 0.37710991501808167, - 0.3698551058769226, - 0.3606635630130768, - 0.34978604316711426, - 0.33751925826072693, - 0.32419776916503906, - 0.3101849853992462, - 0.29586315155029297, - 0.28162288665771484, - 0.26785263419151306, - 0.2549280524253845, - 0.24320167303085327, - 0.3545070290565491, - 0.3689102232456207, - 0.38140249252319336, - 0.3916430175304413, - 0.3993525505065918, - 0.40432074666023254, - 0.4064120948314667, - 0.40556955337524414, - 0.40181607007980347, - 0.39525410532951355, - 0.3860625624656677, - 0.37449222803115845, - 0.360858678817749, - 0.3455338478088379, - 0.3289356827735901, - 0.31151700019836426, - 0.29375290870666504, - 0.2761279344558716, - 0.25912290811538696, - 0.24320167303085327, - 0.3545070290565491, - 0.37146201729774475, - 0.38643646240234375, - 0.3990218937397003, - 0.408875048160553, - 0.41572707891464233, - 0.4193911552429199, - 0.419767290353775, - 0.41684526205062866, - 0.41070470213890076, - 0.40151315927505493, - 0.38952139019966125, - 0.3750564455986023, - 0.35851290822029114, - 0.34034204483032227, - 0.32103949785232544, - 0.3011317849159241, - 0.28116193413734436, - 0.2616747319698334, - 0.24320167303085327, - 0.3545070290565491, - 0.3720942437648773, - 0.3876836597919464, - 0.4008500277996063, - 0.4112342596054077, - 0.41855302453041077, - 0.4226067364215851, - 0.4232847988605499, - 0.4205687344074249, - 0.4145326018333435, - 0.40534108877182007, - 0.3932448625564575, - 0.3785739541053772, - 0.3617284893989563, - 0.3431679606437683, - 0.3233986794948578, - 0.3029598891735077, - 0.282409131526947, - 0.26230692863464355, - 0.24320167303085327, - 0.3545070290565491, - 0.37073832750320435, - 0.38500887155532837, - 0.3969292938709259, - 0.40617454051971436, - 0.4124923348426819, - 0.4157103896141052, - 0.4157409071922302, - 0.41258305311203003, - 0.40632301568984985, - 0.39713147282600403, - 0.385259211063385, - 0.3710300624370575, - 0.35483211278915405, - 0.33710727095603943, - 0.31833896040916443, - 0.29903918504714966, - 0.279734343290329, - 0.26095104217529297, - 0.24320167303085327, - 0.3545070290565491, - 0.36754128336906433, - 0.37870195508003235, - 0.38768458366394043, - 0.39424416422843933, - 0.39820176362991333, - 0.3994494080543518, - 0.3979530930519104, - 0.39375361800193787, - 0.3869655132293701, - 0.3777740001678467, - 0.36642977595329285, - 0.35324224829673767, - 0.338571161031723, - 0.3228166997432709, - 0.3064086139202118, - 0.2897944450378418, - 0.27342742681503296, - 0.25775399804115295, - 0.24320167303085327, - 0.3545070290565491, - 0.36284953355789185, - 0.36944639682769775, - 0.3741177022457123, - 0.37673601508140564, - 0.3772299289703369, - 0.3755859434604645, - 0.3718489408493042, - 0.366120845079422, - 0.35855787992477417, - 0.34936633706092834, - 0.3387969732284546, - 0.32713809609413147, - 0.3147076964378357, - 0.30184486508369446, - 0.2889004647731781, - 0.27622756361961365, - 0.26417186856269836, - 0.2530622184276581, - 0.24320167303085327, - 0.3545070290565491, - 0.3571714460849762, - 0.3582451641559601, - 0.35769879817962646, - 0.35554736852645874, - 0.3518494665622711, - 0.34670600295066833, - 0.3402572572231293, - 0.3326791822910309, - 0.32417842745780945, - 0.3149868845939636, - 0.3053553104400635, - 0.29554641246795654, - 0.28582772612571716, - 0.27646440267562866, - 0.2677117884159088, - 0.2598086893558502, - 0.2529706358909607, - 0.24738416075706482, - 0.24320167303085327, - 0.3545070290565491, - 0.3511224091053009, - 0.3463120460510254, - 0.34020715951919556, - 0.33297431468963623, - 0.3248107135295868, - 0.31593912839889526, - 0.30660149455070496, - 0.2970525324344635, - 0.28755274415016174, - 0.2783612310886383, - 0.2697286903858185, - 0.2618906497955322, - 0.2550608515739441, - 0.24942566454410553, - 0.2451387345790863, - 0.2423170506954193, - 0.2410375326871872, - 0.24133512377738953, - 0.24320167303085327, - 0.3545070290565491, - 0.34535789489746094, - 0.33494025468826294, - 0.32353827357292175, - 0.31146299839019775, - 0.29904377460479736, - 0.2866193950176239, - 0.27452877163887024, - 0.26310163736343384, - 0.25264978408813477, - 0.24345827102661133, - 0.23577779531478882, - 0.22981789708137512, - 0.22574114799499512, - 0.2236587107181549, - 0.22362743318080902, - 0.22564813494682312, - 0.22966572642326355, - 0.23557057976722717, - 0.24320167303085327, - 0.3545070290565491, - 0.3405025601387024, - 0.32536202669143677, - 0.3094984292984009, - 0.29334452748298645, - 0.2773408889770508, - 0.2619240880012512, - 0.24751463532447815, - 0.23450559377670288, - 0.2232518494129181, - 0.21406033635139465, - 0.20718175172805786, - 0.20280379056930542, - 0.20104581117630005, - 0.20195581018924713, - 0.20550894737243652, - 0.21160832047462463, - 0.22008749842643738, - 0.23071527481079102, - 0.24320167303085327, - 0.3545070290565491, - 0.33708256483078003, - 0.3186153769493103, - 0.29960912466049194, - 0.2805822789669037, - 0.26205387711524963, - 0.24452927708625793, - 0.22848650813102722, - 0.2143632173538208, - 0.20254462957382202, - 0.1933531016111374, - 0.1870393604040146, - 0.1837756633758545, - 0.18365100026130676, - 0.1866687834262848, - 0.19274671375751495, - 0.2017189860343933, - 0.21334083378314972, - 0.22729527950286865, - 0.24320167303085327, - 0.3545070290565491, - 0.3354685604572296, - 0.3154313564300537, - 0.2949419617652893, - 0.27455928921699524, - 0.25483933091163635, - 0.23631998896598816, - 0.2195064127445221, - 0.2048572599887848, - 0.1927720606327057, - 0.18358054757118225, - 0.17753340303897858, - 0.17479556798934937, - 0.175441712141037, - 0.1794542670249939, - 0.1867237240076065, - 0.19705182313919067, - 0.21015682816505432, - 0.22568127512931824, - 0.24320167303085327, - 0.3545070290565491, - 0.33583539724349976, - 0.31615501642227173, - 0.29600271582603455, - 0.27592822909355164, - 0.25647908449172974, - 0.2381858229637146, - 0.2215474247932434, - 0.20701777935028076, - 0.19499321281909943, - 0.1858016848564148, - 0.17969393730163574, - 0.17683658003807068, - 0.17730754613876343, - 0.1810940057039261, - 0.1880926489830017, - 0.1981125921010971, - 0.21088048815727234, - 0.22604811191558838, - 0.24320167303085327, - 0.3545070290565491, - 0.33814334869384766, - 0.3207079768180847, - 0.3026764690876007, - 0.28454071283340454, - 0.26679542660713196, - 0.24992460012435913, - 0.23438844084739685, - 0.22061073780059814, - 0.20896732807159424, - 0.1997758150100708, - 0.19328689575195312, - 0.18967758119106293, - 0.18904632329940796, - 0.1914103478193283, - 0.196705162525177, - 0.20478633046150208, - 0.21543344855308533, - 0.22835606336593628, - 0.24320167303085327, - 0.3545070290565491, - 0.3421423137187958, - 0.3285968005657196, - 0.3142399787902832, - 0.29946351051330566, - 0.2846704125404358, - 0.270264208316803, - 0.2566378712654114, - 0.24416309595108032, - 0.23318016529083252, - 0.2239886373281479, - 0.2168392539024353, - 0.21192702651023865, - 0.2093859612941742, - 0.20928534865379333, - 0.21162794530391693, - 0.21634986996650696, - 0.22332227230072021, - 0.2323550134897232, - 0.24320167303085327, - 0.3545070290565491, - 0.34739893674850464, - 0.33896663784980774, - 0.3294402062892914, - 0.3190794587135315, - 0.308167040348053, - 0.29700058698654175, - 0.28588470816612244, - 0.27512258291244507, - 0.2650078237056732, - 0.2558163106441498, - 0.24779874086380005, - 0.2411738485097885, - 0.23612233996391296, - 0.23278197646141052, - 0.23124390840530396, - 0.23155006766319275, - 0.23369210958480835, - 0.23761162161827087, - 0.24320167303085327, - 0.3545070290565491, - 0.35334354639053345, - 0.3506937623023987, - 0.34662991762161255, - 0.3412628769874573, - 0.3347390294075012, - 0.3272363543510437, - 0.318959504365921, - 0.31013423204421997, - 0.30100128054618835, - 0.29180973768234253, - 0.28281038999557495, - 0.2742486596107483, - 0.2663581073284149, - 0.25935396552085876, - 0.25342729687690735, - 0.24873977899551392, - 0.2454192191362381, - 0.24355626106262207, - 0.24320167303085327 - ], - "z": [ - -2.363379955291748, - -2.355623483657837, - -2.3379580974578857, - -2.310865879058838, - -2.275085687637329, - -2.231593370437622, - -2.1815755367279053, - -2.126396417617798, - -2.067561388015747, - -2.0066750049591064, - -1.9453980922698975, - -1.8854023218154907, - -1.8283241987228394, - -1.7757205963134766, - -1.7290263175964355, - -1.689515233039856, - -1.6582649946212769, - -1.6361280679702759, - -1.6237082481384277, - -1.6213444471359253, - -2.363379955291748, - -2.354874610900879, - -2.3364808559417725, - -2.3087003231048584, - -2.2722909450531006, - -2.228245973587036, - -2.1777665615081787, - -2.122229814529419, - -2.063150644302368, - -2.002140522003174, - -1.9408637285232544, - -1.8809916973114014, - -1.824157476425171, - -1.7719115018844604, - -1.7256789207458496, - -1.686720609664917, - -1.656099557876587, - -1.634650707244873, - -1.6229593753814697, - -1.6213444471359253, - -2.363379955291748, - -2.354499101638794, - -2.335740089416504, - -2.307614326477051, - -2.2708895206451416, - -2.226567268371582, - -2.175856351852417, - -2.120140314102173, - -2.060938835144043, - -1.9998667240142822, - -1.9385899305343628, - -1.8787798881530762, - -1.8220680952072144, - -1.7700014114379883, - -1.7240002155303955, - -1.685319185256958, - -1.6550135612487793, - -1.6339099407196045, - -1.6225838661193848, - -1.6213444471359253, - -2.363379955291748, - -2.3545374870300293, - -2.335815906524658, - -2.307725667953491, - -2.27103328704834, - -2.2267394065856934, - -2.1760523319244385, - -2.120354652404785, - -2.0611655712127686, - -2.0000998973846436, - -1.9388229846954346, - -1.8790066242218018, - -1.822282314300537, - -1.7701972723007202, - -1.7241723537445068, - -1.6854629516601562, - -1.6551249027252197, - -1.6339857578277588, - -1.6226223707199097, - -1.6213444471359253, - -2.363379955291748, - -2.3549859523773193, - -2.336700439453125, - -2.3090221881866455, - -2.2727065086364746, - -2.228743553161621, - -2.178332805633545, - -2.122849225997925, - -2.0638062953948975, - -2.002814531326294, - -1.9415377378463745, - -1.8816473484039307, - -1.8247768878936768, - -1.7724777460098267, - -1.7261765003204346, - -1.6871360540390015, - -1.656421422958374, - -1.6348702907562256, - -1.6230707168579102, - -1.6213444471359253, - -2.363379955291748, - -2.3557956218719482, - -2.3382976055145264, - -2.311363458633423, - -2.2757277488708496, - -2.2323625087738037, - -2.182450771331787, - -2.1273539066314697, - -2.068574905395508, - -2.0077168941497803, - -1.9464399814605713, - -1.8864158391952515, - -1.8292815685272217, - -1.7765958309173584, - -1.7297955751419067, - -1.690157413482666, - -1.6587625741958618, - -1.6364675760269165, - -1.623880386352539, - -1.6213444471359253, - -2.363379955291748, - -2.3568787574768066, - -2.3404345512390137, - -2.31449556350708, - -2.2797698974609375, - -2.2372043132781982, - -2.187960147857666, - -2.133380651473999, - -2.0749542713165283, - -2.014275312423706, - -1.9529985189437866, - -1.892795443534851, - -1.835308313369751, - -1.7821050882339478, - -1.7346372604370117, - -1.694199562072754, - -1.6618947982788086, - -1.6386044025421143, - -1.6249635219573975, - -1.6213444471359253, - -2.363379955291748, - -2.3581180572509766, - -2.342879295349121, - -2.3180794715881348, - -2.2843947410583496, - -2.242744207382202, - -2.1942636966705322, - -2.1402759552001953, - -2.0822536945343018, - -2.0217792987823486, - -1.9605025053024292, - -1.900094747543335, - -1.8422037363052368, - -1.7884087562561035, - -1.7401771545410156, - -1.698824405670166, - -1.6654785871505737, - -1.6410492658615112, - -1.626202940940857, - -1.6213444471359253, - -2.363379955291748, - -2.359379291534424, - -2.345367431640625, - -2.3217263221740723, - -2.2891011238098145, - -2.2483816146850586, - -2.200678586959839, - -2.1472933292388916, - -2.089681625366211, - -2.0294156074523926, - -1.9681388139724731, - -1.9075227975845337, - -1.849220871925354, - -1.7948235273361206, - -1.745814561843872, - -1.7035307884216309, - -1.6691255569458008, - -1.6435372829437256, - -1.6274641752243042, - -1.6213444471359253, - -2.363379955291748, - -2.3605258464813232, - -2.3476288318634033, - -2.3250412940979004, - -2.293379068374634, - -2.2535059452056885, - -2.2065093517303467, - -2.1536715030670166, - -2.096433639526367, - -2.0363569259643555, - -1.9750800132751465, - -1.9142746925354004, - -1.855599284172058, - -1.800654411315918, - -1.750938892364502, - -1.7078087329864502, - -1.672440528869629, - -1.6457988023757935, - -1.628610610961914, - -1.6213444471359253, - -2.363379955291748, - -2.3614330291748047, - -2.349418878555298, - -2.327665090560913, - -2.296765089035034, - -2.257561683654785, - -2.2111244201660156, - -2.158720016479492, - -2.1017775535583496, - -2.0418508052825928, - -1.9805738925933838, - -1.9196186065673828, - -1.8606476783752441, - -1.805269479751587, - -1.7549947500228882, - -1.7111947536468506, - -1.675064206123352, - -1.6475887298583984, - -1.629517912864685, - -1.6213444471359253, - -2.363379955291748, - -2.3620030879974365, - -2.350543260574341, - -2.329313278198242, - -2.298892021179199, - -2.2601094245910645, - -2.2140235900878906, - -2.161891222000122, - -2.1051347255706787, - -2.045301914215088, - -1.984025001525879, - -1.9229756593704224, - -1.863818883895874, - -1.8081685304641724, - -1.7575424909591675, - -1.7133216857910156, - -1.6767123937606812, - -1.648713231086731, - -1.6300878524780273, - -1.6213444471359253, - -2.363379955291748, - -2.3621740341186523, - -2.3508803844451904, - -2.3298072814941406, - -2.299529552459717, - -2.260873317718506, - -2.214892625808716, - -2.162841796875, - -2.1061408519744873, - -2.0463364124298096, - -1.9850594997406006, - -1.9239819049835205, - -1.8647695779800415, - -1.8090375661849976, - -1.7583062648773193, - -1.7139593362808228, - -1.6772065162658691, - -1.649050235748291, - -1.6302587985992432, - -1.6213444471359253, - -2.363379955291748, - -2.361927032470703, - -2.350393533706665, - -2.3290936946868896, - -2.2986087799072266, - -2.259770154953003, - -2.213637351989746, - -2.161468744277954, - -2.104687452316284, - -2.044842004776001, - -1.9835652112960815, - -1.9225283861160278, - -1.863396406173706, - -1.8077822923660278, - -1.7572031021118164, - -1.7130383253097534, - -1.6764928102493286, - -1.6485633850097656, - -1.6300119161605835, - -1.6213444471359253, - -2.363379955291748, - -2.3612895011901855, - -2.349135398864746, - -2.327249526977539, - -2.2962288856506348, - -2.2569196224212646, - -2.2103939056396484, - -2.1579205989837646, - -2.100931406021118, - -2.040980815887451, - -1.9797041416168213, - -1.918772578239441, - -1.8598483800888062, - -1.8045387268066406, - -1.7543525695800781, - -1.7106586694717407, - -1.6746487617492676, - -1.6473053693771362, - -1.6293742656707764, - -1.6213444471359253, - -2.363379955291748, - -2.3603298664093018, - -2.347242593765259, - -2.324475049972534, - -2.2926483154296875, - -2.2526307106018066, - -2.2055134773254395, - -2.1525821685791016, - -2.095280408859253, - -2.0351712703704834, - -1.973894476890564, - -1.9131214618682861, - -1.8545098304748535, - -1.7996585369110107, - -1.7500636577606201, - -1.7070780992507935, - -1.6718742847442627, - -1.645412564277649, - -1.6284147500991821, - -1.6213444471359253, - -2.363379955291748, - -2.3591525554656982, - -2.3449201583862305, - -2.321070671081543, - -2.288254976272583, - -2.247368097305298, - -2.1995253562927246, - -2.1460318565368652, - -2.088346481323242, - -2.028042793273926, - -1.9667659997940063, - -1.9061874151229858, - -1.8479593992233276, - -1.793670415878296, - -1.7448011636734009, - -1.7026846408843994, - -1.6684699058532715, - -1.643090009689331, - -1.6272374391555786, - -1.6213444471359253, - -2.363379955291748, - -2.3578851222991943, - -2.3424196243286133, - -2.3174052238464355, - -2.283524990081787, - -2.2417023181915283, - -2.1930782794952393, - -2.138979196548462, - -2.080880880355835, - -2.0203680992126465, - -1.9590911865234375, - -1.8987219333648682, - -1.8409068584442139, - -1.787223219871521, - -1.7391352653503418, - -1.697954535484314, - -1.6648045778274536, - -1.6405894756317139, - -1.6259698867797852, - -1.6213444471359253, - -2.363379955291748, - -2.3566646575927734, - -2.3400120735168457, - -2.313876152038574, - -2.27897047996521, - -2.2362468242645264, - -2.186870813369751, - -2.1321887969970703, - -2.073692798614502, - -2.0129783153533936, - -1.9517016410827637, - -1.8915339708328247, - -1.8341165781021118, - -1.7810157537460327, - -1.7336798906326294, - -1.6934001445770264, - -1.6612753868103027, - -1.6381818056106567, - -1.6247494220733643, - -1.6213444471359253, - -2.363379955291748, - -2.355623483657837, - -2.3379580974578857, - -2.310865879058838, - -2.27508544921875, - -2.231593370437622, - -2.1815755367279053, - -2.126396417617798, - -2.067561388015747, - -2.0066750049591064, - -1.9453980922698975, - -1.8854023218154907, - -1.8283241987228394, - -1.7757205963134766, - -1.7290263175964355, - -1.689515233039856, - -1.6582649946212769, - -1.6361280679702759, - -1.6237082481384277, - -1.6213444471359253 - ] - }, - { - "alphahull": 0, - "color": "#FFA15A", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.4513587951660156, - -0.45059487223625183, - -0.44832396507263184, - -0.4446079730987549, - -0.4395483136177063, - -0.4332829713821411, - -0.42598283290863037, - -0.41784706711769104, - -0.4090975821018219, - -0.3999730348587036, - -0.3907223045825958, - -0.38159772753715515, - -0.372848242521286, - -0.3647124767303467, - -0.35741233825683594, - -0.35114699602127075, - -0.34608733654022217, - -0.3423713445663452, - -0.3401004374027252, - -0.3393365144729614, - -0.4513587951660156, - -0.4584755003452301, - -0.46387022733688354, - -0.4673958420753479, - -0.4689561724662781, - -0.46850866079330444, - -0.46606549620628357, - -0.46169334650039673, - -0.4555114507675171, - -0.4476884603500366, - -0.43843773007392883, - -0.42801162600517273, - -0.4166945219039917, - -0.4047951400279999, - -0.39263805747032166, - -0.3805548846721649, - -0.3688752055168152, - -0.3579176366329193, - -0.3479810655117035, - -0.3393365144729614, - -0.4513587951660156, - -0.4655021131038666, - -0.4777318239212036, - -0.4877142906188965, - -0.4951772391796112, - -0.4999171197414398, - -0.5018045902252197, - -0.5007882118225098, - -0.4968956708908081, - -0.4902331829071045, - -0.4809824526309967, - -0.46939584612846375, - -0.45578938722610474, - -0.44053423404693604, - -0.42404648661613464, - -0.40677595138549805, - -0.38919365406036377, - -0.3717792332172394, - -0.35500767827033997, - -0.3393365144729614, - -0.4513587951660156, - -0.4709133207798004, - -0.48840662837028503, - -0.5033615231513977, - -0.5153700709342957, - -0.5241047143936157, - -0.5293272137641907, - -0.5308951139450073, - -0.5287656188011169, - -0.5229968428611755, - -0.5137460827827454, - -0.5012657642364502, - -0.4858962893486023, - -0.468056857585907, - -0.44823411107063293, - -0.4269687533378601, - -0.4048408567905426, - -0.3824540078639984, - -0.3604188859462738, - -0.3393365144729614, - -0.4513587951660156, - -0.47412270307540894, - -0.494737833738327, - -0.5126418471336365, - -0.5273464322090149, - -0.5384503602981567, - -0.545650839805603, - -0.5487514734268188, - -0.5476676821708679, - -0.5424289107322693, - -0.5331782102584839, - -0.5201678276062012, - -0.5037526488304138, - -0.4843805134296417, - -0.46257978677749634, - -0.43894511461257935, - -0.41412121057510376, - -0.3887852430343628, - -0.3636282682418823, - -0.3393365144729614, - -0.4513587951660156, - -0.47478246688842773, - -0.49603939056396484, - -0.5145496726036072, - -0.5298084616661072, - -0.5413994789123535, - -0.5490066409111023, - -0.5524223446846008, - -0.55155348777771, - -0.5464237332344055, - -0.5371729731559753, - -0.5240536332130432, - -0.5074235200881958, - -0.4877362847328186, - -0.4655289053916931, - -0.441407173871994, - -0.41602903604507446, - -0.3900867700576782, - -0.3642880320549011, - -0.3393365144729614, - -0.4513587951660156, - -0.4728211462497711, - -0.49217021465301514, - -0.508878231048584, - -0.5224894285202026, - -0.5326325297355652, - -0.5390308499336243, - -0.5415099263191223, - -0.5400019884109497, - -0.534548282623291, - -0.5252975225448608, - -0.512502133846283, - -0.4965110719203949, - -0.4777604937553406, - -0.4567619264125824, - -0.4340881407260895, - -0.41035759449005127, - -0.3862176239490509, - -0.3623267114162445, - -0.3393365144729614, - -0.4513587951660156, - -0.46845126152038574, - -0.48354965448379517, - -0.49624210596084595, - -0.5061824321746826, - -0.5130994915962219, - -0.516804575920105, - -0.5171966552734375, - -0.5142650008201599, - -0.508089542388916, - -0.4988388419151306, - -0.48676514625549316, - -0.47219783067703247, - -0.4555342197418213, - -0.43722888827323914, - -0.41778114438056946, - -0.39772146940231323, - -0.37759706377983093, - -0.35795682668685913, - -0.3393365144729614, - -0.4513587951660156, - -0.4621463418006897, - -0.47111183404922485, - -0.4780106544494629, - -0.4826546311378479, - -0.4849171042442322, - -0.4847363829612732, - -0.48211735486984253, - -0.4771314561367035, - -0.4699147343635559, - -0.4606640040874481, - -0.44963163137435913, - -0.4371185302734375, - -0.4234659969806671, - -0.4090465009212494, - -0.39425331354141235, - -0.3794899880886078, - -0.36515921354293823, - -0.3516519069671631, - -0.3393365144729614, - -0.4513587951660156, - -0.4545896649360657, - -0.4562045633792877, - -0.45615947246551514, - -0.45445555448532104, - -0.451139360666275, - -0.44630128145217896, - -0.4400733709335327, - -0.432625412940979, - -0.4241606295108795, - -0.41490989923477173, - -0.40512555837631226, - -0.3950745165348053, - -0.38503092527389526, - -0.37526875734329224, - -0.3660542666912079, - -0.35763880610466003, - -0.3502519726753235, - -0.34409523010253906, - -0.3393365144729614, - -0.4513587951660156, - -0.446600079536438, - -0.44044333696365356, - -0.433056503534317, - -0.42464107275009155, - -0.4154265820980072, - -0.4056644141674042, - -0.39562079310417175, - -0.3855697512626648, - -0.3757854104042053, - -0.3665347099304199, - -0.35806989669799805, - -0.3506219685077667, - -0.3443940281867981, - -0.3395559787750244, - -0.336239755153656, - -0.3345358371734619, - -0.33449074625968933, - -0.3361056447029114, - -0.3393365144729614, - -0.4513587951660156, - -0.43904340267181396, - -0.4255360960960388, - -0.41120532155036926, - -0.3964419960975647, - -0.38164883852005005, - -0.36722931265830994, - -0.35357680916786194, - -0.3410637080669403, - -0.33003130555152893, - -0.32078057527542114, - -0.31356385350227356, - -0.3085779845714569, - -0.30595892667770386, - -0.3057782053947449, - -0.30804067850112915, - -0.31268468499183655, - -0.3195834755897522, - -0.32854896783828735, - -0.3393365144729614, - -0.4513587951660156, - -0.4327384829521179, - -0.4130982756614685, - -0.3929738402366638, - -0.3729141652584076, - -0.3534664511680603, - -0.33516111969947815, - -0.31849750876426697, - -0.3039301633834839, - -0.29185646772384644, - -0.28260576725006104, - -0.27643030881881714, - -0.27349865436553955, - -0.27389073371887207, - -0.2775958180427551, - -0.28451284766197205, - -0.2944532036781311, - -0.3071456551551819, - -0.3222440481185913, - -0.3393365144729614, - -0.4513587951660156, - -0.42836859822273254, - -0.40447768568992615, - -0.3803377151489258, - -0.3566071689128876, - -0.33393338322639465, - -0.3129348158836365, - -0.29418423771858215, - -0.2781931757926941, - -0.26539772748947144, - -0.25614702701568604, - -0.25069332122802734, - -0.24918539822101593, - -0.2516644299030304, - -0.25806277990341187, - -0.2682058811187744, - -0.28181707859039307, - -0.2985250949859619, - -0.31787416338920593, - -0.3393365144729614, - -0.4513587951660156, - -0.4264072775840759, - -0.40060853958129883, - -0.3746662735939026, - -0.34928813576698303, - -0.3251664340496063, - -0.30295905470848083, - -0.28327181935310364, - -0.26664167642593384, - -0.2535223364830017, - -0.24427159130573273, - -0.23914185166358948, - -0.23827297985553741, - -0.24168866872787476, - -0.24929580092430115, - -0.2608868479728699, - -0.2761456370353699, - -0.2946559190750122, - -0.3159128427505493, - -0.3393365144729614, - -0.4513587951660156, - -0.4270670413970947, - -0.40191006660461426, - -0.3765740990638733, - -0.3517501950263977, - -0.3281155526638031, - -0.3063147962093353, - -0.28694266080856323, - -0.2705274820327759, - -0.25751709938049316, - -0.24826638400554657, - -0.24302765727043152, - -0.241943821310997, - -0.24504442512989044, - -0.2522449195384979, - -0.26334887742996216, - -0.2780534625053406, - -0.29595747590065, - -0.3165726065635681, - -0.3393365144729614, - -0.4513587951660156, - -0.43027642369270325, - -0.40824130177497864, - -0.38585445284843445, - -0.36372655630111694, - -0.3424612283706665, - -0.32263848185539246, - -0.30479905009269714, - -0.28942954540252686, - -0.2769492268562317, - -0.2676984965801239, - -0.2619296908378601, - -0.2598001956939697, - -0.2613680958747864, - -0.26659059524536133, - -0.2753252387046814, - -0.28733378648757935, - -0.302288681268692, - -0.31978198885917664, - -0.3393365144729614, - -0.4513587951660156, - -0.4356876313686371, - -0.41891610622406006, - -0.40150168538093567, - -0.3839193880558014, - -0.3666488528251648, - -0.3501611351966858, - -0.3349059522151947, - -0.3212994933128357, - -0.30971288681030273, - -0.30046215653419495, - -0.29379963874816895, - -0.2899071276187897, - -0.2888907194137573, - -0.2907782196998596, - -0.29551807045936584, - -0.30298101902008057, - -0.31296348571777344, - -0.3251931965351105, - -0.3393365144729614, - -0.4513587951660156, - -0.44271427392959595, - -0.4327777028083801, - -0.42182013392448425, - -0.4101404845714569, - -0.39805731177330017, - -0.38590022921562195, - -0.3740008473396301, - -0.3626837432384491, - -0.352257639169693, - -0.3430069088935852, - -0.33518391847610474, - -0.3290020227432251, - -0.32462984323501587, - -0.3221867084503174, - -0.32173916697502136, - -0.32329949736595154, - -0.3268250823020935, - -0.33221983909606934, - -0.3393365144729614, - -0.4513587951660156, - -0.45059487223625183, - -0.44832396507263184, - -0.44460800290107727, - -0.4395483136177063, - -0.4332829713821411, - -0.42598286271095276, - -0.4178470969200134, - -0.4090976119041443, - -0.3999730348587036, - -0.3907223343849182, - -0.38159775733947754, - -0.3728482723236084, - -0.3647124767303467, - -0.3574123680591583, - -0.35114702582359314, - -0.34608733654022217, - -0.3423713743686676, - -0.3401004374027252, - -0.3393365144729614 - ], - "y": [ - 0.4513587951660156, - 0.4748595058917999, - 0.4961913228034973, - 0.5147724151611328, - 0.5300958752632141, - 0.5417437553405762, - 0.5493984222412109, - 0.5528509020805359, - 0.5520070791244507, - 0.5468900203704834, - 0.537639319896698, - 0.5245072245597839, - 0.5078520178794861, - 0.48812800645828247, - 0.46587318181991577, - 0.44169455766677856, - 0.4162517488002777, - 0.3902387022972107, - 0.3643650412559509, - 0.3393365144729614, - 0.4513587951660156, - 0.47337138652801514, - 0.4932556450366974, - 0.5104692578315735, - 0.5245426893234253, - 0.5350919365882874, - 0.5418293476104736, - 0.5445711612701416, - 0.5432425141334534, - 0.5378797054290771, - 0.528628945350647, - 0.5157426595687866, - 0.4995723366737366, - 0.48055899143218994, - 0.45922133326530457, - 0.43614134192466736, - 0.4119485914707184, - 0.38730302453041077, - 0.36287692189216614, - 0.3393365144729614, - 0.4513587951660156, - 0.4694150388240814, - 0.4854509234428406, - 0.4990290403366089, - 0.5097789764404297, - 0.5174075365066528, - 0.5217065811157227, - 0.5225589275360107, - 0.5199412703514099, - 0.5139250159263611, - 0.5046743154525757, - 0.49244144558906555, - 0.4775601029396057, - 0.46043622493743896, - 0.44153690338134766, - 0.42137765884399414, - 0.4005083441734314, - 0.37949830293655396, - 0.3589205741882324, - 0.3393365144729614, - 0.4513587951660156, - 0.46341925859451294, - 0.4736229181289673, - 0.4816914200782776, - 0.4874047040939331, - 0.4906069040298462, - 0.4912106692790985, - 0.48919957876205444, - 0.4846284091472626, - 0.4776218831539154, - 0.4683711528778076, - 0.4571285545825958, - 0.444200724363327, - 0.42994028329849243, - 0.414736270904541, - 0.39900338649749756, - 0.3831707537174225, - 0.36767029762268066, - 0.35292482376098633, - 0.3393365144729614, - 0.4513587951660156, - 0.45603376626968384, - 0.4590533673763275, - 0.46033525466918945, - 0.4598444402217865, - 0.4575943350791931, - 0.45364630222320557, - 0.4481080174446106, - 0.4411305785179138, - 0.43290430307388306, - 0.42365357279777527, - 0.41363072395324707, - 0.40310919284820557, - 0.3923759162425995, - 0.38172370195388794, - 0.37144312262535095, - 0.36181458830833435, - 0.3531007468700409, - 0.34553930163383484, - 0.3393365144729614, - 0.4513587951660156, - 0.4480588734149933, - 0.4433211386203766, - 0.4372748136520386, - 0.43008479475975037, - 0.42194727063179016, - 0.41308414936065674, - 0.40373724699020386, - 0.39416149258613586, - 0.3846180737018585, - 0.37536734342575073, - 0.3666616380214691, - 0.35873839259147644, - 0.35181376338005066, - 0.346076637506485, - 0.3416834771633148, - 0.3387541174888611, - 0.33736851811408997, - 0.3375644087791443, - 0.3393365144729614, - 0.4513587951660156, - 0.44035881757736206, - 0.4281310439109802, - 0.4150089919567108, - 0.4013506770133972, - 0.38752859830856323, - 0.3739197850227356, - 0.3608954846858978, - 0.34881094098091125, - 0.33799582719802856, - 0.3287450969219208, - 0.3213111162185669, - 0.3158966302871704, - 0.3126493990421295, - 0.31165796518325806, - 0.3129493296146393, - 0.3164883255958557, - 0.3221784234046936, - 0.32986435294151306, - 0.3393365144729614, - 0.4513587951660156, - 0.43376797437667847, - 0.415129154920578, - 0.3959507346153259, - 0.37675583362579346, - 0.3580681085586548, - 0.34039726853370667, - 0.3242253065109253, - 0.3099933862686157, - 0.29808974266052246, - 0.2888390123844147, - 0.28249356150627136, - 0.27922648191452026, - 0.2791268825531006, - 0.2821974754333496, - 0.2883545160293579, - 0.29743003845214844, - 0.309176504611969, - 0.32327350974082947, - 0.3393365144729614, - 0.4513587951660156, - 0.4290006160736084, - 0.405724436044693, - 0.38216519355773926, - 0.35896554589271545, - 0.3367583453655243, - 0.3161492645740509, - 0.29770052433013916, - 0.2819153070449829, - 0.26922428607940674, - 0.25997355580329895, - 0.25441545248031616, - 0.25270169973373413, - 0.2548788785934448, - 0.26088768243789673, - 0.2705642282962799, - 0.28364452719688416, - 0.299771785736084, - 0.3185061514377594, - 0.3393365144729614, - 0.4513587951660156, - 0.4265733063220978, - 0.4009360373020172, - 0.3751463294029236, - 0.34990766644477844, - 0.32590851187705994, - 0.3038034439086914, - 0.2841954827308655, - 0.26761943101882935, - 0.2545275092124939, - 0.24527676403522491, - 0.2401195615530014, - 0.23919662833213806, - 0.24253304302692413, - 0.2500378489494324, - 0.2615063190460205, - 0.2766256630420685, - 0.2949834167957306, - 0.3160788416862488, - 0.3393365144729614, - 0.4513587951660156, - 0.4267491102218628, - 0.4012828469276428, - 0.3756547272205353, - 0.35056373476982117, - 0.3266943693161011, - 0.3046976327896118, - 0.2851736545562744, - 0.26865488290786743, - 0.2555919885635376, - 0.2463412582874298, - 0.24115502834320068, - 0.240174800157547, - 0.24342724680900574, - 0.2508237063884735, - 0.26216238737106323, - 0.2771340608596802, - 0.2953302264213562, - 0.3162546455860138, - 0.3393365144729614, - 0.4513587951660156, - 0.4295089840888977, - 0.40672731399536133, - 0.3836352527141571, - 0.360862672328949, - 0.33903074264526367, - 0.3187350034713745, - 0.30052903294563293, - 0.2849094867706299, - 0.27230238914489746, - 0.26305168867111206, - 0.25740963220596313, - 0.2555301785469055, - 0.25746458768844604, - 0.2631601095199585, - 0.27246132493019104, - 0.285114586353302, - 0.3007746934890747, - 0.3190145194530487, - 0.3393365144729614, - 0.4513587951660156, - 0.4345538318157196, - 0.41667941212654114, - 0.3982231318950653, - 0.3796883821487427, - 0.36158081889152527, - 0.3443942964076996, - 0.32859766483306885, - 0.31462177634239197, - 0.3028479218482971, - 0.29359719157218933, - 0.2871219515800476, - 0.28359881043434143, - 0.2831239104270935, - 0.2857101559638977, - 0.29128706455230713, - 0.2997024655342102, - 0.3107267916202545, - 0.3240593671798706, - 0.3393365144729614, - 0.4513587951660156, - 0.441336989402771, - 0.4300607144832611, - 0.417837530374527, - 0.4050008952617645, - 0.3919009566307068, - 0.37889501452445984, - 0.3663378655910492, - 0.354572057723999, - 0.34391847252845764, - 0.33466774225234985, - 0.3270722031593323, - 0.32133904099464417, - 0.31762462854385376, - 0.3160303235054016, - 0.316599577665329, - 0.3193168640136719, - 0.3241080641746521, - 0.330842524766922, - 0.3393365144729614, - 0.4513587951660156, - 0.4491233825683594, - 0.4454210698604584, - 0.4403529167175293, - 0.4340571165084839, - 0.4267054498195648, - 0.4184983968734741, - 0.40965986251831055, - 0.40043091773986816, - 0.3910633325576782, - 0.38181260228157043, - 0.3729310929775238, - 0.36466100811958313, - 0.35722801089286804, - 0.35083481669425964, - 0.34565579891204834, - 0.3418322503566742, - 0.33946844935417175, - 0.3386289179325104, - 0.3393365144729614, - 0.4513587951660156, - 0.4570692181587219, - 0.46109601855278015, - 0.46332940459251404, - 0.46370840072631836, - 0.462222695350647, - 0.45891281962394714, - 0.4538690447807312, - 0.44722896814346313, - 0.43917369842529297, - 0.4299229681491852, - 0.4197291135787964, - 0.40887022018432617, - 0.39764243364334106, - 0.3863520622253418, - 0.3753070831298828, - 0.36480873823165894, - 0.35514339804649353, - 0.3465747535228729, - 0.3393365144729614, - 0.4513587951660156, - 0.46431347727775574, - 0.47538694739341736, - 0.4842771589756012, - 0.4907416105270386, - 0.4946039319038391, - 0.4957588315010071, - 0.4941747784614563, - 0.48989495635032654, - 0.4830361306667328, - 0.473785400390625, - 0.4623951315879822, - 0.4491759240627289, - 0.434488445520401, - 0.41873329877853394, - 0.40234026312828064, - 0.3857564926147461, - 0.36943432688713074, - 0.35381901264190674, - 0.3393365144729614, - 0.4513587951660156, - 0.47007110714912415, - 0.4867451786994934, - 0.50092613697052, - 0.5122271776199341, - 0.520340085029602, - 0.5250434875488281, - 0.5262091755867004, - 0.5238052606582642, - 0.517897367477417, - 0.5086466670036316, - 0.4963054358959198, - 0.4812103509902954, - 0.46377313137054443, - 0.44446948170661926, - 0.42382586002349854, - 0.4024054706096649, - 0.3807925581932068, - 0.35957664251327515, - 0.3393365144729614, - 0.4513587951660156, - 0.47371819615364075, - 0.4939398467540741, - 0.5114721655845642, - 0.5258368849754333, - 0.5366422533988953, - 0.5435934066772461, - 0.5465008616447449, - 0.5452852249145508, - 0.5399796962738037, - 0.5307289361953735, - 0.517785370349884, - 0.5015020370483398, - 0.4823230504989624, - 0.4607716202735901, - 0.4374355971813202, - 0.4129514992237091, - 0.3879872262477875, - 0.36322373151779175, - 0.3393365144729614, - 0.4513587951660156, - 0.4748595058917999, - 0.4961913228034973, - 0.5147724151611328, - 0.5300958752632141, - 0.5417437553405762, - 0.5493984222412109, - 0.5528509020805359, - 0.5520070791244507, - 0.5468900203704834, - 0.537639319896698, - 0.5245072245597839, - 0.5078520178794861, - 0.48812800645828247, - 0.46587318181991577, - 0.44169455766677856, - 0.4162517488002777, - 0.3902387022972107, - 0.3643650412559509, - 0.3393365144729614 - ], - "z": [ - -3.0090584754943848, - -3.000325918197632, - -2.9816460609436035, - -2.95352840423584, - -2.9167397022247314, - -2.872283935546875, - -2.821373224258423, - -2.7653963565826416, - -2.705880641937256, - -2.64444899559021, - -2.582777500152588, - -2.522548198699951, - -2.4654042720794678, - -2.4129040241241455, - -2.3664796352386475, - -2.3273978233337402, - -2.2967240810394287, - -2.2752954959869385, - -2.2636964321136475, - -2.2622432708740234, - -3.0090584754943848, - -2.9993672370910645, - -2.9797544479370117, - -2.9507555961608887, - -2.913161516189575, - -2.867997884750366, - -2.8164961338043213, - -2.760061502456665, - -2.700233221054077, - -2.638643264770508, - -2.5769717693328857, - -2.5169010162353516, - -2.460069179534912, - -2.408026933670044, - -2.3621935844421387, - -2.323819637298584, - -2.2939512729644775, - -2.2734038829803467, - -2.262737512588501, - -2.2622432708740234, - -3.0090584754943848, - -2.9989066123962402, - -2.9788460731506348, - -2.9494240283966064, - -2.911442995071411, - -2.865939140319824, - -2.8141536712646484, - -2.7574989795684814, - -2.6975207328796387, - -2.635854721069336, - -2.574183225631714, - -2.514188528060913, - -2.4575068950653076, - -2.405684471130371, - -2.360135078430176, - -2.322100877761841, - -2.2926197052001953, - -2.2724952697753906, - -2.2622768878936768, - -2.2622432708740234, - -3.0090584754943848, - -2.9989943504333496, - -2.9790189266204834, - -2.9496774673461914, - -2.9117703437805176, - -2.866331100463867, - -2.8145997524261475, - -2.7579870223999023, - -2.6980371475219727, - -2.636385679244995, - -2.574714183807373, - -2.514704942703247, - -2.4579946994781494, - -2.40613055229187, - -2.3605270385742188, - -2.3224282264709473, - -2.2928731441497803, - -2.2726683616638184, - -2.262364625930786, - -2.2622432708740234, - -3.0090584754943848, - -2.9996206760406494, - -2.980254650115967, - -2.951488971710205, - -2.9141077995300293, - -2.869131088256836, - -2.8177857398986816, - -2.761472225189209, - -2.7017266750335693, - -2.640178680419922, - -2.5785069465637207, - -2.5183942317962646, - -2.461479902267456, - -2.4093165397644043, - -2.3633270263671875, - -2.324765682220459, - -2.294684410095215, - -2.2739040851593018, - -2.262990951538086, - -2.2622432708740234, - -3.0090584754943848, - -3.000717878341675, - -2.98241925239563, - -2.9546618461608887, - -2.9182024002075195, - -2.8740358352661133, - -2.823366641998291, - -2.7675771713256836, - -2.708189010620117, - -2.646822214126587, - -2.585150718688965, - -2.5248568058013916, - -2.4675850868225098, - -2.4148974418640137, - -2.368231773376465, - -2.328860282897949, - -2.2978572845458984, - -2.276068687438965, - -2.2640883922576904, - -2.2622432708740234, - -3.0090584754943848, - -3.002167224884033, - -2.9852781295776367, - -2.9588522911071777, - -2.9236104488372803, - -2.8805136680603027, - -2.830737829208374, - -2.7756402492523193, - -2.716724395751953, - -2.655596971511841, - -2.5939254760742188, - -2.5333921909332275, - -2.4756481647491455, - -2.4222686290740967, - -2.3747096061706543, - -2.33426833152771, - -2.3020479679107666, - -2.2789275646209717, - -2.2655375003814697, - -2.2622432708740234, - -3.0090584754943848, - -3.0038113594055176, - -2.9885215759277344, - -2.963606595993042, - -2.929745674133301, - -2.8878626823425293, - -2.8391001224517822, - -2.784787893295288, - -2.726407527923584, - -2.6655516624450684, - -2.6038801670074463, - -2.5430753231048584, - -2.484795570373535, - -2.430630922317505, - -2.382058620452881, - -2.3404035568237305, - -2.306802272796631, - -2.2821707725524902, - -2.267181634902954, - -2.2622432708740234, - -3.0090584754943848, - -3.005472183227539, - -2.991797924041748, - -2.9684090614318848, - -2.935943365097046, - -2.8952865600585938, - -2.8475475311279297, - -2.7940285205841064, - -2.736189365386963, - -2.675607681274414, - -2.613936185836792, - -2.552856922149658, - -2.4940361976623535, - -2.4390783309936523, - -2.3894824981689453, - -2.3466012477874756, - -2.3116047382354736, - -2.285447359085083, - -2.2688424587249756, - -2.2622432708740234, - -3.0090584754943848, - -3.006969690322876, - -2.9947524070739746, - -2.9727396965026855, - -2.9415318965911865, - -2.9019806385040283, - -2.8551645278930664, - -2.802360773086548, - -2.745009660720825, - -2.684675455093384, - -2.6230037212371826, - -2.5616772174835205, - -2.502368450164795, - -2.446695327758789, - -2.39617657661438, - -2.352189779281616, - -2.3159351348876953, - -2.2884016036987305, - -2.2703399658203125, - -2.2622432708740234, - -3.0090584754943848, - -3.0081417560577393, - -2.9970645904541016, - -2.9761288166046143, - -2.9459056854248047, - -2.907219648361206, - -2.861125946044922, - -2.808881998062134, - -2.7519125938415527, - -2.691771984100342, - -2.6301004886627197, - -2.568580389022827, - -2.508889675140381, - -2.4526567459106445, - -2.4014155864715576, - -2.3565635681152344, - -2.319324493408203, - -2.2907137870788574, - -2.271512031555176, - -2.2622432708740234, - -3.0090584754943848, - -3.0088613033294678, - -2.998483896255493, - -2.9782094955444336, - -2.9485907554626465, - -2.910435914993286, - -2.864785671234131, - -2.812885284423828, - -2.756150245666504, - -2.6961286067962646, - -2.6344568729400635, - -2.5728180408477783, - -2.512892961502075, - -2.4563164710998535, - -2.4046318531036377, - -2.359248638153076, - -2.3214049339294434, - -2.292133092880249, - -2.2722315788269043, - -2.2622432708740234, - -3.0090584754943848, - -3.0090503692626953, - -2.998856782913208, - -2.9787559509277344, - -2.949295997619629, - -2.911280870437622, - -2.8657469749450684, - -2.813936948776245, - -2.757263422012329, - -2.697272777557373, - -2.635601282119751, - -2.5739312171936035, - -2.513944625854492, - -2.457277774810791, - -2.4054765701293945, - -2.3599538803100586, - -2.3219516277313232, - -2.292505979537964, - -2.272420644760132, - -2.2622432708740234, - -3.0090584754943848, - -3.008688449859619, - -2.998142719268799, - -2.9777092933654785, - -2.9479451179504395, - -2.9096627235412598, - -2.863905906677246, - -2.811922788619995, - -2.755131483078003, - -2.6950812339782715, - -2.6334095001220703, - -2.5717992782592773, - -2.511930465698242, - -2.4554367065429688, - -2.4038586616516113, - -2.358603000640869, - -2.3209047317504883, - -2.2917919158935547, - -2.2720587253570557, - -2.2622432708740234, - -3.0090584754943848, - -3.007814645767212, - -2.9964189529418945, - -2.97518253326416, - -2.9446845054626465, - -2.905757188796997, - -2.859461784362793, - -2.8070614337921143, - -2.749985456466675, - -2.689790725708008, - -2.6281192302703857, - -2.566653251647949, - -2.5070691108703613, - -2.4509925842285156, - -2.3999528884887695, - -2.3553426265716553, - -2.318378210067749, - -2.2900681495666504, - -2.2711849212646484, - -2.2622432708740234, - -3.0090584754943848, - -3.006523609161377, - -2.9938724040985107, - -2.971449851989746, - -2.9398677349090576, - -2.89998722076416, - -2.852896213531494, - -2.799879312515259, - -2.742382764816284, - -2.6819748878479004, - -2.6203033924102783, - -2.5590505599975586, - -2.499887228012085, - -2.444427013397217, - -2.3941829204559326, - -2.3505256175994873, - -2.314645528793335, - -2.2875218391418457, - -2.2698941230773926, - -2.2622432708740234, - -3.0090584754943848, - -3.004955768585205, - -2.990779161453247, - -2.9669156074523926, - -2.934016227722168, - -2.8929781913757324, - -2.8449206352233887, - -2.7911550998687744, - -2.733147621154785, - -2.672480821609497, - -2.610809326171875, - -2.5498154163360596, - -2.4911627769470215, - -2.4364514350891113, - -2.387173891067505, - -2.3446741104125977, - -2.3101112842559814, - -2.284428358078003, - -2.2683260440826416, - -2.2622432708740234, - -3.0090584754943848, - -3.0032804012298584, - -2.987474203109741, - -2.962071418762207, - -2.927764415740967, - -2.8854894638061523, - -2.836399555206299, - -2.7818338871002197, - -2.723280668258667, - -2.662337064743042, - -2.60066556930542, - -2.5399482250213623, - -2.481841564178467, - -2.4279303550720215, - -2.379685401916504, - -2.3384222984313965, - -2.305266857147217, - -2.281123638153076, - -2.266650676727295, - -2.2622432708740234, - -3.0090584754943848, - -3.0016791820526123, - -2.984315872192383, - -2.957441568374634, - -2.9217898845672607, - -2.8783328533172607, - -2.828256368637085, - -2.772925853729248, - -2.713850975036621, - -2.6526429653167725, - -2.5909714698791504, - -2.5305187702178955, - -2.472933530807495, - -2.4197871685028076, - -2.3725287914276123, - -2.3324477672576904, - -2.3006372451782227, - -2.2779650688171387, - -2.265049695968628, - -2.2622432708740234, - -3.0090584754943848, - -3.000325918197632, - -2.9816460609436035, - -2.95352840423584, - -2.9167397022247314, - -2.872283935546875, - -2.821373224258423, - -2.7653963565826416, - -2.705880641937256, - -2.64444899559021, - -2.582777500152588, - -2.522548198699951, - -2.4654042720794678, - -2.4129040241241455, - -2.3664796352386475, - -2.3273978233337402, - -2.2967240810394287, - -2.2752954959869385, - -2.2636964321136475, - -2.2622432708740234 - ] - }, - { - "alphahull": 0, - "color": "#FECB52", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.08693040907382965, - -0.08611781895160675, - -0.08482565730810165, - -0.08308916538953781, - -0.08095570653676987, - -0.07848348468542099, - -0.07573992758989334, - -0.07279987633228302, - -0.06974352896213531, - -0.0666542500257492, - -0.0636163130402565, - -0.060712575912475586, - -0.058022256940603256, - -0.055618733167648315, - -0.053567565977573395, - -0.05192471295595169, - -0.050734974443912506, - -0.050030820071697235, - -0.04983144253492355, - -0.05014228820800781, - -0.08693040907382965, - -0.08198726922273636, - -0.07667722553014755, - -0.07114511728286743, - -0.06554184854030609, - -0.06002026051282883, - -0.05473097041249275, - -0.049818255007267, - -0.04541611671447754, - -0.04164464771747589, - -0.038606707006692886, - -0.03638516739010811, - -0.035040635615587234, - -0.03460977226495743, - -0.03510434180498123, - -0.03651084750890732, - -0.038790926337242126, - -0.04188238084316254, - -0.04570088908076286, - -0.05014228820800781, - -0.08693040907382965, - -0.07836519926786423, - -0.0695318803191185, - -0.060671404004096985, - -0.05202546343207359, - -0.04382990300655365, - -0.03630825877189636, - -0.029665715992450714, - -0.024083469063043594, - -0.01971377804875374, - -0.016675837337970734, - -0.015052519738674164, - -0.01488809660077095, - -0.01618705689907074, - -0.018913976848125458, - -0.02299446612596512, - -0.028317216783761978, - -0.034737035632133484, - -0.04207881540060043, - -0.05014228820800781, - -0.08693040907382965, - -0.0756441131234169, - -0.0641639307141304, - -0.05280301719903946, - -0.041871264576911926, - -0.03166687861084938, - -0.02246818318963051, - -0.014526110142469406, - -0.00805729627609253, - -0.003238201141357422, - -0.00020026415586471558, - 0.0009736567735671997, - 0.00025150924921035767, - -0.0023469850420951843, - -0.00675094872713089, - -0.012840267270803452, - -0.020448829978704453, - -0.029369089752435684, - -0.039357732981443405, - -0.05014228820800781, - -0.08693040907382965, - -0.07411888986825943, - -0.061155084520578384, - -0.04839262366294861, - -0.03617963194847107, - -0.024849247187376022, - -0.014710534363985062, - -0.006040047854185104, - 0.000925704836845398, - 0.005996711552143097, - 0.009034648537635803, - 0.009956657886505127, - 0.00873757153749466, - 0.005410671234130859, - 0.00006667524576187134, - -0.007148630917072296, - -0.0160384364426136, - -0.026360243558883667, - -0.037832506000995636, - -0.05014228820800781, - -0.08693040907382965, - -0.07395480573177338, - -0.06083139777183533, - -0.047918155789375305, - -0.035567328333854675, - -0.024115808308124542, - -0.013875965029001236, - -0.005127117037773132, - 0.001892097294330597, - 0.006990201771259308, - 0.010028138756752014, - 0.010923050343990326, - 0.00965050607919693, - 0.006245233118534088, - 0.0008001178503036499, - -0.006536327302455902, - -0.01556396484375, - -0.02603655308485031, - -0.03766842186450958, - -0.05014228820800781, - -0.08693040907382965, - -0.0751696452498436, - -0.06322793662548065, - -0.051431022584438324, - -0.04010070115327835, - -0.029546033591032028, - -0.020054921507835388, - -0.011886250227689743, - -0.005262851715087891, - -0.00036538392305374146, - 0.002672553062438965, - 0.0037681013345718384, - 0.0028913691639900208, - 0.00006628036499023438, - -0.004630103707313538, - -0.011069700121879578, - -0.019076835364103317, - -0.028433091938495636, - -0.0388832613825798, - -0.05014228820800781, - -0.08693040907382965, - -0.07763175666332245, - -0.06808500736951828, - -0.05855056270956993, - -0.04928850382566452, - -0.04055148735642433, - -0.03257781267166138, - -0.02558499202132225, - -0.019763778895139694, - -0.01527295634150505, - -0.012235015630722046, - -0.010732829570770264, - -0.010807372629642487, - -0.012456614524126053, - -0.01563555747270584, - -0.020257506519556046, - -0.026196375489234924, - -0.033290162682533264, - -0.04134537652134895, - -0.05014228820800781, - -0.08693040907382965, - -0.08107434213161469, - -0.07487626373767853, - -0.06850525736808777, - -0.06213508918881416, - -0.055939532816410065, - -0.050087593495845795, - -0.04473887383937836, - -0.0400393009185791, - -0.03611704707145691, - -0.033079106360673904, - -0.03100835159420967, - -0.029961254447698593, - -0.029966391623020172, - -0.03102361410856247, - -0.03310408815741539, - -0.03615106642246246, - -0.04008142277598381, - -0.04478795826435089, - -0.05014228820800781, - -0.08693040907382965, - -0.08512432873249054, - -0.08286577463150024, - -0.08021634817123413, - -0.07724832743406296, - -0.0740426629781723, - -0.07068680226802826, - -0.06727227568626404, - -0.06389223784208298, - -0.060638874769210815, - -0.05760093778371811, - -0.05486128851771355, - -0.05249466001987457, - -0.05056560039520264, - -0.04912674427032471, - -0.048217326402664185, - -0.04786216467618942, - -0.048070937395095825, - -0.04883795231580734, - -0.05014228820800781, - -0.08693040907382965, - -0.08934285491704941, - -0.09118775278329849, - -0.09241478145122528, - -0.0929904654622078, - -0.09289910644292831, - -0.09214319288730621, - -0.09074335545301437, - -0.08873775601387024, - -0.08618111908435822, - -0.08314318209886551, - -0.07970681041479111, - -0.07596573233604431, - -0.07202199846506119, - -0.06798319518566132, - -0.06395947188138962, - -0.060060590505599976, - -0.056392911821603775, - -0.05305647477507591, - -0.05014228820800781, - -0.08693040907382965, - -0.09327276796102524, - -0.09894037991762161, - -0.1037786453962326, - -0.1076555997133255, - -0.11046548187732697, - -0.11213164031505585, - -0.1126086488366127, - -0.11188346147537231, - -0.1099758893251419, - -0.1069379523396492, - -0.10285251587629318, - -0.09783102571964264, - -0.09201045334339142, - -0.08554957062005997, - -0.07862460613250732, - -0.0714244619011879, - -0.0641455352306366, - -0.056986384093761444, - -0.050142284482717514, - -0.08693040907382965, - -0.09648820012807846, - -0.10528354346752167, - -0.11307650804519653, - -0.11965453624725342, - -0.1248381957411766, - -0.12848608195781708, - -0.1304987072944641, - -0.13082116842269897, - -0.1294446438550949, - -0.1264066994190216, - -0.12179021537303925, - -0.11572109162807465, - -0.10836489498615265, - -0.0999222844839096, - -0.09062354266643524, - -0.08072231709957123, - -0.07048869878053665, - -0.06020181626081467, - -0.050142284482717514, - -0.08693040907382965, - -0.09864071011543274, - -0.10952985286712646, - -0.11930079758167267, - -0.127687007188797, - -0.13445976376533508, - -0.13943427801132202, - -0.14247488975524902, - -0.14349865913391113, - -0.14247764647006989, - -0.13943970203399658, - -0.1344677209854126, - -0.12769727408885956, - -0.11931309103965759, - -0.10954384505748749, - -0.09865602105855942, - -0.08694660663604736, - -0.07473500818014145, - -0.06235433369874954, - -0.050142284482717514, - -0.08693040907382965, - -0.09949705004692078, - -0.11121915280818939, - -0.1217769980430603, - -0.13088256120681763, - -0.1382874846458435, - -0.14378979802131653, - -0.14723937213420868, - -0.1485421359539032, - -0.14766255021095276, - -0.14462462067604065, - -0.13951119780540466, - -0.1324617564678192, - -0.1236685961484909, - -0.1133715808391571, - -0.10185157507658005, - -0.089422807097435, - -0.07642431557178497, - -0.06321066617965698, - -0.050142284482717514, - -0.08693040907382965, - -0.09896440804004669, - -0.11016841232776642, - -0.12023679167032242, - -0.12889492511749268, - -0.1359066367149353, - -0.14108064770698547, - -0.14427587389945984, - -0.14540508389472961, - -0.1444375216960907, - -0.1413995921611786, - -0.13637414574623108, - -0.12949824333190918, - -0.12095946073532104, - -0.11099071800708771, - -0.0998639315366745, - -0.08788260072469711, - -0.0753735676407814, - -0.0626780241727829, - -0.050142284482717514, - -0.08693040907382965, - -0.09710050374269485, - -0.10649144649505615, - -0.1148470789194107, - -0.12193947285413742, - -0.12757515907287598, - -0.13160043954849243, - -0.13390547037124634, - -0.13442741334438324, - -0.13315202295780182, - -0.13011407852172852, - -0.1253964602947235, - -0.11912785470485687, - -0.11147923767566681, - -0.10265924781560898, - -0.09290847182273865, - -0.0824928879737854, - -0.07169660925865173, - -0.06081412360072136, - -0.050142284482717514, - -0.08693040907382965, - -0.09410732984542847, - -0.10058674961328506, - -0.10619191080331802, - -0.11076992750167847, - -0.11419592052698135, - -0.11637644469738007, - -0.11725202202796936, - -0.1167987585067749, - -0.11502900719642639, - -0.11199106276035309, - -0.10776780545711517, - -0.1024743989109993, - -0.09625525772571564, - -0.08928000926971436, - -0.08173893392086029, - -0.07383771985769272, - -0.06579190492630005, - -0.05782095342874527, - -0.050142284482717514, - -0.08693040907382965, - -0.09030923992395401, - -0.09309417009353638, - -0.09520921856164932, - -0.09659670293331146, - -0.09721877425909042, - -0.09705846011638641, - -0.09612014889717102, - -0.09442941099405289, - -0.09203238785266876, - -0.08899444341659546, - -0.08539846539497375, - -0.08134252578020096, - -0.07693727314472198, - -0.07230285555124283, - -0.06756570935249329, - -0.06285502761602402, - -0.05829932540655136, - -0.054022859781980515, - -0.05014228820800781, - -0.08693040907382965, - -0.08611781895160675, - -0.08482565730810165, - -0.08308915793895721, - -0.08095569908618927, - -0.0784834772348404, - -0.07573992013931274, - -0.07279986888170242, - -0.06974351406097412, - -0.06665423512458801, - -0.0636162981390953, - -0.06071256473660469, - -0.05802224576473236, - -0.05561871826648712, - -0.0535675585269928, - -0.051924705505371094, - -0.05073497071862221, - -0.05003081262111664, - -0.04983144253492355, - -0.05014228820800781 - ], - "y": [ - 0.26079127192497253, - 0.24735420942306519, - 0.2327784299850464, - 0.21746155619621277, - 0.20182135701179504, - 0.18628449738025665, - 0.17127475142478943, - 0.15720155835151672, - 0.14444877207279205, - 0.13336431980133057, - 0.12425048649311066, - 0.11735589802265167, - 0.11286864429712296, - 0.11091109365224838, - 0.1115366593003273, - 0.11472828686237335, - 0.12039889395236969, - 0.12839379906654358, - 0.13849496841430664, - 0.15042680501937866, - 0.26079127192497253, - 0.24825260043144226, - 0.23455071449279785, - 0.2200593799352646, - 0.20517386496067047, - 0.19030022621154785, - 0.17584417760372162, - 0.16220003366470337, - 0.14973996579647064, - 0.1388038694858551, - 0.1296900510787964, - 0.12264709174633026, - 0.1178671270608902, - 0.11548051983118057, - 0.1155523955821991, - 0.11808078736066818, - 0.12299671769142151, - 0.13016608357429504, - 0.13939335942268372, - 0.15042680501937866, - 0.26079127192497253, - 0.2504281997680664, - 0.23884254693984985, - 0.22635039687156677, - 0.2132924646139145, - 0.20002494752407074, - 0.1869097501039505, - 0.17430463433265686, - 0.16255339980125427, - 0.15197663009166718, - 0.14286279678344727, - 0.1354605257511139, - 0.1299717128276825, - 0.12654609978199005, - 0.12527713179588318, - 0.1261993944644928, - 0.1292877346277237, - 0.13445793092250824, - 0.14156894385814667, - 0.15042680501937866, - 0.26079127192497253, - 0.25364524126052856, - 0.2451888769865036, - 0.235652893781662, - 0.22529739141464233, - 0.21440483629703522, - 0.20327235758304596, - 0.19220362603664398, - 0.18150055408477783, - 0.17145510017871857, - 0.16234126687049866, - 0.15440768003463745, - 0.1478707194328308, - 0.1429087221622467, - 0.13965702056884766, - 0.13820430636405945, - 0.1385902315378189, - 0.140804260969162, - 0.14478598535060883, - 0.15042680501937866, - 0.26079127192497253, - 0.2575550973415375, - 0.25290197134017944, - 0.24695879220962524, - 0.23988771438598633, - 0.23188161849975586, - 0.2231588512659073, - 0.21395738422870636, - 0.20452819764614105, - 0.19512848556041718, - 0.18601466715335846, - 0.17743532359600067, - 0.1696244776248932, - 0.16279521584510803, - 0.1571337878704071, - 0.15279464423656464, - 0.14989614486694336, - 0.14851734042167664, - 0.14869584143161774, - 0.15042680501937866, - 0.26079127192497253, - 0.26173409819602966, - 0.2611459493637085, - 0.2590429186820984, - 0.25548237562179565, - 0.250561386346817, - 0.24441422522068024, - 0.2372085601091385, - 0.22914093732833862, - 0.22043141722679138, - 0.21131759881973267, - 0.20204806327819824, - 0.19287565350532532, - 0.1840505748987198, - 0.17581355571746826, - 0.16838929057121277, - 0.1619802713394165, - 0.15676134824752808, - 0.15287484228610992, - 0.15042680501937866, - 0.26079127192497253, - 0.2657293677330017, - 0.2690275311470032, - 0.2705957889556885, - 0.27039140462875366, - 0.26841992139816284, - 0.2647351026535034, - 0.2594375014305115, - 0.25267159938812256, - 0.24462193250656128, - 0.23550811409950256, - 0.22557871043682098, - 0.2151045948266983, - 0.20437146723270416, - 0.19367210566997528, - 0.18329833447933197, - 0.1735331416130066, - 0.16464290022850037, - 0.15687011182308197, - 0.15042680501937866, - 0.26079127192497253, - 0.26910796761512756, - 0.27569258213043213, - 0.2803654670715332, - 0.2829992175102234, - 0.28352195024490356, - 0.2819194495677948, - 0.27823537588119507, - 0.27257025241851807, - 0.265078604221344, - 0.2559647858142853, - 0.24547737836837769, - 0.2339024841785431, - 0.22155579924583435, - 0.2087741494178772, - 0.1959061473608017, - 0.18330281972885132, - 0.17130793631076813, - 0.16024871170520782, - 0.15042680501937866, - 0.26079127192497253, - 0.271503746509552, - 0.2804188132286072, - 0.2872932553291321, - 0.29193955659866333, - 0.29423096776008606, - 0.29410502314567566, - 0.2915651500225067, - 0.2866806089878082, - 0.2795846462249756, - 0.2704707980155945, - 0.25958773493766785, - 0.24723224341869354, - 0.2337413877248764, - 0.2194831520318985, - 0.20484647154808044, - 0.1902305781841278, - 0.17603418231010437, - 0.16264450550079346, - 0.15042680501937866, - 0.26079127192497253, - 0.2726571261882782, - 0.28269410133361816, - 0.2906283736228943, - 0.2962435483932495, - 0.29938647150993347, - 0.2999713718891144, - 0.2979823350906372, - 0.29347357153892517, - 0.2865681052207947, - 0.2774542570114136, - 0.2663806974887848, - 0.25364941358566284, - 0.23960773646831512, - 0.2246386557817459, - 0.209150493144989, - 0.1935657262802124, - 0.17830947041511536, - 0.16379788517951965, - 0.15042680501937866, - 0.26079127192497253, - 0.27244311571121216, - 0.2822718620300293, - 0.2900094985961914, - 0.29544487595558167, - 0.2984297573566437, - 0.29888275265693665, - 0.2967914938926697, - 0.29221299290657043, - 0.28527218103408813, - 0.27615833282470703, - 0.26512011885643005, - 0.2524585723876953, - 0.2385191172361374, - 0.22368194162845612, - 0.20835179090499878, - 0.19294682145118713, - 0.17788724601268768, - 0.16358385980129242, - 0.15042680501937866, - 0.26079127192497253, - 0.2708848714828491, - 0.27919790148735046, - 0.2855035960674286, - 0.2896300256252289, - 0.29146453738212585, - 0.29095715284347534, - 0.28812170028686523, - 0.2830355167388916, - 0.27583733201026917, - 0.26672351360321045, - 0.2559426426887512, - 0.24378879368305206, - 0.2305935174226761, - 0.2167167216539383, - 0.202536940574646, - 0.1884409487247467, - 0.17481327056884766, - 0.16202561557292938, - 0.15042680501937866, - 0.26079127192497253, - 0.26815125346183777, - 0.27380526065826416, - 0.277599036693573, - 0.2794291377067566, - 0.2792455852031708, - 0.2770534157752991, - 0.27291247248649597, - 0.26693564653396606, - 0.25928598642349243, - 0.2501721680164337, - 0.23984277248382568, - 0.2285795658826828, - 0.216689795255661, - 0.20449776947498322, - 0.1923360526561737, - 0.18053637444972992, - 0.16942062973976135, - 0.15929201245307922, - 0.15042680501937866, - 0.26079127192497253, - 0.2645385265350342, - 0.2666783332824707, - 0.267152339220047, - 0.2659476101398468, - 0.26309698820114136, - 0.25867825746536255, - 0.2528119385242462, - 0.2456580400466919, - 0.23741169273853302, - 0.2282978743314743, - 0.21856515109539032, - 0.20847903192043304, - 0.1983146071434021, - 0.1883491724729538, - 0.1788545399904251, - 0.1700896918773651, - 0.16229373216629028, - 0.15567928552627563, - 0.15042680501937866, - 0.26079127192497253, - 0.2604381740093231, - 0.2585894763469696, - 0.25529563426971436, - 0.2506464421749115, - 0.24476876854896545, - 0.23782290518283844, - 0.22999833524227142, - 0.22150848805904388, - 0.2125849425792694, - 0.2034711241722107, - 0.1944156140089035, - 0.18566542863845825, - 0.177459254860878, - 0.1700209379196167, - 0.1635533720254898, - 0.15823297202587128, - 0.154204860329628, - 0.15157893300056458, - 0.15042680501937866, - 0.26079127192497253, - 0.2562945485115051, - 0.25041520595550537, - 0.2433137148618698, - 0.2351837158203125, - 0.22624701261520386, - 0.21674734354019165, - 0.20694386959075928, - 0.19710396230220795, - 0.18749606609344482, - 0.17838223278522491, - 0.17001108825206757, - 0.1626109480857849, - 0.1563836932182312, - 0.1514991819858551, - 0.1480906456708908, - 0.14625105261802673, - 0.14603060483932495, - 0.1474352777004242, - 0.15042680501937866, - 0.26079127192497253, - 0.25255662202835083, - 0.24304135143756866, - 0.23250502347946167, - 0.22123503684997559, - 0.20953883230686188, - 0.19773541390895844, - 0.1861467808485031, - 0.175089031457901, - 0.16486378014087677, - 0.15574994683265686, - 0.14799615740776062, - 0.14181387424468994, - 0.13737177848815918, - 0.13479100167751312, - 0.1341419667005539, - 0.1354423612356186, - 0.13865672051906586, - 0.1436973661184311, - 0.15042680501937866, - 0.26079127192497253, - 0.24962949752807617, - 0.23726695775985718, - 0.22404085099697113, - 0.21031199395656586, - 0.19645485281944275, - 0.18284741044044495, - 0.16986083984375, - 0.15784937143325806, - 0.14714068174362183, - 0.1380268633365631, - 0.13075649738311768, - 0.12552791833877563, - 0.1224837526679039, - 0.1217070147395134, - 0.12321891635656357, - 0.12697818875312805, - 0.13288232684135437, - 0.14077025651931763, - 0.15042680501937866, - 0.26079127192497253, - 0.2478303760290146, - 0.23371776938438416, - 0.21883845329284668, - 0.2035982608795166, - 0.18841290473937988, - 0.1736966371536255, - 0.1598508358001709, - 0.14725321531295776, - 0.1362473964691162, - 0.1271335631608963, - 0.12016033381223679, - 0.11551792919635773, - 0.11333297938108444, - 0.11366508156061172, - 0.11650517582893372, - 0.1217757910490036, - 0.12933313846588135, - 0.13897112011909485, - 0.15042680501937866, - 0.26079127192497253, - 0.24735420942306519, - 0.2327784299850464, - 0.21746155619621277, - 0.20182135701179504, - 0.18628449738025665, - 0.17127475142478943, - 0.15720155835151672, - 0.14444877207279205, - 0.13336431980133057, - 0.12425048649311066, - 0.11735589802265167, - 0.11286864429712296, - 0.11091109365224838, - 0.1115366593003273, - 0.11472828686237335, - 0.12039889395236969, - 0.12839379906654358, - 0.13849496841430664, - 0.15042680501937866 - ], - "z": [ - -1.7386081218719482, - -1.7355214357376099, - -1.7224841117858887, - -1.6998517513275146, - -1.6682417392730713, - -1.6285163164138794, - -1.5817590951919556, - -1.529245376586914, - -1.4724078178405762, - -1.4127964973449707, - -1.352037787437439, - -1.2917888164520264, - -1.23369300365448, - -1.179335117340088, - -1.1301980018615723, - -1.087621808052063, - -1.0527679920196533, - -1.0265872478485107, - -1.009793758392334, - -1.0028455257415771, - -1.7386081218719482, - -1.7355931997299194, - -1.722625732421875, - -1.7000592947006226, - -1.668509602546692, - -1.6288371086120605, - -1.58212411403656, - -1.5296447277069092, - -1.4728304147720337, - -1.4132311344146729, - -1.3524723052978516, - -1.2922114133834839, - -1.2340922355651855, - -1.1797001361846924, - -1.1305187940597534, - -1.0878896713256836, - -1.0529755353927612, - -1.026728868484497, - -1.0098655223846436, - -1.0028455257415771, - -1.7386081218719482, - -1.735447883605957, - -1.722339153289795, - -1.6996393203735352, - -1.6679675579071045, - -1.628187894821167, - -1.5813853740692139, - -1.528836727142334, - -1.4719750881195068, - -1.4123517274856567, - -1.3515928983688354, - -1.291356086730957, - -1.2332842350006104, - -1.1789615154266357, - -1.1298695802688599, - -1.0873476266860962, - -1.0525555610656738, - -1.026442289352417, - -1.0097203254699707, - -1.0028455257415771, - -1.7386081218719482, - -1.7351014614105225, - -1.7216556072235107, - -1.6986373662948608, - -1.6666746139526367, - -1.6266391277313232, - -1.5796229839324951, - -1.5269087553024292, - -1.469934344291687, - -1.4102537631988525, - -1.3494949340820312, - -1.2893153429031372, - -1.2313563823699951, - -1.177199125289917, - -1.1283206939697266, - -1.0860545635223389, - -1.0515536069869995, - -1.0257587432861328, - -1.0093737840652466, - -1.0028455257415771, - -1.7386081218719482, - -1.7345912456512451, - -1.7206491231918335, - -1.6971620321273804, - -1.6647706031799316, - -1.6243584156036377, - -1.5770279169082642, - -1.5240700244903564, - -1.466929316520691, - -1.407164454460144, - -1.3464056253433228, - -1.2863103151321411, - -1.2285175323486328, - -1.1746039390563965, - -1.1260401010513306, - -1.0841506719589233, - -1.0500781536102295, - -1.0247522592544556, - -1.0088635683059692, - -1.0028455257415771, - -1.7386081218719482, - -1.7339725494384766, - -1.7194286584854126, - -1.6953730583190918, - -1.6624619960784912, - -1.6215932369232178, - -1.5738813877105713, - -1.5206279754638672, - -1.4632856845855713, - -1.4034186601638794, - -1.3426599502563477, - -1.2826666831970215, - -1.225075602531433, - -1.1714574098587036, - -1.123274803161621, - -1.081842064857483, - -1.0482892990112305, - -1.0235317945480347, - -1.0082449913024902, - -1.0028455257415771, - -1.7386081218719482, - -1.7333126068115234, - -1.718126654624939, - -1.6934645175933838, - -1.6599990129470825, - -1.6186429262161255, - -1.5705242156982422, - -1.5169557332992554, - -1.4593983888626099, - -1.399422287940979, - -1.3386635780334473, - -1.27877938747406, - -1.2214032411575317, - -1.168100357055664, - -1.1203244924545288, - -1.0793790817260742, - -1.0463807582855225, - -1.022229790687561, - -1.0075849294662476, - -1.0028455257415771, - -1.7386081218719482, - -1.732682704925537, - -1.7168840169906616, - -1.6916431188583374, - -1.6576484441757202, - -1.6158273220062256, - -1.567320466041565, - -1.513451099395752, - -1.4556884765625, - -1.3956084251403809, - -1.3348497152328491, - -1.2750694751739502, - -1.2178986072540283, - -1.1648964881896973, - -1.117508888244629, - -1.077028512954712, - -1.0445592403411865, - -1.0209871530532837, - -1.0069550275802612, - -1.0028455257415771, - -1.7386081218719482, - -1.7321511507034302, - -1.7158355712890625, - -1.6901061534881592, - -1.6556650400161743, - -1.613451600074768, - -1.5646171569824219, - -1.5104939937591553, - -1.452558159828186, - -1.3923903703689575, - -1.3316315412521362, - -1.2719391584396362, - -1.2149415016174316, - -1.1621931791305542, - -1.1151331663131714, - -1.075045108795166, - -1.0430223941802979, - -1.0199387073516846, - -1.0064234733581543, - -1.0028455257415771, - -1.7386081218719482, - -1.7317756414413452, - -1.715094804763794, - -1.6890203952789307, - -1.6542637348175049, - -1.6117730140686035, - -1.5627071857452393, - -1.5084047317504883, - -1.45034658908844, - -1.3901166915893555, - -1.3293579816818237, - -1.2697275876998901, - -1.2128522396087646, - -1.1602833271026611, - -1.1134546995162964, - -1.0736438035964966, - -1.0419366359710693, - -1.019197940826416, - -1.0060479640960693, - -1.0028455257415771, - -1.7386081218719482, - -1.731596827507019, - -1.7147419452667236, - -1.6885032653808594, - -1.6535965204238892, - -1.6109737157821655, - -1.5617977380752563, - -1.5074098110198975, - -1.4492933750152588, - -1.3890340328216553, - -1.328275203704834, - -1.268674373626709, - -1.2118573188781738, - -1.1593737602233887, - -1.1126554012298584, - -1.0729765892028809, - -1.041419506072998, - -1.0188450813293457, - -1.0058691501617432, - -1.0028455257415771, - -1.7386081218719482, - -1.7316340208053589, - -1.714815378189087, - -1.6886110305786133, - -1.6537353992462158, - -1.611140251159668, - -1.5619871616363525, - -1.5076169967651367, - -1.4495127201080322, - -1.3892594575881958, - -1.328500747680664, - -1.2688937187194824, - -1.212064504623413, - -1.1595631837844849, - -1.1128218173980713, - -1.0731154680252075, - -1.0415271520614624, - -1.018918514251709, - -1.005906343460083, - -1.0028455257415771, - -1.7386081218719482, - -1.7318832874298096, - -1.7153072357177734, - -1.6893317699432373, - -1.6546657085418701, - -1.6122543811798096, - -1.563254952430725, - -1.5090038776397705, - -1.4509809017181396, - -1.3907687664031982, - -1.330009937286377, - -1.2703619003295898, - -1.2134513854980469, - -1.1608309745788574, - -1.1139360666275024, - -1.0740456581115723, - -1.042248010635376, - -1.0194103717803955, - -1.0061557292938232, - -1.0028455257415771, - -1.7386081218719482, - -1.732317566871643, - -1.7161638736724854, - -1.6905875205993652, - -1.6562862396240234, - -1.6141955852508545, - -1.5654637813568115, - -1.5114201307296753, - -1.4535386562347412, - -1.3933982849121094, - -1.332639455795288, - -1.2729196548461914, - -1.2158676385879517, - -1.1630399227142334, - -1.1158772706985474, - -1.0756663084030151, - -1.043503761291504, - -1.0202670097351074, - -1.0065898895263672, - -1.0028455257415771, - -1.7386081218719482, - -1.7328898906707764, - -1.7172927856445312, - -1.6922422647476196, - -1.6584216356277466, - -1.6167534589767456, - -1.5683743953704834, - -1.5146039724349976, - -1.456908941268921, - -1.3968629837036133, - -1.3361042737960815, - -1.2762898206710815, - -1.219051480293274, - -1.1659504175186157, - -1.1184351444244385, - -1.0778017044067383, - -1.0451585054397583, - -1.0213959217071533, - -1.0071622133255005, - -1.0028455257415771, - -1.7386081218719482, - -1.733538031578064, - -1.718571424484253, - -1.6941165924072266, - -1.6608405113220215, - -1.6196508407592773, - -1.5716711282730103, - -1.5182102918624878, - -1.4607263803482056, - -1.400787591934204, - -1.3400288820266724, - -1.2801073789596558, - -1.2226577997207642, - -1.1692471504211426, - -1.1213324069976807, - -1.0802204608917236, - -1.0470328330993652, - -1.022674560546875, - -1.007810354232788, - -1.0028455257415771, - -1.7386081218719482, - -1.73419189453125, - -1.719861388206482, - -1.6960073709487915, - -1.6632804870605469, - -1.6225736141204834, - -1.5749969482421875, - -1.5218483209609985, - -1.464577555656433, - -1.4047467708587646, - -1.3439879417419434, - -1.2839585542678833, - -1.2262959480285645, - -1.1725729703903198, - -1.1242551803588867, - -1.0826605558395386, - -1.0489234924316406, - -1.023964524269104, - -1.0084642171859741, - -1.0028455257415771, - -1.7386081218719482, - -1.7347806692123413, - -1.7210227251052856, - -1.6977096796035767, - -1.6654775142669678, - -1.625205159187317, - -1.5779913663864136, - -1.525123953819275, - -1.4680448770523071, - -1.408311367034912, - -1.3475525379180908, - -1.2874258756637573, - -1.2295714616775513, - -1.175567388534546, - -1.1268868446350098, - -1.08485746383667, - -1.0506259202957153, - -1.0251259803771973, - -1.0090529918670654, - -1.0028455257415771, - -1.7386081218719482, - -1.7352404594421387, - -1.7219297885894775, - -1.6990392208099365, - -1.6671931743621826, - -1.6272603273391724, - -1.5803298950195312, - -1.5276820659637451, - -1.4707528352737427, - -1.411095142364502, - -1.3503364324569702, - -1.2901338338851929, - -1.2321295738220215, - -1.1779059171676636, - -1.1289418935775757, - -1.0865732431411743, - -1.0519554615020752, - -1.0260329246520996, - -1.0095127820968628, - -1.0028455257415771, - -1.7386081218719482, - -1.7355214357376099, - -1.7224841117858887, - -1.6998517513275146, - -1.6682417392730713, - -1.6285163164138794, - -1.5817590951919556, - -1.529245376586914, - -1.4724078178405762, - -1.4127964973449707, - -1.352037787437439, - -1.2917888164520264, - -1.23369300365448, - -1.179335117340088, - -1.1301980018615723, - -1.087621808052063, - -1.0527679920196533, - -1.0265872478485107, - -1.009793758392334, - -1.0028455257415771 - ] - }, - { - "alphahull": 0, - "color": "#FECB52", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.11931630969047546, - -0.1170489639043808, - -0.11433252692222595, - -0.11124110221862793, - -0.10785901546478271, - -0.10427852720022202, - -0.10059729218482971, - -0.09691572934389114, - -0.09333426505327225, - -0.08995059132575989, - -0.08685700595378876, - -0.08413788676261902, - -0.08186741918325424, - -0.08010752499103546, - -0.07890620827674866, - -0.0782962441444397, - -0.07829426229000092, - -0.07890032231807709, - -0.08009789884090424, - -0.08185431361198425, - -0.11931630969047546, - -0.11110863089561462, - -0.1026139035820961, - -0.09406384080648422, - -0.0856916606426239, - -0.07772574573755264, - -0.07038338482379913, - -0.06386484205722809, - -0.058347947895526886, - -0.0539831817150116, - -0.05088959261775017, - -0.049151573330163956, - -0.04881652817130089, - -0.04989360645413399, - -0.052353423088788986, - -0.05612888187170029, - -0.06111699715256691, - -0.06718169152736664, - -0.07415756583213806, - -0.08185431361198425, - -0.11931630969047546, - -0.10603004693984985, - -0.09259526431560516, - -0.07937841862440109, - -0.06674005091190338, - -0.055024903267621994, - -0.0445525124669075, - -0.03560854494571686, - -0.028436973690986633, - -0.02323344349861145, - -0.02013985812664032, - -0.019240602850914, - -0.020560234785079956, - -0.024062737822532654, - -0.02965257316827774, - -0.037177279591560364, - -0.04643157869577408, - -0.057163055986166, - -0.06907898187637329, - -0.08185431361198425, - -0.11931630969047546, - -0.10236354917287827, - -0.08536228537559509, - -0.06877624988555908, - -0.053057897835969925, - -0.0386359728872776, - -0.0259038507938385, - -0.01520884782075882, - -0.006842687726020813, - -0.001033589243888855, - 0.0020599961280822754, - 0.002353683114051819, - -0.00016053766012191772, - -0.0054140761494636536, - -0.013263635337352753, - -0.02349512279033661, - -0.03582940995693207, - -0.04993007704615593, - -0.0654124915599823, - -0.08185431361198425, - -0.11931631714105606, - -0.10050646215677261, - -0.08169876784086227, - -0.06340624392032623, - -0.04612785950303078, - -0.0303349569439888, - -0.016458280384540558, - -0.004876367747783661, - 0.004094846546649933, - 0.010210655629634857, - 0.013304241001605988, - 0.013291217386722565, - 0.010171942412853241, - 0.0040314942598342896, - -0.004962630569934845, - -0.016565077006816864, - -0.03045940399169922, - -0.04626656323671341, - -0.06355540454387665, - -0.08185432106256485, - -0.11931631714105606, - -0.10066003352403641, - -0.08200172334909439, - -0.06385031342506409, - -0.046700943261384964, - -0.03102140873670578, - -0.01723937690258026, - -0.005730815231800079, - 0.003190375864505768, - 0.009280815720558167, - 0.012374401092529297, - 0.0123867467045784, - 0.009317494928836823, - 0.003250397741794586, - -0.005649074912071228, - -0.01713816076517105, - -0.030903473496437073, - -0.046569518744945526, - -0.06370897591114044, - -0.08185432106256485, - -0.11931630969047546, - -0.10280761867761612, - -0.0862383022904396, - -0.07006034255027771, - -0.05471501126885414, - -0.04062091186642647, - -0.028162486851215363, - -0.01767955720424652, - -0.009458079934120178, - -0.0037223398685455322, - -0.0006287544965744019, - -0.0002617090940475464, - -0.002631247043609619, - -0.007672712206840515, - -0.015248589217662811, - -0.02515222877264023, - -0.0371134951710701, - -0.05080609768629074, - -0.06585656106472015, - -0.08185431361198425, - -0.11931630969047546, - -0.10671649128198624, - -0.09394942224025726, - -0.08136336505413055, - -0.06930163502693176, - -0.058093246072530746, - -0.048043929040431976, - -0.03942779079079628, - -0.03247987478971481, - -0.02738972008228302, - -0.02429613471031189, - -0.02328350394964218, - -0.02437947690486908, - -0.02755415439605713, - -0.03272091597318649, - -0.03973885625600815, - -0.04841652885079384, - -0.0585172213613987, - -0.06976542621850967, - -0.08185431361198425, - -0.11931630969047546, - -0.11196306347846985, - -0.10429946333169937, - -0.09653455018997192, - -0.08888012915849686, - -0.08154499530792236, - -0.07472923398017883, - -0.06861875206232071, - -0.06338024139404297, - -0.05915658548474312, - -0.05606299638748169, - -0.05418386682868004, - -0.05357043817639351, - -0.054239459335803986, - -0.05617266893386841, - -0.059317346662282944, - -0.06358771026134491, - -0.0688672587275505, - -0.07501199841499329, - -0.08185431361198425, - -0.11931630969047546, - -0.11797879636287689, - -0.11616683006286621, - -0.11392983794212341, - -0.1113288402557373, - -0.10843479633331299, - -0.10532663762569427, - -0.10208914428949356, - -0.09881062805652618, - -0.09558052569627762, - -0.09248693287372589, - -0.08961424976587296, - -0.08704083412885666, - -0.08483687043190002, - -0.08306247740983963, - -0.08176606893539429, - -0.0809829980134964, - -0.08073462545871735, - -0.08102773129940033, - -0.08185431361198425, - -0.11931630969047546, - -0.12411177903413773, - -0.12826551496982574, - -0.1316641867160797, - -0.13421513140201569, - -0.135848730802536, - -0.13652043044567108, - -0.13621193170547485, - -0.13493162393569946, - -0.1327144354581833, - -0.12962085008621216, - -0.12573523819446564, - -0.12116361409425735, - -0.11603067070245743, - -0.11047641187906265, - -0.10465235263109207, - -0.0987173542380333, - -0.09283330291509628, - -0.08716071397066116, - -0.08185431361198425, - -0.11931630969047546, - -0.12969741225242615, - -0.1392844319343567, - -0.14781582355499268, - -0.15505889058113098, - -0.16081605851650238, - -0.1649302989244461, - -0.1672893762588501, - -0.16782893240451813, - -0.16653425991535187, - -0.16344067454338074, - -0.1586325615644455, - -0.1522410660982132, - -0.14444053173065186, - -0.13544374704360962, - -0.12549611926078796, - -0.11486897617578506, - -0.10385221987962723, - -0.09274635463953018, - -0.08185431361198425, - -0.11931630969047546, - -0.13413041830062866, - -0.14802950620651245, - -0.16063442826271057, - -0.17160138487815857, - -0.18063120543956757, - -0.18747758865356445, - -0.19195376336574554, - -0.19393764436244965, - -0.1933751106262207, - -0.19028154015541077, - -0.18474127352237701, - -0.17690545320510864, - -0.166987806558609, - -0.1552588939666748, - -0.14203861355781555, - -0.12768760323524475, - -0.11259730160236359, - -0.0971793532371521, - -0.08185431361198425, - -0.11931630223989487, - -0.1369304060935974, - -0.1535530984401703, - -0.1687309592962265, - -0.18204998970031738, - -0.19314688444137573, - -0.20171892642974854, - -0.20753231644630432, - -0.21042847633361816, - -0.21032840013504028, - -0.20723479986190796, - -0.20123210549354553, - -0.1924840211868286, - -0.18122917413711548, - -0.16777457296848297, - -0.15248721837997437, - -0.1357841193675995, - -0.11812088638544083, - -0.09997933357954025, - -0.08185431361198425, - -0.11931630223989487, - -0.13779392838478088, - -0.15525659918785095, - -0.17122799158096313, - -0.1852724254131317, - -0.19700679183006287, - -0.20611107349395752, - -0.21233686804771423, - -0.21551436185836792, - -0.21555690467357635, - -0.21246331930160522, - -0.2063179910182953, - -0.19728854298591614, - -0.18562132120132446, - -0.1716344952583313, - -0.1557096391916275, - -0.13828113675117493, - -0.11982439458370209, - -0.10084287077188492, - -0.08185430616140366, - -0.11931630223989487, - -0.1366274505853653, - -0.15295545756816864, - -0.1678549349308014, - -0.18091949820518494, - -0.19179272651672363, - -0.20017805695533752, - -0.20584677159786224, - -0.20864421129226685, - -0.20849409699440002, - -0.2054005265235901, - -0.1994478404521942, - -0.19079846143722534, - -0.17968830466270447, - -0.16642041504383087, - -0.15135671198368073, - -0.13490809500217438, - -0.11752325296401978, - -0.09967638552188873, - -0.08185431361198425, - -0.11931630969047546, - -0.13355734944343567, - -0.1468989998102188, - -0.15897732973098755, - -0.1694628894329071, - -0.17806962132453918, - -0.1845628023147583, - -0.188765287399292, - -0.19056247174739838, - -0.1899053007364273, - -0.18681171536445618, - -0.18136610090732574, - -0.17371699213981628, - -0.16407305002212524, - -0.15269732475280762, - -0.1399001032114029, - -0.12603048980236053, - -0.11146679520606995, - -0.0966062843799591, - -0.08185431361198425, - -0.11931630969047546, - -0.12891632318496704, - -0.13774354755878448, - -0.14555718004703522, - -0.15214410424232483, - -0.1573246270418167, - -0.160957470536232, - -0.1629435122013092, - -0.1632285863161087, - -0.1618049144744873, - -0.15871131420135498, - -0.15403221547603607, - -0.1478952020406723, - -0.14046770334243774, - -0.13195231556892395, - -0.12258133292198181, - -0.1126103401184082, - -0.10231133550405502, - -0.09196525812149048, - -0.08185431361198425, - -0.11931630969047546, - -0.12320730090141296, - -0.12648123502731323, - -0.12904877960681915, - -0.13083991408348083, - -0.13180579245090485, - -0.13192005455493927, - -0.1311796009540558, - -0.12960459291934967, - -0.12723802030086517, - -0.12414443492889404, - -0.12040821462869644, - -0.11613128334283829, - -0.11143028736114502, - -0.10643348097801208, - -0.10127714276313782, - -0.09610193967819214, - -0.09104902297258377, - -0.0862562358379364, - -0.08185431361198425, - -0.11931630969047546, - -0.1170489564538002, - -0.11433251947164536, - -0.11124109476804733, - -0.10785900801420212, - -0.10427851229906082, - -0.10059727728366852, - -0.09691571444272995, - -0.09333425015211105, - -0.0899505764245987, - -0.08685698360204697, - -0.08413787186145782, - -0.08186739683151245, - -0.08010750263929367, - -0.07890619337558746, - -0.0782962292432785, - -0.07829425483942032, - -0.07890031486749649, - -0.08009789884090424, - -0.08185431361198425 - ], - "y": [ - 0.3579489588737488, - 0.33875036239624023, - 0.31854262948036194, - 0.2978770136833191, - 0.2773171663284302, - 0.257423996925354, - 0.23874005675315857, - 0.22177502512931824, - 0.20699167251586914, - 0.194793239235878, - 0.1855124682188034, - 0.17940250039100647, - 0.17663003504276276, - 0.17727068066596985, - 0.18130692839622498, - 0.18862873315811157, - 0.1990363597869873, - 0.2122458964586258, - 0.2278970330953598, - 0.2455628514289856, - 0.3579489588737488, - 0.3404402434825897, - 0.3218763470649719, - 0.30276358127593994, - 0.2836233377456665, - 0.26497769355773926, - 0.2473352700471878, - 0.23117730021476746, - 0.21694454550743103, - 0.20502519607543945, - 0.19574442505836487, - 0.18935537338256836, - 0.18603231012821198, - 0.1858658790588379, - 0.18886065483093262, - 0.1949348747730255, - 0.20392292737960815, - 0.21557959914207458, - 0.22958692908287048, - 0.2455628514289856, - 0.3579489588737488, - 0.3439444303512573, - 0.3287891149520874, - 0.31289640069007874, - 0.29669979214668274, - 0.2806411385536194, - 0.26515838503837585, - 0.25067394971847534, - 0.23758289217948914, - 0.2262423038482666, - 0.21696153283119202, - 0.20999373495578766, - 0.20552897453308105, - 0.20368900895118713, - 0.20452407002449036, - 0.20801135897636414, - 0.21405577659606934, - 0.22249239683151245, - 0.23309111595153809, - 0.2455628514289856, - 0.3579489588737488, - 0.34888318181037903, - 0.3385319113731384, - 0.3271774351596832, - 0.3151295781135559, - 0.3027169108390808, - 0.29027801752090454, - 0.278152197599411, - 0.26667025685310364, - 0.25614532828330994, - 0.24686457216739655, - 0.23908108472824097, - 0.23300720751285553, - 0.22880862653255463, - 0.22659984230995178, - 0.2264411300420761, - 0.22833681106567383, - 0.2322351634502411, - 0.2380298674106598, - 0.2455628514289856, - 0.3579489588737488, - 0.3547213077545166, - 0.35004886984825134, - 0.34405913949012756, - 0.3369154930114746, - 0.32881277799606323, - 0.3199720084667206, - 0.3106343746185303, - 0.30105453729629517, - 0.29149383306503296, - 0.2822130620479584, - 0.2734653651714325, - 0.2654893696308136, - 0.25850263237953186, - 0.2526957094669342, - 0.2482270449399948, - 0.24521848559379578, - 0.2437521368265152, - 0.24386797845363617, - 0.2455628514289856, - 0.3579489588737488, - 0.36082613468170166, - 0.3620920181274414, - 0.3617120683193207, - 0.3596966862678528, - 0.35610082745552063, - 0.3510226011276245, - 0.34460049867630005, - 0.3370096683502197, - 0.3284572660923004, - 0.31917649507522583, - 0.30942052602767944, - 0.2994554936885834, - 0.2895531952381134, - 0.279983788728714, - 0.2710082530975342, - 0.2628714144229889, - 0.25579527020454407, - 0.24997280538082123, - 0.2455628514289856, - 0.3579489588737488, - 0.36653611063957214, - 0.3733562231063843, - 0.3782232701778412, - 0.3810045123100281, - 0.3816240131855011, - 0.3800649344921112, - 0.37636980414390564, - 0.3706393837928772, - 0.36303001642227173, - 0.35374924540519714, - 0.3430502414703369, - 0.33122479915618896, - 0.3185955584049225, - 0.30550697445869446, - 0.2923160493373871, - 0.2793826460838318, - 0.2670595049858093, - 0.2556827962398529, - 0.2455628514289856, - 0.3579489588737488, - 0.3712325096130371, - 0.3826209008693695, - 0.391803503036499, - 0.39852988719940186, - 0.4026164710521698, - 0.40395188331604004, - 0.40249964594841003, - 0.39829936623573303, - 0.3914656341075897, - 0.38218486309051514, - 0.37071019411087036, - 0.35735464096069336, - 0.3424825072288513, - 0.32649946212768555, - 0.30984145402908325, - 0.2929628789424896, - 0.27632418274879456, - 0.26037919521331787, - 0.2455628365278244, - 0.3579489588737488, - 0.3744063675403595, - 0.388882040977478, - 0.4009811580181122, - 0.4103736877441406, - 0.41680335998535156, - 0.42009487748146057, - 0.42015838623046875, - 0.4169922173023224, - 0.41068267822265625, - 0.40140190720558167, - 0.3894030451774597, - 0.37501341104507446, - 0.35862550139427185, - 0.3406863212585449, - 0.321685254573822, - 0.3021405339241028, - 0.2825853228569031, - 0.26355305314064026, - 0.2455628365278244, - 0.3579489588737488, - 0.3757137656211853, - 0.39146119356155396, - 0.4047616720199585, - 0.4152524471282959, - 0.42264729738235474, - 0.42674458026885986, - 0.42743250727653503, - 0.4246922731399536, - 0.4185986816883087, - 0.40931791067123413, - 0.39710313081741333, - 0.38228750228881836, - 0.36527520418167114, - 0.3465302884578705, - 0.3265640139579773, - 0.3059210181236267, - 0.2851644456386566, - 0.26486045122146606, - 0.2455628365278244, - 0.3579489588737488, - 0.3750130236148834, - 0.3900788128376007, - 0.4027353525161743, - 0.41263747215270996, - 0.4195150136947632, - 0.42318040132522583, - 0.42353367805480957, - 0.420565128326416, - 0.4143558144569397, - 0.4050750136375427, - 0.39297598600387573, - 0.3783886730670929, - 0.3617110550403595, - 0.34339800477027893, - 0.32394903898239136, - 0.3038947284221649, - 0.28378206491470337, - 0.2641596794128418, - 0.2455628365278244, - 0.3579489588737488, - 0.3723800480365753, - 0.38488471508026123, - 0.39512181282043457, - 0.4028121829032898, - 0.40774595737457275, - 0.4097886085510254, - 0.4088844060897827, - 0.40505802631378174, - 0.39841383695602417, - 0.3891330659389496, - 0.37746888399124146, - 0.36373940110206604, - 0.34831923246383667, - 0.3316289186477661, - 0.3141237199306488, - 0.29628118872642517, - 0.2785879671573639, - 0.2615267336368561, - 0.2455628365278244, - 0.3579489588737488, - 0.36810022592544556, - 0.3764417767524719, - 0.3827461004257202, - 0.3868412375450134, - 0.3886154294013977, - 0.3880203366279602, - 0.3850722014904022, - 0.37985140085220337, - 0.37250033020973206, - 0.36321955919265747, - 0.3522622287273407, - 0.33992719650268555, - 0.3265509605407715, - 0.31249839067459106, - 0.29815277457237244, - 0.2839054465293884, - 0.270145058631897, - 0.2572469115257263, - 0.2455628514289856, - 0.3579489588737488, - 0.3626372814178467, - 0.36566489934921265, - 0.36694926023483276, - 0.3664553165435791, - 0.3641965687274933, - 0.3602345585823059, - 0.3546774387359619, - 0.34767672419548035, - 0.33942341804504395, - 0.33014264702796936, - 0.3200875520706177, - 0.30953243374824524, - 0.2987651824951172, - 0.28807950019836426, - 0.2777668833732605, - 0.26810863614082336, - 0.2593681812286377, - 0.25178396701812744, - 0.2455628514289856, - 0.3579489588737488, - 0.35658323764801025, - 0.3537219762802124, - 0.3494432270526886, - 0.34386366605758667, - 0.33713552355766296, - 0.3294423222541809, - 0.32099390029907227, - 0.3120207190513611, - 0.3027675449848175, - 0.2934867739677429, - 0.2844315767288208, - 0.275848925113678, - 0.2679729461669922, - 0.2610184848308563, - 0.25517523288726807, - 0.2506025731563568, - 0.24742524325847626, - 0.24572992324829102, - 0.2455628514289856, - 0.3579489588737488, - 0.350594162940979, - 0.34190717339515686, - 0.3321249485015869, - 0.321514368057251, - 0.31036481261253357, - 0.2989804148674011, - 0.2876717448234558, - 0.2767472267150879, - 0.2665049135684967, - 0.2572241425514221, - 0.2491580843925476, - 0.24252675473690033, - 0.2375110387802124, - 0.23424774408340454, - 0.23282591998577118, - 0.23328432440757751, - 0.23561042547225952, - 0.23974083364009857, - 0.2455628514289856, - 0.3579489588737488, - 0.3453190326690674, - 0.331500768661499, - 0.31687116622924805, - 0.3018292784690857, - 0.286785364151001, - 0.27214980125427246, - 0.2583218514919281, - 0.2456786334514618, - 0.23456507921218872, - 0.22528430819511414, - 0.21808947622776031, - 0.21317684650421143, - 0.21068042516708374, - 0.21066831052303314, - 0.2131408303976059, - 0.21803054213523865, - 0.22520405054092407, - 0.23446568846702576, - 0.2455628514289856, - 0.3579489588737488, - 0.3413294851779938, - 0.32363054156303406, - 0.3053348958492279, - 0.28694161772727966, - 0.26895245909690857, - 0.25185808539390564, - 0.23612479865550995, - 0.22218173742294312, - 0.2104092687368393, - 0.2011284977197647, - 0.19459258019924164, - 0.19097980856895447, - 0.19038870930671692, - 0.19283540546894073, - 0.19825318455696106, - 0.20649424195289612, - 0.21733379364013672, - 0.23047615587711334, - 0.2455628514289856, - 0.3579489588737488, - 0.3390578627586365, - 0.31914928555488586, - 0.29876622557640076, - 0.27846473455429077, - 0.2587985396385193, - 0.2403041422367096, - 0.22348597645759583, - 0.20880281925201416, - 0.19665516912937164, - 0.18737439811229706, - 0.1812136471271515, - 0.17834098637104034, - 0.17883476614952087, - 0.18268150091171265, - 0.18977628648281097, - 0.19992558658123016, - 0.21285253763198853, - 0.22820454835891724, - 0.2455628514289856, - 0.3579489588737488, - 0.33875036239624023, - 0.31854262948036194, - 0.2978770136833191, - 0.2773171663284302, - 0.257423996925354, - 0.23874005675315857, - 0.22177502512931824, - 0.20699167251586914, - 0.194793239235878, - 0.1855124682188034, - 0.17940250039100647, - 0.17663003504276276, - 0.17727068066596985, - 0.18130692839622498, - 0.18862873315811157, - 0.1990363597869873, - 0.2122458964586258, - 0.2278970330953598, - 0.2455628514289856 - ], - "z": [ - -2.3863260746002197, - -2.384082317352295, - -2.371680974960327, - -2.3494603633880615, - -2.3180267810821533, - -2.2782375812530518, - -2.231178045272827, - -2.1781320571899414, - -2.1205461025238037, - -2.0599915981292725, - -1.998119831085205, - -1.936618685722351, - -1.877165675163269, - -1.8213826417922974, - -1.7707910537719727, - -1.7267711162567139, - -1.690523386001587, - -1.6630367040634155, - -1.6450607776641846, - -1.637086033821106, - -2.3863260746002197, - -2.3841257095336914, - -2.3717668056488037, - -2.349586248397827, - -2.3181891441345215, - -2.2784321308135986, - -2.2313995361328125, - -2.1783742904663086, - -2.120802640914917, - -2.0602550506591797, - -1.9983834028244019, - -1.9368749856948853, - -1.8774079084396362, - -1.8216040134429932, - -1.770985722541809, - -1.726933479309082, - -1.6906492710113525, - -1.663122534751892, - -1.6451044082641602, - -1.637086033821106, - -2.3863260746002197, - -2.3838541507720947, - -2.3712308406829834, - -2.3488006591796875, - -2.3171753883361816, - -2.2772176265716553, - -2.23001766204834, - -2.1768624782562256, - -2.1192023754119873, - -2.058609962463379, - -1.996738314628601, - -1.9352748394012451, - -1.8758962154388428, - -1.8202221393585205, - -1.7697712182998657, - -1.7259197235107422, - -1.689863681793213, - -1.6625865697860718, - -1.6448326110839844, - -1.637086033821106, - -2.3863260746002197, - -2.383296489715576, - -2.370131015777588, - -2.3471884727478027, - -2.3150949478149414, - -2.274725914001465, - -2.227182149887085, - -2.1737606525421143, - -2.1159191131591797, - -2.055234670639038, - -1.9933627843856812, - -1.931991457939148, - -1.8727943897247314, - -1.8173866271972656, - -1.7672792673110962, - -1.723839282989502, - -1.6882514953613281, - -1.6614867448806763, - -1.644275188446045, - -1.637086033821106, - -2.3863260746002197, - -2.3825137615203857, - -2.368586778640747, - -2.3449246883392334, - -2.31217360496521, - -2.271226406097412, - -2.2232003211975098, - -2.169404983520508, - -2.1113083362579346, - -2.050494432449341, - -1.988622784614563, - -1.9273806810379028, - -1.868438720703125, - -1.8134047985076904, - -1.7637799978256226, - -1.7209179401397705, - -1.6859878301620483, - -1.659942388534546, - -1.6434922218322754, - -1.637086033821106, - -2.3863260746002197, - -2.3815903663635254, - -2.366765022277832, - -2.342254638671875, - -2.308727741241455, - -2.267098903656006, - -2.218503713607788, - -2.1642675399780273, - -2.105869770050049, - -2.044903516769409, - -1.9830317497253418, - -1.921942114830017, - -1.8633010387420654, - -1.8087080717086792, - -1.7596523761749268, - -1.7174720764160156, - -1.6833176612854004, - -1.65812087059021, - -1.642568826675415, - -1.637086033821106, - -2.3863260746002197, - -2.3806264400482178, - -2.364863634109497, - -2.3394675254821777, - -2.305130958557129, - -2.2627904415130615, - -2.2136011123657227, - -2.158904552459717, - -2.1001927852630615, - -2.039067506790161, - -1.9771957397460938, - -1.9162652492523193, - -1.857938289642334, - -1.8038055896759033, - -1.7553439140319824, - -1.7138751745224, - -1.6805305480957031, - -1.6562193632125854, - -1.641605019569397, - -1.637086033821106, - -2.3863260746002197, - -2.3797266483306885, - -2.363088369369507, - -2.336865186691284, - -2.3017728328704834, - -2.258768081665039, - -2.209023952484131, - -2.153897762298584, - -2.094892740249634, - -2.033618688583374, - -1.9717469215393066, - -1.9109652042388916, - -1.8529313802719116, - -1.7992284297943115, - -1.75132155418396, - -1.7105170488357544, - -1.6779283285140991, - -1.6544440984725952, - -1.6407051086425781, - -1.637086033821106, - -2.3863260746002197, - -2.378988265991211, - -2.3616316318511963, - -2.3347301483154297, - -2.2990171909332275, - -2.255467414855957, - -2.205268383026123, - -2.149789333343506, - -2.090543746948242, - -2.0291478633880615, - -1.9672760963439941, - -1.9066162109375, - -1.848823070526123, - -1.7954727411270142, - -1.748020887374878, - -1.707761526107788, - -1.6757930517196655, - -1.6529874801635742, - -1.6399667263031006, - -1.637086033821106, - -2.3863260746002197, - -2.3784914016723633, - -2.3606514930725098, - -2.3332931995391846, - -2.2971630096435547, - -2.253246307373047, - -2.2027409076690674, - -2.147024631500244, - -2.0876173973083496, - -2.026139259338379, - -1.9642674922943115, - -1.9036897420883179, - -1.8460583686828613, - -1.7929455041885376, - -1.7457997798919678, - -1.7059073448181152, - -1.67435622215271, - -1.6520071029663086, - -1.639469861984253, - -1.637086033821106, - -2.3863260746002197, - -2.3782896995544434, - -2.3602538108825684, - -2.3327105045318604, - -2.2964110374450684, - -2.252345561981201, - -2.2017159461975098, - -2.1459033489227295, - -2.086430311203003, - -2.024919033050537, - -1.9630472660064697, - -1.9025027751922607, - -1.8449370861053467, - -1.7919204235076904, - -1.7448989152908325, - -1.7051552534103394, - -1.6737735271453857, - -1.6516096591949463, - -1.6392682790756226, - -1.637086033821106, - -2.3863260746002197, - -2.3784053325653076, - -2.3604819774627686, - -2.33304500579834, - -2.296842575073242, - -2.2528624534606934, - -2.2023041248321533, - -2.1465468406677246, - -2.087111473083496, - -2.0256192684173584, - -1.963747501373291, - -1.903183937072754, - -1.8455805778503418, - -1.7925087213516235, - -1.7454159259796143, - -1.7055869102478027, - -1.6741079092025757, - -1.6518378257751465, - -1.6393839120864868, - -1.637086033821106, - -2.3863260746002197, - -2.3788256645202637, - -2.361311197280884, - -2.3342604637145996, - -2.2984111309051514, - -2.2547411918640137, - -2.204442024230957, - -2.148885488510132, - -2.0895869731903076, - -2.0281641483306885, - -1.9662925004959106, - -1.905659556388855, - -1.847919225692749, - -1.7946465015411377, - -1.7472947835922241, - -1.7071553468704224, - -1.6753233671188354, - -1.6526669263839722, - -1.6398042440414429, - -1.637086033821106, - -2.3863260746002197, - -2.379505157470703, - -2.3626515865325928, - -2.3362250328063965, - -2.3009464740753174, - -2.2577784061431885, - -2.207897901535034, - -2.152665853500366, - -2.0935888290405273, - -2.032278060913086, - -1.970406413078308, - -1.9096611738204956, - -1.8516994714736938, - -1.7981023788452148, - -1.7503317594528198, - -1.709690809249878, - -1.6772880554199219, - -1.6540073156356812, - -1.6404837369918823, - -1.637086033821106, - -2.3863260746002197, - -2.3803701400756836, - -2.3643579483032227, - -2.338726043701172, - -2.3041741847991943, - -2.2616443634033203, - -2.212296962738037, - -2.157478094100952, - -2.0986828804016113, - -2.037515163421631, - -1.975643277168274, - -1.9147552251815796, - -1.8565118312835693, - -1.8025015592575073, - -1.7541979551315308, - -1.7129185199737549, - -1.6797890663146973, - -1.6557135581970215, - -1.6413486003875732, - -1.637086033821106, - -2.3863260746002197, - -2.381326675415039, - -2.3662450313568115, - -2.3414924144744873, - -2.307744264602661, - -2.265920877456665, - -2.2171630859375, - -2.1628010272979736, - -2.1043174266815186, - -2.0433075428009033, - -1.9814358949661255, - -1.9203897714614868, - -1.8618346452713013, - -1.8073675632476807, - -1.7584742307662964, - -1.7164884805679321, - -1.6825554370880127, - -1.6576008796691895, - -1.6423053741455078, - -1.637086033821106, - -2.3863260746002197, - -2.3822715282440186, - -2.3681089878082275, - -2.344224452972412, - -2.311269760131836, - -2.270143985748291, - -2.221968412399292, - -2.168057441711426, - -2.109881639480591, - -2.049027919769287, - -1.9871562719345093, - -1.9259542226791382, - -1.867091178894043, - -1.8121728897094727, - -1.7626973390579224, - -1.7200140953063965, - -1.6852874755859375, - -1.6594645977020264, - -1.6432501077651978, - -1.637086033821106, - -2.3863260746002197, - -2.3831019401550293, - -2.3697471618652344, - -2.346625804901123, - -2.314368963241577, - -2.2738561630249023, - -2.2261924743652344, - -2.172678232192993, - -2.1147730350494385, - -2.054056406021118, - -1.9921846389770508, - -1.9308453798294067, - -1.8717118501663208, - -1.816396951675415, - -1.7664095163345337, - -1.7231131792068481, - -1.6876888275146484, - -1.6611028909683228, - -1.644080638885498, - -1.637086033821106, - -2.3863260746002197, - -2.383728265762329, - -2.3709824085235596, - -2.3484365940093994, - -2.3167057037353516, - -2.2766551971435547, - -2.229377269744873, - -2.1761622428894043, - -2.1184611320495605, - -2.0578479766845703, - -1.9959760904312134, - -1.9345334768295288, - -1.875195860862732, - -1.8195818662643433, - -1.769208550453186, - -1.7254499197006226, - -1.6894996166229248, - -1.6623382568359375, - -1.6447067260742188, - -1.637086033821106, - -2.3863260746002197, - -2.384082317352295, - -2.371680974960327, - -2.3494603633880615, - -2.3180267810821533, - -2.2782375812530518, - -2.231178045272827, - -2.1781320571899414, - -2.1205461025238037, - -2.0599915981292725, - -1.998119831085205, - -1.936618685722351, - -1.877165675163269, - -1.8213826417922974, - -1.7707910537719727, - -1.7267711162567139, - -1.690523386001587, - -1.6630367040634155, - -1.6450607776641846, - -1.637086033821106 - ] - }, - { - "alphahull": 0, - "color": "#B6E880", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.15191367268562317, - -0.15040262043476105, - -0.14841856062412262, - -0.14601561427116394, - -0.14325933158397675, - -0.140224888920784, - -0.13699506223201752, - -0.13365794718265533, - -0.13030457496643066, - -0.12702643871307373, - -0.12391291558742523, - -0.12104896456003189, - -0.11851269751787186, - -0.11637330055236816, - -0.11468912661075592, - -0.11350611597299576, - -0.11285653710365295, - -0.11275811493396759, - -0.11321353167295456, - -0.11421036720275879, - -0.15191367268562317, - -0.1584947258234024, - -0.16438202559947968, - -0.16941501200199127, - -0.1734563708305359, - -0.17639587819576263, - -0.1781533658504486, - -0.17868086695671082, - -0.1779640018939972, - -0.17602233588695526, - -0.17290881276130676, - -0.16870839893817902, - -0.16353562474250793, - -0.15753160417079926, - -0.15086013078689575, - -0.1437031626701355, - -0.13625593483448029, - -0.12872157990932465, - -0.12130562961101532, - -0.11421035975217819, - -0.15191367268562317, - -0.16584579646587372, - -0.17888367176055908, - -0.1906716525554657, - -0.20088817179203033, - -0.20925457775592804, - -0.21554265916347504, - -0.21958088874816895, - -0.22125910222530365, - -0.22053152322769165, - -0.21741801500320435, - -0.21200348436832428, - -0.20443564653396606, - -0.19492091238498688, - -0.18371883034706116, - -0.17113496363162994, - -0.1575125753879547, - -0.14322322607040405, - -0.12865670025348663, - -0.11421035975217819, - -0.15191367268562317, - -0.17165926098823547, - -0.19035200774669647, - -0.20748203992843628, - -0.22258207201957703, - -0.23524023592472076, - -0.24511125683784485, - -0.25192585587501526, - -0.25549817085266113, - -0.2557307481765747, - -0.252617210149765, - -0.24624255299568176, - -0.23678061366081238, - -0.2244895100593567, - -0.20970448851585388, - -0.19282886385917664, - -0.1743229627609253, - -0.15469156205654144, - -0.1344701647758484, - -0.11421035975217819, - -0.15191367268562317, - -0.1753050982952118, - -0.19754426181316376, - -0.21802450716495514, - -0.2361871898174286, - -0.25153690576553345, - -0.263654887676239, - -0.2722107172012329, - -0.27697086334228516, - -0.2778055667877197, - -0.2746920585632324, - -0.2677152752876282, - -0.25706547498703003, - -0.24303317070007324, - -0.22600114345550537, - -0.2064339965581894, - -0.18486542999744415, - -0.16188381612300873, - -0.1381160169839859, - -0.11421035975217819, - -0.15191367268562317, - -0.17638826370239258, - -0.19968104362487793, - -0.22115662693977356, - -0.24022921919822693, - -0.25637856125831604, - -0.26916414499282837, - -0.2782372236251831, - -0.2833503186702728, - -0.28436392545700073, - -0.2812504172325134, - -0.27409470081329346, - -0.2630919814109802, - -0.2485423982143402, - -0.23084281384944916, - -0.21047601103782654, - -0.18799754977226257, - -0.1640205979347229, - -0.1391991823911667, - -0.1142103523015976, - -0.15191367268562317, - -0.1747913658618927, - -0.1965308040380478, - -0.21653896570205688, - -0.2342701256275177, - -0.24924054741859436, - -0.26104193925857544, - -0.26935237646102905, - -0.2739452123641968, - -0.2746950387954712, - -0.2715815305709839, - -0.264689564704895, - -0.25420713424682617, - -0.24042019248008728, - -0.22370481491088867, - -0.2045169174671173, - -0.1833798885345459, - -0.16087035834789276, - -0.1376022845506668, - -0.11421035975217819, - -0.15191367268562317, - -0.1706874668598175, - -0.1884349286556244, - -0.2046719491481781, - -0.21895566582679749, - -0.23089641332626343, - -0.2401684820652008, - -0.24651899933815002, - -0.24977467954158783, - -0.24984675645828247, - -0.24673323333263397, - -0.24051906168460846, - -0.23137374222278595, - -0.21954673528671265, - -0.20536066591739655, - -0.1892024576663971, - -0.17151287198066711, - -0.15277448296546936, - -0.13349837064743042, - -0.11421035975217819, - -0.15191367268562317, - -0.1645212471485138, - -0.17627070844173431, - -0.18684154748916626, - -0.19594541192054749, - -0.20333397388458252, - -0.20880572497844696, - -0.21221137046813965, - -0.21345803141593933, - -0.21251168847084045, - -0.20939818024635315, - -0.20420241355895996, - -0.19706612825393677, - -0.1881839632987976, - -0.17779824137687683, - -0.1661922037601471, - -0.15368247032165527, - -0.14061026275157928, - -0.1273321658372879, - -0.11421035975217819, - -0.15191367268562317, - -0.15696096420288086, - -0.1613563448190689, - -0.1649799346923828, - -0.16773287951946259, - -0.16954010725021362, - -0.1703522950410843, - -0.17014729976654053, - -0.16893072426319122, - -0.16673573851585388, - -0.16362223029136658, - -0.15967510640621185, - -0.15500205755233765, - -0.14973053336143494, - -0.14400434494018555, - -0.1379796713590622, - -0.13182085752487183, - -0.12569589912891388, - -0.11977186799049377, - -0.11421035975217819, - -0.15191367268562317, - -0.14882585406303406, - -0.14530803263187408, - -0.14145617187023163, - -0.1373753398656845, - -0.13317684829235077, - -0.12897522747516632, - -0.12488508224487305, - -0.12101798504590988, - -0.11747942119836807, - -0.11436590552330017, - -0.11176236718893051, - -0.10973984003067017, - -0.10835346579551697, - -0.10764108598232269, - -0.10762212425470352, - -0.10829709470272064, - -0.10964758694171906, - -0.11163675785064697, - -0.11421036720275879, - -0.15191367268562317, - -0.1409974992275238, - -0.1298648566007614, - -0.11881942301988602, - -0.10816248506307602, - -0.0981847494840622, - -0.08915837109088898, - -0.0813295766711235, - -0.07491189986467361, - -0.07008041441440582, - -0.06696689873933792, - -0.06565628200769424, - -0.06618432700634003, - -0.06853660941123962, - -0.07264898717403412, - -0.07840926945209503, - -0.08566034585237503, - -0.09420441091060638, - -0.10380840301513672, - -0.11421036720275879, - -0.15191368758678436, - -0.13432420790195465, - -0.11670032143592834, - -0.09952273219823837, - -0.08325999975204468, - -0.0683557540178299, - -0.05521651357412338, - -0.04420068860054016, - -0.03560877591371536, - -0.029675140976905823, - -0.02656162530183792, - -0.026353158056735992, - -0.029055438935756683, - -0.03459474444389343, - -0.04281996935606003, - -0.05350678414106369, - -0.06636365503072739, - -0.08103987574577332, - -0.09713512659072876, - -0.11421036720275879, - -0.15191368758678436, - -0.1295291632413864, - -0.10724100470542908, - -0.08565717935562134, - -0.06536643952131271, - -0.04692225903272629, - -0.03082774579524994, - -0.017521895468235016, - -0.007367685437202454, - -0.0006421208381652832, - 0.0024713873863220215, - 0.0018879324197769165, - -0.002376645803451538, - -0.010205969214439392, - -0.02138647437095642, - -0.035613223910331726, - -0.05249810218811035, - -0.07158055901527405, - -0.09234006702899933, - -0.11421036720275879, - -0.15191368758678436, - -0.12713195383548737, - -0.10251199454069138, - -0.07872535288333893, - -0.05642087012529373, - -0.036206960678100586, - -0.018635012209415436, - -0.004184320569038391, - 0.006750911474227905, - 0.013872429728507996, - 0.0169859379529953, - 0.016006529331207275, - 0.01096092164516449, - 0.0019867420196533203, - -0.010671183466911316, - -0.026667654514312744, - -0.04556627571582794, - -0.06685154885053635, - -0.08994287252426147, - -0.11421036720275879, - -0.15191368758678436, - -0.12739236652851105, - -0.10302571952342987, - -0.07947838306427002, - -0.05739264935255051, - -0.03737100213766098, - -0.019959546625614166, - -0.00563320517539978, - 0.005217164754867554, - 0.012295663356781006, - 0.01540917158126831, - 0.014472782611846924, - 0.0095120370388031, - 0.0006622225046157837, - -0.01183522492647171, - -0.02763943374156952, - -0.04631930589675903, - -0.06736527383327484, - -0.09020328521728516, - -0.11421036720275879, - -0.15191368758678436, - -0.1302821934223175, - -0.10872653126716614, - -0.0878346785902977, - -0.0681765079498291, - -0.050288259983062744, - -0.03465784341096878, - -0.02171165496110916, - -0.0118027925491333, - -0.005201578140258789, - -0.0020880699157714844, - -0.0025471746921539307, - -0.006566405296325684, - -0.01403607428073883, - -0.024752475321292877, - -0.03842329978942871, - -0.05467560142278671, - -0.07306608557701111, - -0.09309310466051102, - -0.11421036720275879, - -0.15191367268562317, - -0.13548825681209564, - -0.11899666488170624, - -0.10288872569799423, - -0.0876038447022438, - -0.07355894148349762, - -0.0611371248960495, - -0.05067722499370575, - -0.04246457666158676, - -0.036723196506500244, - -0.03360968083143234, - -0.03320895880460739, - -0.03553197532892227, - -0.04051535576581955, - -0.04802316427230835, - -0.05785062164068222, - -0.06972965598106384, - -0.08333621919155121, - -0.09829917550086975, - -0.11421036720275879, - -0.15191367268562317, - -0.14244641363620758, - -0.13272318243980408, - -0.12300917506217957, - -0.11356939375400543, - -0.10466131567955017, - -0.09652794152498245, - -0.08939111232757568, - -0.08344551920890808, - -0.07885332405567169, - -0.07573981583118439, - -0.07418990135192871, - -0.07424585521221161, - -0.0759061798453331, - -0.0791255533695221, - -0.08381617814302444, - -0.08985009789466858, - -0.09706273674964905, - -0.10525733232498169, - -0.11421036720275879, - -0.15191367268562317, - -0.15040263533592224, - -0.1484185755252838, - -0.14601562917232513, - -0.14325934648513794, - -0.1402249038219452, - -0.1369950771331787, - -0.13365797698497772, - -0.13030460476875305, - -0.12702645361423492, - -0.12391294538974762, - -0.12104898691177368, - -0.11851271986961365, - -0.11637331545352936, - -0.11468914151191711, - -0.11350613087415695, - -0.11285655200481415, - -0.11275812983512878, - -0.11321353912353516, - -0.11421036720275879 - ], - "y": [ - 0.45574089884757996, - 0.47944778203964233, - 0.5009652972221375, - 0.5197066068649292, - 0.5351603627204895, - 0.5469051003456116, - 0.5546205043792725, - 0.5580959916114807, - 0.557236909866333, - 0.5520665049552917, - 0.5427259802818298, - 0.5294700860977173, - 0.5126603245735168, - 0.49275532364845276, - 0.47029799222946167, - 0.44590091705322266, - 0.4202295243740082, - 0.3939841687679291, - 0.3678807020187378, - 0.34263116121292114, - 0.45574089884757996, - 0.4784657657146454, - 0.4990280866622925, - 0.5168669819831848, - 0.5314958095550537, - 0.5425156354904175, - 0.5496257543563843, - 0.5526322722434998, - 0.551453173160553, - 0.5461206436157227, - 0.5367801189422607, - 0.523686408996582, - 0.5071966052055359, - 0.48776060342788696, - 0.4659084677696228, - 0.44223636388778687, - 0.4173899292945862, - 0.3920469284057617, - 0.36689868569374084, - 0.34263116121292114, - 0.45574089884757996, - 0.4749375879764557, - 0.49206793308258057, - 0.5066647529602051, - 0.5183297991752625, - 0.5267449021339417, - 0.5316805839538574, - 0.5330021381378174, - 0.5306735038757324, - 0.5247582197189331, - 0.5154176950454712, - 0.5029066801071167, - 0.48756644129753113, - 0.4698154032230377, - 0.45013779401779175, - 0.4290703237056732, - 0.40718770027160645, - 0.3850868046283722, - 0.36337050795555115, - 0.34263116121292114, - 0.45574089884757996, - 0.4692455530166626, - 0.4808391332626343, - 0.49020546674728394, - 0.4970889985561371, - 0.5013020038604736, - 0.5027295351028442, - 0.501332700252533, - 0.49714958667755127, - 0.4902942180633545, - 0.4809536933898926, - 0.46938276290893555, - 0.4558970630168915, - 0.4408644139766693, - 0.42469489574432373, - 0.40782952308654785, - 0.3907284140586853, - 0.3738580048084259, - 0.35767847299575806, - 0.34263116121292114, - 0.45574089884757996, - 0.46200650930404663, - 0.4665585160255432, - 0.46927276253700256, - 0.47007524967193604, - 0.4689440429210663, - 0.46591001749038696, - 0.4610559642314911, - 0.4545142352581024, - 0.44646331667900085, - 0.43712279200553894, - 0.4267474412918091, - 0.4156202971935272, - 0.40404486656188965, - 0.392336905002594, - 0.3808157742023468, - 0.36979570984840393, - 0.35957735776901245, - 0.3504394292831421, - 0.34263116121292114, - 0.45574092864990234, - 0.4540048837661743, - 0.45077353715896606, - 0.446135014295578, - 0.4402158558368683, - 0.43317750096321106, - 0.42521196603775024, - 0.41653648018836975, - 0.40738773345947266, - 0.3980152904987335, - 0.3886747658252716, - 0.3796209394931793, - 0.3711008131504059, - 0.36334678530693054, - 0.35657036304473877, - 0.35095638036727905, - 0.34665796160697937, - 0.3437923789024353, - 0.3424378037452698, - 0.34263116121292114, - 0.45574092864990234, - 0.44610780477523804, - 0.43519479036331177, - 0.4232995808124542, - 0.41074657440185547, - 0.3978782594203949, - 0.38504558801651, - 0.37259864807128906, - 0.3608769476413727, - 0.35020020604133606, - 0.34085968136787415, - 0.33311015367507935, - 0.3271629810333252, - 0.3231804370880127, - 0.3212711215019226, - 0.32148709893226624, - 0.3238225281238556, - 0.3282136619091034, - 0.3345407247543335, - 0.34263119101524353, - 0.45574092864990234, - 0.43917104601860046, - 0.4215104877948761, - 0.40324097871780396, - 0.3848608732223511, - 0.36687150597572327, - 0.3497636020183563, - 0.3340038061141968, - 0.32002201676368713, - 0.30819961428642273, - 0.2988590896129608, - 0.2922552227973938, - 0.2885681390762329, - 0.2878984212875366, - 0.290264368057251, - 0.29560136795043945, - 0.3037639260292053, - 0.3145293593406677, - 0.3276039659976959, - 0.34263119101524353, - 0.45574092864990234, - 0.43394631147384644, - 0.4112035036087036, - 0.3881329298019409, - 0.36536383628845215, - 0.34351733326911926, - 0.32318931818008423, - 0.3049342930316925, - 0.2892501950263977, - 0.27656489610671997, - 0.26722437143325806, - 0.26148343086242676, - 0.25949862599372864, - 0.2613241374492645, - 0.2669101655483246, - 0.2761043608188629, - 0.2886558771133423, - 0.30422237515449524, - 0.3223792314529419, - 0.34263119101524353, - 0.45574092864990234, - 0.430999755859375, - 0.40539079904556274, - 0.37961259484291077, - 0.35436826944351196, - 0.3303464949131012, - 0.30820247530937195, - 0.288540244102478, - 0.2718961238861084, - 0.2587241530418396, - 0.24938364326953888, - 0.24412934482097626, - 0.24310457706451416, - 0.24633730947971344, - 0.2537393569946289, - 0.26510879397392273, - 0.28013554215431213, - 0.298409640789032, - 0.31943267583847046, - 0.34263119101524353, - 0.45574092864990234, - 0.4306507110595703, - 0.40470221638679504, - 0.3786032795906067, - 0.35306575894355774, - 0.32878628373146057, - 0.30642715096473694, - 0.28659820556640625, - 0.26984038949012756, - 0.25661078095436096, - 0.24727025628089905, - 0.24207359552383423, - 0.24116255342960358, - 0.24456198513507843, - 0.2521791458129883, - 0.2638062834739685, - 0.27912622690200806, - 0.29772108793258667, - 0.31908363103866577, - 0.34263119101524353, - 0.45574092864990234, - 0.43293699622154236, - 0.4092124104499817, - 0.38521435856819153, - 0.3615974187850952, - 0.33900579810142517, - 0.3180557191371918, - 0.29931867122650146, - 0.28330573439598083, - 0.2704537510871887, - 0.2611132264137268, - 0.2555389404296875, - 0.2538830041885376, - 0.25619053840637207, - 0.2623986303806305, - 0.2723379135131836, - 0.2857373356819153, - 0.3022312819957733, - 0.3213699162006378, - 0.34263119101524353, - 0.45574092864990234, - 0.43761083483695984, - 0.41843265295028687, - 0.39872944355010986, - 0.3790386915206909, - 0.35989752411842346, - 0.34182804822921753, - 0.32532310485839844, - 0.3108329772949219, - 0.29875290393829346, - 0.28941237926483154, - 0.28306618332862854, - 0.27988743782043457, - 0.27996283769607544, - 0.2832903563976288, - 0.2897792160511017, - 0.29925239086151123, - 0.3114514946937561, - 0.3260437846183777, - 0.34263119101524353, - 0.45574092864990234, - 0.44416579604148865, - 0.4313637316226959, - 0.4176839590072632, - 0.4034996032714844, - 0.38919758796691895, - 0.3751680254936218, - 0.3617936372756958, - 0.34943917393684387, - 0.3384416997432709, - 0.32910117506980896, - 0.32167237997055054, - 0.31635797023773193, - 0.3133028745651245, - 0.31259045004844666, - 0.31424012780189514, - 0.31820690631866455, - 0.32438260316848755, - 0.3325987160205841, - 0.34263119101524353, - 0.45574092864990234, - 0.4518914818763733, - 0.4466044008731842, - 0.44002383947372437, - 0.43232935667037964, - 0.4237307906150818, - 0.41446274518966675, - 0.4047779440879822, - 0.39494064450263977, - 0.38521912693977356, - 0.37587860226631165, - 0.36717385053634644, - 0.3593422770500183, - 0.35259756445884705, - 0.3471236526966095, - 0.3430698812007904, - 0.3405468165874481, - 0.33962324261665344, - 0.34032443165779114, - 0.34263119101524353, - 0.45574089884757996, - 0.4599507451057434, - 0.4625030755996704, - 0.4633282721042633, - 0.4624038338661194, - 0.459755003452301, - 0.4554539918899536, - 0.4496181309223175, - 0.44240662455558777, - 0.4340161681175232, - 0.4246756434440613, - 0.41463983058929443, - 0.40418246388435364, - 0.3935888409614563, - 0.38314786553382874, - 0.37314438819885254, - 0.3638512194156647, - 0.35552191734313965, - 0.34838366508483887, - 0.34263116121292114, - 0.45574089884757996, - 0.4674702286720276, - 0.47733691334724426, - 0.4850718677043915, - 0.49046406149864197, - 0.49336645007133484, - 0.4936998188495636, - 0.4914551377296448, - 0.4866935610771179, - 0.479544997215271, - 0.4702044725418091, - 0.4589267373085022, - 0.4460194706916809, - 0.4318346679210663, - 0.41675931215286255, - 0.40120458602905273, - 0.38559481501579285, - 0.3703557848930359, - 0.35590314865112305, - 0.34263116121292114, - 0.45574089884757996, - 0.47363507747650146, - 0.48949843645095825, - 0.5028983354568481, - 0.5134692192077637, - 0.5209227800369263, - 0.5250556468963623, - 0.5257551670074463, - 0.5230021476745605, - 0.5168717503547668, - 0.5075312256813049, - 0.4952353537082672, - 0.48031947016716003, - 0.4631904661655426, - 0.444315642118454, - 0.42420974373817444, - 0.4034212827682495, - 0.3825173079967499, - 0.3620679974555969, - 0.34263116121292114, - 0.45574089884757996, - 0.4777772128582001, - 0.4976697266101837, - 0.5148758888244629, - 0.5289263129234314, - 0.5394377708435059, - 0.5461235046386719, - 0.5488012433052063, - 0.547397792339325, - 0.5419515371322632, - 0.5326110124588013, - 0.519631028175354, - 0.5033655762672424, - 0.48425838351249695, - 0.46283066272735596, - 0.43966686725616455, - 0.41539883613586426, - 0.39068859815597534, - 0.36621013283729553, - 0.34263116121292114, - 0.45574089884757996, - 0.47944778203964233, - 0.5009652972221375, - 0.5197066068649292, - 0.5351603627204895, - 0.5469051003456116, - 0.5546205043792725, - 0.5580959916114807, - 0.557236909866333, - 0.5520665049552917, - 0.5427259802818298, - 0.5294700860977173, - 0.5126603245735168, - 0.49275532364845276, - 0.47029799222946167, - 0.44590091705322266, - 0.4202295243740082, - 0.3939841687679291, - 0.3678807020187378, - 0.34263116121292114 - ], - "z": [ - -3.038273334503174, - -3.029521942138672, - -3.0107250213623047, - -2.9823949337005615, - -2.9453046321868896, - -2.900465726852417, - -2.8491015434265137, - -2.7926127910614014, - -2.7325406074523926, - -2.6705236434936523, - -2.608253240585327, - -2.5474283695220947, - -2.4897079467773438, - -2.436666488647461, - -2.3897509574890137, - -2.350240707397461, - -2.3192138671875, - -2.2975165843963623, - -2.285740613937378, - -2.284207344055176, - -3.038273334503174, - -3.0292646884918213, - -3.0102174282073975, - -2.9816508293151855, - -2.9443445205688477, - -2.899315595626831, - -2.847792625427246, - -2.7911810874938965, - -2.731025218963623, - -2.6689655780792236, - -2.6066954135894775, - -2.545912981033325, - -2.488276481628418, - -2.4353578090667725, - -2.3886008262634277, - -2.349280595779419, - -2.318469762802124, - -2.297008991241455, - -2.2854833602905273, - -2.284207344055176, - -3.038273334503174, - -3.029426336288452, - -3.0105361938476562, - -2.9821183681488037, - -2.9449477195739746, - -2.900038242340088, - -2.8486149311065674, - -2.7920806407928467, - -2.7319774627685547, - -2.6699445247650146, - -2.6076743602752686, - -2.546865224838257, - -2.489175796508789, - -2.4361801147460938, - -2.3893234729766846, - -2.349883794784546, - -2.318937301635742, - -2.297327756881714, - -2.285645008087158, - -2.284207344055176, - -3.038273334503174, - -3.02998948097229, - -3.0116472244262695, - -2.9837467670440674, - -2.947049140930176, - -2.902555465698242, - -2.8514792919158936, - -2.7952139377593994, - -2.7352941036224365, - -2.673354148864746, - -2.611083984375, - -2.5501818656921387, - -2.492309093475342, - -2.439044237136841, - -2.3918404579162598, - -2.351985216140747, - -2.320565700531006, - -2.298438787460327, - -2.286208152770996, - -2.284207344055176, - -3.038273334503174, - -3.030893087387085, - -3.013429641723633, - -2.9863595962524414, - -2.95042085647583, - -2.9065942764282227, - -2.8560750484466553, - -2.800241231918335, - -2.7406156063079834, - -2.6788251399993896, - -2.6165547370910645, - -2.5555033683776855, - -2.4973363876342773, - -2.4436399936676025, - -2.3958795070648193, - -2.3553571701049805, - -2.323178291320801, - -2.3002212047576904, - -2.287111759185791, - -2.284207344055176, - -3.038273334503174, - -3.032039165496826, - -3.015690565109253, - -2.989673614501953, - -2.954697847366333, - -2.911717176437378, - -2.8619041442871094, - -2.8066177368164062, - -2.747365713119507, - -2.6857643127441406, - -2.6234941482543945, - -2.562253475189209, - -2.5037128925323486, - -2.4494693279266357, - -2.4010024070739746, - -2.3596339225769043, - -2.3264925479888916, - -2.3024821281433105, - -2.2882578372955322, - -2.284207344055176, - -3.038273334503174, - -3.0333034992218018, - -3.0181849002838135, - -2.9933297634124756, - -2.959416151046753, - -2.9173688888549805, - -2.868335247039795, - -2.813652753829956, - -2.754812479019165, - -2.693420171737671, - -2.6311497688293457, - -2.569700241088867, - -2.5107479095458984, - -2.4559004306793213, - -2.406654119491577, - -2.364352226257324, - -2.330148696899414, - -2.304976463317871, - -2.289522171020508, - -2.284207344055176, - -3.038273334503174, - -3.0345492362976074, - -3.0206422805786133, - -2.996932029724121, - -2.964064598083496, - -2.9229371547698975, - -2.874671220779419, - -2.8205835819244385, - -2.7621493339538574, - -2.700962543487549, - -2.6386923789978027, - -2.5770370960235596, - -2.517678737640381, - -2.4622364044189453, - -2.412222385406494, - -2.3690009117126465, - -2.3337507247924805, - -2.307433843612671, - -2.2907679080963135, - -2.284207344055176, - -3.038273334503174, - -3.0356411933898926, - -3.022796630859375, - -3.000089645385742, - -2.9681396484375, - -2.9278182983398438, - -2.880225658416748, - -2.8266594409942627, - -2.768580913543701, - -2.7075746059417725, - -2.6453042030334473, - -2.5834686756134033, - -2.523754596710205, - -2.4677906036376953, - -2.4171035289764404, - -2.3730759620666504, - -2.3369085788726807, - -2.3095881938934326, - -2.2918598651885986, - -2.284207344055176, - -3.038273334503174, - -3.036461353302002, - -3.024414300918579, - -3.0024607181549072, - -2.9711997509002686, - -2.931483745574951, - -2.8843963146209717, - -2.831221580505371, - -2.7734103202819824, - -2.7125394344329834, - -2.6502692699432373, - -2.5882983207702637, - -2.5283169746398926, - -2.471961259841919, - -2.420768976211548, - -2.37613582611084, - -2.3392796516418457, - -2.3112058639526367, - -2.292679786682129, - -2.284207344055176, - -3.038273334503174, - -3.0369203090667725, - -3.025320053100586, - -3.003788471221924, - -2.9729130268096924, - -2.9335360527038574, - -2.8867313861846924, - -2.8337759971618652, - -2.7761144638061523, - -2.7153193950653076, - -2.6530489921569824, - -2.5910022258758545, - -2.5308713912963867, - -2.4742965698242188, - -2.422821044921875, - -2.3778491020202637, - -2.340607166290283, - -2.3121113777160645, - -2.2931389808654785, - -2.284207344055176, - -3.038273334503174, - -3.036968946456909, - -3.0254156589508057, - -3.0039284229278564, - -2.9730939865112305, - -2.9337525367736816, - -2.8869779109954834, - -2.834045886993408, - -2.776399850845337, - -2.7156128883361816, - -2.6533424854278564, - -2.591287612915039, - -2.5311410427093506, - -2.4745430946350098, - -2.4230377674102783, - -2.3780300617218018, - -2.340747356414795, - -2.3122072219848633, - -2.2931876182556152, - -2.284207344055176, - -3.038273334503174, - -3.0366015434265137, - -3.024690866470337, - -3.00286602973938, - -2.9717228412628174, - -2.93211030960083, - -2.8851091861724854, - -2.8320016860961914, - -2.774235963821411, - -2.713388204574585, - -2.651118040084839, - -2.5891237258911133, - -2.529096841812134, - -2.4726743698120117, - -2.4213955402374268, - -2.3766589164733887, - -2.3396849632263184, - -2.3114824295043945, - -2.2928199768066406, - -2.284207344055176, - -3.038273334503174, - -3.035857915878296, - -3.023224115371704, - -3.000716209411621, - -2.9689483642578125, - -2.9287869930267334, - -2.8813276290893555, - -2.8278648853302, - -2.769857168197632, - -2.7088866233825684, - -2.646616220474243, - -2.584744930267334, - -2.5249600410461426, - -2.468892812728882, - -2.41807222366333, - -2.373884439468384, - -2.3375351428985596, - -2.3100156784057617, - -2.292076587677002, - -2.284207344055176, - -3.038273334503174, - -3.0348188877105713, - -3.021174430847168, - -2.9977118968963623, - -2.965071201324463, - -2.924142837524414, - -2.8760430812835693, - -2.8220841884613037, - -2.763737916946411, - -2.7025957107543945, - -2.6403253078460693, - -2.5786256790161133, - -2.519179344177246, - -2.4636082649230957, - -2.4134278297424316, - -2.370007276535034, - -2.334530830383301, - -2.3079659938812256, - -2.2910375595092773, - -2.284207344055176, - -3.038273334503174, - -3.033596992492676, - -3.018764019012451, - -2.994178533554077, - -2.9605114459991455, - -2.9186809062957764, - -2.869828224182129, - -2.8152856826782227, - -2.7565412521362305, - -2.695197343826294, - -2.6329269409179688, - -2.5714290142059326, - -2.512380838394165, - -2.457393169403076, - -2.407966136932373, - -2.365447521209717, - -2.3309974670410156, - -2.3055553436279297, - -2.289815664291382, - -2.284207344055176, - -3.038273334503174, - -3.0323245525360107, - -3.01625394821167, - -2.9904990196228027, - -2.955763101577759, - -2.9129934310913086, - -2.863356351852417, - -2.80820631980896, - -2.74904727935791, - -2.687493085861206, - -2.625222682952881, - -2.5639350414276123, - -2.5053014755249023, - -2.4509215354919434, - -2.402278423309326, - -2.36069917678833, - -2.327317953109741, - -2.3030452728271484, - -2.288543224334717, - -2.284207344055176, - -3.038273334503174, - -3.031139612197876, - -3.013916015625, - -2.987072467803955, - -2.951340913772583, - -2.90769624710083, - -2.8573291301727295, - -2.8016128540039062, - -2.742067813873291, - -2.6803178787231445, - -2.6180477142333984, - -2.556955575942993, - -2.4987082481384277, - -2.4448940753936768, - -2.3969814777374268, - -2.3562772274017334, - -2.3238914012908936, - -2.3007075786590576, - -2.287358283996582, - -2.284207344055176, - -3.038273334503174, - -3.030170440673828, - -3.0120041370391846, - -2.984269857406616, - -2.9477241039276123, - -2.9033639430999756, - -2.8523993492126465, - -2.796220302581787, - -2.7363593578338623, - -2.6744494438171387, - -2.6121792793273926, - -2.5512471199035645, - -2.4933154582977295, - -2.4399642944335938, - -2.3926491737365723, - -2.3526601791381836, - -2.3210887908935547, - -2.298795700073242, - -2.286389112472534, - -2.284207344055176, - -3.038273334503174, - -3.029521942138672, - -3.0107250213623047, - -2.9823949337005615, - -2.9453046321868896, - -2.900465726852417, - -2.8491013050079346, - -2.7926127910614014, - -2.7325406074523926, - -2.6705236434936523, - -2.608253240585327, - -2.5474283695220947, - -2.4897079467773438, - -2.436666488647461, - -2.3897509574890137, - -2.350240707397461, - -2.3192138671875, - -2.2975165843963623, - -2.285740613937378, - -2.284207344055176 - ] - }, - { - "alphahull": 0, - "color": "#FFA15A", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.050142284482717514, - 0.06315790861845016, - 0.07632024586200714, - 0.08927025645971298, - 0.10165470838546753, - 0.11313576996326447, - 0.12340027093887329, - 0.1321682333946228, - 0.13920047879219055, - 0.14430519938468933, - 0.14734312891960144, - 0.14823144674301147, - 0.14694586396217346, - 0.1435214728116989, - 0.13805168867111206, - 0.1306857168674469, - 0.12162443995475769, - 0.11111508309841156, - 0.09944429248571396, - 0.08693040907382965, - 0.050142284482717514, - 0.0624316968023777, - 0.07488762587308884, - 0.0871703177690506, - 0.09894471615552902, - 0.10988965630531311, - 0.11970658600330353, - 0.12812770903110504, - 0.13492336869239807, - 0.13990813493728638, - 0.1429460644721985, - 0.1439543068408966, - 0.1429053246974945, - 0.13982778787612915, - 0.1348055750131607, - 0.1279757022857666, - 0.1195245012640953, - 0.10968247056007385, - 0.0987180769443512, - 0.08693040907382965, - 0.05014228820800781, - 0.06040092185139656, - 0.07088147103786469, - 0.08129805326461792, - 0.09136652201414108, - 0.10081225633621216, - 0.10937757790088654, - 0.11682885885238647, - 0.1229628473520279, - 0.12761221826076508, - 0.13065016269683838, - 0.13199380040168762, - 0.13160647451877594, - 0.12949877977371216, - 0.12572817504405975, - 0.12039752304553986, - 0.11365223675966263, - 0.1056763082742691, - 0.09668730199337006, - 0.08693040907382965, - 0.05014228820800781, - 0.057285647839307785, - 0.06473590433597565, - 0.07228982448577881, - 0.07974135875701904, - 0.08688724040985107, - 0.09353256970643997, - 0.09949606657028198, - 0.10461506247520447, - 0.10874991118907928, - 0.11178785562515259, - 0.1136460080742836, - 0.11427368223667145, - 0.113653764128685, - 0.11180315911769867, - 0.10877235233783722, - 0.10464400798082352, - 0.09953074157238007, - 0.09357202798128128, - 0.08693040907382965, - 0.05014228820800781, - 0.05342346802353859, - 0.05711688846349716, - 0.061121802777051926, - 0.06532896310091019, - 0.06962361186742783, - 0.07388860732316971, - 0.07800760865211487, - 0.0818682536482811, - 0.08536524325609207, - 0.08840318024158478, - 0.09089920669794083, - 0.09278522431850433, - 0.09400980174541473, - 0.09453953057527542, - 0.09435996413230896, - 0.09347598999738693, - 0.09191172569990158, - 0.08970984816551208, - 0.08693040907382965, - 0.05014228820800781, - 0.049232907593250275, - 0.04885007068514824, - 0.04900422692298889, - 0.04969116672873497, - 0.05089215189218521, - 0.05257442966103554, - 0.0546921044588089, - 0.05718741565942764, - 0.05999229475855827, - 0.06303023546934128, - 0.06621836125850677, - 0.06946972757577896, - 0.07269562780857086, - 0.0758080706000328, - 0.07872216403484344, - 0.0813584104180336, - 0.08364491164684296, - 0.08551928400993347, - 0.08693040907382965, - 0.05014228820800781, - 0.04516807571053505, - 0.04083128646016121, - 0.03725022077560425, - 0.034522559493780136, - 0.032722704112529755, - 0.03189975395798683, - 0.032076146453619, - 0.03324708342552185, - 0.03538062050938606, - 0.03841856122016907, - 0.04227803274989128, - 0.04685376584529877, - 0.05202094465494156, - 0.05763861536979675, - 0.06355354934930801, - 0.06960440427064896, - 0.07562612742185593, - 0.08145445585250854, - 0.08693040907382965, - 0.05014228820800781, - 0.041669465601444244, - 0.0339294970035553, - 0.027133513242006302, - 0.02146688848733902, - 0.01708419993519783, - 0.014104988425970078, - 0.012610524892807007, - 0.01264156773686409, - 0.014197278767824173, - 0.017235219478607178, - 0.02167251706123352, - 0.02738814428448677, - 0.0342261828482151, - 0.04200011119246483, - 0.0504978783428669, - 0.05948770046234131, - 0.06872433423995972, - 0.07795584201812744, - 0.08693040907382965, - 0.05014229193329811, - 0.03911620005965233, - 0.02889261394739151, - 0.019750405102968216, - 0.011938948184251785, - 0.0056713297963142395, - 0.001118496060371399, - -0.0015953555703163147, - -0.002396203577518463, - -0.001262180507183075, - 0.0017757564783096313, - 0.006634745746850967, - 0.01318226009607315, - 0.021239686757326126, - 0.03058723360300064, - 0.04096994176506996, - 0.05210459232330322, - 0.06368745118379593, - 0.07540258020162582, - 0.08693040907382965, - 0.05014229193329811, - 0.03778497129678726, - 0.026266466826200485, - 0.015900976955890656, - 0.006971240043640137, - -0.000279158353805542, - -0.0056524574756622314, - -0.009002074599266052, - -0.010236650705337524, - -0.009322494268417358, - -0.006284557282924652, - -0.0012056976556777954, - 0.005775541067123413, - 0.014468740671873093, - 0.02463674545288086, - 0.036002226173877716, - 0.048255160450935364, - 0.061061304062604904, - 0.07407134771347046, - 0.08693040907382965, - 0.05014229193329811, - 0.037820033729076385, - 0.026335634291172028, - 0.016002364456653595, - 0.0071020834147930145, - -0.00012243539094924927, - -0.005474120378494263, - -0.008806988596916199, - -0.010030142962932587, - -0.00911019742488861, - -0.0060722604393959045, - -0.0009991899132728577, - 0.005970627069473267, - 0.014647077769041061, - 0.02479347214102745, - 0.036133069545030594, - 0.0483565479516983, - 0.06113047152757645, - 0.07410641014575958, - 0.08693040907382965, - 0.05014229193329811, - 0.039217591285705566, - 0.02909262478351593, - 0.02004358544945717, - 0.012317296117544174, - 0.006124526262283325, - 0.0016341805458068848, - -0.001031249761581421, - -0.001799061894416809, - -0.0006482973694801331, - 0.0023896396160125732, - 0.0072318874299526215, - 0.013746365904808044, - 0.021755371242761612, - 0.031040433794260025, - 0.04134828969836235, - 0.052397772669792175, - 0.06388746201992035, - 0.07550396770238876, - 0.08693040907382965, - 0.05014228820800781, - 0.04182618856430054, - 0.034238673746585846, - 0.027586709707975388, - 0.022051740437746048, - 0.017784755676984787, - 0.014902140945196152, - 0.01348252221941948, - 0.013564631342887878, - 0.015146229416131973, - 0.018184170126914978, - 0.02259558066725731, - 0.028260141611099243, - 0.03502333164215088, - 0.042700666934251785, - 0.051082734018564224, - 0.059940896928310394, - 0.06903351098299026, - 0.07811257243156433, - 0.08693040907382965, - 0.05014228820800781, - 0.045363157987594604, - 0.041216135025024414, - 0.03781433403491974, - 0.035250548273324966, - 0.03359471261501312, - 0.03289199620485306, - 0.03316155821084976, - 0.034396059811115265, - 0.036561816930770874, - 0.03959975391626358, - 0.0434270054101944, - 0.047939177602529526, - 0.053013190627098083, - 0.05851062387228012, - 0.06428153812885284, - 0.07016851752996445, - 0.07601097226142883, - 0.0816495418548584, - 0.08693040907382965, - 0.05014228820800781, - 0.04944520443677902, - 0.049268871545791626, - 0.049618110060691833, - 0.05048338696360588, - 0.05184110254049301, - 0.05365421995520592, - 0.05587328225374222, - 0.058437760919332504, - 0.06127770245075226, - 0.06431563943624496, - 0.06746871024370193, - 0.07065090537071228, - 0.07377541065216064, - 0.07675701379776001, - 0.07951438426971436, - 0.08197229355573654, - 0.08406370878219604, - 0.08573158085346222, - 0.08693040907382965, - 0.05014228820800781, - 0.05362997204065323, - 0.05752426013350487, - 0.061718933284282684, - 0.06609956175088882, - 0.07054666429758072, - 0.07493893057107925, - 0.0791565477848053, - 0.08308447897434235, - 0.08661556988954544, - 0.08965350687503815, - 0.09211543202400208, - 0.09393416345119476, - 0.09506012499332428, - 0.09546258300542831, - 0.0951305627822876, - 0.09407311677932739, - 0.09231910109519958, - 0.08991634845733643, - 0.08693040907382965, - 0.05014228820800781, - 0.057463984936475754, - 0.0650877133011818, - 0.0728055015206337, - 0.08040684461593628, - 0.08768439292907715, - 0.09443962574005127, - 0.10048829764127731, - 0.10566539317369461, - 0.10982970893383026, - 0.11286764591932297, - 0.11469633877277374, - 0.11526592075824738, - 0.11456082761287689, - 0.11260031163692474, - 0.10943784564733505, - 0.1051596850156784, - 0.09988255053758621, - 0.09375036507844925, - 0.08693040907382965, - 0.05014228820800781, - 0.06053176522254944, - 0.07113958895206451, - 0.08167640119791031, - 0.09185479581356049, - 0.10139711201190948, - 0.11004307866096497, - 0.1175568550825119, - 0.12373347580432892, - 0.12840445339679718, - 0.13144239783287048, - 0.13276442885398865, - 0.13233447074890137, - 0.1301642805337906, - 0.12631303071975708, - 0.12088578939437866, - 0.11403058469295502, - 0.10593442618846893, - 0.09681814908981323, - 0.08693040907382965, - 0.050142284482717514, - 0.06250087171792984, - 0.0750240832567215, - 0.08737032860517502, - 0.09920284152030945, - 0.11019884049892426, - 0.12005840241909027, - 0.12851257622241974, - 0.13533075153827667, - 0.14032694697380066, - 0.14336489140987396, - 0.1443617045879364, - 0.1432901918888092, - 0.1401796042919159, - 0.13511475920677185, - 0.12823383510112762, - 0.11972451210021973, - 0.10981892049312592, - 0.09878724813461304, - 0.08693040907382965, - 0.050142284482717514, - 0.06315790861845016, - 0.07632024586200714, - 0.08927025645971298, - 0.10165470838546753, - 0.11313576996326447, - 0.12340027093887329, - 0.1321682333946228, - 0.13920047879219055, - 0.14430519938468933, - 0.14734312891960144, - 0.14823144674301147, - 0.14694586396217346, - 0.1435214728116989, - 0.13805168867111206, - 0.1306857168674469, - 0.12162443995475769, - 0.11111508309841156, - 0.09944429248571396, - 0.08693040907382965 - ], - "y": [ - 0.15042681992053986, - 0.15119126439094543, - 0.15344008803367615, - 0.15711194276809692, - 0.16210666298866272, - 0.16828802227973938, - 0.17548741400241852, - 0.18350842595100403, - 0.19213229417800903, - 0.20112377405166626, - 0.21023759245872498, - 0.21922516822814941, - 0.227841317653656, - 0.23585103452205658, - 0.24303582310676575, - 0.24919971823692322, - 0.2541745603084564, - 0.25782468914985657, - 0.2600504755973816, - 0.26079124212265015, - 0.15042681992053986, - 0.1552947461605072, - 0.1615351140499115, - 0.16897770762443542, - 0.177419513463974, - 0.1866302490234375, - 0.19635868072509766, - 0.20633943378925323, - 0.21630026400089264, - 0.22596946358680725, - 0.23508329689502716, - 0.24339313805103302, - 0.2506723403930664, - 0.2567223012447357, - 0.26137804985046387, - 0.2645125687122345, - 0.2660403549671173, - 0.2659197151660919, - 0.26415395736694336, - 0.26079124212265015, - 0.15042681992053986, - 0.1589522659778595, - 0.16875040531158447, - 0.17955394089221954, - 0.19106818735599518, - 0.20297907292842865, - 0.2149617075920105, - 0.22668921947479248, - 0.23784172534942627, - 0.24811498820781708, - 0.257228821516037, - 0.26493459939956665, - 0.27102211117744446, - 0.27532532811164856, - 0.2777268886566162, - 0.2781612277030945, - 0.27661657333374023, - 0.2731350064277649, - 0.26781147718429565, - 0.26079124212265015, - 0.15042681992053986, - 0.16176748275756836, - 0.1743040382862091, - 0.1876945197582245, - 0.20157365500926971, - 0.2155628651380539, - 0.22928056120872498, - 0.24235254526138306, - 0.25442227721214294, - 0.2651605010032654, - 0.2742743492126465, - 0.2815151512622833, - 0.28668543696403503, - 0.28964418172836304, - 0.29031068086624146, - 0.288666695356369, - 0.284757137298584, - 0.2786886394023895, - 0.2706266939640045, - 0.26079124212265015, - 0.15042681992053986, - 0.16343532502651215, - 0.17759421467781067, - 0.19251729547977448, - 0.20779746770858765, - 0.22301794588565826, - 0.23776355385780334, - 0.25163209438323975, - 0.2642452120780945, - 0.2752588987350464, - 0.2843727171421051, - 0.29133808612823486, - 0.29596495628356934, - 0.2981271743774414, - 0.29776573181152344, - 0.29489052295684814, - 0.28957992792129517, - 0.2819788157939911, - 0.2722945213317871, - 0.26079124212265015, - 0.15042681992053986, - 0.16377504169940948, - 0.17826439440250397, - 0.1934996396303177, - 0.20906518399715424, - 0.2245364636182785, - 0.23949144780635834, - 0.25352221727371216, - 0.2662460207939148, - 0.27731582522392273, - 0.28642964363098145, - 0.2933388948440552, - 0.29785510897636414, - 0.2998550832271576, - 0.29928427934646606, - 0.2961582541465759, - 0.2905622720718384, - 0.2826489806175232, - 0.27263426780700684, - 0.26079124212265015, - 0.15042681992053986, - 0.16274982690811157, - 0.176241934299469, - 0.19053509831428528, - 0.2052394449710846, - 0.21995386481285095, - 0.23427699506282806, - 0.24781814217567444, - 0.2602079510688782, - 0.27110838890075684, - 0.28022223711013794, - 0.28730079531669617, - 0.2921510338783264, - 0.2946406304836273, - 0.2947016656398773, - 0.2923325002193451, - 0.2875977158546448, - 0.2806265354156494, - 0.27160903811454773, - 0.26079124212265015, - 0.15042681992053986, - 0.16047078371047974, - 0.17174601554870605, - 0.1839449405670166, - 0.19673481583595276, - 0.20976673066616058, - 0.22268524765968323, - 0.23513798415660858, - 0.2467852234840393, - 0.25730928778648376, - 0.2664231061935425, - 0.2738780975341797, - 0.27947086095809937, - 0.2830488681793213, - 0.28451454639434814, - 0.28382784128189087, - 0.2810075879096985, - 0.2761306166648865, - 0.2693299949169159, - 0.26079124212265015, - 0.15042681992053986, - 0.1571848839521408, - 0.165263831615448, - 0.1744433045387268, - 0.18447288870811462, - 0.1950790137052536, - 0.20597237348556519, - 0.21685580909252167, - 0.2274324744939804, - 0.23741385340690613, - 0.24652767181396484, - 0.2545253336429596, - 0.26118871569633484, - 0.26633599400520325, - 0.26982682943344116, - 0.2715659439563751, - 0.2715059220790863, - 0.2696484327316284, - 0.26604411005973816, - 0.26079124212265015, - 0.15042681992053986, - 0.15324819087982178, - 0.157497838139534, - 0.16305983066558838, - 0.16978245973587036, - 0.17748233675956726, - 0.185949444770813, - 0.1949528157711029, - 0.20424684882164001, - 0.21357804536819458, - 0.2226918637752533, - 0.2313397228717804, - 0.23928570747375488, - 0.24631306529045105, - 0.25223013758659363, - 0.25687551498413086, - 0.26012247800827026, - 0.2618824243545532, - 0.26210740208625793, - 0.26079124212265015, - 0.15042681992053986, - 0.1490873247385025, - 0.1492895931005478, - 0.151028111577034, - 0.1542554497718811, - 0.15888358652591705, - 0.16478627920150757, - 0.17180249094963074, - 0.17974087595939636, - 0.18838486075401306, - 0.19749867916107178, - 0.20683373510837555, - 0.21613538265228271, - 0.22514989972114563, - 0.23363138735294342, - 0.2413485050201416, - 0.2480907440185547, - 0.253674179315567, - 0.25794655084609985, - 0.26079124212265015, - 0.15042681992053986, - 0.14515316486358643, - 0.14152857661247253, - 0.13965195417404175, - 0.13957446813583374, - 0.14129823446273804, - 0.14477621018886566, - 0.14991356432437897, - 0.15657013654708862, - 0.1645643711090088, - 0.1736781895160675, - 0.183663010597229, - 0.19424645602703094, - 0.20513984560966492, - 0.2160460203886032, - 0.22666750848293304, - 0.23671458661556244, - 0.24591317772865295, - 0.2540123760700226, - 0.26079127192497253, - 0.15042681992053986, - 0.14187204837799072, - 0.13505584001541138, - 0.13016416132450104, - 0.12733040750026703, - 0.12663188576698303, - 0.12808766961097717, - 0.13165801763534546, - 0.1372455656528473, - 0.144697904586792, - 0.1538117229938507, - 0.16433843970298767, - 0.17599090933799744, - 0.18845129013061523, - 0.2013796865940094, - 0.21442344784736633, - 0.22722679376602173, - 0.2394404411315918, - 0.2507312595844269, - 0.26079127192497253, - 0.15042681992053986, - 0.1395995318889618, - 0.13057279586791992, - 0.12359285354614258, - 0.11885010451078415, - 0.11647391319274902, - 0.11652909219264984, - 0.11901413649320602, - 0.12386126816272736, - 0.13093827664852142, - 0.14005210995674133, - 0.15095412731170654, - 0.1633470207452774, - 0.1768927127122879, - 0.1912216991186142, - 0.20594315230846405, - 0.22065548598766327, - 0.23495738208293915, - 0.24845874309539795, - 0.26079127192497253, - 0.15042681992053986, - 0.13858187198638916, - 0.1285652369260788, - 0.12065015733242035, - 0.11505254358053207, - 0.11192507296800613, - 0.11135305464267731, - 0.11335209012031555, - 0.11786766350269318, - 0.12477657943964005, - 0.13389040529727936, - 0.14496052265167236, - 0.15768498182296753, - 0.17171667516231537, - 0.1866728663444519, - 0.20214559137821198, - 0.21771278977394104, - 0.23294982314109802, - 0.24744108319282532, - 0.26079127192497253, - 0.15042681992053986, - 0.1389293521642685, - 0.12925073504447937, - 0.12165495753288269, - 0.1163492351770401, - 0.11347829550504684, - 0.1131204292178154, - 0.11528541892766953, - 0.11991419643163681, - 0.12688052654266357, - 0.1359943449497223, - 0.1470070630311966, - 0.1596183031797409, - 0.17348405718803406, - 0.18822608888149261, - 0.2034422755241394, - 0.21871758997440338, - 0.2336353212594986, - 0.24778856337070465, - 0.26079127192497253, - 0.15042681992053986, - 0.14060431718826294, - 0.13255497813224792, - 0.12649837136268616, - 0.12259967625141144, - 0.12096527218818665, - 0.12163973599672318, - 0.12460464984178543, - 0.1297791600227356, - 0.13702210783958435, - 0.14613592624664307, - 0.15687201917171478, - 0.1689375340938568, - 0.18200336396694183, - 0.19571305811405182, - 0.20969271659851074, - 0.22356098890304565, - 0.23693957924842834, - 0.2494635283946991, - 0.26079127192497253, - 0.15042681992053986, - 0.14342527091503143, - 0.13811993598937988, - 0.13465552031993866, - 0.13312652707099915, - 0.1335746943950653, - 0.13598774373531342, - 0.14029988646507263, - 0.14639349281787872, - 0.1541023552417755, - 0.16321617364883423, - 0.1734863668680191, - 0.1846327781677246, - 0.19635136425495148, - 0.20832248032093048, - 0.22021958231925964, - 0.23171815276145935, - 0.2425045222043991, - 0.2522844970226288, - 0.26079127192497253, - 0.15042681992053986, - 0.147086501121521, - 0.14534252882003784, - 0.14524248242378235, - 0.1467890590429306, - 0.1499401032924652, - 0.15460965037345886, - 0.16067031025886536, - 0.16795679926872253, - 0.17627033591270447, - 0.18538415431976318, - 0.19504967331886292, - 0.20500320196151733, - 0.21497327089309692, - 0.22468788921833038, - 0.2338820993900299, - 0.24230509996414185, - 0.24972712993621826, - 0.25594571232795715, - 0.26079127192497253, - 0.15042681992053986, - 0.15119126439094543, - 0.15344008803367615, - 0.15711194276809692, - 0.1621066778898239, - 0.16828803718090057, - 0.1754874289035797, - 0.18350844085216522, - 0.19213230907917023, - 0.20112378895282745, - 0.21023760735988617, - 0.21922516822814941, - 0.2278413325548172, - 0.23585104942321777, - 0.24303583800792694, - 0.24919971823692322, - 0.2541745901107788, - 0.25782468914985657, - 0.2600504755973816, - 0.26079124212265015 - ], - "z": [ - -1.0028455257415771, - -1.0072228908538818, - -1.0215158462524414, - -1.0453342199325562, - -1.0780284404754639, - -1.1187068223953247, - -1.166259527206421, - -1.2193896770477295, - -1.2766478061676025, - -1.3364722728729248, - -1.397231101989746, - -1.457266926765442, - -1.5149421691894531, - -1.5686835050582886, - -1.6170251369476318, - -1.6586484909057617, - -1.692418098449707, - -1.7174127101898193, - -1.7329506874084473, - -1.7386081218719482, - -1.0028455257415771, - -1.0066437721252441, - -1.0203731060028076, - -1.0436593294143677, - -1.0758670568466187, - -1.1161177158355713, - -1.163313627243042, - -1.2161670923233032, - -1.2732365131378174, - -1.3329652547836304, - -1.3937240839004517, - -1.4538555145263672, - -1.5117194652557373, - -1.5657374858856201, - -1.614436149597168, - -1.6564871072769165, - -1.6907432079315186, - -1.716270089149475, - -1.73237144947052, - -1.7386081218719482, - -1.0028455257415771, - -1.0061966180801392, - -1.019491195678711, - -1.0423665046691895, - -1.0741987228393555, - -1.114119291305542, - -1.1610395908355713, - -1.213679552078247, - -1.2706032991409302, - -1.3302582502365112, - -1.3910170793533325, - -1.45122230052948, - -1.5092319250106812, - -1.563463568687439, - -1.6124377250671387, - -1.6548186540603638, - -1.6894503831863403, - -1.7153880596160889, - -1.731924295425415, - -1.7386081218719482, - -1.0028455257415771, - -1.0059301853179932, - -1.018965482711792, - -1.0415958166122437, - -1.0732040405273438, - -1.112928032875061, - -1.1596839427947998, - -1.212196707725525, - -1.269033670425415, - -1.3286445140838623, - -1.3894033432006836, - -1.4496526718139648, - -1.507749080657959, - -1.5621079206466675, - -1.6112463474273682, - -1.6538240909576416, - -1.6886796951293945, - -1.71486234664917, - -1.731657862663269, - -1.7386081218719482, - -1.0028455257415771, - -1.0058730840682983, - -1.0188528299331665, - -1.0414308309555054, - -1.072991132736206, - -1.1126729249954224, - -1.1593937873840332, - -1.2118791341781616, - -1.2686975002288818, - -1.3282990455627441, - -1.3890577554702759, - -1.4493165016174316, - -1.5074316263198853, - -1.5618176460266113, - -1.6109912395477295, - -1.653611183166504, - -1.6885147094726562, - -1.714749813079834, - -1.7316007614135742, - -1.7386081218719482, - -1.0028455257415771, - -1.0060316324234009, - -1.0191656351089478, - -1.0418894290924072, - -1.0735828876495361, - -1.1133817434310913, - -1.1602002382278442, - -1.212761402130127, - -1.2696313858032227, - -1.3292591571807861, - -1.3900178670883179, - -1.450250506401062, - -1.5083138942718506, - -1.562624216079712, - -1.6117000579833984, - -1.654202938079834, - -1.6889731884002686, - -1.7150626182556152, - -1.7317593097686768, - -1.7386081218719482, - -1.0028455257415771, - -1.0063886642456055, - -1.0198699235916138, - -1.042921781539917, - -1.0749151706695557, - -1.1149775981903076, - -1.1620161533355713, - -1.2147477865219116, - -1.2717342376708984, - -1.3314207792282104, - -1.3921796083450317, - -1.4523532390594482, - -1.5103002786636353, - -1.564440131187439, - -1.6132959127426147, - -1.6555352210998535, - -1.6900055408477783, - -1.7157669067382812, - -1.7321163415908813, - -1.7386081218719482, - -1.0028455257415771, - -1.006905436515808, - -1.020889401435852, - -1.044416069984436, - -1.0768436193466187, - -1.1172876358032227, - -1.164644718170166, - -1.2176231145858765, - -1.274777889251709, - -1.3345497846603394, - -1.3953086137771606, - -1.4553968906402588, - -1.5131756067276, - -1.5670685768127441, - -1.6156059503555298, - -1.6574636697769165, - -1.691499948501587, - -1.7167863845825195, - -1.732633113861084, - -1.7386081218719482, - -1.0028455257415771, - -1.0075260400772095, - -1.022113561630249, - -1.046210527420044, - -1.0791593790054321, - -1.1200613975524902, - -1.1678009033203125, - -1.2210757732391357, - -1.2784326076507568, - -1.3383071422576904, - -1.3990659713745117, - -1.4590517282485962, - -1.5166281461715698, - -1.5702248811721802, - -1.6183797121047974, - -1.6597793102264404, - -1.6932942867279053, - -1.7180105447769165, - -1.7332537174224854, - -1.7386081218719482, - -1.0028455257415771, - -1.0081830024719238, - -1.0234098434448242, - -1.0481104850769043, - -1.0816112756729126, - -1.1229983568191528, - -1.1711429357528687, - -1.2247315645217896, - -1.2823024988174438, - -1.3422855138778687, - -1.40304434299469, - -1.4629215002059937, - -1.5202839374542236, - -1.5735669136047363, - -1.6213167905807495, - -1.6622313261032104, - -1.6951943635940552, - -1.7193067073822021, - -1.7339107990264893, - -1.7386081218719482, - -1.0028455257415771, - -1.008805513381958, - -1.0246375799179077, - -1.0499101877212524, - -1.0839338302612305, - -1.1257803440093994, - -1.1743084192276, - -1.2281943559646606, - -1.2859680652618408, - -1.3460538387298584, - -1.4068126678466797, - -1.4665870666503906, - -1.5237467288970947, - -1.5767323970794678, - -1.624098777770996, - -1.6645538806915283, - -1.6969940662384033, - -1.7205345630645752, - -1.7345331907272339, - -1.7386081218719482, - -1.0028455257415771, - -1.0093257427215576, - -1.0256638526916504, - -1.0514144897460938, - -1.085875153541565, - -1.128105878829956, - -1.1769545078277588, - -1.2310888767242432, - -1.289032220840454, - -1.3492038249969482, - -1.4099626541137695, - -1.469651222229004, - -1.5266413688659668, - -1.5793784856796265, - -1.6264241933822632, - -1.6664952039718628, - -1.6984983682632446, - -1.7215608358383179, - -1.7350534200668335, - -1.7386081218719482, - -1.0028455257415771, - -1.0096874237060547, - -1.0263774394989014, - -1.0524605512619019, - -1.087225079536438, - -1.1297228336334229, - -1.1787943840026855, - -1.233101487159729, - -1.2911626100540161, - -1.3513940572738647, - -1.412152886390686, - -1.4717817306518555, - -1.5286539793014526, - -1.5812184810638428, - -1.62804114818573, - -1.6678451299667358, - -1.6995444297790527, - -1.7222744226455688, - -1.7354151010513306, - -1.7386081218719482, - -1.0028455257415771, - -1.0098514556884766, - -1.0267010927200317, - -1.0529348850250244, - -1.0878372192382812, - -1.1304559707641602, - -1.1796287298202515, - -1.2340141534805298, - -1.2921286821365356, - -1.3523873090744019, - -1.4131460189819336, - -1.472747802734375, - -1.5295665264129639, - -1.5820527076721191, - -1.6287744045257568, - -1.668457269668579, - -1.7000187635421753, - -1.7225980758666992, - -1.7355791330337524, - -1.7386081218719482, - -1.0028455257415771, - -1.0097999572753906, - -1.026599645614624, - -1.052786111831665, - -1.087645173072815, - -1.1302260160446167, - -1.1793670654296875, - -1.2337279319763184, - -1.2918256521224976, - -1.3520756959915161, - -1.4128345251083374, - -1.472444772720337, - -1.5292803049087524, - -1.5817910432815552, - -1.6285443305969238, - -1.6682652235031128, - -1.6998698711395264, - -1.722496509552002, - -1.735527753829956, - -1.7386081218719482, - -1.0028455257415771, - -1.0095386505126953, - -1.0260839462280273, - -1.052030324935913, - -1.086669921875, - -1.129057765007019, - -1.1780376434326172, - -1.2322736978530884, - -1.2902864217758179, - -1.3504931926727295, - -1.4112520217895508, - -1.4709054231643677, - -1.527826189994812, - -1.5804616212844849, - -1.6273760795593262, - -1.6672898530960083, - -1.699114203453064, - -1.7219809293746948, - -1.7352663278579712, - -1.7386081218719482, - -1.0028455257415771, - -1.0090956687927246, - -1.0252101421356201, - -1.0507495403289795, - -1.0850169658660889, - -1.1270778179168701, - -1.1757848262786865, - -1.229809284210205, - -1.287677526473999, - -1.3478113412857056, - -1.4085700511932373, - -1.4682966470718384, - -1.5253616571426392, - -1.5782086849212646, - -1.6253961324691772, - -1.6656370162963867, - -1.6978332996368408, - -1.7211071252822876, - -1.73482346534729, - -1.7386081218719482, - -1.0028455257415771, - -1.008519172668457, - -1.0240728855133057, - -1.0490823984146118, - -1.0828654766082764, - -1.1245007514953613, - -1.1728523969650269, - -1.226601481437683, - -1.2842819690704346, - -1.34432053565979, - -1.4050793647766113, - -1.464901089668274, - -1.5221539735794067, - -1.5752763748168945, - -1.622819185256958, - -1.6634855270385742, - -1.6961662769317627, - -1.7199697494506836, - -1.734246850013733, - -1.7386081218719482, - -1.0028455257415771, - -1.0078715085983276, - -1.0227952003479004, - -1.047209620475769, - -1.0804487466812134, - -1.1216058731079102, - -1.1695582866668701, - -1.2229981422424316, - -1.2804676294326782, - -1.340399146080017, - -1.4011579751968384, - -1.4610867500305176, - -1.5185506343841553, - -1.5719822645187378, - -1.6199241876602173, - -1.6610686779022217, - -1.69429349899292, - -1.7186921834945679, - -1.7335991859436035, - -1.7386081218719482, - -1.0028455257415771, - -1.0072228908538818, - -1.0215158462524414, - -1.0453342199325562, - -1.0780284404754639, - -1.1187068223953247, - -1.166259527206421, - -1.2193896770477295, - -1.2766478061676025, - -1.3364722728729248, - -1.397231101989746, - -1.457266926765442, - -1.5149421691894531, - -1.5686835050582886, - -1.6170251369476318, - -1.6586484909057617, - -1.692418098449707, - -1.7174127101898193, - -1.7329506874084473, - -1.7386081218719482 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.11931630969047546, - 0.11906084418296814, - 0.11830141395330429, - 0.11705873161554337, - 0.11536670476198196, - 0.11327147483825684, - 0.11083019524812698, - 0.10810946673154831, - 0.10518350452184677, - 0.10213210433721542, - 0.0990385189652443, - 0.09598712623119354, - 0.09306115657091141, - 0.09034042805433273, - 0.08789915591478348, - 0.08580392599105835, - 0.08411189168691635, - 0.08286920934915543, - 0.08210977911949158, - 0.08185431361198425, - 0.11931630969047546, - 0.11300572752952576, - 0.10635635256767273, - 0.0995495542883873, - 0.0927710086107254, - 0.0862056240439415, - 0.08003246784210205, - 0.07441994547843933, - 0.06952114403247833, - 0.06546970456838608, - 0.06237611547112465, - 0.0603247731924057, - 0.05937163531780243, - 0.0595426969230175, - 0.06083329766988754, - 0.06320822983980179, - 0.06660271435976028, - 0.07092414796352386, - 0.0760546624660492, - 0.08185431361198425, - 0.11931630969047546, - 0.10760678350925446, - 0.09570572525262833, - 0.08393777161836624, - 0.07262391597032547, - 0.06207278370857239, - 0.052572160959243774, - 0.04438121244311333, - 0.037723369896411896, - 0.0327802374958992, - 0.02968665212392807, - 0.028526991605758667, - 0.029332898557186127, - 0.03208238631486893, - 0.036700449883937836, - 0.04306112974882126, - 0.05099092796444893, - 0.06027351692318916, - 0.0706557184457779, - 0.08185431361198425, - 0.11931631714105606, - 0.10344906151294708, - 0.08750368654727936, - 0.0719151496887207, - 0.05710865929722786, - 0.04348810762166977, - 0.03142499923706055, - 0.021248415112495422, - 0.013235941529273987, - 0.00760611891746521, - 0.00451253354549408, - 0.004039563238620758, - 0.0062001049518585205, - 0.0109352245926857, - 0.018115773797035217, - 0.027545884251594543, - 0.03896830976009369, - 0.05207148194313049, - 0.06649799644947052, - 0.08185431361198425, - 0.11931631714105606, - 0.10098312050104141, - 0.08263906836509705, - 0.06478454172611237, - 0.04790656641125679, - 0.03246553987264633, - 0.018882639706134796, - 0.007528364658355713, - -0.0012875422835350037, - -0.007324635982513428, - -0.010418221354484558, - -0.010483920574188232, - -0.007519945502281189, - -0.0016071349382400513, - 0.007093213498592377, - 0.018343783915042877, - 0.03183770179748535, - 0.04720686003565788, - 0.06403204798698425, - 0.08185431361198425, - 0.11931631714105606, - 0.10047617554664612, - 0.08163901418447495, - 0.0633186548948288, - 0.04601483419537544, - 0.030199557542800903, - 0.016304217278957367, - 0.004707843065261841, - -0.00427323579788208, - -0.010394051671028137, - -0.013487637042999268, - -0.013469614088535309, - -0.010340467095375061, - -0.0041855573654174805, - 0.004827223718166351, - 0.01645205169916153, - 0.030371807515621185, - 0.04620680958032608, - 0.06352511048316956, - 0.08185431361198425, - 0.11931631714105606, - 0.10198317468166351, - 0.08461190015077591, - 0.06767633557319641, - 0.051638443022966385, - 0.036935701966285706, - 0.023969151079654694, - 0.013092480599880219, - 0.004602402448654175, - -0.001269519329071045, - -0.004363104701042175, - -0.004593975841999054, - -0.0019558295607566833, - 0.003479376435279846, - 0.011563368141651154, - 0.022075660526752472, - 0.0347294956445694, - 0.049179691821336746, - 0.06503210961818695, - 0.08185431361198425, - 0.11931631714105606, - 0.10534080117940903, - 0.09123556315898895, - 0.07738536596298218, - 0.06416800618171692, - 0.05194401368498802, - 0.041046831756830215, - 0.03177368640899658, - 0.02437756210565567, - 0.019060179591178894, - 0.015966594219207764, - 0.015181183815002441, - 0.01672537624835968, - 0.02055705338716507, - 0.02657168358564377, - 0.03460521996021271, - 0.044438526034355164, - 0.05580335855484009, - 0.06838972866535187, - 0.08185431361198425, - 0.11931630969047546, - 0.11018520593643188, - 0.10079223662614822, - 0.0913936197757721, - 0.08224573731422424, - 0.07359810918569565, - 0.06568661332130432, - 0.058727066963911057, - 0.052909303456544876, - 0.04839202016592026, - 0.04529843106865883, - 0.043712928891181946, - 0.043678753077983856, - 0.04519684240221977, - 0.048225779086351395, - 0.05268295109272003, - 0.05844677984714508, - 0.06536003202199936, - 0.07323414087295532, - 0.08185431361198425, - 0.11931630969047546, - 0.11599142849445343, - 0.11224629729986191, - 0.10818309336900711, - 0.10391263663768768, - 0.09955142438411713, - 0.09521840512752533, - 0.09103178977966309, - 0.08710576593875885, - 0.0835474282503128, - 0.08045384287834167, - 0.07790938764810562, - 0.07598347961902618, - 0.07472863793373108, - 0.07417909801006317, - 0.07434985786676407, - 0.0752362459897995, - 0.07681409269571304, - 0.07904035598039627, - 0.08185431361198425, - 0.11931630969047546, - 0.12213025987148285, - 0.12435653060674667, - 0.12593437731266022, - 0.12682077288627625, - 0.12699152529239655, - 0.12644198536872864, - 0.12518714368343353, - 0.1232612282037735, - 0.12071678042411804, - 0.11762318760156631, - 0.11406485736370087, - 0.11013883352279663, - 0.10595221072435379, - 0.10161919891834259, - 0.09725798666477203, - 0.0929875299334526, - 0.08892431855201721, - 0.08517919480800629, - 0.08185431361198425, - 0.11931630969047546, - 0.1279364824295044, - 0.13581058382987976, - 0.14272384345531464, - 0.1484876573085785, - 0.15294483304023743, - 0.15597377717494965, - 0.15749186277389526, - 0.15745769441127777, - 0.1558721959590912, - 0.15277859568595886, - 0.14826130867004395, - 0.14244355261325836, - 0.1354840099811554, - 0.12757252156734467, - 0.11892488598823547, - 0.10977699607610703, - 0.10037838667631149, - 0.09098541736602783, - 0.08185431361198425, - 0.11931630969047546, - 0.13278089463710785, - 0.14536726474761963, - 0.15673209726810455, - 0.16656538844108582, - 0.17459893226623535, - 0.18061356246471405, - 0.18444523215293884, - 0.18598943948745728, - 0.18520402908325195, - 0.18211042881011963, - 0.17679306864738464, - 0.16939693689346313, - 0.1601237952709198, - 0.1492266207933426, - 0.1370026171207428, - 0.12378524988889694, - 0.10993505269289017, - 0.09582982212305069, - 0.08185430616140366, - 0.11931630969047546, - 0.13613852858543396, - 0.15199093520641327, - 0.1664411425590515, - 0.17909497022628784, - 0.18960724771022797, - 0.19769124686717987, - 0.203126460313797, - 0.20576462149620056, - 0.20553374290466309, - 0.20244014263153076, - 0.19656823575496674, - 0.1880781501531601, - 0.17720147967338562, - 0.1642349362373352, - 0.14953218400478363, - 0.1334942877292633, - 0.11655872315168381, - 0.0991874560713768, - 0.08185430616140366, - 0.11931630969047546, - 0.13764551281929016, - 0.15496382117271423, - 0.17079880833625793, - 0.18471857905387878, - 0.19634339213371277, - 0.2053561806678772, - 0.21151109039783478, - 0.21464024484157562, - 0.21465826034545898, - 0.21156467497348785, - 0.2054438591003418, - 0.19646278023719788, - 0.18486641347408295, - 0.1709710955619812, - 0.15515579283237457, - 0.13785196840763092, - 0.11953160911798477, - 0.1006944477558136, - 0.08185430616140366, - 0.11931630969047546, - 0.13713857531547546, - 0.15396377444267273, - 0.16933292150497437, - 0.18282684683799744, - 0.19407740235328674, - 0.20277775824069977, - 0.2086905837059021, - 0.21165455877780914, - 0.21158885955810547, - 0.20849525928497314, - 0.20245817303657532, - 0.193642258644104, - 0.18228799104690552, - 0.16870510578155518, - 0.15326406061649323, - 0.13638608157634735, - 0.11853156238794327, - 0.1001875102519989, - 0.08185430616140366, - 0.11931630969047546, - 0.1346726268529892, - 0.14909914135932922, - 0.16220231354236603, - 0.17362475395202637, - 0.1830548346042633, - 0.19023539125919342, - 0.1949705183506012, - 0.19713106751441956, - 0.19665808975696564, - 0.1935645043849945, - 0.18793469667434692, - 0.1799222081899643, - 0.16974562406539917, - 0.15768253803253174, - 0.14406196773052216, - 0.129255473613739, - 0.11366693675518036, - 0.09772156178951263, - 0.08185430616140366, - 0.11931630969047546, - 0.13051490485668182, - 0.14089709520339966, - 0.1501796841621399, - 0.15810948610305786, - 0.1644701510667801, - 0.169088214635849, - 0.171837717294693, - 0.17264363169670105, - 0.17148396372795105, - 0.16839036345481873, - 0.16344726085662842, - 0.1567894071340561, - 0.14859846234321594, - 0.13909783959388733, - 0.12854671478271484, - 0.11723284423351288, - 0.1054648905992508, - 0.09356383979320526, - 0.08185431361198425, - 0.11931630969047546, - 0.12511594593524933, - 0.13024646043777466, - 0.13456788659095764, - 0.13796237111091614, - 0.1403372883796692, - 0.14162787795066833, - 0.1417989432811737, - 0.14084580540657043, - 0.13879446685314178, - 0.13570088148117065, - 0.1316494345664978, - 0.1267506331205368, - 0.12113811820745468, - 0.11496497690677643, - 0.10839958488941193, - 0.10162104666233063, - 0.0948142558336258, - 0.08816488087177277, - 0.08185431361198425, - 0.11931630969047546, - 0.11906084418296814, - 0.1183014065027237, - 0.11705872416496277, - 0.11536668986082077, - 0.11327145993709564, - 0.11083018034696579, - 0.10810945183038712, - 0.10518348217010498, - 0.10213208943605423, - 0.0990384966135025, - 0.09598710387945175, - 0.09306113421916962, - 0.09034041315317154, - 0.08789914101362228, - 0.08580391108989716, - 0.08411188423633575, - 0.08286920189857483, - 0.08210977911949158, - 0.08185431361198425 - ], - "y": [ - 0.357948899269104, - 0.37564709782600403, - 0.39132970571517944, - 0.40456897020339966, - 0.41500380635261536, - 0.4223495125770569, - 0.42640572786331177, - 0.42706185579299927, - 0.4242999255657196, - 0.41819530725479126, - 0.40891456604003906, - 0.3967107832431793, - 0.381916880607605, - 0.3649364113807678, - 0.346232533454895, - 0.3263154625892639, - 0.3057284355163574, - 0.28503307700157166, - 0.26479387283325195, - 0.24556289613246918, - 0.357948899269104, - 0.37469103932380676, - 0.38944369554519653, - 0.40180444717407227, - 0.41143614053726196, - 0.4180760383605957, - 0.42154303193092346, - 0.4217425584793091, - 0.4186691641807556, - 0.41240665316581726, - 0.4031258821487427, - 0.39108002185821533, - 0.3765976130962372, - 0.3600737452507019, - 0.3419590890407562, - 0.3227477967739105, - 0.30296391248703003, - 0.28314706683158875, - 0.2638378143310547, - 0.24556289613246918, - 0.357948899269104, - 0.37183767557144165, - 0.3838147819042206, - 0.39355355501174927, - 0.4007883071899414, - 0.40532174706459045, - 0.4070301353931427, - 0.40586695075035095, - 0.40186387300491333, - 0.39513012766838074, - 0.38584935665130615, - 0.37427476048469543, - 0.36072200536727905, - 0.34556084871292114, - 0.3292047679424286, - 0.31209996342658997, - 0.29471302032470703, - 0.2775181531906128, - 0.2609844505786896, - 0.24556289613246918, - 0.357948899269104, - 0.36739617586135864, - 0.3750529885292053, - 0.3807104229927063, - 0.3842141628265381, - 0.3854686915874481, - 0.38443973660469055, - 0.3811553716659546, - 0.37570521235466003, - 0.3682379126548767, - 0.3589571416378021, - 0.34811609983444214, - 0.3360104560852051, - 0.3229704201221466, - 0.30935171246528625, - 0.29552581906318665, - 0.2818698585033417, - 0.26875633001327515, - 0.25654298067092896, - 0.24556289613246918, - 0.357948899269104, - 0.3618479073047638, - 0.36410772800445557, - 0.36466675996780396, - 0.36350977420806885, - 0.36066827178001404, - 0.3562197983264923, - 0.35028570890426636, - 0.34302785992622375, - 0.3346441984176636, - 0.325363427400589, - 0.31543871760368347, - 0.30514076352119446, - 0.29475048184394836, - 0.28455132246017456, - 0.274821400642395, - 0.2658262252807617, - 0.2578110992908478, - 0.2509946823120117, - 0.24556289613246918, - 0.357948899269104, - 0.3557940423488617, - 0.352165162563324, - 0.347161203622818, - 0.34091874957084656, - 0.3336080312728882, - 0.32542845606803894, - 0.3166031837463379, - 0.3073728680610657, - 0.2979893684387207, - 0.2887086272239685, - 0.2797837555408478, - 0.2714582085609436, - 0.263959139585495, - 0.2574910521507263, - 0.2522304058074951, - 0.24832066893577576, - 0.2458685040473938, - 0.24494081735610962, - 0.24556289613246918, - 0.357948899269104, - 0.34989064931869507, - 0.34051936864852905, - 0.3300907611846924, - 0.31888923048973083, - 0.30722033977508545, - 0.2954024076461792, - 0.2837577760219574, - 0.2726040780544281, - 0.2622455954551697, - 0.2529648244380951, - 0.245014950633049, - 0.2386128306388855, - 0.23393307626247406, - 0.23110336065292358, - 0.230200856924057, - 0.23125019669532776, - 0.23422273993492126, - 0.239037424325943, - 0.24556291103363037, - 0.357948899269104, - 0.3447774350643158, - 0.3304324448108673, - 0.3153052031993866, - 0.29980841279029846, - 0.2843647301197052, - 0.2693954110145569, - 0.2553088366985321, - 0.24248918890953064, - 0.2312861979007721, - 0.2220054268836975, - 0.21490004658699036, - 0.210163876414299, - 0.20792609453201294, - 0.20824775099754333, - 0.21112003922462463, - 0.21646466851234436, - 0.22413580119609833, - 0.23392421007156372, - 0.24556291103363037, - 0.357948899269104, - 0.3410085141658783, - 0.32299739122390747, - 0.3044068515300751, - 0.2857440114021301, - 0.26751792430877686, - 0.2502257823944092, - 0.23433923721313477, - 0.2202916294336319, - 0.20846617221832275, - 0.19918540120124817, - 0.1927025020122528, - 0.18919427692890167, - 0.18875645101070404, - 0.191400945186615, - 0.1970556527376175, - 0.20556631684303284, - 0.21670076251029968, - 0.23015528917312622, - 0.24556291103363037, - 0.357948899269104, - 0.33899229764938354, - 0.31901994347572327, - 0.298576682806015, - 0.27822014689445496, - 0.25850558280944824, - 0.23997080326080322, - 0.22312134504318237, - 0.20841683447360992, - 0.19625836610794067, - 0.1869775950908661, - 0.18082770705223083, - 0.17797639966011047, - 0.17850147187709808, - 0.18238860368728638, - 0.18953177332878113, - 0.19973613321781158, - 0.21272331476211548, - 0.22813907265663147, - 0.24556291103363037, - 0.357948899269104, - 0.33894726634025574, - 0.31893110275268555, - 0.2984464764595032, - 0.27805209159851074, - 0.25830432772636414, - 0.23974177241325378, - 0.2228708267211914, - 0.20815163850784302, - 0.19598573446273804, - 0.18670496344566345, - 0.18056249618530273, - 0.1777258664369583, - 0.17827245593070984, - 0.18218733370304108, - 0.1893637478351593, - 0.19960592687129974, - 0.21263447403907776, - 0.22809404134750366, - 0.24556291103363037, - 0.357948899269104, - 0.34087830781936646, - 0.3227405250072479, - 0.30403032898902893, - 0.28525811433792114, - 0.26693594455718994, - 0.249563530087471, - 0.23361480236053467, - 0.21952477097511292, - 0.20767781138420105, - 0.19839704036712646, - 0.19193562865257263, - 0.18846984207630157, - 0.18809419870376587, - 0.19081895053386688, - 0.1965697705745697, - 0.2051897943019867, - 0.21644389629364014, - 0.23002508282661438, - 0.24556291103363037, - 0.357948899269104, - 0.3445761501789093, - 0.33003538846969604, - 0.3147231936454773, - 0.2990573048591614, - 0.28346505761146545, - 0.26837170124053955, - 0.25418898463249207, - 0.24130377173423767, - 0.23006753623485565, - 0.22078678011894226, - 0.2137146294116974, - 0.20904403924942017, - 0.2069023847579956, - 0.2073480784893036, - 0.21036896109580994, - 0.21588265895843506, - 0.22373874485492706, - 0.23372294008731842, - 0.24556291103363037, - 0.357948899269104, - 0.3496401309967041, - 0.3400251567363739, - 0.3293663263320923, - 0.31795433163642883, - 0.3061005175113678, - 0.2941281795501709, - 0.2823638916015625, - 0.2711285948753357, - 0.26072871685028076, - 0.2514479458332062, - 0.2435394525527954, - 0.2372189462184906, - 0.23265884816646576, - 0.22998353838920593, - 0.2292659878730774, - 0.23052577674388885, - 0.2337285280227661, - 0.23878690600395203, - 0.24556291103363037, - 0.357948899269104, - 0.35552141070365906, - 0.35162732005119324, - 0.3463728427886963, - 0.3399013578891754, - 0.33238935470581055, - 0.3240417540073395, - 0.3150862753391266, - 0.30576714873313904, - 0.29633861780166626, - 0.2870578467845917, - 0.27817800641059875, - 0.2699413299560547, - 0.26257243752479553, - 0.25627240538597107, - 0.251213014125824, - 0.24753230810165405, - 0.24533067643642426, - 0.24466818571090698, - 0.24556289613246918, - 0.357948899269104, - 0.3615826964378357, - 0.3635845482349396, - 0.3638998866081238, - 0.36252009868621826, - 0.3594828248023987, - 0.35487091541290283, - 0.3488101661205292, - 0.34146589040756226, - 0.33303844928741455, - 0.32375767827033997, - 0.313876748085022, - 0.3036652207374573, - 0.2934015989303589, - 0.2833658754825592, - 0.2738317549228668, - 0.26505935192108154, - 0.2572879195213318, - 0.2507294714450836, - 0.24556289613246918, - 0.357948899269104, - 0.3671671748161316, - 0.37460118532180786, - 0.38004815578460693, - 0.38335952162742615, - 0.3844449520111084, - 0.3832748532295227, - 0.3798811435699463, - 0.37435632944107056, - 0.36685121059417725, - 0.35757043957710266, - 0.34676721692085266, - 0.3347361981868744, - 0.32180553674697876, - 0.3083280026912689, - 0.2946711778640747, - 0.2812076210975647, - 0.2683045268058777, - 0.2563139498233795, - 0.24556289613246918, - 0.357948899269104, - 0.3716696500778198, - 0.38348332047462463, - 0.3930676579475403, - 0.4001612961292267, - 0.40457066893577576, - 0.40617549419403076, - 0.40493208169937134, - 0.4008742570877075, - 0.394112765789032, - 0.3848319947719574, - 0.37328511476516724, - 0.35978713631629944, - 0.3447062075138092, - 0.3284537196159363, - 0.31147295236587524, - 0.29422712326049805, - 0.27718669176101685, - 0.26081642508506775, - 0.24556289613246918, - 0.357948899269104, - 0.37460222840309143, - 0.3892684578895569, - 0.4015476107597351, - 0.411104679107666, - 0.4176790118217468, - 0.4210912585258484, - 0.4212483763694763, - 0.418146014213562, - 0.4118688404560089, - 0.4025880694389343, - 0.39055687189102173, - 0.37610340118408203, - 0.35962194204330444, - 0.34156206250190735, - 0.3224163353443146, - 0.3027070462703705, - 0.2829718291759491, - 0.26374900341033936, - 0.24556289613246918, - 0.357948899269104, - 0.37564709782600403, - 0.39132970571517944, - 0.40456897020339966, - 0.41500380635261536, - 0.4223495125770569, - 0.42640572786331177, - 0.42706185579299927, - 0.4242999255657196, - 0.41819530725479126, - 0.40891456604003906, - 0.3967107832431793, - 0.381916880607605, - 0.3649364113807678, - 0.346232533454895, - 0.3263154625892639, - 0.3057284355163574, - 0.28503307700157166, - 0.26479387283325195, - 0.24556289613246918 - ], - "z": [ - -2.3863260746002197, - -2.3784470558166504, - -2.3605644702911377, - -2.3331656455993652, - -2.2969985008239746, - -2.25304913520813, - -2.202516555786133, - -2.1467792987823486, - -2.087357521057129, - -2.025872230529785, - -1.9640004634857178, - -1.9034299850463867, - -1.8458130359649658, - -1.792721152305603, - -1.7456026077270508, - -1.7057427167892456, - -1.6742287874221802, - -1.651920199394226, - -1.6394257545471191, - -1.6370861530303955, - -2.3863260746002197, - -2.3788933753967285, - -2.3614444732666016, - -2.334455728530884, - -2.298663377761841, - -2.2550435066223145, - -2.2047858238220215, - -2.149261713027954, - -2.0899851322174072, - -2.028573513031006, - -1.966701865196228, - -1.9060577154159546, - -1.8482953310012817, - -1.7949904203414917, - -1.7475969791412354, - -1.7074077129364014, - -1.6755188703536987, - -1.6528003215789795, - -1.6398718357086182, - -1.6370861530303955, - -2.3863260746002197, - -2.379591226577759, - -2.362821340560913, - -2.3364739418029785, - -2.3012678623199463, - -2.2581632137298584, - -2.2083358764648438, - -2.1531448364257812, - -2.0940959453582764, - -2.032799482345581, - -1.9709278345108032, - -1.9101684093475342, - -1.8521785736083984, - -1.7985403537750244, - -1.7507168054580688, - -1.7100121974945068, - -1.6775370836257935, - -1.654177188873291, - -1.6405699253082275, - -1.6370861530303955, - -2.3863260746002197, - -2.380465269088745, - -2.3645458221435547, - -2.3390016555786133, - -2.3045296669006348, - -2.262070417404175, - -2.2127816677093506, - -2.158008337020874, - -2.0992441177368164, - -2.0380921363830566, - -1.9762203693389893, - -1.9153165817260742, - -1.8570419549942017, - -1.8029862642288208, - -1.7546238899230957, - -1.7132741212844849, - -1.6800646781921387, - -1.6559016704559326, - -1.6414439678192139, - -1.6370861530303955, - -2.3863260746002197, - -2.381420850753784, - -2.3664307594299316, - -2.3417646884918213, - -2.3080954551696777, - -2.2663416862487793, - -2.217641830444336, - -2.1633248329162598, - -2.1048717498779297, - -2.043877601623535, - -1.9820059537887573, - -1.920944333076477, - -1.8623584508895874, - -1.8078464269638062, - -1.7588951587677002, - -1.7168399095535278, - -1.6828278303146362, - -1.6577866077423096, - -1.642399549484253, - -1.6370861530303955, - -2.3863260746002197, - -2.382354259490967, - -2.368272304534912, - -2.34446382522583, - -2.3115787506103516, - -2.2705140113830566, - -2.2223894596099854, - -2.16851806640625, - -2.1103694438934326, - -2.0495293140411377, - -1.9876575469970703, - -1.9264417886734009, - -1.8675518035888672, - -1.8125940561294556, - -1.7630674839019775, - -1.720323085784912, - -1.6855268478393555, - -1.6596280336380005, - -1.6433329582214355, - -1.6370861530303955, - -2.3863260746002197, - -2.383164405822754, - -2.36987042427063, - -2.346806526184082, - -2.3146018981933594, - -2.2741353511810303, - -2.2265100479125977, - -2.173025608062744, - -2.115140914916992, - -2.0544347763061523, - -1.9925628900527954, - -1.93121337890625, - -1.8720594644546509, - -1.8167146444320679, - -1.7666888236999512, - -1.7233463525772095, - -1.6878695487976074, - -1.6612262725830078, - -1.6441431045532227, - -1.6370861530303955, - -2.3863260746002197, - -2.383763551712036, - -2.3710522651672363, - -2.348538875579834, - -2.3168375492095947, - -2.276813268661499, - -2.2295572757720947, - -2.176358938217163, - -2.1186695098876953, - -2.0580620765686035, - -1.9961904287338257, - -1.9347418546676636, - -1.8753926753997803, - -1.819761872291565, - -1.76936674118042, - -1.7255820035934448, - -1.689602017402649, - -1.6624081134796143, - -1.6447422504425049, - -1.6370861530303955, - -2.3863260746002197, - -2.3840866088867188, - -2.371689796447754, - -2.349473237991333, - -2.3180434703826904, - -2.278257369995117, - -2.231200695037842, - -2.178156852722168, - -2.120572328567505, - -2.060018539428711, - -1.9981467723846436, - -1.9366449117660522, - -1.8771904706954956, - -1.821405291557312, - -1.7708110809326172, - -1.726787805557251, - -1.6905362606048584, - -1.6630455255508423, - -1.6450653076171875, - -1.6370861530303955, - -2.3863260746002197, - -2.384098768234253, - -2.371713638305664, - -2.349508285522461, - -2.3180885314941406, - -2.2783117294311523, - -2.231262445449829, - -2.1782243251800537, - -2.1206438541412354, - -2.060091972351074, - -1.9982202053070068, - -1.9367163181304932, - -1.8772579431533813, - -1.8214669227600098, - -1.7708652019500732, - -1.7268329858779907, - -1.6905713081359863, - -1.663069486618042, - -1.6450774669647217, - -1.6370861530303955, - -2.3863260746002197, - -2.383798599243164, - -2.371121406555176, - -2.348640203475952, - -2.3169684410095215, - -2.2769699096679688, - -2.2297356128692627, - -2.176553964614868, - -2.118875741958618, - -2.058274269104004, - -1.996402621269226, - -1.9349483251571655, - -1.8755877017974854, - -1.8199400901794434, - -1.7695233821868896, - -1.725712776184082, - -1.689703345298767, - -1.6624772548675537, - -1.6447772979736328, - -1.6370861530303955, - -2.3863260746002197, - -2.383218765258789, - -2.3699772357940674, - -2.3469631671905518, - -2.3148040771484375, - -2.2743773460388184, - -2.226785659790039, - -2.1733272075653076, - -2.115460157394409, - -2.054762840270996, - -1.9928910732269287, - -1.9315325021743774, - -1.8723609447479248, - -1.8169902563095093, - -1.7669310569763184, - -1.7235485315322876, - -1.6880263090133667, - -1.6613330841064453, - -1.6441972255706787, - -1.6370861530303955, - -2.3863260746002197, - -2.3824217319488525, - -2.368405342102051, - -2.344658851623535, - -2.311830520629883, - -2.270815372467041, - -2.2227325439453125, - -2.168893337249756, - -2.110766649246216, - -2.0499377250671387, - -1.9880659580230713, - -1.9268391132354736, - -1.867927074432373, - -1.8129370212554932, - -1.7633689641952515, - -1.7205748558044434, - -1.68572199344635, - -1.6597610712051392, - -1.6434004306793213, - -1.6370861530303955, - -2.3863260746002197, - -2.3814942836761475, - -2.3665754795074463, - -2.3419768810272217, - -2.3083693981170654, - -2.266669750213623, - -2.218015193939209, - -2.1637330055236816, - -2.10530424118042, - -2.0443220138549805, - -1.9824503660202026, - -1.9213765859603882, - -1.8627668619155884, - -1.8082196712493896, - -1.759223222732544, - -1.717113733291626, - -1.6830400228500366, - -1.6579314470291138, - -1.6424728631973267, - -1.6370861530303955, - -2.3863260746002197, - -2.3805367946624756, - -2.3646864891052246, - -2.3392081260681152, - -2.3047962188720703, - -2.2623894214630127, - -2.2131447792053223, - -2.1584055423736572, - -2.0996646881103516, - -2.0385243892669678, - -1.9766526222229004, - -1.9157370328903198, - -1.8574392795562744, - -1.8033493757247925, - -1.7549431324005127, - -1.7135405540466309, - -1.6802711486816406, - -1.656042456626892, - -1.6415153741836548, - -1.6370861530303955, - -2.3863260746002197, - -2.379652976989746, - -2.362942934036255, - -2.3366522789001465, - -2.3014979362487793, - -2.2584388256073, - -2.2086493968963623, - -2.1534879207611084, - -2.094459056854248, - -2.033172845840454, - -1.9713010787963867, - -1.9105315208435059, - -1.8525216579437256, - -1.7988539934158325, - -1.7509922981262207, - -1.7102422714233398, - -1.6777154207229614, - -1.6542989015579224, - -1.6406315565109253, - -1.6370861530303955, - -2.3863260746002197, - -2.3789384365081787, - -2.3615336418151855, - -2.3345866203308105, - -2.2988321781158447, - -2.2552456855773926, - -2.2050158977508545, - -2.1495132446289062, - -2.0902516841888428, - -2.0288474559783936, - -1.9669756889343262, - -1.9063241481781006, - -1.8485469818115234, - -1.7952204942703247, - -1.7477991580963135, - -1.7075765132904053, - -1.675649642944336, - -1.652889609336853, - -1.6399171352386475, - -1.6370861530303955, - -2.3863260746002197, - -2.3784708976745605, - -2.3606114387512207, - -2.3332347869873047, - -2.2970876693725586, - -2.2531559467315674, - -2.2026381492614746, - -2.1469123363494873, - -2.087498426437378, - -2.0260169506073, - -1.9641451835632324, - -1.9035707712173462, - -1.8459460735321045, - -1.7928427457809448, - -1.7457095384597778, - -1.7058320045471191, - -1.6742979288101196, - -1.6519674062728882, - -1.6394495964050293, - -1.6370861530303955, - -2.3863260746002197, - -2.3783011436462402, - -2.360276222229004, - -2.3327434062957764, - -2.2964534759521484, - -2.25239634513855, - -2.2017738819122314, - -2.1459667682647705, - -2.0864975452423096, - -2.0249879360198975, - -1.9631162881851196, - -1.9025698900222778, - -1.8450005054473877, - -1.791978359222412, - -1.7449499368667603, - -1.705197811126709, - -1.6738064289093018, - -1.6516320705413818, - -1.6392797231674194, - -1.6370861530303955, - -2.3863260746002197, - -2.3784470558166504, - -2.3605644702911377, - -2.3331656455993652, - -2.2969985008239746, - -2.25304913520813, - -2.202516555786133, - -2.1467792987823486, - -2.087357521057129, - -2.025872230529785, - -1.9640004634857178, - -1.9034299850463867, - -1.8458130359649658, - -1.792721152305603, - -1.7456026077270508, - -1.7057428359985352, - -1.6742287874221802, - -1.651920199394226, - -1.6394257545471191, - -1.6370861530303955 - ] - }, - { - "alphahull": 0, - "color": "#FF97FF", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.15191367268562317, - 0.15165655314922333, - 0.1508922278881073, - 0.14964154362678528, - 0.14793862402439117, - 0.14582990109920502, - 0.14337289333343506, - 0.14063464105129242, - 0.13768982887268066, - 0.13461877405643463, - 0.13150526583194733, - 0.1284342110157013, - 0.12548939883708954, - 0.1227511465549469, - 0.12029414623975754, - 0.11818542331457138, - 0.11648248881101608, - 0.11523180454969406, - 0.11446747928857803, - 0.11421036720275879, - 0.15191367268562317, - 0.14366090297698975, - 0.1351190209388733, - 0.1265210211277008, - 0.11810144782066345, - 0.110089972615242, - 0.10270509868860245, - 0.096148282289505, - 0.09059838950634003, - 0.08620679378509521, - 0.08309327811002731, - 0.08134277164936066, - 0.08100304007530212, - 0.08208334445953369, - 0.08455421775579453, - 0.08834824711084366, - 0.09336195886135101, - 0.09945858269929886, - 0.10647182166576385, - 0.11421037465333939, - 0.15191367268562317, - 0.13653169572353363, - 0.12105506658554077, - 0.10590596497058868, - 0.09149760007858276, - 0.07822301238775253, - 0.0664442926645279, - 0.05648272484540939, - 0.04861003905534744, - 0.04304099082946777, - 0.03992747515439987, - 0.03935442119836807, - 0.04133748263120651, - 0.04582253098487854, - 0.052687257528305054, - 0.06174439936876297, - 0.07274690270423889, - 0.08539463579654694, - 0.09934261441230774, - 0.11421037465333939, - 0.15191367268562317, - 0.1310414969921112, - 0.11022444069385529, - 0.09003032743930817, - 0.07101000845432281, - 0.053682319819927216, - 0.038519881665706635, - 0.025936320424079895, - 0.016274861991405487, - 0.009799055755138397, - 0.006685540080070496, - 0.007019251585006714, - 0.010791078209877014, - 0.01789812743663788, - 0.028146550059318542, - 0.04125680774450302, - 0.05687127262353897, - 0.07456400990486145, - 0.09385243058204651, - 0.11421037465333939, - 0.15191367268562317, - 0.12778526544570923, - 0.10380080342292786, - 0.08061449974775314, - 0.05885883420705795, - 0.03912723809480667, - 0.02195793390274048, - 0.007819265127182007, - -0.0029031038284301758, - -0.009916707873344421, - -0.013030216097831726, - -0.012158721685409546, - -0.007325977087020874, - 0.0013361722230911255, - 0.013591483235359192, - 0.029105626046657562, - 0.04745543748140335, - 0.06814036518335342, - 0.09059619903564453, - 0.11421037465333939, - 0.15191367268562317, - 0.127115860581398, - 0.10248024761676788, - 0.07867882400751114, - 0.05636083334684372, - 0.03613504767417908, - 0.018553175032138824, - 0.004094809293746948, - -0.006845653057098389, - -0.013969823718070984, - -0.01708333194255829, - -0.01610127091407776, - -0.011050432920455933, - -0.0020685791969299316, - 0.010599285364151001, - 0.026607617735862732, - 0.045519761741161346, - 0.06681981682777405, - 0.08992679417133331, - 0.11421037465333939, - 0.15191367268562317, - 0.1291058212518692, - 0.10640588402748108, - 0.08443305641412735, - 0.06378670781850815, - 0.04502999782562256, - 0.02867458015680313, - 0.015166550874710083, - 0.0048744529485702515, - -0.0019210577011108398, - -0.0050345659255981445, - -0.004381164908409119, - 0.00002130866050720215, - 0.008052825927734375, - 0.019494235515594482, - 0.03403349220752716, - 0.05127399414777756, - 0.07074545323848724, - 0.09191674739122391, - 0.11421037465333939, - 0.15191367268562317, - 0.13353949785232544, - 0.11515231430530548, - 0.09725365042686462, - 0.0803317278623581, - 0.06484818458557129, - 0.051225319504737854, - 0.03983473777770996, - 0.030987165868282318, - 0.02492392808198929, - 0.021810412406921387, - 0.021731548011302948, - 0.02468949556350708, - 0.030603565275669098, - 0.039312414824962616, - 0.050578534603118896, - 0.06409458816051483, - 0.07949188351631165, - 0.09635043144226074, - 0.11421037465333939, - 0.15191367268562317, - 0.1399364471435547, - 0.12777170538902283, - 0.11575127393007278, - 0.10420303046703339, - 0.09344198554754257, - 0.08376167714595795, - 0.0754261389374733, - 0.06866277009248734, - 0.0636560469865799, - 0.06054253131151199, - 0.059407152235507965, - 0.060280896723270416, - 0.06313992291688919, - 0.06790623068809509, - 0.074449822306633, - 0.08259221166372299, - 0.09211127460002899, - 0.1027473732829094, - 0.11421037465333939, - 0.15191367268562317, - 0.14760345220565796, - 0.14289657771587372, - 0.13792143762111664, - 0.13281375169754028, - 0.12771283090114594, - 0.12275782972574234, - 0.1180838942527771, - 0.11381852626800537, - 0.11007807403802872, - 0.10696455836296082, - 0.1045629158616066, - 0.10293865203857422, - 0.10213607549667358, - 0.10217708349227905, - 0.10306055098772049, - 0.10476237535476685, - 0.10723613947629929, - 0.11041437089443207, - 0.11421036720275879, - 0.15191367268562317, - 0.1557096689939499, - 0.15888789296150208, - 0.1613616645336151, - 0.16306348145008087, - 0.1639469563961029, - 0.16398794949054718, - 0.16318537294864655, - 0.16156111657619476, - 0.15915946662425995, - 0.15604595839977264, - 0.1523054987192154, - 0.14804013073444366, - 0.14336620271205902, - 0.13841119408607483, - 0.13331028819084167, - 0.12820260226726532, - 0.12322746217250824, - 0.118520587682724, - 0.11421036720275879, - 0.15191367268562317, - 0.16337665915489197, - 0.17401276528835297, - 0.18353182077407837, - 0.19167420268058777, - 0.19821779429912567, - 0.20298410952091217, - 0.20584313571453094, - 0.2067168802022934, - 0.20558151602745056, - 0.20246799290180206, - 0.19746126234531403, - 0.19069789350032806, - 0.182362362742424, - 0.1726820468902588, - 0.16192100942134857, - 0.15037275850772858, - 0.13835233449935913, - 0.12618759274482727, - 0.11421036720275879, - 0.15191367268562317, - 0.16977360844612122, - 0.1866321563720703, - 0.20202945172786713, - 0.21554550528526306, - 0.22681158781051636, - 0.23552045226097107, - 0.24143454432487488, - 0.2443924844264984, - 0.24431362748146057, - 0.24120011925697327, - 0.23513686656951904, - 0.226289302110672, - 0.2148987203836441, - 0.20127585530281067, - 0.18579231202602386, - 0.16887038946151733, - 0.15097172558307648, - 0.13258452713489532, - 0.11421036720275879, - 0.15191365778446198, - 0.17420729994773865, - 0.19537858664989471, - 0.2148500382900238, - 0.2320905327796936, - 0.24662978947162628, - 0.2580712139606476, - 0.26610273122787476, - 0.27050521969795227, - 0.2711586356163025, - 0.2680451273918152, - 0.2612496018409729, - 0.2509574890136719, - 0.23744946718215942, - 0.2210940569639206, - 0.2023373544216156, - 0.1816909909248352, - 0.15971815586090088, - 0.13701821863651276, - 0.11421036720275879, - 0.15191365778446198, - 0.17619724571704865, - 0.1993042230606079, - 0.22060427069664001, - 0.23951640725135803, - 0.25552475452423096, - 0.2681926190853119, - 0.2771744728088379, - 0.2822253108024597, - 0.28320735692977905, - 0.28009384870529175, - 0.27296969294548035, - 0.262029230594635, - 0.24757087230682373, - 0.22998900711536407, - 0.20976322889328003, - 0.18744522333145142, - 0.16364379227161407, - 0.13900817930698395, - 0.11421036720275879, - 0.15191365778446198, - 0.17552784085273743, - 0.19798368215560913, - 0.2186686098575592, - 0.2370184063911438, - 0.2525325417518616, - 0.26478785276412964, - 0.27345001697540283, - 0.2782827615737915, - 0.2791542708873749, - 0.2760407626628876, - 0.2690271735191345, - 0.25830477476119995, - 0.24416612088680267, - 0.22699682414531708, - 0.2072652280330658, - 0.1855095475912094, - 0.1623232513666153, - 0.13833877444267273, - 0.11421036720275879, - 0.15191365778446198, - 0.17227160930633545, - 0.1915600299835205, - 0.20925277471542358, - 0.22486723959445953, - 0.23797747492790222, - 0.24822589755058289, - 0.25533294677734375, - 0.25910478830337524, - 0.25943851470947266, - 0.25632500648498535, - 0.24984917044639587, - 0.24018771946430206, - 0.22760416567325592, - 0.21244174242019653, - 0.19511403143405914, - 0.1760937124490738, - 0.15589959919452667, - 0.13508254289627075, - 0.11421036720275879, - 0.15191367268562317, - 0.16678142547607422, - 0.18072938919067383, - 0.19337713718414307, - 0.2043796181678772, - 0.21343675255775452, - 0.22030147910118103, - 0.22478654980659485, - 0.2267695963382721, - 0.2261965572834015, - 0.22308304905891418, - 0.21751397848129272, - 0.20964130759239197, - 0.19967973232269287, - 0.18790102005004883, - 0.1746264398097992, - 0.16021806001663208, - 0.14506895840168, - 0.12959234416484833, - 0.11421036720275879, - 0.15191367268562317, - 0.1596522033214569, - 0.1666654348373413, - 0.17276205122470856, - 0.17777575552463531, - 0.18156978487968445, - 0.1840406358242035, - 0.18512094020843506, - 0.18478120863437653, - 0.18303070962429047, - 0.17991720139980316, - 0.17552560567855835, - 0.16997569799423218, - 0.16341888904571533, - 0.15603403747081757, - 0.14802256226539612, - 0.13960298895835876, - 0.13100500404834747, - 0.12246312946081161, - 0.11421036720275879, - 0.15191367268562317, - 0.15165655314922333, - 0.1508922278881073, - 0.14964154362678528, - 0.14793860912322998, - 0.14582987129688263, - 0.14337287843227386, - 0.14063462615013123, - 0.13768979907035828, - 0.13461875915527344, - 0.13150523602962494, - 0.1284341961145401, - 0.12548936903476715, - 0.12275112420320511, - 0.12029412388801575, - 0.11818540096282959, - 0.11648248136043549, - 0.11523179709911346, - 0.11446747928857803, - 0.11421036720275879 - ], - "y": [ - 0.4557409882545471, - 0.47935178875923157, - 0.5007758736610413, - 0.5194287896156311, - 0.5348018407821655, - 0.5464756488800049, - 0.554131805896759, - 0.5575613975524902, - 0.5566709637641907, - 0.5514847636222839, - 0.5421441793441772, - 0.528904139995575, - 0.5121256709098816, - 0.49226653575897217, - 0.46986842155456543, - 0.44554227590560913, - 0.4199516177177429, - 0.39379453659057617, - 0.3677845299243927, - 0.342631071805954, - 0.4557409882545471, - 0.4780893325805664, - 0.4982854127883911, - 0.5157783031463623, - 0.530090868473053, - 0.5408326387405396, - 0.5477107167243958, - 0.5505374670028687, - 0.5492357015609741, - 0.5438409447669983, - 0.5345004200935364, - 0.5214688181877136, - 0.5051016807556152, - 0.4858454763889313, - 0.4642254114151001, - 0.4408312439918518, - 0.41630107164382935, - 0.391304075717926, - 0.36652207374572754, - 0.342631071805954, - 0.4557409882545471, - 0.47432151436805725, - 0.4908525347709656, - 0.5048831701278687, - 0.5160306096076965, - 0.5239908695220947, - 0.5285467505455017, - 0.5295740365982056, - 0.5270446538925171, - 0.5210276246070862, - 0.5116870403289795, - 0.499277800321579, - 0.48413828015327454, - 0.46668148040771484, - 0.4473835825920105, - 0.42677098512649536, - 0.4054059386253357, - 0.3838712275028229, - 0.36275428533554077, - 0.342631071805954, - 0.4557409882545471, - 0.4684566259384155, - 0.4792827367782593, - 0.4879240095615387, - 0.4941447675228119, - 0.49777528643608093, - 0.4987165331840515, - 0.4969428777694702, - 0.4925026297569275, - 0.4855169653892517, - 0.4761764407157898, - 0.46473580598831177, - 0.4515071213245392, - 0.43685126304626465, - 0.4211680293083191, - 0.4048851430416107, - 0.3884468078613281, - 0.3723014295101166, - 0.35688936710357666, - 0.342631071805954, - 0.4557409882545471, - 0.4611302316188812, - 0.46482977271080017, - 0.4667387008666992, - 0.46680501103401184, - 0.4650268256664276, - 0.4614526629447937, - 0.45618006587028503, - 0.44935280084609985, - 0.44115713238716125, - 0.43181657791137695, - 0.42158597707748413, - 0.4107443392276764, - 0.3995874226093292, - 0.38841956853866577, - 0.37754538655281067, - 0.36726149916648865, - 0.3578484356403351, - 0.34956297278404236, - 0.342631071805954, - 0.4557410180568695, - 0.4531362056732178, - 0.4490598142147064, - 0.44362297654151917, - 0.43697401881217957, - 0.42929428815841675, - 0.4207932949066162, - 0.4117029309272766, - 0.4022711217403412, - 0.3927551507949829, - 0.383414626121521, - 0.3745042681694031, - 0.3662671744823456, - 0.35892802476882935, - 0.3526870310306549, - 0.3477143943309784, - 0.3441457748413086, - 0.34207847714424133, - 0.3415689766407013, - 0.34263110160827637, - 0.4557410180568695, - 0.4453409016132355, - 0.43368181586265564, - 0.4210817515850067, - 0.4078844487667084, - 0.3944498598575592, - 0.3811444938182831, - 0.3683312237262726, - 0.356359601020813, - 0.3455561697483063, - 0.33621564507484436, - 0.3285927474498749, - 0.32289546728134155, - 0.3192792236804962, - 0.31784260272979736, - 0.3186248242855072, - 0.32160454988479614, - 0.32670047879219055, - 0.3337736427783966, - 0.34263110160827637, - 0.4557410180568695, - 0.4385890066623688, - 0.4203621745109558, - 0.4015577435493469, - 0.38268858194351196, - 0.3642694652080536, - 0.3468027710914612, - 0.3307649493217468, - 0.3165934681892395, - 0.3046749234199524, - 0.2953343689441681, - 0.2888266444206238, - 0.2853292226791382, - 0.2849375009536743, - 0.28766220808029175, - 0.2934289574623108, - 0.30208054184913635, - 0.3133808672428131, - 0.3270217478275299, - 0.34263110160827637, - 0.4557410180568695, - 0.43361222743988037, - 0.41054436564445496, - 0.38716667890548706, - 0.3641168475151062, - 0.3420236110687256, - 0.3214896321296692, - 0.30307498574256897, - 0.2872820198535919, - 0.2745414972305298, - 0.26520097255706787, - 0.2595151662826538, - 0.2576392590999603, - 0.2596243619918823, - 0.26541632413864136, - 0.27485722303390503, - 0.2876894474029541, - 0.30356302857398987, - 0.3220449686050415, - 0.34263110160827637, - 0.4557410180568695, - 0.4309498369693756, - 0.40529221296310425, - 0.37946802377700806, - 0.354181706905365, - 0.33012300729751587, - 0.30794814229011536, - 0.2882619798183441, - 0.2716015875339508, - 0.2584213614463806, - 0.2490808069705963, - 0.2438347488641739, - 0.24282625317573547, - 0.2460828572511673, - 0.25351572036743164, - 0.2649220824241638, - 0.2799908220767975, - 0.29831087589263916, - 0.31938257813453674, - 0.34263110160827637, - 0.4557410180568695, - 0.43089038133621216, - 0.4051749110221863, - 0.37929609417915344, - 0.3539598286151886, - 0.3298572301864624, - 0.307645708322525, - 0.2879311740398407, - 0.271251380443573, - 0.25806134939193726, - 0.24872079491615295, - 0.24348455667495728, - 0.24249543249607086, - 0.24578043818473816, - 0.2532499432563782, - 0.2647002041339874, - 0.27981889247894287, - 0.2981936037540436, - 0.3193231225013733, - 0.34263110160827637, - 0.4557410180568695, - 0.43344026803970337, - 0.4102051854133606, - 0.3866695165634155, - 0.3634752333164215, - 0.3412550985813141, - 0.32061514258384705, - 0.3021183907985687, - 0.2862693965435028, - 0.2735005021095276, - 0.2641599476337433, - 0.2585025429725647, - 0.2566826343536377, - 0.2587498426437378, - 0.26464781165122986, - 0.2742156386375427, - 0.28719228506088257, - 0.3032238483428955, - 0.3218730092048645, - 0.34263110160827637, - 0.4557410180568695, - 0.4383232295513153, - 0.4198378920555115, - 0.40078920125961304, - 0.38169679045677185, - 0.3630814552307129, - 0.3454509675502777, - 0.32928621768951416, - 0.3150281310081482, - 0.303065687417984, - 0.2937251329421997, - 0.28726130723953247, - 0.28385046124458313, - 0.28358569741249084, - 0.28647419810295105, - 0.29243719577789307, - 0.30131199955940247, - 0.3128565549850464, - 0.32675597071647644, - 0.34263110160827637, - 0.4557410180568695, - 0.44501009583473206, - 0.4330292046070099, - 0.42012515664100647, - 0.40664994716644287, - 0.3929711580276489, - 0.3794618844985962, - 0.3664906322956085, - 0.354411244392395, - 0.34355318546295166, - 0.33421263098716736, - 0.3266443908214569, - 0.3210549056529999, - 0.3175966143608093, - 0.3163638710975647, - 0.3173903226852417, - 0.3206479549407959, - 0.3260478675365448, - 0.3334428369998932, - 0.34263110160827637, - 0.4557410180568695, - 0.4527761936187744, - 0.44834959506988525, - 0.4425819516181946, - 0.43563055992126465, - 0.42768508195877075, - 0.4189622104167938, - 0.4096998870372772, - 0.40015077590942383, - 0.3905753493309021, - 0.3812348246574402, - 0.3723839521408081, - 0.3642641603946686, - 0.35709694027900696, - 0.3510777950286865, - 0.3463709354400635, - 0.343104749917984, - 0.34136828780174255, - 0.34120896458625793, - 0.34263110160827637, - 0.4557409882545471, - 0.4607800245285034, - 0.464138925075531, - 0.4657260775566101, - 0.4654981791973114, - 0.4634614586830139, - 0.4596714973449707, - 0.4542316198348999, - 0.4472902715206146, - 0.4390367567539215, - 0.4296962022781372, - 0.4195234179496765, - 0.40879589319229126, - 0.39780622720718384, - 0.3868542015552521, - 0.37623855471611023, - 0.36624884605407715, - 0.3571575880050659, - 0.34921276569366455, - 0.342631071805954, - 0.4557409882545471, - 0.4681541919708252, - 0.4786861538887024, - 0.48704952001571655, - 0.49301621317863464, - 0.49642348289489746, - 0.497178316116333, - 0.49526023864746094, - 0.4907214641571045, - 0.48368585109710693, - 0.474345326423645, - 0.46295464038848877, - 0.4498245120048523, - 0.43531307578086853, - 0.4198162257671356, - 0.40375661849975586, - 0.387572318315506, - 0.3717048168182373, - 0.3565869629383087, - 0.342631071805954, - 0.4557409882545471, - 0.47409963607788086, - 0.4904148578643799, - 0.5042415857315063, - 0.5152026414871216, - 0.5229990482330322, - 0.5274181962013245, - 0.5283395051956177, - 0.5257378816604614, - 0.5196841955184937, - 0.5103436708450317, - 0.4979710280895233, - 0.48290377855300903, - 0.46555295586586, - 0.4463918209075928, - 0.4259430170059204, - 0.4047643542289734, - 0.3834335207939148, - 0.362532377243042, - 0.342631071805954, - 0.4557409882545471, - 0.4779720604419708, - 0.49805402755737305, - 0.5154391527175903, - 0.5296531915664673, - 0.5403083562850952, - 0.5471141338348389, - 0.5498848557472229, - 0.5485448837280273, - 0.5431307554244995, - 0.5337902307510376, - 0.5207780003547668, - 0.5044491291046143, - 0.4852489233016968, - 0.46370112895965576, - 0.4403935670852661, - 0.4159619212150574, - 0.39107269048690796, - 0.36640480160713196, - 0.342631071805954, - 0.4557409882545471, - 0.47935178875923157, - 0.5007758736610413, - 0.5194287896156311, - 0.5348018407821655, - 0.5464756488800049, - 0.554131805896759, - 0.5575613975524902, - 0.5566709637641907, - 0.5514847636222839, - 0.5421441793441772, - 0.528904139995575, - 0.5121256709098816, - 0.49226653575897217, - 0.46986842155456543, - 0.44554227590560913, - 0.4199516177177429, - 0.39379453659057617, - 0.3677845299243927, - 0.342631071805954 - ], - "z": [ - -3.038273334503174, - -3.0294737815856934, - -3.010629892349243, - -2.982255458831787, - -2.945124626159668, - -2.90024995803833, - -2.848855972290039, - -2.792344093322754, - -2.7322564125061035, - -2.670231342315674, - -2.6079609394073486, - -2.5471439361572266, - -2.4894392490386963, - -2.4364209175109863, - -2.3895349502563477, - -2.35006046295166, - -2.3190741539001465, - -2.2974209785461426, - -2.2856922149658203, - -2.284207344055176, - -3.038273334503174, - -3.0300629138946533, - -3.0117921829223633, - -2.9839589595794678, - -2.9473230838775635, - -2.902883529663086, - -2.8518524169921875, - -2.7956221103668213, - -2.7357261180877686, - -2.6737983226776123, - -2.611528158187866, - -2.5506138801574707, - -2.4927172660827637, - -2.4394173622131348, - -2.3921682834625244, - -2.3522589206695557, - -2.320777654647827, - -2.2985832691192627, - -2.2862813472747803, - -2.284207344055176, - -3.038273334503174, - -3.03098464012146, - -3.0136101245880127, - -2.986624002456665, - -2.9507622718811035, - -2.907003164291382, - -2.8565402030944824, - -2.8007500171661377, - -2.741154193878174, - -2.6793787479400635, - -2.6171083450317383, - -2.556041955947876, - -2.497844934463501, - -2.4441051483154297, - -2.3962879180908203, - -2.3556981086730957, - -2.3234426975250244, - -2.300401449203491, - -2.287203073501587, - -2.284207344055176, - -3.038273334503174, - -3.0321388244628906, - -3.0158872604370117, - -2.989961624145508, - -2.9550695419311523, - -2.9121623039245605, - -2.8624107837677, - -2.8071718215942383, - -2.7479522228240967, - -2.6863675117492676, - -2.6240971088409424, - -2.562839984893799, - -2.5042669773101807, - -2.4499757289886475, - -2.401447296142578, - -2.3600053787231445, - -2.326780319213867, - -2.302678346633911, - -2.2883572578430176, - -2.284207344055176, - -3.038273334503174, - -3.033400535583496, - -3.018376350402832, - -2.993610382080078, - -2.959778070449829, - -2.917802333831787, - -2.868828535079956, - -2.814192056655884, - -2.7553837299346924, - -2.694007158279419, - -2.631736993789673, - -2.5702712535858154, - -2.511287212371826, - -2.4563934803009033, - -2.4070873260498047, - -2.3647139072418213, - -2.3304288387298584, - -2.3051676750183105, - -2.289618968963623, - -2.284207344055176, - -3.038273334503174, - -3.034633159637451, - -3.0208077430725098, - -2.9971742630004883, - -2.9643776416778564, - -2.923311948776245, - -2.8750977516174316, - -2.821049928665161, - -2.7626430988311768, - -2.701470136642456, - -2.639199733734131, - -2.577530860900879, - -2.5181450843811035, - -2.462662696838379, - -2.4125969409942627, - -2.3693134784698486, - -2.3339929580688477, - -2.3075990676879883, - -2.290851593017578, - -2.284207344055176, - -3.038273334503174, - -3.03570294380188, - -3.022918224334717, - -3.00026798248291, - -2.968369722366333, - -2.928093910217285, - -2.8805389404296875, - -2.8270020484924316, - -2.7689437866210938, - -2.7079474925994873, - -2.645677328109741, - -2.583831548690796, - -2.524097204208374, - -2.4681038856506348, - -2.4173789024353027, - -2.373305559158325, - -2.3370864391326904, - -2.3097095489501953, - -2.291921377182007, - -2.284207344055176, - -3.038273334503174, - -3.036494255065918, - -3.0244789123535156, - -3.0025553703308105, - -2.9713218212127686, - -2.9316298961639404, - -2.8845627307891846, - -2.8314037322998047, - -2.7736029624938965, - -2.712737560272217, - -2.6504671573638916, - -2.5884907245635986, - -2.528498649597168, - -2.472127676010132, - -2.420914888381958, - -2.3762576580047607, - -2.33937406539917, - -2.311270236968994, - -2.292712450027466, - -2.284207344055176, - -3.038273334503174, - -3.0369207859039307, - -3.025320529937744, - -3.003789186477661, - -2.972913980484009, - -2.933537244796753, - -2.886732816696167, - -2.833777666091919, - -2.776115894317627, - -2.7153208255767822, - -2.653050661087036, - -2.591003656387329, - -2.5308725833892822, - -2.4742977619171143, - -2.4228219985961914, - -2.37785005569458, - -2.3406078815460205, - -2.3121118545532227, - -2.2931392192840576, - -2.284207344055176, - -3.038273334503174, - -3.0369367599487305, - -3.0253522396087646, - -3.003835439682007, - -2.9729738235473633, - -2.9336087703704834, - -2.8868141174316406, - -2.833866596221924, - -2.776210308074951, - -2.7154178619384766, - -2.6531474590301514, - -2.591097831726074, - -2.530961751937866, - -2.474379062652588, - -2.422893762588501, - -2.3779096603393555, - -2.340654134750366, - -2.312143325805664, - -2.2931551933288574, - -2.284207344055176, - -3.038273334503174, - -3.0365405082702637, - -3.0245702266693115, - -3.0026893615722656, - -2.971494674682617, - -2.9318368434906006, - -2.884798049926758, - -2.8316612243652344, - -2.7738757133483887, - -2.713017702102661, - -2.650747299194336, - -2.5887632369995117, - -2.5287561416625977, - -2.472362995147705, - -2.421121835708618, - -2.3764305114746094, - -2.339508056640625, - -2.311361312866211, - -2.2927587032318115, - -2.284207344055176, - -3.038273334503174, - -3.0357747077941895, - -3.023059368133545, - -3.000474691390991, - -2.9686367511749268, - -2.9284136295318604, - -2.8809027671813965, - -2.8274002075195312, - -2.769365072250366, - -2.708380699157715, - -2.6461105346679688, - -2.5842528343200684, - -2.5244953632354736, - -2.4684677124023438, - -2.417698621749878, - -2.373572587966919, - -2.3372933864593506, - -2.3098506927490234, - -2.2919929027557373, - -2.284207344055176, - -3.038273334503174, - -3.034722328186035, - -3.0209834575653076, - -2.997431993484497, - -2.964709997177124, - -2.9237101078033447, - -2.8755507469177246, - -2.821545362472534, - -2.7631676197052, - -2.702009439468384, - -2.6397390365600586, - -2.5780553817749023, - -2.5186405181884766, - -2.463115692138672, - -2.412994861602783, - -2.369645833969116, - -2.3342506885528564, - -2.307774782180786, - -2.290940523147583, - -2.284207344055176, - -3.038273334503174, - -3.0334975719451904, - -3.0185675621032715, - -2.9938905239105225, - -2.960139751434326, - -2.9182357788085938, - -2.869321584701538, - -2.8147313594818115, - -2.7559545040130615, - -2.694593906402588, - -2.632323741912842, - -2.5708422660827637, - -2.511826515197754, - -2.4568862915039062, - -2.4075205326080322, - -2.3650755882263184, - -2.330709218978882, - -2.30535888671875, - -2.2897160053253174, - -2.284207344055176, - -3.038273334503174, - -3.032233238220215, - -3.016073226928711, - -2.990234375, - -2.955421209335327, - -2.912583827972412, - -2.8628904819488525, - -2.8076963424682617, - -2.748507499694824, - -2.6869382858276367, - -2.6246678829193115, - -2.5633952617645264, - -2.504791498184204, - -2.4504551887512207, - -2.4018688201904297, - -2.3603572845458984, - -2.3270530700683594, - -2.3028643131256104, - -2.2884514331817627, - -2.284207344055176, - -3.038273334503174, - -3.0310659408569336, - -3.013770818710327, - -2.9868593215942383, - -2.951066017150879, - -2.907366991043091, - -2.8569540977478027, - -2.8012027740478516, - -2.741633653640747, - -2.6798715591430664, - -2.6176013946533203, - -2.556521415710449, - -2.498297929763794, - -2.44451904296875, - -2.3966519832611084, - -2.356001853942871, - -2.3236780166625977, - -2.3005621433258057, - -2.2872843742370605, - -2.284207344055176, - -3.038273334503174, - -3.030122756958008, - -3.0119099617004395, - -2.9841318130493164, - -2.9475460052490234, - -2.9031505584716797, - -2.852156400680542, - -2.795954465866089, - -2.7360780239105225, - -2.6741600036621094, - -2.6118898391723633, - -2.5509657859802246, - -2.4930496215820312, - -2.43972110748291, - -2.392435312271118, - -2.3524818420410156, - -2.320950508117676, - -2.298701047897339, - -2.2863411903381348, - -2.284207344055176, - -3.038273334503174, - -3.029505491256714, - -3.0106921195983887, - -2.982346773147583, - -2.945242404937744, - -2.900391101837158, - -2.8490164279937744, - -2.7925198078155518, - -2.7324423789978027, - -2.6704225540161133, - -2.608152151107788, - -2.547329902648926, - -2.489614963531494, - -2.4365813732147217, - -2.389676094055176, - -2.3501782417297363, - -2.3191652297973633, - -2.297483444213867, - -2.2857236862182617, - -2.284207344055176, - -3.038273334503174, - -3.0292811393737793, - -3.010249376296997, - -2.9816977977752686, - -2.9444050788879395, - -2.899388074874878, - -2.8478751182556152, - -2.791271448135376, - -2.7311205863952637, - -2.6690638065338135, - -2.6067934036254883, - -2.546008348464966, - -2.4883663654327393, - -2.4354400634765625, - -2.3886730670928955, - -2.3493409156799316, - -2.318516492843628, - -2.2970407009124756, - -2.285499334335327, - -2.284207344055176, - -3.038273334503174, - -3.0294737815856934, - -3.010629892349243, - -2.982255458831787, - -2.945124626159668, - -2.90024995803833, - -2.848855972290039, - -2.792344093322754, - -2.7322564125061035, - -2.670231342315674, - -2.6079609394073486, - -2.5471439361572266, - -2.4894392490386963, - -2.4364209175109863, - -2.3895349502563477, - -2.35006046295166, - -2.3190741539001465, - -2.2974209785461426, - -2.2856922149658203, - -2.284207344055176 - ] - }, - { - "alphahull": 0, - "color": "#19D3F3", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.14898040890693665, - 0.16210335493087769, - 0.1763591170310974, - 0.1913588047027588, - 0.20669327676296234, - 0.22194422781467438, - 0.23669567704200745, - 0.2505452632904053, - 0.26311513781547546, - 0.27406248450279236, - 0.28308865427970886, - 0.2899474501609802, - 0.29445183277130127, - 0.29647883772850037, - 0.2959732413291931, - 0.29294881224632263, - 0.28748804330825806, - 0.2797399163246155, - 0.26991575956344604, - 0.2582835555076599, - 0.14898040890693665, - 0.16117262840270996, - 0.17452305555343628, - 0.18866749107837677, - 0.20322011411190033, - 0.21778397262096405, - 0.23196180164813995, - 0.2453668713569641, - 0.2576335072517395, - 0.26842713356018066, - 0.27745333313941956, - 0.28446584939956665, - 0.2892734408378601, - 0.29174497723579407, - 0.2918129861354828, - 0.289475679397583, - 0.28479674458503723, - 0.27790385484695435, - 0.2689850330352783, - 0.2582835555076599, - 0.14898040890693665, - 0.15900146961212158, - 0.17023994028568268, - 0.1823892593383789, - 0.1951180249452591, - 0.2080790251493454, - 0.22091872990131378, - 0.23328688740730286, - 0.2448461502790451, - 0.2552811801433563, - 0.2643073797225952, - 0.27167850732803345, - 0.27719348669052124, - 0.2807019054889679, - 0.2821080684661865, - 0.2813735604286194, - 0.27851852774620056, - 0.27362075448036194, - 0.26681387424468994, - 0.2582835555076599, - 0.14898040890693665, - 0.15582513809204102, - 0.16397391259670258, - 0.1732044667005539, - 0.18326500058174133, - 0.1938810795545578, - 0.20476315915584564, - 0.21561437845230103, - 0.22613874077796936, - 0.23604917526245117, - 0.24507535994052887, - 0.2529710829257965, - 0.259520947933197, - 0.26454633474349976, - 0.2679101228713989, - 0.2695205509662628, - 0.26933372020721436, - 0.26735472679138184, - 0.2636375427246094, - 0.2582835555076599, - 0.14898040890693665, - 0.15198785066604614, - 0.15640400350093842, - 0.1621084213256836, - 0.16894549131393433, - 0.17672871053218842, - 0.18524578213691711, - 0.19426438212394714, - 0.20353852212429047, - 0.21281519532203674, - 0.22184138000011444, - 0.23037084937095642, - 0.23817096650600433, - 0.24502894282341003, - 0.25075772404670715, - 0.2552010416984558, - 0.25823765993118286, - 0.2597848176956177, - 0.2598002552986145, - 0.2582835555076599, - 0.14898040890693665, - 0.14790542423725128, - 0.14835050702095032, - 0.15030354261398315, - 0.1537112295627594, - 0.15848061442375183, - 0.16448162496089935, - 0.17155054211616516, - 0.17949457466602325, - 0.1880970001220703, - 0.197123184800148, - 0.2063269168138504, - 0.21545712649822235, - 0.22426478564739227, - 0.23250962793827057, - 0.2399667650461197, - 0.24643279612064362, - 0.25173133611679077, - 0.25571781396865845, - 0.2582835555076599, - 0.14898040890693665, - 0.14402025938034058, - 0.14068616926670074, - 0.1390690803527832, - 0.13921308517456055, - 0.14111429452896118, - 0.14472079277038574, - 0.14993426203727722, - 0.15661244094371796, - 0.16457320749759674, - 0.17359939217567444, - 0.1834447830915451, - 0.19384083151817322, - 0.20450395345687866, - 0.21514329314231873, - 0.22546863555908203, - 0.23519833385944366, - 0.24406698346138, - 0.25183266401290894, - 0.2582835555076599, - 0.14898040890693665, - 0.1407533884048462, - 0.13424152135849, - 0.1296224594116211, - 0.1270221769809723, - 0.1265116035938263, - 0.12810468673706055, - 0.1317579597234726, - 0.1373717486858368, - 0.14479297399520874, - 0.15381914377212524, - 0.16420409083366394, - 0.17566454410552979, - 0.18788784742355347, - 0.20054063200950623, - 0.21327772736549377, - 0.22575171291828156, - 0.23762233555316925, - 0.24856579303741455, - 0.2582835555076599, - 0.14898040890693665, - 0.13845880329608917, - 0.1297149658203125, - 0.12298737466335297, - 0.11845956742763519, - 0.11625503748655319, - 0.11643392592668533, - 0.11899135261774063, - 0.1238575428724289, - 0.13089978694915771, - 0.1399259716272354, - 0.15068988502025604, - 0.16289792954921722, - 0.17621707916259766, - 0.19028404355049133, - 0.20471510291099548, - 0.21911662817001343, - 0.23309576511383057, - 0.24627120792865753, - 0.2582835555076599, - 0.14898040890693665, - 0.13738517463207245, - 0.12759698927402496, - 0.11988283693790436, - 0.11445314437150955, - 0.1114560142159462, - 0.11097321659326553, - 0.11301787942647934, - 0.11753427982330322, - 0.12439920753240585, - 0.13342538475990295, - 0.14436662197113037, - 0.15692445635795593, - 0.17075636982917786, - 0.18548502027988434, - 0.20070868730545044, - 0.21601209044456482, - 0.23097780346870422, - 0.2451975792646408, - 0.2582835555076599, - 0.14898040890693665, - 0.13764885067939758, - 0.1281171292066574, - 0.12064526975154877, - 0.11543706804513931, - 0.11263459175825119, - 0.11231429129838943, - 0.11448488384485245, - 0.11908718943595886, - 0.1259956657886505, - 0.13502183556556702, - 0.145919531583786, - 0.15839146077632904, - 0.17209744453430176, - 0.18666359782218933, - 0.2016926109790802, - 0.21677452325820923, - 0.23149794340133667, - 0.24546125531196594, - 0.2582835555076599, - 0.14898040890693665, - 0.13922123610973358, - 0.1312190294265747, - 0.1251920461654663, - 0.1213047131896019, - 0.1196630522608757, - 0.12031183391809464, - 0.1232333779335022, - 0.1283479928970337, - 0.13551615178585052, - 0.14454233646392822, - 0.15518032014369965, - 0.1671399623155594, - 0.18009498715400696, - 0.19369205832481384, - 0.20756025612354279, - 0.22132131457328796, - 0.23459984362125397, - 0.24703364074230194, - 0.2582835555076599, - 0.14898040890693665, - 0.14193195104599, - 0.13656651973724365, - 0.1330304741859436, - 0.13142022490501404, - 0.131779745221138, - 0.13409920036792755, - 0.1383153200149536, - 0.14431312680244446, - 0.15192897617816925, - 0.16095516085624695, - 0.1711454540491104, - 0.1822219043970108, - 0.19388236105442047, - 0.20580875873565674, - 0.21767577528953552, - 0.22915972769260406, - 0.2399473339319229, - 0.24974435567855835, - 0.2582835555076599, - 0.14898040890693665, - 0.14548726379871368, - 0.14358015358448029, - 0.14331111311912537, - 0.1446874588727951, - 0.1476716697216034, - 0.15218231081962585, - 0.15809637308120728, - 0.16525253653526306, - 0.1734555959701538, - 0.1824817806482315, - 0.1920848786830902, - 0.20200295746326447, - 0.21196547150611877, - 0.22170066833496094, - 0.2309430092573166, - 0.23944036662578583, - 0.24696096777915955, - 0.25329968333244324, - 0.2582835555076599, - 0.14898040890693665, - 0.14950187504291534, - 0.15149986743927002, - 0.15491989254951477, - 0.15966865420341492, - 0.16561663150787354, - 0.17260156571865082, - 0.18043291568756104, - 0.18889708817005157, - 0.19776318967342377, - 0.20678935945034027, - 0.21572943031787872, - 0.22433950006961823, - 0.23238472640514374, - 0.23964564502239227, - 0.2459242045879364, - 0.2510491609573364, - 0.2548806965351105, - 0.2573142647743225, - 0.2582835555076599, - 0.14898040890693665, - 0.1535407453775406, - 0.1594674438238144, - 0.166598841547966, - 0.17474040389060974, - 0.1836700439453125, - 0.19314421713352203, - 0.20290444791316986, - 0.2126845419406891, - 0.22221767902374268, - 0.23124386370182037, - 0.23951686918735504, - 0.24681103229522705, - 0.25292736291885376, - 0.25769907236099243, - 0.2609959542751312, - 0.26272809505462646, - 0.26284825801849365, - 0.26135316491127014, - 0.2582835555076599, - 0.14898040890693665, - 0.15716621279716492, - 0.16661949455738068, - 0.1770823746919632, - 0.1882694661617279, - 0.1998755931854248, - 0.2115841954946518, - 0.22307588160037994, - 0.23403717577457428, - 0.24416911602020264, - 0.25319528579711914, - 0.2608695328235626, - 0.26698246598243713, - 0.2713673710823059, - 0.27390462160110474, - 0.2745250165462494, - 0.27321162819862366, - 0.27000030875205994, - 0.2649786174297333, - 0.2582835555076599, - 0.14898040890693665, - 0.15998539328575134, - 0.17218095064163208, - 0.1852344125509262, - 0.19878971576690674, - 0.21247708797454834, - 0.22592319548130035, - 0.2387612760066986, - 0.2506411075592041, - 0.26123863458633423, - 0.27026480436325073, - 0.27747344970703125, - 0.2826678454875946, - 0.28570637106895447, - 0.28650611639022827, - 0.2850452661514282, - 0.28136366605758667, - 0.27556174993515015, - 0.2677977979183197, - 0.2582835555076599, - 0.14898040890693665, - 0.1616927832365036, - 0.17554916441440582, - 0.19017155468463898, - 0.20516112446784973, - 0.2201089709997177, - 0.23460738360881805, - 0.24826087057590485, - 0.26069697737693787, - 0.27157652378082275, - 0.28060269355773926, - 0.287529319524765, - 0.29216745495796204, - 0.29439055919647217, - 0.29413801431655884, - 0.2914166748523712, - 0.28630080819129944, - 0.2789299786090851, - 0.26950520277023315, - 0.2582835555076599, - 0.14898040890693665, - 0.16210335493087769, - 0.1763591170310974, - 0.1913588047027588, - 0.20669326186180115, - 0.22194422781467438, - 0.23669567704200745, - 0.2505452632904053, - 0.26311513781547546, - 0.27406248450279236, - 0.28308865427970886, - 0.2899474501609802, - 0.29445183277130127, - 0.29647883772850037, - 0.2959732413291931, - 0.29294881224632263, - 0.28748804330825806, - 0.2797399163246155, - 0.26991575956344604, - 0.2582835555076599 - ], - "y": [ - 0.14898043870925903, - 0.15025421977043152, - 0.15298399329185486, - 0.15709532797336578, - 0.1624760627746582, - 0.16897940635681152, - 0.17642799019813538, - 0.18461863696575165, - 0.1933279037475586, - 0.2023182511329651, - 0.21134443581104279, - 0.22016023099422455, - 0.22852519154548645, - 0.2362111210823059, - 0.24300837516784668, - 0.2487315535545349, - 0.25322452187538147, - 0.25636476278305054, - 0.2580665647983551, - 0.2582835257053375, - 0.14898043870925903, - 0.15424932539463043, - 0.16086524724960327, - 0.16864772140979767, - 0.17738449573516846, - 0.18683721125125885, - 0.1967480629682541, - 0.2068466693162918, - 0.21685761213302612, - 0.2265077829360962, - 0.2355339527130127, - 0.24368992447853088, - 0.2507532238960266, - 0.2565311789512634, - 0.2608661949634552, - 0.26363998651504517, - 0.26477691531181335, - 0.26424598693847656, - 0.2620616555213928, - 0.2582835257053375, - 0.14898043870925903, - 0.15775424242019653, - 0.16777947545051575, - 0.17878267168998718, - 0.19046367704868317, - 0.20250388979911804, - 0.2145748734474182, - 0.22634737193584442, - 0.23750025033950806, - 0.24772928655147552, - 0.2567554712295532, - 0.2643325626850128, - 0.2702539265155792, - 0.27435800433158875, - 0.2765328586101532, - 0.27671918272972107, - 0.27491188049316406, - 0.27116021513938904, - 0.2655665874481201, - 0.2582835257053375, - 0.14898043870925903, - 0.16038915514945984, - 0.17297741770744324, - 0.1864018738269806, - 0.2002963125705719, - 0.21428172290325165, - 0.22797666490077972, - 0.24100753664970398, - 0.25301888585090637, - 0.26368311047554016, - 0.27270928025245667, - 0.27985119819641113, - 0.2849140763282776, - 0.28775978088378906, - 0.288310706615448, - 0.2865518033504486, - 0.28253108263015747, - 0.2763581871986389, - 0.2682015001773834, - 0.2582835257053375, - 0.14898043870925903, - 0.16186852753162384, - 0.1758958101272583, - 0.190679669380188, - 0.205816850066185, - 0.22089439630508423, - 0.23550109565258026, - 0.24923847615718842, - 0.2617318630218506, - 0.2726403772830963, - 0.2816665768623352, - 0.28856417536735535, - 0.2931450307369232, - 0.2952842116355896, - 0.2949233651161194, - 0.2920723557472229, - 0.28680887818336487, - 0.2792765498161316, - 0.26968085765838623, - 0.2582835257053375, - 0.14898043870925903, - 0.16203203797340393, - 0.17621839046478271, - 0.19115252792835236, - 0.20642705261707306, - 0.22162532806396484, - 0.23633280396461487, - 0.25014829635620117, - 0.26269492506980896, - 0.2736304998397827, - 0.2826566696166992, - 0.2895272374153137, - 0.2940548360347748, - 0.2961159348487854, - 0.295654296875, - 0.2926825284957886, - 0.28728172183036804, - 0.279599130153656, - 0.2698443830013275, - 0.2582835257053375, - 0.14898043870925903, - 0.160861998796463, - 0.1739102154970169, - 0.18776917457580566, - 0.20206081867218018, - 0.216395303606987, - 0.23038166761398315, - 0.24363835155963898, - 0.25580376386642456, - 0.2665460705757141, - 0.2755722403526306, - 0.2826361060142517, - 0.2875449061393738, - 0.2901647984981537, - 0.29042428731918335, - 0.2883163094520569, - 0.28389835357666016, - 0.2772909700870514, - 0.2686743438243866, - 0.2582835257053375, - 0.14898043870925903, - 0.15848517417907715, - 0.1692214012145996, - 0.18089625239372253, - 0.1931912750005722, - 0.2057710886001587, - 0.21829256415367126, - 0.23041412234306335, - 0.24180515110492706, - 0.2521549165248871, - 0.2611810863018036, - 0.268637478351593, - 0.27432066202163696, - 0.2780756950378418, - 0.27980005741119385, - 0.2794467806816101, - 0.2770254611968994, - 0.2726021409034729, - 0.26629751920700073, - 0.2582835257053375, - 0.14898043870925903, - 0.155159130692482, - 0.16266003251075745, - 0.17127855122089386, - 0.1807795912027359, - 0.19090396165847778, - 0.2013755440711975, - 0.21190866827964783, - 0.22221602499485016, - 0.2320164442062378, - 0.2410426288843155, - 0.24904833734035492, - 0.25581520795822144, - 0.26115867495536804, - 0.26493293046951294, - 0.2670350670814514, - 0.26740774512290955, - 0.2660408020019531, - 0.2629714608192444, - 0.2582835257053375, - 0.14898043870925903, - 0.15124431252479553, - 0.15493717789649963, - 0.15995830297470093, - 0.16617074608802795, - 0.1734050214290619, - 0.181463822722435, - 0.19012731313705444, - 0.199159175157547, - 0.20831303298473358, - 0.21733921766281128, - 0.22599148750305176, - 0.23403386771678925, - 0.24124695360660553, - 0.24743400514125824, - 0.25242623686790466, - 0.2560875117778778, - 0.2583179175853729, - 0.2590566575527191, - 0.2582835257053375, - 0.14898043870925903, - 0.14716492593288422, - 0.14688968658447266, - 0.14816224575042725, - 0.15094785392284393, - 0.15517055988311768, - 0.16071516275405884, - 0.16743043065071106, - 0.17513316869735718, - 0.18361328542232513, - 0.19263947010040283, - 0.20196549594402313, - 0.21133697032928467, - 0.22049829363822937, - 0.22919952869415283, - 0.23720334470272064, - 0.24429143965244293, - 0.25027045607566833, - 0.254977285861969, - 0.2582835257053375, - 0.14898043870925903, - 0.14336305856704712, - 0.13938966393470764, - 0.13716864585876465, - 0.13676054775714874, - 0.13817653059959412, - 0.1413779854774475, - 0.1462775468826294, - 0.15274161100387573, - 0.16059382259845734, - 0.16961999237537384, - 0.1795739382505417, - 0.1901841163635254, - 0.20116111636161804, - 0.21220549941062927, - 0.22301603853702545, - 0.23329783976078033, - 0.24277041852474213, - 0.2511754035949707, - 0.2582835257053375, - 0.14898043870925903, - 0.14025069773197174, - 0.13324984908103943, - 0.12816882133483887, - 0.12514623999595642, - 0.12426454573869705, - 0.12554779648780823, - 0.12896095216274261, - 0.13441094756126404, - 0.14174914360046387, - 0.15077531337738037, - 0.16124327480793, - 0.17286750674247742, - 0.18533091247081757, - 0.1982935070991516, - 0.21140173077583313, - 0.22429801523685455, - 0.23663058876991272, - 0.24806304275989532, - 0.2582835257053375, - 0.14898043870925903, - 0.13816511631011963, - 0.12913554906845093, - 0.12213806062936783, - 0.11736351251602173, - 0.11494213342666626, - 0.11493999511003494, - 0.11735713481903076, - 0.12212762981653214, - 0.12912136316299438, - 0.1381475329399109, - 0.1489599496126175, - 0.16126368939876556, - 0.17472311854362488, - 0.18897110223770142, - 0.20361900329589844, - 0.2182672619819641, - 0.2325163036584854, - 0.2459774613380432, - 0.2582835257053375, - 0.14898043870925903, - 0.13733230531215668, - 0.12749266624450684, - 0.1197298914194107, - 0.11425575613975525, - 0.11121956259012222, - 0.11070414632558823, - 0.11272356659173965, - 0.11722272634506226, - 0.1240788921713829, - 0.13310506939888, - 0.14405503869056702, - 0.15663011372089386, - 0.17048726975917816, - 0.18524852395057678, - 0.20051124691963196, - 0.2158590853214264, - 0.23087340593338013, - 0.24514465034008026, - 0.2582835257053375, - 0.14898043870925903, - 0.13784253597259521, - 0.12849918007850647, - 0.12120527029037476, - 0.11615972965955734, - 0.113500215113163, - 0.11329925805330276, - 0.1155623346567154, - 0.12022773176431656, - 0.1271681785583496, - 0.1361943483352661, - 0.14706005156040192, - 0.1594688892364502, - 0.1730823814868927, - 0.18752917647361755, - 0.20241521298885345, - 0.21733446419239044, - 0.23187993466854095, - 0.2456548660993576, - 0.2582835257053375, - 0.14898043870925903, - 0.13964048027992249, - 0.13204607367515564, - 0.1264043152332306, - 0.12286913394927979, - 0.12153694778680801, - 0.12244410812854767, - 0.12556585669517517, - 0.13081705570220947, - 0.13805444538593292, - 0.14708061516284943, - 0.15764936804771423, - 0.16947241127490997, - 0.182227224111557, - 0.19556590914726257, - 0.2091246247291565, - 0.22253350913524628, - 0.23542681336402893, - 0.24745282530784607, - 0.2582835257053375, - 0.14898043870925903, - 0.1425313502550125, - 0.13774892687797546, - 0.13476362824440002, - 0.13365688920021057, - 0.13445886969566345, - 0.1371477246284485, - 0.14165008068084717, - 0.1478431522846222, - 0.15555799007415771, - 0.1645841747522354, - 0.17467546463012695, - 0.18555663526058197, - 0.19693084061145782, - 0.20848782360553741, - 0.21991237998008728, - 0.2308928370475769, - 0.24112968146800995, - 0.2503436803817749, - 0.2582835257053375, - 0.14898043870925903, - 0.14620184898376465, - 0.14498980343341827, - 0.14537736773490906, - 0.14735396206378937, - 0.15086567401885986, - 0.1558167189359665, - 0.16207203269004822, - 0.16946099698543549, - 0.1777820587158203, - 0.186808243393898, - 0.19629332423210144, - 0.20597858726978302, - 0.21559984982013702, - 0.22489464282989502, - 0.23360945284366608, - 0.24150657653808594, - 0.24837055802345276, - 0.25401419401168823, - 0.2582835257053375, - 0.14898043870925903, - 0.15025421977043152, - 0.15298400819301605, - 0.15709534287452698, - 0.1624760627746582, - 0.16897942125797272, - 0.17642800509929657, - 0.18461865186691284, - 0.1933279186487198, - 0.20231826603412628, - 0.21134445071220398, - 0.22016024589538574, - 0.22852520644664764, - 0.2362111359834671, - 0.24300839006900787, - 0.2487315535545349, - 0.25322455167770386, - 0.25636476278305054, - 0.2580665647983551, - 0.2582835257053375 - ], - "z": [ - -0.9932026863098145, - -0.9962359666824341, - -1.0091248750686646, - -1.031517744064331, - -1.062803864479065, - -1.1021298170089722, - -1.1484228372573853, - -1.2004202604293823, - -1.2567036151885986, - -1.3157377243041992, - -1.3759123086929321, - -1.435585856437683, - -1.4931306838989258, - -1.546977162361145, - -1.595656394958496, - -1.637840747833252, - -1.6723792552947998, - -1.698330044746399, - -1.7149851322174072, - -1.7218902111053467, - -0.9932026863098145, - -0.9957762956619263, - -1.0082180500030518, - -1.0301885604858398, - -1.0610885620117188, - -1.1000752449035645, - -1.1460849046707153, - -1.1978627443313599, - -1.2539963722229004, - -1.3129545450210571, - -1.37312912940979, - -1.4328786134719849, - -1.4905731678009033, - -1.544639229774475, - -1.5936018228530884, - -1.6361254453659058, - -1.6710500717163086, - -1.6974233388900757, - -1.7145254611968994, - -1.7218902111053467, - -0.9932026863098145, - -0.9955762624740601, - -1.0078234672546387, - -1.0296101570129395, - -1.0603420734405518, - -1.0991809368133545, - -1.1450673341751099, - -1.1967496871948242, - -1.2528181076049805, - -1.3117432594299316, - -1.3719178438186646, - -1.431700348854065, - -1.4894601106643677, - -1.5436216592788696, - -1.5927075147628784, - -1.6353788375854492, - -1.6704716682434082, - -1.697028636932373, - -1.7143254280090332, - -1.7218902111053467, - -0.9932026863098145, - -0.9956574440002441, - -1.007983684539795, - -1.0298449993133545, - -1.0606451034545898, - -1.0995439291000366, - -1.1454803943634033, - -1.1972014904022217, - -1.2532963752746582, - -1.3122349977493286, - -1.372409462928772, - -1.4321786165237427, - -1.4899120330810547, - -1.544034719467163, - -1.5930705070495605, - -1.6356818675994873, - -1.6707065105438232, - -1.6971888542175293, - -1.7144066095352173, - -1.7218902111053467, - -0.9932026863098145, - -0.9960111379623413, - -1.008681297302246, - -1.0308676958084106, - -1.061964988708496, - -1.101124882698059, - -1.1472793817520142, - -1.199169397354126, - -1.255379557609558, - -1.3143764734268188, - -1.3745510578155518, - -1.434261679649353, - -1.4918798208236694, - -1.545833706855774, - -1.594651460647583, - -1.6370017528533936, - -1.6717292070388794, - -1.69788658618927, - -1.7147603034973145, - -1.7218902111053467, - -0.9932026863098145, - -0.9965989589691162, - -1.009840965270996, - -1.0325675010681152, - -1.06415855884552, - -1.1037524938583374, - -1.1502692699432373, - -1.2024400234222412, - -1.258841633796692, - -1.3179357051849365, - -1.3781102895736694, - -1.4377238750457764, - -1.4951504468917847, - -1.548823595046997, - -1.5972790718078613, - -1.6391953229904175, - -1.673429012298584, - -1.6990461349487305, - -1.7153481245040894, - -1.7218902111053467, - -0.9932026863098145, - -0.9973572492599487, - -1.0113368034362793, - -1.0347601175308228, - -1.066988229751587, - -1.1071419715881348, - -1.1541260480880737, - -1.206658959388733, - -1.2633076906204224, - -1.3225269317626953, - -1.3827015161514282, - -1.4421898126602173, - -1.4993693828582764, - -1.5526803731918335, - -1.6006685495376587, - -1.6420249938964844, - -1.675621747970581, - -1.7005420923233032, - -1.7161064147949219, - -1.7218902111053467, - -0.9932026863098145, - -0.9982038140296936, - -1.0130069255828857, - -1.037208080291748, - -1.0701472759246826, - -1.1109259128570557, - -1.1584317684173584, - -1.2113690376281738, - -1.2682934999465942, - -1.3276526927947998, - -1.3878271579742432, - -1.4471757411956787, - -1.5040794610977173, - -1.5569860935211182, - -1.6044526100158691, - -1.64518404006958, - -1.6780695915222168, - -1.7022120952606201, - -1.7169530391693115, - -1.7218902111053467, - -0.9932026863098145, - -0.9990469217300415, - -1.0146701335906982, - -1.039646029472351, - -1.0732934474945068, - -1.1146944761276245, - -1.162719964981079, - -1.2160598039627075, - -1.2732590436935425, - -1.3327573537826538, - -1.3929319381713867, - -1.452141284942627, - -1.508770227432251, - -1.5612742900848389, - -1.608221173286438, - -1.6483302116394043, - -1.6805075407028198, - -1.7038753032684326, - -1.7177960872650146, - -1.7218902111053467, - -0.9932026863098145, - -0.9997951984405518, - -1.016146183013916, - -1.0418096780776978, - -1.0760856866836548, - -1.1180391311645508, - -1.1665258407592773, - -1.220223069190979, - -1.2776660919189453, - -1.3372880220413208, - -1.3974624872207642, - -1.4565482139587402, - -1.5129334926605225, - -1.565080165863037, - -1.6115658283233643, - -1.6511225700378418, - -1.682671308517456, - -1.7053513526916504, - -1.718544363975525, - -1.7218902111053467, - -0.9932026863098145, - -1.000367522239685, - -1.017275333404541, - -1.0434647798538208, - -1.0782215595245361, - -1.1205976009368896, - -1.1694369316101074, - -1.223407506942749, - -1.2810369729995728, - -1.340753436088562, - -1.400928020477295, - -1.4599192142486572, - -1.5161179304122925, - -1.5679912567138672, - -1.6141241788864136, - -1.6532583236694336, - -1.6843262910842896, - -1.7064805030822754, - -1.7191166877746582, - -1.7218902111053467, - -0.9932026863098145, - -1.000701904296875, - -1.017935037612915, - -1.0444318056106567, - -1.0794694423675537, - -1.122092366218567, - -1.1711379289627075, - -1.2252681255340576, - -1.2830066680908203, - -1.3427783250808716, - -1.4029529094696045, - -1.4618887901306152, - -1.5179786682128906, - -1.5696922540664673, - -1.6156190633773804, - -1.6545063257217407, - -1.6852933168411255, - -1.7071402072906494, - -1.7194511890411377, - -1.7218902111053467, - -0.9932026863098145, - -1.0007622241973877, - -1.0180538892745972, - -1.0446059703826904, - -1.0796942710876465, - -1.122361660003662, - -1.1714444160461426, - -1.2256033420562744, - -1.2833614349365234, - -1.343143105506897, - -1.4033176898956299, - -1.462243676185608, - -1.5183138847351074, - -1.5699986219406128, - -1.6158883571624756, - -1.6547311544418335, - -1.6854674816131592, - -1.7072590589523315, - -1.7195113897323608, - -1.7218902111053467, - -0.9932026863098145, - -1.0005416870117188, - -1.0176188945770264, - -1.0439685583114624, - -1.0788716077804565, - -1.1213762760162354, - -1.1703230142593384, - -1.2243767976760864, - -1.2820630073547363, - -1.3418083190917969, - -1.4019827842712402, - -1.4609452486038208, - -1.5170872211456299, - -1.5688773393630981, - -1.6149029731750488, - -1.6539084911346436, - -1.6848300695419312, - -1.7068241834640503, - -1.7192909717559814, - -1.7218902111053467, - -0.9932026863098145, - -1.000064492225647, - -1.0166773796081543, - -1.042588472366333, - -1.0770906209945679, - -1.1192429065704346, - -1.1678955554962158, - -1.2217212915420532, - -1.279252052307129, - -1.3389185667037964, - -1.3990930318832397, - -1.4581342935562134, - -1.5144318342208862, - -1.5664498805999756, - -1.612769603729248, - -1.6521275043487549, - -1.6834499835968018, - -1.7058826684951782, - -1.7188136577606201, - -1.7218902111053467, - -0.9932026863098145, - -0.9993821382522583, - -1.0153312683105469, - -1.0406153202056885, - -1.0745443105697632, - -1.1161928176879883, - -1.1644248962402344, - -1.2179248332977295, - -1.275233268737793, - -1.3347868919372559, - -1.3949614763259888, - -1.454115390777588, - -1.510635256767273, - -1.5629792213439941, - -1.6097193956375122, - -1.6495810747146606, - -1.6814768314361572, - -1.7045365571975708, - -1.7181313037872314, - -1.7218902111053467, - -0.9932026863098145, - -0.998568594455719, - -1.0137264728546143, - -1.0382628440856934, - -1.071508526802063, - -1.1125564575195312, - -1.1602871417999268, - -1.2133985757827759, - -1.2704418897628784, - -1.3298612833023071, - -1.39003586769104, - -1.449324131011963, - -1.5061089992523193, - -1.5588414669036865, - -1.6060831546783447, - -1.6465452909469604, - -1.679124355316162, - -1.7029316425323486, - -1.717317819595337, - -1.7218902111053467, - -0.9932026863098145, - -0.9977120757102966, - -1.0120368003845215, - -1.0357861518859863, - -1.0683122873306274, - -1.1087279319763184, - -1.155930757522583, - -1.2086330652236938, - -1.2653974294662476, - -1.3246753215789795, - -1.3848499059677124, - -1.444279670715332, - -1.5013436079025269, - -1.5544850826263428, - -1.6022546291351318, - -1.6433491706848145, - -1.676647663116455, - -1.7012420892715454, - -1.7164613008499146, - -1.7218902111053467, - -0.9932026863098145, - -0.9969054460525513, - -1.010445475578308, - -1.0334535837173462, - -1.0653020143508911, - -1.1051220893859863, - -1.1518278121948242, - -1.204144835472107, - -1.2606463432312012, - -1.3197910785675049, - -1.3799655437469482, - -1.4395285844802856, - -1.4968552589416504, - -1.550382137298584, - -1.5986487865447998, - -1.6403388977050781, - -1.674315094947815, - -1.699650764465332, - -1.7156546115875244, - -1.7218902111053467, - -0.9932026863098145, - -0.9962359666824341, - -1.0091248750686646, - -1.031517744064331, - -1.062803864479065, - -1.1021298170089722, - -1.1484228372573853, - -1.2004202604293823, - -1.2567036151885986, - -1.3157377243041992, - -1.3759121894836426, - -1.435585856437683, - -1.4931306838989258, - -1.546977162361145, - -1.595656394958496, - -1.637840747833252, - -1.6723792552947998, - -1.698330044746399, - -1.7149851322174072, - -1.7218902111053467 - ] - }, - { - "alphahull": 0, - "color": "#FF6692", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.3545070290565491, - 0.3654661774635315, - 0.3746083378791809, - 0.3816841244697571, - 0.3865005373954773, - 0.3889262080192566, - 0.3888949155807495, - 0.3864075541496277, - 0.3815319836139679, - 0.37440118193626404, - 0.3652096688747406, - 0.3542081415653229, - 0.34169670939445496, - 0.32801663875579834, - 0.31354111433029175, - 0.29866495728492737, - 0.28379398584365845, - 0.2693338096141815, - 0.25567886233329773, - 0.24320165812969208, - 0.3545070290565491, - 0.36034366488456726, - 0.36450302600860596, - 0.3668716549873352, - 0.3673849403858185, - 0.36602890491485596, - 0.3628405034542084, - 0.3579067587852478, - 0.3513621985912323, - 0.34338533878326416, - 0.3341938257217407, - 0.3240383267402649, - 0.3131958842277527, - 0.3019622564315796, - 0.2906438112258911, - 0.27954936027526855, - 0.2689814865589142, - 0.2592284679412842, - 0.2505563497543335, - 0.24320165812969208, - 0.3545070290565491, - 0.35450637340545654, - 0.35298770666122437, - 0.34999239444732666, - 0.3456021547317505, - 0.3399367928504944, - 0.3331507742404938, - 0.3254292607307434, - 0.31698283553123474, - 0.30804193019866943, - 0.2988503873348236, - 0.2896589934825897, - 0.2807183861732483, - 0.2722724974155426, - 0.26455169916152954, - 0.25776657462120056, - 0.25210222601890564, - 0.2477131485939026, - 0.24471905827522278, - 0.24320165812969208, - 0.3545070290565491, - 0.34858691692352295, - 0.3413102626800537, - 0.33287546038627625, - 0.3235127031803131, - 0.3134773075580597, - 0.30304303765296936, - 0.2924945056438446, - 0.2821194529533386, - 0.27220091223716736, - 0.26300936937332153, - 0.2547956109046936, - 0.24778364598751068, - 0.2421647608280182, - 0.23809221386909485, - 0.23567712306976318, - 0.2349853217601776, - 0.23603570461273193, - 0.23879960179328918, - 0.24320165812969208, - 0.3545070290565491, - 0.34322676062583923, - 0.33073610067367554, - 0.3173758089542389, - 0.30351027846336365, - 0.2895177900791168, - 0.27577993273735046, - 0.26267150044441223, - 0.2505500316619873, - 0.23974621295928955, - 0.23055468499660492, - 0.22322618961334229, - 0.2179606407880783, - 0.2149016559123993, - 0.21413269639015198, - 0.21567469835281372, - 0.21948564052581787, - 0.22546155750751495, - 0.23343944549560547, - 0.24320167303085327, - 0.3545070290565491, - 0.3390067219734192, - 0.3224111795425415, - 0.30517300963401794, - 0.28776252269744873, - 0.2706545889377594, - 0.2543158531188965, - 0.23919203877449036, - 0.2256956398487091, - 0.21419483423233032, - 0.2050033062696457, - 0.1983717978000641, - 0.19448116421699524, - 0.1934375911951065, - 0.19526949524879456, - 0.1999269425868988, - 0.20728285610675812, - 0.21713660657405853, - 0.22921940684318542, - 0.24320167303085327, - 0.3545070290565491, - 0.3363841474056244, - 0.31723752617836, - 0.2975894510746002, - 0.2779759168624878, - 0.25893187522888184, - 0.24097679555416107, - 0.22460046410560608, - 0.21024960279464722, - 0.19831563532352448, - 0.18912410736083984, - 0.182925745844841, - 0.17988958954811096, - 0.1800985038280487, - 0.1835467517375946, - 0.19014030694961548, - 0.1996992975473404, - 0.2119629681110382, - 0.22659683227539062, - 0.24320167303085327, - 0.3545070290565491, - 0.3356432020664215, - 0.31577587127685547, - 0.2954469323158264, - 0.2752109467983246, - 0.25561991333961487, - 0.23720818758010864, - 0.22047801315784454, - 0.20588572323322296, - 0.19382940232753754, - 0.1846378743648529, - 0.17856186628341675, - 0.17576715350151062, - 0.17632991075515747, - 0.18023481965065002, - 0.18737536668777466, - 0.1975567638874054, - 0.2105013132095337, - 0.22585588693618774, - 0.24320167303085327, - 0.3545070290565491, - 0.3368642032146454, - 0.3181845545768738, - 0.2989776134490967, - 0.27976730465888977, - 0.2610776722431183, - 0.24341845512390137, - 0.2272714078426361, - 0.21307694911956787, - 0.2012222707271576, - 0.19203075766563416, - 0.18575309216976166, - 0.182560533285141, - 0.1825401782989502, - 0.18569257855415344, - 0.19193172454833984, - 0.20108744502067566, - 0.212909996509552, - 0.22707688808441162, - 0.24320167303085327, - 0.3545070290565491, - 0.33991482853889465, - 0.3242025673389435, - 0.3077988922595978, - 0.291151225566864, - 0.2747136950492859, - 0.2589346170425415, - 0.24424448609352112, - 0.2310439497232437, - 0.219693124294281, - 0.21050159633159637, - 0.2037200927734375, - 0.199533611536026, - 0.19805635511875153, - 0.19932858645915985, - 0.2033156305551529, - 0.20990872383117676, - 0.2189280092716217, - 0.2301274985074997, - 0.24320167303085327, - 0.3545070290565491, - 0.3444644808769226, - 0.3331778049468994, - 0.3209548592567444, - 0.30812907218933105, - 0.2950502932071686, - 0.28207528591156006, - 0.2695579528808594, - 0.25783973932266235, - 0.2472403347492218, - 0.23804880678653717, - 0.23051589727401733, - 0.22484707832336426, - 0.2211969941854477, - 0.21966519951820374, - 0.22029346227645874, - 0.22306469082832336, - 0.22790324687957764, - 0.23467716574668884, - 0.24320167303085327, - 0.3545070290565491, - 0.350020170211792, - 0.34413760900497437, - 0.33701983094215393, - 0.3288609981536865, - 0.31988367438316345, - 0.3103327453136444, - 0.30046868324279785, - 0.29056060314178467, - 0.2808787524700165, - 0.27168720960617065, - 0.26323673129081726, - 0.25575780868530273, - 0.24945446848869324, - 0.244498610496521, - 0.2410254180431366, - 0.2391296625137329, - 0.2388630509376526, - 0.24023282527923584, - 0.24320165812969208, - 0.3545070290565491, - 0.3559798002243042, - 0.3558943271636963, - 0.3542529344558716, - 0.35110044479370117, - 0.34652280807495117, - 0.340644896030426, - 0.33362704515457153, - 0.32566067576408386, - 0.3169631063938141, - 0.30777159333229065, - 0.29833683371543884, - 0.2889161705970764, - 0.27976661920547485, - 0.27113771438598633, - 0.26326486468315125, - 0.25636279582977295, - 0.2506197690963745, - 0.24619248509407043, - 0.24320165812969208, - 0.3545070290565491, - 0.36169761419296265, - 0.367173969745636, - 0.37078672647476196, - 0.37243738770484924, - 0.37208089232444763, - 0.3697269558906555, - 0.36543983221054077, - 0.35933637619018555, - 0.35158318281173706, - 0.34239163994789124, - 0.3320125341415405, - 0.32072895765304565, - 0.30884870886802673, - 0.2966958284378052, - 0.2846018075942993, - 0.27289658784866333, - 0.2618994116783142, - 0.2519102692604065, - 0.24320165812969208, - 0.3545070290565491, - 0.36655393242836, - 0.37675416469573975, - 0.38482949137687683, - 0.3905596137046814, - 0.39378830790519714, - 0.39442741870880127, - 0.39245957136154175, - 0.38793838024139404, - 0.3809872269630432, - 0.3717956840991974, - 0.36061450839042664, - 0.34774869680404663, - 0.3335491418838501, - 0.3184032142162323, - 0.30272406339645386, - 0.2869393229484558, - 0.27147960662841797, - 0.2567666172981262, - 0.24320165812969208, - 0.3545070290565491, - 0.3700225353240967, - 0.3835967779159546, - 0.3948594331741333, - 0.4035033583641052, - 0.40929269790649414, - 0.4120695888996124, - 0.41175827383995056, - 0.40836721658706665, - 0.4019889235496521, - 0.39279741048812866, - 0.38104337453842163, - 0.36704739928245544, - 0.35119134187698364, - 0.3339076340198517, - 0.3156677782535553, - 0.29696929454803467, - 0.2783222198486328, - 0.2602352201938629, - 0.24320165812969208, - 0.3545070290565491, - 0.3717275857925415, - 0.38696032762527466, - 0.3997897505760193, - 0.4098659157752991, - 0.4169140160083771, - 0.4207417368888855, - 0.42124468088150024, - 0.418409138917923, - 0.41231244802474976, - 0.4031209349632263, - 0.39108526706695557, - 0.3765338063240051, - 0.3598634600639343, - 0.34152892231941223, - 0.32203036546707153, - 0.30189958214759827, - 0.2816857695579529, - 0.26194024085998535, - 0.24320165812969208, - 0.3545070290565491, - 0.3714842200279236, - 0.3864802420139313, - 0.399086058139801, - 0.408957839012146, - 0.4158262610435486, - 0.41950398683547974, - 0.41989076137542725, - 0.4169759154319763, - 0.4108390212059021, - 0.40164750814437866, - 0.3896520733833313, - 0.37517988681793213, - 0.35862573981285095, - 0.34044119715690613, - 0.32112225890159607, - 0.3011959195137024, - 0.2812056839466095, - 0.2616969048976898, - 0.24320165812969208, - 0.3545070290565491, - 0.3693188726902008, - 0.3822086453437805, - 0.3928246796131134, - 0.4008774757385254, - 0.4061473608016968, - 0.40849053859710693, - 0.4078431725502014, - 0.40422284603118896, - 0.3977283537387848, - 0.38853681087493896, - 0.37689900398254395, - 0.3631322979927063, - 0.34761229157447815, - 0.3307622969150543, - 0.31304189562797546, - 0.2949345111846924, - 0.27693408727645874, - 0.25953155755996704, - 0.24320165812969208, - 0.3545070290565491, - 0.3654661774635315, - 0.3746083378791809, - 0.3816841244697571, - 0.3865005373954773, - 0.3889261782169342, - 0.3888948857784271, - 0.3864075541496277, - 0.3815319836139679, - 0.37440115213394165, - 0.3652096390724182, - 0.3542081117630005, - 0.34169667959213257, - 0.32801663875579834, - 0.31354111433029175, - 0.29866495728492737, - 0.28379398584365845, - 0.2693338096141815, - 0.25567886233329773, - 0.24320165812969208 - ], - "y": [ - 0.3545069694519043, - 0.36730754375457764, - 0.3782409131526947, - 0.38700878620147705, - 0.3933720588684082, - 0.3971571624279022, - 0.39826080203056335, - 0.39665287733078003, - 0.3923772871494293, - 0.3855506181716919, - 0.37635910511016846, - 0.3650534749031067, - 0.3519420921802521, - 0.33738261461257935, - 0.32177218794822693, - 0.3055366277694702, - 0.28911876678466797, - 0.27296650409698486, - 0.2575203776359558, - 0.24320173263549805, - 0.3545069694519043, - 0.37047556042671204, - 0.3844905197620392, - 0.3961695432662964, - 0.40519407391548157, - 0.41131794452667236, - 0.41437408328056335, - 0.41427916288375854, - 0.4110357165336609, - 0.40473228693008423, - 0.3955407738685608, - 0.38371190428733826, - 0.3695683479309082, - 0.35349589586257935, - 0.33593297004699707, - 0.3173586130142212, - 0.2982795238494873, - 0.27921611070632935, - 0.2606883943080902, - 0.24320173263549805, - 0.3545069694519043, - 0.37183088064193726, - 0.3871642053127289, - 0.4000886380672455, - 0.4102516770362854, - 0.4173761010169983, - 0.421267569065094, - 0.42181989550590515, - 0.41901805996894836, - 0.4129384458065033, - 0.40374693274497986, - 0.39169424772262573, - 0.3771090805530548, - 0.3603893518447876, - 0.341991126537323, - 0.322416216135025, - 0.3021986186504364, - 0.28188979625701904, - 0.26204371452331543, - 0.24320173263549805, - 0.3545069694519043, - 0.37122663855552673, - 0.38597220182418823, - 0.3983413875102997, - 0.4079968333244324, - 0.41467517614364624, - 0.4181942045688629, - 0.4184579849243164, - 0.4154592454433441, - 0.40927985310554504, - 0.4000883400440216, - 0.3881354331970215, - 0.37374716997146606, - 0.3573160171508789, - 0.33929020166397095, - 0.320161372423172, - 0.3004513382911682, - 0.280697762966156, - 0.2614394724369049, - 0.24320173263549805, - 0.3545069694519043, - 0.36872830986976624, - 0.3810436725616455, - 0.3911170959472656, - 0.3986738622188568, - 0.4035078287124634, - 0.4054870903491974, - 0.4045577049255371, - 0.4007449746131897, - 0.394152969121933, - 0.38496145606040955, - 0.37342116236686707, - 0.35984688997268677, - 0.3446089029312134, - 0.3281228542327881, - 0.31083840131759644, - 0.29322707653045654, - 0.2757692337036133, - 0.258941113948822, - 0.24320173263549805, - 0.3545069694519043, - 0.3646066188812256, - 0.3729127049446106, - 0.37919867038726807, - 0.3832930624485016, - 0.38508421182632446, - 0.3845232129096985, - 0.38162538409233093, - 0.37646979093551636, - 0.3691970109939575, - 0.3600054979324341, - 0.34914594888687134, - 0.3369145691394806, - 0.3236449956893921, - 0.30969923734664917, - 0.2954576015472412, - 0.281308650970459, - 0.26763829588890076, - 0.25481942296028137, - 0.24320173263549805, - 0.3545069694519043, - 0.3593082129955292, - 0.3624604344367981, - 0.36387765407562256, - 0.3635212182998657, - 0.3614008128643036, - 0.35757431387901306, - 0.35214608907699585, - 0.345264196395874, - 0.3371163606643677, - 0.32792484760284424, - 0.3179403841495514, - 0.3074353039264679, - 0.29669612646102905, - 0.2860158383846283, - 0.27568572759628296, - 0.2659876346588135, - 0.25718602538108826, - 0.24952104687690735, - 0.24320173263549805, - 0.3545069694519043, - 0.35340726375579834, - 0.35081952810287476, - 0.3468143045902252, - 0.341500848531723, - 0.3350241184234619, - 0.32756075263023376, - 0.3193143606185913, - 0.31050989031791687, - 0.3013874590396881, - 0.2921959459781647, - 0.28318607807159424, - 0.27460357546806335, - 0.26668256521224976, - 0.2596391439437866, - 0.25366538763046265, - 0.24892425537109375, - 0.24554511904716492, - 0.2436200976371765, - 0.24320173263549805, - 0.3545069694519043, - 0.34754323959350586, - 0.33925142884254456, - 0.3298576772212982, - 0.31961825489997864, - 0.3088124394416809, - 0.29773497581481934, - 0.28668805956840515, - 0.27597299218177795, - 0.26588207483291626, - 0.2566905617713928, - 0.24864916503429413, - 0.2419772446155548, - 0.23685677349567413, - 0.23342743515968323, - 0.23178277909755707, - 0.23196765780448914, - 0.23397701978683472, - 0.23775607347488403, - 0.24320173263549805, - 0.3545069694519043, - 0.34235161542892456, - 0.3290097415447235, - 0.31484532356262207, - 0.3002447187900543, - 0.2856062054634094, - 0.27132904529571533, - 0.25780269503593445, - 0.24539612233638763, - 0.23444776237010956, - 0.22525624930858612, - 0.2180722951889038, - 0.2130918800830841, - 0.21045082807540894, - 0.21022120118141174, - 0.21240925788879395, - 0.216955304145813, - 0.22373533248901367, - 0.23256441950798035, - 0.24320173263549805, - 0.3545069694519043, - 0.3383949398994446, - 0.3212043344974518, - 0.3034040629863739, - 0.28547969460487366, - 0.2679201662540436, - 0.2512044310569763, - 0.2357884645462036, - 0.22209277749061584, - 0.21049092710018158, - 0.20129941403865814, - 0.19476895034313202, - 0.19107764959335327, - 0.1903262436389923, - 0.1925351768732071, - 0.19764423370361328, - 0.20551402866840363, - 0.21592989563941956, - 0.22860774397850037, - 0.24320173263549805, - 0.3545069694519043, - 0.3361019790172577, - 0.3166809678077698, - 0.2967737019062042, - 0.27692317962646484, - 0.25767090916633606, - 0.23954199254512787, - 0.2230309695005417, - 0.20858821272850037, - 0.19660766422748566, - 0.18741615116596222, - 0.18126438558101654, - 0.17832016944885254, - 0.17866379022598267, - 0.18228591978549957, - 0.18908771872520447, - 0.19888368248939514, - 0.21140655875205994, - 0.22631481289863586, - 0.24320173263549805, - 0.3545069694519043, - 0.3357212543487549, - 0.31592991948127747, - 0.29567277431488037, - 0.27550244331359863, - 0.2559690773487091, - 0.2376055270433426, - 0.22091266512870789, - 0.20634585618972778, - 0.19430243968963623, - 0.1851109266281128, - 0.17902202904224396, - 0.17620185017585754, - 0.1767273247241974, - 0.18058408796787262, - 0.18766696751117706, - 0.1977827548980713, - 0.21065549552440643, - 0.22593408823013306, - 0.24320173263549805, - 0.3545069694519043, - 0.3372940123081207, - 0.3190324902534485, - 0.3002205789089203, - 0.28137141466140747, - 0.26299911737442017, - 0.24560485780239105, - 0.22966310381889343, - 0.21560871601104736, - 0.20382507145404816, - 0.19463355839252472, - 0.18828490376472473, - 0.18495230376720428, - 0.18472665548324585, - 0.18761411309242249, - 0.1935359239578247, - 0.2023305594921112, - 0.21375808119773865, - 0.2275068163871765, - 0.24320173263549805, - 0.3545069694519043, - 0.3406497836112976, - 0.325652539730072, - 0.30992427468299866, - 0.29389405250549316, - 0.2779991626739502, - 0.26267313957214355, - 0.24833405017852783, - 0.23537302017211914, - 0.22414357960224152, - 0.21495206654071808, - 0.20804919302463531, - 0.2036232352256775, - 0.20179495215415955, - 0.2026141881942749, - 0.2060585916042328, - 0.21203424036502838, - 0.2203781008720398, - 0.2308626025915146, - 0.24320173263549805, - 0.3545069694519043, - 0.34542495012283325, - 0.3350726068019867, - 0.32373231649398804, - 0.31171339750289917, - 0.2993437647819519, - 0.28696075081825256, - 0.2749021649360657, - 0.26349693536758423, - 0.2530561685562134, - 0.24386467039585114, - 0.2361731231212616, - 0.23019137978553772, - 0.22608256340026855, - 0.2239587903022766, - 0.2238779366016388, - 0.22584226727485657, - 0.22979818284511566, - 0.23563776910305023, - 0.24320173263549805, - 0.3545069694519043, - 0.3511020541191101, - 0.34627193212509155, - 0.3401484191417694, - 0.33289846777915955, - 0.32471993565559387, - 0.3158358037471771, - 0.3064885139465332, - 0.2969329357147217, - 0.2874298095703125, - 0.27823829650878906, - 0.26960912346839905, - 0.26177769899368286, - 0.2549576163291931, - 0.24933494627475739, - 0.24506302177906036, - 0.24225836992263794, - 0.2409975230693817, - 0.2413148730993271, - 0.24320173263549805, - 0.3545069694519043, - 0.3570658564567566, - 0.35803690552711487, - 0.35739362239837646, - 0.35515350103378296, - 0.3513777256011963, - 0.34616923332214355, - 0.3396700918674469, - 0.3320576250553131, - 0.32353946566581726, - 0.3143479526042938, - 0.3047338128089905, - 0.29495930671691895, - 0.28529101610183716, - 0.2759927213191986, - 0.2673180401325226, - 0.259503573179245, - 0.25276249647140503, - 0.24727869033813477, - 0.24320173263549805, - 0.3545069694519043, - 0.3626701533794403, - 0.36909258365631104, - 0.373599112033844, - 0.37606680393218994, - 0.37642836570739746, - 0.37467387318611145, - 0.37085121870040894, - 0.36506471037864685, - 0.35747212171554565, - 0.3482806086540222, - 0.3377408981323242, - 0.326140433549881, - 0.31379568576812744, - 0.30104339122772217, - 0.28823134303092957, - 0.2757090926170349, - 0.2638181746006012, - 0.2528829574584961, - 0.24320173263549805, - 0.3545069694519043, - 0.36730754375457764, - 0.3782409131526947, - 0.38700881600379944, - 0.3933720886707306, - 0.3971571624279022, - 0.39826080203056335, - 0.3966529071331024, - 0.3923772871494293, - 0.3855506181716919, - 0.37635910511016846, - 0.3650534749031067, - 0.3519420921802521, - 0.33738261461257935, - 0.32177218794822693, - 0.3055366277694702, - 0.28911876678466797, - 0.27296650409698486, - 0.2575203776359558, - 0.24320173263549805 - ], - "z": [ - -2.363379955291748, - -2.3545281887054443, - -2.3357973098754883, - -2.3076984882354736, - -2.270998001098633, - -2.2266974449157715, - -2.176004409790039, - -2.120302200317383, - -2.061110258102417, - -2.0000429153442383, - -1.9387661218643188, - -1.8789513111114502, - -1.8222299814224243, - -1.7701494693756104, - -1.724130392074585, - -1.6854279041290283, - -1.6550977230072021, - -1.633967399597168, - -1.6226130723953247, - -1.6213445663452148, - -2.363379955291748, - -2.35482120513916, - -2.3363757133483887, - -2.308546304702759, - -2.27209210395813, - -2.2280077934265137, - -2.1774954795837402, - -2.1219334602355957, - -2.0628368854522705, - -2.0018181800842285, - -1.9405412673950195, - -1.8806780576705933, - -1.8238612413406372, - -1.771640658378601, - -1.7254408597946167, - -1.6865218877792358, - -1.6559455394744873, - -1.6345456838607788, - -1.62290620803833, - -1.6213445663452148, - -2.363379955291748, - -2.3554935455322266, - -2.3377020359039307, - -2.310490369796753, - -2.2746009826660156, - -2.2310128211975098, - -2.180915117263794, - -2.12567400932312, - -2.0667965412139893, - -2.0058887004852295, - -1.94461190700531, - -1.8846375942230225, - -1.827601671218872, - -1.7750600576400757, - -1.7284460067749023, - -1.689030647277832, - -1.6578896045684814, - -1.6358718872070312, - -1.6235785484313965, - -1.6213445663452148, - -2.363379955291748, - -2.3564722537994385, - -2.339632272720337, - -2.3133199214935303, - -2.278252601623535, - -2.235386848449707, - -2.185892105102539, - -2.1311185359954834, - -2.0725598335266113, - -2.0118136405944824, - -1.950536847114563, - -1.8904008865356445, - -1.8330461978912354, - -1.7800372838974, - -1.7328200340270996, - -1.6926823854446411, - -1.6607191562652588, - -1.6378023624420166, - -1.6245570182800293, - -1.6213445663452148, - -2.363379955291748, - -2.3576509952545166, - -2.3419578075408936, - -2.3167285919189453, - -2.282651424407959, - -2.2406558990478516, - -2.191887855529785, - -2.137676954269409, - -2.0795023441314697, - -2.018950939178467, - -1.9576740264892578, - -1.897343397140503, - -1.8396047353744507, - -1.786032795906067, - -1.7380890846252441, - -1.6970810890197754, - -1.6641278266906738, - -1.6401277780532837, - -1.625735878944397, - -1.6213445663452148, - -2.363379955291748, - -2.3589022159576416, - -2.344426155090332, - -2.3203465938568115, - -2.287320613861084, - -2.246248960494995, - -2.198251962661743, - -2.144638776779175, - -2.086871862411499, - -2.026526927947998, - -1.9652501344680786, - -1.9047129154205322, - -1.8465664386749268, - -1.7923970222473145, - -1.7436820268630981, - -1.7017505168914795, - -1.6677459478378296, - -1.6425961256027222, - -1.626987099647522, - -1.6213445663452148, - -2.363379955291748, - -2.3600902557373047, - -2.3467700481414795, - -2.323782444000244, - -2.2917544841766357, - -2.2515599727630615, - -2.2042951583862305, - -2.151249408721924, - -2.093869686126709, - -2.0337209701538086, - -1.9724441766738892, - -1.9117106199264526, - -1.8531770706176758, - -1.7984402179718018, - -1.748992919921875, - -1.7061841487884521, - -1.6711816787719727, - -1.6449400186538696, - -1.6281752586364746, - -1.6213445663452148, - -2.363379955291748, - -2.36108660697937, - -2.3487353324890137, - -2.3266632556915283, - -2.2954721450805664, - -2.2560131549835205, - -2.209362506866455, - -2.156792402267456, - -2.0997374057769775, - -2.0397531986236572, - -1.9784764051437378, - -1.9175783395767212, - -1.858720302581787, - -1.8035075664520264, - -1.753446340560913, - -1.709902048110962, - -1.6740624904632568, - -1.6469054222106934, - -1.62917160987854, - -1.6213445663452148, - -2.363379955291748, - -2.361783027648926, - -2.350109338760376, - -2.328677177429199, - -2.2980711460113525, - -2.2591261863708496, - -2.212904691696167, - -2.1606674194335938, - -2.103839159011841, - -2.0439701080322266, - -1.9826933145523071, - -1.921680212020874, - -1.8625952005386353, - -1.8070498704910278, - -1.7565593719482422, - -1.7125009298324585, - -1.6760764122009277, - -1.6482793092727661, - -1.6298680305480957, - -1.6213445663452148, - -2.363379955291748, - -2.3621041774749756, - -2.350742816925049, - -2.3296058177948, - -2.299269676208496, - -2.260561943054199, - -2.214538335800171, - -2.16245436668396, - -2.1057305335998535, - -2.045914649963379, - -1.98463773727417, - -1.9235717058181763, - -1.864382028579712, - -1.8086832761764526, - -1.7579948902130127, - -1.7136993408203125, - -1.6770050525665283, - -1.6489129066467285, - -1.6301891803741455, - -1.6213445663452148, - -2.363379955291748, - -2.3620152473449707, - -2.35056734085083, - -2.329348564147949, - -2.2989377975463867, - -2.260164260864258, - -2.214085817337036, - -2.161959409713745, - -2.1052067279815674, - -2.0453760623931885, - -1.984099268913269, - -1.9230477809906006, - -1.863887071609497, - -1.8082308769226074, - -1.7575973272323608, - -1.7133674621582031, - -1.6767479181289673, - -1.6487374305725098, - -1.6301002502441406, - -1.6213445663452148, - -2.363379955291748, - -2.3615260124206543, - -2.349601984024048, - -2.3279333114624023, - -2.2971115112304688, - -2.257976531982422, - -2.2115964889526367, - -2.159236431121826, - -2.1023242473602295, - -2.042412757873535, - -1.9811359643936157, - -1.9201654195785522, - -1.8611640930175781, - -1.8057416677474976, - -1.7554097175598145, - -1.7115411758422852, - -1.6753326654434204, - -1.647771954536438, - -1.6296107769012451, - -1.6213445663452148, - -2.363379955291748, - -2.360689163208008, - -2.3479511737823486, - -2.3255136013031006, - -2.2939887046813965, - -2.2542359828948975, - -2.2073402404785156, - -2.1545803546905518, - -2.097395658493042, - -2.0373458862304688, - -1.9760690927505493, - -1.9152367115020752, - -1.8565081357955933, - -1.801485300064087, - -1.7516690492630005, - -1.708418369293213, - -1.672912836074829, - -1.6461211442947388, - -1.6287739276885986, - -1.6213445663452148, - -2.363379955291748, - -2.359595537185669, - -2.3457937240600586, - -2.3223514556884766, - -2.289907693862915, - -2.2493479251861572, - -2.201777935028076, - -2.14849591255188, - -2.0909547805786133, - -2.03072452545166, - -1.9694477319717407, - -1.908795952796936, - -1.8504236936569214, - -1.795923113822937, - -1.7467808723449707, - -1.704337477684021, - -1.6697505712509155, - -1.6439638137817383, - -1.6276803016662598, - -1.6213445663452148, - -2.363379955291748, - -2.358363628387451, - -2.3433637619018555, - -2.318789482116699, - -2.285310983657837, - -2.2438416481018066, - -2.1955127716064453, - -2.1416423320770264, - -2.083699941635132, - -2.023266077041626, - -1.9619892835617065, - -1.901540994644165, - -1.8435699939727783, - -1.789657711982727, - -1.7412747144699097, - -1.6997406482696533, - -1.6661887168884277, - -1.6415337324142456, - -1.6264485120773315, - -1.6213445663452148, - -2.363379955291748, - -2.3571271896362305, - -2.3409242630004883, - -2.315213680267334, - -2.280696392059326, - -2.238314390182495, - -2.189223289489746, - -2.1347622871398926, - -2.0764169692993164, - -2.0157790184020996, - -1.9545021057128906, - -1.8942580223083496, - -1.8366899490356445, - -1.7833682298660278, - -1.7357473373413086, - -1.6951262950897217, - -1.6626129150390625, - -1.639094352722168, - -1.6252119541168213, - -1.6213445663452148, - -2.363379955291748, - -2.3560197353363037, - -2.3387398719787598, - -2.31201171875, - -2.276564359664917, - -2.2333648204803467, - -2.18359112739563, - -2.128601312637329, - -2.0698952674865723, - -2.0090744495391846, - -1.9477975368499756, - -1.8877363204956055, - -1.8305290937423706, - -1.7777361869812012, - -1.7307977676391602, - -1.690994143486023, - -1.6594109535217285, - -1.6369099617004395, - -1.624104619026184, - -1.6213445663452148, - -2.363379955291748, - -2.355161666870117, - -2.3370471000671387, - -2.30953049659729, - -2.273362398147583, - -2.2295291423797607, - -2.179226875305176, - -2.1238272190093994, - -2.0648415088653564, - -2.0038788318634033, - -1.9426021575927734, - -1.8826826810836792, - -1.825755000114441, - -1.7733718156814575, - -1.7269623279571533, - -1.6877920627593994, - -1.6569297313690186, - -1.6352171897888184, - -1.6232465505599976, - -1.6213445663452148, - -2.363379955291748, - -2.3546457290649414, - -2.336029529571533, - -2.3080389499664307, - -2.271437406539917, - -2.2272233963012695, - -2.176603078842163, - -2.120957136154175, - -2.0618035793304443, - -2.000755548477173, - -1.939478874206543, - -1.879644513130188, - -1.8228849172592163, - -1.7707481384277344, - -1.724656581878662, - -1.6858670711517334, - -1.6554381847381592, - -1.634199619293213, - -1.6227307319641113, - -1.6213445663452148, - -2.363379955291748, - -2.3545281887054443, - -2.3357973098754883, - -2.3076984882354736, - -2.270998001098633, - -2.2266974449157715, - -2.176004409790039, - -2.120302200317383, - -2.061110258102417, - -2.0000429153442383, - -1.9387661218643188, - -1.8789513111114502, - -1.8222299814224243, - -1.7701494693756104, - -1.724130392074585, - -1.6854279041290283, - -1.6550977230072021, - -1.633967399597168, - -1.6226130723953247, - -1.6213445663452148 - ] - }, - { - "alphahull": 0, - "color": "#FFA15A", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.4513587951660156, - 0.4267522692680359, - 0.40128907561302185, - 0.3756638169288635, - 0.3505754768848419, - 0.32670843601226807, - 0.3047136664390564, - 0.2851911783218384, - 0.26867344975471497, - 0.2556110620498657, - 0.24636033177375793, - 0.2411736100912094, - 0.24019232392311096, - 0.24344328045845032, - 0.2508378028869629, - 0.26217415928840637, - 0.2771431505680084, - 0.29533645510673523, - 0.3162578046321869, - 0.3393365144729614, - 0.4513587951660156, - 0.4286958575248718, - 0.405123233795166, - 0.3812839984893799, - 0.3578283190727234, - 0.3353961408138275, - 0.31459924578666687, - 0.2960049510002136, - 0.28012049198150635, - 0.26737910509109497, - 0.25812840461730957, - 0.2526206374168396, - 0.2510061264038086, - 0.2533288598060608, - 0.25952547788619995, - 0.26942700147628784, - 0.2827633321285248, - 0.2991706132888794, - 0.3182013928890228, - 0.3393365144729614, - 0.4513587951660156, - 0.43301254510879517, - 0.4136388897895813, - 0.39376628398895264, - 0.37393683195114136, - 0.35469138622283936, - 0.33655497431755066, - 0.32002225518226624, - 0.3055441975593567, - 0.29351574182510376, - 0.28426504135131836, - 0.27804434299468994, - 0.2750234007835388, - 0.2752845585346222, - 0.2788207530975342, - 0.2855354845523834, - 0.29524561762809753, - 0.3076862692832947, - 0.32251808047294617, - 0.3393365144729614, - 0.4513587951660156, - 0.43923455476760864, - 0.4259131848812103, - 0.41175806522369385, - 0.3971553146839142, - 0.3825032711029053, - 0.3682015836238861, - 0.3546403646469116, - 0.3421895205974579, - 0.33118870854377747, - 0.3219379782676697, - 0.31468966603279114, - 0.3096415102481842, - 0.30693119764328003, - 0.3066326379776001, - 0.30875399708747864, - 0.31323742866516113, - 0.3199605643749237, - 0.32874011993408203, - 0.3393365144729614, - 0.4513587951660156, - 0.44668763875961304, - 0.44061607122421265, - 0.4333096742630005, - 0.42496776580810547, - 0.41581791639328003, - 0.40610969066619873, - 0.39610791206359863, - 0.3860853910446167, - 0.37631550431251526, - 0.36706477403640747, - 0.35858553647994995, - 0.3511090576648712, - 0.34483930468559265, - 0.33994728326797485, - 0.3365664482116699, - 0.3347890079021454, - 0.334663450717926, - 0.33619317412376404, - 0.3393365144729614, - 0.4513587951660156, - 0.4545641243457794, - 0.4561541974544525, - 0.45608559250831604, - 0.4543602466583252, - 0.45102518796920776, - 0.446171373128891, - 0.4399312436580658, - 0.4324749708175659, - 0.4240059554576874, - 0.4147552251815796, - 0.40497511625289917, - 0.3949323892593384, - 0.3849009871482849, - 0.3751545548439026, - 0.36595892906188965, - 0.35756492614746094, - 0.3502015769481659, - 0.3440696597099304, - 0.3393365144729614, - 0.4513587951660156, - 0.4620105028152466, - 0.4708437919616699, - 0.4776177406311035, - 0.48214760422706604, - 0.4843097925186157, - 0.4840453267097473, - 0.48136138916015625, - 0.4763312339782715, - 0.46909207105636597, - 0.4598413407802582, - 0.4488314092159271, - 0.4363625645637512, - 0.42277494072914124, - 0.40843915939331055, - 0.3937462866306305, - 0.3790971040725708, - 0.3648911714553833, - 0.3515160381793976, - 0.3393365144729614, - 0.4513587951660156, - 0.4682197868824005, - 0.4830930233001709, - 0.4955728054046631, - 0.5053187012672424, - 0.5120648741722107, - 0.5156272649765015, - 0.5159088373184204, - 0.5129017233848572, - 0.5066880583763123, - 0.49743735790252686, - 0.48540186882019043, - 0.4709099531173706, - 0.4543569087982178, - 0.4361942410469055, - 0.4169173836708069, - 0.397052139043808, - 0.3771404027938843, - 0.3577253520488739, - 0.3393365144729614, - 0.4513587951660156, - 0.4725191593170166, - 0.4915744960308075, - 0.5080050230026245, - 0.5213625431060791, - 0.5312826633453369, - 0.5374948978424072, - 0.539829671382904, - 0.538223385810852, - 0.5327198505401611, - 0.523469090461731, - 0.5107235312461853, - 0.494830846786499, - 0.47622451186180115, - 0.4554120600223541, - 0.43296122550964355, - 0.4094843566417694, - 0.3856218755245209, - 0.36202472448349, - 0.3393365144729614, - 0.4513587951660156, - 0.4744426906108856, - 0.4953691065311432, - 0.5135671496391296, - 0.5285404920578003, - 0.5398807525634766, - 0.5472784042358398, - 0.5505318641662598, - 0.549552321434021, - 0.5443664193153381, - 0.5351157188415527, - 0.5220524668693542, - 0.5055330395698547, - 0.48600804805755615, - 0.464010089635849, - 0.44013920426368713, - 0.4150465130805969, - 0.38941648602485657, - 0.363948255777359, - 0.3393365144729614, - 0.4513587951660156, - 0.473781943321228, - 0.49406564235687256, - 0.5116565227508545, - 0.5260748267173767, - 0.5369272232055664, - 0.543917715549469, - 0.546855628490448, - 0.5456607341766357, - 0.5403657555580139, - 0.5311149954795837, - 0.518160879611969, - 0.5018567442893982, - 0.4826473295688629, - 0.4610566198825836, - 0.43767350912094116, - 0.4131358563899994, - 0.38811302185058594, - 0.3632875084877014, - 0.3393365144729614, - 0.4513587951660156, - 0.47060853242874146, - 0.4878053367137909, - 0.502480149269104, - 0.5142326354980469, - 0.5227422714233398, - 0.5277769565582275, - 0.5291992425918579, - 0.5269704461097717, - 0.5211513042449951, - 0.5119006037712097, - 0.499470591545105, - 0.4842004179954529, - 0.4665065407752991, - 0.44687166810035706, - 0.42583131790161133, - 0.4039594829082489, - 0.3818527162075043, - 0.36011406779289246, - 0.3393365144729614, - 0.4513587951660156, - 0.46526631712913513, - 0.4772666394710541, - 0.487032413482666, - 0.4942972660064697, - 0.4988630414009094, - 0.5006051659584045, - 0.49947619438171387, - 0.49550682306289673, - 0.48880535364151, - 0.4795546531677246, - 0.46800696849823, - 0.45447733998298645, - 0.43933480978012085, - 0.42299240827560425, - 0.4058959484100342, - 0.3885117471218109, - 0.37131401896476746, - 0.35477185249328613, - 0.3393365144729614, - 0.4513587951660156, - 0.45833420753479004, - 0.4635915160179138, - 0.4669873118400574, - 0.46842896938323975, - 0.4678771495819092, - 0.46534690260887146, - 0.4609072804450989, - 0.45467936992645264, - 0.4468330144882202, - 0.4375822842121124, - 0.4271795153617859, - 0.41590845584869385, - 0.4040765166282654, - 0.392006516456604, - 0.3800276517868042, - 0.36846664547920227, - 0.3576388955116272, - 0.3478397727012634, - 0.3393365144729614, - 0.4513587951660156, - 0.4505634605884552, - 0.44826197624206543, - 0.4445171058177948, - 0.4394310414791107, - 0.4331424832344055, - 0.4258229732513428, - 0.41767221689224243, - 0.4089124798774719, - 0.3997827172279358, - 0.390531986951828, - 0.3814126253128052, - 0.372673362493515, - 0.3645526170730591, - 0.35727185010910034, - 0.3510296940803528, - 0.3459964394569397, - 0.3423093557357788, - 0.3400689959526062, - 0.3393365144729614, - 0.4513587951660156, - 0.44279608130455017, - 0.4329391121864319, - 0.42205673456192017, - 0.41044580936431885, - 0.39842304587364197, - 0.3863163888454437, - 0.3744560778141022, - 0.36316564679145813, - 0.35275304317474365, - 0.34350231289863586, - 0.3356657922267914, - 0.32945722341537476, - 0.32504600286483765, - 0.3225524127483368, - 0.3220444917678833, - 0.32353609800338745, - 0.32698649168014526, - 0.33230164647102356, - 0.3393365144729614, - 0.4513587951660156, - 0.4358738362789154, - 0.4192834496498108, - 0.40204012393951416, - 0.3846142590045929, - 0.36748117208480835, - 0.35110822319984436, - 0.33594197034835815, - 0.3223961889743805, - 0.31084030866622925, - 0.30158960819244385, - 0.29489633440971375, - 0.2909431457519531, - 0.2898378372192383, - 0.2916105389595032, - 0.29621291160583496, - 0.30351945757865906, - 0.31333082914352417, - 0.3253794014453888, - 0.3393365144729614, - 0.4513587951660156, - 0.4305468499660492, - 0.4087747633457184, - 0.3866364061832428, - 0.3647356629371643, - 0.34366995096206665, - 0.324013888835907, - 0.30630359053611755, - 0.2910221815109253, - 0.2785865366458893, - 0.2693358063697815, - 0.26352232694625854, - 0.26130473613739014, - 0.2627434730529785, - 0.2677993178367615, - 0.27633434534072876, - 0.2881157398223877, - 0.30282214283943176, - 0.3200523853302002, - 0.3393365144729614, - 0.4513587951660156, - 0.4273923635482788, - 0.4025518596172333, - 0.3775148093700409, - 0.3529641926288605, - 0.3295696973800659, - 0.30796948075294495, - 0.2887526750564575, - 0.2724435329437256, - 0.2594868540763855, - 0.2502361238002777, - 0.24494367837905884, - 0.2437538355588913, - 0.24669907987117767, - 0.25369906425476074, - 0.2645628750324249, - 0.2789941430091858, - 0.29659923911094666, - 0.3168979287147522, - 0.3393365144729614, - 0.4513587951660156, - 0.4267522692680359, - 0.40128907561302185, - 0.3756638169288635, - 0.3505754768848419, - 0.32670843601226807, - 0.3047136664390564, - 0.2851911783218384, - 0.26867344975471497, - 0.2556110620498657, - 0.24636033177375793, - 0.2411736100912094, - 0.24019232392311096, - 0.24344328045845032, - 0.2508378028869629, - 0.26217415928840637, - 0.2771431505680084, - 0.29533645510673523, - 0.3162578046321869, - 0.3393365144729614 - ], - "y": [ - 0.4513588547706604, - 0.45312628149986267, - 0.45331767201423645, - 0.4519278109073639, - 0.44899457693099976, - 0.444597989320755, - 0.4388579726219177, - 0.43193113803863525, - 0.4240063726902008, - 0.4152998924255371, - 0.4060491621494293, - 0.39650651812553406, - 0.38693225383758545, - 0.37758755683898926, - 0.36872729659080505, - 0.36059316992759705, - 0.353407084941864, - 0.34736499190330505, - 0.3426317572593689, - 0.33933645486831665, - 0.451358824968338, - 0.4607146084308624, - 0.46828731894493103, - 0.4738704264163971, - 0.4773116707801819, - 0.4785171151161194, - 0.47745394706726074, - 0.4741511046886444, - 0.4686987102031708, - 0.46124550700187683, - 0.45199477672576904, - 0.44119885563850403, - 0.4291522204875946, - 0.4161835014820099, - 0.4026464521884918, - 0.38891029357910156, - 0.3753497004508972, - 0.36233463883399963, - 0.35022008419036865, - 0.33933645486831665, - 0.451358824968338, - 0.46720629930496216, - 0.4810936450958252, - 0.49264204502105713, - 0.50153648853302, - 0.5075344443321228, - 0.5104721784591675, - 0.5102696418762207, - 0.5069323778152466, - 0.5005512833595276, - 0.4913005530834198, - 0.47943249344825745, - 0.4652707874774933, - 0.449201762676239, - 0.43166375160217285, - 0.4131351411342621, - 0.39412131905555725, - 0.3751409351825714, - 0.356711745262146, - 0.33933645486831665, - 0.451358824968338, - 0.4718979001045227, - 0.49034884572029114, - 0.5062084197998047, - 0.5190439820289612, - 0.5285054445266724, - 0.5343347191810608, - 0.5363727807998657, - 0.5345640778541565, - 0.5289578437805176, - 0.5197071433067322, - 0.5070642232894897, - 0.4913739264011383, - 0.4730643033981323, - 0.4526348114013672, - 0.43064260482788086, - 0.4076876938343048, - 0.38439616560935974, - 0.36140334606170654, - 0.33933645486831665, - 0.451358824968338, - 0.4742809534072876, - 0.49505001306533813, - 0.5130994319915771, - 0.5279368758201599, - 0.5391576290130615, - 0.5464556813240051, - 0.5496318340301514, - 0.5485995411872864, - 0.5433869361877441, - 0.534136176109314, - 0.5210996866226196, - 0.5046329498291016, - 0.4851852357387543, - 0.46328699588775635, - 0.439535528421402, - 0.41457870602607727, - 0.38909733295440674, - 0.3637864291667938, - 0.33933645486831665, - 0.451358824968338, - 0.4740973114967346, - 0.49468767642974854, - 0.5125683546066284, - 0.5272514820098877, - 0.5383366942405701, - 0.5455214977264404, - 0.5486099720001221, - 0.5475178360939026, - 0.5422748923301697, - 0.5330241322517395, - 0.5200179815292358, - 0.5036110877990723, - 0.48425108194351196, - 0.4624660015106201, - 0.43885013461112976, - 0.41404759883880615, - 0.38873499631881714, - 0.36360275745391846, - 0.33933645486831665, - 0.451358824968338, - 0.4713667929172516, - 0.4893011450767517, - 0.5046727061271667, - 0.5170621275901794, - 0.5261315107345581, - 0.5316334366798401, - 0.5334178805351257, - 0.5314361453056335, - 0.5257421731948853, - 0.5164914727210999, - 0.5039362907409668, - 0.4884190261363983, - 0.4703630208969116, - 0.45026084780693054, - 0.4286607503890991, - 0.4061519503593445, - 0.3833484649658203, - 0.3608722686767578, - 0.33933645486831665, - 0.451358824968338, - 0.4663853049278259, - 0.47947409749031067, - 0.49026811122894287, - 0.4984729290008545, - 0.5038647651672363, - 0.5062965154647827, - 0.5057019591331482, - 0.5020971298217773, - 0.4955804944038391, - 0.4863297641277313, - 0.4745972752571106, - 0.4607030749320984, - 0.44502612948417664, - 0.42799410223960876, - 0.41007155179977417, - 0.3917473554611206, - 0.3735213875770569, - 0.35589078068733215, - 0.33933645486831665, - 0.451358824968338, - 0.45969271659851074, - 0.46627143025398254, - 0.4709155261516571, - 0.4734983444213867, - 0.4739494025707245, - 0.4722564220428467, - 0.46846556663513184, - 0.46268022060394287, - 0.4550582468509674, - 0.4458075165748596, - 0.4351803660392761, - 0.42346668243408203, - 0.4109859764575958, - 0.39807870984077454, - 0.3850969672203064, - 0.3723948001861572, - 0.36031875014305115, - 0.34919819235801697, - 0.33933645486831665, - 0.4513588547706604, - 0.4520142376422882, - 0.4511238932609558, - 0.44871214032173157, - 0.4448447525501251, - 0.43962720036506653, - 0.4332018196582794, - 0.42574387788772583, - 0.41745680570602417, - 0.4085666239261627, - 0.39931589365005493, - 0.38995692133903503, - 0.380744993686676, - 0.37193137407302856, - 0.3637565076351166, - 0.3564433455467224, - 0.3501914143562317, - 0.3451712131500244, - 0.34151971340179443, - 0.33933645486831665, - 0.4513588547706604, - 0.4441819190979004, - 0.43567296862602234, - 0.42606401443481445, - 0.4156171977519989, - 0.4046174883842468, - 0.39336493611335754, - 0.38216644525527954, - 0.3713275194168091, - 0.3611437678337097, - 0.35189303755760193, - 0.34382763504981995, - 0.33716756105422974, - 0.3320944905281067, - 0.3287467956542969, - 0.3272157907485962, - 0.3275432884693146, - 0.32972025871276855, - 0.3336873948574066, - 0.33933648467063904, - 0.4513588547706604, - 0.43704459071159363, - 0.42159295082092285, - 0.40542539954185486, - 0.38898295164108276, - 0.3727141320705414, - 0.3570626974105835, - 0.34245556592941284, - 0.3292911946773529, - 0.317928671836853, - 0.30867794156074524, - 0.30179134011268616, - 0.29745668172836304, - 0.29579228162765503, - 0.29684343934059143, - 0.30058157444000244, - 0.306904673576355, - 0.31564027070999146, - 0.32655006647109985, - 0.33933648467063904, - 0.4513588547706604, - 0.4313756227493286, - 0.4104096591472626, - 0.38903284072875977, - 0.36782827973365784, - 0.3473743796348572, - 0.32822906970977783, - 0.310914546251297, - 0.29590314626693726, - 0.28360435366630554, - 0.27435362339019775, - 0.2684032917022705, - 0.2659156918525696, - 0.266958624124527, - 0.2715036869049072, - 0.2794268727302551, - 0.2905121147632599, - 0.3044569790363312, - 0.32088109850883484, - 0.33933648467063904, - 0.4513588547706604, - 0.4277893900871277, - 0.40333497524261475, - 0.37866270542144775, - 0.35444557666778564, - 0.3313441276550293, - 0.30998852849006653, - 0.2909613251686096, - 0.2747814655303955, - 0.26189038157463074, - 0.25263965129852295, - 0.24728159606456757, - 0.24596244096755981, - 0.24871809780597687, - 0.25547343492507935, - 0.26604416966438293, - 0.2801419794559479, - 0.29738229513168335, - 0.3172948360443115, - 0.33933648467063904, - 0.4513588547706604, - 0.4266744554042816, - 0.40113556385040283, - 0.37543877959251404, - 0.35028505325317383, - 0.3263605535030365, - 0.30431780219078064, - 0.28475815057754517, - 0.2682150602340698, - 0.2551397979259491, - 0.2458890676498413, - 0.2407151758670807, - 0.23975926637649536, - 0.24304737150669098, - 0.25048983097076416, - 0.2618836760520935, - 0.27691805362701416, - 0.29518288373947144, - 0.31617993116378784, - 0.33933648467063904, - 0.4513588547706604, - 0.4281516969203949, - 0.40404972434043884, - 0.3797104060649872, - 0.3557976186275482, - 0.3329636752605438, - 0.31183138489723206, - 0.2929771840572357, - 0.27691540122032166, - 0.2640841603279114, - 0.2548334002494812, - 0.2494155466556549, - 0.2479782998561859, - 0.2505609393119812, - 0.2570929527282715, - 0.2673962116241455, - 0.2811896800994873, - 0.29809704422950745, - 0.3176571726799011, - 0.33933648467063904, - 0.4513588547706604, - 0.43206101655960083, - 0.41176173090934753, - 0.3910146951675415, - 0.37038588523864746, - 0.3504379689693451, - 0.33171504735946655, - 0.31472787261009216, - 0.2999397814273834, - 0.2877541780471802, - 0.2785034477710724, - 0.2724399268627167, - 0.26972898840904236, - 0.2704446017742157, - 0.27456724643707275, - 0.28198450803756714, - 0.2924939692020416, - 0.30580902099609375, - 0.32156646251678467, - 0.33933648467063904, - 0.4513588547706604, - 0.43797874450683594, - 0.4234358072280884, - 0.40812668204307556, - 0.39246895909309387, - 0.37688979506492615, - 0.36181408166885376, - 0.3476531207561493, - 0.3347930908203125, - 0.3235848546028137, - 0.31433412432670593, - 0.30729323625564575, - 0.3026542365550995, - 0.3005436658859253, - 0.3010191023349762, - 0.30406758189201355, - 0.3096059560775757, - 0.317483127117157, - 0.32748422026634216, - 0.33933648467063904, - 0.4513588547706604, - 0.44526365399360657, - 0.4378069043159485, - 0.4291919767856598, - 0.41965386271476746, - 0.40945273637771606, - 0.3988668620586395, - 0.3881849944591522, - 0.37769848108291626, - 0.3676934242248535, - 0.3584426939487457, - 0.3501986265182495, - 0.3431861102581024, - 0.33759641647338867, - 0.3335820436477661, - 0.33125245571136475, - 0.3306712508201599, - 0.3318542242050171, - 0.3347691297531128, - 0.33933648467063904, - 0.4513588547706604, - 0.45312628149986267, - 0.45331770181655884, - 0.4519278109073639, - 0.44899457693099976, - 0.444597989320755, - 0.4388580024242401, - 0.43193113803863525, - 0.4240064024925232, - 0.4152999222278595, - 0.4060491919517517, - 0.39650654792785645, - 0.38693228363990784, - 0.37758758664131165, - 0.36872732639312744, - 0.36059319972991943, - 0.353407084941864, - 0.34736499190330505, - 0.3426317572593689, - 0.33933645486831665 - ], - "z": [ - -3.0090584754943848, - -3.007162570953369, - -2.9951324462890625, - -2.973296880722046, - -2.942250967025757, - -2.9028420448303223, - -2.856144666671753, - -2.8034329414367676, - -2.7461442947387695, - -2.6858420372009277, - -2.6241703033447266, - -2.562812089920044, - -2.5034403800964355, - -2.4476752281188965, - -2.3970377445220947, - -2.3529086112976074, - -2.3164923191070557, - -2.2887816429138184, - -2.2705326080322266, - -2.2622432708740234, - -3.0090584754943848, - -3.005732774734497, - -2.992311954498291, - -2.9691624641418457, - -2.936915397644043, - -2.896450996398926, - -2.848872423171997, - -2.795477867126465, - -2.7377233505249023, - -2.677184820175171, - -2.615513324737549, - -2.5543911457061768, - -2.495485544204712, - -2.4404029846191406, - -2.3906466960906982, - -2.3475732803344727, - -2.3123579025268555, - -2.2859609127044678, - -2.2691028118133545, - -2.2622432708740234, - -3.0090584754943848, - -3.0041115283966064, - -2.9891135692596436, - -2.9644742012023926, - -2.930865526199341, - -2.8892040252685547, - -2.8406262397766113, - -2.7864573001861572, - -2.728174924850464, - -2.6673684120178223, - -2.6056969165802, - -2.544842481613159, - -2.4864649772644043, - -2.432157039642334, - -2.383399724960327, - -2.3415231704711914, - -2.3076696395874023, - -2.2827627658843994, - -2.267481565475464, - -2.2622432708740234, - -3.0090584754943848, - -3.002474308013916, - -2.985884189605713, - -2.95974063873291, - -2.9247565269470215, - -2.8818867206573486, - -2.8322999477386475, - -2.7773492336273193, - -2.7185332775115967, - -2.657456636428833, - -2.595785140991211, - -2.535201072692871, - -2.4773569107055664, - -2.423830509185791, - -2.376082420349121, - -2.335414409637451, - -2.30293607711792, - -2.2795333862304688, - -2.2658445835113525, - -2.2622432708740234, - -3.0090584754943848, - -3.0009989738464355, - -2.982973575592041, - -2.9554741382598877, - -2.919250726699829, - -2.875291585922241, - -2.824795722961426, - -2.7691402435302734, - -2.709843635559082, - -2.6485230922698975, - -2.5868515968322754, - -2.5265111923217773, - -2.4691479206085205, - -2.4163262844085693, - -2.3694872856140137, - -2.329908609390259, - -2.2986695766448975, - -2.276622772216797, - -2.264369010925293, - -2.2622432708740234, - -3.0090584754943848, - -2.999845027923584, - -2.9806971549987793, - -2.9521374702453613, - -2.914944648742676, - -2.870133638381958, - -2.8189265727996826, - -2.7627201080322266, - -2.703047513961792, - -2.6415364742279053, - -2.579864978790283, - -2.5197150707244873, - -2.4627275466918945, - -2.410457134246826, - -2.3643293380737305, - -2.3256025314331055, - -2.295332908630371, - -2.274346351623535, - -2.2632153034210205, - -2.2622432708740234, - -3.0090584754943848, - -2.9991376399993896, - -2.979301691055298, - -2.95009183883667, - -2.9123051166534424, - -2.866971731185913, - -2.815328598022461, - -2.758784294128418, - -2.698881149291992, - -2.637253522872925, - -2.5755817890167236, - -2.5155489444732666, - -2.458791971206665, - -2.4068591594696045, - -2.3611674308776855, - -2.322962760925293, - -2.293287515640259, - -2.2729508876800537, - -2.262507915496826, - -2.2622432708740234, - -3.0090584754943848, - -2.9989535808563232, - -2.978938579559326, - -2.949559450149536, - -2.9116177558898926, - -2.8661484718322754, - -2.814391851425171, - -2.7577595710754395, - -2.697796583175659, - -2.6361382007598877, - -2.5744667053222656, - -2.5144641399383545, - -2.4577672481536865, - -2.4059224128723145, - -2.360344171524048, - -2.322275400161743, - -2.292754888534546, - -2.272587537765503, - -2.2623236179351807, - -2.2622432708740234, - -3.0090584754943848, - -2.999312400817871, - -2.979646682739258, - -2.9505975246429443, - -2.9129574298858643, - -2.867753028869629, - -2.8162176609039307, - -2.7597568035125732, - -2.699910879135132, - -2.6383118629455566, - -2.5766403675079346, - -2.516578435897827, - -2.4597644805908203, - -2.4077484607696533, - -2.3619487285614014, - -2.323615074157715, - -2.293792963027954, - -2.2732956409454346, - -2.2626826763153076, - -2.2622432708740234, - -3.0090584754943848, - -3.000175714492798, - -2.981349468231201, - -2.9530935287475586, - -2.9161787033081055, - -2.8716118335723877, - -2.820608377456665, - -2.764559745788574, - -2.7049949169158936, - -2.6435387134552, - -2.581866979598999, - -2.521662712097168, - -2.4645674228668213, - -2.4121389389038086, - -2.36580753326416, - -2.326836585998535, - -2.2962892055511475, - -2.274998664855957, - -2.2635459899902344, - -2.2622432708740234, - -3.0090584754943848, - -3.0014495849609375, - -2.98386287689209, - -2.956777572631836, - -2.9209327697753906, - -2.8773062229156494, - -2.8270881175994873, - -2.7716479301452637, - -2.712498188018799, - -2.651252031326294, - -2.589580535888672, - -2.529165744781494, - -2.4716556072235107, - -2.418618679046631, - -2.371501922607422, - -2.331590414047241, - -2.2999730110168457, - -2.2775118350982666, - -2.264819860458374, - -2.2622432708740234, - -3.0090584754943848, - -3.0029962062835693, - -2.9869136810302734, - -2.961249828338623, - -2.926704168319702, - -2.8842194080352783, - -2.8349545001983643, - -2.7802529335021973, - -2.721607208251953, - -2.660616636276245, - -2.598945140838623, - -2.5382747650146484, - -2.4802606105804443, - -2.426485061645508, - -2.378415107727051, - -2.3373618125915527, - -2.304445266723633, - -2.2805628776550293, - -2.266366481781006, - -2.2622432708740234, - -3.0090584754943848, - -3.004647970199585, - -2.9901721477508545, - -2.9660258293151855, - -2.9328677654266357, - -2.8916022777557373, - -2.843355178833008, - -2.789442539215088, - -2.731334924697876, - -2.67061710357666, - -2.608945608139038, - -2.5480024814605713, - -2.489450216293335, - -2.4348859786987305, - -2.3857979774475098, - -2.3435254096984863, - -2.3092212677001953, - -2.2838211059570312, - -2.2680182456970215, - -2.2622432708740234, - -3.0090584754943848, - -3.006225824356079, - -2.9932844638824463, - -2.970587968826294, - -2.9387552738189697, - -2.8986546993255615, - -2.8513801097869873, - -2.7982208728790283, - -2.7406272888183594, - -2.6801700592041016, - -2.6184985637664795, - -2.5572948455810547, - -2.4982285499572754, - -2.442910671234131, - -2.392850399017334, - -2.3494131565093994, - -2.3137834072113037, - -2.286933660507202, - -2.2695958614349365, - -2.2622432708740234, - -3.0090584754943848, - -3.007558584213257, - -2.9959139823913574, - -2.97444224357605, - -2.9437291622161865, - -2.9046125411987305, - -2.858159303665161, - -2.8056366443634033, - -2.7484772205352783, - -2.6882402896881104, - -2.626568555831909, - -2.5651447772979736, - -2.5056443214416504, - -2.4496898651123047, - -2.398808240890503, - -2.354386806488037, - -2.3176376819610596, - -2.289562940597534, - -2.2709288597106934, - -2.2622432708740234, - -3.0090584754943848, - -3.0085020065307617, - -2.997775077819824, - -2.977170467376709, - -2.9472498893737793, - -2.908829927444458, - -2.8629581928253174, - -2.8108861446380615, - -2.7540342807769775, - -2.693953037261963, - -2.632281541824341, - -2.570701837539673, - -2.5108938217163086, - -2.45448899269104, - -2.4030256271362305, - -2.357907772064209, - -2.3203659057617188, - -2.29142427444458, - -2.2718722820281982, - -2.2622432708740234, - -3.0090584754943848, - -3.0089540481567383, - -2.998666763305664, - -2.9784772396087646, - -2.9489364624023438, - -2.9108500480651855, - -2.8652570247650146, - -2.8134007453918457, - -2.7566959857940674, - -2.6966893672943115, - -2.6350178718566895, - -2.5733635425567627, - -2.5134084224700928, - -2.456787586212158, - -2.405045747756958, - -2.3595943450927734, - -2.3216729164123535, - -2.29231595993042, - -2.2723240852355957, - -2.2622432708740234, - -3.0090584754943848, - -3.0088653564453125, - -2.9984920024871826, - -2.9782209396362305, - -2.94860577583313, - -2.910454034805298, - -2.8648061752319336, - -2.8129076957702637, - -2.756174087524414, - -2.696152925491333, - -2.634481430053711, - -2.5728416442871094, - -2.5129153728485107, - -2.4563369750976562, - -2.4046497344970703, - -2.3592634201049805, - -2.3214166164398193, - -2.2921409606933594, - -2.272235631942749, - -2.2622432708740234, - -3.0090584754943848, - -3.0082459449768066, - -2.997269630432129, - -2.9764294624328613, - -2.946293830871582, - -2.907684564590454, - -2.8616549968719482, - -2.8094606399536133, - -2.7525250911712646, - -2.69240140914917, - -2.630729913711548, - -2.56919264793396, - -2.5094680786132812, - -2.453185558319092, - -2.4018802642822266, - -2.3569514751434326, - -2.319624900817871, - -2.2909188270568848, - -2.271615982055664, - -2.2622432708740234, - -3.0090584754943848, - -3.007162570953369, - -2.9951324462890625, - -2.973296880722046, - -2.942250967025757, - -2.9028420448303223, - -2.856144666671753, - -2.8034329414367676, - -2.7461442947387695, - -2.6858417987823486, - -2.6241703033447266, - -2.562812089920044, - -2.5034403800964355, - -2.4476752281188965, - -2.3970377445220947, - -2.3529086112976074, - -2.3164923191070557, - -2.2887816429138184, - -2.2705326080322266, - -2.2622432708740234 - ] - }, - { - "alphahull": 0, - "color": "#B6E880", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.26079121232032776, - -0.27259206771850586, - -0.28256577253341675, - -0.29044032096862793, - -0.2960008978843689, - -0.2990958094596863, - -0.2996406555175781, - -0.2976205348968506, - -0.2930906116962433, - -0.2861744165420532, - -0.2770605981349945, - -0.2659977674484253, - -0.2532877027988434, - -0.23927706480026245, - -0.2243480682373047, - -0.20890791714191437, - -0.1933777630329132, - -0.1781812608242035, - -0.16373291611671448, - -0.15042684972286224, - -0.26079121232032776, - -0.27128487825393677, - -0.27998706698417664, - -0.28666040301322937, - -0.2911228835582733, - -0.29325276613235474, - -0.29299196600914, - -0.2903475761413574, - -0.28539174795150757, - -0.27825963497161865, - -0.2691458463668823, - -0.2582989037036896, - -0.24601471424102783, - -0.23262839019298553, - -0.21850502490997314, - -0.2040299028158188, - -0.18959784507751465, - -0.17560254037380219, - -0.16242572665214539, - -0.15042684972286224, - -0.26079121232032776, - -0.26875898241996765, - -0.27500414848327637, - -0.2793564200401306, - -0.2816970646381378, - -0.28196221590042114, - -0.28014466166496277, - -0.27629396319389343, - -0.2705151438713074, - -0.2629658877849579, - -0.25385206937789917, - -0.24342229962348938, - -0.23196110129356384, - -0.2197810709476471, - -0.20721447467803955, - -0.1946040838956833, - -0.1822938770055771, - -0.1706196367740631, - -0.15989983081817627, - -0.15042684972286224, - -0.26079121232032776, - -0.2652880847454071, - -0.26815706491470337, - -0.26931989192962646, - -0.26874488592147827, - -0.26644766330718994, - -0.2624909281730652, - -0.25698259472846985, - -0.2500729560852051, - -0.24195042252540588, - -0.23283660411834717, - -0.2229800969362259, - -0.21264973282814026, - -0.2021273374557495, - -0.19169990718364716, - -0.18165189027786255, - -0.17225733399391174, - -0.1637725532054901, - -0.15642894804477692, - -0.15042686462402344, - -0.26079121232032776, - -0.2612483501434326, - -0.2601877748966217, - -0.25763842463493347, - -0.2536698579788208, - -0.2483903169631958, - -0.24194380640983582, - -0.23450618982315063, - -0.2262803316116333, - -0.21749061346054077, - -0.20837679505348206, - -0.1991874873638153, - -0.19017332792282104, - -0.18158023059368134, - -0.1736425757408142, - -0.16657686233520508, - -0.16057586669921875, - -0.15580324828624725, - -0.15238919854164124, - -0.15042686462402344, - -0.26079121232032776, - -0.25707751512527466, - -0.2519598603248596, - -0.245577871799469, - -0.2381056547164917, - -0.2297469973564148, - -0.22072993218898773, - -0.21130041778087616, - -0.2017156481742859, - -0.19223706424236298, - -0.18312326073646545, - -0.1746227890253067, - -0.16696754097938538, - -0.16036635637283325, - -0.1549992561340332, - -0.15101265907287598, - -0.14851531386375427, - -0.14757533371448517, - -0.14821836352348328, - -0.15042686462402344, - -0.26079121232032776, - -0.2532275319099426, - -0.24436494708061218, - -0.23444519937038422, - -0.2237388640642166, - -0.2125380039215088, - -0.2011481374502182, - -0.18987995386123657, - -0.1790408194065094, - -0.168926402926445, - -0.1598125845193863, - -0.1519479751586914, - -0.14554709196090698, - -0.14078456163406372, - -0.1377902626991272, - -0.13664588332176208, - -0.1373826265335083, - -0.13998043537139893, - -0.14436841011047363, - -0.15042686462402344, - -0.26079121232032776, - -0.25011566281318665, - -0.23822608590126038, - -0.22544679045677185, - -0.21212637424468994, - -0.19862818717956543, - -0.1853204220533371, - -0.17256607115268707, - -0.1607130467891693, - -0.15008467435836792, - -0.1409708559513092, - -0.13362020254135132, - -0.12823320925235748, - -0.12495683133602142, - -0.12388043850660324, - -0.12503337860107422, - -0.12838423252105713, - -0.13384155929088593, - -0.14125652611255646, - -0.15042686462402344, - -0.26079121232032776, - -0.2480790913105011, - -0.23420849442481995, - -0.2195577770471573, - -0.20452657341957092, - -0.18952490389347076, - -0.17496195435523987, - -0.1612349897623062, - -0.14871840178966522, - -0.1377536803483963, - -0.12863987684249878, - -0.12162555754184723, - -0.11690212041139603, - -0.1145983636379242, - -0.11477714031934738, - -0.1174335777759552, - -0.12249521911144257, - -0.1298239827156067, - -0.1392199546098709, - -0.15042686462402344, - -0.26079121232032776, - -0.24733853340148926, - -0.23274755477905273, - -0.21741631627082825, - -0.20176300406455994, - -0.1862146109342575, - -0.17119523882865906, - -0.15711458027362823, - -0.14435672760009766, - -0.13326968252658844, - -0.12415587157011032, - -0.11726388335227966, - -0.11278171092271805, - -0.11083164066076279, - -0.11146684736013412, - -0.11467001587152481, - -0.12035375088453293, - -0.12836304306983948, - -0.13847938179969788, - -0.15042686462402344, - -0.26079121232032776, - -0.2479742020368576, - -0.23400157690048218, - -0.21925446391105652, - -0.20413514971733093, - -0.18905605375766754, - -0.17442844808101654, - -0.16065138578414917, - -0.14810064435005188, - -0.13711857795715332, - -0.1280047744512558, - -0.12100780010223389, - -0.11631852388381958, - -0.11406486481428146, - -0.11430829018354416, - -0.1170421615242958, - -0.1221919059753418, - -0.12961706519126892, - -0.13911506533622742, - -0.15042686462402344, - -0.26079121232032776, - -0.24991725385189056, - -0.23783466219902039, - -0.22487305104732513, - -0.21138596534729004, - -0.19774129986763, - -0.18431124091148376, - -0.17146213352680206, - -0.1595444530248642, - -0.14888331294059753, - -0.13976949453353882, - -0.1324516087770462, - -0.12712927162647247, - -0.12394765019416809, - -0.12299354374408722, - -0.12429296970367432, - -0.1278104931116104, - -0.13345015048980713, - -0.14105811715126038, - -0.15042686462402344, - -0.26079121232032776, - -0.2529571056365967, - -0.24383145570755005, - -0.2336631864309311, - -0.22272968292236328, - -0.21132917702198029, - -0.1997726410627365, - -0.1883752942085266, - -0.17744804918766022, - -0.16728895902633667, - -0.15817514061927795, - -0.15035519003868103, - -0.14404243230819702, - -0.13940903544425964, - -0.1365814208984375, - -0.13563668727874756, - -0.13660062849521637, - -0.1394469290971756, - -0.1440979689359665, - -0.15042686462402344, - -0.26079121232032776, - -0.25676435232162476, - -0.2513420879840851, - -0.24467235803604126, - -0.23693707585334778, - -0.22834724187850952, - -0.21913717687129974, - -0.20955809950828552, - -0.19987130165100098, - -0.1903410106897354, - -0.1812271922826767, - -0.17277845740318298, - -0.16522523760795593, - -0.15877358615398407, - -0.15359950065612793, - -0.14984408020973206, - -0.14760980010032654, - -0.14695757627487183, - -0.14790520071983337, - -0.15042686462402344, - -0.26079121232032776, - -0.26092639565467834, - -0.2595526874065399, - -0.25670748949050903, - -0.2524684965610504, - -0.24695129692554474, - -0.24030637741088867, - -0.23271501064300537, - -0.22438426315784454, - -0.21554136276245117, - -0.20642754435539246, - -0.19729140400886536, - -0.18838214874267578, - -0.179942786693573, - -0.17220354080200195, - -0.1653755158185959, - -0.1596449464559555, - -0.15516816079616547, - -0.15206727385520935, - -0.15042686462402344, - -0.26079121232032776, - -0.26499226689338684, - -0.2675734758377075, - -0.26846444606781006, - -0.2676409184932709, - -0.2651253044605255, - -0.26098623871803284, - -0.2553366422653198, - -0.24833059310913086, - -0.24015921354293823, - -0.23104539513587952, - -0.22123774886131287, - -0.21100378036499023, - -0.20062266290187836, - -0.19037756323814392, - -0.18054792284965515, - -0.17140190303325653, - -0.16318894922733307, - -0.15613311529159546, - -0.15042686462402344, - -0.26079121232032776, - -0.2685213088989258, - -0.27453529834747314, - -0.27866917848587036, - -0.2808101773262024, - -0.28089988231658936, - -0.27893581986427307, - -0.2749716341495514, - -0.2691153883934021, - -0.26152685284614563, - -0.2524130344390869, - -0.2420225441455841, - -0.2306387722492218, - -0.2185722440481186, - -0.20615212619304657, - -0.19371718168258667, - -0.18160662055015564, - -0.1701507866382599, - -0.1596621721982956, - -0.15042684972286224, - -0.26079121232032776, - -0.27113112807273865, - -0.27968376874923706, - -0.2862158417701721, - -0.2905491590499878, - -0.2925655245780945, - -0.2922099828720093, - -0.2894921600818634, - -0.28448623418807983, - -0.2773287296295166, - -0.2682149410247803, - -0.25739338994026184, - -0.2451592981815338, - -0.2318463921546936, - -0.21781779825687408, - -0.20345616340637207, - -0.1891532689332962, - -0.1752992421388626, - -0.16227197647094727, - -0.15042684972286224, - -0.26079121232032776, - -0.2725389003753662, - -0.28246089816093445, - -0.2902866005897522, - -0.2958024740219116, - -0.2988581657409668, - -0.2993702292442322, - -0.2973247170448303, - -0.29277747869491577, - -0.28585249185562134, - -0.2767386734485626, - -0.2656846046447754, - -0.2529918849468231, - -0.2390066385269165, - -0.224110409617424, - -0.2087095081806183, - -0.19322402775287628, - -0.1780763864517212, - -0.16367974877357483, - -0.15042684972286224, - -0.26079121232032776, - -0.27259206771850586, - -0.28256577253341675, - -0.29044032096862793, - -0.2960008978843689, - -0.2990958094596863, - -0.2996406555175781, - -0.2976205348968506, - -0.2930906116962433, - -0.2861744165420532, - -0.2770605981349945, - -0.2659977674484253, - -0.2532877027988434, - -0.23927706480026245, - -0.2243480682373047, - -0.20890791714191437, - -0.1933777630329132, - -0.1781812608242035, - -0.16373291611671448, - -0.15042684972286224 - ], - "y": [ - 0.08693049848079681, - 0.0885358676314354, - 0.08959570527076721, - 0.0900810956954956, - 0.08997879922389984, - 0.08929161727428436, - 0.08803827315568924, - 0.08625297993421555, - 0.08398441225290298, - 0.0812944695353508, - 0.0782565176486969, - 0.07495342195034027, - 0.07147528231143951, - 0.06791698187589645, - 0.06437557935714722, - 0.060947664082050323, - 0.057726748287677765, - 0.054800692945718765, - 0.05224931240081787, - 0.05014219880104065, - 0.08693049848079681, - 0.0925564393401146, - 0.09752717614173889, - 0.10170711576938629, - 0.10498224198818207, - 0.1072632223367691, - 0.10848783701658249, - 0.10862268507480621, - 0.1076640710234642, - 0.10563815385103226, - 0.10260020196437836, - 0.09863308072090149, - 0.09384498745203018, - 0.0883665457367897, - 0.08234719187021255, - 0.07595110684633255, - 0.06935276836156845, - 0.06273216754198074, - 0.05626988410949707, - 0.05014219880104065, - 0.08693049848079681, - 0.09594016522169113, - 0.10420233011245728, - 0.1114916205406189, - 0.11760920286178589, - 0.12238819897174835, - 0.1256982684135437, - 0.12744909524917603, - 0.12759295105934143, - 0.12612588703632355, - 0.12308793514966965, - 0.11856195330619812, - 0.11267140507698059, - 0.10557697713375092, - 0.0974721685051918, - 0.08857806771993637, - 0.07913727313280106, - 0.06940732151269913, - 0.05965360999107361, - 0.05014219507575035, - 0.08693049848079681, - 0.0983203649520874, - 0.10889781266450882, - 0.118374302983284, - 0.12649133801460266, - 0.13302752375602722, - 0.1378045380115509, - 0.1406921148300171, - 0.14161145687103271, - 0.14053751528263092, - 0.13749957084655762, - 0.1325804591178894, - 0.12591442465782166, - 0.11768324673175812, - 0.10811148583889008, - 0.09746020287275314, - 0.08601995557546616, - 0.07410280406475067, - 0.06203381344676018, - 0.05014219507575035, - 0.08693049848079681, - 0.0994391143321991, - 0.11110479384660721, - 0.12160931527614594, - 0.13066613674163818, - 0.13802823424339294, - 0.14349475502967834, - 0.14691662788391113, - 0.14820048213005066, - 0.1473112851381302, - 0.14427334070205688, - 0.13916948437690735, - 0.1321389377117157, - 0.12337346374988556, - 0.1131121963262558, - 0.10163500905036926, - 0.0892549678683281, - 0.07630978524684906, - 0.06315255910158157, - 0.05014219507575035, - 0.08693049848079681, - 0.09917517751455307, - 0.11058411002159119, - 0.12084609270095825, - 0.12968119978904724, - 0.13684843480587006, - 0.14215229451656342, - 0.14544810354709625, - 0.14664596319198608, - 0.1457131803035736, - 0.1426752358675003, - 0.13761496543884277, - 0.13067041337490082, - 0.12203101068735123, - 0.11193239688873291, - 0.10065007209777832, - 0.08849174529314041, - 0.07578910142183304, - 0.06288862228393555, - 0.05014219507575035, - 0.08693049848079681, - 0.09755714982748032, - 0.10739219188690186, - 0.116167351603508, - 0.12364324927330017, - 0.12961599230766296, - 0.13392263650894165, - 0.13644570112228394, - 0.13711638748645782, - 0.13591638207435608, - 0.13287843763828278, - 0.12808538973331451, - 0.1216680109500885, - 0.11380134522914886, - 0.10469995439052582, - 0.09461212158203125, - 0.08381300419569016, - 0.07259718328714371, - 0.06127059459686279, - 0.05014219507575035, - 0.08693049848079681, - 0.09476037323474884, - 0.1018749326467514, - 0.10808009654283524, - 0.11320661008358002, - 0.11711463332176208, - 0.11969757080078125, - 0.120884969830513, - 0.12064442783594131, - 0.11898250877857208, - 0.11594455689191818, - 0.1116134375333786, - 0.10610727965831757, - 0.09957627952098846, - 0.09219861030578613, - 0.0841754749417305, - 0.0757257491350174, - 0.06707992404699326, - 0.05847381800413132, - 0.05014219880104065, - 0.08693049848079681, - 0.09108792245388031, - 0.09463020414113998, - 0.09746070951223373, - 0.09950223565101624, - 0.10069909691810608, - 0.10101862996816635, - 0.10045214742422104, - 0.09901507198810577, - 0.09674662351608276, - 0.09370866417884827, - 0.08998407423496246, - 0.0856744572520256, - 0.08089733868837357, - 0.07578305900096893, - 0.07047110050916672, - 0.0651063621044159, - 0.059835195541381836, - 0.05480136722326279, - 0.05014219880104065, - 0.08693049848079681, - 0.08693777024745941, - 0.08644309639930725, - 0.08545996993780136, - 0.08401521295309067, - 0.0821482390165329, - 0.07990995794534683, - 0.07736144214868546, - 0.07457219809293747, - 0.07161831110715866, - 0.06858035922050476, - 0.06554120779037476, - 0.06258375197649002, - 0.05978866666555405, - 0.05723220109939575, - 0.05498407781124115, - 0.05310562625527382, - 0.051648084074258804, - 0.05065121129155159, - 0.05014219880104065, - 0.08693049848079681, - 0.08275963366031647, - 0.0782008022069931, - 0.07337833940982819, - 0.0684238076210022, - 0.06347234547138214, - 0.058659009635448456, - 0.05411510542035103, - 0.04996457323431969, - 0.046320632100105286, - 0.043282680213451385, - 0.040933579206466675, - 0.039337411522865295, - 0.03853771463036537, - 0.0385563001036644, - 0.03939266502857208, - 0.041023995727300644, - 0.043405789881944656, - 0.046473078429698944, - 0.05014219880104065, - 0.08693049848079681, - 0.07900629937648773, - 0.07079650461673737, - 0.06252505630254745, - 0.054417580366134644, - 0.04669523239135742, - 0.03956864774227142, - 0.033232226967811584, - 0.027858812361955643, - 0.023594975471496582, - 0.020557019859552383, - 0.01882781833410263, - 0.01845453307032585, - 0.01944735273718834, - 0.02177918702363968, - 0.025386441498994827, - 0.030170712620019913, - 0.03600149229168892, - 0.04271974042057991, - 0.05014219880104065, - 0.08693049848079681, - 0.07608448714017868, - 0.06503257155418396, - 0.05407623574137688, - 0.043514326214790344, - 0.033634964376688004, - 0.0247076153755188, - 0.01697579398751259, - 0.01065041497349739, - 0.005904018878936768, - 0.0028660669922828674, - 0.0016194209456443787, - 0.0021981000900268555, - 0.004586316645145416, - 0.00871891900897026, - 0.014483187347650528, - 0.021721888333559036, - 0.030237559229135513, - 0.03979792818427086, - 0.05014219880104065, - 0.08693049848079681, - 0.07431081682443619, - 0.061533618718385696, - 0.04894743114709854, - 0.03689558431506157, - 0.025706816464662552, - 0.015686318278312683, - 0.0071074478328228, - 0.00020417571067810059, - -0.004835158586502075, - -0.007873110473155975, - -0.00882682204246521, - -0.007670246064662933, - -0.0044349730014801025, - 0.0007907748222351074, - 0.007864445447921753, - 0.016593087464571, - 0.02673860639333725, - 0.038024261593818665, - 0.05014220252633095, - 0.08693049848079681, - 0.0738774985074997, - 0.06067880988121033, - 0.04769445210695267, - 0.035278599709272385, - 0.023769941180944443, - 0.013482384383678436, - 0.004696562886238098, - -0.0023478642106056213, - -0.007458768784999847, - -0.010496720671653748, - -0.011378861963748932, - -0.010081127285957336, - -0.006638914346694946, - -0.0011461004614830017, - 0.00624745711684227, - 0.015340104699134827, - 0.02588380128145218, - 0.03759094327688217, - 0.05014220252633095, - 0.08693049848079681, - 0.07483149319887161, - 0.06256077438592911, - 0.050453051924705505, - 0.038838595151901245, - 0.028034213930368423, - 0.01833462342619896, - 0.010004404932260513, - 0.0032707825303077698, - -0.0016825497150421143, - -0.004720501601696014, - -0.005760215222835541, - -0.00477328896522522, - -0.0017866790294647217, - 0.003118172287940979, - 0.009807448834180832, - 0.018098704516887665, - 0.02776576206088066, - 0.03854493796825409, - 0.05014219880104065, - 0.08693049848079681, - 0.07706942409276962, - 0.06697557866573334, - 0.05692431330680847, - 0.04718978703022003, - 0.03803754970431328, - 0.029717233031988144, - 0.02245580404996872, - 0.016451332718133926, - 0.011867597699165344, - 0.008829642087221146, - 0.007420338690280914, - 0.0076781101524829865, - 0.009595934301614761, - 0.013121504336595535, - 0.018158651888370514, - 0.02456996589899063, - 0.03218057006597519, - 0.0407828651368618, - 0.05014219880104065, - 0.08693049848079681, - 0.08034875988960266, - 0.07344481348991394, - 0.0664069652557373, - 0.059427209198474884, - 0.05269593000411987, - 0.046396732330322266, - 0.04070144146680832, - 0.03576541692018509, - 0.031723301857709885, - 0.028685346245765686, - 0.026734422892332077, - 0.025923747569322586, - 0.02627543732523918, - 0.02777988836169243, - 0.030396070331335068, - 0.03405262157320976, - 0.038649801164865494, - 0.04406220465898514, - 0.05014219880104065, - 0.08693049848079681, - 0.08431415259838104, - 0.08126742392778397, - 0.07787342369556427, - 0.07422474026679993, - 0.07042089104652405, - 0.0665656328201294, - 0.06276413053274155, - 0.05912007763981819, - 0.05573287978768349, - 0.05269492417573929, - 0.05008908361196518, - 0.047986436635255814, - 0.04644433408975601, - 0.045504845678806305, - 0.04519360139966011, - 0.045519083738327026, - 0.04647241532802582, - 0.04802759364247322, - 0.05014219880104065, - 0.08693049848079681, - 0.08853587508201599, - 0.08959570527076721, - 0.0900811031460762, - 0.08997880667448044, - 0.08929162472486496, - 0.08803828805685043, - 0.08625298738479614, - 0.08398442715406418, - 0.081294484436512, - 0.0782565250992775, - 0.07495343685150146, - 0.07147529721260071, - 0.06791699677705765, - 0.06437558680772781, - 0.06094767153263092, - 0.05772675573825836, - 0.054800696671009064, - 0.05224931240081787, - 0.05014219880104065 - ], - "z": [ - -1.7386081218719482, - -1.7316148281097412, - -1.7147774696350098, - -1.688555359840393, - -1.6536636352539062, - -1.6110543012619019, - -1.5618892908096313, - -1.5075099468231201, - -1.449399471282959, - -1.3891429901123047, - -1.328384280204773, - -1.2687804698944092, - -1.2119574546813965, - -1.1594653129577637, - -1.1127358675003052, - -1.073043704032898, - -1.0414714813232422, - -1.0188806056976318, - -1.0058871507644653, - -1.0028455257415771, - -1.7386081218719482, - -1.7316099405288696, - -1.7147676944732666, - -1.688541054725647, - -1.6536452770233154, - -1.6110321283340454, - -1.5618641376495361, - -1.5074824094772339, - -1.449370265007019, - -1.3891130685806274, - -1.3283542394638062, - -1.2687512636184692, - -1.2119299173355103, - -1.1594401597976685, - -1.1127136945724487, - -1.0730252265930176, - -1.041457176208496, - -1.0188708305358887, - -1.0058821439743042, - -1.0028455257415771, - -1.7386081218719482, - -1.7318196296691895, - -1.7151814699172974, - -1.6891474723815918, - -1.6544277667999268, - -1.6119694709777832, - -1.562930703163147, - -1.5086491107940674, - -1.4506053924560547, - -1.3903827667236328, - -1.3296239376068115, - -1.2699862718582153, - -1.2130966186523438, - -1.1605067253112793, - -1.1136510372161865, - -1.073807716369629, - -1.042063593864441, - -1.0192844867706299, - -1.006091833114624, - -1.0028455257415771, - -1.7386081218719482, - -1.732221245765686, - -1.7159737348556519, - -1.6903088092803955, - -1.6559264659881592, - -1.6137646436691284, - -1.5649734735488892, - -1.5108836889266968, - -1.4529707431793213, - -1.3928143978118896, - -1.332055687904358, - -1.2723517417907715, - -1.2153311967849731, - -1.1625494956970215, - -1.1154463291168213, - -1.0753064155578613, - -1.0432249307632446, - -1.0200767517089844, - -1.0064935684204102, - -1.0028455257415771, - -1.7386081218719482, - -1.7327712774276733, - -1.717058777809143, - -1.691899299621582, - -1.6579790115356445, - -1.6162232160568237, - -1.5677709579467773, - -1.5139439105987549, - -1.4562101364135742, - -1.3961447477340698, - -1.3353859186172485, - -1.2755911350250244, - -1.2183914184570312, - -1.1653469800949097, - -1.117904782295227, - -1.0773589611053467, - -1.0448154211044312, - -1.0211617946624756, - -1.007043480873108, - -1.0028455257415771, - -1.7386081218719482, - -1.733410120010376, - -1.7183189392089844, - -1.693746566772461, - -1.6603628396987915, - -1.6190787553787231, - -1.5710201263427734, - -1.517498254776001, - -1.459972620010376, - -1.400012731552124, - -1.3392539024353027, - -1.2793536186218262, - -1.2219457626342773, - -1.1685962677001953, - -1.1207603216171265, - -1.0797429084777832, - -1.0466625690460205, - -1.0224220752716064, - -1.0076823234558105, - -1.0028455257415771, - -1.7386081218719482, - -1.734068512916565, - -1.7196178436279297, - -1.695650339126587, - -1.662819743156433, - -1.6220216751098633, - -1.574368953704834, - -1.5211613178253174, - -1.4638503789901733, - -1.4039990901947021, - -1.3432403802871704, - -1.283231258392334, - -1.2256089448928833, - -1.1719449758529663, - -1.1237032413482666, - -1.0821998119354248, - -1.048566460609436, - -1.0237208604812622, - -1.0083407163619995, - -1.0028455257415771, - -1.7386081218719482, - -1.7346751689910889, - -1.7208144664764404, - -1.697404384613037, - -1.6650835275650024, - -1.6247332096099854, - -1.5774543285369873, - -1.5245364904403687, - -1.4674230813980103, - -1.4076720476150513, - -1.3469133377075195, - -1.2868040800094604, - -1.228983998298645, - -1.1750303506851196, - -1.1264147758483887, - -1.0844634771347046, - -1.0503206253051758, - -1.0249176025390625, - -1.0089473724365234, - -1.0028455257415771, - -1.7386081218719482, - -1.7351641654968262, - -1.7217793464660645, - -1.6988188028335571, - -1.6669087409973145, - -1.6269195079803467, - -1.5799421072006226, - -1.5272578001022339, - -1.4703037738800049, - -1.4106335639953613, - -1.34987473487854, - -1.289684772491455, - -1.2317053079605103, - -1.1775181293487549, - -1.12860107421875, - -1.0862886905670166, - -1.0517349243164062, - -1.0258824825286865, - -1.0094364881515503, - -1.0028455257415771, - -1.7386081218719482, - -1.7354828119277954, - -1.7224079370498657, - -1.6997400522232056, - -1.6680974960327148, - -1.6283435821533203, - -1.5815625190734863, - -1.529030442237854, - -1.4721801280975342, - -1.4125624895095825, - -1.3518037796020508, - -1.2915611267089844, - -1.2334779500961304, - -1.1791385412216187, - -1.1300251483917236, - -1.0874775648117065, - -1.0526561737060547, - -1.0265109539031982, - -1.00975501537323, - -1.0028455257415771, - -1.7386081218719482, - -1.7355964183807373, - -1.7226319313049316, - -1.7000683546066284, - -1.6685212850570679, - -1.6288511753082275, - -1.5821400880813599, - -1.5296622514724731, - -1.472848892211914, - -1.4132500886917114, - -1.3524912595748901, - -1.2922298908233643, - -1.2341097593307495, - -1.1797161102294922, - -1.1305327415466309, - -1.0879013538360596, - -1.0529844760894775, - -1.0267349481582642, - -1.0098686218261719, - -1.0028455257415771, - -1.7386081218719482, - -1.7354925870895386, - -1.7224271297454834, - -1.699768304824829, - -1.6681339740753174, - -1.628387212753296, - -1.581612229347229, - -1.5290846824645996, - -1.4722377061843872, - -1.4126216173171997, - -1.351862907409668, - -1.2916185855865479, - -1.2335323095321655, - -1.1791882514953613, - -1.1300687789916992, - -1.0875139236450195, - -1.0526844263076782, - -1.0265302658081055, - -1.0097647905349731, - -1.0028455257415771, - -1.7386081218719482, - -1.7351826429367065, - -1.721815824508667, - -1.6988722085952759, - -1.6669776439666748, - -1.6270021200180054, - -1.5800360441207886, - -1.5273605585098267, - -1.4704124927520752, - -1.41074538230896, - -1.3499865531921387, - -1.2897934913635254, - -1.231808066368103, - -1.177612066268921, - -1.1286836862564087, - -1.086357593536377, - -1.051788330078125, - -1.025918960571289, - -1.0094549655914307, - -1.0028455257415771, - -1.7386081218719482, - -1.7347002029418945, - -1.720864176750183, - -1.6974772214889526, - -1.6651774644851685, - -1.6248457431793213, - -1.5775823593139648, - -1.5246765613555908, - -1.4675713777542114, - -1.4078245162963867, - -1.3470656871795654, - -1.2869523763656616, - -1.2291240692138672, - -1.1751583814620972, - -1.1265273094177246, - -1.0845574140548706, - -1.0503933429718018, - -1.0249671936035156, - -1.0089725255966187, - -1.0028455257415771, - -1.7386081218719482, - -1.7340975999832153, - -1.7196753025054932, - -1.6957346200942993, - -1.662928581237793, - -1.6221520900726318, - -1.5745172500610352, - -1.521323561668396, - -1.4640220403671265, - -1.4041756391525269, - -1.3434168100357056, - -1.2834030389785767, - -1.2257710695266724, - -1.1720932722091675, - -1.1238336563110352, - -1.0823085308074951, - -1.0486507415771484, - -1.0237784385681152, - -1.0083699226379395, - -1.0028455257415771, - -1.7386081218719482, - -1.7334400415420532, - -1.7183780670166016, - -1.6938331127166748, - -1.6604747772216797, - -1.6192127466201782, - -1.5711725950241089, - -1.517664909362793, - -1.4601491689682007, - -1.4001941680908203, - -1.339435338973999, - -1.2795301675796509, - -1.2221124172210693, - -1.1687486171722412, - -1.1208943128585815, - -1.0798547267913818, - -1.0467493534088135, - -1.0224812030792236, - -1.0077123641967773, - -1.0028455257415771, - -1.7386081218719482, - -1.7327988147735596, - -1.7171131372451782, - -1.691978931427002, - -1.6580817699432373, - -1.6163463592529297, - -1.5679110288619995, - -1.5140970945358276, - -1.4563723802566528, - -1.3963115215301514, - -1.33555269241333, - -1.275753378868103, - -1.2185447216033936, - -1.1654870510101318, - -1.118027925491333, - -1.0774617195129395, - -1.044895052909851, - -1.0212161540985107, - -1.0070710182189941, - -1.0028455257415771, - -1.7386081218719482, - -1.732243299484253, - -1.7160173654556274, - -1.6903727054595947, - -1.6560090780258179, - -1.6138635873794556, - -1.565086007118225, - -1.5110068321228027, - -1.4531010389328003, - -1.3929483890533447, - -1.332189679145813, - -1.2724820375442505, - -1.215454339981079, - -1.1626620292663574, - -1.1155451536178589, - -1.07538902759552, - -1.0432889461517334, - -1.02012038230896, - -1.006515622138977, - -1.0028455257415771, - -1.7386081218719482, - -1.7318339347839355, - -1.715209722518921, - -1.689188838005066, - -1.6544811725616455, - -1.612033486366272, - -1.5630035400390625, - -1.5087287425994873, - -1.450689673423767, - -1.3904694318771362, - -1.329710602760315, - -1.2700706720352173, - -1.2131762504577637, - -1.1605794429779053, - -1.1137150526046753, - -1.0738611221313477, - -1.042104959487915, - -1.0193127393722534, - -1.0061061382293701, - -1.0028455257415771, - -1.7386081218719482, - -1.7316148281097412, - -1.7147774696350098, - -1.688555359840393, - -1.6536636352539062, - -1.6110543012619019, - -1.5618892908096313, - -1.5075099468231201, - -1.449399471282959, - -1.3891429901123047, - -1.328384280204773, - -1.2687804698944092, - -1.2119574546813965, - -1.1594653129577637, - -1.1127358675003052, - -1.073043704032898, - -1.0414714813232422, - -1.0188806056976318, - -1.0058871507644653, - -1.0028455257415771 - ] - }, - { - "alphahull": 0, - "color": "#FFA15A", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.357948899269104, - -0.36243289709091187, - -0.3652617633342743, - -0.36635833978652954, - -0.36569273471832275, - -0.3632831275463104, - -0.35919520258903503, - -0.35354048013687134, - -0.34647321701049805, - -0.3381861746311188, - -0.3289054036140442, - -0.31888407468795776, - -0.30839553475379944, - -0.2977258861064911, - -0.28716617822647095, - -0.2770044207572937, - -0.2675178050994873, - -0.2589651346206665, - -0.2515796720981598, - -0.24556289613246918, - -0.357948899269104, - -0.35636991262435913, - -0.3533012270927429, - -0.34882646799087524, - -0.3430677652359009, - -0.33618220686912537, - -0.3283575773239136, - -0.3198072910308838, - -0.3107646405696869, - -0.30147626996040344, - -0.29219549894332886, - -0.283175528049469, - -0.2746623456478119, - -0.26688823103904724, - -0.2600652277469635, - -0.25437942147254944, - -0.249985933303833, - -0.24700458347797394, - -0.24551671743392944, - -0.24556289613246918, - -0.357948899269104, - -0.3503950238227844, - -0.34151437878608704, - -0.3315492272377014, - -0.32077139616012573, - -0.3094748854637146, - -0.297967791557312, - -0.28656405210494995, - -0.2755747139453888, - -0.2652994990348816, - -0.256018728017807, - -0.2479855716228485, - -0.24141910672187805, - -0.23649847507476807, - -0.23335790634155273, - -0.2320830523967743, - -0.23270869255065918, - -0.23521775007247925, - -0.23954181373119354, - -0.24556291103363037, - -0.357948899269104, - -0.34515565633773804, - -0.33117854595184326, - -0.31639885902404785, - -0.30121979117393494, - -0.286055326461792, - -0.27131912112236023, - -0.2574131488800049, - -0.24471674859523773, - -0.2335762232542038, - -0.2242954671382904, - -0.21712762117385864, - -0.21226820349693298, - -0.2098497897386551, - -0.20993834733963013, - -0.2125314325094223, - -0.21755832433700562, - -0.22488191723823547, - -0.23430243134498596, - -0.24556291103363037, - -0.357948899269104, - -0.34121957421302795, - -0.32341375946998596, - -0.3050171732902527, - -0.28653162717819214, - -0.2684613764286041, - -0.25129932165145874, - -0.23551355302333832, - -0.22153472900390625, - -0.20974412560462952, - -0.20046335458755493, - -0.19394558668136597, - -0.19036859273910522, - -0.1898299753665924, - -0.19234439730644226, - -0.1978432834148407, - -0.20617663860321045, - -0.21711713075637817, - -0.23036634922027588, - -0.24556291103363037, - -0.357948899269104, - -0.33901333808898926, - -0.3190614581108093, - -0.2986375093460083, - -0.27829864621162415, - -0.2585996389389038, - -0.24007783830165863, - -0.22323842346668243, - -0.20854076743125916, - -0.19638578593730927, - -0.18710502982139587, - -0.18095164000988007, - -0.17809346318244934, - -0.1786085069179535, - -0.18248265981674194, - -0.1896103024482727, - -0.19979697465896606, - -0.21276482939720154, - -0.22816011309623718, - -0.24556291103363037, - -0.357948899269104, - -0.33877599239349365, - -0.31859326362609863, - -0.29795125126838684, - -0.277413010597229, - -0.2575387954711914, - -0.23887071013450623, - -0.22191795706748962, - -0.20714297890663147, - -0.19494879245758057, - -0.18566803634166718, - -0.1795538365840912, - -0.17677301168441772, - -0.1774013787508011, - -0.18142181634902954, - -0.18872465193271637, - -0.1991107165813446, - -0.21229663491249084, - -0.22792278230190277, - -0.24556291103363037, - -0.357948899269104, - -0.3405332863330841, - -0.3220599293708801, - -0.3030327260494232, - -0.2839706838130951, - -0.26539379358291626, - -0.24780873954296112, - -0.2316952347755432, - -0.21749281883239746, - -0.20558887720108032, - -0.19630810618400574, - -0.18990367650985718, - -0.1865502893924713, - -0.18633940815925598, - -0.1892767995595932, - -0.19528232514858246, - -0.2041921764612198, - -0.21576330065727234, - -0.22968009114265442, - -0.24556291103363037, - -0.357948899269104, - -0.34409478306770325, - -0.3290857970714569, - -0.31333127617836, - -0.2972610294818878, - -0.281313419342041, - -0.2659233808517456, - -0.25151076912879944, - -0.2384687215089798, - -0.2271529883146286, - -0.2178722321987152, - -0.2108795940876007, - -0.20636582374572754, - -0.20445406436920166, - -0.20519642531871796, - -0.20857268571853638, - -0.21449074149131775, - -0.22278915345668793, - -0.23324158787727356, - -0.24556291103363037, - -0.357948899269104, - -0.3490745425224304, - -0.33890947699546814, - -0.3277309238910675, - -0.3158438503742218, - -0.30357250571250916, - -0.29125159978866577, - -0.2792172133922577, - -0.26779764890670776, - -0.2573043704032898, - -0.2480235993862152, - -0.24020850658416748, - -0.2340722680091858, - -0.22978226840496063, - -0.2274555265903473, - -0.22715550661087036, - -0.22889038920402527, - -0.23261283338069916, - -0.23822134733200073, - -0.24556291103363037, - -0.357948899269104, - -0.3549329340457916, - -0.35046643018722534, - -0.34467121958732605, - -0.3377054035663605, - -0.32975897192955017, - -0.32104870676994324, - -0.311812162399292, - -0.3023013174533844, - -0.29277560114860535, - -0.28349483013153076, - -0.2747121751308441, - -0.2666672170162201, - -0.2595793604850769, - -0.2536419928073883, - -0.24901705980300903, - -0.2458306849002838, - -0.24416980147361755, - -0.24407972395420074, - -0.24556289613246918, - -0.357948899269104, - -0.3610351085662842, - -0.3625043034553528, - -0.36231642961502075, - -0.36047664284706116, - -0.3570351004600525, - -0.3520857095718384, - -0.3457634150981903, - -0.33824074268341064, - -0.3297228515148163, - -0.3204420804977417, - -0.31065160036087036, - -0.3006184697151184, - -0.29061639308929443, - -0.280918151140213, - -0.2717882990837097, - -0.2634758949279785, - -0.256207674741745, - -0.2501818835735321, - -0.24556289613246918, - -0.357948899269104, - -0.3667197525501251, - -0.3737185597419739, - -0.3787544369697571, - -0.38168996572494507, - -0.3824450969696045, - -0.38099926710128784, - -0.37739187479019165, - -0.3717213273048401, - -0.3641422986984253, - -0.3548615276813507, - -0.3441321849822998, - -0.33224692940711975, - -0.3195299506187439, - -0.306328147649765, - -0.29300162196159363, - -0.27991390228271484, - -0.2674219310283661, - -0.25586655735969543, - -0.24556289613246918, - -0.357948899269104, - -0.37137091159820557, - -0.38289403915405273, - -0.3922038972377777, - -0.3990465998649597, - -0.40323543548583984, - -0.40465617179870605, - -0.40327009558677673, - -0.3991149365901947, - -0.39230409264564514, - -0.38302332162857056, - -0.3715257942676544, - -0.35812515020370483, - -0.3431868553161621, - -0.327118456363678, - -0.3103582262992859, - -0.2933633625507355, - -0.27659741044044495, - -0.2605177164077759, - -0.24556289613246918, - -0.357948899269104, - -0.3744845390319824, - -0.3890363574028015, - -0.4012073576450348, - -0.4106656014919281, - -0.4171530604362488, - -0.4204927980899811, - -0.4205937087535858, - -0.41745302081108093, - -0.41115641593933105, - -0.40187564492225647, - -0.38986387848854065, - -0.3754487633705139, - -0.35902348160743713, - -0.3410361111164093, - -0.32197725772857666, - -0.30236682295799255, - -0.2827397286891937, - -0.26363134384155273, - -0.24556289613246918, - -0.357948899269104, - -0.3757232427597046, - -0.3914799392223358, - -0.40478917956352234, - -0.41528797149658203, - -0.42268985509872437, - -0.42679303884506226, - -0.42748549580574036, - -0.42474839091300964, - -0.4186563491821289, - -0.4093756079673767, - -0.39715924859046936, - -0.38234055042266846, - -0.3653237223625183, - -0.3465729057788849, - -0.3265996277332306, - -0.3059486448764801, - -0.285183310508728, - -0.2648700177669525, - -0.24556289613246918, - -0.357948899269104, - -0.3749527335166931, - -0.3899599611759186, - -0.4025611877441406, - -0.41241273283958435, - -0.4192458391189575, - -0.4228741228580475, - -0.4231986403465271, - -0.42021048069000244, - -0.41399121284484863, - -0.40471044182777405, - -0.39262133836746216, - -0.3780536651611328, - -0.36140480637550354, - -0.34312885999679565, - -0.3237243890762329, - -0.3037206530570984, - -0.2836633324623108, - -0.2640995383262634, - -0.24556289613246918, - -0.357948899269104, - -0.3722565770149231, - -0.384641170501709, - -0.39476484060287476, - -0.4023514986038208, - -0.4071941673755646, - -0.4091607332229614, - -0.4081976115703583, - -0.4043310284614563, - -0.39766645431518555, - -0.38838568329811096, - -0.376741886138916, - -0.3630526661872864, - -0.3476914167404175, - -0.3310771882534027, - -0.31366315484046936, - -0.2959243059158325, - -0.2783445119857788, - -0.261403352022171, - -0.24556289613246918, - -0.357948899269104, - -0.3679268956184387, - -0.3760998845100403, - -0.3822449743747711, - -0.38619452714920044, - -0.38784080743789673, - -0.3871389627456665, - -0.3841080665588379, - -0.37883079051971436, - -0.37145113945007324, - -0.36217036843299866, - -0.3512416481971741, - -0.3389630913734436, - -0.32566961646080017, - -0.31172385811805725, - -0.297506183385849, - -0.2834044396877289, - -0.2698032557964325, - -0.25707367062568665, - -0.24556289613246918, - -0.357948899269104, - -0.36243289709091187, - -0.3652617335319519, - -0.36635833978652954, - -0.36569273471832275, - -0.3632831275463104, - -0.35919517278671265, - -0.35354048013687134, - -0.34647318720817566, - -0.3381861448287964, - -0.3289054036140442, - -0.31888407468795776, - -0.30839553475379944, - -0.2977258563041687, - -0.28716614842414856, - -0.2770043909549713, - -0.2675178050994873, - -0.2589651048183441, - -0.2515796720981598, - -0.24556289613246918 - ], - "y": [ - 0.11931639909744263, - 0.13699419796466827, - 0.15367884933948517, - 0.16891524195671082, - 0.1822877824306488, - 0.19343169033527374, - 0.20204299688339233, - 0.20788678526878357, - 0.21080368757247925, - 0.21071410179138184, - 0.2076205015182495, - 0.20160727202892303, - 0.1928384006023407, - 0.18155312538146973, - 0.16805925965309143, - 0.15272486209869385, - 0.13596823811531067, - 0.11824646592140198, - 0.10004294663667679, - 0.08185421675443649, - 0.11931639909744263, - 0.13778741657733917, - 0.1552436649799347, - 0.17120897769927979, - 0.18524785339832306, - 0.19697734713554382, - 0.20607753098011017, - 0.2123001515865326, - 0.21547549962997437, - 0.21551692485809326, - 0.21242332458496094, - 0.20627906918525696, - 0.19725176692008972, - 0.18558767437934875, - 0.17160490155220032, - 0.1556849330663681, - 0.13826195895671844, - 0.1198112815618515, - 0.10083617269992828, - 0.08185421675443649, - 0.11931639909744263, - 0.13655135035514832, - 0.15280522406101227, - 0.16763469576835632, - 0.1806352138519287, - 0.19145217537879944, - 0.19979055225849152, - 0.20542286336421967, - 0.20819547772407532, - 0.2080327421426773, - 0.20493914186954498, - 0.1989990472793579, - 0.1903744786977768, - 0.1793006956577301, - 0.16607975959777832, - 0.15107229351997375, - 0.13468767702579498, - 0.11737284809350967, - 0.09960009157657623, - 0.08185421675443649, - 0.11931639909744263, - 0.13341990113258362, - 0.1466277688741684, - 0.1585797220468521, - 0.16894972324371338, - 0.17745494842529297, - 0.1838633418083191, - 0.1880001425743103, - 0.1897524893283844, - 0.18907257914543152, - 0.1859789788722992, - 0.18055607378482819, - 0.17295175790786743, - 0.16337347030639648, - 0.15208250284194946, - 0.13938681781291962, - 0.12563271820545197, - 0.1111953929066658, - 0.09646865725517273, - 0.08185421675443649, - 0.11931639909744263, - 0.12873245775699615, - 0.13738073408603668, - 0.1450253129005432, - 0.15145769715309143, - 0.15650242567062378, - 0.16002187132835388, - 0.16192004084587097, - 0.16214515268802643, - 0.16069108247756958, - 0.15759746730327606, - 0.15294873714447021, - 0.1468716561794281, - 0.13953199982643127, - 0.13112998008728027, - 0.12189478427171707, - 0.11207830905914307, - 0.10194835066795349, - 0.09178120642900467, - 0.08185421675443649, - 0.11931639909744263, - 0.12299694120883942, - 0.1260661482810974, - 0.12844032049179077, - 0.13005466759204865, - 0.1308651566505432, - 0.1308497041463852, - 0.130008727312088, - 0.12836512923240662, - 0.12596379220485687, - 0.12287019193172455, - 0.1191687136888504, - 0.11496033519506454, - 0.11035983264446259, - 0.1054927259683609, - 0.10049173980951309, - 0.09549330919981003, - 0.09063377231359482, - 0.08604569733142853, - 0.08185422420501709, - 0.11931639909744263, - 0.11683490872383118, - 0.11391016095876694, - 0.11062194406986237, - 0.10705996304750443, - 0.1033213660120964, - 0.099508136510849, - 0.09572429209947586, - 0.09207303822040558, - 0.08865398168563843, - 0.0855603814125061, - 0.08287661522626877, - 0.08067590743303299, - 0.07901826500892639, - 0.0779489204287529, - 0.07749703526496887, - 0.07767494022846222, - 0.07847778499126434, - 0.07988365739583969, - 0.08185422420501709, - 0.11931640654802322, - 0.11091408878564835, - 0.10223003476858139, - 0.09350111335515976, - 0.08496543020009995, - 0.07685582339763641, - 0.06939348578453064, - 0.06278198957443237, - 0.05720166116952896, - 0.05280473083257675, - 0.04971112683415413, - 0.04800523817539215, - 0.047733597457408905, - 0.04890361428260803, - 0.05148337781429291, - 0.05540250241756439, - 0.06055410951375961, - 0.0667976588010788, - 0.07396284490823746, - 0.08185422420501709, - 0.11931640654802322, - 0.10587611794471741, - 0.09229150414466858, - 0.07893311977386475, - 0.06616535782814026, - 0.05433649197220802, - 0.04376915842294693, - 0.03475162386894226, - 0.02752985805273056, - 0.02230086922645569, - 0.019207268953323364, - 0.01833343505859375, - 0.01970323920249939, - 0.023279279470443726, - 0.028964035212993622, - 0.0366024374961853, - 0.0459861196577549, - 0.05685912072658539, - 0.06892486661672592, - 0.08185422420501709, - 0.11931640654802322, - 0.10226691514253616, - 0.08517155796289444, - 0.06849664449691772, - 0.05269702896475792, - 0.038203686475753784, - 0.0254119411110878, - 0.014670714735984802, - 0.006273046135902405, - 0.00044795870780944824, - -0.002645641565322876, - -0.0029233768582344055, - -0.00037766993045806885, - 0.004922062158584595, - 0.012831225991249084, - 0.023134097456932068, - 0.03554964065551758, - 0.04973917454481125, - 0.06531566381454468, - 0.08185422420501709, - 0.11931640654802322, - 0.10047761350870132, - 0.08164175599813461, - 0.06332263350486755, - 0.046019937843084335, - 0.03020564466714859, - 0.016311123967170715, - 0.004715360701084137, - -0.004265286028385162, - -0.010385893285274506, - -0.01347949355840683, - -0.013461709022521973, - -0.010333023965358734, - -0.004178754985332489, - 0.00483318418264389, - 0.016457006335258484, - 0.03037562221288681, - 0.04620937258005142, - 0.06352636218070984, - 0.08185422420501709, - 0.11931640654802322, - 0.10070209950208664, - 0.08208460360765457, - 0.06397176533937454, - 0.046857643872499466, - 0.031209081411361694, - 0.017452910542488098, - 0.0059643760323524475, - -0.0029431432485580444, - -0.009026676416397095, - -0.012120276689529419, - -0.012139566242694855, - -0.009084008634090424, - -0.003036968410015106, - 0.005836620926856995, - 0.01729471981525421, - 0.031024761497974396, - 0.04665222391486168, - 0.06375084817409515, - 0.08185422420501709, - 0.11931640654802322, - 0.10291605442762375, - 0.08645211905241013, - 0.07037369906902313, - 0.05511938035488129, - 0.041105255484580994, - 0.028713583946228027, - 0.01828237622976303, - 0.010096199810504913, - 0.004378318786621094, - 0.0012847185134887695, - 0.000899776816368103, - 0.00323399156332016, - 0.008223704993724823, - 0.015732795000076294, - 0.025556452572345734, - 0.037426695227622986, - 0.05101973935961723, - 0.06596480309963226, - 0.08185422420501709, - 0.11931640654802322, - 0.10687955468893051, - 0.09427101165056229, - 0.08183470368385315, - 0.06990987062454224, - 0.05882178246974945, - 0.04887289181351662, - 0.04033457860350609, - 0.0334397554397583, - 0.02837648242712021, - 0.025282882153987885, - 0.02424333244562149, - 0.02528619021177292, - 0.02838301658630371, - 0.03344932943582535, - 0.04034694284200668, - 0.0488877035677433, - 0.058838631957769394, - 0.06992830336093903, - 0.08185422420501709, - 0.11931640654802322, - 0.11216309666633606, - 0.10469397157430649, - 0.09711277484893799, - 0.08962629735469818, - 0.08243875950574875, - 0.07574620842933655, - 0.069731205701828, - 0.06455782055854797, - 0.060367170721292496, - 0.05727356672286987, - 0.05536139756441116, - 0.05468281731009483, - 0.05525633320212364, - 0.057066310197114944, - 0.06006337329745293, - 0.06416577100753784, - 0.0692615956068039, - 0.07521184533834457, - 0.08185422420501709, - 0.11931639909744263, - 0.11819411814212799, - 0.11659151315689087, - 0.11455229669809341, - 0.11213210225105286, - 0.10939694195985794, - 0.10642141848802567, - 0.10328669846057892, - 0.10007829964160919, - 0.09688372910022736, - 0.09379012882709503, - 0.09088187664747238, - 0.08823831379413605, - 0.08593154698610306, - 0.08402448892593384, - 0.0825691744685173, - 0.08160529285669327, - 0.08115912973880768, - 0.0812428742647171, - 0.08185422420501709, - 0.11931639909744263, - 0.12431909143924713, - 0.12867437303066254, - 0.13226346671581268, - 0.1349884569644928, - 0.13677503168582916, - 0.1375744342803955, - 0.13736487925052643, - 0.13615207374095917, - 0.13396908342838287, - 0.13087548315525055, - 0.12695564329624176, - 0.12231649458408356, - 0.1170845627784729, - 0.11140258610248566, - 0.10542554408311844, - 0.09931646287441254, - 0.09324199706315994, - 0.08736784011125565, - 0.08185421675443649, - 0.11931639909744263, - 0.12987425923347473, - 0.1396331787109375, - 0.14832697808742523, - 0.15571850538253784, - 0.16160614788532257, - 0.16582930088043213, - 0.16827276349067688, - 0.16886991262435913, - 0.16760440170764923, - 0.1645108014345169, - 0.15967348217964172, - 0.153224378824234, - 0.14533942937850952, - 0.13623371720314026, - 0.12615558505058289, - 0.11537997424602509, - 0.10420079529285431, - 0.09292300045490265, - 0.08185421675443649, - 0.11931639909744263, - 0.13425762951374054, - 0.14828035235404968, - 0.16100208461284637, - 0.1720758080482483, - 0.18119946122169495, - 0.1881241500377655, - 0.19266104698181152, - 0.19468632340431213, - 0.19414478540420532, - 0.191051185131073, - 0.18548990786075592, - 0.17761266231536865, - 0.1676342934370041, - 0.15582703053951263, - 0.14251288771629333, - 0.12805508077144623, - 0.11284797638654709, - 0.09730637818574905, - 0.08185421675443649, - 0.11931639909744263, - 0.13699419796466827, - 0.15367884933948517, - 0.16891524195671082, - 0.1822877824306488, - 0.19343169033527374, - 0.20204299688339233, - 0.20788680016994476, - 0.21080370247364044, - 0.21071411669254303, - 0.2076205164194107, - 0.20160728693008423, - 0.1928384155035019, - 0.18155312538146973, - 0.16805925965309143, - 0.15272487699985504, - 0.13596823811531067, - 0.11824646592140198, - 0.10004294663667679, - 0.08185421675443649 - ], - "z": [ - -2.3863260746002197, - -2.3795325756073, - -2.362705707550049, - -2.3363044261932373, - -2.301048994064331, - -2.2579009532928467, - -2.2080376148223877, - -2.1528186798095703, - -2.093750476837158, - -2.032444477081299, - -1.9705727100372314, - -1.909822940826416, - -1.851852297782898, - -1.7982420921325684, - -1.7504545450210571, - -1.7097933292388916, - -1.6773674488067627, - -1.6540615558624268, - -1.640511155128479, - -1.6370861530303955, - -2.3863260746002197, - -2.3804023265838623, - -2.3644216060638428, - -2.3388195037841797, - -2.3042948246002197, - -2.261788845062256, - -2.212461471557617, - -2.1576578617095947, - -2.0988731384277344, - -2.037710666656494, - -1.9758390188217163, - -1.9149456024169922, - -1.856691598892212, - -1.8026659488677979, - -1.7543424367904663, - -1.7130391597747803, - -1.679882526397705, - -1.6557773351669312, - -1.641381025314331, - -1.6370861530303955, - -2.3863260746002197, - -2.3813605308532715, - -2.366311550140381, - -2.34158992767334, - -2.3078699111938477, - -2.266071319580078, - -2.217334270477295, - -2.1629881858825684, - -2.104515552520752, - -2.043511390686035, - -1.9816397428512573, - -1.9205881357192993, - -1.8620219230651855, - -1.8075387477874756, - -1.758624792098999, - -1.7166142463684082, - -1.6826529502868652, - -1.6576672792434692, - -1.6423389911651611, - -1.6370861530303955, - -2.3863260746002197, - -2.38230299949646, - -2.368170738220215, - -2.3443150520324707, - -2.311386823654175, - -2.2702841758728027, - -2.222127914428711, - -2.168231964111328, - -2.1100664138793945, - -2.049217939376831, - -1.9873462915420532, - -1.926138997077942, - -1.8672657012939453, - -1.8123323917388916, - -1.7628376483917236, - -1.7201311588287354, - -1.6853781938552856, - -1.6595265865325928, - -1.6432814598083496, - -1.6370861530303955, - -2.3863260746002197, - -2.3831276893615723, - -2.369797706604004, - -2.3467001914978027, - -2.314464569091797, - -2.27397084236145, - -2.226322889328003, - -2.172821044921875, - -2.114924192428589, - -2.0542118549346924, - -1.992340087890625, - -1.9309966564178467, - -1.8718546628952026, - -1.8165274858474731, - -1.766524314880371, - -1.723209023475647, - -1.6877632141113281, - -1.6611535549163818, - -1.6441062688827515, - -1.6370861530303955, - -2.3863260746002197, - -2.3837454319000244, - -2.371016502380371, - -2.3484864234924316, - -2.31676983833313, - -2.2767319679260254, - -2.2294647693634033, - -2.176257848739624, - -2.1185622215270996, - -2.0579519271850586, - -1.9960802793502808, - -1.9346346855163574, - -1.8752914667129517, - -1.8196693658828735, - -1.7692854404449463, - -1.7255141735076904, - -1.689549446105957, - -1.6623722314834595, - -1.6447240114212036, - -1.6370861530303955, - -2.3863260746002197, - -2.3840889930725098, - -2.371694564819336, - -2.349480152130127, - -2.318052291870117, - -2.278268337249756, - -2.231212854385376, - -2.1781702041625977, - -2.120586633682251, - -2.060033082962036, - -1.9981613159179688, - -1.9366589784622192, - -1.8772038221359253, - -1.8214174509048462, - -1.7708218097686768, - -1.7267967462539673, - -1.6905431747436523, - -1.6630501747131348, - -1.6450676918029785, - -1.6370861530303955, - -2.3863260746002197, - -2.3841214179992676, - -2.371758460998535, - -2.349574089050293, - -2.318173408508301, - -2.2784132957458496, - -2.2313780784606934, - -2.1783506870269775, - -2.1207776069641113, - -2.060229539871216, - -1.9983577728271484, - -1.9368500709533691, - -1.8773843050003052, - -1.821582555770874, - -1.7709667682647705, - -1.7269177436828613, - -1.6906371116638184, - -1.6631141901016235, - -1.6451001167297363, - -1.6370861530303955, - -2.3863260746002197, - -2.3838391304016113, - -2.371201515197754, - -2.34875750541687, - -2.317119836807251, - -2.277151346206665, - -2.2299420833587646, - -2.1767797470092773, - -2.119114875793457, - -2.0585200786590576, - -1.9966483116149902, - -1.9351873397827148, - -1.8758134841918945, - -1.8201465606689453, - -1.769704818725586, - -1.7258641719818115, - -1.689820647239685, - -1.6625572443008423, - -1.64481782913208, - -1.6370861530303955, - -2.3863260746002197, - -2.383272647857666, - -2.370083808898926, - -2.3471195697784424, - -2.3150057792663574, - -2.2746191024780273, - -2.227060556411743, - -2.1736278533935547, - -2.1157784461975098, - -2.0550899505615234, - -1.9932183027267456, - -1.931850790977478, - -1.8726615905761719, - -1.8172651529312134, - -1.7671725749969482, - -1.7237502336502075, - -1.6881825923919678, - -1.6614396572113037, - -1.6442513465881348, - -1.6370861530303955, - -2.3863260746002197, - -2.38248348236084, - -2.3685269355773926, - -2.344837188720703, - -2.312060594558716, - -2.2710909843444824, - -2.223046064376831, - -2.169236421585083, - -2.1111297607421875, - -2.0503110885620117, - -1.9884393215179443, - -1.9272022247314453, - -1.8682701587677002, - -1.8132506608963013, - -1.7636445760726929, - -1.7208048105239868, - -1.6859002113342285, - -1.659882664680481, - -1.6434619426727295, - -1.6370861530303955, - -2.3863260746002197, - -2.381556987762451, - -2.366698980331421, - -2.3421578407287598, - -2.308602809906006, - -2.266949415206909, - -2.2183334827423096, - -2.164081335067749, - -2.105672836303711, - -2.044700860977173, - -1.982829213142395, - -1.9217451810836792, - -1.8631149530410767, - -1.8085379600524902, - -1.75950288772583, - -1.717347264289856, - -1.6832209825515747, - -1.6580548286437988, - -1.6425354480743408, - -1.6370861530303955, - -2.3863260746002197, - -2.3805935382843018, - -2.3647985458374023, - -2.339372158050537, - -2.3050079345703125, - -2.2626430988311768, - -2.213433265686035, - -2.1587212085723877, - -2.099998712539673, - -2.038867712020874, - -1.9769960641860962, - -1.9160710573196411, - -1.8577548265457153, - -1.803637981414795, - -1.7551965713500977, - -1.7137521505355835, - -1.6804351806640625, - -1.6561543941497803, - -1.6415719985961914, - -1.6370861530303955, - -2.3863260746002197, - -2.379697561264038, - -2.3630313873291016, - -2.3367815017700195, - -2.3016648292541504, - -2.258638620376587, - -2.208876848220825, - -2.1537368297576904, - -2.0947225093841553, - -2.0334436893463135, - -1.971571922302246, - -1.9107948541641235, - -1.852770447731018, - -1.7990814447402954, - -1.7511922121047974, - -1.710409164428711, - -1.677844762802124, - -1.6543869972229004, - -1.6406762599945068, - -1.6370861530303955, - -2.3863260746002197, - -2.3789663314819336, - -2.361588716506958, - -2.334667205810547, - -2.298936128616333, - -2.2553701400756836, - -2.20515775680542, - -2.1496684551239014, - -2.0904157161712646, - -2.0290162563323975, - -1.96714448928833, - -1.906488299369812, - -1.848702073097229, - -1.7953622341156006, - -1.747923731803894, - -1.7076804637908936, - -1.6757302284240723, - -1.652944564819336, - -1.6399450302124023, - -1.6370861530303955, - -2.3863260746002197, - -2.37847900390625, - -2.3606274127960205, - -2.3332579135894775, - -2.2971174716949463, - -2.2531917095184326, - -2.202678918838501, - -2.1469569206237793, - -2.087545394897461, - -2.0260653495788574, - -1.9641937017440796, - -1.9036179780960083, - -1.845990538597107, - -1.7928833961486816, - -1.745745301246643, - -1.7058618068695068, - -1.6743210554122925, - -1.6519831418991089, - -1.6394577026367188, - -1.6370861530303955, - -2.3863260746002197, - -2.3782882690429688, - -2.3602511882781982, - -2.3327066898345947, - -2.2964060306549072, - -2.2523393630981445, - -2.201709032058716, - -2.1458959579467773, - -2.0864224433898926, - -2.0249109268188477, - -1.9630391597747803, - -1.9024949073791504, - -1.8449296951293945, - -1.791913628578186, - -1.7448930740356445, - -1.7051503658294678, - -1.6737697124481201, - -1.6516070365905762, - -1.6392669677734375, - -1.6370861530303955, - -2.3863260746002197, - -2.378415107727051, - -2.3605010509490967, - -2.3330729007720947, - -2.2968785762786865, - -2.2529056072235107, - -2.2023534774780273, - -2.1466007232666016, - -2.0871684551239014, - -2.0256779193878174, - -1.96380615234375, - -1.9032409191131592, - -1.8456344604492188, - -1.792557954788208, - -1.7454591989517212, - -1.7056230306625366, - -1.6741359233856201, - -1.6518568992614746, - -1.6393935680389404, - -1.6370861530303955, - -2.3863260746002197, - -2.37884521484375, - -2.3613500595092773, - -2.334317207336426, - -2.2984843254089355, - -2.254828929901123, - -2.2045419216156006, - -2.1489946842193604, - -2.089702606201172, - -2.02828311920166, - -1.9664113521575928, - -1.9057751893997192, - -1.8480284214019775, - -1.7947463989257812, - -1.7473825216293335, - -1.707228660583496, - -1.6753802299499512, - -1.6527056694030762, - -1.6398239135742188, - -1.6370861530303955, - -2.3863260746002197, - -2.3795325756073, - -2.362705707550049, - -2.3363044261932373, - -2.301048994064331, - -2.2579009532928467, - -2.2080376148223877, - -2.1528186798095703, - -2.093750476837158, - -2.032444477081299, - -1.9705727100372314, - -1.909822940826416, - -1.851852297782898, - -1.7982420921325684, - -1.7504546642303467, - -1.7097933292388916, - -1.6773674488067627, - -1.6540615558624268, - -1.640511155128479, - -1.6370861530303955 - ] - }, - { - "alphahull": 0, - "color": "#FF97FF", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.34263110160827637, - -0.3325422406196594, - -0.3242712616920471, - -0.3180437684059143, - -0.31402960419654846, - -0.31233829259872437, - -0.31301596760749817, - -0.3160441517829895, - -0.3213402032852173, - -0.32875970005989075, - -0.33810022473335266, - -0.349107027053833, - -0.36147987842559814, - -0.37488120794296265, - -0.3889455497264862, - -0.40328919887542725, - -0.4175209403038025, - -0.4312525689601898, - -0.4441094696521759, - -0.4557409882545471, - -0.34263110160827637, - -0.32599937915802, - -0.31136399507522583, - -0.29912418127059937, - -0.2896137833595276, - -0.2830922603607178, - -0.2797374427318573, - -0.2796408534049988, - -0.2828052043914795, - -0.2891440689563751, - -0.2984846234321594, - -0.3105720281600952, - -0.3250766098499298, - -0.3416026830673218, - -0.3596994876861572, - -0.37887340784072876, - -0.39860138297080994, - -0.41834530234336853, - -0.4375666081905365, - -0.4557409882545471, - -0.34263110160827637, - -0.321342408657074, - -0.3021771013736725, - -0.28565794229507446, - -0.2722355127334595, - -0.26227596402168274, - -0.2560510039329529, - -0.2537303566932678, - -0.2553773522377014, - -0.2609471082687378, - -0.2702876329421997, - -0.2831442058086395, - -0.29916608333587646, - -0.31791624426841736, - -0.3388832211494446, - -0.36149510741233826, - -0.38513511419296265, - -0.4091583788394928, - -0.43290963768959045, - -0.4557409882545471, - -0.34263110160827637, - -0.31907597184181213, - -0.29770606756210327, - -0.27910423278808594, - -0.2637779712677002, - -0.2521452307701111, - -0.24452340602874756, - -0.2411203682422638, - -0.24202893674373627, - -0.2472243756055832, - -0.2565649151802063, - -0.2697957754135132, - -0.28655609488487244, - -0.30638864636421204, - -0.32875245809555054, - -0.3530375361442566, - -0.3785814344882965, - -0.4046873450279236, - -0.4306432008743286, - -0.4557409882545471, - -0.34263110160827637, - -0.3194456994533539, - -0.29843541979789734, - -0.2801733613014221, - -0.26515763998031616, - -0.25379782915115356, - -0.24640390276908875, - -0.24317744374275208, - -0.2442064732313156, - -0.24946297705173492, - -0.25880351662635803, - -0.27197331190109253, - -0.2886131703853607, - -0.3082691431045532, - -0.3304050862789154, - -0.35441720485687256, - -0.3796505331993103, - -0.40541672706604004, - -0.43101292848587036, - -0.4557409882545471, - -0.34263110160827637, - -0.32241150736808777, - -0.3042861223220825, - -0.2887493669986725, - -0.2762250304222107, - -0.2670547366142273, - -0.261488676071167, - -0.25967860221862793, - -0.2616739869117737, - -0.2674202620983124, - -0.2767608165740967, - -0.2894408106803894, - -0.3051143288612366, - -0.32335391640663147, - -0.34366199374198914, - -0.3654846251010895, - -0.38822656869888306, - -0.4112674295902252, - -0.43397873640060425, - -0.4557409882545471, - -0.34263110160827637, - -0.3276520073413849, - -0.314624160528183, - -0.3039029836654663, - -0.29578083753585815, - -0.2904793322086334, - -0.2881430685520172, - -0.2888357639312744, - -0.29253852367401123, - -0.29915034770965576, - -0.3084908723831177, - -0.32030534744262695, - -0.33427149057388306, - -0.3500083088874817, - -0.3670865595340729, - -0.38504043221473694, - -0.4033801555633545, - -0.4216054677963257, - -0.43921923637390137, - -0.4557409882545471, - -0.34263110160827637, - -0.3345993161201477, - -0.32832926511764526, - -0.3239920139312744, - -0.3217058777809143, - -0.3215331733226776, - -0.323478639125824, - -0.3274892270565033, - -0.33345550298690796, - -0.34121474623680115, - -0.35055527091026306, - -0.3612223267555237, - -0.37292495369911194, - -0.38534390926361084, - -0.39814040064811707, - -0.4109654724597931, - -0.423469215631485, - -0.43531057238578796, - -0.4461665451526642, - -0.4557409882545471, - -0.34263110160827637, - -0.34250056743621826, - -0.34391623735427856, - -0.3468395471572876, - -0.3511907458305359, - -0.35685110092163086, - -0.363666296005249, - -0.3714503347873688, - -0.37999093532562256, - -0.38905513286590576, - -0.3983956575393677, - -0.4077577590942383, - -0.4168860614299774, - -0.4255315363407135, - -0.4334583580493927, - -0.4404503405094147, - -0.44631674885749817, - -0.45089754462242126, - -0.45406779646873474, - -0.4557409882545471, - -0.34263110160827637, - -0.35049954056739807, - -0.35969603061676025, - -0.3699697256088257, - -0.3810403347015381, - -0.3926059305667877, - -0.40435099601745605, - -0.41595518589019775, - -0.4271019697189331, - -0.43748727440834045, - -0.44682779908180237, - -0.45486879348754883, - -0.4613909125328064, - -0.4662162661552429, - -0.46921318769454956, - -0.47029992938041687, - -0.46944689750671387, - -0.46667733788490295, - -0.46206676959991455, - -0.4557409882545471, - -0.34263110160827637, - -0.357729434967041, - -0.37395861744880676, - -0.3908759653568268, - -0.4080199599266052, - -0.42492300271987915, - -0.44112399220466614, - -0.45618101954460144, - -0.4696834087371826, - -0.48126277327537537, - -0.49060332775115967, - -0.49745023250579834, - -0.5016167759895325, - -0.5029892325401306, - -0.5015302300453186, - -0.497279554605484, - -0.49035313725471497, - -0.48093992471694946, - -0.4692966938018799, - -0.4557409882545471, - -0.34263110160827637, - -0.36340680718421936, - -0.3851584792137146, - -0.40729278326034546, - -0.4292059540748596, - -0.4503002464771271, - -0.47000032663345337, - -0.4877687096595764, - -0.5031208395957947, - -0.5156378746032715, - -0.5249783992767334, - -0.5308877229690552, - -0.5332044363021851, - -0.5318655967712402, - -0.5269075036048889, - -0.5184655785560608, - -0.5067699551582336, - -0.4921397566795349, - -0.47497403621673584, - -0.4557409882545471, - -0.34263110160827637, - -0.36691635847091675, - -0.3920818567276001, - -0.41744115948677063, - -0.44230249524116516, - -0.4659877121448517, - -0.48785078525543213, - -0.5072953104972839, - -0.5237908959388733, - -0.536887526512146, - -0.5462281107902527, - -0.551557719707489, - -0.5527310371398926, - -0.549716055393219, - -0.5425949692726135, - -0.531562089920044, - -0.5169183611869812, - -0.4990631639957428, - -0.4784835875034332, - -0.4557409882545471, - -0.34263110160827637, - -0.3678778409957886, - -0.3939785659313202, - -0.42022135853767395, - -0.4458903670310974, - -0.4702853858470917, - -0.49274101853370667, - -0.5126447081565857, - -0.5294535160064697, - -0.5427089929580688, - -0.5520495176315308, - -0.5572203993797302, - -0.5580804347991943, - -0.5546063184738159, - -0.5468926429748535, - -0.5351499915122986, - -0.5196985602378845, - -0.5009598731994629, - -0.47944504022598267, - -0.4557409882545471, - -0.34263110160827637, - -0.3661870062351227, - -0.39064306020736694, - -0.4153321385383606, - -0.4395807683467865, - -0.46272754669189453, - -0.48414111137390137, - -0.5032373070716858, - -0.5194952487945557, - -0.5324714779853821, - -0.541812002658844, - -0.5472620725631714, - -0.5486730337142944, - -0.5460063815116882, - -0.5393348336219788, - -0.5288404226303101, - -0.5148093104362488, - -0.49762433767318726, - -0.47775423526763916, - -0.4557409882545471, - -0.34263110160827637, - -0.362027108669281, - -0.38243675231933594, - -0.40330326557159424, - -0.4240574836730957, - -0.4441332519054413, - -0.46298298239707947, - -0.48009249567985535, - -0.4949950873851776, - -0.5072842836380005, - -0.5166248083114624, - -0.5227619409561157, - -0.5255282521247864, - -0.524848222732544, - -0.5207405090332031, - -0.5133170485496521, - -0.5027804374694824, - -0.48941805958747864, - -0.4735943675041199, - -0.4557409882545471, - -0.34263110160827637, - -0.3558489680290222, - -0.370248943567276, - -0.3854382634162903, - -0.40100258588790894, - -0.41651737689971924, - -0.43155938386917114, - -0.44571834802627563, - -0.4586080312728882, - -0.46987682580947876, - -0.47921738028526306, - -0.4863748848438263, - -0.4911540746688843, - -0.493424654006958, - -0.4931246340274811, - -0.4902622103691101, - -0.48491546511650085, - -0.4772302508354187, - -0.4674161970615387, - -0.4557409882545471, - -0.34263110160827637, - -0.3483220338821411, - -0.3554003834724426, - -0.3636731207370758, - -0.37291455268859863, - -0.3828725814819336, - -0.3932756185531616, - -0.4038398563861847, - -0.41427716612815857, - -0.4243028461933136, - -0.4336433708667755, - -0.4420440196990967, - -0.44927558302879333, - -0.4551408588886261, - -0.45947983860969543, - -0.4621741473674774, - -0.4631503224372864, - -0.4623816907405853, - -0.4598892629146576, - -0.4557409882545471, - -0.34263110160827637, - -0.34026196599006653, - -0.3395001292228699, - -0.3403663635253906, - -0.34283706545829773, - -0.34684479236602783, - -0.35228028893470764, - -0.3589952290058136, - -0.3668064773082733, - -0.37550094723701477, - -0.3848415017127991, - -0.39457330107688904, - -0.40443095564842224, - -0.4141455292701721, - -0.4234520494937897, - -0.4320966601371765, - -0.4398435652256012, - -0.4464814364910126, - -0.451829195022583, - -0.4557409882545471, - -0.34263110160827637, - -0.3325422406196594, - -0.3242712616920471, - -0.3180437386035919, - -0.3140295743942261, - -0.31233829259872437, - -0.3130159378051758, - -0.3160441219806671, - -0.3213401734828949, - -0.32875967025756836, - -0.33810022473335266, - -0.349107027053833, - -0.36147984862327576, - -0.37488120794296265, - -0.3889455199241638, - -0.40328919887542725, - -0.4175209403038025, - -0.43125253915786743, - -0.4441094696521759, - -0.4557409882545471 - ], - "y": [ - 0.114210344851017, - 0.13672886788845062, - 0.15914736688137054, - 0.18085432052612305, - 0.2012576311826706, - 0.21980074048042297, - 0.23597782850265503, - 0.24934767186641693, - 0.25954553484916687, - 0.2662932276725769, - 0.2694067358970642, - 0.26880115270614624, - 0.264492928981781, - 0.25659963488578796, - 0.24533653259277344, - 0.23101088404655457, - 0.21401342749595642, - 0.19480782747268677, - 0.1739179790019989, - 0.15191368758678436, - 0.114210344851017, - 0.13201482594013214, - 0.1498478800058365, - 0.16722305119037628, - 0.1836664080619812, - 0.19872939586639404, - 0.21200115978717804, - 0.22311967611312866, - 0.23178163170814514, - 0.2377507984638214, - 0.24086430668830872, - 0.2410372644662857, - 0.23826493322849274, - 0.23262295126914978, - 0.2242651879787445, - 0.21341964602470398, - 0.20038214325904846, - 0.1855083554983139, - 0.1692039519548416, - 0.15191368758678436, - 0.114210344851017, - 0.12539926171302795, - 0.1367972046136856, - 0.14809326827526093, - 0.15897931158542633, - 0.16915839910507202, - 0.17835286259651184, - 0.18631191551685333, - 0.19281846284866333, - 0.19769498705863953, - 0.20080851018428802, - 0.2020740807056427, - 0.2014571726322174, - 0.1989746391773224, - 0.1946941763162613, - 0.18873253464698792, - 0.1812523603439331, - 0.17245768010616302, - 0.16258838772773743, - 0.15191368758678436, - 0.1142103523015976, - 0.11759907007217407, - 0.1214095875620842, - 0.1255379468202591, - 0.12987154722213745, - 0.13429218530654907, - 0.13867925107479095, - 0.1429131031036377, - 0.14687824249267578, - 0.15046650171279907, - 0.15358002483844757, - 0.15613386034965515, - 0.15805836021900177, - 0.1593010276556015, - 0.15982796251773834, - 0.15962478518486023, - 0.15869705379009247, - 0.15707005560398102, - 0.15478819608688354, - 0.15191368758678436, - 0.1142103523015976, - 0.1094595193862915, - 0.1053525060415268, - 0.10200133919715881, - 0.09949742257595062, - 0.09790905565023422, - 0.09727957844734192, - 0.09762614965438843, - 0.09893931448459625, - 0.10118327289819717, - 0.10429678857326508, - 0.10819494724273682, - 0.1127714142203331, - 0.11790135502815247, - 0.12344484031200409, - 0.1292506605386734, - 0.135160431265831, - 0.1410129815340042, - 0.14664864540100098, - 0.15191368758678436, - 0.1142103523015976, - 0.10186265408992767, - 0.09036600589752197, - 0.08003398776054382, - 0.07114842534065247, - 0.06395171582698822, - 0.05864015221595764, - 0.05535862594842911, - 0.05419663339853287, - 0.05518589913845062, - 0.058299414813518524, - 0.06345225870609283, - 0.07050388306379318, - 0.079261913895607, - 0.0894874855875969, - 0.10090164840221405, - 0.113193079829216, - 0.1260264813899994, - 0.13905178010463715, - 0.15191370248794556, - 0.1142103523015976, - 0.09563171863555908, - 0.07807408273220062, - 0.062016382813453674, - 0.0478966161608696, - 0.03609994798898697, - 0.02694813907146454, - 0.02069084346294403, - 0.017498739063739777, - 0.01745891571044922, - 0.02057243138551712, - 0.026754364371299744, - 0.035836100578308105, - 0.04756990820169449, - 0.061635710299015045, - 0.07764984667301178, - 0.09517548978328705, - 0.11373455822467804, - 0.13282084465026855, - 0.15191370248794556, - 0.1142103523015976, - 0.09144192934036255, - 0.06980878859758377, - 0.04990103095769882, - 0.0322616845369339, - 0.01737191528081894, - 0.005637869238853455, - -0.002620398998260498, - -0.007177576422691345, - -0.007909372448921204, - -0.004795864224433899, - 0.002078041434288025, - 0.012524865567684174, - 0.026259645819664, - 0.042907677590847015, - 0.06201490759849548, - 0.0830601304769516, - 0.10546925663948059, - 0.12863104045391083, - 0.15191370248794556, - 0.1142103523015976, - 0.08974730968475342, - 0.06646577268838882, - 0.04500080645084381, - 0.025937914848327637, - 0.009797118604183197, - -0.0029813647270202637, - -0.01204894483089447, - -0.01715824007987976, - -0.018169939517974854, - -0.015056431293487549, - -0.00790262222290039, - 0.0030963271856307983, - 0.01764039695262909, - 0.03533286601305008, - 0.055691152811050415, - 0.07815991342067719, - 0.10212624073028564, - 0.1269364207983017, - 0.15191370248794556, - 0.1142103523015976, - 0.09073150157928467, - 0.06840731203556061, - 0.047846727073192596, - 0.02961060404777527, - 0.01419636607170105, - 0.0020244717597961426, - -0.006573081016540527, - -0.01136171817779541, - -0.012210875749588013, - -0.009097367525100708, - -0.00210610032081604, - 0.008572183549404144, - 0.022646240890026093, - 0.039732128381729126, - 0.05936383455991745, - 0.08100582659244537, - 0.10406778007745743, - 0.12792061269283295, - 0.15191370248794556, - 0.1142103523015976, - 0.09428784996271133, - 0.07542300224304199, - 0.058130405843257904, - 0.042881742119789124, - 0.03009296953678131, - 0.020112909376621246, - 0.013213813304901123, - 0.009583860635757446, - 0.009322069585323334, - 0.012435585260391235, - 0.018839485943317413, - 0.028359070420265198, - 0.04073468595743179, - 0.05562873184680939, - 0.07263496518135071, - 0.09128950536251068, - 0.11108347773551941, - 0.1314769685268402, - 0.15191370248794556, - 0.1142103523015976, - 0.10003097355365753, - 0.08675260841846466, - 0.07473742961883545, - 0.06431319564580917, - 0.05576426535844803, - 0.04932379722595215, - 0.04516749083995819, - 0.043408721685409546, - 0.0440954715013504, - 0.047208987176418304, - 0.05266434699296951, - 0.060312747955322266, - 0.0699455663561821, - 0.0813000276684761, - 0.09406642615795135, - 0.10789653658866882, - 0.12241307646036148, - 0.137220099568367, - 0.15191370248794556, - 0.1142103523015976, - 0.10733851790428162, - 0.10116836428642273, - 0.09586817026138306, - 0.0915825366973877, - 0.08842836320400238, - 0.0864916741847992, - 0.08582529425621033, - 0.08644741773605347, - 0.08834105730056763, - 0.09145458042621613, - 0.09570303559303284, - 0.1009705513715744, - 0.10711344331502914, - 0.11396413296461105, - 0.12133577466011047, - 0.12902727723121643, - 0.13682883977890015, - 0.1445276439189911, - 0.15191368758678436, - 0.1142103523015976, - 0.11541859805583954, - 0.11710812151432037, - 0.11923281848430634, - 0.12173474580049515, - 0.1245456412434578, - 0.12758885324001312, - 0.130781352519989, - 0.13403606414794922, - 0.1372642070055008, - 0.1403777152299881, - 0.1432916820049286, - 0.1459266096353531, - 0.14821062982082367, - 0.15008142590522766, - 0.15148797631263733, - 0.1523919254541397, - 0.1527685970067978, - 0.152607724070549, - 0.15191368758678436, - 0.114210344851017, - 0.12339559942483902, - 0.13284452259540558, - 0.14229938387870789, - 0.15150228142738342, - 0.16020216047763824, - 0.16816173493862152, - 0.1751638799905777, - 0.18101760745048523, - 0.18556320667266846, - 0.18867672979831696, - 0.1902732253074646, - 0.19030913710594177, - 0.18878351151943207, - 0.18573793768882751, - 0.1812555193901062, - 0.17545849084854126, - 0.168504998087883, - 0.1605847179889679, - 0.15191368758678436, - 0.114210344851017, - 0.13040509819984436, - 0.146672323346138, - 0.16256830096244812, - 0.17765942215919495, - 0.19153402745723724, - 0.20381367206573486, - 0.2141634225845337, - 0.2223009169101715, - 0.22800420224666595, - 0.23111772537231445, - 0.23155653476715088, - 0.22930866479873657, - 0.2244354635477066, - 0.2170698046684265, - 0.20741266012191772, - 0.1957273930311203, - 0.18233279883861542, - 0.16759422421455383, - 0.15191368758678436, - 0.114210344851017, - 0.13568751513957977, - 0.15709306299686432, - 0.1778431087732315, - 0.19737166166305542, - 0.21514597535133362, - 0.23068128526210785, - 0.24355380237102509, - 0.2534123659133911, - 0.25998809933662415, - 0.26310160756111145, - 0.26266801357269287, - 0.25869905948638916, - 0.2513030767440796, - 0.24068176746368408, - 0.2271248996257782, - 0.21100221574306488, - 0.19275353848934174, - 0.17287662625312805, - 0.15191368758678436, - 0.114210344851017, - 0.1386703997850418, - 0.16297748684883118, - 0.18646854162216187, - 0.20850282907485962, - 0.228479266166687, - 0.24585296213626862, - 0.2601500153541565, - 0.27098047733306885, - 0.27804887294769287, - 0.2811623811721802, - 0.2802361249923706, - 0.27529531717300415, - 0.26647475361824036, - 0.2540150582790375, - 0.2382560670375824, - 0.21962764859199524, - 0.1986379623413086, - 0.17585952579975128, - 0.15191368758678436, - 0.114210344851017, - 0.13903053104877472, - 0.16368789970874786, - 0.18750989437103271, - 0.20984667539596558, - 0.2300889790058136, - 0.24768462777137756, - 0.262153685092926, - 0.27310147881507874, - 0.2802293300628662, - 0.2833428382873535, - 0.2823570966720581, - 0.2772989869117737, - 0.2683064341545105, - 0.25562477111816406, - 0.23959991335868835, - 0.2206690013408661, - 0.19934837520122528, - 0.176219642162323, - 0.15191368758678436, - 0.114210344851017, - 0.13672885298728943, - 0.15914735198020935, - 0.18085430562496185, - 0.2012576162815094, - 0.21980072557926178, - 0.23597782850265503, - 0.24934765696525574, - 0.2595455050468445, - 0.2662932276725769, - 0.2694067358970642, - 0.26880115270614624, - 0.264492928981781, - 0.2565996050834656, - 0.24533651769161224, - 0.23101086914539337, - 0.21401341259479523, - 0.19480782747268677, - 0.1739179790019989, - 0.15191368758678436 - ], - "z": [ - -2.284207344055176, - -2.289865493774414, - -2.3056538105010986, - -2.331141710281372, - -2.365633726119995, - -2.408189058303833, - -2.4576470851898193, - -2.5126585960388184, - -2.571722984313965, - -2.6332292556762695, - -2.6954994201660156, - -2.7568352222442627, - -2.815563440322876, - -2.870082139968872, - -2.9189040660858154, - -2.960697650909424, - -2.9943230152130127, - -3.01886248588562, - -3.033647060394287, - -3.038273334503174, - -2.284207344055176, - -2.2910826206207275, - -2.3080549240112305, - -2.3346612453460693, - -2.37017560005188, - -2.4136295318603516, - -2.4638376235961914, - -2.51943039894104, - -2.5788915157318115, - -2.6405985355377197, - -2.702868938446045, - -2.7640037536621094, - -2.8223352432250977, - -2.876272678375244, - -2.924344539642334, - -2.9652395248413086, - -2.997842311859131, - -3.021263599395752, - -3.0348641872406006, - -3.038273334503174, - -2.284207344055176, - -2.292111873626709, - -2.3100855350494385, - -2.3376376628875732, - -2.374016761779785, - -2.4182305335998535, - -2.4690730571746826, - -2.5251574516296387, - -2.584953784942627, - -2.6468310356140137, - -2.7091012001037598, - -2.770066022872925, - -2.8280622959136963, - -2.8815081119537354, - -2.928945541381836, - -2.969080686569214, - -3.000818967819214, - -3.02329421043396, - -3.035893440246582, - -3.038273334503174, - -2.284207344055176, - -2.292841911315918, - -2.311525583267212, - -2.3397483825683594, - -2.3767406940460205, - -2.4214935302734375, - -2.4727859497070312, - -2.529218912124634, - -2.5892529487609863, - -2.6512508392333984, - -2.7135210037231445, - -2.774365186691284, - -2.8321237564086914, - -2.885221004486084, - -2.93220853805542, - -2.9718048572540283, - -3.0029296875, - -3.0247342586517334, - -3.036623477935791, - -3.038273334503174, - -2.284207344055176, - -2.2931933403015137, - -2.3122189044952393, - -2.3407649993896484, - -2.3780524730682373, - -2.423064708709717, - -2.474573850631714, - -2.531174659729004, - -2.5913233757019043, - -2.653379201889038, - -2.715649366378784, - -2.776435613632202, - -2.8340795040130615, - -2.8870089054107666, - -2.933779716491699, - -2.973116397857666, - -3.00394606590271, - -3.0254275798797607, - -3.0369749069213867, - -3.038273334503174, - -2.284207344055176, - -2.293128490447998, - -2.3120906352996826, - -2.3405768871307373, - -2.377809762954712, - -2.422774076461792, - -2.4742431640625, - -2.5308127403259277, - -2.590940475463867, - -2.6529855728149414, - -2.7152557373046875, - -2.776052713394165, - -2.8337178230285645, - -2.8866782188415527, - -2.9334890842437744, - -2.9728739261627197, - -3.003758192062378, - -3.025299310684204, - -3.036910057067871, - -3.038273334503174, - -2.284207344055176, - -2.292654037475586, - -2.31115460395813, - -2.339204788208008, - -2.3760390281677246, - -2.4206528663635254, - -2.471829414367676, - -2.528172731399536, - -2.5881454944610596, - -2.6501123905181885, - -2.7123825550079346, - -2.7732577323913574, - -2.8310775756835938, - -2.8842644691467285, - -2.931367874145508, - -2.9711031913757324, - -3.0023860931396484, - -3.0243632793426514, - -3.036435604095459, - -3.038273334503174, - -2.284207344055176, - -2.291821241378784, - -2.309512138366699, - -2.336796998977661, - -2.372931957244873, - -2.416931390762329, - -2.467594623565674, - -2.5235402584075928, - -2.5832419395446777, - -2.645071029663086, - -2.707341432571411, - -2.7683541774749756, - -2.8264451026916504, - -2.8800296783447266, - -2.9276463985443115, - -2.967996120452881, - -2.9999783039093018, - -3.0227208137512207, - -3.0356028079986572, - -3.038273334503174, - -2.284207344055176, - -2.2907209396362305, - -2.3073410987854004, - -2.3336150646209717, - -2.3688254356384277, - -2.4120123386383057, - -2.4619975090026855, - -2.5174174308776855, - -2.5767605304718018, - -2.6384079456329346, - -2.7006783485412598, - -2.7618727684020996, - -2.820322275161743, - -2.8744325637817383, - -2.922727346420288, - -2.9638895988464355, - -2.996796131134033, - -3.020549774169922, - -3.0345025062561035, - -3.038273334503174, - -2.284207344055176, - -2.2894718647003174, - -2.3048770427703857, - -2.330003261566162, - -2.364164352416992, - -2.4064292907714844, - -2.4556446075439453, - -2.510468006134033, - -2.569404125213623, - -2.630845308303833, - -2.693115472793579, - -2.754516363143921, - -2.813372850418091, - -2.868079662322998, - -2.917144298553467, - -2.959228515625, - -2.9931845664978027, - -3.0180857181549072, - -3.0332534313201904, - -3.038273334503174, - -2.284207344055176, - -2.2882094383239746, - -2.302386999130249, - -2.326353073120117, - -2.3594539165496826, - -2.400786876678467, - -2.4492242336273193, - -2.5034446716308594, - -2.561969518661499, - -2.623202323913574, - -2.6854724884033203, - -2.747081756591797, - -2.806349515914917, - -2.861659049987793, - -2.911501884460449, - -2.9545178413391113, - -2.989534378051758, - -3.0155956745147705, - -3.0319910049438477, - -3.038273334503174, - -2.284207344055176, - -2.2870707511901855, - -2.300140380859375, - -2.3230600357055664, - -2.3552045822143555, - -2.3956966400146484, - -2.443432092666626, - -2.4971089363098145, - -2.555262804031372, - -2.616307258605957, - -2.6785776615142822, - -2.74037504196167, - -2.800013780593872, - -2.8558671474456787, - -2.906411647796631, - -2.950268507003784, - -2.986241340637207, - -3.0133490562438965, - -3.0308523178100586, - -3.038273334503174, - -2.284207344055176, - -2.2861788272857666, - -2.2983813285827637, - -2.320481300354004, - -2.3518764972686768, - -2.3917102813720703, - -2.4388961791992188, - -2.4921469688415527, - -2.5500102043151855, - -2.610907554626465, - -2.67317795753479, - -2.7351224422454834, - -2.7950518131256104, - -2.8513312339782715, - -2.9024252891540527, - -2.9469404220581055, - -2.9836626052856445, - -3.011590003967285, - -3.0299603939056396, - -3.038273334503174, - -2.284207344055176, - -2.285630702972412, - -2.29729962348938, - -2.3188960552215576, - -2.3498306274414062, - -2.3892598152160645, - -2.436107873916626, - -2.4890968799591064, - -2.546781539916992, - -2.607588291168213, - -2.669858455657959, - -2.73189377784729, - -2.792001724243164, - -2.8485426902770996, - -2.899974822998047, - -2.944894790649414, - -2.9820773601531982, - -3.0105082988739014, - -3.029412269592285, - -3.038273334503174, - -2.284207344055176, - -2.2854855060577393, - -2.297013282775879, - -2.3184762001037598, - -2.3492887020111084, - -2.388610601425171, - -2.4353690147399902, - -2.4882888793945312, - -2.545926094055176, - -2.6067090034484863, - -2.6689791679382324, - -2.7310383319854736, - -2.791193723678589, - -2.847804069519043, - -2.8993256092071533, - -2.944352865219116, - -2.9816575050354004, - -3.0102219581604004, - -3.0292670726776123, - -3.038273334503174, - -2.284207344055176, - -2.2857589721679688, - -2.2975528240203857, - -2.3192670345306396, - -2.350309371948242, - -2.3898332118988037, - -2.436760187149048, - -2.4898104667663574, - -2.547537088394165, - -2.608365058898926, - -2.670635223388672, - -2.732649326324463, - -2.792715311050415, - -2.8491952419281006, - -2.900548219680786, - -2.94537353515625, - -2.9824483394622803, - -3.0107614994049072, - -3.029540538787842, - -3.038273334503174, - -2.284207344055176, - -2.286421537399292, - -2.2988598346710205, - -2.3211829662323, - -2.3527820110321045, - -2.3927950859069824, - -2.4401304721832275, - -2.493497133255005, - -2.5514395236968994, - -2.6123769283294678, - -2.674647092819214, - -2.7365517616271973, - -2.7964019775390625, - -2.8525655269622803, - -2.903510093688965, - -2.947845935821533, - -2.9843642711639404, - -3.012068510055542, - -3.030203104019165, - -3.038273334503174, - -2.284207344055176, - -2.2874014377593994, - -2.300792932510376, - -2.324016571044922, - -2.356438636779785, - -2.3971750736236572, - -2.4451143741607666, - -2.4989490509033203, - -2.557210683822632, - -2.61830997467041, - -2.6805801391601562, - -2.7423229217529297, - -2.801853895187378, - -2.8575494289398193, - -2.9078900814056396, - -2.951502799987793, - -2.9871978759765625, - -3.0140016078948975, - -3.0311830043792725, - -3.038273334503174, - -2.284207344055176, - -2.2885923385620117, - -2.303142547607422, - -2.327460527420044, - -2.3608832359313965, - -2.402498722076416, - -2.451172113418579, - -2.505575656890869, - -2.564225196838379, - -2.625521183013916, - -2.687791585922241, - -2.7493374347686768, - -2.8084805011749268, - -2.863607168197632, - -2.9132137298583984, - -2.955947160720825, - -2.9906418323516846, - -3.0163512229919434, - -3.0323739051818848, - -3.038273334503174, - -2.284207344055176, - -2.289865493774414, - -2.3056538105010986, - -2.331141710281372, - -2.365633726119995, - -2.408189058303833, - -2.4576470851898193, - -2.5126585960388184, - -2.571722984313965, - -2.6332292556762695, - -2.6954994201660156, - -2.7568352222442627, - -2.815563440322876, - -2.870082139968872, - -2.9189040660858154, - -2.960697650909424, - -2.9943230152130127, - -3.01886248588562, - -3.033647060394287, - -3.038273334503174 - ] - }, - { - "alphahull": 0, - "color": "#FF6692", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.08779112249612808, - -0.10047627985477448, - -0.11230871081352234, - -0.12296565622091293, - -0.13215643167495728, - -0.13963031768798828, - -0.14518344402313232, - -0.14866438508033752, - -0.14997811615467072, - -0.14908884465694427, - -0.1460208296775818, - -0.1408577561378479, - -0.13374044001102448, - -0.12486303597688675, - -0.11446770280599594, - -0.10283799469470978, - -0.09029112756252289, - -0.07716935873031616, - -0.06383062154054642, - -0.05063875392079353, - -0.08779112249612808, - -0.09956943988800049, - -0.11051975935697556, - -0.12034338712692261, - -0.12877237796783447, - -0.1355767846107483, - -0.14057102799415588, - -0.1436188519001007, - -0.14463713765144348, - -0.14359809458255768, - -0.1405300796031952, - -0.13551676273345947, - -0.12869492173194885, - -0.12025061249732971, - -0.11041417717933655, - -0.09945394843816757, - -0.08766885846853256, - -0.07538040727376938, - -0.06292378157377243, - -0.05063875392079353, - -0.08779112249612808, - -0.09735877066850662, - -0.10615873336791992, - -0.11395096778869629, - -0.12052291631698608, - -0.12569531798362732, - -0.12932708859443665, - -0.13131915032863617, - -0.13161717355251312, - -0.13021302223205566, - -0.12714499235153198, - -0.12249679863452911, - -0.11639520525932312, - -0.10900667309761047, - -0.10053271055221558, - -0.09120448678731918, - -0.08127643913030624, - -0.07101938873529434, - -0.06071311607956886, - -0.05063875392079353, - -0.08779112249612808, - -0.09408385306596756, - -0.09969822317361832, - -0.10448109358549118, - -0.10830199718475342, - -0.11105670034885406, - -0.11267007887363434, - -0.11309809982776642, - -0.11232911050319672, - -0.11038407683372498, - -0.10731606185436249, - -0.1032087504863739, - -0.09817416965961456, - -0.09234965592622757, - -0.08589409291744232, - -0.07898356020450592, - -0.07180656492710114, - -0.06455887854099274, - -0.0574381947517395, - -0.05063875764608383, - -0.08779112249612808, - -0.09009956568479538, - -0.09183832257986069, - -0.09295997768640518, - -0.0934339314699173, - -0.09324724972248077, - -0.0924050360918045, - -0.09093025326728821, - -0.08886313438415527, - -0.08626006543636322, - -0.08319204300642014, - -0.07974276691675186, - -0.07600632309913635, - -0.07208462059497833, - -0.06808464229106903, - -0.0641154944896698, - -0.06028544902801514, - -0.05669897422194481, - -0.05345390737056732, - -0.05063875764608383, - -0.08779112249612808, - -0.08583766222000122, - -0.08343077450990677, - -0.08063612133264542, - -0.0775299221277237, - -0.07419691234827042, - -0.07072801142930984, - -0.06721783429384232, - -0.0637621358036995, - -0.06045517325401306, - -0.057387158274650574, - -0.05464176833629608, - -0.05229390040040016, - -0.050407592207193375, - -0.049034301191568375, - -0.048211485147476196, - -0.04796158894896507, - -0.04829142987728119, - -0.04919200390577316, - -0.05063875764608383, - -0.08779112249612808, - -0.0817599967122078, - -0.07538667321205139, - -0.0688449963927269, - -0.06231341138482094, - -0.05597008392214775, - -0.0499880388379097, - -0.04453045502305031, - -0.039746202528476715, - -0.03576578199863434, - -0.03269776329398155, - -0.030625835061073303, - -0.029606517404317856, - -0.029667619615793228, - -0.030807465314865112, - -0.03299497067928314, - -0.036170464009046555, - -0.040247321128845215, - -0.045114338397979736, - -0.05063875764608383, - -0.08779112994670868, - -0.07830844074487686, - -0.06857770681381226, - -0.05886435508728027, - -0.04943333566188812, - -0.04054191708564758, - -0.032432615756988525, - -0.025326643139123917, - -0.01941782236099243, - -0.014867350459098816, - -0.01179933175444603, - -0.01029745489358902, - -0.010402705520391464, - -0.012112196534872055, - -0.015379298478364944, - -0.020114894956350327, - -0.02618982270359993, - -0.03343835473060608, - -0.041662782430648804, - -0.05063875764608383, - -0.08779112994670868, - -0.0758570209145546, - -0.06374174356460571, - -0.05177575349807739, - -0.04028546065092087, - -0.02958429977297783, - -0.019964151084423065, - -0.01168743148446083, - -0.004979915916919708, - -0.000024557113647460938, - 0.003043457865715027, - 0.004140451550483704, - 0.0032365024089813232, - 0.00035627931356430054, - -0.0044216737151145935, - -0.01096702367067337, - -0.019101224839687347, - -0.028602391481399536, - -0.03921136632561684, - -0.05063875764608383, - -0.08779112994670868, - -0.07467139512300491, - -0.061402831226587296, - -0.048347361385822296, - -0.03586110100150108, - -0.02428465336561203, - -0.013933781534433365, - -0.005090825259685516, - 0.0020029768347740173, - 0.007154151797294617, - 0.010222166776657104, - 0.01112334430217743, - 0.009833112359046936, - 0.0063866376876831055, - 0.000877968966960907, - -0.006542660295963287, - -0.015672829002141953, - -0.026263482868671417, - -0.038025740534067154, - -0.05063875764608383, - -0.08779112994670868, - -0.07488004118204117, - -0.061814434826374054, - -0.0489506870508194, - -0.03663969784975052, - -0.02521728351712227, - -0.01499500498175621, - -0.006251692771911621, - 0.0007741302251815796, - 0.005890846252441406, - 0.008958861231803894, - 0.009894497692584991, - 0.008672244846820831, - 0.00532541424036026, - -0.0000546574592590332, - -0.007321257144212723, - -0.016276158392429352, - -0.026675082743167877, - -0.03823438659310341, - -0.05063875764608383, - -0.08779112994670868, - -0.0764603540301323, - -0.06493193656206131, - -0.053520359098911285, - -0.04253687709569931, - -0.03228112310171127, - -0.023032814264297485, - -0.015044230967760086, - -0.008533280342817307, - -0.003677569329738617, - -0.0006095543503761292, - 0.0005870833992958069, - -0.00012029707431793213, - -0.0027123838663101196, - -0.007118497043848038, - -0.013218440115451813, - -0.02084583044052124, - -0.02979258820414543, - -0.039814695715904236, - -0.05063875764608383, - -0.08779112994670868, - -0.0792410671710968, - -0.07041752338409424, - -0.06156117469072342, - -0.052913598716259, - -0.044710688292980194, - -0.037176188081502914, - -0.030515611171722412, - -0.02491065487265587, - -0.020514216274023056, - -0.01744619756937027, - -0.015790287405252457, - -0.01559167355298996, - -0.016855765134096146, - -0.019548065960407257, - -0.023595161736011505, - -0.028886642307043076, - -0.03527817130088806, - -0.042595408856868744, - -0.05063875764608383, - -0.08779112249612808, - -0.0829208642244339, - -0.07767674326896667, - -0.07220180332660675, - -0.06664539128541946, - -0.06115906685590744, - -0.05589248612523079, - -0.0509893074631691, - -0.046583279967308044, - -0.04279458522796631, - -0.03972656652331352, - -0.03746291249990463, - -0.036065373569726944, - -0.03557206690311432, - -0.0359964482486248, - -0.03732694685459137, - -0.03952726721763611, - -0.0425373911857605, - -0.04627520591020584, - -0.05063875764608383, - -0.08779112249612808, - -0.08710096776485443, - -0.08592292666435242, - -0.08428913354873657, - -0.0822441577911377, - -0.07984378188848495, - -0.07715347409248352, - -0.07424662262201309, - -0.07120252400636673, - -0.06810420751571655, - -0.06503619253635406, - -0.06208215653896332, - -0.05932268872857094, - -0.05683305487036705, - -0.054681167006492615, - -0.0529257208108902, - -0.05161460489034653, - -0.05078357458114624, - -0.05045530945062637, - -0.05063875764608383, - -0.08779112249612808, - -0.09132840484380722, - -0.0942624881863594, - -0.09651333838701248, - -0.0980195626616478, - -0.09874007105827332, - -0.09865520894527435, - -0.09776729345321655, - -0.09610054641962051, - -0.09370043128728867, - -0.09063241630792618, - -0.0869801789522171, - -0.0828433632850647, - -0.07833479344844818, - -0.07357746362686157, - -0.0687011331319809, - -0.06383880972862244, - -0.05912313982844353, - -0.05468274652957916, - -0.05063875764608383, - -0.08779112249612808, - -0.0951450765132904, - -0.10179172456264496, - -0.1075497567653656, - -0.11226211488246918, - -0.11580026149749756, - -0.1180676817893982, - -0.11900253593921661, - -0.11857930570840836, - -0.11680953949689865, - -0.11374151706695557, - -0.10945893824100494, - -0.10407859832048416, - -0.09774726629257202, - -0.09063766151666641, - -0.08294368535280228, - -0.07487522065639496, - -0.06665237247943878, - -0.05849941819906235, - -0.05063875392079353, - -0.08779112249612808, - -0.09813737124204636, - -0.10769470036029816, - -0.11620239168405533, - -0.12342838943004608, - -0.1291755884885788, - -0.1332872211933136, - -0.1356511265039444, - -0.1362028270959854, - -0.13492725789546967, - -0.13185924291610718, - -0.1270824521780014, - -0.12072718143463135, - -0.11296680569648743, - -0.10401298105716705, - -0.09410995990037918, - -0.08352786302566528, - -0.07255534827709198, - -0.0614917166531086, - -0.05063875392079353, - -0.08779112249612808, - -0.09998103976249695, - -0.11133173853158951, - -0.1215335950255394, - -0.1303083449602127, - -0.13741661608219147, - -0.14266452193260193, - -0.14590893685817719, - -0.1470613181591034, - -0.14609026908874512, - -0.14302223920822144, - -0.13794095814228058, - -0.13098499178886414, - -0.12234411388635635, - -0.11225400865077972, - -0.10098990797996521, - -0.08885906636714935, - -0.07619238644838333, - -0.06333538144826889, - -0.05063875392079353, - -0.08779112249612808, - -0.10047627985477448, - -0.11230871081352234, - -0.12296565622091293, - -0.13215643167495728, - -0.13963031768798828, - -0.14518344402313232, - -0.14866438508033752, - -0.14997811615467072, - -0.14908884465694427, - -0.1460208296775818, - -0.1408577561378479, - -0.13374044001102448, - -0.12486303597688675, - -0.11446770280599594, - -0.10283799469470978, - -0.09029112756252289, - -0.07716935873031616, - -0.06383062154054642, - -0.05063875392079353 - ], - "y": [ - 0.08779114484786987, - 0.08813934028148651, - 0.08797132968902588, - 0.08729168772697449, - 0.08611895889043808, - 0.08448513597249985, - 0.08243478089570999, - 0.08002382516860962, - 0.07731802761554718, - 0.0743912011384964, - 0.07132317870855331, - 0.06819765269756317, - 0.06509987264871597, - 0.06211433932185173, - 0.05932249128818512, - 0.056800488382577896, - 0.05461711436510086, - 0.05283193290233612, - 0.05149363726377487, - 0.05063873529434204, - 0.08779114484786987, - 0.09230837970972061, - 0.09619568288326263, - 0.09934702515602112, - 0.10167643427848816, - 0.10312038660049438, - 0.10363948345184326, - 0.10321957617998123, - 0.10187210142612457, - 0.0996338278055191, - 0.09656580537557602, - 0.09275172650814056, - 0.08829562366008759, - 0.0833190456032753, - 0.07795774936676025, - 0.07235796749591827, - 0.06667245179414749, - 0.06105629354715347, - 0.05566267669200897, - 0.05063873529434204, - 0.08779114484786987, - 0.09596045315265656, - 0.10340020805597305, - 0.10990747809410095, - 0.11530476808547974, - 0.119444839656353, - 0.12221477925777435, - 0.1235390156507492, - 0.12338143587112427, - 0.12174633145332336, - 0.11867830902338028, - 0.11426106095314026, - 0.10861506313085556, - 0.1018943339586258, - 0.09428220242261887, - 0.08598629385232925, - 0.07723291218280792, - 0.06826081871986389, - 0.05931474640965462, - 0.05063873156905174, - 0.08779114484786987, - 0.09869979321956635, - 0.10880418121814728, - 0.11782866716384888, - 0.12552711367607117, - 0.13168948888778687, - 0.13614773750305176, - 0.13878023624420166, - 0.13951516151428223, - 0.13833248615264893, - 0.13526445627212524, - 0.13039478659629822, - 0.12385627627372742, - 0.1158272922039032, - 0.10652685165405273, - 0.09620863944292068, - 0.08515410125255585, - 0.07366478443145752, - 0.062054093927145004, - 0.05063873156905174, - 0.08779114484786987, - 0.10022956132888794, - 0.11182199418544769, - 0.1222522035241127, - 0.13123568892478943, - 0.13852742314338684, - 0.14392849802970886, - 0.14729158580303192, - 0.1485249251127243, - 0.1475948989391327, - 0.1445268839597702, - 0.1394045501947403, - 0.13236764073371887, - 0.1236080527305603, - 0.1133647933602333, - 0.10191723704338074, - 0.08957763016223907, - 0.07668259739875793, - 0.0635838657617569, - 0.05063873156905174, - 0.08779114484786987, - 0.10038398206233978, - 0.11212661117315292, - 0.12269872426986694, - 0.1318119317293167, - 0.13921765983104706, - 0.14471390843391418, - 0.1481507271528244, - 0.1494343876838684, - 0.14852987229824066, - 0.14546185731887817, - 0.1403140127658844, - 0.13322678208351135, - 0.12439346313476562, - 0.11405502259731293, - 0.10249346494674683, - 0.09002415090799332, - 0.07698722183704376, - 0.06373827904462814, - 0.05063873156905174, - 0.08779114484786987, - 0.09914632141590118, - 0.10968504101037979, - 0.11911984533071518, - 0.1271933764219284, - 0.1336854100227356, - 0.13841885328292847, - 0.14126458764076233, - 0.14214500784873962, - 0.14103606343269348, - 0.137968048453331, - 0.13302463293075562, - 0.12634064257144928, - 0.11809840798377991, - 0.10852277278900146, - 0.09787490963935852, - 0.08644527196884155, - 0.07454565167427063, - 0.06250061839818954, - 0.05063873156905174, - 0.08779114484786987, - 0.09665068984031677, - 0.10476185381412506, - 0.11190339922904968, - 0.11788050830364227, - 0.12253014743328094, - 0.12572549283504486, - 0.12737937271595, - 0.12744668126106262, - 0.12592557072639465, - 0.12285755574703217, - 0.11832630634307861, - 0.11245542019605637, - 0.1054050475358963, - 0.09736751765012741, - 0.08856204152107239, - 0.07922882586717606, - 0.0696224644780159, - 0.06000498682260513, - 0.05063873156905174, - 0.08779114484786987, - 0.09316753596067429, - 0.09789055585861206, - 0.10183139145374298, - 0.10488252341747284, - 0.10696074366569519, - 0.10800935328006744, - 0.1079997569322586, - 0.10693221539258957, - 0.10483583807945251, - 0.10176780819892883, - 0.09781183302402496, - 0.09307580441236496, - 0.08768891543149948, - 0.08179810643196106, - 0.07556405663490295, - 0.06915681809186935, - 0.0627511665225029, - 0.056521832942962646, - 0.05063873529434204, - 0.08779114484786987, - 0.08907431364059448, - 0.08981576561927795, - 0.08999527990818024, - 0.08960796892642975, - 0.08866438269615173, - 0.08719026297330856, - 0.08522583544254303, - 0.08282466232776642, - 0.08005224913358688, - 0.0769842267036438, - 0.07370427995920181, - 0.07030187547206879, - 0.06686981767416, - 0.063501738011837, - 0.060289494693279266, - 0.05732071027159691, - 0.054676372557878494, - 0.05242861062288284, - 0.05063873529434204, - 0.08779114484786987, - 0.08481457829475403, - 0.08141250163316727, - 0.07767769694328308, - 0.073712058365345, - 0.06962374597787857, - 0.06552428752183914, - 0.06152549386024475, - 0.05773644894361496, - 0.054260510951280594, - 0.05119248852133751, - 0.04861607402563095, - 0.046601537615060806, - 0.045203838497400284, - 0.04446110129356384, - 0.04439358413219452, - 0.04500313103199005, - 0.04627310857176781, - 0.048168882727622986, - 0.05063873529434204, - 0.08779114484786987, - 0.08084995299577713, - 0.07359138876199722, - 0.0662134438753128, - 0.05891737341880798, - 0.05190219730138779, - 0.04535926133394241, - 0.03946705162525177, - 0.0343862809240818, - 0.030255548655986786, - 0.0271875262260437, - 0.025265902280807495, - 0.024543095380067825, - 0.025038812309503555, - 0.02673954889178276, - 0.0295989029109478, - 0.03353887423872948, - 0.03845199942588806, - 0.04420425370335579, - 0.05063873529434204, - 0.08779114484786987, - 0.0776100605726242, - 0.06719997525215149, - 0.05684484913945198, - 0.04682714864611626, - 0.037420134991407394, - 0.028880394995212555, - 0.021440871059894562, - 0.015304502099752426, - 0.010638676583766937, - 0.0075706541538238525, - 0.006184123456478119, - 0.0065169185400009155, - 0.008559945970773697, - 0.012257475405931473, - 0.017508674412965775, - 0.024170279502868652, - 0.03206058219075203, - 0.04096435755491257, - 0.05063873529434204, - 0.08779114484786987, - 0.0754459872841835, - 0.06293085217475891, - 0.05058713257312775, - 0.03875153884291649, - 0.027746904641389847, - 0.017873406410217285, - 0.009400367736816406, - 0.0025589168071746826, - -0.0024643167853355408, - -0.0055323392152786255, - -0.006561458110809326, - -0.00552358478307724, - -0.0024470388889312744, - 0.0025842487812042236, - 0.009433064609766006, - 0.01791256293654442, - 0.02779146283864975, - 0.03880028426647186, - 0.05063873529434204, - 0.08779114484786987, - 0.07459224760532379, - 0.06124667078256607, - 0.04811844229698181, - 0.03556567057967186, - 0.02393076941370964, - 0.013531096279621124, - 0.004650339484214783, - -0.002469271421432495, - -0.007633507251739502, - -0.010701529681682587, - -0.011589646339416504, - -0.010273613035678864, - -0.006789356470108032, - -0.0012318789958953857, - 0.006247192621231079, - 0.015443868935108185, - 0.02610727772116661, - 0.03794654831290245, - 0.05063873529434204, - 0.08779114484786987, - 0.07514136284589767, - 0.062329910695552826, - 0.04970627278089523, - 0.03761477768421173, - 0.02638525515794754, - 0.016324013471603394, - 0.007705487310886383, - 0.0007647871971130371, - -0.004308760166168213, - -0.007376782596111298, - -0.008355587720870972, - -0.007218465209007263, - -0.003996439278125763, - 0.0012226030230522156, - 0.00829629972577095, - 0.017031699419021606, - 0.027190517634153366, - 0.038495659828186035, - 0.05063873529434204, - 0.08779114484786987, - 0.07703381776809692, - 0.06606321036815643, - 0.05517856776714325, - 0.04467680677771568, - 0.03484438732266426, - 0.025949500501155853, - 0.01823478192090988, - 0.011910669505596161, - 0.00714966282248497, - 0.004081644117832184, - 0.002790287137031555, - 0.0033108294010162354, - 0.005629055202007294, - 0.009681735187768936, - 0.0153583362698555, - 0.02250399813055992, - 0.030923817306756973, - 0.040388114750385284, - 0.05063873529434204, - 0.08779114484786987, - 0.0800645500421524, - 0.07204199582338333, - 0.0639423355460167, - 0.05598649010062218, - 0.048391491174697876, - 0.04136449471116066, - 0.035097189247608185, - 0.02976052463054657, - 0.02550007402896881, - 0.022432051599025726, - 0.020640145987272263, - 0.02017323300242424, - 0.021044045686721802, - 0.02322883903980255, - 0.026668019592761993, - 0.031267762184143066, - 0.03690260648727417, - 0.043418847024440765, - 0.05063873529434204, - 0.08779114484786987, - 0.08390511572360992, - 0.07961837947368622, - 0.07504786550998688, - 0.07031824439764023, - 0.065558522939682, - 0.060898542404174805, - 0.05646540969610214, - 0.05238005518913269, - 0.04875390976667404, - 0.04568588733673096, - 0.04325968027114868, - 0.041541457176208496, - 0.040578097105026245, - 0.04039587825536728, - 0.040999770164489746, - 0.04237329587340355, - 0.04447899013757706, - 0.04725942015647888, - 0.05063873529434204, - 0.08779114484786987, - 0.08813934028148651, - 0.08797132968902588, - 0.08729168772697449, - 0.08611896634101868, - 0.08448514342308044, - 0.08243479579687119, - 0.08002384006977081, - 0.07731804251670837, - 0.07439121603965759, - 0.07132319360971451, - 0.06819766759872437, - 0.06509988009929657, - 0.062114350497722626, - 0.059322502464056015, - 0.05680049583315849, - 0.05461712181568146, - 0.05283194035291672, - 0.05149364098906517, - 0.05063873529434204 - ], - "z": [ - -1.7558225393295288, - -1.7500784397125244, - -1.7343568801879883, - -1.709086537361145, - -1.6749569177627563, - -1.6328988075256348, - -1.5840595960617065, - -1.5297714471817017, - -1.47151517868042, - -1.4108798503875732, - -1.3495194911956787, - -1.2891077995300293, - -1.231292724609375, - -1.1776511669158936, - -1.1296465396881104, - -1.088587999343872, - -1.0555957555770874, - -1.0315697193145752, - -1.017165184020996, - -1.0127750635147095, - -1.7558225393295288, - -1.749915361404419, - -1.7340350151062012, - -1.7086148262023926, - -1.67434823513031, - -1.6321697235107422, - -1.5832300186157227, - -1.5288640260696411, - -1.4705545902252197, - -1.4098923206329346, - -1.34853196144104, - -1.288147211074829, - -1.230385184288025, - -1.1768215894699097, - -1.1289174556732178, - -1.0879793167114258, - -1.0551241636276245, - -1.0312479734420776, - -1.0170021057128906, - -1.0127750635147095, - -1.7558225393295288, - -1.7498432397842407, - -1.7338929176330566, - -1.7084064483642578, - -1.6740792989730835, - -1.631847620010376, - -1.582863450050354, - -1.5284630060195923, - -1.4701300859451294, - -1.4094558954238892, - -1.3480955362319946, - -1.2877227067947388, - -1.2299842834472656, - -1.176455020904541, - -1.128595232963562, - -1.0877103805541992, - -1.0549156665802002, - -1.0311057567596436, - -1.0169299840927124, - -1.0127750635147095, - -1.7558225393295288, - -1.7498700618743896, - -1.7339457273483276, - -1.7084839344024658, - -1.674179196357727, - -1.631967306137085, - -1.5829997062683105, - -1.5286120176315308, - -1.470287799835205, - -1.4096180200576782, - -1.3482576608657837, - -1.2878804206848145, - -1.2301331758499146, - -1.176591157913208, - -1.1287150382995605, - -1.0878103971481323, - -1.0549931526184082, - -1.0311585664749146, - -1.0169568061828613, - -1.0127750635147095, - -1.7558225393295288, - -1.7499927282333374, - -1.7341878414154053, - -1.708838701248169, - -1.6746371984481812, - -1.6325159072875977, - -1.5836238861083984, - -1.5292948484420776, - -1.4710105657577515, - -1.4103611707687378, - -1.3490008115768433, - -1.2886033058166504, - -1.2308160066604614, - -1.1772154569625854, - -1.1292635202407837, - -1.0882682800292969, - -1.0553480386734009, - -1.0314006805419922, - -1.017079472541809, - -1.0127750635147095, - -1.7558225393295288, - -1.7501981258392334, - -1.7345929145812988, - -1.709432601928711, - -1.6754035949707031, - -1.6334338188171387, - -1.5846683979034424, - -1.5304374694824219, - -1.4722201824188232, - -1.411604642868042, - -1.3502442836761475, - -1.2898128032684326, - -1.2319587469100952, - -1.1782599687576294, - -1.1301815509796143, - -1.0890347957611084, - -1.0559419393539429, - -1.0318058729171753, - -1.017284870147705, - -1.0127750635147095, - -1.7558225393295288, - -1.7504639625549316, - -1.7351171970367432, - -1.7102011442184448, - -1.676395297050476, - -1.6346218585968018, - -1.5860202312469482, - -1.5319161415100098, - -1.473785400390625, - -1.413213849067688, - -1.3518534898757935, - -1.291378140449524, - -1.233437418937683, - -1.1796118021011353, - -1.1313694715499878, - -1.0900264978408813, - -1.0567104816436768, - -1.0323301553726196, - -1.0175507068634033, - -1.0127750635147095, - -1.7558225393295288, - -1.7507612705230713, - -1.7357038259506226, - -1.7110610008239746, - -1.6775050163269043, - -1.635951042175293, - -1.587532639503479, - -1.533570647239685, - -1.475536823272705, - -1.4150142669677734, - -1.353653907775879, - -1.2931294441223145, - -1.2350918054580688, - -1.181124210357666, - -1.132698655128479, - -1.09113609790802, - -1.057570219039917, - -1.032916784286499, - -1.017848014831543, - -1.0127750635147095, - -1.7558225393295288, - -1.7510579824447632, - -1.7362892627716064, - -1.7119190692901611, - -1.678612232208252, - -1.637277364730835, - -1.589041829109192, - -1.5352215766906738, - -1.4772844314575195, - -1.4168108701705933, - -1.3554505109786987, - -1.294877052307129, - -1.2367427349090576, - -1.182633399963379, - -1.134024977684021, - -1.0922434329986572, - -1.0584282875061035, - -1.0335021018981934, - -1.0181447267532349, - -1.0127750635147095, - -1.7558225393295288, - -1.7513219118118286, - -1.7368098497390747, - -1.7126822471618652, - -1.6795971393585205, - -1.638457179069519, - -1.5903843641281128, - -1.53669011592865, - -1.4788389205932617, - -1.418408989906311, - -1.3570486307144165, - -1.296431541442871, - -1.2382112741470337, - -1.1839759349822998, - -1.135204792022705, - -1.0932283401489258, - -1.0591914653778076, - -1.0340228080749512, - -1.0184086561203003, - -1.0127750635147095, - -1.7558225393295288, - -1.7515244483947754, - -1.737209439277649, - -1.7132679224014282, - -1.680353045463562, - -1.6393625736236572, - -1.5914145708084106, - -1.5378170013427734, - -1.4800318479537964, - -1.4196354150772095, - -1.358275055885315, - -1.2976245880126953, - -1.2393382787704468, - -1.1850061416625977, - -1.1361101865768433, - -1.0939842462539673, - -1.0597772598266602, - -1.0344223976135254, - -1.018611192703247, - -1.0127750635147095, - -1.7558225393295288, - -1.7516436576843262, - -1.7374446392059326, - -1.713612675666809, - -1.6807979345321655, - -1.6398954391479492, - -1.5920209884643555, - -1.538480281829834, - -1.4807339906692505, - -1.4203572273254395, - -1.358996868133545, - -1.2983267307281494, - -1.2400015592575073, - -1.185612440109253, - -1.1366431713104248, - -1.0944291353225708, - -1.060122013092041, - -1.0346574783325195, - -1.0187304019927979, - -1.0127750635147095, - -1.7558225393295288, - -1.7516666650772095, - -1.737489938735962, - -1.7136790752410889, - -1.6808836460113525, - -1.6399980783462524, - -1.5921376943588257, - -1.5386080741882324, - -1.4808692932128906, - -1.4204962253570557, - -1.3591358661651611, - -1.2984619140625, - -1.2401293516159058, - -1.1857292652130127, - -1.1367456912994385, - -1.0945148468017578, - -1.0601882934570312, - -1.0347027778625488, - -1.0187534093856812, - -1.0127750635147095, - -1.7558225393295288, - -1.7515908479690552, - -1.7373404502868652, - -1.7134599685668945, - -1.6806007623672485, - -1.6396592855453491, - -1.591752290725708, - -1.5381864309310913, - -1.480422854423523, - -1.4200373888015747, - -1.3586770296096802, - -1.2980155944824219, - -1.2397077083587646, - -1.185343861579895, - -1.1364070177078247, - -1.0942319631576538, - -1.059969186782837, - -1.0345532894134521, - -1.0186775922775269, - -1.0127750635147095, - -1.7558225393295288, - -1.7514245510101318, - -1.7370123863220215, - -1.7129790782928467, - -1.6799801588058472, - -1.6389158964157104, - -1.5909063816070557, - -1.5372610092163086, - -1.4794433116912842, - -1.4190304279327393, - -1.3576699495315552, - -1.297036051750183, - -1.238782286643982, - -1.1844978332519531, - -1.1356635093688965, - -1.0936113595962524, - -1.059488296508789, - -1.0342252254486084, - -1.0185112953186035, - -1.0127750635147095, - -1.7558225393295288, - -1.751185655593872, - -1.7365411520004272, - -1.7122883796691895, - -1.6790889501571655, - -1.6378483772277832, - -1.5896916389465332, - -1.5359323024749756, - -1.4780367612838745, - -1.4175843000411987, - -1.3562239408493042, - -1.2956293821334839, - -1.2374534606933594, - -1.1832830905914307, - -1.1345959901809692, - -1.0927201509475708, - -1.0587977170944214, - -1.0337541103363037, - -1.0182723999023438, - -1.0127750635147095, - -1.7558225393295288, - -1.7509002685546875, - -1.735978126525879, - -1.7114629745483398, - -1.6780236959457397, - -1.6365723609924316, - -1.5882396697998047, - -1.5343440771102905, - -1.4763555526733398, - -1.4158560037612915, - -1.3544955253601074, - -1.2939481735229492, - -1.2358652353286743, - -1.1818312406539917, - -1.1333200931549072, - -1.091654896736145, - -1.0579721927642822, - -1.0331909656524658, - -1.0179870128631592, - -1.0127750635147095, - -1.7558225393295288, - -1.7505991458892822, - -1.7353839874267578, - -1.7105921506881714, - -1.6768999099731445, - -1.6352262496948242, - -1.5867079496383667, - -1.5326684713363647, - -1.4745818376541138, - -1.4140325784683228, - -1.3526722192764282, - -1.2921744585037231, - -1.234189748764038, - -1.1802995204925537, - -1.1319739818572998, - -1.0905311107635498, - -1.0571014881134033, - -1.0325968265533447, - -1.017685890197754, - -1.0127750635147095, - -1.7558225393295288, - -1.7503149509429932, - -1.7348233461380005, - -1.7097703218460083, - -1.6758393049240112, - -1.6339558362960815, - -1.585262417793274, - -1.5310871601104736, - -1.4729079008102417, - -1.4123116731643677, - -1.3509513139724731, - -1.2905006408691406, - -1.232608437538147, - -1.178853988647461, - -1.1307034492492676, - -1.0894705057144165, - -1.0562796592712402, - -1.0320361852645874, - -1.0174016952514648, - -1.0127750635147095, - -1.7558225393295288, - -1.7500784397125244, - -1.7343568801879883, - -1.709086537361145, - -1.6749569177627563, - -1.6328988075256348, - -1.5840595960617065, - -1.5297714471817017, - -1.47151517868042, - -1.4108798503875732, - -1.3495194911956787, - -1.2891077995300293, - -1.231292724609375, - -1.1776511669158936, - -1.1296465396881104, - -1.088587999343872, - -1.0555957555770874, - -1.0315697193145752, - -1.017165184020996, - -1.0127750635147095 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.1204976812005043, - -0.12200929969549179, - -0.12296369671821594, - -0.12333483248949051, - -0.12311258912086487, - -0.12230302393436432, - -0.12092822045087814, - -0.11902568489313126, - -0.11664731055498123, - -0.11385796964168549, - -0.1107337474822998, - -0.1073598712682724, - -0.10382837057113647, - -0.10023557394742966, - -0.09667948633432388, - -0.09325709939002991, - -0.09006176888942719, - -0.08718066662549973, - -0.08469237387180328, - -0.08266476541757584, - -0.1204976812005043, - -0.1280311793088913, - -0.13484318554401398, - -0.14074788987636566, - -0.14558424055576324, - -0.1492203027009964, - -0.15155687928199768, - -0.1525302678346634, - -0.1521138846874237, - -0.15031911432743073, - -0.14719489216804504, - -0.14282646775245667, - -0.1373329609632492, - -0.1308642476797104, - -0.12359676510095596, - -0.11572875082492828, - -0.10747483372688293, - -0.09906015545129776, - -0.09071424603462219, - -0.08266475796699524, - -0.1204976812005043, - -0.1332087218761444, - -0.1450570523738861, - -0.15571945905685425, - -0.1649051308631897, - -0.1723634898662567, - -0.1778911054134369, - -0.1813371777534485, - -0.18260769546031952, - -0.18166804313659668, - -0.178543820977211, - -0.17332026362419128, - -0.1661398708820343, - -0.1571984589099884, - -0.14673995971679688, - -0.13504964113235474, - -0.12244641035795212, - -0.10927402228116989, - -0.0958917886018753, - -0.08266475796699524, - -0.1204976812005043, - -0.13698087632656097, - -0.15249845385551453, - -0.16662713885307312, - -0.17898157238960266, - -0.18922469019889832, - -0.19707714021205902, - -0.20232470333576202, - -0.20482425391674042, - -0.20450758934020996, - -0.20138338208198547, - -0.19553682208061218, - -0.18712739646434784, - -0.17638450860977173, - -0.16360116004943848, - -0.1491260677576065, - -0.1333540976047516, - -0.1167154312133789, - -0.09966394305229187, - -0.08266475796699524, - -0.1204976737499237, - -0.13893885910511017, - -0.15636101365089417, - -0.1722889244556427, - -0.18628810346126556, - -0.1979767084121704, - -0.20703589916229248, - -0.213218554854393, - -0.2163560390472412, - -0.21636274456977844, - -0.21323853731155396, - -0.20706859230995178, - -0.19802124798297882, - -0.186343252658844, - -0.17235317826271057, - -0.1564326286315918, - -0.13901585340499878, - -0.12057799100875854, - -0.10162192583084106, - -0.08266475796699524, - -0.1204976737499237, - -0.1388704925775528, - -0.15622615814208984, - -0.17209124565124512, - -0.18603301048278809, - -0.19767113029956818, - -0.20668818056583405, - -0.21283820271492004, - -0.21595340967178345, - -0.21594883501529694, - -0.21282461285591125, - -0.20666596293449402, - -0.19764089584350586, - -0.18599554896354675, - -0.17204761505126953, - -0.15617752075195312, - -0.1388181746006012, - -0.12044312059879303, - -0.10155356675386429, - -0.08266475796699524, - -0.1204976812005043, - -0.1367831975221634, - -0.15210849046707153, - -0.16605553030967712, - -0.17824390530586243, - -0.18834108114242554, - -0.19607168436050415, - -0.20122486352920532, - -0.2036599963903427, - -0.20331069827079773, - -0.20018646121025085, - -0.19437256455421448, - -0.18602755665779114, - -0.17537905275821686, - -0.1627175658941269, - -0.14838841557502747, - -0.1327824741601944, - -0.11632546037435532, - -0.09946626424789429, - -0.08266475796699524, - -0.1204976812005043, - -0.13290314376354218, - -0.1444542407989502, - -0.15483585000038147, - -0.1637648344039917, - -0.17099760472774506, - -0.176336869597435, - -0.17963701486587524, - -0.18080799281597137, - -0.17981785535812378, - -0.1766936480998993, - -0.17152056097984314, - -0.16443970799446106, - -0.1556442379951477, - -0.14537407457828522, - -0.13390935957431793, - -0.12156280130147934, - -0.10867121070623398, - -0.09558621793985367, - -0.08266475796699524, - -0.1204976812005043, - -0.12765082716941833, - -0.13409285247325897, - -0.13964805006980896, - -0.14416489005088806, - -0.14752015471458435, - -0.14962230622768402, - -0.15041404962539673, - -0.149873748421669, - -0.14801615476608276, - -0.14489193260669708, - -0.14058631658554077, - -0.13521674275398254, - -0.12892965972423553, - -0.12189661711454391, - -0.1143094003200531, - -0.10637498646974564, - -0.09830982238054276, - -0.09033389389514923, - -0.08266475796699524, - -0.1204976812005043, - -0.12159538269042969, - -0.12214715033769608, - -0.12213793396949768, - -0.1215679794549942, - -0.12045284360647202, - -0.11882293224334717, - -0.1167227178812027, - -0.11420948058366776, - -0.11135178059339523, - -0.10822756588459015, - -0.10492204874753952, - -0.10152541100978851, - -0.09813028573989868, - -0.09482930600643158, - -0.09171248972415924, - -0.08886487036943436, - -0.08636412024497986, - -0.08427845686674118, - -0.08266476541757584, - -0.1204976886510849, - -0.11539303511381149, - -0.10991163551807404, - -0.104203000664711, - -0.09842285513877869, - -0.0927288606762886, - -0.08727633208036423, - -0.08221400529146194, - -0.07767996937036514, - -0.07379789650440216, - -0.07067367434501648, - -0.06839253008365631, - -0.06701669096946716, - -0.06658368557691574, - -0.06710531562566757, - -0.06856736540794373, - -0.07092994451522827, - -0.07412860542535782, - -0.07807610929012299, - -0.08266476541757584, - -0.1204976886510849, - -0.10971589386463165, - -0.09871221333742142, - -0.08778678625822067, - -0.07723763585090637, - -0.0673525258898735, - -0.05840107798576355, - -0.05062747001647949, - -0.044243741780519485, - -0.039424046874046326, - -0.036299824714660645, - -0.03495631366968155, - -0.03543015569448471, - -0.03770842403173447, - -0.04172897711396217, - -0.04738214984536171, - -0.054513730108737946, - -0.0629291832447052, - -0.07239896804094315, - -0.08266476541757584, - -0.1204976886510849, - -0.10517917573451996, - -0.08976251631975174, - -0.07466824352741241, - -0.06030808389186859, - -0.04707375913858414, - -0.03532624989748001, - -0.025385983288288116, - -0.01752413809299469, - -0.01195516437292099, - -0.008830942213535309, - -0.008236706256866455, - -0.010188676416873932, - -0.014633595943450928, - -0.021450206637382507, - -0.030452586710453033, - -0.04139518365263939, - -0.05397948622703552, - -0.06786224246025085, - -0.08266476541757584, - -0.1204976886510849, - -0.10227449238300323, - -0.08403238654136658, - -0.06626895070075989, - -0.0494687557220459, - -0.0340900644659996, - -0.020552337169647217, - -0.009224861860275269, - -0.0004166439175605774, - 0.005632065236568451, - 0.008756287395954132, - 0.008870787918567657, - 0.005972445011138916, - 0.00014031678438186646, - -0.008466511964797974, - -0.01961325854063034, - -0.03299589455127716, - -0.04824935272336006, - -0.06495755910873413, - -0.08266476541757584, - -0.1204976886510849, - -0.10131661593914032, - -0.08214276283979416, - -0.06349913775920868, - -0.04589428752660751, - -0.029808446764945984, - -0.015680372714996338, - -0.0038954392075538635, - 0.005224868655204773, - 0.011431783437728882, - 0.014556005597114563, - 0.014512300491333008, - 0.011301867663860321, - 0.005012281239032745, - -0.004184894263744354, - -0.016038790345191956, - -0.030226081609725952, - -0.04635973274707794, - -0.06399968266487122, - -0.08266477286815643, - -0.1204976886510849, - -0.10240934789180756, - -0.08429841697216034, - -0.06665891408920288, - -0.049972012639045715, - -0.03469286859035492, - -0.021238252520561218, - -0.009975194931030273, - -0.001210913062095642, - 0.004815518856048584, - 0.007939741015434265, - 0.008076518774032593, - 0.005222111940383911, - -0.0005456060171127319, - -0.00906931608915329, - -0.020116515457630157, - -0.033385857939720154, - -0.04851538687944412, - -0.06509241461753845, - -0.08266476541757584, - -0.1204976886510849, - -0.10543427616357803, - -0.09026576578617096, - -0.07540591061115265, - -0.06126004830002785, - -0.048214055597782135, - -0.0366237610578537, - -0.026805341243743896, - -0.019026607275009155, - -0.013499774038791656, - -0.010375551879405975, - -0.00973917543888092, - -0.011608034372329712, - -0.015931107103824615, - -0.022590503096580505, - -0.031404562294483185, - -0.04213285446166992, - -0.054482731968164444, - -0.06811735033988953, - -0.08266476541757584, - -0.1204976886510849, - -0.11006360501050949, - -0.09939815104007721, - -0.08879223465919495, - -0.07853517681360245, - -0.0689067542552948, - -0.06016960367560387, - -0.05256205424666405, - -0.04629162326455116, - -0.041529346257448196, - -0.038405127823352814, - -0.037004195153713226, - -0.037364743649959564, - -0.03947695344686508, - -0.04328320547938347, - -0.04867968335747719, - -0.05551917850971222, - -0.0636151134967804, - -0.07274667918682098, - -0.08266476541757584, - -0.1204976886510849, - -0.11579567193984985, - -0.11070592701435089, - -0.1053672805428505, - -0.09992536157369614, - -0.09452860802412033, - -0.0893242284655571, - -0.08445419371128082, - -0.08005134016275406, - -0.07623576372861862, - -0.07311154901981354, - -0.07076390832662582, - -0.06925688683986664, - -0.06863158941268921, - -0.0689050704240799, - -0.07006986439228058, - -0.07209421694278717, - -0.07492288947105408, - -0.07847873866558075, - -0.08266476541757584, - -0.1204976812005043, - -0.12200930714607239, - -0.12296370416879654, - -0.1233348399400711, - -0.12311260402202606, - -0.12230303883552551, - -0.12092823535203934, - -0.11902570724487305, - -0.11664732545614243, - -0.11385798454284668, - -0.1107337698340416, - -0.10735989362001419, - -0.10382839292287827, - -0.10023558884859085, - -0.09667950123548508, - -0.0932571142911911, - -0.09006178379058838, - -0.08718067407608032, - -0.08469237387180328, - -0.08266476541757584 - ], - "y": [ - 0.12049774825572968, - 0.13907656073570251, - 0.15663261711597443, - 0.17268699407577515, - 0.18680182099342346, - 0.19859202206134796, - 0.2077360302209854, - 0.2139844298362732, - 0.2171667367219925, - 0.21719618141651154, - 0.21407195925712585, - 0.20787927508354187, - 0.19878706336021423, - 0.18704330921173096, - 0.17296841740608215, - 0.15694622695446014, - 0.13941381871700287, - 0.12084946036338806, - 0.10175950825214386, - 0.08266469091176987, - 0.12049774825572968, - 0.13746608793735504, - 0.15345558524131775, - 0.16803008317947388, - 0.18079203367233276, - 0.19139331579208374, - 0.199544757604599, - 0.20502401888370514, - 0.20768162608146667, - 0.20744508504867554, - 0.20432084798812866, - 0.19839414954185486, - 0.18982665240764618, - 0.17885205149650574, - 0.16576969623565674, - 0.15093643963336945, - 0.1347569078207016, - 0.11767242848873138, - 0.10014902800321579, - 0.08266469091176987, - 0.12049774825572968, - 0.1339888721704483, - 0.1465959995985031, - 0.1579752415418625, - 0.1678161919116974, - 0.17585045099258423, - 0.18185880780220032, - 0.1856774240732193, - 0.1872021108865738, - 0.18639127910137177, - 0.18326705694198608, - 0.17791464924812317, - 0.17048005759716034, - 0.16116610169410706, - 0.15022683143615723, - 0.13796061277389526, - 0.12470206618309021, - 0.11081284284591675, - 0.09667181223630905, - 0.08266469091176987, - 0.12049774825572968, - 0.12902171909809113, - 0.13679718971252441, - 0.1436120569705963, - 0.14928042888641357, - 0.15364770591259003, - 0.15659472346305847, - 0.15804114937782288, - 0.15794746577739716, - 0.15631626546382904, - 0.15319202840328217, - 0.14866000413894653, - 0.14284378290176392, - 0.1359020173549652, - 0.12802407145500183, - 0.11942484974861145, - 0.11033888161182404, - 0.10101403295993805, - 0.09170465916395187, - 0.08266469836235046, - 0.12049774825572968, - 0.12310291081666946, - 0.12512101233005524, - 0.12649701535701752, - 0.1271933764219284, - 0.12719111144542694, - 0.1264902651309967, - 0.1251099705696106, - 0.12308788299560547, - 0.12047913670539856, - 0.11735490709543228, - 0.11380041390657425, - 0.10991261154413223, - 0.10579755157232285, - 0.10156748443841934, - 0.09733778238296509, - 0.09322383999824524, - 0.08933785557746887, - 0.08578585088253021, - 0.08266469836235046, - 0.12049774825572968, - 0.1168738305568695, - 0.11283276975154877, - 0.10848478972911835, - 0.10394850373268127, - 0.09934765100479126, - 0.0948077142238617, - 0.09045254439115524, - 0.08640093356370926, - 0.08276340365409851, - 0.07963917404413223, - 0.07711347192525864, - 0.07525517791509628, - 0.07411499321460724, - 0.07372401654720306, - 0.07409290969371796, - 0.07521161437034607, - 0.0770496129989624, - 0.07955677062273026, - 0.08266469836235046, - 0.12049774825572968, - 0.11100950092077255, - 0.10126407444477081, - 0.0915272980928421, - 0.08206476271152496, - 0.07313459366559982, - 0.06498037278652191, - 0.0578245148062706, - 0.051862236112356186, - 0.04725616052746773, - 0.04413193091750145, - 0.042574770748615265, - 0.04262715205550194, - 0.04428764432668686, - 0.04751095175743103, - 0.05220916122198105, - 0.058254119008779526, - 0.06548091769218445, - 0.0736924409866333, - 0.08266469836235046, - 0.12049775570631027, - 0.10614541172981262, - 0.09166857600212097, - 0.07746212929487228, - 0.06391358375549316, - 0.05139252543449402, - 0.040240466594696045, - 0.030761636793613434, - 0.023214563727378845, - 0.017805159091949463, - 0.014680929481983185, - 0.013927102088928223, - 0.015564270317554474, - 0.01954774558544159, - 0.025768890976905823, - 0.03405798226594925, - 0.044188953936100006, - 0.05588541924953461, - 0.06882835179567337, - 0.08266469836235046, - 0.12049775570631027, - 0.10280866920948029, - 0.08508609980344772, - 0.06781347095966339, - 0.05146193504333496, - 0.036477550864219666, - 0.023268990218639374, - 0.01219659298658371, - 0.0035623684525489807, - -0.0023981332778930664, - -0.0055223628878593445, - -0.005725093185901642, - -0.0030007734894752502, - 0.0025762617588043213, - 0.010853901505470276, - 0.021606341004371643, - 0.03454029560089111, - 0.04930294305086136, - 0.06549160182476044, - 0.08266469836235046, - 0.12049775570631027, - 0.10136085003614426, - 0.08222995698451996, - 0.06362690776586533, - 0.046059153974056244, - 0.030005909502506256, - 0.015905044972896576, - 0.004141196608543396, - -0.004964739084243774, - -0.011164367198944092, - -0.01428859680891037, - -0.014252200722694397, - -0.011056169867515564, - -0.0047876834869384766, - 0.004382267594337463, - 0.01620355248451233, - 0.030353732407093048, - 0.046446796506643295, - 0.064043790102005, - 0.08266469836235046, - 0.12049775570631027, - 0.10195884853601456, - 0.08340965211391449, - 0.06535611301660538, - 0.04829070717096329, - 0.032678939402103424, - 0.018946632742881775, - 0.007468372583389282, - -0.0014427229762077332, - -0.007543586194515228, - -0.010667815804481506, - -0.010730184614658356, - -0.007728993892669678, - -0.0017460957169532776, - 0.007055297493934631, - 0.018435105681419373, - 0.0320829376578331, - 0.04762649163603783, - 0.0646417886018753, - 0.08266469836235046, - 0.12049775570631027, - 0.10453787446022034, - 0.0884973481297493, - 0.07281370460987091, - 0.057914771139621735, - 0.04420696198940277, - 0.03206414729356766, - 0.021817587316036224, - 0.013746753334999084, - 0.008071847259998322, - 0.0049476176500320435, - 0.004459291696548462, - 0.006620220839977264, - 0.011371418833732605, - 0.01858332008123398, - 0.028059177100658417, - 0.03954053297638893, - 0.05271419137716293, - 0.06722081452608109, - 0.08266469836235046, - 0.12049774825572968, - 0.10881844162940979, - 0.09694170951843262, - 0.08519153296947479, - 0.07388842850923538, - 0.06334072351455688, - 0.05383609980344772, - 0.045633845031261444, - 0.03895767778158188, - 0.033989742398262024, - 0.030865512788295746, - 0.029670216143131256, - 0.030436478555202484, - 0.03314337134361267, - 0.03771708160638809, - 0.044032830744981766, - 0.05191836133599281, - 0.06115855649113655, - 0.07150137424468994, - 0.08266469836235046, - 0.12049774825572968, - 0.11433668434619904, - 0.10782768577337265, - 0.10114829242229462, - 0.09448070824146271, - 0.08800681680440903, - 0.08190318942070007, - 0.0763363391160965, - 0.07145808637142181, - 0.06740152835845947, - 0.06427730619907379, - 0.06217062473297119, - 0.06113897264003754, - 0.06121046841144562, - 0.06238318607211113, - 0.06462511420249939, - 0.06787511706352234, - 0.07204452902078629, - 0.07701962441205978, - 0.08266469836235046, - 0.12049774825572968, - 0.12049461156129837, - 0.11997556686401367, - 0.11895477026700974, - 0.11746007204055786, - 0.11553223431110382, - 0.1132238507270813, - 0.1105978935956955, - 0.10772597789764404, - 0.10468645393848419, - 0.10156222432851791, - 0.09843850880861282, - 0.09540052711963654, - 0.09253112971782684, - 0.08990860730409622, - 0.08760447800159454, - 0.08568159490823746, - 0.08419241011142731, - 0.08317755162715912, - 0.08266469836235046, - 0.12049774825572968, - 0.1266249269247055, - 0.1320689618587494, - 0.13668137788772583, - 0.14033636450767517, - 0.14293420314788818, - 0.14440403878688812, - 0.14470578730106354, - 0.14383120834827423, - 0.14180414378643036, - 0.13867992162704468, - 0.1345437467098236, - 0.12950842082500458, - 0.12371132522821426, - 0.11731057614088058, - 0.11048077046871185, - 0.10340820997953415, - 0.09628581255674362, - 0.08930785953998566, - 0.08266469836235046, - 0.12049774825572968, - 0.13206329941749573, - 0.14279739558696747, - 0.1524072140455246, - 0.16063062846660614, - 0.1672433316707611, - 0.17206493020057678, - 0.17496395111083984, - 0.17586126923561096, - 0.17473240196704865, - 0.17160817980766296, - 0.16657379269599915, - 0.15976658463478088, - 0.15137222409248352, - 0.1416197121143341, - 0.13077503442764282, - 0.11913403868675232, - 0.1070142388343811, - 0.09474624693393707, - 0.08266469836235046, - 0.12049774825572968, - 0.13622042536735535, - 0.15099823474884033, - 0.16442808508872986, - 0.17614363133907318, - 0.18582530319690704, - 0.19320902228355408, - 0.19809338450431824, - 0.20034512877464294, - 0.19990286231040955, - 0.19677862524986267, - 0.19105766713619232, - 0.18289601802825928, - 0.17251630127429962, - 0.16020168364048004, - 0.14628803730010986, - 0.1311548948287964, - 0.11521507799625397, - 0.0989033654332161, - 0.08266469091176987, - 0.12049774825572968, - 0.13864578306674957, - 0.1557828038930893, - 0.17144134640693665, - 0.18519428372383118, - 0.19666647911071777, - 0.20554497838020325, - 0.21158763766288757, - 0.21462960541248322, - 0.21458789706230164, - 0.21146367490291595, - 0.2053421437740326, - 0.1963902711868286, - 0.18485227227210999, - 0.17104285955429077, - 0.15533868968486786, - 0.13816815614700317, - 0.11999964714050293, - 0.10132872313261032, - 0.08266469091176987, - 0.12049774825572968, - 0.13907656073570251, - 0.15663261711597443, - 0.17268699407577515, - 0.18680182099342346, - 0.19859202206134796, - 0.2077360302209854, - 0.2139844298362732, - 0.2171667367219925, - 0.21719618141651154, - 0.21407195925712585, - 0.20787927508354187, - 0.19878706336021423, - 0.18704330921173096, - 0.17296841740608215, - 0.15694622695446014, - 0.13941381871700287, - 0.12084946036338806, - 0.10175950825214386, - 0.08266469091176987 - ], - "z": [ - -2.4099538326263428, - -2.40376353263855, - -2.3874223232269287, - -2.3613758087158203, - -2.3263347148895264, - -2.283254623413086, - -2.2333104610443115, - -2.1778652667999268, - -2.1184306144714355, - -2.056628465652466, - -1.9941439628601074, - -1.9326820373535156, - -1.8739190101623535, - -1.8194576501846313, - -1.77078378200531, - -1.7292249202728271, - -1.695914626121521, - -1.6717617511749268, - -1.6574249267578125, - -1.6532952785491943, - -2.4099538326263428, - -2.403542995452881, - -2.3869872093200684, - -2.3607380390167236, - -2.3255114555358887, - -2.282268524169922, - -2.2321887016296387, - -2.176637887954712, - -2.1171317100524902, - -2.055292844772339, - -1.9928085803985596, - -1.9313830137252808, - -1.8726917505264282, - -1.818335771560669, - -1.7697978019714355, - -1.728401780128479, - -1.6952768564224243, - -1.6713266372680664, - -1.6572043895721436, - -1.6532952785491943, - -2.4099538326263428, - -2.4034578800201416, - -2.386819362640381, - -2.36049222946167, - -2.3251943588256836, - -2.281888484954834, - -2.2317562103271484, - -2.1761648654937744, - -2.116630792617798, - -2.0547780990600586, - -1.9922937154769897, - -1.930882215499878, - -1.8722187280654907, - -1.8179033994674683, - -1.7694177627563477, - -1.7280845642089844, - -1.6950310468673706, - -1.671158790588379, - -1.6571192741394043, - -1.6532952785491943, - -2.4099538326263428, - -2.403517723083496, - -2.386937379837036, - -2.3606648445129395, - -2.3254172801971436, - -2.282155752182007, - -2.232060194015503, - -2.176497459411621, - -2.1169826984405518, - -2.0551397800445557, - -1.9926555156707764, - -1.9312341213226318, - -1.8725512027740479, - -1.8182072639465332, - -1.769684910774231, - -1.7283074855804443, - -1.6952037811279297, - -1.6712766885757446, - -1.6571791172027588, - -1.6532952785491943, - -2.4099538326263428, - -2.4037156105041504, - -2.3873281478881836, - -2.3612375259399414, - -2.3261563777923584, - -2.283041000366211, - -2.233067512512207, - -2.1775991916656494, - -2.1181492805480957, - -2.0563390254974365, - -1.9938546419143677, - -1.9324005842208862, - -1.8736530542373657, - -1.8192145824432373, - -1.7705700397491455, - -1.7290464639663696, - -1.6957764625549316, - -1.671667456626892, - -1.6573771238327026, - -1.6532952785491943, - -2.4099538326263428, - -2.4040305614471436, - -2.387949228286743, - -2.3621480464935303, - -2.327331304550171, - -2.2844483852386475, - -2.2346689701080322, - -2.1793510913848877, - -2.1200037002563477, - -2.0582454204559326, - -1.9957611560821533, - -1.9342550039291382, - -1.875404953956604, - -1.8208160400390625, - -1.7719775438308716, - -1.7302215099334717, - -1.6966869831085205, - -1.6722885370254517, - -1.6576919555664062, - -1.6532952785491943, - -2.4099538326263428, - -2.404428243637085, - -2.388733386993408, - -2.363297700881958, - -2.32881498336792, - -2.2862255573272705, - -2.2366912364959717, - -2.181563138961792, - -2.122345209121704, - -2.060652732849121, - -1.9981683492660522, - -1.9365966320037842, - -1.8776170015335083, - -1.822838306427002, - -1.7737547159194946, - -1.7317051887512207, - -1.6978366374969482, - -1.6730728149414062, - -1.6580896377563477, - -1.6532952785491943, - -2.4099538326263428, - -2.4048655033111572, - -2.3895959854125977, - -2.3645620346069336, - -2.330446481704712, - -2.288179874420166, - -2.238914966583252, - -2.1839957237243652, - -2.12492036819458, - -2.0632998943328857, - -2.0008156299591064, - -1.9391716718673706, - -1.880049467086792, - -1.8250620365142822, - -1.7757090330123901, - -1.7333366870880127, - -1.6991008520126343, - -1.6739354133605957, - -1.6585267782211304, - -1.6532952785491943, - -2.4099538326263428, - -2.405294895172119, - -2.3904433250427246, - -2.3658037185668945, - -2.3320488929748535, - -2.2900993824005127, - -2.2410991191864014, - -2.186385154724121, - -2.1274495124816895, - -2.0659000873565674, - -2.003415822982788, - -1.9417009353637695, - -1.8824388980865479, - -1.8272463083267212, - -1.7776286602020264, - -1.7349392175674438, - -1.7003426551818848, - -1.6747825145721436, - -1.6589562892913818, - -1.6532952785491943, - -2.4099538326263428, - -2.405669927597046, - -2.391183376312256, - -2.3668887615203857, - -2.333448886871338, - -2.291776418685913, - -2.2430074214935303, - -2.1884725093841553, - -2.1296591758728027, - -2.068171739578247, - -2.0056874752044678, - -1.9439104795455933, - -1.884526252746582, - -1.8291544914245605, - -1.7793055772781372, - -1.7363392114639282, - -1.7014274597167969, - -1.6755226850509644, - -1.6593314409255981, - -1.6532952785491943, - -2.4099538326263428, - -2.4059503078460693, - -2.3917360305786133, - -2.367698907852173, - -2.3344945907592773, - -2.2930288314819336, - -2.2444326877593994, - -2.1900315284729004, - -2.1313095092773438, - -2.069868326187134, - -2.0073840618133545, - -1.9455609321594238, - -1.8860852718353271, - -1.8305797576904297, - -1.7805581092834473, - -1.7373849153518677, - -1.702237844467163, - -1.6760754585266113, - -1.659611701965332, - -1.6532952785491943, - -2.4099538326263428, - -2.4061050415039062, - -2.3920416831970215, - -2.3681468963623047, - -2.3350727558135986, - -2.2937211990356445, - -2.245220422744751, - -2.1908934116363525, - -2.1322219371795654, - -2.0708062648773193, - -2.00832200050354, - -1.946473240852356, - -1.8869471549987793, - -1.8313676118850708, - -1.7812504768371582, - -1.7379629611968994, - -1.7026857137680054, - -1.6763811111450195, - -1.6597665548324585, - -1.6532952785491943, - -2.4099538326263428, - -2.4061179161071777, - -2.3920669555664062, - -2.3681838512420654, - -2.335120439529419, - -2.293778419494629, - -2.245285749435425, - -2.190964698791504, - -2.1322972774505615, - -2.0708837509155273, - -2.008399486541748, - -1.9465487003326416, - -1.8870184421539307, - -1.8314327001571655, - -1.7813078165054321, - -1.7380107641220093, - -1.7027227878570557, - -1.6764062643051147, - -1.6597793102264404, - -1.6532952785491943, - -2.4099538326263428, - -2.40598726272583, - -2.3918092250823975, - -2.3678059577941895, - -2.3346328735351562, - -2.293194532394409, - -2.2446210384368896, - -2.190237522125244, - -2.1315276622772217, - -2.0700926780700684, - -2.00760817527771, - -1.9457789659500122, - -1.8862913846969604, - -1.83076810836792, - -1.7807236909866333, - -1.737523078918457, - -1.7023448944091797, - -1.676148533821106, - -1.6596486568450928, - -1.6532952785491943, - -2.4099538326263428, - -2.4057273864746094, - -2.391296148300171, - -2.3670542240142822, - -2.333662509918213, - -2.292032241821289, - -2.2432985305786133, - -2.188791036605835, - -2.1299962997436523, - -2.0685184001922607, - -2.0060338973999023, - -1.9442477226257324, - -1.8848447799682617, - -1.8294456005096436, - -1.7795615196228027, - -1.7365528345108032, - -1.701593041419983, - -1.675635576248169, - -1.6593886613845825, - -1.6532952785491943, - -2.4099538326263428, - -2.4053661823272705, - -2.3905837535858154, - -2.3660099506378174, - -2.332314968109131, - -2.2904179096221924, - -2.241461753845215, - -2.186781644821167, - -2.1278693675994873, - -2.066331624984741, - -2.003847360610962, - -1.9421206712722778, - -1.8828353881835938, - -1.8276087045669556, - -1.777947187423706, - -1.7352051734924316, - -1.700548768043518, - -1.6749231815338135, - -1.6590275764465332, - -1.6532952785491943, - -2.4099538326263428, - -2.4049429893493652, - -2.389749050140381, - -2.364786148071289, - -2.330735921859741, - -2.2885265350341797, - -2.239309310913086, - -2.184427261352539, - -2.1253769397735596, - -2.063769578933716, - -2.0012850761413574, - -1.9396283626556396, - -1.8804810047149658, - -1.8254563808441162, - -1.7760555744171143, - -1.7336260080337524, - -1.6993250846862793, - -1.6740883588790894, - -1.658604383468628, - -1.6532952785491943, - -2.4099538326263428, - -2.404503583908081, - -2.3888823986053467, - -2.363515853881836, - -2.3290963172912598, - -2.28656268119812, - -2.237074851989746, - -2.18198299407959, - -2.1227896213531494, - -2.0611095428466797, - -1.9986251592636108, - -1.93704092502594, - -1.8780367374420166, - -1.8232219219207764, - -1.7740919589996338, - -1.73198664188385, - -1.6980547904968262, - -1.6732217073440552, - -1.6581649780273438, - -1.6532952785491943, - -2.4099538326263428, - -2.4040956497192383, - -2.388077735900879, - -2.3623363971710205, - -2.3275742530822754, - -2.2847394943237305, - -2.2350003719329834, - -2.179713487625122, - -2.120387315750122, - -2.0586400032043457, - -1.9961555004119873, - -1.9346387386322021, - -1.8757673501968384, - -1.8211474418640137, - -1.7722687721252441, - -1.7304645776748657, - -1.6968753337860107, - -1.6724170446395874, - -1.6577571630477905, - -1.6532952785491943, - -2.4099538326263428, - -2.40376353263855, - -2.3874223232269287, - -2.3613758087158203, - -2.3263347148895264, - -2.283254623413086, - -2.2333104610443115, - -2.1778652667999268, - -2.1184306144714355, - -2.056628465652466, - -1.9941439628601074, - -1.9326820373535156, - -1.8739190101623535, - -1.8194576501846313, - -1.77078378200531, - -1.7292249202728271, - -1.695914626121521, - -1.6717617511749268, - -1.6574249267578125, - -1.6532952785491943 - ] - }, - { - "alphahull": 0, - "color": "#FECB52", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.15341779589653015, - -0.15120777487754822, - -0.1485387235879898, - -0.14548343420028687, - -0.14212526381015778, - -0.13855582475662231, - -0.1348724514245987, - -0.13117562234401703, - -0.12756620347499847, - -0.12414263188838959, - -0.12099828571081161, - -0.11821895092725754, - -0.11588042974472046, - -0.11404651403427124, - -0.11276723444461823, - -0.11207747459411621, - -0.11199606209993362, - -0.11252520978450775, - -0.11365048587322235, - -0.1153411865234375, - -0.15341779589653015, - -0.14322426915168762, - -0.1327894777059555, - -0.12239806354045868, - -0.11233346164226532, - -0.10287022590637207, - -0.09426648914813995, - -0.08675691485404968, - -0.08054636418819427, - -0.07580424845218658, - -0.07265990972518921, - -0.07119911164045334, - -0.07146171480417252, - -0.0734405517578125, - -0.07708165049552917, - -0.08228567242622375, - -0.08891068398952484, - -0.09677596390247345, - -0.10566698014736176, - -0.1153411939740181, - -0.15341779589653015, - -0.13631725311279297, - -0.11916385591030121, - -0.10242550075054169, - -0.0865587666630745, - -0.07199646532535553, - -0.0591357946395874, - -0.048327572643756866, - -0.03986664116382599, - -0.03398377448320389, - -0.030839435756206512, - -0.030519388616085052, - -0.0330323800444603, - -0.038309864699840546, - -0.046207867562770844, - -0.05651096999645233, - -0.06893812865018845, - -0.08315034210681915, - -0.0987599641084671, - -0.1153411939740181, - -0.15341779589653015, - -0.13123521208763123, - -0.10913839191198349, - -0.08773007988929749, - -0.0675942450761795, - -0.04928015172481537, - -0.03328733146190643, - -0.02005203813314438, - -0.009935304522514343, - -0.0032130926847457886, - -0.00006873905658721924, - -0.0005880445241928101, - -0.004756838083267212, - -0.012461401522159576, - -0.023491553962230682, - -0.03754645586013794, - -0.054242707788944244, - -0.07312488555908203, - -0.09367792308330536, - -0.1153411939740181, - -0.15341779589653015, - -0.12852886319160461, - -0.10379950702190399, - -0.07990430295467377, - -0.05749502778053284, - -0.037182971835136414, - -0.019522175192832947, - -0.004994392395019531, - 0.0060040950775146484, - 0.013173297047615051, - 0.01631765067577362, - 0.015351355075836182, - 0.010300815105438232, - 0.001303747296333313, - -0.011394381523132324, - -0.027447223663330078, - -0.04641692340373993, - -0.06778599321842194, - -0.09097157418727875, - -0.1153411939740181, - -0.15341779589653015, - -0.12849147617816925, - -0.10372575372457504, - -0.07979618012905121, - -0.05735550820827484, - -0.03701585531234741, - -0.019332006573677063, - -0.004786387085914612, - 0.006224319338798523, - 0.013399690389633179, - 0.016544044017791748, - 0.015571579337120056, - 0.010508820414543152, - 0.0014939308166503906, - -0.011227250099182129, - -0.027307704091072083, - -0.04630880802869797, - -0.06771223992109299, - -0.09093417972326279, - -0.1153411939740181, - -0.15341779589653015, - -0.13112708926200867, - -0.10892510414123535, - -0.08741745352745056, - -0.06719078868627548, - -0.0487968772649765, - -0.03273741900920868, - -0.019450485706329346, - -0.009298533201217651, - -0.002558484673500061, - 0.0005858689546585083, - 0.000048726797103881836, - -0.004155293107032776, - -0.011911489069461823, - -0.023008279502391815, - -0.03714299201965332, - -0.053930073976516724, - -0.0729115903377533, - -0.0935698002576828, - -0.1153411939740181, - -0.15341779589653015, - -0.13615012168884277, - -0.11883415281772614, - -0.10194222629070282, - -0.0859350934624672, - -0.07124941051006317, - -0.05828573554754257, - -0.04739770293235779, - -0.0388823077082634, - -0.0329718291759491, - -0.02982749044895172, - -0.02953505516052246, - -0.03210251033306122, - -0.037459805607795715, - -0.045460812747478485, - -0.05588729679584503, - -0.06845484673976898, - -0.08282063901424408, - -0.0985928326845169, - -0.1153411939740181, - -0.15341779589653015, - -0.14301623404026031, - -0.13237909972667694, - -0.12179651856422424, - -0.11155717074871063, - -0.1019403487443924, - -0.09320840239524841, - -0.08559946715831757, - -0.07932114601135254, - -0.07454466819763184, - -0.07140032947063446, - -0.0699738934636116, - -0.070304274559021, - -0.07238246500492096, - -0.0761517584323883, - -0.08150937408208847, - -0.0883091390132904, - -0.09636558592319489, - -0.10545895248651505, - -0.1153411939740181, - -0.15341779589653015, - -0.1509813815355301, - -0.148092120885849, - -0.14482881128787994, - -0.14128047227859497, - -0.13754388689994812, - -0.1337209939956665, - -0.12991605699062347, - -0.12623286247253418, - -0.12277190387248993, - -0.11962755769491196, - -0.11688560992479324, - -0.11462084949016571, - -0.11289505660533905, - -0.11175530403852463, - -0.11123267561197281, - -0.1113414317369461, - -0.11207860708236694, - -0.11342409253120422, - -0.1153411865234375, - -0.15341779589653015, - -0.15918241441249847, - -0.16427047550678253, - -0.16854318976402283, - -0.17188401520252228, - -0.17420180141925812, - -0.17543333768844604, - -0.17554505169391632, - -0.17453385889530182, - -0.17242737114429474, - -0.16928303241729736, - -0.16518661379814148, - -0.16024985909461975, - -0.15460741519927979, - -0.14841322600841522, - -0.1418362259864807, - -0.135055810213089, - -0.12825696170330048, - -0.12162512540817261, - -0.1153411865234375, - -0.15341779589653015, - -0.1667306125164032, - -0.17916099727153778, - -0.1903698444366455, - -0.2000514268875122, - -0.20794165134429932, - -0.2138252854347229, - -0.21754184365272522, - -0.21898996829986572, - -0.21813011169433594, - -0.21498578786849976, - -0.2096427083015442, - -0.20224666595458984, - -0.19299936294555664, - -0.18215307593345642, - -0.17000363767147064, - -0.15688246488571167, - -0.14314748346805573, - -0.12917332351207733, - -0.1153411865234375, - -0.15341779589653015, - -0.17280803620815277, - -0.19115005433559418, - -0.20794351398944855, - -0.2227303385734558, - -0.2351071834564209, - -0.2447364330291748, - -0.25135546922683716, - -0.2547836899757385, - -0.2549275755882263, - -0.25178322196006775, - -0.245436429977417, - -0.2360602617263794, - -0.22391054034233093, - -0.2093186229467392, - -0.19268256425857544, - -0.1744561493396759, - -0.15513654053211212, - -0.1352507472038269, - -0.1153411865234375, - -0.15341778099536896, - -0.1767560839653015, - -0.19893845915794373, - -0.21935983002185822, - -0.23746314644813538, - -0.2527546286582947, - -0.26481714844703674, - -0.27332165837287903, - -0.2780361771583557, - -0.2788321375846863, - -0.2756877839565277, - -0.2686889171600342, - -0.25802645087242126, - -0.24399122595787048, - -0.22696605324745178, - -0.207415372133255, - -0.18587245047092438, - -0.16292494535446167, - -0.13919879496097565, - -0.1153411865234375, - -0.15341778099536896, - -0.17814692854881287, - -0.2016821950674057, - -0.2233816385269165, - -0.24265331029891968, - -0.25897157192230225, - -0.2718912959098816, - -0.28106003999710083, - -0.2862277030944824, - -0.28725337982177734, - -0.2841090261936188, - -0.2768804430961609, - -0.26576483249664307, - -0.25106537342071533, - -0.23318301141262054, - -0.2126055359840393, - -0.18989425897598267, - -0.16566868126392365, - -0.1405896246433258, - -0.1153411865234375, - -0.15341778099536896, - -0.17682984471321106, - -0.19908396899700165, - -0.21957311034202576, - -0.23773840069770813, - -0.25308433175086975, - -0.26519230008125305, - -0.27373206615448, - -0.27847060561180115, - -0.2792787551879883, - -0.2761343717575073, - -0.2691233456134796, - -0.2584368586540222, - -0.2443663775920868, - -0.22729575634002686, - -0.20769062638282776, - -0.18608573079109192, - -0.1630704551935196, - -0.1392725557088852, - -0.1153411865234375, - -0.15341779589653015, - -0.17294755578041077, - -0.19142530858516693, - -0.20834697782993317, - -0.22325101494789124, - -0.2357308715581894, - -0.245446115732193, - -0.25213176012039185, - -0.25560542941093445, - -0.2557723820209503, - -0.25262802839279175, - -0.2462581843137741, - -0.23683658242225647, - -0.22462019324302673, - -0.2099423110485077, - -0.19320322573184967, - -0.17485961318016052, - -0.15541179478168488, - -0.1353902667760849, - -0.1153411865234375, - -0.15341779589653015, - -0.16692078113555908, - -0.1795361489057541, - -0.19091975688934326, - -0.200761079788208, - -0.20879168808460236, - -0.21479251980781555, - -0.21859991550445557, - -0.2201099991798401, - -0.21928155422210693, - -0.21613721549510956, - -0.21076273918151855, - -0.2033047378063202, - -0.19396661221981049, - -0.18300312757492065, - -0.17071330547332764, - -0.15743237733840942, - -0.14352263510227203, - -0.1293635070323944, - -0.1153411865234375, - -0.15341779589653015, - -0.15940260887145996, - -0.16470487415790558, - -0.16917993128299713, - -0.172705739736557, - -0.17518608272075653, - -0.17655333876609802, - -0.17677021026611328, - -0.17583076655864716, - -0.17376065254211426, - -0.1706162989139557, - -0.16648352146148682, - -0.1614750176668167, - -0.15572741627693176, - -0.14939750730991364, - -0.14265795052051544, - -0.1356925666332245, - -0.12869136035442352, - -0.12184532731771469, - -0.1153411865234375, - -0.15341779589653015, - -0.15120777487754822, - -0.1485387086868286, - -0.14548341929912567, - -0.14212524890899658, - -0.13855579495429993, - -0.1348724216222763, - -0.13117560744285583, - -0.1275661736726761, - -0.1241426020860672, - -0.12099826335906982, - -0.11821892112493515, - -0.11588040739297867, - -0.11404649913311005, - -0.11276721954345703, - -0.11207745969295502, - -0.11199604719877243, - -0.11252519488334656, - -0.11365047842264175, - -0.1153411865234375 - ], - "y": [ - 0.15341787040233612, - 0.1282503306865692, - 0.10324998944997787, - 0.07909876853227615, - 0.05645546317100525, - 0.03593773394823074, - 0.018105238676071167, - 0.003444373607635498, - -0.007644906640052795, - -0.014860108494758606, - -0.018004462122917175, - -0.016992196440696716, - -0.011850878596305847, - -0.0027207881212234497, - 0.010149039328098297, - 0.02640756219625473, - 0.045611269772052765, - 0.06723634153604507, - 0.0906929075717926, - 0.11534112691879272, - 0.15341787040233612, - 0.1302533596754074, - 0.10720141232013702, - 0.08489079773426056, - 0.06393010169267654, - 0.044891104102134705, - 0.02829311043024063, - 0.0145888552069664, - 0.004152193665504456, - -0.002732202410697937, - -0.005876556038856506, - -0.005195096135139465, - -0.0007063895463943481, - 0.007467091083526611, - 0.019102416932582855, - 0.03388220816850662, - 0.05140329897403717, - 0.07118776440620422, - 0.0926959365606308, - 0.11534112691879272, - 0.15341787040233612, - 0.134738489985466, - 0.11604931950569153, - 0.09786014258861542, - 0.08066712319850922, - 0.0649392381310463, - 0.051105499267578125, - 0.03954325616359711, - 0.030567899346351624, - 0.024424254894256592, - 0.021279901266098022, - 0.021220609545707703, - 0.02424800395965576, - 0.030279487371444702, - 0.03915054351091385, - 0.0506192147731781, - 0.06437265127897263, - 0.08003567159175873, - 0.09718106687068939, - 0.11534112691879272, - 0.15341787040233612, - 0.14121967554092407, - 0.12883490324020386, - 0.1166013702750206, - 0.10485277324914932, - 0.0939095988869667, - 0.08407033234834671, - 0.07560336589813232, - 0.06873966753482819, - 0.0636664479970932, - 0.06052209436893463, - 0.059392377734184265, - 0.06030811369419098, - 0.06324432790279388, - 0.06812091916799545, - 0.0748048722743988, - 0.08311387151479721, - 0.09282125532627106, - 0.10366225242614746, - 0.11534112691879272, - 0.15341787040233612, - 0.1489945948123932, - 0.14417265355587006, - 0.13908357918262482, - 0.13386619091033936, - 0.1286628097295761, - 0.12361536175012589, - 0.11886152625083923, - 0.11453098803758621, - 0.11074186116456985, - 0.10759751498699188, - 0.10518369823694229, - 0.10356627404689789, - 0.10278935730457306, - 0.10287413001060486, - 0.10381828993558884, - 0.10559608042240143, - 0.10815900564193726, - 0.11143715679645538, - 0.11534111946821213, - 0.15341785550117493, - 0.15722069144248962, - 0.16040048003196716, - 0.16287046670913696, - 0.16456329822540283, - 0.16543281078338623, - 0.16545525193214417, - 0.16463004052639008, - 0.16297966241836548, - 0.16054914891719818, - 0.1574047952890396, - 0.15363237261772156, - 0.14933478832244873, - 0.14462925493717194, - 0.13964413106441498, - 0.1345154047012329, - 0.12938296794891357, - 0.12438683211803436, - 0.11966326832771301, - 0.11534111946821213, - 0.15341785550117493, - 0.16500656306743622, - 0.17575983703136444, - 0.1853843629360199, - 0.19361761212348938, - 0.20023499429225922, - 0.20505601167678833, - 0.20794916152954102, - 0.20883554220199585, - 0.20769092440605164, - 0.20454657077789307, - 0.19948825240135193, - 0.19265392422676086, - 0.1842300146818161, - 0.17444632947444916, - 0.16356971859931946, - 0.1518968641757965, - 0.13974620401859283, - 0.1274491399526596, - 0.11534111201763153, - 0.15341785550117493, - 0.17150847613811493, - 0.18858632445335388, - 0.20418554544448853, - 0.21788063645362854, - 0.22929802536964417, - 0.23812630772590637, - 0.2441246211528778, - 0.2471293956041336, - 0.24705862998962402, - 0.24391427636146545, - 0.23778210580348969, - 0.22882936894893646, - 0.21730029582977295, - 0.2035093605518341, - 0.18783274292945862, - 0.17069804668426514, - 0.15257267653942108, - 0.13395105302333832, - 0.11534111201763153, - 0.15341785550117493, - 0.17602185904979706, - 0.19748997688293457, - 0.21723657846450806, - 0.23472309112548828, - 0.2494724541902542, - 0.26108241081237793, - 0.2692362368106842, - 0.27371150255203247, - 0.2743861675262451, - 0.27124181389808655, - 0.26436424255371094, - 0.25394096970558167, - 0.2402564138174057, - 0.22368380427360535, - 0.20467519760131836, - 0.18374907970428467, - 0.16147632896900177, - 0.13846443593502045, - 0.11534111201763153, - 0.15341785550117493, - 0.17805761098861694, - 0.20150592923164368, - 0.2231232225894928, - 0.24231982231140137, - 0.2585721015930176, - 0.2714366912841797, - 0.28056275844573975, - 0.28570133447647095, - 0.2867121994495392, - 0.2835678458213806, - 0.27635401487350464, - 0.2652675211429596, - 0.25061070919036865, - 0.23278342187404633, - 0.21227192878723145, - 0.1896357238292694, - 0.16549229621887207, - 0.14050018787384033, - 0.11534111201763153, - 0.15341785550117493, - 0.17739512026309967, - 0.20019903779029846, - 0.22120755910873413, - 0.23984763026237488, - 0.2556108236312866, - 0.2680671215057373, - 0.2768768072128296, - 0.2817994952201843, - 0.28270095586776733, - 0.27955663204193115, - 0.2724522352218628, - 0.26158154010772705, - 0.24724113941192627, - 0.22982215881347656, - 0.20979975163936615, - 0.18772006034851074, - 0.16418538987636566, - 0.13983769714832306, - 0.11534111201763153, - 0.15341785550117493, - 0.1741061806678772, - 0.19371087849140167, - 0.21169716119766235, - 0.2275744080543518, - 0.24090954661369324, - 0.2513388395309448, - 0.25857776403427124, - 0.2624289095401764, - 0.2627871632575989, - 0.2596428394317627, - 0.25308161973953247, - 0.2432825267314911, - 0.2305128425359726, - 0.21512088179588318, - 0.19752651453018188, - 0.17820966243743896, - 0.15769723057746887, - 0.13654875755310059, - 0.11534111201763153, - 0.15341785550117493, - 0.16854721307754517, - 0.182744562625885, - 0.19562263786792755, - 0.20683017373085022, - 0.21606141328811646, - 0.2230646014213562, - 0.22764869034290314, - 0.2296886444091797, - 0.22912880778312683, - 0.22598445415496826, - 0.22034135460853577, - 0.2123534381389618, - 0.20223860442638397, - 0.1902727484703064, - 0.1767822653055191, - 0.16213513910770416, - 0.1467309147119522, - 0.13098978996276855, - 0.11534111201763153, - 0.15341785550117493, - 0.16132059693336487, - 0.16848845779895782, - 0.17472590506076813, - 0.17986279726028442, - 0.18375904858112335, - 0.1863083392381668, - 0.1874411404132843, - 0.18712657690048218, - 0.1853731870651245, - 0.18222883343696594, - 0.17777928709983826, - 0.17214590311050415, - 0.16548234224319458, - 0.1579703688621521, - 0.1498149037361145, - 0.14123840630054474, - 0.13247480988502502, - 0.12376317381858826, - 0.11534111946821213, - 0.15341785550117493, - 0.15320947766304016, - 0.15248744189739227, - 0.15127147734165192, - 0.1495947390794754, - 0.14750297367572784, - 0.14505323767662048, - 0.14231234788894653, - 0.13935506343841553, - 0.13626207411289215, - 0.13311772048473358, - 0.1300077736377716, - 0.1270170956850052, - 0.12422723323106766, - 0.12171430140733719, - 0.11954684555530548, - 0.11778397858142853, - 0.11647380143404007, - 0.11565203964710236, - 0.11534111946821213, - 0.15341787040233612, - 0.14509278535842896, - 0.13647547364234924, - 0.12780100107192993, - 0.11930595338344574, - 0.11122208833694458, - 0.10376988351345062, - 0.09715263545513153, - 0.09155084192752838, - 0.08711729943752289, - 0.08397294580936432, - 0.08220355212688446, - 0.08185738325119019, - 0.0829438865184784, - 0.08543340861797333, - 0.08925805240869522, - 0.09431350231170654, - 0.10046183317899704, - 0.10753536224365234, - 0.11534111946821213, - 0.15341787040233612, - 0.1378501057624817, - 0.12218767404556274, - 0.10685780644416809, - 0.09227865934371948, - 0.07884790748357773, - 0.06693191826343536, - 0.056855708360672, - 0.048894159495830536, - 0.04326443374156952, - 0.04012008011341095, - 0.039546869695186615, - 0.04156045615673065, - 0.04610591381788254, - 0.05305922031402588, - 0.06223075091838837, - 0.0733703076839447, - 0.08617403358221054, - 0.10029268264770508, - 0.11534112691879272, - 0.15341787040233612, - 0.13226629793643951, - 0.11117237061262131, - 0.09071146696805954, - 0.07144170999526978, - 0.053888753056526184, - 0.038531363010406494, - 0.025788448750972748, - 0.01600760966539383, - 0.009455680847167969, - 0.006311327219009399, - 0.006660327315330505, - 0.010493196547031403, - 0.01770535111427307, - 0.028100058436393738, - 0.041393816471099854, - 0.05722396820783615, - 0.0751587301492691, - 0.0947088673710823, - 0.11534112691879272, - 0.15341787040233612, - 0.128946453332901, - 0.10462324321269989, - 0.08111169934272766, - 0.05905315279960632, - 0.03904932737350464, - 0.021645858883857727, - 0.007317453622817993, - -0.003545016050338745, - -0.010645255446434021, - -0.01378960907459259, - -0.012892305850982666, - -0.007977798581123352, - 0.0008198469877243042, - 0.013260632753372192, - 0.029005251824855804, - 0.04762420058250427, - 0.06860959529876709, - 0.09138903021812439, - 0.11534112691879272, - 0.15341787040233612, - 0.1282503306865692, - 0.10324998944997787, - 0.07909876853227615, - 0.05645546317100525, - 0.03593773394823074, - 0.018105238676071167, - 0.003444373607635498, - -0.007644906640052795, - -0.014860108494758606, - -0.018004462122917175, - -0.016992196440696716, - -0.011850878596305847, - -0.0027207881212234497, - 0.010149039328098297, - 0.02640756219625473, - 0.045611269772052765, - 0.06723634153604507, - 0.0906929075717926, - 0.11534112691879272 - ], - "z": [ - -3.0683560371398926, - -3.0645058155059814, - -3.0503742694854736, - -3.0263469219207764, - -2.99307918548584, - -2.9514784812927246, - -2.902679681777954, - -2.8480136394500732, - -2.7889716625213623, - -2.7271642684936523, - -2.6642775535583496, - -2.6020267009735107, - -2.542109489440918, - -2.48616099357605, - -2.435706615447998, - -2.392123222351074, - -2.3565993309020996, - -2.330103874206543, - -2.3133597373962402, - -2.30682373046875, - -3.0683560371398926, - -3.064804792404175, - -3.050964117050171, - -3.0272116661071777, - -2.994194984436035, - -2.952815055847168, - -2.904200553894043, - -2.849677324295044, - -2.7907328605651855, - -2.7289748191833496, - -2.666088104248047, - -2.603787660598755, - -2.5437734127044678, - -2.4876818656921387, - -2.4370434284210205, - -2.3932390213012695, - -2.357463836669922, - -2.3306937217712402, - -2.3136587142944336, - -2.30682373046875, - -3.0683560371398926, - -3.0649259090423584, - -3.0512030124664307, - -3.027561664581299, - -2.9946470260620117, - -2.9533565044403076, - -2.9048163890838623, - -2.850351095199585, - -2.7914459705352783, - -2.729708194732666, - -2.666821241378784, - -2.6045010089874268, - -2.5444469451904297, - -2.488297700881958, - -2.437584638595581, - -2.393691062927246, - -2.357814073562622, - -2.3309326171875, - -2.313779830932617, - -2.30682373046875, - -3.0683560371398926, - -3.0648560523986816, - -3.051064968109131, - -3.0273594856262207, - -2.9943859577178955, - -2.9530436992645264, - -2.9044606685638428, - -2.849961757659912, - -2.791033983230591, - -2.7292845249176025, - -2.6663975715637207, - -2.6040890216827393, - -2.544057846069336, - -2.4879419803619385, - -2.4372718334198, - -2.39342999458313, - -2.357611656188965, - -2.3307945728302, - -2.3137099742889404, - -2.30682373046875, - -3.0683560371398926, - -3.0646026134490967, - -3.050565242767334, - -3.0266265869140625, - -2.9934401512145996, - -2.951910972595215, - -2.9031715393066406, - -2.8485517501831055, - -2.789541482925415, - -2.727750062942505, - -2.664863109588623, - -2.6025962829589844, - -2.5426478385925293, - -2.4866528511047363, - -2.4361391067504883, - -2.392484188079834, - -2.3568789958953857, - -2.330294609069824, - -2.3134565353393555, - -2.30682373046875, - -3.0683560371398926, - -3.0641930103302, - -3.049757480621338, - -3.025442600250244, - -2.991912364959717, - -2.9500808715820312, - -2.9010891914367676, - -2.846273899078369, - -2.787130117416382, - -2.725270986557007, - -2.662384271621704, - -2.600184917449951, - -2.540369749069214, - -2.4845705032348633, - -2.4343090057373047, - -2.390956401824951, - -2.3556950092315674, - -2.3294870853424072, - -2.313047170639038, - -2.30682373046875, - -3.0683560371398926, - -3.0636720657348633, - -3.048729419708252, - -3.0239360332489014, - -2.9899678230285645, - -2.947751522064209, - -2.8984389305114746, - -2.843374729156494, - -2.7840609550476074, - -2.722115993499756, - -2.659229278564453, - -2.597115993499756, - -2.537470579147339, - -2.4819202423095703, - -2.4319798946380615, - -2.389011859893799, - -2.3541882038116455, - -2.3284590244293213, - -2.312525987625122, - -2.30682373046875, - -3.0683560371398926, - -3.063095808029175, - -3.0475926399230957, - -3.0222697257995605, - -2.9878175258636475, - -2.945175886154175, - -2.8955078125, - -2.8401684761047363, - -2.780667304992676, - -2.7186269760131836, - -2.6557400226593018, - -2.593722105026245, - -2.53426456451416, - -2.4789891242980957, - -2.4294040203094482, - -2.386861562728882, - -2.3525218963623047, - -2.327322244644165, - -2.3119497299194336, - -2.30682373046875, - -3.0683560371398926, - -3.0625267028808594, - -3.0464701652526855, - -3.0206243991851807, - -2.985694169998169, - -2.9426326751708984, - -2.8926138877868652, - -2.837002754211426, - -2.777316093444824, - -2.715181827545166, - -2.6522951126098633, - -2.5903711318969727, - -2.5310988426208496, - -2.476095199584961, - -2.426860809326172, - -2.3847382068634033, - -2.350876808166504, - -2.326199769973755, - -2.3113808631896973, - -2.30682373046875, - -3.0683560371398926, - -3.0620267391204834, - -3.0454838275909424, - -3.0191783905029297, - -2.983828067779541, - -2.940397262573242, - -2.890070676803589, - -2.8342206478118896, - -2.7743711471557617, - -2.7121543884277344, - -2.6492674350738525, - -2.587425947189331, - -2.5283167362213135, - -2.4735519886016846, - -2.4246256351470947, - -2.3828723430633545, - -2.349430799484253, - -2.3252134323120117, - -2.310880661010742, - -2.30682373046875, - -3.0683560371398926, - -3.061649799346924, - -3.0447402000427246, - -3.0180885791778564, - -2.982421636581421, - -2.9387125968933105, - -2.888153553009033, - -2.8321235179901123, - -2.772150993347168, - -2.709872007369995, - -2.6469852924346924, - -2.5852060317993164, - -2.526219606399536, - -2.471634864807129, - -2.422940731048584, - -2.3814656734466553, - -2.3483407497406006, - -2.324469804763794, - -2.3105037212371826, - -2.30682373046875, - -3.0683560371398926, - -3.061436891555786, - -3.0443201065063477, - -3.017472743988037, - -2.9816269874572754, - -2.937760591506958, - -2.8870701789855957, - -2.8309385776519775, - -2.7708969116210938, - -2.708582639694214, - -2.645695686340332, - -2.583951711654663, - -2.5250346660614014, - -2.4705514907836914, - -2.4219889640808105, - -2.3806710243225098, - -2.3477249145507812, - -2.324049711227417, - -2.310290813446045, - -2.30682373046875, - -3.0683560371398926, - -3.061410903930664, - -3.04426908493042, - -3.01739764213562, - -2.98153018951416, - -2.9376447200775146, - -2.8869383335113525, - -2.830794334411621, - -2.7707440853118896, - -2.708425760269165, - -2.645538806915283, - -2.583799123764038, - -2.524890422821045, - -2.4704196453094482, - -2.421873092651367, - -2.3805742263793945, - -2.3476500511169434, - -2.32399845123291, - -2.310264825820923, - -2.30682373046875, - -3.0683560371398926, - -3.061574935913086, - -3.0445923805236816, - -3.017871856689453, - -2.9821419715881348, - -2.9383773803710938, - -2.8877720832824707, - -2.8317065238952637, - -2.771709680557251, - -2.709418296813965, - -2.646531343460083, - -2.5847644805908203, - -2.5258023738861084, - -2.4712533950805664, - -2.4226057529449463, - -2.381186008453369, - -2.3481240272521973, - -2.324321985244751, - -2.3104288578033447, - -2.30682373046875, - -3.0683560371398926, - -3.06191086769104, - -3.045255184173584, - -3.018843412399292, - -2.98339581489563, - -2.9398794174194336, - -2.88948130607605, - -2.833575963973999, - -2.773688554763794, - -2.7114527225494385, - -2.6485657691955566, - -2.5867435932159424, - -2.527672052383423, - -2.4729626178741455, - -2.424107551574707, - -2.3824398517608643, - -2.3490958213806152, - -2.3249847888946533, - -2.310764789581299, - -2.30682373046875, - -3.0683560371398926, - -3.062382698059082, - -3.0461857318878174, - -3.020207405090332, - -2.9851560592651367, - -2.941987991333008, - -2.8918802738189697, - -2.836200475692749, - -2.7764666080474854, - -2.714308738708496, - -2.6514217853546143, - -2.589521646499634, - -2.5302963256835938, - -2.4753615856170654, - -2.4262161254882812, - -2.384200096130371, - -2.350459575653076, - -2.3259153366088867, - -2.311236619949341, - -2.30682373046875, - -3.0683560371398926, - -3.062938928604126, - -3.047283172607422, - -3.021815776824951, - -2.987231731414795, - -2.944474220275879, - -2.894709587097168, - -2.8392953872680664, - -2.77974271774292, - -2.7176766395568848, - -2.654789924621582, - -2.5927977561950684, - -2.533391237258911, - -2.4781908988952637, - -2.4287023544311523, - -2.3862757682800293, - -2.3520681858062744, - -2.327012538909912, - -2.3117928504943848, - -2.30682373046875, - -3.0683560371398926, - -3.0635194778442383, - -3.0484282970428467, - -3.0234944820404053, - -2.9893980026245117, - -2.9470691680908203, - -2.897662401199341, - -2.8425252437591553, - -2.7831618785858154, - -2.721191644668579, - -2.6583046913146973, - -2.5962166786193848, - -2.53662109375, - -2.4811437129974365, - -2.4312973022460938, - -2.388442039489746, - -2.3537468910217285, - -2.328157901763916, - -2.312373399734497, - -2.30682373046875, - -3.0683560371398926, - -3.064061164855957, - -3.049497365951538, - -3.0250613689422607, - -2.991420269012451, - -2.949491500854492, - -2.900418519973755, - -2.8455402851104736, - -2.786353588104248, - -2.724472761154175, - -2.661585807800293, - -2.5994083881378174, - -2.5396361351013184, - -2.4838998317718506, - -2.4337196350097656, - -2.3904643058776855, - -2.355313777923584, - -2.3292269706726074, - -2.312915325164795, - -2.30682373046875, - -3.0683560371398926, - -3.0645058155059814, - -3.0503742694854736, - -3.0263469219207764, - -2.99307918548584, - -2.9514784812927246, - -2.902679681777954, - -2.8480136394500732, - -2.7889716625213623, - -2.7271642684936523, - -2.6642775535583496, - -2.6020267009735107, - -2.542109489440918, - -2.48616099357605, - -2.435706615447998, - -2.392123222351074, - -2.3565993309020996, - -2.330103874206543, - -2.3133597373962402, - -2.30682373046875 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.05063875764608383, - 0.05038665980100632, - 0.050648145377635956, - 0.05141608789563179, - 0.05266953632235527, - 0.05437429994344711, - 0.05648387596011162, - 0.05894072353839874, - 0.06167782470583916, - 0.06462051719427109, - 0.06768853962421417, - 0.07079818844795227, - 0.0738646611571312, - 0.07680429518222809, - 0.07953691482543945, - 0.08198796957731247, - 0.08409062027931213, - 0.08578749746084213, - 0.08703231811523438, - 0.08779112249612808, - 0.05063875764608383, - 0.046231821179389954, - 0.042451806366443634, - 0.0394018180668354, - 0.03716505318880081, - 0.03580252826213837, - 0.035351403057575226, - 0.035823989659547806, - 0.03720739483833313, - 0.03946388512849808, - 0.042531900107860565, - 0.04632776230573654, - 0.05074792355298996, - 0.055671822279691696, - 0.06096513569355011, - 0.06648349016904831, - 0.07207635045051575, - 0.07759115099906921, - 0.08287747949361801, - 0.08779112249612808, - 0.05063875764608383, - 0.04258200153708458, - 0.035251718014478683, - 0.028847865760326385, - 0.023545119911432266, - 0.019488133490085602, - 0.016787558794021606, - 0.015517063438892365, - 0.015711311250925064, - 0.017364993691444397, - 0.020433012396097183, - 0.024831678718328476, - 0.03044099733233452, - 0.03710797056555748, - 0.044650740921497345, - 0.052863553166389465, - 0.06152239814400673, - 0.07039106637239456, - 0.07922765612602234, - 0.08779112994670868, - 0.05063875764608383, - 0.0398327112197876, - 0.02982812374830246, - 0.020897913724184036, - 0.013285662978887558, - 0.0071990229189395905, - 0.002804011106491089, - 0.00022051483392715454, - -0.0004809945821762085, - 0.000718630850315094, - 0.003786645829677582, - 0.008639376610517502, - 0.015144448727369308, - 0.02312442660331726, - 0.032361626625061035, - 0.042604099959135056, - 0.05357244610786438, - 0.06496747583150864, - 0.07647836953401566, - 0.08779112994670868, - 0.05063875764608383, - 0.0382818728685379, - 0.026768758893013, - 0.016413472592830658, - 0.007498461753129959, - 0.00026691704988479614, - -0.005083896219730377, - -0.008408039808273315, - -0.009614825248718262, - -0.008671343326568604, - -0.005603328347206116, - -0.0004944577813148499, - 0.006515897810459137, - 0.015236519277095795, - 0.025429528206586838, - 0.03681689128279686, - 0.0490880012512207, - 0.06190811097621918, - 0.07492753118276596, - 0.08779112994670868, - 0.05063875764608383, - 0.038097552955150604, - 0.026405151933431625, - 0.015880484133958817, - 0.006810639053583145, - -0.0005569681525230408, - -0.006021380424499512, - -0.009433560073375702, - -0.010700404644012451, - -0.009787358343601227, - -0.006719343364238739, - -0.0015800371766090393, - 0.0054903775453567505, - 0.014299027621746063, - 0.024605635553598404, - 0.036129072308540344, - 0.04855501651763916, - 0.061544500291347504, - 0.07474321126937866, - 0.08779112994670868, - 0.05063875764608383, - 0.039299726486206055, - 0.02877669408917427, - 0.01935672014951706, - 0.011296745389699936, - 0.004816621541976929, - 0.00009313225746154785, - -0.002744913101196289, - -0.0036200731992721558, - -0.0025084763765335083, - 0.0005595386028289795, - 0.005500294268131256, - 0.012179024517536163, - 0.02041354402899742, - 0.029979228973388672, - 0.040615178644657135, - 0.052031248807907104, - 0.06391604244709015, - 0.07594538480043411, - 0.08779112994670868, - 0.05063875764608383, - 0.04175810515880585, - 0.033626407384872437, - 0.02646547183394432, - 0.02047063037753105, - 0.015805400907993317, - 0.01259705051779747, - 0.010933082550764084, - 0.010858893394470215, - 0.012376509606838226, - 0.015444528311491013, - 0.019979260861873627, - 0.025857016444206238, - 0.03291746601462364, - 0.04096800833940506, - 0.04978906363248825, - 0.059140004217624664, - 0.06876575946807861, - 0.0784037634730339, - 0.08779112994670868, - 0.05063875764608383, - 0.04520630091428757, - 0.04042874276638031, - 0.03643639385700226, - 0.03333815932273865, - 0.031218547374010086, - 0.030135378241539, - 0.030118197202682495, - 0.03116748109459877, - 0.03325458988547325, - 0.03632260859012604, - 0.040287844836711884, - 0.04504213482141495, - 0.05045579746365547, - 0.05638115480542183, - 0.06265659630298615, - 0.0691109225153923, - 0.07556809484958649, - 0.08185195922851562, - 0.08779112249612808, - 0.05063875764608383, - 0.049270644783973694, - 0.04844655841588974, - 0.048188984394073486, - 0.048504941165447235, - 0.049385812133550644, - 0.05080756917595863, - 0.052731432020664215, - 0.055104922503232956, - 0.057863298803567886, - 0.06093131750822067, - 0.06422528624534607, - 0.06765536963939667, - 0.0711279883980751, - 0.07454842329025269, - 0.07782337814569473, - 0.08086351305246353, - 0.08358591049909592, - 0.08591630309820175, - 0.08779112249612808, - 0.05063875764608383, - 0.053510695695877075, - 0.05681100860238075, - 0.060449667274951935, - 0.0643274188041687, - 0.06833849102258682, - 0.07237346470355988, - 0.0763222873210907, - 0.08007724583148956, - 0.08353589475154877, - 0.08660391718149185, - 0.08919760584831238, - 0.09124622493982315, - 0.09269388765096664, - 0.09350110590457916, - 0.0936458557844162, - 0.09312419593334198, - 0.09195035696029663, - 0.09015635401010513, - 0.08779112249612808, - 0.05063875764608383, - 0.057466983795166016, - 0.06461566686630249, - 0.07188980281352997, - 0.07909098267555237, - 0.0860227644443512, - 0.09249607473611832, - 0.09833434224128723, - 0.1033782958984375, - 0.10749036818742752, - 0.1105583906173706, - 0.11249866336584091, - 0.11325827240943909, - 0.11281649768352509, - 0.11118537932634354, - 0.10840941965579987, - 0.10456433892250061, - 0.09975501894950867, - 0.09411264210939407, - 0.08779112249612808, - 0.05063875392079353, - 0.06071078032255173, - 0.07101478427648544, - 0.08126968145370483, - 0.09119576960802078, - 0.10052226483821869, - 0.10899478197097778, - 0.11638222634792328, - 0.12248305976390839, - 0.12713086605072021, - 0.1301988810300827, - 0.1316034197807312, - 0.13130615651607513, - 0.12931521236896515, - 0.12568488717079163, - 0.12051421403884888, - 0.11394421756267548, - 0.10615412890911102, - 0.09735643863677979, - 0.08779112249612808, - 0.05063875392079353, - 0.06289057433605194, - 0.07531490921974182, - 0.0875728577375412, - 0.09933003783226013, - 0.11026576161384583, - 0.12008173018693924, - 0.12851019203662872, - 0.1353212296962738, - 0.140329048037529, - 0.14339706301689148, - 0.14444158971309662, - 0.14343412220478058, - 0.140402153134346, - 0.13542838394641876, - 0.12864848971366882, - 0.12024738639593124, - 0.110454261302948, - 0.09953623265028, - 0.08779112249612808, - 0.05063875392079353, - 0.06377014517784119, - 0.07705006003379822, - 0.09011625498533249, - 0.10261232405900955, - 0.11419738084077835, - 0.12455543875694275, - 0.1334039568901062, - 0.14050157368183136, - 0.14565467834472656, - 0.14872267842292786, - 0.14962193369865417, - 0.14832790195941925, - 0.14487585425376892, - 0.13936001062393188, - 0.13193076848983765, - 0.12279078364372253, - 0.1121894121170044, - 0.10041580349206924, - 0.08779112249612808, - 0.05063875392079353, - 0.06325418502092361, - 0.07603221386671066, - 0.08862428367137909, - 0.1006869226694107, - 0.11189107596874237, - 0.12193113565444946, - 0.13053326308727264, - 0.1374627649784088, - 0.1425306349992752, - 0.1455986499786377, - 0.14658312499523163, - 0.1454571932554245, - 0.14225156605243683, - 0.1370536983013153, - 0.1300053596496582, - 0.12129881978034973, - 0.11117156594991684, - 0.09989984333515167, - 0.08779112249612808, - 0.05063875392079353, - 0.06139859929680824, - 0.07237166166305542, - 0.08325861394405365, - 0.09376248717308044, - 0.1035967618227005, - 0.11249320209026337, - 0.12020912021398544, - 0.12653404474258423, - 0.13129545748233795, - 0.13436347246170044, - 0.13565441966056824, - 0.1351330578327179, - 0.13281363248825073, - 0.12875938415527344, - 0.12308092415332794, - 0.1159331426024437, - 0.1075110137462616, - 0.0980442613363266, - 0.08779112249612808, - 0.05063875392079353, - 0.05840447545051575, - 0.06646507233381271, - 0.07460068166255951, - 0.08258938789367676, - 0.09021326154470444, - 0.097264364361763, - 0.10355035215616226, - 0.10889975726604462, - 0.11316666007041931, - 0.1162346825003624, - 0.11802013218402863, - 0.11847428977489471, - 0.11758478730916977, - 0.11537587642669678, - 0.11190782487392426, - 0.10727521777153015, - 0.10160442441701889, - 0.0950501337647438, - 0.08779112249612808, - 0.05063875764608383, - 0.05459626391530037, - 0.05895252898335457, - 0.06358873099088669, - 0.06837839633226395, - 0.07319088280200958, - 0.0778949111700058, - 0.08236218243837357, - 0.086470827460289, - 0.09010876715183258, - 0.09317678958177567, - 0.09559118747711182, - 0.09728612005710602, - 0.09821533411741257, - 0.09835349768400192, - 0.09769683331251144, - 0.09626325964927673, - 0.09409187734127045, - 0.09124191850423813, - 0.08779112249612808, - 0.05063875764608383, - 0.05038665607571602, - 0.05064814165234566, - 0.05141608044505119, - 0.052669525146484375, - 0.05437428876757622, - 0.05648386478424072, - 0.05894071236252785, - 0.06167781352996826, - 0.06462050974369049, - 0.06768852472305298, - 0.07079818099737167, - 0.07386464625597, - 0.0768042802810669, - 0.07953689992427826, - 0.08198796212673187, - 0.08409061282873154, - 0.08578749001026154, - 0.08703231066465378, - 0.08779112249612808 - ], - "y": [ - 0.05063870549201965, - 0.06377359479665756, - 0.07705690711736679, - 0.09012632071971893, - 0.10262531042098999, - 0.11421296000480652, - 0.12457318603992462, - 0.13342337310314178, - 0.14052213728427887, - 0.14567580819129944, - 0.14874383807182312, - 0.14964252710342407, - 0.14834734797477722, - 0.14489366114139557, - 0.13937564194202423, - 0.13194382190704346, - 0.12280093133449554, - 0.11219634115695953, - 0.10041934251785278, - 0.08779116719961166, - 0.05063870549201965, - 0.06292194873094559, - 0.07537684589624405, - 0.0876636654138565, - 0.09944725036621094, - 0.11040617525577545, - 0.12024150788784027, - 0.12868496775627136, - 0.13550624251365662, - 0.14051926136016846, - 0.14358729124069214, - 0.144626647233963, - 0.143608957529068, - 0.14056198298931122, - 0.13556885719299316, - 0.1287657618522644, - 0.12033827602863312, - 0.11051627993583679, - 0.09956769645214081, - 0.08779116719961166, - 0.05063870549201965, - 0.06076667457818985, - 0.0711250975728035, - 0.08143140375614166, - 0.09140448272228241, - 0.10077229142189026, - 0.10927928984165192, - 0.11669344455003738, - 0.12281250953674316, - 0.12746956944465637, - 0.13053759932518005, - 0.13193289935588837, - 0.13161741197109222, - 0.12959976494312286, - 0.12593497335910797, - 0.12072299420833588, - 0.11410601437091827, - 0.10626453161239624, - 0.09741242229938507, - 0.08779116719961166, - 0.05063870921730995, - 0.05754133686423302, - 0.06476239114999771, - 0.07210490107536316, - 0.07936858385801315, - 0.0863552987575531, - 0.09287445992231369, - 0.09874826669692993, - 0.10381647944450378, - 0.10794083774089813, - 0.11100886762142181, - 0.11293686926364899, - 0.11367224156856537, - 0.11319493502378464, - 0.11151797324419022, - 0.10868709534406662, - 0.10477951169013977, - 0.09990183264017105, - 0.09418708831071854, - 0.08779116719961166, - 0.05063870921730995, - 0.053595446050167084, - 0.056978244334459305, - 0.06069482862949371, - 0.06464381515979767, - 0.06871749460697174, - 0.07280474156141281, - 0.07679406553506851, - 0.08057665079832077, - 0.08404932171106339, - 0.08711734414100647, - 0.08969704061746597, - 0.09171804040670395, - 0.09312520921230316, - 0.09388016909360886, - 0.09396232664585114, - 0.09336943924427032, - 0.09211768209934235, - 0.0902411937713623, - 0.08779116719961166, - 0.05063871294260025, - 0.049356602132320404, - 0.048616182059049606, - 0.04843764007091522, - 0.04882584512233734, - 0.04977021366357803, - 0.05124498903751373, - 0.053209930658340454, - 0.055611446499824524, - 0.05838403478264809, - 0.06145206093788147, - 0.06473183631896973, - 0.06813390552997589, - 0.07156545668840408, - 0.07493288815021515, - 0.07814435660839081, - 0.08111225068569183, - 0.08375561982393265, - 0.08600234985351562, - 0.08779116719961166, - 0.05063871294260025, - 0.045284152030944824, - 0.040582358837127686, - 0.03666159138083458, - 0.03362879529595375, - 0.031566694378852844, - 0.030531540513038635, - 0.030551567673683167, - 0.031626228243112564, - 0.03372621536254883, - 0.03679424151778221, - 0.04074661433696747, - 0.045475538820028305, - 0.050852008163928986, - 0.05672936141490936, - 0.06294730305671692, - 0.06933620572090149, - 0.07572180032730103, - 0.08192989975214005, - 0.08779117465019226, - 0.05063871294260025, - 0.04181940108537674, - 0.03374737501144409, - 0.026642806828022003, - 0.02069948986172676, - 0.016079559922218323, - 0.012909013777971268, - 0.011274352669715881, - 0.011220153421163559, - 0.012747906148433685, - 0.01581593230366707, - 0.02034054324030876, - 0.02619832381606102, - 0.03322948142886162, - 0.04124222695827484, - 0.05001799762248993, - 0.059317417442798615, - 0.06888680905103683, - 0.07846514880657196, - 0.08779117465019226, - 0.05063871294260025, - 0.039337821304798126, - 0.028851892799139023, - 0.01946697011590004, - 0.011439032852649689, - 0.004987083375453949, - 0.00028709322214126587, - -0.0025327205657958984, - -0.003395453095436096, - -0.002277553081512451, - 0.0007904767990112305, - 0.0057249367237091064, - 0.01239125058054924, - 0.020607560873031616, - 0.030149754136800766, - 0.040757544338703156, - 0.05214158073067665, - 0.06399133056402206, - 0.07598356902599335, - 0.08779117465019226, - 0.05063871294260025, - 0.03810831531882286, - 0.02642642706632614, - 0.01591169834136963, - 0.006850939244031906, - -0.0005086883902549744, - -0.005966439843177795, - -0.00937344878911972, - -0.010636761784553528, - -0.009721927344799042, - -0.00665389746427536, - -0.0015163719654083252, - 0.0055505260825157166, - 0.014354024082422256, - 0.024653978645801544, - 0.036169443279504776, - 0.04858630895614624, - 0.06156586483120918, - 0.07475405931472778, - 0.08779117465019226, - 0.05063871294260025, - 0.03826413303613663, - 0.02673380821943283, - 0.016362257301807404, - 0.007432390004396439, - 0.0001877918839454651, - -0.005173929035663605, - -0.008506521582603455, - -0.009719066321849823, - -0.008778497576713562, - -0.00571046769618988, - -0.0005986765027046204, - 0.006417453289031982, - 0.015146534889936447, - 0.025350458920001984, - 0.03675089403986931, - 0.049036867916584015, - 0.061873242259025574, - 0.07490988075733185, - 0.08779117465019226, - 0.05063871294260025, - 0.0397883802652359, - 0.029740724712610245, - 0.02076983079314232, - 0.0131203792989254, - 0.007001057267189026, - 0.002578750252723694, - -0.00002588331699371338, - -0.000741817057132721, - 0.00045049935579299927, - 0.003518529236316681, - 0.008378572762012482, - 0.014898084104061127, - 0.022899217903614044, - 0.032163724303245544, - 0.04243888705968857, - 0.05344444140791893, - 0.06488016247749329, - 0.07643412798643112, - 0.08779117465019226, - 0.05063871294260025, - 0.04251588135957718, - 0.035121332854032516, - 0.028656773269176483, - 0.02329852804541588, - 0.019192766398191452, - 0.016451481729745865, - 0.015149436891078949, - 0.015322163701057434, - 0.016964945942163467, - 0.02003297209739685, - 0.024442553520202637, - 0.030073408037424088, - 0.03677194565534592, - 0.04435543715953827, - 0.05261703580617905, - 0.061331383883953094, - 0.07026077061891556, - 0.0791616290807724, - 0.08779117465019226, - 0.05063871294260025, - 0.04615107923746109, - 0.04229257255792618, - 0.03916843235492706, - 0.036863889545202255, - 0.035441793501377106, - 0.034940943121910095, - 0.035374995321035385, - 0.03673211485147476, - 0.03897528350353241, - 0.042043305933475494, - 0.045852504670619965, - 0.050298966467380524, - 0.055261410772800446, - 0.06060446426272392, - 0.06618239730596542, - 0.07184304296970367, - 0.07743200659751892, - 0.08279682695865631, - 0.08779117465019226, - 0.05063871294260025, - 0.050300031900405884, - 0.050477299839258194, - 0.051165685057640076, - 0.052346404641866684, - 0.053987253457307816, - 0.05604347586631775, - 0.05845898017287254, - 0.0611678808927536, - 0.06409627944231033, - 0.06716430932283401, - 0.0702882707118988, - 0.07338295131921768, - 0.0763639435172081, - 0.07914993166923523, - 0.08166491240262985, - 0.08384029567241669, - 0.08561673760414124, - 0.0869457796216011, - 0.08779116719961166, - 0.05063870921730995, - 0.05451313778758049, - 0.058788590133190155, - 0.0633484497666359, - 0.06806833297014236, - 0.07281948626041412, - 0.07747232168912888, - 0.08189991861581802, - 0.08598150312900543, - 0.08960573375225067, - 0.09267375618219376, - 0.09510189294815063, - 0.09682389348745346, - 0.09779279679059982, - 0.09798216819763184, - 0.09738684445619583, - 0.0960230603814125, - 0.0939280241727829, - 0.09115888178348541, - 0.08779116719961166, - 0.05063870921730995, - 0.058333851397037506, - 0.06632579863071442, - 0.07439655810594559, - 0.08232597261667252, - 0.0898977592587471, - 0.09690536558628082, - 0.1031576544046402, - 0.10848407447338104, - 0.11273932456970215, - 0.11580735445022583, - 0.11760446429252625, - 0.11808162927627563, - 0.11722584068775177, - 0.11506043374538422, - 0.11164449155330658, - 0.1070711761713028, - 0.10146524012088776, - 0.09497959911823273, - 0.08779116719961166, - 0.05063870549201965, - 0.06134813278913498, - 0.07227213680744171, - 0.08311275392770767, - 0.09357427060604095, - 0.10337133705615997, - 0.11223669350147247, - 0.11992853879928589, - 0.12623704969882965, - 0.130990132689476, - 0.1340581625699997, - 0.13535743951797485, - 0.13485251367092133, - 0.13255716860294342, - 0.12853401899337769, - 0.12289278209209442, - 0.11578736454248428, - 0.10741157829761505, - 0.0979938805103302, - 0.08779116719961166, - 0.05063870549201965, - 0.06322932988405228, - 0.07598322629928589, - 0.08855250477790833, - 0.10059429705142975, - 0.11178014427423477, - 0.12180492281913757, - 0.13039518892765045, - 0.13731661438941956, - 0.14238038659095764, - 0.14544841647148132, - 0.14643701910972595, - 0.1453191637992859, - 0.14212539792060852, - 0.13694283366203308, - 0.12991280853748322, - 0.12122711539268494, - 0.11112266033887863, - 0.0998750776052475, - 0.08779116719961166, - 0.05063870549201965, - 0.06377359479665756, - 0.07705690711736679, - 0.09012632071971893, - 0.10262531042098999, - 0.11421296000480652, - 0.12457318603992462, - 0.13342337310314178, - 0.14052212238311768, - 0.14567580819129944, - 0.14874383807182312, - 0.14964252710342407, - 0.14834734797477722, - 0.14489366114139557, - 0.13937564194202423, - 0.13194382190704346, - 0.12280093133449554, - 0.11219634115695953, - 0.10041934251785278, - 0.08779116719961166 - ], - "z": [ - -1.0127750635147095, - -1.0172233581542969, - -1.031684398651123, - -1.0557639598846436, - -1.0888051986694336, - -1.1299065351486206, - -1.1779471635818481, - -1.231616497039795, - -1.2894505262374878, - -1.3498718738555908, - -1.4112322330474854, - -1.4718579053878784, - -1.5300952196121216, - -1.5843555927276611, - -1.6331589221954346, - -1.6751739978790283, - -1.7092548608779907, - -1.7344716787338257, - -1.7501366138458252, - -1.7558225393295288, - -1.0127750635147095, - -1.0174736976623535, - -1.032178282737732, - -1.0564879179000854, - -1.0897393226623535, - -1.1310255527496338, - -1.1792203187942505, - -1.2330092191696167, - -1.2909249067306519, - -1.3513875007629395, - -1.412747859954834, - -1.4733322858810425, - -1.531488060951233, - -1.585628867149353, - -1.6342779397964478, - -1.6761081218719482, - -1.709978699684143, - -1.7349655628204346, - -1.7503869533538818, - -1.7558225393295288, - -1.0127750635147095, - -1.0177638530731201, - -1.0327508449554443, - -1.057327151298523, - -1.090822458267212, - -1.132322907447815, - -1.180696725845337, - -1.2346241474151611, - -1.29263436794281, - -1.3531450033187866, - -1.4145053625106812, - -1.4750417470932007, - -1.5331029891967773, - -1.58710515499115, - -1.635575294494629, - -1.6771912574768066, - -1.7108180522918701, - -1.735538125038147, - -1.750677227973938, - -1.7558225393295288, - -1.0127750635147095, - -1.0180625915527344, - -1.0333402156829834, - -1.0581910610198975, - -1.0919371843338013, - -1.1336581707000732, - -1.1822160482406616, - -1.2362862825393677, - -1.29439377784729, - -1.354953646659851, - -1.4163141250610352, - -1.4768011569976807, - -1.5347650051116943, - -1.5886245965957642, - -1.6369106769561768, - -1.6783061027526855, - -1.711681842803955, - -1.7361273765563965, - -1.7509759664535522, - -1.7558225393295288, - -1.0127750635147095, - -1.0183374881744385, - -1.0338823795318604, - -1.058985710144043, - -1.0929627418518066, - -1.1348867416381836, - -1.1836140155792236, - -1.2378153800964355, - -1.2960125207901, - -1.35661780834198, - -1.4179781675338745, - -1.4784198999404907, - -1.5362942218780518, - -1.5900224447250366, - -1.6381391286849976, - -1.679331660270691, - -1.7124764919281006, - -1.7366695404052734, - -1.7512508630752563, - -1.7558225393295288, - -1.0127750635147095, - -1.0185586214065552, - -1.0343186855316162, - -1.059625267982483, - -1.0937881469726562, - -1.1358752250671387, - -1.1847388744354248, - -1.2390458583831787, - -1.297315001487732, - -1.357956886291504, - -1.4193172454833984, - -1.4797223806381226, - -1.537524700164795, - -1.5911473035812378, - -1.6391277313232422, - -1.680156946182251, - -1.7131160497665405, - -1.7371058464050293, - -1.751471996307373, - -1.7558225393295288, - -1.0127750635147095, - -1.0187021493911743, - -1.0346018075942993, - -1.0600402355194092, - -1.0943236351013184, - -1.136516809463501, - -1.1854687929153442, - -1.2398443222045898, - -1.2981603145599365, - -1.3588258028030396, - -1.420186161994934, - -1.4805676937103271, - -1.538323163986206, - -1.5918772220611572, - -1.639769196510315, - -1.6806925535202026, - -1.7135310173034668, - -1.7373889684677124, - -1.7516155242919922, - -1.7558225393295288, - -1.0127750635147095, - -1.0187524557113647, - -1.0347011089324951, - -1.0601856708526611, - -1.0945113897323608, - -1.1367416381835938, - -1.1857247352600098, - -1.2401243448257446, - -1.2984566688537598, - -1.3591305017471313, - -1.4204908609390259, - -1.4808640480041504, - -1.5386030673980713, - -1.5921331644058228, - -1.6399941444396973, - -1.6808803081512451, - -1.7136765718460083, - -1.7374882698059082, - -1.7516658306121826, - -1.7558225393295288, - -1.0127750635147095, - -1.0187041759490967, - -1.0346057415008545, - -1.0600459575653076, - -1.0943310260772705, - -1.1365256309509277, - -1.185478925704956, - -1.239855408668518, - -1.2981719970703125, - -1.3588378429412842, - -1.4201982021331787, - -1.4805793762207031, - -1.5383342504501343, - -1.591887354850769, - -1.6397780179977417, - -1.6806999444961548, - -1.7135367393493652, - -1.7373929023742676, - -1.751617431640625, - -1.7558225393295288, - -1.0127750635147095, - -1.0185623168945312, - -1.0343260765075684, - -1.059636116027832, - -1.0938020944595337, - -1.1358921527862549, - -1.184757947921753, - -1.2390668392181396, - -1.2973371744155884, - -1.357979655265808, - -1.4193400144577026, - -1.479744553565979, - -1.5375455617904663, - -1.5911664962768555, - -1.6391444206237793, - -1.680171012878418, - -1.7131268978118896, - -1.7371132373809814, - -1.7514758110046387, - -1.7558225393295288, - -1.0127750635147095, - -1.0183426141738892, - -1.0338925123214722, - -1.0590004920959473, - -1.0929819345474243, - -1.1349096298217773, - -1.1836400032043457, - -1.2378438711166382, - -1.2960426807403564, - -1.3566488027572632, - -1.4180091619491577, - -1.478450059890747, - -1.5363227128982544, - -1.5900485515594482, - -1.6381620168685913, - -1.6793508529663086, - -1.7124913930892944, - -1.7366796731948853, - -1.751255989074707, - -1.7558225393295288, - -1.0127750635147095, - -1.018068552017212, - -1.0333518981933594, - -1.0582082271575928, - -1.0919593572616577, - -1.133684754371643, - -1.1822463274002075, - -1.2363193035125732, - -1.2944287061691284, - -1.3549896478652954, - -1.41635000705719, - -1.476836085319519, - -1.5347980260849, - -1.5886547565460205, - -1.636937141418457, - -1.678328275680542, - -1.7116990089416504, - -1.7361390590667725, - -1.7509819269180298, - -1.7558225393295288, - -1.0127750635147095, - -1.0177700519561768, - -1.032762885093689, - -1.0573447942733765, - -1.0908452272415161, - -1.132350206375122, - -1.1807277202606201, - -1.234658122062683, - -1.2926702499389648, - -1.3531818389892578, - -1.414542317390442, - -1.4750776290893555, - -1.5331368446350098, - -1.5871362686157227, - -1.635602593421936, - -1.6772141456604004, - -1.7108356952667236, - -1.7355501651763916, - -1.750683307647705, - -1.7558225393295288, - -1.0127750635147095, - -1.0174791812896729, - -1.0321893692016602, - -1.0565041303634644, - -1.089760184288025, - -1.1310505867004395, - -1.1792489290237427, - -1.233040452003479, - -1.2909579277038574, - -1.3514214754104614, - -1.412781834602356, - -1.473365306854248, - -1.5315191745758057, - -1.5856573581695557, - -1.6343029737472534, - -1.6761291027069092, - -1.709994912147522, - -1.7349765300750732, - -1.7503926753997803, - -1.7558225393295288, - -1.0127750635147095, - -1.0172278881072998, - -1.0316933393478394, - -1.0557770729064941, - -1.0888220071792603, - -1.1299266815185547, - -1.177970051765442, - -1.2316415309906006, - -1.2894771099090576, - -1.349899172782898, - -1.4112595319747925, - -1.4718844890594482, - -1.5301203727722168, - -1.5843786001205444, - -1.6331790685653687, - -1.6751909255981445, - -1.7092678546905518, - -1.734480619430542, - -1.7501411437988281, - -1.7558225393295288, - -1.0127750635147095, - -1.0170429944992065, - -1.0313286781311035, - -1.0552425384521484, - -1.0881321430206299, - -1.1291004419326782, - -1.1770298480987549, - -1.2306129932403564, - -1.2883883714675903, - -1.3487799167633057, - -1.4101402759552002, - -1.470795750617981, - -1.5290918350219727, - -1.5834383964538574, - -1.6323528289794922, - -1.6745010614395142, - -1.708733320236206, - -1.7341158390045166, - -1.7499563694000244, - -1.7558225393295288, - -1.0127750635147095, - -1.0169446468353271, - -1.031134843826294, - -1.0549583435058594, - -1.0877654552459717, - -1.1286611557006836, - -1.176530122756958, - -1.2300662994384766, - -1.2878096103668213, - -1.3481849431991577, - -1.4095453023910522, - -1.470216989517212, - -1.5285451412200928, - -1.582938551902771, - -1.631913661956787, - -1.674134373664856, - -1.7084492444992065, - -1.733922004699707, - -1.7498581409454346, - -1.7558225393295288, - -1.0127750635147095, - -1.0169436931610107, - -1.0311328172683716, - -1.0549554824829102, - -1.087761640548706, - -1.1286567449569702, - -1.1765249967575073, - -1.2300606966018677, - -1.2878037691116333, - -1.3481788635253906, - -1.4095392227172852, - -1.470211148262024, - -1.5285395383834839, - -1.5829334259033203, - -1.6319091320037842, - -1.6741306781768799, - -1.7084462642669678, - -1.7339200973510742, - -1.7498570680618286, - -1.7558225393295288, - -1.0127750635147095, - -1.0170400142669678, - -1.031322956085205, - -1.0552340745925903, - -1.0881212949752808, - -1.1290874481201172, - -1.1770150661468506, - -1.2305967807769775, - -1.288371205329895, - -1.3487622737884521, - -1.4101226329803467, - -1.4707785844802856, - -1.5290756225585938, - -1.5834234952926636, - -1.6323397159576416, - -1.674490213394165, - -1.7087249755859375, - -1.7341101169586182, - -1.7499533891677856, - -1.7558225393295288, - -1.0127750635147095, - -1.0172233581542969, - -1.031684398651123, - -1.0557639598846436, - -1.0888051986694336, - -1.1299065351486206, - -1.1779471635818481, - -1.231616497039795, - -1.2894505262374878, - -1.3498718738555908, - -1.4112322330474854, - -1.4718579053878784, - -1.5300952196121216, - -1.5843555927276611, - -1.6331589221954346, - -1.6751739978790283, - -1.7092548608779907, - -1.7344716787338257, - -1.7501366138458252, - -1.7558225393295288 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.08266475796699524, - 0.1017252653837204, - 0.12078184634447098, - 0.1393146812915802, - 0.1568182408809662, - 0.17281508445739746, - 0.18686886131763458, - 0.19859620928764343, - 0.20767724514007568, - 0.21386423707008362, - 0.2169884741306305, - 0.2169646918773651, - 0.21379351615905762, - 0.20756152272224426, - 0.1984386444091797, - 0.18667374551296234, - 0.17258775234222412, - 0.1565648764371872, - 0.1390421986579895, - 0.1204976737499237, - 0.08266475796699524, - 0.10104263573884964, - 0.11943519860506058, - 0.1373407542705536, - 0.15427088737487793, - 0.16976377367973328, - 0.1833968162536621, - 0.19479815661907196, - 0.20365677773952484, - 0.20973104238510132, - 0.212855264544487, - 0.21294420957565308, - 0.20999546349048615, - 0.2040894776582718, - 0.1953873187303543, - 0.1841263771057129, - 0.17061379551887512, - 0.1552182286977768, - 0.13835956156253815, - 0.1204976737499237, - 0.08266475796699524, - 0.0983964279294014, - 0.11421497166156769, - 0.12968888878822327, - 0.1443961262702942, - 0.1579354703426361, - 0.1699376106262207, - 0.18007516860961914, - 0.1880716234445572, - 0.19370883703231812, - 0.196833074092865, - 0.19735905528068542, - 0.19527247548103333, - 0.1906302571296692, - 0.18355900049209595, - 0.17425161600112915, - 0.1629619598388672, - 0.1499979943037033, - 0.1357133537530899, - 0.1204976737499237, - 0.08266475796699524, - 0.09407341480255127, - 0.10568685829639435, - 0.11718831211328506, - 0.12826403975486755, - 0.13861194252967834, - 0.1479497253894806, - 0.15602271258831024, - 0.16261067986488342, - 0.16753390431404114, - 0.17065812647342682, - 0.17189811170101166, - 0.17122003436088562, - 0.16864237189292908, - 0.16423547267913818, - 0.15811952948570251, - 0.1504613757133484, - 0.14146988093852997, - 0.13139033317565918, - 0.1204976812005043, - 0.08266476541757584, - 0.08854205161333084, - 0.0947750061750412, - 0.1011936292052269, - 0.10762281715869904, - 0.11388720571994781, - 0.11981591582298279, - 0.12524724006652832, - 0.13003301620483398, - 0.13404269516468048, - 0.13716691732406616, - 0.13932044804096222, - 0.1404445469379425, - 0.14050856232643127, - 0.13951075077056885, - 0.137478306889534, - 0.13446667790412903, - 0.130558043718338, - 0.12585897743701935, - 0.1204976812005043, - 0.08266476541757584, - 0.08240175247192383, - 0.08266189694404602, - 0.08343812078237534, - 0.08470923453569412, - 0.08644057810306549, - 0.08858491480350494, - 0.09108375757932663, - 0.09386894106864929, - 0.0968644991517067, - 0.09998872131109238, - 0.10315637290477753, - 0.10628106445074081, - 0.10927756130695343, - 0.11206411570310593, - 0.11456472426652908, - 0.11671117693185806, - 0.11844492703676224, - 0.11971867084503174, - 0.1204976812005043, - 0.08266476541757584, - 0.07631790637969971, - 0.07066016644239426, - 0.06584587693214417, - 0.06200634688138962, - 0.05924632027745247, - 0.057641077786684036, - 0.05723440647125244, - 0.0580374039709568, - 0.060028158128261566, - 0.06315237283706665, - 0.06732483208179474, - 0.07243171334266663, - 0.07833372056484222, - 0.08486984670162201, - 0.09186182916164398, - 0.09911893308162689, - 0.10644319653511047, - 0.11363483220338821, - 0.1204976812005043, - 0.08266476541757584, - 0.07094980776309967, - 0.06007038801908493, - 0.05032328516244888, - 0.041974350810050964, - 0.035251349210739136, - 0.03033764660358429, - 0.027367286384105682, - 0.026421286165714264, - 0.02752545475959778, - 0.03064967691898346, - 0.0357087180018425, - 0.04256459325551987, - 0.051030293107032776, - 0.060874879360198975, - 0.07182983309030533, - 0.08359634131193161, - 0.09585341811180115, - 0.10826673358678818, - 0.1204976886510849, - 0.08266477286815643, - 0.06687915325164795, - 0.05204012989997864, - 0.03855246305465698, - 0.02678404003381729, - 0.017055898904800415, - 0.009633384644985199, - 0.004718974232673645, - 0.002446703612804413, - 0.0028785616159439087, - 0.00600278377532959, - 0.011734135448932648, - 0.01991628110408783, - 0.03032602369785309, - 0.04267942160367966, - 0.056639522314071655, - 0.07182551920413971, - 0.08782315999269485, - 0.10419608652591705, - 0.1204976886510849, - 0.08266477286815643, - 0.0645470842719078, - 0.04743959382176399, - 0.03180895000696182, - 0.018081508576869965, - 0.006631724536418915, - -0.002228081226348877, - -0.008256256580352783, - -0.011288344860076904, - -0.011241637170314789, - -0.008117415010929108, - -0.0020009130239486694, - 0.006941050291061401, - 0.018464557826519012, - 0.03225524723529816, - 0.04793698713183403, - 0.06508200615644455, - 0.08322262763977051, - 0.10186401009559631, - 0.1204976886510849, - 0.08266477286815643, - 0.06420630216598511, - 0.04676732048392296, - 0.03082352876663208, - 0.016809813678264618, - 0.005108445882797241, - -0.003961391746997833, - -0.010152317583560944, - -0.013295434415340424, - -0.013305015861988068, - -0.010180793702602386, - -0.004008002579212189, - 0.005044989287853241, - 0.016731247305870056, - 0.030731968581676483, - 0.046665292233228683, - 0.06409658491611481, - 0.08255034685134888, - 0.10152322798967361, - 0.1204976886510849, - 0.08266477286815643, - 0.0658937394618988, - 0.05009616166353226, - 0.03570297360420227, - 0.023106761276721954, - 0.012651138007640839, - 0.004621289670467377, - -0.0007637366652488708, - -0.0033570751547813416, - -0.003087960183620453, - 0.00003626197576522827, - 0.005930356681346893, - 0.014433570206165314, - 0.025313928723335266, - 0.03827466070652008, - 0.05296224728226662, - 0.068976029753685, - 0.08587919175624847, - 0.10321066528558731, - 0.1204976886510849, - 0.08266477286815643, - 0.069426529109478, - 0.05706538259983063, - 0.04591852053999901, - 0.03628998249769211, - 0.02844242751598358, - 0.02258990705013275, - 0.018892057240009308, - 0.017449751496315002, - 0.018302343785762787, - 0.021426565945148468, - 0.026737183332443237, - 0.03408936411142349, - 0.04328254610300064, - 0.054065950214862823, - 0.06614546477794647, - 0.07919158041477203, - 0.09284841269254684, - 0.1067434549331665, - 0.1204976886510849, - 0.08266476541757584, - 0.07442185282707214, - 0.06691977381706238, - 0.060363173484802246, - 0.05493088811635971, - 0.05077110603451729, - 0.04799728840589523, - 0.04668509587645531, - 0.046870339661836624, - 0.04854794964194298, - 0.05167216807603836, - 0.05615777149796486, - 0.06188240647315979, - 0.06868992745876312, - 0.07639463990926743, - 0.08478637039661407, - 0.09363622963428497, - 0.1027028039097786, - 0.11173877865076065, - 0.1204976886510849, - 0.08266476541757584, - 0.08033837378025055, - 0.07859142869710922, - 0.07747159153223038, - 0.07700939476490021, - 0.0772174596786499, - 0.07809010148048401, - 0.07960352301597595, - 0.08171643316745758, - 0.08437120914459229, - 0.08749542385339737, - 0.09100386500358582, - 0.09480082988739014, - 0.0987827479839325, - 0.10284099727869034, - 0.10686488449573517, - 0.1107446476817131, - 0.11437445878982544, - 0.11765529960393906, - 0.1204976812005043, - 0.08266476541757584, - 0.08653495460748672, - 0.09081555902957916, - 0.09538983553647995, - 0.10013299435377121, - 0.10491564869880676, - 0.10960735380649567, - 0.11408013105392456, - 0.11821196973323822, - 0.12189015746116638, - 0.12501437962055206, - 0.12749940156936646, - 0.12927743792533875, - 0.13030000030994415, - 0.1305391937494278, - 0.12998847663402557, - 0.12866289913654327, - 0.12659859657287598, - 0.12385188043117523, - 0.1204976812005043, - 0.08266475796699524, - 0.09234010428190231, - 0.10226751863956451, - 0.11217621713876724, - 0.1217959076166153, - 0.1308641880750656, - 0.13913372159004211, - 0.14637890458106995, - 0.1524021327495575, - 0.1570390909910202, - 0.16016331315040588, - 0.16168956458568573, - 0.16157621145248413, - 0.1598263680934906, - 0.15648773312568665, - 0.15165138244628906, - 0.14544926583766937, - 0.13805054128170013, - 0.12965703010559082, - 0.1204976812005043, - 0.08266475796699524, - 0.09712474048137665, - 0.11170627176761627, - 0.12601162493228912, - 0.13965058326721191, - 0.15225109457969666, - 0.16346947848796844, - 0.17299970984458923, - 0.18058183789253235, - 0.186009019613266, - 0.18913324177265167, - 0.18986926972866058, - 0.18819701671600342, - 0.18416213989257812, - 0.17787465453147888, - 0.16950607299804688, - 0.15928468108177185, - 0.14748930931091309, - 0.13444165885448456, - 0.1204976737499237, - 0.08266475796699524, - 0.1003703624010086, - 0.11810899525880814, - 0.1353967934846878, - 0.1517621874809265, - 0.16675877571105957, - 0.17997750639915466, - 0.19105778634548187, - 0.1996973603963852, - 0.20566058158874512, - 0.208784818649292, - 0.20898479223251343, - 0.20625509321689606, - 0.20067015290260315, - 0.1923823356628418, - 0.18161769211292267, - 0.16866984963417053, - 0.15389202535152435, - 0.1376872956752777, - 0.1204976737499237, - 0.08266475796699524, - 0.1017252653837204, - 0.12078184634447098, - 0.1393146812915802, - 0.1568182408809662, - 0.17281508445739746, - 0.18686886131763458, - 0.19859620928764343, - 0.20767724514007568, - 0.21386423707008362, - 0.2169884741306305, - 0.2169646918773651, - 0.21379351615905762, - 0.20756152272224426, - 0.1984386444091797, - 0.18667374551296234, - 0.17258775234222412, - 0.1565648764371872, - 0.1390421986579895, - 0.1204976737499237 - ], - "y": [ - 0.08266474306583405, - 0.0818406268954277, - 0.08155498653650284, - 0.08181560784578323, - 0.08261538296937943, - 0.08393250405788422, - 0.08573102951049805, - 0.08796190470457077, - 0.09056428074836731, - 0.09346717596054077, - 0.09659139066934586, - 0.09985172748565674, - 0.10315923392772675, - 0.10642369836568832, - 0.10955606400966644, - 0.11247090995311737, - 0.11508870869874954, - 0.11733806133270264, - 0.11915759742259979, - 0.1204977035522461, - 0.08266474306583405, - 0.08800356090068817, - 0.09371275454759598, - 0.09963657706975937, - 0.10561344027519226, - 0.11148031055927277, - 0.11707716435194016, - 0.12225133925676346, - 0.12686167657375336, - 0.13078242540359497, - 0.13390664756298065, - 0.1361491084098816, - 0.13744866847991943, - 0.13776983320713043, - 0.1371038854122162, - 0.1354689598083496, - 0.13290967047214508, - 0.12949582934379578, - 0.12532053887844086, - 0.1204977035522461, - 0.08266474306583405, - 0.09361591190099716, - 0.10478436201810837, - 0.11586543917655945, - 0.1265568882226944, - 0.13656704127788544, - 0.14562289416790009, - 0.15347740054130554, - 0.15991631150245667, - 0.16476400196552277, - 0.16788822412490845, - 0.1692037582397461, - 0.16867473721504211, - 0.16631557047367096, - 0.16219061613082886, - 0.15641240775585175, - 0.14913854002952576, - 0.14056743681430817, - 0.13093288242816925, - 0.1204977035522461, - 0.08266473561525345, - 0.09806949645280838, - 0.11357004195451736, - 0.12874357402324677, - 0.14317616820335388, - 0.15647417306900024, - 0.16827483475208282, - 0.17825627326965332, - 0.18614622950553894, - 0.19172945618629456, - 0.19485366344451904, - 0.19543367624282837, - 0.1934536099433899, - 0.1889675110578537, - 0.18209776282310486, - 0.17303168773651123, - 0.16201665997505188, - 0.14935311675071716, - 0.13538646697998047, - 0.1204977035522461, - 0.08266473561525345, - 0.10088168829679489, - 0.11911772191524506, - 0.13687540590763092, - 0.15367035567760468, - 0.16904443502426147, - 0.18257829546928406, - 0.19390279054641724, - 0.20270898938179016, - 0.20875667035579681, - 0.2118808925151825, - 0.2119964361190796, - 0.2091001272201538, - 0.20327097177505493, - 0.1946680098772049, - 0.18352589011192322, - 0.17014849185943604, - 0.15490078926086426, - 0.13819865882396698, - 0.1204977035522461, - 0.08266473561525345, - 0.10174775123596191, - 0.12082621455192566, - 0.13937973976135254, - 0.15690220892429352, - 0.17291566729545593, - 0.18698328733444214, - 0.19872140884399414, - 0.20780976116657257, - 0.21400049328804016, - 0.21712470054626465, - 0.217097207903862, - 0.21391873061656952, - 0.207675963640213, - 0.19853924214839935, - 0.18675774335861206, - 0.17265284061431885, - 0.15660928189754486, - 0.1390647292137146, - 0.1204977035522461, - 0.08266473561525345, - 0.10057383030653, - 0.118510402739048, - 0.13598518073558807, - 0.1525215208530426, - 0.16766834259033203, - 0.18101245164871216, - 0.19218993186950684, - 0.20089581608772278, - 0.20689265429973602, - 0.2100168764591217, - 0.2101832628250122, - 0.20738725364208221, - 0.20170512795448303, - 0.19329191744327545, - 0.18237705528736115, - 0.16925828158855438, - 0.1542934775352478, - 0.1378908008337021, - 0.1204977035522461, - 0.08266473561525345, - 0.09748713672161102, - 0.11242121458053589, - 0.12705960869789124, - 0.14100301265716553, - 0.153871089220047, - 0.16531284153461456, - 0.17501616477966309, - 0.18271636962890625, - 0.18820342421531677, - 0.19132763147354126, - 0.19200381636619568, - 0.19021350145339966, - 0.18600551784038544, - 0.1794946789741516, - 0.17085853219032288, - 0.16033269464969635, - 0.1482042819261551, - 0.1348041146993637, - 0.1204977035522461, - 0.08266474306583405, - 0.09282217174768448, - 0.10321852564811707, - 0.11357022076845169, - 0.12359488755464554, - 0.1330190747976303, - 0.14158572256565094, - 0.1490611433982849, - 0.1552414447069168, - 0.15995803475379944, - 0.16308225691318512, - 0.16452889144420624, - 0.16425848007202148, - 0.16227838397026062, - 0.15864264965057373, - 0.15345041453838348, - 0.1468433141708374, - 0.13900159299373627, - 0.13013914227485657, - 0.1204977035522461, - 0.08266474306583405, - 0.08708444237709045, - 0.0918995812535286, - 0.0969788134098053, - 0.10218358039855957, - 0.10737191885709763, - 0.1124023050069809, - 0.11713752150535583, - 0.12144839763641357, - 0.12521734833717346, - 0.12834157049655914, - 0.130735844373703, - 0.1323348432779312, - 0.13309496641159058, - 0.13299548625946045, - 0.13203909993171692, - 0.1302519142627716, - 0.1276826560497284, - 0.12440141290426254, - 0.1204977035522461, - 0.08266474306583405, - 0.08089573681354523, - 0.07969097048044205, - 0.07908332347869873, - 0.07908935099840164, - 0.07970890402793884, - 0.08092506974935532, - 0.08270468562841415, - 0.0849992036819458, - 0.0877460390329361, - 0.09087026119232178, - 0.09428665041923523, - 0.09790201485157013, - 0.1016177386045456, - 0.10533246397972107, - 0.10894487053155899, - 0.11235641688108444, - 0.11547404527664185, - 0.11821270734071732, - 0.1204977035522461, - 0.08266474306583405, - 0.07492668181657791, - 0.06791567802429199, - 0.06182299926877022, - 0.056814804673194885, - 0.05302773416042328, - 0.05056506395339966, - 0.04949399083852768, - 0.04984371364116669, - 0.051604703068733215, - 0.054728925228118896, - 0.05913115665316582, - 0.06469132006168365, - 0.07125772535800934, - 0.0786512941122055, - 0.08667033165693283, - 0.09509609639644623, - 0.10369875282049179, - 0.11224365234375, - 0.1204977035522461, - 0.08266474306583405, - 0.06982412934303284, - 0.05784975364804268, - 0.047068268060684204, - 0.0377737432718277, - 0.030219726264476776, - 0.024612270295619965, - 0.02110431343317032, - 0.01979156583547592, - 0.020709827542304993, - 0.023834049701690674, - 0.02907901257276535, - 0.036301642656326294, - 0.04530493542551994, - 0.0558432899415493, - 0.06762926280498505, - 0.08034136146306992, - 0.09363282471895218, - 0.10714109241962433, - 0.1204977035522461, - 0.08266474306583405, - 0.06614100188016891, - 0.05058396980166435, - 0.03641802817583084, - 0.024029545485973358, - 0.013756491243839264, - 0.005879059433937073, - 0.000612109899520874, - -0.0019006356596946716, - -0.0015906766057014465, - 0.0015335455536842346, - 0.007386811077594757, - 0.01580943912267685, - 0.026571720838546753, - 0.03938004747033119, - 0.05388505756855011, - 0.06969112157821655, - 0.08636704087257385, - 0.103457972407341, - 0.12049771100282669, - 0.08266474306583405, - 0.06427644193172455, - 0.046905722469091415, - 0.031026408076286316, - 0.017071634531021118, - 0.00542207807302475, - -0.003604508936405182, - -0.009761922061443329, - -0.01288217306137085, - -0.012880153954029083, - -0.009755931794643402, - -0.003594726324081421, - 0.0054354071617126465, - 0.0170881524682045, - 0.03104563057422638, - 0.04692714661359787, - 0.06429950147867203, - 0.08268879354000092, - 0.10159341990947723, - 0.12049771100282669, - 0.08266474306583405, - 0.06443250179290771, - 0.04721357673406601, - 0.0314776673913002, - 0.017653994262218475, - 0.006119638681411743, - -0.0028107762336730957, - -0.008893653750419617, - -0.01196306198835373, - -0.011935263872146606, - -0.008811041712760925, - -0.0026756152510643005, - 0.006303675472736359, - 0.017881885170936584, - 0.03174319118261337, - 0.04750950634479523, - 0.06475076079368591, - 0.08299665153026581, - 0.1017494723200798, - 0.12049771100282669, - 0.08266474306583405, - 0.0665922611951828, - 0.0514741875231266, - 0.037722907960414886, - 0.025713510811328888, - 0.01577359437942505, - 0.008174285292625427, - 0.003122866153717041, - 0.0007571354508399963, - 0.0011416301131248474, - 0.0042658522725105286, - 0.010044582188129425, - 0.018320195376873016, - 0.028866946697235107, - 0.04139715060591698, - 0.055569034069776535, - 0.0709960088133812, - 0.0872572585940361, - 0.10390923917293549, - 0.12049771100282669, - 0.08266474306583405, - 0.07052168995141983, - 0.05922585725784302, - 0.04908537492156029, - 0.040376827120780945, - 0.0333377942442894, - 0.028160251677036285, - 0.024985432624816895, - 0.02389996498823166, - 0.02493344247341156, - 0.02805766463279724, - 0.03318741172552109, - 0.04018276557326317, - 0.048852916806936264, - 0.058961350470781326, - 0.0702323466539383, - 0.0823584720492363, - 0.09500892460346222, - 0.10783866047859192, - 0.1204977035522461, - 0.08266474306583405, - 0.07579496502876282, - 0.06962856650352478, - 0.06433375179767609, - 0.060054946690797806, - 0.056908879429101944, - 0.054981350898742676, - 0.05432493984699249, - 0.054957568645477295, - 0.05686196684837341, - 0.059986189007759094, - 0.06424501538276672, - 0.06952226907014847, - 0.07567401230335236, - 0.08253243565559387, - 0.08991046994924545, - 0.0976068452000618, - 0.10541163384914398, - 0.1131119355559349, - 0.1204977035522461, - 0.08266474306583405, - 0.0818406343460083, - 0.08155499398708344, - 0.08181561529636383, - 0.08261539787054062, - 0.08393251895904541, - 0.08573104441165924, - 0.08796191960573196, - 0.0905643031001091, - 0.09346719086170197, - 0.09659141302108765, - 0.09985174238681793, - 0.10315924882888794, - 0.10642371326684952, - 0.10955607891082764, - 0.11247091740369797, - 0.11508871614933014, - 0.11733806133270264, - 0.11915760487318039, - 0.1204977035522461 - ], - "z": [ - -1.6532952785491943, - -1.657569169998169, - -1.6720463037490845, - -1.6963318586349487, - -1.7297632694244385, - -1.7714287042617798, - -1.8201916217803955, - -1.8747217655181885, - -1.9335318803787231, - -1.995017647743225, - -2.057502031326294, - -2.1192805767059326, - -2.1786680221557617, - -2.2340445518493652, - -2.2838995456695557, - -2.3268730640411377, - -2.361793041229248, - -2.387706995010376, - -2.4039077758789062, - -2.4099538326263428, - -1.6532952785491943, - -1.6572952270507812, - -1.6715058088302612, - -1.6955395936965942, - -1.7287406921386719, - -1.7702038288116455, - -1.8187978267669678, - -1.8731971979141235, - -1.9319180250167847, - -1.9933586120605469, - -2.055842876434326, - -2.117666721343994, - -2.1771433353424072, - -2.2326507568359375, - -2.282674789428711, - -2.325850486755371, - -2.3610007762908936, - -2.3871665000915527, - -2.4036338329315186, - -2.4099538326263428, - -1.6532952785491943, - -1.65714693069458, - -1.671213150024414, - -1.6951106786727905, - -1.7281873226165771, - -1.7695409059524536, - -1.81804358959198, - -1.872372031211853, - -1.931044578552246, - -1.9924606084823608, - -2.0549449920654297, - -2.116793155670166, - -2.1763181686401367, - -2.23189640045166, - -2.2820117473602295, - -2.3252971172332764, - -2.36057186126709, - -2.386873960494995, - -2.4034855365753174, - -2.4099538326263428, - -1.6532952785491943, - -1.6571403741836548, - -1.6712002754211426, - -1.6950918436050415, - -1.7281630039215088, - -1.7695116996765137, - -1.8180103302001953, - -1.87233567237854, - -1.9310060739517212, - -1.9924211502075195, - -2.054905414581299, - -2.1167547702789307, - -2.1762819290161133, - -2.231863260269165, - -2.281982660293579, - -2.325272798538208, - -2.360553026199341, - -2.3868610858917236, - -2.4034790992736816, - -2.4099538326263428, - -1.6532952785491943, - -1.6572763919830322, - -1.6714684963226318, - -1.69548499584198, - -1.728670358657837, - -1.7701194286346436, - -1.8187018632888794, - -1.8730921745300293, - -1.9318068027496338, - -1.9932442903518677, - -2.0557286739349365, - -2.117555618286133, - -2.1770384311676025, - -2.2325549125671387, - -2.282590389251709, - -2.325780153274536, - -2.3609461784362793, - -2.387129306793213, - -2.4036149978637695, - -2.4099538326263428, - -1.6532952785491943, - -1.6575400829315186, - -1.6719887256622314, - -1.6962475776672363, - -1.7296544313430786, - -1.7712982892990112, - -1.8200432062149048, - -1.8745594024658203, - -1.933359980583191, - -1.9948409795761108, - -2.0573253631591797, - -2.1191086769104004, - -2.1785056591033936, - -2.233896017074585, - -2.283769130706787, - -2.3267641067504883, - -2.361708641052246, - -2.3876495361328125, - -2.403878688812256, - -2.4099538326263428, - -1.6532952785491943, - -1.6579029560089111, - -1.6727046966552734, - -1.6972968578338623, - -1.731008529663086, - -1.7729203701019287, - -1.8218889236450195, - -1.876578450202942, - -1.9354972839355469, - -1.9970382452011108, - -2.0595226287841797, - -2.121245861053467, - -2.1805245876312256, - -2.2357418537139893, - -2.285391092300415, - -2.328118324279785, - -2.362758159637451, - -2.3883652687072754, - -2.4042415618896484, - -2.4099538326263428, - -1.6532952785491943, - -1.6583256721496582, - -1.6735385656356812, - -1.698519229888916, - -1.732586145401001, - -1.7748099565505981, - -1.8240389823913574, - -1.8789304494857788, - -1.9379870891571045, - -1.9995977878570557, - -2.062082290649414, - -2.1237356662750244, - -2.1828768253326416, - -2.237891912460327, - -2.287280797958374, - -2.3296959400177, - -2.363980531692505, - -2.3891992568969727, - -2.4046642780303955, - -2.4099538326263428, - -1.6532952785491943, - -1.6587624549865723, - -1.6744002103805542, - -1.6997822523117065, - -1.7342159748077393, - -1.7767622470855713, - -1.8262605667114258, - -1.881360650062561, - -1.9405595064163208, - -2.00224232673645, - -2.0647268295288086, - -2.1263082027435303, - -2.185307025909424, - -2.2401134967803955, - -2.2892332077026367, - -2.3313257694244385, - -2.365243434906006, - -2.3900609016418457, - -2.4051010608673096, - -2.4099538326263428, - -1.6532952785491943, - -1.659165859222412, - -1.6751961708068848, - -1.70094895362854, - -1.7357217073440552, - -1.7785658836364746, - -1.828312873840332, - -1.8836055994033813, - -1.9429359436035156, - -2.004685401916504, - -2.0671699047088623, - -2.1286845207214355, - -2.187551975250244, - -2.2421658039093018, - -2.291036605834961, - -2.332831621170044, - -2.366410255432129, - -2.390856981277466, - -2.4055047035217285, - -2.4099538326263428, - -1.6532952785491943, - -1.6594923734664917, - -1.6758402585983276, - -1.7018930912017822, - -1.7369400262832642, - -1.7800252437591553, - -1.8299733400344849, - -1.8854219913482666, - -1.9448587894439697, - -2.006662130355835, - -2.0691466331481934, - -2.1306073665618896, - -2.18936824798584, - -2.243826389312744, - -2.2924959659576416, - -2.334049940109253, - -2.367354393005371, - -2.391500949859619, - -2.4058310985565186, - -2.4099538326263428, - -1.6532952785491943, - -1.659706473350525, - -1.676262617111206, - -1.7025121450424194, - -1.737738847732544, - -1.7809821367263794, - -1.8310621976852417, - -1.886613130569458, - -1.9461196660995483, - -2.00795841217041, - -2.0704426765441895, - -2.131868362426758, - -2.1905593872070312, - -2.244915246963501, - -2.2934529781341553, - -2.334848642349243, - -2.3679733276367188, - -2.391923189163208, - -2.4060451984405518, - -2.4099538326263428, - -1.6532952785491943, - -1.6597850322723389, - -1.6764174699783325, - -1.7027390003204346, - -1.7380318641662598, - -1.7813329696655273, - -1.8314614295959473, - -1.8870497941970825, - -1.9465818405151367, - -2.0084335803985596, - -2.070918083190918, - -2.1323306560516357, - -2.1909961700439453, - -2.245314359664917, - -2.2938036918640137, - -2.335141658782959, - -2.3682003021240234, - -2.392078161239624, - -2.406123638153076, - -2.4099538326263428, - -1.6532952785491943, - -1.6597193479537964, - -1.6762880086898804, - -1.7025493383407593, - -1.7377870082855225, - -1.7810397148132324, - -1.8311277627944946, - -1.886684775352478, - -1.9461954832077026, - -2.0080363750457764, - -2.0705208778381348, - -2.131944179534912, - -2.190631151199341, - -2.244980812072754, - -2.2935104370117188, - -2.3348968029022217, - -2.3680105209350586, - -2.391948699951172, - -2.4060580730438232, - -2.4099538326263428, - -1.6532952785491943, - -1.6595168113708496, - -1.6758882999420166, - -1.7019635438919067, - -1.7370309829711914, - -1.7801340818405151, - -1.8300973176956177, - -1.8855575323104858, - -1.9450021982192993, - -2.006809711456299, - -2.069293975830078, - -2.130750894546509, - -2.1895039081573486, - -2.243950128555298, - -2.292604923248291, - -2.3341407775878906, - -2.367424726486206, - -2.3915491104125977, - -2.405855417251587, - -2.4099538326263428, - -1.6532952785491943, - -1.6591991186141968, - -1.6752617359161377, - -1.701045036315918, - -1.7358455657958984, - -1.7787142992019653, - -1.828481674194336, - -1.883790373802185, - -1.943131446838379, - -2.0048866271972656, - -2.067370891571045, - -2.128880262374878, - -2.1877365112304688, - -2.2423346042633057, - -2.291185140609741, - -2.3329553604125977, - -2.366506338119507, - -2.3909223079681396, - -2.4055378437042236, - -2.4099538326263428, - -1.6532952785491943, - -1.6588008403778076, - -1.674476146697998, - -1.6998934745788574, - -1.7343595027923584, - -1.7769341468811035, - -1.8264561891555786, - -1.8815746307373047, - -1.9407860040664673, - -2.0024752616882324, - -2.0649595260620117, - -2.1265347003936768, - -2.185520887374878, - -2.240309238433838, - -2.28940486907959, - -2.3314692974090576, - -2.3653547763824463, - -2.39013671875, - -2.405139446258545, - -2.4099538326263428, - -1.6532952785491943, - -1.658365249633789, - -1.673616647720337, - -1.6986335515975952, - -1.7327336072921753, - -1.7749866247177124, - -1.8242400884628296, - -1.879150390625, - -1.9382199048995972, - -1.9998371601104736, - -2.062321424484253, - -2.1239686012268066, - -2.1830966472625732, - -2.2380928993225098, - -2.2874574661254883, - -2.329843521118164, - -2.3640947341918945, - -2.389277219772339, - -2.4047038555145264, - -2.4099538326263428, - -1.6532952785491943, - -1.6579391956329346, - -1.6727763414382935, - -1.6974018812179565, - -1.7311441898345947, - -1.7730827331542969, - -1.8220735788345337, - -1.8767805099487305, - -1.935711145401001, - -1.997258186340332, - -2.0597424507141113, - -2.1214599609375, - -2.1807267665863037, - -2.235926628112793, - -2.285553455352783, - -2.328253984451294, - -2.362863063812256, - -2.388437032699585, - -2.404277801513672, - -2.4099538326263428, - -1.6532952785491943, - -1.657569169998169, - -1.6720463037490845, - -1.6963318586349487, - -1.7297632694244385, - -1.7714287042617798, - -1.8201916217803955, - -1.8747217655181885, - -1.9335318803787231, - -1.995017647743225, - -2.057502031326294, - -2.1192805767059326, - -2.1786680221557617, - -2.2340445518493652, - -2.2838995456695557, - -2.3268730640411377, - -2.361793041229248, - -2.387706995010376, - -2.4039077758789062, - -2.4099538326263428 - ] - }, - { - "alphahull": 0, - "color": "#FF6692", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.15341779589653015, - 0.12830643355846405, - 0.10336072742938995, - 0.07926112413406372, - 0.05666501075029373, - 0.036188751459121704, - 0.018390871584415436, - 0.0037568658590316772, - -0.0073141008615493774, - -0.014520034193992615, - -0.017664387822151184, - -0.01666136085987091, - -0.011538341641426086, - -0.0024350732564926147, - 0.010400146245956421, - 0.026617206633090973, - 0.04577374458312988, - 0.0673472061753273, - 0.09074914455413818, - 0.1153411939740181, - 0.15341779589653015, - 0.1293797791004181, - 0.10547812283039093, - 0.08236482739448547, - 0.06067034602165222, - 0.040986478328704834, - 0.02385012060403824, - 0.00972871482372284, - -0.0009925514459609985, - -0.00802120566368103, - -0.0111655592918396, - -0.010339811444282532, - -0.005566492676734924, - 0.003024175763130188, - 0.015197880566120148, - 0.030622556805610657, - 0.048877447843551636, - 0.06946460902690887, - 0.09182247519493103, - 0.1153411939740181, - 0.15341779589653015, - 0.13302986323833466, - 0.11267874389886856, - 0.09291955828666687, - 0.07429128885269165, - 0.0573020800948143, - 0.04241533577442169, - 0.03003714233636856, - 0.02050512284040451, - 0.014079302549362183, - 0.010934963822364807, - 0.011157862842082977, - 0.014741942286491394, - 0.02158939093351364, - 0.031513482332229614, - 0.04424349218606949, - 0.05943217873573303, - 0.0766652300953865, - 0.09547257423400879, - 0.1153411939740181, - 0.15341779589653015, - 0.13886116445064545, - 0.12418229132890701, - 0.10978156328201294, - 0.09605179727077484, - 0.08336751908063889, - 0.07207471132278442, - 0.062481410801410675, - 0.05484931170940399, - 0.04938659071922302, - 0.04624225199222565, - 0.04550205171108246, - 0.04718621075153351, - 0.05124877393245697, - 0.0575789213180542, - 0.06600400060415268, - 0.0762941837310791, - 0.08816877007484436, - 0.10130387544631958, - 0.1153411865234375, - 0.15341779589653015, - 0.14624176919460297, - 0.13874216377735138, - 0.13112357258796692, - 0.1235937774181366, - 0.1163581907749176, - 0.10961418598890305, - 0.10354571044445038, - 0.09831830114126205, - 0.094074547290802, - 0.09093020111322403, - 0.08897104859352112, - 0.08825050294399261, - 0.08878825604915619, - 0.09056960046291351, - 0.09354598075151443, - 0.09763619303703308, - 0.10272864997386932, - 0.1086844727396965, - 0.1153411865234375, - 0.15341779589653015, - 0.15437187254428864, - 0.15478059649467468, - 0.1546328365802765, - 0.1539326310157776, - 0.1526990532875061, - 0.15096576511859894, - 0.14878004789352417, - 0.14620153605937958, - 0.14330053329467773, - 0.14015619456768036, - 0.13685427606105804, - 0.1334848552942276, - 0.13013984262943268, - 0.12691046297550201, - 0.12388483434915543, - 0.12114546447992325, - 0.11876708269119263, - 0.11681456863880157, - 0.1153411865234375, - 0.15341779589653015, - 0.1623704433441162, - 0.17055955529212952, - 0.17776179313659668, - 0.18378067016601562, - 0.18845199048519135, - 0.19164836406707764, - 0.1932826042175293, - 0.19331011176109314, - 0.19173015654087067, - 0.1885858178138733, - 0.1839628666639328, - 0.17798741161823273, - 0.17082244157791138, - 0.16266341507434845, - 0.15373286604881287, - 0.14427441358566284, - 0.13454604148864746, - 0.12481313943862915, - 0.1153411865234375, - 0.15341779589653015, - 0.16937071084976196, - 0.18436916172504425, - 0.19800403714179993, - 0.20990338921546936, - 0.21974264085292816, - 0.22725342214107513, - 0.23223084211349487, - 0.23453913629055023, - 0.23411531746387482, - 0.23097097873687744, - 0.2251918762922287, - 0.2169356346130371, - 0.20642748475074768, - 0.19395406544208527, - 0.1798555999994278, - 0.1645166575908661, - 0.1483556479215622, - 0.1318134218454361, - 0.1153411865234375, - 0.15341779589653015, - 0.1746141016483307, - 0.19471292197704315, - 0.2131659984588623, - 0.22946999967098236, - 0.24318015575408936, - 0.2539225220680237, - 0.2614040970802307, - 0.26542073488235474, - 0.26586294174194336, - 0.2627185583114624, - 0.2560734748840332, - 0.24610888957977295, - 0.23309661448001862, - 0.21739158034324646, - 0.1994222104549408, - 0.17967861890792847, - 0.1586994081735611, - 0.13705681264400482, - 0.1153411790728569, - 0.15341779589653015, - 0.1775324046611786, - 0.2004699409008026, - 0.22160467505455017, - 0.24036014080047607, - 0.25622475147247314, - 0.2687656879425049, - 0.2776409983634949, - 0.2826084494590759, - 0.28353261947631836, - 0.2803882658481598, - 0.2732611894607544, - 0.2623457908630371, - 0.24793978035449982, - 0.23043617606163025, - 0.2103123664855957, - 0.18811729550361633, - 0.16445641219615936, - 0.13997511565685272, - 0.1153411790728569, - 0.15341779589653015, - 0.17780938744544983, - 0.20101633667945862, - 0.2224055826663971, - 0.24139371514320374, - 0.2574627995491028, - 0.27017444372177124, - 0.2791820168495178, - 0.2842397391796112, - 0.28520965576171875, - 0.2820652723312378, - 0.2748924791812897, - 0.26388680934906006, - 0.24934855103492737, - 0.2316742241382599, - 0.21134594082832336, - 0.18891820311546326, - 0.16500280797481537, - 0.14025208353996277, - 0.1153411790728569, - 0.15341779589653015, - 0.1754150092601776, - 0.19629289209842682, - 0.2154819369316101, - 0.2324587106704712, - 0.24676014482975006, - 0.257996141910553, - 0.2658601999282837, - 0.2701377868652344, - 0.2707122564315796, - 0.26756787300109863, - 0.26079052686691284, - 0.2505649924278259, - 0.23717021942138672, - 0.22097158432006836, - 0.20241093635559082, - 0.18199455738067627, - 0.16027937829494476, - 0.13785772025585175, - 0.1153411790728569, - 0.15341779589653015, - 0.1706087589263916, - 0.18681150674819946, - 0.20158402621746063, - 0.21452337503433228, - 0.2252766191959381, - 0.23355042934417725, - 0.23911911249160767, - 0.24183079600334167, - 0.24161145091056824, - 0.23846709728240967, - 0.23248353600502014, - 0.2238239198923111, - 0.212724506855011, - 0.19948804378509521, - 0.1844755858182907, - 0.1680966466665268, - 0.1507979780435562, - 0.13305146992206573, - 0.1153411790728569, - 0.15341779589653015, - 0.16391146183013916, - 0.17359958589076996, - 0.18221786618232727, - 0.18953126668930054, - 0.19534026086330414, - 0.1994863897562027, - 0.2018565833568573, - 0.20238618552684784, - 0.2010607272386551, - 0.19791638851165771, - 0.1930389255285263, - 0.18656139075756073, - 0.17866046726703644, - 0.16955167055130005, - 0.15948347747325897, - 0.14873048663139343, - 0.1375860720872879, - 0.1263541728258133, - 0.1153411865234375, - 0.15341779589653015, - 0.15604887902736664, - 0.15808889269828796, - 0.1594821661710739, - 0.16019070148468018, - 0.16019517183303833, - 0.15949547290802002, - 0.15811066329479218, - 0.1560785323381424, - 0.1534545123577118, - 0.15031017363071442, - 0.14673128724098206, - 0.1428154706954956, - 0.13866953551769257, - 0.13440659642219543, - 0.1301429122686386, - 0.12599478662014008, - 0.12207537144422531, - 0.11849159002304077, - 0.1153411865234375, - 0.15341779589653015, - 0.14787304401397705, - 0.1419602334499359, - 0.13584062457084656, - 0.12968116998672485, - 0.12364987283945084, - 0.11791124939918518, - 0.11262184381484985, - 0.10792592167854309, - 0.1039515808224678, - 0.10080724209547043, - 0.09857866168022156, - 0.09732663631439209, - 0.09708531945943832, - 0.09786128997802734, - 0.09963338077068329, - 0.10235324501991272, - 0.10594671964645386, - 0.11031575500965118, - 0.1153411865234375, - 0.15341779589653015, - 0.1402699202299118, - 0.1269613653421402, - 0.11385516822338104, - 0.10130880773067474, - 0.08966454118490219, - 0.07923996448516846, - 0.07031945884227753, - 0.06314634531736374, - 0.05791629105806351, - 0.05477195233106613, - 0.053799085319042206, - 0.05502425879240036, - 0.0584140345454216, - 0.0638759434223175, - 0.07126101106405258, - 0.0803677886724472, - 0.09094785153865814, - 0.10271263122558594, - 0.1153411865234375, - 0.15341779589653015, - 0.13406343758106232, - 0.11471769958734512, - 0.0959082692861557, - 0.0781482458114624, - 0.061922065913677216, - 0.0476723313331604, - 0.03578773885965347, - 0.02659246325492859, - 0.020337358117103577, - 0.0171930193901062, - 0.017245203256607056, - 0.020492538809776306, - 0.02684638649225235, - 0.03613346070051193, - 0.04810044914484024, - 0.06242088973522186, - 0.07870417833328247, - 0.09650614112615585, - 0.1153411939740181, - 0.15341779589653015, - 0.1299261599779129, - 0.1065559908747673, - 0.08394478261470795, - 0.06270928680896759, - 0.04342878609895706, - 0.02662917971611023, - 0.0127687007188797, - 0.0022254735231399536, - -0.004712939262390137, - -0.007857292890548706, - -0.00712178647518158, - -0.002526506781578064, - 0.005803242325782776, - 0.01764017343521118, - 0.03266149014234543, - 0.05045740306377411, - 0.07054247707128525, - 0.09236886352300644, - 0.1153411939740181, - 0.15341779589653015, - 0.12830643355846405, - 0.10336072742938995, - 0.07926112413406372, - 0.05666501075029373, - 0.036188751459121704, - 0.018390871584415436, - 0.0037568658590316772, - -0.0073141008615493774, - -0.014520034193992615, - -0.017664387822151184, - -0.01666136085987091, - -0.011538341641426086, - -0.0024350732564926147, - 0.010400146245956421, - 0.026617206633090973, - 0.04577374458312988, - 0.0673472061753273, - 0.09074914455413818, - 0.1153411939740181 - ], - "y": [ - 0.15341776609420776, - 0.15237870812416077, - 0.15084867179393768, - 0.14886939525604248, - 0.14649488031864166, - 0.1437898874282837, - 0.1408282071352005, - 0.13769061863422394, - 0.13446271419525146, - 0.13123252987861633, - 0.12808819115161896, - 0.12511546909809113, - 0.12239544093608856, - 0.12000230699777603, - 0.11800134181976318, - 0.11644713580608368, - 0.11538207530975342, - 0.1148352101445198, - 0.11482146382331848, - 0.11534121632575989, - 0.15341776609420776, - 0.16049093008041382, - 0.16685183346271515, - 0.1723269820213318, - 0.1767670065164566, - 0.1800508350133896, - 0.18208885192871094, - 0.1828254908323288, - 0.18224063515663147, - 0.18035025894641876, - 0.1772059202194214, - 0.17289340496063232, - 0.16753031313419342, - 0.16126295924186707, - 0.15426228940486908, - 0.14671926200389862, - 0.13883964717388153, - 0.13083836436271667, - 0.12293368577957153, - 0.11534121632575989, - 0.15341776609420776, - 0.16780851781368256, - 0.18128740787506104, - 0.1934867948293686, - 0.20407387614250183, - 0.212759867310524, - 0.21930783987045288, - 0.22353921830654144, - 0.22533853352069855, - 0.22465673089027405, - 0.22151237726211548, - 0.2159912884235382, - 0.20824404060840607, - 0.1984819620847702, - 0.18697132170200348, - 0.17402613162994385, - 0.15999945998191833, - 0.14527395367622375, - 0.13025127351284027, - 0.11534121632575989, - 0.15341776609420776, - 0.17353850603103638, - 0.1925911158323288, - 0.21005584299564362, - 0.2254563271999359, - 0.23837246000766754, - 0.24845194816589355, - 0.25541985034942627, - 0.25908607244491577, - 0.25935059785842896, - 0.2562062740325928, - 0.24973881244659424, - 0.2401246577501297, - 0.22762605547904968, - 0.21258392930030823, - 0.19540858268737793, - 0.17656852304935455, - 0.15657764673233032, - 0.13598127663135529, - 0.11534120887517929, - 0.15341776609420776, - 0.17705997824668884, - 0.199537992477417, - 0.22023862600326538, - 0.23859727382659912, - 0.254113107919693, - 0.2663629353046417, - 0.2750126123428345, - 0.27982616424560547, - 0.2806723117828369, - 0.27752798795700073, - 0.2704789340496063, - 0.2597174048423767, - 0.24553704261779785, - 0.22832457721233368, - 0.20854952931404114, - 0.18675129115581512, - 0.16352452337741852, - 0.13950273394584656, - 0.11534120887517929, - 0.15341776609420776, - 0.17799130082130432, - 0.20137521624565125, - 0.22293168306350708, - 0.24207265675067902, - 0.2582760453224182, - 0.27109986543655396, - 0.28019434213638306, - 0.2853112816810608, - 0.2863112688064575, - 0.28316694498062134, - 0.27596408128738403, - 0.2648991346359253, - 0.2502739727497101, - 0.2324875295162201, - 0.21202492713928223, - 0.18944434821605682, - 0.16536176204681396, - 0.14043405652046204, - 0.11534120887517929, - 0.15341776609420776, - 0.17623156309127808, - 0.19790375232696533, - 0.21784314513206482, - 0.23550590872764587, - 0.25041016936302185, - 0.2621494233608246, - 0.2704034447669983, - 0.2749471068382263, - 0.27565646171569824, - 0.27251213788986206, - 0.2655998766422272, - 0.2551082968711853, - 0.2413235306739807, - 0.22462165355682373, - 0.2054581642150879, - 0.18435582518577576, - 0.16189029812812805, - 0.1386743187904358, - 0.11534120887517929, - 0.15341776609420776, - 0.17197145521640778, - 0.18949975073337555, - 0.2055244892835617, - 0.2196086049079895, - 0.23136785626411438, - 0.24048154056072235, - 0.24670106172561646, - 0.24985671043395996, - 0.2498624324798584, - 0.24671810865402222, - 0.24050946533679962, - 0.23140588402748108, - 0.21965566277503967, - 0.20557934045791626, - 0.18956086039543152, - 0.17203716933727264, - 0.15348629653453827, - 0.13441422581672668, - 0.11534120887517929, - 0.15341776609420776, - 0.16567263007164001, - 0.17707392573356628, - 0.1873106062412262, - 0.19610346853733063, - 0.2032126486301422, - 0.2084442675113678, - 0.21165558695793152, - 0.21275900304317474, - 0.2117244303226471, - 0.20858009159564972, - 0.2034117579460144, - 0.19636040925979614, - 0.18761835992336273, - 0.1774241179227829, - 0.16605572402477264, - 0.15382327139377594, - 0.1410604566335678, - 0.12811540067195892, - 0.11534121632575989, - 0.15341776609420776, - 0.15801766514778137, - 0.1619727909564972, - 0.16517522931098938, - 0.167537659406662, - 0.16899560391902924, - 0.16950932145118713, - 0.16906479001045227, - 0.16767412424087524, - 0.1653752624988556, - 0.16223092377185822, - 0.1583268791437149, - 0.1537696123123169, - 0.14868341386318207, - 0.14320705831050873, - 0.137489914894104, - 0.13168790936470032, - 0.1259593367576599, - 0.12046043574810028, - 0.11534121632575989, - 0.15341776609420776, - 0.14983609318733215, - 0.14583280682563782, - 0.14151710271835327, - 0.1370067149400711, - 0.13242465257644653, - 0.12789592146873474, - 0.12354402989149094, - 0.1194877102971077, - 0.11583759635686874, - 0.11269325762987137, - 0.11014047265052795, - 0.10824885219335556, - 0.10707001388072968, - 0.10663610696792603, - 0.10695896297693253, - 0.10802978277206421, - 0.10981935262680054, - 0.11227886378765106, - 0.11534121632575989, - 0.15341776609420776, - 0.1420145183801651, - 0.13040299713611603, - 0.11889994889497757, - 0.10781913250684738, - 0.09746283292770386, - 0.08811350911855698, - 0.08002620935440063, - 0.07342152297496796, - 0.06847960501909256, - 0.06533526629209518, - 0.06407427787780762, - 0.06473103165626526, - 0.06728760898113251, - 0.07167427986860275, - 0.0777713879942894, - 0.08541262149810791, - 0.09438954293727875, - 0.10445728152990341, - 0.11534121632575989, - 0.15341776609420776, - 0.13540051877498627, - 0.11735540628433228, - 0.09977467358112335, - 0.08313785493373871, - 0.06789880245923996, - 0.0544731542468071, - 0.04322713613510132, - 0.03446752578020096, - 0.02843325585126877, - 0.025288917124271393, - 0.02512028068304062, - 0.027931958436965942, - 0.03364725410938263, - 0.04211024194955826, - 0.05309010297060013, - 0.06628734618425369, - 0.081341952085495, - 0.09784327447414398, - 0.11534121632575989, - 0.15341776609420776, - 0.13071082532405853, - 0.10810393840074539, - 0.08621379733085632, - 0.06563746929168701, - 0.046936266124248505, - 0.0306202694773674, - 0.01713455468416214, - 0.006846979260444641, - 0.00003816187381744385, - -0.003106161952018738, - -0.0025002509355545044, - 0.0018393844366073608, - 0.009794369339942932, - 0.021147698163986206, - 0.03558971732854843, - 0.052726469933986664, - 0.07209047675132751, - 0.09315358102321625, - 0.11534122377634048, - 0.15341776609420776, - 0.12845364212989807, - 0.10365115851163864, - 0.07968686521053314, - 0.05721443146467209, - 0.03684687614440918, - 0.01913975179195404, - 0.004576042294502258, - -0.006446942687034607, - -0.013628542423248291, - -0.016772866249084473, - -0.015794172883033752, - -0.010719135403633118, - -0.0016861557960510254, - 0.011058308184146881, - 0.02716667950153351, - 0.04619953781366348, - 0.06763769686222076, - 0.09089641273021698, - 0.11534122377634048, - 0.15341776609420776, - 0.1288735717535019, - 0.10447955876588821, - 0.0809011459350586, - 0.05878148227930069, - 0.038723938167095184, - 0.021275609731674194, - 0.0069124698638916016, - -0.0039736926555633545, - -0.011085957288742065, - -0.014230281114578247, - -0.0133209228515625, - -0.008382707834243774, - 0.0004497021436691284, - 0.012935370206832886, - 0.02873373031616211, - 0.04741382598876953, - 0.06846610456705093, - 0.0913163423538208, - 0.11534122377634048, - 0.15341776609420776, - 0.13192512094974518, - 0.11049940437078476, - 0.08972509205341339, - 0.07016881555318832, - 0.05236406624317169, - 0.03679646551609039, - 0.023890674114227295, - 0.013998739421367645, - 0.007390469312667847, - 0.004246145486831665, - 0.004651501774787903, - 0.008595496416091919, - 0.015970565378665924, - 0.026575498282909393, - 0.04012107104063034, - 0.05623776465654373, - 0.07448594272136688, - 0.0943678766489029, - 0.11534122377634048, - 0.15341776609420776, - 0.13727758824825287, - 0.12105834484100342, - 0.10520247370004654, - 0.09014246612787247, - 0.07628913968801498, - 0.06402036547660828, - 0.05367080122232437, - 0.04552276432514191, - 0.03979850560426712, - 0.036654166877269745, - 0.03617551922798157, - 0.038375623524188995, - 0.04319446533918381, - 0.05050057917833328, - 0.06009471416473389, - 0.07171514630317688, - 0.08504489064216614, - 0.09972034394741058, - 0.11534121632575989, - 0.15341776609420776, - 0.14435096085071564, - 0.13501214981079102, - 0.12565608322620392, - 0.11653796583414078, - 0.1079065203666687, - 0.09999719262123108, - 0.09302571415901184, - 0.08718227595090866, - 0.08262624591588974, - 0.07948191463947296, - 0.07783503830432892, - 0.07773054391145706, - 0.07917128503322601, - 0.0821179747581482, - 0.0864902138710022, - 0.09216875582933426, - 0.09899868816137314, - 0.10679371654987335, - 0.11534121632575989, - 0.15341776609420776, - 0.15237870812416077, - 0.15084868669509888, - 0.14886941015720367, - 0.14649489521980286, - 0.14378990232944489, - 0.1408282220363617, - 0.13769063353538513, - 0.13446272909641266, - 0.13123255968093872, - 0.12808822095394135, - 0.1251154989004135, - 0.12239546328783035, - 0.12000232934951782, - 0.11800136417150497, - 0.11644715070724487, - 0.11538208276033401, - 0.1148352175951004, - 0.11482147127389908, - 0.11534121632575989 - ], - "z": [ - -3.0683560371398926, - -3.0644443035125732, - -3.05025315284729, - -3.026169538497925, - -2.9928503036499023, - -2.951204299926758, - -2.90236759185791, - -2.8476722240448, - -2.7886104583740234, - -2.726792812347412, - -2.6639060974121094, - -2.6016652584075928, - -2.5417683124542236, - -2.485848903656006, - -2.4354324340820312, - -2.3918943405151367, - -2.356421947479248, - -2.3299827575683594, - -2.313298463821411, - -2.30682373046875, - -3.0683560371398926, - -3.0639851093292236, - -3.049347162246704, - -3.02484130859375, - -2.991136312484741, - -2.9491512775421143, - -2.900031566619873, - -2.8451168537139893, - -2.785905361175537, - -2.7240121364593506, - -2.6611251831054688, - -2.5989601612091064, - -2.539212942123413, - -2.4835128784179688, - -2.433379650115967, - -2.3901803493499756, - -2.3550937175750732, - -2.3290767669677734, - -2.3128392696380615, - -2.30682373046875, - -3.0683560371398926, - -3.06343674659729, - -3.0482654571533203, - -3.0232555866241455, - -2.9890899658203125, - -2.946700096130371, - -2.897242307662964, - -2.8420658111572266, - -2.7826755046844482, - -2.720691680908203, - -2.6578049659729004, - -2.5957305431365967, - -2.5361618995666504, - -2.4807236194610596, - -2.4309282302856445, - -2.388134002685547, - -2.3535079956054688, - -2.3279950618743896, - -2.312290906906128, - -2.30682373046875, - -3.0683560371398926, - -3.0628585815429688, - -3.0471251010894775, - -3.0215840339660645, - -2.9869327545166016, - -2.9441161155700684, - -2.8943021297454834, - -2.8388495445251465, - -2.779271125793457, - -2.717191696166992, - -2.6543047428131104, - -2.5923259258270264, - -2.5329456329345703, - -2.477783441543579, - -2.428344488143921, - -2.385976791381836, - -2.3518364429473877, - -2.326854705810547, - -2.3117127418518066, - -2.30682373046875, - -3.0683560371398926, - -3.0623135566711426, - -3.0460495948791504, - -3.020007848739624, - -2.984898567199707, - -2.9416794776916504, - -2.8915295600891113, - -2.8358166217803955, - -2.7760605812072754, - -2.7138912677764893, - -2.6510043144226074, - -2.5891153812408447, - -2.5299127101898193, - -2.475010871887207, - -2.425907850265503, - -2.3839426040649414, - -2.3502602577209473, - -2.325779438018799, - -2.3111677169799805, - -2.30682373046875, - -3.0683560371398926, - -3.0618605613708496, - -3.0451560020446777, - -3.018697738647461, - -2.983207941055298, - -2.9396543502807617, - -2.8892252445220947, - -2.8332958221435547, - -2.7733922004699707, - -2.7111480236053467, - -2.648261070251465, - -2.58644700050354, - -2.5273919105529785, - -2.4727065563201904, - -2.4238827228546143, - -2.3822519779205322, - -2.348950147628784, - -2.324885606765747, - -2.3107144832611084, - -2.30682373046875, - -3.0683560371398926, - -3.0615484714508057, - -3.0445404052734375, - -3.0177958011627197, - -2.982043743133545, - -2.938260078430176, - -2.887638568878174, - -2.8315603733062744, - -2.771554946899414, - -2.709259271621704, - -2.6463723182678223, - -2.5846097469329834, - -2.525656223297119, - -2.4711198806762695, - -2.422488212585449, - -2.3810880184173584, - -2.348048210144043, - -2.324270248413086, - -2.3104026317596436, - -2.30682373046875, - -3.0683560371398926, - -3.0614116191864014, - -3.0442702770233154, - -3.017399549484253, - -2.981532573699951, - -2.937647581100464, - -2.88694167137146, - -2.8307981491088867, - -2.7707479000091553, - -2.7084295749664307, - -2.645542860031128, - -2.5838029384613037, - -2.5248939990997314, - -2.4704229831695557, - -2.4218759536743164, - -2.3805766105651855, - -2.347651958465576, - -2.3239998817443848, - -2.31026554107666, - -2.30682373046875, - -3.0683560371398926, - -3.061464309692383, - -3.0443742275238037, - -3.017552137374878, - -2.981729507446289, - -2.9378833770751953, - -2.8872101306915283, - -2.8310916423797607, - -2.7710587978363037, - -2.7087490558624268, - -2.645862340927124, - -2.584113597869873, - -2.5251877307891846, - -2.470691442489624, - -2.422111749649048, - -2.3807735443115234, - -2.347804546356201, - -2.324104070663452, - -2.3103184700012207, - -2.30682373046875, - -3.0683560371398926, - -3.0617010593414307, - -3.0448415279388428, - -3.0182371139526367, - -2.9826133251190186, - -2.9389421939849854, - -2.8884146213531494, - -2.832409381866455, - -2.772453546524048, - -2.7101831436157227, - -2.647296190261841, - -2.5855085849761963, - -2.5265052318573, - -2.471896171569824, - -2.423170328140259, - -2.381657361984253, - -2.348489284515381, - -2.324571132659912, - -2.3105552196502686, - -2.30682373046875, - -3.0683560371398926, - -3.062096357345581, - -3.045621156692505, - -3.0193798542022705, - -2.984088182449341, - -2.940708637237549, - -2.890424966812134, - -2.834608316421509, - -2.7747814655303955, - -2.712576150894165, - -2.649689197540283, - -2.587836265563965, - -2.5287044048309326, - -2.4739062786102295, - -2.4249370098114014, - -2.383132219314575, - -2.3496322631835938, - -2.325350761413574, - -2.310950517654419, - -2.30682373046875, - -3.0683560371398926, - -3.0626072883605957, - -3.046628952026367, - -3.0208568572998047, - -2.985994338989258, - -2.9429919719696045, - -2.8930230140686035, - -2.8374502658843994, - -2.777789831161499, - -2.7156689167022705, - -2.6527819633483887, - -2.5908446311950684, - -2.5315463542938232, - -2.476504325866699, - -2.427220344543457, - -2.385038375854492, - -2.351109266281128, - -2.3263585567474365, - -2.3114612102508545, - -2.30682373046875, - -3.0683560371398926, - -3.063178062438965, - -3.047755241394043, - -3.022508144378662, - -2.9881250858306885, - -2.9455442428588867, - -2.8959271907806396, - -2.8406271934509277, - -2.7811527252197266, - -2.7191262245178223, - -2.6562395095825195, - -2.594207763671875, - -2.5347232818603516, - -2.4794087409973145, - -2.4297726154327393, - -2.387169122695923, - -2.3527605533599854, - -2.3274850845336914, - -2.3120322227478027, - -2.30682373046875, - -3.0683560371398926, - -3.0637474060058594, - -3.0488784313201904, - -3.0241544246673584, - -2.9902496337890625, - -2.948089361190796, - -2.8988230228424072, - -2.84379506111145, - -2.78450608253479, - -2.7225735187530518, - -2.659686803817749, - -2.5975608825683594, - -2.537891149520874, - -2.482304573059082, - -2.4323174953460693, - -2.389293909072876, - -2.3544068336486816, - -2.3286080360412598, - -2.3126015663146973, - -2.30682373046875, - -3.0683560371398926, - -3.064253568649292, - -3.0498766899108887, - -3.0256175994873047, - -2.992137908935547, - -2.9503509998321533, - -2.9013967514038086, - -2.8466103076934814, - -2.7874860763549805, - -2.725637197494507, - -2.662750244140625, - -2.600541114807129, - -2.540706157684326, - -2.4848780632019043, - -2.434579372406006, - -2.3911819458007812, - -2.355870008468628, - -2.329606294631958, - -2.313107490539551, - -2.30682373046875, - -3.0683560371398926, - -3.064641237258911, - -3.0506415367126465, - -3.0267388820648193, - -2.9935851097106934, - -2.952084541320801, - -2.903369188308716, - -2.8487677574157715, - -2.7897701263427734, - -2.727985143661499, - -2.6650984287261963, - -2.6028249263763428, - -2.5428638458251953, - -2.4868505001068115, - -2.436312675476074, - -2.3926291465759277, - -2.3569912910461426, - -2.330371379852295, - -2.313495397567749, - -2.30682373046875, - -3.0683560371398926, - -3.064868927001953, - -3.051090717315674, - -3.0273969173431396, - -2.994434356689453, - -2.953101634979248, - -2.904526710510254, - -2.85003399848938, - -2.7911105155944824, - -2.729363203048706, - -2.666476249694824, - -2.6041653156280518, - -2.5441300868988037, - -2.4880080223083496, - -2.4373300075531006, - -2.3934783935546875, - -2.357649326324463, - -2.330820322036743, - -2.313723087310791, - -2.30682373046875, - -3.0683560371398926, - -3.0649116039276123, - -3.0511748790740967, - -3.0275204181671143, - -2.994593620300293, - -2.9532926082611084, - -2.9047439098358154, - -2.850271701812744, - -2.7913620471954346, - -2.729621648788452, - -2.6667349338531494, - -2.604416847229004, - -2.544367790222168, - -2.488225221633911, - -2.437520742416382, - -2.3936376571655273, - -2.3577728271484375, - -2.330904483795166, - -2.31376576423645, - -2.30682373046875, - -3.0683560371398926, - -3.0647647380828857, - -3.0508852005004883, - -3.0270960330963135, - -2.9940457344055176, - -2.952636241912842, - -2.9039971828460693, - -2.849454879760742, - -2.790497303009033, - -2.7287328243255615, - -2.6658458709716797, - -2.6035523414611816, - -2.543550968170166, - -2.487478494644165, - -2.4368646144866943, - -2.393090009689331, - -2.3573484420776367, - -2.3306150436401367, - -2.3136188983917236, - -2.30682373046875, - -3.0683560371398926, - -3.0644443035125732, - -3.05025315284729, - -3.026169538497925, - -2.9928503036499023, - -2.951204299926758, - -2.90236759185791, - -2.8476722240448, - -2.7886104583740234, - -2.726792812347412, - -2.6639060974121094, - -2.6016652584075928, - -2.5417683124542236, - -2.485848903656006, - -2.4354324340820312, - -2.3918943405151367, - -2.356421947479248, - -2.3299827575683594, - -2.313298463821411, - -2.30682373046875 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.26079121232032776, - 0.24752072989940643, - 0.23310698568820953, - 0.21794316172599792, - 0.20244291424751282, - 0.18702901899814606, - 0.17212194204330444, - 0.1581282913684845, - 0.1454298198223114, - 0.13437286019325256, - 0.12525904178619385, - 0.11833696067333221, - 0.11379542946815491, - 0.11175834387540817, - 0.11228126287460327, - 0.1153499186038971, - 0.1208806037902832, - 0.12872245907783508, - 0.13866159319877625, - 0.15042686462402344, - 0.26079121232032776, - 0.2481989860534668, - 0.2344449907541275, - 0.21990442276000977, - 0.20497392117977142, - 0.19006074965000153, - 0.17557169497013092, - 0.16190198063850403, - 0.1494244635105133, - 0.13847953081130981, - 0.1293657273054123, - 0.12233161926269531, - 0.11756911128759384, - 0.11520810425281525, - 0.11531300097703934, - 0.1178809404373169, - 0.12284186482429504, - 0.13006046414375305, - 0.13933983445167542, - 0.15042686462402344, - 0.26079121232032776, - 0.25016024708747864, - 0.23831400275230408, - 0.22557568550109863, - 0.21229270100593567, - 0.19882743060588837, - 0.1855471283197403, - 0.17281407117843628, - 0.16097556054592133, - 0.1503545492887497, - 0.14124073088169098, - 0.13388271629810333, - 0.1284812092781067, - 0.12518353760242462, - 0.12407967448234558, - 0.12519970536231995, - 0.1285131275653839, - 0.13392949104309082, - 0.14130109548568726, - 0.15042686462402344, - 0.26079121232032776, - 0.2531919777393341, - 0.24429479241371155, - 0.23434235155582428, - 0.223606139421463, - 0.21237903833389282, - 0.2009672373533249, - 0.18968208134174347, - 0.17883135378360748, - 0.16871106624603271, - 0.159597247838974, - 0.1517384946346283, - 0.14534921944141388, - 0.1406036615371704, - 0.13763126730918884, - 0.13651315867900848, - 0.13727977871894836, - 0.1399102658033371, - 0.14433282613754272, - 0.15042686462402344, - 0.26079121232032776, - 0.25696563720703125, - 0.2517392039299011, - 0.24525444209575653, - 0.23768825829029083, - 0.2292470484972, - 0.2201610505580902, - 0.2106781005859375, - 0.20105688273906708, - 0.19155985116958618, - 0.18244603276252747, - 0.17396403849124908, - 0.1663452386856079, - 0.15979745984077454, - 0.15449929237365723, - 0.1505952775478363, - 0.1481918841600418, - 0.14735467731952667, - 0.14810651540756226, - 0.15042686462402344, - 0.26079121232032776, - 0.2610723376274109, - 0.25984054803848267, - 0.2571294605731964, - 0.253013014793396, - 0.24760355055332184, - 0.24104857444763184, - 0.23352688550949097, - 0.2252436876296997, - 0.21642489731311798, - 0.20731107890605927, - 0.19815082848072052, - 0.18919402360916138, - 0.18068498373031616, - 0.17285579442977905, - 0.16592004895210266, - 0.1600669026374817, - 0.15545602142810822, - 0.1522131860256195, - 0.15042686462402344, - 0.26079121232032776, - 0.2650669813156128, - 0.26772087812423706, - 0.26868054270744324, - 0.26791977882385254, - 0.2654593288898468, - 0.2613663375377655, - 0.25575241446495056, - 0.24877072870731354, - 0.24061168730258942, - 0.2314978688955307, - 0.22167786955833435, - 0.21141955256462097, - 0.20100274682044983, - 0.1907115876674652, - 0.180826798081398, - 0.17161798477172852, - 0.1633363664150238, - 0.1562078446149826, - 0.15042684972286224, - 0.26079121232032776, - 0.26851674914360046, - 0.27452629804611206, - 0.2786559760570526, - 0.28079313039779663, - 0.2808794677257538, - 0.27891260385513306, - 0.2749462127685547, - 0.2690885066986084, - 0.26149922609329224, - 0.2523854076862335, - 0.2419956475496292, - 0.2306133508682251, - 0.21854901313781738, - 0.206131711602211, - 0.1937001496553421, - 0.1815934181213379, - 0.1701417863368988, - 0.15965759754180908, - 0.15042684972286224, - 0.26079121232032776, - 0.27104777097702026, - 0.27951931953430176, - 0.28597477078437805, - 0.29023808240890503, - 0.29219290614128113, - 0.29178595542907715, - 0.2890283465385437, - 0.28399524092674255, - 0.2768239974975586, - 0.2677101790904999, - 0.25690239667892456, - 0.24469546973705292, - 0.23142236471176147, - 0.21744515001773834, - 0.2031450718641281, - 0.18891219794750214, - 0.1751347780227661, - 0.16218861937522888, - 0.15042684972286224, - 0.26079121232032776, - 0.27238577604293823, - 0.28215882182121277, - 0.2898437976837158, - 0.29523104429244995, - 0.2981736660003662, - 0.29859137535095215, - 0.2964727282524109, - 0.29187560081481934, - 0.28492531180381775, - 0.27581149339675903, - 0.26478275656700134, - 0.2521398961544037, - 0.23822778463363647, - 0.2234259396791458, - 0.20813807845115662, - 0.1927812248468399, - 0.17777429521083832, - 0.16352662444114685, - 0.15042684972286224, - 0.26079121232032776, - 0.27238577604293823, - 0.28215882182121277, - 0.2898437976837158, - 0.29523104429244995, - 0.2981736660003662, - 0.29859137535095215, - 0.2964727282524109, - 0.29187560081481934, - 0.28492531180381775, - 0.27581149339675903, - 0.26478275656700134, - 0.2521398961544037, - 0.23822778463363647, - 0.2234259396791458, - 0.20813807845115662, - 0.1927812248468399, - 0.17777429521083832, - 0.16352662444114685, - 0.15042684972286224, - 0.26079121232032776, - 0.27104777097702026, - 0.27951931953430176, - 0.28597477078437805, - 0.29023808240890503, - 0.29219290614128113, - 0.29178595542907715, - 0.2890283465385437, - 0.28399524092674255, - 0.2768239974975586, - 0.2677101790904999, - 0.25690239667892456, - 0.24469546973705292, - 0.23142236471176147, - 0.21744515001773834, - 0.2031450718641281, - 0.18891219794750214, - 0.1751347780227661, - 0.16218861937522888, - 0.15042684972286224, - 0.26079121232032776, - 0.26851674914360046, - 0.27452629804611206, - 0.2786559760570526, - 0.28079313039779663, - 0.2808794677257538, - 0.27891260385513306, - 0.2749462127685547, - 0.2690885066986084, - 0.26149922609329224, - 0.2523854076862335, - 0.2419956475496292, - 0.2306133657693863, - 0.21854901313781738, - 0.206131711602211, - 0.1937001496553421, - 0.1815934181213379, - 0.1701417863368988, - 0.15965759754180908, - 0.15042684972286224, - 0.26079121232032776, - 0.2650669813156128, - 0.26772087812423706, - 0.26868054270744324, - 0.26791977882385254, - 0.2654593288898468, - 0.2613663077354431, - 0.25575241446495056, - 0.24877071380615234, - 0.24061167240142822, - 0.2314978539943695, - 0.22167786955833435, - 0.21141955256462097, - 0.20100274682044983, - 0.1907115876674652, - 0.18082678318023682, - 0.17161798477172852, - 0.1633363664150238, - 0.1562078446149826, - 0.15042684972286224, - 0.26079121232032776, - 0.2610723376274109, - 0.25984054803848267, - 0.2571294605731964, - 0.2530130445957184, - 0.24760356545448303, - 0.24104857444763184, - 0.23352690041065216, - 0.2252436876296997, - 0.21642489731311798, - 0.20731107890605927, - 0.1981508433818817, - 0.18919402360916138, - 0.18068498373031616, - 0.17285580933094025, - 0.16592004895210266, - 0.1600669026374817, - 0.15545602142810822, - 0.1522131860256195, - 0.15042686462402344, - 0.26079121232032776, - 0.25696563720703125, - 0.2517392039299011, - 0.24525445699691772, - 0.23768827319145203, - 0.2292470633983612, - 0.2201610654592514, - 0.2106781154870987, - 0.20105691254138947, - 0.19155986607074738, - 0.18244604766368866, - 0.17396405339241028, - 0.1663452684879303, - 0.15979747474193573, - 0.15449930727481842, - 0.1505952924489975, - 0.148191899061203, - 0.14735469222068787, - 0.14810651540756226, - 0.15042686462402344, - 0.26079121232032776, - 0.2531919777393341, - 0.24429479241371155, - 0.23434235155582428, - 0.2236061543226242, - 0.21237903833389282, - 0.20096725225448608, - 0.18968208134174347, - 0.17883135378360748, - 0.16871106624603271, - 0.159597247838974, - 0.1517385095357895, - 0.14534921944141388, - 0.1406036615371704, - 0.13763128221035004, - 0.13651315867900848, - 0.13727979362010956, - 0.1399102658033371, - 0.14433282613754272, - 0.15042686462402344, - 0.26079121232032776, - 0.25016024708747864, - 0.23831400275230408, - 0.22557567059993744, - 0.21229270100593567, - 0.19882743060588837, - 0.1855471283197403, - 0.17281405627727509, - 0.16097554564476013, - 0.1503545343875885, - 0.14124071598052979, - 0.13388270139694214, - 0.1284811943769455, - 0.12518352270126343, - 0.12407966703176498, - 0.12519970536231995, - 0.12851311266422272, - 0.13392949104309082, - 0.14130109548568726, - 0.15042686462402344, - 0.26079121232032776, - 0.2481989711523056, - 0.2344449907541275, - 0.21990442276000977, - 0.20497392117977142, - 0.19006074965000153, - 0.17557168006896973, - 0.16190196573734283, - 0.1494244635105133, - 0.13847953081130981, - 0.1293657124042511, - 0.12233160436153412, - 0.11756909638643265, - 0.11520808935165405, - 0.11531298607587814, - 0.1178809255361557, - 0.12284185737371445, - 0.13006046414375305, - 0.13933983445167542, - 0.15042686462402344, - 0.26079121232032776, - 0.24752072989940643, - 0.23310698568820953, - 0.21794316172599792, - 0.20244291424751282, - 0.18702901899814606, - 0.17212194204330444, - 0.1581282913684845, - 0.1454298198223114, - 0.13437286019325256, - 0.12525904178619385, - 0.11833696067333221, - 0.11379542946815491, - 0.11175834387540817, - 0.11228126287460327, - 0.1153499186038971, - 0.1208806037902832, - 0.12872245907783508, - 0.13866159319877625, - 0.15042686462402344 - ], - "y": [ - 0.08693040907382965, - 0.08677318692207336, - 0.08611851185560226, - 0.08498424291610718, - 0.08340131491422653, - 0.0814129114151001, - 0.07907327264547348, - 0.07644620537757874, - 0.07360338419675827, - 0.07062234729528427, - 0.06758441030979156, - 0.06457243859767914, - 0.06166859343647957, - 0.058952078223228455, - 0.0564970038831234, - 0.05437032878398895, - 0.05263005942106247, - 0.051323678344488144, - 0.050486814230680466, - 0.05014229193329811, - 0.08693040162324905, - 0.09087289124727249, - 0.09420609474182129, - 0.09683909267187119, - 0.09870006889104843, - 0.09973826259374619, - 0.09992533922195435, - 0.09925621002912521, - 0.09774912893772125, - 0.0954451858997345, - 0.09240724891424179, - 0.08871817588806152, - 0.08447859436273575, - 0.07980415225028992, - 0.07482235133647919, - 0.06966908276081085, - 0.06448491662740707, - 0.05941126495599747, - 0.05458652228116989, - 0.05014229193329811, - 0.08693040162324905, - 0.09451818466186523, - 0.10139724612236023, - 0.10737995058298111, - 0.11230309307575226, - 0.11603240668773651, - 0.11846615374088287, - 0.11953793466091156, - 0.11921852827072144, - 0.1175166442990303, - 0.1144787073135376, - 0.1101875752210617, - 0.1047603189945221, - 0.09834495931863785, - 0.09111650288105011, - 0.08327211439609528, - 0.075025774538517, - 0.06660241633653641, - 0.058231811970472336, - 0.05014228820800781, - 0.08693040162324905, - 0.0973140299320221, - 0.10691268742084503, - 0.11546453833580017, - 0.12273630499839783, - 0.1285296380519867, - 0.13268649578094482, - 0.1350935399532318, - 0.1356850564479828, - 0.134444922208786, - 0.1314069926738739, - 0.12665410339832306, - 0.12031592428684235, - 0.11256532371044159, - 0.10361373424530029, - 0.09370531141757965, - 0.08311035484075546, - 0.07211785763502121, - 0.06102766469120979, - 0.05014228820800781, - 0.08693040162324905, - 0.09895747154951096, - 0.11015473306179047, - 0.12021675705909729, - 0.12886907160282135, - 0.1358756721019745, - 0.14104542136192322, - 0.14423732459545135, - 0.14536428451538086, - 0.1443955898284912, - 0.1413576602935791, - 0.13633334636688232, - 0.1294597089290619, - 0.12092423439025879, - 0.11095976829528809, - 0.09983809292316437, - 0.08786258101463318, - 0.07535990327596664, - 0.06267110258340836, - 0.05014228820800781, - 0.08693040162324905, - 0.09927040338516235, - 0.11077207326889038, - 0.12112164497375488, - 0.1300368458032608, - 0.13727445900440216, - 0.14263707399368286, - 0.1459784209728241, - 0.1472073495388031, - 0.1462903469800949, - 0.1432524025440216, - 0.13817641139030457, - 0.13120080530643463, - 0.12251589447259903, - 0.11235855519771576, - 0.10100585967302322, - 0.08876746892929077, - 0.07597723603248596, - 0.06298403441905975, - 0.05014228820800781, - 0.08693040162324905, - 0.09821892529726028, - 0.1086977869272232, - 0.11808114498853683, - 0.12611305713653564, - 0.1325744241476059, - 0.13728898763656616, - 0.14012818038463593, - 0.14101451635360718, - 0.1399238407611847, - 0.13688591122627258, - 0.13198357820510864, - 0.12535056471824646, - 0.11716780811548233, - 0.1076585203409195, - 0.09708207845687866, - 0.08572696894407272, - 0.07390295714139938, - 0.061932556331157684, - 0.05014228820800781, - 0.08693040162324905, - 0.09591697156429291, - 0.10415667295455933, - 0.11142472922801971, - 0.11752291023731232, - 0.12228487432003021, - 0.12558071315288544, - 0.1273205280303955, - 0.1274568736553192, - 0.1259860098361969, - 0.1229480654001236, - 0.11842592060565948, - 0.11254291236400604, - 0.10545952618122101, - 0.09736897051334381, - 0.08849193155765533, - 0.0790705531835556, - 0.06936183571815491, - 0.05963059887290001, - 0.05014228820800781, - 0.08693040162324905, - 0.09261399507522583, - 0.09764081239700317, - 0.1018737405538559, - 0.10519730299711227, - 0.10752085596323013, - 0.10878100991249084, - 0.1089433953166008, - 0.10800358653068542, - 0.10598720610141754, - 0.10294926911592484, - 0.09897264093160629, - 0.09416577965021133, - 0.08865982294082642, - 0.08260495215654373, - 0.0761663168668747, - 0.06951955705881119, - 0.06284598261117935, - 0.05632762610912323, - 0.05014229193329811, - 0.08693040162324905, - 0.08866792917251587, - 0.08985631912946701, - 0.09046315401792526, - 0.09047188609838486, - 0.0898822769522667, - 0.08871039748191833, - 0.08698822557926178, - 0.08476273715496063, - 0.08209463208913803, - 0.07905669510364532, - 0.0757317915558815, - 0.07221060991287231, - 0.0685892105102539, - 0.0649663656949997, - 0.06144089996814728, - 0.05810897797346115, - 0.05506148934364319, - 0.05238156020641327, - 0.05014229193329811, - 0.08693040907382965, - 0.08450639247894287, - 0.08164675533771515, - 0.07842950522899628, - 0.07494239509105682, - 0.07128053903579712, - 0.06754383444786072, - 0.06383419781923294, - 0.060252830386161804, - 0.05689741298556328, - 0.05385947600007057, - 0.05122188478708267, - 0.049056582152843475, - 0.04742264747619629, - 0.04636463150382042, - 0.045911405235528946, - 0.04607532545924187, - 0.04685192555189133, - 0.04822002351284027, - 0.05014229565858841, - 0.08693040907382965, - 0.08058034628629684, - 0.07390175759792328, - 0.06707681715488434, - 0.060291681438684464, - 0.05373144894838333, - 0.047575049102306366, - 0.04199042171239853, - 0.03712989762425423, - 0.03312605246901512, - 0.030088115483522415, - 0.028098948299884796, - 0.027212802320718765, - 0.02745385468006134, - 0.028815537691116333, - 0.031260695308446884, - 0.03472263738512993, - 0.03910692781209946, - 0.044293977320194244, - 0.05014229565858841, - 0.08693040907382965, - 0.07731524109840393, - 0.06746061146259308, - 0.05763532593846321, - 0.048107393085956573, - 0.03913670778274536, - 0.030967969447374344, - 0.023823991417884827, - 0.017899654805660248, - 0.013356555253267288, - 0.010318618267774582, - 0.008868705481290817, - 0.009046375751495361, - 0.010846775025129318, - 0.014220792800188065, - 0.019076403230428696, - 0.0252811498939991, - 0.03266578167676926, - 0.04102887213230133, - 0.05014229565858841, - 0.08693040907382965, - 0.07506490498781204, - 0.06302131712436676, - 0.051128171384334564, - 0.039709873497486115, - 0.029077883809804916, - 0.01952221617102623, - 0.011303529143333435, - 0.004646003246307373, - -0.0002687498927116394, - -0.0033066868782043457, - -0.004384942352771759, - -0.0034740865230560303, - -0.0005989819765090942, - 0.00416196882724762, - 0.01067887619137764, - 0.018773991614580154, - 0.028226487338542938, - 0.038778532296419144, - 0.05014229565858841, - 0.08693040907382965, - 0.0740731954574585, - 0.0610649473965168, - 0.04826050251722336, - 0.03600912168622017, - 0.024645015597343445, - 0.01447814330458641, - 0.005785837769508362, - -0.0011947974562644958, - -0.006273359060287476, - -0.009311296045780182, - -0.010225743055343628, - -0.008991777896881104, - -0.005643047392368317, - -0.0002709031105041504, - 0.006978131830692291, - 0.01590632274746895, - 0.02627011388540268, - 0.0377868227660656, - 0.05014229565858841, - 0.08693040907382965, - 0.07444757223129272, - 0.06180349364876747, - 0.04934307187795639, - 0.03740619122982025, - 0.026318460702896118, - 0.01638232171535492, - 0.007868804037570953, - 0.0010101497173309326, - -0.004006564617156982, - -0.007044501602649689, - -0.0080207958817482, - -0.006908811628818512, - -0.003738872706890106, - 0.001402541995048523, - 0.008375193923711777, - 0.01698889210820198, - 0.02700866013765335, - 0.038161203265190125, - 0.05014229565858841, - 0.08693040907382965, - 0.07614747434854507, - 0.06515693664550781, - 0.054258570075035095, - 0.04374966770410538, - 0.033916886895895004, - 0.02502843365073204, - 0.017326753586530685, - 0.011021949350833893, - 0.006285984069108963, - 0.003248050808906555, - 0.0019910037517547607, - 0.0025491416454315186, - 0.004907235503196716, - 0.009000971913337708, - 0.0147186778485775, - 0.021904390305280685, - 0.030362103134393692, - 0.039861105382442474, - 0.05014229565858841, - 0.08693040907382965, - 0.0789886936545372, - 0.07076186686754227, - 0.0624743327498436, - 0.054352156817913055, - 0.046616896986961365, - 0.03947953134775162, - 0.03313475474715233, - 0.027755651623010635, - 0.023488935083150864, - 0.020450998097658157, - 0.018724702298641205, - 0.018357139080762863, - 0.019358333200216293, - 0.02170097827911377, - 0.025321166962385178, - 0.030120156705379486, - 0.035967037081718445, - 0.0427023246884346, - 0.05014229565858841, - 0.08693040907382965, - 0.08266333490610123, - 0.0780109167098999, - 0.07310005277395248, - 0.06806470453739166, - 0.06304222345352173, - 0.05816961079835892, - 0.053579770028591156, - 0.04939790815114975, - 0.0457380935549736, - 0.0427001528441906, - 0.04036696255207062, - 0.03880215063691139, - 0.03804841637611389, - 0.03812631219625473, - 0.03903371840715408, - 0.04074587672948837, - 0.04321608319878578, - 0.04637696593999863, - 0.05014229565858841, - 0.08693040907382965, - 0.08677318692207336, - 0.08611851185560226, - 0.08498424291610718, - 0.08340132236480713, - 0.08141292631626129, - 0.07907328009605408, - 0.07644622027873993, - 0.07360339909791946, - 0.07062236219644547, - 0.06758442521095276, - 0.06457245349884033, - 0.061668604612350464, - 0.05895209312438965, - 0.056497011333703995, - 0.05437033623456955, - 0.052630066871643066, - 0.05132368206977844, - 0.050486817955970764, - 0.05014229193329811 - ], - "z": [ - -1.7386080026626587, - -1.7354636192321777, - -1.7223701477050781, - -1.699684739112854, - -1.6680262088775635, - -1.628258228302002, - -1.581465244293213, - -1.5289241075515747, - -1.4720675945281982, - -1.4124468564987183, - -1.351688027381897, - -1.2914485931396484, - -1.233371615409851, - -1.1790413856506348, - -1.1299397945404053, - -1.0874062776565552, - -1.0526009798049927, - -1.0264732837677002, - -1.0097360610961914, - -1.0028456449508667, - -1.7386080026626587, - -1.7351568937301636, - -1.7217650413513184, - -1.6987978219985962, - -1.6668815612792969, - -1.6268870830535889, - -1.5799052715301514, - -1.5272175073623657, - -1.4702610969543457, - -1.4105896949768066, - -1.349830985069275, - -1.289642095565796, - -1.2316651344299316, - -1.1774812936782837, - -1.1285687685012817, - -1.0862617492675781, - -1.0517140626907349, - -1.02586829662323, - -1.0094293355941772, - -1.0028456449508667, - -1.7386080026626587, - -1.734680414199829, - -1.7208251953125, - -1.6974201202392578, - -1.6651036739349365, - -1.6247574090957642, - -1.5774818658828735, - -1.524566650390625, - -1.4674550294876099, - -1.4077048301696777, - -1.346946120262146, - -1.28683602809906, - -1.2290141582489014, - -1.1750580072402954, - -1.126439094543457, - -1.0844837427139282, - -1.0503363609313965, - -1.024928331375122, - -1.0089528560638428, - -1.0028456449508667, - -1.7386080026626587, - -1.7340859174728394, - -1.7196522951126099, - -1.6957008838653564, - -1.6628849506378174, - -1.6220998764038086, - -1.5744578838348389, - -1.5212585926055908, - -1.4639532566070557, - -1.4041049480438232, - -1.3433462381362915, - -1.2833342552185059, - -1.2257062196731567, - -1.1720339059829712, - -1.123781442642212, - -1.0822651386260986, - -1.0486171245574951, - -1.023755431175232, - -1.0083582401275635, - -1.0028456449508667, - -1.7386080026626587, - -1.7334376573562622, - -1.7183735370635986, - -1.69382643699646, - -1.660465955734253, - -1.6192023754119873, - -1.5711607933044434, - -1.5176520347595215, - -1.4601354598999023, - -1.4001801013946533, - -1.3394213914871216, - -1.2795164585113525, - -1.2220996618270874, - -1.1687369346618652, - -1.1208839416503906, - -1.0798461437225342, - -1.0467426776885986, - -1.0224766731262207, - -1.0077100992202759, - -1.0028456449508667, - -1.7386080026626587, - -1.7328059673309326, - -1.7171274423599243, - -1.691999912261963, - -1.6581089496612549, - -1.616378903388977, - -1.5679481029510498, - -1.514137625694275, - -1.4564152956008911, - -1.3963556289672852, - -1.3355969190597534, - -1.2757962942123413, - -1.2185852527618408, - -1.1655242443084717, - -1.11806058883667, - -1.0774890184402466, - -1.0449161529541016, - -1.021230697631836, - -1.0070784091949463, - -1.0028456449508667, - -1.7386080026626587, - -1.7322593927383423, - -1.716049075126648, - -1.6904191970825195, - -1.656069040298462, - -1.6139355897903442, - -1.5651679039001465, - -1.5110963582992554, - -1.4531959295272827, - -1.3930459022521973, - -1.3322871923446655, - -1.272576928138733, - -1.2155439853668213, - -1.1627439260482788, - -1.115617275238037, - -1.0754492282867432, - -1.0433355569839478, - -1.0201523303985596, - -1.006531834602356, - -1.0028456449508667, - -1.7386080026626587, - -1.7318570613861084, - -1.7152552604675293, - -1.689255714416504, - -1.6545675992965698, - -1.612136960029602, - -1.5631213188171387, - -1.5088577270507812, - -1.4508261680603027, - -1.3906097412109375, - -1.3298509120941162, - -1.270207166671753, - -1.2133052349090576, - -1.1606974601745605, - -1.113818645477295, - -1.0739476680755615, - -1.0421720743179321, - -1.019358515739441, - -1.006129503250122, - -1.0028456449508667, - -1.7386080026626587, - -1.731642484664917, - -1.7148321866989136, - -1.6886354684829712, - -1.6537671089172363, - -1.6111781597137451, - -1.56203031539917, - -1.5076642036437988, - -1.4495627880096436, - -1.3893109560012817, - -1.3285521268844604, - -1.2689437866210938, - -1.2121118307113647, - -1.1596064567565918, - -1.112859845161438, - -1.0731472969055176, - -1.0415518283843994, - -1.0189354419708252, - -1.0059149265289307, - -1.0028456449508667, - -1.7386080026626587, - -1.7316391468048096, - -1.7148255109786987, - -1.688625693321228, - -1.653754472732544, - -1.6111630201339722, - -1.562013030052185, - -1.5076453685760498, - -1.449542760848999, - -1.3892903327941895, - -1.3285316228866577, - -1.2689237594604492, - -1.2120928764343262, - -1.159589171409607, - -1.112844705581665, - -1.0731345415115356, - -1.0415419340133667, - -1.0189286470413208, - -1.0059115886688232, - -1.0028456449508667, - -1.7386080026626587, - -1.7318471670150757, - -1.715235948562622, - -1.6892273426055908, - -1.6545310020446777, - -1.6120930910110474, - -1.563071370124817, - -1.5088030099868774, - -1.450768232345581, - -1.3905502557754517, - -1.3297914266586304, - -1.2701492309570312, - -1.2132506370544434, - -1.1606473922729492, - -1.1137747764587402, - -1.0739110708236694, - -1.0421435832977295, - -1.0193390846252441, - -1.0061196088790894, - -1.0028456449508667, - -1.7386080026626587, - -1.7322442531585693, - -1.7160191535949707, - -1.6903753280639648, - -1.6560124158859253, - -1.6138676404953003, - -1.5650906562805176, - -1.5110118389129639, - -1.4531065225601196, - -1.3929539918899536, - -1.3321951627731323, - -1.2724875211715698, - -1.2154594659805298, - -1.16266667842865, - -1.1155493259429932, - -1.075392484664917, - -1.0432915687561035, - -1.0201222896575928, - -1.0065165758132935, - -1.0028456449508667, - -1.7386080026626587, - -1.7327871322631836, - -1.717090129852295, - -1.6919453144073486, - -1.6580383777618408, - -1.6162943840026855, - -1.5678520202636719, - -1.5140324831008911, - -1.4563039541244507, - -1.3962411880493164, - -1.3354823589324951, - -1.2756849527359009, - -1.218480110168457, - -1.1654280424118042, - -1.1179760694503784, - -1.0774184465408325, - -1.0448615550994873, - -1.021193265914917, - -1.0070595741271973, - -1.0028456449508667, - -1.7386080026626587, - -1.73341703414917, - -1.7183328866958618, - -1.6937669515609741, - -1.6603891849517822, - -1.619110345840454, - -1.5710562467575073, - -1.5175375938415527, - -1.4600143432617188, - -1.4000555276870728, - -1.339296817779541, - -1.279395341873169, - -1.2219852209091187, - -1.1686322689056396, - -1.120792031288147, - -1.0797693729400635, - -1.0466831922531128, - -1.0224361419677734, - -1.0076894760131836, - -1.0028456449508667, - -1.7386080026626587, - -1.7340658903121948, - -1.7196128368377686, - -1.6956429481506348, - -1.6628103256225586, - -1.622010350227356, - -1.5743560791015625, - -1.5211472511291504, - -1.4638354778289795, - -1.4039838314056396, - -1.3432250022888184, - -1.2832164764404297, - -1.2255948781967163, - -1.1719321012496948, - -1.1236920356750488, - -1.0821903944015503, - -1.0485591888427734, - -1.0237159729003906, - -1.008338212966919, - -1.0028456449508667, - -1.7386080026626587, - -1.7346631288528442, - -1.7207911014556885, - -1.6973700523376465, - -1.6650391817092896, - -1.6246801614761353, - -1.5773940086364746, - -1.5244704484939575, - -1.4673532247543335, - -1.4076002836227417, - -1.3468414545059204, - -1.2867342233657837, - -1.2289180755615234, - -1.174970030784607, - -1.1263618469238281, - -1.0844192504882812, - -1.0502862930297852, - -1.0248942375183105, - -1.008935570716858, - -1.0028456449508667, - -1.7386080026626587, - -1.7351442575454712, - -1.7217400074005127, - -1.6987611055374146, - -1.6668343544006348, - -1.6268304586410522, - -1.5798407793045044, - -1.5271469354629517, - -1.470186471939087, - -1.410512924194336, - -1.3497540950775146, - -1.289567470550537, - -1.2315945625305176, - -1.1774168014526367, - -1.1285121440887451, - -1.0862144231796265, - -1.0516774654388428, - -1.0258432626724243, - -1.0094165802001953, - -1.0028456449508667, - -1.7386080026626587, - -1.735456943511963, - -1.722356915473938, - -1.6996653079986572, - -1.6680011749267578, - -1.6282281875610352, - -1.5814311504364014, - -1.5288867950439453, - -1.472028136253357, - -1.4124062061309814, - -1.3516474962234497, - -1.2914091348648071, - -1.2333344221115112, - -1.1790072917938232, - -1.129909873008728, - -1.087381362915039, - -1.052581548690796, - -1.0264601707458496, - -1.0097293853759766, - -1.0028456449508667, - -1.7386080026626587, - -1.735567331314087, - -1.7225748300552368, - -1.6999847888946533, - -1.6684134006500244, - -1.6287219524383545, - -1.5819929838180542, - -1.5295013189315796, - -1.4726786613464355, - -1.4130750894546509, - -1.3523162603378296, - -1.2920596599578857, - -1.2339489459991455, - -1.179569125175476, - -1.1304036378860474, - -1.0877934694290161, - -1.052901029586792, - -1.0266780853271484, - -1.0098397731781006, - -1.0028456449508667, - -1.7386080026626587, - -1.7354636192321777, - -1.7223701477050781, - -1.699684739112854, - -1.6680262088775635, - -1.628258228302002, - -1.581465244293213, - -1.5289241075515747, - -1.4720675945281982, - -1.4124468564987183, - -1.351688027381897, - -1.2914485931396484, - -1.233371615409851, - -1.1790413856506348, - -1.1299397945404053, - -1.0874062776565552, - -1.0526009798049927, - -1.0264732837677002, - -1.0097360610961914, - -1.0028456449508667 - ] - }, - { - "alphahull": 0, - "color": "#FF6692", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.24556289613246918, - 0.2646131217479706, - 0.2846764922142029, - 0.30520573258399963, - 0.32564088702201843, - 0.3454245328903198, - 0.36401697993278503, - 0.3809111416339874, - 0.3956461250782013, - 0.40782004594802856, - 0.41710081696510315, - 0.4232352674007416, - 0.4260560870170593, - 0.42548632621765137, - 0.4215415120124817, - 0.4143292307853699, - 0.40404626727104187, - 0.3909730911254883, - 0.37546631693840027, - 0.357948899269104, - 0.24556289613246918, - 0.263510525226593, - 0.2825013995170593, - 0.3020175099372864, - 0.3215264678001404, - 0.34049612283706665, - 0.35840904712677, - 0.3747766315937042, - 0.3891523778438568, - 0.40114420652389526, - 0.41042494773864746, - 0.4167415201663971, - 0.4199215769767761, - 0.41987836360931396, - 0.4166131019592285, - 0.41021478176116943, - 0.4008580446243286, - 0.3887980282306671, - 0.3743637502193451, - 0.357948899269104, - 0.24556289613246918, - 0.26054611802101135, - 0.2766534090042114, - 0.2934454679489136, - 0.31046417355537415, - 0.3272453844547272, - 0.3433312773704529, - 0.3582831025123596, - 0.3716930150985718, - 0.38319525122642517, - 0.39247602224349976, - 0.39928215742111206, - 0.4034280478954315, - 0.4048005938529968, - 0.40336233377456665, - 0.3991525173187256, - 0.3922860026359558, - 0.3829500377178192, - 0.37139931321144104, - 0.357948899269104, - 0.24556291103363037, - 0.2560410797595978, - 0.26776623725891113, - 0.2804185450077057, - 0.29365286231040955, - 0.30710822343826294, - 0.320417582988739, - 0.33321791887283325, - 0.34516003727912903, - 0.35591819882392883, - 0.3651989698410034, - 0.3727491497993469, - 0.37836286425590515, - 0.38188689947128296, - 0.3832252025604248, - 0.382341206073761, - 0.3792590796947479, - 0.37406283617019653, - 0.36689427495002747, - 0.357948899269104, - 0.24556291103363037, - 0.25048360228538513, - 0.25680288672447205, - 0.2643483877182007, - 0.27291426062583923, - 0.28226685523986816, - 0.2921510338783264, - 0.3022972345352173, - 0.31242868304252625, - 0.3222689926624298, - 0.331549733877182, - 0.34001779556274414, - 0.3474421799182892, - 0.35362035036087036, - 0.35838380455970764, - 0.3616026043891907, - 0.3631889224052429, - 0.36309951543807983, - 0.3613368272781372, - 0.357948899269104, - 0.24556291103363037, - 0.24447596073150635, - 0.24495148658752441, - 0.24697646498680115, - 0.25049570202827454, - 0.2554131746292114, - 0.2615947723388672, - 0.26887184381484985, - 0.2770459055900574, - 0.285893976688385, - 0.2951747477054596, - 0.30463501811027527, - 0.31401678919792175, - 0.32306408882141113, - 0.3315301537513733, - 0.339184045791626, - 0.34581702947616577, - 0.3512481153011322, - 0.3553291857242584, - 0.357948899269104, - 0.24556291103363037, - 0.23866915702819824, - 0.2334962636232376, - 0.23018530011177063, - 0.2288266122341156, - 0.22945722937583923, - 0.23205998539924622, - 0.23656384646892548, - 0.24284598231315613, - 0.2507350444793701, - 0.2600157856941223, - 0.2704351246356964, - 0.2817087769508362, - 0.29352930188179016, - 0.3055742084980011, - 0.31751495599746704, - 0.32902586460113525, - 0.3397928774356842, - 0.34952235221862793, - 0.357948899269104, - 0.24556291103363037, - 0.2336924523115158, - 0.2236785888671875, - 0.21579447388648987, - 0.21025516092777252, - 0.20721176266670227, - 0.20674726366996765, - 0.20887434482574463, - 0.21353501081466675, - 0.2206021100282669, - 0.2298828661441803, - 0.24112415313720703, - 0.25401929020881653, - 0.2682165801525116, - 0.28332871198654175, - 0.29894348978996277, - 0.3146350085735321, - 0.3299752175807953, - 0.3445456624031067, - 0.357948899269104, - 0.24556291103363037, - 0.23008513450622559, - 0.21656236052513123, - 0.2053634524345398, - 0.19679385423660278, - 0.19108736515045166, - 0.18839962780475616, - 0.18880394101142883, - 0.19228927791118622, - 0.19876059889793396, - 0.20804136991500854, - 0.2198784053325653, - 0.23394888639450073, - 0.24986892938613892, - 0.26720431447029114, - 0.2854821979999542, - 0.30420398712158203, - 0.322858989238739, - 0.3409383296966553, - 0.357948899269104, - 0.24556291103363037, - 0.22823813557624817, - 0.2129187285900116, - 0.20002257823944092, - 0.1899014413356781, - 0.18283140659332275, - 0.17900532484054565, - 0.17852753400802612, - 0.18141111731529236, - 0.18757739663124084, - 0.19685815274715424, - 0.20900024473667145, - 0.22367247939109802, - 0.2404746413230896, - 0.25894835591316223, - 0.27858978509902954, - 0.29886311292648315, - 0.3192153573036194, - 0.33909133076667786, - 0.357948899269104, - 0.24556291103363037, - 0.22835159301757812, - 0.2131425440311432, - 0.20035064220428467, - 0.1903248131275177, - 0.18333853781223297, - 0.1795823723077774, - 0.1791587769985199, - 0.18207931518554688, - 0.18826432526111603, - 0.19754508137702942, - 0.20966844260692596, - 0.2243037223815918, - 0.24105167388916016, - 0.25945550203323364, - 0.27901315689086914, - 0.2991911768913269, - 0.319439172744751, - 0.3392047882080078, - 0.357948899269104, - 0.24556291103363037, - 0.23041319847106934, - 0.21720954775810242, - 0.20631209015846252, - 0.19801808893680573, - 0.1925538033246994, - 0.19006824493408203, - 0.190629243850708, - 0.19422146677970886, - 0.20074698328971863, - 0.21002773940563202, - 0.22181060910224915, - 0.2357741743326187, - 0.251537561416626, - 0.2686707377433777, - 0.28670644760131836, - 0.30515262484550476, - 0.3235061764717102, - 0.341266393661499, - 0.357948899269104, - 0.24556291103363037, - 0.23419958353042603, - 0.22467900812625885, - 0.21726089715957642, - 0.21214759349822998, - 0.20947855710983276, - 0.2093266248703003, - 0.21169590950012207, - 0.21652179956436157, - 0.22367265820503235, - 0.23295341432094574, - 0.24411092698574066, - 0.25684085488319397, - 0.27079594135284424, - 0.28559550642967224, - 0.3008359372615814, - 0.31610143184661865, - 0.33097562193870544, - 0.3450527787208557, - 0.357948899269104, - 0.24556291103363037, - 0.23930040001869202, - 0.23474150896072388, - 0.232010617852211, - 0.23118218779563904, - 0.23227882385253906, - 0.23527058959007263, - 0.24007593095302582, - 0.24656373262405396, - 0.2545570135116577, - 0.2638377845287323, - 0.27415284514427185, - 0.2852208614349365, - 0.2967399060726166, - 0.30839577317237854, - 0.3198705315589905, - 0.33085116744041443, - 0.34103813767433167, - 0.3501535952091217, - 0.357948899269104, - 0.24556291103363037, - 0.24516290426254272, - 0.2463066130876541, - 0.24896283447742462, - 0.25305911898612976, - 0.2584837079048157, - 0.26508867740631104, - 0.27269381284713745, - 0.28109169006347656, - 0.29005321860313416, - 0.29933398962020874, - 0.30868083238601685, - 0.31783875823020935, - 0.326557993888855, - 0.33460068702697754, - 0.3417474627494812, - 0.34780338406562805, - 0.3526032269001007, - 0.3560160994529724, - 0.357948899269104, - 0.24556291103363037, - 0.25115180015563965, - 0.2581210434436798, - 0.26628056168556213, - 0.27540773153305054, - 0.2852536141872406, - 0.2955496311187744, - 0.3060149550437927, - 0.3163640797138214, - 0.3263147473335266, - 0.3355954885482788, - 0.3439532220363617, - 0.35115987062454224, - 0.35701894760131836, - 0.3613705635070801, - 0.364096075296402, - 0.36512109637260437, - 0.3644176721572876, - 0.36200499534606934, - 0.357948899269104, - 0.24556291103363037, - 0.25661811232566833, - 0.26890459656715393, - 0.28208714723587036, - 0.29580622911453247, - 0.3096875846385956, - 0.3233526051044464, - 0.33642852306365967, - 0.348558634519577, - 0.3594121038913727, - 0.36869287490844727, - 0.3761477768421173, - 0.3815734386444092, - 0.38482192158699036, - 0.38580456376075745, - 0.3844945728778839, - 0.3809276819229126, - 0.3752012252807617, - 0.3674713373184204, - 0.357948899269104, - 0.24556289613246918, - 0.26096948981285095, - 0.2774886190891266, - 0.2946696877479553, - 0.31204408407211304, - 0.32913780212402344, - 0.3454846441745758, - 0.36063867807388306, - 0.37418654561042786, - 0.3857586681842804, - 0.395039439201355, - 0.40177565813064575, - 0.40578362345695496, - 0.40695396065711975, - 0.4052547812461853, - 0.4007324278354645, - 0.39351022243499756, - 0.3837852478027344, - 0.37182268500328064, - 0.357948899269104, - 0.24556289613246918, - 0.2637343406677246, - 0.2829429507255554, - 0.30266469717025757, - 0.32236164808273315, - 0.3414965569972992, - 0.3595474064350128, - 0.3760218918323517, - 0.39047056436538696, - 0.40249934792518616, - 0.41178011894226074, - 0.41805970668792725, - 0.4211668372154236, - 0.42101675271987915, - 0.41761350631713867, - 0.4110499918460846, - 0.4015052318572998, - 0.3892395496368408, - 0.3745875656604767, - 0.357948899269104, - 0.24556289613246918, - 0.2646131217479706, - 0.2846764922142029, - 0.30520573258399963, - 0.32564088702201843, - 0.3454245328903198, - 0.36401697993278503, - 0.3809111416339874, - 0.3956461250782013, - 0.40782004594802856, - 0.41710081696510315, - 0.4232352674007416, - 0.4260560870170593, - 0.42548632621765137, - 0.4215415120124817, - 0.4143292307853699, - 0.40404626727104187, - 0.3909730911254883, - 0.37546631693840027, - 0.357948899269104 - ], - "y": [ - 0.08185434341430664, - 0.08232107758522034, - 0.08328601717948914, - 0.08472283184528351, - 0.08659233152866364, - 0.08884353190660477, - 0.09141501039266586, - 0.09423663467168808, - 0.0972314327955246, - 0.10031771659851074, - 0.10341130197048187, - 0.10642779618501663, - 0.10928492248058319, - 0.11190475523471832, - 0.11421581357717514, - 0.11615507304668427, - 0.11766962707042694, - 0.11871816217899323, - 0.11927208304405212, - 0.11931627988815308, - 0.08185434341430664, - 0.08830596506595612, - 0.0950925424695015, - 0.10202894359827042, - 0.10892597585916519, - 0.11559548228979111, - 0.12185555696487427, - 0.12753544747829437, - 0.132480189204216, - 0.13655492663383484, - 0.13964849710464478, - 0.14167654514312744, - 0.1425837278366089, - 0.14234530925750732, - 0.14096777141094208, - 0.13848870992660522, - 0.13497574627399445, - 0.13052469491958618, - 0.1252569705247879, - 0.11931627988815308, - 0.08185433596372604, - 0.09361940622329712, - 0.10557448118925095, - 0.11739347875118256, - 0.12875397503376007, - 0.13934610784053802, - 0.1488809585571289, - 0.1570984125137329, - 0.16377434134483337, - 0.16872665286064148, - 0.1718202382326126, - 0.172970712184906, - 0.17214670777320862, - 0.16937071084976196, - 0.1647183895111084, - 0.1583167165517807, - 0.150340273976326, - 0.14100663363933563, - 0.1305704116821289, - 0.11931627988815308, - 0.08185433596372604, - 0.09768559783697128, - 0.11359596252441406, - 0.12915143370628357, - 0.1439276933670044, - 0.15752166509628296, - 0.16956257820129395, - 0.17972196638584137, - 0.18772272765636444, - 0.19334658980369568, - 0.196440190076828, - 0.19691908359527588, - 0.19477026164531708, - 0.190052330493927, - 0.18289396166801453, - 0.17349041998386383, - 0.162098228931427, - 0.14902812242507935, - 0.13463661074638367, - 0.11931627988815308, - 0.08185433596372604, - 0.10006392002105713, - 0.11828771978616714, - 0.13602864742279053, - 0.15280278027057648, - 0.16815254092216492, - 0.1816592514514923, - 0.19295448064804077, - 0.20173011720180511, - 0.20774677395820618, - 0.2108403742313385, - 0.21092647314071655, - 0.20800277590751648, - 0.20214900374412537, - 0.19352483749389648, - 0.1823655068874359, - 0.16897544264793396, - 0.15371987223625183, - 0.13701492547988892, - 0.11931627988815308, - 0.08185433596372604, - 0.10049662739038467, - 0.11914133280515671, - 0.13727988302707672, - 0.1544175148010254, - 0.17008671164512634, - 0.18386012315750122, - 0.19536200165748596, - 0.2042786180973053, - 0.21036675572395325, - 0.21346032619476318, - 0.21347497403621674, - 0.21041029691696167, - 0.20434987545013428, - 0.1954590082168579, - 0.18398025631904602, - 0.17022669315338135, - 0.1545734852552414, - 0.13744764029979706, - 0.11931627988815308, - 0.08185433596372604, - 0.09893684089183807, - 0.11606431007385254, - 0.13276955485343933, - 0.1485968977212906, - 0.16311460733413696, - 0.17592667043209076, - 0.18668363988399506, - 0.19509205222129822, - 0.20092257857322693, - 0.20401614904403687, - 0.20428842306137085, - 0.20173193514347076, - 0.19641640782356262, - 0.18848690390586853, - 0.17815962433815002, - 0.16571635007858276, - 0.15149646997451782, - 0.13588784635066986, - 0.11931627988815308, - 0.08185433596372604, - 0.09555358439683914, - 0.10939007997512817, - 0.12298640608787537, - 0.13597169518470764, - 0.14799171686172485, - 0.15871863067150116, - 0.16785982251167297, - 0.17516593635082245, - 0.18043768405914307, - 0.1835312694311142, - 0.1843622922897339, - 0.18290811777114868, - 0.17920836806297302, - 0.17336401343345642, - 0.16553443670272827, - 0.1559332013130188, - 0.14482223987579346, - 0.13250459730625153, - 0.11931627988815308, - 0.08185433596372604, - 0.0907134860754013, - 0.09984190762042999, - 0.1089906096458435, - 0.11791003495454788, - 0.12635688483715057, - 0.1341007649898529, - 0.1409304141998291, - 0.14665956795215607, - 0.15113192796707153, - 0.15422551333904266, - 0.1558559238910675, - 0.1559787094593048, - 0.15459050238132477, - 0.15172916650772095, - 0.14747276902198792, - 0.14193740487098694, - 0.13527405261993408, - 0.1276644915342331, - 0.11931627988815308, - 0.08185434341430664, - 0.08494104444980621, - 0.0884544774889946, - 0.09229881316423416, - 0.0963691845536232, - 0.10055455565452576, - 0.10474076867103577, - 0.10881363600492477, - 0.11266205459833145, - 0.11618104577064514, - 0.11927463114261627, - 0.12185841798782349, - 0.12386192381381989, - 0.12523052096366882, - 0.12592683732509613, - 0.12593191862106323, - 0.1252456158399582, - 0.12388662993907928, - 0.121892049908638, - 0.11931627988815308, - 0.08185434341430664, - 0.0788617953658104, - 0.0764618068933487, - 0.07471984624862671, - 0.07368342578411102, - 0.07338082790374756, - 0.07382028549909592, - 0.07498982548713684, - 0.0768575519323349, - 0.07937250286340714, - 0.08246608078479767, - 0.08605390787124634, - 0.09003812074661255, - 0.09431002289056778, - 0.09875310212373734, - 0.10324615985155106, - 0.10766664147377014, - 0.11189395934343338, - 0.11581280082464218, - 0.11931627988815308, - 0.08185434341430664, - 0.07313451915979385, - 0.06516347825527191, - 0.05815865471959114, - 0.052311114966869354, - 0.04778037592768669, - 0.04469001665711403, - 0.043124329298734665, - 0.04312603175640106, - 0.04469507932662964, - 0.04778866097331047, - 0.0523223951458931, - 0.058172620832920074, - 0.0651797503232956, - 0.07315264642238617, - 0.08187384903430939, - 0.09110544621944427, - 0.1005956307053566, - 0.11008552461862564, - 0.11931628733873367, - 0.08185434341430664, - 0.06837984919548035, - 0.055783841758966446, - 0.044409897178411484, - 0.03456827253103256, - 0.02652742713689804, - 0.020506687462329865, - 0.016670264303684235, - 0.015122838318347931, - 0.01590660959482193, - 0.01900019496679306, - 0.024319201707839966, - 0.03171855956315994, - 0.04099641740322113, - 0.05189969763159752, - 0.0641310065984726, - 0.07735669612884521, - 0.09121599793434143, - 0.10533086210489273, - 0.11931628733873367, - 0.08185434341430664, - 0.06511303782463074, - 0.04933932423591614, - 0.034963466227054596, - 0.022377602756023407, - 0.011925049126148224, - 0.003890909254550934, - -0.0015056803822517395, - -0.0041174739599227905, - -0.0038732290267944336, - -0.0007796436548233032, - 0.005078889429569244, - 0.013542614877223969, - 0.0243806391954422, - 0.037297315895557404, - 0.05194033309817314, - 0.06791026145219803, - 0.08477147668600082, - 0.10206405073404312, - 0.11931628733873367, - 0.08185434341430664, - 0.06368809193372726, - 0.046528302133083344, - 0.030843041837215424, - 0.017060168087482452, - 0.0055556520819664, - -0.0033567100763320923, - -0.009433798491954803, - -0.012509860098361969, - -0.012500979006290436, - -0.009407393634319305, - -0.003313496708869934, - 0.0056144967675209045, - 0.017133019864559174, - 0.03092791885137558, - 0.04662289842963219, - 0.06378984451293945, - 0.08196045458316803, - 0.10063910484313965, - 0.11931628733873367, - 0.08185434341430664, - 0.06425942480564117, - 0.0476553700864315, - 0.03249511867761612, - 0.019192181527614594, - 0.008109450340270996, - -0.0004507973790168762, - -0.006255045533180237, - -0.00914495438337326, - -0.009041696786880493, - -0.005948111414909363, - 0.000051409006118774414, - 0.008793249726295471, - 0.02003893256187439, - 0.033481717109680176, - 0.04875491186976433, - 0.06544192135334015, - 0.08308751881122589, - 0.10121043026447296, - 0.11931628733873367, - 0.08185434341430664, - 0.06676512211561203, - 0.05259842053055763, - 0.039740681648254395, - 0.028542622923851013, - 0.019309714436531067, - 0.012293770909309387, - 0.007686197757720947, - 0.005612671375274658, - 0.006129749119281769, - 0.0092233344912529, - 0.014809034764766693, - 0.022734493017196655, - 0.03278350085020065, - 0.04468198120594025, - 0.058105356991291046, - 0.07268747687339783, - 0.08803057670593262, - 0.10371612757444382, - 0.11931628733873367, - 0.08185434341430664, - 0.07093365490436554, - 0.060821782797575, - 0.05179456248879433, - 0.04409822076559067, - 0.037942707538604736, - 0.03349591791629791, - 0.030879147350788116, - 0.030163772404193878, - 0.03136932849884033, - 0.03446291387081146, - 0.03936013951897621, - 0.045927438884973526, - 0.05398565158247948, - 0.06331498175859451, - 0.0736609548330307, - 0.08474135398864746, - 0.09625393897294998, - 0.10788466781377792, - 0.11931628733873367, - 0.08185434341430664, - 0.07631330192089081, - 0.07143433392047882, - 0.06735053658485413, - 0.06417329609394073, - 0.06198927387595177, - 0.06085805594921112, - 0.06081048399209976, - 0.06184787675738335, - 0.06394192576408386, - 0.06703551113605499, - 0.07104423642158508, - 0.07585877180099487, - 0.08134779334068298, - 0.08736155927181244, - 0.09373602271080017, - 0.10029733180999756, - 0.10686648637056351, - 0.1132643073797226, - 0.11931627988815308, - 0.08185434341430664, - 0.08232107758522034, - 0.08328601717948914, - 0.0847228392958641, - 0.08659234642982483, - 0.08884354680776596, - 0.09141502529382706, - 0.09423664957284927, - 0.09723145514726639, - 0.10031773895025253, - 0.10341131687164307, - 0.10642781853675842, - 0.10928494483232498, - 0.11190477013587952, - 0.11421582847833633, - 0.11615508049726486, - 0.11766963452100754, - 0.11871817708015442, - 0.11927209049463272, - 0.11931627988815308 - ], - "z": [ - -1.6370861530303955, - -1.6394423246383667, - -1.651952862739563, - -1.67427659034729, - -1.705804467201233, - -1.7456766366958618, - -1.7928053140640259, - -1.845905065536499, - -1.9035273790359497, - -1.9641005992889404, - -2.025972366333008, - -2.0874550342559814, - -2.146871328353882, - -2.2026007175445557, - -2.2531230449676514, - -2.297060012817383, - -2.3332135677337646, - -2.3605971336364746, - -2.3784637451171875, - -2.3863260746002197, - -1.6370861530303955, - -1.6393084526062012, - -1.651688814163208, - -1.6738895177841187, - -1.7053049802780151, - -1.7450783252716064, - -1.7921245098114014, - -1.8451602458953857, - -1.9027390480041504, - -1.9632900953292847, - -2.0251617431640625, - -2.0866665840148926, - -2.1461265087127686, - -2.2019197940826416, - -2.2525246143341064, - -2.296560525894165, - -2.3328263759613037, - -2.36033296585083, - -2.3783297538757324, - -2.3863260746002197, - -1.6370861530303955, - -1.6394875049591064, - -1.6520419120788574, - -1.6744071245193481, - -1.7059729099273682, - -1.7458783388137817, - -1.7930349111557007, - -1.846156120300293, - -1.903793215751648, - -1.9643738269805908, - -2.026245594024658, - -2.0877206325531006, - -2.147122383117676, - -2.2028303146362305, - -2.2533247470855713, - -2.2972285747528076, - -2.333343982696533, - -2.3606860637664795, - -2.3785088062286377, - -2.3863260746002197, - -1.6370861530303955, - -1.6399598121643066, - -1.6529738903045654, - -1.6757732629776, - -1.7077360153198242, - -1.7479901313781738, - -1.7954378128051758, - -1.8487846851348877, - -1.9065757989883423, - -1.9672343730926514, - -2.0291061401367188, - -2.090503215789795, - -2.1497509479522705, - -2.205233335494995, - -2.255436658859253, - -2.2989914417266846, - -2.334710121154785, - -2.3616180419921875, - -2.378981113433838, - -2.3863260746002197, - -1.6370861530303955, - -1.6406745910644531, - -1.6543837785720825, - -1.6778398752212524, - -1.7104029655456543, - -1.7511848211288452, - -1.7990729808807373, - -1.8527612686157227, - -1.9107850790023804, - -1.9715617895126343, - -2.033433437347412, - -2.094712734222412, - -2.1537275314331055, - -2.2088685035705566, - -2.2586312294006348, - -2.3016586303710938, - -2.3367767333984375, - -2.363028049468994, - -2.3796958923339844, - -2.3863260746002197, - -1.6370861530303955, - -1.6415541172027588, - -1.6561188697814941, - -1.6803830862045288, - -1.7136850357055664, - -1.7551161050796509, - -1.80354642868042, - -1.8576546907424927, - -1.9159650802612305, - -1.9768869876861572, - -2.0387587547302246, - -2.0998926162719727, - -2.158620834350586, - -2.21334171295166, - -2.2625625133514404, - -2.304940700531006, - -2.339320182800293, - -2.364763021469116, - -2.38057541847229, - -2.3863260746002197, - -1.6370861530303955, - -1.6425031423568726, - -1.6579909324645996, - -1.6831272840499878, - -1.7172263860702515, - -1.7593581676483154, - -1.808373212814331, - -1.8629348278045654, - -1.9215543270111084, - -1.982633113861084, - -2.0445048809051514, - -2.1054818630218506, - -2.1639010906219482, - -2.2181687355041504, - -2.2668046951293945, - -2.3084819316864014, - -2.342064142227173, - -2.3666350841522217, - -2.3815245628356934, - -2.3863260746002197, - -1.6370861530303955, - -1.643418788909912, - -1.6597973108291626, - -1.6857750415802002, - -1.720643401145935, - -1.763451099395752, - -1.8130306005477905, - -1.8680293560028076, - -1.9269473552703857, - -1.9881772994995117, - -2.050049066543579, - -2.110874891281128, - -2.1689956188201904, - -2.2228260040283203, - -2.270897626876831, - -2.311898946762085, - -2.344712018966675, - -2.368441581726074, - -2.3824400901794434, - -2.3863260746002197, - -1.6370861530303955, - -1.6442018747329712, - -1.6613421440124512, - -1.6880395412445068, - -1.723565697669983, - -1.766951560974121, - -1.8170136213302612, - -1.8723864555358887, - -1.9315595626831055, - -1.9929187297821045, - -2.054790496826172, - -2.1154870986938477, - -2.1733527183532715, - -2.226809024810791, - -2.274397850036621, - -2.314821243286133, - -2.3469765186309814, - -2.3699862957000732, - -2.383223295211792, - -2.3863260746002197, - -1.6370861530303955, - -1.6447675228118896, - -1.662458062171936, - -1.6896753311157227, - -1.7256765365600586, - -1.7694799900054932, - -1.8198907375335693, - -1.8755336999893188, - -1.9348911046981812, - -1.9963438510894775, - -2.058215618133545, - -2.118818759918213, - -2.176500082015991, - -2.2296862602233887, - -2.2769265174865723, - -2.316932201385498, - -2.3486123085021973, - -2.3711023330688477, - -2.383788824081421, - -2.3863260746002197, - -1.6370861530303955, - -1.6450544595718384, - -1.6630241870880127, - -1.690505027770996, - -1.7267473936080933, - -1.7707626819610596, - -1.8213502168655396, - -1.8771302700042725, - -1.9365811347961426, - -1.9980812072753906, - -2.059952974319458, - -2.1205086708068848, - -2.1780965328216553, - -2.2311456203460693, - -2.2782089710235596, - -2.318002939224243, - -2.3494420051574707, - -2.3716683387756348, - -2.384075880050659, - -2.3863260746002197, - -1.6370861530303955, - -1.6450316905975342, - -1.662979006767273, - -1.6904388666152954, - -1.7266619205474854, - -1.770660400390625, - -1.821233868598938, - -1.8770029544830322, - -1.9364463090896606, - -1.9979426860809326, - -2.059814453125, - -2.1203739643096924, - -2.177969217300415, - -2.2310292720794678, - -2.278106689453125, - -2.317917585372925, - -2.3493757247924805, - -2.3716232776641846, - -2.3840529918670654, - -2.3863260746002197, - -1.6370861530303955, - -1.644701361656189, - -1.662327527999878, - -1.6894840002059937, - -1.7254297733306885, - -1.7691843509674072, - -1.819554328918457, - -1.875165581703186, - -1.9345014095306396, - -1.9959431886672974, - -2.0578150749206543, - -2.118428945541382, - -2.1761319637298584, - -2.2293496131896973, - -2.2766306400299072, - -2.316685199737549, - -2.3484208583831787, - -2.3709716796875, - -2.3837227821350098, - -2.3863260746002197, - -1.6370861530303955, - -1.6440995931625366, - -1.6611404418945312, - -1.6877437829971313, - -1.7231841087341309, - -1.7664943933486938, - -1.8164935111999512, - -1.8718173503875732, - -1.9309571981430054, - -1.9922995567321777, - -2.054171323776245, - -2.114884614944458, - -2.172783613204956, - -2.2262887954711914, - -2.2739408016204834, - -2.3144397735595703, - -2.3466806411743164, - -2.3697845935821533, - -2.3831210136413574, - -2.3863260746002197, - -1.6370861530303955, - -1.6432914733886719, - -1.6595462560653687, - -1.685407042503357, - -1.7201683521270752, - -1.762882113456726, - -1.8123831748962402, - -1.8673211336135864, - -1.9261976480484009, - -1.9874064922332764, - -2.0492782592773438, - -2.1101250648498535, - -2.168287515640259, - -2.2221784591674805, - -2.2703285217285156, - -2.3114240169525146, - -2.344343900680542, - -2.368190288543701, - -2.382312774658203, - -2.3863260746002197, - -1.6370861530303955, - -1.6423646211624146, - -1.6577177047729492, - -1.6827267408370972, - -1.7167094945907593, - -1.7587389945983887, - -1.807668685913086, - -1.86216402053833, - -1.9207384586334229, - -1.9817943572998047, - -2.043666124343872, - -2.104665994644165, - -2.163130283355713, - -2.2174642086029053, - -2.2661852836608887, - -2.307965040206909, - -2.3416635990142822, - -2.3663618564605713, - -2.3813858032226562, - -2.3863260746002197, - -1.6370861530303955, - -1.6414194107055664, - -1.655853033065796, - -1.6799935102462769, - -1.7131822109222412, - -1.7545138597488403, - -1.802860975265503, - -1.8569049835205078, - -1.9151713848114014, - -1.9760711193084717, - -2.037942886352539, - -2.0990989208221436, - -2.1578712463378906, - -2.2126564979553223, - -2.26196026802063, - -2.3044378757476807, - -2.338930368423462, - -2.364497184753418, - -2.3804407119750977, - -2.3863260746002197, - -1.6370861530303955, - -1.6405582427978516, - -1.6541543006896973, - -1.6775033473968506, - -1.7099688053131104, - -1.7506647109985352, - -1.7984811067581177, - -1.8521137237548828, - -1.910099744796753, - -1.9708571434020996, - -2.032728910446167, - -2.094027280807495, - -2.1530799865722656, - -2.2082765102386475, - -2.258111000061035, - -2.3012242317199707, - -2.336440324783325, - -2.3627984523773193, - -2.379579544067383, - -2.3863260746002197, - -1.6370861530303955, - -1.6398744583129883, - -1.6528054475784302, - -1.6755263805389404, - -1.707417368888855, - -1.7476085424423218, - -1.7950035333633423, - -1.8483097553253174, - -1.9060728549957275, - -1.9667174816131592, - -2.0285892486572266, - -2.0900003910064697, - -2.1492760181427, - -2.204798936843872, - -2.2550549507141113, - -2.298672914505005, - -2.334463357925415, - -2.361449718475342, - -2.3788957595825195, - -2.3863260746002197, - -1.6370861530303955, - -1.6394423246383667, - -1.651952862739563, - -1.67427659034729, - -1.705804467201233, - -1.7456766366958618, - -1.7928053140640259, - -1.845905065536499, - -1.9035273790359497, - -1.9641005992889404, - -2.025972366333008, - -2.0874550342559814, - -2.146871328353882, - -2.2026007175445557, - -2.2531230449676514, - -2.297060012817383, - -2.3332135677337646, - -2.3605971336364746, - -2.3784637451171875, - -2.3863260746002197 - ] - }, - { - "alphahull": 0, - "color": "#FF97FF", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.342631071805954, - 0.36732178926467896, - 0.39288169145584106, - 0.4186135530471802, - 0.4438154995441437, - 0.4678000509738922, - 0.4899129867553711, - 0.5095511674880981, - 0.5261788368225098, - 0.53934246301651, - 0.5486830472946167, - 0.5539456605911255, - 0.5549868941307068, - 0.551778256893158, - 0.5444073677062988, - 0.5330750942230225, - 0.5180907845497131, - 0.49986302852630615, - 0.4788890480995178, - 0.4557409882545471, - 0.342631071805954, - 0.36495015025138855, - 0.38820308446884155, - 0.41175559163093567, - 0.43496525287628174, - 0.45719894766807556, - 0.47785019874572754, - 0.49635568261146545, - 0.5122106671333313, - 0.5249825716018677, - 0.5343230962753296, - 0.539977490901947, - 0.5417914390563965, - 0.5397154688835144, - 0.5338062047958374, - 0.5242248773574829, - 0.5112327933311462, - 0.49518439173698425, - 0.47651737928390503, - 0.4557409882545471, - 0.342631071805954, - 0.36024343967437744, - 0.3789180815219879, - 0.39814555644989014, - 0.41740143299102783, - 0.4361604154109955, - 0.45391085743904114, - 0.4701685309410095, - 0.4844900071620941, - 0.4964846074581146, - 0.5058251619338989, - 0.5122568607330322, - 0.5156042575836182, - 0.5157761573791504, - 0.5127676725387573, - 0.506661057472229, - 0.4976227879524231, - 0.4858993887901306, - 0.4718106985092163, - 0.4557409882545471, - 0.342631071805954, - 0.3537117838859558, - 0.3660328984260559, - 0.37925833463668823, - 0.3930273652076721, - 0.40696436166763306, - 0.4206892251968384, - 0.4338275194168091, - 0.44602087140083313, - 0.45693671703338623, - 0.46627724170684814, - 0.47378772497177124, - 0.4792632460594177, - 0.48255449533462524, - 0.4835716485977173, - 0.4822869896888733, - 0.4787355363368988, - 0.4730142056941986, - 0.4652790427207947, - 0.4557409882545471, - 0.34263110160827637, - 0.34606292843818665, - 0.35094380378723145, - 0.3571406304836273, - 0.36448433995246887, - 0.3727746307849884, - 0.3817853331565857, - 0.3912706971168518, - 0.4009719789028168, - 0.41062453389167786, - 0.41996505856513977, - 0.4287388026714325, - 0.43670642375946045, - 0.44365060329437256, - 0.44938188791275024, - 0.45374396443367004, - 0.4566178321838379, - 0.45792514085769653, - 0.4576301574707031, - 0.4557409882545471, - 0.34263110160827637, - 0.3381257653236389, - 0.3352859914302826, - 0.3341892659664154, - 0.3348654508590698, - 0.33729618787765503, - 0.34141507744789124, - 0.3471097946166992, - 0.3542250394821167, - 0.3625667095184326, - 0.3719072639942169, - 0.3819918930530548, - 0.39254555106163025, - 0.4032803177833557, - 0.4139034152030945, - 0.424125075340271, - 0.433666467666626, - 0.4422672986984253, - 0.4496929943561554, - 0.4557409882545471, - 0.34263110160827637, - 0.3307604193687439, - 0.320756196975708, - 0.3128913342952728, - 0.3073803782463074, - 0.3043736517429352, - 0.3039531707763672, - 0.3061303496360779, - 0.31084585189819336, - 0.3179710805416107, - 0.327311635017395, - 0.33861270546913147, - 0.3515660762786865, - 0.36581841111183167, - 0.380980908870697, - 0.39664000272750854, - 0.4123685359954834, - 0.4277375042438507, - 0.4423276484012604, - 0.4557410180568695, - 0.34263110160827637, - 0.32476499676704407, - 0.3089289367198944, - 0.29555484652519226, - 0.2850075364112854, - 0.277574747800827, - 0.27345913648605347, - 0.2727730870246887, - 0.2755352258682251, - 0.2816702425479889, - 0.2910107970237732, - 0.3033020794391632, - 0.31820881366729736, - 0.33532440662384033, - 0.3541819751262665, - 0.3742671608924866, - 0.39503204822540283, - 0.4159102439880371, - 0.43633225560188293, - 0.4557410180568695, - 0.34263110160827637, - 0.32078927755355835, - 0.301085889339447, - 0.28405845165252686, - 0.2701713740825653, - 0.25980350375175476, - 0.25323760509490967, - 0.2506527900695801, - 0.25211960077285767, - 0.25759798288345337, - 0.2669385075569153, - 0.2798864245414734, - 0.2960885167121887, - 0.31510284543037415, - 0.3364107608795166, - 0.3594309985637665, - 0.3835356533527374, - 0.4080672264099121, - 0.43235650658607483, - 0.4557410180568695, - 0.34263110160827637, - 0.3192639946937561, - 0.2980769872665405, - 0.27964797616004944, - 0.2644796371459961, - 0.25298571586608887, - 0.2454797923564911, - 0.24216654896736145, - 0.24313639104366302, - 0.24836288392543793, - 0.25770342350006104, - 0.27090322971343994, - 0.2876023054122925, - 0.30734503269195557, - 0.3295929729938507, - 0.3537392318248749, - 0.37912517786026, - 0.4050582945346832, - 0.43083125352859497, - 0.4557410180568695, - 0.34263110160827637, - 0.32035452127456665, - 0.3002282679080963, - 0.2828013300895691, - 0.2685490846633911, - 0.2578602433204651, - 0.2510263919830322, - 0.24823395907878876, - 0.24955911934375763, - 0.25496572256088257, - 0.2643062472343445, - 0.27732595801353455, - 0.2936697006225586, - 0.3128916621208191, - 0.33446747064590454, - 0.3578086793422699, - 0.38227853178977966, - 0.407209575176239, - 0.4319217801094055, - 0.4557410180568695, - 0.34263110160827637, - 0.323942631483078, - 0.3073066174983978, - 0.2931768596172333, - 0.28193873167037964, - 0.27389881014823914, - 0.26927638053894043, - 0.26819756627082825, - 0.27069175243377686, - 0.2766909599304199, - 0.2860315144062042, - 0.29845860600471497, - 0.3136332929134369, - 0.3311416506767273, - 0.350506067276001, - 0.3711983263492584, - 0.39265406131744385, - 0.4142879247665405, - 0.43550989031791687, - 0.4557410180568695, - 0.34263110160827637, - 0.3296395242214203, - 0.31854498386383057, - 0.30965015292167664, - 0.30319762229919434, - 0.299363374710083, - 0.29825204610824585, - 0.29989394545555115, - 0.3042442500591278, - 0.3111843466758728, - 0.3205249011516571, - 0.3320111036300659, - 0.3453296720981598, - 0.3601173162460327, - 0.37597063183784485, - 0.3924572169780731, - 0.4091273546218872, - 0.42552629113197327, - 0.44120675325393677, - 0.4557410180568695, - 0.34263110160827637, - 0.33682781457901, - 0.33272552490234375, - 0.330436110496521, - 0.33002203702926636, - 0.33149453997612, - 0.33481350541114807, - 0.3398883640766144, - 0.34658074378967285, - 0.3547080457210541, - 0.364048570394516, - 0.3743475675582886, - 0.3853241205215454, - 0.39667874574661255, - 0.40810179710388184, - 0.41928163170814514, - 0.42991334199905396, - 0.43970686197280884, - 0.4483950734138489, - 0.4557410180568695, - 0.34263110160827637, - 0.34472858905792236, - 0.34831154346466064, - 0.35328224301338196, - 0.3595050573348999, - 0.36681026220321655, - 0.37499862909317017, - 0.3838467299938202, - 0.39311325550079346, - 0.40254542231559753, - 0.41188597679138184, - 0.42088010907173157, - 0.42928245663642883, - 0.43686386942863464, - 0.4434175491333008, - 0.4487646818161011, - 0.45275944471359253, - 0.45529285073280334, - 0.45629584789276123, - 0.4557409882545471, - 0.342631071805954, - 0.35248562693595886, - 0.3636140525341034, - 0.3757127821445465, - 0.38845181465148926, - 0.4014836251735687, - 0.41445279121398926, - 0.42700549960136414, - 0.4387993812561035, - 0.44951269030570984, - 0.45885324478149414, - 0.46656620502471924, - 0.4724412262439728, - 0.4763180613517761, - 0.47809088230133057, - 0.47771143913269043, - 0.4751899838447571, - 0.4705953598022461, - 0.46405288577079773, - 0.4557409882545471, - 0.342631071805954, - 0.35925838351249695, - 0.37697482109069824, - 0.395297110080719, - 0.41372549533843994, - 0.43175727128982544, - 0.44890058040618896, - 0.4646878242492676, - 0.4786883592605591, - 0.4905202388763428, - 0.4998607933521271, - 0.5064551830291748, - 0.5101235508918762, - 0.5107658505439758, - 0.5083645582199097, - 0.5029851198196411, - 0.49477434158325195, - 0.48395612835884094, - 0.4708256423473358, - 0.4557409882545471, - 0.342631071805954, - 0.36431288719177246, - 0.3869459629058838, - 0.40991291403770447, - 0.43258726596832275, - 0.4543505012989044, - 0.47460901737213135, - 0.4928101897239685, - 0.5084575414657593, - 0.5211242437362671, - 0.530464768409729, - 0.536224365234375, - 0.5382459163665771, - 0.5364742875099182, - 0.5309577584266663, - 0.5218468904495239, - 0.509390115737915, - 0.4939272701740265, - 0.47588014602661133, - 0.4557409882545471, - 0.342631071805954, - 0.36710143089294434, - 0.39244696497917175, - 0.4179763197898865, - 0.4429931342601776, - 0.4668150246143341, - 0.4887921214103699, - 0.5083250403404236, - 0.5248809456825256, - 0.5380081534385681, - 0.5473487377166748, - 0.5526477694511414, - 0.5537607669830322, - 0.5506573915481567, - 0.543422281742096, - 0.5322527885437012, - 0.5174535512924194, - 0.49942827224731445, - 0.4786686897277832, - 0.4557409882545471, - 0.342631071805954, - 0.36732178926467896, - 0.39288169145584106, - 0.4186135530471802, - 0.4438154995441437, - 0.4678000509738922, - 0.4899129867553711, - 0.5095511674880981, - 0.5261788368225098, - 0.53934246301651, - 0.5486830472946167, - 0.5539456605911255, - 0.5549868941307068, - 0.551778256893158, - 0.5444073677062988, - 0.5330750942230225, - 0.5180907845497131, - 0.49986302852630615, - 0.4788890480995178, - 0.4557409882545471 - ], - "y": [ - 0.11421044915914536, - 0.1176341325044632, - 0.12147865444421768, - 0.1256391406059265, - 0.13000209629535675, - 0.13444852828979492, - 0.13885712623596191, - 0.14310766756534576, - 0.14708417654037476, - 0.15067820250988007, - 0.15379169583320618, - 0.15633974969387054, - 0.15825285017490387, - 0.1594787985086441, - 0.15998417139053345, - 0.1597551703453064, - 0.15879806876182556, - 0.15713894367218018, - 0.15482306480407715, - 0.151913583278656, - 0.11421044170856476, - 0.12531408667564392, - 0.13662907481193542, - 0.1478467583656311, - 0.1586611568927765, - 0.16877728700637817, - 0.1779191792011261, - 0.1858375072479248, - 0.1923162341117859, - 0.1971786618232727, - 0.20029217004776, - 0.20157182216644287, - 0.2009826898574829, - 0.1985408365726471, - 0.1943129301071167, - 0.18841424584388733, - 0.18100568652153015, - 0.17228935658931732, - 0.16250300407409668, - 0.151913583278656, - 0.11421044170856476, - 0.13181865215301514, - 0.1494607776403427, - 0.16665558516979218, - 0.18293406069278717, - 0.19785213470458984, - 0.211002916097641, - 0.22202767431735992, - 0.2306256890296936, - 0.23656240105628967, - 0.23967590928077698, - 0.2398812621831894, - 0.23717285692691803, - 0.23162458837032318, - 0.22338777780532837, - 0.21268713474273682, - 0.19981451332569122, - 0.1851210594177246, - 0.1690075695514679, - 0.151913583278656, - 0.11421044170856476, - 0.13644295930862427, - 0.15858325362205505, - 0.18002739548683167, - 0.2001904547214508, - 0.21852239966392517, - 0.234523206949234, - 0.2477564513683319, - 0.25786110758781433, - 0.26456156373023987, - 0.2676750719547272, - 0.2671166658401489, - 0.2629016041755676, - 0.2551448941230774, - 0.2440580427646637, - 0.22994351387023926, - 0.2131863236427307, - 0.19424353539943695, - 0.17363187670707703, - 0.151913583278656, - 0.11421044170856476, - 0.13868588209152222, - 0.1630079299211502, - 0.18651312589645386, - 0.20856031775474548, - 0.2285481095314026, - 0.24593126773834229, - 0.26023566722869873, - 0.2710711359977722, - 0.2781420350074768, - 0.2812555432319641, - 0.2803266942501068, - 0.27538084983825684, - 0.26655295491218567, - 0.2540837526321411, - 0.23831340670585632, - 0.2196720540523529, - 0.1986682116985321, - 0.17587481439113617, - 0.151913583278656, - 0.11421044170856476, - 0.13830438256263733, - 0.16225531697273254, - 0.18540996313095093, - 0.20713666081428528, - 0.22684282064437866, - 0.24399086833000183, - 0.2581130862236023, - 0.2688242197036743, - 0.27583208680152893, - 0.27894559502601624, - 0.2780797779560089, - 0.2732582688331604, - 0.2646125555038452, - 0.2523784637451172, - 0.23688974976539612, - 0.21856889128684998, - 0.19791561365127563, - 0.1754932999610901, - 0.151913583278656, - 0.11421044170856476, - 0.13533979654312134, - 0.15640701353549957, - 0.17683744430541992, - 0.19607378542423248, - 0.2135913372039795, - 0.22891223430633545, - 0.24161863327026367, - 0.2513638734817505, - 0.25788211822509766, - 0.26099562644958496, - 0.26061946153640747, - 0.2567638158798218, - 0.24953392148017883, - 0.23912698030471802, - 0.22582685947418213, - 0.20999637246131897, - 0.19206729531288147, - 0.1725287139415741, - 0.151913583278656, - 0.11421044170856476, - 0.1301133632659912, - 0.14609672129154205, - 0.1617245227098465, - 0.17657049000263214, - 0.1902296543121338, - 0.20232942700386047, - 0.21253979206085205, - 0.22058218717575073, - 0.22623726725578308, - 0.22935077548027039, - 0.22983777523040771, - 0.22768497467041016, - 0.22295111417770386, - 0.2157653272151947, - 0.2063235640525818, - 0.19488345086574554, - 0.18175700306892395, - 0.16730229556560516, - 0.151913583278656, - 0.11421044170856476, - 0.1231914758682251, - 0.13244175910949707, - 0.14170895516872406, - 0.15074028074741364, - 0.1592893898487091, - 0.16712307929992676, - 0.1740276962518692, - 0.17981486022472382, - 0.18432673811912537, - 0.18744023144245148, - 0.1890704333782196, - 0.1891728788614273, - 0.18774476647377014, - 0.18482504785060883, - 0.18049335479736328, - 0.17486786842346191, - 0.16810204088687897, - 0.16038039326667786, - 0.151913583278656, - 0.11421044915914536, - 0.11532421410083771, - 0.11692182719707489, - 0.1189597025513649, - 0.12138225138187408, - 0.12412339448928833, - 0.1271083652973175, - 0.13025572896003723, - 0.13347963988780975, - 0.13669215142726898, - 0.1398056596517563, - 0.14273521304130554, - 0.14540091156959534, - 0.1477300226688385, - 0.14965903759002686, - 0.15113532543182373, - 0.15211862325668335, - 0.1525821089744568, - 0.15251314640045166, - 0.151913583278656, - 0.11421044915914536, - 0.10736412554979324, - 0.10121877491474152, - 0.09594202041625977, - 0.09167779982089996, - 0.08854244649410248, - 0.08662146329879761, - 0.08596724271774292, - 0.08659766614437103, - 0.08849550783634186, - 0.09160901606082916, - 0.09585323929786682, - 0.10111242532730103, - 0.1072431206703186, - 0.1140780821442604, - 0.12143087387084961, - 0.1291009485721588, - 0.1368790566921234, - 0.1445530503988266, - 0.1519135981798172, - 0.11421045660972595, - 0.10017380118370056, - 0.08703425526618958, - 0.07515022158622742, - 0.06484587490558624, - 0.056402288377285004, - 0.05004976689815521, - 0.04596161097288132, - 0.04424933344125748, - 0.04495962709188461, - 0.04807312786579132, - 0.053504906594753265, - 0.06110679358243942, - 0.0706714391708374, - 0.08193792402744293, - 0.09459894895553589, - 0.10830914974212646, - 0.12269453704357147, - 0.13736271858215332, - 0.1519135981798172, - 0.11421045660972595, - 0.09453243017196655, - 0.07590538263320923, - 0.05883742868900299, - 0.04379412531852722, - 0.0311858132481575, - 0.02135641872882843, - 0.01457405835390091, - 0.011023744940757751, - 0.010802321135997772, - 0.01391582190990448, - 0.02027931809425354, - 0.029719240963459015, - 0.041978076100349426, - 0.05672144144773483, - 0.07354718446731567, - 0.09199635684490204, - 0.11156566441059113, - 0.1317213475704193, - 0.1519135981798172, - 0.11421045660972595, - 0.09105132520198822, - 0.06903814524412155, - 0.04877135902643204, - 0.03080381453037262, - 0.015625610947608948, - 0.003650754690170288, - -0.004794105887413025, - -0.009478598833084106, - -0.010274961590766907, - -0.007161453366279602, - -0.00022302567958831787, - 0.01035107672214508, - 0.024272404611110687, - 0.04116123914718628, - 0.06055688112974167, - 0.08193028718233109, - 0.10469842702150345, - 0.12824024260044098, - 0.1519135981798172, - 0.11421045660972595, - 0.0901077464222908, - 0.06717672199010849, - 0.04604286700487137, - 0.027282677590847015, - 0.011407874524593353, - -0.001148521900177002, - -0.010044023394584656, - -0.015035942196846008, - -0.015988141298294067, - -0.012874633073806763, - -0.00578036904335022, - 0.00510115921497345, - 0.019473128020763397, - 0.036943502724170685, - 0.057035744190216064, - 0.07920179516077042, - 0.10283700376749039, - 0.12729667127132416, - 0.1519135981798172, - 0.11421045660972595, - 0.09180392324924469, - 0.07052280008792877, - 0.05094759911298752, - 0.03361225873231888, - 0.018989652395248413, - 0.007478639483451843, - -0.0006067901849746704, - -0.005046084523200989, - -0.005718156695365906, - -0.002604648470878601, - 0.0042094886302948, - 0.014538392424583435, - 0.028100289404392242, - 0.044525280594825745, - 0.06336533278226852, - 0.08410652726888657, - 0.10618308931589127, - 0.12899284064769745, - 0.1519135981798172, - 0.11421045660972595, - 0.09595606476068497, - 0.07871383428573608, - 0.06295407563447952, - 0.04910667985677719, - 0.03754936903715134, - 0.028597392141819, - 0.022494934499263763, - 0.019408464431762695, - 0.019422166049480438, - 0.022535666823387146, - 0.028664037585258484, - 0.03764011710882187, - 0.049219049513339996, - 0.06308499723672867, - 0.07885975390672684, - 0.09611300379037857, - 0.11437411606311798, - 0.13314498960971832, - 0.1519135981798172, - 0.11421044915914536, - 0.10211421549320221, - 0.09086215496063232, - 0.08076119422912598, - 0.072086863219738, - 0.06507578492164612, - 0.05991917848587036, - 0.05675773322582245, - 0.05567765235900879, - 0.056708432734012604, - 0.05982193350791931, - 0.06493322551250458, - 0.07190291583538055, - 0.08054083585739136, - 0.09061141312122345, - 0.10183993726968765, - 0.11392011493444443, - 0.12652243673801422, - 0.13930313289165497, - 0.1519135981798172, - 0.11421044915914536, - 0.10961104184389114, - 0.10565131902694702, - 0.102439284324646, - 0.10006256401538849, - 0.09858597815036774, - 0.09804980456829071, - 0.09846867620944977, - 0.09983117133378983, - 0.10210011154413223, - 0.10521361231803894, - 0.10908674448728561, - 0.11361385881900787, - 0.1186714768409729, - 0.12412162125110626, - 0.12981563806533813, - 0.13559821248054504, - 0.14131160080432892, - 0.1467999666929245, - 0.1519135981798172, - 0.11421044915914536, - 0.11763413995504379, - 0.12147866189479828, - 0.1256391555070877, - 0.13000211119651794, - 0.13444854319095612, - 0.1388571560382843, - 0.14310768246650696, - 0.14708420634269714, - 0.15067823231220245, - 0.15379172563552856, - 0.15633977949619293, - 0.15825286507606506, - 0.1594788134098053, - 0.15998418629169464, - 0.15975520014762878, - 0.15879806876182556, - 0.15713894367218018, - 0.15482306480407715, - 0.151913583278656 - ], - "z": [ - -2.284207344055176, - -2.2856032848358154, - -2.297245740890503, - -2.318816900253296, - -2.349728584289551, - -2.3891375064849854, - -2.4359686374664307, - -2.4889445304870605, - -2.5466203689575195, - -2.6074225902557373, - -2.6696927547454834, - -2.7317326068878174, - -2.791849374771118, - -2.8484034538269043, - -2.8998525142669678, - -2.9447925090789795, - -2.9819982051849365, - -3.0104544162750244, - -3.0293848514556885, - -3.038273334503174, - -2.284207344055176, - -2.2855751514434814, - -2.297189950942993, - -2.318735361099243, - -2.349623203277588, - -2.3890111446380615, - -2.4358248710632324, - -2.4887874126434326, - -2.5464539527893066, - -2.6072514057159424, - -2.6695218086242676, - -2.7315661907196045, - -2.7916922569274902, - -2.848259925842285, - -2.899726152420044, - -2.9446871280670166, - -2.9819164276123047, - -3.0103986263275146, - -3.0293564796447754, - -3.038273334503174, - -2.284207344055176, - -2.2859559059143066, - -2.297941207885742, - -2.319836378097534, - -2.351044178009033, - -2.3907132148742676, - -2.4377615451812744, - -2.490906000137329, - -2.548696517944336, - -2.6095569133758545, - -2.6718273162841797, - -2.733808755874634, - -2.7938108444213867, - -2.850196599960327, - -2.90142822265625, - -2.946108102798462, - -2.9830174446105957, - -3.0111498832702637, - -3.0297374725341797, - -3.038273334503174, - -2.284207344055176, - -2.2867045402526855, - -2.2994179725646973, - -2.3220009803771973, - -2.353837490081787, - -2.394059181213379, - -2.4415688514709473, - -2.495070695877075, - -2.553105115890503, - -2.614089250564575, - -2.6763594150543213, - -2.738217353820801, - -2.797975540161133, - -2.85400390625, - -2.9047741889953613, - -2.948901414871216, - -2.985182046890259, - -3.0126264095306396, - -3.0304858684539795, - -3.038273334503174, - -2.284207344055176, - -2.2877397537231445, - -2.301460027694702, - -2.3249943256378174, - -2.3577003479003906, - -2.398686408996582, - -2.446834087371826, - -2.5008301734924316, - -2.559201955795288, - -2.620357036590576, - -2.6826272010803223, - -2.744314193725586, - -2.8037350177764893, - -2.859269142150879, - -2.9094011783599854, - -2.9527642726898193, - -2.988175392150879, - -3.0146684646606445, - -3.0315210819244385, - -3.038273334503174, - -2.284207344055176, - -2.2889492511749268, - -2.3038463592529297, - -2.3284921646118164, - -2.3622143268585205, - -2.4040932655334473, - -2.452986717224121, - -2.5075604915618896, - -2.566326379776001, - -2.627681255340576, - -2.6899514198303223, - -2.751438617706299, - -2.8104653358459473, - -2.8654215335845947, - -2.9148082733154297, - -2.957278251647949, - -2.991673231124878, - -3.017054796218872, - -3.0327308177948, - -3.038273334503174, - -2.284207344055176, - -2.2902023792266846, - -2.3063182830810547, - -2.332115411758423, - -2.3668904304504395, - -2.4096944332122803, - -2.459359884262085, - -2.5145320892333984, - -2.5737061500549316, - -2.635267972946167, - -2.697538375854492, - -2.7588183879852295, - -2.817436933517456, - -2.8717947006225586, - -2.9204092025756836, - -2.961954355239868, - -2.9952964782714844, - -3.019526720046997, - -3.0339837074279785, - -3.038273334503174, - -2.284207344055176, - -2.291363000869751, - -2.308607816696167, - -2.3354716300964355, - -2.3712215423583984, - -2.414882183074951, - -2.4652631282806396, - -2.5209896564483643, - -2.5805418491363525, - -2.6422953605651855, - -2.7045657634735107, - -2.7656540870666504, - -2.823894500732422, - -2.8776979446411133, - -2.9255971908569336, - -2.966285467147827, - -2.998652696609497, - -3.0218162536621094, - -3.035144329071045, - -3.038273334503174, - -2.284207344055176, - -2.2923054695129395, - -2.310467004776001, - -2.3381967544555664, - -2.3747382164001465, - -2.419095039367676, - -2.4700565338134766, - -2.526233196258545, - -2.586092710494995, - -2.6480016708374023, - -2.7102720737457275, - -2.771204948425293, - -2.8291380405426025, - -2.8824915885925293, - -2.929809808731079, - -2.9698023796081543, - -3.001378059387207, - -3.0236754417419434, - -3.0360867977142334, - -3.038273334503174, - -2.284207344055176, - -2.2929275035858154, - -2.311694383621216, - -2.339995861053467, - -2.3770599365234375, - -2.4218759536743164, - -2.4732210636138916, - -2.5296947956085205, - -2.589756965637207, - -2.651768684387207, - -2.7140390872955322, - -2.774869203567505, - -2.832599639892578, - -2.8856558799743652, - -2.932590961456299, - -2.972123861312866, - -3.0031769275665283, - -3.024902820587158, - -3.0367090702056885, - -3.038273334503174, - -2.284207344055176, - -2.2931618690490723, - -2.3121566772460938, - -2.3406736850738525, - -2.3779349327087402, - -2.4229238033294678, - -2.4744133949279785, - -2.530999183654785, - -2.591137647628784, - -2.6531882286071777, - -2.715458393096924, - -2.776249885559082, - -2.8339040279388428, - -2.8868484497070312, - -2.933638572692871, - -2.972998857498169, - -3.003854751586914, - -3.0253653526306152, - -3.0369434356689453, - -3.038273334503174, - -2.284207344055176, - -2.292983293533325, - -2.3118042945861816, - -2.3401570320129395, - -2.377267837524414, - -2.4221251010894775, - -2.4735045433044434, - -2.5300049781799316, - -2.590085029602051, - -2.652106285095215, - -2.714376449584961, - -2.7751972675323486, - -2.8329098224639893, - -2.885939359664917, - -2.932839870452881, - -2.972332000732422, - -3.003338098526001, - -3.025012731552124, - -3.036764621734619, - -3.038273334503174, - -2.284207344055176, - -2.2924108505249023, - -2.3106749057769775, - -2.3385016918182373, - -2.375131607055664, - -2.4195661544799805, - -2.470592737197876, - -2.5268197059631348, - -2.5867135524749756, - -2.6486399173736572, - -2.7109103202819824, - -2.7718257904052734, - -2.8297245502471924, - -2.8830277919769287, - -2.930281162261963, - -2.970195770263672, - -3.001682758331299, - -3.023883581161499, - -3.0361921787261963, - -3.038273334503174, - -2.284207344055176, - -2.29150652885437, - -2.3088912963867188, - -2.3358869552612305, - -2.3717575073242188, - -2.415524482727051, - -2.465993881225586, - -2.521789073944092, - -2.581387996673584, - -2.643165349960327, - -2.7054355144500732, - -2.766500234603882, - -2.8246939182281494, - -2.8784289360046387, - -2.926239490509033, - -2.9668214321136475, - -2.999068260192871, - -3.022099733352661, - -3.035288095474243, - -3.038273334503174, - -2.284207344055176, - -2.2903685569763184, - -2.3066463470458984, - -2.33259654045105, - -2.36751127243042, - -2.410438060760498, - -2.4602060317993164, - -2.51545786857605, - -2.574686050415039, - -2.636275291442871, - -2.6985456943511963, - -2.759798288345337, - -2.8183627128601074, - -2.872641086578369, - -2.9211528301239014, - -2.9625751972198486, - -2.9957776069641113, - -3.01985502243042, - -3.0341501235961914, - -3.038273334503174, - -2.284207344055176, - -2.2891201972961426, - -2.3041837215423584, - -2.328986644744873, - -2.3628525733947754, - -2.404857873916626, - -2.4538564682006836, - -2.508512020111084, - -2.567333698272705, - -2.6287167072296143, - -2.6909871101379395, - -2.752445936203003, - -2.8114168643951416, - -2.8662915229797363, - -2.9155728816986084, - -2.957916736602783, - -2.9921679496765137, - -3.017392158508301, - -3.0329017639160156, - -3.038273334503174, - -2.284207344055176, - -2.2878968715667725, - -2.301769971847534, - -2.325448751449585, - -2.3582868576049805, - -2.3993887901306152, - -2.4476335048675537, - -2.501704692840576, - -2.5601277351379395, - -2.6213085651397705, - -2.6835789680480957, - -2.745239734649658, - -2.804609537124634, - -2.8600683212280273, - -2.9101037979125977, - -2.953350782394409, - -2.9886298179626465, - -3.0149786472320557, - -3.0316781997680664, - -3.038273334503174, - -2.284207344055176, - -2.2868306636810303, - -2.2996668815612793, - -2.3223659992218018, - -2.354308605194092, - -2.3946235179901123, - -2.442211151123047, - -2.4957730770111084, - -2.5538487434387207, - -2.614853858947754, - -2.6771240234375, - -2.7389609813690186, - -2.798677921295166, - -2.8546459674835205, - -2.9053385257720947, - -2.9493725299835205, - -2.9855470657348633, - -3.012875556945801, - -3.0306122303009033, - -3.038273334503174, - -2.284207344055176, - -2.2860376834869385, - -2.298102378845215, - -2.320072650909424, - -2.351348876953125, - -2.391078472137451, - -2.4381771087646484, - -2.4913604259490967, - -2.549177646636963, - -2.6100516319274902, - -2.6723217964172363, - -2.7342898845672607, - -2.7942652702331543, - -2.850612163543701, - -2.9017932415008545, - -2.9464128017425537, - -2.9832537174224854, - -3.0113108158111572, - -3.0298190116882324, - -3.038273334503174, - -2.284207344055176, - -2.2856032848358154, - -2.297245740890503, - -2.318816900253296, - -2.349728584289551, - -2.3891375064849854, - -2.4359686374664307, - -2.4889445304870605, - -2.5466203689575195, - -2.6074225902557373, - -2.6696927547454834, - -2.7317326068878174, - -2.791849374771118, - -2.8484034538269043, - -2.8998525142669678, - -2.9447925090789795, - -2.9819982051849365, - -3.0104544162750244, - -3.0293848514556885, - -3.038273334503174 - ] - }, - { - "alphahull": 0, - "color": "#19D3F3", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.15042686462402344, - -0.1511794775724411, - -0.15341678261756897, - -0.15707775950431824, - -0.16206255555152893, - -0.1682351529598236, - -0.17542724311351776, - -0.1834426075220108, - -0.1920626163482666, - -0.20105212926864624, - -0.21016594767570496, - -0.2191554605960846, - -0.2277754694223404, - -0.23579083383083344, - -0.2429829090833664, - -0.24915552139282227, - -0.25414031744003296, - -0.2578012943267822, - -0.2600386142730713, - -0.26079121232032776, - -0.15042686462402344, - -0.1552836000919342, - -0.1615130752325058, - -0.16894538700580597, - -0.17737777531147003, - -0.18658024072647095, - -0.19630177319049835, - -0.20627717673778534, - -0.21623435616493225, - -0.22590169310569763, - -0.23501551151275635, - -0.24332720041275024, - -0.25061002373695374, - -0.25666534900665283, - -0.26132798194885254, - -0.26447075605392456, - -0.2660079300403595, - -0.26589757204055786, - -0.2641427218914032, - -0.26079121232032776, - -0.15042686462402344, - -0.15894296765327454, - -0.16873201727867126, - -0.17952696979045868, - -0.19103336334228516, - -0.20293734967708588, - -0.2149142175912857, - -0.22663725912570953, - -0.23778671026229858, - -0.24805842339992523, - -0.25717225670814514, - -0.2648795545101166, - -0.27097010612487793, - -0.2752777934074402, - -0.27768510580062866, - -0.2781263589859009, - -0.2765895128250122, - -0.2731165289878845, - -0.26780208945274353, - -0.26079121232032776, - -0.15042686462402344, - -0.16176104545593262, - -0.17429131269454956, - -0.1876758337020874, - -0.20154951512813568, - -0.21553392708301544, - -0.22924762964248657, - -0.24231654405593872, - -0.2543841600418091, - -0.26512131094932556, - -0.2742351293563843, - -0.2814770042896271, - -0.2866494059562683, - -0.28961122035980225, - -0.2902816832065582, - -0.2886424958705902, - -0.28473836183547974, - -0.2786758244037628, - -0.2706201672554016, - -0.26079121232032776, - -0.15042686462402344, - -0.16343244910240173, - -0.17758852243423462, - -0.19250890612602234, - -0.20778663456439972, - -0.22300496697425842, - -0.23774878680706024, - -0.2516159117221832, - -0.26422807574272156, - -0.27524128556251526, - -0.284355103969574, - -0.29132091999053955, - -0.29594874382019043, - -0.2981123626232147, - -0.29775270819664, - -0.29487961530685425, - -0.28957146406173706, - -0.2819730341434479, - -0.2722916007041931, - -0.26079121232032776, - -0.15042686462402344, - -0.16377605497837067, - -0.17826634645462036, - -0.1935024857521057, - -0.20906884968280792, - -0.2245408296585083, - -0.2394964098930359, - -0.2535276412963867, - -0.2662517726421356, - -0.2773217260837555, - -0.2864355444908142, - -0.2933446168899536, - -0.2978605031967163, - -0.29986000061035156, - -0.2992886006832123, - -0.29616183042526245, - -0.29056504368782043, - -0.2826508581638336, - -0.27263519167900085, - -0.26079121232032776, - -0.15042686462402344, - -0.162754625082016, - -0.1762513518333435, - -0.1905488669872284, - -0.20525719225406647, - -0.21997511386871338, - -0.23430116474628448, - -0.24784457683563232, - -0.26023590564727783, - -0.27113717794418335, - -0.2802509665489197, - -0.2873287498950958, - -0.2921774387359619, - -0.29466474056243896, - -0.29472285509109497, - -0.292350172996521, - -0.2876114249229431, - -0.28063586354255676, - -0.271613746881485, - -0.26079121232032776, - -0.15042686462402344, - -0.1604788452386856, - -0.1717618703842163, - -0.18396814167499542, - -0.19676473736763, - -0.2098025679588318, - -0.2227260172367096, - -0.23518256843090057, - -0.24683243036270142, - -0.25735780596733093, - -0.26647162437438965, - -0.2739252746105194, - -0.27951541543006897, - -0.28308960795402527, - -0.2845503091812134, - -0.28385770320892334, - -0.28103071451187134, - -0.27614638209342957, - -0.2693379819393158, - -0.26079121232032776, - -0.15042686462402344, - -0.1571953296661377, - -0.1652844101190567, - -0.17447343468666077, - -0.18451175093650818, - -0.195125550031662, - -0.20602531731128693, - -0.21691371500492096, - -0.2274937629699707, - -0.23747685551643372, - -0.24659067392349243, - -0.2545866072177887, - -0.26124656200408936, - -0.2663888931274414, - -0.2698732912540436, - -0.2716047167778015, - -0.2715359926223755, - -0.26966890692710876, - -0.2660544514656067, - -0.26079121232032776, - -0.15042686462402344, - -0.15325990319252014, - -0.15752090513706207, - -0.16309362649917603, - -0.16982604563236237, - -0.1775345355272293, - -0.18600882589817047, - -0.1950177550315857, - -0.20431560277938843, - -0.213648721575737, - -0.22276252508163452, - -0.23140844702720642, - -0.23935061693191528, - -0.24637241661548615, - -0.2522822916507721, - -0.2569190263748169, - -0.26015618443489075, - -0.2619054317474365, - -0.2621190547943115, - -0.26079121232032776, - -0.15042686462402344, - -0.14909903705120087, - -0.14931266009807587, - -0.15106190741062164, - -0.1542990505695343, - -0.1589357852935791, - -0.16484567523002625, - -0.1718674600124359, - -0.17980962991714478, - -0.18845553696155548, - -0.1975693553686142, - -0.20690247416496277, - -0.2162003070116043, - -0.22520925104618073, - -0.2336835414171219, - -0.24139203131198883, - -0.24812445044517517, - -0.25369715690612793, - -0.25795817375183105, - -0.26079121232032776, - -0.15042686462402344, - -0.1451636105775833, - -0.14154917001724243, - -0.1396820992231369, - -0.1396133452653885, - -0.14134478569030762, - -0.1448291838169098, - -0.14997150003910065, - -0.1566314697265625, - -0.16462740302085876, - -0.17374122142791748, - -0.1837243139743805, - -0.19430436193943024, - -0.20519275963306427, - -0.2160925269126892, - -0.22670632600784302, - -0.23674464225769043, - -0.2459336817264557, - -0.2540227472782135, - -0.26079121232032776, - -0.15042686462402344, - -0.1418800950050354, - -0.13507170975208282, - -0.13018739223480225, - -0.12736037373542786, - -0.12666776776313782, - -0.12812846899032593, - -0.13170266151428223, - -0.1372928023338318, - -0.14474645256996155, - -0.15386027097702026, - -0.16438564658164978, - -0.17603550851345062, - -0.1884920597076416, - -0.20141549408435822, - -0.2144533395767212, - -0.22724993526935577, - -0.23945622146129608, - -0.2507392466068268, - -0.26079121232032776, - -0.15042686462402344, - -0.1396043300628662, - -0.13058221340179443, - -0.12360665202140808, - -0.1188678964972496, - -0.11649520695209503, - -0.11655331403017044, - -0.11904063075780869, - -0.12388930469751358, - -0.13096708059310913, - -0.14008089900016785, - -0.15098215639591217, - -0.16337348520755768, - -0.17691689729690552, - -0.19124294817447662, - -0.20596086978912354, - -0.2206692099571228, - -0.2349667251110077, - -0.2484634518623352, - -0.26079121232032776, - -0.15042686462402344, - -0.13858288526535034, - -0.12856721878051758, - -0.12065304070711136, - -0.11505624651908875, - -0.11192949116230011, - -0.11135807633399963, - -0.11335757374763489, - -0.11787345260381699, - -0.12478253990411758, - -0.1338963508605957, - -0.14496630430221558, - -0.15769043564796448, - -0.1717216521501541, - -0.1866772174835205, - -0.20214921236038208, - -0.21771559119224548, - -0.23295173048973083, - -0.24744202196598053, - -0.26079121232032776, - -0.15042686462402344, - -0.13892649114131927, - -0.12924504280090332, - -0.12164660543203354, - -0.11633845418691635, - -0.11346535384654999, - -0.11310570687055588, - -0.11526930332183838, - -0.11989712715148926, - -0.12686297297477722, - -0.13597679138183594, - -0.14698997139930725, - -0.15960216522216797, - -0.17346929013729095, - -0.18821309506893158, - -0.20343142747879028, - -0.21870915591716766, - -0.23362955451011658, - -0.24778562784194946, - -0.26079121232032776, - -0.15042686462402344, - -0.1405978947877884, - -0.13254225254058838, - -0.12647970020771027, - -0.12257557362318039, - -0.12093639373779297, - -0.12160685658454895, - -0.12456867843866348, - -0.12974107265472412, - -0.13698294758796692, - -0.14609676599502563, - -0.15683391690254211, - -0.16890153288841248, - -0.18197043240070343, - -0.19568413496017456, - -0.20966854691505432, - -0.2235422432422638, - -0.23692676424980164, - -0.24945703148841858, - -0.26079121232032776, - -0.15042686462402344, - -0.14341597259044647, - -0.13810154795646667, - -0.134628564119339, - -0.1330917328596115, - -0.13353298604488373, - -0.135940283536911, - -0.14024797081947327, - -0.14633852243423462, - -0.15404583513736725, - -0.16315965354442596, - -0.1734313666820526, - -0.18458081781864166, - -0.1963038593530655, - -0.20828072726726532, - -0.22018471360206604, - -0.2316911220550537, - -0.24248605966567993, - -0.25227510929107666, - -0.26079121232032776, - -0.15042686462402344, - -0.147075355052948, - -0.14532050490379333, - -0.1452101469039917, - -0.14674733579158783, - -0.14989009499549866, - -0.15455275774002075, - -0.16060806810855865, - -0.16789090633392334, - -0.17620258033275604, - -0.18531639873981476, - -0.19498375058174133, - -0.20494093000888824, - -0.21491633355617523, - -0.22463785111904144, - -0.23384031653404236, - -0.24227270483970642, - -0.2497050166130066, - -0.255934476852417, - -0.26079121232032776, - -0.15042686462402344, - -0.1511794775724411, - -0.15341678261756897, - -0.15707777440547943, - -0.16206255555152893, - -0.1682351678609848, - -0.17542725801467896, - -0.183442622423172, - -0.1920626312494278, - -0.20105214416980743, - -0.21016596257686615, - -0.2191554754972458, - -0.2277754843235016, - -0.23579083383083344, - -0.2429829239845276, - -0.24915553629398346, - -0.25414031744003296, - -0.2578012943267822, - -0.2600386142730713, - -0.26079121232032776 - ], - "y": [ - -0.05014228820800781, - -0.06315801292657852, - -0.07632043957710266, - -0.08927053958177567, - -0.10165506601333618, - -0.11313620209693909, - -0.12340076267719269, - -0.13216876983642578, - -0.13920104503631592, - -0.1443057656288147, - -0.147343710064888, - -0.14823199808597565, - -0.14694638550281525, - -0.14352194964885712, - -0.1380521059036255, - -0.13068605959415436, - -0.12162472307682037, - -0.11111527681350708, - -0.09944438189268112, - -0.08693040162324905, - -0.05014228820800781, - -0.06243567541241646, - -0.0748954638838768, - -0.08718179911375046, - -0.0989595428109169, - -0.10990740358829498, - -0.11972677707672119, - -0.12814980745315552, - -0.13494673371315002, - -0.13993218541145325, - -0.14297011494636536, - -0.14397768676280975, - -0.14292743802070618, - -0.13984796404838562, - -0.13482332229614258, - -0.12799052894115448, - -0.11953597515821457, - -0.10969029366970062, - -0.09872204065322876, - -0.08693040162324905, - -0.05014228820800781, - -0.0604083389043808, - -0.07089610397815704, - -0.08131949603557587, - -0.09139420092105865, - -0.10084540396928787, - -0.10941529273986816, - -0.11687012016773224, - -0.12300652265548706, - -0.12765711545944214, - -0.13069505989551544, - -0.1320374608039856, - -0.1316477358341217, - -0.1295364946126938, - -0.12576131522655487, - -0.12042519450187683, - -0.11367367208003998, - -0.10569093376398087, - -0.0966947078704834, - -0.08693040162324905, - -0.05014228820800781, - -0.05729570984840393, - -0.06475574523210526, - -0.0723189041018486, - -0.07977888733148575, - -0.08693219721317291, - -0.09358372539281845, - -0.09955202043056488, - -0.10467428714036942, - -0.10881081223487854, - -0.11184874922037125, - -0.11370523273944855, - -0.11432963609695435, - -0.11370491981506348, - -0.11184811592102051, - -0.10880987346172333, - -0.10467308759689331, - -0.09955057501792908, - -0.09358207881450653, - -0.08693040162324905, - -0.05014229193329811, - -0.053435079753398895, - -0.057139791548252106, - -0.061155371367931366, - -0.0653722882270813, - -0.0696755051612854, - -0.07394765317440033, - -0.0780721977353096, - -0.08193662762641907, - -0.08543552458286285, - -0.08847346901893616, - -0.0909675732254982, - -0.09284981340169907, - -0.09406884759664536, - -0.0945914164185524, - -0.09440327435731888, - -0.09350955486297607, - -0.09193462133407593, - -0.0897214487195015, - -0.08693040162324905, - -0.05014229565858841, - -0.04924481362104416, - -0.04887355491518974, - -0.04903864860534668, - -0.04973558336496353, - -0.050945356488227844, - -0.05263496935367584, - -0.05475832521915436, - -0.0572575144469738, - -0.06006436049938202, - -0.06310229748487473, - -0.06628846377134323, - -0.06953594088554382, - -0.07275615632534027, - -0.07586126774549484, - -0.07876656949520111, - -0.08139282464981079, - -0.08366838842630386, - -0.08553118258714676, - -0.08693040907382965, - -0.05014229565858841, - -0.045178987085819244, - -0.040852807462215424, - -0.03728175908327103, - -0.03456325829029083, - -0.03277145326137543, - -0.03195522353053093, - -0.03213682770729065, - -0.03331131488084793, - -0.0354466587305069, - -0.0384845957159996, - -0.04234226420521736, - -0.046914443373680115, - -0.05207641422748566, - -0.05768735706806183, - -0.06359424442052841, - -0.06963593512773514, - -0.07564763724803925, - -0.08146535605192184, - -0.08693040907382965, - -0.05014229565858841, - -0.04167819768190384, - -0.03394671529531479, - -0.02715875580906868, - -0.02149946242570877, - -0.017123214900493622, - -0.014149382710456848, - -0.012659087777137756, - -0.012692973017692566, - -0.01425013318657875, - -0.017288070172071457, - -0.021723922342061996, - -0.02743670344352722, - -0.034270573407411575, - -0.04203911870718002, - -0.05053044855594635, - -0.05951293185353279, - -0.06874154508113861, - -0.07796456664800644, - -0.08693040907382965, - -0.05014229565858841, - -0.039121806621551514, - -0.028903674334287643, - -0.019766617566347122, - -0.011959865689277649, - -0.005696378648281097, - -0.0011470019817352295, - 0.0015641748905181885, - 0.0023631900548934937, - 0.0012282505631446838, - -0.0018096864223480225, - -0.006667759269475937, - -0.013213440775871277, - -0.02126818522810936, - -0.0306122787296772, - -0.04099085181951523, - -0.05212079733610153, - -0.06369850784540176, - -0.07540817558765411, - -0.08693040907382965, - -0.05014229565858841, - -0.03778684884309769, - -0.02627016231417656, - -0.01590639352798462, - -0.006978228688240051, - 0.00027079135179519653, - 0.005642920732498169, - 0.008991651237010956, - 0.01022561639547348, - 0.00931115448474884, - 0.006273217499256134, - 0.0011946707963943481, - -0.0057859644293785095, - -0.014478258788585663, - -0.024645112454891205, - -0.03600921109318733, - -0.04826056957244873, - -0.06106499582529068, - -0.07407321780920029, - -0.08693040907382965, - -0.05014229565858841, - -0.037817977368831635, - -0.026331569999456406, - -0.015996407717466354, - -0.007094390690326691, - 0.00013164430856704712, - 0.005484595894813538, - 0.008818462491035461, - 0.010042279958724976, - 0.009122677147388458, - 0.006084740161895752, - 0.0010113343596458435, - -0.005959153175354004, - -0.014636583626270294, - -0.024784255772829056, - -0.03612537309527397, - -0.048350587487220764, - -0.061126403510570526, - -0.07410434633493423, - -0.08693040907382965, - -0.05014229565858841, - -0.03921182081103325, - -0.02908124402165413, - -0.020026899874210358, - -0.012295763939619064, - -0.006098732352256775, - -0.0016048252582550049, - 0.0010633617639541626, - 0.0018330514430999756, - 0.0006832405924797058, - -0.0023546963930130005, - -0.007197897881269455, - -0.013714257627725601, - -0.021726012229919434, - -0.03101462870836258, - -0.041326750069856644, - -0.05238107591867447, - -0.06387607753276825, - -0.07549819350242615, - -0.08693040907382965, - -0.05014229565858841, - -0.04181733727455139, - -0.03422120586037636, - -0.02756110206246376, - -0.02201869711279869, - -0.01774517074227333, - -0.01485709473490715, - -0.013433244079351425, - -0.013512466102838516, - -0.015092603862285614, - -0.01813054084777832, - -0.022543415427207947, - -0.02821085974574089, - -0.03497828170657158, - -0.042661070823669434, - -0.05104967951774597, - -0.05991528183221817, - -0.06901603937149048, - -0.07810370624065399, - -0.08693040907382965, - -0.05014229565858841, - -0.045352183282375336, - -0.04119447246193886, - -0.03778257966041565, - -0.035209570080041885, - -0.03354562446475029, - -0.03283613920211792, - -0.03310045599937439, - -0.03433137759566307, - -0.03649532049894333, - -0.039533257484436035, - -0.0433623269200325, - -0.047878071665763855, - -0.05295732617378235, - -0.05846153199672699, - -0.06424055248498917, - -0.07013675570487976, - -0.07598930597305298, - -0.08163855224847794, - -0.08693040907382965, - -0.05014229565858841, - -0.04943329095840454, - -0.04924536496400833, - -0.04958365112543106, - -0.05043891817331314, - -0.051787830889225006, - -0.053593605756759644, - -0.055806975811719894, - -0.05836757272481918, - -0.06120554357767105, - -0.06424348056316376, - -0.06739851832389832, - -0.07058459520339966, - -0.07371479272842407, - -0.076703742146492, - -0.07946990430355072, - -0.08193783462047577, - -0.08404019474983215, - -0.08571965992450714, - -0.08693040907382965, - -0.05014229193329811, - -0.0536184124648571, - -0.05750145763158798, - -0.06168550252914429, - -0.06605642288923264, - -0.07049498707056046, - -0.07488013058900833, - -0.07909222692251205, - -0.08301638811826706, - -0.08654557168483734, - -0.08958350867033005, - -0.09204733371734619, - -0.09386984258890152, - -0.09500132501125336, - -0.09541089832782745, - -0.09508740901947021, - -0.0940396785736084, - -0.0922962874174118, - -0.08990478515625, - -0.08693040162324905, - -0.05014228820800781, - -0.05745403841137886, - -0.0650680810213089, - -0.07277672737836838, - -0.08036971092224121, - -0.08763990551233292, - -0.09438901394605637, - -0.10043292492628098, - -0.10560677945613861, - -0.10976944863796234, - -0.11280737817287445, - -0.11463772505521774, - -0.11521054059267044, - -0.11451020836830139, - -0.11255581676959991, - -0.10940070450305939, - -0.10513091087341309, - -0.09986291080713272, - -0.09374040365219116, - -0.08693040162324905, - -0.05014228820800781, - -0.060524504631757736, - -0.07112526148557663, - -0.08165539801120758, - -0.09182768315076828, - -0.10136464238166809, - -0.11000612378120422, - -0.11751643568277359, - -0.12369067966938019, - -0.12836046516895294, - -0.13139840960502625, - -0.13272163271903992, - -0.13229405879974365, - -0.13012732565402985, - -0.12628056108951569, - -0.12085867673158646, - -0.11400957405567169, - -0.10592009127140045, - -0.09681087732315063, - -0.08693040162324905, - -0.05014228820800781, - -0.062497083097696304, - -0.07501661032438278, - -0.08735937625169754, - -0.09918870031833649, - -0.11018189787864685, - -0.12003912031650543, - -0.12849149107933044, - -0.1353084295988083, - -0.14030399918556213, - -0.14334194362163544, - -0.14433938264846802, - -0.1432691067457199, - -0.14016032218933105, - -0.13509783148765564, - -0.12821969389915466, - -0.11971355229616165, - -0.1098114401102066, - -0.0987834557890892, - -0.08693040162324905, - -0.05014228820800781, - -0.06315801292657852, - -0.07632043957710266, - -0.08927053958177567, - -0.10165506601333618, - -0.11313620209693909, - -0.12340076267719269, - -0.13216876983642578, - -0.13920104503631592, - -0.1443057656288147, - -0.147343710064888, - -0.14823199808597565, - -0.14694638550281525, - -0.14352194964885712, - -0.1380521059036255, - -0.13068605959415436, - -0.12162472307682037, - -0.11111527681350708, - -0.09944438189268112, - -0.08693040162324905 - ], - "z": [ - -1.0028456449508667, - -1.0072247982025146, - -1.021519422531128, - -1.0453393459320068, - -1.0780351161956787, - -1.1187148094177246, - -1.1662685871124268, - -1.2193995714187622, - -1.276658296585083, - -1.3364830017089844, - -1.3972418308258057, - -1.4572772979736328, - -1.5149519443511963, - -1.5686925649642944, - -1.6170331239700317, - -1.658655047416687, - -1.6924231052398682, - -1.7174161672592163, - -1.732952356338501, - -1.7386080026626587, - -1.0028456449508667, - -1.0066453218460083, - -1.020376205444336, - -1.043663740158081, - -1.0758726596832275, - -1.1161243915557861, - -1.1633211374282837, - -1.2161753177642822, - -1.2732452154159546, - -1.3329741954803467, - -1.393733024597168, - -1.4538642168045044, - -1.5117276906967163, - -1.5657449960708618, - -1.6144427061080933, - -1.6564924716949463, - -1.6907473802566528, - -1.7162729501724243, - -1.7323728799819946, - -1.7386080026626587, - -1.0028456449508667, - -1.0061976909637451, - -1.0194933414459229, - -1.0423696041107178, - -1.074202537536621, - -1.1141239404678345, - -1.1610448360443115, - -1.2136852741241455, - -1.2706093788146973, - -1.3302644491195679, - -1.3910232782363892, - -1.451228380203247, - -1.5092376470565796, - -1.5634686946868896, - -1.6124422550201416, - -1.6548224687576294, - -1.689453363418579, - -1.7153900861740112, - -1.731925368309021, - -1.7386080026626587, - -1.0028456449508667, - -1.0059306621551514, - -1.0189664363861084, - -1.0415972471237183, - -1.0732059478759766, - -1.1129300594329834, - -1.1596864461898804, - -1.212199330329895, - -1.2690364122390747, - -1.3286473751068115, - -1.3894062042236328, - -1.4496554136276245, - -1.507751703262329, - -1.5621103048324585, - -1.61124849319458, - -1.6538257598876953, - -1.6886810064315796, - -1.7148631811141968, - -1.7316582202911377, - -1.7386080026626587, - -1.0028456449508667, - -1.0058729648590088, - -1.0188525915145874, - -1.0414304733276367, - -1.0729906558990479, - -1.1126723289489746, - -1.159393072128296, - -1.2118784189224243, - -1.268696665763855, - -1.3282980918884277, - -1.389056921005249, - -1.4493156671524048, - -1.5074307918548584, - -1.561816930770874, - -1.6109906435012817, - -1.6536105871200562, - -1.688514232635498, - -1.7147494554519653, - -1.7316005229949951, - -1.7386080026626587, - -1.0028456449508667, - -1.0060309171676636, - -1.0191643238067627, - -1.0418872833251953, - -1.0735801458358765, - -1.1133784055709839, - -1.1601965427398682, - -1.2127573490142822, - -1.2696270942687988, - -1.3292546272277832, - -1.3900134563446045, - -1.4502460956573486, - -1.5083097219467163, - -1.5626204013824463, - -1.611696720123291, - -1.6542000770568848, - -1.6889710426330566, - -1.715061068534851, - -1.7317585945129395, - -1.7386080026626587, - -1.0028456449508667, - -1.00638747215271, - -1.0198675394058228, - -1.0429182052612305, - -1.0749105215072632, - -1.1149719953536987, - -1.162009835243225, - -1.2147408723831177, - -1.2717268466949463, - -1.3314131498336792, - -1.3921719789505005, - -1.4523457288742065, - -1.5102932453155518, - -1.5644336938858032, - -1.6132903099060059, - -1.6555304527282715, - -1.6900019645690918, - -1.7157642841339111, - -1.7321150302886963, - -1.7386080026626587, - -1.0028456449508667, - -1.006903886795044, - -1.0208863019943237, - -1.0444114208221436, - -1.0768375396728516, - -1.1172802448272705, - -1.1646363735198975, - -1.2176140546798706, - -1.2747682332992554, - -1.3345398902893066, - -1.395298719406128, - -1.4553872346878052, - -1.5131664276123047, - -1.5670602321624756, - -1.6155985593795776, - -1.6574574708938599, - -1.6914951801300049, - -1.716783046722412, - -1.7326314449310303, - -1.7386080026626587, - -1.0028456449508667, - -1.0075242519378662, - -1.0221099853515625, - -1.0462052822113037, - -1.0791525840759277, - -1.1200531721115112, - -1.1677916049957275, - -1.2210655212402344, - -1.2784218788146973, - -1.3382959365844727, - -1.399054765701294, - -1.459040880203247, - -1.5166178941726685, - -1.5702154636383057, - -1.6183714866638184, - -1.6597723960876465, - -1.693289041519165, - -1.7180068492889404, - -1.7332518100738525, - -1.7386080026626587, - -1.0028456449508667, - -1.0081813335418701, - -1.0234062671661377, - -1.048105239868164, - -1.0816044807434082, - -1.1229901313781738, - -1.1711335182189941, - -1.2247213125228882, - -1.2822916507720947, - -1.3422743082046509, - -1.4030331373214722, - -1.4629106521606445, - -1.5202736854553223, - -1.5735574960708618, - -1.6213085651397705, - -1.662224292755127, - -1.6951889991760254, - -1.719303011894226, - -1.7339088916778564, - -1.7386080026626587, - -1.0028456449508667, - -1.0088038444519043, - -1.0246343612670898, - -1.04990553855896, - -1.0839276313781738, - -1.1257730722427368, - -1.1743000745773315, - -1.2281851768493652, - -1.2859584093093872, - -1.3460439443588257, - -1.4068026542663574, - -1.466577410697937, - -1.5237375497817993, - -1.5767240524291992, - -1.624091386795044, - -1.6645475625991821, - -1.6969891786575317, - -1.7205312252044678, - -1.7345314025878906, - -1.7386080026626587, - -1.0028456449508667, - -1.0093244314193726, - -1.0256614685058594, - -1.0514109134674072, - -1.0858705043792725, - -1.1281001567840576, - -1.176948070526123, - -1.2310818433761597, - -1.2890247106552124, - -1.349196195602417, - -1.4099549055099487, - -1.4696437120437622, - -1.5266342163085938, - -1.5793720483779907, - -1.6264184713363647, - -1.6664904356002808, - -1.6984946727752686, - -1.7215582132339478, - -1.7350521087646484, - -1.7386080026626587, - -1.0028456449508667, - -1.0096867084503174, - -1.0263760089874268, - -1.05245840549469, - -1.0872223377227783, - -1.1297193765640259, - -1.17879056930542, - -1.2330973148345947, - -1.2911581993103027, - -1.3513895273208618, - -1.4121482372283936, - -1.4717772006988525, - -1.5286496877670288, - -1.5812145471572876, - -1.628037691116333, - -1.667842149734497, - -1.6995421648025513, - -1.7222728729248047, - -1.7354142665863037, - -1.7386080026626587, - -1.0028456449508667, - -1.009851336479187, - -1.0267008543014526, - -1.0529344081878662, - -1.0878366231918335, - -1.1304552555084229, - -1.1796278953552246, - -1.2340131998062134, - -1.2921277284622192, - -1.352386236190796, - -1.4131450653076172, - -1.472746729850769, - -1.529565691947937, - -1.5820518732070923, - -1.62877357006073, - -1.6684565544128418, - -1.7000181674957275, - -1.722597599029541, - -1.735579013824463, - -1.7386080026626587, - -1.0028456449508667, - -1.0098005533218384, - -1.0266005992889404, - -1.05278742313385, - -1.0876469612121582, - -1.130228042602539, - -1.179369330406189, - -1.2337303161621094, - -1.2918283939361572, - -1.3520784378051758, - -1.412837266921997, - -1.472447395324707, - -1.529282808303833, - -1.5817933082580566, - -1.6285463571548462, - -1.668266773223877, - -1.6998711824417114, - -1.7224973440170288, - -1.7355281114578247, - -1.7386080026626587, - -1.0028456449508667, - -1.0095397233963013, - -1.0260860919952393, - -1.0520333051681519, - -1.0866737365722656, - -1.129062294960022, - -1.1780428886413574, - -1.2322793006896973, - -1.2902923822402954, - -1.3504993915557861, - -1.4112581014633179, - -1.4709113836288452, - -1.527831792831421, - -1.5804667472839355, - -1.627380609512329, - -1.6672935485839844, - -1.6991170644760132, - -1.7219828367233276, - -1.7352672815322876, - -1.7386080026626587, - -1.0028456449508667, - -1.0090972185134888, - -1.0252131223678589, - -1.0507538318634033, - -1.0850224494934082, - -1.1270843744277954, - -1.1757922172546387, - -1.2298173904418945, - -1.2876862287521362, - -1.3478201627731323, - -1.4085789918899536, - -1.468305230140686, - -1.5253698825836182, - -1.5782161951065063, - -1.6254026889801025, - -1.6656423807144165, - -1.6978375911712646, - -1.7211099863052368, - -1.734824776649475, - -1.7386080026626587, - -1.0028456449508667, - -1.0085209608078003, - -1.0240764617919922, - -1.0490875244140625, - -1.0828721523284912, - -1.1245086193084717, - -1.1728613376617432, - -1.2266113758087158, - -1.284292459487915, - -1.3443312644958496, - -1.4050899744033813, - -1.4649114608764648, - -1.52216374874115, - -1.5752853155136108, - -1.6228269338607788, - -1.6634920835494995, - -1.6961712837219238, - -1.7199732065200806, - -1.7342486381530762, - -1.7386080026626587, - -1.0028456449508667, - -1.0078734159469604, - -1.022799015045166, - -1.0472151041030884, - -1.0804557800292969, - -1.1216142177581787, - -1.1695678234100342, - -1.223008632659912, - -1.2804787158966064, - -1.3404104709625244, - -1.4011693000793457, - -1.4610977172851562, - -1.5185610055923462, - -1.5719918012619019, - -1.6199325323104858, - -1.6610755920410156, - -1.6942988634109497, - -1.7186957597732544, - -1.7336010932922363, - -1.7386080026626587, - -1.0028456449508667, - -1.0072247982025146, - -1.021519422531128, - -1.0453393459320068, - -1.0780351161956787, - -1.1187148094177246, - -1.1662685871124268, - -1.2193995714187622, - -1.276658296585083, - -1.3364830017089844, - -1.3972418308258057, - -1.4572772979736328, - -1.5149519443511963, - -1.5686925649642944, - -1.6170330047607422, - -1.658655047416687, - -1.6924231052398682, - -1.7174161672592163, - -1.732952356338501, - -1.7386080026626587 - ] - }, - { - "alphahull": 0, - "color": "#FF6692", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.357948899269104, - -0.37511637806892395, - -0.3902827799320221, - -0.40303438901901245, - -0.4130233824253082, - -0.4199773073196411, - -0.4237064719200134, - -0.4241091012954712, - -0.4211742877960205, - -0.41498202085494995, - -0.40570127964019775, - -0.3935851454734802, - -0.3789641857147217, - -0.3622371554374695, - -0.34386035799980164, - -0.3243350684642792, - -0.3041938841342926, - -0.2839861810207367, - -0.26426318287849426, - -0.24556291103363037, - -0.357948899269104, - -0.37271690368652344, - -0.38554930686950684, - -0.39609602093696594, - -0.4040693938732147, - -0.4092519283294678, - -0.41150224208831787, - -0.41075897216796875, - -0.40704235434532166, - -0.4004538357257843, - -0.3911730647087097, - -0.37945324182510376, - -0.36561402678489685, - -0.3500329256057739, - -0.3331349790096283, - -0.31538107991218567, - -0.2972555160522461, - -0.27925270795822144, - -0.26186373829841614, - -0.24556291103363037, - -0.357948899269104, - -0.36863404512405396, - -0.3774949610233307, - -0.3842898905277252, - -0.38883352279663086, - -0.3910019099712372, - -0.3907358646392822, - -0.38804271817207336, - -0.3829958736896515, - -0.37573301792144775, - -0.36645224690437317, - -0.3554067611694336, - -0.34289780259132385, - -0.32926657795906067, - -0.3148849606513977, - -0.3001452088356018, - -0.28544938564300537, - -0.2711983621120453, - -0.25778087973594666, - -0.24556291103363037, - -0.357948899269104, - -0.3633102476596832, - -0.3669925630092621, - -0.36889538168907166, - -0.36896681785583496, - -0.3672049343585968, - -0.36365774273872375, - -0.35842204093933105, - -0.35164064168930054, - -0.34349849820137024, - -0.33421772718429565, - -0.32405149936676025, - -0.31327712535858154, - -0.3021884262561798, - -0.2910879850387573, - -0.2802785038948059, - -0.2700548768043518, - -0.2606959640979767, - -0.25245705246925354, - -0.24556291103363037, - -0.357948899269104, - -0.3573223948478699, - -0.35518020391464233, - -0.3515807092189789, - -0.34662216901779175, - -0.34043973684310913, - -0.33320215344429016, - -0.32510679960250854, - -0.31637445092201233, - -0.30724337697029114, - -0.29796263575553894, - -0.28878533840179443, - -0.27996185421943665, - -0.2717328369617462, - -0.26432278752326965, - -0.2579338252544403, - -0.25274020433425903, - -0.24888360500335693, - -0.24646921455860138, - -0.24556291103363037, - -0.357948899269104, - -0.35131940245628357, - -0.34333792328834534, - -0.3342222273349762, - -0.3242208957672119, - -0.31360679864883423, - -0.3026694655418396, - -0.29170718789100647, - -0.281019002199173, - -0.27089646458625793, - -0.26161572337150574, - -0.2534298896789551, - -0.24656224250793457, - -0.24120014905929565, - -0.23748984932899475, - -0.23553258180618286, - -0.23538169264793396, - -0.23704132437705994, - -0.24046620726585388, - -0.24556291103363037, - -0.357948899269104, - -0.34595173597335815, - -0.33274903893470764, - -0.3187009394168854, - -0.30419060587882996, - -0.28961387276649475, - -0.275368332862854, - -0.2618425786495209, - -0.24940556287765503, - -0.2383965253829956, - -0.22911575436592102, - -0.22181643545627594, - -0.21669764816761017, - -0.21389901638031006, - -0.21349690854549408, - -0.2155022770166397, - -0.21986041963100433, - -0.22645244002342224, - -0.23509857058525085, - -0.24556291103363037, - -0.357948899269104, - -0.34180113673210144, - -0.3245610296726227, - -0.30669885873794556, - -0.2887018322944641, - -0.2710609436035156, - -0.25425729155540466, - -0.23874929547309875, - -0.22495993971824646, - -0.21326538920402527, - -0.20398461818695068, - -0.19737081229686737, - -0.19360435009002686, - -0.19278797507286072, - -0.19494396448135376, - -0.20001351833343506, - -0.20785832405090332, - -0.2182644158601761, - -0.23094794154167175, - -0.24556291103363037, - -0.357948899269104, - -0.33931732177734375, - -0.31966114044189453, - -0.29951655864715576, - -0.27943307161331177, - -0.25995850563049316, - -0.24162404239177704, - -0.2249298095703125, - -0.21033120155334473, - -0.1982264518737793, - -0.1889456808567047, - -0.18274208903312683, - -0.1797848790884018, - -0.1801547408103943, - -0.1838415265083313, - -0.19074474275112152, - -0.2006760537624359, - -0.21336454153060913, - -0.22846412658691406, - -0.24556291103363037, - -0.357948899269104, - -0.33876946568489075, - -0.31858038902282715, - -0.2979324162006378, - -0.27738872170448303, - -0.25750967860221863, - -0.2388375848531723, - -0.2218817174434662, - -0.2071046233177185, - -0.19490936398506165, - -0.18562860786914825, - -0.17951549589633942, - -0.17673678696155548, - -0.17736826837062836, - -0.18139272928237915, - -0.1887003779411316, - -0.19909188151359558, - -0.21228380501270294, - -0.22791628539562225, - -0.24556291103363037, - -0.357948899269104, - -0.3402169644832611, - -0.3214358985424042, - -0.3021180331707001, - -0.28279030323028564, - -0.26397988200187683, - -0.24619987607002258, - -0.22993531823158264, - -0.21562981605529785, - -0.20367363095283508, - -0.1943928748369217, - -0.18804070353507996, - -0.18479037284851074, - -0.18473055958747864, - -0.18786290287971497, - -0.1941019594669342, - -0.20327752828598022, - -0.21513929963111877, - -0.22936376929283142, - -0.24556291103363037, - -0.357948899269104, - -0.343502938747406, - -0.32791823148727417, - -0.3116198778152466, - -0.2950524687767029, - -0.2786678969860077, - -0.2629131078720093, - -0.2482178658246994, - -0.23498296737670898, - -0.22356951236724854, - -0.21428874135017395, - -0.2073938548564911, - -0.2030729353427887, - -0.20144380629062653, - -0.2025509476661682, - -0.20636412501335144, - -0.21277935802936554, - -0.22162163257598877, - -0.23264974355697632, - -0.24556291103363037, - -0.357948899269104, - -0.34827131032943726, - -0.3373248875141144, - -0.3254082500934601, - -0.31284642219543457, - -0.29998210072517395, - -0.28716614842414856, - -0.27474814653396606, - -0.2630668878555298, - -0.2524409294128418, - -0.2431601583957672, - -0.2354777455329895, - -0.22960323095321655, - -0.22569683194160461, - -0.22386513650417328, - -0.22415810823440552, - -0.22656773030757904, - -0.23102828860282898, - -0.23741811513900757, - -0.24556291103363037, - -0.357948899269104, - -0.3540053367614746, - -0.34863656759262085, - -0.3419889807701111, - -0.3342439532279968, - -0.32561275362968445, - -0.31633079051971436, - -0.3066512644290924, - -0.2968381941318512, - -0.2871592938899994, - -0.2778785228729248, - -0.2692490816116333, - -0.2615063190460205, - -0.2548614740371704, - -0.24949580430984497, - -0.24555563926696777, - -0.24314846098423004, - -0.24233995378017426, - -0.24315215647220612, - -0.24556291103363037, - -0.357948899269104, - -0.360083669424057, - -0.3606274127960205, - -0.35956528782844543, - -0.3569262623786926, - -0.35278233885765076, - -0.34724655747413635, - -0.34046992659568787, - -0.3326372504234314, - -0.3239622116088867, - -0.3146814703941345, - -0.3050481081008911, - -0.29532498121261597, - -0.2857772707939148, - -0.2766653895378113, - -0.2682379484176636, - -0.2607247531414032, - -0.2543308138847351, - -0.24923047423362732, - -0.24556291103363037, - -0.357948899269104, - -0.3658475875854492, - -0.37199804186820984, - -0.37623247504234314, - -0.3784353733062744, - -0.37854665517807007, - -0.37656331062316895, - -0.3725394010543823, - -0.3665846884250641, - -0.35886162519454956, - -0.349580854177475, - -0.3389955461025238, - -0.3273944556713104, - -0.315093994140625, - -0.3024297058582306, - -0.28974705934524536, - -0.2773919701576233, - -0.26570144295692444, - -0.2549944221973419, - -0.24556291103363037, - -0.357948899269104, - -0.3706725537776947, - -0.38151633739471436, - -0.3901844620704651, - -0.3964405059814453, - -0.4001137614250183, - -0.4011040925979614, - -0.3993844985961914, - -0.3950017988681793, - -0.3880756199359894, - -0.3787948489189148, - -0.3674126863479614, - -0.3542395532131195, - -0.33963480591773987, - -0.3239968419075012, - -0.30775216221809387, - -0.29134395718574524, - -0.27521973848342896, - -0.259819358587265, - -0.24556291103363037, - -0.357948899269104, - -0.37403562664985657, - -0.38815078139305115, - -0.39990928769111633, - -0.40899044275283813, - -0.41514649987220764, - -0.4182095527648926, - -0.41809606552124023, - -0.41480913758277893, - -0.40843838453292847, - -0.39915764331817627, - -0.38722002506256104, - -0.3729511499404907, - -0.356740266084671, - -0.33902955055236816, - -0.3203020989894867, - -0.3010687530040741, - -0.28185418248176575, - -0.26318246126174927, - -0.24556291103363037, - -0.357948899269104, - -0.37557241320610046, - -0.39118242263793945, - -0.4043531119823456, - -0.4147252142429352, - -0.4220157861709595, - -0.42602601647377014, - -0.42664647102355957, - -0.42386022210121155, - -0.4177433252334595, - -0.4084625542163849, - -0.39627110958099365, - -0.38150152564048767, - -0.3645567297935486, - -0.3458988666534424, - -0.32603690028190613, - -0.30551257729530334, - -0.28488582372665405, - -0.26471924781799316, - -0.24556291103363037, - -0.357948899269104, - -0.37511637806892395, - -0.3902827799320221, - -0.40303438901901245, - -0.4130233824253082, - -0.4199773073196411, - -0.42370644211769104, - -0.4241091012954712, - -0.4211742877960205, - -0.41498202085494995, - -0.40570127964019775, - -0.3935851454734802, - -0.3789641857147217, - -0.3622371554374695, - -0.34386035799980164, - -0.3243350684642792, - -0.3041938543319702, - -0.2839861810207367, - -0.26426318287849426, - -0.24556291103363037 - ], - "y": [ - -0.11931638419628143, - -0.12336742132902145, - -0.12679702043533325, - -0.12951163947582245, - -0.13143721222877502, - -0.13252124190330505, - -0.13273411989212036, - -0.13207007944583893, - -0.13054721057415009, - -0.12820705771446228, - -0.12511347234249115, - -0.12135080248117447, - -0.11702170968055725, - -0.11224427819252014, - -0.10714881867170334, - -0.10187432169914246, - -0.09656466543674469, - -0.09136468172073364, - -0.08641621470451355, - -0.08185423910617828, - -0.11931638419628143, - -0.12902551889419556, - -0.13795888423919678, - -0.1458728015422821, - -0.15255139768123627, - -0.15781249105930328, - -0.1615125685930252, - -0.1635507196187973, - -0.16387133300304413, - -0.1624656617641449, - -0.15937206149101257, - -0.15467491745948792, - -0.14850234985351562, - -0.141022726893425, - -0.13244007527828217, - -0.1229885071516037, - -0.11292583495378494, - -0.10252655297517776, - -0.09207431972026825, - -0.08185423910617828, - -0.11931637674570084, - -0.13360381126403809, - -0.1469905823469162, - -0.15911154448986053, - -0.1696360558271408, - -0.17827704548835754, - -0.18479880690574646, - -0.1890234351158142, - -0.19083571434020996, - -0.19018620252609253, - -0.1870926022529602, - -0.18163929879665375, - -0.17397506535053253, - -0.16430896520614624, - -0.15290462970733643, - -0.14007316529750824, - -0.12616457045078278, - -0.11155824363231659, - -0.09665259718894958, - -0.08185423910617828, - -0.11931637674570084, - -0.1366061419248581, - -0.15291336178779602, - -0.16779319941997528, - -0.18083977699279785, - -0.19169722497463226, - -0.200069397687912, - -0.20572787523269653, - -0.2085183560848236, - -0.20836469531059265, - -0.20527109503746033, - -0.1993219405412674, - -0.19067952036857605, - -0.17957955598831177, - -0.16632482409477234, - -0.15127688646316528, - -0.13484622538089752, - -0.11748102307319641, - -0.09965493530035019, - -0.08185423910617828, - -0.11931637674570084, - -0.1377071887254715, - -0.15508539974689484, - -0.17097699642181396, - -0.18494848906993866, - -0.19661878049373627, - -0.20566952228546143, - -0.21185386180877686, - -0.21500307321548462, - -0.215031236410141, - -0.21193763613700867, - -0.2058066427707672, - -0.19680547714233398, - -0.1851796805858612, - -0.17124637961387634, - -0.15538561344146729, - -0.1380300223827362, - -0.11965306103229523, - -0.100755974650383, - -0.08185423910617828, - -0.11931637674570084, - -0.13678760826587677, - -0.15327133238315582, - -0.16831792891025543, - -0.18151694536209106, - -0.19250836968421936, - -0.20099236071109772, - -0.20673751831054688, - -0.20958711206912994, - -0.20946341753005981, - -0.2063698172569275, - -0.20039069652557373, - -0.191689133644104, - -0.1805025190114975, - -0.16713595390319824, - -0.1519540548324585, - -0.13537095487117767, - -0.11783899366855621, - -0.09983640164136887, - -0.08185423910617828, - -0.11931637674570084, - -0.13394707441329956, - -0.1476677507162094, - -0.16010412573814392, - -0.17091700434684753, - -0.17981141805648804, - -0.186544731259346, - -0.19093330204486847, - -0.19285741448402405, - -0.192264586687088, - -0.1891709864139557, - -0.18366101384162903, - -0.1758849322795868, - -0.1660548895597458, - -0.15443900227546692, - -0.14135411381721497, - -0.12715716660022736, - -0.1122354045510292, - -0.09699586778879166, - -0.08185423910617828, - -0.11931638419628143, - -0.12949338555335999, - -0.1388818621635437, - -0.14722570776939392, - -0.15429732203483582, - -0.15990382432937622, - -0.1638922393321991, - -0.16615384817123413, - -0.16662690043449402, - -0.1652984917163849, - -0.16220489144325256, - -0.1574304848909378, - -0.15110547840595245, - -0.14340239763259888, - -0.1345314085483551, - -0.12473443895578384, - -0.11427874118089676, - -0.10344952344894409, - -0.09254218637943268, - -0.08185423910617828, - -0.11931638419628143, - -0.12390919029712677, - -0.1278657764196396, - -0.13107822835445404, - -0.1334589123725891, - -0.134942889213562, - -0.13548968732357025, - -0.1350843906402588, - -0.13373802602291107, - -0.13148735463619232, - -0.1283937692642212, - -0.12454161792993546, - -0.12003601342439651, - -0.11499983817338943, - -0.10957048088312149, - -0.10389602929353714, - -0.09813126176595688, - -0.09243343770503998, - -0.08695797622203827, - -0.08185423910617828, - -0.11931638419628143, - -0.11779960244894028, - -0.1158132553100586, - -0.11341153085231781, - -0.11065994948148727, - -0.1076335459947586, - -0.10441489517688751, - -0.10109177231788635, - -0.09775484353303909, - -0.09449511766433716, - -0.09140151739120483, - -0.08855842798948288, - -0.08604340255260468, - -0.0839250385761261, - -0.08226113021373749, - -0.08109705150127411, - -0.08046456426382065, - -0.08038091659545898, - -0.08084839582443237, - -0.08185423910617828, - -0.11931638419628143, - -0.11182669550180435, - -0.10403037071228027, - -0.0961400717496872, - -0.08837103098630905, - -0.08093515783548355, - -0.07403529435396194, - -0.06785963475704193, - -0.06257666647434235, - -0.058330461382865906, - -0.05523686110973358, - -0.05338025093078613, - -0.05281126871705055, - -0.05354544147849083, - -0.055562734603881836, - -0.05880812928080559, - -0.06319309771060944, - -0.06859803199768066, - -0.07487548887729645, - -0.08185423910617828, - -0.11931638419628143, - -0.10663773119449615, - -0.09379398077726364, - -0.08113548159599304, - -0.0690075159072876, - -0.057740919291973114, - -0.04764300212264061, - -0.03898920863866806, - -0.0320156067609787, - -0.026912398636341095, - -0.02381879836320877, - -0.022819191217422485, - -0.023940838873386383, - -0.027153149247169495, - -0.0323684886097908, - -0.03944461792707443, - -0.04818850755691528, - -0.058361638337373734, - -0.06968651711940765, - -0.08185423910617828, - -0.11931638419628143, - -0.10279501229524612, - -0.0862133577466011, - -0.07002373039722443, - -0.054667748510837555, - -0.04056428745388985, - -0.028098031878471375, - -0.017609022557735443, - -0.009383417665958405, - -0.0036455541849136353, - -0.000551953911781311, - -0.00018700212240219116, - -0.002560652792453766, - -0.007608175277709961, - -0.01519184559583664, - -0.025104843080043793, - -0.037076763808727264, - -0.050781019032001495, - -0.06584380567073822, - -0.08185424655675888, - -0.11931638419628143, - -0.10071495175361633, - -0.0821099802851677, - -0.06400896608829498, - -0.04690566286444664, - -0.03126659244298935, - -0.017518363893032074, - -0.0060359761118888855, - 0.0028673484921455383, - 0.008948743343353271, - 0.012042343616485596, - 0.012063764035701752, - 0.009012393653392792, - 0.0029714927077293396, - -0.005894161760807037, - -0.017342761158943176, - -0.031061992049217224, - -0.046677637845277786, - -0.06376373767852783, - -0.08185424655675888, - -0.11931638419628143, - -0.10062296688556671, - -0.08192851394414902, - -0.0637429729104042, - -0.04656239226460457, - -0.03085542470216751, - -0.017050504684448242, - -0.005524180829524994, - 0.0034091100096702576, - 0.009505704045295715, - 0.01259930431842804, - 0.012605525553226471, - 0.009524188935756683, - 0.0034393519163131714, - -0.005482994019985199, - -0.016999490559101105, - -0.030795998871326447, - -0.04649617522954941, - -0.06367175281047821, - -0.08185424655675888, - -0.11931638419628143, - -0.10252901166677475, - -0.08568862080574036, - -0.06925457715988159, - -0.053675148636102676, - -0.03937530890107155, - -0.02674511820077896, - -0.01612906903028488, - -0.007816798985004425, - -0.00203501433134079, - 0.0010585859417915344, - 0.0013796165585517883, - -0.0010806992650032043, - -0.006255261600017548, - -0.014002874493598938, - -0.024112246930599213, - -0.03630760312080383, - -0.05025627836585045, - -0.06557780504226685, - -0.08185424655675888, - -0.11931638419628143, - -0.10622655600309372, - -0.09298284351825714, - -0.07994651049375534, - -0.0674731433391571, - -0.055903006345033646, - -0.045551661401987076, - -0.0367015078663826, - -0.029593944549560547, - -0.024422824382781982, - -0.021329224109649658, - -0.020397529006004333, - -0.02165313810110092, - -0.025061815977096558, - -0.030530571937561035, - -0.037910252809524536, - -0.04699953645467758, - -0.05755050107836723, - -0.06927534937858582, - -0.08185423910617828, - -0.11931638419628143, - -0.11131490021944046, - -0.10302073508501053, - -0.09466014057397842, - -0.08646117150783539, - -0.07864747941493988, - -0.07143218070268631, - -0.06501209735870361, - -0.059562377631664276, - -0.05523165315389633, - -0.05213805288076401, - -0.05036596581339836, - -0.049963731318712234, - -0.050942327827215195, - -0.05327505245804787, - -0.05689827352762222, - -0.061713170260190964, - -0.06758839637041092, - -0.07436369359493256, - -0.08185423910617828, - -0.11931638419628143, - -0.11724264919757843, - -0.11471454054117203, - -0.11180102825164795, - -0.10858157277107239, - -0.10514400899410248, - -0.10158209502696991, - -0.09799298644065857, - -0.09447459131479263, - -0.09112288802862167, - -0.08802928775548935, - -0.08527818322181702, - -0.08294461667537689, - -0.0810922384262085, - -0.07977159321308136, - -0.07901868224143982, - -0.07885405421257019, - -0.07928220182657242, - -0.08029143512248993, - -0.08185423910617828, - -0.11931638419628143, - -0.12336742132902145, - -0.12679702043533325, - -0.12951163947582245, - -0.13143722712993622, - -0.13252124190330505, - -0.13273414969444275, - -0.13207009434700012, - -0.13054724037647247, - -0.12820708751678467, - -0.12511348724365234, - -0.12135082483291626, - -0.11702172458171844, - -0.11224429309368134, - -0.10714883357286453, - -0.10187433660030365, - -0.09656467288732529, - -0.09136468917131424, - -0.08641621470451355, - -0.08185423910617828 - ], - "z": [ - -2.386326313018799, - -2.3783113956451416, - -2.3602967262268066, - -2.332773208618164, - -2.296492099761963, - -2.2524425983428955, - -2.201826333999634, - -2.146024227142334, - -2.0865581035614014, - -2.025050401687622, - -1.9631786346435547, - -1.9026305675506592, - -1.8450578451156616, - -1.7920308113098145, - -1.7449959516525269, - -1.7052361965179443, - -1.6738362312316895, - -1.6516523361206055, - -1.6392898559570312, - -1.637086033821106, - -2.386326313018799, - -2.3783884048461914, - -2.3604485988616943, - -2.332995891571045, - -2.2967793941497803, - -2.252786636352539, - -2.2022180557250977, - -2.1464526653289795, - -2.0870118141174316, - -2.0255167484283447, - -1.9636449813842773, - -1.9030841588974, - -1.8454862833023071, - -1.7924225330352783, - -1.74534010887146, - -1.7055236101150513, - -1.6740589141845703, - -1.6518043279647827, - -1.639366865158081, - -1.637086033821106, - -2.386326313018799, - -2.378772020339966, - -2.3612051010131836, - -2.3341050148010254, - -2.298210620880127, - -2.2545011043548584, - -2.2041687965393066, - -2.1485865116119385, - -2.08927059173584, - -2.027838706970215, - -1.965967059135437, - -1.905342936515808, - -1.8476201295852661, - -1.7943731546401978, - -1.7470544576644897, - -1.7069547176361084, - -1.6751679182052612, - -1.6525609493255615, - -1.6397504806518555, - -1.637086033821106, - -2.386326313018799, - -2.379420518875122, - -2.3624844551086426, - -2.33597993850708, - -2.3006303310394287, - -2.257399559020996, - -2.2074668407440186, - -2.1521942615509033, - -2.0930895805358887, - -2.0317649841308594, - -1.9698933362960815, - -1.9091620445251465, - -1.8512279987335205, - -1.7976713180541992, - -1.749953031539917, - -1.7093745470046997, - -1.6770429611206055, - -1.6538400650024414, - -1.6403988599777222, - -1.637086033821106, - -2.386326313018799, - -2.380263566970825, - -2.364147663116455, - -2.3384180068969727, - -2.303776741027832, - -2.2611682415008545, - -2.2117552757263184, - -2.1568853855133057, - -2.098055362701416, - -2.036870002746582, - -1.9749982357025146, - -1.9141278266906738, - -1.8559190034866333, - -1.8019596338272095, - -1.7537217140197754, - -1.7125208377838135, - -1.679481029510498, - -1.6555033922195435, - -1.6412420272827148, - -1.637086033821106, - -2.386326313018799, - -2.3812100887298584, - -2.3660147190093994, - -2.3411548137664795, - -2.3073084354400635, - -2.2653987407684326, - -2.216568946838379, - -2.1621510982513428, - -2.1036295890808105, - -2.042600393295288, - -1.9807286262512207, - -1.9197019338607788, - -1.8611847162246704, - -1.8067734241485596, - -1.757952094078064, - -1.716052532196045, - -1.6822177171707153, - -1.6573704481124878, - -1.6421884298324585, - -1.637086033821106, - -2.386326313018799, - -2.382157325744629, - -2.3678832054138184, - -2.3438937664031982, - -2.310842990875244, - -2.269632577896118, - -2.221386432647705, - -2.1674211025238037, - -2.10920786857605, - -2.048335313796997, - -1.9864635467529297, - -1.9252803325653076, - -1.8664546012878418, - -1.8115909099578857, - -1.7621859312057495, - -1.7195870876312256, - -1.6849565505981445, - -1.6592389345169067, - -1.643135666847229, - -1.637086033821106, - -2.386326313018799, - -2.383002519607544, - -2.3695507049560547, - -2.3463377952575684, - -2.313997268676758, - -2.2734107971191406, - -2.2256858348846436, - -2.172123908996582, - -2.1141862869262695, - -2.0534534454345703, - -1.9915815591812134, - -1.9302587509155273, - -1.8711576461791992, - -1.8158901929855347, - -1.7659642696380615, - -1.7227413654327393, - -1.6874008178710938, - -1.660906434059143, - -1.6439809799194336, - -1.637086033821106, - -2.386326313018799, - -2.3836543560028076, - -2.3708364963531494, - -2.3482227325439453, - -2.316429376602173, - -2.2763242721557617, - -2.2290008068084717, - -2.175750255584717, - -2.118025064468384, - -2.0573997497558594, - -1.995527982711792, - -1.9340975284576416, - -1.874783992767334, - -1.819205403327942, - -1.768877625465393, - -1.7251737117767334, - -1.6892855167388916, - -1.6621922254562378, - -1.6446326971054077, - -1.637086033821106, - -2.386326313018799, - -2.3840420246124268, - -2.3716013431549072, - -2.3493435382843018, - -2.317876100540161, - -2.278057098388672, - -2.2309725284576416, - -2.1779072284698486, - -2.1203081607818604, - -2.0597469806671143, - -1.9978750944137573, - -1.9363806247711182, - -1.8769408464431763, - -1.8211770057678223, - -1.7706104516983032, - -1.7266201972961426, - -1.6904065608978271, - -1.662956953048706, - -1.6450203657150269, - -1.637086033821106, - -2.386326313018799, - -2.3841233253479004, - -2.3717620372772217, - -2.349579334259033, - -2.3181803226470947, - -2.278421401977539, - -2.231387138366699, - -2.1783607006073, - -2.120788335800171, - -2.0602405071258545, - -1.998368740081787, - -1.9368607997894287, - -1.877394437789917, - -1.8215917348861694, - -1.77097487449646, - -1.7269244194030762, - -1.690642237663269, - -1.66311776638031, - -1.6451019048690796, - -1.637086033821106, - -2.386326313018799, - -2.38388991355896, - -2.3713016510009766, - -2.3489041328430176, - -2.3173091411590576, - -2.2773778438568115, - -2.2301998138427734, - -2.1770617961883545, - -2.119413375854492, - -2.0588269233703613, - -1.9969552755355835, - -1.93548583984375, - -1.8760955333709717, - -1.820404291152954, - -1.7699313163757324, - -1.7260533571243286, - -1.689967155456543, - -1.6626572608947754, - -1.6448683738708496, - -1.637086033821106, - -2.386326313018799, - -2.383366823196411, - -2.370269536972046, - -2.3473916053771973, - -2.315356969833374, - -2.2750396728515625, - -2.2275390625, - -2.1741514205932617, - -2.116332530975342, - -2.055659532546997, - -1.9937878847122192, - -1.93240487575531, - -1.8731850385665894, - -1.8177436590194702, - -1.7675930261611938, - -1.724101185798645, - -1.688454508781433, - -1.6616252660751343, - -1.6443452835083008, - -1.637086033821106, - -2.386326313018799, - -2.38261079788208, - -2.3687779903411865, - -2.345205307006836, - -2.312535524368286, - -2.2716598510742188, - -2.223693370819092, - -2.1699445247650146, - -2.111879348754883, - -2.051081657409668, - -1.9892098903656006, - -1.927951693534851, - -1.8689782619476318, - -1.8138978481292725, - -1.7642133235931396, - -1.7212797403335571, - -1.6862680912017822, - -1.660133719444275, - -1.6435892581939697, - -1.637086033821106, - -2.386326313018799, - -2.3817036151885986, - -2.36698842048645, - -2.3425819873809814, - -2.309150218963623, - -2.2676050662994385, - -2.2190794944763184, - -2.1648974418640137, - -2.106536626815796, - -2.045588970184326, - -1.9837172031402588, - -1.9226089715957642, - -1.8639309406280518, - -1.809283971786499, - -1.7601584196090698, - -1.7178945541381836, - -1.6836450099945068, - -1.6583441495895386, - -1.6426820755004883, - -1.637086033821106, - -2.386326313018799, - -2.3807437419891357, - -2.3650949001312256, - -2.339806318283081, - -2.305568218231201, - -2.2633144855499268, - -2.2141971588134766, - -2.1595566272735596, - -2.1008832454681396, - -2.0397770404815674, - -1.9779052734375, - -1.916955590248108, - -1.8585903644561768, - -1.8044016361236572, - -1.755867838859558, - -1.7143125534057617, - -1.6808693408966064, - -1.6564505100250244, - -1.6417222023010254, - -1.637086033821106, - -2.386326313018799, - -2.3798351287841797, - -2.36330246925354, - -2.337178945541382, - -2.302177667617798, - -2.2592530250549316, - -2.209575891494751, - -2.15450119972229, - -2.095531702041626, - -2.034275531768799, - -1.9724037647247314, - -1.9116041660308838, - -1.8535349369049072, - -1.799780249595642, - -1.751806378364563, - -1.7109218835830688, - -1.6782419681549072, - -1.6546580791473389, - -1.6408135890960693, - -1.637086033821106, - -2.386326313018799, - -2.3790762424468994, - -2.3618054389953613, - -2.334984540939331, - -2.2993457317352295, - -2.2558608055114746, - -2.2057158946990967, - -2.1502790451049805, - -2.091062068939209, - -2.0296807289123535, - -1.9678089618682861, - -1.9071346521377563, - -1.849312663078308, - -1.7959203720092773, - -1.7484142780303955, - -1.7080899477005005, - -1.6760475635528564, - -1.6531610488891602, - -1.640054702758789, - -1.637086033821106, - -2.386326313018799, - -2.378549337387085, - -2.3607659339904785, - -2.333461046218872, - -2.297379493713379, - -2.2535057067871094, - -2.203036069869995, - -2.1473474502563477, - -2.087958812713623, - -2.0264904499053955, - -1.9646186828613281, - -1.9040312767028809, - -1.8463810682296753, - -1.7932404279708862, - -1.7460589408874512, - -1.70612370967865, - -1.674523949623108, - -1.6521215438842773, - -1.6395277976989746, - -1.637086033821106, - -2.386326313018799, - -2.3783113956451416, - -2.3602967262268066, - -2.332773208618164, - -2.296492099761963, - -2.2524425983428955, - -2.201826333999634, - -2.146024227142334, - -2.0865581035614014, - -2.025050401687622, - -1.9631786346435547, - -1.9026305675506592, - -1.8450578451156616, - -1.7920308113098145, - -1.7449959516525269, - -1.7052361965179443, - -1.6738362312316895, - -1.6516523361206055, - -1.6392898559570312, - -1.637086033821106 - ] - }, - { - "alphahull": 0, - "color": "#FECB52", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.4557409882545471, - -0.47728002071380615, - -0.4966888725757599, - -0.5134381055831909, - -0.5270708203315735, - -0.5372151732444763, - -0.543594479560852, - -0.5460346341133118, - -0.5444692373275757, - -0.5389407873153687, - -0.5296002626419067, - -0.5167023539543152, - -0.5005989074707031, - -0.4817292094230652, - -0.46060794591903687, - -0.4378112256526947, - -0.41396090388298035, - -0.3897075951099396, - -0.36571282148361206, - -0.34263110160827637, - -0.4557409882545471, - -0.4728771150112152, - -0.488003134727478, - -0.5007064342498779, - -0.510640561580658, - -0.5175344944000244, - -0.5212001800537109, - -0.5215376019477844, - -0.5185376405715942, - -0.5122820734977722, - -0.5029415488243103, - -0.4907708168029785, - -0.47610190510749817, - -0.4593349099159241, - -0.4409272372722626, - -0.4213809669017792, - -0.40122926235198975, - -0.3810218572616577, - -0.36130988597869873, - -0.34263110160827637, - -0.4557409882545471, - -0.4665336310863495, - -0.47548919916152954, - -0.48236343264579773, - -0.4869688153266907, - -0.48917970061302185, - -0.48893576860427856, - -0.48624372482299805, - -0.4811769723892212, - -0.47387373447418213, - -0.4645331799983978, - -0.45341014862060547, - -0.4408079981803894, - -0.4270705580711365, - -0.4125724732875824, - -0.3977092206478119, - -0.38288626074790955, - -0.36850792169570923, - -0.354966402053833, - -0.34263110160827637, - -0.4557409882545471, - -0.45893701910972595, - -0.4605032205581665, - -0.46039682626724243, - -0.4586207866668701, - -0.4552235007286072, - -0.45029765367507935, - -0.44397762417793274, - -0.4364358186721802, - -0.42787790298461914, - -0.4185373783111572, - -0.40866896510124207, - -0.3985418975353241, - -0.38843241333961487, - -0.37861624360084534, - -0.36936119198799133, - -0.36091965436935425, - -0.3535219430923462, - -0.34736981987953186, - -0.34263110160827637, - -0.4557409882545471, - -0.4509104788303375, - -0.44466909766197205, - -0.4371870160102844, - -0.42866837978363037, - -0.41934555768966675, - -0.40947282314300537, - -0.39931949973106384, - -0.389162540435791, - -0.3792789876461029, - -0.3699384331703186, - -0.3613956868648529, - -0.3538837730884552, - -0.3476075828075409, - -0.3427383005619049, - -0.3394087851047516, - -0.33770984411239624, - -0.33768779039382935, - -0.33934327960014343, - -0.34263110160827637, - -0.4557409882545471, - -0.4433238208293915, - -0.4297026991844177, - -0.41524916887283325, - -0.4003574550151825, - -0.3854338228702545, - -0.37088528275489807, - -0.3571087419986725, - -0.34447991847991943, - -0.33334338665008545, - -0.32400283217430115, - -0.3167130947113037, - -0.31167301535606384, - -0.3090200424194336, - -0.3088265657424927, - -0.3110978603363037, - -0.31577199697494507, - -0.3227214217185974, - -0.3317566215991974, - -0.34263110160827637, - -0.4557409882545471, - -0.4369991719722748, - -0.4172259271144867, - -0.3969605565071106, - -0.3767559230327606, - -0.35716313123703003, - -0.33871662616729736, - -0.3219195306301117, - -0.30723005533218384, - -0.29504895210266113, - -0.28570839762687683, - -0.2794632315635681, - -0.27648380398750305, - -0.2768513560295105, - -0.2805558741092682, - -0.28749632835388184, - -0.2974833846092224, - -0.310244619846344, - -0.3254319429397583, - -0.34263110160827637, - -0.4557409882545471, - -0.43262189626693726, - -0.40859076380729675, - -0.38430309295654297, - -0.36042138934135437, - -0.3375970721244812, - -0.3164527714252472, - -0.29756516218185425, - -0.281449556350708, - -0.2685455083847046, - -0.2592049539089203, - -0.2536827325820923, - -0.2521294355392456, - -0.2545875310897827, - -0.26098981499671936, - -0.2711617946624756, - -0.2848259210586548, - -0.30160948634147644, - -0.32105469703674316, - -0.34263110160827637, - -0.4557409882545471, - -0.43066635727882385, - -0.40473300218582153, - -0.3786483407020569, - -0.35312390327453613, - -0.3288559317588806, - -0.3065063953399658, - -0.28668487071990967, - -0.2699320912361145, - -0.25670504570007324, - -0.24736452102661133, - -0.24216526746749878, - -0.24124914407730103, - -0.24464112520217896, - -0.2522486746311188, - -0.26386433839797974, - -0.2791711688041687, - -0.2977517247200012, - -0.3190991282463074, - -0.34263110160827637, - -0.4557409882545471, - -0.4313444495201111, - -0.40607067942619324, - -0.3806091547012329, - -0.3556543290615082, - -0.3318869471549988, - -0.30995529890060425, - -0.2904576361179352, - -0.2739258110523224, - -0.2608107328414917, - -0.2514702081680298, - -0.24615897238254547, - -0.24502190947532654, - -0.24809005856513977, - -0.25527969002723694, - -0.2663947343826294, - -0.2811319828033447, - -0.2990894019603729, - -0.3197772204875946, - -0.34263110160827637, - -0.4557409882545471, - -0.4345826804637909, - -0.4124588668346405, - -0.389972984790802, - -0.36773842573165894, - -0.3463616371154785, - -0.32642579078674316, - -0.30847465991973877, - -0.2929978668689728, - -0.28041765093803406, - -0.27107709646224976, - -0.26523104310035706, - -0.2630389332771301, - -0.2645605504512787, - -0.26975440979003906, - -0.27847880125045776, - -0.2904958128929138, - -0.3054775595664978, - -0.3230154812335968, - -0.34263110160827637, - -0.4557409882545471, - -0.44003018736839294, - -0.42320525646209717, - -0.4057251214981079, - -0.3880666494369507, - -0.37071147561073303, - -0.3541330099105835, - -0.33878350257873535, - -0.32508155703544617, - -0.3134010434150696, - -0.3040604889392853, - -0.29731473326683044, - -0.2933477759361267, - -0.292267769575119, - -0.2941042184829712, - -0.2988070547580719, - -0.3062479496002197, - -0.31622397899627686, - -0.32846295833587646, - -0.34263110160827637, - -0.4557409882545471, - -0.447096586227417, - -0.43714532256126404, - -0.4261586368083954, - -0.4144361913204193, - -0.4022977650165558, - -0.3900744616985321, - -0.3780997097492218, - -0.36670011281967163, - -0.3561866581439972, - -0.3468461334705353, - -0.3389332592487335, - -0.33266398310661316, - -0.3282092213630676, - -0.32569050788879395, - -0.3251765966415405, - -0.3266814649105072, - -0.3301640450954437, - -0.3355293869972229, - -0.34263110160827637, - -0.4557409882545471, - -0.45501619577407837, - -0.452768474817276, - -0.4490591883659363, - -0.44398948550224304, - -0.4376976788043976, - -0.43035534024238586, - -0.42216283082962036, - -0.41334351897239685, - -0.40413805842399597, - -0.39479753375053406, - -0.38557669520378113, - -0.3767271041870117, - -0.3684900999069214, - -0.36109042167663574, - -0.35472989082336426, - -0.3495820164680481, - -0.3457871973514557, - -0.3434489667415619, - -0.34263110160827637, - -0.4557409882545471, - -0.46293073892593384, - -0.4683816730976105, - -0.4719451367855072, - -0.47352394461631775, - -0.4730749726295471, - -0.47061052918434143, - -0.46619781851768494, - -0.45995718240737915, - -0.452058881521225, - -0.4427183270454407, - -0.4321903586387634, - -0.4207620918750763, - -0.40874528884887695, - -0.39646774530410767, - -0.38426434993743896, - -0.372467964887619, - -0.36140039563179016, - -0.35136350989341736, - -0.34263110160827637, - -0.4557409882545471, - -0.4699825644493103, - -0.4822929799556732, - -0.4923364520072937, - -0.49983906745910645, - -0.5045960545539856, - -0.5064778327941895, - -0.5054329037666321, - -0.5014898180961609, - -0.49475619196891785, - -0.48541563749313354, - -0.47372299432754517, - -0.45999717712402344, - -0.4446125626564026, - -0.42798885703086853, - -0.41057947278022766, - -0.3928592801094055, - -0.3753117024898529, - -0.3584153354167938, - -0.34263110160827637, - -0.4557409882545471, - -0.47540751099586487, - -0.49299493432044983, - -0.5080234408378601, - -0.5200831890106201, - -0.5288451910018921, - -0.5340704321861267, - -0.5356163382530212, - -0.5334408283233643, - -0.5276031494140625, - -0.5182626247406006, - -0.5056740045547485, - -0.490180641412735, - -0.47220519185066223, - -0.45223796367645264, - -0.4308236241340637, - -0.4085462987422943, - -0.38601362705230713, - -0.3638402819633484, - -0.34263110160827637, - -0.4557409882545471, - -0.47861772775650024, - -0.49932774901390076, - -0.5173062086105347, - -0.5320626497268677, - -0.5431945323944092, - -0.5503982305526733, - -0.5534772872924805, - -0.5523476600646973, - -0.5470402240753174, - -0.5376996994018555, - -0.5245808362960815, - -0.5080415606498718, - -0.48853299021720886, - -0.46658727526664734, - -0.4428030252456665, - -0.4178290069103241, - -0.39234647154808044, - -0.36705049872398376, - -0.34263110160827637, - -0.4557409882545471, - -0.4792652726173401, - -0.5006052255630493, - -0.5191786885261536, - -0.5344790816307068, - -0.5460890531539917, - -0.5536918640136719, - -0.5570801496505737, - -0.5561615824699402, - -0.5509610176086426, - -0.5416204929351807, - -0.5283946990966797, - -0.5116444826126099, - -0.4918266534805298, - -0.46948182582855225, - -0.4452195167541504, - -0.4197015166282654, - -0.3936239182949066, - -0.3676980435848236, - -0.34263110160827637, - -0.4557409882545471, - -0.47728002071380615, - -0.4966888725757599, - -0.5134381055831909, - -0.5270708203315735, - -0.5372151732444763, - -0.543594479560852, - -0.5460346341133118, - -0.5444692373275757, - -0.5389407873153687, - -0.5296002626419067, - -0.5167023539543152, - -0.5005989074707031, - -0.4817292094230652, - -0.46060794591903687, - -0.4378112256526947, - -0.41396090388298035, - -0.3897075653076172, - -0.36571282148361206, - -0.34263110160827637 - ], - "y": [ - -0.15191376209259033, - -0.1614241600036621, - -0.17016088962554932, - -0.17788568139076233, - -0.18438778817653656, - -0.18948987126350403, - -0.1930527538061142, - -0.1949792206287384, - -0.19521677494049072, - -0.19375889003276825, - -0.19064536690711975, - -0.18596111238002777, - -0.17983390390872955, - -0.17243090271949768, - -0.1639540046453476, - -0.15463444590568542, - -0.1447264552116394, - -0.13450028002262115, - -0.1242348849773407, - -0.11421027034521103, - -0.15191376209259033, - -0.1682346910238266, - -0.1835961937904358, - -0.1975792646408081, - -0.20980247855186462, - -0.2199324071407318, - -0.22769272327423096, - -0.23287178575992584, - -0.2353282868862152, - -0.23499521613121033, - -0.23188169300556183, - -0.22607262432575226, - -0.217726469039917, - -0.20707088708877563, - -0.19439652562141418, - -0.1800491213798523, - -0.16442003846168518, - -0.14793558418750763, - -0.13104543089866638, - -0.11421027034521103, - -0.15191376209259033, - -0.17324873805046082, - -0.1934875249862671, - -0.2120780646800995, - -0.22851327061653137, - -0.24234478175640106, - -0.2531953454017639, - -0.2607690095901489, - -0.2648591697216034, - -0.2653542160987854, - -0.2622406780719757, - -0.25560352206230164, - -0.24562370777130127, - -0.2325735241174698, - -0.21680891513824463, - -0.19875991344451904, - -0.17891883850097656, - -0.15782691538333893, - -0.1360594779253006, - -0.11421027034521103, - -0.15191376209259033, - -0.1759229451417923, - -0.19876301288604736, - -0.21981091797351837, - -0.23849254846572876, - -0.25429829955101013, - -0.2667970359325409, - -0.2756478488445282, - -0.28060925006866455, - -0.2815459966659546, - -0.2784324586391449, - -0.2713536024093628, - -0.26050251722335815, - -0.24617518484592438, - -0.2287624180316925, - -0.20873920619487762, - -0.18665169179439545, - -0.1631024032831192, - -0.13873368501663208, - -0.11421027034521103, - -0.15191376209259033, - -0.1759675294160843, - -0.19885095953941345, - -0.21993982791900635, - -0.23865890502929688, - -0.25449758768081665, - -0.26702380180358887, - -0.275895893573761, - -0.28087180852890015, - -0.28181591629981995, - -0.27870237827301025, - -0.2716161608695984, - -0.26075056195259094, - -0.24640193581581116, - -0.22896170616149902, - -0.20890557765960693, - -0.18678060173988342, - -0.1631903499364853, - -0.13877826929092407, - -0.11421027034521103, - -0.15191376209259033, - -0.1733776479959488, - -0.1937418282032013, - -0.21245084702968597, - -0.22899432480335236, - -0.24292102456092834, - -0.253851056098938, - -0.261486291885376, - -0.26561838388442993, - -0.26613476872444153, - -0.26302123069763184, - -0.2563627362251282, - -0.24634096026420593, - -0.23322920501232147, - -0.21738514304161072, - -0.19924098253250122, - -0.17929162085056305, - -0.15808121860027313, - -0.13618838787078857, - -0.11421027034521103, - -0.15191376209259033, - -0.16843396425247192, - -0.18398931622505188, - -0.1981555074453354, - -0.2105461210012436, - -0.22082316875457764, - -0.22870630025863647, - -0.23398053646087646, - -0.23650196194648743, - -0.23620180785655975, - -0.23308828473091125, - -0.22724628448486328, - -0.21883520483970642, - -0.20808444917201996, - -0.19528728723526, - -0.18079277873039246, - -0.16499628126621246, - -0.14832870662212372, - -0.1312447041273117, - -0.11421027034521103, - -0.15191376209259033, - -0.1616721898317337, - -0.17065021395683289, - -0.178602933883667, - -0.185313418507576, - -0.19059860706329346, - -0.1943143606185913, - -0.1963593065738678, - -0.19667765498161316, - -0.19526074826717377, - -0.19214722514152527, - -0.1874220073223114, - -0.18121398985385895, - -0.1736925095319748, - -0.16506274044513702, - -0.15556006133556366, - -0.14544370770454407, - -0.13498960435390472, - -0.12448292970657349, - -0.11421027034521103, - -0.15191376209259033, - -0.1538250893354416, - -0.15517005324363708, - -0.15591196715831757, - -0.1560305953025818, - -0.1555226892232895, - -0.15440212190151215, - -0.15269945561885834, - -0.1504611223936081, - -0.147748202085495, - -0.1446346789598465, - -0.14120545983314514, - -0.1375541388988495, - -0.13378027081489563, - -0.12998682260513306, - -0.12627723813056946, - -0.12275273352861404, - -0.11950943619012833, - -0.11663582175970078, - -0.11421027779579163, - -0.15191376209259033, - -0.1457429975271225, - -0.13922631740570068, - -0.1325415074825287, - -0.12587088346481323, - -0.11939641088247299, - -0.11329470574855804, - -0.10773220658302307, - -0.10286062955856323, - -0.09881287068128586, - -0.09569934010505676, - -0.09360496699810028, - -0.09258688986301422, - -0.09267285466194153, - -0.09386053681373596, - -0.0961175262928009, - -0.09938227385282516, - -0.10356570780277252, - -0.10855372995138168, - -0.11421027779579163, - -0.15191376209259033, - -0.13830174505710602, - -0.12454678118228912, - -0.11102410405874252, - -0.09810255467891693, - -0.08613462746143341, - -0.07544673979282379, - -0.0663304403424263, - -0.05903441458940506, - -0.0537576749920845, - -0.05064414441585541, - -0.04977875202894211, - -0.05118512362241745, - -0.05482487380504608, - -0.06059873104095459, - -0.0683492049574852, - -0.0778648778796196, - -0.08888617157936096, - -0.1011124700307846, - -0.11421027779579163, - -0.15191376209259033, - -0.13230769336223602, - -0.11272219568490982, - -0.09369151294231415, - -0.07573474943637848, - -0.05934174358844757, - -0.044959619641304016, - -0.03298070281744003, - -0.023731738328933716, - -0.017465025186538696, - -0.0143514946103096, - -0.014476075768470764, - -0.017835386097431183, - -0.024337761104106903, - -0.03380585461854935, - -0.045981407165527344, - -0.06053228676319122, - -0.07706158608198166, - -0.0951184332370758, - -0.11421027779579163, - -0.15191377699375153, - -0.12841041386127472, - -0.10503393411636353, - -0.08242198824882507, - -0.0611913800239563, - -0.041921213269233704, - -0.025137126445770264, - -0.011296935379505157, - -0.0007781833410263062, - 0.006132185459136963, - 0.009245723485946655, - 0.008477464318275452, - 0.0038483887910842896, - -0.004515260457992554, - -0.016385309398174286, - -0.03143801540136337, - -0.04926276206970215, - -0.06937332451343536, - -0.0912211462855339, - -0.11421027779579163, - -0.15191377699375153, - -0.12703222036361694, - -0.10231513530015945, - -0.07843675464391708, - -0.05604841560125351, - -0.035760797560214996, - -0.01812729984521866, - -0.0036289095878601074, - 0.007338866591453552, - 0.01447683572769165, - 0.017590373754501343, - 0.01659451425075531, - 0.011516422033309937, - 0.0024945586919784546, - -0.010224901139736176, - -0.026295050978660583, - -0.04527752846479416, - -0.06665452569723129, - -0.08984294533729553, - -0.11421027779579163, - -0.15191377699375153, - -0.12832246720790863, - -0.10486043989658356, - -0.08216767013072968, - -0.060863181948661804, - -0.04152808338403702, - -0.02468978613615036, - -0.010807611048221588, - -0.0002602189779281616, - 0.006664693355560303, - 0.009778231382369995, - 0.008995428681373596, - 0.004337713122367859, - -0.004067927598953247, - -0.015992186963558197, - -0.031109824776649475, - -0.04900844395160675, - -0.0691998302936554, - -0.09113319963216782, - -0.11421027779579163, - -0.15191376209259033, - -0.1321413218975067, - -0.11239399760961533, - -0.09321043640375137, - -0.0751139223575592, - -0.05859808623790741, - -0.04411342740058899, - -0.03205503523349762, - -0.022751890122890472, - -0.016457706689834595, - -0.0133441761136055, - -0.01349622756242752, - -0.01690971851348877, - -0.023491568863391876, - -0.03306218981742859, - -0.045360565185546875, - -0.06005121022462845, - -0.07673338055610657, - -0.0949520617723465, - -0.11421027779579163, - -0.15191376209259033, - -0.13807499408721924, - -0.12409946322441101, - -0.11036840826272964, - -0.0972563773393631, - -0.0851210504770279, - -0.07429340481758118, - -0.06506882607936859, - -0.057698920369148254, - -0.052384719252586365, - -0.04927118867635727, - -0.0484432578086853, - -0.04992350935935974, - -0.05367155373096466, - -0.05958516150712967, - -0.06750302761793137, - -0.07720918208360672, - -0.08843885362148285, - -0.10088571906089783, - -0.11421027779579163, - -0.15191376209259033, - -0.1454804241657257, - -0.13870835304260254, - -0.13178224861621857, - -0.12489106506109238, - -0.11822275817394257, - -0.11195923388004303, - -0.10627134144306183, - -0.10131421685218811, - -0.09722308814525604, - -0.09410956501960754, - -0.09205855429172516, - -0.09112602472305298, - -0.09133738279342651, - -0.09268689155578613, - -0.09513771533966064, - -0.09862302243709564, - -0.10304774343967438, - -0.10829116404056549, - -0.11421027779579163, - -0.15191376209259033, - -0.15355516970157623, - -0.15463757514953613, - -0.15513144433498383, - -0.15502332150936127, - -0.15431615710258484, - -0.15302923321723938, - -0.1511976569890976, - -0.14887139201164246, - -0.14611387252807617, - -0.14300034940242767, - -0.1396157294511795, - -0.13605232536792755, - -0.13240738213062286, - -0.1287802755832672, - -0.12526997923851013, - -0.1219722181558609, - -0.11897695809602737, - -0.11636590212583542, - -0.11421027779579163, - -0.15191376209259033, - -0.1614241600036621, - -0.1701609045267105, - -0.17788569629192352, - -0.18438780307769775, - -0.18948988616466522, - -0.1930527687072754, - -0.1949792504310608, - -0.1952168047428131, - -0.19375891983509064, - -0.19064539670944214, - -0.18596114218235016, - -0.17983393371105194, - -0.17243091762065887, - -0.1639540195465088, - -0.15463446080684662, - -0.1447264701128006, - -0.13450029492378235, - -0.1242348924279213, - -0.11421027034521103 - ], - "z": [ - -3.038273334503174, - -3.029296398162842, - -3.010279655456543, - -2.9817419052124023, - -2.9444618225097656, - -2.899456024169922, - -2.8479526042938232, - -2.791356086730957, - -2.731210231781006, - -2.6691558361053467, - -2.6068854331970215, - -2.546097993850708, - -2.4884510040283203, - -2.4355173110961914, - -2.3887410163879395, - -2.349397659301758, - -2.3185603618621826, - -2.2970707416534424, - -2.2855145931243896, - -2.284207344055176, - -3.038273334503174, - -3.029616117477417, - -3.0109105110168457, - -2.9826669692993164, - -2.945655584335327, - -2.900886058807373, - -2.8495798110961914, - -2.79313588142395, - -2.7330944538116455, - -2.6710927486419678, - -2.6088225841522217, - -2.5479819774627686, - -2.4902310371398926, - -2.4371445178985596, - -2.3901710510253906, - -2.3505914211273193, - -2.3194854259490967, - -2.297701835632324, - -2.285834312438965, - -2.284207344055176, - -3.038273334503174, - -3.0303170680999756, - -3.0122931003570557, - -2.9846935272216797, - -2.948270797729492, - -2.9040186405181885, - -2.8531441688537598, - -2.7970352172851562, - -2.7372219562530518, - -2.6753361225128174, - -2.613065719604492, - -2.552109718322754, - -2.4941301345825195, - -2.440709114074707, - -2.393303394317627, - -2.3532066345214844, - -2.32151198387146, - -2.299084186553955, - -2.2865352630615234, - -2.284207344055176, - -3.038273334503174, - -3.031322717666626, - -3.014277219772339, - -2.9876017570495605, - -2.952023983001709, - -2.9085144996643066, - -2.858259916305542, - -2.802631139755249, - -2.74314546585083, - -2.6814258098602295, - -2.6191556453704834, - -2.5580332279205322, - -2.4997260570526123, - -2.44582462310791, - -2.397799253463745, - -2.356959819793701, - -2.32442045211792, - -2.3010683059692383, - -2.287540912628174, - -2.284207344055176, - -3.038273334503174, - -3.032524585723877, - -3.016648054122925, - -2.991076707839966, - -2.9565086364746094, - -2.913886070251465, - -2.8643722534179688, - -2.8093173503875732, - -2.750223398208618, - -2.688702344894409, - -2.626431941986084, - -2.5651111602783203, - -2.5064125061035156, - -2.451937198638916, - -2.4031710624694824, - -2.3614444732666016, - -2.327895402908325, - -2.303439140319824, - -2.288742780685425, - -2.284207344055176, - -3.038273334503174, - -3.033792018890381, - -3.019148349761963, - -2.994741916656494, - -2.961238384246826, - -2.9195518493652344, - -2.870819091796875, - -2.8163695335388184, - -2.757688522338867, - -2.6963765621185303, - -2.634106397628784, - -2.5725762844085693, - -2.5134644508361816, - -2.458383798599243, - -2.408836603164673, - -2.3661742210388184, - -2.3315603733062744, - -2.3059394359588623, - -2.2900102138519287, - -2.284207344055176, - -3.038273334503174, - -3.0349879264831543, - -3.021507501602173, - -2.998199939727783, - -2.965701103210449, - -2.9248971939086914, - -2.876901626586914, - -2.8230230808258057, - -2.7647318840026855, - -2.7036173343658447, - -2.6413471698760986, - -2.5796194076538086, - -2.520118236541748, - -2.4644663333892822, - -2.414182186126709, - -2.3706369400024414, - -2.3350186347961426, - -2.3082985877990723, - -2.291206121444702, - -2.284207344055176, - -3.038273334503174, - -3.035982608795166, - -3.0234696865081787, - -3.0010762214660645, - -2.9694128036499023, - -2.9293434619903564, - -2.88196063041687, - -2.8285574913024902, - -2.77059006690979, - -2.7096400260925293, - -2.647369623184204, - -2.585477828979492, - -2.5256524085998535, - -2.4695255756378174, - -2.418628215789795, - -2.3743486404418945, - -2.337894916534424, - -2.310260772705078, - -2.292200803756714, - -2.284207344055176, - -3.038273334503174, - -3.036668300628662, - -3.024822473526001, - -3.003058910369873, - -2.9719715118408203, - -2.932408332824707, - -2.8854482173919678, - -2.8323724269866943, - -2.7746286392211914, - -2.713791608810425, - -2.6515214443206787, - -2.5895161628723145, - -2.5294675827026367, - -2.473013162612915, - -2.4216930866241455, - -2.3769073486328125, - -2.3398776054382324, - -2.3116135597229004, - -2.29288649559021, - -2.284207344055176, - -3.038273334503174, - -3.036970615386963, - -3.025418996810913, - -3.0039334297180176, - -2.973100185394287, - -2.933759927749634, - -2.886986255645752, - -2.834054946899414, - -2.77640962600708, - -2.715622663497925, - -2.6533522605895996, - -2.591297149658203, - -2.5311498641967773, - -2.474551200866699, - -2.4230449199676514, - -2.3780357837677, - -2.340751886367798, - -2.3122100830078125, - -2.29318904876709, - -2.284207344055176, - -3.038273334503174, - -3.0368571281433105, - -3.0251946449279785, - -3.0036046504974365, - -2.9726758003234863, - -2.9332518577575684, - -2.8864080905914307, - -2.8334224224090576, - -2.775740146636963, - -2.7149343490600586, - -2.6526641845703125, - -2.590627670288086, - -2.530517578125, - -2.473973035812378, - -2.422536849975586, - -2.3776116371154785, - -2.340423345565796, - -2.311985969543457, - -2.2930753231048584, - -2.284207344055176, - -3.038273334503174, - -3.036339521408081, - -3.0241739749908447, - -3.002108573913574, - -2.970745086669922, - -2.930939197540283, - -2.8837764263153076, - -2.8305435180664062, - -2.7726926803588867, - -2.711801528930664, - -2.649531126022339, - -2.5875802040100098, - -2.5276386737823486, - -2.471341371536255, - -2.4202239513397217, - -2.375680923461914, - -2.3389270305633545, - -2.310965061187744, - -2.292557716369629, - -2.284207344055176, - -3.038273334503174, - -3.0354745388031006, - -3.0224673748016357, - -2.9996068477630615, - -2.9675168991088867, - -2.927072048187256, - -2.8793764114379883, - -2.825730323791504, - -2.7675974369049072, - -2.7065634727478027, - -2.6442933082580566, - -2.5824851989746094, - -2.5228254795074463, - -2.4669411182403564, - -2.4163570404052734, - -2.3724524974823, - -2.336425542831421, - -2.309258460998535, - -2.2916927337646484, - -2.284207344055176, - -3.038273334503174, - -3.034355401992798, - -3.0202598571777344, - -2.996371030807495, - -2.963340997695923, - -2.922070264816284, - -2.8736846446990967, - -2.8195042610168457, - -2.7610068321228027, - -2.6997880935668945, - -2.6375176906585693, - -2.575894594192505, - -2.516599416732788, - -2.461249589920044, - -2.4113550186157227, - -2.368276834487915, - -2.3331897258758545, - -2.307050943374634, - -2.2905735969543457, - -2.284207344055176, - -3.038273334503174, - -3.0331037044525146, - -3.0177905559539795, - -2.9927515983581543, - -2.958670139312744, - -2.916475296020508, - -2.8673183917999268, - -2.812540054321289, - -2.7536349296569824, - -2.692209243774414, - -2.629939079284668, - -2.5685224533081055, - -2.5096352100372314, - -2.454883098602295, - -2.4057600498199463, - -2.3636057376861572, - -2.3295702934265137, - -2.304581642150879, - -2.2893218994140625, - -2.284207344055176, - -3.038273334503174, - -3.0318551063537598, - -3.015327215194702, - -2.989140748977661, - -2.954010248184204, - -2.910893678665161, - -2.8609671592712402, - -2.8055925369262695, - -2.7462804317474365, - -2.6846485137939453, - -2.622378349304199, - -2.5611679553985596, - -2.502687454223633, - -2.4485318660736084, - -2.4001784324645996, - -2.3589460849761963, - -2.3259594440460205, - -2.3021183013916016, - -2.2880733013153076, - -2.284207344055176, - -3.038273334503174, - -3.0307445526123047, - -3.013136625289917, - -2.9859299659729004, - -2.949866533279419, - -2.9059300422668457, - -2.8553192615509033, - -2.7994141578674316, - -2.7397403717041016, - -2.6779251098632812, - -2.615654945373535, - -2.5546281337738037, - -2.496509313583374, - -2.4428839683532715, - -2.395214796066284, - -2.354802370071411, - -2.3227484226226807, - -2.2999277114868164, - -2.2869629859924316, - -2.284207344055176, - -3.038273334503174, - -3.029892921447754, - -3.011456251144409, - -2.983466863632202, - -2.946687698364258, - -2.9021224975585938, - -2.8509867191314697, - -2.79467511177063, - -2.7347235679626465, - -2.6727676391601562, - -2.61049747467041, - -2.5496113300323486, - -2.491770029067993, - -2.438551425933838, - -2.3914074897766113, - -2.35162353515625, - -2.3202853202819824, - -2.2982473373413086, - -2.2861111164093018, - -2.284207344055176, - -3.038273334503174, - -3.0293920040130615, - -3.0104682445526123, - -2.98201847076416, - -2.9448187351226807, - -2.89988374710083, - -2.8484392166137695, - -2.7918882369995117, - -2.731773614883423, - -2.6697349548339844, - -2.6074647903442383, - -2.546661376953125, - -2.488983392715454, - -2.4360039234161377, - -2.3891685009002686, - -2.349754571914673, - -2.3188369274139404, - -2.2972593307495117, - -2.2856101989746094, - -2.284207344055176, - -3.038273334503174, - -3.029296398162842, - -3.010279655456543, - -2.9817419052124023, - -2.9444618225097656, - -2.899456024169922, - -2.8479526042938232, - -2.791356086730957, - -2.731210231781006, - -2.6691558361053467, - -2.6068854331970215, - -2.546097993850708, - -2.4884510040283203, - -2.4355173110961914, - -2.3887410163879395, - -2.349397659301758, - -2.3185603618621826, - -2.2970707416534424, - -2.2855145931243896, - -2.284207344055176 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.08779112249612808, - -0.08703231811523438, - -0.08578749746084213, - -0.08409062027931213, - -0.08198797702789307, - -0.07953691482543945, - -0.07680429518222809, - -0.0738646611571312, - -0.07079819589853287, - -0.06768853962421417, - -0.06462052464485168, - -0.061677828431129456, - -0.05894072726368904, - -0.05648387596011162, - -0.05437429994344711, - -0.05266953632235527, - -0.05141608789563179, - -0.050648145377635956, - -0.05038665980100632, - -0.05063875764608383, - -0.08779112249612808, - -0.09124192595481873, - -0.09409189224243164, - -0.09626327455043793, - -0.09769685566425323, - -0.09835352003574371, - -0.09821535646915436, - -0.0972861498594284, - -0.0955912172794342, - -0.09317681938409805, - -0.09010879695415497, - -0.08647085726261139, - -0.08236221224069595, - -0.07789494097232819, - -0.07319090515375137, - -0.06837841868400574, - -0.06358874589204788, - -0.058952540159225464, - -0.05459626764059067, - -0.05063875764608383, - -0.08779112249612808, - -0.0950501337647438, - -0.10160443186759949, - -0.10727521777153015, - -0.11190782487392426, - -0.11537588387727737, - -0.11758479475975037, - -0.11847429722547531, - -0.11802013218402863, - -0.11623469740152359, - -0.1131666749715805, - -0.10889977216720581, - -0.10355035960674286, - -0.0972643792629242, - -0.09021327644586563, - -0.08258939534425735, - -0.0746006891131401, - -0.06646507978439331, - -0.05840447545051575, - -0.05063875392079353, - -0.08779112249612808, - -0.0980442613363266, - -0.1075110137462616, - -0.1159331426024437, - -0.12308092415332794, - -0.12875938415527344, - -0.13281363248825073, - -0.1351330578327179, - -0.13565441966056824, - -0.13436347246170044, - -0.13129547238349915, - -0.12653404474258423, - -0.12020912766456604, - -0.11249320954084396, - -0.1035967767238617, - -0.09376248717308044, - -0.08325861394405365, - -0.07237166166305542, - -0.06139859929680824, - -0.05063875392079353, - -0.08779112249612808, - -0.09989984333515167, - -0.11117156594991684, - -0.12129881232976913, - -0.1300053596496582, - -0.1370536983013153, - -0.14225155115127563, - -0.1454571932554245, - -0.14658312499523163, - -0.1455986499786377, - -0.1425306349992752, - -0.1374627649784088, - -0.13053324818611145, - -0.12193114310503006, - -0.11189109086990356, - -0.1006869226694107, - -0.08862428367137909, - -0.07603221386671066, - -0.06325418502092361, - -0.05063875392079353, - -0.08779112249612808, - -0.10041580349206924, - -0.1121894121170044, - -0.12279078364372253, - -0.13193076848983765, - -0.1393599957227707, - -0.14487585425376892, - -0.14832791686058044, - -0.14962194859981537, - -0.14872267842292786, - -0.14565467834472656, - -0.14050158858299255, - -0.1334039717912674, - -0.12455544620752335, - -0.11419738829135895, - -0.10261232405900955, - -0.09011625498533249, - -0.07705006003379822, - -0.06377014517784119, - -0.05063875392079353, - -0.08779112249612808, - -0.09953623265028, - -0.110454261302948, - -0.12024738639593124, - -0.12864847481250763, - -0.13542838394641876, - -0.14040213823318481, - -0.14343412220478058, - -0.14444158971309662, - -0.14339706301689148, - -0.140329048037529, - -0.1353212296962738, - -0.12851017713546753, - -0.12008173763751984, - -0.11026577651500702, - -0.09933004528284073, - -0.0875728577375412, - -0.07531490921974182, - -0.06289057433605194, - -0.05063875392079353, - -0.08779112249612808, - -0.09735643863677979, - -0.10615412890911102, - -0.11394421756267548, - -0.12051421403884888, - -0.12568488717079163, - -0.12931521236896515, - -0.13130617141723633, - -0.1316034197807312, - -0.1301988959312439, - -0.12713086605072021, - -0.12248305976390839, - -0.11638223379850388, - -0.10899479687213898, - -0.10052227973937988, - -0.09119577705860138, - -0.08126968890428543, - -0.07101478427648544, - -0.06071078032255173, - -0.05063875392079353, - -0.08779112249612808, - -0.09411264210939407, - -0.09975501894950867, - -0.10456433892250061, - -0.10840941965579987, - -0.11118538677692413, - -0.11281649768352509, - -0.11325827986001968, - -0.11249867081642151, - -0.1105583906173706, - -0.10749037563800812, - -0.1033782958984375, - -0.09833434224128723, - -0.09249608218669891, - -0.0860227718949318, - -0.07909099012613297, - -0.07188981026411057, - -0.06461566686630249, - -0.057466983795166016, - -0.05063875764608383, - -0.08779112249612808, - -0.09015635401010513, - -0.09195035696029663, - -0.09312420338392258, - -0.0936458632349968, - -0.09350110590457916, - -0.09269389510154724, - -0.09124623239040375, - -0.08919761329889297, - -0.08660392463207245, - -0.08353590965270996, - -0.08007724583148956, - -0.0763222947716713, - -0.07237347215414047, - -0.06833849847316742, - -0.0643274262547493, - -0.060449667274951935, - -0.05681100860238075, - -0.053510695695877075, - -0.05063875764608383, - -0.08779112249612808, - -0.08591630309820175, - -0.08358591049909592, - -0.08086352050304413, - -0.07782337814569473, - -0.07454843074083328, - -0.0711279958486557, - -0.06765537708997726, - -0.06422529369592667, - -0.06093132495880127, - -0.05786330625414848, - -0.05510492995381355, - -0.05273143947124481, - -0.05080757290124893, - -0.04938581585884094, - -0.048504941165447235, - -0.048188984394073486, - -0.04844656214118004, - -0.049270644783973694, - -0.05063875764608383, - -0.08779112249612808, - -0.08185195922851562, - -0.07556809484958649, - -0.0691109299659729, - -0.06265659630298615, - -0.056381165981292725, - -0.05045580118894577, - -0.045042138546705246, - -0.04028785228729248, - -0.036322616040706635, - -0.03325459733605385, - -0.03116748481988907, - -0.030118204653263092, - -0.0301353819668293, - -0.031218551099300385, - -0.033338163048028946, - -0.03643639758229256, - -0.04042874276638031, - -0.045206304639577866, - -0.05063875764608383, - -0.08779112994670868, - -0.0784037709236145, - -0.06876575946807861, - -0.059140004217624664, - -0.04978907108306885, - -0.040968023240566254, - -0.032917480915784836, - -0.025857023894786835, - -0.019979264587163925, - -0.01544453576207161, - -0.012376517057418823, - -0.010858897119760513, - -0.01093309000134468, - -0.012597054243087769, - -0.015805400907993317, - -0.02047063037753105, - -0.02646547555923462, - -0.033626407384872437, - -0.041758108884096146, - -0.05063875764608383, - -0.08779112994670868, - -0.07594537734985352, - -0.06391604244709015, - -0.052031248807907104, - -0.040615182369947433, - -0.029979240149259567, - -0.02041354775428772, - -0.012179020792245865, - -0.005500294268131256, - -0.0005595386028289795, - 0.0025084763765335083, - 0.0036200731992721558, - 0.002744913101196289, - -0.00009312480688095093, - -0.004816621541976929, - -0.011296741664409637, - -0.01935672014951706, - -0.02877669408917427, - -0.039299722760915756, - -0.05063875764608383, - -0.08779112994670868, - -0.07474321126937866, - -0.061544500291347504, - -0.04855501651763916, - -0.03612907975912094, - -0.0246056467294693, - -0.014299038797616959, - -0.005490384995937347, - 0.0015800297260284424, - 0.006719343364238739, - 0.009787358343601227, - 0.010700397193431854, - 0.009433552622795105, - 0.006021387875080109, - 0.0005569756031036377, - -0.006810639053583145, - -0.015880484133958817, - -0.026405151933431625, - -0.038097552955150604, - -0.05063875764608383, - -0.08779112994670868, - -0.07492753118276596, - -0.06190810725092888, - -0.0490880012512207, - -0.03681689873337746, - -0.025429535657167435, - -0.015236523002386093, - -0.006515897810459137, - 0.0004944577813148499, - 0.005603328347206116, - 0.008671343326568604, - 0.009614825248718262, - 0.008408039808273315, - 0.005083903670310974, - -0.00026691704988479614, - -0.007498454302549362, - -0.01641346886754036, - -0.026768758893013, - -0.0382818728685379, - -0.05063875764608383, - -0.08779112994670868, - -0.07647836953401566, - -0.06496747583150864, - -0.05357244610786438, - -0.042604099959135056, - -0.03236163780093193, - -0.023124434053897858, - -0.015144452452659607, - -0.008639376610517502, - -0.003786645829677582, - -0.000718630850315094, - 0.00048098713159561157, - -0.00022051483392715454, - -0.002804011106491089, - -0.007199019193649292, - -0.013285662978887558, - -0.020897917449474335, - -0.02982812374830246, - -0.0398327112197876, - -0.05063875764608383, - -0.08779112994670868, - -0.07922765612602234, - -0.07039107382297516, - -0.06152240186929703, - -0.05286356061697006, - -0.04465075582265854, - -0.03710798919200897, - -0.030441008508205414, - -0.024831686168909073, - -0.020433027297258377, - -0.01736500859260559, - -0.01571131870150566, - -0.01551707461476326, - -0.016787566244602203, - -0.0194881372153759, - -0.023545123636722565, - -0.028847873210906982, - -0.03525172173976898, - -0.04258200153708458, - -0.05063875764608383, - -0.08779112249612808, - -0.08287748694419861, - -0.07759116590023041, - -0.07207636535167694, - -0.0664835125207901, - -0.0609651654958725, - -0.055671848356723785, - -0.05074795335531235, - -0.04632779210805893, - -0.04253192991018295, - -0.039463914930820465, - -0.03720742464065552, - -0.035824019461870193, - -0.035351429134607315, - -0.03580255061388016, - -0.037165071815252304, - -0.0394018292427063, - -0.04245181381702423, - -0.04623182862997055, - -0.05063875764608383, - -0.08779112249612808, - -0.08703231811523438, - -0.08578750491142273, - -0.08409062772989273, - -0.08198798447847366, - -0.07953692227602005, - -0.07680431008338928, - -0.07386467605829239, - -0.07079821079969406, - -0.06768855452537537, - -0.06462053209543228, - -0.06167783960700035, - -0.058940738439559937, - -0.05648388713598251, - -0.05437431111931801, - -0.052669547498226166, - -0.05141609162092209, - -0.05064815282821655, - -0.05038665980100632, - -0.05063875764608383 - ], - "y": [ - -0.08779116719961166, - -0.10041934251785278, - -0.11219634115695953, - -0.12280093133449554, - -0.13194382190704346, - -0.13937562704086304, - -0.14489364624023438, - -0.14834734797477722, - -0.14964252710342407, - -0.14874383807182312, - -0.14567580819129944, - -0.14052213728427887, - -0.13342337310314178, - -0.12457318603992462, - -0.11421297490596771, - -0.10262531787157059, - -0.09012632071971893, - -0.07705690711736679, - -0.06377359479665756, - -0.05063870549201965, - -0.08779116719961166, - -0.0998750776052475, - -0.11112265288829803, - -0.12122710049152374, - -0.12991280853748322, - -0.1369428038597107, - -0.14212538301944733, - -0.1453191637992859, - -0.14643698930740356, - -0.14544841647148132, - -0.14238038659095764, - -0.13731661438941956, - -0.13039518892765045, - -0.12180492281913757, - -0.11178013682365417, - -0.10059429705142975, - -0.08855248987674713, - -0.07598321884870529, - -0.06322932988405228, - -0.05063870549201965, - -0.08779116719961166, - -0.0979938805103302, - -0.10741157084703445, - -0.11578735709190369, - -0.12289278209209442, - -0.1285340040922165, - -0.13255715370178223, - -0.13485249876976013, - -0.13535743951797485, - -0.1340581476688385, - -0.130990132689476, - -0.12623703479766846, - -0.11992853134870529, - -0.11223669350147247, - -0.10337133705615997, - -0.09357427060604095, - -0.08311274647712708, - -0.07227213680744171, - -0.06134812906384468, - -0.05063870549201965, - -0.08779116719961166, - -0.09497959911823273, - -0.10146524012088776, - -0.1070711761713028, - -0.11164449155330658, - -0.11506043374538422, - -0.11722584068775177, - -0.11808162927627563, - -0.11760446429252625, - -0.11580736190080643, - -0.11273933947086334, - -0.10848407447338104, - -0.1031576618552208, - -0.09690537303686142, - -0.0898977667093277, - -0.08232598006725311, - -0.07439655810594559, - -0.06632580608129501, - -0.058333851397037506, - -0.05063870921730995, - -0.08779116719961166, - -0.09115888923406601, - -0.09392803907394409, - -0.0960230752825737, - -0.09738685935735703, - -0.09798218309879303, - -0.09779281914234161, - -0.09682391583919525, - -0.09510191529989243, - -0.09267377853393555, - -0.08960575610399246, - -0.08598152548074722, - -0.08189994096755981, - -0.07747234404087067, - -0.07281950861215591, - -0.06806834787130356, - -0.06334846466779709, - -0.05878860130906105, - -0.05451314151287079, - -0.05063870921730995, - -0.08779116719961166, - -0.0869457796216011, - -0.08561673760414124, - -0.08384029567241669, - -0.08166491985321045, - -0.07914993166923523, - -0.0763639509677887, - -0.07338295876979828, - -0.0702882781624794, - -0.06716431677341461, - -0.06409628689289093, - -0.0611678883433342, - -0.05845898762345314, - -0.05604347959160805, - -0.05398726090788841, - -0.05234640836715698, - -0.051165685057640076, - -0.05047730356454849, - -0.050300031900405884, - -0.05063871294260025, - -0.08779117465019226, - -0.08279682695865631, - -0.07743200659751892, - -0.07184304296970367, - -0.06618238985538483, - -0.060604460537433624, - -0.05526140332221985, - -0.05029895901679993, - -0.04585249349474907, - -0.0420432984828949, - -0.038975272327661514, - -0.03673210367560387, - -0.03537498787045479, - -0.0349409319460392, - -0.03544178232550621, - -0.03686387836933136, - -0.039168428629636765, - -0.04229256510734558, - -0.04615107923746109, - -0.05063871294260025, - -0.08779117465019226, - -0.0791616290807724, - -0.07026077061891556, - -0.06133138760924339, - -0.052617043256759644, - -0.044355444610118866, - -0.036771949380636215, - -0.030073419213294983, - -0.024442557245492935, - -0.020032979547977448, - -0.016964953392744064, - -0.015322167426347733, - -0.015149448066949844, - -0.016451481729745865, - -0.01919277012348175, - -0.02329852804541588, - -0.028656773269176483, - -0.035121336579322815, - -0.04251588508486748, - -0.05063871294260025, - -0.08779117465019226, - -0.07643412798643112, - -0.06488016247749329, - -0.05344444140791893, - -0.04243889078497887, - -0.03216373175382614, - -0.022899221628904343, - -0.014898087829351425, - -0.008378572762012482, - -0.003518529236316681, - -0.00045049935579299927, - 0.000741817057132721, - 0.00002588331699371338, - -0.002578750252723694, - -0.007001049816608429, - -0.0131203792989254, - -0.02076983079314232, - -0.029740724712610245, - -0.0397883802652359, - -0.05063871294260025, - -0.08779117465019226, - -0.07490988075733185, - -0.061873242259025574, - -0.049036867916584015, - -0.036750901490449905, - -0.02535046637058258, - -0.015146542340517044, - -0.006417453289031982, - 0.0005986765027046204, - 0.00571046769618988, - 0.008778497576713562, - 0.009719066321849823, - 0.008506521582603455, - 0.005173936486244202, - -0.00018778443336486816, - -0.007432382553815842, - -0.016362257301807404, - -0.02673380821943283, - -0.03826413303613663, - -0.05063871294260025, - -0.08779117465019226, - -0.07475405931472778, - -0.06156586483120918, - -0.04858630895614624, - -0.03616945073008537, - -0.02465398609638214, - -0.014354031533002853, - -0.0055505260825157166, - 0.0015163719654083252, - 0.00665389746427536, - 0.009721927344799042, - 0.010636761784553528, - 0.00937344878911972, - 0.005966447293758392, - 0.0005086958408355713, - -0.006850931793451309, - -0.01591169834136963, - -0.02642642706632614, - -0.03810831531882286, - -0.05063871294260025, - -0.08779117465019226, - -0.07598356902599335, - -0.06399133056402206, - -0.05214158073067665, - -0.040757544338703156, - -0.030149761587381363, - -0.020607564598321915, - -0.012391254305839539, - -0.0057249367237091064, - -0.0007904767990112305, - 0.002277553081512451, - 0.003395453095436096, - 0.0025327205657958984, - -0.00028709322214126587, - -0.004987083375453949, - -0.011439032852649689, - -0.01946697011590004, - -0.028851892799139023, - -0.039337821304798126, - -0.05063871294260025, - -0.08779117465019226, - -0.07846514880657196, - -0.06888680905103683, - -0.059317417442798615, - -0.05001800134778023, - -0.04124223440885544, - -0.03322948142886162, - -0.02619832009077072, - -0.020340539515018463, - -0.015815936028957367, - -0.012747909873723984, - -0.01122014969587326, - -0.011274348944425583, - -0.01290901005268097, - -0.016079548746347427, - -0.020699486136436462, - -0.026642803102731705, - -0.03374737128615379, - -0.04181940108537674, - -0.05063871294260025, - -0.08779117465019226, - -0.08192989975214005, - -0.07572180032730103, - -0.06933621317148209, - -0.06294731050729752, - -0.05672937631607056, - -0.05085201933979988, - -0.0454755499958992, - -0.04074662923812866, - -0.036794256418943405, - -0.03372623026371002, - -0.03162623941898346, - -0.030551575124263763, - -0.030531547963619232, - -0.03156670182943344, - -0.03362879902124405, - -0.036661598831415176, - -0.04058236628770828, - -0.045284152030944824, - -0.05063871294260025, - -0.08779116719961166, - -0.08600234985351562, - -0.08375561237335205, - -0.08111225068569183, - -0.07814435660839081, - -0.07493288815021515, - -0.07156544923782349, - -0.0681338980793953, - -0.06473183631896973, - -0.06145206093788147, - -0.05838403105735779, - -0.055611446499824524, - -0.053209926933050156, - -0.051244981586933136, - -0.04977021366357803, - -0.04882584512233734, - -0.048437636345624924, - -0.04861617833375931, - -0.049356602132320404, - -0.05063871294260025, - -0.08779116719961166, - -0.0902411937713623, - -0.09211767464876175, - -0.09336942434310913, - -0.09396231174468994, - -0.09388015419244766, - -0.09312519431114197, - -0.09171801805496216, - -0.08969701826572418, - -0.08711732923984528, - -0.0840492993593216, - -0.08057662844657898, - -0.07679404318332672, - -0.07280471920967102, - -0.06871747970581055, - -0.06464380770921707, - -0.06069481745362282, - -0.05697823688387871, - -0.053595446050167084, - -0.05063870921730995, - -0.08779116719961166, - -0.09418708831071854, - -0.09990183264017105, - -0.10477951169013977, - -0.10868708789348602, - -0.11151796579360962, - -0.11319492757320404, - -0.11367224156856537, - -0.11293685436248779, - -0.11100886017084122, - -0.10794083774089813, - -0.10381646454334259, - -0.09874826669692993, - -0.09287446737289429, - -0.0863552987575531, - -0.07936858385801315, - -0.07210490107536316, - -0.06476239114999771, - -0.05754133686423302, - -0.05063870921730995, - -0.08779116719961166, - -0.09741242974996567, - -0.10626453161239624, - -0.11410602182149887, - -0.12072300165891647, - -0.12593497335910797, - -0.12959976494312286, - -0.13161742687225342, - -0.13193291425704956, - -0.13053759932518005, - -0.12746956944465637, - -0.12281251698732376, - -0.11669345945119858, - -0.10927930474281311, - -0.10077230632305145, - -0.091404490172863, - -0.08143141120672226, - -0.0711250975728035, - -0.06076667830348015, - -0.05063870549201965, - -0.08779116719961166, - -0.09956769645214081, - -0.11051628738641739, - -0.12033827602863312, - -0.1287657618522644, - -0.13556885719299316, - -0.14056198298931122, - -0.143608957529068, - -0.144626647233963, - -0.14358730614185333, - -0.14051927626132965, - -0.135506272315979, - -0.12868498265743256, - -0.12024152278900146, - -0.11040619015693665, - -0.09944725781679153, - -0.0876636654138565, - -0.07537685334682465, - -0.06292194873094559, - -0.05063870549201965, - -0.08779116719961166, - -0.10041934251785278, - -0.11219634115695953, - -0.12280093133449554, - -0.13194382190704346, - -0.13937562704086304, - -0.14489364624023438, - -0.14834734797477722, - -0.14964252710342407, - -0.14874383807182312, - -0.14567580819129944, - -0.14052213728427887, - -0.13342337310314178, - -0.12457318603992462, - -0.11421297490596771, - -0.10262531787157059, - -0.09012632071971893, - -0.07705690711736679, - -0.06377359479665756, - -0.05063870549201965 - ], - "z": [ - -1.7558225393295288, - -1.7501366138458252, - -1.7344716787338257, - -1.7092548608779907, - -1.6751741170883179, - -1.6331590414047241, - -1.5843557119369507, - -1.5300953388214111, - -1.471858024597168, - -1.4112322330474854, - -1.3498718738555908, - -1.2894506454467773, - -1.231616497039795, - -1.1779471635818481, - -1.1299066543579102, - -1.0888051986694336, - -1.0557639598846436, - -1.031684398651123, - -1.0172233581542969, - -1.0127750635147095, - -1.7558225393295288, - -1.7499533891677856, - -1.7341101169586182, - -1.7087249755859375, - -1.674490213394165, - -1.6323398351669312, - -1.5834234952926636, - -1.5290756225585938, - -1.4707785844802856, - -1.4101226329803467, - -1.3487622737884521, - -1.288371205329895, - -1.230596899986267, - -1.1770150661468506, - -1.1290874481201172, - -1.0881212949752808, - -1.0552340745925903, - -1.031322956085205, - -1.0170400142669678, - -1.0127750635147095, - -1.7558225393295288, - -1.7498570680618286, - -1.7339200973510742, - -1.7084462642669678, - -1.6741306781768799, - -1.6319091320037842, - -1.5829334259033203, - -1.5285395383834839, - -1.470211148262024, - -1.4095392227172852, - -1.3481788635253906, - -1.2878037691116333, - -1.2300608158111572, - -1.1765249967575073, - -1.1286567449569702, - -1.0877617597579956, - -1.0549554824829102, - -1.0311328172683716, - -1.0169436931610107, - -1.0127750635147095, - -1.7558225393295288, - -1.7498581409454346, - -1.733922004699707, - -1.7084492444992065, - -1.674134373664856, - -1.631913661956787, - -1.582938551902771, - -1.5285451412200928, - -1.4702171087265015, - -1.4095454216003418, - -1.3481849431991577, - -1.2878097295761108, - -1.2300664186477661, - -1.176530122756958, - -1.1286612749099731, - -1.0877654552459717, - -1.0549583435058594, - -1.031134843826294, - -1.0169446468353271, - -1.0127750635147095, - -1.7558225393295288, - -1.7499563694000244, - -1.7341158390045166, - -1.708733320236206, - -1.6745010614395142, - -1.6323528289794922, - -1.5834383964538574, - -1.5290918350219727, - -1.470795750617981, - -1.4101402759552002, - -1.3487799167633057, - -1.2883883714675903, - -1.230613112449646, - -1.1770298480987549, - -1.1291004419326782, - -1.0881321430206299, - -1.0552425384521484, - -1.0313286781311035, - -1.0170429944992065, - -1.0127750635147095, - -1.7558225393295288, - -1.7501411437988281, - -1.734480619430542, - -1.7092678546905518, - -1.6751909255981445, - -1.6331791877746582, - -1.5843786001205444, - -1.5301203727722168, - -1.4718844890594482, - -1.4112595319747925, - -1.349899172782898, - -1.2894771099090576, - -1.2316415309906006, - -1.177970051765442, - -1.1299268007278442, - -1.0888220071792603, - -1.0557770729064941, - -1.0316933393478394, - -1.0172278881072998, - -1.0127750635147095, - -1.7558225393295288, - -1.7503926753997803, - -1.7349765300750732, - -1.709994912147522, - -1.6761291027069092, - -1.6343029737472534, - -1.5856573581695557, - -1.5315192937850952, - -1.473365306854248, - -1.4127819538116455, - -1.3514214754104614, - -1.2909579277038574, - -1.233040452003479, - -1.1792489290237427, - -1.1310505867004395, - -1.0897603034973145, - -1.0565041303634644, - -1.0321893692016602, - -1.0174791812896729, - -1.0127750635147095, - -1.7558225393295288, - -1.750683307647705, - -1.7355501651763916, - -1.7108356952667236, - -1.6772141456604004, - -1.6356027126312256, - -1.5871362686157227, - -1.5331369638442993, - -1.475077748298645, - -1.414542317390442, - -1.3531819581985474, - -1.2926703691482544, - -1.234658122062683, - -1.1807277202606201, - -1.132350206375122, - -1.0908452272415161, - -1.0573447942733765, - -1.032762885093689, - -1.0177700519561768, - -1.0127750635147095, - -1.7558225393295288, - -1.7509819269180298, - -1.7361390590667725, - -1.7116990089416504, - -1.678328275680542, - -1.636937141418457, - -1.5886547565460205, - -1.5347981452941895, - -1.4768362045288086, - -1.4163501262664795, - -1.3549896478652954, - -1.294428825378418, - -1.2363193035125732, - -1.1822463274002075, - -1.1336848735809326, - -1.0919593572616577, - -1.0582082271575928, - -1.0333518981933594, - -1.018068552017212, - -1.0127750635147095, - -1.7558225393295288, - -1.751255989074707, - -1.7366796731948853, - -1.7124913930892944, - -1.6793508529663086, - -1.6381621360778809, - -1.5900485515594482, - -1.5363227128982544, - -1.478450059890747, - -1.4180092811584473, - -1.3566489219665527, - -1.2960426807403564, - -1.2378439903259277, - -1.1836400032043457, - -1.1349096298217773, - -1.0929819345474243, - -1.0590004920959473, - -1.0338925123214722, - -1.0183426141738892, - -1.0127750635147095, - -1.7558225393295288, - -1.7514758110046387, - -1.7371132373809814, - -1.7131268978118896, - -1.680171012878418, - -1.6391445398330688, - -1.5911664962768555, - -1.5375456809997559, - -1.479744553565979, - -1.4193400144577026, - -1.357979655265808, - -1.2973371744155884, - -1.2390668392181396, - -1.184757947921753, - -1.1358921527862549, - -1.0938022136688232, - -1.059636116027832, - -1.0343260765075684, - -1.0185623168945312, - -1.0127750635147095, - -1.7558225393295288, - -1.751617431640625, - -1.7373929023742676, - -1.7135367393493652, - -1.6806999444961548, - -1.6397781372070312, - -1.5918874740600586, - -1.5383342504501343, - -1.4805793762207031, - -1.4201982021331787, - -1.3588378429412842, - -1.2981719970703125, - -1.239855408668518, - -1.185478925704956, - -1.1365257501602173, - -1.0943310260772705, - -1.0600459575653076, - -1.0346057415008545, - -1.0187041759490967, - -1.0127750635147095, - -1.7558225393295288, - -1.7516658306121826, - -1.7374882698059082, - -1.7136765718460083, - -1.6808803081512451, - -1.6399941444396973, - -1.5921332836151123, - -1.5386031866073608, - -1.4808640480041504, - -1.4204908609390259, - -1.3591305017471313, - -1.2984566688537598, - -1.2401243448257446, - -1.1857247352600098, - -1.1367417573928833, - -1.0945113897323608, - -1.0601856708526611, - -1.0347011089324951, - -1.0187524557113647, - -1.0127750635147095, - -1.7558225393295288, - -1.7516155242919922, - -1.7373889684677124, - -1.7135310173034668, - -1.6806925535202026, - -1.639769196510315, - -1.5918773412704468, - -1.538323163986206, - -1.4805676937103271, - -1.4201862812042236, - -1.3588258028030396, - -1.2981603145599365, - -1.2398444414138794, - -1.1854687929153442, - -1.136516809463501, - -1.0943236351013184, - -1.0600402355194092, - -1.0346018075942993, - -1.0187021493911743, - -1.0127750635147095, - -1.7558225393295288, - -1.751471996307373, - -1.7371058464050293, - -1.7131160497665405, - -1.680156946182251, - -1.6391277313232422, - -1.5911473035812378, - -1.537524700164795, - -1.479722499847412, - -1.4193172454833984, - -1.357956886291504, - -1.297315001487732, - -1.2390458583831787, - -1.1847388744354248, - -1.1358753442764282, - -1.0937881469726562, - -1.059625267982483, - -1.0343186855316162, - -1.0185586214065552, - -1.0127750635147095, - -1.7558225393295288, - -1.7512508630752563, - -1.7366695404052734, - -1.7124764919281006, - -1.6793317794799805, - -1.6381391286849976, - -1.5900224447250366, - -1.5362942218780518, - -1.4784198999404907, - -1.4179781675338745, - -1.35661780834198, - -1.2960125207901, - -1.2378153800964355, - -1.1836140155792236, - -1.1348867416381836, - -1.0929627418518066, - -1.058985710144043, - -1.0338823795318604, - -1.0183374881744385, - -1.0127750635147095, - -1.7558225393295288, - -1.7509759664535522, - -1.7361273765563965, - -1.711681842803955, - -1.6783061027526855, - -1.6369106769561768, - -1.5886245965957642, - -1.5347651243209839, - -1.4768011569976807, - -1.4163141250610352, - -1.3549537658691406, - -1.29439377784729, - -1.2362862825393677, - -1.1822161674499512, - -1.1336582899093628, - -1.0919371843338013, - -1.0581910610198975, - -1.0333402156829834, - -1.0180625915527344, - -1.0127750635147095, - -1.7558225393295288, - -1.750677227973938, - -1.735538125038147, - -1.7108180522918701, - -1.6771913766860962, - -1.635575294494629, - -1.58710515499115, - -1.5331029891967773, - -1.4750417470932007, - -1.4145053625106812, - -1.3531450033187866, - -1.29263436794281, - -1.2346241474151611, - -1.180696725845337, - -1.1323230266571045, - -1.090822458267212, - -1.057327151298523, - -1.0327508449554443, - -1.0177638530731201, - -1.0127750635147095, - -1.7558225393295288, - -1.7503869533538818, - -1.7349655628204346, - -1.709978699684143, - -1.6761082410812378, - -1.6342779397964478, - -1.585628867149353, - -1.531488060951233, - -1.4733322858810425, - -1.4127479791641235, - -1.3513875007629395, - -1.2909249067306519, - -1.2330092191696167, - -1.17922043800354, - -1.1310255527496338, - -1.0897393226623535, - -1.0564879179000854, - -1.032178282737732, - -1.0174736976623535, - -1.0127750635147095, - -1.7558225393295288, - -1.7501366138458252, - -1.7344716787338257, - -1.7092548608779907, - -1.6751741170883179, - -1.6331590414047241, - -1.5843557119369507, - -1.5300953388214111, - -1.471858024597168, - -1.4112322330474854, - -1.3498718738555908, - -1.2894506454467773, - -1.231616497039795, - -1.1779471635818481, - -1.1299066543579102, - -1.0888051986694336, - -1.0557639598846436, - -1.031684398651123, - -1.0172233581542969, - -1.0127750635147095 - ] - }, - { - "alphahull": 0, - "color": "#FF97FF", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.1204976886510849, - -0.10143718123435974, - -0.08238060027360916, - -0.06384775787591934, - -0.046344198286533356, - -0.03034735471010208, - -0.016293585300445557, - -0.00456622987985611, - 0.004514805972576141, - 0.010701797902584076, - 0.013826020061969757, - 0.013802237808704376, - 0.010631076991558075, - 0.004399068653583527, - -0.004723802208900452, - -0.016488701105117798, - -0.030574701726436615, - -0.046597570180892944, - -0.06412024796009064, - -0.08266477286815643, - -0.1204976886510849, - -0.10279208421707153, - -0.0850534588098526, - -0.06776566058397293, - -0.051400259137153625, - -0.036403678357601166, - -0.02318495512008667, - -0.012104690074920654, - -0.00346510112285614, - 0.002498127520084381, - 0.005622349679470062, - 0.005822330713272095, - 0.0030926167964935303, - -0.0024923011660575867, - -0.010780133306980133, - -0.021544769406318665, - -0.034492604434490204, - -0.049270424991846085, - -0.06547515839338303, - -0.08266477286815643, - -0.1204976886510849, - -0.10603771358728409, - -0.09145617485046387, - -0.07715082168579102, - -0.06351187825202942, - -0.050911348313093185, - -0.03969297558069229, - -0.030162744224071503, - -0.022580623626708984, - -0.017153441905975342, - -0.01402921974658966, - -0.01329319179058075, - -0.014965437352657318, - -0.019000321626663208, - -0.025287814438343048, - -0.03365638107061386, - -0.04387776926159859, - -0.05567314848303795, - -0.06872078776359558, - -0.08266477286815643, - -0.1204976886510849, - -0.11082234233617783, - -0.10089492797851562, - -0.0909862294793129, - -0.08136653900146484, - -0.07229825109243393, - -0.06402872502803802, - -0.0567835308611393, - -0.05076030269265175, - -0.04612334817647934, - -0.04299912974238396, - -0.041472870856523514, - -0.041586220264434814, - -0.04333607852458954, - -0.046674709767103195, - -0.05151104927062988, - -0.05771317332983017, - -0.06511189788579941, - -0.07350541651248932, - -0.08266476541757584, - -0.1204976812005043, - -0.11662748456001282, - -0.11234687268733978, - -0.107772596180439, - -0.10302942991256714, - -0.09824676811695099, - -0.09355506300926208, - -0.08908228576183319, - -0.08495044708251953, - -0.08127225190401077, - -0.07814803719520569, - -0.0756630152463913, - -0.07388497143983841, - -0.0728624165058136, - -0.07262323051691055, - -0.07317394763231277, - -0.07449954003095627, - -0.07656384259462357, - -0.07931056618690491, - -0.08266476541757584, - -0.1204976812005043, - -0.12282407283782959, - -0.12457101047039032, - -0.12569084763526917, - -0.12615305185317993, - -0.12594498693943024, - -0.12507233023643494, - -0.12355891615152359, - -0.12144600600004196, - -0.11879123002290726, - -0.11566701531410217, - -0.11215857416391373, - -0.1083616092801094, - -0.10437969118356705, - -0.1003214493393898, - -0.09629756212234497, - -0.09241779893636703, - -0.0887879878282547, - -0.08550714701414108, - -0.08266476541757584, - -0.1204976812005043, - -0.128740593791008, - -0.13624268770217896, - -0.1427992880344391, - -0.14823156595230103, - -0.15239134430885315, - -0.1551651656627655, - -0.15647736191749573, - -0.156292125582695, - -0.15461450815200806, - -0.15149030089378357, - -0.14700469374656677, - -0.14128005504608154, - -0.13447251915931702, - -0.1267678290605545, - -0.11837608367204666, - -0.10952622443437576, - -0.10045965015888214, - -0.09142366796731949, - -0.08266475796699524, - -0.1204976737499237, - -0.13373592495918274, - -0.1460970640182495, - -0.15724392235279083, - -0.16687245666980743, - -0.17472001910209656, - -0.1805725395679474, - -0.18427038192749023, - -0.18571269512176514, - -0.18486011028289795, - -0.18173587322235107, - -0.1764252483844757, - -0.16907307505607605, - -0.1598798930644989, - -0.14909648895263672, - -0.13701698184013367, - -0.1239708662033081, - -0.1103140339255333, - -0.09641899168491364, - -0.08266475796699524, - -0.1204976737499237, - -0.13726870715618134, - -0.15306627750396729, - -0.16745947301387787, - -0.1800556778907776, - -0.1905113160610199, - -0.19854116439819336, - -0.2039261758327484, - -0.20651951432228088, - -0.20625039935112, - -0.2031261920928955, - -0.19723209738731384, - -0.18872886896133423, - -0.17784851789474487, - -0.16488778591156006, - -0.15020020306110382, - -0.13418641686439514, - -0.11728325486183167, - -0.09995178133249283, - -0.08266475796699524, - -0.1204976737499237, - -0.13895614445209503, - -0.15639512240886688, - -0.17233891785144806, - -0.18635264039039612, - -0.1980540007352829, - -0.20712384581565857, - -0.21331477165222168, - -0.21645787358283997, - -0.2164674699306488, - -0.21334323287010193, - -0.20717045664787292, - -0.1981174647808075, - -0.18643119931221008, - -0.17243048548698425, - -0.15649715065956116, - -0.13906586170196533, - -0.12061209976673126, - -0.10163921862840652, - -0.08266475796699524, - -0.1204976737499237, - -0.13861536979675293, - -0.15572285652160645, - -0.17135348916053772, - -0.18508094549179077, - -0.19653072953224182, - -0.2053905427455902, - -0.21141871809959412, - -0.21445079147815704, - -0.21440407633781433, - -0.21127986907958984, - -0.2051633596420288, - -0.19622141122817993, - -0.18469789624214172, - -0.17090719938278198, - -0.1552254557609558, - -0.1380804479122162, - -0.11993981897830963, - -0.10129843652248383, - -0.08266475796699524, - -0.1204976737499237, - -0.1362832933664322, - -0.1511223167181015, - -0.16460998356342316, - -0.17637839913368225, - -0.18610654771327972, - -0.19352906942367554, - -0.1984434723854065, - -0.20071575045585632, - -0.20028388500213623, - -0.19715966284275055, - -0.1914283037185669, - -0.1832461655139923, - -0.17283642292022705, - -0.16048303246498108, - -0.14652292430400848, - -0.13133692741394043, - -0.11533928662538528, - -0.09896636009216309, - -0.08266475796699524, - -0.1204976812005043, - -0.13221263885498047, - -0.1430920660495758, - -0.15283916890621185, - -0.16118809580802917, - -0.1679111123085022, - -0.17282480001449585, - -0.17579516768455505, - -0.17674116790294647, - -0.17563700675964355, - -0.17251276969909668, - -0.16745373606681824, - -0.16059786081314087, - -0.15213215351104736, - -0.14228758215904236, - -0.1313326209783554, - -0.11956611275672913, - -0.10730903595685959, - -0.09489571303129196, - -0.08266475796699524, - -0.1204976812005043, - -0.12684454023838043, - -0.13250227272510529, - -0.13731655478477478, - -0.14115609228610992, - -0.14391611516475677, - -0.1455213576555252, - -0.1459280252456665, - -0.14512503147125244, - -0.14313426613807678, - -0.1400100588798523, - -0.1358375996351242, - -0.13073071837425232, - -0.12482871115207672, - -0.11829258501529694, - -0.11130061000585556, - -0.10404350608587265, - -0.09671925008296967, - -0.08952760696411133, - -0.08266476541757584, - -0.1204976812005043, - -0.12076070159673691, - -0.12050054967403412, - -0.1197243332862854, - -0.11845321208238602, - -0.11672187596559525, - -0.11457753926515579, - -0.1120786964893341, - -0.10929350554943085, - -0.10629795491695404, - -0.10317373275756836, - -0.10000607371330261, - -0.09688138961791992, - -0.0938848927617073, - -0.09109833836555481, - -0.08859772980213165, - -0.08645127713680267, - -0.0847175270318985, - -0.0834437757730484, - -0.08266476541757584, - -0.1204976812005043, - -0.1146204024553299, - -0.10838744789361954, - -0.10196883231401443, - -0.0955396518111229, - -0.08927527070045471, - -0.08334656059741974, - -0.0779152363538742, - -0.07312946766614914, - -0.06911978125572205, - -0.06599556654691696, - -0.06384202837944031, - -0.06271792948246002, - -0.06265390664339066, - -0.06365172564983368, - -0.06568416208028793, - -0.0686957836151123, - -0.07260441780090332, - -0.07730347663164139, - -0.08266476541757584, - -0.1204976886510849, - -0.10908903926610947, - -0.09747558832168579, - -0.08597414195537567, - -0.07489840686321259, - -0.06455051898956299, - -0.05521272122859955, - -0.047139737755060196, - -0.04055177420377731, - -0.0356285497546196, - -0.03250432759523392, - -0.03126434236764908, - -0.03194242715835571, - -0.03452007472515106, - -0.038926973938941956, - -0.04504292085766792, - -0.052701082080602646, - -0.06169256195425987, - -0.07177211344242096, - -0.08266476541757584, - -0.1204976886510849, - -0.10476601868867874, - -0.08894747495651245, - -0.07347354292869568, - -0.05876631662249565, - -0.04522698000073433, - -0.033224835991859436, - -0.023087263107299805, - -0.015090808272361755, - -0.00945359468460083, - -0.006329372525215149, - -0.0058033764362335205, - -0.00788995623588562, - -0.012532182037830353, - -0.019603431224822998, - -0.028910823166370392, - -0.04020048677921295, - -0.053164444863796234, - -0.06744909286499023, - -0.08266477286815643, - -0.1204976886510849, - -0.1021198108792305, - -0.08372724056243896, - -0.06582168489694595, - -0.04889155179262161, - -0.033398665487766266, - -0.01976560801267624, - -0.008364267647266388, - 0.000494346022605896, - 0.006568603217601776, - 0.009692825376987457, - 0.00978177785873413, - 0.006833039224147797, - 0.0009270384907722473, - -0.007775112986564636, - -0.019036054611206055, - -0.032548628747463226, - -0.047944214195013046, - -0.06480288505554199, - -0.08266477286815643, - -0.1204976886510849, - -0.10143718123435974, - -0.08238060027360916, - -0.06384775787591934, - -0.046344198286533356, - -0.03034735471010208, - -0.016293585300445557, - -0.00456622987985611, - 0.004514798521995544, - 0.010701797902584076, - 0.013826020061969757, - 0.01380223035812378, - 0.010631076991558075, - 0.004399068653583527, - -0.004723802208900452, - -0.016488701105117798, - -0.030574701726436615, - -0.046597570180892944, - -0.06412024796009064, - -0.08266477286815643 - ], - "y": [ - -0.1204977035522461, - -0.12132181972265244, - -0.1216074600815773, - -0.1213468387722969, - -0.12054706364870071, - -0.11922994256019592, - -0.11743141710758209, - -0.11520054191350937, - -0.11259816586971283, - -0.10969527065753937, - -0.10657105594873428, - -0.1033107191324234, - -0.1000032126903534, - -0.09673874825239182, - -0.0936063826084137, - -0.09069153666496277, - -0.0880737379193306, - -0.0858243852853775, - -0.08400484919548035, - -0.08266474306583405, - -0.1204977035522461, - -0.12736749649047852, - -0.13353389501571655, - -0.13882872462272644, - -0.14310753345489502, - -0.14625360071659088, - -0.14818112552165985, - -0.14883753657341003, - -0.14820492267608643, - -0.1463005244731903, - -0.14317630231380463, - -0.138917475938797, - -0.13364021480083466, - -0.12748846411705017, - -0.12063004076480865, - -0.11325200647115707, - -0.10555562376976013, - -0.09775082767009735, - -0.09005051851272583, - -0.08266474306583405, - -0.1204977035522461, - -0.1326407641172409, - -0.14393660426139832, - -0.15407708287239075, - -0.1627856194972992, - -0.16982465982437134, - -0.17500221729278564, - -0.17817702889442444, - -0.17926248908042908, - -0.17822901904582977, - -0.1751047968864441, - -0.16997504234313965, - -0.16297969222068787, - -0.15430954098701477, - -0.1442010998725891, - -0.13293009996414185, - -0.12080398201942444, - -0.10815352201461792, - -0.09532378613948822, - -0.08266474306583405, - -0.1204977035522461, - -0.13657018542289734, - -0.15168826282024384, - -0.16543954610824585, - -0.17744892835617065, - -0.1873888522386551, - -0.1949881613254547, - -0.2000395804643631, - -0.20240530371665955, - -0.2020208239555359, - -0.198896586894989, - -0.19311785697937012, - -0.18484225869178772, - -0.17429549992084503, - -0.16176529228687286, - -0.1475934088230133, - -0.13216644525527954, - -0.11590518802404404, - -0.09925320744514465, - -0.08266473561525345, - -0.1204977035522461, - -0.13872994482517242, - -0.15594886243343353, - -0.17168477177619934, - -0.18550845980644226, - -0.1970428079366684, - -0.20597320795059204, - -0.21205610036849976, - -0.21512550115585327, - -0.21509771049022675, - -0.21197348833084106, - -0.20583805441856384, - -0.19685876369476318, - -0.18528056144714355, - -0.17141924798488617, - -0.1556529402732849, - -0.13841168582439423, - -0.12016579508781433, - -0.10141297429800034, - -0.08266473561525345, - -0.1204977035522461, - -0.1388860046863556, - -0.15625672042369843, - -0.17213603854179382, - -0.18609081208705902, - -0.197740375995636, - -0.20676696300506592, - -0.21292436122894287, - -0.216044619679451, - -0.21604260802268982, - -0.21291837096214294, - -0.20675717294216156, - -0.1977270394563675, - -0.18607428669929504, - -0.17211681604385376, - -0.15623530745506287, - -0.13886293768882751, - -0.12047365307807922, - -0.1015690267086029, - -0.08266473561525345, - -0.1204977035522461, - -0.13702145218849182, - -0.1525784730911255, - -0.1667444109916687, - -0.17913290858268738, - -0.18940594792366028, - -0.19728338718414307, - -0.20255032181739807, - -0.2050630748271942, - -0.204753115773201, - -0.2016288936138153, - -0.19577562808990479, - -0.1873530000448227, - -0.1765907108783722, - -0.16378240287303925, - -0.14927738904953003, - -0.1334713250398636, - -0.11679540574550629, - -0.09970447421073914, - -0.08266473561525345, - -0.1204977035522461, - -0.1333383321762085, - -0.14531269669532776, - -0.15609417855739594, - -0.16538870334625244, - -0.17294272780418396, - -0.17855018377304077, - -0.18205814063549042, - -0.18337088823318481, - -0.18245261907577515, - -0.17932841181755066, - -0.17408344149589539, - -0.16686081886291504, - -0.1578575223684311, - -0.14731916785240173, - -0.1355331838130951, - -0.12282108515501022, - -0.10952962934970856, - -0.09602135419845581, - -0.08266474306583405, - -0.1204977035522461, - -0.12823577225208282, - -0.13524676859378815, - -0.14133945107460022, - -0.14634764194488525, - -0.15013471245765686, - -0.15259738266468048, - -0.15366846323013306, - -0.15331873297691345, - -0.15155774354934692, - -0.14843352138996124, - -0.14403128623962402, - -0.13847112655639648, - -0.1319047212600708, - -0.12451115995645523, - -0.1164921224117279, - -0.10806635767221451, - -0.09946370124816895, - -0.09091879427433014, - -0.08266474306583405, - -0.1204977035522461, - -0.12226670980453491, - -0.12347147613763809, - -0.124079130589962, - -0.1240731030702591, - -0.1234535500407219, - -0.12223738431930542, - -0.12045776844024658, - -0.11816325038671494, - -0.11541641503572464, - -0.11229219287633896, - -0.1088758036494255, - -0.1052604392170906, - -0.10154471546411514, - -0.09782998263835907, - -0.09421758353710175, - -0.0908060371875763, - -0.08768840879201889, - -0.08494974672794342, - -0.08266474306583405, - -0.1204977035522461, - -0.11607800424098969, - -0.11126286536455154, - -0.10618364065885544, - -0.10097886621952057, - -0.09579053521156311, - -0.09076014906167984, - -0.0860249325633049, - -0.08171405643224716, - -0.07794509828090668, - -0.07482088357210159, - -0.07242661714553833, - -0.07082760334014893, - -0.07006748020648956, - -0.07016696035861969, - -0.07112334668636322, - -0.07291053980588913, - -0.07547979056835175, - -0.0787610337138176, - -0.08266474306583405, - -0.1204977035522461, - -0.11034027487039566, - -0.09994392096996307, - -0.08959223330020905, - -0.0795675665140152, - -0.07014337927103043, - -0.061576731503009796, - -0.05410130321979523, - -0.04792100191116333, - -0.0432044118642807, - -0.04008018970489502, - -0.0386335551738739, - -0.03890397399663925, - -0.04088405892252922, - -0.044519804418087006, - -0.04971204325556755, - -0.056319136172533035, - -0.06416085362434387, - -0.07302330434322357, - -0.08266474306583405, - -0.12049771100282669, - -0.10567530989646912, - -0.09074123203754425, - -0.0761028453707695, - -0.06215944141149521, - -0.04929136112332344, - -0.03784961253404617, - -0.02814628928899765, - -0.020446084439754486, - -0.01495903730392456, - -0.01183481514453888, - -0.011158637702465057, - -0.012948960065841675, - -0.0171569362282753, - -0.02366778254508972, - -0.03230391442775726, - -0.04282975196838379, - -0.05495816469192505, - -0.06835833936929703, - -0.08266474306583405, - -0.12049771100282669, - -0.10258861631155014, - -0.08465204387903214, - -0.06717725843191147, - -0.05064092203974724, - -0.035494111478328705, - -0.022149980068206787, - -0.010972514748573303, - -0.002266623079776764, - 0.0037302151322364807, - 0.006854437291622162, - 0.007020823657512665, - 0.004224814474582672, - -0.001457303762435913, - -0.009870529174804688, - -0.020785391330718994, - -0.03390416502952576, - -0.048868972808122635, - -0.06527164578437805, - -0.08266474306583405, - -0.12049771100282669, - -0.10141469538211823, - -0.08233623206615448, - -0.0637827068567276, - -0.04626024141907692, - -0.030246786773204803, - -0.016179151833057404, - -0.0044410452246665955, - 0.004647314548492432, - 0.010838039219379425, - 0.013962261378765106, - 0.01393476128578186, - 0.01075628399848938, - 0.0045135244727134705, - -0.004623204469680786, - -0.016404710710048676, - -0.03050961345434189, - -0.04655316099524498, - -0.06409772485494614, - -0.08266474306583405, - -0.12049771100282669, - -0.10228075832128525, - -0.08404472470283508, - -0.06628704071044922, - -0.049492087215185165, - -0.034118011593818665, - -0.020584136247634888, - -0.009259641170501709, - -0.0004534497857093811, - 0.005594238638877869, - 0.00871846079826355, - 0.008833996951580048, - 0.005937688052654266, - 0.00010854005813598633, - -0.008494429290294647, - -0.01963655650615692, - -0.03301394730806351, - -0.048261649906635284, - -0.06496378779411316, - -0.08266474306583405, - -0.12049771100282669, - -0.10509295016527176, - -0.08959240466356277, - -0.07441888004541397, - -0.05998627096414566, - -0.0466882698237896, - -0.034887611865997314, - -0.02490617334842682, - -0.017016224563121796, - -0.01143299788236618, - -0.0083087757229805, - -0.007728777825832367, - -0.009708844125270844, - -0.01419493556022644, - -0.021064691245555878, - -0.030130743980407715, - -0.04114578291773796, - -0.053809333592653275, - -0.06777597963809967, - -0.08266474306583405, - -0.1204977035522461, - -0.10954653471708298, - -0.09837809205055237, - -0.08729701489210129, - -0.07660557329654694, - -0.0665954127907753, - -0.05753956735134125, - -0.049685053527355194, - -0.04324614256620407, - -0.03839845955371857, - -0.035274237394332886, - -0.03395869582891464, - -0.03448772430419922, - -0.036846891045570374, - -0.04097183421254158, - -0.04675004631280899, - -0.05402391776442528, - -0.06259501725435257, - -0.07222956418991089, - -0.08266474306583405, - -0.1204977035522461, - -0.11515888571739197, - -0.10944970697164536, - -0.10352589190006256, - -0.09754903614521027, - -0.09168216586112976, - -0.08608531951904297, - -0.08091115206480026, - -0.07630082219839096, - -0.07238006591796875, - -0.06925584375858307, - -0.06701337546110153, - -0.06571382284164429, - -0.0653926432132721, - -0.06605859845876694, - -0.06769351661205292, - -0.07025279849767685, - -0.07366663962602615, - -0.07784192264080048, - -0.08266474306583405, - -0.1204977035522461, - -0.12132181972265244, - -0.1216074675321579, - -0.1213468462228775, - -0.12054707109928131, - -0.11922995746135712, - -0.11743143945932388, - -0.11520056426525116, - -0.11259818077087402, - -0.10969529300928116, - -0.10657107084989548, - -0.10331074148416519, - -0.10000323504209518, - -0.0967387706041336, - -0.09360639750957489, - -0.09069155156612396, - -0.08807375282049179, - -0.0858244001865387, - -0.08400484919548035, - -0.08266474306583405 - ], - "z": [ - -2.4099538326263428, - -2.405679941177368, - -2.391202688217163, - -2.366917133331299, - -2.3334858417510986, - -2.291820526123047, - -2.2430574893951416, - -2.1885273456573486, - -2.1297173500061035, - -2.0682313442230225, - -2.005747079849243, - -1.9439685344696045, - -1.8845810890197754, - -1.8292045593261719, - -1.7793495655059814, - -1.7363760471343994, - -1.7014559507369995, - -1.6755421161651611, - -1.6593412160873413, - -1.6532952785491943, - -2.4099538326263428, - -2.4053099155426025, - -2.390472888946533, - -2.365847110748291, - -2.3321049213409424, - -2.2901663780212402, - -2.241175413131714, - -2.1864686012268066, - -2.127537965774536, - -2.065990924835205, - -2.003506660461426, - -1.9417892694473267, - -1.8825223445892334, - -1.8273224830627441, - -1.777695655822754, - -1.7349951267242432, - -1.7003860473632812, - -1.6748120784759521, - -1.6589711904525757, - -1.6532952785491943, - -2.4099538326263428, - -2.404883861541748, - -2.3896324634552, - -2.3646154403686523, - -2.3305153846740723, - -2.288262367248535, - -2.239009141921997, - -2.184098720550537, - -2.1250293254852295, - -2.0634119510650635, - -2.000927686691284, - -1.93928062915802, - -1.8801524639129639, - -1.8251560926437378, - -1.7757916450500488, - -1.7334057092666626, - -1.6991543769836426, - -1.6739718914031982, - -1.6585452556610107, - -1.6532952785491943, - -2.4099538326263428, - -2.4044482707977295, - -2.388772964477539, - -2.3633556365966797, - -2.3288896083831787, - -2.2863149642944336, - -2.236793041229248, - -2.1816744804382324, - -2.1224632263183594, - -2.0607738494873047, - -1.9982894659042358, - -1.9367144107818604, - -1.8777282238006592, - -1.8229399919509888, - -1.7738441228866577, - -1.7317798137664795, - -1.6978944540023804, - -1.673112392425537, - -1.6581095457077026, - -1.6532952785491943, - -2.4099538326263428, - -2.404049873352051, - -2.3879873752593994, - -2.362204074859619, - -2.3274035453796387, - -2.2845349311828613, - -2.234767436981201, - -2.1794588565826416, - -2.120117664337158, - -2.0583624839782715, - -1.9958782196044922, - -1.9343689680099487, - -1.8755124807357788, - -1.820914387702942, - -1.772063970565796, - -1.73029363155365, - -1.6967428922653198, - -1.672326683998108, - -1.6577112674713135, - -1.6532952785491943, - -2.4099538326263428, - -2.4037322998046875, - -2.3873608112335205, - -2.36128568649292, - -2.3262181282043457, - -2.2831149101257324, - -2.233151912689209, - -2.1776914596557617, - -2.1182467937469482, - -2.0564393997192383, - -1.9939550161361694, - -1.9324982166290283, - -1.873745322227478, - -1.8192988634109497, - -1.770644187927246, - -1.7291083335876465, - -1.695824384689331, - -1.671700119972229, - -1.6573936939239502, - -1.6532952785491943, - -2.4099538326263428, - -2.403529644012451, - -2.386960983276367, - -2.3606996536254883, - -2.3254621028900146, - -2.2822093963623047, - -2.232121467590332, - -2.1765642166137695, - -2.117053747177124, - -2.0552127361297607, - -1.992728352546692, - -1.931304931640625, - -1.8726180791854858, - -1.8182684183120728, - -1.7697386741638184, - -1.7283523082733154, - -1.6952385902404785, - -1.6713004112243652, - -1.6571910381317139, - -1.6532952785491943, - -2.4099538326263428, - -2.4034640789031982, - -2.386831760406494, - -2.3605101108551025, - -2.3252172470092773, - -2.2819161415100098, - -2.23178768157959, - -2.176199197769165, - -2.1166672706604004, - -2.0548155307769775, - -1.9923311471939087, - -1.930918574333191, - -1.8722530603408813, - -1.8179347515106201, - -1.7694454193115234, - -1.7281074523925781, - -1.6950488090515137, - -1.671170949935913, - -1.657125473022461, - -1.6532952785491943, - -2.4099538326263428, - -2.4035425186157227, - -2.386986494064331, - -2.3607370853424072, - -2.325510263442993, - -2.2822670936584473, - -2.232186794281006, - -2.176635980606079, - -2.1171295642852783, - -2.055290699005127, - -1.992806315422058, - -1.9313808679580688, - -1.8726897239685059, - -1.8183338642120361, - -1.7697961330413818, - -1.728400468826294, - -1.6952757835388184, - -1.6713258028030396, - -1.6572039127349854, - -1.6532952785491943, - -2.4099538326263428, - -2.403756618499756, - -2.38740873336792, - -2.361356019973755, - -2.3263092041015625, - -2.283223867416382, - -2.2332756519317627, - -2.1778271198272705, - -2.1183903217315674, - -2.056586980819702, - -1.9941024780273438, - -1.9326417446136475, - -1.8738808631896973, - -1.819422721862793, - -1.7707531452178955, - -1.7291992902755737, - -1.6958948373794556, - -1.671748161315918, - -1.6574180126190186, - -1.6532952785491943, - -2.4099538326263428, - -2.404083251953125, - -2.3880529403686523, - -2.362300157546997, - -2.3275272846221924, - -2.2846832275390625, - -2.234936237335205, - -2.1796436309814453, - -2.1203131675720215, - -2.058563709259033, - -1.9960793256759644, - -1.934564471244812, - -1.8756972551345825, - -1.8210833072662354, - -1.7722123861312866, - -1.7304176092147827, - -1.6968388557434082, - -1.6723922491073608, - -1.6577445268630981, - -1.6532952785491943, - -2.4099538326263428, - -2.404486656188965, - -2.3888487815856934, - -2.363466739654541, - -2.329033136367798, - -2.286486864089966, - -2.2369885444641113, - -2.1818883419036865, - -2.1226894855499268, - -2.061006784439087, - -1.9985222816467285, - -1.9369409084320068, - -1.8779422044754028, - -1.8231356143951416, - -1.77401602268219, - -1.731923222541809, - -1.6980056762695312, - -1.6731882095336914, - -1.6581480503082275, - -1.6532952785491943, - -2.4099538326263428, - -2.404923439025879, - -2.3897104263305664, - -2.364729881286621, - -2.330662965774536, - -2.2884392738342285, - -2.2392101287841797, - -2.1843185424804688, - -2.1252620220184326, - -2.0636513233184814, - -2.001166820526123, - -1.9395133256912231, - -1.880372405052185, - -1.8253570795059204, - -1.775968313217163, - -1.733553171157837, - -1.6992685794830322, - -1.6740498542785645, - -1.6585848331451416, - -1.6532952785491943, - -2.4099538326263428, - -2.405346155166626, - -2.3905444145202637, - -2.365952253341675, - -2.332240581512451, - -2.2903287410736084, - -2.2413601875305176, - -2.1866707801818848, - -2.1277518272399902, - -2.066210985183716, - -2.0037264823913574, - -1.9420031309127808, - -1.882724404335022, - -1.8275072574615479, - -1.777858018875122, - -1.7351306676864624, - -1.7004910707473755, - -1.6748838424682617, - -1.6590075492858887, - -1.6532952785491943, - -2.4099538326263428, - -2.4057090282440186, - -2.3912603855133057, - -2.367001533508301, - -2.333594799041748, - -2.2919509410858154, - -2.243206024169922, - -2.188689708709717, - -2.1298890113830566, - -2.0684080123901367, - -2.0059237480163574, - -1.9441404342651367, - -1.8847434520721436, - -1.8293529748916626, - -1.77947998046875, - -1.7364848852157593, - -1.7015403509140015, - -1.6755996942520142, - -1.6593704223632812, - -1.6532952785491943, - -2.4099538326263428, - -2.405972719192505, - -2.3917806148529053, - -2.3677642345428467, - -2.3345787525177, - -2.2931296825408936, - -2.2445473670959473, - -2.190156936645508, - -2.1314423084259033, - -2.07000470161438, - -2.0075204372406006, - -1.9456936120986938, - -1.8862106800079346, - -1.830694317817688, - -1.7806588411331177, - -1.737468957901001, - -1.7023029327392578, - -1.6761199235916138, - -1.6596341133117676, - -1.6532952785491943, - -2.4099538326263428, - -2.406108856201172, - -2.3920488357543945, - -2.368157386779785, - -2.3350861072540283, - -2.2937374114990234, - -2.245238780975342, - -2.190913438796997, - -2.1322429180145264, - -2.0708279609680176, - -2.0083436965942383, - -1.9464943408966064, - -1.8869671821594238, - -1.831385850906372, - -1.7812665700912476, - -1.737976312637329, - -1.7026960849761963, - -1.6763880252838135, - -1.659770131111145, - -1.6532952785491943, - -2.4099538326263428, - -2.406102180480957, - -2.392035961151123, - -2.368138313293457, - -2.33506178855896, - -2.293708086013794, - -2.2452056407928467, - -2.1908769607543945, - -2.132204532623291, - -2.0707883834838867, - -2.0083041191101074, - -1.9464558362960815, - -1.8869308233261108, - -1.8313525915145874, - -1.7812373638153076, - -1.7379519939422607, - -1.7026772499084473, - -1.676375150680542, - -1.6597635746002197, - -1.6532952785491943, - -2.4099538326263428, - -2.405953884124756, - -2.3917434215545654, - -2.3677096366882324, - -2.3345084190368652, - -2.2930452823638916, - -2.2444512844085693, - -2.190052032470703, - -2.131330966949463, - -2.0698904991149902, - -2.007406234741211, - -1.945582389831543, - -1.8861056566238403, - -1.8305983543395996, - -1.7805744409561157, - -1.7373985052108765, - -1.7022483348846436, - -1.6760826110839844, - -1.6596152782440186, - -1.6532952785491943, - -2.4099538326263428, - -2.405679941177368, - -2.391202688217163, - -2.366917133331299, - -2.3334858417510986, - -2.291820526123047, - -2.2430574893951416, - -2.1885273456573486, - -2.1297173500061035, - -2.0682313442230225, - -2.005747079849243, - -1.9439685344696045, - -1.8845810890197754, - -1.8292045593261719, - -1.7793495655059814, - -1.7363760471343994, - -1.7014559507369995, - -1.6755421161651611, - -1.6593412160873413, - -1.6532952785491943 - ] - }, - { - "alphahull": 0, - "color": "#FF6692", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.1153411790728569, - -0.1404525488615036, - -0.1653982549905777, - -0.18949785828590393, - -0.21209397912025452, - -0.23257023096084595, - -0.2503681182861328, - -0.26500213146209717, - -0.2760730981826782, - -0.2832790017127991, - -0.28642338514328003, - -0.28542035818099976, - -0.28029733896255493, - -0.2711940407752991, - -0.25835883617401123, - -0.24214178323745728, - -0.22298523783683777, - -0.20141178369522095, - -0.17800983786582947, - -0.15341779589653015, - -0.1153411790728569, - -0.13883282244205475, - -0.16220298409461975, - -0.1848141849040985, - -0.20604968070983887, - -0.2253301739692688, - -0.24212977290153503, - -0.25599026679992676, - -0.2665334939956665, - -0.2734718918800354, - -0.27661627531051636, - -0.27588075399398804, - -0.2712854743003845, - -0.2629557251930237, - -0.2511187791824341, - -0.23609745502471924, - -0.21830156445503235, - -0.1982164978981018, - -0.17639011144638062, - -0.15341779589653015, - -0.1153411790728569, - -0.13469554483890533, - -0.15404127538204193, - -0.17285069823265076, - -0.19061072170734406, - -0.20683690905570984, - -0.22108665108680725, - -0.2329712212085724, - -0.24216648936271667, - -0.24842160940170288, - -0.25156593322753906, - -0.2515137493610382, - -0.24826642870903015, - -0.2419125884771347, - -0.23262551426887512, - -0.22065852582454681, - -0.2063380777835846, - -0.19005480408668518, - -0.1722528338432312, - -0.15341779589653015, - -0.1153411865234375, - -0.12848906219005585, - -0.14179761707782745, - -0.1549038290977478, - -0.1674501895904541, - -0.17909444868564606, - -0.1895190179347992, - -0.19843953847885132, - -0.2056126445531845, - -0.21084269881248474, - -0.21398703753948212, - -0.21495990455150604, - -0.2137347310781479, - -0.21034495532512665, - -0.20488303899765015, - -0.19749797880649567, - -0.18839120864868164, - -0.1778111308813095, - -0.1660463511943817, - -0.15341779589653015, - -0.1153411865234375, - -0.1208859384059906, - -0.12679876387119293, - -0.1329183727502823, - -0.13907784223556519, - -0.1451091468334198, - -0.15084776282310486, - -0.15613718330860138, - -0.16083310544490814, - -0.16480743885040283, - -0.1679517924785614, - -0.17018036544322968, - -0.17143239080905914, - -0.1716737002134323, - -0.1708977222442627, - -0.16912563145160675, - -0.16640575230121613, - -0.162812277674675, - -0.15844324231147766, - -0.15341779589653015, - -0.1153411865234375, - -0.11271009594202042, - -0.11067009717226028, - -0.10927682369947433, - -0.10856828093528748, - -0.10856381058692932, - -0.10926352441310883, - -0.11064832657575607, - -0.11268045753240585, - -0.11530448496341705, - -0.11844882369041443, - -0.12202771008014679, - -0.12594352662563324, - -0.13008944690227509, - -0.1343524008989334, - -0.13861608505249023, - -0.14276419579982758, - -0.14668360352516174, - -0.15026739239692688, - -0.15341779589653015, - -0.1153411865234375, - -0.1048475131392479, - -0.09515939652919769, - -0.08654110133647919, - -0.07922770082950592, - -0.07341871410608292, - -0.06927257031202316, - -0.06690236926078796, - -0.06637277454137802, - -0.06769823282957077, - -0.07084257155656815, - -0.07572002708911896, - -0.08219757676124573, - -0.09009850025177002, - -0.09920728951692581, - -0.10927549749612808, - -0.12002848088741302, - -0.13117291033267975, - -0.14240480959415436, - -0.15341779589653015, - -0.1153411865234375, - -0.09815022349357605, - -0.08194749057292938, - -0.06717496365308762, - -0.054235607385635376, - -0.04348236322402954, - -0.035208553075790405, - -0.029639869928359985, - -0.02692820131778717, - -0.027147546410560608, - -0.030291885137557983, - -0.036275461316108704, - -0.04493506997823715, - -0.05603448301553726, - -0.06927093863487244, - -0.08428339660167694, - -0.10066234320402145, - -0.11796100437641144, - -0.13570751249790192, - -0.15341779589653015, - -0.1153411939740181, - -0.09334397315979004, - -0.07246609032154083, - -0.053277045488357544, - -0.03630026429891586, - -0.02199883759021759, - -0.01076284795999527, - -0.002898797392845154, - 0.0013787895441055298, - 0.0019532591104507446, - -0.0011910945177078247, - -0.007968470454216003, - -0.01819399744272232, - -0.03158877044916153, - -0.04778740555047989, - -0.06634805351495743, - -0.08676442503929138, - -0.10847960412502289, - -0.1309012621641159, - -0.15341779589653015, - -0.1153411939740181, - -0.09094959497451782, - -0.06774265319108963, - -0.04635339230298996, - -0.027365267276763916, - -0.011296197772026062, - 0.0014154762029647827, - 0.010423049330711365, - 0.015480756759643555, - 0.016450658440589905, - 0.013306304812431335, - 0.0061334967613220215, - -0.004872158169746399, - -0.01941043883562088, - -0.03708476573228836, - -0.05741304159164429, - -0.0798407718539238, - -0.10375617444515228, - -0.12850689888000488, - -0.15341779589653015, - -0.1153411939740181, - -0.09122657030820847, - -0.06828904896974564, - -0.047154299914836884, - -0.028398841619491577, - -0.0125342458486557, - 0.000006720423698425293, - 0.008882015943527222, - 0.01384948194026947, - 0.014773637056350708, - 0.011629283428192139, - 0.004502221941947937, - -0.006413191556930542, - -0.020819202065467834, - -0.038322813808918, - -0.05844661593437195, - -0.08064167946577072, - -0.10430256277322769, - -0.12878386676311493, - -0.15341779589653015, - -0.1153411939740181, - -0.09414488077163696, - -0.0740460604429245, - -0.05559297651052475, - -0.03928898274898529, - -0.025578826665878296, - -0.014836445450782776, - -0.007354900240898132, - -0.003338247537612915, - -0.002896055579185486, - -0.006040409207344055, - -0.012685507535934448, - -0.022650092840194702, - -0.035662367939949036, - -0.051367394626140594, - -0.06933677196502686, - -0.08908035606145859, - -0.11005957424640656, - -0.13170216977596283, - -0.15341779589653015, - -0.1153411865234375, - -0.09938827157020569, - -0.08438980579376221, - -0.07075494527816772, - -0.058855585753917694, - -0.04901633411645889, - -0.04150556027889252, - -0.03652813285589218, - -0.03421983867883682, - -0.03464365750551224, - -0.03778799623250961, - -0.043567098677158356, - -0.05182333290576935, - -0.062331490218639374, - -0.07480490207672119, - -0.08890338242053986, - -0.10424232482910156, - -0.12040332704782486, - -0.13694556057453156, - -0.15341779589653015, - -0.1153411865234375, - -0.10638854652643204, - -0.09819942712783813, - -0.09099720418453217, - -0.08497833460569382, - -0.0803069993853569, - -0.07711063325405121, - -0.07547639310359955, - -0.0754488855600357, - -0.07702885568141937, - -0.08017319440841675, - -0.08479614555835724, - -0.09077159315347672, - -0.09793655574321747, - -0.1060955822467804, - -0.11502612382173538, - -0.124484583735466, - -0.1342129409313202, - -0.1439458429813385, - -0.15341779589653015, - -0.1153411865234375, - -0.11438710987567902, - -0.11397837847471237, - -0.11412613838911057, - -0.11482635140419006, - -0.11605992168188095, - -0.11779320240020752, - -0.11997891962528229, - -0.12255744636058807, - -0.12545844912528992, - -0.1286027878522873, - -0.1319046914577484, - -0.13527411222457886, - -0.13861913979053497, - -0.14184850454330444, - -0.14487414062023163, - -0.1476135104894638, - -0.14999189972877502, - -0.15194441378116608, - -0.15341779589653015, - -0.1153411865234375, - -0.12251720577478409, - -0.13001680374145508, - -0.13763539493083954, - -0.14516517519950867, - -0.15240076184272766, - -0.15914475917816162, - -0.1652132272720337, - -0.1704406440258026, - -0.17468439042568207, - -0.17782872915267944, - -0.17978788912296295, - -0.18050843477249146, - -0.17997069656848907, - -0.17818933725357056, - -0.17521297931671143, - -0.17112277448177338, - -0.16603031754493713, - -0.16007450222969055, - -0.15341779589653015, - -0.1153411865234375, - -0.1298978179693222, - -0.14457669854164124, - -0.1589774191379547, - -0.17270717024803162, - -0.18539145588874817, - -0.19668425619602203, - -0.20627756416797638, - -0.21390965580940247, - -0.21937239170074463, - -0.2225167155265808, - -0.223256915807724, - -0.22157275676727295, - -0.2175101935863495, - -0.21118006110191345, - -0.20275497436523438, - -0.19246479868888855, - -0.1805902123451233, - -0.16745510697364807, - -0.15341779589653015, - -0.1153411790728569, - -0.135729119181633, - -0.1560802459716797, - -0.17583942413330078, - -0.1944677084684372, - -0.21145690977573395, - -0.22634364664554596, - -0.23872186243534088, - -0.24825388193130493, - -0.25467967987060547, - -0.25782403349876404, - -0.25760114192962646, - -0.25401705503463745, - -0.2471695840358734, - -0.23724551498889923, - -0.22451549768447876, - -0.20932680368423462, - -0.19209375977516174, - -0.17328640818595886, - -0.15341779589653015, - -0.1153411790728569, - -0.13937921822071075, - -0.16328087449073792, - -0.18639416992664337, - -0.20808863639831543, - -0.227772518992424, - -0.2449088841676712, - -0.259030282497406, - -0.26975154876708984, - -0.2767801880836487, - -0.27992457151412964, - -0.2790988087654114, - -0.27432548999786377, - -0.26573482155799866, - -0.2535611391067505, - -0.2381364405155182, - -0.2198815494775772, - -0.19929438829421997, - -0.17693650722503662, - -0.15341779589653015, - -0.1153411790728569, - -0.1404525488615036, - -0.1653982549905777, - -0.18949785828590393, - -0.21209397912025452, - -0.23257023096084595, - -0.2503681182861328, - -0.26500213146209717, - -0.2760730981826782, - -0.2832790017127991, - -0.28642338514328003, - -0.28542035818099976, - -0.28029733896255493, - -0.2711940407752991, - -0.25835883617401123, - -0.24214178323745728, - -0.22298523783683777, - -0.20141178369522095, - -0.17800983786582947, - -0.15341779589653015 - ], - "y": [ - -0.11534121632575989, - -0.11638027429580688, - -0.11791031062602997, - -0.11988958716392517, - -0.12226410210132599, - -0.12496909499168396, - -0.12793077528476715, - -0.1310683637857437, - -0.1342962682247162, - -0.13752645254135132, - -0.1406707912683487, - -0.14364351332187653, - -0.1463635414838791, - -0.14875668287277222, - -0.15075764060020447, - -0.15231184661388397, - -0.15337690711021423, - -0.15392376482486725, - -0.15393751859664917, - -0.15341776609420776, - -0.11534121632575989, - -0.12440803647041321, - -0.13374684751033783, - -0.14310292899608612, - -0.15222105383872986, - -0.16085250675678253, - -0.16876183450222015, - -0.1757333129644394, - -0.18157675862312317, - -0.1861327886581421, - -0.18927712738513947, - -0.1909240037202835, - -0.19102849066257477, - -0.18958774209022522, - -0.18664105236530304, - -0.18226879835128784, - -0.17659026384353638, - -0.1697603166103363, - -0.1619652658700943, - -0.15341776609420776, - -0.11534121632575989, - -0.13148139417171478, - -0.14770063757896423, - -0.1635565161705017, - -0.17861652374267578, - -0.19246985018253326, - -0.20473864674568176, - -0.21508820354938507, - -0.22323623299598694, - -0.22896048426628113, - -0.2321048378944397, - -0.23258347809314728, - -0.23038338124752045, - -0.22556453943252563, - -0.21825841069221497, - -0.20866426825523376, - -0.19704383611679077, - -0.1837141066789627, - -0.16903863847255707, - -0.15341776609420776, - -0.11534120887517929, - -0.13683386147022247, - -0.1582595705986023, - -0.17903389036655426, - -0.19859015941619873, - -0.21639491617679596, - -0.23196251690387726, - -0.24486830830574036, - -0.2547602355480194, - -0.2613685131072998, - -0.264512836933136, - -0.26410746574401855, - -0.26016348600387573, - -0.2527884244918823, - -0.24218347668647766, - -0.2286379039287567, - -0.21252122521400452, - -0.19427303969860077, - -0.17439110577106476, - -0.15341776609420776, - -0.11534120887517929, - -0.13988541066646576, - -0.16427941620349884, - -0.18785782158374786, - -0.20997750759124756, - -0.23003505170345306, - -0.24748337268829346, - -0.26184648275375366, - -0.272732675075531, - -0.2798449397087097, - -0.2829892635345459, - -0.28207990527153015, - -0.2771416902542114, - -0.26830926537513733, - -0.25582361221313477, - -0.24002525210380554, - -0.22134515643119812, - -0.20029288530349731, - -0.17744264006614685, - -0.15341776609420776, - -0.11534120887517929, - -0.14030534029006958, - -0.1651078313589096, - -0.1890721172094345, - -0.21154455840587616, - -0.23191210627555847, - -0.2496192306280136, - -0.2641829252243042, - -0.27520591020584106, - -0.28238755464553833, - -0.2855318784713745, - -0.2845531702041626, - -0.27947813272476196, - -0.2704451382160187, - -0.25770068168640137, - -0.24159230291843414, - -0.22255945205688477, - -0.2011212855577469, - -0.17786256968975067, - -0.15341776609420776, - -0.11534120887517929, - -0.13804815709590912, - -0.16065503656864166, - -0.18254518508911133, - -0.20312151312828064, - -0.22182270884513855, - -0.23813870549201965, - -0.2516244053840637, - -0.2619119882583618, - -0.268720805644989, - -0.2718651294708252, - -0.27125921845436096, - -0.2669195830821991, - -0.2589645981788635, - -0.24761128425598145, - -0.23316925764083862, - -0.2160325050354004, - -0.19666850566864014, - -0.1756054013967514, - -0.15341776609420776, - -0.11534120887517929, - -0.13335846364498138, - -0.15140359103679657, - -0.1689843088388443, - -0.18562114238739014, - -0.2008601874113083, - -0.21428583562374115, - -0.22553184628486633, - -0.23429147899150848, - -0.24032574892044067, - -0.24347007274627686, - -0.24363872408866882, - -0.2408270239830017, - -0.23511174321174622, - -0.22664874792099, - -0.21566888689994812, - -0.20247164368629456, - -0.18741704523563385, - -0.17091570794582367, - -0.15341776609420776, - -0.11534121632575989, - -0.12674446403980255, - -0.13835598528385162, - -0.14985904097557068, - -0.16093985736370087, - -0.1712961494922638, - -0.18064548075199127, - -0.1887327879667282, - -0.1953374743461609, - -0.2002793848514557, - -0.20342372357845306, - -0.20468471944332123, - -0.2040279507637024, - -0.20147138833999634, - -0.1970847100019455, - -0.19098760187625885, - -0.18334636092185974, - -0.1743694543838501, - -0.16430170834064484, - -0.15341776609420776, - -0.11534121632575989, - -0.1189228892326355, - -0.12292617559432983, - -0.12724187970161438, - -0.13175228238105774, - -0.13633432984352112, - -0.1408630758523941, - -0.1452149599790573, - -0.14927127957344055, - -0.1529213935136795, - -0.15606573224067688, - -0.1586185246706009, - -0.1605101376771927, - -0.16168898344039917, - -0.16212289035320282, - -0.16180002689361572, - -0.16072919964790344, - -0.15893962979316711, - -0.1564801186323166, - -0.15341776609420776, - -0.11534121632575989, - -0.11074130982160568, - -0.10678619146347046, - -0.10358375310897827, - -0.10122133791446686, - -0.09976337850093842, - -0.09924967586994171, - -0.09969420731067657, - -0.1010848730802536, - -0.10338371992111206, - -0.10652805864810944, - -0.11043211072683334, - -0.11498938500881195, - -0.12007556855678558, - -0.12555192410945892, - -0.13126908242702484, - -0.13707107305526733, - -0.14279964566230774, - -0.14829854667186737, - -0.15341776609420776, - -0.11534121632575989, - -0.10308634489774704, - -0.09168507158756256, - -0.08144838362932205, - -0.07265552133321762, - -0.06554633378982544, - -0.06031472980976105, - -0.05710341036319733, - -0.0559999942779541, - -0.057034559547901154, - -0.06017889827489853, - -0.06534723937511444, - -0.0723985880613327, - -0.08114062249660492, - -0.09133487194776535, - -0.1027032658457756, - -0.11493571102619171, - -0.12769852578639984, - -0.14064358174800873, - -0.15341776609420776, - -0.11534122377634048, - -0.09678752720355988, - -0.0792592316865921, - -0.06323449313640594, - -0.04915039241313934, - -0.03739113360643387, - -0.028277449309825897, - -0.02205793559551239, - -0.018902279436588287, - -0.01889655739068985, - -0.022040896117687225, - -0.028249524533748627, - -0.037353113293647766, - -0.04910333454608917, - -0.06317964941263199, - -0.07919812947511673, - -0.0967218205332756, - -0.11527269333600998, - -0.13434475660324097, - -0.15341776609420776, - -0.11534122377634048, - -0.09252741932868958, - -0.07085523009300232, - -0.050915829837322235, - -0.03325307369232178, - -0.018348805606365204, - -0.0066095441579818726, - 0.0016444921493530273, - 0.006188139319419861, - 0.006897464394569397, - 0.0037531405687332153, - -0.0031590908765792847, - -0.013650685548782349, - -0.027435436844825745, - -0.04413732886314392, - -0.06330081075429916, - -0.0844031572341919, - -0.1068686842918396, - -0.13008464872837067, - -0.15341776609420776, - -0.11534122377634048, - -0.09076768159866333, - -0.06738375872373581, - -0.04582730680704117, - -0.02668631821870804, - -0.010482937097549438, - 0.00234086811542511, - 0.011435344815254211, - 0.016552314162254333, - 0.017552286386489868, - 0.014407962560653687, - 0.007205083966255188, - -0.0038598328828811646, - -0.01848500967025757, - -0.036271460354328156, - -0.056734055280685425, - -0.07931463420391083, - -0.10339722037315369, - -0.12832492589950562, - -0.15341776609420776, - -0.11534122377634048, - -0.09169900417327881, - -0.06922099739313126, - -0.04852035641670227, - -0.030161716043949127, - -0.014645867049694061, - -0.0023960471153259277, - 0.006253629922866821, - 0.011067181825637817, - 0.011913329362869263, - 0.008769005537033081, - 0.0017199516296386719, - -0.009041547775268555, - -0.023221932351589203, - -0.04043439030647278, - -0.060209453105926514, - -0.08200767636299133, - -0.10523445159196854, - -0.1292562484741211, - -0.15341776609420776, - -0.11534122377634048, - -0.09522046893835068, - -0.07616786658763885, - -0.058703139424324036, - -0.04330264776945114, - -0.03038652241230011, - -0.020307034254074097, - -0.013339146971702576, - -0.009672917425632477, - -0.0094083771109581, - -0.012552715837955475, - -0.019020162522792816, - -0.02863432466983795, - -0.04113291949033737, - -0.05617504566907883, - -0.07335039228200912, - -0.0921904593706131, - -0.11218132823705673, - -0.13277770578861237, - -0.15341776609420776, - -0.11534121632575989, - -0.1009504646062851, - -0.08747157454490662, - -0.07527220249176025, - -0.06468512862920761, - -0.055999137461185455, - -0.049451157450675964, - -0.045219786465168, - -0.0434204638004303, - -0.04410228878259659, - -0.047246627509593964, - -0.05276770889759064, - -0.060514964163303375, - -0.07027704268693924, - -0.08178766816854477, - -0.094732865691185, - -0.10875952988862991, - -0.1234850361943245, - -0.13850770890712738, - -0.15341776609420776, - -0.11534121632575989, - -0.10826806724071503, - -0.1019071713089943, - -0.09643203765153885, - -0.09199200570583344, - -0.08870819211006165, - -0.08667018264532089, - -0.08593355119228363, - -0.08651839941740036, - -0.08840877562761307, - -0.09155310690402985, - -0.0958656370639801, - -0.10122872143983841, - -0.10749608278274536, - -0.11449673771858215, - -0.12203975021839142, - -0.1299193650484085, - -0.13792063295841217, - -0.1458253115415573, - -0.15341776609420776, - -0.11534121632575989, - -0.11638028174638748, - -0.11791031807661057, - -0.11988959461450577, - -0.12226411700248718, - -0.12496910989284515, - -0.12793080508708954, - -0.1310683935880661, - -0.13429629802703857, - -0.1375264823436737, - -0.14067082107067108, - -0.1436435431241989, - -0.14636357128620148, - -0.1487566977739334, - -0.15075765550136566, - -0.15231186151504517, - -0.15337692201137543, - -0.15392377972602844, - -0.15393751859664917, - -0.15341776609420776 - ], - "z": [ - -2.30682373046875, - -2.3107354640960693, - -2.3249266147613525, - -2.3490102291107178, - -2.3823294639587402, - -2.4239754676818848, - -2.4728121757507324, - -2.5275075435638428, - -2.586569309234619, - -2.6483869552612305, - -2.711273670196533, - -2.77351450920105, - -2.833411455154419, - -2.8893308639526367, - -2.9397473335266113, - -2.983285427093506, - -3.0187578201293945, - -3.045197010040283, - -3.0618813037872314, - -3.0683560371398926, - -2.30682373046875, - -2.310415029525757, - -2.3242945671081543, - -2.348083734512329, - -2.381134033203125, - -2.422543525695801, - -2.4711825847625732, - -2.5257248878479004, - -2.5846824645996094, - -2.646446943283081, - -2.709333896636963, - -2.771627426147461, - -2.8316287994384766, - -2.8877012729644775, - -2.9383151531219482, - -2.9820897579193115, - -3.017831325531006, - -3.044564723968506, - -3.061560869216919, - -3.0683560371398926, - -2.30682373046875, - -2.3102681636810303, - -2.324004888534546, - -2.3476593494415283, - -2.3805861473083496, - -2.421887159347534, - -2.470435857772827, - -2.5249080657958984, - -2.583817720413208, - -2.6455581188201904, - -2.708444833755493, - -2.7707629203796387, - -2.8308119773864746, - -2.8869545459747314, - -2.9376590251922607, - -2.9815421104431152, - -3.017406940460205, - -3.0442752838134766, - -3.0614140033721924, - -3.0683560371398926, - -2.30682373046875, - -2.3103108406066895, - -2.3240890502929688, - -2.347782850265503, - -2.3807454109191895, - -2.4220781326293945, - -2.4706530570983887, - -2.5251457691192627, - -2.58406925201416, - -2.6458165645599365, - -2.7087035179138184, - -2.771014451980591, - -2.831049680709839, - -2.887171745300293, - -2.937849760055542, - -2.981701374053955, - -3.0175304412841797, - -3.0443594455718994, - -3.0614566802978516, - -3.0683560371398926, - -2.30682373046875, - -2.3105385303497314, - -2.324538230895996, - -2.3484408855438232, - -2.381594657897949, - -2.423095226287842, - -2.4718105792999268, - -2.526412010192871, - -2.585409641265869, - -2.6471946239471436, - -2.7100813388824463, - -2.7723546028137207, - -2.8323159217834473, - -2.888329267501831, - -2.9388670921325684, - -2.982550621032715, - -3.0181884765625, - -3.0448083877563477, - -3.0616843700408936, - -3.0683560371398926, - -2.30682373046875, - -2.3109261989593506, - -2.325303077697754, - -2.349562168121338, - -2.3830418586730957, - -2.4248287677764893, - -2.473783016204834, - -2.528569459915161, - -2.587693691253662, - -2.6495425701141357, - -2.7124295234680176, - -2.7746386528015137, - -2.8344736099243164, - -2.8903017044067383, - -2.9406003952026367, - -2.9839978218078613, - -3.0193097591400146, - -3.0455734729766846, - -3.062072277069092, - -3.0683560371398926, - -2.30682373046875, - -2.311432361602783, - -2.326301336288452, - -2.351025342941284, - -2.38493013381958, - -2.4270904064178467, - -2.4763567447662354, - -2.5313847064971924, - -2.5906736850738525, - -2.652606248855591, - -2.7154929637908936, - -2.777618885040283, - -2.8372886180877686, - -2.8928751945495605, - -2.9428622722625732, - -2.9858858585357666, - -3.020772933959961, - -3.046571731567383, - -3.0625782012939453, - -3.0683560371398926, - -2.30682373046875, - -2.3120017051696777, - -2.3274245262145996, - -2.3526716232299805, - -2.387054681777954, - -2.429635524749756, - -2.479252576828003, - -2.534552574157715, - -2.594027042388916, - -2.6560535430908203, - -2.718940258026123, - -2.7809720039367676, - -2.840456485748291, - -2.895771026611328, - -2.9454071521759033, - -2.9880106449127197, - -3.0224192142486572, - -3.047694683074951, - -3.06314754486084, - -3.0683560371398926, - -2.30682373046875, - -2.312572479248047, - -2.3285508155822754, - -2.354322910308838, - -2.3891854286193848, - -2.432187795639038, - -2.482156753540039, - -2.537729501724243, - -2.5973899364471436, - -2.659510850906372, - -2.722397804260254, - -2.784335136413574, - -2.8436334133148193, - -2.8986754417419434, - -2.9479594230651855, - -2.9901413917541504, - -3.0240705013275146, - -3.048821210861206, - -3.063718557357788, - -3.0683560371398926, - -2.30682373046875, - -2.3130834102630615, - -2.3295586109161377, - -2.355799913406372, - -2.3910915851593018, - -2.4344711303710938, - -2.484754800796509, - -2.540571451187134, - -2.600398302078247, - -2.6626036167144775, - -2.7254905700683594, - -2.7873435020446777, - -2.84647536277771, - -2.901273488998413, - -2.950242757797241, - -2.9920475482940674, - -3.025547504425049, - -3.0498290061950684, - -3.0642292499542236, - -3.0683560371398926, - -2.30682373046875, - -2.313478708267212, - -2.3303382396698, - -2.356942653656006, - -2.392566442489624, - -2.4362375736236572, - -2.486765146255493, - -2.5427703857421875, - -2.6027262210845947, - -2.66499662399292, - -2.7278835773468018, - -2.7896711826324463, - -2.8486745357513428, - -2.9032835960388184, - -2.952009439468384, - -2.9935224056243896, - -3.0266904830932617, - -3.0506086349487305, - -3.064624547958374, - -3.0683560371398926, - -2.30682373046875, - -2.3137154579162598, - -2.330805540084839, - -2.3576276302337646, - -2.3934502601623535, - -2.4372963905334473, - -2.4879696369171143, - -2.544088125228882, - -2.604120969772339, - -2.666430711746216, - -2.7293174266815186, - -2.7910661697387695, - -2.849992036819458, - -2.9044883251190186, - -2.9530680179595947, - -2.994406223297119, - -3.0273752212524414, - -3.0510756969451904, - -3.064861297607422, - -3.0683560371398926, - -2.30682373046875, - -2.313768148422241, - -2.330909490585327, - -2.3577802181243896, - -2.3936471939086914, - -2.4375321865081787, - -2.4882380962371826, - -2.544381618499756, - -2.6044318675994873, - -2.666750192642212, - -2.7296369075775146, - -2.791376829147339, - -2.850285768508911, - -2.904756784439087, - -2.953303813934326, - -2.994603157043457, - -3.0275278091430664, - -3.051179885864258, - -3.0649142265319824, - -3.0683560371398926, - -2.30682373046875, - -2.313631296157837, - -2.330639362335205, - -2.357383966445923, - -2.3931360244750977, - -2.436919689178467, - -2.4875411987304688, - -2.543619394302368, - -2.6036248207092285, - -2.6659204959869385, - -2.7288074493408203, - -2.790570020675659, - -2.8495235443115234, - -2.904059886932373, - -2.9526915550231934, - -2.994091749191284, - -3.0271315574645996, - -3.0509095191955566, - -3.064777135848999, - -3.0683560371398926, - -2.30682373046875, - -2.313319206237793, - -2.330023765563965, - -2.3564820289611816, - -2.3919718265533447, - -2.435525417327881, - -2.485954523086548, - -2.541883945465088, - -2.601787567138672, - -2.664031744003296, - -2.7269186973571777, - -2.7887327671051025, - -2.847787857055664, - -2.902473211288452, - -2.9512970447540283, - -2.9929277896881104, - -3.0262296199798584, - -3.0502941608428955, - -3.064465284347534, - -3.0683560371398926, - -2.30682373046875, - -2.3128662109375, - -2.329130172729492, - -2.3551719188690186, - -2.3902812004089355, - -2.433500289916992, - -2.4836502075195312, - -2.539363145828247, - -2.599119186401367, - -2.6612884998321533, - -2.724175453186035, - -2.786064386367798, - -2.8452670574188232, - -2.9001688957214355, - -2.9492719173431396, - -2.991237163543701, - -3.0249195098876953, - -3.0494003295898438, - -3.064012050628662, - -3.0683560371398926, - -2.30682373046875, - -2.312321186065674, - -2.328054666519165, - -2.353595733642578, - -2.388247013092041, - -2.431063652038574, - -2.480877637863159, - -2.536330223083496, - -2.5959086418151855, - -2.6579880714416504, - -2.7208750247955322, - -2.782853841781616, - -2.8422341346740723, - -2.8973963260650635, - -2.9468352794647217, - -2.9892029762268066, - -3.023343324661255, - -3.0483250617980957, - -3.063467025756836, - -3.0683560371398926, - -2.30682373046875, - -2.3117430210113525, - -2.3269143104553223, - -2.351924180984497, - -2.38608980178833, - -2.4284796714782715, - -2.4779374599456787, - -2.533113956451416, - -2.5925042629241943, - -2.6544880867004395, - -2.717374801635742, - -2.779449224472046, - -2.839017868041992, - -2.894456148147583, - -2.944251537322998, - -2.9870457649230957, - -3.021671772003174, - -3.047184705734253, - -3.0628888607025146, - -3.0683560371398926, - -2.30682373046875, - -2.311194658279419, - -2.3258326053619385, - -2.3503384590148926, - -2.3840434551239014, - -2.4260284900665283, - -2.4751482009887695, - -2.5300629138946533, - -2.5892744064331055, - -2.651167631149292, - -2.714054584503174, - -2.776219606399536, - -2.8359668254852295, - -2.891666889190674, - -2.941800117492676, - -2.984999418258667, - -3.0200860500335693, - -3.046103000640869, - -3.062340497970581, - -3.0683560371398926, - -2.30682373046875, - -2.3107354640960693, - -2.3249266147613525, - -2.3490102291107178, - -2.3823294639587402, - -2.4239754676818848, - -2.4728121757507324, - -2.5275075435638428, - -2.586569309234619, - -2.6483869552612305, - -2.711273670196533, - -2.77351450920105, - -2.833411455154419, - -2.8893308639526367, - -2.9397473335266113, - -2.983285427093506, - -3.0187578201293945, - -3.045197010040283, - -3.0618813037872314, - -3.0683560371398926 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.05063875764608383, - 0.05166492611169815, - 0.053169820457696915, - 0.05511238053441048, - 0.05743962153792381, - 0.060088060796260834, - 0.06298546493053436, - 0.06605278700590134, - 0.0692063644528389, - 0.07236017286777496, - 0.07542819529771805, - 0.07832673192024231, - 0.08097672462463379, - 0.08330588042736053, - 0.08525067567825317, - 0.08675806224346161, - 0.08778691291809082, - 0.08830916881561279, - 0.08831058442592621, - 0.08779112249612808, - 0.05063875764608383, - 0.047465793788433075, - 0.04488609358668327, - 0.042970020323991776, - 0.041769839823246, - 0.04131828993558884, - 0.041627686470746994, - 0.04268959164619446, - 0.04447504132986069, - 0.04693533480167389, - 0.05000334978103638, - 0.0535954087972641, - 0.05761352926492691, - 0.061948105692863464, - 0.06648090481758118, - 0.0710882768034935, - 0.07564455270767212, - 0.08002544939517975, - 0.08411145210266113, - 0.08779112994670868, - 0.05063875764608383, - 0.0436379536986351, - 0.037334829568862915, - 0.03190130740404129, - 0.02748560532927513, - 0.024208173155784607, - 0.02215840294957161, - 0.021392211318016052, - 0.021930504590272903, - 0.023758593946695328, - 0.026826612651348114, - 0.031050872057676315, - 0.036316148936748505, - 0.04247881472110748, - 0.04937078058719635, - 0.05680403858423233, - 0.06457584351301193, - 0.07247418165206909, - 0.08028361201286316, - 0.08779112994670868, - 0.05063875764608383, - 0.040596216917037964, - 0.03133431822061539, - 0.02310570701956749, - 0.016134832054376602, - 0.01061185821890831, - 0.0066874101758003235, - 0.004468545317649841, - 0.004015795886516571, - 0.005341522395610809, - 0.008409537374973297, - 0.013136167079210281, - 0.019392486661672592, - 0.027007821947336197, - 0.035774461925029755, - 0.0454532690346241, - 0.05578023940324783, - 0.06647367030382156, - 0.07724187523126602, - 0.08779112994670868, - 0.05063875764608383, - 0.03867019712924957, - 0.027534816414117813, - 0.017536364495754242, - 0.008947569876909256, - 0.002002708613872528, - -0.003108769655227661, - -0.006247468292713165, - -0.007327727973461151, - -0.006320111453533173, - -0.003252096474170685, - 0.0017926394939422607, - 0.008676473051309586, - 0.017211642116308212, - 0.02716531977057457, - 0.03826599940657616, - 0.050210900604724884, - 0.06267417222261429, - 0.07531586289405823, - 0.08779112994670868, - 0.05063875764608383, - 0.03806861490011215, - 0.026348058134317398, - 0.015796799212694168, - 0.00670265406370163, - -0.0006863251328468323, - -0.006168574094772339, - -0.009594567120075226, - -0.01087084412574768, - -0.009962573647499084, - -0.006894558668136597, - -0.0017504766583442688, - 0.0053293704986572266, - 0.014151837676763535, - 0.02447628229856491, - 0.03602108359336853, - 0.04847133159637451, - 0.06148741394281387, - 0.07471427321434021, - 0.08779112994670868, - 0.05063875764608383, - 0.03885665535926819, - 0.027902640402317047, - 0.018075522035360336, - 0.009643353521823883, - 0.0028361454606056213, - -0.0021604225039482117, - -0.005210071802139282, - -0.006229579448699951, - -0.0051911622285842896, - -0.0021231472492218018, - 0.0028907880187034607, - 0.009713869541883469, - 0.01815999671816826, - 0.027998749166727066, - 0.03896178677678108, - 0.05075005441904068, - 0.06304199248552322, - 0.07550231367349625, - 0.08779112994670868, - 0.05063875764608383, - 0.04094891995191574, - 0.03203010559082031, - 0.0241255983710289, - 0.017451010644435883, - 0.012188408523797989, - 0.008481346070766449, - 0.006430923938751221, - 0.0060930922627449036, - 0.007477063685655594, - 0.01054508239030838, - 0.015213459730148315, - 0.021354861557483673, - 0.02880176156759262, - 0.03735101595520973, - 0.04676944389939308, - 0.05680013447999954, - 0.06716945767402649, - 0.0775945782661438, - 0.08779112994670868, - 0.05063875764608383, - 0.04411868751049042, - 0.038283176720142365, - 0.03329141065478325, - 0.029279537498950958, - 0.026356998831033707, - 0.02460351586341858, - 0.02406691387295723, - 0.024761833250522614, - 0.026669319719076157, - 0.029737338423728943, - 0.033882200717926025, - 0.038990847766399384, - 0.04492393881082535, - 0.05151960998773575, - 0.058597974479198456, - 0.06596594303846359, - 0.07342252880334854, - 0.08076434582471848, - 0.08779112994670868, - 0.05063875764608383, - 0.04802246019244194, - 0.045984238386154175, - 0.04457969218492508, - 0.04384712874889374, - 0.0438065379858017, - 0.044459015130996704, - 0.0457867756485939, - 0.04775359109044075, - 0.050305821001529694, - 0.05337383598089218, - 0.05687395855784416, - 0.060710713267326355, - 0.06477943807840347, - 0.06896915286779404, - 0.07316556572914124, - 0.07725422829389572, - 0.08112359046936035, - 0.0846681222319603, - 0.08779112994670868, - 0.05063875764608383, - 0.05223720520734787, - 0.0542987585067749, - 0.05676719546318054, - 0.059575166553258896, - 0.06264609098434448, - 0.06589619070291519, - 0.06923682242631912, - 0.0725768506526947, - 0.07582518458366394, - 0.07889319956302643, - 0.08169721812009811, - 0.08416076004505157, - 0.08621661365032196, - 0.08780869841575623, - 0.08889360725879669, - 0.08944172412157059, - 0.08943811058998108, - 0.08888286352157593, - 0.08779112249612808, - 0.05063875392079353, - 0.05630618333816528, - 0.06232573464512825, - 0.06853319704532623, - 0.07475926727056503, - 0.08083409070968628, - 0.08659198880195618, - 0.09187587350606918, - 0.096541628241539, - 0.10046198964118958, - 0.10353000462055206, - 0.10566200315952301, - 0.10679981112480164, - 0.10691240429878235, - 0.10599671304225922, - 0.10407770425081253, - 0.10120773315429688, - 0.09746508300304413, - 0.09295184910297394, - 0.08779112249612808, - 0.05063875392079353, - 0.05978846549987793, - 0.06919530779123306, - 0.07860269397497177, - 0.08775399625301361, - 0.09639959782361984, - 0.10430368781089783, - 0.11125063896179199, - 0.11705097556114197, - 0.12154645472764969, - 0.12461447715759277, - 0.12617133557796478, - 0.12617458403110504, - 0.1246241107583046, - 0.12156222760677338, - 0.1170724406838417, - 0.11127722263336182, - 0.10433466732501984, - 0.09643413126468658, - 0.08779112249612808, - 0.050638750195503235, - 0.06230669468641281, - 0.07416307181119919, - 0.08588448166847229, - 0.09715119004249573, - 0.10765586048364639, - 0.11711196601390839, - 0.125261589884758, - 0.13188236951828003, - 0.13679376244544983, - 0.1398617923259735, - 0.14100274443626404, - 0.14018552005290985, - 0.13743239641189575, - 0.13281849026679993, - 0.12646962702274323, - 0.11855901777744293, - 0.10930243134498596, - 0.09895235300064087, - 0.08779112249612808, - 0.050638750195503235, - 0.0635879710316658, - 0.076690673828125, - 0.08958946913480759, - 0.10193248838186264, - 0.11338306218385696, - 0.12362883985042572, - 0.1323903501033783, - 0.13942861557006836, - 0.144551619887352, - 0.14761963486671448, - 0.14854899048805237, - 0.14731428027153015, - 0.14394927024841309, - 0.1385456919670105, - 0.13125093281269073, - 0.12226399779319763, - 0.11183002591133118, - 0.10023362934589386, - 0.08779112249612808, - 0.050638750195503235, - 0.06349345296621323, - 0.07650422304868698, - 0.08931615948677063, - 0.10157978534698486, - 0.1129605770111084, - 0.123148113489151, - 0.1318644881248474, - 0.1388719528913498, - 0.14397934079170227, - 0.14704737067222595, - 0.1479923129081726, - 0.14678841829299927, - 0.14346852898597717, - 0.13812319934368134, - 0.13089823722839355, - 0.12199069559574127, - 0.11164358258247375, - 0.10013911128044128, - 0.08779112249612808, - 0.050638750195503235, - 0.062033385038375854, - 0.0736239105463028, - 0.08509417623281479, - 0.09613129496574402, - 0.10643419623374939, - 0.11572186648845673, - 0.12374094128608704, - 0.13027270138263702, - 0.13513895869255066, - 0.13820695877075195, - 0.13939306139945984, - 0.1386648714542389, - 0.1360422968864441, - 0.13159683346748352, - 0.12544973194599152, - 0.11776871234178543, - 0.10876326262950897, - 0.09867904335260391, - 0.08779112249612808, - 0.05063875392079353, - 0.05936598777770996, - 0.06836187839508057, - 0.07738102972507477, - 0.08617743849754333, - 0.09451115131378174, - 0.10215485095977783, - 0.1089000403881073, - 0.11456272006034851, - 0.11898842453956604, - 0.12205643951892853, - 0.12368308007717133, - 0.12382397800683975, - 0.1224752739071846, - 0.11967377364635468, - 0.11549587547779083, - 0.11005556583404541, - 0.10350123047828674, - 0.09601164609193802, - 0.08779112249612808, - 0.05063875392079353, - 0.055780310183763504, - 0.06128832697868347, - 0.06701256334781647, - 0.07279687374830246, - 0.0784834772348404, - 0.08391726016998291, - 0.08895000070333481, - 0.09344442188739777, - 0.0972779244184494, - 0.10034593939781189, - 0.10256478190422058, - 0.10387393832206726, - 0.10423767566680908, - 0.10364609211683273, - 0.10211531072854996, - 0.09968709945678711, - 0.09642767906188965, - 0.09242597222328186, - 0.08779112249612808, - 0.05063875764608383, - 0.05166492611169815, - 0.053169816732406616, - 0.05511237680912018, - 0.057439614087343216, - 0.06008805334568024, - 0.06298545002937317, - 0.06605277210474014, - 0.0692063495516777, - 0.07236016541719437, - 0.07542818039655685, - 0.07832671701908112, - 0.0809767097234726, - 0.08330587297677994, - 0.08525066822767258, - 0.08675805479288101, - 0.08778690546751022, - 0.08830916881561279, - 0.08831058442592621, - 0.08779112249612808 - ], - "y": [ - -0.05063880234956741, - -0.06369361281394958, - -0.07689903676509857, - -0.0898948535323143, - -0.10232657194137573, - -0.11385509371757507, - -0.12416595220565796, - -0.1329779028892517, - -0.14005054533481598, - -0.1451909840106964, - -0.1482589840888977, - -0.1491708904504776, - -0.14790180325508118, - -0.14448633790016174, - -0.13901764154434204, - -0.13164493441581726, - -0.12256929278373718, - -0.11203828454017639, - -0.10033917427062988, - -0.0877910703420639, - -0.05063880234956741, - -0.06326130032539368, - -0.07604619115591049, - -0.08864474296569824, - -0.10071331262588501, - -0.11192266643047333, - -0.12196707725524902, - -0.13057255744934082, - -0.13750433921813965, - -0.14257338643074036, - -0.14564138650894165, - -0.14662468433380127, - -0.1454964578151703, - -0.1422874629497528, - -0.1370852291584015, - -0.13003167510032654, - -0.12131918966770172, - -0.11118544638156891, - -0.09990685433149338, - -0.0877910703420639, - -0.05063880234956741, - -0.06148859113454819, - -0.07254913449287415, - -0.08351872861385345, - -0.09409815073013306, - -0.1039988249540329, - -0.11295068264007568, - -0.12070954591035843, - -0.1270637810230255, - -0.13184002041816711, - -0.1349080502986908, - -0.13618412613868713, - -0.1356334388256073, - -0.13327105343341827, - -0.12916137278079987, - -0.12341651320457458, - -0.11619317531585693, - -0.10768838226795197, - -0.09813414514064789, - -0.0877910703420639, - -0.05063880234956741, - -0.0585675984621048, - -0.06678682565689087, - -0.075072281062603, - -0.08319796621799469, - -0.09094222635030746, - -0.09809382259845734, - -0.10445769131183624, - -0.10986021161079407, - -0.11415404081344604, - -0.11722205579280853, - -0.11898055672645569, - -0.11938158422708511, - -0.11841419339179993, - -0.11610477417707443, - -0.11251632869243622, - -0.10774672031402588, - -0.10192607343196869, - -0.0952131524682045, - -0.0877910703420639, - -0.05063880607485771, - -0.05481485277414322, - -0.05938369035720825, - -0.06422070413827896, - -0.06919395178556442, - -0.07416775822639465, - -0.07900647819042206, - -0.08357810229063034, - -0.08775794506072998, - -0.09143197536468506, - -0.09449998289346695, - -0.096878282725811, - -0.09850200265645981, - -0.09932684153318405, - -0.09933030605316162, - -0.09851230680942535, - -0.09689515084028244, - -0.09452294558286667, - -0.09146040678024292, - -0.0877910703420639, - -0.05063880607485771, - -0.05063702166080475, - -0.05114199221134186, - -0.052139945328235626, - -0.053603656589984894, - -0.05549320578575134, - -0.057757049798965454, - -0.060333434492349625, - -0.06315208226442337, - -0.06613610684871674, - -0.06920412182807922, - -0.07227242738008499, - -0.0752573311328888, - -0.07807741314172745, - -0.08065575361251831, - -0.08292201906442642, - -0.08481438457965851, - -0.08628124743700027, - -0.08728257566690445, - -0.0877910703420639, - -0.05063880980014801, - -0.04648683965206146, - -0.042954832315444946, - -0.040139131247997284, - -0.03811654448509216, - -0.036942243576049805, - -0.036648254841566086, - -0.037242598831653595, - -0.038709063082933426, - -0.04100765287876129, - -0.04407566413283348, - -0.04782940447330475, - -0.052166491746902466, - -0.05696861445903778, - -0.062104783952236176, - -0.0674348995089531, - -0.07281357795000076, - -0.07809408754110336, - -0.08313239365816116, - -0.0877910703420639, - -0.05063880980014801, - -0.04281403869390488, - -0.03570942208170891, - -0.029518742114305496, - -0.024410873651504517, - -0.020525146275758743, - -0.017967544496059418, - -0.016807835549116135, - -0.01707766205072403, - -0.018769659101963043, - -0.021837670356035233, - -0.026198003441095352, - -0.031731732189655304, - -0.03828790783882141, - -0.04568769037723541, - -0.05372922867536545, - -0.06219318509101868, - -0.07084867358207703, - -0.07945960015058517, - -0.0877910777926445, - -0.05063880980014801, - -0.04001663252711296, - -0.030190911144018173, - -0.02142966166138649, - -0.013971872627735138, - -0.008020970970392227, - -0.00373927503824234, - -0.001243583858013153, - -0.0006019771099090576, - -0.0018319562077522278, - -0.004899971187114716, - -0.00972231850028038, - -0.016167480498552322, - -0.024059634655714035, - -0.033183503895998, - -0.04329022765159607, - -0.05410410463809967, - -0.06533016264438629, - -0.07666219025850296, - -0.0877910777926445, - -0.05063880980014801, - -0.038397759199142456, - -0.026997316628694534, - -0.016748465597629547, - -0.007930763065814972, - -0.0007847324013710022, - 0.004494704306125641, - 0.007763534784317017, - 0.008932597935199738, - 0.007969982922077179, - 0.004901967942714691, - -0.00018774718046188354, - -0.007160361856222153, - -0.015825655311346054, - -0.025947269052267075, - -0.037249114364385605, - -0.049422912299633026, - -0.06213657185435295, - -0.07504331320524216, - -0.0877910777926445, - -0.05063880980014801, - -0.03813284635543823, - -0.026474718004465103, - -0.015982434153556824, - -0.006942197680473328, - 0.0003994107246398926, - 0.0058421120047569275, - 0.009237460792064667, - 0.010492831468582153, - 0.009573973715305328, - 0.006505958735942841, - 0.0013724863529205322, - -0.005686439573764801, - -0.014478247612714767, - -0.02476312965154648, - -0.03626054897904396, - -0.0486568808555603, - -0.06161397323012352, - -0.07477840036153793, - -0.0877910777926445, - -0.05063880980014801, - -0.039250604808330536, - -0.0286797434091568, - -0.019214581698179245, - -0.011113297194242477, - -0.004596874117851257, - 0.00015693902969360352, - 0.0030184686183929443, - 0.003909662365913391, - 0.0028061941266059875, - -0.00026182085275650024, - -0.00521068274974823, - -0.011905428022146225, - -0.02016342058777809, - -0.02975941076874733, - -0.04043165221810341, - -0.051889024674892426, - -0.06381899863481522, - -0.07589615881443024, - -0.0877910777926445, - -0.05063880980014801, - -0.04162990301847458, - -0.03337344527244568, - -0.026094648987054825, - -0.019992060959339142, - -0.0152321457862854, - -0.011944741010665894, - -0.010219510644674301, - -0.010103527456521988, - -0.011599954217672348, - -0.014667965471744537, - -0.01922386884689331, - -0.02514340728521347, - -0.03226510062813759, - -0.04039468616247177, - -0.049310412257909775, - -0.058769091963768005, - -0.0685127004981041, - -0.07827545702457428, - -0.0877910777926445, - -0.05063880980014801, - -0.04501291364431381, - -0.040047191083431244, - -0.03587708622217178, - -0.032616350799798965, - -0.030353926122188568, - -0.029151536524295807, - -0.029041964560747147, - -0.03002820909023285, - -0.03208336606621742, - -0.03515137732028961, - -0.03914855420589447, - -0.043965861201286316, - -0.0494718998670578, - -0.05551647022366524, - -0.0619347020983696, - -0.06855152547359467, - -0.07518644630908966, - -0.08165847510099411, - -0.0877910703420639, - -0.05063880980014801, - -0.0490330308675766, - -0.047977760434150696, - -0.047501787543296814, - -0.04761809855699539, - -0.048323504626750946, - -0.04959878325462341, - -0.05140913277864456, - -0.053705181926488876, - -0.05642429739236832, - -0.059492308646440506, - -0.0628255233168602, - -0.06633303314447403, - -0.0699191465973854, - -0.07348605245351791, - -0.07693645358085632, - -0.08017623424530029, - -0.08311701565980911, - -0.0856785923242569, - -0.0877910703420639, - -0.05063880607485771, - -0.053254611790180206, - -0.056305769830942154, - -0.059709057211875916, - -0.06337164342403412, - -0.06719361245632172, - -0.07107073068618774, - -0.07489721477031708, - -0.0785687118768692, - -0.08198505640029907, - -0.08505306392908096, - -0.08768904954195023, - -0.08982111513614655, - -0.09139109402894974, - -0.09235616028308868, - -0.09269000589847565, - -0.0923835039138794, - -0.09144502878189087, - -0.08990016579627991, - -0.0877910703420639, - -0.05063880234956741, - -0.05722018703818321, - -0.06412875652313232, - -0.07117606699466705, - -0.07816987484693527, - -0.08491941541433334, - -0.09124058485031128, - -0.09696095436811447, - -0.10192447900772095, - -0.105995774269104, - -0.10906378924846649, - -0.11104482412338257, - -0.11188484728336334, - -0.11156095564365387, - -0.11008197069168091, - -0.1074882373213768, - -0.10385050624608994, - -0.09926801174879074, - -0.09386574476957321, - -0.0877910703420639, - -0.05063880234956741, - -0.06050002574920654, - -0.07059896737337112, - -0.08066015690565109, - -0.09040915220975876, - -0.09958001971244812, - -0.10792260617017746, - -0.11520935595035553, - -0.121241495013237, - -0.1258544772863388, - -0.1289224922657013, - -0.13036184012889862, - -0.130133256316185, - -0.12824296951293945, - -0.12474256753921509, - -0.11972750723361969, - -0.11333459615707397, - -0.10573822259902954, - -0.09714558720588684, - -0.0877910703420639, - -0.05063880234956741, - -0.06273870170116425, - -0.07501525431871414, - -0.08713358640670776, - -0.09876314550638199, - -0.109586700797081, - -0.11930903792381287, - -0.12766492366790771, - -0.13442644476890564, - -0.1394091695547104, - -0.14247718453407288, - -0.14354678988456726, - -0.14258882403373718, - -0.13962939381599426, - -0.13474926352500916, - -0.12808150053024292, - -0.11980803310871124, - -0.11015450954437256, - -0.09938426315784454, - -0.0877910703420639, - -0.05063880234956741, - -0.06369361281394958, - -0.07689903676509857, - -0.0898948535323143, - -0.10232657939195633, - -0.11385509371757507, - -0.12416595220565796, - -0.1329779028892517, - -0.14005054533481598, - -0.1451909840106964, - -0.1482589840888977, - -0.1491708904504776, - -0.14790180325508118, - -0.14448633790016174, - -0.13901765644550323, - -0.13164493441581726, - -0.12256930023431778, - -0.11203828454017639, - -0.10033917427062988, - -0.0877910703420639 - ], - "z": [ - -1.012775182723999, - -1.0171635150909424, - -1.0315663814544678, - -1.0555908679962158, - -1.0885816812515259, - -1.1296387910842896, - -1.1776424646377563, - -1.231283187866211, - -1.289097785949707, - -1.3495091199874878, - -1.4108694791793823, - -1.471505045890808, - -1.5297619104385376, - -1.5840508937835693, - -1.6328911781311035, - -1.674950361251831, - -1.7090815305709839, - -1.7343534231185913, - -1.7500766515731812, - -1.7558225393295288, - -1.012775182723999, - -1.01739501953125, - -1.0320231914520264, - -1.0562604665756226, - -1.0894458293914795, - -1.130673885345459, - -1.1788203716278076, - -1.2325716018676758, - -1.2904616594314575, - -1.350911259651184, - -1.4122716188430786, - -1.4728689193725586, - -1.5310503244400024, - -1.585228681564331, - -1.633926272392273, - -1.6758146286010742, - -1.7097511291503906, - -1.73481023311615, - -1.7503082752227783, - -1.7558225393295288, - -1.012775182723999, - -1.0176751613616943, - -1.0325756072998047, - -1.057070255279541, - -1.0904908180236816, - -1.1319255828857422, - -1.1802445650100708, - -1.2341296672821045, - -1.2921109199523926, - -1.3526067733764648, - -1.4139671325683594, - -1.4745181798934937, - -1.5326083898544312, - -1.5866529941558838, - -1.6351779699325562, - -1.6768596172332764, - -1.710560917854309, - -1.7353626489639282, - -1.750588297843933, - -1.7558224201202393, - -1.012775182723999, - -1.0179731845855713, - -1.0331637859344482, - -1.0579323768615723, - -1.0916032791137695, - -1.13325834274292, - -1.1817610263824463, - -1.235788345336914, - -1.293866753578186, - -1.3544119596481323, - -1.4157723188400269, - -1.4762741327285767, - -1.5342671871185303, - -1.5881694555282593, - -1.6365106105804443, - -1.6779720783233643, - -1.7114230394363403, - -1.7359508275985718, - -1.7508864402770996, - -1.7558224201202393, - -1.0127750635147095, - -1.0182571411132812, - -1.0337238311767578, - -1.0587533712387085, - -1.0926629304885864, - -1.1345274448394775, - -1.1832051277160645, - -1.2373682260513306, - -1.2955390214920044, - -1.3561310768127441, - -1.4174914360046387, - -1.477946400642395, - -1.5358469486236572, - -1.5896135568618774, - -1.637779712677002, - -1.6790316104888916, - -1.7122440338134766, - -1.736510992050171, - -1.7511703968048096, - -1.7558224201202393, - -1.0127750635147095, - -1.0184961557388306, - -1.0341953039169312, - -1.0594444274902344, - -1.0935547351837158, - -1.135595679283142, - -1.1844205856323242, - -1.2386977672576904, - -1.2969465255737305, - -1.3575780391693115, - -1.418938398361206, - -1.479353904724121, - -1.537176489830017, - -1.5908290147781372, - -1.6388479471206665, - -1.679923415184021, - -1.7129350900650024, - -1.7369823455810547, - -1.7514092922210693, - -1.7558224201202393, - -1.0127750635147095, - -1.0186642408370972, - -1.0345269441604614, - -1.0599305629730225, - -1.094182014465332, - -1.1363470554351807, - -1.185275673866272, - -1.2396330833435059, - -1.2979365587234497, - -1.358595848083496, - -1.4199562072753906, - -1.4803439378738403, - -1.5381118059158325, - -1.591684103012085, - -1.639599323272705, - -1.6805508136749268, - -1.713421106338501, - -1.737313985824585, - -1.751577377319336, - -1.7558224201202393, - -1.0127750635147095, - -1.0187432765960693, - -1.0346828699111938, - -1.0601589679718018, - -1.0944769382476807, - -1.1367002725601196, - -1.1856776475906372, - -1.2400727272033691, - -1.2984020709991455, - -1.359074354171753, - -1.4204347133636475, - -1.4808093309402466, - -1.5385515689849854, - -1.5920860767364502, - -1.6399526596069336, - -1.6808456182479858, - -1.7136497497558594, - -1.7374699115753174, - -1.7516565322875977, - -1.7558224201202393, - -1.0127750635147095, - -1.0187246799468994, - -1.0346460342407227, - -1.0601052045822144, - -1.0944074392318726, - -1.1366170644760132, - -1.1855828762054443, - -1.2399691343307495, - -1.2982923984527588, - -1.358961582183838, - -1.4203219413757324, - -1.4806997776031494, - -1.5384478569030762, - -1.5919913053512573, - -1.6398694515228271, - -1.6807761192321777, - -1.7135958671569824, - -1.7374331951141357, - -1.7516378164291382, - -1.7558224201202393, - -1.0127750635147095, - -1.0186104774475098, - -1.0344207286834717, - -1.0597748756408691, - -1.0939810276031494, - -1.1361063718795776, - -1.1850018501281738, - -1.2393335103988647, - -1.2976195812225342, - -1.3582699298858643, - -1.4196302890777588, - -1.4800268411636353, - -1.5378122329711914, - -1.5914102792739868, - -1.6393587589263916, - -1.6803498268127441, - -1.7132655382156372, - -1.7372077703475952, - -1.7515236139297485, - -1.7558224201202393, - -1.0127750635147095, - -1.0184129476547241, - -1.0340311527252197, - -1.0592037439346313, - -1.0932440757751465, - -1.135223627090454, - -1.183997392654419, - -1.2382347583770752, - -1.2964563369750977, - -1.3570741415023804, - -1.418434500694275, - -1.4788637161254883, - -1.5367134809494019, - -1.5904057025909424, - -1.6384758949279785, - -1.6796128749847412, - -1.7126944065093994, - -1.7368181943893433, - -1.751326084136963, - -1.7558224201202393, - -1.012775182723999, - -1.0181535482406616, - -1.0335195064544678, - -1.0584537982940674, - -1.0922763347625732, - -1.1340644359588623, - -1.1826783418655396, - -1.2367918491363525, - -1.294929027557373, - -1.3555039167404175, - -1.416864275932312, - -1.4773362874984741, - -1.5352705717086792, - -1.5890867710113525, - -1.6373167037963867, - -1.678645133972168, - -1.711944580078125, - -1.7363065481185913, - -1.75106680393219, - -1.7558224201202393, - -1.012775182723999, - -1.0178605318069458, - -1.0329413414001465, - -1.0576063394546509, - -1.0911827087402344, - -1.1327543258666992, - -1.181187629699707, - -1.2351611852645874, - -1.2932028770446777, - -1.3537293672561646, - -1.415089726448059, - -1.4756102561950684, - -1.533639907836914, - -1.58759605884552, - -1.6360067129135132, - -1.677551507949829, - -1.711097002029419, - -1.73572838306427, - -1.7507736682891846, - -1.7558224201202393, - -1.012775182723999, - -1.0175654888153076, - -1.0323593616485596, - -1.056753158569336, - -1.0900815725326538, - -1.131435513496399, - -1.1796869039535522, - -1.2335195541381836, - -1.2914650440216064, - -1.351942777633667, - -1.4133031368255615, - -1.473872423171997, - -1.5319982767105103, - -1.5860953330993652, - -1.6346877813339233, - -1.6764503717422485, - -1.710243821144104, - -1.7351462841033936, - -1.7504786252975464, - -1.7558224201202393, - -1.012775182723999, - -1.0173003673553467, - -1.0318363904953003, - -1.0559866428375244, - -1.089092493057251, - -1.1302506923675537, - -1.178338646888733, - -1.2320446968078613, - -1.2899038791656494, - -1.3503378629684448, - -1.4116982221603394, - -1.47231125831604, - -1.5305235385894775, - -1.584747076034546, - -1.6335029602050781, - -1.6754611730575562, - -1.7094773054122925, - -1.7346234321594238, - -1.750213623046875, - -1.7558225393295288, - -1.012775182723999, - -1.0170940160751343, - -1.0314292907714844, - -1.0553900003433228, - -1.088322401046753, - -1.1293282508850098, - -1.1772891283035278, - -1.2308965921401978, - -1.2886885404586792, - -1.349088430404663, - -1.4104487895965576, - -1.4710959196090698, - -1.5293753147125244, - -1.5836975574493408, - -1.6325805187225342, - -1.6746912002563477, - -1.7088806629180908, - -1.734216332435608, - -1.750007152557373, - -1.7558225393295288, - -1.012775182723999, - -1.0169687271118164, - -1.0311821699142456, - -1.055027723312378, - -1.0878548622131348, - -1.1287683248519897, - -1.176651954650879, - -1.2301995754241943, - -1.2879507541656494, - -1.3483299016952515, - -1.4096903800964355, - -1.47035813331604, - -1.5286784172058105, - -1.583060383796692, - -1.6320205926895142, - -1.6742236614227295, - -1.708518385887146, - -1.7339692115783691, - -1.7498819828033447, - -1.7558225393295288, - -1.012775182723999, - -1.0169380903244019, - -1.0311217308044434, - -1.0549391508102417, - -1.0877406597137451, - -1.1286314725875854, - -1.176496148109436, - -1.2300292253494263, - -1.287770390510559, - -1.34814453125, - -1.4095048904418945, - -1.4701777696609497, - -1.528507947921753, - -1.582904577255249, - -1.6318837404251099, - -1.6741094589233398, - -1.7084298133850098, - -1.733908772468567, - -1.7498513460159302, - -1.7558225393295288, - -1.012775182723999, - -1.017005443572998, - -1.0312546491622925, - -1.0551339387893677, - -1.0879919528961182, - -1.1289324760437012, - -1.176838755607605, - -1.2304039001464844, - -1.2881669998168945, - -1.3485523462295532, - -1.4099127054214478, - -1.4705743789672852, - -1.5288827419281006, - -1.583247184753418, - -1.6321847438812256, - -1.674360752105713, - -1.7086246013641357, - -1.734041690826416, - -1.7499186992645264, - -1.7558225393295288, - -1.012775182723999, - -1.0171635150909424, - -1.0315663814544678, - -1.0555908679962158, - -1.0885816812515259, - -1.1296387910842896, - -1.1776424646377563, - -1.231283187866211, - -1.289097785949707, - -1.3495091199874878, - -1.4108694791793823, - -1.471505045890808, - -1.5297619104385376, - -1.5840508937835693, - -1.6328911781311035, - -1.674950361251831, - -1.7090815305709839, - -1.7343534231185913, - -1.7500766515731812, - -1.7558225393295288 - ] - }, - { - "alphahull": 0, - "color": "#19D3F3", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.1204976737499237, - 0.1389567255973816, - 0.15639628469944, - 0.17234063148498535, - 0.1863548308610916, - 0.1980566382408142, - 0.20712684094905853, - 0.21331804990768433, - 0.21646136045455933, - 0.21647101640701294, - 0.21334680914878845, - 0.2071739137172699, - 0.19812074303627014, - 0.18643420934677124, - 0.17243310809135437, - 0.15649935603141785, - 0.13906756043434143, - 0.12061326205730438, - 0.10163980722427368, - 0.08266475796699524, - 0.1204976812005043, - 0.13765355944633484, - 0.15382546186447144, - 0.1685723066329956, - 0.18149179220199585, - 0.19223153591156006, - 0.2004985511302948, - 0.20606738328933716, - 0.20878610014915466, - 0.20858055353164673, - 0.20545631647109985, - 0.19949865341186523, - 0.19087007641792297, - 0.1798059046268463, - 0.16660800576210022, - 0.1516363024711609, - 0.13529923558235168, - 0.11804243922233582, - 0.10033662617206573, - 0.08266475796699524, - 0.1204976812005043, - 0.13446331024169922, - 0.14753200113773346, - 0.1593472808599472, - 0.16958685219287872, - 0.17797139286994934, - 0.18427222967147827, - 0.1883174479007721, - 0.18999674916267395, - 0.18926429748535156, - 0.18614009022712708, - 0.1807093322277069, - 0.1731201410293579, - 0.16357958316802979, - 0.1523478627204895, - 0.13973136246204376, - 0.12607422471046448, - 0.11174897104501724, - 0.09714637696743011, - 0.08266475796699524, - 0.1204976812005043, - 0.12973171472549438, - 0.1381978839635849, - 0.1456652283668518, - 0.1519300937652588, - 0.1568215787410736, - 0.16020622849464417, - 0.16199176013469696, - 0.16212943196296692, - 0.16061551868915558, - 0.1574912965297699, - 0.15284200012683868, - 0.14679445326328278, - 0.13951358199119568, - 0.13119803369045258, - 0.12207461148500443, - 0.11239217221736908, - 0.10241484642028809, - 0.09241478890180588, - 0.08266475796699524, - 0.1204976812005043, - 0.12397151440382004, - 0.12683460116386414, - 0.12900882959365845, - 0.13043491542339325, - 0.1310739368200302, - 0.13090848922729492, - 0.12994305789470673, - 0.12820398807525635, - 0.125738725066185, - 0.12261451035737991, - 0.11891655623912811, - 0.11474574357271194, - 0.11021583527326584, - 0.10545039921998978, - 0.10057942569255829, - 0.09573576599359512, - 0.09105156362056732, - 0.08665458112955093, - 0.08266475796699524, - 0.1204976812005043, - 0.11780691146850586, - 0.11467353999614716, - 0.1111830398440361, - 0.10743063688278198, - 0.10351867228746414, - 0.09955386072397232, - 0.09564434736967087, - 0.09189677983522415, - 0.08841338008642197, - 0.08528916537761688, - 0.08260934799909592, - 0.08044704049825668, - 0.07886121422052383, - 0.0778951346874237, - 0.07757514715194702, - 0.07790998369455338, - 0.07889050990343094, - 0.08048997819423676, - 0.08266476541757584, - 0.1204976886510849, - 0.11190593242645264, - 0.10303255170583725, - 0.09411957859992981, - 0.08541014045476913, - 0.07714181393384933, - 0.0695401281118393, - 0.0628124326467514, - 0.05714224651455879, - 0.052684251219034195, - 0.04956003278493881, - 0.04785481467843056, - 0.04761511832475662, - 0.04884747415781021, - 0.051518265157938004, - 0.055554646998643875, - 0.060846518725156784, - 0.06724952161312103, - 0.07458900660276413, - 0.08266476541757584, - 0.1204976886510849, - 0.10690805315971375, - 0.09317311644554138, - 0.07966752350330353, - 0.06675968319177628, - 0.05480169132351875, - 0.04411971569061279, - 0.035005129873752594, - 0.027706578373908997, - 0.022423140704631805, - 0.019298918545246124, - 0.01841914653778076, - 0.01980782300233841, - 0.023427069187164307, - 0.029178142547607422, - 0.036904193460941315, - 0.0463944636285305, - 0.057390082627534866, - 0.06959111988544464, - 0.08266476541757584, - 0.1204976886510849, - 0.10335485637187958, - 0.08616364747285843, - 0.06939298659563065, - 0.053500331938266754, - 0.03891921788454056, - 0.026047341525554657, - 0.01523582637310028, - 0.006779596209526062, - 0.0009093210101127625, - -0.0022149011492729187, - -0.002507835626602173, - 0.00003851950168609619, - 0.005354687571525574, - 0.013295665383338928, - 0.023644842207431793, - 0.03611993044614792, - 0.05038061365485191, - 0.06603792309761047, - 0.08266476541757584, - 0.1204976886510849, - 0.10163139551877975, - 0.08276373147964478, - 0.06440936028957367, - 0.04706895351409912, - 0.031215496361255646, - 0.017281420528888702, - 0.00564681738615036, - -0.003370940685272217, - -0.009525857865810394, - -0.012650080025196075, - -0.012658372521400452, - -0.009550489485263824, - -0.003411233425140381, - 0.005591943860054016, - 0.017213456332683563, - 0.031136304140090942, - 0.04698070511221886, - 0.06431446969509125, - 0.08266477286815643, - 0.1204976886510849, - 0.10192443430423737, - 0.0833418220281601, - 0.06525672227144241, - 0.048162467777729034, - 0.03252534568309784, - 0.01877187192440033, - 0.0072772204875946045, - -0.0016450583934783936, - -0.007751584053039551, - -0.010875806212425232, - -0.010932490229606628, - -0.00792008638381958, - -0.0019207820296287537, - 0.00690179318189621, - 0.018306970596313477, - 0.031983666121959686, - 0.04755878821015358, - 0.06460750102996826, - 0.08266477286815643, - 0.1204976886510849, - 0.10420221090316772, - 0.08783524483442307, - 0.0718432292342186, - 0.056662388145923615, - 0.04270683228969574, - 0.03035718947649002, - 0.01995036005973816, - 0.011770211160182953, - 0.006039880216121674, - 0.0029156580567359924, - 0.002482779324054718, - 0.004753053188323975, - 0.009664542973041534, - 0.01708327978849411, - 0.026806898415088654, - 0.03857017308473587, - 0.05205221101641655, - 0.06688528507947922, - 0.08266476541757584, - 0.1204976886510849, - 0.10821790248155594, - 0.09575708210468292, - 0.08345513045787811, - 0.07164761424064636, - 0.06065661087632179, - 0.05078192427754402, - 0.042292896658182144, - 0.035421110689640045, - 0.030354000627994537, - 0.027229778468608856, - 0.02613367885351181, - 0.02709558606147766, - 0.030089274048805237, - 0.03503306210041046, - 0.0417921207845211, - 0.050182074308395386, - 0.059974052011966705, - 0.07090096920728683, - 0.08266476541757584, - 0.1204976886510849, - 0.11353634297847748, - 0.1062488928437233, - 0.09883411973714828, - 0.09149427711963654, - 0.08442959189414978, - 0.07783274352550507, - 0.07188370823860168, - 0.06674472987651825, - 0.06255601346492767, - 0.05943179130554199, - 0.057457294315099716, - 0.0566863939166069, - 0.05714010074734688, - 0.05880604684352875, - 0.061638787388801575, - 0.06556105613708496, - 0.07046586275100708, - 0.07621940970420837, - 0.08266476541757584, - 0.1204976812005043, - 0.1195811852812767, - 0.11817368865013123, - 0.11631359905004501, - 0.11405164748430252, - 0.11144953221082687, - 0.10857824236154556, - 0.10551608353853226, - 0.10234659910202026, - 0.09915623068809509, - 0.09603201597929001, - 0.09305916726589203, - 0.09031876921653748, - 0.08788559585809708, - 0.08582599461078644, - 0.08419615775346756, - 0.08304054290056229, - 0.08239065855741501, - 0.0822642520070076, - 0.08266476541757584, - 0.1204976812005043, - 0.12569738924503326, - 0.13023926317691803, - 0.13399942219257355, - 0.13687530159950256, - 0.13878844678401947, - 0.1396866738796234, - 0.1395454853773117, - 0.13836874067783356, - 0.13618852198123932, - 0.13306429982185364, - 0.12908130884170532, - 0.12434817850589752, - 0.11899402737617493, - 0.11316490918397903, - 0.1070198118686676, - 0.10072636604309082, - 0.09445623308420181, - 0.08838045597076416, - 0.08266475796699524, - 0.1204976812005043, - 0.1312221735715866, - 0.14113813638687134, - 0.14997509121894836, - 0.15749198198318481, - 0.16348376870155334, - 0.16778703033924103, - 0.17028436064720154, - 0.1709076464176178, - 0.16963988542556763, - 0.16651567816734314, - 0.16162022948265076, - 0.15508705377578735, - 0.14709438383579254, - 0.1378602385520935, - 0.12763649225234985, - 0.11670202761888504, - 0.10535509884357452, - 0.0939052402973175, - 0.08266475796699524, - 0.1204976812005043, - 0.13555683195590973, - 0.1496892124414444, - 0.16250933706760406, - 0.17366750538349152, - 0.18285933136940002, - 0.1898341178894043, - 0.1944015920162201, - 0.19643718004226685, - 0.1958853304386139, - 0.19276109337806702, - 0.1871497482061386, - 0.1792042851448059, - 0.1691414713859558, - 0.15723581612110138, - 0.14381201565265656, - 0.12923628091812134, - 0.11390618234872818, - 0.09823989868164062, - 0.08266475796699524, - 0.1204976812005043, - 0.13823163509368896, - 0.15496587753295898, - 0.17024390399456024, - 0.1836490035057068, - 0.1948155164718628, - 0.20343881845474243, - 0.2092837393283844, - 0.21219079196453094, - 0.212080717086792, - 0.20895648002624512, - 0.2029033601284027, - 0.19408643245697021, - 0.18274617195129395, - 0.16919198632240295, - 0.15379351377487183, - 0.13697084784507751, - 0.11918283998966217, - 0.10091470927000046, - 0.08266475796699524, - 0.1204976737499237, - 0.1389567255973816, - 0.15639628469944, - 0.17234063148498535, - 0.1863548308610916, - 0.1980566382408142, - 0.20712684094905853, - 0.21331804990768433, - 0.21646136045455933, - 0.21647101640701294, - 0.21334680914878845, - 0.2071739137172699, - 0.19812074303627014, - 0.18643420934677124, - 0.17243310809135437, - 0.15649935603141785, - 0.13906756043434143, - 0.12061326205730438, - 0.10163980722427368, - 0.08266475796699524 - ], - "y": [ - -0.12049765884876251, - -0.12108316272497177, - -0.12113670259714127, - -0.1206568256020546, - -0.11965660750865936, - -0.1181633472442627, - -0.11621776968240738, - -0.1138729453086853, - -0.11119283735752106, - -0.10825054347515106, - -0.10512632876634598, - -0.10190541297197342, - -0.09867565333843231, - -0.09552515298128128, - -0.09253984689712524, - -0.08980116248130798, - -0.08738381415605545, - -0.08535372465848923, - -0.08376628160476685, - -0.08266478776931763, - -0.12049765884876251, - -0.12711557745933533, - -0.13303698599338531, - -0.13810035586357117, - -0.1421675980091095, - -0.14512774348258972, - -0.14690004289150238, - -0.14743617177009583, - -0.1467214971780777, - -0.14477550983428955, - -0.14165128767490387, - -0.13743406534194946, - -0.13223887979984283, - -0.12620742619037628, - -0.11950424313545227, - -0.11231215298175812, - -0.10482735186815262, - -0.09725400805473328, - -0.0897986963391304, - -0.08266478776931763, - -0.12049765139818192, - -0.13240288197994232, - -0.14346736669540405, - -0.15338930487632751, - -0.16189806163311005, - -0.16876153647899628, - -0.1737924963235855, - -0.1768537312746048, - -0.17786172032356262, - -0.17678898572921753, - -0.17366477847099304, - -0.16857430338859558, - -0.1616564393043518, - -0.1530998945236206, - -0.14313803613185883, - -0.13204261660575867, - -0.12011629343032837, - -0.10768438875675201, - -0.0950860008597374, - -0.08266478776931763, - -0.12049765139818192, - -0.13637210428714752, - -0.15129755437374115, - -0.1648668646812439, - -0.17670992016792297, - -0.18650364875793457, - -0.19398093223571777, - -0.1989377737045288, - -0.2012389898300171, - -0.20082181692123413, - -0.19769759476184845, - -0.19195157289505005, - -0.18374048173427582, - -0.17328831553459167, - -0.1608801782131195, - -0.1468544900417328, - -0.13159386813640594, - -0.11551457643508911, - -0.0990552306175232, - -0.08266478776931763, - -0.12049765139818192, - -0.1385931372642517, - -0.15567903220653534, - -0.17128926515579224, - -0.1849980652332306, - -0.1964314579963684, - -0.20527759194374084, - -0.21129517257213593, - -0.21432003378868103, - -0.21426965296268463, - -0.21114543080329895, - -0.205032616853714, - -0.19609788060188293, - -0.18458499014377594, - -0.17080797255039215, - -0.1551426351070404, - -0.13801626861095428, - -0.1198960468173027, - -0.10127625614404678, - -0.08266478776931763, - -0.12049765139818192, - -0.13882528245449066, - -0.15613698959350586, - -0.17196054756641388, - -0.18586435914039612, - -0.19746913015842438, - -0.20645833015441895, - -0.21258676052093506, - -0.21568726003170013, - -0.2156752347946167, - -0.2125510275363922, - -0.2063998430967331, - -0.19738948345184326, - -0.18576572835445404, - -0.17184564471244812, - -0.15600892901420593, - -0.13868753612041473, - -0.12035400420427322, - -0.10150840133428574, - -0.08266478776931763, - -0.12049765139818192, - -0.13704338669776917, - -0.1526218056678772, - -0.16680794954299927, - -0.17921490967273712, - -0.1895042061805725, - -0.1973951905965805, - -0.20267264544963837, - -0.20519256591796875, - -0.20488624274730682, - -0.20176202058792114, - -0.1959051489830017, - -0.18747535347938538, - -0.1767025887966156, - -0.16388073563575745, - -0.14935946464538574, - -0.13353495299816132, - -0.11683882027864456, - -0.09972650557756424, - -0.08266478776931763, - -0.12049765139818192, - -0.1334405392408371, - -0.14551439881324768, - -0.15638986229896545, - -0.1657702922821045, - -0.17339982092380524, - -0.17907032370567322, - -0.1826271116733551, - -0.18397319316864014, - -0.1830718219280243, - -0.1799476146697998, - -0.1746857762336731, - -0.1674298346042633, - -0.15837770700454712, - -0.14777633547782898, - -0.1359148621559143, - -0.12311685085296631, - -0.10973142087459564, - -0.09612366557121277, - -0.08266478776931763, - -0.12049765884876251, - -0.12840718030929565, - -0.1355849802494049, - -0.14183522760868073, - -0.1469874531030655, - -0.15090112388134003, - -0.15346947312355042, - -0.15462243556976318, - -0.1543285846710205, - -0.15259592235088348, - -0.1494717001914978, - -0.14504116773605347, - -0.1394251585006714, - -0.13277685642242432, - -0.12527762353420258, - -0.11713200807571411, - -0.10856221616268158, - -0.09980199486017227, - -0.09109030663967133, - -0.08266478776931763, - -0.12049765884876251, - -0.12248874455690384, - -0.12390953302383423, - -0.12472125887870789, - -0.12490179389715195, - -0.12444619834423065, - -0.12336690723896027, - -0.12169335782527924, - -0.11947120726108551, - -0.11676105856895447, - -0.11363684386014938, - -0.11018379032611847, - -0.10649607330560684, - -0.10267429053783417, - -0.0988226979970932, - -0.09504634886980057, - -0.09144825488328934, - -0.08812655508518219, - -0.08517187088727951, - -0.08266478776931763, - -0.12049765884876251, - -0.11632658541202545, - -0.11175329983234406, - -0.10690253973007202, - -0.10190663486719131, - -0.09690185636281967, - -0.09202471375465393, - -0.08740824460983276, - -0.08317837864160538, - -0.07945050299167633, - -0.07632628828287125, - -0.07389096170663834, - -0.07221095263957977, - -0.07133209705352783, - -0.07127834856510162, - -0.07205118983983994, - -0.07362952828407288, - -0.07597032189369202, - -0.07900971174240112, - -0.08266478776931763, - -0.12049765884876251, - -0.11058846861124039, - -0.1004335805773735, - -0.0903099998831749, - -0.08049386739730835, - -0.07125294953584671, - -0.06283929944038391, - -0.055482424795627594, - -0.0493830144405365, - -0.04470743238925934, - -0.041583217680454254, - -0.04009559378027916, - -0.0402851365506649, - -0.042146675288677216, - -0.045629438012838364, - -0.05063841864466667, - -0.05703698843717575, - -0.06465059518814087, - -0.07327158749103546, - -0.08266479521989822, - -0.12049765884876251, - -0.10589620471000671, - -0.09117704629898071, - -0.07674169540405273, - -0.06298388540744781, - -0.0502789281308651, - -0.0389733612537384, - -0.029375553131103516, - -0.021747343242168427, - -0.016296803951263428, - -0.013172589242458344, - -0.012459926307201385, - -0.014178261160850525, - -0.018280737102031708, - -0.02465541660785675, - -0.033128440380096436, - -0.04346868023276329, - -0.055394068360328674, - -0.06857933104038239, - -0.08266479521989822, - -0.12049765884876251, - -0.10275827348232269, - -0.08498679101467133, - -0.06766794621944427, - -0.05127418041229248, - -0.03625265508890152, - -0.023013122379779816, - -0.011916711926460266, - -0.0032661259174346924, - 0.002702660858631134, - 0.005826875567436218, - 0.006021291017532349, - 0.0032805800437927246, - -0.00232049822807312, - -0.010629139840602875, - -0.021418727934360504, - -0.03439493477344513, - -0.04920380935072899, - -0.06544139981269836, - -0.08266479521989822, - -0.12049765884876251, - -0.10151473432779312, - -0.08253362029790878, - -0.06407207250595093, - -0.04663366824388504, - -0.030694112181663513, - -0.016688160598278046, - -0.004997871816158295, - 0.004057884216308594, - 0.010232068598270416, - 0.0133562833070755, - 0.013345301151275635, - 0.010199420154094696, - 0.00400446355342865, - -0.005070596933364868, - -0.016778215765953064, - -0.030799061059951782, - -0.046750638633966446, - -0.0641978532075882, - -0.08266479521989822, - -0.12049765884876251, - -0.10230031609535217, - -0.08408336341381073, - -0.06634370237588882, - -0.049565233290195465, - -0.03420562297105789, - -0.020683839917182922, - -0.00936872512102127, - -0.0005689337849617004, - 0.005475498735904694, - 0.008599713444709778, - 0.00871848315000534, - 0.00582856684923172, - 0.00000877678394317627, - -0.008582107722759247, - -0.01970978081226349, - -0.03307069092988968, - -0.04830038547515869, - -0.06498344242572784, - -0.08266479521989822, - -0.12049765884876251, - -0.10502991825342178, - -0.0894680991768837, - -0.07423669844865799, - -0.05975118279457092, - -0.04640669748187065, - -0.0345672070980072, - -0.024555698037147522, - -0.01664523035287857, - -0.011051617562770844, - -0.00792740285396576, - -0.0073578134179115295, - -0.009358406066894531, - -0.013874582946300507, - -0.020783178508281708, - -0.029895737767219543, - -0.040963687002658844, - -0.05368512123823166, - -0.06771303713321686, - -0.08266479521989822, - -0.12049765884876251, - -0.10940773040056229, - -0.0981043130159378, - -0.08689573407173157, - -0.07608773559331894, - -0.0659751445055008, - -0.05683378502726555, - -0.04891301691532135, - -0.04242889955639839, - -0.03755831718444824, - -0.03443410247564316, - -0.03314147889614105, - -0.03371572494506836, - -0.03614116460084915, - -0.04035162553191185, - -0.04623228311538696, - -0.05362271890044212, - -0.06232133135199547, - -0.07209084928035736, - -0.08266479521989822, - -0.12049765884876251, - -0.11495935171842575, - -0.10905612260103226, - -0.10294899344444275, - -0.09680455923080444, - -0.09079042077064514, - -0.08507062494754791, - -0.07980119436979294, - -0.07512587308883667, - -0.07117217034101486, - -0.06804795563220978, - -0.06583844870328903, - -0.06460390239953995, - -0.06437800824642181, - -0.0651669129729271, - -0.06694911420345306, - -0.0696759819984436, - -0.07327313721179962, - -0.07764247059822083, - -0.08266478776931763, - -0.12049765884876251, - -0.12108316272497177, - -0.12113671004772186, - -0.12065683305263519, - -0.11965662240982056, - -0.11816336214542389, - -0.11621778458356857, - -0.1138729602098465, - -0.11119285225868225, - -0.10825055837631226, - -0.10512635111808777, - -0.10190543532371521, - -0.0986756756901741, - -0.09552516788244247, - -0.09253986179828644, - -0.08980117738246918, - -0.08738382160663605, - -0.08535373210906982, - -0.08376628905534744, - -0.08266478776931763 - ], - "z": [ - -2.4099538326263428, - -2.403815746307373, - -2.3875255584716797, - -2.3615269660949707, - -2.3265297412872314, - -2.2834882736206055, - -2.233576536178589, - -2.1781561374664307, - -2.1187386512756348, - -2.0569450855255127, - -1.9944607019424438, - -1.9329900741577148, - -1.8742098808288574, - -1.8197236061096191, - -1.7710175514221191, - -1.7294199466705322, - -1.696065902709961, - -1.6718648672103882, - -1.6574771404266357, - -1.6532952785491943, - -2.4099538326263428, - -2.4035794734954834, - -2.387058973312378, - -2.3608431816101074, - -2.3256473541259766, - -2.2824313640594482, - -2.2323739528656006, - -2.1768405437469482, - -2.1173460483551025, - -2.055513381958008, - -1.9930288791656494, - -1.931597352027893, - -1.872894287109375, - -1.8185209035873413, - -1.7699605226516724, - -1.7285375595092773, - -1.6953821182250977, - -1.671398401260376, - -1.6572407484054565, - -1.6532952785491943, - -2.4099538326263428, - -2.4034745693206787, - -2.386852264404297, - -2.3605401515960693, - -2.325256109237671, - -2.2819626331329346, - -2.2318406105041504, - -2.1762571334838867, - -2.1167285442352295, - -2.0548784732818604, - -1.9923940896987915, - -1.93097984790802, - -1.8723108768463135, - -1.8179876804351807, - -1.7694919109344482, - -1.7281463146209717, - -1.6950788497924805, - -1.6711914539337158, - -1.6571359634399414, - -1.6532952785491943, - -2.4099538326263428, - -2.403512716293335, - -2.386927366256714, - -2.3606503009796143, - -2.3253984451293945, - -2.282133102416992, - -2.23203444480896, - -2.176469326019287, - -2.116952896118164, - -2.0551092624664307, - -1.9926248788833618, - -1.9312043190002441, - -1.8725229501724243, - -1.8181815147399902, - -1.7696622610092163, - -1.7282885313034058, - -1.695189118385315, - -1.671266794204712, - -1.657173991203308, - -1.6532952785491943, - -2.4099538326263428, - -2.4036896228790283, - -2.3872764110565186, - -2.361161947250366, - -2.326058864593506, - -2.282923936843872, - -2.2329344749450684, - -2.1774537563323975, - -2.117995262145996, - -2.056180715560913, - -1.9936963319778442, - -1.9322465658187866, - -1.8735074996948242, - -1.8190815448760986, - -1.7704532146453857, - -1.728948950767517, - -1.6957008838653564, - -1.6716158390045166, - -1.657351016998291, - -1.6532952785491943, - -2.4099538326263428, - -2.4039862155914307, - -2.387861728668213, - -2.3620197772979736, - -2.3271656036376953, - -2.284249782562256, - -2.234443187713623, - -2.1791040897369385, - -2.1197421550750732, - -2.057976722717285, - -1.9954923391342163, - -1.9339935779571533, - -1.8751578330993652, - -1.8205902576446533, - -1.7717790603637695, - -1.730055809020996, - -1.6965584754943848, - -1.6722009181976318, - -1.6576476097106934, - -1.6532952785491943, - -2.4099538326263428, - -2.4043703079223633, - -2.3886194229125977, - -2.363130569458008, - -2.328599214553833, - -2.2859668731689453, - -2.2363970279693604, - -2.181241512298584, - -2.122004747390747, - -2.060302495956421, - -1.9978182315826416, - -1.9362560510635376, - -1.8772952556610107, - -1.8225440979003906, - -1.773496150970459, - -1.7314893007278442, - -1.6976693868637085, - -1.6729588508605957, - -1.658031702041626, - -1.6532952785491943, - -2.4099538326263428, - -2.4048004150390625, - -2.389467716217041, - -2.3643741607666016, - -2.3302040100097656, - -2.287889242172241, - -2.238584280014038, - -2.183634042739868, - -2.124537467956543, - -2.062906265258789, - -2.0004220008850098, - -1.9387887716293335, - -1.879687786102295, - -1.8247313499450684, - -1.7754184007644653, - -1.7330940961837769, - -1.6989128589630127, - -1.673807144165039, - -1.6584618091583252, - -1.6532952785491943, - -2.4099538326263428, - -2.4052298069000244, - -2.390314817428589, - -2.3656156063079834, - -2.331805944442749, - -2.2898082733154297, - -2.2407679557800293, - -2.1860227584838867, - -2.127065896987915, - -2.0655057430267334, - -2.003021478652954, - -1.9413173198699951, - -1.8820765018463135, - -1.8269150257110596, - -1.7773374319076538, - -1.7346961498260498, - -1.7001543045043945, - -1.6746540069580078, - -1.6588910818099976, - -1.6532952785491943, - -2.4099538326263428, - -2.405611753463745, - -2.391068458557129, - -2.36672043800354, - -2.3332319259643555, - -2.2915163040161133, - -2.242711305618286, - -2.1881487369537354, - -2.1293163299560547, - -2.067819356918335, - -2.0053348541259766, - -1.9435677528381348, - -1.884202480316162, - -1.8288583755493164, - -1.7790453433990479, - -1.7361220121383667, - -1.7012591361999512, - -1.675407886505127, - -1.6592731475830078, - -1.6532952785491943, - -2.4099538326263428, - -2.405905246734619, - -2.3916473388671875, - -2.3675689697265625, - -2.334326982498169, - -2.292827844619751, - -2.244204044342041, - -2.189781427383423, - -2.131044626235962, - -2.0695960521698, - -2.0071117877960205, - -1.945296049118042, - -1.8858351707458496, - -1.8303509950637817, - -1.7803571224212646, - -1.7372170686721802, - -1.7021077871322632, - -1.6759867668151855, - -1.6595666408538818, - -1.6532952785491943, - -2.4099538326263428, - -2.406078338623047, - -2.391988754272461, - -2.3680691719055176, - -2.334972620010376, - -2.2936012744903564, - -2.245084047317505, - -2.190743923187256, - -2.132063627243042, - -2.070643663406372, - -2.0081593990325928, - -1.946315050125122, - -1.8867977857589722, - -1.8312309980392456, - -1.7811305522918701, - -1.7378627061843872, - -1.7026081085205078, - -1.6763280630111694, - -1.6597397327423096, - -1.6532952785491943, - -2.4099538326263428, - -2.4061121940612793, - -2.3920555114746094, - -2.3681671619415283, - -2.3350987434387207, - -2.293752431869507, - -2.245255947113037, - -2.190932273864746, - -2.132262945175171, - -2.0708484649658203, - -2.008364200592041, - -1.946514368057251, - -1.8869860172271729, - -1.8314030170440674, - -1.7812817096710205, - -1.7379889488220215, - -1.7027058601379395, - -1.6763948202133179, - -1.6597734689712524, - -1.6532952785491943, - -2.4099538326263428, - -2.406002998352051, - -2.3918404579162598, - -2.367851734161377, - -2.3346920013427734, - -2.2932651042938232, - -2.244701385498047, - -2.1903257369995117, - -2.1316208839416504, - -2.070188522338867, - -2.007704019546509, - -1.945872187614441, - -1.886379361152649, - -1.8308485746383667, - -1.780794382095337, - -1.7375820875167847, - -1.7023906707763672, - -1.6761796474456787, - -1.659664511680603, - -1.6532952785491943, - -2.4099538326263428, - -2.4057631492614746, - -2.391366720199585, - -2.3671576976776123, - -2.3337960243225098, - -2.292191982269287, - -2.2434804439544678, - -2.1889898777008057, - -2.130207061767578, - -2.068734884262085, - -2.0062506198883057, - -1.944458246231079, - -1.885043740272522, - -1.829627513885498, - -1.7797212600708008, - -1.7366862297058105, - -1.7016963958740234, - -1.675706148147583, - -1.6594244241714478, - -1.6532952785491943, - -2.4099538326263428, - -2.4054179191589355, - -2.39068603515625, - -2.366159677505493, - -2.3325083255767822, - -2.290649652481079, - -2.241725206375122, - -2.187069892883301, - -2.1281745433807373, - -2.066645383834839, - -2.0041611194610596, - -1.9424258470535278, - -1.883123755455017, - -1.8278722763061523, - -1.7781788110733032, - -1.735398530960083, - -1.7006986141204834, - -1.6750253438949585, - -1.6590793132781982, - -1.6532952785491943, - -2.4099538326263428, - -2.4050052165985107, - -2.389871835708618, - -2.36496639251709, - -2.330968141555786, - -2.288804769515991, - -2.239626169204712, - -2.1847736835479736, - -2.125743865966797, - -2.0641465187072754, - -2.001662254333496, - -1.9399950504302979, - -1.8808274269104004, - -1.8257731199264526, - -1.7763339281082153, - -1.733858346939087, - -1.699505090713501, - -1.6742111444473267, - -1.6586666107177734, - -1.6532952785491943, - -2.4099538326263428, - -2.404569625854492, - -2.389012575149536, - -2.363706588745117, - -2.3293426036834717, - -2.2868576049804688, - -2.237410306930542, - -2.182349920272827, - -2.123178005218506, - -2.061508893966675, - -1.999024510383606, - -1.937429428100586, - -1.878403663635254, - -1.8235573768615723, - -1.7743867635726929, - -1.7322328090667725, - -1.6982455253601074, - -1.673351764678955, - -1.6582310199737549, - -1.6532952785491943, - -2.4099538326263428, - -2.404158353805542, - -2.3882009983062744, - -2.3625173568725586, - -2.327807664871216, - -2.2850189208984375, - -2.235318422317505, - -2.1800613403320312, - -2.120755672454834, - -2.05901837348938, - -1.9965341091156006, - -1.935006856918335, - -1.8761152029037476, - -1.8214653730392456, - -1.7725481986999512, - -1.7306978702545166, - -1.6970560550689697, - -1.6725404262542725, - -1.6578196287155151, - -1.6532952785491943, - -2.4099538326263428, - -2.403815746307373, - -2.3875255584716797, - -2.3615269660949707, - -2.3265297412872314, - -2.2834882736206055, - -2.233576536178589, - -2.1781561374664307, - -2.1187386512756348, - -2.0569450855255127, - -1.9944607019424438, - -1.9329900741577148, - -1.8742098808288574, - -1.8197236061096191, - -1.7710175514221191, - -1.7294199466705322, - -1.696065902709961, - -1.6718648672103882, - -1.6574771404266357, - -1.6532952785491943 - ] - }, - { - "alphahull": 0, - "color": "#FF97FF", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.15341779589653015, - 0.15134093165397644, - 0.14880140125751495, - 0.1458684653043747, - 0.14262215793132782, - 0.13915100693702698, - 0.13554969429969788, - 0.13191646337509155, - 0.1283504217863083, - 0.12494884431362152, - 0.12180450558662415, - 0.11900317668914795, - 0.11662127077579498, - 0.11472376435995102, - 0.11336241662502289, - 0.11257436126470566, - 0.11238109320402145, - 0.1127878800034523, - 0.11378363519906998, - 0.1153411865234375, - 0.15341779589653015, - 0.15945187211036682, - 0.16480204463005066, - 0.16932237148284912, - 0.17288953065872192, - 0.17540626227855682, - 0.17680387198925018, - 0.17704425752162933, - 0.17612087726593018, - 0.17405886948108673, - 0.17091453075408936, - 0.16677361726760864, - 0.16174906492233276, - 0.15597793459892273, - 0.14961767196655273, - 0.14284175634384155, - 0.13583499193191528, - 0.1287885308265686, - 0.12189458310604095, - 0.1153411865234375, - 0.15341779589653015, - 0.1668807864189148, - 0.17945724725723267, - 0.19080409407615662, - 0.20061182975769043, - 0.20861291885375977, - 0.21458911895751953, - 0.21837741136550903, - 0.21987444162368774, - 0.21903939545154572, - 0.21589505672454834, - 0.2105271816253662, - 0.20308220386505127, - 0.19376319646835327, - 0.18282434344291687, - 0.17056404054164886, - 0.15731672942638397, - 0.1434437334537506, - 0.12932349741458893, - 0.1153411865234375, - 0.15341779589653015, - 0.17282265424728394, - 0.19117888808250427, - 0.2079857885837555, - 0.22278490662574768, - 0.23517253994941711, - 0.2448108196258545, - 0.2514367997646332, - 0.2548697888851166, - 0.2550160884857178, - 0.2518717646598816, - 0.24552252888679504, - 0.2361416071653366, - 0.22398489713668823, - 0.20938396453857422, - 0.19273711740970612, - 0.17449840903282166, - 0.15516537427902222, - 0.13526536524295807, - 0.1153411865234375, - 0.15341779589653015, - 0.1766335666179657, - 0.19869674742221832, - 0.2190055400133133, - 0.23700594902038574, - 0.2522069811820984, - 0.26419395208358765, - 0.2726399600505829, - 0.27731457352638245, - 0.27809029817581177, - 0.2749459445476532, - 0.2679673135280609, - 0.2573447525501251, - 0.24336804449558258, - 0.2264183908700943, - 0.20695817470550537, - 0.18551816046237946, - 0.16268323361873627, - 0.13907626271247864, - 0.1153411790728569, - 0.15341779589653015, - 0.1779005378484726, - 0.20119613409042358, - 0.22266916930675507, - 0.2417338788509369, - 0.25787025690078735, - 0.270638108253479, - 0.2796891927719116, - 0.28477659821510315, - 0.2857615351676941, - 0.2826172113418579, - 0.2754293382167816, - 0.26439398527145386, - 0.24981220066547394, - 0.23208168148994446, - 0.21168610453605652, - 0.18918178975582123, - 0.16518263518810272, - 0.14034324884414673, - 0.1153411790728569, - 0.15341779589653015, - 0.1764862984418869, - 0.19840623438358307, - 0.21857969462871552, - 0.23645639419555664, - 0.251548707485199, - 0.2634449005126953, - 0.271820604801178, - 0.27644723653793335, - 0.2771986126899719, - 0.27405428886413574, - 0.2670999765396118, - 0.2565253973007202, - 0.24261900782585144, - 0.22576013207435608, - 0.20640860497951508, - 0.18509231507778168, - 0.162392720580101, - 0.13892899453639984, - 0.1153411790728569, - 0.15341779589653015, - 0.17254407703876495, - 0.19062933325767517, - 0.20718024671077728, - 0.2217453420162201, - 0.23392733931541443, - 0.2433938980102539, - 0.2498868703842163, - 0.2532290816307068, - 0.2533293664455414, - 0.2501850128173828, - 0.24388182163238525, - 0.23459166288375854, - 0.22256797552108765, - 0.20813876390457153, - 0.19169756770133972, - 0.17369286715984344, - 0.15461581945419312, - 0.1349867880344391, - 0.1153411865234375, - 0.15341779589653015, - 0.16650110483169556, - 0.17870821058750153, - 0.18970614671707153, - 0.19919493794441223, - 0.2069157063961029, - 0.2126578986644745, - 0.21626484394073486, - 0.21763817965984344, - 0.2167404145002365, - 0.21359607577323914, - 0.2082909345626831, - 0.2009696364402771, - 0.19183196127414703, - 0.18112713098526, - 0.16914714872837067, - 0.1562187820672989, - 0.14269469678401947, - 0.1289438009262085, - 0.1153411865234375, - 0.15341779589653015, - 0.15901219844818115, - 0.16393469274044037, - 0.16805100440979004, - 0.17124882340431213, - 0.17344096302986145, - 0.17456761002540588, - 0.17459802329540253, - 0.17353138327598572, - 0.17139676213264465, - 0.16825242340564728, - 0.16418412327766418, - 0.15930281579494476, - 0.15374167263507843, - 0.14765238761901855, - 0.14120104908943176, - 0.1345636248588562, - 0.1279211789369583, - 0.12145490944385529, - 0.1153411865234375, - 0.15341779589653015, - 0.15088891983032227, - 0.1479097306728363, - 0.14456145465373993, - 0.14093543589115143, - 0.13713060319423676, - 0.13325071334838867, - 0.12940162420272827, - 0.1256883144378662, - 0.12221208214759827, - 0.11906774342060089, - 0.11634106189012527, - 0.1141064241528511, - 0.11242479085922241, - 0.11134201288223267, - 0.11088764667510986, - 0.11107407510280609, - 0.11189620941877365, - 0.1133316308259964, - 0.1153411865234375, - 0.15341779589653015, - 0.14301155507564545, - 0.13236984610557556, - 0.12178296595811844, - 0.11153967678546906, - 0.10191941261291504, - 0.09318456053733826, - 0.08557339757680893, - 0.07929354161024094, - 0.07451629638671875, - 0.07137195020914078, - 0.0699462890625, - 0.07027819752693176, - 0.0723586231470108, - 0.07613082230091095, - 0.08149188756942749, - 0.0882955938577652, - 0.0963563323020935, - 0.10545426607131958, - 0.1153411865234375, - 0.15341779589653015, - 0.13623371720314026, - 0.11899906396865845, - 0.10218395292758942, - 0.0862470418214798, - 0.0716230720281601, - 0.058710917830467224, - 0.047862812876701355, - 0.03937464952468872, - 0.03347797691822052, - 0.030333638191223145, - 0.030027396976947784, - 0.03256761282682419, - 0.03788498044013977, - 0.04583447426557541, - 0.056199245154857635, - 0.06869657337665558, - 0.08298555016517639, - 0.09867642819881439, - 0.1153411939740181, - 0.15341779589653015, - 0.13128991425037384, - 0.10924629867076874, - 0.08788825571537018, - 0.06779836863279343, - 0.04952464997768402, - 0.03356553614139557, - 0.020356357097625732, - 0.010257452726364136, - 0.0035442709922790527, - 0.0003999173641204834, - 0.0009101927280426025, - 0.005061149597167969, - 0.012739598751068115, - 0.023736052215099335, - 0.037750571966171265, - 0.05440087616443634, - 0.07323278486728668, - 0.09373261779546738, - 0.1153411939740181, - 0.15341779589653015, - 0.1287158727645874, - 0.10416841506958008, - 0.0804450511932373, - 0.05819287151098251, - 0.03801887482404709, - 0.020473331212997437, - 0.00603485107421875, - -0.0049027204513549805, - -0.01204100251197815, - -0.015185356140136719, - -0.014249980449676514, - -0.009260356426239014, - -0.00035262107849121094, - 0.012230277061462402, - 0.02814507484436035, - 0.04695767164230347, - 0.06815490871667862, - 0.09115856885910034, - 0.1153411939740181, - 0.15341779589653015, - 0.12879051268100739, - 0.10431568324565887, - 0.08066090941429138, - 0.058471448719501495, - 0.03835255652666092, - 0.02085302025079727, - 0.006450191140174866, - -0.004463061690330505, - -0.011589020490646362, - -0.014733374118804932, - -0.013810321688652039, - -0.008845016360282898, - 0.00002707540988922119, - 0.012563951313495636, - 0.028423644602298737, - 0.047173529863357544, - 0.06830216944217682, - 0.09123322367668152, - 0.1153411939740181, - 0.15341779589653015, - 0.13150577247142792, - 0.10967214405536652, - 0.08851245790719986, - 0.06860390305519104, - 0.050489552319049835, - 0.03466349095106125, - 0.021557413041591644, - 0.011528819799423218, - 0.004851296544075012, - 0.0017069429159164429, - 0.0021815598011016846, - 0.0062622129917144775, - 0.013837553560733795, - 0.02470095455646515, - 0.038556113839149475, - 0.05502507835626602, - 0.07365863025188446, - 0.09394848346710205, - 0.1153411939740181, - 0.15341779589653015, - 0.13656741380691528, - 0.11965734511613846, - 0.10314885526895523, - 0.08749225735664368, - 0.07311463356018066, - 0.060408152639865875, - 0.04971940070390701, - 0.04133996367454529, - 0.035498395562171936, - 0.03235405683517456, - 0.03199271112680435, - 0.034424200654029846, - 0.03958221524953842, - 0.04732603579759598, - 0.057444460690021515, - 0.06966147571802139, - 0.0836438313126564, - 0.09901011735200882, - 0.1153411939740181, - 0.15341779589653015, - 0.14342691004276276, - 0.13318923115730286, - 0.12298402935266495, - 0.1130896583199501, - 0.10377602279186249, - 0.09529716521501541, - 0.08788436651229858, - 0.08173985034227371, - 0.0770311951637268, - 0.07388684898614883, - 0.07239259779453278, - 0.07258917391300201, - 0.07447123527526855, - 0.0779874324798584, - 0.08304186165332794, - 0.0894966572523117, - 0.0971757248044014, - 0.10586962103843689, - 0.1153411865234375, - 0.15341779589653015, - 0.15134093165397644, - 0.14880140125751495, - 0.1458684802055359, - 0.142622172832489, - 0.13915102183818817, - 0.13554972410202026, - 0.13191649317741394, - 0.12835045158863068, - 0.12494887411594391, - 0.12180452793836594, - 0.11900319904088974, - 0.11662129312753677, - 0.11472378671169281, - 0.11336243897676468, - 0.11257438361644745, - 0.11238110065460205, - 0.1127878874540329, - 0.11378364264965057, - 0.1153411865234375 - ], - "y": [ - -0.15341782569885254, - -0.1778392642736435, - -0.2010752260684967, - -0.22249189019203186, - -0.24150510132312775, - -0.2575961947441101, - -0.27032625675201416, - -0.2793480455875397, - -0.28441548347473145, - -0.28539031744003296, - -0.282245934009552, - -0.2750682234764099, - -0.2640528082847595, - -0.24950027465820312, - -0.23180755972862244, - -0.2114572525024414, - -0.18900445103645325, - -0.16506162285804749, - -0.14028188586235046, - -0.11534113436937332, - -0.15341782569885254, - -0.17707204818725586, - -0.1995617151260376, - -0.22027336061000824, - -0.23864206671714783, - -0.25416675209999084, - -0.26642394065856934, - -0.2750793397426605, - -0.2798967957496643, - -0.28074491024017334, - -0.27760058641433716, - -0.2705495357513428, - -0.25978410243988037, - -0.2455979883670807, - -0.22837811708450317, - -0.2085942029953003, - -0.18678590655326843, - -0.16354811191558838, - -0.13951465487480164, - -0.11534113436937332, - -0.15341784060001373, - -0.17371337115764618, - -0.1929359883069992, - -0.2105613350868225, - -0.2261086404323578, - -0.23915383219718933, - -0.24934101104736328, - -0.25639235973358154, - -0.2601155638694763, - -0.2604089379310608, - -0.2572645843029022, - -0.2507682740688324, - -0.24109713733196259, - -0.22851505875587463, - -0.21336518228054047, - -0.19606079161167145, - -0.1770738810300827, - -0.15692239999771118, - -0.13615599274635315, - -0.11534113436937332, - -0.15341784060001373, - -0.16812723875045776, - -0.18191608786582947, - -0.19440826773643494, - -0.20526301860809326, - -0.2141842544078827, - -0.2209286093711853, - -0.22531217336654663, - -0.22721529006958008, - -0.22658608853816986, - -0.2234417349100113, - -0.21786800026893616, - -0.21001693606376648, - -0.20010265707969666, - -0.18839561939239502, - -0.17521516978740692, - -0.16092081367969513, - -0.14590249955654144, - -0.13056986033916473, - -0.11534114181995392, - -0.15341784060001373, - -0.1609189808368683, - -0.16769617795944214, - -0.1735645979642868, - -0.17836414277553558, - -0.18196390569210052, - -0.18426568806171417, - -0.18520671129226685, - -0.18476128578186035, - -0.18294158577919006, - -0.1797972321510315, - -0.17541401088237762, - -0.1699114739894867, - -0.16343970596790314, - -0.15617527067661285, - -0.14831627905368805, - -0.140077143907547, - -0.13168257474899292, - -0.12336158752441406, - -0.11534114181995392, - -0.15341784060001373, - -0.15286970138549805, - -0.1518172025680542, - -0.15028904378414154, - -0.14832691848278046, - -0.14598435163497925, - -0.14332522451877594, - -0.14042207598686218, - -0.13735410571098328, - -0.13420499861240387, - -0.1310606449842453, - -0.12800683081150055, - -0.12512683868408203, - -0.1224992424249649, - -0.12019570171833038, - -0.11827905476093292, - -0.11680158972740173, - -0.11580360680818558, - -0.11531232297420502, - -0.11534114181995392, - -0.15341784060001373, - -0.1448516994714737, - -0.1359999030828476, - -0.12710389494895935, - -0.11840635538101196, - -0.11014452576637268, - -0.10254375636577606, - -0.0958113819360733, - -0.09013104438781738, - -0.08565770089626312, - -0.08251334726810455, - -0.08078376948833466, - -0.08051614463329315, - -0.08171777427196503, - -0.08435587584972382, - -0.08835849165916443, - -0.09361644089221954, - -0.09998629987239838, - -0.10729431360960007, - -0.11534114181995392, - -0.15341784060001373, - -0.1377338320016861, - -0.12195831537246704, - -0.1065216138958931, - -0.09184480458498001, - -0.07832823693752289, - -0.06634059548377991, - -0.05620887130498886, - -0.04820944368839264, - -0.04256051778793335, - -0.03941616415977478, - -0.03886216878890991, - -0.04091363400220871, - -0.04551461338996887, - -0.052539579570293427, - -0.06179693341255188, - -0.07303415983915329, - -0.08594471216201782, - -0.10017643868923187, - -0.11534114181995392, - -0.15341784060001373, - -0.1322874277830124, - -0.1112140640616417, - -0.0907726064324379, - -0.0715206190943718, - -0.05398327857255936, - -0.03863891214132309, - -0.02590610831975937, - -0.016132168471813202, - -0.009583726525306702, - -0.006439372897148132, - -0.006784901022911072, - -0.010610871016979218, - -0.017812922596931458, - -0.0281946063041687, - -0.04147275537252426, - -0.05728515237569809, - -0.07520046830177307, - -0.09473004192113876, - -0.11534114927053452, - -0.15341784060001373, - -0.1291026920080185, - -0.10493147373199463, - -0.08156352490186691, - -0.05963624268770218, - -0.03974778205156326, - -0.02244061976671219, - -0.00818684697151184, - 0.002624720335006714, - 0.009699150919914246, - 0.012843504548072815, - 0.011971995234489441, - 0.0071083903312683105, - -0.0016146302223205566, - -0.013959117233753204, - -0.029588371515274048, - -0.048076070845127106, - -0.06891787052154541, - -0.09154530614614487, - -0.11534114927053452, - -0.15341784060001373, - -0.1285247504711151, - -0.10379134118556976, - -0.07989231497049332, - -0.05747953802347183, - -0.037164412438869476, - -0.01950104534626007, - -0.00497126579284668, - 0.006028607487678528, - 0.013198494911193848, - 0.016342848539352417, - 0.015375882387161255, - 0.010323971509933472, - 0.0013249516487121582, - -0.011375747621059418, - -0.0274316668510437, - -0.04640486091375351, - -0.06777774542570114, - -0.09096735715866089, - -0.11534114927053452, - -0.15341784060001373, - -0.1306162178516388, - -0.10791723430156708, - -0.08594007790088654, - -0.06528421491384506, - -0.046513110399246216, - -0.03013874590396881, - -0.016607806086540222, - -0.006289377808570862, - 0.0005350857973098755, - 0.003679439425468445, - 0.0030578970909118652, - -0.0013125687837600708, - -0.009312763810157776, - -0.02072443813085556, - -0.03523635119199753, - -0.05245262384414673, - -0.07190363109111786, - -0.09305883198976517, - -0.11534114927053452, - -0.15341784060001373, - -0.13515044748783112, - -0.11686202883720398, - -0.09905144572257996, - -0.08220450580120087, - -0.06678076833486557, - -0.05320096015930176, - -0.04183546453714371, - -0.032994337379932404, - -0.026918746531009674, - -0.023774392902851105, - -0.023647062480449677, - -0.026540227234363556, - -0.032374970614910126, - -0.04099211096763611, - -0.05215662717819214, - -0.06556398421525955, - -0.08084843307733536, - -0.09759306907653809, - -0.11534114927053452, - -0.15341784060001373, - -0.14163611829280853, - -0.12965644896030426, - -0.1178056076169014, - -0.10640686750411987, - -0.09577114135026932, - -0.08618855476379395, - -0.07792048156261444, - -0.07119247317314148, - -0.06618804484605789, - -0.06304369121789932, - -0.06184519827365875, - -0.06262524425983429, - -0.06536257266998291, - -0.06998249143362045, - -0.07635898888111115, - -0.08431815356016159, - -0.09364284574985504, - -0.1040787324309349, - -0.11534114181995392, - -0.15341784060001373, - -0.14937035739421844, - -0.14491397142410278, - -0.14017023146152496, - -0.13526852428913116, - -0.13034258782863617, - -0.12552674114704132, - -0.12095239013433456, - -0.11674429476261139, - -0.113017238676548, - -0.10987289249897003, - -0.10739701986312866, - -0.10565716028213501, - -0.10470076650381088, - -0.1045539379119873, - -0.10522066801786423, - -0.10668277740478516, - -0.10890037566423416, - -0.11181297898292542, - -0.11534114181995392, - -0.15341784060001373, - -0.15751507878303528, - -0.16098123788833618, - -0.16372177004814148, - -0.16566193103790283, - -0.1667487770318985, - -0.16695266962051392, - -0.16626806557178497, - -0.16471362113952637, - -0.1623317301273346, - -0.15918737649917603, - -0.15536634624004364, - -0.15097282826900482, - -0.14612670242786407, - -0.14096014201641083, - -0.1356140673160553, - -0.13023431599140167, - -0.12496764212846756, - -0.11995770037174225, - -0.11534114181995392, - -0.15341784060001373, - -0.16518767178058624, - -0.17611713707447052, - -0.18590810894966125, - -0.19429349899291992, - -0.20104461908340454, - -0.20597726106643677, - -0.20895692706108093, - -0.2099023014307022, - -0.20878762006759644, - -0.20564326643943787, - -0.20055502653121948, - -0.19366170465946198, - -0.18515129387378693, - -0.17525598406791687, - -0.16424565017223358, - -0.15242063999176025, - -0.1401035338640213, - -0.1276302933692932, - -0.11534114181995392, - -0.15341784060001373, - -0.17155668139457703, - -0.18868142366409302, - -0.20432494580745697, - -0.21806055307388306, - -0.2295135259628296, - -0.23837152123451233, - -0.24439288675785065, - -0.24741336703300476, - -0.2473505735397339, - -0.24420621991157532, - -0.23806609213352203, - -0.2290976494550705, - -0.2175455391407013, - -0.2037249058485031, - -0.18801268935203552, - -0.17083749175071716, - -0.1526678204536438, - -0.1339992880821228, - -0.11534114181995392, - -0.15341784060001373, - -0.175931915640831, - -0.19731256365776062, - -0.21697653830051422, - -0.23438748717308044, - -0.24907049536705017, - -0.2606250047683716, - -0.2687359154224396, - -0.2731819152832031, - -0.2738417088985443, - -0.27069735527038574, - -0.2638346254825592, - -0.2534406781196594, - -0.23979905247688293, - -0.2232818603515625, - -0.2043396532535553, - -0.18348908424377441, - -0.1612989604473114, - -0.13837453722953796, - -0.11534113436937332, - -0.15341782569885254, - -0.1778392642736435, - -0.2010752260684967, - -0.22249189019203186, - -0.24150510132312775, - -0.2575961947441101, - -0.27032625675201416, - -0.2793480455875397, - -0.28441548347473145, - -0.28539031744003296, - -0.282245934009552, - -0.2750682234764099, - -0.2640528082847595, - -0.24950027465820312, - -0.23180755972862244, - -0.2114572525024414, - -0.18900445103645325, - -0.16506162285804749, - -0.14028188586235046, - -0.11534113436937332 - ], - "z": [ - -3.0683560371398926, - -3.0620198249816895, - -3.0454697608947754, - -3.019158124923706, - -2.98380184173584, - -2.940365791320801, - -2.8900346755981445, - -2.834181308746338, - -2.774329423904419, - -2.712111473083496, - -2.6492247581481934, - -2.5873842239379883, - -2.5282773971557617, - -2.4735159873962402, - -2.424593925476074, - -2.382845878601074, - -2.34941029548645, - -2.3251993656158447, - -2.3108737468719482, - -2.30682373046875, - -3.0683560371398926, - -3.061652421951294, - -3.044745445251465, - -3.0180962085723877, - -2.982431650161743, - -2.9387245178222656, - -2.888167142868042, - -2.8321385383605957, - -2.7721669673919678, - -2.709888219833374, - -2.6470015048980713, - -2.585221767425537, - -2.5262343883514404, - -2.4716484546661377, - -2.422952651977539, - -2.3814756870269775, - -2.348348617553711, - -2.324475049972534, - -2.310506582260132, - -2.30682373046875, - -3.0683560371398926, - -3.0614490509033203, - -3.044343948364258, - -3.017507791519165, - -2.9816722869873047, - -2.937814712524414, - -2.887131929397583, - -2.8310060501098633, - -2.770968198776245, - -2.708656072616577, - -2.6457691192626953, - -2.5840232372283936, - -2.525102138519287, - -2.4706132411956787, - -2.4220430850982666, - -2.380716323852539, - -2.3477602005004883, - -2.324073553085327, - -2.310302972793579, - -2.30682373046875, - -3.0683560371398926, - -3.0614311695098877, - -3.04430890083313, - -3.017456293106079, - -2.9816057682037354, - -2.9377353191375732, - -2.8870415687561035, - -2.830907106399536, - -2.7708635330200195, - -2.7085483074188232, - -2.6456615924835205, - -2.583918333053589, - -2.52500319480896, - -2.470522880554199, - -2.4219634532928467, - -2.3806498050689697, - -2.3477087020874023, - -2.324038505554199, - -2.3102850914001465, - -2.30682373046875, - -3.0683560371398926, - -3.061601161956787, - -3.0446441173553467, - -3.0179476737976074, - -2.9822397232055664, - -2.9384946823120117, - -2.8879055976867676, - -2.8318521976470947, - -2.7718639373779297, - -2.7095768451690674, - -2.6466901302337646, - -2.584918975830078, - -2.5259482860565186, - -2.4713869094848633, - -2.422722816467285, - -2.381283760070801, - -2.3481998443603516, - -2.324373722076416, - -2.310455083847046, - -2.30682373046875, - -3.0683560371398926, - -3.0619401931762695, - -3.0453131198883057, - -3.018928050994873, - -2.9835052490234375, - -2.9400105476379395, - -2.8896303176879883, - -2.8337390422821045, - -2.7738611698150635, - -2.71163010597229, - -2.6487433910369873, - -2.586916208267212, - -2.5278351306915283, - -2.473111629486084, - -2.424238681793213, - -2.382549285888672, - -2.3491804599761963, - -2.325042724609375, - -2.3107941150665283, - -2.30682373046875, - -3.0683560371398926, - -3.0624117851257324, - -3.04624342918396, - -3.020291805267334, - -2.985265016555786, - -2.9421186447143555, - -2.892029047012329, - -2.8363630771636963, - -2.776638984680176, - -2.7144856452941895, - -2.6515989303588867, - -2.589693784713745, - -2.530458927154541, - -2.475510358810425, - -2.426346778869629, - -2.3843090534210205, - -2.3505442142486572, - -2.3259730339050293, - -2.311265707015991, - -2.30682373046875, - -3.0683560371398926, - -3.062964916229248, - -3.0473344326019287, - -3.021890878677368, - -2.9873287677764893, - -2.9445903301239014, - -2.8948416709899902, - -2.839439868927002, - -2.779895782470703, - -2.717833995819092, - -2.654947280883789, - -2.5929508209228516, - -2.5335357189178467, - -2.478322982788086, - -2.428818702697754, - -2.3863728046417236, - -2.3521432876586914, - -2.327064037322998, - -2.311818838119507, - -2.30682373046875, - -3.0683560371398926, - -3.0635392665863037, - -3.0484676361083984, - -3.023552179336548, - -2.9894723892211914, - -2.9471583366394043, - -2.897763729095459, - -2.8426361083984375, - -2.7832791805267334, - -2.7213122844696045, - -2.6584255695343018, - -2.596334218978882, - -2.5367319583892822, - -2.4812450408935547, - -2.4313864707946777, - -2.388516426086426, - -2.353804349899292, - -2.3281972408294678, - -2.3123931884765625, - -2.30682373046875, - -3.0683560371398926, - -3.064073085784912, - -3.049520492553711, - -3.0250954627990723, - -2.9914638996124268, - -2.9495437145233154, - -2.9004781246185303, - -2.8456053733825684, - -2.7864224910736084, - -2.724543571472168, - -2.6616568565368652, - -2.5994772911071777, - -2.539701461791992, - -2.483959436416626, - -2.433772087097168, - -2.390507936477661, - -2.3553476333618164, - -2.3292500972747803, - -2.312927007675171, - -2.30682373046875, - -3.0683560371398926, - -3.0645079612731934, - -3.0503787994384766, - -3.026353359222412, - -2.9930875301361084, - -2.951488494873047, - -2.902690887451172, - -2.8480260372161865, - -2.788984775543213, - -2.727177858352661, - -2.6642909049987793, - -2.6020395755767822, - -2.5421218872070312, - -2.4861721992492676, - -2.4357166290283203, - -2.3921315670013428, - -2.3566057682037354, - -2.330108165740967, - -2.3133621215820312, - -2.30682373046875, - -3.0683560371398926, - -3.0647974014282227, - -3.0509493350982666, - -3.0271899700164795, - -2.9941670894622803, - -2.9527816772460938, - -2.9041624069213867, - -2.849635601043701, - -2.7906887531280518, - -2.7289295196533203, - -2.6660425662994385, - -2.603743553161621, - -2.543731451034546, - -2.4876437187194824, - -2.437009811401367, - -2.3932111263275146, - -2.3574421405792236, - -2.330678939819336, - -2.3136513233184814, - -2.30682373046875, - -3.0683560371398926, - -3.0649094581604004, - -3.051170587539673, - -3.0275142192840576, - -2.9945855140686035, - -2.9532830715179443, - -2.9047329425811768, - -2.850259780883789, - -2.791349411010742, - -2.7296087741851807, - -2.666721820831299, - -2.6044042110443115, - -2.544355630874634, - -2.4882142543792725, - -2.4375112056732178, - -2.393629789352417, - -2.357766628265381, - -2.330900192260742, - -2.313763380050659, - -2.30682373046875, - -3.0683560371398926, - -3.0648324489593506, - -3.051018714904785, - -3.0272912979125977, - -2.994297981262207, - -2.9529383182525635, - -2.9043407440185547, - -2.8498308658599854, - -2.7908952236175537, - -2.7291419506073, - -2.666254997253418, - -2.603950262069702, - -2.54392671585083, - -2.4878220558166504, - -2.437166690826416, - -2.3933420181274414, - -2.357543706893921, - -2.3307480812072754, - -2.3136863708496094, - -2.30682373046875, - -3.0683560371398926, - -3.0645744800567627, - -3.0505096912384033, - -3.026545286178589, - -2.993335247039795, - -2.951785087585449, - -2.9030284881591797, - -2.848395347595215, - -2.7893757820129395, - -2.7275795936584473, - -2.6646928787231445, - -2.602430582046509, - -2.5424911975860596, - -2.4865097999572754, - -2.4360132217407227, - -2.3923792839050293, - -2.356797695159912, - -2.3302392959594727, - -2.3134284019470215, - -2.30682373046875, - -3.0683560371398926, - -3.0641634464263916, - -3.049698829650879, - -3.0253570079803467, - -2.9918015003204346, - -2.9499480724334717, - -2.9009382724761963, - -2.8461086750030518, - -2.7869553565979004, - -2.7250914573669434, - -2.6622045040130615, - -2.6000101566314697, - -2.5402047634124756, - -2.484419584274292, - -2.434176445007324, - -2.390845537185669, - -2.355609178543091, - -2.3294284343719482, - -2.3130173683166504, - -2.30682373046875, - -3.0683560371398926, - -3.0636439323425293, - -3.0486743450164795, - -3.023854970932007, - -2.989863395690918, - -2.9476265907287598, - -2.898296356201172, - -2.8432188034057617, - -2.7838962078094482, - -2.7219464778900146, - -2.659059762954712, - -2.5969510078430176, - -2.5373148918151855, - -2.4817776679992676, - -2.431854724884033, - -2.3889074325561523, - -2.35410737991333, - -2.328403949737549, - -2.312498092651367, - -2.30682373046875, - -3.0683560371398926, - -3.063072443008423, - -3.047546863555908, - -3.022202253341675, - -2.9877305030822754, - -2.9450716972351074, - -2.8953895568847656, - -2.840039014816284, - -2.7805302143096924, - -2.7184860706329346, - -2.6555991172790527, - -2.5935850143432617, - -2.534134864807129, - -2.4788708686828613, - -2.42930006980896, - -2.3867745399475098, - -2.352454662322998, - -2.3272762298583984, - -2.3119263648986816, - -2.30682373046875, - -3.0683560371398926, - -3.0625107288360596, - -3.046438694000244, - -3.020577907562256, - -2.9856343269348145, - -2.942560911178589, - -2.8925323486328125, - -2.836913585662842, - -2.7772216796875, - -2.7150847911834717, - -2.652198076248169, - -2.5902764797210693, - -2.5310096740722656, - -2.476013660430908, - -2.4267890453338623, - -2.384678363800049, - -2.350830316543579, - -2.3261682987213135, - -2.3113646507263184, - -2.30682373046875, - -3.0683560371398926, - -3.0620198249816895, - -3.0454697608947754, - -3.019158124923706, - -2.98380184173584, - -2.940365791320801, - -2.8900346755981445, - -2.834181308746338, - -2.774329423904419, - -2.712111473083496, - -2.6492247581481934, - -2.5873842239379883, - -2.5282773971557617, - -2.4735159873962402, - -2.424593925476074, - -2.382845878601074, - -2.34941029548645, - -2.3251993656158447, - -2.3108737468719482, - -2.30682373046875 - ] - }, - { - "alphahull": 0, - "color": "#FF97FF", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.15042683482170105, - 0.15803785622119904, - 0.16694650053977966, - 0.17690974473953247, - 0.18765583634376526, - 0.19889163970947266, - 0.2103106826543808, - 0.2216014713048935, - 0.2324560284614563, - 0.24257826805114746, - 0.2516920864582062, - 0.2595489025115967, - 0.2659343481063843, - 0.27067428827285767, - 0.27363941073417664, - 0.27474886178970337, - 0.2739723324775696, - 0.2713310420513153, - 0.2668970227241516, - 0.26079124212265015, - 0.15042683482170105, - 0.1610429584980011, - 0.17287471890449524, - 0.18559938669204712, - 0.19886986911296844, - 0.21232417225837708, - 0.22559531033039093, - 0.23832127451896667, - 0.25015494227409363, - 0.2607734799385071, - 0.2698873281478882, - 0.2772477865219116, - 0.28265416622161865, - 0.2859589159488678, - 0.28707194328308105, - 0.28596287965774536, - 0.28266197443008423, - 0.2772592604160309, - 0.2699021100997925, - 0.26079124212265015, - 0.15042683482170105, - 0.16297918558120728, - 0.1766943782567978, - 0.19119827449321747, - 0.20609526336193085, - 0.2209789901971817, - 0.23544345796108246, - 0.2490941286087036, - 0.2615586519241333, - 0.2724969983100891, - 0.28161078691482544, - 0.2886514961719513, - 0.2934269905090332, - 0.2958070635795593, - 0.2957267761230469, - 0.29318827390670776, - 0.28826087713241577, - 0.28107893466949463, - 0.27183836698532104, - 0.26079124212265015, - 0.15042683482170105, - 0.16363674402236938, - 0.17799153923988342, - 0.19309967756271362, - 0.20854903757572174, - 0.22391818463802338, - 0.2387879192829132, - 0.2527526319026947, - 0.26543137431144714, - 0.2764783203601837, - 0.28559213876724243, - 0.29252421855926514, - 0.2970854938030243, - 0.29915153980255127, - 0.29866597056388855, - 0.29564204812049866, - 0.29016226530075073, - 0.28237608075141907, - 0.27249592542648315, - 0.26079124212265015, - 0.15042683482170105, - 0.16294434666633606, - 0.17662565410137177, - 0.19109754264354706, - 0.20596526563167572, - 0.2208232581615448, - 0.23526626825332642, - 0.24890029430389404, - 0.261353462934494, - 0.272286057472229, - 0.2813998758792877, - 0.288446307182312, - 0.29323315620422363, - 0.2956298589706421, - 0.2955710291862488, - 0.29305827617645264, - 0.288160115480423, - 0.2810102105140686, - 0.27180352807044983, - 0.26079124212265015, - 0.15042683482170105, - 0.1609770506620407, - 0.1727447211742401, - 0.1854088306427002, - 0.19862395524978638, - 0.2120295912027359, - 0.22526012361049652, - 0.23795461654663086, - 0.24976679682731628, - 0.2603744864463806, - 0.26948830485343933, - 0.2768596410751343, - 0.28228747844696045, - 0.2856237292289734, - 0.2867773771286011, - 0.2857169508934021, - 0.2824714183807373, - 0.27712926268577576, - 0.2698362171649933, - 0.26079124212265015, - 0.15042683482170105, - 0.15794803202152252, - 0.16676929593086243, - 0.1766500025987625, - 0.18732064962387085, - 0.19849012792110443, - 0.20985381305217743, - 0.22110170125961304, - 0.23192699253559113, - 0.2420344054698944, - 0.2511482238769531, - 0.2590198516845703, - 0.2654345631599426, - 0.2702174186706543, - 0.2732378840446472, - 0.2744136452674866, - 0.2737125754356384, - 0.27115383744239807, - 0.2668071985244751, - 0.26079124212265015, - 0.15042683482170105, - 0.15418553352355957, - 0.15934692323207855, - 0.16577023267745972, - 0.17328022420406342, - 0.18167206645011902, - 0.19071684777736664, - 0.20016784965991974, - 0.20976728200912476, - 0.219253271818161, - 0.22836709022521973, - 0.23686012625694275, - 0.24450072646141052, - 0.2510804533958435, - 0.256419837474823, - 0.26037323474884033, - 0.2628328204154968, - 0.2637314796447754, - 0.26304468512535095, - 0.26079124212265015, - 0.15042683482170105, - 0.15009728074073792, - 0.1512819230556488, - 0.15394848585128784, - 0.15802419185638428, - 0.1633979082107544, - 0.16992302238941193, - 0.17742155492305756, - 0.18568897247314453, - 0.19449976086616516, - 0.20361357927322388, - 0.21278183162212372, - 0.22175443172454834, - 0.2302866131067276, - 0.23814566433429718, - 0.2451172173023224, - 0.25101107358932495, - 0.25566646456718445, - 0.2589564323425293, - 0.26079124212265015, - 0.15042684972286224, - 0.14612630009651184, - 0.14344827830791473, - 0.14246582984924316, - 0.14320579171180725, - 0.14564792811870575, - 0.14972566068172455, - 0.15532773733139038, - 0.16230136156082153, - 0.17045630514621735, - 0.17957012355327606, - 0.18939422070980072, - 0.19966059923171997, - 0.21008926630020142, - 0.22039568424224854, - 0.23029878735542297, - 0.23952841758728027, - 0.24783281981945038, - 0.2549854516983032, - 0.26079124212265015, - 0.15042684972286224, - 0.1427028924226761, - 0.13669486343860626, - 0.1325666308403015, - 0.13043080270290375, - 0.1303456425666809, - 0.13231346011161804, - 0.1362805962562561, - 0.14213883876800537, - 0.14972838759422302, - 0.15884220600128174, - 0.16923169791698456, - 0.1806134730577469, - 0.1926770657300949, - 0.2050933986902237, - 0.21752379834651947, - 0.22962921857833862, - 0.2410794049501419, - 0.25156205892562866, - 0.26079124212265015, - 0.15042684972286224, - 0.14019806683063507, - 0.13175353407859802, - 0.1253235638141632, - 0.12108360230922699, - 0.11914925277233124, - 0.11957331001758575, - 0.12234419584274292, - 0.12738633155822754, - 0.1345621794462204, - 0.1436759978532791, - 0.15447919070720673, - 0.1666770726442337, - 0.17993690073490143, - 0.19389700889587402, - 0.2081766128540039, - 0.22238615155220032, - 0.23613807559013367, - 0.24905723333358765, - 0.26079124212265015, - 0.15042684972286224, - 0.13888323307037354, - 0.12915974855422974, - 0.12152157723903656, - 0.11617710441350937, - 0.11327209323644638, - 0.11288580298423767, - 0.1150287538766861, - 0.11964249610900879, - 0.1266011893749237, - 0.13571500778198242, - 0.14673535525798798, - 0.15936163067817688, - 0.17324939370155334, - 0.18801985681056976, - 0.2032701075077057, - 0.21858416497707367, - 0.23354429006576538, - 0.2477424144744873, - 0.26079124212265015, - 0.15042684972286224, - 0.13890090584754944, - 0.12919458746910095, - 0.12157264351844788, - 0.11624301224946976, - 0.11335103958845139, - 0.11297562718391418, - 0.11512701213359833, - 0.11974651366472244, - 0.12670812010765076, - 0.13582193851470947, - 0.14683936536312103, - 0.1594598889350891, - 0.17333921790122986, - 0.18809878826141357, - 0.20333601534366608, - 0.21863523125648499, - 0.2335791289806366, - 0.24776005744934082, - 0.26079124212265015, - 0.15042684972286224, - 0.1402491331100464, - 0.13185426592826843, - 0.12547123432159424, - 0.12127416580915451, - 0.1193775162100792, - 0.11983305215835571, - 0.12262831628322601, - 0.12768709659576416, - 0.13487136363983154, - 0.14398518204689026, - 0.15477994084358215, - 0.1669611930847168, - 0.1801966428756714, - 0.19412526488304138, - 0.20836716890335083, - 0.22253382205963135, - 0.23623880743980408, - 0.24910829961299896, - 0.26079124212265015, - 0.15042684972286224, - 0.1427818238735199, - 0.13685058057308197, - 0.13279488682746887, - 0.13072536885738373, - 0.13069847226142883, - 0.13271495699882507, - 0.13671979308128357, - 0.14260375499725342, - 0.1502063274383545, - 0.1593201458454132, - 0.1696965992450714, - 0.18105265498161316, - 0.19307854771614075, - 0.2054462432861328, - 0.21781836450099945, - 0.2298574596643448, - 0.24123512208461761, - 0.25164100527763367, - 0.26079124212265015, - 0.15042684972286224, - 0.14622455835342407, - 0.1436421126127243, - 0.14274996519088745, - 0.14357244968414307, - 0.1460871398448944, - 0.150225430727005, - 0.15587443113327026, - 0.1628800630569458, - 0.1710512340068817, - 0.18016505241394043, - 0.189972922205925, - 0.20020729303359985, - 0.21058902144432068, - 0.2208348959684372, - 0.23066546022891998, - 0.23981255292892456, - 0.24802665412425995, - 0.25508370995521545, - 0.26079124212265015, - 0.15042683482170105, - 0.15020421147346497, - 0.1514928638935089, - 0.15425768494606018, - 0.15842323005199432, - 0.16387587785720825, - 0.17046689987182617, - 0.17801649868488312, - 0.1863187700510025, - 0.19514721632003784, - 0.20426103472709656, - 0.2134116142988205, - 0.2223493754863739, - 0.23083049058914185, - 0.23862364888191223, - 0.24551624059677124, - 0.2513202726840973, - 0.25587740540504456, - 0.25906336307525635, - 0.26079124212265015, - 0.15042683482170105, - 0.15428954362869263, - 0.15955212712287903, - 0.16607099771499634, - 0.17366838455200195, - 0.18213701248168945, - 0.1912459135055542, - 0.2007465809583664, - 0.21037989854812622, - 0.21988308429718018, - 0.2289969027042389, - 0.2374727576971054, - 0.24507945775985718, - 0.2516095042228699, - 0.25688478350639343, - 0.2607613801956177, - 0.26313358545303345, - 0.2639366686344147, - 0.2631487250328064, - 0.26079124212265015, - 0.15042683482170105, - 0.15803785622119904, - 0.16694650053977966, - 0.17690974473953247, - 0.18765583634376526, - 0.19889163970947266, - 0.210310697555542, - 0.2216014862060547, - 0.2324560433626175, - 0.24257828295230865, - 0.25169211626052856, - 0.2595489025115967, - 0.2659343481063843, - 0.27067428827285767, - 0.27363941073417664, - 0.27474886178970337, - 0.2739723324775696, - 0.2713310420513153, - 0.2668970227241516, - 0.26079124212265015 - ], - "y": [ - -0.05014233663678169, - -0.06084432080388069, - -0.07175612449645996, - -0.0825800970196724, - -0.09302099794149399, - -0.10279400646686554, - -0.1116325780749321, - -0.11929558217525482, - -0.1255740225315094, - -0.13029660284519196, - -0.13333453238010406, - -0.13460493087768555, - -0.1340731680393219, - -0.13175371289253235, - -0.12770986557006836, - -0.1220519095659256, - -0.11493419110774994, - -0.10655086487531662, - -0.09713059663772583, - -0.08693035691976547, - -0.05014234036207199, - -0.058003827929496765, - -0.06615261733531952, - -0.07436642795801163, - -0.082421213388443, - -0.09009724855422974, - -0.0971851646900177, - -0.10349161922931671, - -0.1088445782661438, - -0.11309803277254105, - -0.11613596230745316, - -0.11787550151348114, - -0.11826919764280319, - -0.11730630695819855, - -0.11501310020685196, - -0.1114521324634552, - -0.10672052204608917, - -0.10094736516475677, - -0.0942901074886322, - -0.08693035691976547, - -0.05014234036207199, - -0.05433860793709755, - -0.05892215296626091, - -0.0637679472565651, - -0.06874381750822067, - -0.07371401786804199, - -0.07854299247264862, - -0.08309901505708694, - -0.08725780248641968, - -0.09090591222047806, - -0.09394384175539017, - -0.09628872573375702, - -0.09787659347057343, - -0.09866413474082947, - -0.09862986952066422, - -0.09777472913265228, - -0.09612204134464264, - -0.09371689707040787, - -0.09062488377094269, - -0.08693035691976547, - -0.05014234036207199, - -0.05024584382772446, - -0.05084826052188873, - -0.0519331656396389, - -0.05347096174955368, - -0.05541970208287239, - -0.05772622674703598, - -0.06032763049006462, - -0.06315293908119202, - -0.06612509489059448, - -0.06916302442550659, - -0.07218386232852936, - -0.0751052051782608, - -0.07784736901521683, - -0.08033554255962372, - -0.08250188082456589, - -0.08428726345300674, - -0.08564300090074539, - -0.0865321159362793, - -0.08693035691976547, - -0.05014234036207199, - -0.04616904258728027, - -0.04280587285757065, - -0.04014455899596214, - -0.038257695734500885, - -0.03719675913453102, - -0.036990687251091, - -0.037645094096660614, - -0.03914213553071022, - -0.04144097492098808, - -0.04447890818119049, - -0.04817306250333786, - -0.052422672510147095, - -0.05711182579398155, - -0.062112607061862946, - -0.0672886073589325, - -0.07249865680932999, - -0.07760061323642731, - -0.08245532214641571, - -0.08693035691976547, - -0.05014234036207199, - -0.04255000501871109, - -0.03566650301218033, - -0.029679611325263977, - -0.024752624332904816, - -0.021019943058490753, - -0.01858339086174965, - -0.017509423196315765, - -0.017827332019805908, - -0.019528456032276154, - -0.022566385567188263, - -0.02685825526714325, - -0.032287001609802246, - -0.0387045219540596, - -0.04593578726053238, - -0.053783535957336426, - -0.06203370541334152, - -0.07046124339103699, - -0.07883627712726593, - -0.08693035691976547, - -0.05014234036207199, - -0.03978089243173599, - -0.030203819274902344, - -0.021672356873750687, - -0.014419220387935638, - -0.008642259985208511, - -0.004499055445194244, - -0.0021026134490966797, - -0.0015183165669441223, - -0.0027621015906333923, - -0.005800031125545502, - -0.010549239814281464, - -0.01688019186258316, - -0.024620186537504196, - -0.03355809673666954, - -0.04345013201236725, - -0.05402645096182823, - -0.064998559653759, - -0.07606717199087143, - -0.08693036437034607, - -0.05014234408736229, - -0.03816179186105728, - -0.027009781450033188, - -0.016990508884191513, - -0.00837726891040802, - -0.0014050155878067017, - 0.003736071288585663, - 0.00690576434135437, - 0.008017577230930328, - 0.0070412009954452515, - 0.004003271460533142, - -0.001013346016407013, - -0.007871817797422409, - -0.016385063529014587, - -0.02632085606455803, - -0.03740818053483963, - -0.04934460297226906, - -0.061804525554180145, - -0.07444807142019272, - -0.08693036437034607, - -0.05014234408736229, - -0.037868157029151917, - -0.026430517435073853, - -0.01614142209291458, - -0.007281515747308731, - -0.00009248405694961548, - 0.005229577422142029, - 0.00853949785232544, - 0.009746983647346497, - 0.00881911814212799, - 0.005781188607215881, - 0.0007160604000091553, - -0.00623808428645134, - -0.01489156112074852, - -0.025008324533700943, - -0.03631242737174034, - -0.048495516180992126, - -0.06122526153922081, - -0.07415443658828735, - -0.08693036437034607, - -0.05014234036207199, - -0.03893180564045906, - -0.02852880209684372, - -0.019217099994421005, - -0.011250700801610947, - -0.004846900701522827, - -0.0001803860068321228, - 0.002621568739414215, - 0.003482505679130554, - 0.0023789554834365845, - -0.0006589740514755249, - -0.005548417568206787, - -0.012156013399362564, - -0.020301520824432373, - -0.029762741178274155, - -0.04028160870075226, - -0.05157119408249855, - -0.06332354247570038, - -0.0752180814743042, - -0.08693036437034607, - -0.05014234036207199, - -0.041237473487854004, - -0.03307724744081497, - -0.025884252041578293, - -0.019854694604873657, - -0.015153046697378159, - -0.011907555162906647, - -0.010206744074821472, - -0.010097023099660873, - -0.01158137246966362, - -0.01461930200457573, - -0.019127946346998215, - -0.024984322488307953, - -0.032028693705797195, - -0.040068887174129486, - -0.04888560622930527, - -0.058238349854946136, - -0.06787198781967163, - -0.07752375304698944, - -0.08693035691976547, - -0.05014234036207199, - -0.044535309076309204, - -0.039582960307598114, - -0.035420387983322144, - -0.032161127775907516, - -0.029894094914197922, - -0.028681114315986633, - -0.028555288910865784, - -0.029520034790039062, - -0.03154904395341873, - -0.03458697348833084, - -0.038550958037376404, - -0.043332867324352264, - -0.048802249133586884, - -0.05480993539094925, - -0.061192043125629425, - -0.06777448207139969, - -0.07437770068645477, - -0.08082158863544464, - -0.08693035691976547, - -0.05014234036207199, - -0.04846793785691261, - -0.04734094813466072, - -0.04679211229085922, - -0.046836405992507935, - -0.04747261106967926, - -0.04868338629603386, - -0.05043569952249527, - -0.05268174782395363, - -0.05536026880145073, - -0.05839819833636284, - -0.06171267107129097, - -0.06521327793598175, - -0.06880452483892441, - -0.07238845527172089, - -0.07586731761693954, - -0.07914620637893677, - -0.08213569223880768, - -0.08475421369075775, - -0.08693035691976547, - -0.05014234036207199, - -0.05260920524597168, - -0.055510517209768295, - -0.05876714363694191, - -0.0622902438044548, - -0.06598372012376785, - -0.06974683701992035, - -0.07347692549228668, - -0.07707224786281586, - -0.08043473958969116, - -0.08347266912460327, - -0.0861031785607338, - -0.08825450390577316, - -0.0898679718375206, - -0.09089957177639008, - -0.09132116287946701, - -0.09112124145030975, - -0.09030525386333466, - -0.08889547735452652, - -0.08693035691976547, - -0.05014234036207199, - -0.0565103255212307, - -0.06320635229349136, - -0.0700477659702301, - -0.07684795558452606, - -0.08342141658067703, - -0.08958885818719864, - -0.09518203884363174, - -0.10004840791225433, - -0.10405519604682922, - -0.10709312558174133, - -0.10907933115959167, - -0.10995961725711823, - -0.10971000045537949, - -0.10833726823329926, - -0.10587886720895767, - -0.10240186005830765, - -0.09800109267234802, - -0.09279660135507584, - -0.08693035691976547, - -0.05014233663678169, - -0.059748563915491104, - -0.06959450244903564, - -0.0794115662574768, - -0.08893199265003204, - -0.09789607673883438, - -0.10605929791927338, - -0.11319900304079056, - -0.11912041902542114, - -0.12366203218698502, - -0.12669995427131653, - -0.12815134227275848, - -0.12797658145427704, - -0.12618044018745422, - -0.1228119283914566, - -0.11796291172504425, - -0.11176566779613495, - -0.1043892428278923, - -0.09603483974933624, - -0.08693035691976547, - -0.05014233663678169, - -0.06197300925850868, - -0.07398271560668945, - -0.08584385365247726, - -0.0972328931093216, - -0.10783915221691132, - -0.11737334728240967, - -0.12557540833950043, - -0.13222157955169678, - -0.13713057339191437, - -0.14016850292682648, - -0.14125248789787292, - -0.1403529793024063, - -0.1374945044517517, - -0.13275501132011414, - -0.1262638121843338, - -0.11819794774055481, - -0.10877745598554611, - -0.09825928509235382, - -0.08693035691976547, - -0.05014233663678169, - -0.06294260174036026, - -0.07589545100927353, - -0.08864755928516388, - -0.10085110366344452, - -0.1121731549501419, - -0.12230492383241653, - -0.1309700310230255, - -0.13793212175369263, - -0.1430012583732605, - -0.1460391879081726, - -0.14696303009986877, - -0.1457476019859314, - -0.14242607355117798, - -0.13708901405334473, - -0.12988200783729553, - -0.12100166082382202, - -0.11069019138813019, - -0.0992288812994957, - -0.08693034946918488, - -0.05014233663678169, - -0.06255227327346802, - -0.07512543350458145, - -0.08751887083053589, - -0.09939450770616531, - -0.11042840778827667, - -0.12031961977481842, - -0.12879830598831177, - -0.1356332004070282, - -0.14063787460327148, - -0.1436758041381836, - -0.14466413855552673, - -0.14357587695121765, - -0.14044076204299927, - -0.1353442668914795, - -0.12842541933059692, - -0.11987295746803284, - -0.10992017388343811, - -0.09883855283260345, - -0.08693034946918488, - -0.05014233663678169, - -0.06084432080388069, - -0.07175611704587936, - -0.0825800895690918, - -0.09302099049091339, - -0.10279400646686554, - -0.1116325706243515, - -0.11929558217525482, - -0.1255740076303482, - -0.13029658794403076, - -0.13333451747894287, - -0.13460493087768555, - -0.1340731531381607, - -0.13175371289253235, - -0.12770986557006836, - -0.1220519095659256, - -0.11493419110774994, - -0.10655085742473602, - -0.09713059663772583, - -0.08693035691976547 - ], - "z": [ - -1.0028456449508667, - -1.0063117742538452, - -1.0197181701660156, - -1.0426990985870361, - -1.0746278762817383, - -1.1146334409713745, - -1.161624550819397, - -1.2143193483352661, - -1.2712806463241577, - -1.3309545516967773, - -1.391713261604309, - -1.4518996477127075, - -1.5098717212677002, - -1.564048409461975, - -1.612951636314392, - -1.655247688293457, - -1.6897828578948975, - -1.7156147956848145, - -1.732039213180542, - -1.7386080026626587, - -1.0028456449508667, - -1.0060030221939087, - -1.0191091299057007, - -1.0418064594268799, - -1.0734758377075195, - -1.1132533550262451, - -1.1600542068481445, - -1.212601661682129, - -1.2694623470306396, - -1.3290852308273315, - -1.3898439407348633, - -1.4500812292099, - -1.5081539154052734, - -1.5624780654907227, - -1.6115716695785522, - -1.6540956497192383, - -1.688889980316162, - -1.7150057554244995, - -1.7317304611206055, - -1.7386080026626587, - -1.0028456449508667, - -1.0058958530426025, - -1.0188976526260376, - -1.0414965152740479, - -1.0730758905410767, - -1.11277437210083, - -1.1595090627670288, - -1.212005376815796, - -1.2688310146331787, - -1.328436255455017, - -1.3891950845718384, - -1.4494500160217285, - -1.5075576305389404, - -1.561932921409607, - -1.6110925674438477, - -1.6536957025527954, - -1.6885801553726196, - -1.714794397354126, - -1.7316234111785889, - -1.7386080026626587, - -1.0028456449508667, - -1.0060018301010132, - -1.0191068649291992, - -1.041803002357483, - -1.0734714269638062, - -1.1132481098175049, - -1.160048246383667, - -1.2125951051712036, - -1.2694554328918457, - -1.3290780782699585, - -1.3898369073867798, - -1.450074315071106, - -1.5081474781036377, - -1.5624721050262451, - -1.611566424369812, - -1.654091238975525, - -1.6888866424560547, - -1.715003490447998, - -1.73172926902771, - -1.7386080026626587, - -1.0028456449508667, - -1.0063095092773438, - -1.0197137594223022, - -1.04269278049469, - -1.0746196508407593, - -1.1146235466003418, - -1.1616132259368896, - -1.2143070697784424, - -1.2712676525115967, - -1.3309412002563477, - -1.3916999101638794, - -1.4518866539001465, - -1.5098594427108765, - -1.5640370845794678, - -1.6129417419433594, - -1.655239462852478, - -1.6897764205932617, - -1.7156105041503906, - -1.73203706741333, - -1.7386080026626587, - -1.0028456449508667, - -1.0067856311798096, - -1.0206528902053833, - -1.0440692901611328, - -1.076396107673645, - -1.1167514324188232, - -1.1640346050262451, - -1.2169556617736816, - -1.2740713357925415, - -1.333823561668396, - -1.3945822715759277, - -1.4546903371810913, - -1.5125080347061157, - -1.5664584636688232, - -1.6150696277618408, - -1.6570159196853638, - -1.6911529302597046, - -1.7165496349334717, - -1.7325130701065063, - -1.7386080026626587, - -1.0028456449508667, - -1.007378339767456, - -1.0218223333358765, - -1.045783519744873, - -1.0786082744598389, - -1.119401216506958, - -1.167049765586853, - -1.2202539443969727, - -1.2775627374649048, - -1.3374128341674805, - -1.3981716632843018, - -1.4581817388534546, - -1.5158063173294067, - -1.5694736242294312, - -1.6177194118499756, - -1.6592280864715576, - -1.6928671598434448, - -1.7177190780639648, - -1.7331058979034424, - -1.7386080026626587, - -1.0028456449508667, - -1.008023738861084, - -1.0230953693389893, - -1.047649621963501, - -1.0810164213180542, - -1.1222858428955078, - -1.1703320741653442, - -1.2238445281982422, - -1.2813634872436523, - -1.3413201570510864, - -1.4020789861679077, - -1.4619824886322021, - -1.5193969011306763, - -1.5727558135986328, - -1.6206040382385254, - -1.661636233329773, - -1.6947331428527832, - -1.7189921140670776, - -1.7337512969970703, - -1.7386080026626587, - -1.0028456449508667, - -1.008651614189148, - -1.024334192276001, - -1.049465298652649, - -1.0833595991134644, - -1.1250925064086914, - -1.1735258102416992, - -1.2273380756378174, - -1.2850617170333862, - -1.3451220989227295, - -1.4058808088302612, - -1.465680718421936, - -1.5228904485702515, - -1.5759496688842773, - -1.6234108209609985, - -1.6639795303344727, - -1.6965489387512207, - -1.7202308177947998, - -1.7343791723251343, - -1.7386080026626587, - -1.0028456449508667, - -1.0091941356658936, - -1.0254042148590088, - -1.0510339736938477, - -1.0853838920593262, - -1.1275173425674438, - -1.176284909248352, - -1.2303563356399536, - -1.2882566452026367, - -1.3484065532684326, - -1.409165382385254, - -1.4688756465911865, - -1.5259087085723877, - -1.5787087678909302, - -1.6258355379104614, - -1.666003704071045, - -1.6981174945831299, - -1.7213009595870972, - -1.7349215745925903, - -1.7386080026626587, - -1.0028456449508667, - -1.0095922946929932, - -1.0261898040771484, - -1.0521854162216187, - -1.0868699550628662, - -1.1292973756790161, - -1.1783103942871094, - -1.2325719594955444, - -1.2906020879745483, - -1.3508177995681763, - -1.411576509475708, - -1.4712210893630981, - -1.5281243324279785, - -1.5807342529296875, - -1.6276155710220337, - -1.667489767074585, - -1.6992690563201904, - -1.7220865488052368, - -1.7353198528289795, - -1.7386080026626587, - -1.0028456449508667, - -1.0098031759262085, - -1.0266057252883911, - -1.0527950525283813, - -1.0876567363739014, - -1.130239725112915, - -1.1793826818466187, - -1.2337449789047241, - -1.2918437719345093, - -1.352094292640686, - -1.4128531217575073, - -1.472462773323059, - -1.5292973518371582, - -1.5818065404891968, - -1.6285580396652222, - -1.6682765483856201, - -1.6998786926269531, - -1.7225024700164795, - -1.7355306148529053, - -1.7386080026626587, - -1.0028456449508667, - -1.0098037719726562, - -1.0266069173812866, - -1.0527968406677246, - -1.0876588821411133, - -1.1302424669265747, - -1.1793856620788574, - -1.2337483167648315, - -1.2918473482131958, - -1.3520978689193726, - -1.4128566980361938, - -1.472466230392456, - -1.5293006896972656, - -1.5818095207214355, - -1.6285606622695923, - -1.6682788133621216, - -1.6998803615570068, - -1.722503662109375, - -1.7355313301086426, - -1.7386080026626587, - -1.0028456449508667, - -1.0095940828323364, - -1.0261932611465454, - -1.0521904230117798, - -1.086876392364502, - -1.1293050050735474, - -1.1783190965652466, - -1.2325814962387085, - -1.2906122207641602, - -1.3508281707763672, - -1.411586880683899, - -1.4712311029434204, - -1.5281338691711426, - -1.5807429552078247, - -1.6276233196258545, - -1.6674962043762207, - -1.6992740631103516, - -1.7220898866653442, - -1.7353215217590332, - -1.7386080026626587, - -1.0028456449508667, - -1.0091967582702637, - -1.025409460067749, - -1.051041603088379, - -1.0853937864303589, - -1.1275291442871094, - -1.1762983798980713, - -1.2303709983825684, - -1.2882722616195679, - -1.348422646522522, - -1.4091813564300537, - -1.4688912630081177, - -1.5259233713150024, - -1.5787222385406494, - -1.6258474588394165, - -1.6660137176513672, - -1.6981251239776611, - -1.7213062047958374, - -1.73492431640625, - -1.7386080026626587, - -1.0028456449508667, - -1.0086549520492554, - -1.0243406295776367, - -1.049474835395813, - -1.083371877670288, - -1.1251072883605957, - -1.1735424995422363, - -1.2273564338684082, - -1.285081148147583, - -1.3451420068740845, - -1.4059008359909058, - -1.4657001495361328, - -1.5229088068008423, - -1.5759663581848145, - -1.6234254837036133, - -1.6639918088912964, - -1.6965584754943848, - -1.7202372550964355, - -1.7343823909759521, - -1.7386080026626587, - -1.0028456449508667, - -1.0080273151397705, - -1.0231025218963623, - -1.047659993171692, - -1.0810298919677734, - -1.1223018169403076, - -1.1703503131866455, - -1.2238644361495972, - -1.2813847064971924, - -1.3413418531417847, - -1.402100682258606, - -1.4620035886764526, - -1.5194168090820312, - -1.5727741718292236, - -1.6206201314926147, - -1.6616497039794922, - -1.6947436332702637, - -1.7189991474151611, - -1.7337548732757568, - -1.7386080026626587, - -1.0028456449508667, - -1.0073819160461426, - -1.0218292474746704, - -1.0457935333251953, - -1.0786212682724, - -1.1194168329238892, - -1.167067527770996, - -1.2202733755111694, - -1.277583360671997, - -1.337433934211731, - -1.3981927633285522, - -1.4582023620605469, - -1.5158257484436035, - -1.5694913864135742, - -1.6177350282669067, - -1.6592411994934082, - -1.6928772926330566, - -1.7177259922027588, - -1.7331093549728394, - -1.7386080026626587, - -1.0028456449508667, - -1.0067886114120483, - -1.0206588506698608, - -1.0440781116485596, - -1.0764073133468628, - -1.1167649030685425, - -1.1640498638153076, - -1.2169724702835083, - -1.2740890979766846, - -1.3338418006896973, - -1.394600510597229, - -1.4547080993652344, - -1.5125248432159424, - -1.5664737224578857, - -1.61508309841156, - -1.657027244567871, - -1.6911616325378418, - -1.7165555953979492, - -1.7325160503387451, - -1.7386080026626587, - -1.0028456449508667, - -1.0063117742538452, - -1.0197181701660156, - -1.0426990985870361, - -1.0746278762817383, - -1.1146334409713745, - -1.161624550819397, - -1.2143193483352661, - -1.2712806463241577, - -1.3309545516967773, - -1.391713261604309, - -1.4518996477127075, - -1.5098717212677002, - -1.564048409461975, - -1.612951636314392, - -1.655247688293457, - -1.6897828578948975, - -1.7156147956848145, - -1.732039213180542, - -1.7386080026626587 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.24556291103363037, - 0.22942012548446655, - 0.21525046229362488, - 0.20344045758247375, - 0.19431224465370178, - 0.18811482191085815, - 0.1850171983242035, - 0.18510392308235168, - 0.18837259709835052, - 0.1947340965270996, - 0.204014852643013, - 0.21596172451972961, - 0.2302488535642624, - 0.24648651480674744, - 0.26423177123069763, - 0.2830005884170532, - 0.302280992269516, - 0.32154709100723267, - 0.34027332067489624, - 0.357948899269104, - 0.24556291103363037, - 0.23252104222774506, - 0.2213677167892456, - 0.2124072015285492, - 0.20588384568691254, - 0.20197564363479614, - 0.2007891982793808, - 0.20235684514045715, - 0.20663586258888245, - 0.2135094851255417, - 0.22279024124145508, - 0.23422499001026154, - 0.24750179052352905, - 0.26225849986076355, - 0.2780925929546356, - 0.2945721745491028, - 0.31124773621559143, - 0.3276643455028534, - 0.34337425231933594, - 0.357948899269104, - 0.24556291103363037, - 0.23711830377578735, - 0.23043683171272278, - 0.22570079565048218, - 0.22303929924964905, - 0.22252501547336578, - 0.2241719365119934, - 0.22793513536453247, - 0.23371198773384094, - 0.2413448989391327, - 0.2506256699562073, - 0.26130110025405884, - 0.27308008074760437, - 0.28564125299453735, - 0.29864197969436646, - 0.3117276430130005, - 0.3245413303375244, - 0.33673346042633057, - 0.34797149896621704, - 0.357948899269104, - 0.24556291103363037, - 0.24271371960639954, - 0.24147504568099976, - 0.24188068509101868, - 0.24391955137252808, - 0.24753603339195251, - 0.2526315152645111, - 0.25906696915626526, - 0.26666688919067383, - 0.27522391080856323, - 0.2845046818256378, - 0.2942560017108917, - 0.30421191453933716, - 0.31410083174705505, - 0.323652982711792, - 0.3326078951358795, - 0.3407211899757385, - 0.34777167439460754, - 0.3535669147968292, - 0.357948899269104, - 0.24556291103363037, - 0.24870093166828156, - 0.2532861530780792, - 0.2591935396194458, - 0.26626187562942505, - 0.27429839968681335, - 0.2830839157104492, - 0.2923787236213684, - 0.3019293546676636, - 0.3114752173423767, - 0.3207559883594513, - 0.32951846718788147, - 0.3375236690044403, - 0.34455323219299316, - 0.3504153788089752, - 0.3549502193927765, - 0.35803407430648804, - 0.359582781791687, - 0.35955414175987244, - 0.357948899269104, - 0.24556291103363037, - 0.2544311583042145, - 0.2645902931690216, - 0.27576321363449097, - 0.287645161151886, - 0.2999120056629181, - 0.31222912669181824, - 0.3242605924606323, - 0.3356781601905823, - 0.34617045521736145, - 0.35545119643211365, - 0.36326730251312256, - 0.36940550804138184, - 0.3736984431743622, - 0.37602895498275757, - 0.3763335049152374, - 0.3746037483215332, - 0.3708869218826294, - 0.36528435349464417, - 0.357948899269104, - 0.24556291103363037, - 0.2592833936214447, - 0.2741624414920807, - 0.2897941768169403, - 0.305752158164978, - 0.32160115242004395, - 0.33690881729125977, - 0.3512576222419739, - 0.3642561435699463, - 0.3755497932434082, - 0.3848305642604828, - 0.3918452858924866, - 0.3964025676250458, - 0.3983781635761261, - 0.3977181315422058, - 0.39444053173065186, - 0.38863468170166016, - 0.3804590702056885, - 0.3701366186141968, - 0.357948899269104, - 0.24556291103363037, - 0.2627318799495697, - 0.28096532821655273, - 0.2997659146785736, - 0.3186207413673401, - 0.3370155692100525, - 0.3544486165046692, - 0.37044429779052734, - 0.38456636667251587, - 0.3964295983314514, - 0.4057103395462036, - 0.41215550899505615, - 0.41558924317359924, - 0.41591793298721313, - 0.41313254833221436, - 0.4073091149330139, - 0.39860641956329346, - 0.3872619569301605, - 0.3735850751399994, - 0.357948899269104, - 0.24556289613246918, - 0.2644028961658478, - 0.2842617630958557, - 0.3045978248119354, - 0.32485640048980713, - 0.344484806060791, - 0.3629477024078369, - 0.37974146008491516, - 0.3944079577922821, - 0.4065471589565277, - 0.4158279299736023, - 0.4219971001148224, - 0.42488640546798706, - 0.42441701889038086, - 0.4206017851829529, - 0.4135447144508362, - 0.40343835949897766, - 0.3905583918094635, - 0.37525609135627747, - 0.357948899269104, - 0.24556289613246918, - 0.2641153335571289, - 0.2836945056915283, - 0.3037663400173187, - 0.32378333806991577, - 0.3431994915008545, - 0.36148515343666077, - 0.3781415820121765, - 0.39271441102027893, - 0.40480610728263855, - 0.41408687829971313, - 0.4203035235404968, - 0.4232865273952484, - 0.4229544997215271, - 0.41931647062301636, - 0.4124716818332672, - 0.40260687470436096, - 0.3899911344051361, - 0.3749685287475586, - 0.357948899269104, - 0.24556291103363037, - 0.261900395154953, - 0.27932503819465637, - 0.2973615527153015, - 0.3155179023742676, - 0.3332988917827606, - 0.3502194583415985, - 0.365818053483963, - 0.3796692192554474, - 0.39139509201049805, - 0.40067586302757263, - 0.40725836157798767, - 0.4109629988670349, - 0.41168877482414246, - 0.4094158411026001, - 0.404206246137619, - 0.39620208740234375, - 0.38562166690826416, - 0.3727535903453827, - 0.357948899269104, - 0.24556291103363037, - 0.2579980790615082, - 0.27162685990333557, - 0.28607749938964844, - 0.30095577239990234, - 0.31585586071014404, - 0.3303713798522949, - 0.3441063165664673, - 0.3566860854625702, - 0.36776745319366455, - 0.37704822421073914, - 0.3842751979827881, - 0.3892512619495392, - 0.39184069633483887, - 0.3919728398323059, - 0.3896441161632538, - 0.3849180340766907, - 0.37792348861694336, - 0.36885127425193787, - 0.357948899269104, - 0.24556291103363037, - 0.25283128023147583, - 0.2614341974258423, - 0.27113696932792664, - 0.28167495131492615, - 0.2927606999874115, - 0.30409181118011475, - 0.3153592050075531, - 0.32625553011894226, - 0.33648356795310974, - 0.3457643389701843, - 0.35384467244148254, - 0.360504150390625, - 0.3655611276626587, - 0.36887767910957336, - 0.3703632950782776, - 0.36997750401496887, - 0.3677307963371277, - 0.3636844754219055, - 0.357948899269104, - 0.24556291103363037, - 0.2469598799943924, - 0.2498515546321869, - 0.25415903329849243, - 0.2597648501396179, - 0.2665160298347473, - 0.2742285132408142, - 0.2826918363571167, - 0.2916751801967621, - 0.30093351006507874, - 0.3102142810821533, - 0.31926432251930237, - 0.3278367817401886, - 0.33569782972335815, - 0.3426330089569092, - 0.348453164100647, - 0.35299956798553467, - 0.3561481833457947, - 0.3578130900859833, - 0.357948899269104, - 0.24556291103363037, - 0.24102015793323517, - 0.23813411593437195, - 0.236983522772789, - 0.23759974539279938, - 0.23996597528457642, - 0.24401769042015076, - 0.24964433908462524, - 0.25669243931770325, - 0.26496976613998413, - 0.2742505371570587, - 0.28428158164024353, - 0.29478928446769714, - 0.3054870069026947, - 0.3160829246044159, - 0.3262880742549896, - 0.33582404255867004, - 0.34443074464797974, - 0.35187336802482605, - 0.357948899269104, - 0.24556291103363037, - 0.2356557548046112, - 0.2275516539812088, - 0.2214716523885727, - 0.2175815850496292, - 0.21598759293556213, - 0.21673309803009033, - 0.21979783475399017, - 0.2250981628894806, - 0.23248952627182007, - 0.24177029728889465, - 0.2526873052120209, - 0.2649427652359009, - 0.2782024145126343, - 0.2921045422554016, - 0.30626991391181946, - 0.32031217217445374, - 0.3338482677936554, - 0.3465089797973633, - 0.357948899269104, - 0.24556291103363037, - 0.2314479947090149, - 0.21925091743469238, - 0.20930436253547668, - 0.201879620552063, - 0.19717925786972046, - 0.19533146917819977, - 0.1963866651058197, - 0.20031604170799255, - 0.20701245963573456, - 0.21629321575164795, - 0.22790518403053284, - 0.2415315955877304, - 0.2568007707595825, - 0.27329620718955994, - 0.29056796431541443, - 0.3081448972225189, - 0.32554754614830017, - 0.34230121970176697, - 0.357948899269104, - 0.24556291103363037, - 0.22885286808013916, - 0.2141314297914505, - 0.2018001675605774, - 0.19219541549682617, - 0.18557921051979065, - 0.18213200569152832, - 0.18194781243801117, - 0.18503166735172272, - 0.1912994682788849, - 0.20058023929595947, - 0.2126207947731018, - 0.22709274291992188, - 0.24360130727291107, - 0.2616961598396301, - 0.2808837592601776, - 0.30064070224761963, - 0.3204280436038971, - 0.33970606327056885, - 0.357948899269104, - 0.24556291103363037, - 0.2281515747308731, - 0.2127479761838913, - 0.19977229833602905, - 0.18957844376564026, - 0.1824445128440857, - 0.17856507003307343, - 0.17804595828056335, - 0.18090133368968964, - 0.18705330789089203, - 0.19633406400680542, - 0.20849046111106873, - 0.22319090366363525, - 0.24003437161445618, - 0.25856146216392517, - 0.2782667875289917, - 0.2986128330230713, - 0.3190445899963379, - 0.339004784822464, - 0.357948899269104, - 0.24556291103363037, - 0.22942012548446655, - 0.21525046229362488, - 0.20344047248363495, - 0.19431224465370178, - 0.18811482191085815, - 0.1850171983242035, - 0.18510392308235168, - 0.18837261199951172, - 0.1947340965270996, - 0.2040148675441742, - 0.2159617394208908, - 0.23024886846542358, - 0.24648651480674744, - 0.26423177123069763, - 0.2830005884170532, - 0.302280992269516, - 0.32154709100723267, - 0.34027332067489624, - 0.357948899269104 - ], - "y": [ - -0.08185426890850067, - -0.08903131633996964, - -0.09652353078126907, - -0.10412654280662537, - -0.11163295060396194, - -0.11883801221847534, - -0.1255451887845993, - -0.13157153129577637, - -0.1367526352405548, - -0.14094719290733337, - -0.1440407931804657, - -0.14594903588294983, - -0.14661988615989685, - -0.14603501558303833, - -0.14421039819717407, - -0.14119580388069153, - -0.13707345724105835, - -0.1319558173418045, - -0.12598247826099396, - -0.11931635439395905, - -0.08185426145792007, - -0.09418468177318573, - -0.1066896989941597, - -0.11902820318937302, - -0.13086363673210144, - -0.14187315106391907, - -0.1517564356327057, - -0.1602439135313034, - -0.1671040654182434, - -0.17214974761009216, - -0.1752433329820633, - -0.17630046606063843, - -0.1752922683954239, - -0.17224626243114471, - -0.1672455370426178, - -0.16042648255825043, - -0.1519751250743866, - -0.14212200045585632, - -0.13113583624362946, - -0.11931635439395905, - -0.08185426145792007, - -0.09802954643964767, - -0.11427454650402069, - -0.13014614582061768, - -0.14521139860153198, - -0.1590593457221985, - -0.17131230235099792, - -0.1816360056400299, - -0.1897488534450531, - -0.19542954862117767, - -0.1985231339931488, - -0.19894525408744812, - -0.1966843605041504, - -0.19180212914943695, - -0.18443173170089722, - -0.17477424442768097, - -0.16309306025505066, - -0.14970684051513672, - -0.134980708360672, - -0.11931635439395905, - -0.08185426145792007, - -0.1001492515206337, - -0.11845613270998001, - -0.1362755447626114, - -0.15312142670154572, - -0.16853424906730652, - -0.18209360539913177, - -0.193429633975029, - -0.20223310589790344, - -0.20826390385627747, - -0.2113574892282486, - -0.21142950654029846, - -0.20847798883914948, - -0.2025834321975708, - -0.19390663504600525, - -0.1826842725276947, - -0.16922247409820557, - -0.15388843417167664, - -0.13710039854049683, - -0.11931635439395905, - -0.08185426145792007, - -0.10031408816576004, - -0.11878132075071335, - -0.1367522031068802, - -0.15373656153678894, - -0.1692710816860199, - -0.1829320192337036, - -0.19434678554534912, - -0.2032039612531662, - -0.2092619687318802, - -0.21235555410385132, - -0.21240036189556122, - -0.2093951404094696, - -0.20342186093330383, - -0.19464346766471863, - -0.18329942226409912, - -0.16969913244247437, - -0.15421360731124878, - -0.13726525008678436, - -0.11931635439395905, - -0.08185426145792007, - -0.09850620478391647, - -0.11521486192941666, - -0.1315244734287262, - -0.1469901204109192, - -0.1611899733543396, - -0.17373670637607574, - -0.18428805470466614, - -0.1925562024116516, - -0.19831562042236328, - -0.2014092206954956, - -0.20175260305404663, - -0.19933640956878662, - -0.19422653317451477, - -0.18656235933303833, - -0.17655298113822937, - -0.16447138786315918, - -0.15064716339111328, - -0.1354573667049408, - -0.11931635439395905, - -0.08185426145792007, - -0.09492151439189911, - -0.10814325511455536, - -0.12115883827209473, - -0.1336132287979126, - -0.14516669511795044, - -0.15550409257411957, - -0.1643434762954712, - -0.17144368588924408, - -0.176611065864563, - -0.17970465123653412, - -0.1806400865316391, - -0.17939183115959167, - -0.1759939193725586, - -0.17053908109664917, - -0.16317608952522278, - -0.1541057527065277, - -0.1435755491256714, - -0.13187266886234283, - -0.11931635439395905, - -0.08185426890850067, - -0.08994846045970917, - -0.09833279997110367, - -0.106778584420681, - -0.11505543440580368, - -0.12293756753206253, - -0.1302099972963333, - -0.13667434453964233, - -0.1421542763710022, - -0.14650030434131622, - -0.14959390461444855, - -0.15135067701339722, - -0.15172269940376282, - -0.15069982409477234, - -0.14830996096134186, - -0.14461828768253326, - -0.13972550630569458, - -0.1337651014328003, - -0.1268996149301529, - -0.11931635439395905, - -0.08185426890850067, - -0.08412596583366394, - -0.08684662729501724, - -0.08994204550981522, - -0.09332779049873352, - -0.09691149741411209, - -0.10059540718793869, - -0.1042790561914444, - -0.1078619435429573, - -0.11124633997678757, - -0.11433994024991989, - -0.11705833673477173, - -0.11932740360498428, - -0.12108523398637772, - -0.12228387594223022, - -0.1228906437754631, - -0.1228889673948288, - -0.12227891385555267, - -0.12107712030410767, - -0.11931635439395905, - -0.08185426890850067, - -0.07808497548103333, - -0.07492943108081818, - -0.07247371971607208, - -0.0707848072052002, - -0.06990878283977509, - -0.06986953318119049, - -0.07066813111305237, - -0.07228278368711472, - -0.07466946542263031, - -0.07776305824518204, - -0.08147918432950974, - -0.08571647852659225, - -0.09035935252904892, - -0.09528116136789322, - -0.10034766048192978, - -0.10542063415050507, - -0.1103617250919342, - -0.11503612995147705, - -0.11931635439395905, - -0.08185426890850067, - -0.07248012721538544, - -0.06387263536453247, - -0.056266553699970245, - -0.04986938089132309, - -0.04485560581088066, - -0.04136199131608009, - -0.039483826607465744, - -0.039272356778383255, - -0.040733348578214645, - -0.04382694512605667, - -0.048468753695487976, - -0.05453217774629593, - -0.061851806938648224, - -0.0702279806137085, - -0.07943222671747208, - -0.08921347558498383, - -0.0993049219250679, - -0.10943128913640976, - -0.11931635439395905, - -0.08185426890850067, - -0.0679188072681427, - -0.054874397814273834, - -0.04307686910033226, - -0.032848015427589417, - -0.024466857314109802, - -0.018162019550800323, - -0.014105461537837982, - -0.012407861649990082, - -0.013115502893924713, - -0.01620909571647644, - -0.0216042622923851, - -0.029153816401958466, - -0.038651835173368454, - -0.04983923211693764, - -0.0624108612537384, - -0.07602378726005554, - -0.09030669182538986, - -0.10486996173858643, - -0.11931636184453964, - -0.08185426890850067, - -0.06489528715610504, - -0.048909831792116165, - -0.03433395177125931, - -0.02156524360179901, - -0.010951988399028778, - -0.0027836933732032776, - 0.00271683931350708, - 0.005399540066719055, - 0.005191251635551453, - 0.0020976588129997253, - -0.0037968605756759644, - -0.012331515550613403, - -0.023273512721061707, - -0.03632434457540512, - -0.051128074526786804, - -0.06728087365627289, - -0.0843421220779419, - -0.10184644162654877, - -0.11931636184453964, - -0.08185426890850067, - -0.06373721361160278, - -0.0466252900660038, - -0.030985243618488312, - -0.017243720591068268, - -0.005775518715381622, - 0.0031065046787261963, - 0.009160101413726807, - 0.012220114469528198, - 0.012203089892864227, - 0.0091094970703125, - 0.0030237138271331787, - -0.005888253450393677, - -0.017383314669132233, - -0.03114788979291916, - -0.04680655151605606, - -0.06393216550350189, - -0.08205758035182953, - -0.1006883755326271, - -0.11931636184453964, - -0.08185426890850067, - -0.0645700991153717, - -0.04826832935214043, - -0.03339363634586334, - -0.020351745188236237, - -0.00949842482805252, - -0.0011297166347503662, - 0.004526101052761078, - 0.007314763963222504, - 0.007160186767578125, - 0.004066593945026398, - -0.0018816366791725159, - -0.010522253811359406, - -0.021619535982608795, - -0.03487079590559006, - -0.04991459101438522, - -0.06634055823087692, - -0.08370062708854675, - -0.10152125358581543, - -0.11931636184453964, - -0.08185426890850067, - -0.06730367243289948, - -0.05366090312600136, - -0.041298121213912964, - -0.03055252879858017, - -0.02171725034713745, - -0.015033289790153503, - -0.010682955384254456, - -0.008784934878349304, - -0.009390994906425476, - -0.012484587728977203, - -0.017981335520744324, - -0.02573131024837494, - -0.03552310913801193, - -0.04708961769938469, - -0.060115374624729156, - -0.07424504309892654, - -0.08909319341182709, - -0.1042548269033432, - -0.11931636184453964, - -0.08185426890850067, - -0.0716417133808136, - -0.06221865490078926, - -0.053842149674892426, - -0.04674066975712776, - -0.04110793396830559, - -0.037097588181495667, - -0.03481901437044144, - -0.03433437645435333, - -0.0356568843126297, - -0.038750480860471725, - -0.043530773371458054, - -0.04986736550927162, - -0.0575874000787735, - -0.06648030877113342, - -0.07630351930856705, - -0.086789071559906, - -0.09765094518661499, - -0.10859286785125732, - -0.11931635439395905, - -0.08185426890850067, - -0.07711412757635117, - -0.07301421463489532, - -0.06966637074947357, - -0.0671619176864624, - -0.06556917726993561, - -0.06493157148361206, - -0.06526650488376617, - -0.06656485050916672, - -0.06879118084907532, - -0.07188477367162704, - -0.07576125115156174, - -0.08031485974788666, - -0.08542138338088989, - -0.09094154834747314, - -0.09672476351261139, - -0.10261329263448715, - -0.10844650864601135, - -0.11406528204679489, - -0.11931635439395905, - -0.08185426890850067, - -0.08312789350748062, - -0.08487771451473236, - -0.0870559960603714, - -0.08960331976413727, - -0.09245020896196365, - -0.09551899880170822, - -0.09872598201036453, - -0.1019836962223053, - -0.10520324856042862, - -0.10829684138298035, - -0.11118008941411972, - -0.11377433687448502, - -0.11600881814956665, - -0.11782258749008179, - -0.11916617304086685, - -0.12000291794538498, - -0.12031000852584839, - -0.12007904797792435, - -0.11931635439395905, - -0.08185426890850067, - -0.08903131633996964, - -0.09652353823184967, - -0.10412655025720596, - -0.11163296550512314, - -0.11883802711963654, - -0.1255452036857605, - -0.13157154619693756, - -0.1367526650428772, - -0.14094722270965576, - -0.14404082298278809, - -0.14594905078411102, - -0.14661988615989685, - -0.14603503048419952, - -0.14421041309833527, - -0.14119581878185272, - -0.13707347214221954, - -0.1319558322429657, - -0.12598247826099396, - -0.11931635439395905 - ], - "z": [ - -1.637086033821106, - -1.6443856954574585, - -1.6617047786712646, - -1.6885712146759033, - -1.7242517471313477, - -1.7677732706069946, - -1.8179486989974976, - -1.8734092712402344, - -1.9326423406600952, - -1.9940320253372192, - -2.055903673171997, - -2.116569995880127, - -2.1743757724761963, - -2.2277443408966064, - -2.2752199172973633, - -2.315507411956787, - -2.347508192062378, - -2.370349168777466, - -2.3834071159362793, - -2.386326313018799, - -1.637086033821106, - -1.643662929534912, - -1.6602789163589478, - -1.68648099899292, - -1.7215543985366821, - -1.7645423412322998, - -1.814272403717041, - -1.8693877458572388, - -1.9283852577209473, - -1.989655613899231, - -2.051527261734009, - -2.1123127937316895, - -2.170354127883911, - -2.2240679264068604, - -2.271988868713379, - -2.312810182571411, - -2.3454179763793945, - -2.3689231872558594, - -2.3826842308044434, - -2.386326313018799, - -1.637086033821106, - -1.6427810192108154, - -1.6585392951965332, - -1.6839311122894287, - -1.7182637453079224, - -1.7606006860733032, - -1.8097871541976929, - -1.8644814491271973, - -1.9231916666030884, - -1.9843162298202515, - -2.0461881160736084, - -2.107119083404541, - -2.16544771194458, - -2.2195825576782227, - -2.2680470943450928, - -2.3095195293426514, - -2.3428680896759033, - -2.3671836853027344, - -2.381802558898926, - -2.386326313018799, - -1.637086033821106, - -1.6418356895446777, - -1.6566745042800903, - -1.6811976432800293, - -1.7147362232208252, - -1.7563753128051758, - -1.8049790859222412, - -1.8592219352722168, - -1.9176242351531982, - -1.9785926342010498, - -2.040464401245117, - -2.1015517711639404, - -2.1601881980895996, - -2.2147746086120605, - -2.263821840286255, - -2.3059918880462646, - -2.340134620666504, - -2.365318775177002, - -2.380857229232788, - -2.386326313018799, - -1.637086033821106, - -1.6409294605255127, - -1.6548866033554077, - -1.678576946258545, - -1.7113540172576904, - -1.752324104309082, - -1.800369381904602, - -1.8541793823242188, - -1.9122862815856934, - -1.9731050729751587, - -2.0349769592285156, - -2.0962138175964355, - -2.1551456451416016, - -2.210164785385132, - -2.259770631790161, - -2.302609920501709, - -2.3375139236450195, - -2.3635308742523193, - -2.379951000213623, - -2.386326313018799, - -1.637086033821106, - -1.640160322189331, - -1.6533693075180054, - -1.676352858543396, - -1.7084839344024658, - -1.7488861083984375, - -1.796457290649414, - -1.8499000072479248, - -1.9077563285827637, - -1.9684481620788574, - -2.030319929122925, - -2.091683864593506, - -2.1508662700653076, - -2.2062528133392334, - -2.2563326358795166, - -2.2997395992279053, - -2.33528995513916, - -2.362013578414917, - -2.3791818618774414, - -2.386326313018799, - -1.637086033821106, - -1.6396117210388184, - -1.6522870063781738, - -1.6747665405273438, - -1.7064366340637207, - -1.7464338541030884, - -1.7936670780181885, - -1.846847653388977, - -1.9045252799987793, - -1.965126395225525, - -2.026998281478882, - -2.0884528160095215, - -2.1478140354156494, - -2.203462600708008, - -2.253880500793457, - -2.29769229888916, - -2.3337035179138184, - -2.360931396484375, - -2.3786332607269287, - -2.386326313018799, - -1.637086033821106, - -1.639343023300171, - -1.6517571210861206, - -1.6739897727966309, - -1.7054343223571777, - -1.745233178138733, - -1.7923007011413574, - -1.845353126525879, - -1.9029431343078613, - -1.9635000228881836, - -2.025371789932251, - -2.0868706703186035, - -2.1463193893432617, - -2.2020962238311768, - -2.2526795864105225, - -2.296689987182617, - -2.3329267501831055, - -2.3604013919830322, - -2.3783645629882812, - -2.386326313018799, - -1.637086033821106, - -1.6393835544586182, - -1.6518369913101196, - -1.6741068363189697, - -1.7055853605270386, - -1.745414137840271, - -1.7925065755844116, - -1.8455783128738403, - -1.903181552886963, - -1.9637451171875, - -2.0256168842315674, - -2.087109088897705, - -2.1465446949005127, - -2.2023022174835205, - -2.2528605461120605, - -2.2968411445617676, - -2.3330438137054443, - -2.3604812622070312, - -2.3784050941467285, - -2.386326313018799, - -1.637086033821106, - -1.6397286653518677, - -1.6525179147720337, - -1.6751048564910889, - -1.7068734169006348, - -1.7469570636749268, - -1.7942622900009155, - -1.847498893737793, - -1.905214548110962, - -1.9658350944519043, - -2.0277068614959717, - -2.089142084121704, - -2.148465156555176, - -2.2040576934814453, - -2.254403591156006, - -2.298129081726074, - -2.3340418338775635, - -2.3611621856689453, - -2.3787503242492676, - -2.386326313018799, - -1.637086033821106, - -1.6403411626815796, - -1.6537261009216309, - -1.6768759489059448, - -1.709159016609192, - -1.74969482421875, - -1.797377586364746, - -1.8509066104888916, - -1.9088218212127686, - -1.9695435762405396, - -2.0314152240753174, - -2.0927493572235107, - -2.1518728733062744, - -2.2071731090545654, - -2.257141351699829, - -2.300414800643921, - -2.335813045501709, - -2.362370491027832, - -2.3793625831604004, - -2.386326313018799, - -1.637086033821106, - -1.6411545276641846, - -1.655330777168274, - -1.6792280673980713, - -1.7121944427490234, - -1.7533307075500488, - -1.801514744758606, - -1.8554322719573975, - -1.9136126041412354, - -1.9744685888290405, - -2.0363402366638184, - -2.0975401401519775, - -2.1563985347747803, - -2.2113101482391357, - -2.260777235031128, - -2.303450107574463, - -2.338165044784546, - -2.3639750480651855, - -2.380176067352295, - -2.386326313018799, - -1.637086033821106, - -1.6420807838439941, - -1.6571578979492188, - -1.6819063425064087, - -1.7156506776809692, - -1.757470726966858, - -1.8062255382537842, - -1.8605854511260986, - -1.9190675020217896, - -1.9800764322280884, - -2.0419483184814453, - -2.1029951572418213, - -2.1615517139434814, - -2.2160210609436035, - -2.2649171352386475, - -2.3069064617156982, - -2.3408432006835938, - -2.36580228805542, - -2.3811023235321045, - -2.386326313018799, - -1.637086033821106, - -1.643019437789917, - -1.659009575843811, - -1.6846203804016113, - -1.7191532850265503, - -1.761666178703308, - -1.8109996318817139, - -1.8658077716827393, - -1.924595594406128, - -1.9857596158981323, - -2.04763126373291, - -2.10852313041687, - -2.166774034500122, - -2.220795154571533, - -2.2691128253936768, - -2.3104090690612793, - -2.343557357788086, - -2.3676538467407227, - -2.3820409774780273, - -2.386326313018799, - -1.637086033821106, - -1.6438686847686768, - -1.6606850624084473, - -1.6870763301849365, - -1.722322702407837, - -1.7654626369476318, - -1.8153194189071655, - -1.8705331087112427, - -1.9295977354049683, - -1.9909019470214844, - -2.0527737140655518, - -2.113525390625, - -2.171499490737915, - -2.2251148223876953, - -2.272909164428711, - -2.3135783672332764, - -2.346013307571411, - -2.3693294525146484, - -2.382890224456787, - -2.386326313018799, - -1.637086033821106, - -1.6445367336273193, - -1.6620028018951416, - -1.6890078783035278, - -1.7248153686523438, - -1.7684483528137207, - -1.8187168836593628, - -1.8742496967315674, - -1.9335318803787231, - -1.9949464797973633, - -2.0568182468414307, - -2.117459535598755, - -2.17521595954895, - -2.2285125255584717, - -2.2758948802948, - -2.316071033477783, - -2.347944974899292, - -2.3706469535827637, - -2.3835582733154297, - -2.386326313018799, - -1.637086033821106, - -1.6449509859085083, - -1.6628199815750122, - -1.6902058124542236, - -1.7263612747192383, - -1.7703001499176025, - -1.8208239078521729, - -1.8765544891357422, - -1.935971736907959, - -1.9974547624588013, - -2.059326410293579, - -2.119899272918701, - -2.177520990371704, - -2.230619430541992, - -2.2777466773986816, - -2.3176169395446777, - -2.3491427898406982, - -2.371464252471924, - -2.383972406387329, - -2.386326313018799, - -1.637086033821106, - -1.6450666189193726, - -1.6630481481552124, - -1.6905401945114136, - -1.726792812347412, - -1.7708170413970947, - -1.821412205696106, - -1.8771979808807373, - -1.9366528987884521, - -1.9981549978256226, - -2.0600266456604004, - -2.1205804347991943, - -2.17816424369812, - -2.2312076091766357, - -2.278263568878174, - -2.3180484771728516, - -2.3494772911071777, - -2.371692419052124, - -2.3840880393981934, - -2.386326313018799, - -1.637086033821106, - -1.6448711156845093, - -1.6626625061035156, - -1.6899749040603638, - -1.7260632514953613, - -1.7699432373046875, - -1.820417881011963, - -1.876110315322876, - -1.9355014562606812, - -1.9969713687896729, - -2.0588431358337402, - -2.119429111480713, - -2.177076578140259, - -2.2302134037017822, - -2.2773897647857666, - -2.317318916320801, - -2.348912000656128, - -2.371306896209717, - -2.38389253616333, - -2.386326313018799, - -1.637086033821106, - -1.6443856954574585, - -1.6617047786712646, - -1.6885712146759033, - -1.7242517471313477, - -1.7677732706069946, - -1.8179486989974976, - -1.8734092712402344, - -1.9326423406600952, - -1.9940320253372192, - -2.055903673171997, - -2.116569995880127, - -2.1743757724761963, - -2.2277443408966064, - -2.2752199172973633, - -2.315507411956787, - -2.347508192062378, - -2.370349168777466, - -2.3834071159362793, - -2.386326313018799 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.34263110160827637, - 0.3671339154243469, - 0.3925110399723053, - 0.4180702269077301, - 0.443114310503006, - 0.4669601321220398, - 0.4889572858810425, - 0.5085057020187378, - 0.5250720977783203, - 0.5382047295570374, - 0.547545313835144, - 0.5528389811515808, - 0.5539414286613464, - 0.5508224964141846, - 0.543567419052124, - 0.5323739051818848, - 0.5175474286079407, - 0.4994923174381256, - 0.478701114654541, - 0.4557409882545471, - 0.34263110160827637, - 0.3646198809146881, - 0.38755154609680176, - 0.410800576210022, - 0.4337327778339386, - 0.4557226300239563, - 0.4761703312397003, - 0.49451810121536255, - 0.5102654695510864, - 0.5229828357696533, - 0.5323233604431152, - 0.5380322933197021, - 0.5399538278579712, - 0.5380355715751648, - 0.5323299169540405, - 0.5229923725128174, - 0.5102777481079102, - 0.49453282356262207, - 0.4761871099472046, - 0.4557409882545471, - 0.34263110160827637, - 0.3598065972328186, - 0.37805628776550293, - 0.3968823552131653, - 0.4157712459564209, - 0.4342077374458313, - 0.4516889154911041, - 0.46773797273635864, - 0.4819170832633972, - 0.4938395321369171, - 0.5031800866127014, - 0.5096839070320129, - 0.5131736993789673, - 0.5135541558265686, - 0.5108149647712708, - 0.5050308108329773, - 0.49635952711105347, - 0.48503759503364563, - 0.4713738262653351, - 0.4557409882545471, - 0.34263110160827637, - 0.35321569442749023, - 0.36505424976348877, - 0.3778238296508789, - 0.39117610454559326, - 0.4047468900680542, - 0.4181659519672394, - 0.4310673475265503, - 0.4430990517139435, - 0.4539329409599304, - 0.4632734954357147, - 0.4708659052848816, - 0.47650307416915894, - 0.48003122210502625, - 0.48135411739349365, - 0.48043569922447205, - 0.4773010015487671, - 0.4720355272293091, - 0.4647829234600067, - 0.4557409882545471, - 0.34263110160827637, - 0.34556135535240173, - 0.34995436668395996, - 0.35569027066230774, - 0.36261263489723206, - 0.3705326318740845, - 0.3792342245578766, - 0.3884800374507904, - 0.39801788330078125, - 0.40758758783340454, - 0.41692814230918884, - 0.425784707069397, - 0.43391576409339905, - 0.44109946489334106, - 0.4471398890018463, - 0.45187222957611084, - 0.4551674723625183, - 0.4569356441497803, - 0.4571285843849182, - 0.4557409882545471, - 0.34263110160827637, - 0.3376730680465698, - 0.3343929648399353, - 0.3328802287578583, - 0.3331761360168457, - 0.3352726399898529, - 0.3391125202178955, - 0.34459108114242554, - 0.3515588045120239, - 0.3598257005214691, - 0.3691662549972534, - 0.37932565808296204, - 0.3900267779827118, - 0.4009777903556824, - 0.41187986731529236, - 0.4224357306957245, - 0.43235740065574646, - 0.4413742423057556, - 0.4492402970790863, - 0.4557409882545471, - 0.34263110160827637, - 0.33040565252304077, - 0.32005634903907776, - 0.3118654787540436, - 0.30605649948120117, - 0.3027878701686859, - 0.302148699760437, - 0.30415648221969604, - 0.30875641107559204, - 0.3158230185508728, - 0.3251635730266571, - 0.33652323484420776, - 0.3495922088623047, - 0.3640139698982239, - 0.37939509749412537, - 0.39531609416007996, - 0.41134268045425415, - 0.42703762650489807, - 0.44197288155555725, - 0.4557409882545471, - 0.34263110160827637, - 0.3245466351509094, - 0.3084981143474579, - 0.294923335313797, - 0.2841925621032715, - 0.2765985131263733, - 0.2723483443260193, - 0.2715579867362976, - 0.27424895763397217, - 0.28034791350364685, - 0.28968846797943115, - 0.3020158112049103, - 0.31699371337890625, - 0.33421361446380615, - 0.35320577025413513, - 0.37345215678215027, - 0.39440053701400757, - 0.4154793918132782, - 0.4361138343811035, - 0.4557409882545471, - 0.34263110160827637, - 0.32073092460632324, - 0.30097079277038574, - 0.2838897109031677, - 0.2699536085128784, - 0.25954270362854004, - 0.252940833568573, - 0.2503281235694885, - 0.25177592039108276, - 0.25724467635154724, - 0.26658523082733154, - 0.2795427441596985, - 0.29576385021209717, - 0.3148060441017151, - 0.3361499011516571, - 0.3592132329940796, - 0.3833669126033783, - 0.40795207023620605, - 0.4322981536388397, - 0.4557409882545471, - 0.34263110160827637, - 0.3193720281124115, - 0.29829007387161255, - 0.2799603044986725, - 0.2648827135562897, - 0.2534685432910919, - 0.24602918326854706, - 0.24276751279830933, - 0.24377256631851196, - 0.2490168809890747, - 0.2583574056625366, - 0.2715393900871277, - 0.28820323944091797, - 0.30789440870285034, - 0.33007577061653137, - 0.35414227843284607, - 0.37943747639656067, - 0.40527138113975525, - 0.430939257144928, - 0.4557409882545471, - 0.34263110160827637, - 0.3206171989440918, - 0.30074647068977356, - 0.2835609018802643, - 0.2695292830467224, - 0.2590343952178955, - 0.2523624300956726, - 0.24969543516635895, - 0.2511062026023865, - 0.2565561532974243, - 0.26589667797088623, - 0.2788730263710022, - 0.2951311469078064, - 0.3142276704311371, - 0.3356415927410126, - 0.3587888777256012, - 0.38303807377815247, - 0.40772774815559387, - 0.4321844279766083, - 0.4557409882545471, - 0.34263110160827637, - 0.32433152198791504, - 0.3080737590789795, - 0.2943013310432434, - 0.2833898663520813, - 0.27563703060150146, - 0.271254301071167, - 0.27036118507385254, - 0.27298206090927124, - 0.2790454924106598, - 0.2883860468864441, - 0.30074888467788696, - 0.3157969117164612, - 0.3331195116043091, - 0.3522442579269409, - 0.3726494610309601, - 0.3937785029411316, - 0.4150550663471222, - 0.4358987510204315, - 0.4557409882545471, - 0.34263110160827637, - 0.3301124572753906, - 0.31947794556617737, - 0.3110176920890808, - 0.3049624264240265, - 0.301477313041687, - 0.3006574809551239, - 0.30252522230148315, - 0.3070296347141266, - 0.31404781341552734, - 0.32338836789131165, - 0.3347964584827423, - 0.3479609489440918, - 0.3625227212905884, - 0.37808457016944885, - 0.3942220211029053, - 0.410494863986969, - 0.42645925283432007, - 0.4416796863079071, - 0.4557409882545471, - 0.34263110160827637, - 0.3373335599899292, - 0.3337232172489166, - 0.3318985104560852, - 0.33190926909446716, - 0.33375513553619385, - 0.33738577365875244, - 0.342702180147171, - 0.34955930709838867, - 0.3577701449394226, - 0.3671106696128845, - 0.3773261606693268, - 0.38813790678977966, - 0.3992510139942169, - 0.4103623628616333, - 0.42116886377334595, - 0.4313757121562958, - 0.4407045245170593, - 0.4489007890224457, - 0.4557409882545471, - 0.34263110160827637, - 0.34521234035491943, - 0.34926584362983704, - 0.3546810448169708, - 0.361310213804245, - 0.3689725399017334, - 0.37745901942253113, - 0.38653814792633057, - 0.39596226811408997, - 0.40547433495521545, - 0.41481488943099976, - 0.4237291216850281, - 0.4319738745689392, - 0.4393242597579956, - 0.44557976722717285, - 0.4505698084831238, - 0.454158216714859, - 0.45624712109565735, - 0.4567795693874359, - 0.4557409882545471, - 0.34263110160827637, - 0.35289496183395386, - 0.364421546459198, - 0.3768964111804962, - 0.3899792730808258, - 0.4033132493495941, - 0.4165346920490265, - 0.42928287386894226, - 0.4412100911140442, - 0.4519910216331482, - 0.4613315761089325, - 0.4689769446849823, - 0.4747186005115509, - 0.47839993238449097, - 0.47992050647735596, - 0.4792388677597046, - 0.4763735830783844, - 0.4714028239250183, - 0.46446219086647034, - 0.4557409882545471, - 0.34263110160827637, - 0.359548956155777, - 0.3775480091571808, - 0.3961372673511505, - 0.4148097336292267, - 0.4330559968948364, - 0.4503783881664276, - 0.46630439162254333, - 0.48039954900741577, - 0.49227941036224365, - 0.5016199946403503, - 0.5081663727760315, - 0.5117400884628296, - 0.5122436285018921, - 0.5096632242202759, - 0.5040693283081055, - 0.4956144690513611, - 0.4845292866230011, - 0.47111618518829346, - 0.4557409882545471, - 0.34263110160827637, - 0.36445319652557373, - 0.3872227370738983, - 0.4103185832500458, - 0.433110773563385, - 0.4549775719642639, - 0.47532254457473755, - 0.49359071254730225, - 0.5092837810516357, - 0.5219736099243164, - 0.5313141345977783, - 0.5370506048202515, - 0.5390264391899109, - 0.5371878147125244, - 0.5315848588943481, - 0.5223703384399414, - 0.5097957849502563, - 0.49420401453971863, - 0.4760204255580902, - 0.4557409882545471, - 0.34263110160827637, - 0.3670762777328491, - 0.39239731431007385, - 0.4179035425186157, - 0.442899227142334, - 0.46670249104499817, - 0.48866409063339233, - 0.5081850290298462, - 0.5247326493263245, - 0.5378557443618774, - 0.5471962690353394, - 0.5524994730949402, - 0.5536206960678101, - 0.5505293607711792, - 0.54330974817276, - 0.5321587920188904, - 0.5173807144165039, - 0.49937862157821655, - 0.4786434769630432, - 0.4557409882545471, - 0.34263110160827637, - 0.3671339154243469, - 0.3925110399723053, - 0.4180702269077301, - 0.443114310503006, - 0.4669601321220398, - 0.4889572560787201, - 0.5085057020187378, - 0.5250720977783203, - 0.5382047295570374, - 0.5475452542304993, - 0.5528389811515808, - 0.5539414286613464, - 0.5508224964141846, - 0.543567419052124, - 0.5323739051818848, - 0.5175474286079407, - 0.4994923174381256, - 0.478701114654541, - 0.4557409882545471 - ], - "y": [ - -0.11421030759811401, - -0.11046987771987915, - -0.10734570026397705, - -0.10492299497127533, - -0.1032678633928299, - -0.10242542624473572, - -0.1024186760187149, - -0.10324779897928238, - -0.10489017516374588, - -0.1073010116815567, - -0.1104145348072052, - -0.11414582282304764, - -0.11839310079813004, - -0.12304050475358963, - -0.12796126306056976, - -0.13302116096019745, - -0.13808217644691467, - -0.14300626516342163, - -0.1476590782403946, - -0.15191373229026794, - -0.11421030759811401, - -0.10291379690170288, - -0.09243965148925781, - -0.08307357132434845, - -0.0750710517168045, - -0.06865037977695465, - -0.06398668140172958, - -0.061207182705402374, - -0.06038769334554672, - -0.061550579965114594, - -0.06466410309076309, - -0.06964334100484848, - -0.07635247707366943, - -0.08460849523544312, - -0.0941862091422081, - -0.10482435673475266, - -0.11623275279998779, - -0.1281002163887024, - -0.14010301232337952, - -0.15191374719142914, - -0.11421030759811401, - -0.09660972654819489, - -0.08000347018241882, - -0.0648445188999176, - -0.051546357572078705, - -0.04047173261642456, - -0.03192273527383804, - -0.026132531464099884, - -0.023259103298187256, - -0.023380815982818604, - -0.026494339108467102, - -0.032514750957489014, - -0.04127783328294754, - -0.052544549107551575, - -0.06600756198167801, - -0.08129964768886566, - -0.09800370037555695, - -0.1156640350818634, - -0.13379894196987152, - -0.15191374719142914, - -0.11421030759811401, - -0.0922408252954483, - -0.07138481736183167, - -0.052211225032806396, - -0.03524302691221237, - -0.02094307541847229, - -0.009701430797576904, - -0.0018247365951538086, - 0.002472132444381714, - 0.003071993589401245, - -0.00004152953624725342, - -0.006783515214920044, - -0.016970038414001465, - -0.030323244631290436, - -0.04647889733314514, - -0.06499633938074112, - -0.08537040650844574, - -0.10704538226127625, - -0.12943002581596375, - -0.15191374719142914, - -0.11421030759811401, - -0.09028050303459167, - -0.06751767545938492, - -0.04654271900653839, - -0.027927778661251068, - -0.012180641293525696, - 0.00026917457580566406, - 0.00908207893371582, - 0.014017641544342041, - 0.0149412602186203, - 0.011827737092971802, - 0.004761993885040283, - -0.006063222885131836, - -0.020352639257907867, - -0.037716470658779144, - -0.05768107622861862, - -0.07970190048217773, - -0.1031782329082489, - -0.1274697184562683, - -0.15191374719142914, - -0.11421030759811401, - -0.09094122052192688, - -0.06882108747959137, - -0.04845327138900757, - -0.03039335459470749, - -0.015133984386920929, - -0.003091380000114441, - 0.005405977368354797, - 0.010126277804374695, - 0.010940775275230408, - 0.00782725214958191, - 0.000870630145072937, - -0.009739324450492859, - -0.023713193833827972, - -0.04066980630159378, - -0.06014665961265564, - -0.08161245286464691, - -0.10448164492845535, - -0.12813043594360352, - -0.15191374719142914, - -0.11421030759811401, - -0.09415136277675629, - -0.07515379786491394, - -0.05773582309484482, - -0.04237254709005356, - -0.029483050107955933, - -0.01941891759634018, - -0.012454651296138763, - -0.008780248463153839, - -0.008495956659317017, - -0.011609479784965515, - -0.018035896122455597, - -0.02759995311498642, - -0.04004073143005371, - -0.055018872022628784, - -0.07212585210800171, - -0.09089501202106476, - -0.11081436276435852, - -0.13134057819843292, - -0.15191374719142914, - -0.11421030759811401, - -0.09956306219100952, - -0.08582958579063416, - -0.07338449358940125, - -0.06256724148988724, - -0.0536729097366333, - -0.046944111585617065, - -0.042564354836940765, - -0.04065316170454025, - -0.04126264154911041, - -0.04437616467475891, - -0.04990880936384201, - -0.05770965665578842, - -0.0675659254193306, - -0.07920873910188675, - -0.09232054650783539, - -0.10654367506504059, - -0.12149015069007874, - -0.13675227761268616, - -0.15191374719142914, - -0.11421030759811401, - -0.10658988356590271, - -0.09969155490398407, - -0.093703493475914, - -0.08878901600837708, - -0.08508220314979553, - -0.08268414437770844, - -0.08166027069091797, - -0.0820384994149208, - -0.08380851149559021, - -0.0869220420718193, - -0.09129414707422256, - -0.09680556505918503, - -0.10330597311258316, - -0.11061803996562958, - -0.11854232102632523, - -0.12686267495155334, - -0.13535211980342865, - -0.14377909898757935, - -0.15191373229026794, - -0.11421030014753342, - -0.11447035521268845, - -0.11523754149675369, - -0.116490937769413, - -0.11819634586572647, - -0.12030725181102753, - -0.12276607006788254, - -0.1255057454109192, - -0.12845152616500854, - -0.13152307271957397, - -0.13463659584522247, - -0.1377071738243103, - -0.14065104722976685, - -0.14338789880275726, - -0.14584308862686157, - -0.14794965088367462, - -0.14965012669563293, - -0.15089809894561768, - -0.15165956318378448, - -0.15191373229026794, - -0.11421030014753342, - -0.12235050648450851, - -0.13078290224075317, - -0.13927745819091797, - -0.14760248363018036, - -0.1555308699607849, - -0.1628463715314865, - -0.16934943199157715, - -0.17486268281936646, - -0.17923569679260254, - -0.18234921991825104, - -0.1841183304786682, - -0.1844947338104248, - -0.18346819281578064, - -0.18106672167778015, - -0.1773557960987091, - -0.1724366545677185, - -0.16644346714019775, - -0.15953971445560455, - -0.15191373229026794, - -0.11421030014753342, - -0.12937641143798828, - -0.14464305341243744, - -0.15959379076957703, - -0.17382082343101501, - -0.18693603575229645, - -0.1985817402601242, - -0.20844021439552307, - -0.21624258160591125, - -0.22177597880363464, - -0.22488951683044434, - -0.225498229265213, - -0.22358551621437073, - -0.21920356154441833, - -0.21247190237045288, - -0.20357412099838257, - -0.19275297224521637, - -0.18030361831188202, - -0.16656562685966492, - -0.15191373229026794, - -0.11421029269695282, - -0.1347866803407669, - -0.15531602501869202, - -0.17523834109306335, - -0.1940101832151413, - -0.21111953258514404, - -0.2260996699333191, - -0.23854199051856995, - -0.24810707569122314, - -0.2545340359210968, - -0.2576475739479065, - -0.2573627233505249, - -0.2536872923374176, - -0.24672149121761322, - -0.23665538430213928, - -0.22376349568367004, - -0.2083975076675415, - -0.1909765899181366, - -0.17197589576244354, - -0.15191373229026794, - -0.11421029269695282, - -0.13799504935741425, - -0.16164524853229523, - -0.18451577425003052, - -0.2059827744960785, - -0.22546066343784332, - -0.24241819977760315, - -0.25639277696609497, - -0.2670031785964966, - -0.27396002411842346, - -0.27707356214523315, - -0.27625882625579834, - -0.2715380787849426, - -0.2630400061607361, - -0.25099653005599976, - -0.23573608696460724, - -0.21767494082450867, - -0.1973058134317398, - -0.17518426477909088, - -0.15191373229026794, - -0.11421029269695282, - -0.13865382969379425, - -0.16294483840465546, - -0.1864207237958908, - -0.2084411382675171, - -0.22840537130832672, - -0.24576891958713531, - -0.26005810499191284, - -0.27088314294815063, - -0.277948796749115, - -0.2810623347759247, - -0.2801387906074524, - -0.2752034068107605, - -0.26639074087142944, - -0.25394123792648315, - -0.23819445073604584, - -0.21957990527153015, - -0.19860540330410004, - -0.1758430451154709, - -0.15191373229026794, - -0.11421029269695282, - -0.1366916447877884, - -0.15907399356365204, - -0.18074680864810944, - -0.20111888647079468, - -0.21963456273078918, - -0.23578877747058868, - -0.24914085865020752, - -0.25932660698890686, - -0.2660682201385498, - -0.2691817283630371, - -0.2685822546482086, - -0.2642861604690552, - -0.2564105987548828, - -0.24517041444778442, - -0.23087221384048462, - -0.21390599012374878, - -0.19473455846309662, - -0.17388086020946503, - -0.15191373229026794, - -0.11421029269695282, - -0.13232111930847168, - -0.1504521369934082, - -0.16810882091522217, - -0.18480950593948364, - -0.20009863376617432, - -0.21355921030044556, - -0.22482402622699738, - -0.23358580470085144, - -0.23960557579994202, - -0.24271908402442932, - -0.2428414523601532, - -0.23996932804584503, - -0.23418104648590088, - -0.22563450038433075, - -0.2145628035068512, - -0.20126798748970032, - -0.18611270189285278, - -0.16951031982898712, - -0.15191373229026794, - -0.11421030014753342, - -0.12601585686206818, - -0.13801361620426178, - -0.14987629652023315, - -0.16128034889698029, - -0.17191465198993683, - -0.18148916959762573, - -0.18974274396896362, - -0.19645018875598907, - -0.2014285773038864, - -0.2045421004295349, - -0.20570583641529083, - -0.20488804578781128, - -0.20211100578308105, - -0.19745051860809326, - -0.19103366136550903, - -0.1830354928970337, - -0.17367416620254517, - -0.16320505738258362, - -0.15191373229026794, - -0.11421030014753342, - -0.11845913529396057, - -0.12310630828142166, - -0.12802504003047943, - -0.13308116793632507, - -0.13813677430152893, - -0.14305394887924194, - -0.14769858121871948, - -0.15194396674633026, - -0.1556742936372757, - -0.1587878167629242, - -0.16119959950447083, - -0.16284388303756714, - -0.16367578506469727, - -0.16367261111736298, - -0.16283448040485382, - -0.16118422150611877, - -0.15876686573028564, - -0.1556483507156372, - -0.15191373229026794, - -0.11421030759811401, - -0.11046987026929855, - -0.10734568536281586, - -0.10492298752069473, - -0.1032678410410881, - -0.10242540389299393, - -0.10241866111755371, - -0.10324777662754059, - -0.10489015281200409, - -0.10730098187923431, - -0.11041450500488281, - -0.11414580047130585, - -0.11839307099580765, - -0.12304048240184784, - -0.12796124815940857, - -0.13302114605903625, - -0.13808217644691467, - -0.14300625026226044, - -0.1476590782403946, - -0.15191373229026794 - ], - "z": [ - -2.284207344055176, - -2.285989761352539, - -2.2980079650878906, - -2.319934129714966, - -2.351170539855957, - -2.390864610671997, - -2.437933921813965, - -2.4910943508148193, - -2.548895835876465, - -2.609761953353882, - -2.672032356262207, - -2.734008312225342, - -2.793999195098877, - -2.8503689765930176, - -2.9015796184539795, - -2.9462344646453857, - -2.9831156730651855, - -3.011216640472412, - -3.029771327972412, - -3.038273334503174, - -2.284207344055176, - -2.2867445945739746, - -2.299497127532959, - -2.3221170902252197, - -2.353987455368042, - -2.3942389488220215, - -2.4417734146118164, - -2.4952945709228516, - -2.55334210395813, - -2.614332914352417, - -2.676603078842163, - -2.7384543418884277, - -2.798199415206909, - -2.854208469390869, - -2.904953956604004, - -2.94905161857605, - -2.9852983951568604, - -3.0127058029174805, - -3.0305261611938477, - -3.038273334503174, - -2.284207344055176, - -2.2877817153930664, - -2.3015432357788086, - -2.3251163959503174, - -2.3578579425811768, - -2.3988752365112305, - -2.4470489025115967, - -2.501065254211426, - -2.55945086479187, - -2.620612859725952, - -2.6828830242156982, - -2.744563102722168, - -2.8039700984954834, - -2.8594839572906494, - -2.909590244293213, - -2.9529221057891846, - -2.988297700881958, - -3.01475191116333, - -3.0315632820129395, - -3.038273334503174, - -2.284207344055176, - -2.2889888286590576, - -2.303924560546875, - -2.3286068439483643, - -2.3623623847961426, - -2.404270648956299, - -2.453188419342041, - -2.5077812671661377, - -2.5665600299835205, - -2.6279215812683105, - -2.6901917457580566, - -2.7516722679138184, - -2.8106861114501953, - -2.8656234741210938, - -2.9149856567382812, - -2.9574265480041504, - -2.991788148880005, - -3.0171332359313965, - -3.0327703952789307, - -3.038273334503174, - -2.284207344055176, - -2.2902350425720215, - -2.306382894515991, - -2.3322103023529053, - -2.3670127391815186, - -2.4098410606384277, - -2.459526777267456, - -2.5147147178649902, - -2.573899507522583, - -2.6354668140411377, - -2.697736978530884, - -2.759011745452881, - -2.817619562149048, - -2.871961832046509, - -2.92055606842041, - -2.9620766639709473, - -2.995391607284546, - -3.0195915699005127, - -3.0340166091918945, - -3.038273334503174, - -2.284207344055176, - -2.2913851737976074, - -2.308651924133301, - -2.335536241531372, - -2.371304988861084, - -2.414982318878174, - -2.465376853942871, - -2.5211141109466553, - -2.5806736946105957, - -2.6424310207366943, - -2.7047011852264404, - -2.7657859325408936, - -2.824019193649292, - -2.877811908721924, - -2.9256973266601562, - -2.9663689136505127, - -2.9987175464630127, - -3.0218605995178223, - -3.0351667404174805, - -3.038273334503174, - -2.284207344055176, - -2.2923147678375244, - -2.31048583984375, - -2.338224411010742, - -2.3747739791870117, - -2.419137477874756, - -2.4701051712036133, - -2.5262863636016846, - -2.586148738861084, - -2.648059606552124, - -2.71032977104187, - -2.771260976791382, - -2.829191207885742, - -2.882540225982666, - -2.9298524856567383, - -2.9698379039764404, - -3.001405715942383, - -3.0236945152282715, - -3.0360965728759766, - -3.038273334503174, - -2.284207344055176, - -2.2929232120513916, - -2.311685562133789, - -2.3399832248687744, - -2.3770437240600586, - -2.42185640335083, - -2.473198890686035, - -2.5296707153320312, - -2.589731216430664, - -2.651742458343506, - -2.714012861251831, - -2.774843454360962, - -2.832575559616089, - -2.885633945465088, - -2.9325714111328125, - -2.9721078872680664, - -3.003164529800415, - -3.0248944759368896, - -3.0367047786712646, - -3.038273334503174, - -2.284207344055176, - -2.2931442260742188, - -2.312121629714966, - -2.3406221866607666, - -2.377868413925171, - -2.422844409942627, - -2.474323034286499, - -2.530900239944458, - -2.5910329818725586, - -2.653080701828003, - -2.715350866317749, - -2.7761452198028564, - -2.8338053226470947, - -2.8867580890655518, - -2.9335594177246094, - -2.9729325771331787, - -3.0038037300109863, - -3.0253303050994873, - -3.036925792694092, - -3.038273334503174, - -2.284207344055176, - -2.2929539680480957, - -2.311746597290039, - -2.3400723934173584, - -2.3771588802337646, - -2.421994209289551, - -2.473355770111084, - -2.5298421382904053, - -2.5899128913879395, - -2.6519291400909424, - -2.7141993045806885, - -2.7750251293182373, - -2.832746982574463, - -2.8857908248901367, - -2.932709217071533, - -2.9722228050231934, - -3.003253698348999, - -3.0249552726745605, - -3.0367355346679688, - -3.038273334503174, - -2.284207344055176, - -2.2923731803894043, - -2.310600757598877, - -2.338392972946167, - -2.3749914169311523, - -2.419398069381714, - -2.4704017639160156, - -2.526610851287842, - -2.5864923000335693, - -2.6484127044677734, - -2.7106828689575195, - -2.771604537963867, - -2.8295156955718994, - -2.8828368186950684, - -2.9301133155822754, - -2.97005558013916, - -3.0015742778778076, - -3.0238094329833984, - -3.0361547470092773, - -3.038273334503174, - -2.284207344055176, - -2.2914648056030273, - -2.3088085651397705, - -2.335766077041626, - -2.3716015815734863, - -2.415337562561035, - -2.4657812118530273, - -2.5215563774108887, - -2.581141948699951, - -2.6429121494293213, - -2.7051825523376465, - -2.766254186630249, - -2.8244612216949463, - -2.87821626663208, - -2.9260525703430176, - -2.966665506362915, - -2.9989473819732666, - -3.022017478942871, - -3.0352463722229004, - -3.038273334503174, - -2.284207344055176, - -2.2903270721435547, - -2.3065643310546875, - -2.3324763774871826, - -2.367356061935425, - -2.410252332687378, - -2.4599947929382324, - -2.5152266025543213, - -2.574441432952881, - -2.636023998260498, - -2.698294162750244, - -2.7595536708831787, - -2.818131446838379, - -2.872429847717285, - -2.9209673404693604, - -2.9624202251434326, - -2.9956576824188232, - -3.019773006439209, - -3.0341086387634277, - -3.038273334503174, - -2.284207344055176, - -2.289083480834961, - -2.3041110038757324, - -2.3288803100585938, - -2.362715482711792, - -2.404693603515625, - -2.453669548034668, - -2.508307695388794, - -2.567117214202881, - -2.6284942626953125, - -2.6907646656036377, - -2.7522294521331787, - -2.8112125396728516, - -2.8661046028137207, - -2.9154086112976074, - -2.9577794075012207, - -2.9920616149902344, - -3.017319917678833, - -3.032865047454834, - -3.038273334503174, - -2.284207344055176, - -2.2878687381744385, - -2.3017146587371826, - -2.3253676891326904, - -2.358182430267334, - -2.399263620376587, - -2.44749116897583, - -2.501549005508423, - -2.559962749481201, - -2.6211392879486084, - -2.6834094524383545, - -2.745074987411499, - -2.8044538497924805, - -2.859926223754883, - -2.9099788665771484, - -2.953246593475342, - -2.988548994064331, - -3.014923572540283, - -3.0316503047943115, - -3.038273334503174, - -2.284207344055176, - -2.2868144512176514, - -2.2996349334716797, - -2.3223190307617188, - -2.354248046875, - -2.3945510387420654, - -2.4421286582946777, - -2.495683193206787, - -2.55375337600708, - -2.614755630493164, - -2.6770260334014893, - -2.738865613937378, - -2.7985880374908447, - -2.8545637130737305, - -2.905266284942627, - -2.949312210083008, - -2.9855003356933594, - -3.012843608856201, - -3.0305960178375244, - -3.038273334503174, - -2.284207344055176, - -2.2860348224639893, - -2.2980971336364746, - -2.3200647830963135, - -2.351339101791382, - -2.391066551208496, - -2.4381637573242188, - -2.4913456439971924, - -2.5491621494293213, - -2.6100356578826904, - -2.6723058223724365, - -2.734274387359619, - -2.79425048828125, - -2.8505988121032715, - -2.9017815589904785, - -2.9464030265808105, - -2.983246326446533, - -3.011305809020996, - -3.0298163890838623, - -3.038273334503174, - -2.284207344055176, - -2.285614490509033, - -2.2972679138183594, - -2.3188493251800537, - -2.3497703075408936, - -2.3891875743865967, - -2.436025619506836, - -2.489006757736206, - -2.5466861724853516, - -2.607490301132202, - -2.6697607040405273, - -2.7317984104156494, - -2.7919116020202637, - -2.8484606742858887, - -2.899902582168579, - -2.9448344707489014, - -2.9820306301116943, - -3.010476589202881, - -3.0293960571289062, - -3.038273334503174, - -2.284207344055176, - -2.2855987548828125, - -2.297236919403076, - -2.3188040256500244, - -2.3497121334075928, - -2.38911771774292, - -2.435945987701416, - -2.488919973373413, - -2.5465941429138184, - -2.607395648956299, - -2.669666051864624, - -2.731706380844116, - -2.7918248176574707, - -2.8483810424804688, - -2.8998327255249023, - -2.9447760581970215, - -2.981985569000244, - -3.0104455947875977, - -3.0293805599212646, - -3.038273334503174, - -2.284207344055176, - -2.285989761352539, - -2.2980079650878906, - -2.319934129714966, - -2.351170539855957, - -2.390864610671997, - -2.437933921813965, - -2.4910943508148193, - -2.548895835876465, - -2.609761953353882, - -2.672032356262207, - -2.734008312225342, - -2.793999195098877, - -2.8503689765930176, - -2.9015796184539795, - -2.9462344646453857, - -2.9831156730651855, - -3.011216640472412, - -3.029771327972412, - -3.038273334503174 - ] - }, - { - "alphahull": 0, - "color": "#B6E880", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.2582835555076599, - -0.24516060948371887, - -0.23090484738349915, - -0.21590515971183777, - -0.20057068765163422, - -0.18531973659992218, - -0.1705682873725891, - -0.15671871602535248, - -0.1441488265991211, - -0.1332014799118042, - -0.1241753101348877, - -0.11731649935245514, - -0.11281213909387589, - -0.1107851192355156, - -0.11129071563482285, - -0.11431514471769333, - -0.11977590620517731, - -0.12752404808998108, - -0.1373482048511505, - -0.14898040890693665, - -0.2582835555076599, - -0.24557118117809296, - -0.23171481490135193, - -0.21709240972995758, - -0.20210283994674683, - -0.18715499341487885, - -0.1726565808057785, - -0.1590031087398529, - -0.1465669870376587, - -0.135687455534935, - -0.1266612708568573, - -0.11973465234041214, - -0.11509653180837631, - -0.11287342011928558, - -0.11312597244977951, - -0.11584729701280594, - -0.12096315622329712, - -0.12833400070667267, - -0.1377587765455246, - -0.14898040890693665, - -0.2582835555076599, - -0.24727857112884521, - -0.23508301377296448, - -0.22202955186367035, - -0.208474263548851, - -0.19478687644004822, - -0.1813407689332962, - -0.16850270330905914, - -0.15662287175655365, - -0.14602532982826233, - -0.13699916005134583, - -0.1297905445098877, - -0.12459612637758255, - -0.12155760824680328, - -0.12075785547494888, - -0.12221871316432953, - -0.1259002983570099, - -0.13170219957828522, - -0.13946616649627686, - -0.14898040890693665, - -0.2582835555076599, - -0.25009775161743164, - -0.24064446985721588, - -0.23018158972263336, - -0.21899449825286865, - -0.20738837122917175, - -0.19567976891994476, - -0.1841880828142166, - -0.17322677373886108, - -0.16309484839439392, - -0.15406866371631622, - -0.14639443159103394, - -0.14028149843215942, - -0.13589660823345184, - -0.13335934281349182, - -0.13273894786834717, - -0.1340523362159729, - -0.13726365566253662, - -0.14228534698486328, - -0.14898040890693665, - -0.2582835555076599, - -0.2537232041358948, - -0.24779650568962097, - -0.24066510796546936, - -0.23252354562282562, - -0.22359389066696167, - -0.21411973237991333, - -0.2043594866991043, - -0.19457940757274628, - -0.1850462555885315, - -0.1760200709104538, - -0.16774706542491913, - -0.1604529172182083, - -0.1543365716934204, - -0.14956487715244293, - -0.14626799523830414, - -0.1445358544588089, - -0.1444156914949417, - -0.14591079950332642, - -0.14898040890693665, - -0.2582835555076599, - -0.25776207447052, - -0.25576409697532654, - -0.2523440718650818, - -0.24759529531002045, - -0.24164733290672302, - -0.23466239869594574, - -0.22683104872703552, - -0.21836687624454498, - -0.2095007747411728, - -0.2004745900630951, - -0.19153453409671783, - -0.18292446434497833, - -0.17487923800945282, - -0.16761831939220428, - -0.16133975982666016, - -0.15621480345726013, - -0.15238328278064728, - -0.14994968473911285, - -0.14898040890693665, - -0.2582835555076599, - -0.26177671551704407, - -0.2636837959289551, - -0.2639528512954712, - -0.26257652044296265, - -0.25959229469299316, - -0.2550816535949707, - -0.24916759133338928, - -0.2420114278793335, - -0.23380838334560394, - -0.22478219866752625, - -0.21517910063266754, - -0.2052610069513321, - -0.19529849290847778, - -0.18556329607963562, - -0.17632097005844116, - -0.16782359778881073, - -0.160302996635437, - -0.15396429598331451, - -0.14898040890693665, - -0.2582835555076599, - -0.26533201336860657, - -0.2706974446773529, - -0.27423349022865295, - -0.2758437395095825, - -0.27548420429229736, - -0.2731647491455078, - -0.26894864439964294, - -0.2629508376121521, - -0.2553349733352661, - -0.2463088035583496, - -0.23611849546432495, - -0.22504206001758575, - -0.2133816033601761, - -0.20145520567893982, - -0.18958818912506104, - -0.1781042367219925, - -0.16731661558151245, - -0.15751959383487701, - -0.14898040890693665, - -0.2582835555076599, - -0.26804274320602417, - -0.27604493498802185, - -0.28207191824913025, - -0.28595924377441406, - -0.28760090470314026, - -0.2869521379470825, - -0.28403058648109436, - -0.27891597151756287, - -0.2717478275299072, - -0.26272162795066833, - -0.2520836293697357, - -0.24012400209903717, - -0.2271689772605896, - -0.21357190608978271, - -0.19970370829105377, - -0.1859426498413086, - -0.1726641207933426, - -0.16023032367229462, - -0.14898040890693665, - -0.2582835555076599, - -0.269615113735199, - -0.27914685010910034, - -0.286618709564209, - -0.29182690382003784, - -0.29462936520576477, - -0.2949496805667877, - -0.2927790880203247, - -0.2881767749786377, - -0.28126829862594604, - -0.27224212884902954, - -0.26134443283081055, - -0.24887250363826752, - -0.2351665198802948, - -0.22060036659240723, - -0.20557135343551636, - -0.19048944115638733, - -0.1757660210132599, - -0.16180270910263062, - -0.14898040890693665, - -0.2582835555076599, - -0.2698788046836853, - -0.2796669602394104, - -0.287381112575531, - -0.2928108274936676, - -0.29580795764923096, - -0.2962907552719116, - -0.2942460775375366, - -0.28972968459129333, - -0.2828647494316101, - -0.2738385796546936, - -0.2628973424434662, - -0.2503395080566406, - -0.2365075945854187, - -0.22177894413471222, - -0.20655527710914612, - -0.19125187397003174, - -0.17628616094589233, - -0.16206638514995575, - -0.14898040890693665, - -0.2582835555076599, - -0.2688051462173462, - -0.27754899859428406, - -0.2842766046524048, - -0.28880441188812256, - -0.29100891947746277, - -0.2908300459384918, - -0.2882726192474365, - -0.28340643644332886, - -0.27636417746543884, - -0.26733797788619995, - -0.2565740942955017, - -0.24436603486537933, - -0.2310468852519989, - -0.21697992086410522, - -0.20254886150360107, - -0.18814733624458313, - -0.174168199300766, - -0.16099275648593903, - -0.14898040890693665, - -0.2582835555076599, - -0.26651057600975037, - -0.27302244305610657, - -0.27764150500297546, - -0.28024178743362427, - -0.28075236082077026, - -0.279159277677536, - -0.27550601959228516, - -0.26989221572875977, - -0.2624709904193878, - -0.2534448206424713, - -0.24305987358093262, - -0.23159943521022797, - -0.2193761169910431, - -0.20672334730625153, - -0.19398623704910278, - -0.181512251496315, - -0.1696416288614273, - -0.158698171377182, - -0.14898040890693665, - -0.2582835555076599, - -0.263243705034256, - -0.2665777802467346, - -0.26819488406181335, - -0.2680508494377136, - -0.2661496698856354, - -0.2625431418418884, - -0.25732970237731934, - -0.2506515085697174, - -0.24269074201583862, - -0.23366455733776093, - -0.22381916642189026, - -0.21342311799526215, - -0.2027599960565567, - -0.19212065637111664, - -0.18179532885551453, - -0.1720656156539917, - -0.16319698095321655, - -0.15543130040168762, - -0.14898040890693665, - -0.2582835555076599, - -0.25935855507850647, - -0.25891345739364624, - -0.2569604218006134, - -0.25355273485183716, - -0.24878334999084473, - -0.2427823394536972, - -0.2357134222984314, - -0.2277693897485733, - -0.21916696429252625, - -0.21014077961444855, - -0.20093706250190735, - -0.1918068379163742, - -0.18299917876720428, - -0.174754336476326, - -0.16729719936847687, - -0.16083116829395294, - -0.15553264319896698, - -0.15154613554477692, - -0.14898040890693665, - -0.2582835555076599, - -0.2552761137485504, - -0.25085997581481934, - -0.24515555799007416, - -0.23831850290298462, - -0.23053528368473053, - -0.22201819717884064, - -0.2129995971918106, - -0.20372547209262848, - -0.1944487988948822, - -0.1854226142168045, - -0.17689312994480133, - -0.16909301280975342, - -0.16223503649234772, - -0.1565062552690506, - -0.15206295251846313, - -0.1490263044834137, - -0.14747916162014008, - -0.14746372401714325, - -0.14898040890693665, - -0.2582835555076599, - -0.25143882632255554, - -0.24329005181789398, - -0.23405949771404266, - -0.22399896383285522, - -0.21338288486003876, - -0.2025008201599121, - -0.19164960086345673, - -0.1811252236366272, - -0.17121478915214539, - -0.1621886044740677, - -0.15429288148880005, - -0.14774301648139954, - -0.142717644572258, - -0.13935387134552002, - -0.13774341344833374, - -0.1379302442073822, - -0.13990923762321472, - -0.14362642168998718, - -0.14898040890693665, - -0.2582835555076599, - -0.24826249480247498, - -0.23702402412891388, - -0.22487470507621765, - -0.21214592456817627, - -0.19918492436408997, - -0.18634523451328278, - -0.1739770621061325, - -0.16241779923439026, - -0.15198276937007904, - -0.14295658469200134, - -0.1355854570865631, - -0.13007047772407532, - -0.12656205892562866, - -0.12515589594841003, - -0.12589037418365479, - -0.128745436668396, - -0.13364320993423462, - -0.14045009016990662, - -0.14898040890693665, - -0.2582835555076599, - -0.2460913211107254, - -0.23274090886116028, - -0.2185964733362198, - -0.20404383540153503, - -0.1894799917936325, - -0.1753021478652954, - -0.16189707815647125, - -0.14963042736053467, - -0.1388368010520935, - -0.129810631275177, - -0.12279809266328812, - -0.11799050122499466, - -0.11551898717880249, - -0.11545095592737198, - -0.11778829246759415, - -0.12246721237897873, - -0.12936009466648102, - -0.13827891647815704, - -0.14898040890693665, - -0.2582835555076599, - -0.24516060948371887, - -0.23090484738349915, - -0.21590515971183777, - -0.20057068765163422, - -0.18531973659992218, - -0.1705682873725891, - -0.15671871602535248, - -0.1441488265991211, - -0.1332014799118042, - -0.1241753101348877, - -0.11731649935245514, - -0.11281213909387589, - -0.1107851192355156, - -0.11129071563482285, - -0.11431514471769333, - -0.11977590620517731, - -0.12752404808998108, - -0.1373482048511505, - -0.14898040890693665 - ], - "y": [ - -0.2582835257053375, - -0.25700974464416504, - -0.2542799711227417, - -0.2501686215400696, - -0.24478790163993835, - -0.23828455805778503, - -0.23083597421646118, - -0.2226453274488449, - -0.21393606066703796, - -0.20494571328163147, - -0.19591952860355377, - -0.187103733420372, - -0.1787387728691101, - -0.17105284333229065, - -0.16425558924674988, - -0.15853241086006165, - -0.1540394425392151, - -0.15089921653270721, - -0.14919741451740265, - -0.14898043870925903, - -0.2582835257053375, - -0.2610621154308319, - -0.2622741758823395, - -0.2618865966796875, - -0.2599100172519684, - -0.2563983201980591, - -0.25144726037979126, - -0.24519196152687073, - -0.23780299723148346, - -0.22948193550109863, - -0.22045575082302094, - -0.2109706699848175, - -0.20128540694713593, - -0.19166414439678192, - -0.18236933648586273, - -0.17365452647209167, - -0.165757417678833, - -0.158893421292305, - -0.15324977040290833, - -0.14898043870925903, - -0.2582835257053375, - -0.26473259925842285, - -0.2695150375366211, - -0.27250033617019653, - -0.273607075214386, - -0.2728050947189331, - -0.27011623978614807, - -0.2656138837337494, - -0.25942081212997437, - -0.25170597434043884, - -0.24267980456352234, - -0.2325884997844696, - -0.22170734405517578, - -0.21033312380313873, - -0.19877614080905914, - -0.18735159933567047, - -0.17637114226818085, - -0.1661342829465866, - -0.15692026913166046, - -0.14898043870925903, - -0.2582835257053375, - -0.2676234841346741, - -0.2752178907394409, - -0.28085964918136597, - -0.2843948304653168, - -0.28572702407836914, - -0.2848198413848877, - -0.2816981077194214, - -0.2764469087123871, - -0.26920950412750244, - -0.26018333435058594, - -0.24961459636688232, - -0.23779155313968658, - -0.22503674030303955, - -0.21169805526733398, - -0.19813933968544006, - -0.18473045527935028, - -0.17183715105056763, - -0.1598111391067505, - -0.14898043870925903, - -0.2582835257053375, - -0.26942142844200134, - -0.2787647843360901, - -0.2860586941242218, - -0.2911042273044586, - -0.29376375675201416, - -0.2939647138118744, - -0.29170161485671997, - -0.2870362401008606, - -0.28009578585624695, - -0.27106958627700806, - -0.26020389795303345, - -0.24779507517814636, - -0.23418158292770386, - -0.219734787940979, - -0.2048487514257431, - -0.18992950022220612, - -0.1753840297460556, - -0.16160908341407776, - -0.14898043870925903, - -0.2582835257053375, - -0.2699316740036011, - -0.2797712981700897, - -0.28753405809402466, - -0.2930082082748413, - -0.29604440927505493, - -0.29655981063842773, - -0.2945404052734375, - -0.2900412380695343, - -0.28318506479263306, - -0.27415889501571655, - -0.26320892572402954, - -0.2506338357925415, - -0.2367766946554184, - -0.22201544046401978, - -0.2067527174949646, - -0.19140487909317017, - -0.17639055848121643, - -0.1621193140745163, - -0.14898043870925903, - -0.2582835257053375, - -0.26909884810447693, - -0.27812841534614563, - -0.2851259112358093, - -0.28990045189857483, - -0.2923218309879303, - -0.2923239767551422, - -0.2899068295955658, - -0.285136342048645, - -0.2781426012516022, - -0.26911643147468567, - -0.25830399990081787, - -0.246000275015831, - -0.23254084587097168, - -0.21829286217689514, - -0.20364496111869812, - -0.18899670243263245, - -0.17474766075611115, - -0.16128650307655334, - -0.14898043870925903, - -0.2582835257053375, - -0.2670132517814636, - -0.27401411533355713, - -0.2790951430797577, - -0.28211772441864014, - -0.2829994261264801, - -0.28171616792678833, - -0.27830302715301514, - -0.2728530168533325, - -0.2655148208141327, - -0.2564886510372162, - -0.24602068960666656, - -0.23439645767211914, - -0.22193306684494019, - -0.20897045731544495, - -0.19586223363876343, - -0.182965949177742, - -0.17063337564468384, - -0.15920092165470123, - -0.14898043870925903, - -0.2582835257053375, - -0.26390090584754944, - -0.2678743004798889, - -0.2700953483581543, - -0.2705034017562866, - -0.26908743381500244, - -0.26588597893714905, - -0.26098641753196716, - -0.2545223534107208, - -0.24667015671730042, - -0.23764397203922272, - -0.22769004106521606, - -0.21707984805107117, - -0.20610284805297852, - -0.19505846500396729, - -0.1842479258775711, - -0.17396613955497742, - -0.16449354588985443, - -0.15608856081962585, - -0.14898043870925903, - -0.2582835257053375, - -0.26009905338287354, - -0.2603742778301239, - -0.2591017186641693, - -0.2563161253929138, - -0.2520934045314789, - -0.24654880166053772, - -0.2398335486650467, - -0.23213079571723938, - -0.22365067899227142, - -0.21462449431419373, - -0.20529846847057343, - -0.1959269940853119, - -0.1867656707763672, - -0.17806443572044373, - -0.17006061971187592, - -0.16297252476215363, - -0.15699352324008942, - -0.15228669345378876, - -0.14898043870925903, - -0.2582835257053375, - -0.256019651889801, - -0.2523267865180969, - -0.24730566143989563, - -0.2410932183265686, - -0.23385894298553467, - -0.22580014169216156, - -0.21713665127754211, - -0.20810480415821075, - -0.19895093142986298, - -0.18992476165294647, - -0.1812724769115448, - -0.1732300966978073, - -0.16601701080799103, - -0.1598299741744995, - -0.1548377275466919, - -0.15117645263671875, - -0.14894604682922363, - -0.14820732176303864, - -0.14898043870925903, - -0.2582835257053375, - -0.25210484862327576, - -0.2446039319038391, - -0.2359854131937027, - -0.22648438811302185, - -0.21636000275611877, - -0.20588842034339905, - -0.19535529613494873, - -0.1850479543209076, - -0.17524752020835876, - -0.16622133553028107, - -0.15821562707424164, - -0.15144875645637512, - -0.14610528945922852, - -0.14233103394508362, - -0.14022889733314514, - -0.139856219291687, - -0.14122317731380463, - -0.14429250359535217, - -0.14898043870925903, - -0.2582835257053375, - -0.2487787902355194, - -0.23804257810115814, - -0.22636771202087402, - -0.21407268941402435, - -0.20149289071559906, - -0.1889714151620865, - -0.1768498420715332, - -0.1654588133096695, - -0.15510906279087067, - -0.14608287811279297, - -0.13862648606300354, - -0.1329432874917984, - -0.12918826937675476, - -0.1274639070034027, - -0.12781719863414764, - -0.13023851811885834, - -0.13466182351112366, - -0.14096644520759583, - -0.14898043870925903, - -0.2582835257053375, - -0.24640196561813354, - -0.23335374891757965, - -0.2194947898387909, - -0.20520314574241638, - -0.19086866080760956, - -0.1768822968006134, - -0.1636255979537964, - -0.1514601707458496, - -0.14071786403656006, - -0.13169169425964355, - -0.12462785840034485, - -0.11971905082464218, - -0.11709916591644287, - -0.1168396845459938, - -0.11894765496253967, - -0.12336559593677521, - -0.12997299432754517, - -0.13858962059020996, - -0.14898043870925903, - -0.2582835257053375, - -0.24523192644119263, - -0.23104557394981384, - -0.2161114364862442, - -0.2008369117975235, - -0.1856386363506317, - -0.1709311604499817, - -0.15711568295955658, - -0.1445690393447876, - -0.13363349437713623, - -0.12460730969905853, - -0.11773671954870224, - -0.11320912837982178, - -0.11114802211523056, - -0.11160966008901596, - -0.11458142101764679, - -0.11998224258422852, - -0.12766481935977936, - -0.13741958141326904, - -0.14898043870925903, - -0.2582835257053375, - -0.24539543688297272, - -0.23136815428733826, - -0.21658429503440857, - -0.20144711434841156, - -0.18636956810951233, - -0.1717628687620163, - -0.15802547335624695, - -0.14553210139274597, - -0.13462357223033905, - -0.12559738755226135, - -0.11869978904724121, - -0.11411892622709274, - -0.11197973042726517, - -0.11234058439731598, - -0.11519162356853485, - -0.12045509368181229, - -0.12798739969730377, - -0.13758310675621033, - -0.14898043870925903, - -0.2582835257053375, - -0.24687480926513672, - -0.23428654670715332, - -0.22086209058761597, - -0.20696765184402466, - -0.1929822415113449, - -0.17928729951381683, - -0.16625642776489258, - -0.15424507856369019, - -0.1435808539390564, - -0.1345546841621399, - -0.12741275131702423, - -0.12234988063573837, - -0.1195041760802269, - -0.11895326524972916, - -0.12071216851472855, - -0.12473289668560028, - -0.13090579211711884, - -0.13906246423721313, - -0.14898043870925903, - -0.2582835257053375, - -0.24950972199440002, - -0.2394844889640808, - -0.22848130762577057, - -0.2168002873659134, - -0.20476007461547852, - -0.19268909096717834, - -0.18091659247875214, - -0.1697637140750885, - -0.15953469276428223, - -0.15050850808620453, - -0.14293140172958374, - -0.13701003789901733, - -0.1329059600830078, - -0.13073110580444336, - -0.1305447816848755, - -0.13235211372375488, - -0.13610374927520752, - -0.14169737696647644, - -0.14898043870925903, - -0.2582835257053375, - -0.2530146539211273, - -0.24639873206615448, - -0.23861625790596008, - -0.2298794984817505, - -0.2204267680644989, - -0.21051593124866486, - -0.20041730999946594, - -0.19040638208389282, - -0.18075621128082275, - -0.17173004150390625, - -0.16357406973838806, - -0.15651077032089233, - -0.15073280036449432, - -0.14639779925346375, - -0.14362399280071259, - -0.1424870491027832, - -0.14301797747612, - -0.14520230889320374, - -0.14898043870925903, - -0.2582835257053375, - -0.25700974464416504, - -0.2542799711227417, - -0.25016865134239197, - -0.24478791654109955, - -0.23828455805778503, - -0.23083597421646118, - -0.2226453423500061, - -0.21393606066703796, - -0.20494572818279266, - -0.19591954350471497, - -0.1871037483215332, - -0.1787387877702713, - -0.17105284333229065, - -0.16425558924674988, - -0.15853242576122284, - -0.1540394425392151, - -0.15089921653270721, - -0.14919741451740265, - -0.14898043870925903 - ], - "z": [ - -1.7218902111053467, - -1.718856930732727, - -1.7059680223464966, - -1.68357515335083, - -1.6522890329360962, - -1.612963080406189, - -1.5666700601577759, - -1.5146726369857788, - -1.4583892822265625, - -1.399355173110962, - -1.339180588722229, - -1.279507040977478, - -1.2219622135162354, - -1.1681157350540161, - -1.119436502456665, - -1.0772521495819092, - -1.0427136421203613, - -1.0167628526687622, - -1.000107765197754, - -0.9932026863098145, - -1.7218902111053467, - -1.7181874513626099, - -1.704647421836853, - -1.681639313697815, - -1.64979088306427, - -1.6099708080291748, - -1.563265085220337, - -1.5109480619430542, - -1.45444655418396, - -1.3953018188476562, - -1.335127353668213, - -1.2755643129348755, - -1.2182375192642212, - -1.1647107601165771, - -1.1164441108703613, - -1.074753999710083, - -1.0407778024673462, - -1.015442132949829, - -0.9994382858276367, - -0.9932026863098145, - -1.7218902111053467, - -1.7173807621002197, - -1.7030560970306396, - -1.6793067455291748, - -1.6467806100845337, - -1.6063649654388428, - -1.5591621398925781, - -1.5064598321914673, - -1.4496954679489136, - -1.3904175758361816, - -1.3302429914474487, - -1.270813226699829, - -1.2137492895126343, - -1.1606078147888184, - -1.1128382682800293, - -1.0717437267303467, - -1.038445234298706, - -1.0138508081436157, - -0.9986315965652466, - -0.9932026863098145, - -1.7218902111053467, - -1.716524362564087, - -1.7013664245605469, - -1.6768300533294678, - -1.6435843706130981, - -1.6025364398956299, - -1.5548057556152344, - -1.5016943216323853, - -1.4446510076522827, - -1.385231614112854, - -1.325057029724121, - -1.2657687664031982, - -1.2089838981628418, - -1.1562514305114746, - -1.1090097427368164, - -1.0685476064682007, - -1.035968542098999, - -1.0121612548828125, - -0.997775137424469, - -0.9932026863098145, - -1.7218902111053467, - -1.7157107591629028, - -1.6997616291046143, - -1.6744775772094727, - -1.640548586845398, - -1.5989000797271729, - -1.5506680011749268, - -1.4971680641174316, - -1.4398596286773682, - -1.3803060054779053, - -1.3201314210891724, - -1.2609775066375732, - -1.2044576406478882, - -1.152113676071167, - -1.105373501777649, - -1.0655118227005005, - -1.033616065979004, - -1.0105563402175903, - -0.9969615936279297, - -0.9932026863098145, - -1.7218902111053467, - -1.7150284051895142, - -1.6984155178070068, - -1.6725044250488281, - -1.6380022764205933, - -1.5958499908447266, - -1.5471973419189453, - -1.493371605873108, - -1.4358408451080322, - -1.3761743307113647, - -1.3159998655319214, - -1.2569586038589478, - -1.200661063194275, - -1.1486430168151855, - -1.102323293685913, - -1.0629653930664062, - -1.0316429138183594, - -1.009210228919983, - -0.996279239654541, - -0.9932026863098145, - -1.7218902111053467, - -1.7145512104034424, - -1.6974740028381348, - -1.6711243391036987, - -1.636221170425415, - -1.5937166213989258, - -1.5447698831558228, - -1.4907160997390747, - -1.4330298900604248, - -1.3732845783233643, - -1.313110113143921, - -1.2541476488113403, - -1.1980056762695312, - -1.146215558052063, - -1.1001899242401123, - -1.0611844062805176, - -1.03026282787323, - -1.0082687139511108, - -0.9958019852638245, - -0.9932026863098145, - -1.7218902111053467, - -1.7143306732177734, - -1.697039008140564, - -1.6704869270324707, - -1.6353986263275146, - -1.592731237411499, - -1.5436484813690186, - -1.4894895553588867, - -1.4317314624786377, - -1.3719497919082642, - -1.3117752075195312, - -1.2528492212295532, - -1.1967790126800537, - -1.1450942754745483, - -1.0992045402526855, - -1.0603617429733276, - -1.029625415802002, - -1.0078338384628296, - -0.9955815076828003, - -0.9932026863098145, - -1.7218902111053467, - -1.7143909931182861, - -1.697157859802246, - -1.6706610918045044, - -1.6356234550476074, - -1.5930005311965942, - -1.5439549684524536, - -1.4898247718811035, - -1.4320862293243408, - -1.3723145723342896, - -1.3121399879455566, - -1.253204107284546, - -1.1971142292022705, - -1.1454006433486938, - -1.0994738340377808, - -1.0605865716934204, - -1.0297995805740356, - -1.0079526901245117, - -0.9956417679786682, - -0.9932026863098145, - -1.7218902111053467, - -1.714725375175476, - -1.6978175640106201, - -1.6716281175613403, - -1.636871337890625, - -1.5944952964782715, - -1.5456559658050537, - -1.491685390472412, - -1.4340559244155884, - -1.3743394613265991, - -1.3141648769378662, - -1.255173683166504, - -1.1989749670028687, - -1.147101640701294, - -1.1009687185287476, - -1.0618345737457275, - -1.0307666063308716, - -1.0086123943328857, - -0.9959762096405029, - -0.9932026863098145, - -1.7218902111053467, - -1.7152976989746094, - -1.6989467144012451, - -1.6732832193374634, - -1.6390072107315063, - -1.5970537662506104, - -1.5485670566558838, - -1.4948698282241821, - -1.4374268054962158, - -1.3778048753738403, - -1.317630410194397, - -1.258544683456421, - -1.2021594047546387, - -1.150012731552124, - -1.1035270690917969, - -1.0639703273773193, - -1.032421588897705, - -1.0097415447235107, - -0.9965485334396362, - -0.9932026863098145, - -1.7218902111053467, - -1.7160459756851196, - -1.700422763824463, - -1.67544686794281, - -1.6417994499206543, - -1.6003984212875366, - -1.552372932434082, - -1.4990330934524536, - -1.4418338537216187, - -1.3823355436325073, - -1.3221609592437744, - -1.2629516124725342, - -1.2063226699829102, - -1.1538186073303223, - -1.1068717241287231, - -1.0667626857757568, - -1.0345853567123413, - -1.0112175941467285, - -0.9972968101501465, - -0.9932026863098145, - -1.7218902111053467, - -1.7168891429901123, - -1.7020859718322754, - -1.677884817123413, - -1.6449456214904785, - -1.6041669845581055, - -1.5566611289978027, - -1.5037238597869873, - -1.446799397468567, - -1.3874402046203613, - -1.327265739440918, - -1.2679171562194824, - -1.2110134363174438, - -1.158106803894043, - -1.110640287399292, - -1.069908857345581, - -1.0370233058929443, - -1.012880802154541, - -0.9981399178504944, - -0.9932026863098145, - -1.7218902111053467, - -1.7177356481552124, - -1.7037560939788818, - -1.6803327798843384, - -1.6481046676635742, - -1.6079509258270264, - -1.5609668493270874, - -1.5084339380264282, - -1.4517852067947388, - -1.3925659656524658, - -1.332391381263733, - -1.2729030847549438, - -1.2157235145568848, - -1.1624125242233276, - -1.1144243478775024, - -1.0730679035186768, - -1.03947114944458, - -1.014550805091858, - -0.9989864826202393, - -0.9932026863098145, - -1.7218902111053467, - -1.718493938446045, - -1.705251932144165, - -1.682525396347046, - -1.6509343385696411, - -1.6113404035568237, - -1.5648236274719238, - -1.51265287399292, - -1.4562512636184692, - -1.3971571922302246, - -1.3369826078414917, - -1.2773690223693848, - -1.2199424505233765, - -1.166269302368164, - -1.1178138256072998, - -1.0758975744247437, - -1.0416638851165771, - -1.0160467624664307, - -0.9997447729110718, - -0.9932026863098145, - -1.7218902111053467, - -1.7190817594528198, - -1.706411600112915, - -1.6842252016067505, - -1.653127908706665, - -1.613968014717102, - -1.567813515663147, - -1.5159235000610352, - -1.459713339805603, - -1.4007164239883423, - -1.3405418395996094, - -1.280831217765808, - -1.2232130765914917, - -1.1692591905593872, - -1.1204414367675781, - -1.0780911445617676, - -1.0433636903762817, - -1.0172063112258911, - -1.0003325939178467, - -0.9932026863098145, - -1.7218902111053467, - -1.719435453414917, - -1.7071092128753662, - -1.6852478981018066, - -1.6544477939605713, - -1.6155489683151245, - -1.5696125030517578, - -1.5178914070129395, - -1.461796522140503, - -1.4028578996658325, - -1.3426834344863892, - -1.2829142808914185, - -1.2251808643341064, - -1.171058177947998, - -1.1220223903656006, - -1.0794110298156738, - -1.044386386871338, - -1.0179040431976318, - -1.0006862878799438, - -0.9932026863098145, - -1.7218902111053467, - -1.719516634941101, - -1.7072694301605225, - -1.6854827404022217, - -1.6547508239746094, - -1.6159119606018066, - -1.5700255632400513, - -1.518343210220337, - -1.4622747898101807, - -1.4033496379852295, - -1.3431750535964966, - -1.2833925485610962, - -1.2256327867507935, - -1.1714712381362915, - -1.1223853826522827, - -1.079714059829712, - -1.044621229171753, - -1.018064260482788, - -1.000767469406128, - -0.9932026863098145, - -1.7218902111053467, - -1.7193166017532349, - -1.7068748474121094, - -1.6849043369293213, - -1.6540043354034424, - -1.6150176525115967, - -1.5690079927444458, - -1.5172301530838013, - -1.4610965251922607, - -1.402138352394104, - -1.341963768005371, - -1.2822142839431763, - -1.2245197296142578, - -1.170453667640686, - -1.1214910745620728, - -1.0789674520492554, - -1.0440428256988525, - -1.0176695585250854, - -1.0005674362182617, - -0.9932026863098145, - -1.7218902111053467, - -1.718856930732727, - -1.7059680223464966, - -1.68357515335083, - -1.6522890329360962, - -1.612963080406189, - -1.5666700601577759, - -1.5146726369857788, - -1.4583892822265625, - -1.399355173110962, - -1.339180588722229, - -1.279507040977478, - -1.2219622135162354, - -1.1681157350540161, - -1.119436502456665, - -1.0772521495819092, - -1.0427136421203613, - -1.0167628526687622, - -1.000107765197754, - -0.9932026863098145 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.24320165812969208, - -0.25567886233329773, - -0.2693338096141815, - -0.28379398584365845, - -0.29866495728492737, - -0.31354111433029175, - -0.32801663875579834, - -0.34169670939445496, - -0.3542081415653229, - -0.3652096390724182, - -0.37440118193626404, - -0.3815319836139679, - -0.3864075541496277, - -0.3888949155807495, - -0.3889262080192566, - -0.3865005373954773, - -0.3816841244697571, - -0.3746083378791809, - -0.3654661774635315, - -0.3545070290565491, - -0.24320165812969208, - -0.25953155755996704, - -0.27693408727645874, - -0.29493454098701477, - -0.31304192543029785, - -0.33076226711273193, - -0.34761229157447815, - -0.3631322979927063, - -0.37689900398254395, - -0.38853684067726135, - -0.3977283537387848, - -0.40422284603118896, - -0.4078431725502014, - -0.4084905982017517, - -0.4061473608016968, - -0.4008775055408478, - -0.3928247094154358, - -0.3822086453437805, - -0.3693188726902008, - -0.3545070290565491, - -0.24320165812969208, - -0.2616969048976898, - -0.2812057137489319, - -0.3011959195137024, - -0.32112225890159607, - -0.34044116735458374, - -0.35862571001052856, - -0.37517985701560974, - -0.3896520733833313, - -0.40164750814437866, - -0.4108390212059021, - -0.4169759154319763, - -0.41989073157310486, - -0.4195040166378021, - -0.4158262610435486, - -0.408957839012146, - -0.399086058139801, - -0.38648027181625366, - -0.3714842200279236, - -0.3545070290565491, - -0.24320165812969208, - -0.26194024085998535, - -0.2816857695579529, - -0.30189958214759827, - -0.32203036546707153, - -0.34152892231941223, - -0.3598634600639343, - -0.3765338063240051, - -0.39108526706695557, - -0.4031209349632263, - -0.41231244802474976, - -0.4184091091156006, - -0.42124468088150024, - -0.4207417368888855, - -0.4169140160083771, - -0.40986594557762146, - -0.3997897505760193, - -0.38696032762527466, - -0.3717275857925415, - -0.3545070290565491, - -0.24320165812969208, - -0.2602352201938629, - -0.2783222198486328, - -0.29696929454803467, - -0.3156677782535553, - -0.3339076340198517, - -0.35119134187698364, - -0.36704742908477783, - -0.38104337453842163, - -0.39279741048812866, - -0.4019889235496521, - -0.40836721658706665, - -0.41175830364227295, - -0.4120696187019348, - -0.40929272770881653, - -0.4035033881664276, - -0.3948594629764557, - -0.3835967779159546, - -0.3700225353240967, - -0.3545070290565491, - -0.24320165812969208, - -0.2567666172981262, - -0.27147960662841797, - -0.2869393229484558, - -0.30272406339645386, - -0.3184032142162323, - -0.3335491418838501, - -0.34774869680404663, - -0.360614538192749, - -0.3717956840991974, - -0.3809872269630432, - -0.38793838024139404, - -0.39245954155921936, - -0.39442741870880127, - -0.39378830790519714, - -0.3905596435070038, - -0.38482949137687683, - -0.37675416469573975, - -0.36655393242836, - -0.3545070290565491, - -0.24320165812969208, - -0.2519102692604065, - -0.2618994116783142, - -0.27289658784866333, - -0.2846018075942993, - -0.2966957986354828, - -0.30884867906570435, - -0.32072895765304565, - -0.3320125341415405, - -0.34239163994789124, - -0.3515831530094147, - -0.35933637619018555, - -0.3654398024082184, - -0.3697269558906555, - -0.37208089232444763, - -0.37243738770484924, - -0.37078672647476196, - -0.367173969745636, - -0.36169761419296265, - -0.3545070290565491, - -0.24320165812969208, - -0.24619248509407043, - -0.2506197690963745, - -0.25636279582977295, - -0.26326486468315125, - -0.27113771438598633, - -0.27976661920547485, - -0.2889162003993988, - -0.29833683371543884, - -0.30777159333229065, - -0.3169631063938141, - -0.32566067576408386, - -0.33362704515457153, - -0.340644896030426, - -0.34652280807495117, - -0.35110044479370117, - -0.35425296425819397, - -0.3558943271636963, - -0.3559798002243042, - -0.3545070290565491, - -0.24320165812969208, - -0.24023282527923584, - -0.2388630509376526, - -0.2391296774148941, - -0.2410254329442978, - -0.244498610496521, - -0.24945446848869324, - -0.25575780868530273, - -0.26323673129081726, - -0.27168720960617065, - -0.2808787524700165, - -0.29056060314178467, - -0.30046868324279785, - -0.3103327453136444, - -0.31988367438316345, - -0.3288609981536865, - -0.33701983094215393, - -0.34413760900497437, - -0.350020170211792, - -0.3545070290565491, - -0.24320167303085327, - -0.23467716574668884, - -0.22790324687957764, - -0.22306469082832336, - -0.22029347717761993, - -0.21966519951820374, - -0.2211970090866089, - -0.22484707832336426, - -0.23051589727401733, - -0.23804880678653717, - -0.2472403347492218, - -0.25783973932266235, - -0.2695579528808594, - -0.28207528591156006, - -0.2950502634048462, - -0.30812904238700867, - -0.3209548592567444, - -0.3331778049468994, - -0.3444644808769226, - -0.3545070290565491, - -0.24320167303085327, - -0.2301274985074997, - -0.2189280092716217, - -0.20990872383117676, - -0.2033156454563141, - -0.19932860136032104, - -0.19805637001991272, - -0.199533611536026, - -0.2037200927734375, - -0.21050158143043518, - -0.2196931093931198, - -0.2310439497232437, - -0.24424447119235992, - -0.2589346170425415, - -0.2747136652469635, - -0.291151225566864, - -0.3077988922595978, - -0.3242025673389435, - -0.33991482853889465, - -0.3545070290565491, - -0.24320167303085327, - -0.22707688808441162, - -0.212909996509552, - -0.20108744502067566, - -0.19193172454833984, - -0.18569257855415344, - -0.1825401932001114, - -0.182560533285141, - -0.18575309216976166, - -0.19203075766563416, - -0.2012222707271576, - -0.21307694911956787, - -0.2272714078426361, - -0.24341845512390137, - -0.2610776424407959, - -0.27976730465888977, - -0.2989776134490967, - -0.3181845545768738, - -0.3368642032146454, - -0.3545070290565491, - -0.24320167303085327, - -0.22585588693618774, - -0.2105013132095337, - -0.1975567638874054, - -0.18737536668777466, - -0.18023481965065002, - -0.17632991075515747, - -0.17576713860034943, - -0.17856186628341675, - -0.1846378743648529, - -0.19382938742637634, - -0.20588572323322296, - -0.22047799825668335, - -0.23720818758010864, - -0.2556198835372925, - -0.2752109467983246, - -0.2954469323158264, - -0.31577587127685547, - -0.3356432020664215, - -0.3545070290565491, - -0.24320167303085327, - -0.22659683227539062, - -0.2119629681110382, - -0.1996993124485016, - -0.19014033675193787, - -0.183546781539917, - -0.1800985187292099, - -0.17988958954811096, - -0.182925745844841, - -0.18912412226200104, - -0.19831565022468567, - -0.21024960279464722, - -0.22460046410560608, - -0.24097678065299988, - -0.25893184542655945, - -0.2779759168624878, - -0.2975894808769226, - -0.31723752617836, - -0.3363841474056244, - -0.3545070290565491, - -0.24320167303085327, - -0.22921940684318542, - -0.21713660657405853, - -0.20728285610675812, - -0.1999269425868988, - -0.19526949524879456, - -0.1934375911951065, - -0.19448116421699524, - -0.1983717679977417, - -0.2050032913684845, - -0.21419480443000793, - -0.2256956249475479, - -0.23919202387332916, - -0.2543158531188965, - -0.270654559135437, - -0.28776252269744873, - -0.30517300963401794, - -0.3224111497402191, - -0.3390067219734192, - -0.3545070290565491, - -0.24320167303085327, - -0.23343943059444427, - -0.22546154260635376, - -0.21948564052581787, - -0.21567469835281372, - -0.2141326665878296, - -0.2149016559123993, - -0.21796061098575592, - -0.2232261598110199, - -0.23055465519428253, - -0.23974618315696716, - -0.2505500018596649, - -0.26267147064208984, - -0.2757799029350281, - -0.28951776027679443, - -0.30351027846336365, - -0.3173758089542389, - -0.33073610067367554, - -0.34322676062583923, - -0.3545070290565491, - -0.24320165812969208, - -0.23879960179328918, - -0.23603570461273193, - -0.23498530685901642, - -0.235677108168602, - -0.23809221386909485, - -0.2421647608280182, - -0.2477836310863495, - -0.2547956109046936, - -0.26300936937332153, - -0.27220088243484497, - -0.2821194529533386, - -0.2924945056438446, - -0.303043007850647, - -0.3134772777557373, - -0.3235126733779907, - -0.33287546038627625, - -0.3413102626800537, - -0.34858691692352295, - -0.3545070290565491, - -0.24320165812969208, - -0.24471907317638397, - -0.2477131485939026, - -0.25210222601890564, - -0.25776657462120056, - -0.26455169916152954, - -0.272272527217865, - -0.2807183861732483, - -0.2896589934825897, - -0.298850417137146, - -0.30804193019866943, - -0.31698286533355713, - -0.3254292607307434, - -0.3331507742404938, - -0.3399367928504944, - -0.3456021547317505, - -0.34999239444732666, - -0.35298770666122437, - -0.35450640320777893, - -0.3545070290565491, - -0.24320165812969208, - -0.2505563497543335, - -0.2592284679412842, - -0.2689815163612366, - -0.27954939007759094, - -0.2906438410282135, - -0.301962286233902, - -0.3131959140300751, - -0.32403838634490967, - -0.3341938853263855, - -0.34338539838790894, - -0.3513622283935547, - -0.3579067885875702, - -0.36284053325653076, - -0.36602893471717834, - -0.36738497018814087, - -0.3668716549873352, - -0.36450302600860596, - -0.36034366488456726, - -0.3545070290565491, - -0.24320165812969208, - -0.25567886233329773, - -0.2693338096141815, - -0.28379398584365845, - -0.29866495728492737, - -0.31354111433029175, - -0.32801663875579834, - -0.34169670939445496, - -0.3542081415653229, - -0.3652096688747406, - -0.37440118193626404, - -0.3815320134162903, - -0.3864075839519501, - -0.3888949155807495, - -0.3889262080192566, - -0.3865005671977997, - -0.38168415427207947, - -0.3746083676815033, - -0.3654662072658539, - -0.3545070290565491 - ], - "y": [ - -0.24320173263549805, - -0.2575203776359558, - -0.27296650409698486, - -0.28911876678466797, - -0.3055365979671478, - -0.32177215814590454, - -0.33738258481025696, - -0.3519420623779297, - -0.3650534451007843, - -0.37635910511016846, - -0.3855506181716919, - -0.39237725734710693, - -0.39665287733078003, - -0.39826080203056335, - -0.3971571624279022, - -0.3933720886707306, - -0.38700878620147705, - -0.3782409131526947, - -0.36730754375457764, - -0.3545069694519043, - -0.24320173263549805, - -0.2528829574584961, - -0.2638181746006012, - -0.2757090628147125, - -0.2882313132286072, - -0.3010433316230774, - -0.31379562616348267, - -0.3261403739452362, - -0.33774083852767944, - -0.34828054904937744, - -0.3574720621109009, - -0.3650646507740021, - -0.37085118889808655, - -0.37467384338378906, - -0.3764283061027527, - -0.37606677412986755, - -0.373599112033844, - -0.36909258365631104, - -0.3626701235771179, - -0.3545069694519043, - -0.24320173263549805, - -0.24727869033813477, - -0.25276249647140503, - -0.259503573179245, - -0.2673180401325226, - -0.2759927213191986, - -0.28529101610183716, - -0.29495927691459656, - -0.3047337830066681, - -0.31434792280197144, - -0.3235394358634949, - -0.3320575952529907, - -0.3396700620651245, - -0.34616920351982117, - -0.3513776957988739, - -0.35515350103378296, - -0.3573935925960541, - -0.35803690552711487, - -0.3570658564567566, - -0.3545069694519043, - -0.24320173263549805, - -0.2413148730993271, - -0.2409975230693817, - -0.24225838482379913, - -0.24506302177906036, - -0.2493349313735962, - -0.2549576163291931, - -0.26177769899368286, - -0.26960912346839905, - -0.27823829650878906, - -0.2874298095703125, - -0.2969329357147217, - -0.3064885139465332, - -0.3158358037471771, - -0.3247199058532715, - -0.33289849758148193, - -0.3401484191417694, - -0.34627193212509155, - -0.3511020541191101, - -0.3545069694519043, - -0.24320173263549805, - -0.23563778400421143, - -0.22979819774627686, - -0.22584229707717896, - -0.22387796640396118, - -0.2239587903022766, - -0.22608259320259094, - -0.2301913946866989, - -0.23617315292358398, - -0.24386470019817352, - -0.25305619835853577, - -0.2634969651699066, - -0.27490219473838806, - -0.28696078062057495, - -0.2993437647819519, - -0.31171342730522156, - -0.32373231649398804, - -0.3350726068019867, - -0.34542495012283325, - -0.3545069694519043, - -0.24320173263549805, - -0.2308626025915146, - -0.2203781008720398, - -0.21203424036502838, - -0.20605860650539398, - -0.2026141881942749, - -0.20179495215415955, - -0.2036232352256775, - -0.20804919302463531, - -0.21495208144187927, - -0.2241435945034027, - -0.23537302017211914, - -0.24833405017852783, - -0.26267313957214355, - -0.2779991626739502, - -0.29389405250549316, - -0.30992427468299866, - -0.325652539730072, - -0.3406497836112976, - -0.3545069694519043, - -0.24320173263549805, - -0.2275068163871765, - -0.21375808119773865, - -0.20233054459095, - -0.1935359239578247, - -0.18761411309242249, - -0.18472665548324585, - -0.1849522888660431, - -0.18828488886356354, - -0.19463354349136353, - -0.20382505655288696, - -0.21560871601104736, - -0.22966310381889343, - -0.24560484290122986, - -0.2629990875720978, - -0.2813713848590851, - -0.3002205789089203, - -0.3190324902534485, - -0.33729398250579834, - -0.3545069694519043, - -0.24320173263549805, - -0.22593408823013306, - -0.21065549552440643, - -0.1977827548980713, - -0.18766698241233826, - -0.1805841028690338, - -0.1767273247241974, - -0.17620185017585754, - -0.17902201414108276, - -0.1851109266281128, - -0.19430243968963623, - -0.2063458412885666, - -0.2209126502275467, - -0.2376055121421814, - -0.2559690475463867, - -0.27550244331359863, - -0.29567277431488037, - -0.31592991948127747, - -0.3357212543487549, - -0.3545069694519043, - -0.24320173263549805, - -0.22631481289863586, - -0.21140655875205994, - -0.19888368248939514, - -0.18908771872520447, - -0.18228591978549957, - -0.17866379022598267, - -0.17832015454769135, - -0.18126437067985535, - -0.18741615116596222, - -0.19660766422748566, - -0.20858818292617798, - -0.2230309545993805, - -0.23954197764396667, - -0.25767087936401367, - -0.27692317962646484, - -0.2967737019062042, - -0.3166809678077698, - -0.3361019790172577, - -0.3545069694519043, - -0.24320173263549805, - -0.22860774397850037, - -0.21592989563941956, - -0.20551402866840363, - -0.19764423370361328, - -0.1925351768732071, - -0.1903262436389923, - -0.19107764959335327, - -0.19476893544197083, - -0.20129941403865814, - -0.21049092710018158, - -0.22209274768829346, - -0.23578844964504242, - -0.2512044310569763, - -0.2679201364517212, - -0.28547969460487366, - -0.3034040629863739, - -0.3212043046951294, - -0.3383949398994446, - -0.3545069694519043, - -0.24320173263549805, - -0.23256441950798035, - -0.22373533248901367, - -0.216955304145813, - -0.21240925788879395, - -0.21022120118141174, - -0.21045082807540894, - -0.2130918651819229, - -0.2180722951889038, - -0.22525624930858612, - -0.23444776237010956, - -0.24539610743522644, - -0.25780266523361206, - -0.27132901549339294, - -0.28560617566108704, - -0.3002447187900543, - -0.31484532356262207, - -0.3290097415447235, - -0.34235161542892456, - -0.3545069694519043, - -0.24320173263549805, - -0.23775607347488403, - -0.23397701978683472, - -0.23196765780448914, - -0.23178276419639587, - -0.23342743515968323, - -0.23685677349567413, - -0.24197722971439362, - -0.24864915013313293, - -0.2566905617713928, - -0.26588207483291626, - -0.27597296237945557, - -0.28668802976608276, - -0.29773494601249695, - -0.3088124096393585, - -0.31961822509765625, - -0.3298576772212982, - -0.33925142884254456, - -0.34754323959350586, - -0.3545069694519043, - -0.24320173263549805, - -0.2436200976371765, - -0.24554510414600372, - -0.24892425537109375, - -0.25366535782814026, - -0.25963911414146423, - -0.26668256521224976, - -0.27460354566574097, - -0.28318604826927185, - -0.2921959459781647, - -0.3013874590396881, - -0.3105098605155945, - -0.3193143606185913, - -0.32756075263023376, - -0.3350240886211395, - -0.341500848531723, - -0.34681427478790283, - -0.35081952810287476, - -0.35340726375579834, - -0.3545069694519043, - -0.24320173263549805, - -0.24952104687690735, - -0.25718602538108826, - -0.2659876346588135, - -0.27568572759628296, - -0.2860158383846283, - -0.29669612646102905, - -0.3074353039264679, - -0.3179403841495514, - -0.3279248774051666, - -0.33711639046669006, - -0.345264196395874, - -0.35214608907699585, - -0.35757434368133545, - -0.3614008128643036, - -0.3635212182998657, - -0.36387765407562256, - -0.3624604344367981, - -0.3593082129955292, - -0.3545069694519043, - -0.24320173263549805, - -0.25481942296028137, - -0.26763829588890076, - -0.281308650970459, - -0.2954576015472412, - -0.3096992075443268, - -0.3236449956893921, - -0.3369145691394806, - -0.34914594888687134, - -0.3600054979324341, - -0.3691970109939575, - -0.37646976113319397, - -0.38162535429000854, - -0.3845231831073761, - -0.38508421182632446, - -0.3832930624485016, - -0.37919867038726807, - -0.3729127049446106, - -0.3646066188812256, - -0.3545069694519043, - -0.24320173263549805, - -0.258941113948822, - -0.2757692337036133, - -0.29322707653045654, - -0.31083840131759644, - -0.3281227946281433, - -0.344608873128891, - -0.3598468601703644, - -0.3734211325645447, - -0.38496142625808716, - -0.3941529393196106, - -0.4007449746131897, - -0.4045576751232147, - -0.405487060546875, - -0.403507798910141, - -0.3986738622188568, - -0.3911170959472656, - -0.3810436725616455, - -0.36872828006744385, - -0.3545069694519043, - -0.24320173263549805, - -0.2614394724369049, - -0.280697762966156, - -0.3004513382911682, - -0.320161372423172, - -0.33929017186164856, - -0.3573160171508789, - -0.37374716997146606, - -0.3881354331970215, - -0.4000883400440216, - -0.40927985310554504, - -0.4154592454433441, - -0.418457955121994, - -0.4181942045688629, - -0.41467517614364624, - -0.4079968333244324, - -0.3983413875102997, - -0.38597220182418823, - -0.37122663855552673, - -0.3545069694519043, - -0.24320173263549805, - -0.26204371452331543, - -0.28188979625701904, - -0.3021986186504364, - -0.322416216135025, - -0.341991126537323, - -0.3603893518447876, - -0.3771090805530548, - -0.39169421792030334, - -0.40374693274497986, - -0.4129384458065033, - -0.419018030166626, - -0.42181989550590515, - -0.4212675392627716, - -0.4173761010169983, - -0.4102516770362854, - -0.4000886380672455, - -0.3871642053127289, - -0.37183088064193726, - -0.3545069694519043, - -0.24320173263549805, - -0.2606883943080902, - -0.27921611070632935, - -0.2982795238494873, - -0.3173586130142212, - -0.3359329402446747, - -0.35349586606025696, - -0.3695683181285858, - -0.38371187448501587, - -0.3955407440662384, - -0.40473225712776184, - -0.4110357165336609, - -0.41427913308143616, - -0.41437405347824097, - -0.41131794452667236, - -0.40519407391548157, - -0.3961695432662964, - -0.3844905197620392, - -0.37047556042671204, - -0.3545069694519043, - -0.24320173263549805, - -0.2575203776359558, - -0.2729664742946625, - -0.28911876678466797, - -0.3055365979671478, - -0.32177215814590454, - -0.33738258481025696, - -0.3519420623779297, - -0.3650534451007843, - -0.37635907530784607, - -0.3855505883693695, - -0.39237725734710693, - -0.39665287733078003, - -0.39826077222824097, - -0.39715713262557983, - -0.3933720588684082, - -0.38700878620147705, - -0.3782409131526947, - -0.36730754375457764, - -0.3545069694519043 - ], - "z": [ - -1.6213445663452148, - -1.6226130723953247, - -1.633967399597168, - -1.6550977230072021, - -1.6854279041290283, - -1.7241302728652954, - -1.7701494693756104, - -1.8222299814224243, - -1.8789513111114502, - -1.9387661218643188, - -2.0000429153442383, - -2.061110258102417, - -2.120302200317383, - -2.176004409790039, - -2.2266972064971924, - -2.270998001098633, - -2.3076984882354736, - -2.3357973098754883, - -2.3545281887054443, - -2.363379955291748, - -1.6213445663452148, - -1.6227307319641113, - -1.634199619293213, - -1.6554381847381592, - -1.6858670711517334, - -1.7246564626693726, - -1.7707481384277344, - -1.8228849172592163, - -1.879644513130188, - -1.9394787549972534, - -2.000755548477173, - -2.0618033409118652, - -2.120957136154175, - -2.176603078842163, - -2.2272233963012695, - -2.271437406539917, - -2.3080389499664307, - -2.336029529571533, - -2.3546457290649414, - -2.363379955291748, - -1.6213445663452148, - -1.6232465505599976, - -1.6352171897888184, - -1.6569297313690186, - -1.6877920627593994, - -1.7269622087478638, - -1.7733718156814575, - -1.8257548809051514, - -1.8826825618743896, - -1.9426020383834839, - -2.0038788318634033, - -2.0648415088653564, - -2.1238272190093994, - -2.179226875305176, - -2.2295291423797607, - -2.273362398147583, - -2.30953049659729, - -2.3370471000671387, - -2.355161666870117, - -2.363379955291748, - -1.6213445663452148, - -1.624104619026184, - -1.6369099617004395, - -1.6594109535217285, - -1.690994143486023, - -1.7307977676391602, - -1.7777361869812012, - -1.8305290937423706, - -1.8877363204956055, - -1.9477975368499756, - -2.0090742111206055, - -2.0698952674865723, - -2.128601312637329, - -2.18359112739563, - -2.2333645820617676, - -2.276564359664917, - -2.31201171875, - -2.3387398719787598, - -2.3560197353363037, - -2.363379955291748, - -1.6213445663452148, - -1.6252119541168213, - -1.639094352722168, - -1.6626129150390625, - -1.6951262950897217, - -1.7357473373413086, - -1.7833682298660278, - -1.8366899490356445, - -1.8942580223083496, - -1.9545021057128906, - -2.0157787799835205, - -2.0764169692993164, - -2.1347622871398926, - -2.189223289489746, - -2.238314390182495, - -2.280696392059326, - -2.315213680267334, - -2.3409242630004883, - -2.3571271896362305, - -2.363379955291748, - -1.6213445663452148, - -1.6264485120773315, - -1.6415337324142456, - -1.6661887168884277, - -1.6997406482696533, - -1.7412747144699097, - -1.789657711982727, - -1.8435699939727783, - -1.901540994644165, - -1.9619892835617065, - -2.023266077041626, - -2.083699941635132, - -2.1416423320770264, - -2.1955127716064453, - -2.2438416481018066, - -2.285310983657837, - -2.318789482116699, - -2.3433637619018555, - -2.358363628387451, - -2.363379955291748, - -1.6213445663452148, - -1.6276803016662598, - -1.6439638137817383, - -1.6697505712509155, - -1.704337477684021, - -1.7467808723449707, - -1.7959229946136475, - -1.8504235744476318, - -1.9087958335876465, - -1.9694476127624512, - -2.03072452545166, - -2.0909547805786133, - -2.14849591255188, - -2.201777935028076, - -2.249347686767578, - -2.289907693862915, - -2.3223514556884766, - -2.3457937240600586, - -2.359595537185669, - -2.363379955291748, - -1.6213445663452148, - -1.6287739276885986, - -1.6461211442947388, - -1.672912836074829, - -1.708418369293213, - -1.7516690492630005, - -1.801485300064087, - -1.8565081357955933, - -1.9152367115020752, - -1.9760690927505493, - -2.0373458862304688, - -2.097395658493042, - -2.1545803546905518, - -2.2073402404785156, - -2.2542359828948975, - -2.2939887046813965, - -2.3255136013031006, - -2.3479511737823486, - -2.360689163208008, - -2.363379955291748, - -1.6213445663452148, - -1.6296107769012451, - -1.647771954536438, - -1.6753326654434204, - -1.7115411758422852, - -1.755409598350525, - -1.8057416677474976, - -1.8611640930175781, - -1.9201653003692627, - -1.9811359643936157, - -2.042412757873535, - -2.1023242473602295, - -2.159236431121826, - -2.2115964889526367, - -2.257976531982422, - -2.2971115112304688, - -2.3279333114624023, - -2.349601984024048, - -2.3615260124206543, - -2.363379955291748, - -1.6213445663452148, - -1.6301002502441406, - -1.6487374305725098, - -1.6767479181289673, - -1.7133674621582031, - -1.7575972080230713, - -1.8082308769226074, - -1.863887071609497, - -1.9230477809906006, - -1.9840991497039795, - -2.0453760623931885, - -2.1052067279815674, - -2.161959409713745, - -2.214085817337036, - -2.260164260864258, - -2.2989377975463867, - -2.329348564147949, - -2.35056734085083, - -2.3620152473449707, - -2.363379955291748, - -1.6213445663452148, - -1.6301891803741455, - -1.6489129066467285, - -1.6770050525665283, - -1.7136993408203125, - -1.7579948902130127, - -1.8086832761764526, - -1.864382028579712, - -1.9235717058181763, - -1.98463773727417, - -2.045914649963379, - -2.1057305335998535, - -2.162454128265381, - -2.214538097381592, - -2.26056170463562, - -2.299269676208496, - -2.3296058177948, - -2.350742816925049, - -2.3621041774749756, - -2.363379955291748, - -1.6213445663452148, - -1.6298680305480957, - -1.6482793092727661, - -1.6760764122009277, - -1.7125009298324585, - -1.7565593719482422, - -1.8070497512817383, - -1.8625950813293457, - -1.921680212020874, - -1.9826931953430176, - -2.0439701080322266, - -2.103839159011841, - -2.1606674194335938, - -2.212904691696167, - -2.2591261863708496, - -2.2980711460113525, - -2.328677177429199, - -2.350109338760376, - -2.361783027648926, - -2.363379955291748, - -1.6213445663452148, - -1.62917160987854, - -1.6469054222106934, - -1.6740624904632568, - -1.709902048110962, - -1.7534462213516235, - -1.8035074472427368, - -1.8587201833724976, - -1.9175783395767212, - -1.9784764051437378, - -2.0397531986236572, - -2.0997371673583984, - -2.156792402267456, - -2.209362506866455, - -2.2560131549835205, - -2.2954721450805664, - -2.3266632556915283, - -2.3487353324890137, - -2.36108660697937, - -2.363379955291748, - -1.6213445663452148, - -1.6281752586364746, - -1.6449400186538696, - -1.6711816787719727, - -1.7061841487884521, - -1.748992919921875, - -1.7984402179718018, - -1.8531770706176758, - -1.9117106199264526, - -1.9724440574645996, - -2.0337209701538086, - -2.09386944770813, - -2.151249408721924, - -2.2042951583862305, - -2.2515599727630615, - -2.2917544841766357, - -2.323782444000244, - -2.3467700481414795, - -2.3600902557373047, - -2.363379955291748, - -1.6213445663452148, - -1.626987099647522, - -1.6425961256027222, - -1.6677459478378296, - -1.7017505168914795, - -1.7436820268630981, - -1.7923970222473145, - -1.8465664386749268, - -1.9047127962112427, - -1.9652501344680786, - -2.026526927947998, - -2.086871862411499, - -2.144638776779175, - -2.198251962661743, - -2.246248960494995, - -2.287320613861084, - -2.3203465938568115, - -2.344426155090332, - -2.3589022159576416, - -2.363379955291748, - -1.6213445663452148, - -1.625735878944397, - -1.6401277780532837, - -1.6641278266906738, - -1.6970810890197754, - -1.7380889654159546, - -1.786032795906067, - -1.8396046161651611, - -1.897343397140503, - -1.9576740264892578, - -2.0189507007598877, - -2.0795023441314697, - -2.137676954269409, - -2.191887617111206, - -2.2406558990478516, - -2.282651424407959, - -2.3167285919189453, - -2.3419578075408936, - -2.3576509952545166, - -2.363379955291748, - -1.6213445663452148, - -1.6245570182800293, - -1.6378023624420166, - -1.6607191562652588, - -1.6926823854446411, - -1.73281991481781, - -1.7800372838974, - -1.8330461978912354, - -1.8904008865356445, - -1.9505367279052734, - -2.0118136405944824, - -2.0725598335266113, - -2.1311185359954834, - -2.185892105102539, - -2.235386848449707, - -2.278252601623535, - -2.3133199214935303, - -2.339632272720337, - -2.3564722537994385, - -2.363379955291748, - -1.6213445663452148, - -1.6235785484313965, - -1.6358718872070312, - -1.6578896045684814, - -1.689030647277832, - -1.7284458875656128, - -1.7750600576400757, - -1.827601671218872, - -1.884637475013733, - -1.9446117877960205, - -2.0058887004852295, - -2.0667965412139893, - -2.12567400932312, - -2.180915117263794, - -2.2310128211975098, - -2.2746009826660156, - -2.310490369796753, - -2.3377020359039307, - -2.3554935455322266, - -2.363379955291748, - -1.6213445663452148, - -1.62290620803833, - -1.6345456838607788, - -1.6559455394744873, - -1.6865218877792358, - -1.7254407405853271, - -1.771640658378601, - -1.8238611221313477, - -1.8806779384613037, - -1.9405412673950195, - -2.0018179416656494, - -2.0628368854522705, - -2.1219334602355957, - -2.1774954795837402, - -2.2280077934265137, - -2.27209210395813, - -2.308546304702759, - -2.3363757133483887, - -2.35482120513916, - -2.363379955291748, - -1.6213445663452148, - -1.6226130723953247, - -1.633967399597168, - -1.6550977230072021, - -1.6854279041290283, - -1.7241302728652954, - -1.7701494693756104, - -1.8222299814224243, - -1.8789513111114502, - -1.9387661218643188, - -2.0000429153442383, - -2.061110258102417, - -2.120302200317383, - -2.176004409790039, - -2.2266972064971924, - -2.270998001098633, - -2.3076984882354736, - -2.3357973098754883, - -2.3545281887054443, - -2.363379955291748 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.3393365144729614, - -0.36394304037094116, - -0.3894062340259552, - -0.4150314927101135, - -0.44011983275413513, - -0.463986873626709, - -0.48598164319992065, - -0.5055041313171387, - -0.5220218896865845, - -0.5350842475891113, - -0.5443350076675415, - -0.5495216846466064, - -0.5505030155181885, - -0.5472520589828491, - -0.5398575067520142, - -0.5285211801528931, - -0.5135521292686462, - -0.4953588545322418, - -0.47443750500679016, - -0.4513587951660156, - -0.3393365144729614, - -0.36330294609069824, - -0.3881434500217438, - -0.41318050026893616, - -0.4377310872077942, - -0.46112558245658875, - -0.4827258288860321, - -0.5019426345825195, - -0.5182517766952515, - -0.5312083959579468, - -0.540459156036377, - -0.5457516312599182, - -0.5469414591789246, - -0.5439962148666382, - -0.5369962453842163, - -0.5261324048042297, - -0.5117011666297913, - -0.4940960705280304, - -0.47379738092422485, - -0.4513587951660156, - -0.3393365144729614, - -0.36014845967292786, - -0.38192054629325867, - -0.40405890345573425, - -0.42595964670181274, - -0.4470253586769104, - -0.46668142080307007, - -0.4843916893005371, - -0.49967309832572937, - -0.5121088027954102, - -0.5213595032691956, - -0.5271729230880737, - -0.5293905735015869, - -0.5279518365859985, - -0.5228959918022156, - -0.5143609642982483, - -0.5025795698165894, - -0.4878731667995453, - -0.47064292430877686, - -0.4513587951660156, - -0.3393365144729614, - -0.35482147336006165, - -0.37141185998916626, - -0.3886551856994629, - -0.40608105063438416, - -0.4232141375541687, - -0.4395871162414551, - -0.4547533392906189, - -0.46829915046691895, - -0.4798550009727478, - -0.4891057014465332, - -0.4957989752292633, - -0.4997521638870239, - -0.5008574724197388, - -0.49908480048179626, - -0.4944823980331421, - -0.487175852060318, - -0.4773644804954529, - -0.46531593799591064, - -0.4513587951660156, - -0.3393365144729614, - -0.3478992283344269, - -0.35775619745254517, - -0.3686386048793793, - -0.3802495300769806, - -0.39227229356765747, - -0.4043789505958557, - -0.41623926162719727, - -0.4275297224521637, - -0.4379423260688782, - -0.4471930265426636, - -0.45502954721450806, - -0.4612381160259247, - -0.4656493365764618, - -0.46814292669296265, - -0.46865084767341614, - -0.467159241437912, - -0.4637088179588318, - -0.4583936929702759, - -0.4513587951660156, - -0.3393365144729614, - -0.34013184905052185, - -0.342433363199234, - -0.34617820382118225, - -0.3512642979621887, - -0.35755282640457153, - -0.3648723363876343, - -0.373023122549057, - -0.3817828595638275, - -0.39091259241104126, - -0.40016332268714905, - -0.4092826843261719, - -0.41802194714546204, - -0.42614272236824036, - -0.4334234595298767, - -0.43966561555862427, - -0.44469887018203735, - -0.44838595390319824, - -0.45062631368637085, - -0.4513587951660156, - -0.3393365144729614, - -0.332361102104187, - -0.32710379362106323, - -0.3237079977989197, - -0.3222663402557373, - -0.32281816005706787, - -0.3253483772277832, - -0.3297879993915558, - -0.3360159397125244, - -0.34386226534843445, - -0.35311299562454224, - -0.3635157644748688, - -0.3747868537902832, - -0.3866187632083893, - -0.39868876338005066, - -0.41066765785217285, - -0.4222286343574524, - -0.43305638432502747, - -0.4428555369377136, - -0.4513587951660156, - -0.3393365144729614, - -0.3254289925098419, - -0.31342869997024536, - -0.30366289615631104, - -0.2963980436325073, - -0.2918322682380676, - -0.2900901436805725, - -0.2912191152572632, - -0.2951884865760803, - -0.30188995599746704, - -0.31114065647125244, - -0.32268834114074707, - -0.3362179696559906, - -0.3513605296611786, - -0.3677029013633728, - -0.38479936122894287, - -0.40218356251716614, - -0.4193812906742096, - -0.4359234571456909, - -0.4513587951660156, - -0.3393365144729614, - -0.3200867772102356, - -0.30288997292518616, - -0.28821516036987305, - -0.2764626443386078, - -0.2679530382156372, - -0.2629183530807495, - -0.26149606704711914, - -0.2637248635292053, - -0.26954400539398193, - -0.27879470586776733, - -0.29122471809387207, - -0.30649489164352417, - -0.324188768863678, - -0.34382364153862, - -0.3648639917373657, - -0.38673582673072815, - -0.4088425934314728, - -0.4305812418460846, - -0.4513587951660156, - -0.3393365144729614, - -0.316913366317749, - -0.2966296672821045, - -0.27903878688812256, - -0.26462048292160034, - -0.25376808643341064, - -0.24677759408950806, - -0.24383969604969025, - -0.24503456056118011, - -0.25032955408096313, - -0.2595803141593933, - -0.27253440022468567, - -0.28883853554725647, - -0.30804798007011414, - -0.32963868975639343, - -0.3530218005180359, - -0.37755945324897766, - -0.4025822877883911, - -0.42740780115127563, - -0.4513587951660156, - -0.3393365144729614, - -0.31625261902809143, - -0.29532620310783386, - -0.2771281599998474, - -0.26215478777885437, - -0.2508145868778229, - -0.24341687560081482, - -0.2401634305715561, - -0.24114301800727844, - -0.24632889032363892, - -0.2555796205997467, - -0.2686428427696228, - -0.2851622700691223, - -0.3046872615814209, - -0.32668522000312805, - -0.3505561053752899, - -0.3756487965583801, - -0.4012788236141205, - -0.42674705386161804, - -0.4513587951660156, - -0.3393365144729614, - -0.31817615032196045, - -0.29912081360816956, - -0.2826903164386749, - -0.26933276653289795, - -0.25941264629364014, - -0.2532004117965698, - -0.250865638256073, - -0.252471923828125, - -0.2579754889011383, - -0.2672262191772461, - -0.27997174859046936, - -0.295864462852478, - -0.3144707977771759, - -0.3352832496166229, - -0.3577340841293335, - -0.38121095299720764, - -0.4050734341144562, - -0.42867058515548706, - -0.4513587951660156, - -0.3393365144729614, - -0.32247552275657654, - -0.30760228633880615, - -0.29512250423431396, - -0.2853766083717346, - -0.27863043546676636, - -0.2750680446624756, - -0.27478650212287903, - -0.2777935862541199, - -0.2840072512626648, - -0.2932579517364502, - -0.3052934408187866, - -0.31978535652160645, - -0.3363384008407593, - -0.35450106859207153, - -0.37377792596817017, - -0.39364317059516907, - -0.4135548770427704, - -0.43296995759010315, - -0.4513587951660156, - -0.3393365144729614, - -0.32868480682373047, - -0.31985151767730713, - -0.31307756900787354, - -0.308547705411911, - -0.30638551712036133, - -0.3066500127315521, - -0.3093339204788208, - -0.31436407566070557, - -0.32160326838493347, - -0.33085399866104126, - -0.3418639302253723, - -0.3543327748775482, - -0.3679203987121582, - -0.3822561502456665, - -0.39694902300834656, - -0.41159820556640625, - -0.42580413818359375, - -0.43917927145957947, - -0.4513587951660156, - -0.3393365144729614, - -0.33613118529319763, - -0.33454111218452454, - -0.334609717130661, - -0.33633506298065186, - -0.3396701216697693, - -0.34452393651008606, - -0.35076406598091125, - -0.35822033882141113, - -0.3666893243789673, - -0.3759400546550751, - -0.3857201933860779, - -0.39576292037963867, - -0.40579432249069214, - -0.41554075479507446, - -0.4247363805770874, - -0.4331303536891937, - -0.44049373269081116, - -0.44662562012672424, - -0.4513587951660156, - -0.3393365144729614, - -0.344007670879364, - -0.3500792384147644, - -0.35738563537597656, - -0.3657275140285492, - -0.37487736344337463, - -0.38458558917045593, - -0.39458736777305603, - -0.40460988879203796, - -0.414379745721817, - -0.4236304759979248, - -0.4321097433567047, - -0.43958619236946106, - -0.445855975151062, - -0.4507479965686798, - -0.45412883162498474, - -0.4559062719345093, - -0.456031858921051, - -0.4545021057128906, - -0.4513587951660156, - -0.3393365144729614, - -0.3514607548713684, - -0.3647821247577667, - -0.3789372444152832, - -0.3935399651527405, - -0.4081920385360718, - -0.42249372601509094, - -0.43605494499206543, - -0.44850578904151917, - -0.4595066010951996, - -0.4687573313713074, - -0.4760056138038635, - -0.48105379939079285, - -0.483764111995697, - -0.48406267166137695, - -0.4819413125514984, - -0.4774578809738159, - -0.47073471546173096, - -0.461955189704895, - -0.4513587951660156, - -0.3393365144729614, - -0.3576827645301819, - -0.37705641984939575, - -0.3969290256500244, - -0.4167585074901581, - -0.4360039234161377, - -0.4541403651237488, - -0.4706730842590332, - -0.48515114188194275, - -0.4971795678138733, - -0.5064302682876587, - -0.5126509666442871, - -0.515671968460083, - -0.5154107809066772, - -0.5118745565414429, - -0.505159854888916, - -0.4954496920108795, - -0.4830090403556824, - -0.4681772291660309, - -0.4513587951660156, - -0.3393365144729614, - -0.3619994521141052, - -0.38557207584381104, - -0.40941134095191956, - -0.43286699056625366, - -0.4552991986274719, - -0.47609609365463257, - -0.4946903586387634, - -0.5105748176574707, - -0.5233162641525269, - -0.5325669646263123, - -0.5380746722221375, - -0.5396891832351685, - -0.537366509437561, - -0.5311698317527771, - -0.5212683081626892, - -0.5079320073127747, - -0.49152469635009766, - -0.4724939167499542, - -0.4513587951660156, - -0.3393365144729614, - -0.36394304037094116, - -0.3894062340259552, - -0.4150314927101135, - -0.44011983275413513, - -0.463986873626709, - -0.48598164319992065, - -0.5055041313171387, - -0.5220218896865845, - -0.5350842475891113, - -0.5443350076675415, - -0.5495216846466064, - -0.5505030155181885, - -0.5472520589828491, - -0.5398575067520142, - -0.5285211801528931, - -0.5135521292686462, - -0.4953588545322418, - -0.47443750500679016, - -0.4513587951660156 - ], - "y": [ - -0.33933645486831665, - -0.3375690281391144, - -0.3373776376247406, - -0.33876749873161316, - -0.3417007327079773, - -0.34609732031822205, - -0.3518373370170593, - -0.3587641716003418, - -0.36668893694877625, - -0.37539541721343994, - -0.38464614748954773, - -0.394188791513443, - -0.4037630558013916, - -0.4131077527999878, - -0.421968013048172, - -0.43010213971138, - -0.43728822469711304, - -0.443330317735672, - -0.44806355237960815, - -0.4513588547706604, - -0.33933645486831665, - -0.3454316556453705, - -0.35288840532302856, - -0.36150336265563965, - -0.371041476726532, - -0.3812426030635834, - -0.3918285071849823, - -0.4025103747844696, - -0.4129968583583832, - -0.4230019450187683, - -0.4322526752948761, - -0.4404967427253723, - -0.4475092589855194, - -0.45309892296791077, - -0.4571132957935333, - -0.4594428539276123, - -0.4600240886211395, - -0.45884111523628235, - -0.45592617988586426, - -0.451358824968338, - -0.33933645486831665, - -0.3527165651321411, - -0.36725950241088867, - -0.3825686573982239, - -0.3982263505458832, - -0.4138055145740509, - -0.4288812279701233, - -0.44304221868515015, - -0.45590221881866455, - -0.46711045503616333, - -0.4763611853122711, - -0.4834020733833313, - -0.48804110288619995, - -0.49015167355537415, - -0.48967623710632324, - -0.4866277277469635, - -0.48108938336372375, - -0.47321221232414246, - -0.4632110893726349, - -0.451358824968338, - -0.33933645486831665, - -0.3586342930793762, - -0.3789335787296295, - -0.39968061447143555, - -0.4203094244003296, - -0.44025734066963196, - -0.4589802622795105, - -0.4759674370288849, - -0.49075552821159363, - -0.5029411315917969, - -0.512191891670227, - -0.5182554125785828, - -0.5209662914276123, - -0.520250678062439, - -0.5161280632019043, - -0.5087108016014099, - -0.4982013404369354, - -0.4848862886428833, - -0.4691288471221924, - -0.451358824968338, - -0.33933645486831665, - -0.36254361271858215, - -0.3866455554962158, - -0.41098490357398987, - -0.43489769101142883, - -0.4577316343784332, - -0.478863924741745, - -0.49771809577941895, - -0.513779878616333, - -0.5266111493110657, - -0.5358618497848511, - -0.5412797927856445, - -0.5427169799804688, - -0.5401343703269958, - -0.5336023569107056, - -0.5232990980148315, - -0.5095056295394897, - -0.4925982654094696, - -0.4730381369590759, - -0.451358824968338, - -0.33933645486831665, - -0.36402085423469543, - -0.3895597457885742, - -0.415256530046463, - -0.4404102563858032, - -0.46433475613594055, - -0.4863775074481964, - -0.5059371590614319, - -0.5224802494049072, - -0.5355554819107056, - -0.5448062419891357, - -0.5499801635742188, - -0.5509360432624817, - -0.5476479530334473, - -0.5402054786682129, - -0.5288116335868835, - -0.5137772560119629, - -0.4955124258995056, - -0.4745153784751892, - -0.451358824968338, - -0.33933645486831665, - -0.36290591955184937, - -0.3873603343963623, - -0.4120326042175293, - -0.4362497329711914, - -0.45935118198394775, - -0.48070675134658813, - -0.49973398447036743, - -0.5159138441085815, - -0.5288048982620239, - -0.5380556583404541, - -0.5434136986732483, - -0.5447328686714172, - -0.5419772267341614, - -0.5352218747138977, - -0.5246511697769165, - -0.5105533003807068, - -0.4933130145072937, - -0.4734004735946655, - -0.451358824968338, - -0.33933645486831665, - -0.35931968688964844, - -0.3802856504917145, - -0.4016624689102173, - -0.4228670299053192, - -0.4433209300041199, - -0.4624662697315216, - -0.47978076338768005, - -0.4947921633720398, - -0.5070909857749939, - -0.5163416862487793, - -0.5222920179367065, - -0.5247796773910522, - -0.5237367153167725, - -0.5191916227340698, - -0.5112684369087219, - -0.5001832246780396, - -0.4862383306026459, - -0.4698142111301422, - -0.451358824968338, - -0.33933645486831665, - -0.3536507189273834, - -0.3691023588180542, - -0.3852699100971222, - -0.4017123579978943, - -0.41798117756843567, - -0.43363261222839355, - -0.4482397437095642, - -0.46140411496162415, - -0.472766637802124, - -0.4820173680782318, - -0.4889039695262909, - -0.493238627910614, - -0.4949030578136444, - -0.4938518702983856, - -0.4901137351989746, - -0.48379063606262207, - -0.4750550389289856, - -0.4641452431678772, - -0.451358824968338, - -0.33933645486831665, - -0.34651339054107666, - -0.3550223708152771, - -0.3646312952041626, - -0.37507811188697815, - -0.3860778212547302, - -0.3973304033279419, - -0.4085288643836975, - -0.41936782002449036, - -0.42955154180526733, - -0.4388022720813751, - -0.4468676745891571, - -0.4535277485847473, - -0.45860081911087036, - -0.4619485139846802, - -0.46347951889038086, - -0.46315205097198486, - -0.4609750509262085, - -0.45700791478157043, - -0.451358824968338, - -0.33933645486831665, - -0.33868107199668884, - -0.33957141637802124, - -0.3419831693172455, - -0.3458505868911743, - -0.3510681390762329, - -0.35749351978302, - -0.3649514615535736, - -0.37323853373527527, - -0.38212868571281433, - -0.3913794159889221, - -0.400738388299942, - -0.409950315952301, - -0.4187639355659485, - -0.4269388020038605, - -0.43425196409225464, - -0.44050389528274536, - -0.44552409648895264, - -0.449175626039505, - -0.4513588547706604, - -0.33933648467063904, - -0.3310025930404663, - -0.3244238793849945, - -0.31977978348731995, - -0.31719696521759033, - -0.31674590706825256, - -0.31843891739845276, - -0.3222297728061676, - -0.3280150890350342, - -0.33563709259033203, - -0.3448878228664398, - -0.3555149734020233, - -0.367228627204895, - -0.3797093331813812, - -0.3926165997982025, - -0.40559834241867065, - -0.4183005094528198, - -0.4303765594959259, - -0.4414971172809601, - -0.4513588547706604, - -0.33933648467063904, - -0.3243100047111511, - -0.31122124195098877, - -0.30042722821235657, - -0.29222238063812256, - -0.2868305444717407, - -0.28439879417419434, - -0.28499338030815125, - -0.2885981798171997, - -0.29511481523513794, - -0.3043655455112457, - -0.31609803438186646, - -0.32999226450920105, - -0.3456692099571228, - -0.3627012073993683, - -0.3806237578392029, - -0.39894795417785645, - -0.41717392206192017, - -0.4348045289516449, - -0.4513588547706604, - -0.33933648467063904, - -0.31932851672172546, - -0.30139416456222534, - -0.2860226035118103, - -0.2736331820487976, - -0.26456379890441895, - -0.2590618431568146, - -0.25727739930152893, - -0.2592591643333435, - -0.2649531066417694, - -0.2742038369178772, - -0.28675901889801025, - -0.30227628350257874, - -0.32033225893974304, - -0.3404344618320465, - -0.36203455924987793, - -0.38454335927963257, - -0.40734684467315674, - -0.42982304096221924, - -0.4513588547706604, - -0.33933648467063904, - -0.31659799814224243, - -0.2960076332092285, - -0.278126984834671, - -0.26344379782676697, - -0.252358615398407, - -0.24517381191253662, - -0.24208535254001617, - -0.24317748844623566, - -0.24842044711112976, - -0.25767117738723755, - -0.2706773579120636, - -0.2870842218399048, - -0.3064442276954651, - -0.32822930812835693, - -0.3518451750278473, - -0.3766477108001709, - -0.4019603133201599, - -0.4270925521850586, - -0.4513588547706604, - -0.33933648467063904, - -0.31641435623168945, - -0.2956452965736389, - -0.2775958776473999, - -0.26275843381881714, - -0.2515376806259155, - -0.24423964321613312, - -0.2410634458065033, - -0.24209575355052948, - -0.2473083883523941, - -0.2565591335296631, - -0.2695956230163574, - -0.2860623300075531, - -0.3055100739002228, - -0.3274083137512207, - -0.35115981101989746, - -0.3761166036128998, - -0.4015979766845703, - -0.4269088804721832, - -0.4513588547706604, - -0.33933648467063904, - -0.31879740953445435, - -0.3003464639186859, - -0.28448688983917236, - -0.2716512978076935, - -0.2621898651123047, - -0.25636059045791626, - -0.25432252883911133, - -0.25613123178482056, - -0.2617374658584595, - -0.2709881663322449, - -0.2836311161518097, - -0.29932138323783875, - -0.3176310062408447, - -0.33806049823760986, - -0.3600527048110962, - -0.38300761580467224, - -0.4062991440296173, - -0.4292919635772705, - -0.4513588547706604, - -0.33933648467063904, - -0.3234890103340149, - -0.30960166454315186, - -0.2980532646179199, - -0.28915879130363464, - -0.28316089510917664, - -0.28022313117980957, - -0.28042566776275635, - -0.28376299142837524, - -0.29014402627944946, - -0.29939475655555725, - -0.311262845993042, - -0.32542455196380615, - -0.34149354696273804, - -0.3590315580368042, - -0.37756016850471497, - -0.3965739905834198, - -0.41555437445640564, - -0.43398356437683105, - -0.4513588547706604, - -0.33933648467063904, - -0.329980731010437, - -0.3224080204963684, - -0.31682491302490234, - -0.31338366866111755, - -0.31217822432518005, - -0.3132414221763611, - -0.3165442645549774, - -0.32199662923812866, - -0.329449862241745, - -0.3387005925178528, - -0.3494965136051178, - -0.36154311895370483, - -0.37451183795928955, - -0.38804891705513, - -0.40178507566452026, - -0.4153456389904022, - -0.4283607006072998, - -0.4404752552509308, - -0.4513588547706604, - -0.33933645486831665, - -0.3375690281391144, - -0.3373776376247406, - -0.33876752853393555, - -0.3417007625102997, - -0.34609735012054443, - -0.3518373370170593, - -0.3587642014026642, - -0.36668896675109863, - -0.37539544701576233, - -0.3846461772918701, - -0.3941888213157654, - -0.403763085603714, - -0.4131077826023102, - -0.4219680428504944, - -0.43010213971138, - -0.4372882544994354, - -0.443330317735672, - -0.44806355237960815, - -0.4513588547706604 - ], - "z": [ - -2.2622432708740234, - -2.264139175415039, - -2.2761693000793457, - -2.2980048656463623, - -2.3290507793426514, - -2.368459701538086, - -2.4151570796966553, - -2.4678688049316406, - -2.5251574516296387, - -2.5854597091674805, - -2.6471314430236816, - -2.7084896564483643, - -2.7678613662719727, - -2.8236265182495117, - -2.8742640018463135, - -2.918393135070801, - -2.9548094272613525, - -2.98252010345459, - -3.0007691383361816, - -3.0090584754943848, - -2.2622432708740234, - -2.2630558013916016, - -2.2740321159362793, - -2.294872283935547, - -2.325007915496826, - -2.363617181777954, - -2.40964674949646, - -2.461841106414795, - -2.5187766551971436, - -2.5789003372192383, - -2.6405718326568604, - -2.7021090984344482, - -2.761833667755127, - -2.8181161880493164, - -2.8694214820861816, - -2.9143502712249756, - -2.951676845550537, - -2.9803829193115234, - -2.999685764312744, - -3.0090584754943848, - -2.2622432708740234, - -2.2624363899230957, - -2.2728097438812256, - -2.2930808067321777, - -2.3226959705352783, - -2.3608477115631104, - -2.4064955711364746, - -2.4583940505981445, - -2.515127658843994, - -2.575148820877075, - -2.6368203163146973, - -2.698460102081299, - -2.7583863735198975, - -2.814964771270752, - -2.866652011871338, - -2.9120383262634277, - -2.949885129928589, - -2.979160785675049, - -2.999066114425659, - -3.0090584754943848, - -2.2622432708740234, - -2.26234769821167, - -2.272634983062744, - -2.2928245067596436, - -2.3223652839660645, - -2.3604516983032227, - -2.4060447216033936, - -2.4579010009765625, - -2.514605760574341, - -2.5746123790740967, - -2.6362838745117188, - -2.6979382038116455, - -2.7578933238983154, - -2.81451416015625, - -2.86625599861145, - -2.9117074012756348, - -2.9496288299560547, - -2.9789857864379883, - -2.9989776611328125, - -3.0090584754943848, - -2.2622432708740234, - -2.2627997398376465, - -2.273526668548584, - -2.294131278991699, - -2.324051856994629, - -2.36247181892395, - -2.408343553543091, - -2.4604156017303467, - -2.5172674655914307, - -2.5773487091064453, - -2.6390202045440674, - -2.7005999088287354, - -2.7604079246520996, - -2.816812753677368, - -2.8682761192321777, - -2.913393974304199, - -2.9509358406066895, - -2.979877471923828, - -2.99942946434021, - -3.0090584754943848, - -2.2622432708740234, - -2.2637431621551514, - -2.275387763977051, - -2.2968595027923584, - -2.3275725841522217, - -2.3666892051696777, - -2.413142442703247, - -2.465665102005005, - -2.52282452583313, - -2.583061456680298, - -2.644733190536499, - -2.7061569690704346, - -2.765657424926758, - -2.8216118812561035, - -2.8724935054779053, - -2.916914939880371, - -2.9536640644073486, - -2.981738805770874, - -3.000372886657715, - -3.0090584754943848, - -2.2622432708740234, - -2.265075922012329, - -2.278017282485962, - -2.3007137775421143, - -2.3325464725494385, - -2.3726470470428467, - -2.419921636581421, - -2.47308087348938, - -2.530674457550049, - -2.5911316871643066, - -2.6528031826019287, - -2.7140069007873535, - -2.773073196411133, - -2.8283910751342773, - -2.878451347351074, - -2.921888589859009, - -2.9575183391571045, - -2.984368085861206, - -3.0017058849334717, - -3.0090584754943848, - -2.2622432708740234, - -2.2666537761688232, - -2.2811295986175537, - -2.3052759170532227, - -2.3384339809417725, - -2.379699468612671, - -2.4279465675354004, - -2.4818592071533203, - -2.5399668216705322, - -2.600684642791748, - -2.66235613822937, - -2.723299264907837, - -2.7818515300750732, - -2.8364157676696777, - -2.8855037689208984, - -2.927776336669922, - -2.962080478668213, - -2.987480640411377, - -3.0032835006713867, - -3.0090584754943848, - -2.2622432708740234, - -2.268305540084839, - -2.2843880653381348, - -2.310051918029785, - -2.344597578048706, - -2.38708233833313, - -2.436347246170044, - -2.491048812866211, - -2.549694538116455, - -2.610685110092163, - -2.672356605529785, - -2.7330269813537598, - -2.791041135787964, - -2.8448166847229004, - -2.8928866386413574, - -2.9339399337768555, - -2.9668564796447754, - -2.990738868713379, - -3.0049352645874023, - -3.0090584754943848, - -2.2622432708740234, - -2.2698521614074707, - -2.2874388694763184, - -2.3145241737365723, - -2.3503689765930176, - -2.393995523452759, - -2.444213628768921, - -2.4996538162231445, - -2.5588035583496094, - -2.6200497150421143, - -2.6817212104797363, - -2.742136001586914, - -2.7996461391448975, - -2.8526830673217773, - -2.8997998237609863, - -2.939711332321167, - -2.9713287353515625, - -2.9937899112701416, - -3.006481885910034, - -3.0090584754943848, - -2.2622432708740234, - -2.2711260318756104, - -2.289952278137207, - -2.3182082176208496, - -2.3551230430603027, - -2.3996899127960205, - -2.450693368911743, - -2.506742000579834, - -2.5663068294525146, - -2.627763032913208, - -2.689434766769409, - -2.7496390342712402, - -2.806734323501587, - -2.8591628074645996, - -2.905494213104248, - -2.944465160369873, - -2.9750125408172607, - -2.996303081512451, - -3.007755756378174, - -3.0090584754943848, - -2.2622432708740234, - -2.271989345550537, - -2.2916550636291504, - -2.320704221725464, - -2.358344316482544, - -2.4035487174987793, - -2.4550840854644775, - -2.511544942855835, - -2.5713908672332764, - -2.6329898834228516, - -2.6946613788604736, - -2.754723310470581, - -2.811537265777588, - -2.863553285598755, - -2.909353017807007, - -2.9476866722106934, - -2.977508783340454, - -2.9980061054229736, - -3.0086190700531006, - -3.0090584754943848, - -2.2622432708740234, - -2.272348165512085, - -2.292363166809082, - -2.321742296218872, - -2.3596839904785156, - -2.405153274536133, - -2.4569098949432373, - -2.5135421752929688, - -2.573505163192749, - -2.6351635456085205, - -2.6968350410461426, - -2.7568376064300537, - -2.8135344982147217, - -2.8653793334960938, - -2.9109575748443604, - -2.949026346206665, - -2.9785468578338623, - -2.9987142086029053, - -3.0089781284332275, - -3.0090584754943848, - -2.2622432708740234, - -2.2721641063690186, - -2.2920000553131104, - -2.3212099075317383, - -2.358996629714966, - -2.404330015182495, - -2.4559731483459473, - -2.5125174522399902, - -2.572420597076416, - -2.6340482234954834, - -2.6957199573516846, - -2.7557528018951416, - -2.812509775161743, - -2.8644425868988037, - -2.9101343154907227, - -2.9483389854431152, - -2.9780142307281494, - -2.9983508586883545, - -3.008793830871582, - -3.0090584754943848, - -2.2622432708740234, - -2.271456718444824, - -2.290604591369629, - -2.319164276123047, - -2.3563570976257324, - -2.40116810798645, - -2.4523751735687256, - -2.5085816383361816, - -2.568254232406616, - -2.629765272140503, - -2.691436767578125, - -2.751586675643921, - -2.8085741996765137, - -2.860844612121582, - -2.9069724082946777, - -2.9456992149353027, - -2.975968837738037, - -2.996955394744873, - -3.0080864429473877, - -3.0090584754943848, - -2.2622432708740234, - -2.2703027725219727, - -2.288328170776367, - -2.3158276081085205, - -2.352051019668579, - -2.396010160446167, - -2.4465060234069824, - -2.5021615028381348, - -2.561458110809326, - -2.6227786540985107, - -2.684450149536133, - -2.744790554046631, - -2.8021538257598877, - -2.854975461959839, - -2.9018144607543945, - -2.9413931369781494, - -2.9726321697235107, - -2.9946789741516113, - -3.0069327354431152, - -3.0090584754943848, - -2.2622432708740234, - -2.268827438354492, - -2.2854175567626953, - -2.311561107635498, - -2.3465452194213867, - -2.3894150257110596, - -2.4390017986297607, - -2.493952512741089, - -2.5527684688568115, - -2.613845109939575, - -2.6755166053771973, - -2.736100673675537, - -2.793944835662842, - -2.847471237182617, - -2.895219326019287, - -2.935887336730957, - -2.9683656692504883, - -2.9917683601379395, - -3.0054571628570557, - -3.0090584754943848, - -2.2622432708740234, - -2.2671902179718018, - -2.2821881771087646, - -2.3068275451660156, - -2.3404362201690674, - -2.3820977210998535, - -2.430675506591797, - -2.484844446182251, - -2.5431268215179443, - -2.603933334350586, - -2.665604829788208, - -2.726459264755249, - -2.784836769104004, - -2.839144706726074, - -2.887902021408081, - -2.929778575897217, - -2.963632106781006, - -2.988538980484009, - -3.0038201808929443, - -3.0090584754943848, - -2.2622432708740234, - -2.265568971633911, - -2.278989791870117, - -2.3021392822265625, - -2.334386110305786, - -2.3748507499694824, - -2.422429323196411, - -2.4758238792419434, - -2.533578395843506, - -2.5941169261932373, - -2.6557884216308594, - -2.7169106006622314, - -2.7758162021636963, - -2.8308985233306885, - -2.88065505027771, - -2.9237284660339355, - -2.9589438438415527, - -2.9853405952453613, - -3.0021989345550537, - -3.0090584754943848, - -2.2622432708740234, - -2.264139175415039, - -2.2761693000793457, - -2.2980048656463623, - -2.3290507793426514, - -2.368459701538086, - -2.4151570796966553, - -2.4678688049316406, - -2.5251574516296387, - -2.5854597091674805, - -2.6471314430236816, - -2.7084896564483643, - -2.7678613662719727, - -2.8236265182495117, - -2.8742640018463135, - -2.918393135070801, - -2.9548094272613525, - -2.98252010345459, - -3.0007691383361816, - -3.0090584754943848 - ] - }, - { - "alphahull": 0, - "color": "#FECB52", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.050142284482717514, - -0.06303529441356659, - -0.07607835531234741, - -0.08891569823026657, - -0.10119713842868805, - -0.11258767545223236, - -0.12277661263942719, - -0.13148601353168488, - -0.13847830891609192, - -0.14356276392936707, - -0.14660070836544037, - -0.14750926196575165, - -0.14626362919807434, - -0.1428978145122528, - -0.13750359416007996, - -0.13022813200950623, - -0.12126988172531128, - -0.11087319254875183, - -0.09932167083024979, - -0.08693040907382965, - -0.050142284482717514, - -0.062350306659936905, - -0.07472706586122513, - -0.08693496137857437, - -0.09864099323749542, - -0.10952584445476532, - -0.11929261684417725, - -0.1276748776435852, - -0.134443998336792, - -0.13941532373428345, - -0.14245326817035675, - -0.14347496628761292, - -0.14245250821113586, - -0.13941380381584167, - -0.13444176316261292, - -0.1276719868183136, - -0.11928915232419968, - -0.10952191054821014, - -0.0986366868019104, - -0.08693040907382965, - -0.050142284482717514, - -0.0603695772588253, - -0.07081963866949081, - -0.08120742440223694, - -0.09124957025051117, - -0.1006721556186676, - -0.10921816527843475, - -0.11665447056293488, - -0.12277825176715851, - -0.12742245197296143, - -0.13046039640903473, - -0.13180920481681824, - -0.13143208622932434, - -0.12933936715126038, - -0.1255880743265152, - -0.12028056383132935, - -0.11356160789728165, - -0.10561448335647583, - -0.0966559574007988, - -0.08693040907382965, - -0.050142284482717514, - -0.05730774998664856, - -0.06477950513362885, - -0.07235373556613922, - -0.07982383668422699, - -0.08698604255914688, - -0.09364499151706696, - -0.09961904585361481, - -0.10474523901939392, - -0.10888373851776123, - -0.11192168295383453, - -0.11377618461847305, - -0.11439666152000427, - -0.11376618593931198, - -0.11190196126699448, - -0.10885483026504517, - -0.10470792651176453, - -0.09957434237003326, - -0.09359413385391235, - -0.08693040907382965, - -0.05014228820800781, - -0.05349661782383919, - -0.05726119503378868, - -0.06133332848548889, - -0.06560194492340088, - -0.06995059549808502, - -0.07426068186759949, - -0.07841461151838303, - -0.08229909837245941, - -0.085808165371418, - -0.0888461023569107, - -0.09133004397153854, - -0.09319223463535309, - -0.09438187628984451, - -0.09486651420593262, - -0.09463293850421906, - -0.0936875194311142, - -0.0920560359954834, - -0.08978299796581268, - -0.08693040907382965, - -0.05014228820800781, - -0.04934918135404587, - -0.049079447984695435, - -0.04934044927358627, - -0.050125062465667725, - -0.051411889493465424, - -0.053165826946496964, - -0.0553390309214592, - -0.0578722283244133, - -0.0606963112950325, - -0.06373424828052521, - -0.06690317392349243, - -0.07011665403842926, - -0.07328702509403229, - -0.07632780820131302, - -0.0791560560464859, - -0.08169463276863098, - -0.08387428522109985, - -0.08563555777072906, - -0.08693040907382965, - -0.05014228820800781, - -0.04531487077474594, - -0.041120871901512146, - -0.03767470270395279, - -0.035070352256298065, - -0.03337886929512024, - -0.03264639154076576, - -0.03289289399981499, - -0.034111663699150085, - -0.03626944497227669, - -0.03930738568305969, - -0.043142613023519516, - -0.04767051711678505, - -0.05276758596301079, - -0.05829478055238724, - -0.06410134583711624, - -0.0700288861989975, - -0.07591571658849716, - -0.08160125464200974, - -0.08693040907382965, - -0.05014228820800781, - -0.041830874979496, - -0.03424791246652603, - -0.027600251138210297, - -0.02206921949982643, - -0.017805691808462143, - -0.014925964176654816, - -0.013508584350347519, - -0.013592217117547989, - -0.015174590051174164, - -0.01821253076195717, - -0.02262316644191742, - -0.028286203742027283, - -0.03504715859889984, - -0.04272160679101944, - -0.05110021308064461, - -0.0599544420838356, - -0.06904275715351105, - -0.0781172513961792, - -0.08693040907382965, - -0.05014228820800781, - -0.039274733513593674, - -0.029205355793237686, - -0.020208824425935745, - -0.01253054291009903, - -0.006379961967468262, - -0.0019248351454734802, - 0.0007133111357688904, - 0.001462496817111969, - 0.0003022924065589905, - -0.002735644578933716, - -0.0075684525072574615, - -0.014064311981201172, - -0.022046025842428207, - -0.03129586949944496, - -0.041561540216207504, - -0.05256301164627075, - -0.0640001967549324, - -0.07556111365556717, - -0.08693040907382965, - -0.05014228820800781, - -0.03792344778776169, - -0.026539642363786697, - -0.01630139723420143, - -0.007487986236810684, - -0.0003398135304450989, - 0.004948124289512634, - 0.008231617510318756, - 0.009421072900295258, - 0.008484043180942535, - 0.005446106195449829, - 0.00039011985063552856, - -0.006546005606651306, - -0.015173066407442093, - -0.025255724787712097, - -0.03651897609233856, - -0.04865558445453644, - -0.061334483325481415, - -0.07420982420444489, - -0.08693040907382965, - -0.05014228820800781, - -0.03792344778776169, - -0.026539642363786697, - -0.01630139723420143, - -0.007487986236810684, - -0.0003398135304450989, - 0.004948124289512634, - 0.008231617510318756, - 0.009421072900295258, - 0.008484043180942535, - 0.005446106195449829, - 0.00039011985063552856, - -0.006546005606651306, - -0.015173066407442093, - -0.025255724787712097, - -0.03651897609233856, - -0.04865558445453644, - -0.061334483325481415, - -0.07420982420444489, - -0.08693040907382965, - -0.05014228820800781, - -0.039274733513593674, - -0.029205355793237686, - -0.020208824425935745, - -0.01253054291009903, - -0.006379961967468262, - -0.0019248351454734802, - 0.0007133111357688904, - 0.001462496817111969, - 0.0003022924065589905, - -0.002735644578933716, - -0.0075684525072574615, - -0.014064311981201172, - -0.022046025842428207, - -0.03129586949944496, - -0.041561540216207504, - -0.05256301164627075, - -0.0640001967549324, - -0.07556111365556717, - -0.08693040907382965, - -0.05014228820800781, - -0.041830874979496, - -0.03424790874123573, - -0.027600251138210297, - -0.022069215774536133, - -0.017805691808462143, - -0.014925964176654816, - -0.01350858062505722, - -0.01359221339225769, - -0.015174586325883865, - -0.01821252703666687, - -0.02262316271662712, - -0.028286200016736984, - -0.03504715487360954, - -0.04272159934043884, - -0.05110020935535431, - -0.0599544383585453, - -0.06904274970293045, - -0.0781172513961792, - -0.08693040907382965, - -0.05014228820800781, - -0.04531487077474594, - -0.04112087935209274, - -0.03767470642924309, - -0.03507035970687866, - -0.033378876745700836, - -0.03264640271663666, - -0.032892901450395584, - -0.03411167487502098, - -0.03626945614814758, - -0.03930739685893059, - -0.04314262419939041, - -0.047670524567365646, - -0.052767593413591385, - -0.05829479172825813, - -0.06410135328769684, - -0.0700288936495781, - -0.07591571658849716, - -0.08160125464200974, - -0.08693040907382965, - -0.05014228820800781, - -0.04934917762875557, - -0.049079444259405136, - -0.049340445548295975, - -0.050125062465667725, - -0.051411885768175125, - -0.053165823221206665, - -0.0553390271961689, - -0.0578722208738327, - -0.060696303844451904, - -0.06373424828052521, - -0.06690317392349243, - -0.07011664658784866, - -0.07328701764345169, - -0.07632780075073242, - -0.0791560560464859, - -0.08169463276863098, - -0.08387428522109985, - -0.08563555777072906, - -0.08693040907382965, - -0.05014228820800781, - -0.05349661409854889, - -0.057261187583208084, - -0.061333317309617996, - -0.06560193002223969, - -0.06995058059692383, - -0.0742606595158577, - -0.07841458916664124, - -0.08229906857013702, - -0.08580814301967621, - -0.08884608000516891, - -0.09133002161979675, - -0.0931922122836113, - -0.09438185393810272, - -0.09486649930477142, - -0.09463292360305786, - -0.093687504529953, - -0.0920560285449028, - -0.08978299796581268, - -0.08693040907382965, - -0.050142284482717514, - -0.05730774998664856, - -0.06477949768304825, - -0.07235372811555862, - -0.07982382923364639, - -0.08698603510856628, - -0.09364498406648636, - -0.09961903840303421, - -0.10474523156881332, - -0.10888373851776123, - -0.11192168295383453, - -0.11377617716789246, - -0.11439666152000427, - -0.11376617848873138, - -0.11190195381641388, - -0.10885483026504517, - -0.10470791906118393, - -0.09957434237003326, - -0.09359413385391235, - -0.08693040907382965, - -0.050142284482717514, - -0.0603695809841156, - -0.07081964612007141, - -0.08120742440223694, - -0.09124957770109177, - -0.1006721630692482, - -0.10921816527843475, - -0.11665448546409607, - -0.1227782666683197, - -0.12742245197296143, - -0.13046039640903473, - -0.13180921971797943, - -0.13143211603164673, - -0.12933936715126038, - -0.1255880892276764, - -0.12028057128190994, - -0.11356161534786224, - -0.10561448335647583, - -0.0966559648513794, - -0.08693040907382965, - -0.050142284482717514, - -0.0623503103852272, - -0.07472707331180573, - -0.08693496882915497, - -0.09864100068807602, - -0.10952585935592651, - -0.11929261684417725, - -0.1276748925447464, - -0.13444402813911438, - -0.13941535353660583, - -0.14245328307151794, - -0.14347496628761292, - -0.14245250821113586, - -0.13941383361816406, - -0.1344417780637741, - -0.1276720017194748, - -0.11928915977478027, - -0.10952191054821014, - -0.0986366868019104, - -0.08693040907382965, - -0.050142284482717514, - -0.06303529441356659, - -0.07607835531234741, - -0.08891569823026657, - -0.10119713842868805, - -0.11258767545223236, - -0.12277661263942719, - -0.13148601353168488, - -0.13847830891609192, - -0.14356276392936707, - -0.14660070836544037, - -0.14750926196575165, - -0.14626362919807434, - -0.1428978145122528, - -0.13750359416007996, - -0.13022813200950623, - -0.12126988172531128, - -0.11087319254875183, - -0.09932167083024979, - -0.08693040907382965 - ], - "y": [ - -0.15042686462402344, - -0.1510867476463318, - -0.1532338559627533, - -0.15680961310863495, - -0.1617165058851242, - -0.16782066226005554, - -0.1749556064605713, - -0.18292666971683502, - -0.1915164738893509, - -0.20049066841602325, - -0.20960448682308197, - -0.21860931813716888, - -0.2272595316171646, - -0.23531918227672577, - -0.24256841838359833, - -0.24880948662757874, - -0.25387218594551086, - -0.25761836767196655, - -0.2599458694458008, - -0.26079121232032776, - -0.15042684972286224, - -0.1551561951637268, - -0.16126176714897156, - -0.16857701539993286, - -0.1769023835659027, - -0.18601080775260925, - -0.19565382599830627, - -0.20556838810443878, - -0.21548406779766083, - -0.2251303642988205, - -0.2342441827058792, - -0.24257691204547882, - -0.24990125000476837, - -0.25601741671562195, - -0.26075857877731323, - -0.26399537920951843, - -0.2656395733356476, - -0.2656462788581848, - -0.2640153467655182, - -0.26079121232032776, - -0.15042684972286224, - -0.15879471600055695, - -0.16843955218791962, - -0.17909827828407288, - -0.19048014283180237, - -0.20227468013763428, - -0.21416018903255463, - -0.22581243515014648, - -0.23691357672214508, - -0.24716082215309143, - -0.25627464056015015, - -0.26400643587112427, - -0.2701452970504761, - -0.2745237946510315, - -0.27702245116233826, - -0.2775731384754181, - -0.2761608362197876, - -0.27282407879829407, - -0.26765385270118713, - -0.26079121232032776, - -0.15042684972286224, - -0.1616080105304718, - -0.173989400267601, - -0.18723328411579132, - -0.20097841322422028, - -0.21484984457492828, - -0.22846923768520355, - -0.24146504700183868, - -0.25348278880119324, - -0.26419466733932495, - -0.27330848574638367, - -0.28057563304901123, - -0.2857978940010071, - -0.2888328433036804, - -0.28959763050079346, - -0.2880713939666748, - -0.28429585695266724, - -0.27837392687797546, - -0.2704671621322632, - -0.26079121232032776, - -0.15042684972286224, - -0.16329120099544525, - -0.17730987071990967, - -0.19210046529769897, - -0.20725955069065094, - -0.2223735898733139, - -0.23703035712242126, - -0.2508300244808197, - -0.26339617371559143, - -0.27438604831695557, - -0.2834998667240143, - -0.2904890179634094, - -0.2951628863811493, - -0.29739394783973694, - -0.2971213459968567, - -0.29435253143310547, - -0.2891630232334137, - -0.2816943824291229, - -0.27215033769607544, - -0.26079121232032776, - -0.15042684972286224, - -0.1636618971824646, - -0.17804116010665894, - -0.1931723952293396, - -0.2086428850889206, - -0.22403059899806976, - -0.2389158308506012, - -0.25289252400398254, - -0.2655794620513916, - -0.27663058042526245, - -0.28574439883232117, - -0.292672336101532, - -0.29722538590431213, - -0.29927942156791687, - -0.29877835512161255, - -0.2957358658313751, - -0.2902349531650543, - -0.2824256718158722, - -0.272521048784256, - -0.26079121232032776, - -0.15042684972286224, - -0.16267994046211243, - -0.17610400915145874, - -0.19033291935920715, - -0.20497851073741913, - -0.2196412980556488, - -0.23392131924629211, - -0.24742907285690308, - -0.2597960829734802, - -0.27068498730659485, - -0.27979880571365356, - -0.2868889272212982, - -0.29176193475723267, - -0.2942849099636078, - -0.2943890690803528, - -0.29207152128219604, - -0.2873954772949219, - -0.2804885506629944, - -0.2715390920639038, - -0.26079121232032776, - -0.15042684972286224, - -0.1604517102241516, - -0.1717083603143692, - -0.1838897168636322, - -0.1966635286808014, - -0.20968134701251984, - -0.22258807718753815, - -0.23503166437149048, - -0.24667268991470337, - -0.25719359517097473, - -0.26630741357803345, - -0.27376553416252136, - -0.27936452627182007, - -0.2829516530036926, - -0.2844291031360626, - -0.2837565243244171, - -0.2809522747993469, - -0.27609288692474365, - -0.269310861825943, - -0.26079121232032776, - -0.15042684972286224, - -0.15721870958805084, - -0.16533052921295166, - -0.17454102635383606, - -0.18459899723529816, - -0.19523005187511444, - -0.20614422857761383, - -0.21704380214214325, - -0.22763146460056305, - -0.23761841654777527, - -0.24673223495483398, - -0.25472432374954224, - -0.26137667894363403, - -0.2665078043937683, - -0.2699778079986572, - -0.2716919779777527, - -0.2716035842895508, - -0.2697150409221649, - -0.26607784628868103, - -0.26079121232032776, - -0.15042684972286224, - -0.15333124995231628, - -0.15766164660453796, - -0.16329993307590485, - -0.17009228467941284, - -0.17785345017910004, - -0.18637171387672424, - -0.1954147219657898, - -0.20473580062389374, - -0.21408070623874664, - -0.22319452464580536, - -0.23182865977287292, - -0.23974758386611938, - -0.24673530459403992, - -0.2526012063026428, - -0.25718528032302856, - -0.26036250591278076, - -0.2620461583137512, - -0.26219040155410767, - -0.26079121232032776, - -0.15042686462402344, - -0.1492106169462204, - -0.14953278005123138, - -0.15138456225395203, - -0.154715433716774, - -0.15943455696105957, - -0.16541320085525513, - -0.172488272190094, - -0.18046680092811584, - -0.18913115561008453, - -0.19824495911598206, - -0.20755966007709503, - -0.21682113409042358, - -0.2257767915725708, - -0.23418229818344116, - -0.24180841445922852, - -0.24844712018966675, - -0.25391730666160583, - -0.2580697536468506, - -0.26079121232032776, - -0.15042686462402344, - -0.14530333876609802, - -0.14182479679584503, - -0.1400861293077469, - -0.1401347517967224, - -0.14196933805942535, - -0.14553986489772797, - -0.15074890851974487, - -0.15745438635349274, - -0.16547341644763947, - -0.17458723485469818, - -0.18454724550247192, - -0.19508177042007446, - -0.20590344071388245, - -0.21671709418296814, - -0.22722773253917694, - -0.2371486872434616, - -0.24620932340621948, - -0.2541624903678894, - -0.26079121232032776, - -0.15042686462402344, - -0.14203283190727234, - -0.13537299633026123, - -0.13062900304794312, - -0.12793028354644775, - -0.12735044956207275, - -0.1289052814245224, - -0.1325524002313614, - -0.1381923109292984, - -0.14567118883132935, - -0.15478500723838806, - -0.1652851700782776, - -0.17688526213169098, - -0.18926887214183807, - -0.20209817588329315, - -0.21502327919006348, - -0.22769157588481903, - -0.2397575080394745, - -0.2508919835090637, - -0.26079121232032776, - -0.15042686462402344, - -0.13975349068641663, - -0.13087651133537292, - -0.12403801083564758, - -0.11942458152770996, - -0.11716202646493912, - -0.11731207370758057, - -0.1198706328868866, - -0.12476790696382523, - -0.1318703293800354, - -0.14098414778709412, - -0.15186075866222382, - -0.1642034947872162, - -0.17767566442489624, - -0.1919097751379013, - -0.2065175622701645, - -0.2211005687713623, - -0.23526102304458618, - -0.248612642288208, - -0.26079121232032776, - -0.15042686462402344, - -0.1387123465538025, - -0.12882260978221893, - -0.1210274025797844, - -0.11553935706615448, - -0.11250817775726318, - -0.11201655864715576, - -0.11407788842916489, - -0.11863594502210617, - -0.12556640803813934, - -0.13468021154403687, - -0.14572879672050476, - -0.15841074287891388, - -0.17238013446331024, - -0.18725591897964478, - -0.202632337808609, - -0.2180899679660797, - -0.23320713639259338, - -0.24757149815559387, - -0.26079121232032776, - -0.15042686462402344, - -0.13902220129966736, - -0.12943387031555176, - -0.12192339450120926, - -0.11669564247131348, - -0.11389321833848953, - -0.11359256505966187, - -0.1158018708229065, - -0.1204608902335167, - -0.12744253873825073, - -0.13655635714530945, - -0.14755374193191528, - -0.16013473272323608, - -0.17395614087581635, - -0.18864095211029053, - -0.203788623213768, - -0.21898595988750458, - -0.2338183969259262, - -0.24788135290145874, - -0.26079121232032776, - -0.15042686462402344, - -0.14064949750900269, - -0.13264405727386475, - -0.12662890553474426, - -0.12276814132928848, - -0.12116705626249313, - -0.12186932563781738, - -0.12485579401254654, - -0.13004499673843384, - -0.13729539513587952, - -0.14640921354293823, - -0.15713784098625183, - -0.16918864846229553, - -0.18223290145397186, - -0.19591479003429413, - -0.2098611295223236, - -0.22369147837162018, - -0.237028568983078, - -0.24950863420963287, - -0.26079121232032776, - -0.15042686462402344, - -0.1434178650379181, - -0.13810528814792633, - -0.13463404774665833, - -0.1330988109111786, - -0.13354144990444183, - -0.13594992458820343, - -0.14025850594043732, - -0.1463496834039688, - -0.1540573090314865, - -0.16317112743854523, - -0.173442542552948, - -0.1845913678407669, - -0.1963135153055191, - -0.20828919112682343, - -0.22019179165363312, - -0.23169660568237305, - -0.24248981475830078, - -0.2522770166397095, - -0.26079121232032776, - -0.15042686462402344, - -0.14702732861042023, - -0.14522576332092285, - -0.14507129788398743, - -0.14656813442707062, - -0.14967545866966248, - -0.1543085128068924, - -0.16034090518951416, - -0.1676080822944641, - -0.17591184377670288, - -0.1850256621837616, - -0.1947009414434433, - -0.20467375218868256, - -0.21467208862304688, - -0.22442319989204407, - -0.23366111516952515, - -0.24213385581970215, - -0.2496102899312973, - -0.2558864653110504, - -0.26079121232032776, - -0.15042686462402344, - -0.1510867476463318, - -0.1532338559627533, - -0.15680962800979614, - -0.1617165207862854, - -0.16782067716121674, - -0.1749556064605713, - -0.18292668461799622, - -0.1915164738893509, - -0.20049068331718445, - -0.20960450172424316, - -0.21860933303833008, - -0.2272595465183258, - -0.23531919717788696, - -0.24256843328475952, - -0.24880950152873993, - -0.25387218594551086, - -0.25761836767196655, - -0.2599458694458008, - -0.26079121232032776 - ], - "z": [ - -1.0028456449508667, - -1.0072448253631592, - -1.0215588808059692, - -1.045397400856018, - -1.0781099796295166, - -1.1188043355941772, - -1.1663706302642822, - -1.2195110321044922, - -1.2767763137817383, - -1.336604356765747, - -1.3973631858825684, - -1.457395315170288, - -1.5150635242462158, - -1.5687944889068604, - -1.6171226501464844, - -1.6587297916412354, - -1.6924810409545898, - -1.7174556255340576, - -1.7329723834991455, - -1.7386080026626587, - -1.0028456449508667, - -1.0066686868667603, - -1.0204222202301025, - -1.0437312126159668, - -1.0759599208831787, - -1.1162289381027222, - -1.1634399890899658, - -1.2163053750991821, - -1.2733829021453857, - -1.333115816116333, - -1.3938745260238647, - -1.4540019035339355, - -1.5118577480316162, - -1.5658639669418335, - -1.6145472526550293, - -1.6565797328948975, - -1.6908149719238281, - -1.7163190841674805, - -1.7323962450027466, - -1.7386080026626587, - -1.0028456449508667, - -1.006221890449524, - -1.0195410251617432, - -1.0424394607543945, - -1.074292778968811, - -1.114232063293457, - -1.161167860031128, - -1.2138197422027588, - -1.2707518339157104, - -1.3304108381271362, - -1.3911696672439575, - -1.4513708353042603, - -1.5093722343444824, - -1.563591718673706, - -1.6125503778457642, - -1.6549127101898193, - -1.6895232200622559, - -1.7154377698898315, - -1.7319495677947998, - -1.7386080026626587, - -1.0028456449508667, - -1.005953073501587, - -1.0190105438232422, - -1.0416619777679443, - -1.073289394378662, - -1.1130300760269165, - -1.1598000526428223, - -1.2123236656188965, - -1.2691680192947388, - -1.3287826776504517, - -1.389541506767273, - -1.4497870206832886, - -1.5078760385513306, - -1.56222403049469, - -1.6113483905792236, - -1.6539092063903809, - -1.6887456178665161, - -1.7149072885513306, - -1.7316806316375732, - -1.7386080026626587, - -1.0028456449508667, - -1.0058910846710205, - -1.0188883543014526, - -1.0414828062057495, - -1.0730582475662231, - -1.1127532720565796, - -1.159485101699829, - -1.2119791507720947, - -1.268803358078003, - -1.3284077644348145, - -1.3891665935516357, - -1.4494223594665527, - -1.5075315237045288, - -1.5619090795516968, - -1.6110715866088867, - -1.6536781787872314, - -1.6885665655136108, - -1.714785099029541, - -1.7316186428070068, - -1.7386080026626587, - -1.0028456449508667, - -1.0060428380966187, - -1.0191876888275146, - -1.0419217348098755, - -1.073624610900879, - -1.113431692123413, - -1.16025710105896, - -1.212823510169983, - -1.2696971893310547, - -1.3293267488479614, - -1.3900854587554932, - -1.4503161907196045, - -1.508375883102417, - -1.562680959701538, - -1.6117500066757202, - -1.6542445421218872, - -1.6890053749084473, - -1.7150845527648926, - -1.7317705154418945, - -1.7386080026626587, - -1.0028456449508667, - -1.0063918828964233, - -1.01987624168396, - -1.0429308414459229, - -1.0749269723892212, - -1.1149916648864746, - -1.1620322465896606, - -1.2147653102874756, - -1.2717527151107788, - -1.3314398527145386, - -1.3921986818313599, - -1.4523717164993286, - -1.5103178024291992, - -1.5644561052322388, - -1.6133099794387817, - -1.6555469036102295, - -1.6900146007537842, - -1.715773105621338, - -1.7321194410324097, - -1.7386080026626587, - -1.0028456449508667, - -1.0069003105163574, - -1.0208792686462402, - -1.0444011688232422, - -1.0768243074417114, - -1.1172642707824707, - -1.1646182537078857, - -1.2175941467285156, - -1.2747472524642944, - -1.334518313407898, - -1.3952771425247192, - -1.4553662538528442, - -1.5131466388702393, - -1.5670421123504639, - -1.6155827045440674, - -1.6574442386627197, - -1.691484808921814, - -1.7167760133743286, - -1.7326278686523438, - -1.7386080026626587, - -1.0028456449508667, - -1.0075130462646484, - -1.0220880508422852, - -1.0461729764938354, - -1.079110860824585, - -1.120003342628479, - -1.1677348613739014, - -1.2210034132003784, - -1.2783561944961548, - -1.338228464126587, - -1.3989872932434082, - -1.4589751958847046, - -1.516555905342102, - -1.5701587200164795, - -1.6183216571807861, - -1.6597307920455933, - -1.6932567358016968, - -1.717984914779663, - -1.7332406044006348, - -1.7386080026626587, - -1.0028456449508667, - -1.0081636905670166, - -1.023371696472168, - -1.0480544567108154, - -1.0815390348434448, - -1.122911810874939, - -1.1710443496704102, - -1.224623680114746, - -1.2821884155273438, - -1.3421682119369507, - -1.4029269218444824, - -1.4628074169158936, - -1.5201761722564697, - -1.5734683275222778, - -1.621230125427246, - -1.6621589660644531, - -1.6951382160186768, - -1.7192684412002563, - -1.7338913679122925, - -1.7386080026626587, - -1.0028456449508667, - -1.008781909942627, - -1.0245909690856934, - -1.0498418807983398, - -1.083845615386963, - -1.1256746053695679, - -1.1741881370544434, - -1.2280627489089966, - -1.2858288288116455, - -1.345910668373108, - -1.4066693782806396, - -1.4664477109909058, - -1.5236151218414307, - -1.576612114906311, - -1.623992919921875, - -1.6644654273986816, - -1.6969255208969116, - -1.7204878330230713, - -1.7345094680786133, - -1.7386080026626587, - -1.0028456449508667, - -1.0093003511428833, - -1.0256139039993286, - -1.0513412952423096, - -1.0857805013656616, - -1.1279923915863037, - -1.1768255233764648, - -1.230947732925415, - -1.2888827323913574, - -1.3490501642227173, - -1.4098089933395386, - -1.4695017337799072, - -1.5265001058578491, - -1.579249382019043, - -1.6263108253479004, - -1.66640043258667, - -1.6984249353408813, - -1.721510648727417, - -1.7350280284881592, - -1.7386080026626587, - -1.0028456449508667, - -1.0096631050109863, - -1.026329517364502, - -1.052390217781067, - -1.0871342420578003, - -1.129613995552063, - -1.1786706447601318, - -1.2329660654067993, - -1.291019320487976, - -1.35124671459198, - -1.4120054244995117, - -1.4716383218765259, - -1.5285184383392334, - -1.58109450340271, - -1.6279323101043701, - -1.6677541732788086, - -1.6994739770889282, - -1.7222263813018799, - -1.7353906631469727, - -1.7386080026626587, - -1.0028456449508667, - -1.0098308324813843, - -1.0266603231430054, - -1.0528751611709595, - -1.087760090827942, - -1.1303635835647583, - -1.1795235872268677, - -1.2338991165161133, - -1.2920069694519043, - -1.352262020111084, - -1.4130208492279053, - -1.472625970840454, - -1.5294514894485474, - -1.5819475650787354, - -1.6286818981170654, - -1.6683800220489502, - -1.6999588012695312, - -1.7225571870803833, - -1.7355583906173706, - -1.7386080026626587, - -1.0028456449508667, - -1.0097852945327759, - -1.0265705585479736, - -1.0527434349060059, - -1.0875900983810425, - -1.1301599740982056, - -1.1792919635772705, - -1.2336456775665283, - -1.291738748550415, - -1.351986289024353, - -1.4127451181411743, - -1.4723577499389648, - -1.529198169708252, - -1.5817158222198486, - -1.6284782886505127, - -1.6682100296020508, - -1.6998271942138672, - -1.722467303276062, - -1.7355128526687622, - -1.7386080026626587, - -1.0028456449508667, - -1.0095314979553223, - -1.0260697603225708, - -1.0520093441009521, - -1.086642861366272, - -1.1290253400802612, - -1.178000807762146, - -1.2322332859039307, - -1.2902436256408691, - -1.3504493236541748, - -1.4112080335617065, - -1.470862627029419, - -1.5277857780456543, - -1.5804247856140137, - -1.6273436546325684, - -1.6672627925872803, - -1.6990931034088135, - -1.7219665050506592, - -1.7352590560913086, - -1.7386080026626587, - -1.0028456449508667, - -1.0090968608856201, - -1.025212287902832, - -1.0507525205612183, - -1.085020899772644, - -1.1270824670791626, - -1.1757900714874268, - -1.2298150062561035, - -1.2876837253570557, - -1.3478175401687622, - -1.4085763692855835, - -1.4683027267456055, - -1.5253674983978271, - -1.5782139301300049, - -1.6254007816314697, - -1.6656408309936523, - -1.6978362798690796, - -1.72110915184021, - -1.7348244190216064, - -1.7386080026626587, - -1.0028456449508667, - -1.008528470993042, - -1.024091124534607, - -1.0491091012954712, - -1.082900047302246, - -1.124541997909546, - -1.1728993654251099, - -1.2266528606414795, - -1.2843363285064697, - -1.3443763256072998, - -1.405135154724121, - -1.4649553298950195, - -1.5222052335739136, - -1.575323224067688, - -1.622860312461853, - -1.6635198593139648, - -1.6961928606033325, - -1.7199878692626953, - -1.7342560291290283, - -1.7386080026626587, - -1.0028456449508667, - -1.0078879594802856, - -1.0228276252746582, - -1.0472571849822998, - -1.0805100202560425, - -1.1216791868209839, - -1.1696418523788452, - -1.2230894565582275, - -1.280564308166504, - -1.3404985666275024, - -1.4012572765350342, - -1.4611833095550537, - -1.5186419486999512, - -1.5720657110214233, - -1.619997501373291, - -1.6611299514770508, - -1.6943409442901611, - -1.7187244892120361, - -1.7336156368255615, - -1.7386080026626587, - -1.0028456449508667, - -1.0072448253631592, - -1.0215588808059692, - -1.0453972816467285, - -1.0781099796295166, - -1.1188043355941772, - -1.1663705110549927, - -1.2195110321044922, - -1.2767763137817383, - -1.336604356765747, - -1.3973631858825684, - -1.457395315170288, - -1.5150635242462158, - -1.5687944889068604, - -1.6171226501464844, - -1.6587297916412354, - -1.6924810409545898, - -1.7174556255340576, - -1.7329723834991455, - -1.7386080026626587 - ] - }, - { - "alphahull": 0, - "color": "#FF6692", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.11931631714105606, - -0.10059670358896255, - -0.08187677711248398, - -0.0636671781539917, - -0.046464599668979645, - -0.03073830157518387, - -0.016917243599891663, - -0.005378425121307373, - 0.0035633817315101624, - 0.009664297103881836, - 0.012757882475852966, - 0.012759760022163391, - 0.009669885039329529, - 0.003572531044483185, - -0.0053659602999687195, - -0.016901805996894836, - -0.030720330774784088, - -0.046444568783044815, - -0.0636456310749054, - -0.08185431361198425, - -0.11931631714105606, - -0.10172847658395767, - -0.08410945534706116, - -0.06693984568119049, - -0.0506879985332489, - -0.03579722344875336, - -0.022673696279525757, - -0.0116753950715065, - -0.003102332353591919, - 0.0028116628527641296, - 0.00590524822473526, - 0.00609404593706131, - 0.0033729150891304016, - -0.0021839216351509094, - -0.010424889624118805, - -0.02112521231174469, - -0.03399300575256348, - -0.048677243292331696, - -0.06477740406990051, - -0.08185431361198425, - -0.11931631714105606, - -0.10473848134279251, - -0.09004735201597214, - -0.07564367353916168, - -0.061920344829559326, - -0.04925168305635452, - -0.03798327594995499, - -0.02842249721288681, - -0.020830117166042328, - -0.015413261950016022, - -0.012319676578044891, - -0.011633738875389099, - -0.013374187052249908, - -0.01749350130558014, - -0.023879356682300568, - -0.032357558608055115, - -0.04269682988524437, - -0.054615143686532974, - -0.06778740882873535, - -0.08185431361198425, - -0.11931631714105606, - -0.10930053144693375, - -0.09904702752828598, - -0.0888354703783989, - -0.07894442230463028, - -0.06964369118213654, - -0.06118696182966232, - -0.0538049079477787, - -0.047698911279439926, - -0.04303552210330963, - -0.0399419330060482, - -0.0385025329887867, - -0.0387565940618515, - -0.04069718345999718, - -0.04427136108279228, - -0.04938163980841637, - -0.05588862672448158, - -0.06361481547355652, - -0.07234946638345718, - -0.08185431361198425, - -0.11931630969047546, - -0.11492026597261429, - -0.11013320833444595, - -0.10508570075035095, - -0.09991542994976044, - -0.09476344287395477, - -0.08977025002241135, - -0.08507207036018372, - -0.08079705387353897, - -0.07706180214881897, - -0.07396821677684784, - -0.07160067558288574, - -0.07002376019954681, - -0.0692804753780365, - -0.06939111649990082, - -0.07035265117883682, - -0.07213885337114334, - -0.07470099627971649, - -0.07796920090913773, - -0.08185431361198425, - -0.11931630969047546, - -0.12098869681358337, - -0.12210454046726227, - -0.12263338267803192, - -0.12256082147359848, - -0.12188882380723953, - -0.12063571810722351, - -0.1188356876373291, - -0.11653783917427063, - -0.11380484700202942, - -0.11071126163005829, - -0.107341468334198, - -0.1037873774766922, - -0.10014594346284866, - -0.09651650488376617, - -0.09299804270267487, - -0.08968654274940491, - -0.0866723284125328, - -0.08403763175010681, - -0.08185431361198425, - -0.11931630969047546, - -0.1268482208251953, - -0.13366374373435974, - -0.1395769715309143, - -0.1444266140460968, - -0.14808037877082825, - -0.1504386067390442, - -0.1514369547367096, - -0.1510482132434845, - -0.14928296208381653, - -0.1461893767118454, - -0.14185182750225067, - -0.1363886445760727, - -0.12994882464408875, - -0.12270806729793549, - -0.11486383527517319, - -0.10663013160228729, - -0.09823153167963028, - -0.08989714831113815, - -0.08185431361198425, - -0.11931630969047546, - -0.13186386227607727, - -0.14355820417404175, - -0.1540803611278534, - -0.1631433218717575, - -0.17049986124038696, - -0.1759493052959442, - -0.17934301495552063, - -0.18058843910694122, - -0.17965155839920044, - -0.1765579879283905, - -0.1713920533657074, - -0.16429471969604492, - -0.15545953810214996, - -0.145127534866333, - -0.1335805356502533, - -0.12113352119922638, - -0.10812599211931229, - -0.09491278231143951, - -0.08185430616140366, - -0.11931630969047546, - -0.13549208641052246, - -0.15071570873260498, - -0.1645718812942505, - -0.17668268084526062, - -0.18671773374080658, - -0.19440332055091858, - -0.19952981173992157, - -0.20195737481117249, - -0.2016197144985199, - -0.19852614402770996, - -0.19276098906993866, - -0.18448150157928467, - -0.17391356825828552, - -0.16134542226791382, - -0.1471199095249176, - -0.13162504136562347, - -0.11528348922729492, - -0.0985410138964653, - -0.08185430616140366, - -0.11931630969047546, - -0.1373397409915924, - -0.1543606072664261, - -0.1699146032333374, - -0.1835775077342987, - -0.1949765831232071, - -0.20380091667175293, - -0.209809809923172, - -0.21283933520317078, - -0.2128068506717682, - -0.20971326529979706, - -0.20364296436309814, - -0.1947614997625351, - -0.18331116437911987, - -0.16960427165031433, - -0.1540147364139557, - -0.1369677633047104, - -0.11892839521169662, - -0.10038866847753525, - -0.08185430616140366, - -0.11931630969047546, - -0.13720658421516418, - -0.15409794449806213, - -0.16952958703041077, - -0.18308064341545105, - -0.19438141584396362, - -0.20312368869781494, - -0.20906898379325867, - -0.21205513179302216, - -0.21200065314769745, - -0.20890706777572632, - -0.20285874605178833, - -0.19402067363262177, - -0.1826339215040207, - -0.16900910437107086, - -0.15351785719394684, - -0.13658274710178375, - -0.11866572499275208, - -0.10025551915168762, - -0.08185430616140366, - -0.11931630969047546, - -0.13510707020759583, - -0.14995616674423218, - -0.16345854103565216, - -0.17524591088294983, - -0.18499672412872314, - -0.19244500994682312, - -0.19738763570785522, - -0.19968973100185394, - -0.1992884874343872, - -0.19619491696357727, - -0.19049334526062012, - -0.18233931064605713, - -0.17195525765419006, - -0.15962441265583038, - -0.14568312466144562, - -0.13051170110702515, - -0.11452394723892212, - -0.09815599769353867, - -0.08185430616140366, - -0.11931630969047546, - -0.1312686800956726, - -0.1423840969800949, - -0.15235935151576996, - -0.1609223484992981, - -0.16783949732780457, - -0.17292213439941406, - -0.17603161931037903, - -0.1770831048488617, - -0.1760479360818863, - -0.17295435070991516, - -0.16788673400878906, - -0.16098329424858093, - -0.1524323672056198, - -0.1424671858549118, - -0.13135956227779388, - -0.11941250413656235, - -0.10695189237594604, - -0.09431761503219604, - -0.08185430616140366, - -0.11931630969047546, - -0.12610739469528198, - -0.13220229744911194, - -0.13743478059768677, - -0.1416620910167694, - -0.14476895332336426, - -0.14667057991027832, - -0.1473151445388794, - -0.14668503403663635, - -0.1447974294424057, - -0.14170384407043457, - -0.13748864829540253, - -0.1322668194770813, - -0.12618081271648407, - -0.1193966269493103, - -0.11209931969642639, - -0.10448793321847916, - -0.09677009284496307, - -0.08915632218122482, - -0.08185431361198425, - -0.11931630969047546, - -0.12018250674009323, - -0.12051413953304291, - -0.12030216306447983, - -0.1195523664355278, - -0.11828520148992538, - -0.11653522402048111, - -0.11435017734766006, - -0.11178965866565704, - -0.1089235171675682, - -0.10582992434501648, - -0.10259328037500381, - -0.09930185973644257, - -0.09604544937610626, - -0.09291287511587143, - -0.08998958766460419, - -0.08735531568527222, - -0.08508192747831345, - -0.08323143422603607, - -0.08185431361198425, - -0.11931630969047546, - -0.11413607001304626, - -0.10858619958162308, - -0.1028180792927742, - -0.09698905795812607, - -0.09125813841819763, - -0.08578163385391235, - -0.08070893585681915, - -0.0761784091591835, - -0.07231365144252777, - -0.06922005861997604, - -0.06698203086853027, - -0.06566062569618225, - -0.06529185175895691, - -0.06588581204414368, - -0.06742627918720245, - -0.06987123191356659, - -0.07315398752689362, - -0.0771850049495697, - -0.08185431361198425, - -0.11931631714105606, - -0.10862330347299576, - -0.09771103411912918, - -0.08687715977430344, - -0.0764172226190567, - -0.06661652028560638, - -0.0577423982322216, - -0.05003691837191582, - -0.043710265308618546, - -0.03893502429127693, - -0.0358414351940155, - -0.034513890743255615, - -0.03498860448598862, - -0.03725261986255646, - -0.04124419391155243, - -0.04685443639755249, - -0.053930316120386124, - -0.06227882206439972, - -0.0716722309589386, - -0.08185431361198425, - -0.11931631714105606, - -0.10424160212278366, - -0.08906716108322144, - -0.0742068961262703, - -0.06006617099046707, - -0.04703070968389511, - -0.035456061363220215, - -0.025657974183559418, - -0.017903707921504974, - -0.01240479201078415, - -0.009311206638813019, - -0.008707329630851746, - -0.010609664022922516, - -0.014966286718845367, - -0.021658368408679962, - -0.03050338476896286, - -0.04126004874706268, - -0.053634949028491974, - -0.0672905296087265, - -0.08185431361198425, - -0.11931631714105606, - -0.10146580636501312, - -0.0835912749171257, - -0.06618029624223709, - -0.0497078001499176, - -0.03462310880422592, - -0.021337687969207764, - -0.0102139413356781, - -0.0015552937984466553, - 0.004402086138725281, - 0.007495671510696411, - 0.0076410844922065735, - 0.004834368824958801, - -0.0008479133248329163, - -0.00925077497959137, - -0.020145006477832794, - -0.03323344886302948, - -0.04815906286239624, - -0.06451473385095596, - -0.08185431361198425, - -0.11931631714105606, - -0.10059670358896255, - -0.08187677711248398, - -0.0636671781539917, - -0.046464599668979645, - -0.03073830157518387, - -0.016917243599891663, - -0.005378425121307373, - 0.0035633817315101624, - 0.009664297103881836, - 0.012757882475852966, - 0.012759760022163391, - 0.009669885039329529, - 0.003572531044483185, - -0.0053659602999687195, - -0.016901805996894836, - -0.030720330774784088, - -0.046444568783044815, - -0.0636456310749054, - -0.08185431361198425 - ], - "y": [ - -0.3579489290714264, - -0.35771846771240234, - -0.35596150159835815, - -0.35272592306137085, - -0.3481000065803528, - -0.34220996499061584, - -0.3352164328098297, - -0.3273102045059204, - -0.3187068998813629, - -0.3096412122249603, - -0.30036044120788574, - -0.29111775755882263, - -0.2821652293205261, - -0.2737470865249634, - -0.2660929560661316, - -0.25941160321235657, - -0.25388532876968384, - -0.2496647983789444, - -0.2468651980161667, - -0.24556288123130798, - -0.3579489290714264, - -0.3636246621608734, - -0.3676127791404724, - -0.3698045015335083, - -0.370140016078949, - -0.3686102032661438, - -0.36525678634643555, - -0.36017119884490967, - -0.35349223017692566, - -0.3454020023345947, - -0.33612123131752014, - -0.3259030878543854, - -0.31502625346183777, - -0.3037874102592468, - -0.29249319434165955, - -0.28145164251327515, - -0.2709639072418213, - -0.26131609082221985, - -0.25277140736579895, - -0.2455628663301468, - -0.3579489290714264, - -0.3688327670097351, - -0.37788692116737366, - -0.3848644196987152, - -0.38957494497299194, - -0.3918899595737457, - -0.3917464017868042, - -0.38914811611175537, - -0.38416600227355957, - -0.3769359290599823, - -0.3676551580429077, - -0.3565768301486969, - -0.3440031409263611, - -0.3302770256996155, - -0.31577298045158386, - -0.3008865416049957, - -0.2860238254070282, - -0.2715902328491211, - -0.25797951221466064, - -0.2455628663301468, - -0.3579489290714264, - -0.37277838587760925, - -0.38567054271698, - -0.3962737023830414, - -0.40429866313934326, - -0.4095265567302704, - -0.41181471943855286, - -0.4111007750034332, - -0.40740418434143066, - -0.40082576870918274, - -0.39154499769210815, - -0.3798150420188904, - -0.36595579981803894, - -0.3503453731536865, - -0.33340954780578613, - -0.31561028957366943, - -0.29743310809135437, - -0.2793738543987274, - -0.2619251012802124, - -0.2455628663301468, - -0.3579489290714264, - -0.3750339448451996, - -0.39012014865875244, - -0.4027959704399109, - -0.41271570324897766, - -0.4196087419986725, - -0.423287034034729, - -0.423650324344635, - -0.4206886291503906, - -0.4144827127456665, - -0.4052019715309143, - -0.39309945702552795, - -0.3785053491592407, - -0.36181771755218506, - -0.34349173307418823, - -0.32402729988098145, - -0.3039553761482239, - -0.2838234603404999, - -0.2641806900501251, - -0.2455628663301468, - -0.3579489290714264, - -0.3753550350666046, - -0.39075353741645813, - -0.40372443199157715, - -0.41391390562057495, - -0.4210439622402191, - -0.4249201714992523, - -0.42543676495552063, - -0.42257970571517944, - -0.4164268374443054, - -0.4071460962295532, - -0.3949905335903168, - -0.38029181957244873, - -0.363450825214386, - -0.34492695331573486, - -0.32522550225257874, - -0.30488383769989014, - -0.28445684909820557, - -0.26450175046920776, - -0.2455628663301468, - -0.3579489290714264, - -0.3737068474292755, - -0.38750213384628296, - -0.3989584743976593, - -0.40776339173316956, - -0.4136767089366913, - -0.4165371060371399, - -0.4162665903568268, - -0.4128724932670593, - -0.4064474403858185, - -0.3971666693687439, - -0.38528335094451904, - -0.3711216151714325, - -0.35506775975227356, - -0.33755970001220703, - -0.3190750181674957, - -0.3001178801059723, - -0.2812054455280304, - -0.26285359263420105, - -0.2455628663301468, - -0.3579489290714264, - -0.37026798725128174, - -0.3807182312011719, - -0.3890145719051361, - -0.39493075013160706, - -0.39830532670021057, - -0.39904630184173584, - -0.397133469581604, - -0.39261895418167114, - -0.3856259286403656, - -0.376345157623291, - -0.36502981185913086, - -0.3519884943962097, - -0.3375769555568695, - -0.3221883177757263, - -0.30624234676361084, - -0.2901739776134491, - -0.2744215428829193, - -0.2594147324562073, - -0.2455628663301468, - -0.3579489290714264, - -0.3654111325740814, - -0.37113699316978455, - -0.37497031688690186, - -0.3768065273761749, - -0.37659555673599243, - -0.3743431568145752, - -0.37011078000068665, - -0.3640138506889343, - -0.3562186658382416, - -0.346937894821167, - -0.33642470836639404, - -0.32496580481529236, - -0.31287381052970886, - -0.3004785478115082, - -0.2881181240081787, - -0.27612972259521484, - -0.264840304851532, - -0.25455787777900696, - -0.2455628663301468, - -0.3579489290714264, - -0.35966259241104126, - -0.3597966730594635, - -0.3583475649356842, - -0.35535478591918945, - -0.35089996457099915, - -0.3451046347618103, - -0.33812686800956726, - -0.33015698194503784, - -0.3214123845100403, - -0.3121316134929657, - -0.30256783962249756, - -0.292981892824173, - -0.28363528847694397, - -0.2747829556465149, - -0.2666664123535156, - -0.2595069706439972, - -0.25349998474121094, - -0.2488093078136444, - -0.2455628663301468, - -0.3579489290714264, - -0.3536452651023865, - -0.34792619943618774, - -0.340947687625885, - -0.33290016651153564, - -0.32400310039520264, - -0.3144991993904114, - -0.30464765429496765, - -0.29471728205680847, - -0.28497886657714844, - -0.27569809556007385, - -0.2671281099319458, - -0.25950270891189575, - -0.25302982330322266, - -0.24788609147071838, - -0.24421176314353943, - -0.2421071082353592, - -0.24162951111793518, - -0.24279199540615082, - -0.24556288123130798, - -0.3579489290714264, - -0.3480112850666046, - -0.336811900138855, - -0.32465624809265137, - -0.31187596917152405, - -0.2988196313381195, - -0.2858433723449707, - -0.2733011841773987, - -0.2615351676940918, - -0.25086626410484314, - -0.24158549308776855, - -0.2339460253715515, - -0.2281562089920044, - -0.22437402606010437, - -0.22270262241363525, - -0.22318756580352783, - -0.22581565380096436, - -0.23051519691944122, - -0.23715800046920776, - -0.24556288123130798, - -0.3579489290714264, - -0.34337112307548523, - -0.32765817642211914, - -0.3112386465072632, - -0.2945604622364044, - -0.2780785858631134, - -0.26224252581596375, - -0.24748429656028748, - -0.2342064529657364, - -0.22277119755744934, - -0.21349042654037476, - -0.2066172957420349, - -0.2023393213748932, - -0.2007731795310974, - -0.20196154713630676, - -0.2058720737695694, - -0.21239805221557617, - -0.22136148810386658, - -0.23251786828041077, - -0.24556288123130798, - -0.3579489588737488, - -0.3402276635169983, - -0.3214569687843323, - -0.3021489083766937, - -0.2828300893306732, - -0.26402756571769714, - -0.24625413119792938, - -0.22999465465545654, - -0.2156926393508911, - -0.20373819768428802, - -0.19445744156837463, - -0.18810348212718964, - -0.18484967947006226, - -0.18478477001190186, - -0.1879105418920517, - -0.1941417008638382, - -0.2033083140850067, - -0.2151602953672409, - -0.22937439382076263, - -0.24556288123130798, - -0.3579489588737488, - -0.33892154693603516, - -0.3188803493976593, - -0.2983720302581787, - -0.2779560089111328, - -0.25818923115730286, - -0.23961080610752106, - -0.22272753715515137, - -0.20799997448921204, - -0.19582980871200562, - -0.18654903769493103, - -0.18041083216667175, - -0.17758257687091827, - -0.17814144492149353, - -0.1820722073316574, - -0.1892676204442978, - -0.1995314359664917, - -0.21258366107940674, - -0.2280682623386383, - -0.24556288123130798, - -0.3579489588737488, - -0.3395942449569702, - -0.320207417011261, - -0.30031728744506836, - -0.2804664075374603, - -0.26119622588157654, - -0.24303242564201355, - -0.2264704406261444, - -0.2119620442390442, - -0.19990301132202148, - -0.1906222403049469, - -0.1843729019165039, - -0.18132548034191132, - -0.18156307935714722, - -0.18507921695709229, - -0.1917780041694641, - -0.20147669315338135, - -0.21391074359416962, - -0.22874099016189575, - -0.24556288123130798, - -0.3579489290714264, - -0.3421729505062103, - -0.32529446482658386, - -0.3077739179134369, - -0.2900892198085785, - -0.2727227807044983, - -0.25614824891090393, - -0.24081778526306152, - -0.2271495759487152, - -0.21551641821861267, - -0.20623564720153809, - -0.19956041872501373, - -0.19567281007766724, - -0.1946789026260376, - -0.19660574197769165, - -0.20140081644058228, - -0.20893332362174988, - -0.2189977765083313, - -0.23131966590881348, - -0.24556288123130798, - -0.3579489290714264, - -0.3463781476020813, - -0.33359017968177795, - -0.31993386149406433, - -0.30578169226646423, - -0.29151973128318787, - -0.27753695845603943, - -0.26421481370925903, - -0.25191670656204224, - -0.24097807705402374, - -0.23169732093811035, - -0.22432756423950195, - -0.21906985342502594, - -0.2160675972700119, - -0.21540270745754242, - -0.21709328889846802, - -0.22109326720237732, - -0.22729350626468658, - -0.23552489280700684, - -0.24556288123130798, - -0.3579489290714264, - -0.35175418853759766, - -0.3441956341266632, - -0.33547940850257874, - -0.32584330439567566, - -0.31555014848709106, - -0.3048807382583618, - -0.29412609338760376, - -0.283579558134079, - -0.2735288441181183, - -0.2642480731010437, - -0.2559904158115387, - -0.24898111820220947, - -0.24341139197349548, - -0.239433154463768, - -0.23715490102767944, - -0.23663881421089172, - -0.23789894580841064, - -0.2409009337425232, - -0.24556288123130798, - -0.3579489290714264, - -0.35771846771240234, - -0.35596150159835815, - -0.35272592306137085, - -0.3481000065803528, - -0.34220999479293823, - -0.3352164626121521, - -0.3273102045059204, - -0.3187068998813629, - -0.3096412420272827, - -0.30036047101020813, - -0.29111775755882263, - -0.2821652293205261, - -0.2737470865249634, - -0.2660929560661316, - -0.25941163301467896, - -0.25388532876968384, - -0.2496647983789444, - -0.2468651980161667, - -0.24556288123130798 - ], - "z": [ - -2.3863260746002197, - -2.3820595741271973, - -2.3676908016204834, - -2.343611717224121, - -2.310479164123535, - -2.2691967487335205, - -2.220890522003174, - -2.1668787002563477, - -2.1086337566375732, - -2.0477449893951416, - -1.9858733415603638, - -1.924706220626831, - -1.8659121990203857, - -1.811095118522644, - -1.7617502212524414, - -1.7192233800888062, - -1.6846747398376465, - -1.6590466499328613, - -1.643038272857666, - -1.637086033821106, - -2.3863260746002197, - -2.381117105484009, - -2.3658316135406494, - -2.340886354446411, - -2.306962013244629, - -2.264983654022217, - -2.216096878051758, - -2.161634683609009, - -2.1030826568603516, - -2.0420384407043457, - -1.9801665544509888, - -1.9191551208496094, - -1.8606683015823364, - -1.806301236152649, - -1.7575372457504272, - -1.7157062292099, - -1.6819493770599365, - -1.6571873426437378, - -1.642095685005188, - -1.637086033821106, - -2.3863260746002197, - -2.38018536567688, - -2.3639936447143555, - -2.3381919860839844, - -2.303485155105591, - -2.2608189582824707, - -2.211357831954956, - -2.1564507484436035, - -2.09759521484375, - -2.0363969802856445, - -1.9745252132415771, - -1.9136676788330078, - -1.8554843664169312, - -1.8015623092651367, - -1.7533725500106812, - -1.7122293710708618, - -1.6792551279067993, - -1.6553492546081543, - -1.641163945198059, - -1.637086033821106, - -2.3863260746002197, - -2.3793654441833496, - -2.3623759746551514, - -2.3358211517333984, - -2.3004252910614014, - -2.2571539878845215, - -2.2071874141693115, - -2.151888608932495, - -2.092766046524048, - -2.0314323902130127, - -1.9695606231689453, - -1.9088385105133057, - -1.8509223461151123, - -1.7973918914794922, - -1.7497074604034424, - -1.709169626235962, - -1.6768841743469238, - -1.6537318229675293, - -1.6403440237045288, - -1.637086033821106, - -2.3863260746002197, - -2.3787460327148438, - -2.361154317855835, - -2.3340303897857666, - -2.29811429977417, - -2.2543857097625732, - -2.2040374279022217, - -2.1484429836273193, - -2.089118480682373, - -2.0276825428009033, - -1.965810775756836, - -1.9051909446716309, - -1.847476601600647, - -1.7942419052124023, - -1.7469391822814941, - -1.706858515739441, - -1.6750932931900024, - -1.6525100469589233, - -1.6397247314453125, - -1.637086033821106, - -2.3863260746002197, - -2.378394603729248, - -2.3604607582092285, - -2.3330135345458984, - -2.296802282333374, - -2.2528140544891357, - -2.202249050140381, - -2.146486759185791, - -2.087047815322876, - -2.0255537033081055, - -1.9636820554733276, - -1.9031202793121338, - -1.8455203771591187, - -1.792453646659851, - -1.7453676462173462, - -1.705546498298645, - -1.6740766763687134, - -1.6518163681030273, - -1.6393730640411377, - -1.637086033821106, - -2.3863260746002197, - -2.3783488273620605, - -2.360370397567749, - -2.332881450653076, - -2.2966315746307373, - -2.2526097297668457, - -2.2020163536071777, - -2.1462321281433105, - -2.086778402328491, - -2.0252768993377686, - -1.9634050130844116, - -1.902850866317749, - -1.8452658653259277, - -1.792220950126648, - -1.745163083076477, - -1.7053757905960083, - -1.673944354057312, - -1.651726245880127, - -1.6393274068832397, - -1.637086033821106, - -2.3863260746002197, - -2.3786139488220215, - -2.3608932495117188, - -2.3336477279663086, - -2.2976205348968506, - -2.2537944316864014, - -2.203364610671997, - -2.147706985473633, - -2.088339328765869, - -2.026881694793701, - -1.9650098085403442, - -1.904411792755127, - -1.846740484237671, - -1.7935690879821777, - -1.7463479042053223, - -1.7063648700714111, - -1.674710750579834, - -1.6522490978240967, - -1.6395924091339111, - -1.637086033821106, - -2.3863260746002197, - -2.3791608810424805, - -2.3619725704193115, - -2.3352298736572266, - -2.2996621131896973, - -2.256239891052246, - -2.2061474323272705, - -2.1507508754730225, - -2.091561794281006, - -2.0301942825317383, - -1.968322515487671, - -1.9076341390609741, - -1.8497846126556396, - -1.7963517904281616, - -1.748793363571167, - -1.7084065675735474, - -1.676292896270752, - -1.6533284187316895, - -1.6401395797729492, - -1.637086033821106, - -2.3863260746002197, - -2.3799309730529785, - -2.3634915351867676, - -2.337456226348877, - -2.30253529548645, - -2.259681224822998, - -2.2100632190704346, - -2.1550345420837402, - -2.0960960388183594, - -2.034855842590332, - -1.9729840755462646, - -1.9121686220169067, - -1.8540681600570679, - -1.8002676963806152, - -1.7522348165512085, - -1.7112795114517212, - -1.6785191297531128, - -1.6548471450805664, - -1.6409094333648682, - -1.637086033821106, - -2.3863260746002197, - -2.3808400630950928, - -2.3652851581573486, - -2.34008526802063, - -2.3059282302856445, - -2.2637455463409424, - -2.2146878242492676, - -2.160093307495117, - -2.1014513969421387, - -2.040361166000366, - -1.9784893989562988, - -1.917523741722107, - -1.8591270446777344, - -1.8048924207687378, - -1.7562991380691528, - -1.714672565460205, - -1.6811482906341553, - -1.656640887260437, - -1.6418187618255615, - -1.637086033821106, - -2.3863260746002197, - -2.3817901611328125, - -2.367159366607666, - -2.342832565307617, - -2.3094735145568848, - -2.2679922580718994, - -2.219520092010498, - -2.165379524230957, - -2.1070468425750732, - -2.0461137294769287, - -1.9842419624328613, - -1.923119306564331, - -1.8644131422042847, - -1.8097246885299683, - -1.7605458498001099, - -1.7182179689407349, - -1.6838955879211426, - -1.6585150957107544, - -1.6427687406539917, - -1.637086033821106, - -2.3863260746002197, - -2.3826780319213867, - -2.368911027908325, - -2.345400094985962, - -2.3127870559692383, - -2.2719614505767822, - -2.224036455154419, - -2.1703197956085205, - -2.112276554107666, - -2.051490068435669, - -1.989618182182312, - -1.9283490180969238, - -1.8693535327911377, - -1.8142409324645996, - -1.7645149230957031, - -1.7215313911437988, - -1.6864632368087769, - -1.6602667570114136, - -1.6436567306518555, - -1.637086033821106, - -2.3863260746002197, - -2.3834078311920166, - -2.3703503608703613, - -2.3475098609924316, - -2.315509796142578, - -2.2752225399017334, - -2.2277472019195557, - -2.1743791103363037, - -2.1165735721588135, - -2.0559074878692627, - -1.9940357208251953, - -1.9326459169387817, - -1.8734127283096313, - -1.8179517984390259, - -1.7677760124206543, - -1.7242540121078491, - -1.688572883605957, - -1.6617059707641602, - -1.6443862915039062, - -1.637086033821106, - -2.3863260746002197, - -2.3838999271392822, - -2.371321201324463, - -2.348932981491089, - -2.3173463344573975, - -2.2774224281311035, - -2.230250597000122, - -2.177117347717285, - -2.1194722652435303, - -2.058887481689453, - -1.9970155954360962, - -1.9355446100234985, - -1.8761510848999023, - -1.8204550743103027, - -1.769976019859314, - -1.726090669631958, - -1.6899961233139038, - -1.6626769304275513, - -1.6448783874511719, - -1.637086033821106, - -2.3863260746002197, - -2.384101390838623, - -2.371718406677246, - -2.349515438079834, - -2.3180978298187256, - -2.278322696685791, - -2.2312750816345215, - -2.1782379150390625, - -2.1206583976745605, - -2.0601069927215576, - -1.9982351064682007, - -1.9367308616638184, - -1.8772716522216797, - -1.8214795589447021, - -1.7708762884140015, - -1.7268421649932861, - -1.6905784606933594, - -1.663074254989624, - -1.6450798511505127, - -1.637086033821106, - -2.3863260746002197, - -2.3839902877807617, - -2.3714993000030518, - -2.349194049835205, - -2.317682981491089, - -2.2778258323669434, - -2.2307095527648926, - -2.177619457244873, - -2.1200037002563477, - -2.059433937072754, - -1.997562050819397, - -1.9360761642456055, - -1.8766531944274902, - -1.8209141492843628, - -1.7703794240951538, - -1.7264273166656494, - -1.6902570724487305, - -1.6628549098968506, - -1.6449687480926514, - -1.637086033821106, - -2.3863260746002197, - -2.3835785388946533, - -2.3706870079040527, - -2.348003625869751, - -2.3161468505859375, - -2.2759857177734375, - -2.2286155223846436, - -2.1753289699554443, - -2.1175789833068848, - -2.056941032409668, - -1.9950693845748901, - -1.9336514472961426, - -1.874362587928772, - -1.8188201189041138, - -1.7685391902923584, - -1.7248910665512085, - -1.6890665292739868, - -1.6620428562164307, - -1.644556999206543, - -1.637086033821106, - -2.3863260746002197, - -2.38291072845459, - -2.3693699836730957, - -2.3460731506347656, - -2.313655376434326, - -2.2730014324188232, - -2.225219964981079, - -2.171614408493042, - -2.113646984100342, - -2.05289888381958, - -1.9910271167755127, - -1.9297194480895996, - -1.8706481456756592, - -1.8154244422912598, - -1.7655549049377441, - -1.7223997116088867, - -1.6871360540390015, - -1.6607258319854736, - -1.6438894271850586, - -1.637086033821106, - -2.3863260746002197, - -2.3820595741271973, - -2.3676908016204834, - -2.343611717224121, - -2.310479164123535, - -2.2691967487335205, - -2.220890522003174, - -2.1668787002563477, - -2.1086337566375732, - -2.0477449893951416, - -1.9858733415603638, - -1.924706220626831, - -1.8659121990203857, - -1.811095118522644, - -1.7617502212524414, - -1.7192233800888062, - -1.6846747398376465, - -1.6590466499328613, - -1.643038272857666, - -1.637086033821106 - ] - }, - { - "alphahull": 0, - "color": "#19D3F3", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.11421037465333939, - -0.10457292944192886, - -0.0957125872373581, - -0.08787105232477188, - -0.08126220107078552, - -0.07606631517410278, - -0.07242512702941895, - -0.07043793797492981, - -0.07015898823738098, - -0.07159586250782013, - -0.07470937818288803, - -0.07941459864377975, - -0.08558318018913269, - -0.09304686635732651, - -0.10160205513238907, - -0.11101539433002472, - -0.12103010714054108, - -0.13137301802635193, - -0.14176200330257416, - -0.15191367268562317, - -0.11421037465333939, - -0.1123465746641159, - -0.11104784905910492, - -0.1103496104478836, - -0.1102708950638771, - -0.11081387102603912, - -0.11196371912956238, - -0.11368907988071442, - -0.11594287306070328, - -0.11866363137960434, - -0.12177714705467224, - -0.12519848346710205, - -0.1288343220949173, - -0.13258546590805054, - -0.136349618434906, - -0.1400240957736969, - -0.1435086727142334, - -0.14670827984809875, - -0.1495356559753418, - -0.15191367268562317, - -0.11421036720275879, - -0.12035005539655685, - -0.12683649361133575, - -0.13349275290966034, - -0.14013725519180298, - -0.1465887576341629, - -0.15267129242420197, - -0.15821895003318787, - -0.1630803793668747, - -0.1671229898929596, - -0.1702364981174469, - -0.17233599722385406, - -0.17336419224739075, - -0.17329305410385132, - -0.17212451994419098, - -0.16989046335220337, - -0.16665181517601013, - -0.1624969244003296, - -0.15753912925720215, - -0.15191367268562317, - -0.11421036720275879, - -0.1277160793542862, - -0.1413675993680954, - -0.15479257702827454, - -0.1676248013973236, - -0.17951422929763794, - -0.19013658165931702, - -0.19920207560062408, - -0.20646345615386963, - -0.21172261238098145, - -0.21483612060546875, - -0.2157190591096878, - -0.21434731781482697, - -0.21075832843780518, - -0.20504999160766602, - -0.1973779946565628, - -0.18795163929462433, - -0.17702803015708923, - -0.1649051457643509, - -0.15191367268562317, - -0.11421036720275879, - -0.1336463987827301, - -0.153066486120224, - -0.1719409078359604, - -0.18975481390953064, - -0.20602229237556458, - -0.2202996015548706, - -0.23219728469848633, - -0.24139082431793213, - -0.24762943387031555, - -0.25074294209480286, - -0.2506464421749115, - -0.2473425269126892, - -0.24092134833335876, - -0.23155803978443146, - -0.21950802206993103, - -0.20509997010231018, - -0.18872691690921783, - -0.1708354651927948, - -0.15191365778446198, - -0.11421036720275879, - -0.1374983787536621, - -0.1606653928756714, - -0.18307945132255554, - -0.2041291892528534, - -0.22324034571647644, - -0.23989170789718628, - -0.25362902879714966, - -0.2640776038169861, - -0.27095240354537964, - -0.27406591176986694, - -0.27333322167396545, - -0.26877427101135254, - -0.2605134844779968, - -0.2487761229276657, - -0.2338823825120926, - -0.21623851358890533, - -0.19632580876350403, - -0.174687460064888, - -0.15191365778446198, - -0.11421036720275879, - -0.13885462284088135, - -0.16334086656570435, - -0.18700119853019714, - -0.20919018983840942, - -0.22930261492729187, - -0.2467898428440094, - -0.26117488741874695, - -0.27206534147262573, - -0.2791641354560852, - -0.2822776436805725, - -0.2813209295272827, - -0.27632012963294983, - -0.26741158962249756, - -0.25483837723731995, - -0.23894339799880981, - -0.22016024589538574, - -0.19900129735469818, - -0.17604368925094604, - -0.15191365778446198, - -0.11421036720275879, - -0.1375681310892105, - -0.16080299019813538, - -0.18328113853931427, - -0.20438945293426514, - -0.22355210781097412, - -0.24024644494056702, - -0.2540171146392822, - -0.2644883990287781, - -0.2713747024536133, - -0.2744882106781006, - -0.27374398708343506, - -0.2691623568534851, - -0.2608681917190552, - -0.2490878701210022, - -0.23414263129234314, - -0.21644020080566406, - -0.19646340608596802, - -0.1747572124004364, - -0.15191365778446198, - -0.11421036720275879, - -0.13377831876277924, - -0.15332674980163574, - -0.17232240736484528, - -0.19024714827537537, - -0.2066120058298111, - -0.22097063064575195, - -0.23293133080005646, - -0.2421678602695465, - -0.24842825531959534, - -0.25154179334640503, - -0.2514234781265259, - -0.24807657301425934, - -0.2415923774242401, - -0.23214776813983917, - -0.22000034153461456, - -0.20548146963119507, - -0.18898718059062958, - -0.17096740007400513, - -0.15191365778446198, - -0.11421036720275879, - -0.12789589166641235, - -0.14172233641147614, - -0.15531255304813385, - -0.16829583048820496, - -0.18031802773475647, - -0.191051185131073, - -0.2002025842666626, - -0.20752254128456116, - -0.2128113955259323, - -0.2159249186515808, - -0.21677814424037933, - -0.21534782648086548, - -0.21167294681072235, - -0.20585377514362335, - -0.19804903864860535, - -0.18847161531448364, - -0.17738276720046997, - -0.16508497297763824, - -0.15191367268562317, - -0.11421036720275879, - -0.12055828422307968, - -0.12724727392196655, - -0.13409486413002014, - -0.14091429114341736, - -0.14751951396465302, - -0.1537303924560547, - -0.15937748551368713, - -0.16430675983428955, - -0.16838374733924866, - -0.17149725556373596, - -0.17356237769126892, - -0.17452272772789001, - -0.17435213923454285, - -0.1730552613735199, - -0.17066748440265656, - -0.16725392639636993, - -0.1629077047109604, - -0.15774735808372498, - -0.15191367268562317, - -0.11421037465333939, - -0.11256064474582672, - -0.11147013306617737, - -0.11096860468387604, - -0.11106971651315689, - -0.11177072674036026, - -0.11305250227451324, - -0.11488009244203568, - -0.11720363050699234, - -0.119959756731987, - -0.1230732724070549, - -0.1264592409133911, - -0.13002532720565796, - -0.1336742490530014, - -0.13730646669864655, - -0.14082291722297668, - -0.14412766695022583, - -0.1471305638551712, - -0.14974971115589142, - -0.15191367268562317, - -0.11421037465333939, - -0.10476963222026825, - -0.09610064327716827, - -0.08843985944986343, - -0.08199624717235565, - -0.07694558799266815, - -0.07342562079429626, - -0.07153238356113434, - -0.07131752371788025, - -0.07278688997030258, - -0.07590040564537048, - -0.08057313412427902, - -0.08667762577533722, - -0.09404736757278442, - -0.10248132050037384, - -0.11174944043159485, - -0.12159891426563263, - -0.1317610740661621, - -0.14195871353149414, - -0.15191367268562317, - -0.11421037465333939, - -0.09802953898906708, - -0.08280429244041443, - -0.06894994527101517, - -0.05684441328048706, - -0.04681790620088577, - -0.03914390504360199, - -0.03403173387050629, - -0.03162086755037308, - -0.03197704255580902, - -0.03509055823087692, - -0.04087647795677185, - -0.04917697608470917, - -0.05976564437150955, - -0.07235363870859146, - -0.08659760653972626, - -0.10210900753736496, - -0.11846472322940826, - -0.13521860539913177, - -0.15191367268562317, - -0.11421037465333939, - -0.09307075291872025, - -0.07302199304103851, - -0.0546109601855278, - -0.03833986073732376, - -0.024652548134326935, - -0.013922363519668579, - -0.006441980600357056, - -0.002415478229522705, - -0.0019526779651641846, - -0.005066186189651489, - -0.011671088635921478, - -0.021587222814559937, - -0.03454410284757614, - -0.050188273191452026, - -0.06809304654598236, - -0.087770015001297, - -0.10868242383003235, - -0.13025982677936554, - -0.15191367268562317, - -0.11421038210391998, - -0.09043063223361969, - -0.06781376153230667, - -0.04697669297456741, - -0.028487801551818848, - -0.012851439416408539, - -0.0004940927028656006, - 0.008247151970863342, - 0.013133853673934937, - 0.014032676815986633, - 0.010919168591499329, - 0.0038782358169555664, - -0.006898090243339539, - -0.02111583948135376, - -0.03838717192411423, - -0.05824098736047745, - -0.08013574779033661, - -0.10347418487071991, - -0.12761971354484558, - -0.15191367268562317, - -0.11421038210391998, - -0.09039527177810669, - -0.06774401664733887, - -0.04687444865703583, - -0.02835586667060852, - -0.01269339770078659, - -0.00031426548957824707, - 0.008443862199783325, - 0.013342082500457764, - 0.014246746897697449, - 0.011133238673210144, - 0.0040864646434783936, - -0.006701380014419556, - -0.02093600481748581, - -0.03822913020849228, - -0.05810905992984772, - -0.08003351092338562, - -0.1034044474363327, - -0.12758435308933258, - -0.15191367268562317, - -0.11421037465333939, - -0.09296852350234985, - -0.07282030582427979, - -0.05431533604860306, - -0.03795836865901947, - -0.024195581674575806, - -0.013402394950389862, - -0.005873188376426697, - -0.0018133670091629028, - -0.001333683729171753, - -0.004447191953659058, - -0.011068977415561676, - -0.021018430590629578, - -0.03402412682771683, - -0.04973132163286209, - -0.06771156191825867, - -0.08747439086437225, - -0.10848073661327362, - -0.13015758991241455, - -0.15191367268562317, - -0.11421037465333939, - -0.09787151217460632, - -0.08249256014823914, - -0.06849300861358643, - -0.05625472962856293, - -0.04611155390739441, - -0.038340166211128235, - -0.03315252810716629, - -0.03069017082452774, - -0.03102024644613266, - -0.03413376212120056, - -0.039945781230926514, - -0.04829777032136917, - -0.0589619055390358, - -0.0716472938656807, - -0.08600792288780212, - -0.10165207087993622, - -0.11815299093723297, - -0.13506059348583221, - -0.15191367268562317, - -0.11421037465333939, - -0.10457292944192886, - -0.09571260213851929, - -0.08787105977535248, - -0.08126221597194672, - -0.07606633007526398, - -0.07242514193058014, - -0.0704379603266716, - -0.07015901058912277, - -0.07159589231014252, - -0.07470940053462982, - -0.07941462099552155, - -0.08558320999145508, - -0.0930468887090683, - -0.10160207748413086, - -0.11101540923118591, - -0.12103012204170227, - -0.13137303292751312, - -0.14176200330257416, - -0.15191367268562317 - ], - "y": [ - -0.3426310420036316, - -0.36554521322250366, - -0.38937705755233765, - -0.41347643733024597, - -0.43718603253364563, - -0.45985907316207886, - -0.4808771014213562, - -0.49966683983802795, - -0.5157157182693481, - -0.5285859107971191, - -0.5379264950752258, - -0.5434825420379639, - -0.545102596282959, - -0.5427424311637878, - -0.5364664196968079, - -0.526445746421814, - -0.5129537582397461, - -0.4963584542274475, - -0.4771125614643097, - -0.4557410478591919, - -0.3426310420036316, - -0.36747345328330994, - -0.3931809365749359, - -0.41905221343040466, - -0.44438159465789795, - -0.46847817301750183, - -0.4906846284866333, - -0.5103952288627625, - -0.5270723104476929, - -0.5402610301971436, - -0.5496016144752502, - -0.5548391938209534, - -0.5558310151100159, - -0.5525499582290649, - -0.5450854897499084, - -0.5336413383483887, - -0.5185295343399048, - -0.5001623630523682, - -0.47904080152511597, - -0.4557410478591919, - -0.3426310420036316, - -0.3667932450771332, - -0.39183902740478516, - -0.4170852303504944, - -0.4418432116508484, - -0.4654375910758972, - -0.487224817276001, - -0.5066105723381042, - -0.5230660438537598, - -0.5361424088478088, - -0.5454829931259155, - -0.5508329272270203, - -0.5520463585853577, - -0.5490901470184326, - -0.5420449376106262, - -0.5311028957366943, - -0.5165625214576721, - -0.4988204538822174, - -0.4783605933189392, - -0.4557410478591919, - -0.3426310420036316, - -0.3635782301425934, - -0.38549673557281494, - -0.4077886641025543, - -0.4298458993434906, - -0.4510668218135834, - -0.4708726108074188, - -0.48872292041778564, - -0.5041309595108032, - -0.5166763067245483, - -0.5260168313980103, - -0.531897783279419, - -0.5341587066650391, - -0.5327379107475281, - -0.5276741981506348, - -0.5191056132316589, - -0.5072659254074097, - -0.4924781620502472, - -0.4751455783843994, - -0.4557410478591919, - -0.3426310420036316, - -0.3581768870353699, - -0.3748413622379303, - -0.39216989278793335, - -0.4096898138523102, - -0.4269231855869293, - -0.44339999556541443, - -0.4586707651615143, - -0.47231894731521606, - -0.4839722514152527, - -0.4933127760887146, - -0.5000858306884766, - -0.5041065216064453, - -0.5052653551101685, - -0.5035305619239807, - -0.49894949793815613, - -0.4916471838951111, - -0.48182275891304016, - -0.4697442352771759, - -0.4557410478591919, - -0.3426310420036316, - -0.3511744737625122, - -0.3610275387763977, - -0.37192147970199585, - -0.38355910778045654, - -0.39562299847602844, - -0.407784104347229, - -0.4197106659412384, - -0.43107736110687256, - -0.4415741562843323, - -0.4509147107601166, - -0.45884424448013306, - -0.4651464521884918, - -0.46964943408966064, - -0.47223034501075745, - -0.4728188216686249, - -0.4713987708091736, - -0.46800893545150757, - -0.46274182200431824, - -0.4557410478591919, - -0.3426310420036316, - -0.34332984685897827, - -0.3455522358417511, - -0.3492376506328583, - -0.35428550839424133, - -0.3605581521987915, - -0.36788445711135864, - -0.37606456875801086, - -0.3848753869533539, - -0.39407655596733093, - -0.40341711044311523, - -0.4126422703266144, - -0.4215003550052643, - -0.4297497570514679, - -0.4371654689311981, - -0.44354522228240967, - -0.448714941740036, - -0.45253366231918335, - -0.4548971951007843, - -0.4557410478591919, - -0.3426310420036316, - -0.3354930579662323, - -0.3300924599170685, - -0.3265765309333801, - -0.3250412344932556, - -0.3255283832550049, - -0.3280247449874878, - -0.3324621915817261, - -0.3387196958065033, - -0.3466265797615051, - -0.35596713423728943, - -0.3664865791797638, - -0.3778979778289795, - -0.38989007472991943, - -0.4021357297897339, - -0.41430091857910156, - -0.42605385184288025, - -0.43707385659217834, - -0.44706040620803833, - -0.4557410478591919, - -0.3426310420036316, - -0.32851338386535645, - -0.316323459148407, - -0.3063938617706299, - -0.29899537563323975, - -0.29432982206344604, - -0.2925244867801666, - -0.2936285734176636, - -0.2976120114326477, - -0.3043661117553711, - -0.3137066662311554, - -0.3253788948059082, - -0.339064359664917, - -0.3543897867202759, - -0.37093713879585266, - -0.3882550597190857, - -0.4058711528778076, - -0.42330488562583923, - -0.4400807321071625, - -0.4557410478591919, - -0.3426310420036316, - -0.32314714789390564, - -0.3057374060153961, - -0.29087668657302856, - -0.2789703905582428, - -0.27034324407577515, - -0.26523059606552124, - -0.2637718915939331, - -0.2660069465637207, - -0.2718747854232788, - -0.2812153100967407, - -0.2937738001346588, - -0.3092076778411865, - -0.3270958960056305, - -0.34695056080818176, - -0.36823007464408875, - -0.3903539776802063, - -0.412718802690506, - -0.43471449613571167, - -0.4557410478591919, - -0.3426310420036316, - -0.319975882768631, - -0.2994813919067383, - -0.2817065715789795, - -0.26713627576828003, - -0.2561679780483246, - -0.24910081923007965, - -0.24612759053707123, - -0.24732939898967743, - -0.25267350673675537, - -0.2620140314102173, - -0.27509626746177673, - -0.29156336188316345, - -0.3109661340713501, - -0.3327752947807312, - -0.356395959854126, - -0.3811838626861572, - -0.40646278858184814, - -0.431543231010437, - -0.4557410478591919, - -0.3426310420036316, - -0.3193432688713074, - -0.29823336005210876, - -0.2798772156238556, - -0.26477548480033875, - -0.2533401548862457, - -0.24588309228420258, - -0.2426077276468277, - -0.2436034232378006, - -0.2488430142402649, - -0.2581835687160492, - -0.2713702917098999, - -0.2880434989929199, - -0.30774837732315063, - -0.32994747161865234, - -0.3540351986885071, - -0.3793545067310333, - -0.405214786529541, - -0.4309106171131134, - -0.4557410478591919, - -0.3426310420036316, - -0.32131779193878174, - -0.3021285831928253, - -0.2855868637561798, - -0.2721438407897949, - -0.26216620206832886, - -0.25592607259750366, - -0.25359371304512024, - -0.25523272156715393, - -0.26079845428466797, - -0.2701389789581299, - -0.28299960494041443, - -0.29902946949005127, - -0.3177914023399353, - -0.3387734889984131, - -0.36140352487564087, - -0.38506415486335754, - -0.40911000967025757, - -0.43288514018058777, - -0.4557410478591919, - -0.3426310420036316, - -0.3256855607032776, - -0.3107449412345886, - -0.2982168197631836, - -0.28844285011291504, - -0.28168967366218567, - -0.27814149856567383, - -0.27789506316185, - -0.2809571623802185, - -0.2872442603111267, - -0.2965847849845886, - -0.308724045753479, - -0.3233308494091034, - -0.3400067985057831, - -0.3582969903945923, - -0.377702534198761, - -0.39769411087036133, - -0.4177263677120209, - -0.4372529089450836, - -0.4557410478591919, - -0.3426310420036316, - -0.33197319507598877, - -0.3231487274169922, - -0.31639838218688965, - -0.31190624833106995, - -0.3097948729991913, - -0.31012189388275146, - -0.3128783106803894, - -0.3179889917373657, - -0.3253145217895508, - -0.3346550762653351, - -0.3457558751106262, - -0.3583140969276428, - -0.3719871938228607, - -0.3864021897315979, - -0.4011659324169159, - -0.4158756732940674, - -0.43013015389442444, - -0.4435405433177948, - -0.4557410478591919, - -0.3426310420036316, - -0.3394993543624878, - -0.3379957675933838, - -0.33816128969192505, - -0.33999142050743103, - -0.34343621134757996, - -0.3484017252922058, - -0.35475248098373413, - -0.36231529712677, - -0.3708838224411011, - -0.3802243769168854, - -0.39008215069770813, - -0.40018826723098755, - -0.41026702523231506, - -0.4200435280799866, - -0.429251104593277, - -0.4376385807991028, - -0.44497716426849365, - -0.4510667026042938, - -0.4557410478591919, - -0.3426310420036316, - -0.347448468208313, - -0.3536771833896637, - -0.36114728450775146, - -0.36965495347976685, - -0.37896814942359924, - -0.38883283734321594, - -0.39897996187210083, - -0.4091326892375946, - -0.4190140962600708, - -0.4283546209335327, - -0.4368995428085327, - -0.44441571831703186, - -0.4506981670856476, - -0.45557546615600586, - -0.4589146375656128, - -0.4606245756149292, - -0.46065860986709595, - -0.4590158462524414, - -0.4557410478591919, - -0.3426310420036316, - -0.3549591600894928, - -0.3684936463832855, - -0.38286536931991577, - -0.3976822793483734, - -0.4125401973724365, - -0.4270338714122772, - -0.44076791405677795, - -0.4533677101135254, - -0.46448957920074463, - -0.47383010387420654, - -0.4811345934867859, - -0.486203670501709, - -0.4888991713523865, - -0.4891475439071655, - -0.48694199323654175, - -0.4823426604270935, - -0.4754750728607178, - -0.46652650833129883, - -0.4557410478591919, - -0.3426310420036316, - -0.3612174689769745, - -0.38083958625793457, - -0.40096214413642883, - -0.4210362434387207, - -0.44051432609558105, - -0.45886510610580444, - -0.47558799386024475, - -0.4902268052101135, - -0.5023822784423828, - -0.5117228627204895, - -0.517993688583374, - -0.5210237503051758, - -0.5207304358482361, - -0.5171216726303101, - -0.5102959275245667, - -0.5004394054412842, - -0.48782098293304443, - -0.4727848172187805, - -0.4557410478591919, - -0.3426310420036316, - -0.36554521322250366, - -0.38937705755233765, - -0.41347643733024597, - -0.43718603253364563, - -0.45985907316207886, - -0.4808771014213562, - -0.49966683983802795, - -0.5157157182693481, - -0.5285859704017639, - -0.5379264950752258, - -0.5434826016426086, - -0.545102596282959, - -0.5427424311637878, - -0.5364664196968079, - -0.526445746421814, - -0.5129537582397461, - -0.4963584542274475, - -0.4771125912666321, - -0.4557410478591919 - ], - "z": [ - -2.284207344055176, - -2.28652286529541, - -2.2990596294403076, - -2.3214759826660156, - -2.3531599044799805, - -2.393247604370117, - -2.440645456314087, - -2.494060516357422, - -2.5520360469818115, - -2.612990140914917, - -2.675260305404663, - -2.7371482849121094, - -2.7969655990600586, - -2.8530805110931396, - -2.9039628505706787, - -2.9482240676879883, - -2.9846572875976562, - -3.012268543243408, - -3.030304431915283, - -3.038273334503174, - -2.284207344055176, - -2.2858448028564453, - -2.297722339630127, - -2.3195157051086426, - -2.350630283355713, - -2.3902173042297363, - -2.43719744682312, - -2.490288734436035, - -2.5480432510375977, - -2.6088855266571045, - -2.6711556911468506, - -2.7331554889678955, - -2.793193817138672, - -2.849632501602173, - -2.900932550430298, - -2.9456942081451416, - -2.982697010040283, - -3.0109310150146484, - -3.0296266078948975, - -3.038273334503174, - -2.284207344055176, - -2.2855467796325684, - -2.2971341609954834, - -2.3186535835266113, - -2.349517583847046, - -2.3888847827911377, - -2.435681104660034, - -2.4886300563812256, - -2.5462872982025146, - -2.6070802211761475, - -2.6693506240844727, - -2.7313995361328125, - -2.791534900665283, - -2.848116159439087, - -2.89959979057312, - -2.9445817470550537, - -2.981834888458252, - -3.010342836380005, - -3.0293283462524414, - -3.038273334503174, - -2.284207344055176, - -2.285660743713379, - -2.297358989715576, - -2.3189830780029297, - -2.349942922592163, - -2.3893940448760986, - -2.43626070022583, - -2.4892640113830566, - -2.5469584465026855, - -2.6077702045440674, - -2.6700406074523926, - -2.7320706844329834, - -2.7921688556671143, - -2.848695755004883, - -2.90010929107666, - -2.945006847381592, - -2.9821643829345703, - -3.0105676651000977, - -3.029442310333252, - -3.038273334503174, - -2.284207344055176, - -2.2861742973327637, - -2.298372268676758, - -2.3204684257507324, - -2.3518598079681396, - -2.391690254211426, - -2.438873291015625, - -2.492122173309326, - -2.5499839782714844, - -2.6108803749084473, - -2.6731507778167725, - -2.7350962162017822, - -2.795027017593384, - -2.8513083457946777, - -2.902405261993408, - -2.9469237327575684, - -2.983649730682373, - -3.0115811824798584, - -3.029956102371216, - -3.038273334503174, - -2.284207344055176, - -2.287032127380371, - -2.3000645637512207, - -2.322948694229126, - -2.355060577392578, - -2.395524501800537, - -2.4432361125946045, - -2.496894598007202, - -2.5550358295440674, - -2.6160740852355957, - -2.678344249725342, - -2.7401480674743652, - -2.7997994422912598, - -2.8556711673736572, - -2.9062395095825195, - -2.950124740600586, - -2.9861299991607666, - -3.013273239135742, - -3.030813694000244, - -3.038273334503174, - -2.284207344055176, - -2.2881410121917725, - -2.3022520542144775, - -2.326155185699463, - -2.359198570251465, - -2.4004809856414795, - -2.448876142501831, - -2.5030641555786133, - -2.5615665912628174, - -2.622788190841675, - -2.685058355331421, - -2.7466790676116943, - -2.805968999862671, - -2.861311197280884, - -2.911195993423462, - -2.9542627334594727, - -2.9893364906311035, - -3.015460729598999, - -3.0319228172302246, - -3.038273334503174, - -2.284207344055176, - -2.2893807888031006, - -2.3046977519989014, - -2.329740285873413, - -2.3638253211975098, - -2.4060230255126953, - -2.4551823139190674, - -2.509962320327759, - -2.56886887550354, - -2.6302950382232666, - -2.692565441131592, - -2.753981113433838, - -2.8128671646118164, - -2.86761736869812, - -2.9167380332946777, - -2.9588894844055176, - -2.992921829223633, - -3.017906665802002, - -3.0331625938415527, - -3.038273334503174, - -2.284207344055176, - -2.2906172275543213, - -2.3071370124816895, - -2.33331561088562, - -2.368439197540283, - -2.4115498065948486, - -2.4614710807800293, - -2.5168416500091553, - -2.576151132583618, - -2.6377813816070557, - -2.700051784515381, - -2.761263370513916, - -2.819746494293213, - -2.873906135559082, - -2.922264814376831, - -2.963503360748291, - -2.99649715423584, - -3.020345687866211, - -3.0343990325927734, - -3.038273334503174, - -2.284207344055176, - -2.2917163372039795, - -2.309305191040039, - -2.336493730545044, - -2.3725407123565674, - -2.4164624214172363, - -2.4670612812042236, - -2.522956609725952, - -2.5826241970062256, - -2.6444361209869385, - -2.7067062854766846, - -2.7677364349365234, - -2.8258614540100098, - -2.8794963359832764, - -2.9271774291992188, - -2.967604637145996, - -2.9996750354766846, - -3.0225138664245605, - -3.0354981422424316, - -3.038273334503174, - -2.284207344055176, - -2.2925589084625244, - -2.310967206954956, - -2.338930130004883, - -2.3756847381591797, - -2.4202287197113037, - -2.471346616744995, - -2.527644634246826, - -2.5875866413116455, - -2.6495375633239746, - -2.7118079662323, - -2.7726988792419434, - -2.830549478530884, - -2.883781909942627, - -2.930943727493286, - -2.9707489013671875, - -3.0021114349365234, - -3.0241761207580566, - -3.0363407135009766, - -3.038273334503174, - -2.284207344055176, - -2.29305362701416, - -2.311943292617798, - -2.3403608798980713, - -2.377531051635742, - -2.42244029045105, - -2.473863363265991, - -2.530397415161133, - -2.590500593185425, - -2.6525332927703857, - -2.714803695678711, - -2.7756128311157227, - -2.8333022594451904, - -2.886298418045044, - -2.9331552982330322, - -2.97259521484375, - -3.003542184829712, - -3.0251522064208984, - -3.0368354320526123, - -3.038273334503174, - -2.284207344055176, - -2.293147087097168, - -2.3121275901794434, - -2.3406310081481934, - -2.3778796195983887, - -2.4228577613830566, - -2.4743380546569824, - -2.530916929244995, - -2.591050386428833, - -2.6530985832214355, - -2.7153689861297607, - -2.77616286277771, - -2.8338217735290527, - -2.8867733478546143, - -2.933572769165039, - -2.9729437828063965, - -3.003812313079834, - -3.025336265563965, - -3.036928653717041, - -3.038273334503174, - -2.284207344055176, - -2.2928290367126465, - -2.311499834060669, - -2.3397109508514404, - -2.376692295074463, - -2.421435594558716, - -2.47271990776062, - -2.529146671295166, - -2.589176654815674, - -2.651172399520874, - -2.71344256401062, - -2.7742888927459717, - -2.8320515155792236, - -2.885154962539673, - -2.9321506023406982, - -2.9717564582824707, - -3.002892255783081, - -3.0247087478637695, - -3.0366106033325195, - -3.038273334503174, - -2.284207344055176, - -2.2921338081359863, - -2.3101284503936768, - -2.337700605392456, - -2.374098062515259, - -2.418328046798706, - -2.469183921813965, - -2.5252788066864014, - -2.5850820541381836, - -2.646962881088257, - -2.709233283996582, - -2.7701945304870605, - -2.828183650970459, - -2.8816189765930176, - -2.9290430545806885, - -2.9691622257232666, - -3.0008819103240967, - -3.0233371257781982, - -3.0359153747558594, - -3.038273334503174, - -2.284207344055176, - -2.2911367416381836, - -2.308161735534668, - -2.334817886352539, - -2.370377779006958, - -2.4138717651367188, - -2.464113473892212, - -2.5197319984436035, - -2.5792107582092285, - -2.6409268379211426, - -2.7031972408294678, - -2.7643229961395264, - -2.822636842727661, - -2.8765485286712646, - -2.9245870113372803, - -2.965441942214966, - -2.9979991912841797, - -3.0213706493377686, - -3.0349185466766357, - -3.038273334503174, - -2.284207344055176, - -2.2899460792541504, - -2.3058130741119385, - -2.3313751220703125, - -2.3659348487854004, - -2.4085500240325928, - -2.4580576419830322, - -2.5131077766418457, - -2.5721983909606934, - -2.6337180137634277, - -2.695988416671753, - -2.7573108673095703, - -2.8160126209259033, - -2.870492696762085, - -2.919265031814575, - -2.960999011993408, - -2.994556427001953, - -3.01902174949646, - -3.0337278842926025, - -3.038273334503174, - -2.284207344055176, - -2.2886910438537598, - -2.3033368587493896, - -2.3277454376220703, - -2.361250638961792, - -2.4029390811920166, - -2.4516730308532715, - -2.5061237812042236, - -2.564805507659912, - -2.626117706298828, - -2.688387870788574, - -2.74991774559021, - -2.8090286254882812, - -2.8641083240509033, - -2.913654088973999, - -2.9563148021698, - -2.990926742553711, - -3.016545534133911, - -3.032472610473633, - -3.038273334503174, - -2.284207344055176, - -2.2875070571899414, - -2.3010013103485107, - -2.324321985244751, - -2.35683274269104, - -2.3976471424102783, - -2.4456515312194824, - -2.4995367527008057, - -2.557832717895508, - -2.6189494132995605, - -2.6812198162078857, - -2.7429449558258057, - -2.8024415969848633, - -2.858086585998535, - -2.9083621501922607, - -2.951896905899048, - -2.9875032901763916, - -3.0142099857330322, - -3.0312886238098145, - -3.038273334503174, - -2.284207344055176, - -2.28652286529541, - -2.2990596294403076, - -2.3214759826660156, - -2.3531599044799805, - -2.393247604370117, - -2.440645456314087, - -2.494060516357422, - -2.5520360469818115, - -2.612990140914917, - -2.675260305404663, - -2.7371482849121094, - -2.7969655990600586, - -2.8530805110931396, - -2.9039628505706787, - -2.9482240676879883, - -2.9846572875976562, - -3.012268543243408, - -3.030304431915283, - -3.038273334503174 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.05014228820800781, - 0.03781977668404579, - 0.026335131376981735, - 0.016001630574464798, - 0.007101137191057205, - -0.00012356042861938477, - -0.005475401878356934, - -0.008808396756649017, - -0.010031625628471375, - -0.009111717343330383, - -0.00607377290725708, - -0.0010006725788116455, - 0.005969226360321045, - 0.014645792543888092, - 0.024792350828647614, - 0.03613213077187538, - 0.0483558252453804, - 0.06112997978925705, - 0.07410616427659988, - 0.08693041652441025, - 0.05014228820800781, - 0.038358233869075775, - 0.027397364377975464, - 0.017558656632900238, - 0.009110484272241592, - 0.0022832974791526794, - -0.0027366727590560913, - -0.005812510848045349, - -0.006860300898551941, - -0.005851469933986664, - -0.0028135254979133606, - 0.002170652151107788, - 0.008965115994215012, - 0.017384521663188934, - 0.027199216187000275, - 0.038141485303640366, - 0.04991284757852554, - 0.06219220906496048, - 0.07464461773633957, - 0.08693041652441025, - 0.05014228820800781, - 0.040200866758823395, - 0.03103235736489296, - 0.022886864840984344, - 0.015986572951078415, - 0.010519690811634064, - 0.0066353678703308105, - 0.00443953275680542, - 0.003992088139057159, - 0.005305252969264984, - 0.00834318995475769, - 0.01302303746342659, - 0.019217155873775482, - 0.026756566017866135, - 0.03543560951948166, - 0.04501756653189659, - 0.05524105951189995, - 0.06582720577716827, - 0.07648725062608719, - 0.08693041652441025, - 0.05014228820800781, - 0.0431479848921299, - 0.03684621304273605, - 0.03140886500477791, - 0.026984255760908127, - 0.023693080991506577, - 0.02162511646747589, - 0.020836766809225082, - 0.021349534392356873, - 0.023149434477090836, - 0.02618737518787384, - 0.030380483716726303, - 0.035614389926195145, - 0.04174631088972092, - 0.04860899969935417, - 0.0560152567923069, - 0.06376305967569351, - 0.07164105772972107, - 0.07943437248468399, - 0.08693041652441025, - 0.050142284482717514, - 0.04688023403286934, - 0.04420890659093857, - 0.042201168835163116, - 0.040911782532930374, - 0.04037592187523842, - 0.04060820862650871, - 0.041602298617362976, - 0.043331079185009, - 0.04574739933013916, - 0.048785336315631866, - 0.05236203223466873, - 0.05637992173433304, - 0.06072940677404404, - 0.06529184430837631, - 0.06994277983903885, - 0.07455535978078842, - 0.07900375127792358, - 0.08316662162542343, - 0.08693041652441025, - 0.050142284482717514, - 0.05099315941333771, - 0.05232257395982742, - 0.05409425497055054, - 0.0562598742544651, - 0.05876036733388901, - 0.06152752414345741, - 0.06448586285114288, - 0.06755468994379044, - 0.07065028697252274, - 0.07368823140859604, - 0.07658563554286957, - 0.07926348596811295, - 0.08164872229099274, - 0.0836762860417366, - 0.08529087901115417, - 0.08644844591617584, - 0.08711741864681244, - 0.0872795507311821, - 0.08693040907382965, - 0.050142280757427216, - 0.05504106730222702, - 0.06030797213315964, - 0.06579932570457458, - 0.07136533409357071, - 0.0768541768193245, - 0.08211612701416016, - 0.08700766414403915, - 0.09139534831047058, - 0.09515950083732605, - 0.09819743782281876, - 0.10042630136013031, - 0.10178528726100922, - 0.10223732888698578, - 0.10177010297775269, - 0.10039633512496948, - 0.09815351665019989, - 0.09510281682014465, - 0.09132745862007141, - 0.08693040907382965, - 0.050142280757427216, - 0.05858530476689339, - 0.06729976087808609, - 0.07604795694351196, - 0.08459125459194183, - 0.09269660711288452, - 0.1001429408788681, - 0.10672712326049805, - 0.1122695654630661, - 0.11661907285451889, - 0.1196570098400116, - 0.12130051106214523, - 0.12150474637746811, - 0.12026414275169373, - 0.11761252582073212, - 0.1136222556233406, - 0.10840214788913727, - 0.1020946055650711, - 0.09487169235944748, - 0.08693040907382965, - 0.050142280757427216, - 0.061241790652275085, - 0.0725402757525444, - 0.08372954279184341, - 0.09450438618659973, - 0.10457088053226471, - 0.11365444958209991, - 0.12150731682777405, - 0.12791529297828674, - 0.1327035278081894, - 0.1357414722442627, - 0.13694623112678528, - 0.1362849473953247, - 0.13377565145492554, - 0.1294868141412735, - 0.1235353946685791, - 0.11608374118804932, - 0.10733512043952942, - 0.09752817451953888, - 0.08693040907382965, - 0.050142280757427216, - 0.06272266060113907, - 0.07546162605285645, - 0.08801168203353882, - 0.10003051161766052, - 0.11119024455547333, - 0.1211865022778511, - 0.12974661588668823, - 0.13663706183433533, - 0.1416698694229126, - 0.1447078287601471, - 0.14566799998283386, - 0.1445242315530777, - 0.14130771160125732, - 0.13610616326332092, - 0.1290615200996399, - 0.12036587297916412, - 0.11025647073984146, - 0.09900905191898346, - 0.08693040907382965, - 0.050142280757427216, - 0.06286744028329849, - 0.07574722915887833, - 0.08843032270669937, - 0.10057076811790466, - 0.11183738708496094, - 0.12192287296056747, - 0.13055212795734406, - 0.13748973608016968, - 0.14254647493362427, - 0.14558440446853638, - 0.1465206742286682, - 0.14532974362373352, - 0.1420440822839737, - 0.13675332069396973, - 0.12960177659988403, - 0.12078452110290527, - 0.11054207384586334, - 0.09915382415056229, - 0.08693040907382965, - 0.050142280757427216, - 0.06166043132543564, - 0.07336614280939102, - 0.0849400982260704, - 0.09606662392616272, - 0.1064421683549881, - 0.11578375101089478, - 0.12383656203746796, - 0.13038091361522675, - 0.13523830473423004, - 0.13827624917030334, - 0.13941186666488647, - 0.13861417770385742, - 0.1359049677848816, - 0.1313580870628357, - 0.1250976175069809, - 0.1172942966222763, - 0.10816098749637604, - 0.09794682264328003, - 0.08693040907382965, - 0.050142280757427216, - 0.0592324435710907, - 0.0685763880610466, - 0.07791924476623535, - 0.08700615912675858, - 0.09558926522731781, - 0.10343442857265472, - 0.11032767593860626, - 0.11608096957206726, - 0.12053735554218292, - 0.12357529997825623, - 0.125111922621727, - 0.12510530650615692, - 0.12355563044548035, - 0.120505191385746, - 0.11603716015815735, - 0.11027343571186066, - 0.10337123274803162, - 0.09551882743835449, - 0.08693040907382965, - 0.050142280757427216, - 0.055846575647592545, - 0.06189701333642006, - 0.0681285560131073, - 0.07437121868133545, - 0.08045472204685211, - 0.086213119328022, - 0.09148934483528137, - 0.09613947570323944, - 0.10003665834665298, - 0.10307459533214569, - 0.10517042875289917, - 0.10626697540283203, - 0.10633432865142822, - 0.10537064075469971, - 0.10340221971273422, - 0.1004827469587326, - 0.09669186174869537, - 0.09213296324014664, - 0.08693040907382965, - 0.050142284482717514, - 0.051869750022888184, - 0.05405183881521225, - 0.056629031896591187, - 0.059531018137931824, - 0.06267865002155304, - 0.06598605960607529, - 0.06936304271221161, - 0.07271747291088104, - 0.07595784962177277, - 0.07899578660726547, - 0.08174842596054077, - 0.08414066582918167, - 0.08610726147890091, - 0.08759456872940063, - 0.0885620191693306, - 0.08898322284221649, - 0.08884668350219727, - 0.08815613389015198, - 0.08693040907382965, - 0.050142284482717514, - 0.047732915729284286, - 0.04589100927114487, - 0.04466681182384491, - 0.04409370943903923, - 0.044187337160110474, - 0.04494514688849449, - 0.04634646326303482, - 0.048353053629398346, - 0.05091020092368126, - 0.053948141634464264, - 0.057384006679058075, - 0.06112408638000488, - 0.06506634503602982, - 0.06910325586795807, - 0.0731247067451477, - 0.07702100276947021, - 0.08068585395812988, - 0.08401930332183838, - 0.08693040907382965, - 0.05014228820800781, - 0.04388435184955597, - 0.03829886019229889, - 0.03353817015886307, - 0.02973213791847229, - 0.026984579861164093, - 0.02537045255303383, - 0.024933770298957825, - 0.02568645402789116, - 0.027607981115579605, - 0.03064592182636261, - 0.03471740335226059, - 0.03971139341592789, - 0.04549165070056915, - 0.05190049856901169, - 0.058763135224580765, - 0.06589236110448837, - 0.0730937048792839, - 0.08017073571681976, - 0.08693041652441025, - 0.05014228820800781, - 0.04074111953377724, - 0.032098133116960526, - 0.02444908767938614, - 0.018002629280090332, - 0.012934591621160507, - 0.009383238852024078, - 0.0074454136192798615, - 0.007173992693424225, - 0.00857638195157051, - 0.011614322662353516, - 0.016204942017793655, - 0.022223036736249924, - 0.029504433274269104, - 0.0378505103290081, - 0.04703362658619881, - 0.05680328235030174, - 0.06689298152923584, - 0.07702750712633133, - 0.08693041652441025, - 0.05014228820800781, - 0.038643836975097656, - 0.027960773557424545, - 0.01838451251387596, - 0.010176260024309158, - 0.0035599172115325928, - -0.0012840405106544495, - -0.004223480820655823, - -0.005178220570087433, - -0.004122219979763031, - -0.0010842755436897278, - 0.003852732479572296, - 0.010554146021604538, - 0.018837153911590576, - 0.028475824743509293, - 0.03920725733041763, - 0.050738707184791565, - 0.06275562196969986, - 0.07493022084236145, - 0.08693041652441025, - 0.05014228820800781, - 0.03781977668404579, - 0.026335131376981735, - 0.016001630574464798, - 0.007101137191057205, - -0.00012356042861938477, - -0.005475401878356934, - -0.008808396756649017, - -0.010031625628471375, - -0.00911172479391098, - -0.006073780357837677, - -0.0010006725788116455, - 0.005969226360321045, - 0.014645792543888092, - 0.024792350828647614, - 0.03613213077187538, - 0.0483558252453804, - 0.06112997978925705, - 0.07410616427659988, - 0.08693041652441025 - ], - "y": [ - -0.15042689442634583, - -0.1508362740278244, - -0.15273970365524292, - -0.1560852825641632, - -0.16078172624111176, - -0.16670094430446625, - -0.17368148267269135, - -0.18153291940689087, - -0.19004108011722565, - -0.1989738941192627, - -0.2080877125263214, - -0.21713390946388245, - -0.22586573660373688, - -0.23404501378536224, - -0.24144864082336426, - -0.2478746473789215, - -0.25314775109291077, - -0.2571241557598114, - -0.2596953213214874, - -0.26079118251800537, - -0.15042689442634583, - -0.1548982411623001, - -0.16075284779071808, - -0.16783101856708527, - -0.1759396642446518, - -0.18485762178897858, - -0.19434161484241486, - -0.20413295924663544, - -0.213964581489563, - -0.22356826066970825, - -0.23268207907676697, - -0.2410573959350586, - -0.24846579134464264, - -0.25470516085624695, - -0.2596053183078766, - -0.26303258538246155, - -0.264893501996994, - -0.26513728499412537, - -0.26375728845596313, - -0.26079118251800537, - -0.15042689442634583, - -0.1585572361946106, - -0.16797101497650146, - -0.17841148376464844, - -0.1895938217639923, - -0.20121298730373383, - -0.21295209228992462, - -0.22449089586734772, - -0.23551465570926666, - -0.24572265148162842, - -0.25483646988868713, - -0.26260748505592346, - -0.2688237428665161, - -0.2733156383037567, - -0.27596068382263184, - -0.27668672800064087, - -0.275473952293396, - -0.27235546708106995, - -0.2674162983894348, - -0.26079118251800537, - -0.15042689442634583, - -0.16141673922538757, - -0.17361202836036682, - -0.18668010830879211, - -0.20026452839374542, - -0.21399471163749695, - -0.2274961769580841, - -0.24040061235427856, - -0.25235602259635925, - -0.26303631067276, - -0.27215009927749634, - -0.27944886684417725, - -0.28473344445228577, - -0.2878597378730774, - -0.28874242305755615, - -0.2873574495315552, - -0.28374260663986206, - -0.2779964506626129, - -0.2702757716178894, - -0.26079118251800537, - -0.15042689442634583, - -0.1631668657064438, - -0.17706455290317535, - -0.19174087047576904, - -0.20679545402526855, - -0.22181768715381622, - -0.23639778792858124, - -0.2501380443572998, - -0.26266366243362427, - -0.2736330032348633, - -0.2827467918395996, - -0.28975650668144226, - -0.294470876455307, - -0.29676133394241333, - -0.29656538367271423, - -0.2938883900642395, - -0.2888033390045166, - -0.28144899010658264, - -0.2720259428024292, - -0.26079118251800537, - -0.15042689442634583, - -0.16361799836158752, - -0.17795449495315552, - -0.19304533302783966, - -0.2084788978099823, - -0.22383414208889008, - -0.2386922836303711, - -0.2526479959487915, - -0.2653205990791321, - -0.27636444568634033, - -0.28547823429107666, - -0.2924134135246277, - -0.2969807982444763, - -0.299055814743042, - -0.2985818386077881, - -0.29557180404663086, - -0.2901078164577484, - -0.2823389172554016, - -0.27247703075408936, - -0.26079118251800537, - -0.15042689442634583, - -0.16272121667861938, - -0.17618538439273834, - -0.19045217335224152, - -0.205132395029068, - -0.2198256105184555, - -0.23413103818893433, - -0.24765846133232117, - -0.2600388824939728, - -0.2709346115589142, - -0.2800484299659729, - -0.28713172674179077, - -0.29199129343032837, - -0.2944945693016052, - -0.2945733070373535, - -0.29222530126571655, - -0.28751465678215027, - -0.28056982159614563, - -0.2715802788734436, - -0.26079118251800537, - -0.15042689442634583, - -0.16057370603084564, - -0.17194895446300507, - -0.1842423677444458, - -0.1971186101436615, - -0.21022644639015198, - -0.22320833802223206, - -0.23571015894412994, - -0.24739089608192444, - -0.2579319477081299, - -0.2670457363128662, - -0.27448374032974243, - -0.28004300594329834, - -0.28357186913490295, - -0.2849741578102112, - -0.28421154618263245, - -0.28130486607551575, - -0.27633339166641235, - -0.26943275332450867, - -0.26079118251800537, - -0.15042689442634583, - -0.1574081927537918, - -0.16570428013801575, - -0.17508886754512787, - -0.18530596792697906, - -0.1960768848657608, - -0.207107812166214, - -0.21809785068035126, - -0.22874723374843597, - -0.23876546323299408, - -0.2478792667388916, - -0.2558400630950928, - -0.26243066787719727, - -0.2674713432788849, - -0.2708245813846588, - -0.2723988890647888, - -0.2721513509750366, - -0.27008873224258423, - -0.26626724004745483, - -0.26079118251800537, - -0.15042689442634583, - -0.15356770157814026, - -0.1581280678510666, - -0.16398359835147858, - -0.17097455263137817, - -0.1789102405309677, - -0.18757420778274536, - -0.1967301070690155, - -0.20612820982933044, - -0.21551215648651123, - -0.22462595999240875, - -0.23322103917598724, - -0.2410629391670227, - -0.24793773889541626, - -0.2536579370498657, - -0.25806745886802673, - -0.26104608178138733, - -0.2625125050544739, - -0.2624267637729645, - -0.26079118251800537, - -0.15042689442634583, - -0.14946842193603516, - -0.15004132688045502, - -0.15212996304035187, - -0.15567737817764282, - -0.16058677434921265, - -0.166724294424057, - -0.17392246425151825, - -0.18198497593402863, - -0.19069188833236694, - -0.19980569183826447, - -0.20907780528068542, - -0.21825529634952545, - -0.2270878255367279, - -0.23533447086811066, - -0.24277028441429138, - -0.24919244647026062, - -0.2544257640838623, - -0.2583274841308594, - -0.26079118251800537, - -0.15042689442634583, - -0.1455545723438263, - -0.14232036471366882, - -0.14081251621246338, - -0.1410721242427826, - -0.14309215545654297, - -0.14681747555732727, - -0.15214647352695465, - -0.15893378853797913, - -0.16699430346488953, - -0.17610810697078705, - -0.18602663278579712, - -0.19647930562496185, - -0.20718102157115936, - -0.21783983707427979, - -0.22816504538059235, - -0.23787498474121094, - -0.2467048019170761, - -0.2544136047363281, - -0.26079118251800537, - -0.15042689442634583, - -0.14225025475025177, - -0.13580188155174255, - -0.13125765323638916, - -0.1287415325641632, - -0.12832216918468475, - -0.13001099228858948, - -0.1337619125843048, - -0.13947264850139618, - -0.1469874083995819, - -0.15610122680664062, - -0.16656547784805298, - -0.178094744682312, - -0.19037452340126038, - -0.20306985080242157, - -0.21583445370197296, - -0.2283201366662979, - -0.24018630385398865, - -0.2511093020439148, - -0.26079118251800537, - -0.15042689442634583, - -0.13991355895996094, - -0.13119223713874817, - -0.12450079619884491, - -0.12002178281545639, - -0.11787736415863037, - -0.1181260421872139, - -0.12076100707054138, - -0.12571042776107788, - -0.13283926248550415, - -0.14195308089256287, - -0.15280325710773468, - -0.16509383916854858, - -0.1784895807504654, - -0.1926250457763672, - -0.20711469650268555, - -0.22156327962875366, - -0.23557667434215546, - -0.24877262115478516, - -0.26079118251800537, - -0.15042689442634583, - -0.13879773020744324, - -0.12899097800254822, - -0.12127417325973511, - -0.1158578097820282, - -0.11288962513208389, - -0.11245058476924896, - -0.11455265432596207, - -0.11913851648569107, - -0.12608304619789124, - -0.13519686460494995, - -0.14623133838176727, - -0.15888547897338867, - -0.17281411588191986, - -0.1876372992992401, - -0.20295071601867676, - -0.21833665668964386, - -0.2333754152059555, - -0.24765677750110626, - -0.26079118251800537, - -0.15042689442634583, - -0.13902363181114197, - -0.1294366419315338, - -0.1219274252653122, - -0.11670084297657013, - -0.11389942467212677, - -0.11359962075948715, - -0.11580958217382431, - -0.12046904861927032, - -0.12745091319084167, - -0.1365647315979004, - -0.14756187796592712, - -0.16014240682125092, - -0.17396315932273865, - -0.1886471062898636, - -0.2037937492132187, - -0.21898990869522095, - -0.2338210791349411, - -0.2478826940059662, - -0.26079118251800537, - -0.15042689442634583, - -0.14056682586669922, - -0.1324809193611145, - -0.1263897716999054, - -0.1224595159292221, - -0.12079735845327377, - -0.12144865095615387, - -0.12439560890197754, - -0.12955786287784576, - -0.13679459691047668, - -0.1459084004163742, - -0.15665069222450256, - -0.16872844099998474, - -0.18181218206882477, - -0.1955450475215912, - -0.20955242216587067, - -0.22345225512981415, - -0.23686537146568298, - -0.24942587316036224, - -0.26079118251800537, - -0.15042689442634583, - -0.14326006174087524, - -0.13779394328594208, - -0.13417765498161316, - -0.13250979781150818, - -0.13283592462539673, - -0.1351470947265625, - -0.1393802911043167, - -0.14542004466056824, - -0.1531015932559967, - -0.16221539676189423, - -0.17251287400722504, - -0.1837131232023239, - -0.1955106407403946, - -0.20758360624313354, - -0.21960271894931793, - -0.23124012351036072, - -0.24217838048934937, - -0.25211912393569946, - -0.26079118251800537, - -0.15042689442634583, - -0.14681150019168854, - -0.14479994773864746, - -0.14444710314273834, - -0.1457626074552536, - -0.14871054887771606, - -0.15321055054664612, - -0.15913982689380646, - -0.16633668541908264, - -0.17460477352142334, - -0.18371857702732086, - -0.19342951476573944, - -0.20347265899181366, - -0.21357408165931702, - -0.22345824539661407, - -0.23285552859306335, - -0.2415095865726471, - -0.24918438494205475, - -0.25567054748535156, - -0.26079118251800537, - -0.15042689442634583, - -0.1508362740278244, - -0.15273970365524292, - -0.1560852825641632, - -0.16078174114227295, - -0.16670095920562744, - -0.17368149757385254, - -0.18153291940689087, - -0.19004109501838684, - -0.1989739090204239, - -0.2080877274274826, - -0.21713392436504364, - -0.22586575150489807, - -0.23404502868652344, - -0.24144864082336426, - -0.2478746473789215, - -0.25314778089523315, - -0.2571241557598114, - -0.2596953213214874, - -0.26079118251800537 - ], - "z": [ - -1.0028456449508667, - -1.0085432529449463, - -1.0241202116012573, - -1.0491517782211304, - -1.082955002784729, - -1.1246079206466675, - -1.1729743480682373, - -1.2267348766326904, - -1.2844231128692627, - -1.3444656133651733, - -1.405224323272705, - -1.4650421142578125, - -1.5222872495651245, - -1.5753982067108154, - -1.6229262351989746, - -1.6635748147964478, - -1.6962354183197021, - -1.7200169563293457, - -1.7342708110809326, - -1.7386080026626587, - -1.0028456449508667, - -1.0079069137573242, - -1.0228650569915771, - -1.0473120212554932, - -1.0805808305740356, - -1.121764063835144, - -1.1697382926940918, - -1.2231950759887695, - -1.2806761264801025, - -1.3406134843826294, - -1.4013721942901611, - -1.4612950086593628, - -1.5187474489212036, - -1.5721622705459595, - -1.6200823783874512, - -1.661200761795044, - -1.6943957805633545, - -1.718761920928955, - -1.7336344718933105, - -1.7386080026626587, - -1.0028456449508667, - -1.0072660446166992, - -1.021600604057312, - -1.0454585552215576, - -1.0781888961791992, - -1.118898868560791, - -1.166478157043457, - -1.2196288108825684, - -1.2769010066986084, - -1.3367323875427246, - -1.397491216659546, - -1.4575198888778687, - -1.5151811838150024, - -1.5689020156860352, - -1.6172171831130981, - -1.658808708190918, - -1.6925421953201294, - -1.7174973487854004, - -1.7329936027526855, - -1.7386080026626587, - -1.0028456449508667, - -1.0066897869110107, - -1.0204638242721558, - -1.0437921285629272, - -1.0760383605957031, - -1.1163229942321777, - -1.1635470390319824, - -1.216422438621521, - -1.2735068798065186, - -1.3332431316375732, - -1.3940019607543945, - -1.4541258811950684, - -1.511974811553955, - -1.5659708976745605, - -1.6146413087844849, - -1.6566582918167114, - -1.6908758878707886, - -1.7163605690002441, - -1.732417345046997, - -1.7386080026626587, - -1.0028456449508667, - -1.0062406063079834, - -1.0195777416229248, - -1.042493462562561, - -1.0743623971939087, - -1.114315390586853, - -1.1612626314163208, - -1.2139235734939575, - -1.2708616256713867, - -1.3305237293243408, - -1.391282558441162, - -1.4514806270599365, - -1.5094759464263916, - -1.5636866092681885, - -1.6126337051391602, - -1.654982328414917, - -1.6895771026611328, - -1.7154746055603027, - -1.7319681644439697, - -1.7386080026626587, - -1.0028456449508667, - -1.0059672594070435, - -1.0190386772155762, - -1.0417031049728394, - -1.0733424425125122, - -1.1130937337875366, - -1.1598725318908691, - -1.2124028205871582, - -1.2692519426345825, - -1.3288688659667969, - -1.3896276950836182, - -1.4498709440231323, - -1.5079553127288818, - -1.5622963905334473, - -1.6114120483398438, - -1.6539623737335205, - -1.6887867450714111, - -1.714935302734375, - -1.7316948175430298, - -1.7386080026626587, - -1.0028456449508667, - -1.005899429321289, - -1.018904685974121, - -1.0415067672729492, - -1.0730891227722168, - -1.1127903461456299, - -1.15952730178833, - -1.2120251655578613, - -1.2688521146774292, - -1.3284579515457153, - -1.389216661453247, - -1.449471116065979, - -1.507577657699585, - -1.5619511604309082, - -1.6111085414886475, - -1.653709053993225, - -1.6885905265808105, - -1.7148014307022095, - -1.7316269874572754, - -1.7386080026626587, - -1.0028456449508667, - -1.0060443878173828, - -1.0191905498504639, - -1.0419259071350098, - -1.0736299753189087, - -1.1134380102157593, - -1.1602643728256226, - -1.2128314971923828, - -1.2697056531906128, - -1.329335331916809, - -1.3900941610336304, - -1.4503246545791626, - -1.508383870124817, - -1.5626882314682007, - -1.6117563247680664, - -1.6542497873306274, - -1.6890095472335815, - -1.7150874137878418, - -1.7317718267440796, - -1.7386080026626587, - -1.0028456449508667, - -1.0063862800598145, - -1.0198652744293213, - -1.042914867401123, - -1.0749062299728394, - -1.1149667501449585, - -1.1620038747787476, - -1.2147343158721924, - -1.2717199325561523, - -1.3314061164855957, - -1.3921648263931274, - -1.4523389339447021, - -1.5102866888046265, - -1.5644277334213257, - -1.6132850646972656, - -1.655526041984558, - -1.6899985074996948, - -1.7157620191574097, - -1.7321138381958008, - -1.7386080026626587, - -1.0028456449508667, - -1.0068883895874023, - -1.0208556652069092, - -1.044366478919983, - -1.0767796039581299, - -1.117210865020752, - -1.1645573377609253, - -1.2175275087356567, - -1.2746766805648804, - -1.334445834159851, - -1.3952045440673828, - -1.4552956819534302, - -1.5130798816680908, - -1.5669811964035034, - -1.6155290603637695, - -1.6573994159698486, - -1.6914501190185547, - -1.7167524099349976, - -1.7326159477233887, - -1.7386080026626587, - -1.0028456449508667, - -1.0074959993362427, - -1.0220543146133423, - -1.0461236238479614, - -1.0790472030639648, - -1.119926929473877, - -1.1676479578018188, - -1.2209084033966064, - -1.2782554626464844, - -1.3381249904632568, - -1.3988838195800781, - -1.4588744640350342, - -1.5164607763290405, - -1.570071816444397, - -1.618245244026184, - -1.6596670150756836, - -1.6932072639465332, - -1.7179510593414307, - -1.733223557472229, - -1.7386080026626587, - -1.0028456449508667, - -1.008143424987793, - -1.0233315229415894, - -1.047995686531067, - -1.081463098526001, - -1.1228208541870117, - -1.17094087600708, - -1.2245105504989624, - -1.2820686101913452, - -1.3420450687408447, - -1.4028037786483765, - -1.462687611579895, - -1.5200629234313965, - -1.5733648538589478, - -1.6211391687393188, - -1.6620830297470093, - -1.6950794458389282, - -1.7192282676696777, - -1.7338709831237793, - -1.7386080026626587, - -1.0028456449508667, - -1.0087604522705078, - -1.0245487689971924, - -1.049780011177063, - -1.0837657451629639, - -1.1255791187286377, - -1.174079418182373, - -1.2279436588287354, - -1.2857028245925903, - -1.3457810878753662, - -1.4065399169921875, - -1.4663218259811401, - -1.523496150970459, - -1.5765032768249512, - -1.6238973140716553, - -1.6643856763839722, - -1.6968636512756348, - -1.7204456329345703, - -1.7344880104064941, - -1.7386080026626587, - -1.0028456449508667, - -1.0092802047729492, - -1.0255742073059082, - -1.0512831211090088, - -1.0857055187225342, - -1.1279025077819824, - -1.1767232418060303, - -1.2308357954025269, - -1.288764238357544, - -1.3489283323287964, - -1.4096871614456177, - -1.4693832397460938, - -1.526388168334961, - -1.5791471004486084, - -1.6262208223342896, - -1.666325330734253, - -1.6983667612075806, - -1.7214709520339966, - -1.7350077629089355, - -1.7386080026626587, - -1.0028456449508667, - -1.0096464157104492, - -1.026296615600586, - -1.0523420572280884, - -1.0870721340179443, - -1.1295394897460938, - -1.1785858869552612, - -1.2328733205795288, - -1.2909210920333862, - -1.3511457443237305, - -1.4119045734405518, - -1.471540093421936, - -1.528425693511963, - -1.5810097455978394, - -1.6278578042984009, - -1.667691946029663, - -1.6994256973266602, - -1.7221934795379639, - -1.7353739738464355, - -1.7386080026626587, - -1.0028456449508667, - -1.009819507598877, - -1.0266379117965698, - -1.052842140197754, - -1.0877175331115723, - -1.1303125619888306, - -1.1794655323028564, - -1.2338355779647827, - -1.2919397354125977, - -1.352192997932434, - -1.4129517078399658, - -1.4725587368011475, - -1.5293879508972168, - -1.5818893909454346, - -1.6286308765411377, - -1.668337345123291, - -1.6999258995056152, - -1.7225346565246582, - -1.7355470657348633, - -1.7386080026626587, - -1.0028456449508667, - -1.0097804069519043, - -1.0265607833862305, - -1.0527292490005493, - -1.0875717401504517, - -1.1301380395889282, - -1.1792669296264648, - -1.2336183786392212, - -1.2917097806930542, - -1.3519564867019653, - -1.4127153158187866, - -1.4723286628723145, - -1.5291707515716553, - -1.581690788269043, - -1.6284563541412354, - -1.66819167137146, - -1.699812889099121, - -1.7224576473236084, - -1.7355079650878906, - -1.7386080026626587, - -1.0028456449508667, - -1.0095335245132446, - -1.026073932647705, - -1.0520155429840088, - -1.0866507291793823, - -1.1290347576141357, - -1.1780115365982056, - -1.2322450876235962, - -1.2902560234069824, - -1.3504620790481567, - -1.4112207889556885, - -1.4708750247955322, - -1.5277974605560303, - -1.5804353952407837, - -1.6273529529571533, - -1.667270541191101, - -1.6990991830825806, - -1.7219706773757935, - -1.735261082649231, - -1.7386080026626587, - -1.0028456449508667, - -1.0091056823730469, - -1.0252299308776855, - -1.0507783889770508, - -1.0850541591644287, - -1.1271222829818726, - -1.175835371017456, - -1.2298645973205566, - -1.287736177444458, - -1.3478715419769287, - -1.4086302518844604, - -1.4683551788330078, - -1.5254169702529907, - -1.5782592296600342, - -1.6254405975341797, - -1.6656739711761475, - -1.6978620290756226, - -1.721126675605774, - -1.7348332405090332, - -1.7386080026626587, - -1.0028456449508667, - -1.0085432529449463, - -1.0241202116012573, - -1.0491517782211304, - -1.082955002784729, - -1.1246079206466675, - -1.1729743480682373, - -1.2267348766326904, - -1.2844231128692627, - -1.3444656133651733, - -1.405224323272705, - -1.4650421142578125, - -1.5222872495651245, - -1.5753982067108154, - -1.6229262351989746, - -1.6635748147964478, - -1.6962354183197021, - -1.7200169563293457, - -1.7342708110809326, - -1.7386080026626587 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.11931630969047546, - 0.11863896250724792, - 0.11746914684772491, - 0.11583878844976425, - 0.11379235982894897, - 0.11138567328453064, - 0.10868438333272934, - 0.10576216876506805, - 0.10269874334335327, - 0.09957767277956009, - 0.09648407995700836, - 0.09350236505270004, - 0.09071385860443115, - 0.08819460868835449, - 0.08601335436105728, - 0.08422957360744476, - 0.08289194852113724, - 0.08203694224357605, - 0.08168788999319077, - 0.08185431361198425, - 0.11931630969047546, - 0.12462799996137619, - 0.1292838752269745, - 0.1331569254398346, - 0.13614150881767273, - 0.1381562054157257, - 0.13914605975151062, - 0.1390841007232666, - 0.13797196745872498, - 0.13584004342556, - 0.13274645805358887, - 0.12877559661865234, - 0.1240357831120491, - 0.11865629255771637, - 0.11278387904167175, - 0.10657872259616852, - 0.10021007806062698, - 0.09385167062282562, - 0.08767693489789963, - 0.08185431361198425, - 0.11931630969047546, - 0.13001376390457153, - 0.13990847766399384, - 0.1487305611371994, - 0.1562393754720688, - 0.16223007440567017, - 0.1665392816066742, - 0.1690494418144226, - 0.16969206929206848, - 0.16844964027404785, - 0.16535605490207672, - 0.16049569845199585, - 0.1540011316537857, - 0.14604952931404114, - 0.1368577778339386, - 0.12667658925056458, - 0.11578372120857239, - 0.10447627305984497, - 0.09306269139051437, - 0.08185431361198425, - 0.11931630969047546, - 0.13421259820461273, - 0.1481916308403015, - 0.16087207198143005, - 0.17190805077552795, - 0.1809985339641571, - 0.18789556622505188, - 0.19241099059581757, - 0.1944216638803482, - 0.19387270510196686, - 0.19077911972999573, - 0.18522527813911438, - 0.17736268043518066, - 0.16740579903125763, - 0.15562622249126434, - 0.14234527945518494, - 0.12792523205280304, - 0.11275941878557205, - 0.09726153314113617, - 0.08185430616140366, - 0.11931630969047546, - 0.13676950335502625, - 0.15323570370674133, - 0.16826573014259338, - 0.18144962191581726, - 0.19242772459983826, - 0.2009006142616272, - 0.2066371738910675, - 0.2094809114933014, - 0.2093542516231537, - 0.20626065135002136, - 0.20028452575206757, - 0.1915888488292694, - 0.18041086196899414, - 0.1670554280281067, - 0.15188685059547424, - 0.13531887531280518, - 0.11780349165201187, - 0.09981844574213028, - 0.08185430616140366, - 0.11931630969047546, - 0.13740740716457367, - 0.15449410676956177, - 0.1701103150844574, - 0.18383005261421204, - 0.1952790915966034, - 0.2041451334953308, - 0.21018633246421814, - 0.2132379114627838, - 0.2132166028022766, - 0.21012301743030548, - 0.20404154062271118, - 0.19513802230358124, - 0.18365536630153656, - 0.16990678012371063, - 0.15426728129386902, - 0.1371634602546692, - 0.1190618947148323, - 0.1004563421010971, - 0.08185430616140366, - 0.11931630969047546, - 0.13605718314647675, - 0.15183046460151672, - 0.16620592772960663, - 0.17879143357276917, - 0.18924367427825928, - 0.19727753102779388, - 0.20267389714717865, - 0.20528554916381836, - 0.20504122972488403, - 0.2019476443529129, - 0.19608917832374573, - 0.18762558698654175, - 0.17678776383399963, - 0.16387136280536652, - 0.14922866225242615, - 0.13325908780097961, - 0.11639826744794846, - 0.09910611063241959, - 0.08185430616140366, - 0.11931630969047546, - 0.13286513090133667, - 0.14553344249725342, - 0.15697568655014038, - 0.16687974333763123, - 0.1749754697084427, - 0.18104201555252075, - 0.18491393327713013, - 0.18648558855056763, - 0.18571406602859497, - 0.18262048065662384, - 0.1772892028093338, - 0.16986562311649323, - 0.1605522632598877, - 0.14960315823554993, - 0.1373169720172882, - 0.12402883917093277, - 0.11010123789310455, - 0.09591406583786011, - 0.08185430616140366, - 0.11931630969047546, - 0.12817716598510742, - 0.13628539443016052, - 0.14341981709003448, - 0.14938583970069885, - 0.15402069687843323, - 0.1571979820728302, - 0.15883101522922516, - 0.1588752567768097, - 0.1573294997215271, - 0.15423591434955597, - 0.14967888593673706, - 0.14378270506858826, - 0.13670819997787476, - 0.12864837050437927, - 0.11982306092977524, - 0.11047297716140747, - 0.10085319727659225, - 0.09122610837221146, - 0.08185431361198425, - 0.11931630969047546, - 0.12250132113695145, - 0.12508851289749146, - 0.12700733542442322, - 0.12820541858673096, - 0.12865009903907776, - 0.12832926213741302, - 0.12725162506103516, - 0.125446617603302, - 0.12296343594789505, - 0.11986985057592392, - 0.11625023186206818, - 0.11220331490039825, - 0.10783948749303818, - 0.103277787566185, - 0.09864264726638794, - 0.0940604880452156, - 0.08965630829334259, - 0.08555024862289429, - 0.08185431361198425, - 0.11931630969047546, - 0.11645263433456421, - 0.11315614730119705, - 0.10951674729585648, - 0.10563372820615768, - 0.10161300748586655, - 0.09756424278020859, - 0.0935978963971138, - 0.08982213586568832, - 0.08633997291326523, - 0.0832463875412941, - 0.0806257575750351, - 0.0785495787858963, - 0.07707447558641434, - 0.07624068111181259, - 0.07607094943523407, - 0.07656990736722946, - 0.07772393524646759, - 0.07950156927108765, - 0.08185431361198425, - 0.11931630969047546, - 0.11068660020828247, - 0.10178134590387344, - 0.09284346550703049, - 0.08411675691604614, - 0.07583928108215332, - 0.0682368054986, - 0.061516713351011276, - 0.05586230754852295, - 0.05142783746123314, - 0.04833424836397171, - 0.04666593298316002, - 0.046468399465084076, - 0.04774703457951546, - 0.050466954708099365, - 0.05455397814512253, - 0.059896621853113174, - 0.06634913384914398, - 0.07373552769422531, - 0.08185431361198425, - 0.11931631714105606, - 0.10582803189754486, - 0.0921967476606369, - 0.07879427820444107, - 0.06598620861768723, - 0.054121922701597214, - 0.043525028973817825, - 0.03448457270860672, - 0.027247190475463867, - 0.022010289132595062, - 0.018916703760623932, - 0.01805081218481064, - 0.019436262547969818, - 0.02303525060415268, - 0.028749585151672363, - 0.036423422396183014, - 0.045847438275814056, - 0.05676454305648804, - 0.0688769668340683, - 0.08185431361198425, - 0.11931631714105606, - 0.10240345448255539, - 0.085440993309021, - 0.06889162957668304, - 0.053206782788038254, - 0.03881431370973587, - 0.026106782257556915, - 0.015430830419063568, - 0.007077693939208984, - 0.00127517431974411, - -0.0018184110522270203, - -0.0021186843514442444, - 0.00038252025842666626, - 0.005617015063762665, - 0.013441979885101318, - 0.02364400029182434, - 0.03594478964805603, - 0.05000878870487213, - 0.06545238196849823, - 0.08185431361198425, - 0.11931631714105606, - 0.10078395903110504, - 0.08224618434906006, - 0.06420864164829254, - 0.04716336354613304, - 0.031575314700603485, - 0.017869658768177032, - 0.0064202845096588135, - -0.0024605244398117065, - -0.00853051245212555, - -0.01162409782409668, - -0.011656902730464935, - -0.008628025650978088, - -0.002620115876197815, - 0.006202980875968933, - 0.01760058104991913, - 0.03126180171966553, - 0.046813976019620895, - 0.06383289396762848, - 0.08185431361198425, - 0.11931631714105606, - 0.10114504396915436, - 0.08295850455760956, - 0.06525278091430664, - 0.0485108308494091, - 0.03318934887647629, - 0.01970624178647995, - 0.008429311215877533, - -0.0003338456153869629, - -0.006344199180603027, - -0.009437784552574158, - -0.009530223906040192, - -0.006618998944759369, - -0.0007835328578948975, - 0.007817022502422333, - 0.01894804835319519, - 0.03230593353509903, - 0.04752629995346069, - 0.0641939789056778, - 0.08185431361198425, - 0.11931631714105606, - 0.10344759374856949, - 0.08750079572200775, - 0.07191090285778046, - 0.057103171944618225, - 0.04348153620958328, - 0.03141752630472183, - 0.021240234375, - 0.013227283954620361, - 0.007597222924232483, - 0.0045036375522613525, - 0.004030905663967133, - 0.006191924214363098, - 0.010927751660346985, - 0.018109209835529327, - 0.02754039317369461, - 0.03896406292915344, - 0.05206858739256859, - 0.06649652123451233, - 0.08185431361198425, - 0.11931630969047546, - 0.10744207352399826, - 0.09538080543279648, - 0.08346149325370789, - 0.07200928032398224, - 0.06133655458688736, - 0.051734425127506256, - 0.04346481338143349, - 0.03675330430269241, - 0.03178296983242035, - 0.02868938446044922, - 0.027556926012039185, - 0.028416499495506287, - 0.031244643032550812, - 0.035964228212833405, - 0.042446497827768326, - 0.05051465332508087, - 0.059948597103357315, - 0.0704910084605217, - 0.08185431361198425, - 0.11931630969047546, - 0.11269563436508179, - 0.1057446226477623, - 0.09865287691354752, - 0.09161384403705597, - 0.08481953293085098, - 0.07845526933670044, - 0.07269465178251266, - 0.06769482046365738, - 0.06359215080738068, - 0.060498565435409546, - 0.05849844589829445, - 0.057646337896585464, - 0.05796549469232559, - 0.059447210282087326, - 0.062051065266132355, - 0.0657060369849205, - 0.07031241804361343, - 0.07574456930160522, - 0.08185431361198425, - 0.11931630969047546, - 0.11863896250724792, - 0.11746915429830551, - 0.11583879590034485, - 0.11379236727952957, - 0.11138568818569183, - 0.10868439823389053, - 0.10576218366622925, - 0.10269876569509506, - 0.09957768768072128, - 0.09648410230875015, - 0.09350238740444183, - 0.09071387350559235, - 0.08819462358951569, - 0.08601336926221848, - 0.08422958850860596, - 0.08289195597171783, - 0.08203694969415665, - 0.08168789744377136, - 0.08185431361198425 - ], - "y": [ - -0.3579489290714264, - -0.3753790557384491, - -0.39080092310905457, - -0.4037938714027405, - -0.41400349140167236, - -0.4211513102054596, - -0.4250423014163971, - -0.42557036876678467, - -0.42272111773490906, - -0.416572242975235, - -0.4072914719581604, - -0.3951319754123688, - -0.38042542338371277, - -0.36357295513153076, - -0.34503430128097534, - -0.32531511783599854, - -0.30495327711105347, - -0.284504234790802, - -0.26452577114105225, - -0.2455628663301468, - -0.3579489290714264, - -0.37448498606681824, - -0.38903719186782837, - -0.4012085795402527, - -0.41066715121269226, - -0.4171549081802368, - -0.4204949140548706, - -0.42059600353240967, - -0.41745543479919434, - -0.41115888953208923, - -0.40187811851501465, - -0.38986629247665405, - -0.3754510283470154, - -0.3590255379676819, - -0.34103789925575256, - -0.32197874784469604, - -0.3023679852485657, - -0.2827405035495758, - -0.2636317014694214, - -0.2455628663301468, - -0.3579489290714264, - -0.3717159330844879, - -0.38357460498809814, - -0.39320147037506104, - -0.400333970785141, - -0.40477749705314636, - -0.4064108431339264, - -0.40518951416015625, - -0.4011467695236206, - -0.39439287781715393, - -0.38511210680007935, - -0.3735576272010803, - -0.36004453897476196, - -0.34494149684906006, - -0.3286604881286621, - -0.3116455674171448, - -0.294360876083374, - -0.2772779166698456, - -0.26086264848709106, - -0.2455628663301468, - -0.3579489290714264, - -0.36737197637557983, - -0.37500518560409546, - -0.38064032793045044, - -0.38412368297576904, - -0.3853603005409241, - -0.3843163847923279, - -0.3810204863548279, - -0.3755623996257782, - -0.36809107661247253, - -0.35881030559539795, - -0.3479732573032379, - -0.3358755111694336, - -0.32284703850746155, - -0.3092432916164398, - -0.2954353094100952, - -0.28179970383644104, - -0.2687084674835205, - -0.256518691778183, - -0.2455628663301468, - -0.3579489290714264, - -0.36192381381988525, - -0.36425745487213135, - -0.36488622426986694, - -0.3637929856777191, - -0.3610075116157532, - -0.3566058278083801, - -0.3507079482078552, - -0.343474805355072, - -0.33510369062423706, - -0.3258229196071625, - -0.31588566303253174, - -0.30556297302246094, - -0.2951364517211914, - -0.2848905026912689, - -0.2751045823097229, - -0.26604562997817993, - -0.2579607665538788, - -0.2510705292224884, - -0.2455628663301468, - -0.3579489588737488, - -0.3559618592262268, - -0.3524962067604065, - -0.34764647483825684, - -0.3415449857711792, - -0.3343581259250641, - -0.32628196477890015, - -0.3175368309020996, - -0.3083612024784088, - -0.299005389213562, - -0.2897246479988098, - -0.28077203035354614, - -0.2723918557167053, - -0.2648126184940338, - -0.25824111700057983, - -0.2528565526008606, - -0.24880588054656982, - -0.24619951844215393, - -0.24510860443115234, - -0.2455628663301468, - -0.3579489588737488, - -0.35013219714164734, - -0.3409959077835083, - -0.3307892084121704, - -0.3197905719280243, - -0.3083000183105469, - -0.2966309189796448, - -0.28510165214538574, - -0.27402666211128235, - -0.2637080252170563, - -0.2544272541999817, - -0.24643750488758087, - -0.23995667695999146, - -0.23516157269477844, - -0.23218297958374023, - -0.23110216856002808, - -0.2319486141204834, - -0.23469918966293335, - -0.23927892744541168, - -0.2455628663301468, - -0.3579489588737488, - -0.34506654739379883, - -0.33100277185440063, - -0.31614118814468384, - -0.30088722705841064, - -0.28565695881843567, - -0.2708658277988434, - -0.2569172978401184, - -0.24419185519218445, - -0.233036607503891, - -0.2237558364868164, - -0.21660271286964417, - -0.21177233755588531, - -0.20939648151397705, - -0.20953994989395142, - -0.21219882369041443, - -0.21730059385299683, - -0.22470606863498688, - -0.23421327769756317, - -0.2455628663301468, - -0.3579489588737488, - -0.3413138687610626, - -0.3235997259616852, - -0.30528977513313293, - -0.2868833839893341, - -0.26888272166252136, - -0.2517787516117096, - -0.2360379993915558, - -0.22208987176418304, - -0.2103148251771927, - -0.2010340690612793, - -0.19450071454048157, - -0.1908930242061615, - -0.19030937552452087, - -0.1927657127380371, - -0.19819499552249908, - -0.20644916594028473, - -0.21730303764343262, - -0.23046058416366577, - -0.24556288123130798, - -0.3579489588737488, - -0.33928078413009644, - -0.3195890188217163, - -0.2994108498096466, - -0.2792966365814209, - -0.25979503989219666, - -0.24143803119659424, - -0.22472631931304932, - -0.21011579036712646, - -0.19800497591495514, - -0.18872421979904175, - -0.18252664804458618, - -0.17958134412765503, - -0.17996865510940552, - -0.18367800116539001, - -0.1906082034111023, - -0.2005702406167984, - -0.21329233050346375, - -0.22842749953269958, - -0.24556288123130798, - -0.3579489588737488, - -0.3391876220703125, - -0.31940528750419617, - -0.2991414964199066, - -0.2789490520954132, - -0.25937867164611816, - -0.24096426367759705, - -0.22420808672904968, - -0.20956720411777496, - -0.1974410116672516, - -0.188160240650177, - -0.1819780468940735, - -0.1790631115436554, - -0.17949490249156952, - -0.1832616627216339, - -0.1902606189250946, - -0.2003009021282196, - -0.2131085842847824, - -0.22833436727523804, - -0.24556288123130798, - -0.3579489588737488, - -0.34104451537132263, - -0.32306841015815735, - -0.3045109212398529, - -0.2858783006668091, - -0.26767879724502563, - -0.2504088282585144, - -0.2345394492149353, - -0.2205035537481308, - -0.2086840271949768, - -0.19940325617790222, - -0.19291439652442932, - -0.18939447402954102, - -0.18893945217132568, - -0.1915617734193802, - -0.19718989729881287, - -0.2056703269481659, - -0.2167716920375824, - -0.23019123077392578, - -0.24556288123130798, - -0.3579489588737488, - -0.3446502089500427, - -0.33018141984939575, - -0.3149372637271881, - -0.2993335425853729, - -0.28379592299461365, - -0.2687481641769409, - -0.25460079312324524, - -0.2417396903038025, - -0.23051568865776062, - -0.22123491764068604, - -0.2141505479812622, - -0.20945583283901215, - -0.20727881789207458, - -0.207678884267807, - -0.2106451392173767, - -0.2160966694355011, - -0.2238847315311432, - -0.23379692435264587, - -0.2455628663301468, - -0.3579489588737488, - -0.3496139645576477, - -0.3399735689163208, - -0.3292906582355499, - -0.31785669922828674, - -0.3059835433959961, - -0.29399505257606506, - -0.2822182774543762, - -0.27097442746162415, - -0.260570228099823, - -0.2512894570827484, - -0.24338527023792267, - -0.23707330226898193, - -0.23252569139003754, - -0.22986650466918945, - -0.22916828095912933, - -0.23045006394386292, - -0.23367685079574585, - -0.23876069486141205, - -0.2455628663301468, - -0.3579489588737488, - -0.35539790987968445, - -0.35138365626335144, - -0.34601566195487976, - -0.33944040536880493, - -0.3318372070789337, - -0.3234134614467621, - -0.31439897418022156, - -0.3050396144390106, - -0.29559066891670227, - -0.2863098978996277, - -0.27745044231414795, - -0.26925399899482727, - -0.26194411516189575, - -0.25572019815444946, - -0.2507520020008087, - -0.24717506766319275, - -0.24508695304393768, - -0.2445446252822876, - -0.2455628663301468, - -0.3579489290714264, - -0.36137521266937256, - -0.36317524313926697, - -0.3632999062538147, - -0.36174580454826355, - -0.3585553467273712, - -0.3538155257701874, - -0.34765568375587463, - -0.3402438163757324, - -0.3317820727825165, - -0.3225013017654419, - -0.31265464425086975, - -0.30251070857048035, - -0.29234617948532104, - -0.28243833780288696, - -0.27305740118026733, - -0.2644593119621277, - -0.2568785548210144, - -0.2505219578742981, - -0.2455628663301468, - -0.3579489290714264, - -0.36689820885658264, - -0.37407058477401733, - -0.37927037477493286, - -0.38235577940940857, - -0.383242666721344, - -0.38190674781799316, - -0.3783845603466034, - -0.3727721571922302, - -0.3652225732803345, - -0.3559418022632599, - -0.34518298506736755, - -0.3332395851612091, - -0.32043740153312683, - -0.30712562799453735, - -0.29366737604141235, - -0.28042978048324585, - -0.2677738666534424, - -0.2560449242591858, - -0.2455628663301468, - -0.3579489290714264, - -0.3713683485984802, - -0.38288894295692444, - -0.3921964168548584, - -0.39903688430786133, - -0.40322381258010864, - -0.4046429395675659, - -0.4032556116580963, - -0.3990996181964874, - -0.39228832721710205, - -0.38300758600234985, - -0.37151047587394714, - -0.358110636472702, - -0.3431735932826996, - -0.3271068334579468, - -0.3103485107421875, - -0.293355792760849, - -0.2765922248363495, - -0.26051509380340576, - -0.2455628663301468, - -0.3579489290714264, - -0.3743012547492981, - -0.38867470622062683, - -0.40067723393440247, - -0.40998148918151855, - -0.4163335859775543, - -0.4195603132247925, - -0.41957366466522217, - -0.41637325286865234, - -0.4100463390350342, - -0.400765597820282, - -0.3887840807437897, - -0.3744286894798279, - -0.35809096693992615, - -0.34021657705307007, - -0.32129308581352234, - -0.30183663964271545, - -0.28237801790237427, - -0.26344797015190125, - -0.2455628663301468, - -0.3579489290714264, - -0.3753790557384491, - -0.39080092310905457, - -0.4037938714027405, - -0.41400349140167236, - -0.4211513102054596, - -0.4250423014163971, - -0.42557036876678467, - -0.42272111773490906, - -0.416572242975235, - -0.4072914719581604, - -0.3951319754123688, - -0.38042542338371277, - -0.36357295513153076, - -0.34503430128097534, - -0.32531511783599854, - -0.30495327711105347, - -0.284504234790802, - -0.26452577114105225, - -0.2455628663301468 - ], - "z": [ - -2.3863260746002197, - -2.3785085678100586, - -2.360685348510742, - -2.333343029022217, - -2.297227144241333, - -2.2533230781555176, - -2.2028284072875977, - -2.147120475769043, - -2.0877184867858887, - -2.0262434482574463, - -1.9643715620040894, - -1.9037909507751465, - -1.846153974533081, - -1.7930328845977783, - -1.745876669883728, - -1.7059714794158936, - -1.6744059324264526, - -1.6520410776138306, - -1.6394870281219482, - -1.637086033821106, - -2.3863260746002197, - -2.378343105316162, - -2.3603591918945312, - -2.332864761352539, - -2.296610116958618, - -2.2525839805603027, - -2.2019875049591064, - -2.14620041847229, - -2.086744785308838, - -2.025242328643799, - -1.963370442390442, - -1.9028171300888062, - -1.8452341556549072, - -1.792191982269287, - -1.7451375722885132, - -1.7053544521331787, - -1.6739277839660645, - -1.6517149209976196, - -1.6393216848373413, - -1.637086033821106, - -2.3863260746002197, - -2.3784892559051514, - -2.360647439956665, - -2.333287239074707, - -2.2971553802490234, - -2.253237009048462, - -2.202730417251587, - -2.1470131874084473, - -2.0876049995422363, - -2.0261266231536865, - -1.9642548561096191, - -1.9036774635314941, - -1.846046805381775, - -1.7929348945617676, - -1.7457904815673828, - -1.7058995962142944, - -1.6743502616882324, - -1.6520030498504639, - -1.639467716217041, - -1.637086033821106, - -2.3863260746002197, - -2.3789308071136475, - -2.361518621444702, - -2.334564208984375, - -2.2988033294677734, - -2.255211114883423, - -2.204976797103882, - -2.149470329284668, - -2.0902061462402344, - -2.0288007259368896, - -1.9669289588928223, - -1.9062786102294922, - -1.8485040664672852, - -1.7951812744140625, - -1.7477645874023438, - -1.707547664642334, - -1.67562735080719, - -1.6528743505477905, - -1.6399093866348267, - -1.637086033821106, - -2.3863260746002197, - -2.379620313644409, - -2.3628785610198975, - -2.3365578651428223, - -2.3013758659362793, - -2.2582926750183105, - -2.2084829807281494, - -2.153306007385254, - -2.094266414642334, - -2.0329747200012207, - -1.9711030721664429, - -1.9103388786315918, - -1.8523396253585815, - -1.7986875772476196, - -1.7508461475372314, - -1.7101202011108398, - -1.677620768547058, - -1.6542342901229858, - -1.6405987739562988, - -1.637086033821106, - -2.3863260746002197, - -2.3804826736450195, - -2.364579916000366, - -2.3390514850616455, - -2.304594039916992, - -2.2621474266052246, - -2.21286940574646, - -2.158104181289673, - -2.0993456840515137, - -2.038196325302124, - -1.9763246774673462, - -1.915418028831482, - -1.85713791847229, - -1.8030738830566406, - -1.7547008991241455, - -1.7133383750915527, - -1.680114507675171, - -1.655935525894165, - -1.6414611339569092, - -1.637086033821106, - -2.3863260746002197, - -2.38142466545105, - -2.366438150405884, - -2.341775417327881, - -2.3081092834472656, - -2.266357898712158, - -2.217660427093506, - -2.1633450984954834, - -2.104893445968628, - -2.0438997745513916, - -1.9820280075073242, - -1.9209657907485962, - -1.862378716468811, - -1.8078649044036865, - -1.758911371231079, - -1.7168534994125366, - -1.6828383207321167, - -1.6577937602996826, - -1.6424031257629395, - -1.637086033821106, - -2.3863260746002197, - -2.3823440074920654, - -2.3682518005371094, - -2.3444340229034424, - -2.311540365219116, - -2.270467758178711, - -2.222337007522583, - -2.1684608459472656, - -2.1103086471557617, - -2.049466848373413, - -1.9875950813293457, - -1.9263811111450195, - -1.8674944639205933, - -1.8125414848327637, - -1.7630213499069214, - -1.7202845811843872, - -1.6854970455169678, - -1.6596076488494873, - -1.6433225870132446, - -1.637086033821106, - -2.3863260746002197, - -2.383141279220581, - -2.3698246479034424, - -2.3467395305633545, - -2.3145155906677246, - -2.274031639099121, - -2.2263922691345215, - -2.1728968620300293, - -2.115004539489746, - -2.0542943477630615, - -1.9924225807189941, - -1.9310768842697144, - -1.871930480003357, - -1.8165967464447021, - -1.7665852308273315, - -1.7232598066329956, - -1.6878025531768799, - -1.6611804962158203, - -1.6441198587417603, - -1.637086033821106, - -2.3863260746002197, - -2.383730173110962, - -2.370986223220825, - -2.3484420776367188, - -2.3167126178741455, - -2.276663303375244, - -2.229386806488037, - -2.1761724948883057, - -2.11847186088562, - -2.057859182357788, - -1.9959874153137207, - -1.9345444440841675, - -1.8752062320709229, - -1.8195912837982178, - -1.7692168951034546, - -1.7254568338394165, - -1.6895049810409546, - -1.662341833114624, - -1.6447086334228516, - -1.637086033821106, - -2.3863260746002197, - -2.3840465545654297, - -2.371610403060913, - -2.3493568897247314, - -2.3178932666778564, - -2.2780776023864746, - -2.2309961318969727, - -2.1779329776763916, - -2.120335578918457, - -2.059774875640869, - -1.9979031085968018, - -1.9364079236984253, - -1.8769665956497192, - -1.8212006092071533, - -1.770631194114685, - -1.726637601852417, - -1.6904199123382568, - -1.6629661321640015, - -1.6450250148773193, - -1.637086033821106, - -2.3863260746002197, - -2.384056329727173, - -2.3716297149658203, - -2.3493852615356445, - -2.317929744720459, - -2.2781214714050293, - -2.231045722961426, - -2.1779873371124268, - -2.1203930377960205, - -2.0598340034484863, - -1.9979623556137085, - -1.9364655017852783, - -1.8770209550857544, - -1.821250319480896, - -1.7706748247146606, - -1.7266740798950195, - -1.6904481649398804, - -1.6629853248596191, - -1.6450347900390625, - -1.637086033821106, - -2.3863260746002197, - -2.383758306503296, - -2.371042013168335, - -2.3485236167907715, - -2.3168179988861084, - -2.276789665222168, - -2.2295305728912354, - -2.1763296127319336, - -2.118638277053833, - -2.058030128479004, - -1.996158480644226, - -1.9347107410430908, - -1.8753633499145508, - -1.819735050201416, - -1.7693431377410889, - -1.725562334060669, - -1.6895866394042969, - -1.6623976230621338, - -1.644736886024475, - -1.637086033821106, - -2.3863260746002197, - -2.3831849098205566, - -2.369910955429077, - -2.3468658924102783, - -2.314678430557251, - -2.2742269039154053, - -2.226614475250244, - -2.173139810562134, - -2.1152615547180176, - -2.054558753967285, - -1.9926869869232178, - -1.9313340187072754, - -1.8721734285354614, - -1.8168188333511353, - -1.7667803764343262, - -1.7234227657318115, - -1.6879287958145142, - -1.661266565322876, - -1.6441636085510254, - -1.637086033821106, - -2.3863260746002197, - -2.3823983669281006, - -2.368359088897705, - -2.3445911407470703, - -2.3117430210113525, - -2.2707107067108154, - -2.222613573074341, - -2.1687631607055664, - -2.110628843307495, - -2.0497961044311523, - -1.9879242181777954, - -1.9267011880874634, - -1.8677968978881836, - -1.812817931175232, - -1.7632642984390259, - -1.720487356185913, - -1.6856541633605957, - -1.6597148180007935, - -1.6433769464492798, - -1.637086033821106, - -2.3863260746002197, - -2.381483793258667, - -2.3665547370910645, - -2.3419463634490967, - -2.3083298206329346, - -2.266622304916382, - -2.217961311340332, - -2.1636741161346436, - -2.1052417755126953, - -2.044257879257202, - -1.9823862314224243, - -1.9213142395019531, - -1.8627078533172607, - -1.8081657886505127, - -1.7591757774353027, - -1.7170741558074951, - -1.683009386062622, - -1.6579104661941528, - -1.6424622535705566, - -1.637086033821106, - -2.3863260746002197, - -2.380540132522583, - -2.3646934032440186, - -2.3392179012298584, - -2.3048088550567627, - -2.262404680252075, - -2.2131619453430176, - -2.1584243774414062, - -2.099684476852417, - -2.0385448932647705, - -1.9766730070114136, - -1.9157569408416748, - -1.8574579954147339, - -1.8033665418624878, - -1.754958152770996, - -1.7135530710220337, - -1.6802809238433838, - -1.6560490131378174, - -1.6415187120437622, - -1.637086033821106, - -2.3863260746002197, - -2.3796699047088623, - -2.362976551055908, - -2.3367013931274414, - -2.3015613555908203, - -2.258514642715454, - -2.208735704421997, - -2.1535825729370117, - -2.0945589542388916, - -2.033275604248047, - -1.971403956413269, - -1.910631537437439, - -1.8526160717010498, - -1.7989403009414673, - -1.7510682344436646, - -1.7103056907653809, - -1.6777644157409668, - -1.6543322801589966, - -1.6406484842300415, - -1.637086033821106, - -2.3863260746002197, - -2.37896728515625, - -2.3615903854370117, - -2.334669828414917, - -2.2989394664764404, - -2.2553741931915283, - -2.2051620483398438, - -2.1496732234954834, - -2.090420961380005, - -2.0290215015411377, - -1.9671497344970703, - -1.9064934253692627, - -1.8487069606781006, - -1.795366644859314, - -1.7479276657104492, - -1.7076836824417114, - -1.6757327318191528, - -1.6529462337493896, - -1.6399458646774292, - -1.637086033821106, - -2.3863260746002197, - -2.3785085678100586, - -2.360685348510742, - -2.333343029022217, - -2.297227144241333, - -2.2533230781555176, - -2.2028284072875977, - -2.147120475769043, - -2.0877184867858887, - -2.0262434482574463, - -1.9643715620040894, - -1.9037909507751465, - -1.846153974533081, - -1.7930328845977783, - -1.745876669883728, - -1.7059714794158936, - -1.6744059324264526, - -1.6520410776138306, - -1.6394870281219482, - -1.637086033821106 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.15191367268562317, - 0.17589251697063446, - 0.19870305061340332, - 0.21972307562828064, - 0.23837922513484955, - 0.25416257977485657, - 0.26664263010025024, - 0.27547895908355713, - 0.28043052554130554, - 0.28136223554611206, - 0.27824872732162476, - 0.27117490768432617, - 0.26033371686935425, - 0.24602088332176208, - 0.22862684726715088, - 0.20862603187561035, - 0.18656401336193085, - 0.16304261982440948, - 0.13870343565940857, - 0.11421035975217819, - 0.15191367268562317, - 0.1741647571325302, - 0.19529467821121216, - 0.21472704410552979, - 0.23193182051181793, - 0.24643966555595398, - 0.2578548789024353, - 0.2658660411834717, - 0.2702547013759613, - 0.27090105414390564, - 0.26778754591941833, - 0.26099908351898193, - 0.2507207989692688, - 0.23723313212394714, - 0.2209039181470871, - 0.20217861235141754, - 0.18156798183918, - 0.15963423252105713, - 0.13697567582130432, - 0.11421035975217819, - 0.15191367268562317, - 0.169997900724411, - 0.18707460165023804, - 0.20267799496650696, - 0.2163824439048767, - 0.22781413793563843, - 0.23666122555732727, - 0.24268239736557007, - 0.24571341276168823, - 0.2456716001033783, - 0.242558091878891, - 0.23645779490470886, - 0.2275371551513672, - 0.21603946387767792, - 0.20227839052677155, - 0.18662923574447632, - 0.16951893270015717, - 0.1514141708612442, - 0.13280880451202393, - 0.11421035975217819, - 0.15191367268562317, - 0.16384346783161163, - 0.17493361234664917, - 0.18488162755966187, - 0.19341613352298737, - 0.2003043293952942, - 0.2053583264350891, - 0.20844028890132904, - 0.2094661146402359, - 0.20840783417224884, - 0.20529431104660034, - 0.20021049678325653, - 0.19329504668712616, - 0.18473657965660095, - 0.1747685819864273, - 0.16366292536258698, - 0.15172255039215088, - 0.13927318155765533, - 0.12665437161922455, - 0.11421036720275879, - 0.15191367268562317, - 0.15636838972568512, - 0.16018736362457275, - 0.16326643526554108, - 0.16552160680294037, - 0.16689136624336243, - 0.16733835637569427, - 0.16685037314891815, - 0.16544072329998016, - 0.16314786672592163, - 0.16003435850143433, - 0.1561851054430008, - 0.15170511603355408, - 0.14671659469604492, - 0.14135561883449554, - 0.13576839864253998, - 0.13010737299919128, - 0.12452692538499832, - 0.11917930841445923, - 0.11421036720275879, - 0.15191367268562317, - 0.14838272333145142, - 0.144433856010437, - 0.14017479121685028, - 0.13572171330451965, - 0.13119608163833618, - 0.1267213523387909, - 0.1224195808172226, - 0.11840809881687164, - 0.11479634791612625, - 0.11168283224105835, - 0.10915248095989227, - 0.10727433115243912, - 0.10609959065914154, - 0.1056603193283081, - 0.10596849769353867, - 0.1070157140493393, - 0.10877341032028198, - 0.11119362711906433, - 0.11421036720275879, - 0.15191367268562317, - 0.14075180888175964, - 0.12938019633293152, - 0.11810900270938873, - 0.10724569857120514, - 0.0970865935087204, - 0.0879088044166565, - 0.07996267080307007, - 0.07346495240926743, - 0.06859289854764938, - 0.06547938287258148, - 0.06420933455228806, - 0.06481742858886719, - 0.06728704273700714, - 0.07155083119869232, - 0.07749249041080475, - 0.08494994044303894, - 0.09371975064277649, - 0.10356272757053375, - 0.11421036720275879, - 0.15191367268562317, - 0.13430261611938477, - 0.11665770411491394, - 0.09946027398109436, - 0.08317939192056656, - 0.06825919449329376, - 0.055106647312641144, - 0.04408050328493118, - 0.035481564700603485, - 0.02954436093568802, - 0.026430845260620117, - 0.026225946843624115, - 0.028935261070728302, - 0.03448488563299179, - 0.042723432183265686, - 0.05342617630958557, - 0.06630119681358337, - 0.0809972733259201, - 0.09711352735757828, - 0.11421036720275879, - 0.15191367268562317, - 0.12973397970199585, - 0.10764506459236145, - 0.0862494558095932, - 0.06613075733184814, - 0.047837793827056885, - 0.031869515776634216, - 0.018661491572856903, - 0.008574023842811584, - 0.0018822550773620605, - -0.0012312531471252441, - -0.0006815940141677856, - 0.0035162419080734253, - 0.011247746646404266, - 0.02230202406644821, - 0.036377549171447754, - 0.053090378642082214, - 0.07198461890220642, - 0.09254489839076996, - 0.11421037465333939, - 0.15191367268562317, - 0.12754100561141968, - 0.10331891477108002, - 0.07990814745426178, - 0.05794727802276611, - 0.038035355508327484, - 0.02071549743413925, - 0.006460145115852356, - -0.004341810941696167, - -0.011395752429962158, - -0.014509260654449463, - -0.013597428798675537, - -0.008685097098350525, - 0.00009372830390930176, - 0.012499585747718811, - 0.028194062411785126, - 0.04674907773733139, - 0.06765847653150558, - 0.09035190939903259, - 0.11421037465333939, - 0.15191367268562317, - 0.12796130776405334, - 0.10414808243513107, - 0.08112354576587677, - 0.059515759348869324, - 0.039914123713970184, - 0.022853314876556396, - 0.00879870355129242, - -0.0018663108348846436, - -0.008850842714309692, - -0.011964350938796997, - -0.011121928691864014, - -0.006346538662910461, - 0.0022315531969070435, - 0.014378353953361511, - 0.029762543737888336, - 0.04796447604894638, - 0.06848764419555664, - 0.09077222645282745, - 0.11421037465333939, - 0.15191367268562317, - 0.13094937801361084, - 0.11004270613193512, - 0.08976393938064575, - 0.07066621631383896, - 0.05327051877975464, - 0.0380513072013855, - 0.025423727929592133, - 0.015732258558273315, - 0.00924123078584671, - 0.006127715110778809, - 0.006476640701293945, - 0.010278485715389252, - 0.017429538071155548, - 0.027734749019145966, - 0.04091300815343857, - 0.056604862213134766, - 0.07438226044178009, - 0.09376029670238495, - 0.11421036720275879, - 0.15191367268562317, - 0.13618138432502747, - 0.1203640028834343, - 0.10489298403263092, - 0.0901903510093689, - 0.07665714621543884, - 0.06466251611709595, - 0.05453363060951233, - 0.0465468093752861, - 0.04091990739107132, - 0.03780639171600342, - 0.03729119151830673, - 0.03938838839530945, - 0.044040746986866, - 0.05112137645483017, - 0.06043713539838791, - 0.07173392176628113, - 0.08470356464385986, - 0.09899230301380157, - 0.11421036720275879, - 0.15191367268562317, - 0.1430903673171997, - 0.13399352133274078, - 0.12487126141786575, - 0.11597242206335068, - 0.10753974318504333, - 0.09980324655771255, - 0.09297396242618561, - 0.08723817765712738, - 0.08275234699249268, - 0.07963882386684418, - 0.07798255980014801, - 0.07782871276140213, - 0.0791814923286438, - 0.08200398087501526, - 0.08621920645236969, - 0.09171219170093536, - 0.09833307564258575, - 0.10590128600597382, - 0.11421036720275879, - 0.15191367268562317, - 0.15092763304710388, - 0.1494542509317398, - 0.14753374457359314, - 0.14521849155426025, - 0.14257162809371948, - 0.1396653801202774, - 0.1365789920091629, - 0.1333966851234436, - 0.13020524382591248, - 0.12709173560142517, - 0.12414107471704483, - 0.12143374979496002, - 0.11904361844062805, - 0.117035873234272, - 0.11546528339385986, - 0.11437468230724335, - 0.11379382014274597, - 0.1137385442852974, - 0.11421036720275879, - 0.15191367268562317, - 0.15884387493133545, - 0.1650708168745041, - 0.17042464017868042, - 0.17475932836532593, - 0.17795659601688385, - 0.17992927134037018, - 0.18062353134155273, - 0.18002042174339294, - 0.1781364232301712, - 0.1750229001045227, - 0.17076481878757477, - 0.16547828912734985, - 0.15930750966072083, - 0.15242084860801697, - 0.14500612020492554, - 0.13726557791233063, - 0.12941038608551025, - 0.12165479362010956, - 0.11421036720275879, - 0.15191367268562317, - 0.16598127782344818, - 0.17915093898773193, - 0.19106340408325195, - 0.2013937532901764, - 0.2098601907491684, - 0.21623176336288452, - 0.2203347086906433, - 0.2220570594072342, - 0.22135186195373535, - 0.21823833882808685, - 0.21280144155025482, - 0.20518946647644043, - 0.19561001658439636, - 0.1843244433403015, - 0.171640545129776, - 0.15790434181690216, - 0.1434904932975769, - 0.1287921965122223, - 0.11421035975217819, - 0.15191367268562317, - 0.17156636714935303, - 0.19016878306865692, - 0.20721346139907837, - 0.22223550081253052, - 0.23482510447502136, - 0.2446388602256775, - 0.251409113407135, - 0.2549511790275574, - 0.2551684081554413, - 0.2520548701286316, - 0.245695561170578, - 0.23626387119293213, - 0.22401711344718933, - 0.20928937196731567, - 0.19248229265213013, - 0.17405439913272858, - 0.15450835227966309, - 0.13437728583812714, - 0.11421035975217819, - 0.15191367268562317, - 0.17499393224716187, - 0.1969304084777832, - 0.21712470054626465, - 0.23502600193023682, - 0.25014597177505493, - 0.26207220554351807, - 0.27047938108444214, - 0.2751381993293762, - 0.275921493768692, - 0.2728079855442047, - 0.26588255167007446, - 0.25533413887023926, - 0.2414504587650299, - 0.22461023926734924, - 0.20527279376983643, - 0.18396562337875366, - 0.16126996278762817, - 0.13780485093593597, - 0.11421035975217819, - 0.15191367268562317, - 0.17589251697063446, - 0.19870305061340332, - 0.21972307562828064, - 0.23837922513484955, - 0.25416257977485657, - 0.26664263010025024, - 0.27547895908355713, - 0.28043052554130554, - 0.28136223554611206, - 0.27824872732162476, - 0.27117490768432617, - 0.26033371686935425, - 0.24602088332176208, - 0.22862684726715088, - 0.20862603187561035, - 0.18656401336193085, - 0.16304261982440948, - 0.13870343565940857, - 0.11421035975217819 - ], - "y": [ - -0.45574092864990234, - -0.45605605840682983, - -0.454819917678833, - -0.45206624269485474, - -0.447870135307312, - -0.4423460364341736, - -0.43564465641975403, - -0.4279487729072571, - -0.41946831345558167, - -0.41043463349342346, - -0.40109410881996155, - -0.39170151948928833, - -0.3825131058692932, - -0.3737794756889343, - -0.3657388985157013, - -0.3586106300354004, - -0.3525891900062561, - -0.34783875942230225, - -0.3444889783859253, - -0.34263116121292114, - -0.45574089884757996, - -0.4637920558452606, - -0.4700809121131897, - -0.474435955286026, - -0.4767383635044098, - -0.4769253730773926, - -0.4749917984008789, - -0.47099050879478455, - -0.4650305509567261, - -0.45727449655532837, - -0.44793397188186646, - -0.43726372718811035, - -0.4255548417568207, - -0.4131266474723816, - -0.4003182351589203, - -0.38747888803482056, - -0.37495890259742737, - -0.3630997836589813, - -0.3522249758243561, - -0.34263116121292114, - -0.45574089884757996, - -0.47057202458381653, - -0.4834558963775635, - -0.4940411150455475, - -0.5020389556884766, - -0.5072312355041504, - -0.5094763040542603, - -0.5087129473686218, - -0.5049619674682617, - -0.4983257055282593, - -0.48898518085479736, - -0.477195143699646, - -0.46327728033065796, - -0.44761112332344055, - -0.4306240677833557, - -0.41277948021888733, - -0.39456409215927124, - -0.3764747679233551, - -0.359004944562912, - -0.34263116121292114, - -0.45574089884757996, - -0.4756612181663513, - -0.49349546432495117, - -0.5087572336196899, - -0.5210301280021667, - -0.5299794673919678, - -0.535361111164093, - -0.5370282530784607, - -0.5349354147911072, - -0.5291396379470825, - -0.5197991132736206, - -0.5071685910224915, - -0.4915925860404968, - -0.4734959602355957, - -0.45337235927581787, - -0.4317706525325775, - -0.4092801809310913, - -0.3865143358707428, - -0.3640941381454468, - -0.34263116121292114, - -0.45574089884757996, - -0.4785081446170807, - -0.49911168217658997, - -0.5169894695281982, - -0.5316539406776428, - -0.5427050590515137, - -0.5498412847518921, - -0.5528680682182312, - -0.5517027974128723, - -0.5463772416114807, - -0.5370367169380188, - -0.5239359736442566, - -0.5074324011802673, - -0.4879761338233948, - -0.466097891330719, - -0.442394495010376, - -0.417512446641922, - -0.3921305537223816, - -0.36694106459617615, - -0.34263116121292114, - -0.45574089884757996, - -0.4788042902946472, - -0.49969592690467834, - -0.5178459286689758, - -0.5327591896057129, - -0.5440288782119751, - -0.5513476133346558, - -0.5545158386230469, - -0.5534470677375793, - -0.5481704473495483, - -0.5388299226760864, - -0.5256803035736084, - -0.509080171585083, - -0.48948249220848083, - -0.4674217402935028, - -0.44349968433380127, - -0.4183688759803772, - -0.39271479845046997, - -0.36723724007606506, - -0.34263116121292114, - -0.45574089884757996, - -0.47651761770248413, - -0.49518489837646484, - -0.5112336277961731, - -0.5242259502410889, - -0.5338075160980225, - -0.5397169589996338, - -0.5417931079864502, - -0.5399792790412903, - -0.5343250036239624, - -0.5249844789505005, - -0.5122125148773193, - -0.49635744094848633, - -0.4778518080711365, - -0.45720040798187256, - -0.434966504573822, - -0.41175657510757446, - -0.38820376992225647, - -0.3649505376815796, - -0.34263116121292114, - -0.45574089884757996, - -0.47189584374427795, - -0.4860674738883972, - -0.4978691637516022, - -0.5069790482521057, - -0.5131486058235168, - -0.516209602355957, - -0.5160784721374512, - -0.5127588510513306, - -0.5063412189483643, - -0.49700069427490234, - -0.48499205708503723, - -0.4706428349018097, - -0.4543444514274597, - -0.43654149770736694, - -0.41771960258483887, - -0.39839211106300354, - -0.37908631563186646, - -0.3603287935256958, - -0.34263116121292114, - -0.45574089884757996, - -0.4654398560523987, - -0.47333160042762756, - -0.4792008101940155, - -0.4828874468803406, - -0.4842909276485443, - -0.4833729565143585, - -0.48015859723091125, - -0.4747354984283447, - -0.46725165843963623, - -0.45791110396385193, - -0.4469687044620514, - -0.4347229301929474, - -0.4215078055858612, - -0.407683789730072, - -0.39362797141075134, - -0.37972375750541687, - -0.3663504421710968, - -0.35387280583381653, - -0.34263116121292114, - -0.45574089884757996, - -0.45784926414489746, - -0.45835742354393005, - -0.45725154876708984, - -0.45456182956695557, - -0.45036154985427856, - -0.4447653889656067, - -0.43792590498924255, - -0.4300296902656555, - -0.42129218578338623, - -0.41195163130760193, - -0.4022628962993622, - -0.3924902379512787, - -0.382900208234787, - -0.3737544119358063, - -0.36530235409736633, - -0.3577745258808136, - -0.3513762950897217, - -0.3462821841239929, - -0.34263116121292114, - -0.45574092864990234, - -0.4499466121196747, - -0.4427676796913147, - -0.43439996242523193, - -0.42507168650627136, - -0.4150373339653015, - -0.4045705795288086, - -0.3939569592475891, - -0.38348597288131714, - -0.37344327569007874, - -0.36410272121429443, - -0.3557191789150238, - -0.34852129220962524, - -0.3427054286003113, - -0.3384301960468292, - -0.33581221103668213, - -0.3349229097366333, - -0.33578652143478394, - -0.33837953209877014, - -0.34263119101524353, - -0.45574092864990234, - -0.44258826971054077, - -0.4282516837120056, - -0.413122296333313, - -0.3976127505302429, - -0.3821461498737335, - -0.36714431643486023, - -0.35301652550697327, - -0.34014809131622314, - -0.3288900852203369, - -0.319549560546875, - -0.3123812973499298, - -0.3075808584690094, - -0.3052791357040405, - -0.30553901195526123, - -0.3083533048629761, - -0.31364527344703674, - -0.32127055525779724, - -0.33102118968963623, - -0.34263119101524353, - -0.45574092864990234, - -0.4365716278553009, - -0.4163825511932373, - -0.3957243859767914, - -0.37516066431999207, - -0.35525229573249817, - -0.3365423083305359, - -0.3195410966873169, - -0.30471235513687134, - -0.2924606502056122, - -0.28312012553215027, - -0.276945561170578, - -0.274105429649353, - -0.2746771574020386, - -0.2786451280117035, - -0.28590118885040283, - -0.29624736309051514, - -0.30940139293670654, - -0.32500454783439636, - -0.34263119101524353, - -0.45574092864990234, - -0.4325487017631531, - -0.40844640135765076, - -0.3840915262699127, - -0.3601484000682831, - -0.3372701108455658, - -0.3160807490348816, - -0.29715824127197266, - -0.28101879358291626, - -0.26810264587402344, - -0.2587621212005615, - -0.25325196981430054, - -0.2517225742340088, - -0.2542155683040619, - -0.2606629729270935, - -0.27088892459869385, - -0.2846145033836365, - -0.3014652729034424, - -0.32098162174224854, - -0.34263119101524353, - -0.45574092864990234, - -0.4309554100036621, - -0.40530332922935486, - -0.3794843554496765, - -0.3542028069496155, - -0.33014827966690063, - -0.30797696113586426, - -0.2882935404777527, - -0.2716349959373474, - -0.25845569372177124, - -0.24911516904830933, - -0.24386818706989288, - -0.24285785853862762, - -0.24611176550388336, - -0.25354114174842834, - -0.26494330167770386, - -0.2800073027610779, - -0.2983221709728241, - -0.31938832998275757, - -0.34263119101524353, - -0.45574092864990234, - -0.4319644272327423, - -0.40729382634162903, - -0.38240209221839905, - -0.35796815156936646, - -0.33465856313705444, - -0.31310907006263733, - -0.2939075529575348, - -0.2775777578353882, - -0.2645651400089264, - -0.2552246153354645, - -0.24981096386909485, - -0.24847188591957092, - -0.2512438893318176, - -0.25805139541625977, - -0.2687086760997772, - -0.2829250693321228, - -0.30031269788742065, - -0.32039737701416016, - -0.34263119101524353, - -0.45574092864990234, - -0.4354664385318756, - -0.4142023026943207, - -0.39252856373786926, - -0.37103644013404846, - -0.35031217336654663, - -0.3309210538864136, - -0.3133920133113861, - -0.2982032001018524, - -0.28576895594596863, - -0.2764284014701843, - -0.2704364061355591, - -0.26795634627342224, - -0.26905587315559387, - -0.27370500564575195, - -0.28177696466445923, - -0.293051540851593, - -0.3072211742401123, - -0.32389935851097107, - -0.34263119101524353, - -0.45574092864990234, - -0.4410818815231323, - -0.42528006434440613, - -0.4087664484977722, - -0.391991525888443, - -0.37541282176971436, - -0.35948261618614197, - -0.34463539719581604, - -0.33127617835998535, - -0.31976938247680664, - -0.3104288578033447, - -0.303509384393692, - -0.2991997301578522, - -0.29761743545532227, - -0.2988056540489197, - -0.30273202061653137, - -0.3092893958091736, - -0.31829893589019775, - -0.32951483130455017, - -0.34263119101524353, - -0.45574092864990234, - -0.44820231199264526, - -0.439326673746109, - -0.42935609817504883, - -0.41856256127357483, - -0.40724048018455505, - -0.3956986963748932, - -0.38425204157829285, - -0.3732127547264099, - -0.36288192868232727, - -0.35354140400886536, - -0.3454459607601166, - -0.338816374540329, - -0.3338335156440735, - -0.33063334226608276, - -0.3293030858039856, - -0.3298790454864502, - -0.33234551548957825, - -0.3366352319717407, - -0.34263119101524353, - -0.45574092864990234, - -0.45605605840682983, - -0.454819917678833, - -0.45206624269485474, - -0.447870135307312, - -0.4423460364341736, - -0.4356446862220764, - -0.42794880270957947, - -0.41946834325790405, - -0.41043466329574585, - -0.40109413862228394, - -0.3917015492916107, - -0.3825131356716156, - -0.3737795054912567, - -0.3657388985157013, - -0.3586106598377228, - -0.3525891900062561, - -0.34783878922462463, - -0.3444889783859253, - -0.34263116121292114 - ], - "z": [ - -3.038273334503174, - -3.0317564010620117, - -3.0151326656341553, - -2.9888556003570557, - -2.9536421298980713, - -2.9104528427124023, - -2.8604655265808105, - -2.805043935775757, - -2.745699644088745, - -2.684051513671875, - -2.621781349182129, - -2.5605874061584473, - -2.502139091491699, - -2.448030471801758, - -2.39973783493042, - -2.3585782051086426, - -2.325674533843994, - -2.301923990249634, - -2.2879748344421387, - -2.284207344055176, - -3.038273334503174, - -3.030682325363159, - -3.0130138397216797, - -2.9857499599456787, - -2.949634313583374, - -2.9056520462036133, - -2.8550028800964355, - -2.7990682125091553, - -2.7393741607666016, - -2.67754864692688, - -2.615278482437134, - -2.5542619228363037, - -2.4961633682250977, - -2.442567825317383, - -2.394937038421631, - -2.3545703887939453, - -2.322568893432617, - -2.299805164337158, - -2.286900758743286, - -2.284207344055176, - -3.038273334503174, - -3.0298736095428467, - -3.011418581008911, - -2.9834115505218506, - -2.9466166496276855, - -2.9020373821258545, - -2.8508896827697754, - -2.7945690155029297, - -2.7346115112304688, - -2.67265248298645, - -2.610382080078125, - -2.549499273300171, - -2.491664171218872, - -2.4384548664093018, - -2.391322374343872, - -2.351552724838257, - -2.320230484008789, - -2.2982101440429688, - -2.2860922813415527, - -2.284207344055176, - -3.038273334503174, - -3.0294179916381836, - -3.0105197429656982, - -2.9820940494537354, - -2.944916248321533, - -2.90000057220459, - -2.848572254180908, - -2.7920339107513428, - -2.7319278717041016, - -2.669893503189087, - -2.607623338699341, - -2.5468156337738037, - -2.489129066467285, - -2.4361371994018555, - -2.3892858028411865, - -2.3498523235321045, - -2.318912982940674, - -2.2973110675811768, - -2.2856364250183105, - -2.284207344055176, - -3.038273334503174, - -3.029364585876465, - -3.0104146003723145, - -2.9819400310516357, - -2.9447174072265625, - -2.8997623920440674, - -2.8483011722564697, - -2.7917373180389404, - -2.731613874435425, - -2.6695709228515625, - -2.6073007583618164, - -2.546501636505127, - -2.488832473754883, - -2.435866117477417, - -2.389047622680664, - -2.349653482437134, - -2.318758726119995, - -2.297205924987793, - -2.285583257675171, - -2.284207344055176, - -3.038273334503174, - -3.029719591140747, - -3.0111145973205566, - -2.9829659461975098, - -2.9460415840148926, - -2.90134859085083, - -2.8501060009002686, - -2.7937116622924805, - -2.733703851699829, - -2.671719551086426, - -2.6094491481781006, - -2.5485916137695312, - -2.490806818008423, - -2.437671184539795, - -2.3906335830688477, - -2.350977659225464, - -2.3197848796844482, - -2.2979061603546143, - -2.285938024520874, - -2.284207344055176, - -3.038273334503174, - -3.0304441452026367, - -3.0125439167022705, - -2.9850611686706543, - -2.9487454891204834, - -2.9045872688293457, - -2.8537912368774414, - -2.797743082046509, - -2.737971305847168, - -2.6761064529418945, - -2.6138362884521484, - -2.55285906791687, - -2.494838237762451, - -2.4413564205169678, - -2.3938722610473633, - -2.3536815643310547, - -2.3218801021575928, - -2.299335479736328, - -2.2866625785827637, - -2.284207344055176, - -3.038273334503174, - -3.0314598083496094, - -3.014547824859619, - -2.9879982471466064, - -2.95253586769104, - -2.9091274738311768, - -2.858957529067993, - -2.803394317626953, - -2.7439534664154053, - -2.6822564601898193, - -2.6199862957000732, - -2.5588412284851074, - -2.5004894733428955, - -2.4465224742889404, - -2.3984127044677734, - -2.3574719429016113, - -2.324817180633545, - -2.3013391494750977, - -2.2876782417297363, - -2.284207344055176, - -3.038273334503174, - -3.032656669616699, - -3.016908645629883, - -2.9914591312408447, - -2.9570019245147705, - -2.9144773483276367, - -2.8650448322296143, - -2.8100533485412598, - -2.751002311706543, - -2.6895029544830322, - -2.627232789993286, - -2.565890073776245, - -2.507148504257202, - -2.4526100158691406, - -2.4037623405456543, - -2.361937999725342, - -2.328277826309204, - -2.3037002086639404, - -2.288875102996826, - -2.284207344055176, - -3.038273334503174, - -3.033904790878296, - -3.0193710327148438, - -2.9950685501098633, - -2.9616599082946777, - -2.9200568199157715, - -2.8713936805725098, - -2.816998243331909, - -2.7583539485931396, - -2.6970608234405518, - -2.6347906589508057, - -2.573241710662842, - -2.5140933990478516, - -2.458958625793457, - -2.409341812133789, - -2.366595983505249, - -2.3318872451782227, - -2.3061625957489014, - -2.290123462677002, - -2.284207344055176, - -3.038273334503174, - -3.035069227218628, - -3.0216681957244873, - -2.9984354972839355, - -2.9660050868988037, - -2.9252614974975586, - -2.8773159980773926, - -2.823476552963257, - -2.765211820602417, - -2.704110860824585, - -2.641840696334839, - -2.580099582672119, - -2.520571708679199, - -2.46488094329834, - -2.414546489715576, - -2.370941162109375, - -2.335254430770874, - -2.308459520339966, - -2.291287899017334, - -2.284207344055176, - -3.038273334503174, - -3.0360236167907715, - -3.0235507488250732, - -3.001195192337036, - -2.9695663452148438, - -2.9295272827148438, - -2.8821699619293213, - -2.8287863731384277, - -2.7708325386047363, - -2.7098894119262695, - -2.6476190090179443, - -2.5857203006744385, - -2.52588152885437, - -2.4697351455688477, - -2.4188122749328613, - -2.374502420425415, - -2.3380138874053955, - -2.310342311859131, - -2.2922420501708984, - -2.284207344055176, - -3.038273334503174, - -3.0366644859313965, - -3.024815082550049, - -3.0030484199523926, - -2.9719579219818115, - -2.932392120361328, - -2.885429859161377, - -2.8323521614074707, - -2.7746071815490723, - -2.7137696743011475, - -2.6514995098114014, - -2.5894949436187744, - -2.529447317123413, - -2.472994804382324, - -2.4216771125793457, - -2.376893997192383, - -2.339867115020752, - -2.3116066455841064, - -2.2928831577301025, - -2.284207344055176, - -3.038273334503174, - -3.0369224548339844, - -3.0253241062164307, - -3.0037944316864014, - -2.9729206562042236, - -2.9335451126098633, - -2.886741876602173, - -2.833787679672241, - -2.7761266231536865, - -2.715331792831421, - -2.653061628341675, - -2.5910143852233887, - -2.5308828353881836, - -2.474307060241699, - -2.42283034324646, - -2.377856731414795, - -2.3406131267547607, - -2.312115430831909, - -2.2931411266326904, - -2.284207344055176, - -3.038273334503174, - -3.0367696285247803, - -3.025022506713867, - -3.003352403640747, - -2.9723503589630127, - -2.932861804962158, - -2.8859643936157227, - -2.832937002182007, - -2.775226354598999, - -2.7144062519073486, - -2.6521360874176025, - -2.590114116668701, - -2.530032157897949, - -2.473529577255249, - -2.422147035598755, - -2.377286434173584, - -2.3401710987091064, - -2.3118138313293457, - -2.2929883003234863, - -2.284207344055176, - -3.038273334503174, - -3.036222457885742, - -3.0239431858062744, - -3.00177001953125, - -2.970308303833008, - -2.9304161071777344, - -2.88318133354187, - -2.829892873764038, - -2.772003650665283, - -2.7110931873321533, - -2.6488230228424072, - -2.5868914127349854, - -2.5269880294799805, - -2.4707465171813965, - -2.419701099395752, - -2.375244379043579, - -2.3385889530181885, - -2.310734510421753, - -2.292440891265869, - -2.284207344055176, - -3.038273334503174, - -3.0353403091430664, - -3.022202730178833, - -2.9992191791534424, - -2.9670164585113525, - -2.9264729022979736, - -2.878694534301758, - -2.824984550476074, - -2.766808032989502, - -2.705751895904541, - -2.643481731414795, - -2.581695795059204, - -2.5220797061920166, - -2.466259479522705, - -2.415757894515991, - -2.371952533721924, - -2.336038112640381, - -2.3089942932128906, - -2.2915587425231934, - -2.284207344055176, - -3.038273334503174, - -3.0342187881469727, - -3.0199902057647705, - -2.995975971221924, - -2.9628310203552246, - -2.921459674835205, - -2.8729898929595947, - -2.818744421005249, - -2.760202407836914, - -2.698961019515991, - -2.636690855026245, - -2.575090169906616, - -2.5158395767211914, - -2.460555076599121, - -2.4107446670532227, - -2.367767095565796, - -2.3327949047088623, - -2.306781768798828, - -2.2904372215270996, - -2.284207344055176, - -3.038273334503174, - -3.0329792499542236, - -3.017545223236084, - -2.992392063140869, - -2.9582059383392334, - -2.915919303894043, - -2.8666858673095703, - -2.8118484020233154, - -2.7529025077819824, - -2.6914565563201904, - -2.6291861534118652, - -2.5677902698516846, - -2.508943557739258, - -2.4542508125305176, - -2.4052045345306396, - -2.3631420135498047, - -2.3292107582092285, - -2.3043365478515625, - -2.2891979217529297, - -2.284207344055176, - -3.038273334503174, - -3.0317564010620117, - -3.0151326656341553, - -2.9888556003570557, - -2.9536421298980713, - -2.9104526042938232, - -2.8604655265808105, - -2.805043935775757, - -2.745699644088745, - -2.684051513671875, - -2.621781349182129, - -2.5605874061584473, - -2.502139091491699, - -2.448030471801758, - -2.39973783493042, - -2.3585782051086426, - -2.325674533843994, - -2.301923990249634, - -2.2879748344421387, - -2.284207344055176 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.14898040890693665, - 0.13756316900253296, - 0.1279481202363968, - 0.12039752304553986, - 0.11511734873056412, - 0.11225161701440811, - 0.11187851428985596, - 0.11400818824768066, - 0.1185825765132904, - 0.1254768967628479, - 0.1345030665397644, - 0.14541491866111755, - 0.15791475772857666, - 0.17166166007518768, - 0.18628060817718506, - 0.2013728767633438, - 0.21652677655220032, - 0.23132891952991486, - 0.24537557363510132, - 0.2582835555076599, - 0.14898040890693665, - 0.13781237602233887, - 0.12843970954418182, - 0.12111811339855194, - 0.11604726314544678, - 0.11336550116539001, - 0.11314598470926285, - 0.11539466679096222, - 0.12005025148391724, - 0.12698572874069214, - 0.13601189851760864, - 0.14688259363174438, - 0.1593012511730194, - 0.17292913794517517, - 0.18739449977874756, - 0.20230279862880707, - 0.2172473669052124, - 0.23182052373886108, - 0.24562476575374603, - 0.2582835555076599, - 0.14898040890693665, - 0.13935256004333496, - 0.13147810101509094, - 0.12557180225849152, - 0.12179479002952576, - 0.12025006860494614, - 0.12097980082035065, - 0.12396405637264252, - 0.12912145256996155, - 0.13631130754947662, - 0.14533749222755432, - 0.1559537947177887, - 0.1678706407546997, - 0.18076294660568237, - 0.19427907466888428, - 0.20805032551288605, - 0.22170105576515198, - 0.234858900308609, - 0.24716496467590332, - 0.2582835555076599, - 0.14898040890693665, - 0.14201687276363373, - 0.1367340236902237, - 0.13327598571777344, - 0.13173706829547882, - 0.1321592628955841, - 0.13453105092048645, - 0.13878771662712097, - 0.1448131799697876, - 0.1524430513381958, - 0.1614692509174347, - 0.17164550721645355, - 0.18269428610801697, - 0.19431419670581818, - 0.20618826150894165, - 0.2179926037788391, - 0.2294052392244339, - 0.24011482298374176, - 0.2498292624950409, - 0.2582835555076599, - 0.14898040890693665, - 0.1455165445804596, - 0.14363792538642883, - 0.1433957815170288, - 0.1447967290878296, - 0.14780253171920776, - 0.15233123302459717, - 0.15825927257537842, - 0.16542497277259827, - 0.17363286018371582, - 0.18265904486179352, - 0.19225731492042542, - 0.2021658569574356, - 0.2121143937110901, - 0.2218315452337265, - 0.23105226457118988, - 0.23952503502368927, - 0.2470187246799469, - 0.25332894921302795, - 0.2582835555076599, - 0.14898040890693665, - 0.14947235584259033, - 0.15144164860248566, - 0.1548345535993576, - 0.15955853462219238, - 0.1654846966266632, - 0.1724514365196228, - 0.18026870489120483, - 0.18872325122356415, - 0.19758448004722595, - 0.20661066472530365, - 0.2155555933713913, - 0.22417527437210083, - 0.23223459720611572, - 0.23951371014118195, - 0.24581405520439148, - 0.25096380710601807, - 0.2548224627971649, - 0.2572847604751587, - 0.2582835555076599, - 0.14898040890693665, - 0.15345564484596252, - 0.1592995524406433, - 0.1663527488708496, - 0.17442281544208527, - 0.18328961730003357, - 0.19271132349967957, - 0.20243091881275177, - 0.21218326687812805, - 0.22170236706733704, - 0.23072855174541473, - 0.2390156090259552, - 0.24633748829364777, - 0.2524944841861725, - 0.2573186159133911, - 0.26067835092544556, - 0.2624819874763489, - 0.2626803517341614, - 0.2612680494785309, - 0.2582835555076599, - 0.14898040890693665, - 0.1570347249507904, - 0.16636011004447937, - 0.17670217156410217, - 0.1877788007259369, - 0.19928786158561707, - 0.21091541647911072, - 0.222344309091568, - 0.2332627773284912, - 0.24337297677993774, - 0.25239917635917664, - 0.26009511947631836, - 0.266250878572464, - 0.27069857716560364, - 0.2733168601989746, - 0.274034321308136, - 0.27283141016960144, - 0.26974090933799744, - 0.26484712958335876, - 0.2582835555076599, - 0.14898040890693665, - 0.1598217785358429, - 0.17185819149017334, - 0.18476130068302155, - 0.19817915558815002, - 0.2117457389831543, - 0.22509102523326874, - 0.23785093426704407, - 0.24967747926712036, - 0.26024797558784485, - 0.26927417516708374, - 0.2765098214149475, - 0.28175753355026245, - 0.28487417101860046, - 0.28577476739883423, - 0.2844347059726715, - 0.280890554189682, - 0.2752389907836914, - 0.26763418316841125, - 0.2582835555076599, - 0.14898040890693665, - 0.1615147739648819, - 0.1751980036497116, - 0.1896568238735199, - 0.2044968605041504, - 0.21931327879428864, - 0.23370198905467987, - 0.24727044999599457, - 0.25964856147766113, - 0.27049869298934937, - 0.27952486276626587, - 0.2864809036254883, - 0.29117703437805176, - 0.2934851348400116, - 0.2933422923088074, - 0.2907524108886719, - 0.28578606247901917, - 0.27857881784439087, - 0.26932716369628906, - 0.2582835555076599, - 0.14898040890693665, - 0.16193024814128876, - 0.1760176122188568, - 0.19085821509361267, - 0.20604726672172546, - 0.22117041051387787, - 0.23581518232822418, - 0.24958206713199615, - 0.26209557056427, - 0.2730143070220947, - 0.28204047679901123, - 0.2889278829097748, - 0.29348865151405334, - 0.2955983281135559, - 0.295199453830719, - 0.29230278730392456, - 0.2869874835014343, - 0.2793984115123749, - 0.2697426378726959, - 0.2582835555076599, - 0.14898040890693665, - 0.16102318465709686, - 0.1742282211780548, - 0.1882353127002716, - 0.2026623785495758, - 0.21711589395999908, - 0.23120161890983582, - 0.24453529715538025, - 0.25675326585769653, - 0.2675221860408783, - 0.2765483856201172, - 0.2835856080055237, - 0.28844186663627625, - 0.29098477959632874, - 0.2911449074745178, - 0.2889179289340973, - 0.2843645513057709, - 0.2776090204715729, - 0.26883557438850403, - 0.2582835555076599, - 0.14898040890693665, - 0.15889185667037964, - 0.17002370953559875, - 0.18207231163978577, - 0.19470900297164917, - 0.2075890749692917, - 0.22036123275756836, - 0.23267705738544464, - 0.24420058727264404, - 0.25461751222610474, - 0.26364371180534363, - 0.2710329294204712, - 0.27658361196517944, - 0.2801443934440613, - 0.2816180884838104, - 0.28096455335617065, - 0.2782015800476074, - 0.2734045088291168, - 0.266704261302948, - 0.2582835555076599, - 0.14898040890693665, - 0.1557672619819641, - 0.16385972499847412, - 0.1730370819568634, - 0.18304899334907532, - 0.19362235069274902, - 0.2044687420129776, - 0.2152923196554184, - 0.22579781711101532, - 0.23569869995117188, - 0.24472488462924957, - 0.2526301443576813, - 0.2591989040374756, - 0.2642519176006317, - 0.26765137910842896, - 0.2693045437335968, - 0.26916635036468506, - 0.2672405242919922, - 0.26357966661453247, - 0.2582835555076599, - 0.14898040890693665, - 0.1519879698753357, - 0.15640424191951752, - 0.16210876405239105, - 0.16894593834877014, - 0.1767292469739914, - 0.18524639308452606, - 0.19426505267620087, - 0.20353922247886658, - 0.21281591057777405, - 0.22184209525585175, - 0.23037154972553253, - 0.23817162215709686, - 0.24502955377101898, - 0.25075826048851013, - 0.25520145893096924, - 0.2582380175590515, - 0.2597850561141968, - 0.25980037450790405, - 0.2582835555076599, - 0.14898040890693665, - 0.1479635387659073, - 0.14846515655517578, - 0.15047156810760498, - 0.15392807126045227, - 0.15874037146568298, - 0.16477718949317932, - 0.17187386751174927, - 0.17983682453632355, - 0.18844884634017944, - 0.19747503101825714, - 0.2066691517829895, - 0.21578043699264526, - 0.22456035017967224, - 0.23276937007904053, - 0.24018362164497375, - 0.24660082161426544, - 0.25184595584869385, - 0.25577592849731445, - 0.2582835555076599, - 0.14898040890693665, - 0.14413006603717804, - 0.14090277254581451, - 0.13938657939434052, - 0.13962283730506897, - 0.14160507917404175, - 0.14527925848960876, - 0.1505451500415802, - 0.15725910663604736, - 0.16523800790309906, - 0.17426419258117676, - 0.1840914487838745, - 0.1944517195224762, - 0.20506241917610168, - 0.2156340777873993, - 0.22587835788726807, - 0.23551583290100098, - 0.24428358674049377, - 0.2519424557685852, - 0.2582835555076599, - 0.14898040890693665, - 0.14090298116207123, - 0.13453662395477295, - 0.1300550252199173, - 0.1275804042816162, - 0.12718026340007782, - 0.1288655400276184, - 0.13259024918079376, - 0.13825277984142303, - 0.1456986963748932, - 0.1547248810529709, - 0.165085107088089, - 0.17649681866168976, - 0.18864870071411133, - 0.20120927691459656, - 0.2138359397649765, - 0.22618427872657776, - 0.23791742324829102, - 0.2487153708934784, - 0.2582835555076599, - 0.14898040890693665, - 0.13863196969032288, - 0.13005658984184265, - 0.12348812818527222, - 0.11910578608512878, - 0.1170291006565094, - 0.11731471866369247, - 0.11995483934879303, - 0.1248774528503418, - 0.1319482922554016, - 0.1409744769334793, - 0.15170979499816895, - 0.16386140882968903, - 0.1770978718996048, - 0.19105809926986694, - 0.20536132156848907, - 0.21961738169193268, - 0.23343738913536072, - 0.24644437432289124, - 0.2582835555076599, - 0.14898040890693665, - 0.13756316900253296, - 0.1279481053352356, - 0.12039752304553986, - 0.11511734127998352, - 0.11225161701440811, - 0.11187851428985596, - 0.11400818079710007, - 0.1185825765132904, - 0.1254768967628479, - 0.1345030665397644, - 0.14541491866111755, - 0.15791475772857666, - 0.17166166007518768, - 0.18628060817718506, - 0.2013728767633438, - 0.21652677655220032, - 0.23132891952991486, - 0.24537557363510132, - 0.2582835555076599 - ], - "y": [ - -0.14898043870925903, - -0.14873164892196655, - -0.14998038113117218, - -0.15269260108470917, - -0.15679430961608887, - -0.16217362880706787, - -0.16868382692337036, - -0.17614732682704926, - -0.18436051905155182, - -0.19309939444065094, - -0.20212557911872864, - -0.21119284629821777, - -0.22005388140678406, - -0.2284669578075409, - -0.23620259761810303, - -0.24304980039596558, - -0.24882179498672485, - -0.25336113572120667, - -0.25654399394989014, - -0.2582835257053375, - -0.14898043870925903, - -0.15274275839328766, - -0.15789321064949036, - -0.16429129242897034, - -0.17176249623298645, - -0.18010298907756805, - -0.18908531963825226, - -0.19846443831920624, - -0.20798450708389282, - -0.21738585829734802, - -0.22641202807426453, - -0.23481683433055878, - -0.24237099289894104, - -0.2488684505224228, - -0.2541319727897644, - -0.25801798701286316, - -0.2604205012321472, - -0.26127395033836365, - -0.26055508852005005, - -0.2582835257053375, - -0.14898043870925903, - -0.15642693638801575, - -0.16516108810901642, - -0.17494460940361023, - -0.18551065027713776, - -0.1965709924697876, - -0.2078239470720291, - -0.21896255016326904, - -0.22968298196792603, - -0.2396927922964096, - -0.2487189769744873, - -0.2565152943134308, - -0.26286911964416504, - -0.26760706305503845, - -0.27059996128082275, - -0.27176615595817566, - -0.2710738182067871, - -0.2685418426990509, - -0.26423928141593933, - -0.2582835257053375, - -0.14898043870925903, - -0.15938495099544525, - -0.17099642753601074, - -0.18349811434745789, - -0.19654898345470428, - -0.2097930610179901, - -0.22286909818649292, - -0.2354203760623932, - -0.24710457026958466, - -0.2576029300689697, - -0.26662909984588623, - -0.2739368975162506, - -0.2793269455432892, - -0.28265222907066345, - -0.28382205963134766, - -0.2828044891357422, - -0.27962732315063477, - -0.27437716722488403, - -0.26719731092453003, - -0.2582835257053375, - -0.14898043870925903, - -0.16129624843597412, - -0.1747668832540512, - -0.18902488052845, - -0.20368130505084991, - -0.21833640336990356, - -0.23259039223194122, - -0.24605447053909302, - -0.2583613991737366, - -0.2691754102706909, - -0.2782015800476074, - -0.28519371151924133, - -0.289961040019989, - -0.29237353801727295, - -0.2923653721809387, - -0.2899368107318878, - -0.2851540744304657, - -0.2781476378440857, - -0.2691085934638977, - -0.2582835257053375, - -0.14898043870925903, - -0.16195371747016907, - -0.17606386542320251, - -0.19092600047588348, - -0.20613473653793335, - -0.2212751805782318, - -0.23593437671661377, - -0.24971245229244232, - -0.26223355531692505, - -0.27315616607666016, - -0.28218236565589905, - -0.2890658974647522, - -0.2936190068721771, - -0.2957175076007843, - -0.29530414938926697, - -0.29239022731781006, - -0.28705519437789917, - -0.2794446051120758, - -0.26976606249809265, - -0.2582835257053375, - -0.14898043870925903, - -0.16128608584403992, - -0.1747468262910843, - -0.18899548053741455, - -0.20364338159561157, - -0.21829095482826233, - -0.23253868520259857, - -0.24599790573120117, - -0.2583014965057373, - -0.2691138684749603, - -0.27814003825187683, - -0.28513383865356445, - -0.28990447521209717, - -0.2923218011856079, - -0.2923199236392975, - -0.2898988723754883, - -0.28512465953826904, - -0.2781275808811188, - -0.2690984308719635, - -0.2582835257053375, - -0.14898043870925903, - -0.1593657284975052, - -0.1709584891796112, - -0.18344250321388245, - -0.1964772343635559, - -0.209707111120224, - -0.2227712869644165, - -0.23531338572502136, - -0.24699130654335022, - -0.257486492395401, - -0.2665126919746399, - -0.273823618888855, - -0.27921995520591736, - -0.28255441784858704, - -0.28373607993125916, - -0.2827327251434326, - -0.2795717120170593, - -0.2743392288684845, - -0.2671780586242676, - -0.2582835257053375, - -0.14898043870925903, - -0.15640074014663696, - -0.16510938107967377, - -0.17486882209777832, - -0.18541285395622253, - -0.19645383954048157, - -0.20769062638282776, - -0.21881671249866486, - -0.22952860593795776, - -0.23953410983085632, - -0.24856027960777283, - -0.2563609182834625, - -0.26272326707839966, - -0.2674737572669983, - -0.2704828083515167, - -0.27166834473609924, - -0.2709980010986328, - -0.26849013566970825, - -0.26421308517456055, - -0.2582835257053375, - -0.14898043870925903, - -0.1527124047279358, - -0.15783333778381348, - -0.16420352458953857, - -0.17164923250675201, - -0.17996732890605927, - -0.188930943608284, - -0.19829556345939636, - -0.20780575275421143, - -0.2172020971775055, - -0.226228266954422, - -0.23463808000087738, - -0.24220211803913116, - -0.24871407449245453, - -0.2539963126182556, - -0.25790470838546753, - -0.26033273339271545, - -0.26121407747268677, - -0.2605247497558594, - -0.2582835257053375, - -0.14898043870925903, - -0.14870044589042664, - -0.1499188244342804, - -0.15260237455368042, - -0.15667787194252014, - -0.16203416883945465, - -0.16852512955665588, - -0.17597372829914093, - -0.1841767579317093, - -0.19291047751903534, - -0.20193666219711304, - -0.21100908517837524, - -0.21988028287887573, - -0.22830826044082642, - -0.2360631376504898, - -0.24293337762355804, - -0.2487315833568573, - -0.2532995939254761, - -0.2565127909183502, - -0.2582835257053375, - -0.14898043870925903, - -0.1447995901107788, - -0.14222352206707, - -0.1413225382566452, - -0.14212118089199066, - -0.14459767937660217, - -0.14868447184562683, - -0.15427009761333466, - -0.16120219230651855, - -0.1692916452884674, - -0.1783178299665451, - -0.18803450465202332, - -0.19817665219306946, - -0.20846760272979736, - -0.21862663328647614, - -0.22837667167186737, - -0.2374517321586609, - -0.2456042766571045, - -0.2526119351387024, - -0.2582835257053375, - -0.14898043870925903, - -0.14143256843090057, - -0.13558132946491241, - -0.13158634305000305, - -0.1295565664768219, - -0.1295473724603653, - -0.13155901432037354, - -0.13553662598133087, - -0.1413716971874237, - -0.14890506863594055, - -0.15793123841285706, - -0.16820400953292847, - -0.17944318056106567, - -0.19134214520454407, - -0.20357634127140045, - -0.2158120572566986, - -0.22771553695201874, - -0.2389620840549469, - -0.24924489855766296, - -0.2582835257053375, - -0.14898043870925903, - -0.1389642357826233, - -0.13071201741695404, - -0.12444885820150375, - -0.12034560739994049, - -0.11851418763399124, - -0.11900456249713898, - -0.12180335074663162, - -0.1268342137336731, - -0.13395991921424866, - -0.14298610389232635, - -0.15366652607917786, - -0.16570989787578583, - -0.17878767848014832, - -0.1925431489944458, - -0.2066010981798172, - -0.22057805955410004, - -0.23409277200698853, - -0.24677658081054688, - -0.2582835257053375, - -0.14898043870925903, - -0.1376621127128601, - -0.12814326584339142, - -0.12068355828523636, - -0.11548646539449692, - -0.11269374936819077, - -0.11238159984350204, - -0.11455851793289185, - -0.11916512250900269, - -0.12607577443122864, - -0.13510194420814514, - -0.14599743485450745, - -0.15846507251262665, - -0.17216472327709198, - -0.18672271072864532, - -0.20174194872379303, - -0.21681275963783264, - -0.2315240204334259, - -0.2454744577407837, - -0.2582835257053375, - -0.14898043870925903, - -0.13766726851463318, - -0.12815342843532562, - -0.1206984594464302, - -0.11550569534301758, - -0.11271677911281586, - -0.11240780353546143, - -0.11458718031644821, - -0.11919546872377396, - -0.12610697746276855, - -0.13513314723968506, - -0.14602778851985931, - -0.15849372744560242, - -0.17219091951847076, - -0.186745747923851, - -0.2017611861228943, - -0.2168276607990265, - -0.2315341830253601, - -0.24547959864139557, - -0.2582835257053375, - -0.14898043870925903, - -0.13897913694381714, - -0.1307414174079895, - -0.12449194490909576, - -0.12040121853351593, - -0.11858079582452774, - -0.11908035725355148, - -0.12188626080751419, - -0.12692198157310486, - -0.1340501457452774, - -0.1430763304233551, - -0.15375429391860962, - -0.1657928228378296, - -0.17886348068714142, - -0.1926097571849823, - -0.20665670931339264, - -0.22062113881111145, - -0.2341221570968628, - -0.24679148197174072, - -0.2582835257053375, - -0.14898043870925903, - -0.14145559072494507, - -0.13562676310539246, - -0.13165295124053955, - -0.129642516374588, - -0.12965033948421478, - -0.13167619705200195, - -0.13566479086875916, - -0.1415073573589325, - -0.14904454350471497, - -0.15807071328163147, - -0.16833968460559845, - -0.17957134544849396, - -0.1914592981338501, - -0.20367929339408875, - -0.21589800715446472, - -0.22778214514255524, - -0.23900751769542694, - -0.24926793575286865, - -0.2582835257053375, - -0.14898043870925903, - -0.14482825994491577, - -0.14228010177612305, - -0.14140546321868896, - -0.14222818613052368, - -0.14472585916519165, - -0.1488303244113922, - -0.15442964434623718, - -0.16137108206748962, - -0.16946527361869812, - -0.17849145829677582, - -0.18820339441299438, - -0.19833619892597198, - -0.20861345529556274, - -0.2187548130750656, - -0.2284836769104004, - -0.23753465712070465, - -0.24566084146499634, - -0.25264060497283936, - -0.2582835257053375, - -0.14898043870925903, - -0.14873164892196655, - -0.14998039603233337, - -0.15269261598587036, - -0.15679432451725006, - -0.16217364370822906, - -0.16868384182453156, - -0.17614732682704926, - -0.184360533952713, - -0.19309940934181213, - -0.20212559401988983, - -0.21119286119937897, - -0.22005388140678406, - -0.2284669727087021, - -0.23620261251926422, - -0.24304981529712677, - -0.24882180988788605, - -0.25336113572120667, - -0.25654399394989014, - -0.2582835257053375 - ], - "z": [ - -0.9932026863098145, - -1.0001453161239624, - -1.0168370008468628, - -1.0428223609924316, - -1.077392578125, - -1.1196045875549316, - -1.1683070659637451, - -1.222171425819397, - -1.279728651046753, - -1.3394083976745605, - -1.399582862854004, - -1.4586107730865479, - -1.51488196849823, - -1.5668613910675049, - -1.6131312847137451, - -1.6524293422698975, - -1.68368399143219, - -1.7060422897338867, - -1.718894600868225, - -1.7218902111053467, - -0.9932026863098145, - -0.9995062947273254, - -1.0155763626098633, - -1.0409743785858154, - -1.0750077962875366, - -1.1167480945587158, - -1.1650567054748535, - -1.2186158895492554, - -1.2759648561477661, - -1.3355391025543213, - -1.3957135677337646, - -1.4548470973968506, - -1.5113264322280884, - -1.5636110305786133, - -1.6102747917175293, - -1.6500446796417236, - -1.6818361282348633, - -1.7047816514968872, - -1.7182555198669434, - -1.7218902111053467, - -0.9932026863098145, - -0.9987226724624634, - -1.0140304565429688, - -1.0387084484100342, - -1.0720834732055664, - -1.1132451295852661, - -1.1610708236694336, - -1.2142558097839355, - -1.2713494300842285, - -1.3307942152023315, - -1.3909687995910645, - -1.450231671333313, - -1.5069663524627686, - -1.5596251487731934, - -1.6067718267440796, - -1.6471203565597534, - -1.679569959640503, - -1.7032357454299927, - -1.7174718379974365, - -1.7218902111053467, - -0.9932026863098145, - -0.9978792667388916, - -1.012366771697998, - -1.0362696647644043, - -1.0689363479614258, - -1.1094754934310913, - -1.1567813158035278, - -1.2095636129379272, - -1.2663824558258057, - -1.3256878852844238, - -1.3858624696731567, - -1.4452645778656006, - -1.5022740364074707, - -1.5553357601165771, - -1.6030021905899048, - -1.6439732313156128, - -1.6771314144134521, - -1.7015719413757324, - -1.7166285514831543, - -1.7218902111053467, - -0.9932026863098145, - -0.9970676302909851, - -1.010765552520752, - -1.033922791481018, - -1.065907597541809, - -1.1058474779129028, - -1.1526530981063843, - -1.2050477266311646, - -1.2616021633148193, - -1.3207736015319824, - -1.3809480667114258, - -1.4404842853546143, - -1.497758150100708, - -1.5512075424194336, - -1.5993741750717163, - -1.640944480895996, - -1.6747844219207764, - -1.6999708414077759, - -1.715816855430603, - -1.7218902111053467, - -0.9932026863098145, - -0.9963756799697876, - -1.009400486946106, - -1.0319217443466187, - -1.06332528591156, - -1.1027543544769287, - -1.149133563041687, - -1.201197624206543, - -1.2575265169143677, - -1.3165837526321411, - -1.3767582178115845, - -1.4364087581634521, - -1.493908166885376, - -1.5476878881454468, - -1.5962810516357422, - -1.638362169265747, - -1.672783374786377, - -1.6986057758331299, - -1.7151248455047607, - -1.7218902111053467, - -0.9932026863098145, - -0.9958783388137817, - -1.0084192752838135, - -1.030483603477478, - -1.061469316482544, - -1.1005312204360962, - -1.1466038227081299, - -1.1984304189682007, - -1.2545973062515259, - -1.3135724067687988, - -1.3737468719482422, - -1.4334795475006104, - -1.4911409616470337, - -1.5451582670211792, - -1.5940579175949097, - -1.636506199836731, - -1.6713452339172363, - -1.697624683380127, - -1.7146275043487549, - -1.7218902111053467, - -0.9932026863098145, - -0.9956294894218445, - -1.007928490638733, - -1.029764175415039, - -1.0605409145355225, - -1.099419116973877, - -1.1453384160995483, - -1.197046160697937, - -1.2531319856643677, - -1.312065839767456, - -1.372240424156189, - -1.4320142269134521, - -1.4897565841674805, - -1.543892741203308, - -1.5929458141326904, - -1.63557767868042, - -1.6706258058547974, - -1.6971337795257568, - -1.7143787145614624, - -1.7218902111053467, - -0.9932026863098145, - -0.9956561923027039, - -1.0079810619354248, - -1.0298413038253784, - -1.0606404542922974, - -1.0995383262634277, - -1.1454741954803467, - -1.1971945762634277, - -1.2532891035079956, - -1.312227487564087, - -1.3724020719528198, - -1.43217134475708, - -1.4899051189422607, - -1.5440285205841064, - -1.5930650234222412, - -1.6356773376464844, - -1.6707029342651367, - -1.6971864700317383, - -1.7144054174423218, - -1.7218902111053467, - -0.9932026863098145, - -0.9959554672241211, - -1.0085716247558594, - -1.030706763267517, - -1.0617573261260986, - -1.1008762121200562, - -1.1469964981079102, - -1.1988599300384521, - -1.255051851272583, - -1.314039707183838, - -1.3742142915725708, - -1.4339340925216675, - -1.4915703535079956, - -1.54555082321167, - -1.5944029092788696, - -1.6367942094802856, - -1.6715683937072754, - -1.6977769136428833, - -1.7147047519683838, - -1.7218902111053467, - -0.9932026863098145, - -0.9964949488639832, - -1.0096358060836792, - -1.0322667360305786, - -1.0637705326080322, - -1.103287696838379, - -1.1497403383255005, - -1.2018613815307617, - -1.2582292556762695, - -1.3173061609268188, - -1.3774806261062622, - -1.4371113777160645, - -1.4945719242095947, - -1.5482946634292603, - -1.5968142747879028, - -1.6388072967529297, - -1.673128366470337, - -1.6988410949707031, - -1.715244174003601, - -1.7218902111053467, - -0.9932026863098145, - -0.9972161054611206, - -1.0110585689544678, - -1.03435218334198, - -1.0664618015289307, - -1.1065113544464111, - -1.1534085273742676, - -1.205873966217041, - -1.2624766826629639, - -1.321672797203064, - -1.3818472623825073, - -1.4413589239120483, - -1.498584508895874, - -1.5519628524780273, - -1.600037932395935, - -1.6414985656738281, - -1.6752138137817383, - -1.7002638578414917, - -1.7159653902053833, - -1.7218902111053467, - -0.9932026863098145, - -0.9980409145355225, - -1.0126855373382568, - -1.036737084388733, - -1.0695394277572632, - -1.110197901725769, - -1.15760338306427, - -1.2104628086090088, - -1.267334222793579, - -1.3266664743423462, - -1.3868409395217896, - -1.4462164640426636, - -1.5031732320785522, - -1.5561577081680298, - -1.603724479675293, - -1.6445763111114502, - -1.6775987148284912, - -1.7018908262252808, - -1.7167901992797852, - -1.7218902111053467, - -0.9932026863098145, - -0.9988797903060913, - -1.0143405199050903, - -1.0391629934310913, - -1.0726701021194458, - -1.113947868347168, - -1.1618703603744507, - -1.2151304483413696, - -1.2722752094268799, - -1.331745982170105, - -1.391920566558838, - -1.4511574506759644, - -1.507840871810913, - -1.5604248046875, - -1.6074745655059814, - -1.6477069854736328, - -1.6800246238708496, - -1.7035458087921143, - -1.717629075050354, - -1.7218902111053467, - -0.9932026863098145, - -0.999642014503479, - -1.0158441066741943, - -1.0413670539855957, - -1.0755144357681274, - -1.1173548698425293, - -1.1657471656799316, - -1.2193713188171387, - -1.2767643928527832, - -1.336361050605774, - -1.3965356349945068, - -1.4556466341018677, - -1.5120817422866821, - -1.5643014907836914, - -1.6108815670013428, - -1.6505513191223145, - -1.6822285652160645, - -1.7050495147705078, - -1.7183912992477417, - -1.7218902111053467, - -0.9932026863098145, - -1.0002449750900269, - -1.0170334577560425, - -1.0431103706359863, - -1.0777642726898193, - -1.1200497150421143, - -1.168813705444336, - -1.2227256298065186, - -1.2803151607513428, - -1.340011477470398, - -1.4001859426498413, - -1.4591974020004272, - -1.5154361724853516, - -1.5673680305480957, - -1.6135764122009277, - -1.6528010368347168, - -1.6839720010757446, - -1.7062387466430664, - -1.718994140625, - -1.7218902111053467, - -0.9932026863098145, - -1.0006232261657715, - -1.0177795886993408, - -1.0442041158676147, - -1.0791757106781006, - -1.121740460395813, - -1.1707375049591064, - -1.2248300313949585, - -1.2825429439544678, - -1.342301607131958, - -1.402476191520691, - -1.4614250659942627, - -1.5175405740737915, - -1.5692918300628662, - -1.6152671575546265, - -1.654212474822998, - -1.685065746307373, - -1.7069849967956543, - -1.7193725109100342, - -1.7218902111053467, - -0.9932026863098145, - -1.0007357597351074, - -1.0180017948150635, - -1.044529676437378, - -1.0795958042144775, - -1.1222437620162964, - -1.1713101863861084, - -1.2254564762115479, - -1.2832059860229492, - -1.342983365058899, - -1.4031578302383423, - -1.4620882272720337, - -1.5181670188903809, - -1.5698645114898682, - -1.6157704591751099, - -1.6546326875686646, - -1.6853913068771362, - -1.7072070837020874, - -1.7194850444793701, - -1.7218902111053467, - -0.9932026863098145, - -1.00057053565979, - -1.017675757408142, - -1.0440518856048584, - -1.0789791345596313, - -1.1215050220489502, - -1.1704696416854858, - -1.2245371341705322, - -1.2822327613830566, - -1.3419828414916992, - -1.4021573066711426, - -1.4611150026321411, - -1.5172475576400757, - -1.5690239667892456, - -1.6150317192077637, - -1.6540160179138184, - -1.6849133968353271, - -1.706881046295166, - -1.7193198204040527, - -1.7218902111053467, - -0.9932026863098145, - -1.0001453161239624, - -1.0168370008468628, - -1.0428223609924316, - -1.077392578125, - -1.1196045875549316, - -1.1683070659637451, - -1.222171425819397, - -1.279728651046753, - -1.3394083976745605, - -1.399582862854004, - -1.4586107730865479, - -1.51488196849823, - -1.5668613910675049, - -1.6131312847137451, - -1.6524293422698975, - -1.68368399143219, - -1.7060422897338867, - -1.718894600868225, - -1.7218902111053467 - ] - }, - { - "alphahull": 0, - "color": "#B6E880", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.3545070290565491, - 0.3714357018470764, - 0.3863845467567444, - 0.39894577860832214, - 0.40877678990364075, - 0.4156094193458557, - 0.4192572236061096, - 0.4196208119392395, - 0.4166901707649231, - 0.410545289516449, - 0.40135377645492554, - 0.3893663287162781, - 0.3749099671840668, - 0.35837897658348083, - 0.34022435545921326, - 0.3209412395954132, - 0.3010556399822235, - 0.2811099886894226, - 0.26164838671684265, - 0.24320165812969208, - 0.3545070290565491, - 0.3696657419204712, - 0.3828929364681244, - 0.39382776618003845, - 0.4021719694137573, - 0.4076979160308838, - 0.41025489568710327, - 0.40977317094802856, - 0.40626588463783264, - 0.3998286724090576, - 0.3906371593475342, - 0.3789420425891876, - 0.36506232619285583, - 0.3493766486644745, - 0.33231285214424133, - 0.3143363893032074, - 0.29593759775161743, - 0.277618408203125, - 0.2598784565925598, - 0.24320167303085327, - 0.3545070290565491, - 0.36617088317871094, - 0.37599849700927734, - 0.38372185826301575, - 0.38913023471832275, - 0.3920761048793793, - 0.39247915148735046, - 0.3903283476829529, - 0.3856823742389679, - 0.378667950630188, - 0.36947643756866455, - 0.3583585321903229, - 0.34561747312545776, - 0.3316008746623993, - 0.3166910409927368, - 0.3012946546077728, - 0.2858316898345947, - 0.27072396874427795, - 0.2563835680484772, - 0.24320167303085327, - 0.3545070290565491, - 0.3613297939300537, - 0.36644840240478516, - 0.36972320079803467, - 0.3710648715496063, - 0.3704368472099304, - 0.3678562343120575, - 0.3633934259414673, - 0.3571701645851135, - 0.34935620427131653, - 0.3401646912097931, - 0.3298463225364685, - 0.31868258118629456, - 0.3069779872894287, - 0.29505178332328796, - 0.2832293212413788, - 0.27183303236961365, - 0.2611738443374634, - 0.25154247879981995, - 0.24320167303085327, - 0.3545070290565491, - 0.3556671142578125, - 0.35527747869491577, - 0.3533487617969513, - 0.34993356466293335, - 0.34512507915496826, - 0.3390544652938843, - 0.33188727498054504, - 0.32381904125213623, - 0.3150698244571686, - 0.30587831139564514, - 0.2964951694011688, - 0.2871764004230499, - 0.2781761884689331, - 0.2697400152683258, - 0.2620980143547058, - 0.2554585933685303, - 0.250002920627594, - 0.24587979912757874, - 0.24320167303085327, - 0.3545070290565491, - 0.34979644417762756, - 0.3436962962150574, - 0.336372971534729, - 0.3280262053012848, - 0.3188837468624115, - 0.3091949224472046, - 0.29922404885292053, - 0.28924307227134705, - 0.2795242667198181, - 0.2703327536582947, - 0.26191920042037964, - 0.2545131742954254, - 0.24831664562225342, - 0.24349866807460785, - 0.24019064009189606, - 0.23848280310630798, - 0.2384217381477356, - 0.2400091290473938, - 0.24320167303085327, - 0.3545070290565491, - 0.3443540036678314, - 0.3329598605632782, - 0.3206354081630707, - 0.30771681666374207, - 0.29455646872520447, - 0.28151339292526245, - 0.26894330978393555, - 0.2571890950202942, - 0.24657145142555237, - 0.23737992346286774, - 0.22986525297164917, - 0.22423243522644043, - 0.22063511610031128, - 0.219171404838562, - 0.21988123655319214, - 0.22274523973464966, - 0.22768531739711761, - 0.23456668853759766, - 0.24320167303085327, - 0.3545070290565491, - 0.3399295508861542, - 0.3242316246032715, - 0.3078414797782898, - 0.2912061810493469, - 0.2747795283794403, - 0.25900954008102417, - 0.24432644248008728, - 0.2311307042837143, - 0.21978232264518738, - 0.21059079468250275, - 0.20380684733390808, - 0.19961559772491455, - 0.19813129305839539, - 0.19939443469047546, - 0.2033706158399582, - 0.20995134115219116, - 0.2189570963382721, - 0.2301422357559204, - 0.24320167303085327, - 0.3545070290565491, - 0.3370025157928467, - 0.3184574544429779, - 0.2993776202201843, - 0.28028354048728943, - 0.2616960406303406, - 0.24412208795547485, - 0.22804108262062073, - 0.21389169991016388, - 0.20205986499786377, - 0.19286835193634033, - 0.18656784296035767, - 0.183330237865448, - 0.18324381113052368, - 0.18631094694137573, - 0.1924479603767395, - 0.2014874815940857, - 0.21318289637565613, - 0.2272152304649353, - 0.24320167303085327, - 0.3545070290565491, - 0.33589014410972595, - 0.31626302003860474, - 0.296161025762558, - 0.2761324942111969, - 0.2567237615585327, - 0.23846425116062164, - 0.22185200452804565, - 0.20734019577503204, - 0.19532465934753418, - 0.18613313138484955, - 0.18001633882522583, - 0.17714115977287292, - 0.17758597433567047, - 0.18133869767189026, - 0.18829691410064697, - 0.19827088713645935, - 0.21098849177360535, - 0.22610284388065338, - 0.24320167303085327, - 0.3545070290565491, - 0.33671295642852783, - 0.3178861737251282, - 0.29854026436805725, - 0.2792029082775116, - 0.2604016065597534, - 0.24264918267726898, - 0.22642987966537476, - 0.21218615770339966, - 0.2003065049648285, - 0.19111497700214386, - 0.18486230075359344, - 0.18171903491020203, - 0.1817709058523178, - 0.18501651287078857, - 0.19136732816696167, - 0.20065009593963623, - 0.2126116305589676, - 0.22692564129829407, - 0.24320167303085327, - 0.3545070290565491, - 0.33938175439834595, - 0.32315099239349365, - 0.3062574565410614, - 0.2891620099544525, - 0.2723309397697449, - 0.2562233805656433, - 0.24127864837646484, - 0.22790443897247314, - 0.216465562582016, - 0.20727403461933136, - 0.20058058202266693, - 0.19656778872013092, - 0.19534510374069214, - 0.19694587588310242, - 0.20132644474506378, - 0.20836731791496277, - 0.21787644922733307, - 0.22959443926811218, - 0.24320167303085327, - 0.3545070290565491, - 0.3436073660850525, - 0.33148694038391113, - 0.3184764087200165, - 0.30493059754371643, - 0.2912190854549408, - 0.2777158319950104, - 0.2647891640663147, - 0.25279170274734497, - 0.24205073714256287, - 0.23285922408103943, - 0.22546786069869995, - 0.22007830440998077, - 0.2168375551700592, - 0.21583400666713715, - 0.2170950472354889, - 0.22058624029159546, - 0.22621241211891174, - 0.23382005095481873, - 0.24320167303085327, - 0.3545070290565491, - 0.3489318788051605, - 0.34199073910713196, - 0.3338729441165924, - 0.32479995489120483, - 0.3150192201137543, - 0.30479755997657776, - 0.2944137752056122, - 0.2841511070728302, - 0.2742895185947418, - 0.2650980055332184, - 0.2568272650241852, - 0.24970290064811707, - 0.2439192831516266, - 0.23963414132595062, - 0.2369643747806549, - 0.23598280549049377, - 0.23671619594097137, - 0.23914456367492676, - 0.24320167303085327, - 0.3545070290565491, - 0.3547782897949219, - 0.3535240888595581, - 0.35077863931655884, - 0.34661680459976196, - 0.341152161359787, - 0.3345337510108948, - 0.3269420862197876, - 0.31858426332473755, - 0.3096882700920105, - 0.3004967272281647, - 0.29126042127609253, - 0.28223124146461487, - 0.2736554741859436, - 0.26576709747314453, - 0.2587812542915344, - 0.2528884708881378, - 0.24824954569339752, - 0.2449909746646881, - 0.24320167303085327, - 0.3545070290565491, - 0.3605130612850189, - 0.3648371696472168, - 0.367361456155777, - 0.3680170476436615, - 0.36678606271743774, - 0.36370208859443665, - 0.3588492274284363, - 0.3523598611354828, - 0.3444109857082367, - 0.33521947264671326, - 0.32503601908683777, - 0.31413838267326355, - 0.3028238117694855, - 0.2914009988307953, - 0.28018149733543396, - 0.26947131752967834, - 0.2595626413822174, - 0.25072574615478516, - 0.24320167303085327, - 0.3545070290565491, - 0.36551472544670105, - 0.3747040927410126, - 0.38182446360588074, - 0.3866816461086273, - 0.38914310932159424, - 0.3891417384147644, - 0.3866775929927826, - 0.3818178176879883, - 0.3746950328350067, - 0.3655035197734833, - 0.35449397563934326, - 0.34196674823760986, - 0.3282634913921356, - 0.3137580454349518, - 0.2988460958003998, - 0.2839343249797821, - 0.2694295644760132, - 0.2557274103164673, - 0.24320167303085327, - 0.3545070290565491, - 0.36924129724502563, - 0.3820555806159973, - 0.39260032773017883, - 0.40058794617652893, - 0.40580055117607117, - 0.40809592604637146, - 0.40741148591041565, - 0.40376588702201843, - 0.39725857973098755, - 0.3880670666694641, - 0.3764420449733734, - 0.3627006411552429, - 0.3472176790237427, - 0.3304154872894287, - 0.3127523958683014, - 0.2947101891040802, - 0.27678102254867554, - 0.25945398211479187, - 0.24320167303085327, - 0.3545070290565491, - 0.37128889560699463, - 0.38609495759010315, - 0.3985213041305542, - 0.4082289934158325, - 0.4149532616138458, - 0.4185106158256531, - 0.4188040792942047, - 0.41582563519477844, - 0.40965649485588074, - 0.4004649519920349, - 0.38850176334381104, - 0.374093234539032, - 0.3576323688030243, - 0.33956819772720337, - 0.320393443107605, - 0.30063116550445557, - 0.28082042932510376, - 0.26150161027908325, - 0.24320167303085327, - 0.3545070290565491, - 0.3714357018470764, - 0.3863845467567444, - 0.39894577860832214, - 0.40877678990364075, - 0.4156093895435333, - 0.4192572236061096, - 0.4196208119392395, - 0.4166901707649231, - 0.410545289516449, - 0.40135377645492554, - 0.3893663287162781, - 0.3749099671840668, - 0.35837897658348083, - 0.34022432565689087, - 0.3209412395954132, - 0.3010556399822235, - 0.2811099886894226, - 0.26164838671684265, - 0.24320165812969208 - ], - "y": [ - -0.3545069694519043, - -0.35585758090019226, - -0.3556532859802246, - -0.35389968752861023, - -0.350644588470459, - -0.3459767699241638, - -0.34002357721328735, - -0.33294740319252014, - -0.3249412775039673, - -0.31622353196144104, - -0.3070320188999176, - -0.29761743545532227, - -0.2882365882396698, - -0.27914538979530334, - -0.2705917954444885, - -0.2628090977668762, - -0.25600963830947876, - -0.25037887692451477, - -0.24607039988040924, - -0.24320173263549805, - -0.3545069694519043, - -0.3615029454231262, - -0.3667899966239929, - -0.3702239394187927, - -0.3717111349105835, - -0.3712109625339508, - -0.3687371015548706, - -0.364357054233551, - -0.3581902086734772, - -0.35040485858917236, - -0.3412133455276489, - -0.33086639642715454, - -0.3196462392807007, - -0.3078589141368866, - -0.2958259880542755, - -0.2838756740093231, - -0.27233392000198364, - -0.2615155577659607, - -0.251715749502182, - -0.24320173263549805, - -0.3545069694519043, - -0.36630791425704956, - -0.3762688636779785, - -0.3841181695461273, - -0.3896417021751404, - -0.3926887810230255, - -0.3931763172149658, - -0.391090989112854, - -0.3864896893501282, - -0.3794979155063629, - -0.3703064024448395, - -0.35916584730148315, - -0.34638017416000366, - -0.3322981297969818, - -0.3173038065433502, - -0.30180624127388, - -0.28622812032699585, - -0.2709944546222687, - -0.25652071833610535, - -0.24320173263549805, - -0.3545069694519043, - -0.36975181102752686, - -0.3830627501010895, - -0.3940766751766205, - -0.4024932086467743, - -0.4080827534198761, - -0.41069281101226807, - -0.4102522134780884, - -0.4067729711532593, - -0.40035000443458557, - -0.39115849137306213, - -0.37944915890693665, - -0.3655414283275604, - -0.34981462359428406, - -0.3326977789402008, - -0.3146577477455139, - -0.2961866557598114, - -0.27778831124305725, - -0.25996461510658264, - -0.24320173263549805, - -0.3545069694519043, - -0.3714614510536194, - -0.3864353895187378, - -0.39902031421661377, - -0.4088730216026306, - -0.4157246947288513, - -0.41938841342926025, - -0.41976433992385864, - -0.41684210300445557, - -0.4107014834880829, - -0.40150997042655945, - -0.38951829075813293, - -0.3750535249710083, - -0.35851022601127625, - -0.34033969044685364, - -0.32103756070137024, - -0.3011302947998047, - -0.28116095066070557, - -0.26167425513267517, - -0.24320173263549805, - -0.3545069694519043, - -0.37125155329704285, - -0.38602131605148315, - -0.39841338992118835, - -0.4080897569656372, - -0.4147864580154419, - -0.4183208644390106, - -0.4185965061187744, - -0.41560590267181396, - -0.4094306230545044, - -0.40023910999298096, - -0.38828209042549133, - -0.3738856911659241, - -0.3574426770210266, - -0.3394014835357666, - -0.32025429606437683, - -0.3005233407020569, - -0.2807468771934509, - -0.26146435737609863, - -0.24320173263549805, - -0.3545069694519043, - -0.36914485692977905, - -0.38186541199684143, - -0.3923216462135315, - -0.4002283215522766, - -0.4053697884082794, - -0.40760576725006104, - -0.406875342130661, - -0.40319836139678955, - -0.39667510986328125, - -0.3874835968017578, - -0.37587451934814453, - -0.36216452717781067, - -0.346727579832077, - -0.3299848139286041, - -0.31239286065101624, - -0.2944315969944, - -0.2765910029411316, - -0.2593576908111572, - -0.24320173263549805, - -0.3545069694519043, - -0.36536967754364014, - -0.3744180500507355, - -0.38140520453453064, - -0.3861406147480011, - -0.3884950578212738, - -0.38840436935424805, - -0.38587096333503723, - -0.3809639811515808, - -0.3738172650337219, - -0.3646257519721985, - -0.3536401391029358, - -0.3411601483821869, - -0.32752615213394165, - -0.3131100833415985, - -0.2983051538467407, - -0.28351515531539917, - -0.26914361119270325, - -0.2555825114250183, - -0.24320173263549805, - -0.3545069694519043, - -0.360335111618042, - -0.3644862174987793, - -0.36684706807136536, - -0.367353230714798, - -0.36599093675613403, - -0.362797349691391, - -0.3578595519065857, - -0.35131222009658813, - -0.34333401918411255, - -0.3341425061225891, - -0.3239884078502655, - -0.31314873695373535, - -0.301919162273407, - -0.29060596227645874, - -0.2795177698135376, - -0.2689570188522339, - -0.25921180844306946, - -0.2505479156970978, - -0.24320173263549805, - -0.3545069694519043, - -0.35458672046661377, - -0.3531462252140045, - -0.3502247929573059, - -0.34590211510658264, - -0.34029608964920044, - -0.33355966210365295, - -0.3258765637874603, - -0.31745633482933044, - -0.30852872133255005, - -0.2993372082710266, - -0.2901325225830078, - -0.28116574883461, - -0.27268147468566895, - -0.26491111516952515, - -0.25806665420532227, - -0.2523347735404968, - -0.24787181615829468, - -0.24479953944683075, - -0.24320173263549805, - -0.3545069694519043, - -0.3487474322319031, - -0.34162694215774536, - -0.33333972096443176, - -0.32411181926727295, - -0.3141949772834778, - -0.303859680891037, - -0.29338783025741577, - -0.2830651104450226, - -0.27317309379577637, - -0.26398158073425293, - -0.25574129819869995, - -0.24867703020572662, - -0.24298147857189178, - -0.2388099879026413, - -0.23627635836601257, - -0.2354496717453003, - -0.23635250329971313, - -0.23896025121212006, - -0.24320173263549805, - -0.3545069694519043, - -0.34345000982284546, - -0.33117663860321045, - -0.3180215656757355, - -0.30434364080429077, - -0.2905160188674927, - -0.2769158184528351, - -0.2639140784740448, - -0.2518653869628906, - -0.24109843373298645, - -0.231906920671463, - -0.2245415598154068, - -0.21920326352119446, - -0.21603763103485107, - -0.215131014585495, - -0.2165081799030304, - -0.220131516456604, - -0.22590219974517822, - -0.23366284370422363, - -0.24320173263549805, - -0.3545069694519043, - -0.3392685651779175, - -0.3229277431964874, - -0.3059302866458893, - -0.28873980045318604, - -0.27182522416114807, - -0.2556479275226593, - -0.24064916372299194, - -0.22723811864852905, - -0.21578055620193481, - -0.20658904314041138, - -0.19991430640220642, - -0.1959383636713028, - -0.1947697103023529, - -0.1964402198791504, - -0.20090430974960327, - -0.2080402374267578, - -0.2176533341407776, - -0.22948136925697327, - -0.24320173263549805, - -0.3545069694519043, - -0.3366561532020569, - -0.3177742063999176, - -0.2983761727809906, - -0.278991162776947, - -0.26014798879623413, - -0.24236062169075012, - -0.22611425817012787, - -0.2118520438671112, - -0.1999630331993103, - -0.19077152013778687, - -0.18452823162078857, - -0.18140345811843872, - -0.18148241937160492, - -0.18476299941539764, - -0.19115570187568665, - -0.20048612356185913, - -0.21249978244304657, - -0.22686897218227386, - -0.24320173263549805, - -0.3545069694519043, - -0.33589592576026917, - -0.3162744641304016, - -0.29617783427238464, - -0.27615422010421753, - -0.2567497789859772, - -0.23849385976791382, - -0.22188442945480347, - -0.20737451314926147, - -0.1953599452972412, - -0.18616843223571777, - -0.18005070090293884, - -0.17717361450195312, - -0.17761565744876862, - -0.1813647747039795, - -0.18831872940063477, - -0.19828778505325317, - -0.21100005507469177, - -0.22610872983932495, - -0.24320173263549805, - -0.3545069694519043, - -0.3370702266693115, - -0.31859102845191956, - -0.29957348108291626, - -0.28053632378578186, - -0.26199883222579956, - -0.2444666475057602, - -0.2284180223941803, - -0.21429072320461273, - -0.2024700939655304, - -0.19327858090400696, - -0.1869668960571289, - -0.18370722234249115, - -0.183588445186615, - -0.18661382794380188, - -0.1927008330821991, - -0.20168344676494598, - -0.21331661939620972, - -0.2272830307483673, - -0.24320173263549805, - -0.3545069694519043, - -0.3400518298149109, - -0.32447290420532227, - -0.30819517374038696, - -0.29166263341903687, - -0.27532631158828735, - -0.2596317529678345, - -0.24500706791877747, - -0.23185120522975922, - -0.22052299976348877, - -0.21133148670196533, - -0.2045273780822754, - -0.20029625296592712, - -0.19875353574752808, - -0.19994130730628967, - -0.2038271725177765, - -0.2103051245212555, - -0.21919846534729004, - -0.23026463389396667, - -0.24320173263549805, - -0.3545069694519043, - -0.3445175886154175, - -0.3332826495170593, - -0.3211085796356201, - -0.30832749605178833, - -0.29528799653053284, - -0.2823457717895508, - -0.2698538601398468, - -0.2581529915332794, - -0.24756237864494324, - -0.2383708655834198, - -0.2308291792869568, - -0.22514304518699646, - -0.22146755456924438, - -0.21990299224853516, - -0.22049200534820557, - -0.22321854531764984, - -0.2280082404613495, - -0.23473042249679565, - -0.24320173263549805, - -0.3545069694519043, - -0.3499836325645447, - -0.3440656363964081, - -0.3369143605232239, - -0.3287249505519867, - -0.31972071528434753, - -0.31014731526374817, - -0.3002658486366272, - -0.2903459072113037, - -0.2806580364704132, - -0.27146652340888977, - -0.2630220949649811, - -0.25555506348609924, - -0.24926911294460297, - -0.24433572590351105, - -0.24088945984840393, - -0.2390243411064148, - -0.23879119753837585, - -0.24019645154476166, - -0.24320173263549805, - -0.3545069694519043, - -0.35585758090019226, - -0.355653315782547, - -0.35389968752861023, - -0.350644588470459, - -0.3459767699241638, - -0.34002360701560974, - -0.33294743299484253, - -0.3249412775039673, - -0.3162235617637634, - -0.30703204870224, - -0.29761746525764465, - -0.2882366180419922, - -0.27914538979530334, - -0.2705917954444885, - -0.2628091275691986, - -0.25600963830947876, - -0.25037887692451477, - -0.24607039988040924, - -0.24320173263549805 - ], - "z": [ - -2.363379955291748, - -2.3553502559661865, - -2.337419033050537, - -2.3100757598876953, - -2.2740659713745117, - -2.2303719520568848, - -2.1801857948303223, - -2.124876022338867, - -2.0659518241882324, - -2.0050203800201416, - -1.9437435865402222, - -1.8837929964065552, - -1.8268038034439087, - -1.774330735206604, - -1.7278048992156982, - -1.6884955167770386, - -1.6574748754501343, - -1.6355890035629272, - -1.6234350204467773, - -1.6213444471359253, - -2.363379955291748, - -2.354768991470337, - -2.3362722396850586, - -2.30839467048645, - -2.2718966007232666, - -2.227773427963257, - -2.1772289276123047, - -2.1216418743133545, - -2.062528133392334, - -2.0015006065368652, - -1.9402239322662354, - -1.8803693056106567, - -1.8235695362091064, - -1.771373987197876, - -1.7252064943313599, - -1.686326265335083, - -1.6557939052581787, - -1.6344422101974487, - -1.6228537559509277, - -1.6213444471359253, - -2.363379955291748, - -2.3545725345611572, - -2.3358845710754395, - -2.307826519012451, - -2.27116322517395, - -2.2268950939178467, - -2.176229476928711, - -2.1205484867095947, - -2.061370849609375, - -2.0003108978271484, - -1.9390339851379395, - -1.8792119026184082, - -1.8224761486053467, - -1.7703745365142822, - -1.7243280410766602, - -1.6855930089950562, - -1.6552256345748901, - -1.6340545415878296, - -1.622657299041748, - -1.6213444471359253, - -2.363379955291748, - -2.3547821044921875, - -2.3362979888916016, - -2.3084325790405273, - -2.2719454765319824, - -2.2278318405151367, - -2.177295446395874, - -2.1217145919799805, - -2.062605142593384, - -2.001579761505127, - -1.9403029680252075, - -1.880446195602417, - -1.8236422538757324, - -1.7714405059814453, - -1.7252649068832397, - -1.6863750219345093, - -1.6558316946029663, - -1.6344680786132812, - -1.6228668689727783, - -1.6213444471359253, - -2.363379955291748, - -2.355375051498413, - -2.337467908859253, - -2.3101470470428467, - -2.274158000946045, - -2.230482339859009, - -2.180311441421509, - -2.125013589859009, - -2.0660974979400635, - -2.0051701068878174, - -1.9438931941986084, - -1.8839385509490967, - -1.8269413709640503, - -1.7744563817977905, - -1.7279154062271118, - -1.6885877847671509, - -1.6575462818145752, - -1.6356377601623535, - -1.623459815979004, - -1.6213444471359253, - -2.363379955291748, - -2.3562870025634766, - -2.3392672538757324, - -2.3127846717834473, - -2.277561664581299, - -2.2345592975616455, - -2.184950351715088, - -2.1300883293151855, - -2.071469306945801, - -2.010692596435547, - -1.949415683746338, - -1.889310359954834, - -1.8320159912109375, - -1.7790954113006592, - -1.731992244720459, - -1.6919913291931152, - -1.6601836681365967, - -1.637437105178833, - -1.624371886253357, - -1.6213444471359253, - -2.363379955291748, - -2.357419490814209, - -2.341500997543335, - -2.316058874130249, - -2.281787395477295, - -2.2396209239959717, - -2.1907100677490234, - -2.1363885402679443, - -2.078138589859009, - -2.0175487995147705, - -1.9562718868255615, - -1.895979642868042, - -1.8383163213729858, - -1.7848548889160156, - -1.7370538711547852, - -1.6962170600891113, - -1.6634581089019775, - -1.6396708488464355, - -1.6255042552947998, - -1.6213444471359253, - -2.363379955291748, - -2.358649253845215, - -2.3439273834228516, - -2.319615602493286, - -2.286376953125, - -2.2451186180114746, - -2.1969656944274902, - -2.1432318687438965, - -2.0853824615478516, - -2.024995803833008, - -1.9637190103530884, - -1.9032235145568848, - -1.8451595306396484, - -1.7911107540130615, - -1.7425516843795776, - -1.700806736946106, - -1.6670145988464355, - -1.6420972347259521, - -1.6267341375350952, - -1.6213444471359253, - -2.363379955291748, - -2.3598437309265137, - -2.346283197402954, - -2.323068857192993, - -2.2908334732055664, - -2.2504568099975586, - -2.2030398845672607, - -2.149876356124878, - -2.0924160480499268, - -2.0322265625, - -1.9709498882293701, - -1.91025710105896, - -1.8518040180206299, - -1.797184944152832, - -1.747889757156372, - -1.7052632570266724, - -1.6704679727554321, - -1.6444531679153442, - -1.627928376197815, - -1.6213444471359253, - -2.363379955291748, - -2.360872745513916, - -2.348313331604004, - -2.3260445594787598, - -2.2946739196777344, - -2.255056858062744, - -2.2082741260528564, - -2.155601978302002, - -2.0984771251678467, - -2.0384576320648193, - -1.9771809577941895, - -1.9163181781768799, - -1.8575297594070435, - -1.8024191856384277, - -1.7524898052215576, - -1.7091035842895508, - -1.6734437942504883, - -1.646483302116394, - -1.6289575099945068, - -1.6213444471359253, - -2.363379955291748, - -2.3616251945495605, - -2.3497977256774902, - -2.3282203674316406, - -2.2974817752838135, - -2.258420467376709, - -2.212101459503174, - -2.1597886085510254, - -2.1029088497161865, - -2.04301381111145, - -1.9817370176315308, - -1.9207500219345093, - -1.861716389656067, - -1.8062465190887451, - -1.755853295326233, - -1.7119115591049194, - -1.6756196022033691, - -1.6479676961898804, - -1.6297099590301514, - -1.6213444471359253, - -2.363379955291748, - -2.3620195388793945, - -2.3505756855010986, - -2.3293607234954834, - -2.2989532947540283, - -2.2601828575134277, - -2.214107036590576, - -2.161982536315918, - -2.105231285095215, - -2.045401096343994, - -1.9841243028640747, - -1.9230722188949585, - -1.86391019821167, - -1.808251976966858, - -1.7576158046722412, - -1.7133829593658447, - -1.6767598390579224, - -1.6487455368041992, - -1.6301043033599854, - -1.6213444471359253, - -2.363379955291748, - -2.3620128631591797, - -2.350562572479248, - -2.329341411590576, - -2.2989284992218018, - -2.260153293609619, - -2.2140731811523438, - -2.1619455814361572, - -2.105192184448242, - -2.045361042022705, - -1.9840842485427856, - -1.9230332374572754, - -1.8638732433319092, - -1.808218240737915, - -1.7575862407684326, - -1.7133581638336182, - -1.6767406463623047, - -1.6487324237823486, - -1.6300976276397705, - -1.6213444471359253, - -2.363379955291748, - -2.3616061210632324, - -2.349760055541992, - -2.328165054321289, - -2.297410488128662, - -2.2583346366882324, - -2.2120041847229004, - -2.159682035446167, - -2.1027960777282715, - -2.042897939682007, - -1.9816210269927979, - -1.9206372499465942, - -1.8616098165512085, - -1.8061491250991821, - -1.7557677030563354, - -1.7118401527404785, - -1.6755642890930176, - -1.6479299068450928, - -1.6296908855438232, - -1.6213444471359253, - -2.363379955291748, - -2.3608431816101074, - -2.348254919052124, - -2.3259589672088623, - -2.2945632934570312, - -2.2549245357513428, - -2.2081236839294434, - -2.155437469482422, - -2.0983028411865234, - -2.038278579711914, - -1.977001667022705, - -1.9161438941955566, - -1.8573651313781738, - -1.802268624305725, - -1.7523574829101562, - -1.7089930772781372, - -1.6733582019805908, - -1.6464248895645142, - -1.6289279460906982, - -1.6213444471359253, - -2.363379955291748, - -2.359806776046753, - -2.346210479736328, - -2.3229622840881348, - -2.290696144104004, - -2.2502920627593994, - -2.202852487564087, - -2.1496713161468506, - -2.0921990871429443, - -2.03200364112854, - -1.970726728439331, - -1.9100401401519775, - -1.8515989780426025, - -1.7969975471496582, - -1.7477251291275024, - -1.7051258087158203, - -1.6703613996505737, - -1.6443804502487183, - -1.6278915405273438, - -1.6213444471359253, - -2.363379955291748, - -2.358609199523926, - -2.34384822845459, - -2.3194994926452637, - -2.2862274646759033, - -2.2449393272399902, - -2.1967618465423584, - -2.1430087089538574, - -2.085146188735962, - -2.0247530937194824, - -1.9634761810302734, - -1.9029873609542847, - -1.8449363708496094, - -1.7909067869186401, - -1.7423723936080933, - -1.7006571292877197, - -1.6668987274169922, - -1.6420180797576904, - -1.6266940832138062, - -1.6213444471359253, - -2.363379955291748, - -2.3573803901672363, - -2.341423988342285, - -2.315946102142334, - -2.281641721725464, - -2.2394466400146484, - -2.190511465072632, - -2.136171579360962, - -2.077908754348755, - -2.017312526702881, - -1.9560357332229614, - -1.895749807357788, - -1.8380992412567139, - -1.7846565246582031, - -1.736879587173462, - -1.6960713863372803, - -1.6633453369140625, - -1.6395939588546753, - -1.6254651546478271, - -1.6213444471359253, - -2.363379955291748, - -2.3562533855438232, - -2.339200735092163, - -2.3126871585845947, - -2.2774360179901123, - -2.2344088554382324, - -2.184779167175293, - -2.1299009323120117, - -2.0712709426879883, - -2.010488510131836, - -1.9492117166519165, - -1.8891119956970215, - -1.8318285942077637, - -1.7789241075515747, - -1.731841802597046, - -1.6918656826019287, - -1.6600862741470337, - -1.6373705863952637, - -1.624338150024414, - -1.6213444471359253, - -2.363379955291748, - -2.3553502559661865, - -2.337419033050537, - -2.3100757598876953, - -2.2740659713745117, - -2.2303719520568848, - -2.1801857948303223, - -2.124876022338867, - -2.0659518241882324, - -2.0050203800201416, - -1.9437435865402222, - -1.8837929964065552, - -1.8268038034439087, - -1.7743306159973145, - -1.7278048992156982, - -1.6884955167770386, - -1.6574748754501343, - -1.6355890035629272, - -1.6234350204467773, - -1.6213444471359253 - ] - }, - { - "alphahull": 0, - "color": "#FECB52", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.3393365144729614, - 0.3486785292625427, - 0.35929355025291443, - 0.3708920478820801, - 0.3831576108932495, - 0.39575570821762085, - 0.4083426594734192, - 0.4205751419067383, - 0.4321194887161255, - 0.44266077876091003, - 0.4519115090370178, - 0.45961934328079224, - 0.4655739665031433, - 0.4696130156517029, - 0.47162631154060364, - 0.47155892848968506, - 0.4694126844406128, - 0.46524614095687866, - 0.45917296409606934, - 0.4513587951660156, - 0.3393365144729614, - 0.3410790264606476, - 0.34430184960365295, - 0.3489170968532562, - 0.354798823595047, - 0.3617866039276123, - 0.36968985199928284, - 0.378292977809906, - 0.3873613178730011, - 0.39664751291275024, - 0.40589821338653564, - 0.41486117243766785, - 0.42329180240631104, - 0.4309602379798889, - 0.4376572370529175, - 0.44320011138916016, - 0.44743773341178894, - 0.4502544701099396, - 0.4515734612941742, - 0.4513587951660156, - 0.3393365144729614, - 0.333373486995697, - 0.32910096645355225, - 0.326635479927063, - 0.3260442912578583, - 0.32734349370002747, - 0.330497682094574, - 0.3354208171367645, - 0.3419785797595978, - 0.34999212622642517, - 0.35924285650253296, - 0.3694784343242645, - 0.38041964173316956, - 0.39176806807518005, - 0.40321409702301025, - 0.41444557905197144, - 0.4251561164855957, - 0.43505358695983887, - 0.44386792182922363, - 0.4513587951660156, - 0.3393365144729614, - 0.3263969421386719, - 0.315338134765625, - 0.30646178126335144, - 0.3000100255012512, - 0.2961588203907013, - 0.2950132191181183, - 0.2966044843196869, - 0.30088919401168823, - 0.30775052309036255, - 0.31700122356414795, - 0.328389048576355, - 0.3416033089160919, - 0.356283575296402, - 0.3720294237136841, - 0.3884113132953644, - 0.40498241782188416, - 0.42129072546958923, - 0.4368913769721985, - 0.4513587951660156, - 0.3393365144729614, - 0.3209053575992584, - 0.30450475215911865, - 0.29058215022087097, - 0.2795172333717346, - 0.27161189913749695, - 0.26708173751831055, - 0.2660503387451172, - 0.26854580640792847, - 0.27450016140937805, - 0.28375089168548584, - 0.2960456609725952, - 0.3110491633415222, - 0.32835209369659424, - 0.34748250246047974, - 0.36791855096817017, - 0.3891027867794037, - 0.4104573726654053, - 0.43139979243278503, - 0.4513587951660156, - 0.3393365144729614, - 0.31749385595321655, - 0.2977748215198517, - 0.2807173430919647, - 0.2667866349220276, - 0.25636279582977295, - 0.24973006546497345, - 0.24706940352916718, - 0.24845339357852936, - 0.253844290971756, - 0.26309502124786377, - 0.2759532332420349, - 0.2920682430267334, - 0.31100043654441833, - 0.33223339915275574, - 0.35518795251846313, - 0.37923797965049744, - 0.4037274122238159, - 0.42798829078674316, - 0.4513587951660156, - 0.3393365144729614, - 0.3165321350097656, - 0.295877605676651, - 0.2779363989830017, - 0.2631978392601013, - 0.2520639896392822, - 0.24483852088451385, - 0.24171856045722961, - 0.24278920888900757, - 0.24802125990390778, - 0.25727200508117676, - 0.2702890634536743, - 0.28671741485595703, - 0.30610889196395874, - 0.3279345631599426, - 0.3515991270542145, - 0.3764570355415344, - 0.40183019638061523, - 0.42702656984329224, - 0.4513587951660156, - 0.3393365144729614, - 0.3181244134902954, - 0.2990187108516693, - 0.2825406491756439, - 0.2691396474838257, - 0.25918129086494446, - 0.2529371976852417, - 0.2505776286125183, - 0.25216707587242126, - 0.2576621174812317, - 0.2669128477573395, - 0.279666930437088, - 0.2955764830112457, - 0.3142075538635254, - 0.33505189418792725, - 0.35754096508026123, - 0.38106128573417664, - 0.40497130155563354, - 0.428618848323822, - 0.4513587951660156, - 0.3393365144729614, - 0.32209810614585876, - 0.30685776472091675, - 0.29403120279312134, - 0.2839682400226593, - 0.2769434452056885, - 0.27314841747283936, - 0.2726866602897644, - 0.2755707800388336, - 0.2817220985889435, - 0.29097282886505127, - 0.303070604801178, - 0.31768548488616943, - 0.33441880345344543, - 0.35281404852867126, - 0.37236955761909485, - 0.39255183935165405, - 0.412810355424881, - 0.4325925409793854, - 0.4513587951660156, - 0.3393365144729614, - 0.32802265882492065, - 0.31854525208473206, - 0.3111627995967865, - 0.30607670545578003, - 0.303425669670105, - 0.3032820522785187, - 0.3056497275829315, - 0.31046414375305176, - 0.31759393215179443, - 0.3268446624279022, - 0.3379639685153961, - 0.35064855217933655, - 0.36455243825912476, - 0.37929630279541016, - 0.3944779932498932, - 0.4096834361553192, - 0.4244978427886963, - 0.43851709365844727, - 0.4513587951660156, - 0.3393365144729614, - 0.33525601029396057, - 0.33281466364860535, - 0.33207905292510986, - 0.33306923508644104, - 0.3357582092285156, - 0.3400726318359375, - 0.34589478373527527, - 0.3530659079551697, - 0.3613903820514679, - 0.3706411123275757, - 0.3805657625198364, - 0.3908936381340027, - 0.4013429880142212, - 0.4116288125514984, - 0.4214705228805542, - 0.4305996894836426, - 0.4387672543525696, - 0.4457504451274872, - 0.4513587951660156, - 0.3393365144729614, - 0.34301435947418213, - 0.34811967611312866, - 0.3545132875442505, - 0.3620207607746124, - 0.37043726444244385, - 0.3795332908630371, - 0.3890606760978699, - 0.3987595736980438, - 0.4083653688430786, - 0.4176160991191864, - 0.4262593984603882, - 0.4340595304965973, - 0.4408036768436432, - 0.446307897567749, - 0.4504220485687256, - 0.4530339241027832, - 0.4540722966194153, - 0.45350879430770874, - 0.4513587951660156, - 0.3393365144729614, - 0.3504568934440613, - 0.36280179023742676, - 0.3760344684123993, - 0.38979393243789673, - 0.4037049114704132, - 0.4173879027366638, - 0.43046969175338745, - 0.44259345531463623, - 0.4534284770488739, - 0.4626792073249817, - 0.470093309879303, - 0.47546854615211487, - 0.4786582589149475, - 0.479575514793396, - 0.4781952500343323, - 0.474555104970932, - 0.4687544107437134, - 0.4609513282775879, - 0.4513587951660156, - 0.3393365144729614, - 0.3567771911621094, - 0.37526994943618774, - 0.3943104147911072, - 0.41337913274765015, - 0.431956022977829, - 0.4495343267917633, - 0.4656345844268799, - 0.47981756925582886, - 0.49169641733169556, - 0.500947117805481, - 0.5073174238204956, - 0.5106334090232849, - 0.5108047127723694, - 0.5078266263008118, - 0.5017804503440857, - 0.4928310513496399, - 0.48122256994247437, - 0.467271625995636, - 0.4513587951660156, - 0.3393365144729614, - 0.3612902760505676, - 0.38417303562164307, - 0.40736061334609985, - 0.43022051453590393, - 0.45212915539741516, - 0.47248896956443787, - 0.49074453115463257, - 0.5063979625701904, - 0.5190222263336182, - 0.5282729268074036, - 0.5338977575302124, - 0.5357433557510376, - 0.533759355545044, - 0.527999758720398, - 0.5186218023300171, - 0.5058812499046326, - 0.4901256263256073, - 0.47178471088409424, - 0.4513587951660156, - 0.3393365144729614, - 0.36350712180137634, - 0.38854625821113586, - 0.4137709140777588, - 0.4384930431842804, - 0.4620382785797119, - 0.4837643504142761, - 0.5030786395072937, - 0.5194543600082397, - 0.5324447154998779, - 0.5416954755783081, - 0.5469541549682617, - 0.5480774641036987, - 0.5450347065925598, - 0.5379089117050171, - 0.5268943309783936, - 0.5122915506362915, - 0.4944988489151001, - 0.47400155663490295, - 0.4513587951660156, - 0.3393365144729614, - 0.3631874918937683, - 0.387915700674057, - 0.4128466546535492, - 0.43730029463768005, - 0.4606095254421234, - 0.48213863372802734, - 0.5013002753257751, - 0.5175718069076538, - 0.5305094122886658, - 0.5397601127624512, - 0.5450716614723206, - 0.5462990999221802, - 0.543408989906311, - 0.536480188369751, - 0.5257015824317932, - 0.5113673210144043, - 0.49386832118034363, - 0.4736819267272949, - 0.4513587951660156, - 0.3393365144729614, - 0.36036601662635803, - 0.38234972953796387, - 0.4046879708766937, - 0.42677146196365356, - 0.4479977786540985, - 0.4677879214286804, - 0.48560211062431335, - 0.5009543895721436, - 0.5134260058403015, - 0.5226767063140869, - 0.5284542441368103, - 0.5306009650230408, - 0.5290583372116089, - 0.5238683819770813, - 0.5151727795600891, - 0.5032086372375488, - 0.4883023202419281, - 0.47086045145988464, - 0.4513587951660156, - 0.3393365144729614, - 0.3553484380245209, - 0.37245145440101624, - 0.39017900824546814, - 0.40804755687713623, - 0.42556965351104736, - 0.44226738810539246, - 0.45768529176712036, - 0.47140276432037354, - 0.48304569721221924, - 0.49229639768600464, - 0.4989026188850403, - 0.5026841163635254, - 0.5035377740859985, - 0.5014402866363525, - 0.4964488446712494, - 0.48869964480400085, - 0.47840404510498047, - 0.4658428728580475, - 0.4513587951660156, - 0.3393365144729614, - 0.3486785292625427, - 0.35929355025291443, - 0.3708920478820801, - 0.3831576108932495, - 0.39575567841529846, - 0.4083426296710968, - 0.4205751121044159, - 0.4321194589138031, - 0.44266074895858765, - 0.45191147923469543, - 0.45961931347846985, - 0.4655739665031433, - 0.4696130156517029, - 0.47162628173828125, - 0.47155892848968506, - 0.4694126844406128, - 0.46524614095687866, - 0.45917296409606934, - 0.4513587951660156 - ], - "y": [ - -0.33933645486831665, - -0.31794366240501404, - -0.2986622452735901, - -0.28201815485954285, - -0.26846539974212646, - -0.2583736777305603, - -0.2520182132720947, - -0.24957242608070374, - -0.2511029839515686, - -0.25656819343566895, - -0.2658189535140991, - -0.27860286831855774, - -0.29457131028175354, - -0.3132886588573456, - -0.33424437046051025, - -0.3568668067455292, - -0.3805389106273651, - -0.40461498498916626, - -0.4284382462501526, - -0.4513588547706604, - -0.33933645486831665, - -0.31651654839515686, - -0.29584693908691406, - -0.27789145708084106, - -0.26313987374305725, - -0.2519945800304413, - -0.24475955963134766, - -0.24163220822811127, - -0.2426978051662445, - -0.24792732298374176, - -0.25717806816101074, - -0.27019768953323364, - -0.28663110733032227, - -0.3060300052165985, - -0.32786527276039124, - -0.35154128074645996, - -0.37641221284866333, - -0.40179967880249023, - -0.427011102437973, - -0.4513588547706604, - -0.33933645486831665, - -0.3176451027393341, - -0.29807326197624207, - -0.2811548411846161, - -0.26735126972198486, - -0.2570391297340393, - -0.2504996657371521, - -0.24791128933429718, - -0.2493445724248886, - -0.2547604739665985, - -0.2640112042427063, - -0.27684444189071655, - -0.2929101586341858, - -0.31177011132240295, - -0.33290982246398926, - -0.3557526767253876, - -0.37967559695243835, - -0.40402600169181824, - -0.42813968658447266, - -0.4513588547706604, - -0.33933645486831665, - -0.32120704650878906, - -0.3050999641418457, - -0.29145464301109314, - -0.2806432247161865, - -0.2729606628417969, - -0.2686164975166321, - -0.2677292227745056, - -0.2703230381011963, - -0.2763271927833557, - -0.2855779528617859, - -0.29782289266586304, - -0.3127281069755554, - -0.32988694310188293, - -0.3488313555717468, - -0.36904463171958923, - -0.3899753987789154, - -0.4110527038574219, - -0.4317016005516052, - -0.4513588547706604, - -0.33933645486831665, - -0.3268163502216339, - -0.31616559624671936, - -0.30767473578453064, - -0.30157536268234253, - -0.29803383350372314, - -0.2971467971801758, - -0.2989383935928345, - -0.3033598065376282, - -0.3102904260158539, - -0.31954115629196167, - -0.3308596909046173, - -0.34393730759620667, - -0.35841724276542664, - -0.3739045560359955, - -0.38997676968574524, - -0.4061954915523529, - -0.42211833596229553, - -0.43731093406677246, - -0.4513588547706604, - -0.33933645486831665, - -0.3338651955127716, - -0.33007103204727173, - -0.3280574381351471, - -0.3278793394565582, - -0.3295416235923767, - -0.3329989016056061, - -0.33815687894821167, - -0.34487488865852356, - -0.3529696762561798, - -0.3622204065322876, - -0.3723747730255127, - -0.3831557631492615, - -0.39426934719085693, - -0.40541231632232666, - -0.41628074645996094, - -0.42657819390296936, - -0.4360237717628479, - -0.44435977935791016, - -0.4513588547706604, - -0.33933645486831665, - -0.34158971905708313, - -0.34530937671661377, - -0.35039395093917847, - -0.3567047417163849, - -0.3640695810317993, - -0.3722876310348511, - -0.38113468885421753, - -0.3903694748878479, - -0.3997400104999542, - -0.408990740776062, - -0.41786932945251465, - -0.4261336028575897, - -0.4335581064224243, - -0.43994030356407166, - -0.4451061487197876, - -0.44891470670700073, - -0.45126211643218994, - -0.4520843029022217, - -0.4513588547706604, - -0.33933645486831665, - -0.3491528630256653, - -0.36022934317588806, - -0.37226375937461853, - -0.3849278390407562, - -0.39787614345550537, - -0.4107555150985718, - -0.42321455478668213, - -0.4349134862422943, - -0.4455331563949585, - -0.4547838866710663, - -0.46241334080696106, - -0.46821343898773193, - -0.47202593088150024, - -0.4737468659877777, - -0.4733292758464813, - -0.4707845151424408, - -0.46618205308914185, - -0.45964741706848145, - -0.4513588547706604, - -0.33933645486831665, - -0.35573500394821167, - -0.37321409583091736, - -0.39129695296287537, - -0.40949028730392456, - -0.42729783058166504, - -0.44423386454582214, - -0.4598364233970642, - -0.47367990016937256, - -0.4853866696357727, - -0.4946373999118805, - -0.5011797547340393, - -0.504835307598114, - -0.505504310131073, - -0.503168523311615, - -0.49789169430732727, - -0.48981770873069763, - -0.47916683554649353, - -0.4662295877933502, - -0.4513588547706604, - -0.33933645486831665, - -0.36062291264533997, - -0.3828565776348114, - -0.40543097257614136, - -0.4277302920818329, - -0.4491463303565979, - -0.4690948724746704, - -0.4870317876338959, - -0.5024677515029907, - -0.5149818062782288, - -0.5242325663566589, - -0.5299676656723022, - -0.5320307016372681, - -0.5303653478622437, - -0.5250170230865479, - -0.5161316990852356, - -0.5039517283439636, - -0.4888092875480652, - -0.47111746668815613, - -0.4513588547706604, - -0.33933645486831665, - -0.3632868826389313, - -0.38811182975769043, - -0.4131341576576233, - -0.43767133355140686, - -0.4610540270805359, - -0.4826444089412689, - -0.5018535852432251, - -0.5181574821472168, - -0.5311115384101868, - -0.5403622984886169, - -0.5456573963165283, - -0.5468524694442749, - -0.5439148545265198, - -0.5369247198104858, - -0.5260727405548096, - -0.5116549134254456, - -0.4940645694732666, - -0.47378143668174744, - -0.4513588547706604, - -0.33933645486831665, - -0.363438218832016, - -0.38841038942337036, - -0.4135718047618866, - -0.4382361173629761, - -0.4617305099964142, - -0.4834141731262207, - -0.502695620059967, - -0.5190488696098328, - -0.5320279002189636, - -0.5412786602973938, - -0.5465487241744995, - -0.5476945042610168, - -0.544684648513794, - -0.5376012325286865, - -0.5266375541687012, - -0.5120925903320312, - -0.49436312913894653, - -0.47393277287483215, - -0.4513588547706604, - -0.33933645486831665, - -0.36106055974960327, - -0.38371989130973816, - -0.4066964387893677, - -0.4293634295463562, - -0.45110252499580383, - -0.471320778131485, - -0.48946669697761536, - -0.5050452947616577, - -0.5176315903663635, - -0.5268823504447937, - -0.5325451493263245, - -0.5344655513763428, - -0.5325912237167358, - -0.5269732475280762, - -0.5177648067474365, - -0.5052171945571899, - -0.48967263102531433, - -0.47155511379241943, - -0.4513588547706604, - -0.33933645486831665, - -0.35641151666641235, - -0.37454864382743835, - -0.3932531177997589, - -0.41201475262641907, - -0.43032172322273254, - -0.4476746916770935, - -0.4636003375053406, - -0.47766420245170593, - -0.48948270082473755, - -0.49873343110084534, - -0.5051640868186951, - -0.5085992217063904, - -0.5089451670646667, - -0.5061924457550049, - -0.5004161596298218, - -0.49177390336990356, - -0.48050135374069214, - -0.4669060707092285, - -0.4513588547706604, - -0.33933645486831665, - -0.3499948978424072, - -0.3618904948234558, - -0.374698668718338, - -0.38807013630867004, - -0.4016400873661041, - -0.41503840684890747, - -0.4278995990753174, - -0.4398728609085083, - -0.45063161849975586, - -0.45988234877586365, - -0.46737274527549744, - -0.4728984832763672, - -0.4763088524341583, - -0.47751080989837646, - -0.47647154331207275, - -0.47321945428848267, - -0.4678432047367096, - -0.4604894816875458, - -0.4513588547706604, - -0.33933645486831665, - -0.3425061106681824, - -0.3471171259880066, - -0.3530437648296356, - -0.3601243197917938, - -0.36816567182540894, - -0.3769485056400299, - -0.38623321056365967, - -0.3957665264606476, - -0.405288428068161, - -0.4145391583442688, - -0.4232664108276367, - -0.4312320947647095, - -0.43821895122528076, - -0.4440363943576813, - -0.44852572679519653, - -0.4515645205974579, - -0.4530698359012604, - -0.45300066471099854, - -0.4513588547706604, - -0.33933645486831665, - -0.3347565531730652, - -0.3318294286727905, - -0.3306349515914917, - -0.3312056362628937, - -0.33352595567703247, - -0.33753257989883423, - -0.34311628341674805, - -0.350124716758728, - -0.3583666980266571, - -0.3676174581050873, - -0.37762460112571716, - -0.38811516761779785, - -0.39880305528640747, - -0.4093966484069824, - -0.4196070432662964, - -0.42915570735931396, - -0.4377821683883667, - -0.44525113701820374, - -0.4513588547706604, - -0.33933645486831665, - -0.3275861144065857, - -0.317684143781662, - -0.3099006414413452, - -0.30444788932800293, - -0.3014746606349945, - -0.30106204748153687, - -0.30322128534317017, - -0.3078934848308563, - -0.31495124101638794, - -0.3242019712924957, - -0.33539336919784546, - -0.34822016954421997, - -0.3623324930667877, - -0.37734535336494446, - -0.392849326133728, - -0.4084213972091675, - -0.42363688349723816, - -0.43808069825172424, - -0.4513588547706604, - -0.33933645486831665, - -0.3217718005180359, - -0.3062140941619873, - -0.2930877208709717, - -0.2827507257461548, - -0.275485098361969, - -0.2714890241622925, - -0.27087143063545227, - -0.27364927530288696, - -0.2797467112541199, - -0.28899747133255005, - -0.3011491596698761, - -0.31587034463882446, - -0.33275943994522095, - -0.35135579109191895, - -0.3711521625518799, - -0.39160850644111633, - -0.4121668338775635, - -0.43226635456085205, - -0.4513588547706604, - -0.33933645486831665, - -0.31794366240501404, - -0.2986622452735901, - -0.28201815485954285, - -0.26846539974212646, - -0.2583736777305603, - -0.2520182132720947, - -0.24957241117954254, - -0.2511029839515686, - -0.25656819343566895, - -0.26581892371177673, - -0.27860286831855774, - -0.29457131028175354, - -0.3132886588573456, - -0.33424437046051025, - -0.3568668067455292, - -0.3805389106273651, - -0.40461498498916626, - -0.4284382164478302, - -0.4513588547706604 - ], - "z": [ - -2.2622432708740234, - -2.2693727016448975, - -2.2864935398101807, - -2.313138246536255, - -2.3485803604125977, - -2.391853094100952, - -2.4417757987976074, - -2.4969871044158936, - -2.555980682373047, - -2.617147445678711, - -2.678818941116333, - -2.7393128871917725, - -2.7969794273376465, - -2.8502449989318848, - -2.8976573944091797, - -2.937922477722168, - -2.969942808151245, - -2.992844343185425, - -3.006002426147461, - -3.0090584754943848, - -2.2622432708740234, - -2.2707266807556152, - -2.2891645431518555, - -2.3170535564422607, - -2.353632926940918, - -2.3979053497314453, - -2.448662519454956, - -2.5045204162597656, - -2.563955068588257, - -2.625345468521118, - -2.6870169639587402, - -2.7472875118255615, - -2.8045127391815186, - -2.8571317195892334, - -2.9037094116210938, - -2.9429752826690674, - -2.973857879638672, - -2.9955153465270996, - -3.007356643676758, - -3.0090584754943848, - -2.2622432708740234, - -2.2717132568359375, - -2.2911107540130615, - -2.319906234741211, - -2.3573145866394043, - -2.402315139770508, - -2.4536802768707275, - -2.510009288787842, - -2.569765567779541, - -2.6313188076019287, - -2.692990303039551, - -2.7530977725982666, - -2.8100016117095947, - -2.862149715423584, - -2.9081192016601562, - -2.9466567039489746, - -2.976710796356201, - -2.9974615573883057, - -3.008342981338501, - -3.0090584754943848, - -2.2622432708740234, - -2.2722256183624268, - -2.292121171951294, - -2.32138729095459, - -2.3592257499694824, - -2.404604434967041, - -2.4562854766845703, - -2.5128591060638428, - -2.572782278060913, - -2.634420156478882, - -2.696091651916504, - -2.7561144828796387, - -2.8128514289855957, - -2.8647546768188477, - -2.9104087352752686, - -2.948568105697632, - -2.97819185256958, - -2.998471975326538, - -3.0088553428649902, - -3.0090584754943848, - -2.2622432708740234, - -2.272207736968994, - -2.292086362838745, - -2.321336269378662, - -2.3591599464416504, - -2.4045255184173584, - -2.456195592880249, - -2.512760877609253, - -2.5726780891418457, - -2.6343131065368652, - -2.6959846019744873, - -2.7560105323791504, - -2.812753200531006, - -2.8646650314331055, - -2.910329818725586, - -2.9485020637512207, - -2.9781408309936523, - -2.9984371662139893, - -3.0088376998901367, - -3.0090584754943848, - -2.2622432708740234, - -2.2716622352600098, - -2.2910099029541016, - -2.319758653640747, - -2.357123851776123, - -2.4020867347717285, - -2.453420639038086, - -2.509725332260132, - -2.569464683532715, - -2.631009578704834, - -2.692681312561035, - -2.7527971267700195, - -2.8097174167633057, - -2.8618898391723633, - -2.907891035079956, - -2.9464662075042725, - -2.976562976837158, - -2.9973607063293457, - -3.0082919597625732, - -3.0090584754943848, - -2.2622432708740234, - -2.2706477642059326, - -2.289008855819702, - -2.3168253898620605, - -2.3533384799957275, - -2.397552490234375, - -2.448261022567749, - -2.5040812492370605, - -2.563490152359009, - -2.6248676776885986, - -2.6865391731262207, - -2.7468225955963135, - -2.8040735721588135, - -2.8567302227020264, - -2.9033565521240234, - -2.942680597305298, - -2.9736297130584717, - -2.9953596591949463, - -3.007277488708496, - -3.0090584754943848, - -2.2622432708740234, - -2.2692744731903076, - -2.286299705505371, - -2.312854290008545, - -2.3482136726379395, - -2.391413927078247, - -2.4412760734558105, - -2.4964404106140137, - -2.5554018020629883, - -2.6165525913238525, - -2.6782240867614746, - -2.738734245300293, - -2.7964327335357666, - -2.849745273590088, - -2.8972179889678955, - -2.9375557899475098, - -2.969658613204956, - -2.9926505088806152, - -3.005904197692871, - -3.0090584754943848, - -2.2622432708740234, - -2.267691135406494, - -2.2831759452819824, - -2.3082756996154785, - -2.3423051834106445, - -2.384336233139038, - -2.433222532272339, - -2.487630605697632, - -2.5460762977600098, - -2.6069655418395996, - -2.6686370372772217, - -2.7294087409973145, - -2.7876229286193848, - -2.8416919708251953, - -2.8901405334472656, - -2.931647300720215, - -2.9650800228118896, - -2.9895269870758057, - -3.0043208599090576, - -3.0090584754943848, - -2.2622432708740234, - -2.2660694122314453, - -2.2799766063690186, - -2.3035857677459717, - -2.3362526893615723, - -2.377086639404297, - -2.424973487854004, - -2.478606939315796, - -2.5365242958068848, - -2.5971453189849854, - -2.6588168144226074, - -2.7198565006256104, - -2.778599262237549, - -2.8334426879882812, - -2.8828909397125244, - -2.9255950450897217, - -2.960390090942383, - -2.9863274097442627, - -3.0026988983154297, - -3.0090584754943848, - -2.2622432708740234, - -2.26458477973938, - -2.277047872543335, - -2.299292802810669, - -2.3307127952575684, - -2.370450496673584, - -2.417422294616699, - -2.4703469276428223, - -2.527780532836914, - -2.5881564617156982, - -2.6498279571533203, - -2.7111127376556396, - -2.770339250564575, - -2.8258917331695557, - -2.8762547969818115, - -2.9200549125671387, - -2.956097364425659, - -2.983398675918579, - -3.0012145042419434, - -3.0090584754943848, - -2.2622432708740234, - -2.2633981704711914, - -2.274707317352295, - -2.2958621978759766, - -2.3262853622436523, - -2.365147352218628, - -2.4113879203796387, - -2.463745594024658, - -2.5207927227020264, - -2.580972671508789, - -2.6426444053649902, - -2.704125165939331, - -2.763737916946411, - -2.819857120513916, - -2.8709514141082764, - -2.9156274795532227, - -2.9526665210723877, - -2.981058120727539, - -3.000027894973755, - -3.0090584754943848, - -2.2622432708740234, - -2.262638568878174, - -2.2732086181640625, - -2.2936651706695557, - -2.3234503269195557, - -2.3617513179779053, - -2.4075236320495605, - -2.4595186710357666, - -2.5163180828094482, - -2.5763728618621826, - -2.6380443572998047, - -2.699650526046753, - -2.7595109939575195, - -2.815992832183838, - -2.867555618286133, - -2.912792444229126, - -2.950469732284546, - -2.9795594215393066, - -2.9992682933807373, - -3.0090584754943848, - -2.2622432708740234, - -2.262387752532959, - -2.272714138031006, - -2.292940378189087, - -2.322514772415161, - -2.360630750656128, - -2.4062485694885254, - -2.4581239223480225, - -2.5148417949676514, - -2.574854850769043, - -2.636526346206665, - -2.698173999786377, - -2.7581162452697754, - -2.8147177696228027, - -2.8664350509643555, - -2.9118568897247314, - -2.949744701385498, - -2.97906494140625, - -2.9990174770355225, - -3.0090584754943848, - -2.2622432708740234, - -2.2626733779907227, - -2.2732772827148438, - -2.2937660217285156, - -2.323580265045166, - -2.3619070053100586, - -2.407700777053833, - -2.459712505340576, - -2.5165233612060547, - -2.5765836238861084, - -2.6382551193237305, - -2.6998558044433594, - -2.759704828262329, - -2.8161702156066895, - -2.867711305618286, - -2.9129223823547363, - -2.9505703449249268, - -2.979628086090088, - -2.999303102493286, - -3.0090584754943848, - -2.2622432708740234, - -2.2634642124176025, - -2.2748372554779053, - -2.2960526943206787, - -2.326531171798706, - -2.3654417991638184, - -2.4117231369018555, - -2.4641122817993164, - -2.5211808681488037, - -2.581371784210205, - -2.643043279647827, - -2.7045133113861084, - -2.7641046047210693, - -2.820192337036133, - -2.871246099472046, - -2.9158735275268555, - -2.95285701751709, - -2.9811882972717285, - -3.000093936920166, - -3.0090584754943848, - -2.2622432708740234, - -2.264674425125122, - -2.2772250175476074, - -2.2995526790618896, - -2.331048011779785, - -2.370851993560791, - -2.417879343032837, - -2.470846652984619, - -2.5283095836639404, - -2.588700294494629, - -2.650371789932251, - -2.711641788482666, - -2.770838975906372, - -2.8263485431671143, - -2.8766562938690186, - -2.9203901290893555, - -2.956357002258301, - -2.9835758209228516, - -3.0013041496276855, - -3.0090584754943848, - -2.2622432708740234, - -2.2661733627319336, - -2.280181884765625, - -2.303886651992798, - -2.3366408348083496, - -2.377551555633545, - -2.4255025386810303, - -2.4791855812072754, - -2.5371367931365967, - -2.5977752208709717, - -2.6594467163085938, - -2.7204692363739014, - -2.7791779041290283, - -2.8339717388153076, - -2.8833558559417725, - -2.925983190536499, - -2.960690975189209, - -2.986532688140869, - -3.002803087234497, - -3.0090584754943848, - -2.2622432708740234, - -2.2677981853485107, - -2.2833869457244873, - -2.3085849285125732, - -2.3427040576934814, - -2.3848142623901367, - -2.4337666034698486, - -2.4882256984710693, - -2.546706199645996, - -2.6076128482818604, - -2.6692843437194824, - -2.730038642883301, - -2.7882180213928223, - -2.842235803604126, - -2.890618324279785, - -2.932046413421631, - -2.9653892517089844, - -2.9897379875183105, - -3.004427909851074, - -3.0090584754943848, - -2.2622432708740234, - -2.2693727016448975, - -2.2864935398101807, - -2.313138246536255, - -2.3485803604125977, - -2.391853094100952, - -2.4417757987976074, - -2.4969871044158936, - -2.555980682373047, - -2.617147445678711, - -2.678818941116333, - -2.7393128871917725, - -2.7969794273376465, - -2.8502449989318848, - -2.8976573944091797, - -2.937922477722168, - -2.969942808151245, - -2.992844343185425, - -3.006002426147461, - -3.0090584754943848 - ] - } - ], - "layout": { - "hovermode": false, - "margin": { - "b": 10, - "l": 0, - "r": 0, - "t": 10 - }, - "paper_bgcolor": "rgba(0,0,0,0)", - "scene": { - "aspectmode": "data", - "camera": { - "up": { - "x": 0, - "y": 1, - "z": 0 - } - }, - "xaxis": { - "showspikes": false, - "visible": false - }, - "yaxis": { - "showspikes": false, - "visible": false - }, - "zaxis": { - "showspikes": false, - "visible": false - } - }, - "showlegend": false, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - } - } - }, - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# COLLAPSED\n", - "fig = go.Figure(\n", - " data=[vis_rays] + vis.get_gaussian_ellipsoids_list(ray_samples.frustums.flatten().get_gaussian_blob()),\n", - " layout=webdocs_layout,\n", - ")\n", - "fig.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "nerfactory", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.8.12" - }, - "vscode": { - "interpreter": { - "hash": "34c28001ff35fb390494047002768a8182dcf55b1b11415165e62ea61557ab83" - } - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/docs/nerfology/model_components/visualize_spatial_distortions.ipynb b/docs/nerfology/model_components/visualize_spatial_distortions.ipynb deleted file mode 100644 index 5a0145fd..00000000 --- a/docs/nerfology/model_components/visualize_spatial_distortions.ipynb +++ /dev/null @@ -1,234427 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": { - "tags": [] - }, - "source": [ - "# Spatial Distortions\n", - "\n", - "If you are trying to reconstruct an object floating in an empty void, you can stop reading. However if you are trying to reconstruct a scene or object from images, you may wish to consider adding a spatial distortion.\n", - "\n", - "When rendering a target view of a scene, the camera will emit a camera ray for each pixel and query the scene at points along this ray. We can choose where to query these points using different [samplers](visualize_samplers.ipynb). These samplers have some notion of _bounds_ that define where the ray should start and terminate. If you know that everything in your scenes exists within some predefined bounds (ie. a cube that a room fits in) then the sampler will properly sample the entire space. If however the scene is unbounded (ie. an outdoor scene) defining where to stop sampling is challenging. One option to increase the far sampling distance to a large value (ie. 1km). Alternatively we can warp the space into a fixed volume. Below are supported distortions.\n" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "tags": [] - }, - "source": [ - "## Scene Contraction\n", - "\n", - "Contract unbounded space into a ball of radius 2. This contraction was proposed in [MipNeRF-360](https://jonbarron.info/mipnerf360/). Samples within the unit ball are not modified, whereas sample outside the unit ball are contracted to fit within the ball of radius 2.\n", - "\n", - "We use the following contraction equation:\n", - "\n", - "$$\n", - " f(x) = \\begin{cases}\n", - " x & ||x|| \\leq 1 \\\\\n", - " (2 - \\frac{1}{||x||})(\\frac{x}{||x||}) & ||x|| > 1\n", - " \\end{cases}\n", - "$$\n", - "\n", - "Below we visualize a ray before and after scene contraction. Visualized are 95% confidence intervals for the multivariate Gaussians for each sample location ([this guide](visualize_samples.ipynb) explains why the samples are represented by Gaussians).\n", - "We are also visualizing both a unit sphere and a radius 2 sphere.\n", - "\n", - "(before)=\n", - "### Before Contraction\n" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": { - "tags": [ - "remove-cell" - ] - }, - "outputs": [], - "source": [ - "# HIDDEN\n", - "import torch\n", - "import plotly.graph_objects as go\n", - "\n", - "torch.manual_seed(4)\n", - "\n", - "webdocs_layout = go.Layout(\n", - " scene=dict(\n", - " aspectmode=\"data\",\n", - " xaxis=dict(showspikes=False),\n", - " yaxis=dict(showspikes=False),\n", - " zaxis=dict(showspikes=False),\n", - " ),\n", - " scene_camera=dict(up=dict(x=0, y=1, z=0)),\n", - " margin=dict(r=0, b=10, l=0, t=10),\n", - " hovermode=False,\n", - " showlegend=False,\n", - " paper_bgcolor=\"rgba(0,0,0,0)\",\n", - ")" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": { - "tags": [ - "hide-input" - ] - }, - "outputs": [ - { - "data": { - "text/html": [ - " \n", - " " - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "marker": { - "color": "black", - "size": 2 - }, - "mode": "markers", - "name": "Means", - "type": "scatter3d", - "x": [ - -0.18384791910648346, - -0.40699541568756104, - -0.6454167366027832, - -0.8877694606781006, - -1.131659984588623, - -1.3763049840927124, - -1.6213752031326294, - -1.866708517074585, - -2.112215518951416, - -2.3578433990478516, - -2.6035590171813965, - -2.8493399620056152, - -3.0951709747314453, - -3.341041088104248, - -3.586942195892334 - ], - "y": [ - 0.21343474090099335, - 0.35488447546958923, - 0.5060160160064697, - 0.6596396565437317, - 0.8142380714416504, - 0.969314694404602, - 1.124660849571228, - 1.280173897743225, - 1.435797095298767, - 1.5914968252182007, - 1.7472519874572754, - 1.9030487537384033, - 2.0588769912719727, - 2.2147302627563477, - 2.370603084564209 - ], - "z": [ - -0.2624335289001465, - -0.12852880358695984, - 0.01454135775566101, - 0.15997058153152466, - 0.30632269382476807, - 0.45312750339508057, - 0.600187361240387, - 0.7474053502082825, - 0.8947274088859558, - 1.0421221256256104, - 1.1895692348480225, - 1.3370556831359863, - 1.484572172164917, - 1.6321120262145996, - 1.7796707153320312 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.1918720006942749, - -0.17236486077308655, - -0.15317094326019287, - -0.1348138153553009, - -0.1177942156791687, - -0.10257638990879059, - -0.08957543969154358, - -0.07914598286151886, - -0.07157253473997116, - -0.06706167012453079, - -0.06573642045259476, - -0.06763295084238052, - -0.07269951701164246, - -0.08079793304204941, - -0.0917072594165802, - -0.10512996464967728, - -0.12069988995790482, - -0.13799232244491577, - -0.1565355807542801, - -0.1758238524198532, - -0.1918720006942749, - -0.17117249965667725, - -0.15081876516342163, - -0.13136596977710724, - -0.11334474384784698, - -0.0972466692328453, - -0.0835108533501625, - -0.0725119560956955, - -0.064550019800663, - -0.05984222888946533, - -0.0585169792175293, - -0.06061043590307236, - -0.06606549024581909, - -0.07473333179950714, - -0.08637753874063492, - -0.10068050026893616, - -0.11725204437971115, - -0.13564014434814453, - -0.15534323453903198, - -0.1758238524198532, - -0.1918720006942749, - -0.1722114086151123, - -0.15286822617053986, - -0.1343700885772705, - -0.11722157150506973, - -0.1018904522061348, - -0.08879492431879044, - -0.07829218357801437, - -0.07066872715950012, - -0.06613252311944962, - -0.06480727344751358, - -0.06672914326190948, - -0.07184571772813797, - -0.08001741021871567, - -0.091021329164505, - -0.10455732047557831, - -0.12025615572929382, - -0.13768960535526276, - -0.15638212859630585, - -0.1758238524198532, - -0.1918720006942749, - -0.17536896467208862, - -0.15909722447395325, - -0.14350061118602753, - -0.129004567861557, - -0.11600451916456223, - -0.10485505312681198, - -0.09586029499769211, - -0.0892656221985817, - -0.08525092154741287, - -0.08392567187547684, - -0.08532603830099106, - -0.0894138291478157, - -0.09607753902673721, - -0.10513539612293243, - -0.11634032428264618, - -0.12938669323921204, - -0.14391860365867615, - -0.15953969955444336, - -0.1758238524198532, - -0.1918720006942749, - -0.18030303716659546, - -0.1688307821750641, - -0.1577681452035904, - -0.147416889667511, - -0.13805939257144928, - -0.1299508810043335, - -0.12331253290176392, - -0.11832544952630997, - -0.1151256412267685, - -0.11380039155483246, - -0.11438586562871933, - -0.11686606705188751, - -0.12117337435483932, - -0.1271902620792389, - -0.13475264608860016, - -0.1436542123556137, - -0.153652161359787, - -0.1644737720489502, - -0.1758238524198532, - -0.1918720006942749, - -0.18647892773151398, - -0.18101409077644348, - -0.17562654614448547, - -0.17046326398849487, - -0.16566509008407593, - -0.161362886428833, - -0.15767401456832886, - -0.15469910204410553, - -0.15251928567886353, - -0.1511940360069275, - -0.1507595181465149, - -0.15122753381729126, - -0.15258537232875824, - -0.15479595959186554, - -0.15779902040958405, - -0.1615126132965088, - -0.16583546996116638, - -0.17064964771270752, - -0.17582383751869202, - -0.1918720006942749, - -0.1932273656129837, - -0.19432690739631653, - -0.19514060020446777, - -0.1956462413072586, - -0.1958300769329071, - -0.19568707048892975, - -0.19522111117839813, - -0.1944449245929718, - -0.19337968528270721, - -0.19205443561077118, - -0.19050534069538116, - -0.18877464532852173, - -0.18690955638885498, - -0.1849609613418579, - -0.18298199772834778, - -0.1810266673564911, - -0.17914828658103943, - -0.17739810049533844, - -0.17582383751869202, - -0.1918720006942749, - -0.19981709122657776, - -0.20732657611370087, - -0.2141956388950348, - -0.2202368974685669, - -0.22528554499149323, - -0.22920389473438263, - -0.23188504576683044, - -0.23325586318969727, - -0.23327897489070892, - -0.2319537252187729, - -0.22931627929210663, - -0.22543857991695404, - -0.22042638063430786, - -0.21441642940044403, - -0.20757263898849487, - -0.2000817060470581, - -0.19214795529842377, - -0.1839878112077713, - -0.17582383751869202, - -0.1918719857931137, - -0.205533966422081, - -0.21860440075397491, - -0.23072676360607147, - -0.2415703982114792, - -0.250839501619339, - -0.25828129053115845, - -0.2636926770210266, - -0.2669261395931244, - -0.2678934335708618, - -0.2665681838989258, - -0.26298657059669495, - -0.2572462260723114, - -0.24950379133224487, - -0.23997041583061218, - -0.22890615463256836, - -0.21661284565925598, - -0.20342577993869781, - -0.18970468640327454, - -0.17582383751869202, - -0.1918719857931137, - -0.20975850522518158, - -0.22693823277950287, - -0.24294257164001465, - -0.25733497738838196, - -0.2697228193283081, - -0.2797682583332062, - -0.28719720244407654, - -0.29180708527565, - -0.2934720814228058, - -0.29214683175086975, - -0.2878674864768982, - -0.28075075149536133, - -0.2709907293319702, - -0.2588537335395813, - -0.24467073380947113, - -0.22882865369319916, - -0.21175961196422577, - -0.19392922520637512, - -0.17582383751869202, - -0.1918719857931137, - -0.21203289926052094, - -0.2314249873161316, - -0.24951928853988647, - -0.26582226157188416, - -0.27988916635513306, - -0.2913363575935364, - -0.29985150694847107, - -0.3052024245262146, - -0.3072430491447449, - -0.30591779947280884, - -0.30126282572746277, - -0.29340505599975586, - -0.2825588583946228, - -0.26902008056640625, - -0.2531580328941345, - -0.23540537059307098, - -0.2162463665008545, - -0.19620361924171448, - -0.17582383751869202, - -0.1918719857931137, - -0.21211068332195282, - -0.23157843947410583, - -0.2497442364692688, - -0.2661125361919403, - -0.2802368998527527, - -0.2917320132255554, - -0.30028432607650757, - -0.30566054582595825, - -0.30771404504776, - -0.306388795375824, - -0.3017209768295288, - -0.29383784532546997, - -0.28295451402664185, - -0.2693677842617035, - -0.2534483075141907, - -0.23563030362129211, - -0.21639981865882874, - -0.19628140330314636, - -0.17582383751869202, - -0.1918719857931137, - -0.2099834382534027, - -0.22738197445869446, - -0.2435930073261261, - -0.2581743597984314, - -0.27072829008102417, - -0.2809123396873474, - -0.2884487211704254, - -0.29313188791275024, - -0.2948340177536011, - -0.29350876808166504, - -0.2891922891139984, - -0.2820022702217102, - -0.27213484048843384, - -0.259859174489975, - -0.24551013112068176, - -0.2294790893793106, - -0.21220335364341736, - -0.19415415823459625, - -0.17582383751869202, - -0.1918719857931137, - -0.20588167011737823, - -0.2192903310060501, - -0.23173220455646515, - -0.24286793172359467, - -0.2523937225341797, - -0.2600497901439667, - -0.26562726497650146, - -0.2689740061759949, - -0.2699987292289734, - -0.26867347955703735, - -0.26503443717956543, - -0.25918081402778625, - -0.2512722909450531, - -0.24152463674545288, - -0.23020368814468384, - -0.21761828660964966, - -0.204111710190773, - -0.19005239009857178, - -0.17582383751869202, - -0.1918719857931137, - -0.20024988055229187, - -0.20818038284778595, - -0.21544715762138367, - -0.22185197472572327, - -0.22722014784812927, - -0.23140522837638855, - -0.23429308831691742, - -0.23580491542816162, - -0.23589950799942017, - -0.23457425832748413, - -0.23186533153057098, - -0.22784662246704102, - -0.22262772917747498, - -0.21635103225708008, - -0.20918773114681244, - -0.20133322477340698, - -0.19300176203250885, - -0.1844206154346466, - -0.17582383751869202, - -0.1918720006942749, - -0.19369837641716003, - -0.1952560544013977, - -0.19650255143642426, - -0.19740387797355652, - -0.19793541729450226, - -0.19808268547058105, - -0.19784167408943176, - -0.19721895456314087, - -0.19623148441314697, - -0.19490624964237213, - -0.19327935576438904, - -0.19139520823955536, - -0.18930518627166748, - -0.18706630170345306, - -0.1847396194934845, - -0.18238863348960876, - -0.1800774335861206, - -0.17786909639835358, - -0.17582383751869202, - -0.1918720006942749, - -0.18693707883358002, - -0.18191789090633392, - -0.1769513487815857, - -0.1721729338169098, - -0.1677129715681076, - -0.1636931300163269, - -0.16022305190563202, - -0.15739741921424866, - -0.155293270945549, - -0.15396803617477417, - -0.15345782041549683, - -0.15377658605575562, - -0.15491563081741333, - -0.15684384107589722, - -0.15950867533683777, - -0.162837415933609, - -0.16673927009105682, - -0.17110779881477356, - -0.17582383751869202, - -0.1918720006942749, - -0.1806986927986145, - -0.16961127519607544, - -0.15891221165657043, - -0.1488933265209198, - -0.1398279070854187, - -0.13196325302124023, - -0.12551385164260864, - -0.12065567076206207, - -0.11752121150493622, - -0.11619596183300018, - -0.11671608686447144, - -0.11906738579273224, - -0.12318573892116547, - -0.1289587914943695, - -0.13622908294200897, - -0.14479827880859375, - -0.15443265438079834, - -0.16486941277980804, - -0.1758238524198532, - -0.1918720006942749, - -0.17565925419330597, - -0.15966986119747162, - -0.14433999359607697, - -0.13008779287338257, - -0.11730203032493591, - -0.1063314750790596, - -0.09747534990310669, - -0.09097525477409363, - -0.08700849115848541, - -0.08568324148654938, - -0.08703567087650299, - -0.09102888405323029, - -0.09755396842956543, - -0.10643290728330612, - -0.11742354184389114, - -0.13022607564926147, - -0.14449124038219452, - -0.1598299741744995, - -0.1758238524198532, - -0.1918720006942749, - -0.17236486077308655, - -0.15317094326019287, - -0.1348138153553009, - -0.1177942156791687, - -0.10257638245820999, - -0.08957543224096298, - -0.07914597541093826, - -0.07157252728939056, - -0.0670616626739502, - -0.06573641300201416, - -0.06763294339179993, - -0.07269950956106186, - -0.08079792559146881, - -0.0917072594165802, - -0.10512995719909668, - -0.12069988995790482, - -0.13799232244491577, - -0.1565355807542801, - -0.1758238524198532 - ], - "y": [ - 0.2506425082683563, - 0.23783914744853973, - 0.2243700921535492, - 0.21060273051261902, - 0.19691263139247894, - 0.1836732178926468, - 0.17124561965465546, - 0.15996882319450378, - 0.15015044808387756, - 0.14205829799175262, - 0.13591310381889343, - 0.13188251852989197, - 0.13007643818855286, - 0.13054418563842773, - 0.1332729458808899, - 0.13818830251693726, - 0.14515621960163116, - 0.15398657321929932, - 0.16443853080272675, - 0.17622697353363037, - 0.2506425082683563, - 0.24082013964653015, - 0.2302507609128952, - 0.21922269463539124, - 0.20803672075271606, - 0.1969980150461197, - 0.1864076554775238, - 0.17655453085899353, - 0.1677073836326599, - 0.1601075828075409, - 0.1539624035358429, - 0.14943945407867432, - 0.1466621458530426, - 0.1457062065601349, - 0.1465977430343628, - 0.14931240677833557, - 0.1537761688232422, - 0.15986725687980652, - 0.16741952300071716, - 0.17622697353363037, - 0.2506425082683563, - 0.244810551404953, - 0.23812273144721985, - 0.23076149821281433, - 0.22292762994766235, - 0.2148348093032837, - 0.2067038118839264, - 0.19875642657279968, - 0.19120940566062927, - 0.18426865339279175, - 0.17812345921993256, - 0.17294147610664368, - 0.16886404156684875, - 0.16600237786769867, - 0.1644345372915268, - 0.16420330107212067, - 0.16531497240066528, - 0.16773922741413116, - 0.17140993475914001, - 0.17622697353363037, - 0.2506425082683563, - 0.24937795102596283, - 0.24713295698165894, - 0.24396875500679016, - 0.23997166752815247, - 0.23525072634220123, - 0.2299346923828125, - 0.2241685837507248, - 0.21810969710350037, - 0.211923286318779, - 0.2057780921459198, - 0.19984176754951477, - 0.19427619874477386, - 0.18923324346542358, - 0.18485045433044434, - 0.18124735355377197, - 0.1785222291946411, - 0.17674943804740906, - 0.17597733438014984, - 0.17622697353363037, - 0.2506425082683563, - 0.254027396440506, - 0.2563050091266632, - 0.25741323828697205, - 0.25732186436653137, - 0.25603336095809937, - 0.2535828649997711, - 0.25003722310066223, - 0.24549318850040436, - 0.24007466435432434, - 0.23392948508262634, - 0.22722524404525757, - 0.2201448529958725, - 0.2128814160823822, - 0.20563307404518127, - 0.19859755039215088, - 0.19196674227714539, - 0.18592151999473572, - 0.180626779794693, - 0.17622697353363037, - 0.2506425082683563, - 0.2582550346851349, - 0.264644980430603, - 0.2696380615234375, - 0.27309805154800415, - 0.27493059635162354, - 0.2750856578350067, - 0.2735590934753418, - 0.27039244771003723, - 0.2656721770763397, - 0.25952696800231934, - 0.25212451815605164, - 0.24366669356822968, - 0.23438423871994019, - 0.22453032433986664, - 0.21437373757362366, - 0.20419155061244965, - 0.19426149129867554, - 0.1848544329404831, - 0.17622697353363037, - 0.2506425082683563, - 0.2616027593612671, - 0.27124911546707153, - 0.2793184518814087, - 0.28559064865112305, - 0.28989461064338684, - 0.29211294651031494, - 0.2921851873397827, - 0.2901092767715454, - 0.2859418988227844, - 0.2797967195510864, - 0.2718413472175598, - 0.2622928023338318, - 0.2514115273952484, - 0.23949435353279114, - 0.22686633467674255, - 0.21387194097042084, - 0.20086561143398285, - 0.1882021576166153, - 0.17622697353363037, - 0.2506425082683563, - 0.2637077867984772, - 0.2754017412662506, - 0.28540539741516113, - 0.293445885181427, - 0.2993038594722748, - 0.30281955003738403, - 0.30389708280563354, - 0.30250704288482666, - 0.29868730902671814, - 0.29254212975502014, - 0.28423911333084106, - 0.2740046977996826, - 0.2621181309223175, - 0.24890360236167908, - 0.23472155630588531, - 0.21995887160301208, - 0.20501822233200073, - 0.19030717015266418, - 0.17622697353363037, - 0.2506425082683563, - 0.26434198021888733, - 0.27665284276008606, - 0.2872392535209656, - 0.2958124876022339, - 0.30213868618011475, - 0.306045264005661, - 0.3074256479740143, - 0.3062422275543213, - 0.3025272488594055, - 0.2963820695877075, - 0.2879742980003357, - 0.27753326296806335, - 0.2653438150882721, - 0.25173842906951904, - 0.2370881885290146, - 0.22179274260997772, - 0.20626932382583618, - 0.19094136357307434, - 0.17622697353363037, - 0.2506425082683563, - 0.2634366452693939, - 0.27486684918403625, - 0.28462135791778564, - 0.29243406653404236, - 0.2980918884277344, - 0.3014404773712158, - 0.3023884892463684, - 0.3009101152420044, - 0.29704558849334717, - 0.29090040922164917, - 0.2826421856880188, - 0.27249613404273987, - 0.2607390284538269, - 0.24769161641597748, - 0.23370975255966187, - 0.2191748321056366, - 0.20448334515094757, - 0.19003602862358093, - 0.17622697353363037, - 0.2506425082683563, - 0.26108986139297485, - 0.2702372968196869, - 0.27783530950546265, - 0.2836766541004181, - 0.2876019775867462, - 0.2895042300224304, - 0.28933149576187134, - 0.2870884835720062, - 0.282836377620697, - 0.276691198348999, - 0.26882052421569824, - 0.2594391107559204, - 0.2488027811050415, - 0.2372017204761505, - 0.2249523550271988, - 0.212388813495636, - 0.1998538076877594, - 0.18768924474716187, - 0.17622697353363037, - 0.2506425082683563, - 0.2575559616088867, - 0.2632659077644348, - 0.2676165699958801, - 0.27048930525779724, - 0.2718057334423065, - 0.2715299725532532, - 0.2696695029735565, - 0.2662751078605652, - 0.26143938302993774, - 0.25529420375823975, - 0.2480071783065796, - 0.23977713286876678, - 0.23082853853702545, - 0.22140547633171082, - 0.21176499128341675, - 0.20217005908489227, - 0.19288238883018494, - 0.18415534496307373, - 0.17622697353363037, - 0.2506425082683563, - 0.253217875957489, - 0.25470808148384094, - 0.2550724446773529, - 0.2543010711669922, - 0.2524149417877197, - 0.24946552515029907, - 0.2455333024263382, - 0.24072550237178802, - 0.2351732850074768, - 0.2290281057357788, - 0.22245757281780243, - 0.21564091742038727, - 0.20876409113407135, - 0.20201466977596283, - 0.1955767422914505, - 0.18962594866752625, - 0.18432459235191345, - 0.17981727421283722, - 0.17622697353363037, - 0.2506425082683563, - 0.24854573607444763, - 0.24549123644828796, - 0.24156230688095093, - 0.23686613142490387, - 0.2315308153629303, - 0.22570188343524933, - 0.21953833103179932, - 0.21320830285549164, - 0.2068844437599182, - 0.20073924958705902, - 0.19494035840034485, - 0.1896459460258484, - 0.1850004494190216, - 0.1811305433511734, - 0.17814181745052338, - 0.17611579596996307, - 0.17510773241519928, - 0.17514513432979584, - 0.17622697353363037, - 0.2506425082683563, - 0.24404582381248474, - 0.2366141527891159, - 0.22855019569396973, - 0.22007392346858978, - 0.2114165723323822, - 0.2028142660856247, - 0.19450163841247559, - 0.18670547008514404, - 0.17963841557502747, - 0.17349322140216827, - 0.16843754053115845, - 0.16460925340652466, - 0.16211281716823578, - 0.1610162854194641, - 0.1613496094942093, - 0.16310368478298187, - 0.16623064875602722, - 0.17064520716667175, - 0.17622697353363037, - 0.2506425082683563, - 0.2402057647705078, - 0.2290387749671936, - 0.21744614839553833, - 0.20574410259723663, - 0.19425183534622192, - 0.18328283727169037, - 0.17313629388809204, - 0.16408899426460266, - 0.15638771653175354, - 0.15024252235889435, - 0.14582104980945587, - 0.1432439088821411, - 0.14258138835430145, - 0.14385156333446503, - 0.14701978862285614, - 0.15199963748455048, - 0.15865527093410492, - 0.16680516302585602, - 0.17622697353363037, - 0.2506425082683563, - 0.23744170367717743, - 0.2235860377550125, - 0.20945347845554352, - 0.1954295039176941, - 0.18189668655395508, - 0.16922412812709808, - 0.15775752067565918, - 0.14780965447425842, - 0.13965186476707458, - 0.1335066854953766, - 0.12954172492027283, - 0.12786513566970825, - 0.12852269411087036, - 0.131496399641037, - 0.1367051899433136, - 0.14400696754455566, - 0.15320253372192383, - 0.16404108703136444, - 0.17622697353363037, - 0.2506425082683563, - 0.23605315387248993, - 0.22084681689739227, - 0.2054383009672165, - 0.19024790823459625, - 0.17568999528884888, - 0.1621616631746292, - 0.1500319242477417, - 0.13963162899017334, - 0.1312445104122162, - 0.1250993311405182, - 0.12136369943618774, - 0.12013953179121017, - 0.1214602142572403, - 0.1252897083759308, - 0.13152357935905457, - 0.13999179005622864, - 0.1504633128643036, - 0.16265255212783813, - 0.17622697353363037, - 0.2506425082683563, - 0.23619060218334198, - 0.22111797332763672, - 0.20583575963974, - 0.19076082110404968, - 0.17630437016487122, - 0.16286075115203857, - 0.15079665184020996, - 0.1404411494731903, - 0.13207674026489258, - 0.1259315460920334, - 0.12217321246862411, - 0.12090425938367844, - 0.12215930223464966, - 0.12590408325195312, - 0.1320365071296692, - 0.14038923382759094, - 0.15073445439338684, - 0.162789985537529, - 0.17622697353363037, - 0.2506425082683563, - 0.23783914744853973, - 0.2243700921535492, - 0.21060273051261902, - 0.19691264629364014, - 0.18367323279380798, - 0.17124563455581665, - 0.15996882319450378, - 0.15015044808387756, - 0.14205831289291382, - 0.13591311872005463, - 0.13188251852989197, - 0.13007643818855286, - 0.13054418563842773, - 0.1332729458808899, - 0.13818831741809845, - 0.14515621960163116, - 0.15398657321929932, - 0.16443853080272675, - 0.17622697353363037 - ], - "z": [ - -0.31510964035987854, - -0.32603126764297485, - -0.33521807193756104, - -0.34241950511932373, - -0.347439169883728, - -0.3501400649547577, - -0.3504485785961151, - -0.3483562469482422, - -0.34392017126083374, - -0.3372613787651062, - -0.3285614550113678, - -0.31805771589279175, - -0.30603674054145813, - -0.2928263545036316, - -0.27878692746162415, - -0.26430144906044006, - -0.24976497888565063, - -0.23557409644126892, - -0.2221158742904663, - -0.20975740253925323, - -0.31510964035987854, - -0.32410725951194763, - -0.3314225673675537, - -0.33685600757598877, - -0.3402594327926636, - -0.34153997898101807, - -0.3406626582145691, - -0.33765149116516113, - -0.3325885534286499, - -0.32561197876930237, - -0.31691205501556396, - -0.3067261278629303, - -0.2953319847583771, - -0.28304046392440796, - -0.2701868414878845, - -0.2571217119693756, - -0.24420148134231567, - -0.2317785769701004, - -0.2201918661594391, - -0.20975740253925323, - -0.31510964035987854, - -0.3211303651332855, - -0.32555001974105835, - -0.32824796438217163, - -0.3291507065296173, - -0.3282335698604584, - -0.3255215883255005, - -0.3210887014865875, - -0.31505587697029114, - -0.3075876235961914, - -0.298887699842453, - -0.28919342160224915, - -0.27876919507980347, - -0.26789936423301697, - -0.25688043236732483, - -0.24601298570632935, - -0.23559343814849854, - -0.22590602934360504, - -0.21721500158309937, - -0.20975740253925323, - -0.3151096701622009, - -0.3174231946468353, - -0.3182367980480194, - -0.3175281882286072, - -0.315316766500473, - -0.31166282296180725, - -0.3066660165786743, - -0.3004626929759979, - -0.29322201013565063, - -0.2851414978504181, - -0.2764415740966797, - -0.26735955476760864, - -0.25814318656921387, - -0.249043807387352, - -0.2403096854686737, - -0.23217904567718506, - -0.22487366199493408, - -0.2185928076505661, - -0.21350783109664917, - -0.20975740253925323, - -0.3151096701622009, - -0.3133874833583832, - -0.3102754056453705, - -0.305858314037323, - -0.30025672912597656, - -0.2936234176158905, - -0.2861393392086029, - -0.2780086100101471, - -0.2694530487060547, - -0.26070600748062134, - -0.25200608372688293, - -0.2435906082391739, - -0.23568910360336304, - -0.22851711511611938, - -0.22227029502391815, - -0.2171190083026886, - -0.2132037878036499, - -0.21063141524791718, - -0.20947209000587463, - -0.20975740253925323, - -0.3151096701622009, - -0.30946052074432373, - -0.30252858996391296, - -0.29450297355651855, - -0.2856025993824005, - -0.276070237159729, - -0.2661658823490143, - -0.2561597526073456, - -0.24632471799850464, - -0.23692910373210907, - -0.22822917997837067, - -0.22046226263046265, - -0.21384021639823914, - -0.20854367315769196, - -0.20471709966659546, - -0.20246487855911255, - -0.20184844732284546, - -0.20288461446762085, - -0.20554512739181519, - -0.20975740253925323, - -0.3151096701622009, - -0.30606788396835327, - -0.29583585262298584, - -0.2846927046775818, - -0.27294236421585083, - -0.2609054148197174, - -0.2489101141691208, - -0.23728370666503906, - -0.2263433188199997, - -0.21638739109039307, - -0.20768746733665466, - -0.2004808783531189, - -0.1949641853570938, - -0.19128790497779846, - -0.18955226242542267, - -0.18980464339256287, - -0.1920381486415863, - -0.19619187712669373, - -0.20215249061584473, - -0.20975740253925323, - -0.3151096701622009, - -0.303577184677124, - -0.2909224331378937, - -0.2774905562400818, - -0.26364797353744507, - -0.24977228045463562, - -0.23624193668365479, - -0.22342602908611298, - -0.21167415380477905, - -0.20130684971809387, - -0.19260694086551666, - -0.18581169843673706, - -0.18110650777816772, - -0.17861971259117126, - -0.17841914296150208, - -0.1805102527141571, - -0.1848360300064087, - -0.19127845764160156, - -0.19966180622577667, - -0.20975740253925323, - -0.3151096701622009, - -0.30225837230682373, - -0.28832077980041504, - -0.2736770510673523, - -0.2587266266345978, - -0.24387730658054352, - -0.22953416407108307, - -0.2160884141921997, - -0.2039068639278412, - -0.19332174956798553, - -0.18462184071540833, - -0.1780444085597992, - -0.17376890778541565, - -0.17191193997859955, - -0.17252415418624878, - -0.17558889091014862, - -0.181022509932518, - -0.18867680430412292, - -0.19834299385547638, - -0.20975740253925323, - -0.3151096701622009, - -0.3022543489933014, - -0.2883128523826599, - -0.2736653983592987, - -0.258711576461792, - -0.24385930597782135, - -0.22951367497444153, - -0.21606600284576416, - -0.2038831263780594, - -0.1932973563671112, - -0.1845974326133728, - -0.1780206859111786, - -0.1737464964389801, - -0.171891450881958, - -0.1725061535835266, - -0.17557385563850403, - -0.18101085722446442, - -0.1886688470840454, - -0.19833895564079285, - -0.20975740253925323, - -0.3151096701622009, - -0.30356553196907043, - -0.29089945554733276, - -0.2774568796157837, - -0.2636045217514038, - -0.24972021579742432, - -0.23618268966674805, - -0.22336122393608093, - -0.21160554885864258, - -0.2012363225221634, - -0.19253641366958618, - -0.18574309349060059, - -0.18104170262813568, - -0.17856046557426453, - -0.17836706340312958, - -0.18046678602695465, - -0.1848023384809494, - -0.19125548005104065, - -0.19965015351772308, - -0.20975740253925323, - -0.3151096701622009, - -0.3060498535633087, - -0.2958003282546997, - -0.2846406400203705, - -0.27287518978118896, - -0.26082491874694824, - -0.2488185316324234, - -0.23718352615833282, - -0.22623726725578308, - -0.2162783443927765, - -0.20757842063903809, - -0.2003748118877411, - -0.19486400485038757, - -0.1911962926387787, - -0.1894717812538147, - -0.1897374391555786, - -0.191986083984375, - -0.1961563527584076, - -0.20213447511196136, - -0.20975740253925323, - -0.3151096701622009, - -0.3094381093978882, - -0.3024843633174896, - -0.2944381833076477, - -0.28551897406578064, - -0.2759700417518616, - -0.26605188846588135, - -0.2560350298881531, - -0.24619269371032715, - -0.2367933839559555, - -0.2280934602022171, - -0.22033025324344635, - -0.21371550858020782, - -0.20842966437339783, - -0.20461690425872803, - -0.2023812234401703, - -0.20178362727165222, - -0.2028403878211975, - -0.20552271604537964, - -0.20975740253925323, - -0.3151096701622009, - -0.31336307525634766, - -0.31022727489471436, - -0.3057878017425537, - -0.30016571283340454, - -0.2935144007205963, - -0.2860153019428253, - -0.2778729200363159, - -0.269309401512146, - -0.2605583369731903, - -0.2518584132194519, - -0.2434469610452652, - -0.23555339872837067, - -0.2283930629491806, - -0.22216126322746277, - -0.21702799201011658, - -0.21313326060771942, - -0.21058329939842224, - -0.2094476968050003, - -0.20975740253925323, - -0.3151096701622009, - -0.3173994719982147, - -0.31818997859954834, - -0.3174595832824707, - -0.3152282238006592, - -0.31155675649642944, - -0.30654534697532654, - -0.30033066868782043, - -0.29308226704597473, - -0.2849978506565094, - -0.276297926902771, - -0.26721981167793274, - -0.2580111622810364, - -0.24892312288284302, - -0.2402036190032959, - -0.23209050297737122, - -0.2248050421476364, - -0.21854600310325623, - -0.21348409354686737, - -0.20975740253925323, - -0.31510964035987854, - -0.3211098909378052, - -0.32550957798957825, - -0.3281887173652649, - -0.3290742337703705, - -0.3281419575214386, - -0.32541733980178833, - -0.3209746778011322, - -0.31493517756462097, - -0.30746355652809143, - -0.298763632774353, - -0.289072722196579, - -0.27865517139434814, - -0.2677951157093048, - -0.25678882002830505, - -0.24593651294708252, - -0.2355341762304306, - -0.22586560249328613, - -0.21719449758529663, - -0.20975740253925323, - -0.31510964035987854, - -0.32409220933914185, - -0.33139291405677795, - -0.3368125557899475, - -0.34020334482192993, - -0.3414727747440338, - -0.34058621525764465, - -0.33756786584854126, - -0.33250004053115845, - -0.32552096247673035, - -0.31682103872299194, - -0.30663758516311646, - -0.2952483296394348, - -0.28296399116516113, - -0.27011963725090027, - -0.25706562399864197, - -0.24415801465511322, - -0.23174892365932465, - -0.2201768457889557, - -0.20975740253925323, - -0.31510964035987854, - -0.32602331042289734, - -0.3352023959159851, - -0.3423965573310852, - -0.34740951657295227, - -0.35010454058647156, - -0.350408136844635, - -0.34831202030181885, - -0.34387338161468506, - -0.3372132480144501, - -0.32851332426071167, - -0.31801092624664307, - -0.3059925138950348, - -0.2927859425544739, - -0.2787514328956604, - -0.2642717957496643, - -0.24974200129508972, - -0.235558420419693, - -0.2221079170703888, - -0.20975740253925323, - -0.31510964035987854, - -0.3266938626766205, - -0.33652523159980774, - -0.34433555603027344, - -0.3499118387699127, - -0.353101909160614, - -0.35381880402565, - -0.35204294323921204, - -0.34782275557518005, - -0.34127336740493774, - -0.33257347345352173, - -0.32196030020713806, - -0.3097234070301056, - -0.2961965799331665, - -0.28174877166748047, - -0.26677411794662476, - -0.25168102979660034, - -0.23688125610351562, - -0.22277848422527313, - -0.20975740253925323, - -0.31510964035987854, - -0.32603126764297485, - -0.33521807193756104, - -0.34241950511932373, - -0.347439169883728, - -0.3501400649547577, - -0.3504485487937927, - -0.3483562469482422, - -0.34392017126083374, - -0.3372613787651062, - -0.3285614550113678, - -0.31805771589279175, - -0.30603674054145813, - -0.2928263545036316, - -0.27878692746162415, - -0.26430144906044006, - -0.24976497888565063, - -0.23557409644126892, - -0.2221158742904663, - -0.20975740253925323 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.3819572329521179, - -0.3598332107067108, - -0.33899563550949097, - -0.3200129270553589, - -0.303402841091156, - -0.2896185517311096, - -0.2790359556674957, - -0.27194374799728394, - -0.26853543519973755, - -0.268903911113739, - -0.27303922176361084, - -0.28082844614982605, - -0.2920592129230499, - -0.3064251244068146, - -0.3235343396663666, - -0.3429201543331146, - -0.36405375599861145, - -0.38635873794555664, - -0.40922659635543823, - -0.43203359842300415, - -0.3819572329521179, - -0.3651365637779236, - -0.34945768117904663, - -0.33534830808639526, - -0.3231932520866394, - -0.31332412362098694, - -0.30601006746292114, - -0.3014506697654724, - -0.2997702360153198, - -0.30101463198661804, - -0.3051499128341675, - -0.3120632767677307, - -0.321566104888916, - -0.3333992660045624, - -0.3472399115562439, - -0.36271053552627563, - -0.3793891668319702, - -0.3968207836151123, - -0.414529949426651, - -0.43203359842300415, - -0.3819572329521179, - -0.3722997009754181, - -0.3635886013507843, - -0.35606151819229126, - -0.3499237596988678, - -0.345342755317688, - -0.3424435257911682, - -0.34130507707595825, - -0.3419584631919861, - -0.34438592195510864, - -0.3485212028026581, - -0.354251503944397, - -0.36142051219940186, - -0.36983269453048706, - -0.37925857305526733, - -0.38944104313850403, - -0.4001023471355438, - -0.41095170378685, - -0.4216931164264679, - -0.43203359842300415, - -0.3819572329521179, - -0.3805463910102844, - -0.37985703349113464, - -0.3799079358577728, - -0.38069769740104675, - -0.3822048008441925, - -0.38438814878463745, - -0.3871881365776062, - -0.3905284106731415, - -0.3943178951740265, - -0.3984531760215759, - -0.40282145142555237, - -0.4073035717010498, - -0.4117773175239563, - -0.41612061858177185, - -0.420214980840683, - -0.4239487946033478, - -0.4272201359272003, - -0.42993980646133423, - -0.43203359842300415, - -0.3819572329521179, - -0.38898298144340515, - -0.3965000808238983, - -0.4043034613132477, - -0.4121802747249603, - -0.41991564631462097, - -0.42729857563972473, - -0.43412771821022034, - -0.4402167499065399, - -0.44539958238601685, - -0.4495348632335663, - -0.4525097608566284, - -0.45424315333366394, - -0.45468777418136597, - -0.45383143424987793, - -0.45169755816459656, - -0.44834432005882263, - -0.443863183259964, - -0.43837636709213257, - -0.43203359842300415, - -0.3819572329521179, - -0.39669522643089294, - -0.41171419620513916, - -0.4266044497489929, - -0.4409598112106323, - -0.45438870787620544, - -0.4665248394012451, - -0.4770371913909912, - -0.48563894629478455, - -0.4920955300331116, - -0.496230810880661, - -0.49793198704719543, - -0.4971526265144348, - -0.49391403794288635, - -0.4883045256137848, - -0.48047709465026855, - -0.47064530849456787, - -0.45907729864120483, - -0.44608861207962036, - -0.43203359842300415, - -0.3819572329521179, - -0.40284737944602966, - -0.4238506853580475, - -0.44439423084259033, - -0.46391761302948, - -0.4818883240222931, - -0.49781614542007446, - -0.5112665891647339, - -0.5218728184700012, - -0.5293455123901367, - -0.5334807634353638, - -0.5341658592224121, - -0.5313820838928223, - -0.5252053141593933, - -0.5158041715621948, - -0.5034348964691162, - -0.4884350895881653, - -0.47121378779411316, - -0.4522407650947571, - -0.43203359842300415, - -0.3819572329521179, - -0.40677276253700256, - -0.4315944015979767, - -0.45574501156806946, - -0.47856587171554565, - -0.4994344711303711, - -0.5177816152572632, - -0.5331067442893982, - -0.5449919104576111, - -0.5531128644943237, - -0.5572481751441956, - -0.557284951210022, - -0.5532221794128418, - -0.545170783996582, - -0.5333502888679504, - -0.5180832147598267, - -0.4997858703136444, - -0.47895747423171997, - -0.45616617798805237, - -0.43203359842300415, - -0.3819572329521179, - -0.40804600715637207, - -0.43410614132881165, - -0.45942676067352295, - -0.48331719636917114, - -0.5051257610321045, - -0.5242576003074646, - -0.5401908159255981, - -0.5524908304214478, - -0.5608221292495728, - -0.5649573802947998, - -0.5647838711738586, - -0.5603063106536865, - -0.5516468286514282, - -0.5390415787696838, - -0.5228345394134521, - -0.5034676194190979, - -0.4814692437648773, - -0.4574394226074219, - -0.43203359842300415, - -0.3819572329521179, - -0.40652912855148315, - -0.4311137795448303, - -0.4550405442714691, - -0.4776567220687866, - -0.4983454942703247, - -0.5165424346923828, - -0.531751275062561, - -0.5435570478439331, - -0.5516377687454224, - -0.5557730197906494, - -0.5558500289916992, - -0.5518667101860046, - -0.5439316034317017, - -0.532261312007904, - -0.5171740651130676, - -0.4990813732147217, - -0.478476881980896, - -0.45592254400253296, - -0.43203359842300415, - -0.3819572329521179, - -0.40238651633262634, - -0.42294153571128845, - -0.44306159019470215, - -0.46219784021377563, - -0.4798283278942108, - -0.49547213315963745, - -0.5087025165557861, - -0.5191586017608643, - -0.5265551209449768, - -0.5306903719902039, - -0.5314515829086304, - -0.5288179516792297, - -0.5228613018989563, - -0.5137441158294678, - -0.5017151832580566, - -0.4871024489402771, - -0.4703046381473541, - -0.45177993178367615, - -0.43203359842300415, - -0.3819572329521179, - -0.3960670828819275, - -0.4104750454425812, - -0.42478805780410767, - -0.4386157691478729, - -0.4515809416770935, - -0.463329941034317, - -0.47354230284690857, - -0.481939435005188, - -0.48829224705696106, - -0.4924275279045105, - -0.4942324459552765, - -0.49365776777267456, - -0.49071913957595825, - -0.48549675941467285, - -0.47813308238983154, - -0.4688289165496826, - -0.45783814787864685, - -0.4454604685306549, - -0.43203359842300415, - -0.3819572329521179, - -0.38825562596321106, - -0.39506518840789795, - -0.40220019221305847, - -0.4094659984111786, - -0.41666439175605774, - -0.4235990643501282, - -0.4300808012485504, - -0.43593287467956543, - -0.44099557399749756, - -0.445130854845047, - -0.44822588562965393, - -0.4501962661743164, - -0.450988233089447, - -0.4505802094936371, - -0.4489832818508148, - -0.4462410509586334, - -0.4424282908439636, - -0.4376490116119385, - -0.43203359842300415, - -0.3819572329521179, - -0.37979865074157715, - -0.3783819079399109, - -0.37774568796157837, - -0.37790730595588684, - -0.3788623511791229, - -0.38058483600616455, - -0.38302773237228394, - -0.3861243724822998, - -0.3897903263568878, - -0.39392560720443726, - -0.3984173834323883, - -0.40314316749572754, - -0.4079740047454834, - -0.41277816891670227, - -0.41742458939552307, - -0.42178651690483093, - -0.42574501037597656, - -0.42919203639030457, - -0.43203359842300415, - -0.3819572329521179, - -0.3716125786304474, - -0.36223310232162476, - -0.3540745973587036, - -0.34735962748527527, - -0.3422713875770569, - -0.33894863724708557, - -0.3374820351600647, - -0.33791157603263855, - -0.34022554755210876, - -0.3443608283996582, - -0.35020458698272705, - -0.3575975000858307, - -0.3663378357887268, - -0.37618720531463623, - -0.3868769109249115, - -0.39811545610427856, - -0.40959617495536804, - -0.4210059642791748, - -0.43203359842300415, - -0.3819572329521179, - -0.3645845353603363, - -0.34836870431900024, - -0.3337520360946655, - -0.3211332857608795, - -0.3108566105365753, - -0.303202360868454, - -0.2983793020248413, - -0.296519011259079, - -0.29767224192619324, - -0.3018075227737427, - -0.3088120222091675, - -0.3184947371482849, - -0.3305915296077728, - -0.3447723984718323, - -0.36065056920051575, - -0.3777928948402405, - -0.3957318067550659, - -0.4139779210090637, - -0.43203359842300415, - -0.3819572329521179, - -0.35947608947753906, - -0.33829113841056824, - -0.31898027658462524, - -0.3020702302455902, - -0.2880222797393799, - -0.27721959352493286, - -0.2699568271636963, - -0.26643216609954834, - -0.26674169301986694, - -0.270876944065094, - -0.27872517704963684, - -0.2900722920894623, - -0.3046087622642517, - -0.32193806767463684, - -0.34158751368522644, - -0.3630211353302002, - -0.3856542408466339, - -0.4088694751262665, - -0.43203359842300415, - -0.3819572329521179, - -0.3568408191204071, - -0.33309251070022583, - -0.31136006116867065, - -0.2922362983226776, - -0.2762428820133209, - -0.26381605863571167, - -0.2552947402000427, - -0.2509114742279053, - -0.250785768032074, - -0.254921019077301, - -0.2632044553756714, - -0.27541017532348633, - -0.29120519757270813, - -0.3101586699485779, - -0.33175361156463623, - -0.3554009199142456, - -0.3804556131362915, - -0.4062342345714569, - -0.43203359842300415, - -0.3819572329521179, - -0.3569643199443817, - -0.33333614468574524, - -0.3117171823978424, - -0.29269716143608093, - -0.2767949104309082, - -0.2644442021846771, - -0.2559818625450134, - -0.25163882970809937, - -0.25153350830078125, - -0.2556688189506531, - -0.26393187046051025, - -0.2760973274707794, - -0.29183337092399597, - -0.31071069836616516, - -0.33221447467803955, - -0.35575804114341736, - -0.3806992471218109, - -0.4063577353954315, - -0.43203359842300415, - -0.3819572329521179, - -0.3598332107067108, - -0.33899563550949097, - -0.3200129270553589, - -0.3034028708934784, - -0.2896185517311096, - -0.2790359854698181, - -0.27194374799728394, - -0.26853543519973755, - -0.2689039409160614, - -0.27303922176361084, - -0.28082847595214844, - -0.2920592129230499, - -0.3064251244068146, - -0.3235343396663666, - -0.3429201543331146, - -0.36405378580093384, - -0.38635873794555664, - -0.40922659635543823, - -0.43203359842300415 - ], - "y": [ - 0.29578542709350586, - 0.28235092759132385, - 0.27089494466781616, - 0.26172998547554016, - 0.25510603189468384, - 0.2512037456035614, - 0.2501296401023865, - 0.2519129514694214, - 0.2565050721168518, - 0.26378071308135986, - 0.2735414505004883, - 0.285521000623703, - 0.29939258098602295, - 0.31477785110473633, - 0.3312571346759796, - 0.3483809232711792, - 0.36568209528923035, - 0.3826887309551239, - 0.3989369571208954, - 0.4139835238456726, - 0.29578542709350586, - 0.2783240079879761, - 0.26295095682144165, - 0.25008559226989746, - 0.240078866481781, - 0.23320376873016357, - 0.22964778542518616, - 0.2295079231262207, - 0.23278802633285522, - 0.23939859867095947, - 0.2491593062877655, - 0.26180392503738403, - 0.27698755264282227, - 0.294295996427536, - 0.3132571578025818, - 0.33335378766059875, - 0.35403770208358765, - 0.3747447431087494, - 0.3949100375175476, - 0.4139835238456726, - 0.29578542709350586, - 0.2762766480445862, - 0.2589120864868164, - 0.24416539072990417, - 0.2324388176202774, - 0.22405225038528442, - 0.21923445165157318, - 0.21811681985855103, - 0.22072985768318176, - 0.22700227797031403, - 0.23676300048828125, - 0.24974577128887177, - 0.2655964493751526, - 0.28388267755508423, - 0.30410560965538025, - 0.32571372389793396, - 0.34811750054359436, - 0.37070587277412415, - 0.3928626775741577, - 0.4139835238456726, - 0.29578542709350586, - 0.27643072605133057, - 0.2592160105705261, - 0.24461089074611664, - 0.23301374912261963, - 0.2247409224510193, - 0.22001807391643524, - 0.2189740091562271, - 0.22163724899291992, - 0.22793513536453247, - 0.2376958429813385, - 0.2506531774997711, - 0.26645365357398987, - 0.2846662998199463, - 0.3047942817211151, - 0.326288640499115, - 0.348563015460968, - 0.37100979685783386, - 0.3930167555809021, - 0.4139835238456726, - 0.29578542709350586, - 0.27876952290534973, - 0.2638297975063324, - 0.251373827457428, - 0.2417413592338562, - 0.23519514501094818, - 0.2319137454032898, - 0.2319866567850113, - 0.2354118973016739, - 0.24209605157375336, - 0.2518567740917206, - 0.2644278109073639, - 0.27946630120277405, - 0.29656195640563965, - 0.3152485191822052, - 0.33501628041267395, - 0.35532596707344055, - 0.3756236135959625, - 0.3953555226325989, - 0.4139835238456726, - 0.29578542709350586, - 0.2830395996570587, - 0.27225351333618164, - 0.2637213468551636, - 0.2576759159564972, - 0.25428205728530884, - 0.25363239645957947, - 0.255744606256485, - 0.26056107878685, - 0.26795047521591187, - 0.2777112126350403, - 0.28957700729370117, - 0.30322423577308655, - 0.3182806074619293, - 0.33433544635772705, - 0.35095080733299255, - 0.36767348647117615, - 0.3840472996234894, - 0.39962562918663025, - 0.4139835238456726, - 0.29578542709350586, - 0.28877824544906616, - 0.2835742235183716, - 0.2803153991699219, - 0.27909061312675476, - 0.27993327379226685, - 0.2828204333782196, - 0.28767329454421997, - 0.2943595349788666, - 0.30269670486450195, - 0.312457412481308, - 0.3233754336833954, - 0.3351529538631439, - 0.34746867418289185, - 0.35998669266700745, - 0.3723655343055725, - 0.38426753878593445, - 0.3953680396080017, - 0.4053642451763153, - 0.4139835238456726, - 0.29578542709350586, - 0.29536354541778564, - 0.2965652644634247, - 0.2993577718734741, - 0.3036648631095886, - 0.30936914682388306, - 0.3163149356842041, - 0.32431280612945557, - 0.3331446051597595, - 0.34256941080093384, - 0.35233011841773987, - 0.36216050386428833, - 0.37179243564605713, - 0.38096317648887634, - 0.38942253589630127, - 0.39693978428840637, - 0.4033098816871643, - 0.4083590507507324, - 0.4119495749473572, - 0.4139835238456726, - 0.29578542709350586, - 0.3020819425582886, - 0.3098187744617462, - 0.3187848627567291, - 0.32873567938804626, - 0.3393997550010681, - 0.35048621892929077, - 0.3616926670074463, - 0.3727133870124817, - 0.3832477629184723, - 0.3930085003376007, - 0.4017292857170105, - 0.40917229652404785, - 0.415134459733963, - 0.41945314407348633, - 0.422010600566864, - 0.4227370023727417, - 0.42161256074905396, - 0.4186679720878601, - 0.4139835238456726, - 0.29578542709350586, - 0.30820533633232117, - 0.32189854979515076, - 0.33649152517318726, - 0.3515862226486206, - 0.36677086353302, - 0.3816313147544861, - 0.3957621455192566, - 0.40877795219421387, - 0.4203236699104309, - 0.4300844073295593, - 0.43779388070106506, - 0.44324177503585815, - 0.44627952575683594, - 0.44682425260543823, - 0.44486111402511597, - 0.44044363498687744, - 0.4336923360824585, - 0.4247913658618927, - 0.4139835238456726, - 0.29578542709350586, - 0.3130702078342438, - 0.33149558305740356, - 0.35055893659591675, - 0.3697402775287628, - 0.3885163962841034, - 0.40637513995170593, - 0.4228293299674988, - 0.43743017315864563, - 0.44977936148643494, - 0.45954006910324097, - 0.4664461016654968, - 0.47030895948410034, - 0.4710233509540558, - 0.468569815158844, - 0.46301519870758057, - 0.45451104640960693, - 0.4432893693447113, - 0.4296562373638153, - 0.4139835238456726, - 0.29578542709350586, - 0.31614935398101807, - 0.33756986260414124, - 0.3594626784324646, - 0.38123059272766113, - 0.4022798538208008, - 0.4220363199710846, - 0.4399610459804535, - 0.45556509494781494, - 0.46842285990715027, - 0.4781835675239563, - 0.48458102345466614, - 0.48744070529937744, - 0.48668456077575684, - 0.4823332726955414, - 0.4745055139064789, - 0.4634147882461548, - 0.449363648891449, - 0.4327353835105896, - 0.4139835238456726, - 0.29578542709350586, - 0.317109078168869, - 0.33946314454078674, - 0.3622378706932068, - 0.38481199741363525, - 0.40656980872154236, - 0.4269177317619324, - 0.4453008472919464, - 0.46121758222579956, - 0.47423383593559265, - 0.4839945435523987, - 0.49023351073265076, - 0.492780476808548, - 0.491566002368927, - 0.48662319779396057, - 0.478086918592453, - 0.466189980506897, - 0.4512569308280945, - 0.43369510769844055, - 0.4139835238456726, - 0.29578542709350586, - 0.31584540009498596, - 0.3369702696800232, - 0.35858380794525146, - 0.3800964057445526, - 0.4009213149547577, - 0.42049044370651245, - 0.4382700026035309, - 0.4537750482559204, - 0.46658259630203247, - 0.4763433039188385, - 0.4827909469604492, - 0.48574966192245483, - 0.4851386547088623, - 0.4809747040271759, - 0.47337132692337036, - 0.46253591775894165, - 0.4487640857696533, - 0.4324314296245575, - 0.4139835238456726, - 0.29578542709350586, - 0.31249529123306274, - 0.33036139607429504, - 0.34889644384384155, - 0.367594838142395, - 0.38594651222229004, - 0.4034508764743805, - 0.4196305274963379, - 0.4340440332889557, - 0.4462983012199402, - 0.4560590088367462, - 0.4630599617958069, - 0.46711015701293945, - 0.46809911727905273, - 0.46599990129470825, - 0.4608697295188904, - 0.45284855365753174, - 0.4421551823616028, - 0.4290813207626343, - 0.4139835238456726, - 0.29578542709350586, - 0.3074217140674591, - 0.3203526735305786, - 0.334225594997406, - 0.34866198897361755, - 0.3632681369781494, - 0.3776456117630005, - 0.3914022147655487, - 0.4041627049446106, - 0.41557902097702026, - 0.4253397583961487, - 0.4331786334514618, - 0.43888184428215027, - 0.44229385256767273, - 0.44332155585289, - 0.4419369101524353, - 0.4381777048110962, - 0.43214648962020874, - 0.42400774359703064, - 0.4139835238456726, - 0.29578542709350586, - 0.301174521446228, - 0.3080286979675293, - 0.31616100668907166, - 0.3253495395183563, - 0.33534374833106995, - 0.3458709418773651, - 0.35664403438568115, - 0.3673691153526306, - 0.3777536451816559, - 0.3875143527984619, - 0.3963850140571594, - 0.4041236639022827, - 0.41051918268203735, - 0.41539713740348816, - 0.4186244606971741, - 0.42011311650276184, - 0.4198225140571594, - 0.41776055097579956, - 0.4139835238456726, - 0.29578542709350586, - 0.2944307029247284, - 0.2947250008583069, - 0.29666027426719666, - 0.3001837730407715, - 0.30519935488700867, - 0.3115702271461487, - 0.3191225826740265, - 0.32765042781829834, - 0.33692118525505066, - 0.3466818928718567, - 0.35666635632514954, - 0.36660221219062805, - 0.3762184679508209, - 0.3852527439594269, - 0.39345869421958923, - 0.40061241388320923, - 0.4065187871456146, - 0.4110167324542999, - 0.4139835238456726, - 0.29578542709350586, - 0.2879210114479065, - 0.281883180141449, - 0.2778366506099701, - 0.2758917808532715, - 0.27610161900520325, - 0.27846044301986694, - 0.28290390968322754, - 0.28931084275245667, - 0.2975064516067505, - 0.3072671592235565, - 0.31832677125930786, - 0.3303835690021515, - 0.3431086838245392, - 0.35615500807762146, - 0.36916667222976685, - 0.38178879022598267, - 0.3936769962310791, - 0.404507040977478, - 0.4139835238456726, - 0.29578542709350586, - 0.28235092759132385, - 0.27089494466781616, - 0.2617299556732178, - 0.25510600209236145, - 0.2512037456035614, - 0.2501296401023865, - 0.2519129514694214, - 0.2565050423145294, - 0.26378071308135986, - 0.2735414206981659, - 0.2855209708213806, - 0.29939258098602295, - 0.31477785110473633, - 0.3312571346759796, - 0.3483808934688568, - 0.36568209528923035, - 0.3826887309551239, - 0.3989369571208954, - 0.4139835238456726 - ], - "z": [ - -0.02437451481819153, - -0.039275988936424255, - -0.0566120445728302, - -0.0759098157286644, - -0.0966428816318512, - -0.11824570596218109, - -0.14012902975082397, - -0.1616959422826767, - -0.18235814571380615, - -0.20155200362205505, - -0.21875399351119995, - -0.23349487781524658, - -0.24537254869937897, - -0.25406304001808167, - -0.25932925939559937, - -0.26102760434150696, - -0.2591117322444916, - -0.25363388657569885, - -0.2447434961795807, - -0.23268309235572815, - -0.02437451481819153, - -0.04028604179620743, - -0.05860458314418793, - -0.07883049547672272, - -0.1004120409488678, - -0.12276052683591843, - -0.1452663689851761, - -0.16731564700603485, - -0.18830692768096924, - -0.20766761898994446, - -0.22486960887908936, - -0.23944365978240967, - -0.2509922385215759, - -0.2592003643512726, - -0.2638440728187561, - -0.26479676365852356, - -0.2620323896408081, - -0.2556264400482178, - -0.24575355648994446, - -0.23268309235572815, - -0.02437451481819153, - -0.039725758135318756, - -0.057499319314956665, - -0.07721038162708282, - -0.09832126647233963, - -0.12025613337755203, - -0.14241667091846466, - -0.1641983687877655, - -0.18500711023807526, - -0.2042752504348755, - -0.22147724032402039, - -0.23614384233951569, - -0.24787497520446777, - -0.25635066628456116, - -0.2613396942615509, - -0.2627059817314148, - -0.2604122757911682, - -0.2545211613178253, - -0.2451932728290558, - -0.23268309235572815, - -0.02437451481819153, - -0.03765587508678436, - -0.05341600626707077, - -0.07122503221035004, - -0.09059713780879974, - -0.11100392043590546, - -0.131888747215271, - -0.15268191695213318, - -0.17281626164913177, - -0.19174253940582275, - -0.20894452929496765, - -0.223952978849411, - -0.23635852336883545, - -0.2458227425813675, - -0.25208747386932373, - -0.2549818754196167, - -0.2544269561767578, - -0.25043785572052, - -0.2431233823299408, - -0.23268309235572815, - -0.024374522268772125, - -0.03430068492889404, - -0.046797141432762146, - -0.06152304261922836, - -0.07807666808366776, - -0.09600649774074554, - -0.11482346057891846, - -0.13401426374912262, - -0.15305544435977936, - -0.17142759263515472, - -0.18862956762313843, - -0.2041921615600586, - -0.2176908552646637, - -0.22875744104385376, - -0.23709005117416382, - -0.2424613982439041, - -0.24472495913505554, - -0.2438189834356308, - -0.23976819217205048, - -0.23268309235572815, - -0.024374522268772125, - -0.03002377599477768, - -0.03835998475551605, - -0.04915577918291092, - -0.062116652727127075, - -0.07688907533884048, - -0.09307010471820831, - -0.110218346118927, - -0.12786604464054108, - -0.14553183317184448, - -0.16273382306098938, - -0.1790027767419815, - -0.19389495253562927, - -0.2070041000843048, - -0.21797263622283936, - -0.22650137543678284, - -0.2323576956987381, - -0.2353818267583847, - -0.23549127578735352, - -0.23268309235572815, - -0.024374522268772125, - -0.025288619101047516, - -0.029018841683864594, - -0.03546343743801117, - -0.044446609914302826, - -0.05572332441806793, - -0.06898598372936249, - -0.08387282490730286, - -0.09997774660587311, - -0.1168614849448204, - -0.1340634673833847, - -0.15111447870731354, - -0.16754941642284393, - -0.18291997909545898, - -0.1968068778514862, - -0.20883134007453918, - -0.21866536140441895, - -0.22604069113731384, - -0.23075613379478455, - -0.23268309235572815, - -0.024374522268772125, - -0.020608343183994293, - -0.01978594809770584, - -0.0219297856092453, - -0.026981353759765625, - -0.0348028764128685, - -0.045180998742580414, - -0.057832635939121246, - -0.07241266965866089, - -0.08852341771125793, - -0.10572540014982224, - -0.12354940176010132, - -0.14150923490524292, - -0.1591149866580963, - -0.17588642239570618, - -0.1913660764694214, - -0.20513170957565308, - -0.2168077826499939, - -0.22607585787773132, - -0.23268309235572815, - -0.024374522268772125, - -0.01649012416601181, - -0.011661849915981293, - -0.010021410882472992, - -0.011613525450229645, - -0.01639479398727417, - -0.02423478662967682, - -0.03491964191198349, - -0.048157915472984314, - -0.06358850002288818, - -0.08079048991203308, - -0.09929464757442474, - -0.11859624087810516, - -0.13816876709461212, - -0.15747834742069244, - -0.175998255610466, - -0.19322332739830017, - -0.20868369936943054, - -0.22195762395858765, - -0.23268309235572815, - -0.024374522268772125, - -0.013380244374275208, - -0.005526907742023468, - -0.0010287612676620483, - -0.000008463859558105469, - -0.0024938732385635376, - -0.008417189121246338, - -0.01761683076620102, - -0.029841862618923187, - -0.04475882649421692, - -0.061960816383361816, - -0.08097859472036362, - -0.10129342973232269, - -0.12235117703676224, - -0.1435774266719818, - -0.16439318656921387, - -0.18423067033290863, - -0.20254874229431152, - -0.21884775161743164, - -0.23268309235572815, - -0.024374522268772125, - -0.01161569356918335, - -0.002045944333076477, - 0.004073664546012878, - 0.006576240062713623, - 0.005393505096435547, - 0.0005577206611633301, - -0.007799223065376282, - -0.01944933831691742, - -0.034074872732162476, - -0.05127686262130737, - -0.07058607041835785, - -0.09147581458091736, - -0.11337627470493317, - -0.13569004833698273, - -0.15780848264694214, - -0.1791282445192337, - -0.19906780123710632, - -0.21708320081233978, - -0.23268309235572815, - -0.024374522268772125, - -0.011387698352336884, - -0.0015961825847625732, - 0.00473293662071228, - 0.007427036762237549, - 0.006412610411643982, - 0.0017173439264297485, - -0.0065307095646858215, - -0.01810654252767563, - -0.03269442170858383, - -0.04989641159772873, - -0.06924327462911606, - -0.0902073085308075, - -0.11221664398908615, - -0.1346709281206131, - -0.1569576859474182, - -0.1784689724445343, - -0.19861802458763123, - -0.2168552130460739, - -0.23268309235572815, - -0.024374522268772125, - -0.012720964848995209, - -0.0042263418436050415, - 0.0008776187896728516, - 0.0024517327547073364, - 0.00045302510261535645, - -0.005063965916633606, - -0.013948746025562286, - -0.02595897763967514, - -0.04076705127954483, - -0.05796904116868973, - -0.07709570974111557, - -0.09762534499168396, - -0.11899794638156891, - -0.14063051342964172, - -0.16193298995494843, - -0.18232429027557373, - -0.2012481838464737, - -0.21818847954273224, - -0.23268309235572815, - -0.024374522268772125, - -0.015471018850803375, - -0.009651422500610352, - -0.007074512541294098, - -0.007810540497303009, - -0.011839449405670166, - -0.01905135065317154, - -0.02924949675798416, - -0.042155735194683075, - -0.05741800367832184, - -0.07461999356746674, - -0.0932924672961235, - -0.11292609572410583, - -0.13298533856868744, - -0.15292300283908844, - -0.17219525575637817, - -0.19027641415596008, - -0.206673264503479, - -0.2209385335445404, - -0.23268309235572815, - -0.024374522268772125, - -0.019339829683303833, - -0.017283521592617035, - -0.018261700868606567, - -0.022247672080993652, - -0.029132716357707977, - -0.03872903436422348, - -0.05077484995126724, - -0.06494159251451492, - -0.08084283024072647, - -0.09804481267929077, - -0.11607831716537476, - -0.13445144891738892, - -0.15266302227973938, - -0.17021626234054565, - -0.18663239479064941, - -0.20146360993385315, - -0.21430537104606628, - -0.22480733692646027, - -0.23268309235572815, - -0.024374522268772125, - -0.023908160626888275, - -0.026295572519302368, - -0.03147166222333908, - -0.039295196533203125, - -0.0495527908205986, - -0.06196465343236923, - -0.0761922150850296, - -0.09184737503528595, - -0.10850310325622559, - -0.12570509314537048, - -0.14298410713672638, - -0.15986880660057068, - -0.17589864134788513, - -0.19063633680343628, - -0.2036799192428589, - -0.21467357873916626, - -0.22331741452217102, - -0.2293756604194641, - -0.23268309235572815, - -0.024374522268772125, - -0.02868098020553589, - -0.03571102023124695, - -0.04527289420366287, - -0.05710577219724655, - -0.07088688015937805, - -0.08624030649662018, - -0.10274726897478104, - -0.11995746940374374, - -0.13740147650241852, - -0.15460345149040222, - -0.17109419405460358, - -0.1864238679409027, - -0.20017430186271667, - -0.21197043359279633, - -0.2214905023574829, - -0.22847481071949005, - -0.2327328622341156, - -0.23414848744869232, - -0.23268309235572815, - -0.024374522268772125, - -0.03314105421304703, - -0.044509515166282654, - -0.05816981941461563, - -0.07374931871891022, - -0.09082305431365967, - -0.10892532020807266, - -0.12756231427192688, - -0.1462256759405136, - -0.16440629959106445, - -0.18160828948020935, - -0.19736239314079285, - -0.21123892068862915, - -0.22285930812358856, - -0.23190662264823914, - -0.23813405632972717, - -0.24137172102928162, - -0.2415313571691513, - -0.23860856890678406, - -0.23268309235572815, - -0.02437451481819153, - -0.03680507838726044, - -0.051737621426582336, - -0.0687648355960846, - -0.08742225170135498, - -0.10720094293355942, - -0.12756140530109406, - -0.1479482650756836, - -0.16780540347099304, - -0.18659117817878723, - -0.20379316806793213, - -0.21894213557243347, - -0.23162487149238586, - -0.24149540066719055, - -0.2482845038175583, - -0.25180697441101074, - -0.2519667446613312, - -0.248759463429451, - -0.24227258563041687, - -0.23268309235572815, - -0.02437451481819153, - -0.03927599638700485, - -0.0566120445728302, - -0.075909823179245, - -0.0966428816318512, - -0.11824571341276169, - -0.14012904465198517, - -0.1616959422826767, - -0.18235814571380615, - -0.20155200362205505, - -0.21875399351119995, - -0.23349487781524658, - -0.24537254869937897, - -0.25406304001808167, - -0.25932925939559937, - -0.26102763414382935, - -0.2591117322444916, - -0.25363388657569885, - -0.2447434961795807, - -0.23268309235572815 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.6454167366027832, - -0.6684134006500244, - -0.6907827854156494, - -0.7119147181510925, - -0.731232762336731, - -0.7482099533081055, - -0.762383222579956, - -0.7733659744262695, - -0.78085857629776, - -0.7846566438674927, - -0.7846566438674927, - -0.78085857629776, - -0.7733659744262695, - -0.762383222579956, - -0.7482099533081055, - -0.731232762336731, - -0.7119147181510925, - -0.6907827854156494, - -0.6684134006500244, - -0.6454167366027832, - -0.6454167366027832, - -0.6607077717781067, - -0.675581693649292, - -0.6896328330039978, - -0.7024778127670288, - -0.71376633644104, - -0.7231904864311218, - -0.7304931879043579, - -0.7354751825332642, - -0.7380006313323975, - -0.7380006313323975, - -0.7354751825332642, - -0.7304931879043579, - -0.7231904864311218, - -0.71376633644104, - -0.7024778127670288, - -0.6896328330039978, - -0.675581693649292, - -0.6607077717781067, - -0.6454167366027832, - -0.6454167366027832, - -0.6513450741767883, - -0.6571117639541626, - -0.6625593900680542, - -0.6675394177436829, - -0.6719160079956055, - -0.6755697727203369, - -0.6784010529518127, - -0.680332601070404, - -0.6813116669654846, - -0.6813116669654846, - -0.680332601070404, - -0.6784010529518127, - -0.6755697727203369, - -0.6719160079956055, - -0.6675394177436829, - -0.6625593900680542, - -0.6571117639541626, - -0.6513450741767883, - -0.6454167366027832, - -0.6454167366027832, - -0.6413400173187256, - -0.6373744606971741, - -0.6336283087730408, - -0.6302037239074707, - -0.6271940469741821, - -0.6246815323829651, - -0.622734546661377, - -0.6214063167572021, - -0.6207329630851746, - -0.6207329630851746, - -0.6214063167572021, - -0.622734546661377, - -0.6246815323829651, - -0.6271940469741821, - -0.6302037239074707, - -0.6336283087730408, - -0.6373744606971741, - -0.6413400173187256, - -0.6454167366027832, - -0.6454167366027832, - -0.6317766904830933, - -0.6185086965560913, - -0.6059746742248535, - -0.5945165157318115, - -0.5844468474388123, - -0.5760402083396912, - -0.5695260167121887, - -0.5650818943977356, - -0.5628291368484497, - -0.5628291368484497, - -0.5650818943977356, - -0.5695260167121887, - -0.5760402083396912, - -0.5844468474388123, - -0.5945165157318115, - -0.6059746742248535, - -0.6185086965560913, - -0.6317766904830933, - -0.6454167366027832, - -0.6454167366027832, - -0.6236914992332458, - -0.6025587916374207, - -0.5825952291488647, - -0.5643451809883118, - -0.5483066439628601, - -0.5349169373512268, - -0.524541437625885, - -0.5174630880355835, - -0.5138749480247498, - -0.5138749480247498, - -0.5174630880355835, - -0.524541437625885, - -0.5349169373512268, - -0.5483065843582153, - -0.5643451809883118, - -0.5825952291488647, - -0.6025587916374207, - -0.6236914992332458, - -0.6454167366027832, - -0.6454167366027832, - -0.617960512638092, - -0.5912532806396484, - -0.5660234093666077, - -0.5429592132568359, - -0.5226898193359375, - -0.5057680606842041, - -0.49265557527542114, - -0.48370999097824097, - -0.4791753590106964, - -0.4791753590106964, - -0.48370999097824097, - -0.49265557527542114, - -0.5057680606842041, - -0.5226898193359375, - -0.5429592132568359, - -0.5660234093666077, - -0.5912532806396484, - -0.617960512638092, - -0.6454167366027832, - -0.6454167366027832, - -0.615204930305481, - -0.5858171582221985, - -0.5580551624298096, - -0.532676100730896, - -0.5103723406791687, - -0.4917522668838501, - -0.4773237109184265, - -0.46748030185699463, - -0.46249058842658997, - -0.46249058842658997, - -0.46748030185699463, - -0.4773237109184265, - -0.4917522668838501, - -0.5103723406791687, - -0.532676100730896, - -0.5580551624298096, - -0.5858171582221985, - -0.615204930305481, - -0.6454167366027832, - -0.6454167366027832, - -0.615723192691803, - -0.5868396162986755, - -0.559553861618042, - -0.5346101522445679, - -0.5126890540122986, - -0.4943884015083313, - -0.4802073836326599, - -0.4705328345298767, - -0.4656286835670471, - -0.4656286835670471, - -0.4705328345298767, - -0.4802073836326599, - -0.4943883717060089, - -0.5126890540122986, - -0.5346101522445679, - -0.559553861618042, - -0.5868396162986755, - -0.615723192691803, - -0.6454167366027832, - -0.6454167366027832, - -0.6194592118263245, - -0.5942097902297974, - -0.570357084274292, - -0.5485518574714661, - -0.5293888449668884, - -0.5133907794952393, - -0.5009940266609192, - -0.4925367534160614, - -0.48824965953826904, - -0.48824965953826904, - -0.4925367534160614, - -0.5009940266609192, - -0.5133907794952393, - -0.5293888449668884, - -0.5485518574714661, - -0.570357084274292, - -0.5942097902297974, - -0.6194592118263245, - -0.6454167366027832, - -0.6454167366027832, - -0.626008152961731, - -0.6071290373802185, - -0.5892942547798157, - -0.572990357875824, - -0.5586621165275574, - -0.5467002391815186, - -0.5374311208724976, - -0.5311075448989868, - -0.5279020667076111, - -0.5279020667076111, - -0.5311075448989868, - -0.5374311208724976, - -0.5467002391815186, - -0.5586620569229126, - -0.572990357875824, - -0.5892942547798157, - -0.6071290373802185, - -0.626008152961731, - -0.6454167366027832, - -0.6454167366027832, - -0.6346603631973267, - -0.6241973638534546, - -0.6143131256103516, - -0.605277419090271, - -0.5973365306854248, - -0.5907071828842163, - -0.5855701565742493, - -0.5820655822753906, - -0.5802890658378601, - -0.5802890658378601, - -0.5820655822753906, - -0.5855701565742493, - -0.5907071828842163, - -0.5973365306854248, - -0.605277419090271, - -0.6143131256103516, - -0.6241973638534546, - -0.6346603631973267, - -0.6454167366027832, - -0.6454167366027832, - -0.6444781422615051, - -0.6435651183128357, - -0.642702579498291, - -0.6419141292572021, - -0.6412211656570435, - -0.6406427025794983, - -0.6401944160461426, - -0.6398886442184448, - -0.639733612537384, - -0.639733612537384, - -0.6398886442184448, - -0.6401944160461426, - -0.6406427025794983, - -0.6412211656570435, - -0.6419141292572021, - -0.642702579498291, - -0.6435651183128357, - -0.6444781422615051, - -0.6454167366027832, - -0.6454167366027832, - -0.6543976068496704, - -0.6631335616111755, - -0.671386182308197, - -0.6789304614067078, - -0.6855605244636536, - -0.6910956501960754, - -0.6953847408294678, - -0.6983107924461365, - -0.6997940540313721, - -0.6997940540313721, - -0.6983107924461365, - -0.6953847408294678, - -0.6910956501960754, - -0.6855605840682983, - -0.6789304614067078, - -0.671386182308197, - -0.6631335616111755, - -0.6543976068496704, - -0.6454167366027832, - -0.6454167366027832, - -0.6633439064025879, - -0.6807820796966553, - -0.697255551815033, - -0.712315022945404, - -0.7255496382713318, - -0.7365984916687012, - -0.7451601028442383, - -0.7510010004043579, - -0.7539618015289307, - -0.7539618015289307, - -0.7510010004043579, - -0.7451601028442383, - -0.7365984916687012, - -0.7255496382713318, - -0.712315022945404, - -0.697255551815033, - -0.6807820796966553, - -0.6633439064025879, - -0.6454167366027832, - -0.6454167366027832, - -0.6703475117683411, - -0.6945981979370117, - -0.7175073623657227, - -0.7384501099586487, - -0.7568551301956177, - -0.7722203731536865, - -0.7841267585754395, - -0.7922495603561401, - -0.7963670492172241, - -0.7963670492172241, - -0.7922495603561401, - -0.7841267585754395, - -0.7722203731536865, - -0.7568551301956177, - -0.7384501099586487, - -0.7175073623657227, - -0.6945981979370117, - -0.6703475117683411, - -0.6454167366027832, - -0.6454167366027832, - -0.6746494770050049, - -0.7030847668647766, - -0.7299470901489258, - -0.754503607749939, - -0.7760845422744751, - -0.7941011786460876, - -0.8080620765686035, - -0.8175864815711975, - -0.8224145174026489, - -0.8224145174026489, - -0.8175864815711975, - -0.8080620765686035, - -0.7941011786460876, - -0.7760845422744751, - -0.754503607749939, - -0.7299470901489258, - -0.7030847668647766, - -0.6746494770050049, - -0.6454167366027832, - -0.6454167366027832, - -0.6757835745811462, - -0.7053221464157104, - -0.7332265973091125, - -0.7587358355522156, - -0.7811540365219116, - -0.7998696565628052, - -0.8143722414970398, - -0.8242661952972412, - -0.8292815089225769, - -0.8292815089225769, - -0.8242661952972412, - -0.8143722414970398, - -0.7998696565628052, - -0.7811540365219116, - -0.7587358951568604, - -0.7332265973091125, - -0.7053221464157104, - -0.6757835745811462, - -0.6454167366027832, - -0.6454167366027832, - -0.6736270189285278, - -0.7010678052902222, - -0.7269905805587769, - -0.7506881952285767, - -0.7715142965316772, - -0.7889007925987244, - -0.8023734092712402, - -0.8115646839141846, - -0.8162238597869873, - -0.8162238597869873, - -0.8115646839141846, - -0.8023734092712402, - -0.7889007925987244, - -0.7715142965316772, - -0.7506881952285767, - -0.7269905805587769, - -0.7010678052902222, - -0.6736270189285278, - -0.6454167366027832, - -0.6454167366027832, - -0.6684134006500244, - -0.6907827854156494, - -0.7119147181510925, - -0.731232762336731, - -0.7482099533081055, - -0.762383222579956, - -0.7733659148216248, - -0.7808585166931152, - -0.7846566438674927, - -0.7846566438674927, - -0.7808585166931152, - -0.7733659148216248, - -0.762383222579956, - -0.7482099533081055, - -0.731232762336731, - -0.7119147181510925, - -0.6907827854156494, - -0.6684134006500244, - -0.6454167366027832 - ], - "y": [ - 0.6323751211166382, - 0.6452291011810303, - 0.6542856693267822, - 0.6592978835105896, - 0.6601289510726929, - 0.6567562222480774, - 0.6492716670036316, - 0.637879490852356, - 0.6228904128074646, - 0.6047133207321167, - 0.5838440656661987, - 0.5608518123626709, - 0.5363637804985046, - 0.511047899723053, - 0.48559483885765076, - 0.46069878339767456, - 0.4370388686656952, - 0.4152604341506958, - 0.3959576487541199, - 0.37965691089630127, - 0.6323751211166382, - 0.6498134732246399, - 0.6633294820785522, - 0.6725543141365051, - 0.6772364377975464, - 0.6772481203079224, - 0.6725890636444092, - 0.663386344909668, - 0.6498908996582031, - 0.632470965385437, - 0.6116016507148743, - 0.5878522396087646, - 0.5618705749511719, - 0.5343652963638306, - 0.5060867667198181, - 0.47780629992485046, - 0.4502952992916107, - 0.42430421710014343, - 0.4005420506000519, - 0.37965691089630127, - 0.6323751211166382, - 0.652321457862854, - 0.6682769060134888, - 0.6798063516616821, - 0.6865952610969543, - 0.6884584426879883, - 0.6853450536727905, - 0.677340030670166, - 0.664661705493927, - 0.6476559638977051, - 0.6267867088317871, - 0.6026231050491333, - 0.5758242607116699, - 0.5471212863922119, - 0.5172970294952393, - 0.48716509342193604, - 0.4575473368167877, - 0.42925167083740234, - 0.4030499756336212, - 0.37965691089630127, - 0.6323751211166382, - 0.6524811387062073, - 0.6685919761657715, - 0.6802681088447571, - 0.6871911883354187, - 0.6891722083091736, - 0.6861572265625, - 0.678228497505188, - 0.6656022071838379, - 0.6486228704452515, - 0.6277535557746887, - 0.6035636067390442, - 0.5767127871513367, - 0.5479335188865662, - 0.5180108547210693, - 0.4877610206604004, - 0.45800912380218506, - 0.42956671118736267, - 0.4032096862792969, - 0.37965691089630127, - 0.6323751211166382, - 0.6502752304077148, - 0.6642404198646545, - 0.6738895773887634, - 0.6789596080780029, - 0.6793122291564941, - 0.6749377250671387, - 0.6659554839134216, - 0.6526105403900146, - 0.6352668404579163, - 0.6143975257873535, - 0.5905718803405762, - 0.5644397735595703, - 0.5367139577865601, - 0.5081508755683899, - 0.479529470205307, - 0.451630562543869, - 0.4252151548862457, - 0.40100380778312683, - 0.37965691089630127, - 0.6323751211166382, - 0.6459428668022156, - 0.6556938290596008, - 0.6613619327545166, - 0.6627926230430603, - 0.659946858882904, - 0.6529022455215454, - 0.6418509483337402, - 0.6270944476127625, - 0.6090352535247803, - 0.5881659388542175, - 0.5650558471679688, - 0.5403352379798889, - 0.5146784782409668, - 0.4887854754924774, - 0.463362455368042, - 0.4391029179096222, - 0.4166685938835144, - 0.39667144417762756, - 0.37965691089630127, - 0.6323751211166382, - 0.6399534940719604, - 0.6438784003257751, - 0.6440427303314209, - 0.6404421329498291, - 0.6331747174263, - 0.6224387288093567, - 0.6085270047187805, - 0.5918191075325012, - 0.5727707147598267, - 0.5519014000892639, - 0.5297804474830627, - 0.5070112943649292, - 0.4842149615287781, - 0.4620133340358734, - 0.4410119652748108, - 0.4217837452888489, - 0.4048531651496887, - 0.39068204164505005, - 0.37965691089630127, - 0.6323751211166382, - 0.6329560875892639, - 0.6300745010375977, - 0.6238088607788086, - 0.6143301725387573, - 0.6018969416618347, - 0.5868483185768127, - 0.5695948600769043, - 0.5506070852279663, - 0.5304029583930969, - 0.509533703327179, - 0.48856842517852783, - 0.4680790901184082, - 0.4486245810985565, - 0.4307355582714081, - 0.414900004863739, - 0.4015498161315918, - 0.39104920625686646, - 0.3836846351623535, - 0.37965691089630127, - 0.6323751211166382, - 0.6257089972496033, - 0.6157779693603516, - 0.6028528213500977, - 0.5872863531112671, - 0.5695029497146606, - 0.5499878525733948, - 0.529273271560669, - 0.5079243183135986, - 0.486523300409317, - 0.46565401554107666, - 0.44588565826416016, - 0.4277575612068176, - 0.41176408529281616, - 0.3983415961265564, - 0.3878561854362488, - 0.38059383630752563, - 0.37675267457962036, - 0.37643754482269287, - 0.37965691089630127, - 0.6323751211166382, - 0.6189975142478943, - 0.6025380492210388, - 0.5834457278251648, - 0.5622413158416748, - 0.5395032167434692, - 0.5158516764640808, - 0.49193185567855835, - 0.46839621663093567, - 0.4458867311477661, - 0.42501741647720337, - 0.4063575565814972, - 0.39041611552238464, - 0.3776279091835022, - 0.3683418333530426, - 0.3628111481666565, - 0.361186683177948, - 0.3635128140449524, - 0.3697260618209839, - 0.37965691089630127, - 0.6323751211166382, - 0.6135489344596863, - 0.5917895436286926, - 0.5676904320716858, - 0.5419090390205383, - 0.5151485800743103, - 0.48813900351524353, - 0.46161705255508423, - 0.4363062083721161, - 0.41289687156677246, - 0.3920275568962097, - 0.374267578125, - 0.3601013422012329, - 0.3499152660369873, - 0.34398722648620605, - 0.34247887134552, - 0.34543144702911377, - 0.3527643084526062, - 0.3642774820327759, - 0.37965691089630127, - 0.6323751211166382, - 0.6099537014961243, - 0.5846971869468689, - 0.5572944283485413, - 0.5284929275512695, - 0.49907833337783813, - 0.46985292434692383, - 0.4416140019893646, - 0.4151317775249481, - 0.39112865924835205, - 0.3702593445777893, - 0.35309314727783203, - 0.3400982618331909, - 0.3316291570663452, - 0.3279169201850891, - 0.3290627598762512, - 0.33503541350364685, - 0.34567195177078247, - 0.36068227887153625, - 0.37965691089630127, - 0.6323751211166382, - 0.608601450920105, - 0.5820295810699463, - 0.5533841848373413, - 0.5234467387199402, - 0.49303382635116577, - 0.46297505497932434, - 0.4340902864933014, - 0.4071674942970276, - 0.38294100761413574, - 0.3620717227458954, - 0.3451288342475891, - 0.3325745463371277, - 0.32475125789642334, - 0.32187244296073914, - 0.3240165710449219, - 0.3311251699924469, - 0.3430043160915375, - 0.3593299984931946, - 0.37965691089630127, - 0.6323751211166382, - 0.6096386909484863, - 0.5840757489204407, - 0.556383490562439, - 0.5273173451423645, - 0.49767017364501953, - 0.46825066208839417, - 0.4398612678050995, - 0.41327640414237976, - 0.3892212510108948, - 0.36835193634033203, - 0.35123777389526367, - 0.3383455276489258, - 0.33002689480781555, - 0.3265087902545929, - 0.3278871774673462, - 0.33412444591522217, - 0.34505048394203186, - 0.3603672385215759, - 0.37965691089630127, - 0.6323751211166382, - 0.6129530072212219, - 0.5906139612197876, - 0.5659672617912292, - 0.5396853089332581, - 0.5124849081039429, - 0.48510804772377014, - 0.45830151438713074, - 0.43279650807380676, - 0.4092887341976166, - 0.3884194493293762, - 0.3707578778266907, - 0.35678577423095703, - 0.3468843102455139, - 0.34132352471351624, - 0.34025514125823975, - 0.3437082767486572, - 0.35158872604370117, - 0.3636815547943115, - 0.37965691089630127, - 0.6323751211166382, - 0.61818528175354, - 0.6009357571601868, - 0.5810970067977905, - 0.5592103004455566, - 0.5358726382255554, - 0.5117204785346985, - 0.4874127507209778, - 0.46361249685287476, - 0.4409688711166382, - 0.42009955644607544, - 0.4015738368034363, - 0.3858970105648041, - 0.37349674105644226, - 0.3647112250328064, - 0.35978013277053833, - 0.3588380217552185, - 0.36191049218177795, - 0.36891382932662964, - 0.37965691089630127, - 0.6323751211166382, - 0.6247684359550476, - 0.6139225363731384, - 0.6001332402229309, - 0.583776593208313, - 0.5652989149093628, - 0.5452041625976562, - 0.5240404009819031, - 0.5023850202560425, - 0.4808286726474762, - 0.45995938777923584, - 0.440346360206604, - 0.42252469062805176, - 0.40698039531707764, - 0.39413756132125854, - 0.38434645533561707, - 0.3778741955757141, - 0.374897301197052, - 0.3754970133304596, - 0.37965691089630127, - 0.6323751211166382, - 0.6319891810417175, - 0.6281670928001404, - 0.6210129261016846, - 0.6107220649719238, - 0.5975750088691711, - 0.5819305181503296, - 0.5642152428627014, - 0.5449124574661255, - 0.5245486497879028, - 0.5036793947219849, - 0.4828738272190094, - 0.4626995027065277, - 0.443706750869751, - 0.4264136552810669, - 0.4112918972969055, - 0.39875394105911255, - 0.38914182782173157, - 0.3827177584171295, - 0.37965691089630127, - 0.6323751211166382, - 0.6390650272369385, - 0.64212566614151, - 0.6414735913276672, - 0.637126624584198, - 0.6292032599449158, - 0.6179196834564209, - 0.6035836935043335, - 0.5865862965583801, - 0.5673911571502686, - 0.5465218424797058, - 0.5245476365089417, - 0.5020679831504822, - 0.4796959459781647, - 0.4580419063568115, - 0.4376964569091797, - 0.4192145764827728, - 0.4031004309654236, - 0.3897935450077057, - 0.37965691089630127, - 0.6323751211166382, - 0.6452291011810303, - 0.6542856693267822, - 0.6592978835105896, - 0.6601289510726929, - 0.6567562222480774, - 0.6492716670036316, - 0.637879490852356, - 0.6228904724121094, - 0.6047133207321167, - 0.5838440656661987, - 0.5608518123626709, - 0.5363637804985046, - 0.5110479593276978, - 0.48559486865997314, - 0.46069878339767456, - 0.4370388686656952, - 0.4152604639530182, - 0.3959576487541199, - 0.37965691089630127 - ], - "z": [ - -0.11893750727176666, - -0.1033172458410263, - -0.0844821184873581, - -0.06294586509466171, - -0.039295971393585205, - -0.014177549630403519, - 0.011724255979061127, - 0.03770291060209274, - 0.06304977834224701, - 0.08707345277070999, - 0.10911864787340164, - 0.12858402729034424, - 0.1449386030435562, - 0.15773630142211914, - 0.16662800312042236, - 0.171371191740036, - 0.17183643579483032, - 0.1680111289024353, - 0.1599995344877243, - 0.14802022278308868, - -0.11893750727176666, - -0.09897737205028534, - -0.07592074573040009, - -0.050396524369716644, - -0.023100975900888443, - 0.0052213361486792564, - 0.03379789739847183, - 0.06184917688369751, - 0.08861003816127777, - 0.11335048079490662, - 0.13539567589759827, - 0.154144287109375, - 0.16908487677574158, - 0.17980994284152985, - 0.1860269010066986, - 0.18756617605686188, - 0.1843857765197754, - 0.1765725016593933, - 0.16433940827846527, - 0.14802022278308868, - -0.11893750727176666, - -0.09660320729017258, - -0.07123716920614243, - -0.043531302362680435, - -0.014241378754377365, - 0.015833653509616852, - 0.04587344825267792, - 0.07505858689546585, - 0.10259297490119934, - 0.1277255415916443, - 0.14977072179317474, - 0.16812722384929657, - 0.18229427933692932, - 0.19188550114631653, - 0.19663920998573303, - 0.19642578065395355, - 0.1912510097026825, - 0.18125607073307037, - 0.16671356558799744, - 0.14802022278308868, - -0.11893750727176666, - -0.09645203500986099, - -0.07093894481658936, - -0.04309416562318802, - -0.013677243143320084, - 0.016509391367435455, - 0.04664234817028046, - 0.07589969038963318, - 0.10348333418369293, - 0.12864086031913757, - 0.15068604052066803, - 0.16901758313179016, - 0.18313539028167725, - 0.19265440106391907, - 0.19731494784355164, - 0.19698990881443024, - 0.19168813526630402, - 0.18155430257320404, - 0.16686473786830902, - 0.14802022278308868, - -0.11893750727176666, - -0.09854023158550262, - -0.07505839318037033, - -0.04913247376680374, - -0.02146972343325615, - 0.007175303064286709, - 0.03602126985788345, - 0.06428132951259613, - 0.09118461608886719, - 0.11599725484848022, - 0.13804244995117188, - 0.15671886503696442, - 0.1715170294046402, - 0.18203333020210266, - 0.18798086047172546, - 0.18919743597507477, - 0.1856498271226883, - 0.17743484675884247, - 0.16477654874324799, - 0.14802022278308868, - -0.11893750727176666, - -0.1026415154337883, - -0.08314909040927887, - -0.06099189817905426, - -0.036774370819330215, - -0.011157095432281494, - 0.015161179006099701, - 0.041462548077106476, - 0.06702957302331924, - 0.09116485714912415, - 0.1132100522518158, - 0.13256382942199707, - 0.14869824051856995, - 0.16117322444915771, - 0.16964846849441528, - 0.1738927811384201, - 0.17379041016101837, - 0.16934415698051453, - 0.1606752574443817, - 0.14802022278308868, - -0.11893750727176666, - -0.10831145197153091, - -0.09433428943157196, - -0.0773872658610344, - -0.05793268233537674, - -0.0365012064576149, - -0.013677414506673813, - 0.009916115552186966, - 0.033635806292295456, - 0.05683465301990509, - 0.07887984812259674, - 0.09917005151510239, - 0.11715181171894073, - 0.1323346197605133, - 0.14430435001850128, - 0.15273447334766388, - 0.15739503502845764, - 0.15815895795822144, - 0.1550053209066391, - 0.14802022278308868, - -0.11893750727176666, - -0.11493560671806335, - -0.10740190744400024, - -0.09654189646244049, - -0.08265183866024017, - -0.06611061096191406, - -0.04736940562725067, - -0.026939429342746735, - -0.005377965047955513, - 0.016726840287446976, - 0.038772035390138626, - 0.06015628203749657, - 0.08029627054929733, - 0.09864263981580734, - 0.11469493806362152, - 0.12801530957221985, - 0.13824041187763214, - 0.14509133994579315, - 0.14838117361068726, - 0.14802022278308868, - -0.11893750727176666, - -0.1217961460351944, - -0.12093585729598999, - -0.11638008058071136, - -0.1082531288266182, - -0.09677667170763016, - -0.08226373791694641, - -0.0651102140545845, - -0.045784007757902145, - -0.024812273681163788, - -0.0027670804411172867, - 0.019750239327549934, - 0.042125485837459564, - 0.063748300075531, - 0.08402887731790543, - 0.10241402685642242, - 0.11840222030878067, - 0.1315573751926422, - 0.1415206342935562, - 0.14802022278308868, - -0.11893750727176666, - -0.1281496286392212, - -0.13346953690052032, - -0.1347520500421524, - -0.13196225464344025, - -0.12517623603343964, - -0.11457906663417816, - -0.10045984387397766, - -0.08320368081331253, - -0.06328128278255463, - -0.041236087679862976, - -0.0176694318652153, - 0.006775854155421257, - 0.03143296390771866, - 0.05562930926680565, - 0.07870488613843918, - 0.10003025084733963, - 0.11902371048927307, - 0.13516715168952942, - 0.14802022278308868, - -0.11893750727176666, - -0.1333075761795044, - -0.14364470541477203, - -0.1496669203042984, - -0.1512099802494049, - -0.14823177456855774, - -0.14081354439258575, - -0.1291576325893402, - -0.11358198523521423, - -0.0945114716887474, - -0.07246627658605576, - -0.048047736287117004, - -0.021921932697296143, - 0.005198489874601364, - 0.03257376700639725, - 0.059457167983055115, - 0.08511538058519363, - 0.10884853452444077, - 0.13000920414924622, - 0.14802022278308868, - -0.11893750727176666, - -0.1367110013961792, - -0.15035875141620636, - -0.15950842201709747, - -0.16391049325466156, - -0.1634448617696762, - -0.15812422335147858, - -0.14809373021125793, - -0.13362696766853333, - -0.11511856317520142, - -0.09307336062192917, - -0.0680927261710167, - -0.04085803031921387, - -0.012112196534872055, - 0.01736067235469818, - 0.04675665870308876, - 0.07527388632297516, - 0.10213448852300644, - 0.1266057789325714, - 0.14802022278308868, - -0.11893750727176666, - -0.13799113035202026, - -0.1528840959072113, - -0.16321009397506714, - -0.16868752241134644, - -0.1691669374704361, - -0.16463525593280792, - -0.15521612763404846, - -0.14116644859313965, - -0.12286946177482605, - -0.1008242592215538, - -0.07563219964504242, - -0.047980427742004395, - -0.0186232291162014, - 0.01163860410451889, - 0.04197963699698448, - 0.0715722143650055, - 0.09960915148258209, - 0.12532564997673035, - 0.14802022278308868, - -0.11893750727176666, - -0.13700923323631287, - -0.15094706416130066, - -0.16037076711654663, - -0.16502335667610168, - -0.16477788984775543, - -0.15964104235172272, - -0.14975297451019287, - -0.13538338243961334, - -0.1169242262840271, - -0.09487903118133545, - -0.06984913349151611, - -0.0425172820687294, - -0.013629015535116196, - 0.016027644276618958, - 0.04564378783106804, - 0.0744115337729454, - 0.10154618322849274, - 0.12630754709243774, - 0.14802022278308868, - -0.11893750727176666, - -0.13387168943881989, - -0.14475758373737335, - -0.1512981802225113, - -0.15331512689590454, - -0.15075337886810303, - -0.1436828225851059, - -0.1322963386774063, - -0.11690448224544525, - -0.09792713820934296, - -0.0758819431066513, - -0.05137024074792862, - -0.025060638785362244, - 0.0023292116820812225, - 0.030052147805690765, - 0.05735202506184578, - 0.08348412811756134, - 0.10773566365242004, - 0.12944507598876953, - 0.14802022278308868, - -0.11893750727176666, - -0.12891854345798492, - -0.13498637080192566, - -0.1369754523038864, - -0.13483156263828278, - -0.1286131888628006, - -0.11848992109298706, - -0.10473789274692535, - -0.08773224800825119, - -0.06793684512376785, - -0.0458916500210762, - -0.02219799906015396, - 0.002497805282473564, - 0.027522124350070953, - 0.052192360162734985, - 0.07583558559417725, - 0.09780684858560562, - 0.11750686913728714, - 0.13439823687076569, - 0.14802022278308868, - -0.11893750727176666, - -0.1226864904165268, - -0.1226922869682312, - -0.11895465850830078, - -0.11157563328742981, - -0.10075647383928299, - -0.08679228276014328, - -0.07006397098302841, - -0.051027849316596985, - -0.030203163623809814, - -0.008157970383763313, - 0.014506394043564796, - 0.037171728909015656, - 0.05921975523233414, - 0.080049067735672, - 0.09909152239561081, - 0.11582764983177185, - 0.1298009753227234, - 0.14063027501106262, - 0.14802022278308868, - -0.11893750727176666, - -0.11585091054439545, - -0.10920757055282593, - -0.0991886556148529, - -0.08606749773025513, - -0.07020200043916702, - -0.05202491581439972, - -0.0320320725440979, - -0.01076882891356945, - 0.011184798553586006, - 0.03322999179363251, - 0.05476541817188263, - 0.07520362734794617, - 0.0939871296286583, - 0.11060354858636856, - 0.12459965795278549, - 0.13559365272521973, - 0.14328567683696747, - 0.14746585488319397, - 0.14802022278308868, - -0.11893750727176666, - -0.10915254056453705, - -0.0959935262799263, - -0.07981938868761063, - -0.06107135862112045, - -0.04026080295443535, - -0.017955396324396133, - 0.005236451514065266, - 0.028682105243206024, - 0.05174203962087631, - 0.07378723472356796, - 0.09421635419130325, - 0.11247214674949646, - 0.12805664539337158, - 0.14054474234580994, - 0.14959579706192017, - 0.1549629122018814, - 0.1564997136592865, - 0.15416423976421356, - 0.14802022278308868, - -0.11893750727176666, - -0.1033172458410263, - -0.0844821110367775, - -0.06294585764408112, - -0.03929596394300461, - -0.014177538454532623, - 0.01172427088022232, - 0.03770292550325394, - 0.0630498006939888, - 0.08707347512245178, - 0.10911867022514343, - 0.12858405709266663, - 0.1449386179447174, - 0.15773631632328033, - 0.16662801802158356, - 0.171371191740036, - 0.17183645069599152, - 0.1680111289024353, - 0.1599995344877243, - 0.14802022278308868 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.7257016897201538, - -0.7510854005813599, - -0.7801973819732666, - -0.8122437000274658, - -0.8463501930236816, - -0.881586492061615, - -0.9169914126396179, - -0.9515992403030396, - -0.9844659566879272, - -1.0146950483322144, - -1.0414619445800781, - -1.06403648853302, - -1.0818029642105103, - -1.0942766666412354, - -1.101117491722107, - -1.102138638496399, - -1.097312331199646, - -1.0867702960968018, - -1.0708000659942627, - -1.0498372316360474, - -0.7257016897201538, - -0.7498297691345215, - -0.7777204513549805, - -0.8086130023002625, - -0.841664731502533, - -0.8759740591049194, - -0.9106051921844482, - -0.9446133375167847, - -0.9770709872245789, - -1.0070927143096924, - -1.0338596105575562, - -1.0566415786743164, - -1.0748170614242554, - -1.0878905057907104, - -1.0955051183700562, - -1.097453236579895, - -1.0936816930770874, - -1.0842933654785156, - -1.0695444345474243, - -1.0498372316360474, - -0.7257016897201538, - -0.7461990714073181, - -0.7705580592155457, - -0.7981143593788147, - -0.8281161189079285, - -0.8597451448440552, - -0.8921385407447815, - -0.9244127869606018, - -0.9556875228881836, - -0.9851095676422119, - -1.0118764638900757, - -1.0352580547332764, - -1.0546165704727173, - -1.0694239139556885, - -1.0792760848999023, - -1.0839046239852905, - -1.08318293094635, - -1.0771310329437256, - -1.0659137964248657, - -1.0498372316360474, - -0.7257016897201538, - -0.7405866980552673, - -0.7594864368438721, - -0.7818853855133057, - -0.8071725368499756, - -0.8346582055091858, - -0.8635926246643066, - -0.8931865096092224, - -0.92263263463974, - -0.9511277675628662, - -0.97789466381073, - -1.0022032260894775, - -1.023390293121338, - -1.0408779382705688, - -1.0541892051696777, - -1.0629609823226929, - -1.0669540166854858, - -1.0660593509674072, - -1.060301423072815, - -1.0498372316360474, - -0.7257016897201538, - -0.7336007952690125, - -0.745705246925354, - -0.761684775352478, - -0.7811036109924316, - -0.8034319877624512, - -0.8280608654022217, - -0.8543184399604797, - -0.8814885020256042, - -0.9088298678398132, - -0.935596764087677, - -0.961059033870697, - -0.9845221638679504, - -1.0053461790084839, - -1.0229629278182983, - -1.036892056465149, - -1.0467534065246582, - -1.0522781610488892, - -1.05331552028656, - -1.0498372316360474, - -0.7257016897201538, - -0.7259984612464905, - -0.7307079434394836, - -0.7397016286849976, - -0.7527341842651367, - -0.7694501876831055, - -0.7893936038017273, - -0.812020480632782, - -0.8367136120796204, - -0.862799346446991, - -0.8895662426948547, - -0.9162841439247131, - -0.9422242641448975, - -0.9666789174079895, - -0.9889811873435974, - -1.008522629737854, - -1.0247702598571777, - -1.037280797958374, - -1.045713186264038, - -1.0498372316360474, - -0.7257016897201538, - -0.7186034917831421, - -0.7161197066307068, - -0.7183181047439575, - -0.7251386642456055, - -0.7363953590393066, - -0.7517811059951782, - -0.7708763480186462, - -0.793160080909729, - -0.8180245161056519, - -0.8447914123535156, - -0.8727306127548218, - -0.9010800719261169, - -0.9290664196014404, - -0.9559262990951538, - -0.9809271097183228, - -1.0033867359161377, - -1.0226926803588867, - -1.038318157196045, - -1.0498372316360474, - -0.7257016897201538, - -0.7122172713279724, - -0.7035214900970459, - -0.6998514533042908, - -0.7013073563575745, - -0.7078494429588318, - -0.7192992568016052, - -0.7353445291519165, - -0.7555475831031799, - -0.7793572545051575, - -0.8061241507530212, - -0.8351181149482727, - -0.8655482530593872, - -0.8965845704078674, - -0.927380383014679, - -0.957095742225647, - -0.984920084476471, - -1.010094404220581, - -1.03193199634552, - -1.0498372316360474, - -0.7257016897201538, - -0.7075318098068237, - -0.694278359413147, - -0.6863028407096863, - -0.683822751045227, - -0.6869058609008789, - -0.6954679489135742, - -0.7092756032943726, - -0.7279520034790039, - -0.7509878873825073, - -0.7777547836303711, - -0.8075225353240967, - -0.8394793272018433, - -0.8727532625198364, - -0.9064368009567261, - -0.9396111965179443, - -0.9713714718818665, - -1.0008512735366821, - -1.0272464752197266, - -1.0498372316360474, - -0.7257016897201538, - -0.7050548791885376, - -0.68939208984375, - -0.6791404485702515, - -0.6745796799659729, - -0.6758341789245605, - -0.6828697323799133, - -0.6954944133758545, - -0.7133638262748718, - -0.735990583896637, - -0.7627574801445007, - -0.7929343581199646, - -0.8256981372833252, - -0.8601549863815308, - -0.8953651785850525, - -0.9303681254386902, - -0.9642090797424316, - -0.9959650039672852, - -1.0247695446014404, - -1.0498372316360474, - -0.7257016897201538, - -0.7050548791885376, - -0.68939208984375, - -0.6791404485702515, - -0.6745796799659729, - -0.6758341789245605, - -0.6828697323799133, - -0.6954944133758545, - -0.7133638262748718, - -0.735990583896637, - -0.7627574801445007, - -0.7929343581199646, - -0.8256981372833252, - -0.8601549863815308, - -0.8953651785850525, - -0.9303681254386902, - -0.9642090797424316, - -0.9959650039672852, - -1.0247695446014404, - -1.0498372316360474, - -0.7257016897201538, - -0.7075318098068237, - -0.694278359413147, - -0.6863028407096863, - -0.683822751045227, - -0.6869058609008789, - -0.6954679489135742, - -0.7092756032943726, - -0.7279520034790039, - -0.7509878873825073, - -0.7777547836303711, - -0.8075225353240967, - -0.8394793272018433, - -0.8727532625198364, - -0.9064368009567261, - -0.9396111965179443, - -0.9713714718818665, - -1.0008512735366821, - -1.0272464752197266, - -1.0498372316360474, - -0.7257016897201538, - -0.7122172713279724, - -0.7035214900970459, - -0.6998514533042908, - -0.7013072967529297, - -0.7078494429588318, - -0.7192992568016052, - -0.7353445291519165, - -0.7555475234985352, - -0.7793572545051575, - -0.8061241507530212, - -0.8351181149482727, - -0.8655482530593872, - -0.8965845704078674, - -0.927380383014679, - -0.957095742225647, - -0.984920084476471, - -1.010094404220581, - -1.03193199634552, - -1.0498372316360474, - -0.7257016897201538, - -0.7186034917831421, - -0.7161197662353516, - -0.7183181047439575, - -0.7251386642456055, - -0.7363953590393066, - -0.751781165599823, - -0.7708763480186462, - -0.793160080909729, - -0.8180245161056519, - -0.8447914123535156, - -0.8727306127548218, - -0.9010800719261169, - -0.9290664792060852, - -0.9559263586997986, - -0.9809271097183228, - -1.0033867359161377, - -1.0226926803588867, - -1.0383182764053345, - -1.0498372316360474, - -0.7257016897201538, - -0.7259984612464905, - -0.7307079434394836, - -0.7397016286849976, - -0.7527341842651367, - -0.7694501876831055, - -0.7893936038017273, - -0.812020480632782, - -0.8367136120796204, - -0.862799346446991, - -0.8895662426948547, - -0.9162841439247131, - -0.9422242045402527, - -0.9666789174079895, - -0.9889811277389526, - -1.008522629737854, - -1.0247702598571777, - -1.037280797958374, - -1.045713186264038, - -1.0498372316360474, - -0.7257016897201538, - -0.7336007952690125, - -0.7457051873207092, - -0.761684775352478, - -0.7811035513877869, - -0.8034319281578064, - -0.8280608057975769, - -0.854318380355835, - -0.8814884424209595, - -0.9088298082351685, - -0.9355967044830322, - -0.9610589742660522, - -0.9845221638679504, - -1.0053461790084839, - -1.0229629278182983, - -1.0368919372558594, - -1.0467534065246582, - -1.0522781610488892, - -1.05331552028656, - -1.0498372316360474, - -0.7257016897201538, - -0.7405866980552673, - -0.7594864368438721, - -0.7818853855133057, - -0.8071725368499756, - -0.8346582055091858, - -0.8635926246643066, - -0.8931865096092224, - -0.92263263463974, - -0.9511277675628662, - -0.97789466381073, - -1.0022032260894775, - -1.023390293121338, - -1.0408779382705688, - -1.0541892051696777, - -1.0629609823226929, - -1.0669540166854858, - -1.0660593509674072, - -1.060301423072815, - -1.0498372316360474, - -0.7257016897201538, - -0.7461990714073181, - -0.7705581188201904, - -0.7981143593788147, - -0.8281161189079285, - -0.8597451448440552, - -0.8921385407447815, - -0.9244127869606018, - -0.9556875228881836, - -0.9851095676422119, - -1.0118764638900757, - -1.0352580547332764, - -1.0546165704727173, - -1.0694239139556885, - -1.0792760848999023, - -1.0839046239852905, - -1.0831830501556396, - -1.0771310329437256, - -1.0659137964248657, - -1.0498372316360474, - -0.7257016897201538, - -0.7498297691345215, - -0.7777204513549805, - -0.8086130619049072, - -0.841664731502533, - -0.8759741187095642, - -0.9106051921844482, - -0.9446133971214294, - -0.9770710468292236, - -1.0070927143096924, - -1.0338596105575562, - -1.0566415786743164, - -1.074817180633545, - -1.0878905057907104, - -1.0955051183700562, - -1.097453236579895, - -1.0936816930770874, - -1.0842933654785156, - -1.0695444345474243, - -1.0498372316360474, - -0.7257016897201538, - -0.7510854005813599, - -0.7801973819732666, - -0.8122437000274658, - -0.8463501930236816, - -0.881586492061615, - -0.9169914126396179, - -0.9515992403030396, - -0.9844659566879272, - -1.0146950483322144, - -1.0414619445800781, - -1.06403648853302, - -1.0818029642105103, - -1.0942766666412354, - -1.101117491722107, - -1.102138638496399, - -1.097312331199646, - -1.0867702960968018, - -1.0708000659942627, - -1.0498372316360474 - ], - "y": [ - 0.7944769859313965, - 0.8073272109031677, - 0.8161488771438599, - 0.8207013010978699, - 0.8208605051040649, - 0.8166218996047974, - 0.8081012964248657, - 0.7955310940742493, - 0.7792540192604065, - 0.7597142457962036, - 0.7374446988105774, - 0.7130528092384338, - 0.6872039437294006, - 0.6606032252311707, - 0.6339762210845947, - 0.608049213886261, - 0.5835294723510742, - 0.5610858201980591, - 0.5413304567337036, - 0.5248022675514221, - 0.7944769859313965, - 0.7974762320518494, - 0.7967156171798706, - 0.7922159433364868, - 0.7840999364852905, - 0.7725889682769775, - 0.7579970359802246, - 0.7407221794128418, - 0.7212355732917786, - 0.7000688314437866, - 0.6777992844581604, - 0.6550343632698059, - 0.6323950886726379, - 0.6104989647865295, - 0.5899432301521301, - 0.5712887048721313, - 0.5550441145896912, - 0.5416526198387146, - 0.53147953748703, - 0.5248022675514221, - 0.7944770455360413, - 0.7871009707450867, - 0.7762481570243835, - 0.7622144818305969, - 0.7453829050064087, - 0.7262124419212341, - 0.7052260637283325, - 0.6829962134361267, - 0.6601292490959167, - 0.6372489333152771, - 0.6149793267250061, - 0.5939279794692993, - 0.5746691226959229, - 0.5577279925346375, - 0.5435667037963867, - 0.5325716733932495, - 0.5250426530838013, - 0.5211851000785828, - 0.5211042761802673, - 0.5248023271560669, - 0.7944770455360413, - 0.7773257493972778, - 0.7569643259048462, - 0.7339481115341187, - 0.7089049816131592, - 0.6825180053710938, - 0.65550696849823, - 0.6286086440086365, - 0.6025567650794983, - 0.5780619978904724, - 0.5557924509048462, - 0.5363555550575256, - 0.5202815532684326, - 0.5080088376998901, - 0.49987226724624634, - 0.4960936903953552, - 0.4967762529850006, - 0.5019012689590454, - 0.5113290548324585, - 0.5248023271560669, - 0.7944770455360413, - 0.7692098617553711, - 0.7409538626670837, - 0.7104798555374146, - 0.6786190271377563, - 0.6462405323982239, - 0.6142275333404541, - 0.5834532380104065, - 0.5547571182250977, - 0.528921902179718, - 0.5066523551940918, - 0.4885558784008026, - 0.47512611746788025, - 0.46672943234443665, - 0.46359479427337646, - 0.46580779552459717, - 0.4733080267906189, - 0.48589086532592773, - 0.503213107585907, - 0.5248023271560669, - 0.7944770455360413, - 0.7636327743530273, - 0.729951798915863, - 0.694352924823761, - 0.6578071713447571, - 0.621311366558075, - 0.585861086845398, - 0.5524232387542725, - 0.5219100713729858, - 0.4951537549495697, - 0.4728841781616211, - 0.4557088613510132, - 0.4440961480140686, - 0.4383629560470581, - 0.43866562843322754, - 0.4449958801269531, - 0.45718106627464294, - 0.47488877177238464, - 0.49763602018356323, - 0.5248023271560669, - 0.7944770455360413, - 0.7611988186836243, - 0.7251503467559814, - 0.6873148679733276, - 0.6487244963645935, - 0.6104319095611572, - 0.573481559753418, - 0.5388813018798828, - 0.5075750946998596, - 0.48041683435440063, - 0.458147257566452, - 0.44137388467788696, - 0.43055421113967896, - 0.4259834289550781, - 0.4277861416339874, - 0.43591323494911194, - 0.450143039226532, - 0.47008728981018066, - 0.49520209431648254, - 0.5248023271560669, - 0.7944770455360413, - 0.7621718049049377, - 0.7270697951316833, - 0.6901283860206604, - 0.652355432510376, - 0.6147810816764832, - 0.5784304141998291, - 0.5442948937416077, - 0.5133056640625, - 0.48630809783935547, - 0.46403852105140686, - 0.44710445404052734, - 0.4359677731990814, - 0.43093228340148926, - 0.43213534355163574, - 0.439544141292572, - 0.45295655727386475, - 0.47200673818588257, - 0.496175080537796, - 0.5248023271560669, - 0.7944770455360413, - 0.7664462924003601, - 0.7355021238327026, - 0.7024886608123779, - 0.6683063507080078, - 0.6338876485824585, - 0.6001714468002319, - 0.5680773258209229, - 0.5384807586669922, - 0.5121891498565674, - 0.4899195730686188, - 0.47227954864501953, - 0.4597501754760742, - 0.4526733160018921, - 0.4512419104576111, - 0.45549508929252625, - 0.4653168320655823, - 0.48043912649154663, - 0.500449538230896, - 0.5248023271560669, - 0.7944770455360413, - 0.773559033870697, - 0.7495336532592773, - 0.7230561375617981, - 0.6948488354682922, - 0.6656811237335205, - 0.6363486051559448, - 0.60765141248703, - 0.5803722739219666, - 0.5552554130554199, - 0.5329858064651489, - 0.5141710638999939, - 0.4993242621421814, - 0.488850474357605, - 0.4830353856086731, - 0.48203757405281067, - 0.48588430881500244, - 0.49447062611579895, - 0.5075623393058777, - 0.5248023271560669, - 0.7944770455360413, - 0.7827392816543579, - 0.7676437497138977, - 0.7496021389961243, - 0.7291065454483032, - 0.7067161202430725, - 0.6830415725708008, - 0.6587286591529846, - 0.6344406008720398, - 0.6108399033546448, - 0.5885703563690186, - 0.5682393908500671, - 0.5504015684127808, - 0.5355434417724609, - 0.5240703821182251, - 0.516295313835144, - 0.5124303102493286, - 0.5125807523727417, - 0.5167425870895386, - 0.5248023271560669, - 0.7944769859313965, - 0.7929922342300415, - 0.7878699898719788, - 0.779249906539917, - 0.7673671841621399, - 0.752545952796936, - 0.7351904511451721, - 0.7157741189002991, - 0.694826602935791, - 0.6729192733764648, - 0.6506497263908386, - 0.6286253333091736, - 0.6074470281600952, - 0.5876923203468323, - 0.5699002146720886, - 0.5545558929443359, - 0.5420780777931213, - 0.532806932926178, - 0.5269955396652222, - 0.5248023271560669, - 0.7944769859313965, - 0.8032068014144897, - 0.8080204725265503, - 0.8087866306304932, - 0.8054845333099365, - 0.7982041239738464, - 0.7871440649032593, - 0.7726060152053833, - 0.7549865245819092, - 0.7347661852836609, - 0.7124966382980347, - 0.6887852549552917, - 0.6642789244651794, - 0.6396459341049194, - 0.6155584454536438, - 0.5926733016967773, - 0.5716148018836975, - 0.5529574155807495, - 0.5372101068496704, - 0.5248022675514221, - 0.7944769859313965, - 0.8122760653495789, - 0.8259116411209106, - 0.8350117206573486, - 0.8393280506134033, - 0.8387430310249329, - 0.8332724571228027, - 0.8230657577514648, - 0.8084011077880859, - 0.789678692817688, - 0.767409086227417, - 0.7421998977661133, - 0.7147386074066162, - 0.6857743859291077, - 0.6560972929000854, - 0.6265168190002441, - 0.5978398323059082, - 0.5708485841751099, - 0.5462793707847595, - 0.5248022675514221, - 0.7944769859313965, - 0.8192172646522522, - 0.8396046161651611, - 0.8550829887390137, - 0.8652302026748657, - 0.8697694540023804, - 0.8685768842697144, - 0.8616850972175598, - 0.8492819666862488, - 0.8317059278488159, - 0.8094363808631897, - 0.7830807566642761, - 0.753358006477356, - 0.7210788130760193, - 0.6871237754821777, - 0.6524189710617065, - 0.617911159992218, - 0.5845416188240051, - 0.5532205104827881, - 0.5248022675514221, - 0.7944769859313965, - 0.8232781887054443, - 0.847615659236908, - 0.8668256402015686, - 0.8803842067718506, - 0.8879213333129883, - 0.8892315626144409, - 0.884279191493988, - 0.8731992244720459, - 0.856293797492981, - 0.8340242505073547, - 0.8069979548454285, - 0.7759521007537842, - 0.7417334914207458, - 0.7052756547927856, - 0.6675729155540466, - 0.629653811454773, - 0.592552661895752, - 0.5572814345359802, - 0.5248022675514221, - 0.7944769859313965, - 0.8240187168121338, - 0.8490766286849976, - 0.8689671158790588, - 0.8831477165222168, - 0.8912316560745239, - 0.8929983377456665, - 0.888399600982666, - 0.8775608539581299, - 0.8607778549194336, - 0.8385082483291626, - 0.8113596439361572, - 0.7800724506378174, - 0.7455002069473267, - 0.7085859775543213, - 0.6703364849090576, - 0.6317952871322632, - 0.5940135717391968, - 0.5580220222473145, - 0.5248022675514221, - 0.7944769859313965, - 0.8213586807250977, - 0.8438290953636169, - 0.861275315284729, - 0.8732214570045471, - 0.8793416023254395, - 0.8794687986373901, - 0.8735997676849365, - 0.8618943691253662, - 0.8446719646453857, - 0.8224024176597595, - 0.7956931591033936, - 0.7652726173400879, - 0.7319707274436951, - 0.696695864200592, - 0.6604101657867432, - 0.6241034865379333, - 0.5887660980224609, - 0.5553619861602783, - 0.5248022675514221, - 0.7944769859313965, - 0.8155863285064697, - 0.8324418663978577, - 0.8445837497711182, - 0.8516808748245239, - 0.8535396456718445, - 0.8501092791557312, - 0.841483473777771, - 0.827897310256958, - 0.8097215890884399, - 0.7874520421028137, - 0.7616961002349854, - 0.7331563234329224, - 0.7026112079620361, - 0.6708939075469971, - 0.6388696432113647, - 0.6074119210243225, - 0.5773788690567017, - 0.5495896339416504, - 0.5248022675514221, - 0.7944769859313965, - 0.8073272109031677, - 0.8161488175392151, - 0.8207013010978699, - 0.8208604454994202, - 0.8166218996047974, - 0.8081012964248657, - 0.7955310344696045, - 0.7792540192604065, - 0.7597142457962036, - 0.7374446392059326, - 0.7130528092384338, - 0.6872039437294006, - 0.6606031656265259, - 0.6339762210845947, - 0.608049213886261, - 0.5835294723510742, - 0.5610858201980591, - 0.5413304567337036, - 0.5248022675514221 - ], - "z": [ - 0.2876155972480774, - 0.29978033900260925, - 0.3081314265727997, - 0.31244105100631714, - 0.3125917315483093, - 0.3085792660713196, - 0.3005131483078003, - 0.2886134386062622, - 0.27320462465286255, - 0.25470709800720215, - 0.23362542688846588, - 0.21053463220596313, - 0.18606458604335785, - 0.16088274121284485, - 0.1356760561466217, - 0.11113202571868896, - 0.0879201889038086, - 0.06667370349168777, - 0.047972120344638824, - 0.032325565814971924, - 0.2876155972480774, - 0.30859217047691345, - 0.3255147337913513, - 0.337921679019928, - 0.34547460079193115, - 0.3479674458503723, - 0.34533220529556274, - 0.33764082193374634, - 0.3251030445098877, - 0.3080608546733856, - 0.28697919845581055, - 0.2624330520629883, - 0.23509198427200317, - 0.2057017982006073, - 0.17506422102451324, - 0.1440148949623108, - 0.11340080201625824, - 0.08405701071023941, - 0.056783951818943024, - 0.03232555091381073, - 0.2876155972480774, - 0.31494221091270447, - 0.33804160356521606, - 0.35628366470336914, - 0.3691708445549011, - 0.37635159492492676, - 0.3776300251483917, - 0.3729712963104248, - 0.36250242590904236, - 0.3465089797973633, - 0.3254273235797882, - 0.29983240365982056, - 0.27042242884635925, - 0.23799961805343628, - 0.20344838500022888, - 0.16771116852760315, - 0.1317628026008606, - 0.09658388793468475, - 0.06313399225473404, - 0.03232555091381073, - 0.2876155972480774, - 0.3181423544883728, - 0.3443545699119568, - 0.36553728580474854, - 0.3811126947402954, - 0.39065587520599365, - 0.3939065933227539, - 0.3907761573791504, - 0.38134995102882385, - 0.36588507890701294, - 0.3448033928871155, - 0.31867992877960205, - 0.2882273197174072, - 0.25427621603012085, - 0.21775269508361816, - 0.17965298891067505, - 0.1410164088010788, - 0.10289683938026428, - 0.06633412092924118, - 0.03232555091381073, - 0.2876155972480774, - 0.31784576177597046, - 0.34376949071884155, - 0.3646796941757202, - 0.38000595569610596, - 0.3893302083015442, - 0.3923981785774231, - 0.38912609219551086, - 0.3796032667160034, - 0.36408936977386475, - 0.3430076837539673, - 0.316933274269104, - 0.2865772247314453, - 0.25276774168014526, - 0.2164270132780075, - 0.17854627966880798, - 0.14015881717205048, - 0.10231178998947144, - 0.06603755056858063, - 0.03232555091381073, - 0.2876155972480774, - 0.31408461928367615, - 0.33634984493255615, - 0.3538038730621338, - 0.365970641374588, - 0.37251824140548706, - 0.37326815724372864, - 0.36819982528686523, - 0.35745155811309814, - 0.3413165211677551, - 0.32023483514785767, - 0.29478153586387634, - 0.26565098762512207, - 0.233637735247612, - 0.19961506128311157, - 0.16451093554496765, - 0.12928298115730286, - 0.09489209949970245, - 0.062276408076286316, - 0.03232555091381073, - 0.2876155972480774, - 0.307266503572464, - 0.32289958000183105, - 0.3340883255004883, - 0.34052765369415283, - 0.34204185009002686, - 0.3385895788669586, - 0.3302651047706604, - 0.3172953724861145, - 0.3000342547893524, - 0.27895256876945496, - 0.2546253800392151, - 0.22771623730659485, - 0.19895917177200317, - 0.16913862526416779, - 0.13906796276569366, - 0.10956746339797974, - 0.08144184947013855, - 0.05545828491449356, - 0.03232555091381073, - 0.2876155972480774, - 0.29813024401664734, - 0.30487626791000366, - 0.30766963958740234, - 0.30643415451049805, - 0.30120354890823364, - 0.29212045669555664, - 0.27943265438079834, - 0.26348626613616943, - 0.24471619725227356, - 0.2236345112323761, - 0.20081625878810883, - 0.17688381671905518, - 0.1524900197982788, - 0.12830030918121338, - 0.10497444868087769, - 0.08314874768257141, - 0.06341854482889175, - 0.04632203280925751, - 0.032325565814971924, - 0.2876155972480774, - 0.2876659035682678, - 0.284233033657074, - 0.2774105966091156, - 0.26738470792770386, - 0.25442883372306824, - 0.23889636993408203, - 0.22121106088161469, - 0.20185521245002747, - 0.18135690689086914, - 0.16027522087097168, - 0.13918522000312805, - 0.11866220831871033, - 0.09926596283912659, - 0.08152560144662857, - 0.0659249871969223, - 0.052889712154865265, - 0.04277530312538147, - 0.03585769981145859, - 0.032325565814971924, - 0.2876155972480774, - 0.27700746059417725, - 0.2632068693637848, - 0.246590256690979, - 0.22761090099811554, - 0.20678648352622986, - 0.18468505144119263, - 0.16190946102142334, - 0.1390809863805771, - 0.11682233214378357, - 0.09574064612388611, - 0.07641099393367767, - 0.059360623359680176, - 0.04505462199449539, - 0.033883243799209595, - 0.026151195168495178, - 0.022069379687309265, - 0.02174915373325348, - 0.025199249386787415, - 0.032325565814971924, - 0.2876155972480774, - 0.26730993390083313, - 0.24407631158828735, - 0.2185485064983368, - 0.19142286479473114, - 0.16343927383422852, - 0.13536107540130615, - 0.10795414447784424, - 0.0819660946726799, - 0.05810581147670746, - 0.03702412545681, - 0.01929609477519989, - 0.005405306816101074, - -0.004269346594810486, - -0.009463965892791748, - -0.010036855936050415, - -0.005972370505332947, - 0.0026185959577560425, - 0.015501707792282104, - 0.032325565814971924, - 0.2876155972480774, - 0.259624183177948, - 0.22891443967819214, - 0.19632409512996674, - 0.16274212300777435, - 0.12908457219600677, - 0.09626948088407516, - 0.06519200652837753, - 0.036699824035167694, - 0.011570170521736145, - -0.009511500597000122, - -0.025970175862312317, - -0.03735683858394623, - -0.04336094856262207, - -0.04381868243217468, - -0.03871758282184601, - -0.028196781873703003, - -0.012543290853500366, - 0.007815957069396973, - 0.032325565814971924, - 0.2876155972480774, - 0.2547830641269684, - 0.21936427056789398, - 0.18232537806034088, - 0.14467670023441315, - 0.10744521021842957, - 0.07164647430181503, - 0.038256965577602386, - 0.00818750262260437, - -0.01774170994758606, - -0.03882338106632233, - -0.05448250472545624, - -0.06429187953472137, - -0.0679839551448822, - -0.06545804440975189, - -0.05678302049636841, - -0.04219551384449005, - -0.022093459963798523, - 0.0029748380184173584, - 0.032325565814971924, - 0.2876155972480774, - 0.2533112168312073, - 0.216460719704628, - 0.1780693084001541, - 0.13918423652648926, - 0.1008661538362503, - 0.0641602948307991, - 0.03006787598133087, - -0.0004811286926269531, - -0.026653438806533813, - -0.04773510992527008, - -0.06315113604068756, - -0.07248097658157349, - -0.07547013461589813, - -0.07203708589076996, - -0.0622754842042923, - -0.046451568603515625, - -0.024997010827064514, - 0.00150299072265625, - 0.032325565814971924, - 0.2876155972480774, - 0.25536811351776123, - 0.22051842510700226, - 0.1840171366930008, - 0.14685994386672974, - 0.11006036400794983, - 0.07462219148874283, - 0.04151212424039841, - 0.011633291840553284, - -0.014199301600456238, - -0.035280972719192505, - -0.051036715507507324, - -0.061036720871925354, - -0.06500822305679321, - -0.06284289062023163, - -0.05459977686405182, - -0.040503740310668945, - -0.020939290523529053, - 0.003559902310371399, - 0.032325565814971924, - 0.2876155972480774, - 0.2607308626174927, - 0.23109766840934753, - 0.19952429831027985, - 0.16687200963497162, - 0.1340314745903015, - 0.10189848393201828, - 0.07134953886270523, - 0.04321794956922531, - 0.018271073698997498, - -0.0028105974197387695, - -0.0194520503282547, - -0.03119930624961853, - -0.037731945514678955, - -0.038871780037879944, - -0.034587711095809937, - -0.024996578693389893, - -0.010360047221183777, - 0.008922666311264038, - 0.032325565814971924, - 0.2876155972480774, - 0.26881837844848633, - 0.24705207347869873, - 0.22291038930416107, - 0.19705188274383545, - 0.17018191516399384, - 0.14303338527679443, - 0.11634688079357147, - 0.09085028618574142, - 0.06723912805318832, - 0.04615744203329086, - 0.028180286288261414, - 0.013798028230667114, - 0.0034029632806777954, - -0.002721339464187622, - -0.004407823085784912, - -0.001610487699508667, - 0.005594342947006226, - 0.017010167241096497, - 0.032325565814971924, - 0.2876155972480774, - 0.27875417470932007, - 0.2666526734828949, - 0.2516411244869232, - 0.23412907123565674, - 0.21459417045116425, - 0.19356927275657654, - 0.17162787914276123, - 0.1493685096502304, - 0.12739834189414978, - 0.10631665587425232, - 0.0866985097527504, - 0.06907903403043747, - 0.0539388433098793, - 0.04169093817472458, - 0.03266936540603638, - 0.02712024748325348, - 0.025194942951202393, - 0.02694597840309143, - 0.032325565814971924, - 0.2876155972480774, - 0.289461612701416, - 0.287775456905365, - 0.28260311484336853, - 0.2740857005119324, - 0.2624554932117462, - 0.24802976846694946, - 0.23120203614234924, - 0.21243128180503845, - 0.19222953915596008, - 0.17114785313606262, - 0.14976128935813904, - 0.12865319848060608, - 0.10839936137199402, - 0.08955226093530655, - 0.07262597978115082, - 0.05808223783969879, - 0.04631774127483368, - 0.03765340894460678, - 0.032325565814971924, - 0.2876155972480774, - 0.29978033900260925, - 0.30813145637512207, - 0.3124410808086395, - 0.3125917315483093, - 0.30857929587364197, - 0.30051320791244507, - 0.2886134386062622, - 0.27320465445518494, - 0.2547071576118469, - 0.23362545669078827, - 0.21053466200828552, - 0.18606461584568024, - 0.16088277101516724, - 0.1356760859489441, - 0.11113204061985016, - 0.08792020380496979, - 0.06667371094226837, - 0.047972120344638824, - 0.032325565814971924 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.9280746579170227, - -0.9541037678718567, - -0.984976053237915, - -1.0198496580123901, - -1.0577729940414429, - -1.0977118015289307, - -1.1385767459869385, - -1.1792528629302979, - -1.2186309099197388, - -1.2556365728378296, - -1.2892603874206543, - -1.3185853958129883, - -1.3428114652633667, - -1.3612779378890991, - -1.373481035232544, - -1.3790878057479858, - -1.3779454231262207, - -1.3700851202011108, - -1.355721116065979, - -1.3352452516555786, - -0.9280746579170227, - -0.9528439044952393, - -0.9824906587600708, - -1.0162065029144287, - -1.0530714988708496, - -1.0920802354812622, - -1.1321686506271362, - -1.1722431182861328, - -1.2112106084823608, - -1.2480082511901855, - -1.2816320657730103, - -1.3111650943756104, - -1.3358017206192017, - -1.3548698425292969, - -1.3678494691848755, - -1.3743863105773926, - -1.3743023872375488, - -1.3675997257232666, - -1.3544611930847168, - -1.3352452516555786, - -0.9280746579170227, - -0.9492007493972778, - -0.9753038287162781, - -1.0056719779968262, - -1.0394766330718994, - -1.0757958889007568, - -1.1136388778686523, - -1.1519736051559448, - -1.1897541284561157, - -1.2259498834609985, - -1.2595738172531128, - -1.2897084951400757, - -1.3155320882797241, - -1.3363401889801025, - -1.3515650033950806, - -1.3607914447784424, - -1.3637677431106567, - -1.360412836074829, - -1.350818157196045, - -1.3352452516555786, - -0.9280746579170227, - -0.9435691833496094, - -0.9641942977905273, - -0.9893875122070312, - -1.0184614658355713, - -1.0506232976913452, - -1.0849955081939697, - -1.1206406354904175, - -1.1565862894058228, - -1.19185209274292, - -1.2254759073257446, - -1.2565407752990723, - -1.2841991186141968, - -1.3076967000961304, - -1.326392412185669, - -1.3397762775421143, - -1.3474833965301514, - -1.3493033647537231, - -1.345186471939087, - -1.3352452516555786, - -0.9280746579170227, - -0.9365594387054443, - -0.9503660202026367, - -0.9691178798675537, - -0.9923034906387329, - -1.0192903280258179, - -1.0493422746658325, - -1.0816396474838257, - -1.115301489830017, - -1.149409532546997, - -1.1830334663391113, - -1.2152559757232666, - -1.2451982498168945, - -1.2720434665679932, - -1.2950594425201416, - -1.3136183023452759, - -1.3272137641906738, - -1.3354750871658325, - -1.3381767272949219, - -1.3352452516555786, - -0.9280746579170227, - -0.9289311170578003, - -0.9353175163269043, - -0.9470596313476562, - -0.9638371467590332, - -0.9851924180984497, - -1.0105429887771606, - -1.0391972064971924, - -1.0703736543655396, - -1.1032217741012573, - -1.1368457078933716, - -1.170328140258789, - -1.2027558088302612, - -1.2332441806793213, - -1.2609615325927734, - -1.2851519584655762, - -1.3051555156707764, - -1.3204265832901, - -1.3305485248565674, - -1.3352452516555786, - -0.9280746579170227, - -0.9215109348297119, - -0.9206794500350952, - -0.9256030321121216, - -0.9361472725868225, - -0.9520245790481567, - -0.972801923751831, - -0.9979124665260315, - -1.026671290397644, - -1.0582939386367798, - -1.091917872428894, - -1.1266257762908936, - -1.1614710092544556, - -1.1955031156539917, - -1.2277936935424805, - -1.2574621438980103, - -1.2836989164352417, - -1.305788516998291, - -1.3231282234191895, - -1.3352452516555786, - -0.9280747175216675, - -0.9151028394699097, - -0.9080381393432617, - -0.9070733189582825, - -0.9122345447540283, - -0.9233811497688293, - -0.9402090907096863, - -0.9622592926025391, - -0.9889302849769592, - -1.0194945335388184, - -1.0531184673309326, - -1.088884711265564, - -1.125817894935608, - -1.1629103422164917, - -1.1991503238677979, - -1.2335493564605713, - -1.2651691436767578, - -1.2931472063064575, - -1.3167202472686768, - -1.3352452516555786, - -0.9280747175216675, - -0.9104014039039612, - -0.8987634778022766, - -0.8934783935546875, - -0.8946902751922607, - -0.902366042137146, - -0.9162963628768921, - -0.9361011981964111, - -0.9612404108047485, - -0.9910282492637634, - -1.024652123451233, - -1.061194896697998, - -1.09965980052948, - -1.1389975547790527, - -1.1781351566314697, - -1.2160050868988037, - -1.2515742778778076, - -1.2838724851608276, - -1.3120187520980835, - -1.3352452516555786, - -0.9280747175216675, - -0.9079160094261169, - -0.8938604593276978, - -0.88629150390625, - -0.8854155540466309, - -0.8912565112113953, - -0.9036550521850586, - -0.9222729206085205, - -0.9466024041175842, - -0.9759796857833862, - -1.0096036195755005, - -1.046556830406189, - -1.0858315229415894, - -1.1263562440872192, - -1.1670256853103638, - -1.2067303657531738, - -1.2443873882293701, - -1.2789695262908936, - -1.3095333576202393, - -1.3352452516555786, - -0.9280747175216675, - -0.9079160094261169, - -0.8938604593276978, - -0.88629150390625, - -0.8854155540466309, - -0.8912565112113953, - -0.9036550521850586, - -0.9222729206085205, - -0.9466024041175842, - -0.9759796857833862, - -1.0096036195755005, - -1.046556830406189, - -1.0858315229415894, - -1.1263562440872192, - -1.1670256853103638, - -1.2067303657531738, - -1.2443873882293701, - -1.2789695262908936, - -1.3095333576202393, - -1.3352452516555786, - -0.9280747175216675, - -0.9104014039039612, - -0.8987634778022766, - -0.8934783935546875, - -0.8946902751922607, - -0.902366042137146, - -0.9162963628768921, - -0.9361011981964111, - -0.9612404108047485, - -0.9910282492637634, - -1.024652123451233, - -1.061194896697998, - -1.09965980052948, - -1.1389975547790527, - -1.1781351566314697, - -1.2160050868988037, - -1.2515742778778076, - -1.2838724851608276, - -1.3120187520980835, - -1.3352452516555786, - -0.9280747175216675, - -0.9151028394699097, - -0.9080381393432617, - -0.9070733189582825, - -0.9122345447540283, - -0.9233811497688293, - -0.9402090907096863, - -0.9622592926025391, - -0.9889302849769592, - -1.0194945335388184, - -1.0531184673309326, - -1.088884711265564, - -1.1258177757263184, - -1.1629102230072021, - -1.1991503238677979, - -1.2335493564605713, - -1.2651691436767578, - -1.2931472063064575, - -1.3167202472686768, - -1.3352452516555786, - -0.9280746579170227, - -0.9215109348297119, - -0.9206794500350952, - -0.9256030321121216, - -0.9361473321914673, - -0.9520246386528015, - -0.972801923751831, - -0.9979124665260315, - -1.026671290397644, - -1.0582939386367798, - -1.091917872428894, - -1.1266257762908936, - -1.1614710092544556, - -1.1955031156539917, - -1.22779381275177, - -1.2574621438980103, - -1.2836989164352417, - -1.305788516998291, - -1.3231282234191895, - -1.3352452516555786, - -0.9280746579170227, - -0.9289311170578003, - -0.9353175163269043, - -0.9470596313476562, - -0.9638371467590332, - -0.9851924180984497, - -1.010542869567871, - -1.0391972064971924, - -1.0703736543655396, - -1.1032217741012573, - -1.1368457078933716, - -1.170328140258789, - -1.2027558088302612, - -1.2332441806793213, - -1.2609615325927734, - -1.2851519584655762, - -1.3051555156707764, - -1.3204264640808105, - -1.3305485248565674, - -1.3352452516555786, - -0.9280746579170227, - -0.9365594387054443, - -0.9503660202026367, - -0.9691178798675537, - -0.9923034310340881, - -1.0192902088165283, - -1.0493422746658325, - -1.0816396474838257, - -1.115301489830017, - -1.149409532546997, - -1.1830334663391113, - -1.2152559757232666, - -1.2451982498168945, - -1.2720434665679932, - -1.2950594425201416, - -1.3136181831359863, - -1.3272137641906738, - -1.3354750871658325, - -1.3381767272949219, - -1.3352452516555786, - -0.9280746579170227, - -0.9435691833496094, - -0.9641942977905273, - -0.9893875122070312, - -1.0184614658355713, - -1.0506231784820557, - -1.0849955081939697, - -1.1206406354904175, - -1.1565862894058228, - -1.19185209274292, - -1.2254759073257446, - -1.2565407752990723, - -1.2841991186141968, - -1.3076967000961304, - -1.326392412185669, - -1.3397762775421143, - -1.3474833965301514, - -1.3493033647537231, - -1.345186471939087, - -1.3352452516555786, - -0.9280746579170227, - -0.9492007493972778, - -0.9753038287162781, - -1.0056719779968262, - -1.0394766330718994, - -1.0757958889007568, - -1.1136388778686523, - -1.1519736051559448, - -1.1897541284561157, - -1.225950002670288, - -1.2595738172531128, - -1.2897086143493652, - -1.3155320882797241, - -1.3363401889801025, - -1.3515650033950806, - -1.3607914447784424, - -1.3637678623199463, - -1.360412836074829, - -1.350818157196045, - -1.3352452516555786, - -0.9280746579170227, - -0.9528439044952393, - -0.9824907183647156, - -1.0162065029144287, - -1.0530714988708496, - -1.0920803546905518, - -1.1321686506271362, - -1.1722432374954224, - -1.2112107276916504, - -1.2480082511901855, - -1.2816320657730103, - -1.3111652135849, - -1.3358017206192017, - -1.3548698425292969, - -1.3678494691848755, - -1.3743864297866821, - -1.3743023872375488, - -1.3675997257232666, - -1.3544611930847168, - -1.3352452516555786, - -0.9280746579170227, - -0.9541037678718567, - -0.984976053237915, - -1.0198496580123901, - -1.0577729940414429, - -1.0977118015289307, - -1.1385767459869385, - -1.1792528629302979, - -1.2186309099197388, - -1.2556365728378296, - -1.2892603874206543, - -1.3185853958129883, - -1.3428114652633667, - -1.3612779378890991, - -1.373481035232544, - -1.3790878057479858, - -1.3779454231262207, - -1.3700851202011108, - -1.355721116065979, - -1.3352452516555786 - ], - "y": [ - 0.9836174249649048, - 0.9960466623306274, - 1.003516674041748, - 1.0058236122131348, - 1.0029045343399048, - 0.9948393106460571, - 0.9818476438522339, - 0.9642840027809143, - 0.9426275491714478, - 0.9174689650535583, - 0.8894944787025452, - 0.8594672083854675, - 0.8282062411308289, - 0.7965642213821411, - 0.7654042840003967, - 0.7355764508247375, - 0.7078942656517029, - 0.6831128597259521, - 0.6619082093238831, - 0.644858717918396, - 0.9836174249649048, - 0.9838732481002808, - 0.9795019626617432, - 0.9706226587295532, - 0.9574776291847229, - 0.9404253959655762, - 0.9199310541152954, - 0.8965536952018738, - 0.8709310293197632, - 0.8437618613243103, - 0.8157874345779419, - 0.787770688533783, - 0.7604759335517883, - 0.7346476316452026, - 0.7109903693199158, - 0.6901494264602661, - 0.6726933717727661, - 0.6590981483459473, - 0.6497348546981812, - 0.644858717918396, - 0.9836174249649048, - 0.9714218378067017, - 0.9549387693405151, - 0.9346176981925964, - 0.9110130071640015, - 0.884768545627594, - 0.8566002249717712, - 0.8272762894630432, - 0.79759681224823, - 0.7683712244033813, - 0.7403967380523682, - 0.7144364714622498, - 0.6911985278129578, - 0.6713167428970337, - 0.6553335785865784, - 0.6436848640441895, - 0.6366883516311646, - 0.6345349550247192, - 0.637283444404602, - 0.644858717918396, - 0.9836174249649048, - 0.9600416421890259, - 0.9324887990951538, - 0.9017103314399719, - 0.8685458898544312, - 0.8339000940322876, - 0.7987179160118103, - 0.7639591097831726, - 0.7305717468261719, - 0.6994666457176208, - 0.6714921593666077, - 0.6474114656448364, - 0.6278812885284424, - 0.6134344935417175, - 0.6044650673866272, - 0.6012177467346191, - 0.60378098487854, - 0.6120849847793579, - 0.6259032487869263, - 0.644858717918396, - 0.9836174249649048, - 0.950965940952301, - 0.9145849347114563, - 0.8754666447639465, - 0.8346782922744751, - 0.7933323383331299, - 0.7525566220283508, - 0.7134634256362915, - 0.6771191358566284, - 0.6445150375366211, - 0.6165405511856079, - 0.5939587950706482, - 0.577385663986206, - 0.5672731995582581, - 0.5638973712921143, - 0.5673500895500183, - 0.5775373578071594, - 0.5941811203956604, - 0.6168274879455566, - 0.644858717918396, - 0.9836174249649048, - 0.9451781511306763, - 0.9031672477722168, - 0.8587305545806885, - 0.8130801916122437, - 0.7674614787101746, - 0.7231186628341675, - 0.6812613606452942, - 0.6430312991142273, - 0.6094713807106018, - 0.5814968943595886, - 0.5598709583282471, - 0.545183539390564, - 0.5378352403640747, - 0.5380264520645142, - 0.5457520484924316, - 0.5608012080192566, - 0.5827634334564209, - 0.6110397577285767, - 0.6448587775230408, - 0.9836174249649048, - 0.9433055520057678, - 0.8994730710983276, - 0.8533155918121338, - 0.8060922026634216, - 0.7590910196304321, - 0.7135940790176392, - 0.6708424687385559, - 0.6320022940635681, - 0.5981330275535583, - 0.5701586008071899, - 0.5488419532775879, - 0.5347646474838257, - 0.5283106565475464, - 0.5296559929847717, - 0.5387639999389648, - 0.5553863048553467, - 0.5790692567825317, - 0.6091670989990234, - 0.6448587775230408, - 0.9836174249649048, - 0.9455510377883911, - 0.9039027690887451, - 0.859808623790741, - 0.8144714832305908, - 0.7691280245780945, - 0.7250149846076965, - 0.6833357214927673, - 0.6452271342277527, - 0.6117287874221802, - 0.583754301071167, - 0.5620667934417725, - 0.5472579002380371, - 0.5397315621376038, - 0.5396929979324341, - 0.5471433401107788, - 0.5618792772293091, - 0.5834989547729492, - 0.6114125847816467, - 0.6448587775230408, - 0.9836174249649048, - 0.9516712427139282, - 0.9159762263298035, - 0.8775060176849365, - 0.8373100757598877, - 0.7964848279953003, - 0.7561437487602234, - 0.7173873782157898, - 0.6812728643417358, - 0.6487852931022644, - 0.6208108067512512, - 0.5981125235557556, - 0.5813095569610596, - 0.5708603262901306, - 0.5670498013496399, - 0.5699819326400757, - 0.5795767307281494, - 0.5955724120140076, - 0.6175327897071838, - 0.644858717918396, - 0.9836174249649048, - 0.9610029458999634, - 0.9343851208686829, - 0.9044899940490723, - 0.8721330165863037, - 0.838196873664856, - 0.803607165813446, - 0.7693073749542236, - 0.7362332344055176, - 0.7052869200706482, - 0.677312433719635, - 0.6530729532241821, - 0.6332296133041382, - 0.6183236837387085, - 0.6087618470191956, - 0.6048048734664917, - 0.6065606474876404, - 0.613981306552887, - 0.6268645524978638, - 0.644858717918396, - 0.9836174249649048, - 0.9725349545478821, - 0.9571346044540405, - 0.9378364086151123, - 0.9151667356491089, - 0.8897440433502197, - 0.8622617125511169, - 0.8334693908691406, - 0.8041525483131409, - 0.7751107811927795, - 0.7471363544464111, - 0.7209922075271606, - 0.6973916292190552, - 0.6769782900810242, - 0.6603090763092041, - 0.6478385925292969, - 0.6399070620536804, - 0.6367307901382446, - 0.6383965015411377, - 0.644858717918396, - 0.9836174249649048, - 0.9850175976753235, - 0.9817594289779663, - 0.973931610584259, - 0.9617478251457214, - 0.9455403685569763, - 0.9257513284683228, - 0.9029204845428467, - 0.8776705861091614, - 0.850690484046936, - 0.8227159976959229, - 0.7945103049278259, - 0.7668426632881165, - 0.74046790599823, - 0.7161054015159607, - 0.6944196820259094, - 0.6760022640228271, - 0.6613556146621704, - 0.6508791446685791, - 0.644858717918396, - 0.9836174249649048, - 0.9970981478691101, - 1.0055910348892212, - 1.008864164352417, - 1.0068285465240479, - 0.9995394945144653, - 0.9871959090232849, - 0.9701344966888428, - 0.9488205909729004, - 0.9238356947898865, - 0.8958612680435181, - 0.8656603097915649, - 0.8340566754341125, - 0.8019124865531921, - 0.7701045274734497, - 0.7395004034042358, - 0.7109348773956299, - 0.6851872205734253, - 0.6629597544670105, - 0.644858717918396, - 0.9836174249649048, - 1.00746750831604, - 1.0260469913482666, - 1.038848638534546, - 1.0455236434936523, - 1.0458897352218628, - 1.0399370193481445, - 1.0278278589248657, - 1.009892463684082, - 0.9866201281547546, - 0.9586456418037415, - 0.9267321228981018, - 0.8917500376701355, - 0.8546536564826965, - 0.8164548277854919, - 0.7781955003738403, - 0.7409193515777588, - 0.7056431174278259, - 0.6733291149139404, - 0.644858717918396, - 0.98361736536026, - 1.0150020122528076, - 1.0409104824066162, - 1.0606356859207153, - 1.073639988899231, - 1.0795683860778809, - 1.0782593488693237, - 1.0697484016418457, - 1.0542678833007812, - 1.0322399139404297, - 1.0042654275894165, - 0.971107542514801, - 0.9336706399917603, - 0.892975926399231, - 0.8501334190368652, - 0.8063117861747742, - 0.7627063989639282, - 0.7205066084861755, - 0.680863618850708, - 0.644858717918396, - 0.98361736536026, - 1.0188852548599243, - 1.0485708713531494, - 1.071864366531372, - 1.0881305932998657, - 1.0969257354736328, - 1.0980099439620972, - 1.0913536548614502, - 1.0771381855010986, - 1.0557515621185303, - 1.027777075767517, - 0.9939779043197632, - 0.9552757740020752, - 0.9127265214920044, - 0.867490828037262, - 0.8208025097846985, - 0.773935079574585, - 0.7281670570373535, - 0.6847468018531799, - 0.644858717918396, - 0.98361736536026, - 1.0186961889266968, - 1.0481979846954346, - 1.0713179111480713, - 1.0874253511428833, - 1.096081018447876, - 1.0970487594604492, - 1.0903019905090332, - 1.076025128364563, - 1.0546072721481323, - 1.0266327857971191, - 0.9928647875785828, - 0.9542242288589478, - 0.9117652773857117, - 0.8666460514068604, - 0.8200972080230713, - 0.7733885645866394, - 0.7277941703796387, - 0.6845577955245972, - 0.644858717918396, - 0.98361736536026, - 1.0144555568695068, - 1.039832353591919, - 1.0590554475784302, - 1.0716005563735962, - 1.0771255493164062, - 1.0754796266555786, - 1.066707730293274, - 1.0510491132736206, - 1.028930902481079, - 1.0009565353393555, - 0.9678888320922852, - 0.9306299686431885, - 0.8901962637901306, - 0.8476905822753906, - 0.804272472858429, - 0.7611261010169983, - 0.719428539276123, - 0.6803171634674072, - 0.644858717918396, - 0.9836174249649048, - 1.0066227912902832, - 1.0243803262710571, - 1.0364058017730713, - 1.042371153831482, - 1.0421135425567627, - 1.0356402397155762, - 1.023127555847168, - 1.0049169063568115, - 0.9815050363540649, - 0.9535305500030518, - 0.9217565059661865, - 0.8870497345924377, - 0.8503567576408386, - 0.8126786351203918, - 0.7750430107116699, - 0.7384765148162842, - 0.703976571559906, - 0.6724843382835388, - 0.644858717918396, - 0.9836174249649048, - 0.9960466623306274, - 1.003516674041748, - 1.0058236122131348, - 1.0029045343399048, - 0.9948392510414124, - 0.9818475842475891, - 0.9642839431762695, - 0.942627489566803, - 0.9174689054489136, - 0.8894944190979004, - 0.8594671487808228, - 0.8282061815261841, - 0.7965641617774963, - 0.7654042840003967, - 0.7355763912200928, - 0.7078942060470581, - 0.6831128597259521, - 0.6619082093238831, - 0.644858717918396 - ], - "z": [ - 0.4666672348976135, - 0.4784334897994995, - 0.48550504446029663, - 0.48768895864486694, - 0.48492565751075745, - 0.477290540933609, - 0.46499186754226685, - 0.44836512207984924, - 0.42786380648612976, - 0.4040471911430359, - 0.3775649070739746, - 0.3491393029689789, - 0.31954577565193176, - 0.28959155082702637, - 0.2600937485694885, - 0.23185691237449646, - 0.20565131306648254, - 0.18219174444675446, - 0.16211818158626556, - 0.1459781378507614, - 0.4666672348976135, - 0.48969316482543945, - 0.5077171921730042, - 0.5202476978302002, - 0.5269429683685303, - 0.5276201963424683, - 0.5222610235214233, - 0.5110116600990295, - 0.4941788911819458, - 0.47222188115119934, - 0.4457395672798157, - 0.41545435786247253, - 0.38219231367111206, - 0.34686073660850525, - 0.3104234039783478, - 0.2738741636276245, - 0.23821008205413818, - 0.20440389215946198, - 0.17337782680988312, - 0.1459781378507614, - 0.4666672348976135, - 0.4982205927371979, - 0.5245394706726074, - 0.544905960559845, - 0.5587645173072815, - 0.5657371282577515, - 0.5656335949897766, - 0.5584567785263062, - 0.5444023013114929, - 0.5238537192344666, - 0.4973714053630829, - 0.46567779779434204, - 0.4296374022960663, - 0.3902333080768585, - 0.34854036569595337, - 0.3056957721710205, - 0.26286831498146057, - 0.22122618556022644, - 0.18190526962280273, - 0.1459781378507614, - 0.4666672348976135, - 0.5030917525291443, - 0.5341489315032959, - 0.5589916110038757, - 0.5769420862197876, - 0.5875108242034912, - 0.590409517288208, - 0.5855590105056763, - 0.5730916857719421, - 0.5533475875854492, - 0.5268652439117432, - 0.49436715245246887, - 0.4567396640777588, - 0.41500920057296753, - 0.3703140616416931, - 0.323873370885849, - 0.27695396542549133, - 0.23083564639091492, - 0.18677642941474915, - 0.1459781378507614, - 0.4666672348976135, - 0.5037787556648254, - 0.5355042219161987, - 0.5609781742095947, - 0.5795058608055115, - 0.5905817747116089, - 0.5939038395881653, - 0.5893814563751221, - 0.5771379470825195, - 0.557507336139679, - 0.5310250520706177, - 0.49841344356536865, - 0.4605621099472046, - 0.4185035526752472, - 0.3733849823474884, - 0.3264371156692505, - 0.2789405584335327, - 0.23219093680381775, - 0.18746346235275269, - 0.1459781378507614, - 0.4666672348976135, - 0.5002071857452393, - 0.5284584760665894, - 0.5506505370140076, - 0.5661779046058655, - 0.5746171474456787, - 0.5757379531860352, - 0.5695098638534546, - 0.5561027526855469, - 0.5358822345733643, - 0.5093998908996582, - 0.4773781895637512, - 0.4406905174255371, - 0.40033766627311707, - 0.35742032527923584, - 0.3131091594696045, - 0.26861289143562317, - 0.22514519095420837, - 0.1838918775320053, - 0.1459781378507614, - 0.4666672348976135, - 0.49276405572891235, - 0.5137752890586853, - 0.5291277170181274, - 0.5384026169776917, - 0.5413469672203064, - 0.5378804802894592, - 0.5280976891517639, - 0.5122654438018799, - 0.4908156394958496, - 0.46433335542678833, - 0.433540940284729, - 0.39927834272384644, - 0.36248013377189636, - 0.3241501748561859, - 0.2853338420391083, - 0.24709005653858185, - 0.21046197414398193, - 0.1764487475156784, - 0.1459781378507614, - 0.4666672348976135, - 0.4822559654712677, - 0.4930456876754761, - 0.49874207377433777, - 0.4991897940635681, - 0.4943765699863434, - 0.48443374037742615, - 0.46963250637054443, - 0.45037662982940674, - 0.4271913170814514, - 0.40070903301239014, - 0.37165209650993347, - 0.34081318974494934, - 0.30903342366218567, - 0.2771797776222229, - 0.24612101912498474, - 0.21670442819595337, - 0.1897323727607727, - 0.16594064235687256, - 0.1459781378507614, - 0.4666672348976135, - 0.469821572303772, - 0.46851611137390137, - 0.46278640627861023, - 0.452788770198822, - 0.4387959837913513, - 0.4211896061897278, - 0.4004499912261963, - 0.3771428167819977, - 0.35190385580062866, - 0.3254215717315674, - 0.2984182834625244, - 0.2716306447982788, - 0.2457892894744873, - 0.22159916162490845, - 0.19972003996372223, - 0.18074876070022583, - 0.165202796459198, - 0.15350626409053802, - 0.1459781378507614, - 0.4666672348976135, - 0.4568083882331848, - 0.4428447186946869, - 0.4251570403575897, - 0.4042278826236725, - 0.38062813878059387, - 0.3550015389919281, - 0.32804709672927856, - 0.3005000650882721, - 0.27311185002326965, - 0.24662956595420837, - 0.22177553176879883, - 0.19922775030136108, - 0.17960120737552643, - 0.1634313315153122, - 0.1511591374874115, - 0.14311940968036652, - 0.13953140377998352, - 0.14049308001995087, - 0.1459781378507614, - 0.4666672348976135, - 0.4446265995502472, - 0.41881340742111206, - 0.38993170857429504, - 0.35876941680908203, - 0.3261764943599701, - 0.29304203391075134, - 0.26026979088783264, - 0.22875379025936127, - 0.1993536651134491, - 0.17287136614322662, - 0.1500292718410492, - 0.13145045936107635, - 0.11764170229434967, - 0.10897967219352722, - 0.10570064187049866, - 0.10789406299591064, - 0.11550009250640869, - 0.12831127643585205, - 0.1459781527519226, - 0.4666672348976135, - 0.4345962405204773, - 0.3990263044834137, - 0.36092761158943176, - 0.3213394582271576, - 0.2813417315483093, - 0.24202534556388855, - 0.20446285605430603, - 0.16967883706092834, - 0.13862210512161255, - 0.11213980615139008, - 0.09095431864261627, - 0.07564350962638855, - 0.06662501394748688, - 0.06414487957954407, - 0.0682707130908966, - 0.07888998091220856, - 0.09571300446987152, - 0.11828093230724335, - 0.1459781527519226, - 0.4666672348976135, - 0.4278043210506439, - 0.38562771677970886, - 0.3412878215312958, - 0.29599419236183167, - 0.2509823143482208, - 0.20747996866703033, - 0.16667380928993225, - 0.12967686355113983, - 0.09749838709831238, - 0.0710160881280899, - 0.05095234513282776, - 0.03785446286201477, - 0.03207963705062866, - 0.033785462379455566, - 0.04292541742324829, - 0.05925019085407257, - 0.0823144018650055, - 0.11148899793624878, - 0.1459781527519226, - 0.4666672348976135, - 0.4249868094921112, - 0.3800695240497589, - 0.3331405818462372, - 0.2854801416397095, - 0.2383882701396942, - 0.1931494027376175, - 0.15099763870239258, - 0.11308272182941437, - 0.08043891191482544, - 0.05395662784576416, - 0.034358203411102295, - 0.022178292274475098, - 0.01774907112121582, - 0.021191388368606567, - 0.0324113667011261, - 0.05110293626785278, - 0.07675620913505554, - 0.10867148637771606, - 0.1459781527519226, - 0.4666672348976135, - 0.4264490306377411, - 0.38295409083366394, - 0.33736878633499146, - 0.2909366488456726, - 0.24492424726486206, - 0.20058657228946686, - 0.1591331660747528, - 0.1216946393251419, - 0.08929233253002167, - 0.0628100335597992, - 0.042970120906829834, - 0.030313819646835327, - 0.025186270475387573, - 0.027727395296096802, - 0.03786787390708923, - 0.055331140756607056, - 0.07964077591896057, - 0.11013370752334595, - 0.1459781527519226, - 0.4666672348976135, - 0.4320325255393982, - 0.39396876096725464, - 0.3535142242908478, - 0.3117724359035492, - 0.2698820233345032, - 0.22898556292057037, - 0.19019868969917297, - 0.15457937121391296, - 0.12309922277927399, - 0.09661692380905151, - 0.07585485279560089, - 0.06137934327125549, - 0.05358526110649109, - 0.052685171365737915, - 0.058703675866127014, - 0.07147657871246338, - 0.09065546095371246, - 0.11571720242500305, - 0.1459781527519226, - 0.4666672348976135, - 0.44113224744796753, - 0.4119200110435486, - 0.3798273205757141, - 0.34572964906692505, - 0.3105570673942566, - 0.27526894211769104, - 0.24082791805267334, - 0.20817340910434723, - 0.17819616198539734, - 0.15171386301517487, - 0.12944889068603516, - 0.11200858652591705, - 0.09986862540245056, - 0.09336023032665253, - 0.09266090393066406, - 0.0977896898984909, - 0.10860671103000641, - 0.12481693923473358, - 0.1459781527519226, - 0.4666672348976135, - 0.4527621269226074, - 0.43486252427101135, - 0.41345667839050293, - 0.38912850618362427, - 0.3625416159629822, - 0.33442118763923645, - 0.30553433299064636, - 0.2766689658164978, - 0.24861249327659607, - 0.2221301943063736, - 0.19794446229934692, - 0.1767149716615677, - 0.15902087092399597, - 0.1453447788953781, - 0.1360597312450409, - 0.13141903281211853, - 0.13154920935630798, - 0.13644680380821228, - 0.1459781378507614, - 0.4666672348976135, - 0.46566182374954224, - 0.46031010150909424, - 0.4507579505443573, - 0.4372659921646118, - 0.4202022850513458, - 0.4000321924686432, - 0.3773059546947479, - 0.3526434898376465, - 0.3267175257205963, - 0.30023521184921265, - 0.2739189863204956, - 0.24848660826683044, - 0.2246318757534027, - 0.20300546288490295, - 0.18419724702835083, - 0.1687203198671341, - 0.15699678659439087, - 0.14934653043746948, - 0.1459781378507614, - 0.4666672348976135, - 0.4784335196018219, - 0.485505074262619, - 0.48768895864486694, - 0.48492568731307983, - 0.4772905707359314, - 0.46499189734458923, - 0.44836515188217163, - 0.42786383628845215, - 0.4040472209453583, - 0.377564936876297, - 0.34913933277130127, - 0.31954580545425415, - 0.28959158062934875, - 0.2600937783718109, - 0.23185692727565765, - 0.20565132796764374, - 0.18219175934791565, - 0.16211819648742676, - 0.1459781378507614 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.1310443878173828, - -1.1576839685440063, - -1.1902868747711182, - -1.2279640436172485, - -1.2696874141693115, - -1.314319133758545, - -1.360641598701477, - -1.4073913097381592, - -1.4532932043075562, - -1.4970948696136475, - -1.5376018285751343, - -1.5737090110778809, - -1.6044315099716187, - -1.6289312839508057, - -1.6465401649475098, - -1.6567776203155518, - -1.6593645811080933, - -1.6542303562164307, - -1.6415151357650757, - -1.621565580368042, - -1.1310443878173828, - -1.1564217805862427, - -1.187796950340271, - -1.2243142127990723, - -1.2649774551391602, - -1.308677315711975, - -1.3542219400405884, - -1.4003689289093018, - -1.445859432220459, - -1.489452838897705, - -1.5299596786499023, - -1.5662753582000732, - -1.5974090099334717, - -1.622511625289917, - -1.64089834690094, - -1.6520676612854004, - -1.6557148694992065, - -1.651740550994873, - -1.640252947807312, - -1.621565580368042, - -1.1310443878173828, - -1.152772068977356, - -1.1805970668792725, - -1.2137606143951416, - -1.251357913017273, - -1.2923634052276611, - -1.3356586694717407, - -1.3800625801086426, - -1.4243640899658203, - -1.4673545360565186, - -1.5078614950180054, - -1.544779896736145, - -1.577102780342102, - -1.6039483547210693, - -1.624584436416626, - -1.6384481191635132, - -1.6451612710952759, - -1.6445406675338745, - -1.6366032361984253, - -1.621565580368042, - -1.1310443878173828, - -1.1471302509307861, - -1.1694674491882324, - -1.1974467039108276, - -1.2303047180175781, - -1.2671452760696411, - -1.306963324546814, - -1.348672866821289, - -1.3911361694335938, - -1.4331949949264526, - -1.47370183467865, - -1.511552095413208, - -1.5457130670547485, - -1.5752530097961426, - -1.599366307258606, - -1.6173949241638184, - -1.628847360610962, - -1.6334110498428345, - -1.630961537361145, - -1.621565580368042, - -1.1310443878173828, - -1.1401078701019287, - -1.1556141376495361, - -1.177140474319458, - -1.2040992975234985, - -1.2357555627822876, - -1.2712455987930298, - -1.3096014261245728, - -1.3497767448425293, - -1.390675663948059, - -1.4311825037002563, - -1.470192551612854, - -1.5066415071487427, - -1.5395352840423584, - -1.5679765939712524, - -1.5911895036697388, - -1.6085410118103027, - -1.6195577383041382, - -1.623939037322998, - -1.621565580368042, - -1.1310443878173828, - -1.1324657201766968, - -1.1405384540557861, - -1.1550421714782715, - -1.175581455230713, - -1.2015959024429321, - -1.232375979423523, - -1.2670820951461792, - -1.3047674894332886, - -1.3444042205810547, - -1.3849111795425415, - -1.4251832962036133, - -1.4641221761703491, - -1.5006656646728516, - -1.533816933631897, - -1.5626716613769531, - -1.5864428281784058, - -1.6044819355010986, - -1.6162970066070557, - -1.621565580368042, - -1.1310443878173828, - -1.1250320672988892, - -1.1258738040924072, - -1.1335468292236328, - -1.147841453552246, - -1.1683681011199951, - -1.1945666074752808, - -1.2257225513458252, - -1.2609859704971313, - -1.2993950843811035, - -1.3399019241333008, - -1.3814018964767456, - -1.4227627515792847, - -1.462856411933899, - -1.50058913230896, - -1.5349316596984863, - -1.5649473667144775, - -1.5898174047470093, - -1.6088632345199585, - -1.621565580368042, - -1.1310443878173828, - -1.1186124086380005, - -1.11320960521698, - -1.1149834394454956, - -1.1238853931427002, - -1.1396727561950684, - -1.1619148254394531, - -1.190004825592041, - -1.2231765985488892, - -1.2605254650115967, - -1.301032304763794, - -1.3435925245285034, - -1.3870450258255005, - -1.4302045106887817, - -1.4718937873840332, - -1.5109755992889404, - -1.5463840961456299, - -1.577153205871582, - -1.6024435758590698, - -1.621565580368042, - -1.1310443878173828, - -1.1139024496078491, - -1.103918194770813, - -1.1013638973236084, - -1.106309413909912, - -1.1186195611953735, - -1.1379587650299072, - -1.1637994050979614, - -1.195436716079712, - -1.2320075035095215, - -1.2725144624710083, - -1.3158525228500366, - -1.360839605331421, - -1.4062484502792358, - -1.4508405923843384, - -1.4933996200561523, - -1.5327645540237427, - -1.5678616762161255, - -1.5977336168289185, - -1.621565580368042, - -1.1310443878173828, - -1.111412525177002, - -1.0990062952041626, - -1.0941641330718994, - -1.0970178842544556, - -1.1074899435043335, - -1.12529456615448, - -1.1499460935592651, - -1.180772066116333, - -1.216931700706482, - -1.2574386596679688, - -1.3011879920959473, - -1.3469862937927246, - -1.3935842514038086, - -1.4397109746932983, - -1.4841080904006958, - -1.5255646705627441, - -1.562949776649475, - -1.5952436923980713, - -1.621565580368042, - -1.1310443878173828, - -1.111412525177002, - -1.0990062952041626, - -1.0941641330718994, - -1.0970178842544556, - -1.1074899435043335, - -1.12529456615448, - -1.1499460935592651, - -1.180772066116333, - -1.216931700706482, - -1.2574386596679688, - -1.3011879920959473, - -1.3469862937927246, - -1.3935842514038086, - -1.4397109746932983, - -1.4841080904006958, - -1.5255646705627441, - -1.562949776649475, - -1.5952436923980713, - -1.621565580368042, - -1.1310443878173828, - -1.1139024496078491, - -1.103918194770813, - -1.1013638973236084, - -1.106309413909912, - -1.1186195611953735, - -1.1379587650299072, - -1.1637994050979614, - -1.195436716079712, - -1.2320075035095215, - -1.2725144624710083, - -1.3158525228500366, - -1.360839605331421, - -1.4062484502792358, - -1.4508405923843384, - -1.4933996200561523, - -1.5327645540237427, - -1.5678616762161255, - -1.5977336168289185, - -1.621565580368042, - -1.1310443878173828, - -1.1186124086380005, - -1.11320960521698, - -1.1149834394454956, - -1.1238853931427002, - -1.1396727561950684, - -1.1619148254394531, - -1.190004825592041, - -1.2231765985488892, - -1.2605253458023071, - -1.301032304763794, - -1.3435925245285034, - -1.3870450258255005, - -1.4302045106887817, - -1.4718937873840332, - -1.5109755992889404, - -1.5463840961456299, - -1.577153205871582, - -1.6024435758590698, - -1.621565580368042, - -1.1310443878173828, - -1.1250320672988892, - -1.1258738040924072, - -1.1335468292236328, - -1.147841453552246, - -1.1683681011199951, - -1.1945667266845703, - -1.2257225513458252, - -1.2609859704971313, - -1.2993950843811035, - -1.3399019241333008, - -1.3814018964767456, - -1.4227627515792847, - -1.462856411933899, - -1.50058913230896, - -1.5349316596984863, - -1.5649473667144775, - -1.5898174047470093, - -1.6088632345199585, - -1.621565580368042, - -1.1310443878173828, - -1.1324657201766968, - -1.1405384540557861, - -1.1550421714782715, - -1.175581455230713, - -1.2015959024429321, - -1.232375979423523, - -1.2670820951461792, - -1.3047674894332886, - -1.3444042205810547, - -1.3849111795425415, - -1.4251832962036133, - -1.4641221761703491, - -1.5006656646728516, - -1.533816933631897, - -1.5626716613769531, - -1.5864428281784058, - -1.6044819355010986, - -1.6162970066070557, - -1.621565580368042, - -1.1310443878173828, - -1.1401078701019287, - -1.1556141376495361, - -1.1771403551101685, - -1.2040992975234985, - -1.235755443572998, - -1.2712455987930298, - -1.3096013069152832, - -1.3497766256332397, - -1.3906755447387695, - -1.4311825037002563, - -1.470192551612854, - -1.5066415071487427, - -1.5395352840423584, - -1.567976474761963, - -1.5911895036697388, - -1.6085410118103027, - -1.6195577383041382, - -1.623939037322998, - -1.621565580368042, - -1.1310443878173828, - -1.1471302509307861, - -1.1694674491882324, - -1.1974467039108276, - -1.2303047180175781, - -1.2671452760696411, - -1.306963324546814, - -1.348672866821289, - -1.3911361694335938, - -1.4331949949264526, - -1.47370183467865, - -1.511552095413208, - -1.5457130670547485, - -1.5752530097961426, - -1.599366307258606, - -1.6173949241638184, - -1.628847360610962, - -1.6334110498428345, - -1.630961537361145, - -1.621565580368042, - -1.1310443878173828, - -1.152772068977356, - -1.1805970668792725, - -1.2137606143951416, - -1.251357913017273, - -1.2923634052276611, - -1.3356586694717407, - -1.3800625801086426, - -1.4243640899658203, - -1.4673545360565186, - -1.5078614950180054, - -1.544779896736145, - -1.577102780342102, - -1.6039483547210693, - -1.624584436416626, - -1.6384481191635132, - -1.6451612710952759, - -1.6445406675338745, - -1.6366032361984253, - -1.621565580368042, - -1.1310443878173828, - -1.1564217805862427, - -1.187796950340271, - -1.2243143320083618, - -1.2649774551391602, - -1.308677315711975, - -1.3542219400405884, - -1.4003689289093018, - -1.4458595514297485, - -1.489452838897705, - -1.5299596786499023, - -1.5662753582000732, - -1.5974091291427612, - -1.622511625289917, - -1.64089834690094, - -1.6520676612854004, - -1.6557148694992065, - -1.651740550994873, - -1.640252947807312, - -1.621565580368042, - -1.1310443878173828, - -1.1576839685440063, - -1.1902868747711182, - -1.2279640436172485, - -1.2696874141693115, - -1.314319133758545, - -1.360641598701477, - -1.4073913097381592, - -1.4532932043075562, - -1.4970948696136475, - -1.5376018285751343, - -1.5737090110778809, - -1.6044315099716187, - -1.6289312839508057, - -1.6465401649475098, - -1.6567776203155518, - -1.6593645811080933, - -1.6542303562164307, - -1.6415151357650757, - -1.621565580368042 - ], - "y": [ - 1.1733671426773071, - 1.1853501796722412, - 1.1914403438568115, - 1.1914714574813843, - 1.1854426860809326, - 1.1735186576843262, - 1.1560243368148804, - 1.133437156677246, - 1.1063730716705322, - 1.0755704641342163, - 1.0418694019317627, - 1.0061893463134766, - 0.9695033431053162, - 0.9328122138977051, - 0.8971167802810669, - 0.8633906841278076, - 0.8325539827346802, - 0.8054476976394653, - 0.7828113436698914, - 0.765262246131897, - 1.1733671426773071, - 1.1708468198776245, - 1.1628293991088867, - 1.1495332717895508, - 1.1313211917877197, - 1.1086901426315308, - 1.0822572708129883, - 1.0527435541152954, - 1.0209541320800781, - 0.9877561926841736, - 0.95405513048172, - 0.9207703471183777, - 0.8888096809387207, - 0.8590450286865234, - 0.8322882652282715, - 0.8092691898345947, - 0.7906157374382019, - 0.7768367528915405, - 0.7683080434799194, - 0.765262246131897, - 1.1733671426773071, - 1.1563150882720947, - 1.134162187576294, - 1.1075127124786377, - 1.077093482017517, - 1.0437344312667847, - 1.0083452463150024, - 0.9718915224075317, - 0.9353675246238708, - 0.8997694849967957, - 0.866068422794342, - 0.8351837396621704, - 0.8079577088356018, - 0.7851331233978271, - 0.7673324942588806, - 0.7550414204597473, - 0.7485951781272888, - 0.7481696009635925, - 0.7537763118743896, - 0.765262246131897, - 1.1733671426773071, - 1.1433296203613281, - 1.1085454225540161, - 1.0699633359909058, - 1.028635859489441, - 0.9856902956962585, - 0.9422979950904846, - 0.8996426463127136, - 0.858887791633606, - 0.8211450576782227, - 0.7874440550804138, - 0.7587039470672607, - 0.7357088327407837, - 0.7190858125686646, - 0.7092884182929993, - 0.7065838575363159, - 0.7110458612442017, - 0.7225527763366699, - 0.7407907843589783, - 0.7652623057365417, - 1.1733671426773071, - 1.1332975625991821, - 1.0887550115585327, - 1.040954351425171, - 0.9911996126174927, - 0.9408478736877441, - 0.8912726640701294, - 0.8438262343406677, - 0.7998027801513672, - 0.7604032158851624, - 0.7267021536827087, - 0.6996189951896667, - 0.6798924207687378, - 0.6680604219436646, - 0.6644459962844849, - 0.6691474914550781, - 0.6820368766784668, - 0.7027623653411865, - 0.7307587265968323, - 0.7652623057365417, - 1.1733671426773071, - 1.1273061037063599, - 1.0769355297088623, - 1.0236291885375977, - 0.9688413739204407, - 0.9140665531158447, - 0.8607986569404602, - 0.8104907870292664, - 0.7645152807235718, - 0.7241261601448059, - 0.6904251575469971, - 0.6643314361572266, - 0.6465569734573364, - 0.6375864744186401, - 0.6376646161079407, - 0.6467893123626709, - 0.6647117137908936, - 0.6909428834915161, - 0.72476726770401, - 0.7652623057365417, - 1.1733671426773071, - 1.1260044574737549, - 1.0743677616119385, - 1.0198653936386108, - 0.9639841318130493, - 0.9082483649253845, - 0.8541783094406128, - 0.8032487630844116, - 0.7568491697311401, - 0.7162450551986694, - 0.6825440526008606, - 0.6566653847694397, - 0.6393149495124817, - 0.630966067314148, - 0.6318464279174805, - 0.6419320702552795, - 0.6609479188919067, - 0.6883751153945923, - 0.723465621471405, - 0.7652623057365417, - 1.1733671426773071, - 1.1295337677001953, - 1.0813299417495728, - 1.0300707817077637, - 0.9771541953086853, - 0.9240239262580872, - 0.872128963470459, - 0.8228850364685059, - 0.7776352167129517, - 0.7376140356063843, - 0.7039129734039307, - 0.6774514317512512, - 0.6589511632919312, - 0.6489167809486389, - 0.6476219892501831, - 0.6551021337509155, - 0.6711532473564148, - 0.6953373551368713, - 0.7269948720932007, - 0.7652623057365417, - 1.1733671426773071, - 1.1375114917755127, - 1.0970678329467773, - 1.053139328956604, - 1.0069243907928467, - 0.9596835970878601, - 0.9127055406570435, - 0.8672714829444885, - 0.8246210217475891, - 0.7859174013137817, - 0.7522163391113281, - 0.7244372367858887, - 0.7033376693725586, - 0.6894932985305786, - 0.6832817196846008, - 0.6848723888397217, - 0.6942218542098999, - 0.7110751867294312, - 0.7349725961685181, - 0.7652623057365417, - 1.1733671426773071, - 1.1490731239318848, - 1.1198757886886597, - 1.086571455001831, - 1.050068736076355, - 1.0113632678985596, - 0.9715107679367065, - 0.9315983653068542, - 0.89271479845047, - 0.855920672416687, - 0.8222196698188782, - 0.7925310134887695, - 0.7676645517349243, - 0.7482985258102417, - 0.7349613308906555, - 0.7280166149139404, - 0.727653980255127, - 0.7338831424713135, - 0.7465342879295349, - 0.765262246131897, - 1.1733671426773071, - 1.1629657745361328, - 1.1472822427749634, - 1.126744031906128, - 1.1019116640090942, - 1.0734624862670898, - 1.0421723127365112, - 1.0088948011398315, - 0.9745376110076904, - 0.9400380253791809, - 0.9063369631767273, - 0.87435382604599, - 0.8449609279632568, - 0.8189600706100464, - 0.7970605492591858, - 0.7798596620559692, - 0.7678265571594238, - 0.7612895965576172, - 0.7604269981384277, - 0.765262246131897, - 1.1733671426773071, - 1.1776840686798096, - 1.1763172149658203, - 1.1693038940429688, - 1.1568354368209839, - 1.1392518281936646, - 1.1170328855514526, - 1.0907844305038452, - 1.0612226724624634, - 1.0291539430618286, - 0.995452880859375, - 0.9610388875007629, - 0.9268506169319153, - 0.8938206434249878, - 0.86285001039505, - 0.8347833752632141, - 0.8103864192962646, - 0.7903246283531189, - 0.7751452326774597, - 0.765262246131897, - 1.1733671426773071, - 1.1916329860687256, - 1.2038345336914062, - 1.2096389532089233, - 1.208888053894043, - 1.2016021013259888, - 1.187980055809021, - 1.1683933734893799, - 1.143376350402832, - 1.1136113405227661, - 1.0799102783203125, - 1.0431925058364868, - 1.0044595003128052, - 0.9647678732872009, - 0.9252002835273743, - 0.8868359923362732, - 0.8507214784622192, - 0.8178418874740601, - 0.789094090461731, - 0.765262246131897, - 1.1733671426773071, - 1.2033008337020874, - 1.2268520593643188, - 1.2433782815933228, - 1.2524287700653076, - 1.2537567615509033, - 1.2473257780075073, - 1.2333115339279175, - 1.2120959758758545, - 1.184257984161377, - 1.150557041168213, - 1.1119121313095093, - 1.0693776607513428, - 1.024113655090332, - 0.977354884147644, - 0.9303768277168274, - 0.8844608068466187, - 0.8408594727516174, - 0.8007620573043823, - 0.765262246131897, - 1.1733671426773071, - 1.211423397064209, - 1.242875576019287, - 1.2668657302856445, - 1.2827394008636475, - 1.2900638580322266, - 1.288638949394226, - 1.2785037755966187, - 1.259934663772583, - 1.23343825340271, - 1.1997371912002563, - 1.1597508192062378, - 1.114569902420044, - 1.0654267072677612, - 1.0136619806289673, - 0.9606874585151672, - 0.9079482555389404, - 0.8568829298019409, - 0.8088845610618591, - 0.765262246131897, - 1.1733671426773071, - 1.2151203155517578, - 1.2501686811447144, - 1.2775559425354004, - 1.2965353727340698, - 1.3065890073776245, - 1.3074426651000977, - 1.2990729808807373, - 1.2817084789276123, - 1.2558226585388184, - 1.2221215963363647, - 1.181524634361267, - 1.1351391077041626, - 1.0842304229736328, - 1.0301871299743652, - 0.9744833111763, - 0.9186385273933411, - 0.8641760349273682, - 0.8125815391540527, - 0.765262246131897, - 1.1733671426773071, - 1.2139911651611328, - 1.247941017150879, - 1.274290680885315, - 1.2923214435577393, - 1.3015414476394653, - 1.301699161529541, - 1.292790174484253, - 1.2750577926635742, - 1.2489854097366333, - 1.2152843475341797, - 1.174873948097229, - 1.1288564205169678, - 1.0784869194030762, - 1.025139570236206, - 0.9702694416046143, - 0.9153732061386108, - 0.8619484305381775, - 0.811452329158783, - 0.765262246131897, - 1.1733671426773071, - 1.208158016204834, - 1.236433982849121, - 1.2574236392974854, - 1.2705544233322144, - 1.275468111038208, - 1.2720308303833008, - 1.26033616065979, - 1.2407032251358032, - 1.2136675119400024, - 1.1799664497375488, - 1.140519380569458, - 1.0964024066925049, - 1.048818588256836, - 0.9990663528442383, - 0.9485023617744446, - 0.8985061645507812, - 0.8504413962364197, - 0.8056192398071289, - 0.765262246131897, - 1.1733671426773071, - 1.1982532739639282, - 1.2168946266174316, - 1.2287826538085938, - 1.2335929870605469, - 1.2311946153640747, - 1.2216527462005615, - 1.2052278518676758, - 1.1823678016662598, - 1.1536961793899536, - 1.1199952363967896, - 1.0821839570999146, - 1.041293978691101, - 0.9984406232833862, - 0.9547927975654602, - 0.9115409851074219, - 0.8698651790618896, - 0.8309020400047302, - 0.7957144975662231, - 0.765262246131897, - 1.1733671426773071, - 1.1853501796722412, - 1.1914403438568115, - 1.1914714574813843, - 1.1854426860809326, - 1.1735186576843262, - 1.1560243368148804, - 1.133437156677246, - 1.1063730716705322, - 1.0755703449249268, - 1.0418694019317627, - 1.006189227104187, - 0.9695032835006714, - 0.9328121542930603, - 0.8971167206764221, - 0.8633906841278076, - 0.8325539827346802, - 0.8054476976394653, - 0.7828113436698914, - 0.765262246131897 - ], - "z": [ - 0.6462956666946411, - 0.6576395034790039, - 0.6634048223495483, - 0.6634342670440674, - 0.6577271819114685, - 0.6464390754699707, - 0.6298779845237732, - 0.6084955930709839, - 0.58287513256073, - 0.5537155270576477, - 0.5218121409416199, - 0.4880352020263672, - 0.45330607891082764, - 0.4185720682144165, - 0.3847806751728058, - 0.35285356640815735, - 0.3236616849899292, - 0.2980012893676758, - 0.2765723466873169, - 0.25995934009552, - 0.6462956666946411, - 0.6713574528694153, - 0.6904665231704712, - 0.703101634979248, - 0.7089180946350098, - 0.7077572345733643, - 0.699650764465332, - 0.684819757938385, - 0.6636687517166138, - 0.6367747783660889, - 0.604871392250061, - 0.568828821182251, - 0.5296302437782288, - 0.48834484815597534, - 0.44609880447387695, - 0.4040444791316986, - 0.3633290231227875, - 0.32506299018859863, - 0.29029029607772827, - 0.25995934009552, - 0.6462956666946411, - 0.6820740699768066, - 0.7116074562072754, - 0.7340902090072632, - 0.7489089965820312, - 0.7556596994400024, - 0.7541580200195312, - 0.7444450855255127, - 0.7267857193946838, - 0.7016617059707642, - 0.6697582602500916, - 0.6319457292556763, - 0.5892555713653564, - 0.5428521037101746, - 0.49400123953819275, - 0.4440354108810425, - 0.3943175971508026, - 0.3462039530277252, - 0.30100691318511963, - 0.25995934009552, - 0.6462956666946411, - 0.688628077507019, - 0.724536657333374, - 0.7530419230461121, - 0.7733663320541382, - 0.7849553823471069, - 0.787493109703064, - 0.7809101939201355, - 0.7653862237930298, - 0.7413446307182312, - 0.7094411849975586, - 0.670546293258667, - 0.6257206797599792, - 0.5761871933937073, - 0.5232970118522644, - 0.468492716550827, - 0.4132693111896515, - 0.35913312435150146, - 0.30756092071533203, - 0.25995934009552, - 0.6462956666946411, - 0.6903091669082642, - 0.7278530597686768, - 0.7579030990600586, - 0.7796396613121033, - 0.79246985912323, - 0.7960436344146729, - 0.7902635335922241, - 0.7752873301506042, - 0.7515233755111694, - 0.7196199893951416, - 0.6804473400115967, - 0.6350740790367126, - 0.5847377181053162, - 0.5308114290237427, - 0.4747660756111145, - 0.41813045740127563, - 0.3624494969844818, - 0.30924201011657715, - 0.25995934009552, - 0.6462956666946411, - 0.6869352459907532, - 0.721197247505188, - 0.7481468915939331, - 0.767049252986908, - 0.7773886322975159, - 0.7788829803466797, - 0.7714916467666626, - 0.7554161548614502, - 0.7310949563980103, - 0.6991915702819824, - 0.6605761647224426, - 0.6163021326065063, - 0.567577064037323, - 0.5157302021980286, - 0.4621756672859192, - 0.40837427973747253, - 0.35579365491867065, - 0.30586808919906616, - 0.25995934009552, - 0.6462956666946411, - 0.6788718700408936, - 0.7052904367446899, - 0.7248306274414062, - 0.7369594573974609, - 0.7413461208343506, - 0.7378708124160767, - 0.7266286015510559, - 0.7079259157180786, - 0.6822730302810669, - 0.6503696441650391, - 0.6130859851837158, - 0.5714390873908997, - 0.5265649557113647, - 0.4796876609325409, - 0.43208587169647217, - 0.3850579857826233, - 0.3398869037628174, - 0.29780471324920654, - 0.25995934009552, - 0.6462956666946411, - 0.6669929027557373, - 0.6818564534187317, - 0.6904808878898621, - 0.6926309466362, - 0.6882479190826416, - 0.677451491355896, - 0.6605360507965088, - 0.637963056564331, - 0.6103482246398926, - 0.5784448385238647, - 0.5431231260299683, - 0.5053465366363525, - 0.4661455750465393, - 0.4265895187854767, - 0.3877573311328888, - 0.3507082462310791, - 0.31645292043685913, - 0.2859257459640503, - 0.25995934009552, - 0.6462956666946411, - 0.652585506439209, - 0.6534347534179688, - 0.6488200426101685, - 0.6388673782348633, - 0.6238482594490051, - 0.6041722893714905, - 0.5803762078285217, - 0.5531091094017029, - 0.523114800453186, - 0.4912114143371582, - 0.4582691788673401, - 0.4251866936683655, - 0.3928663432598114, - 0.3621898293495178, - 0.3339937925338745, - 0.3090474307537079, - 0.2880311608314514, - 0.271518349647522, - 0.25995934009552, - 0.6462956666946411, - 0.6372110843658447, - 0.6231051683425903, - 0.6043627262115479, - 0.581494927406311, - 0.5551257133483887, - 0.5259741544723511, - 0.4948355555534363, - 0.4625592827796936, - 0.43002572655677795, - 0.3981223404407501, - 0.3677193522453308, - 0.33964604139328003, - 0.3146682381629944, - 0.2934672236442566, - 0.27662134170532227, - 0.2645900845527649, - 0.2577016353607178, - 0.2561438977718353, - 0.25995934009552, - 0.6462956666946411, - 0.6225355863571167, - 0.5941544771194458, - 0.5619264841079712, - 0.5267307758331299, - 0.4895274043083191, - 0.45133110880851746, - 0.4131838083267212, - 0.3761260509490967, - 0.34116873145103455, - 0.3092653155326843, - 0.2812861204147339, - 0.25799429416656494, - 0.24002517759799957, - 0.2278689593076706, - 0.2218571901321411, - 0.222153902053833, - 0.22875092923641205, - 0.2414683997631073, - 0.2599593698978424, - 0.6462956666946411, - 0.6101493239402771, - 0.5697199106216431, - 0.526110053062439, - 0.480509489774704, - 0.43416205048561096, - 0.38833189010620117, - 0.34426915645599365, - 0.30317583680152893, - 0.2661727964878082, - 0.2342693954706192, - 0.20833589136600494, - 0.1890796422958374, - 0.1770259439945221, - 0.17250356078147888, - 0.1756359040737152, - 0.18633747100830078, - 0.20431633293628693, - 0.2290821671485901, - 0.2599593698978424, - 0.6462956666946411, - 0.6013946533203125, - 0.5524492859840393, - 0.5007946491241455, - 0.44783979654312134, - 0.395029217004776, - 0.34380340576171875, - 0.2955595850944519, - 0.2516138553619385, - 0.21316494047641754, - 0.18126153945922852, - 0.15677392482757568, - 0.14037007093429565, - 0.13249745965003967, - 0.1333707571029663, - 0.14296618103981018, - 0.16102203726768494, - 0.18704572319984436, - 0.2203274667263031, - 0.2599593698978424, - 0.6462956666946411, - 0.5972201824188232, - 0.5442141890525818, - 0.4887235760688782, - 0.43226200342178345, - 0.3763696253299713, - 0.3225709795951843, - 0.272333562374115, - 0.2270277589559555, - 0.18788939714431763, - 0.1559859812259674, - 0.13218781352043152, - 0.11714401841163635, - 0.11126503348350525, - 0.11471116542816162, - 0.1273883879184723, - 0.1489509642124176, - 0.17881062626838684, - 0.21615298092365265, - 0.2599593698978424, - 0.6462956666946411, - 0.5980782508850098, - 0.5459070205688477, - 0.4912049174308777, - 0.43546420335769653, - 0.38020533323287964, - 0.3269355595111847, - 0.27710795402526855, - 0.23208172619342804, - 0.19308507442474365, - 0.16118165850639343, - 0.13724178075790405, - 0.1219184398651123, - 0.115629643201828, - 0.11854687333106995, - 0.13059058785438538, - 0.15143230557441711, - 0.1805034577846527, - 0.21701110899448395, - 0.2599593698978424, - 0.6462956666946411, - 0.603875994682312, - 0.5573442578315735, - 0.5079697966575623, - 0.45709937810897827, - 0.406120628118515, - 0.35642409324645996, - 0.3093653917312622, - 0.2662281095981598, - 0.22818897664546967, - 0.19628557562828064, - 0.171388179063797, - 0.15417584776878357, - 0.14511814713478088, - 0.14446216821670532, - 0.15222576260566711, - 0.16819718480110168, - 0.19194072484970093, - 0.2228088080883026, - 0.2599593698978424, - 0.6462956666946411, - 0.6139850616455078, - 0.5772866606712341, - 0.5372015237808228, - 0.49482306838035583, - 0.4513072967529297, - 0.40784114599227905, - 0.3656103014945984, - 0.3257666826248169, - 0.2893971800804138, - 0.2574937641620636, - 0.2309267222881317, - 0.21042078733444214, - 0.19653522968292236, - 0.18964883685112, - 0.18994945287704468, - 0.19742891192436218, - 0.21188311278820038, - 0.2329178750514984, - 0.2599593698978424, - 0.6462956666946411, - 0.6273099780082703, - 0.6035730242729187, - 0.5757323503494263, - 0.5445473194122314, - 0.5108686089515686, - 0.47561484575271606, - 0.4397476613521576, - 0.4042454957962036, - 0.3700766861438751, - 0.3381732702255249, - 0.3094055652618408, - 0.28455817699432373, - 0.2643088698387146, - 0.24921013414859772, - 0.2396736890077591, - 0.2359597235918045, - 0.23816949129104614, - 0.24624280631542206, - 0.2599593698978424, - 0.6462956666946411, - 0.6424068212509155, - 0.633354902267456, - 0.6193868517875671, - 0.6008836627006531, - 0.5783501267433167, - 0.5524008274078369, - 0.5237435698509216, - 0.4931601583957672, - 0.4614847004413605, - 0.42958131432533264, - 0.39832019805908203, - 0.36855408549308777, - 0.34109488129615784, - 0.31669169664382935, - 0.2960100769996643, - 0.2796142101287842, - 0.2679513394832611, - 0.26133960485458374, - 0.25995934009552, - 0.6462956666946411, - 0.6576395034790039, - 0.6634048223495483, - 0.6634343266487122, - 0.6577271819114685, - 0.6464391350746155, - 0.629878044128418, - 0.6084956526756287, - 0.5828751921653748, - 0.5537155866622925, - 0.5218122005462646, - 0.48803526163101196, - 0.45330610871315, - 0.4185720980167389, - 0.3847807049751282, - 0.35285359621047974, - 0.3236616849899292, - 0.2980012893676758, - 0.2765723466873169, - 0.25995934009552 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.3343497514724731, - -1.361583948135376, - -1.3959046602249146, - -1.436375617980957, - -1.4818928241729736, - -1.531214714050293, - -1.5829960107803345, - -1.635824203491211, - -1.6882582902908325, - -1.7388678789138794, - -1.786272644996643, - -1.8291794061660767, - -1.8664178848266602, - -1.8969721794128418, - -1.920008897781372, - -1.9348995685577393, - -1.941238284111023, - -1.9388518333435059, - -1.9278055429458618, - -1.9084006547927856, - -1.3343497514724731, - -1.3603205680847168, - -1.3934121131896973, - -1.4327219724655151, - -1.4771778583526611, - -1.5255669355392456, - -1.5765695571899414, - -1.6287941932678223, - -1.680816650390625, - -1.7312175035476685, - -1.7786222696304321, - -1.8217377662658691, - -1.8593878746032715, - -1.8905456066131592, - -1.9143610000610352, - -1.9301846027374268, - -1.937584638595581, - -1.9363592863082886, - -1.926542043685913, - -1.9084006547927856, - -1.3343497514724731, - -1.3566668033599854, - -1.386204481124878, - -1.4221570491790771, - -1.4635436534881592, - -1.5092355012893677, - -1.5579862594604492, - -1.6084660291671753, - -1.659298062324524, - -1.7090955972671509, - -1.7565003633499146, - -1.800219178199768, - -1.8390597105026245, - -1.871962308883667, - -1.8980295658111572, - -1.9165503978729248, - -1.9270195960998535, - -1.9291517734527588, - -1.9228883981704712, - -1.9084006547927856, - -1.3343497514724731, - -1.351019024848938, - -1.3750629425048828, - -1.4058254957199097, - -1.4424678087234497, - -1.48399019241333, - -1.5292601585388184, - -1.5770426988601685, - -1.6260344982147217, - -1.6748992204666138, - -1.7223039865493774, - -1.7669556140899658, - -1.8076362609863281, - -1.8432362079620361, - -1.8727842569351196, - -1.8954745531082153, - -1.9106881618499756, - -1.9180101156234741, - -1.9172406196594238, - -1.9084006547927856, - -1.3343497514724731, - -1.3439890146255493, - -1.3611947298049927, - -1.3854973316192627, - -1.4162342548370361, - -1.4525667428970337, - -1.4935039281845093, - -1.5379290580749512, - -1.5846304893493652, - -1.6323341131210327, - -1.6797388792037964, - -1.7255516052246094, - -1.7685227394104004, - -1.807479977607727, - -1.8413608074188232, - -1.8692409992218018, - -1.8903601169586182, - -1.904141902923584, - -1.9102106094360352, - -1.9084006547927856, - -1.3343497514724731, - -1.336338758468628, - -1.3461027145385742, - -1.3633754253387451, - -1.3876856565475464, - -1.4183703660964966, - -1.4545924663543701, - -1.4953640699386597, - -1.539572834968567, - -1.5860130786895752, - -1.6334177255630493, - -1.6804940700531006, - -1.7259576320648193, - -1.768568515777588, - -1.8071644306182861, - -1.840692400932312, - -1.868238091468811, - -1.8890498876571655, - -1.9025602340698242, - -1.9084006547927856, - -1.3343497514724731, - -1.3288969993591309, - -1.3314223289489746, - -1.341856837272644, - -1.359915852546692, - -1.3851068019866943, - -1.4167425632476807, - -1.4539600610733032, - -1.495744228363037, - -1.5409554243087769, - -1.5883601903915405, - -1.6366654634475708, - -1.684553623199463, - -1.7307186126708984, - -1.7739008665084839, - -1.8129225969314575, - -1.84671950340271, - -1.8743696212768555, - -1.8951185941696167, - -1.9084006547927856, - -1.3343497514724731, - -1.3224704265594482, - -1.3187445402145386, - -1.3232736587524414, - -1.335934042930603, - -1.356380581855774, - -1.384055495262146, - -1.4182039499282837, - -1.4578943252563477, - -1.5020439624786377, - -1.5494487285614014, - -1.5988154411315918, - -1.6487975120544434, - -1.6980316638946533, - -1.7451746463775635, - -1.7889407873153687, - -1.8281362056732178, - -1.8616917133331299, - -1.888692021369934, - -1.9084006547927856, - -1.3343497514724731, - -1.3177554607391357, - -1.3094431161880493, - -1.3096394538879395, - -1.3183391094207764, - -1.3353047370910645, - -1.3600738048553467, - -1.3919702768325806, - -1.4301245212554932, - -1.4734954833984375, - -1.5209001302719116, - -1.5710456371307373, - -1.6225639581680298, - -1.6740498542785645, - -1.724098801612854, - -1.771345853805542, - -1.8145021200180054, - -1.8523902893066406, - -1.883976936340332, - -1.9084006547927856, - -1.3343497514724731, - -1.3152629137039185, - -1.3045259714126587, - -1.3024318218231201, - -1.309037685394287, - -1.3241631984710693, - -1.347395896911621, - -1.3781020641326904, - -1.4154441356658936, - -1.458403468132019, - -1.5058081150054932, - -1.5563652515411377, - -1.6086957454681396, - -1.6613719463348389, - -1.7129572629928589, - -1.7620444297790527, - -1.807294487953186, - -1.84747314453125, - -1.8814845085144043, - -1.9084006547927856, - -1.3343497514724731, - -1.3152629137039185, - -1.3045259714126587, - -1.3024318218231201, - -1.309037685394287, - -1.3241631984710693, - -1.347395896911621, - -1.3781020641326904, - -1.4154441356658936, - -1.458403468132019, - -1.5058081150054932, - -1.5563652515411377, - -1.6086957454681396, - -1.6613719463348389, - -1.7129572629928589, - -1.7620444297790527, - -1.807294487953186, - -1.84747314453125, - -1.8814845085144043, - -1.9084006547927856, - -1.3343497514724731, - -1.3177554607391357, - -1.3094431161880493, - -1.3096394538879395, - -1.3183391094207764, - -1.3353047370910645, - -1.3600738048553467, - -1.3919702768325806, - -1.4301245212554932, - -1.4734954833984375, - -1.5209001302719116, - -1.5710456371307373, - -1.6225639581680298, - -1.6740498542785645, - -1.724098801612854, - -1.771345853805542, - -1.8145021200180054, - -1.8523902893066406, - -1.883976936340332, - -1.9084006547927856, - -1.3343497514724731, - -1.3224704265594482, - -1.3187445402145386, - -1.3232736587524414, - -1.335934042930603, - -1.356380581855774, - -1.384055495262146, - -1.4182039499282837, - -1.4578943252563477, - -1.5020439624786377, - -1.5494487285614014, - -1.5988154411315918, - -1.6487975120544434, - -1.6980315446853638, - -1.7451746463775635, - -1.7889407873153687, - -1.8281362056732178, - -1.8616917133331299, - -1.888692021369934, - -1.9084006547927856, - -1.3343497514724731, - -1.3288969993591309, - -1.3314223289489746, - -1.341856837272644, - -1.359915852546692, - -1.3851068019866943, - -1.4167425632476807, - -1.4539600610733032, - -1.4957443475723267, - -1.5409554243087769, - -1.5883601903915405, - -1.6366654634475708, - -1.6845537424087524, - -1.7307186126708984, - -1.7739008665084839, - -1.8129225969314575, - -1.84671950340271, - -1.8743696212768555, - -1.8951185941696167, - -1.9084006547927856, - -1.3343497514724731, - -1.336338758468628, - -1.3461027145385742, - -1.3633754253387451, - -1.3876856565475464, - -1.4183703660964966, - -1.4545924663543701, - -1.4953640699386597, - -1.539572834968567, - -1.5860129594802856, - -1.6334177255630493, - -1.680493950843811, - -1.7259576320648193, - -1.768568515777588, - -1.8071644306182861, - -1.840692400932312, - -1.868238091468811, - -1.8890498876571655, - -1.9025602340698242, - -1.9084006547927856, - -1.3343497514724731, - -1.3439890146255493, - -1.3611946105957031, - -1.3854973316192627, - -1.4162341356277466, - -1.4525667428970337, - -1.4935039281845093, - -1.5379290580749512, - -1.5846304893493652, - -1.6323341131210327, - -1.6797388792037964, - -1.7255516052246094, - -1.7685226202011108, - -1.807479977607727, - -1.8413608074188232, - -1.8692409992218018, - -1.8903599977493286, - -1.904141902923584, - -1.9102106094360352, - -1.9084006547927856, - -1.3343497514724731, - -1.351019024848938, - -1.3750629425048828, - -1.4058254957199097, - -1.4424678087234497, - -1.48399019241333, - -1.5292600393295288, - -1.577042579650879, - -1.6260344982147217, - -1.6748992204666138, - -1.7223039865493774, - -1.7669556140899658, - -1.8076362609863281, - -1.8432362079620361, - -1.8727842569351196, - -1.8954745531082153, - -1.9106881618499756, - -1.9180101156234741, - -1.9172406196594238, - -1.9084006547927856, - -1.3343497514724731, - -1.3566668033599854, - -1.386204481124878, - -1.4221570491790771, - -1.4635436534881592, - -1.5092355012893677, - -1.5579862594604492, - -1.6084661483764648, - -1.659298062324524, - -1.7090955972671509, - -1.7565003633499146, - -1.800219178199768, - -1.8390597105026245, - -1.871962308883667, - -1.8980295658111572, - -1.9165503978729248, - -1.9270195960998535, - -1.9291517734527588, - -1.9228883981704712, - -1.9084006547927856, - -1.3343497514724731, - -1.3603205680847168, - -1.3934121131896973, - -1.4327219724655151, - -1.4771778583526611, - -1.5255669355392456, - -1.5765695571899414, - -1.6287943124771118, - -1.680816650390625, - -1.731217622756958, - -1.7786223888397217, - -1.8217377662658691, - -1.8593878746032715, - -1.8905456066131592, - -1.9143610000610352, - -1.9301846027374268, - -1.937584638595581, - -1.9363592863082886, - -1.926542043685913, - -1.9084006547927856, - -1.3343497514724731, - -1.361583948135376, - -1.3959046602249146, - -1.436375617980957, - -1.4818928241729736, - -1.531214714050293, - -1.5829960107803345, - -1.635824203491211, - -1.6882582902908325, - -1.7388678789138794, - -1.786272644996643, - -1.8291794061660767, - -1.8664178848266602, - -1.8969721794128418, - -1.920008897781372, - -1.9348995685577393, - -1.941238284111023, - -1.9388518333435059, - -1.9278055429458618, - -1.9084006547927856 - ], - "y": [ - 1.3634607791900635, - 1.3749858140945435, - 1.3796826601028442, - 1.3774230480194092, - 1.3682688474655151, - 1.3524696826934814, - 1.3304563760757446, - 1.302829623222351, - 1.2703428268432617, - 1.233882188796997, - 1.1944422721862793, - 1.1530989408493042, - 1.1109799146652222, - 1.069234013557434, - 1.0290000438690186, - 0.9913754463195801, - 0.9573864936828613, - 0.9279603958129883, - 0.9038997292518616, - 0.8858609199523926, - 1.3634607791900635, - 1.358148217201233, - 1.3464666604995728, - 1.3287347555160522, - 1.305436372756958, - 1.2772067785263062, - 1.2448161840438843, - 1.2091481685638428, - 1.171175479888916, - 1.1319339275360107, - 1.092494010925293, - 1.0539315938949585, - 1.0172984600067139, - 0.9835938215255737, - 0.953737199306488, - 0.9285429120063782, - 0.9086982011795044, - 0.8947443962097168, - 0.8870620727539062, - 0.8858609199523926, - 1.3634607791900635, - 1.3415333032608032, - 1.3136900663375854, - 1.2806906700134277, - 1.2434351444244385, - 1.202939748764038, - 1.160309076309204, - 1.116706132888794, - 1.0733200311660767, - 1.0313345193862915, - 0.9918946027755737, - 0.9560762047767639, - 0.924856424331665, - 0.8990867137908936, - 0.8794701099395752, - 0.8665416240692139, - 0.8606540560722351, - 0.8619678020477295, - 0.8704472184181213, - 0.8858609199523926, - 1.3634607791900635, - 1.326941728591919, - 1.2849048376083374, - 1.238497018814087, - 1.1889840364456177, - 1.1377164125442505, - 1.0860927104949951, - 1.0355210304260254, - 0.987380862236023, - 0.9429852962493896, - 0.9035454392433167, - 0.8701370358467102, - 0.8436713218688965, - 0.8248702883720398, - 0.8142467737197876, - 0.8120905160903931, - 0.8184604048728943, - 0.8331825733184814, - 0.8558555841445923, - 0.8858609199523926, - 1.3634607791900635, - 1.315954566001892, - 1.263230323791504, - 1.2067261934280396, - 1.1479835510253906, - 1.0886048078536987, - 1.0302095413208008, - 0.9743906259536743, - 0.9226707220077515, - 0.8764605522155762, - 0.8370206356048584, - 0.805426836013794, - 0.7825409173965454, - 0.7689870595932007, - 0.7651351690292358, - 0.7710900902748108, - 0.7866895794868469, - 0.811508059501648, - 0.8448684215545654, - 0.8858609199523926, - 1.3634607791900635, - 1.3097624778747559, - 1.251015067100525, - 1.1888210773468018, - 1.1248769760131836, - 1.060926914215088, - 0.998715341091156, - 0.9399392604827881, - 0.8862018585205078, - 0.8389690518379211, - 0.7995291948318481, - 0.7689580321311951, - 0.7480895519256592, - 0.7374929189682007, - 0.737457275390625, - 0.747983455657959, - 0.7687844634056091, - 0.799292802810669, - 0.8386764526367188, - 0.8858609199523926, - 1.3634607791900635, - 1.3090366125106812, - 1.2495830059051514, - 1.186721920967102, - 1.122167944908142, - 1.0576820373535156, - 0.9950230121612549, - 0.9359002709388733, - 0.881926417350769, - 0.8345736861228943, - 0.7951338291168213, - 0.7646825313568115, - 0.7440505623817444, - 0.7338006496429443, - 0.734212338924408, - 0.7452744245529175, - 0.7666853070259094, - 0.7978607416152954, - 0.8379504680633545, - 0.8858609199523926, - 1.3634607791900635, - 1.3138554096221924, - 1.2590892314910889, - 1.2006562948226929, - 1.1401503086090088, - 1.0792218446731567, - 1.0195327997207642, - 0.9627113938331604, - 0.9103075265884399, - 0.863750696182251, - 0.8243107795715332, - 0.7930636405944824, - 0.7708616852760315, - 0.7583103179931641, - 0.7557521462440491, - 0.7632567882537842, - 0.7806196212768555, - 0.8073669672012329, - 0.8427693247795105, - 0.8858609199523926, - 1.3634607791900635, - 1.3236968517303467, - 1.278503656387329, - 1.229114055633545, - 1.1768752336502075, - 1.1232120990753174, - 1.069588541984558, - 1.0174671411514282, - 0.9682698249816895, - 0.9233383536338806, - 0.8838984966278076, - 0.8510259389877319, - 0.8256174325942993, - 0.8083661198616028, - 0.7997424602508545, - 0.7999817132949829, - 0.8090773820877075, - 0.8267813920974731, - 0.85261070728302, - 0.8858609199523926, - 1.3634607791900635, - 1.3374943733215332, - 1.3057223558425903, - 1.269011378288269, - 1.228363037109375, - 1.184885859489441, - 1.139765977859497, - 1.0942339897155762, - 1.0495320558547974, - 1.0068793296813965, - 0.9674394726753235, - 0.9322881698608398, - 0.9023842811584473, - 0.8785435557365417, - 0.861416220664978, - 0.8514695167541504, - 0.8489748239517212, - 0.8540000915527344, - 0.8664082288742065, - 0.8858609199523926, - 1.3634607791900635, - 1.353752851486206, - 1.3377957344055176, - 1.316024899482727, - 1.2890342473983765, - 1.2575597763061523, - 1.2224602699279785, - 1.1846929788589478, - 1.1452882289886475, - 1.1053208112716675, - 1.0658808946609497, - 1.0280444622039795, - 0.9928433299064636, - 0.961237907409668, - 0.9340901970863342, - 0.9121407866477966, - 0.8959883451461792, - 0.8860734701156616, - 0.8826667070388794, - 0.8858609199523926, - 1.3634607791900635, - 1.3707103729248047, - 1.3712482452392578, - 1.3650599718093872, - 1.3523141145706177, - 1.3333585262298584, - 1.3087102174758911, - 1.2790415287017822, - 1.245161771774292, - 1.207995057106018, - 1.1685551404953003, - 1.1279178857803345, - 1.0871918201446533, - 1.0474878549575806, - 1.009889006614685, - 0.9754207134246826, - 0.9450232982635498, - 0.9195259809494019, - 0.899624228477478, - 0.8858609199523926, - 1.3634607791900635, - 1.3865293264389038, - 1.4024547338485718, - 1.4108027219772339, - 1.4113454818725586, - 1.404068112373352, - 1.3891693353652954, - 1.3670555353164673, - 1.338329792022705, - 1.303775668144226, - 1.2643357515335083, - 1.2210859060287476, - 1.1752058267593384, - 1.1279469728469849, - 1.0805985927581787, - 1.034451961517334, - 0.9907660484313965, - 0.9507324695587158, - 0.9154432415962219, - 0.8858608603477478, - 1.3634607791900635, - 1.3994956016540527, - 1.4280335903167725, - 1.448296308517456, - 1.459731101989746, - 1.4620261192321777, - 1.4551186561584473, - 1.439197301864624, - 1.4146959781646729, - 1.3822834491729736, - 1.3428435325622559, - 1.2974522113800049, - 1.2473474740982056, - 1.1938962936401367, - 1.1385565996170044, - 1.082837700843811, - 1.0282597541809082, - 0.9763113260269165, - 0.9284094572067261, - 0.8858608603477478, - 1.3634607791900635, - 1.4082039594650269, - 1.445212721824646, - 1.4734777212142944, - 1.4922279119491577, - 1.5009517669677734, - 1.4994114637374878, - 1.4876489639282227, - 1.4659849405288696, - 1.4350106716156006, - 1.3955707550048828, - 1.348741054534912, - 1.2957991361618042, - 1.2381891012191772, - 1.1774822473526, - 1.1153345108032227, - 1.053441047668457, - 0.99349045753479, - 0.9371178150177002, - 0.8858608603477478, - 1.3634607791900635, - 1.4117107391357422, - 1.452130675315857, - 1.483618140220642, - 1.5053142309188843, - 1.5166269540786743, - 1.5172479152679443, - 1.5071601867675781, - 1.4866387844085693, - 1.456243634223938, - 1.4168037176132202, - 1.3693950176239014, - 1.3153104782104492, - 1.2560255527496338, - 1.193157434463501, - 1.1284207105636597, - 1.0635815858840942, - 1.000408411026001, - 0.9406246542930603, - 0.8858608603477478, - 1.3634607791900635, - 1.4096360206604004, - 1.44803786277771, - 1.47761869430542, - 1.4975719451904297, - 1.5073530673980713, - 1.50669527053833, - 1.4956166744232178, - 1.474419355392456, - 1.4436814785003662, - 1.4042415618896484, - 1.3571754693984985, - 1.3037669658660889, - 1.2454729080200195, - 1.1838834285736084, - 1.120678424835205, - 1.057582139968872, - 0.9963155388832092, - 0.9385498762130737, - 0.8858608603477478, - 1.3634607791900635, - 1.4022045135498047, - 1.4333775043487549, - 1.456129550933838, - 1.4698400497436523, - 1.474134922027588, - 1.4688969850540161, - 1.454269289970398, - 1.4306507110595703, - 1.3986854553222656, - 1.3592455387115479, - 1.3134068250656128, - 1.262419581413269, - 1.2076746225357056, - 1.150665283203125, - 1.0929466485977173, - 1.03609299659729, - 0.9816552996635437, - 0.9311184287071228, - 0.8858608603477478, - 1.3634607791900635, - 1.3902215957641602, - 1.409738540649414, - 1.421479344367981, - 1.425123691558838, - 1.420572280883789, - 1.4079490900039673, - 1.3875986337661743, - 1.360075831413269, - 1.3261314630508423, - 1.286691665649414, - 1.2428319454193115, - 1.1957489252090454, - 1.1467267274856567, - 1.0971026420593262, - 1.0482302904129028, - 1.001442790031433, - 0.9580163359642029, - 0.9191355109214783, - 0.8858608603477478, - 1.3634607791900635, - 1.3749858140945435, - 1.3796825408935547, - 1.3774230480194092, - 1.3682688474655151, - 1.352469563484192, - 1.3304563760757446, - 1.3028295040130615, - 1.2703427076339722, - 1.233882188796997, - 1.1944422721862793, - 1.1530989408493042, - 1.1109797954559326, - 1.069234013557434, - 1.0290000438690186, - 0.9913753867149353, - 0.9573864936828613, - 0.9279603362083435, - 0.9038997292518616, - 0.8858609199523926 - ], - "z": [ - 0.8262495994567871, - 0.8371598720550537, - 0.8416061401367188, - 0.8394671678543091, - 0.830801248550415, - 0.815844714641571, - 0.7950056791305542, - 0.7688525319099426, - 0.7380985617637634, - 0.703582763671875, - 0.6662466526031494, - 0.6271085739135742, - 0.5872361660003662, - 0.5477170348167419, - 0.5096291303634644, - 0.47401145100593567, - 0.44183549284935, - 0.4139789938926697, - 0.3912017345428467, - 0.37412509322166443, - 0.8262495994567871, - 0.8533419966697693, - 0.8735289573669434, - 0.886259913444519, - 0.8911875486373901, - 0.8881773948669434, - 0.8773117065429688, - 0.85888671875, - 0.8334051370620728, - 0.8015619516372681, - 0.7642258405685425, - 0.7224151492118835, - 0.6772704124450684, - 0.6300230622291565, - 0.5819618701934814, - 0.5343977808952332, - 0.4886282682418823, - 0.4459018111228943, - 0.40738385915756226, - 0.37412509322166443, - 0.8262495994567871, - 0.8662540912628174, - 0.8990010023117065, - 0.9235970377922058, - 0.9393713474273682, - 0.9458935260772705, - 0.9429857730865479, - 0.9307273626327515, - 0.9094527363777161, - 0.8797420859336853, - 0.8424059152603149, - 0.7984627485275269, - 0.7491110563278198, - 0.6956971287727356, - 0.6396780014038086, - 0.5825815796852112, - 0.5259653925895691, - 0.47137385606765747, - 0.42029598355293274, - 0.37412509322166443, - 0.8262495994567871, - 0.8744970560073853, - 0.91526198387146, - 0.9474325180053711, - 0.9701311588287354, - 0.9827386140823364, - 0.9849111437797546, - 0.9765893220901489, - 0.9580003023147583, - 0.929651141166687, - 0.8923149704933167, - 0.8470103144645691, - 0.7949730157852173, - 0.7376224398612976, - 0.6765230894088745, - 0.6133413314819336, - 0.5498008728027344, - 0.4876348078250885, - 0.42853888869285583, - 0.37412509322166443, - 0.8262495994567871, - 0.8771774768829346, - 0.920549750328064, - 0.9551833868026733, - 0.9801336526870728, - 0.9947199821472168, - 0.998544454574585, - 0.9915028214454651, - 0.9737870693206787, - 0.9458805322647095, - 0.9085444211959839, - 0.8627970814704895, - 0.8098864555358887, - 0.7512557506561279, - 0.6885043978691101, - 0.6233438849449158, - 0.5575516819953918, - 0.4929225444793701, - 0.43121933937072754, - 0.37412509322166443, - 0.8262495994567871, - 0.8740049600601196, - 0.914291262626648, - 0.946009635925293, - 0.9682949185371399, - 0.9805391430854797, - 0.9824084043502808, - 0.9738516211509705, - 0.9551023244857788, - 0.9266717433929443, - 0.8893356323242188, - 0.8441122770309448, - 0.792235255241394, - 0.7351197004318237, - 0.674323558807373, - 0.6115051507949829, - 0.5483779907226562, - 0.4866640865802765, - 0.4280468225479126, - 0.37412509322166443, - 0.8262495994567871, - 0.8653233051300049, - 0.8971648216247559, - 0.9209055304527283, - 0.9358978867530823, - 0.9417329430580139, - 0.9382514953613281, - 0.9255486726760864, - 0.9039707183837891, - 0.8741062879562378, - 0.8367701768875122, - 0.7929806709289551, - 0.7439322471618652, - 0.6909628510475159, - 0.6355173587799072, - 0.5791081190109253, - 0.5232738852500916, - 0.469537615776062, - 0.41936516761779785, - 0.37412509322166443, - 0.8262495994567871, - 0.8520733118057251, - 0.8710262775421143, - 0.8825913667678833, - 0.8864532709121704, - 0.8825066089630127, - 0.870858907699585, - 0.8518280982971191, - 0.8259331583976746, - 0.7938804626464844, - 0.7565443515777588, - 0.7149431705474854, - 0.6702117919921875, - 0.6235703229904175, - 0.576291024684906, - 0.5296635031700134, - 0.4849597215652466, - 0.4433990716934204, - 0.40611517429351807, - 0.37412509322166443, - 0.8262495994567871, - 0.8356908559799194, - 0.8387081027030945, - 0.835219144821167, - 0.8253191709518433, - 0.809278130531311, - 0.787533700466156, - 0.7606789469718933, - 0.7294463515281677, - 0.6946879625320435, - 0.6573517918586731, - 0.6184563636779785, - 0.5790625810623169, - 0.540244996547699, - 0.5030626058578491, - 0.4685294032096863, - 0.4375874996185303, - 0.411080926656723, - 0.38973268866539, - 0.37412509322166443, - 0.8262495994567871, - 0.8179510831832886, - 0.8037125468254089, - 0.7839223742485046, - 0.7591204047203064, - 0.7299830913543701, - 0.6973053216934204, - 0.6619784832000732, - 0.6249660849571228, - 0.5872777700424194, - 0.5499416589736938, - 0.5139760971069336, - 0.4803621172904968, - 0.45001667737960815, - 0.4237675070762634, - 0.402330607175827, - 0.3862907290458679, - 0.37608540058135986, - 0.37199297547340393, - 0.3741251230239868, - 0.8262495994567871, - 0.8007765412330627, - 0.7698318958282471, - 0.734259843826294, - 0.6950306296348572, - 0.6532142758369446, - 0.6099515557289124, - 0.5664224624633789, - 0.5238143801689148, - 0.48328956961631775, - 0.4459534287452698, - 0.4128243923187256, - 0.3848060965538025, - 0.3626628518104553, - 0.3469986915588379, - 0.3382408320903778, - 0.3366281986236572, - 0.342204749584198, - 0.3548184037208557, - 0.3741251230239868, - 0.8262495994567871, - 0.786028265953064, - 0.7407376766204834, - 0.6916132569313049, - 0.6399949193000793, - 0.5872908234596252, - 0.534938395023346, - 0.48436588048934937, - 0.4369526505470276, - 0.39399200677871704, - 0.35665589570999146, - 0.325962632894516, - 0.30274954438209534, - 0.2876497507095337, - 0.2810751795768738, - 0.28320515155792236, - 0.2939815819263458, - 0.31311050057411194, - 0.3400701582431793, - 0.3741251230239868, - 0.8262495994567871, - 0.7753045558929443, - 0.7195826768875122, - 0.6606040000915527, - 0.5999773740768433, - 0.5393564701080322, - 0.4803948402404785, - 0.42470085620880127, - 0.3737936019897461, - 0.329061895608902, - 0.291725754737854, - 0.2628036141395569, - 0.24308449029922485, - 0.23310613632202148, - 0.23314082622528076, - 0.2431875765323639, - 0.262972354888916, - 0.29195547103881836, - 0.3293463885784149, - 0.3741251230239868, - 0.8262495994567871, - 0.7697673439979553, - 0.7086593508720398, - 0.6445924639701843, - 0.5793144106864929, - 0.5146056413650513, - 0.45223134756088257, - 0.39389294385910034, - 0.3411816656589508, - 0.2955354154109955, - 0.2581992745399475, - 0.2301916480064392, - 0.21227657794952393, - 0.20494267344474792, - 0.2083900272846222, - 0.22252458333969116, - 0.2469608187675476, - 0.28103214502334595, - 0.3238092064857483, - 0.3741251230239868, - 0.8262495994567871, - 0.7700167894363403, - 0.7091513872146606, - 0.6453137397766113, - 0.5802451968193054, - 0.5157206058502197, - 0.45350003242492676, - 0.39528071880340576, - 0.34265074133872986, - 0.29704567790031433, - 0.25970953702926636, - 0.23166072368621826, - 0.21366438269615173, - 0.20621135830879211, - 0.20950496196746826, - 0.22345539927482605, - 0.2476820945739746, - 0.2815242111682892, - 0.3240586221218109, - 0.3741251230239868, - 0.8262495994567871, - 0.7760257720947266, - 0.7210054993629456, - 0.6626896262168884, - 0.602668821811676, - 0.5425804257392883, - 0.4840632975101471, - 0.4287137985229492, - 0.3780415654182434, - 0.3334289789199829, - 0.29609283804893494, - 0.2670515775680542, - 0.2470974326133728, - 0.23677462339401245, - 0.23636475205421448, - 0.24587905406951904, - 0.2650579810142517, - 0.2933783233165741, - 0.33006763458251953, - 0.3741251230239868, - 0.8262495994567871, - 0.7871432304382324, - 0.7429371476173401, - 0.694837212562561, - 0.6441555023193359, - 0.5922744870185852, - 0.5406092405319214, - 0.49056917428970337, - 0.4435192048549652, - 0.40074270963668823, - 0.36340659856796265, - 0.332529217004776, - 0.30895283818244934, - 0.29332056641578674, - 0.28605884313583374, - 0.28736576437950134, - 0.2972055971622467, - 0.31530997157096863, - 0.3411850929260254, - 0.3741251230239868, - 0.8262495994567871, - 0.8021643161773682, - 0.7725696563720703, - 0.7382728457450867, - 0.7002094388008118, - 0.6594176292419434, - 0.617010235786438, - 0.5741439461708069, - 0.5319880247116089, - 0.4916924238204956, - 0.45435625314712524, - 0.4209980070590973, - 0.39252758026123047, - 0.36972153186798096, - 0.35320204496383667, - 0.3434196412563324, - 0.34064120054244995, - 0.34494251012802124, - 0.3562062382698059, - 0.3741251230239868, - 0.8262495994567871, - 0.8194614052772522, - 0.8066919445991516, - 0.7882895469665527, - 0.7647562623023987, - 0.7367339134216309, - 0.7049869894981384, - 0.6703813672065735, - 0.6338610649108887, - 0.5964221954345703, - 0.5590860843658447, - 0.5228710770606995, - 0.48876503109931946, - 0.4576983153820038, - 0.43051835894584656, - 0.4079664945602417, - 0.390657901763916, - 0.37906473875045776, - 0.37350326776504517, - 0.3741251230239868, - 0.8262495994567871, - 0.8371598720550537, - 0.8416061401367188, - 0.8394671678543091, - 0.830801248550415, - 0.8158447742462158, - 0.795005738735199, - 0.7688525915145874, - 0.7380986213684082, - 0.7035828232765198, - 0.6662467122077942, - 0.627108633518219, - 0.587236225605011, - 0.5477170348167419, - 0.5096291899681091, - 0.47401148080825806, - 0.44183552265167236, - 0.4139789938926697, - 0.3912017345428467, - 0.37412509322166443 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -2.0992374420166016, - -2.072730541229248, - -2.0406036376953125, - -2.0037336349487305, - -1.9631257057189941, - -1.919887900352478, - -1.8751994371414185, - -1.8302793502807617, - -1.7863529920578003, - -1.744618535041809, - -1.7062143087387085, - -1.6721880435943604, - -1.643467664718628, - -1.6208367347717285, - -1.6049126386642456, - -1.5961296558380127, - -1.5947272777557373, - -1.6007438898086548, - -1.6140153408050537, - -1.6341795921325684, - -2.0992374420166016, - -2.061567783355713, - -2.018582582473755, - -1.9714547395706177, - -1.9214696884155273, - -1.8699909448623657, - -1.818422555923462, - -1.7681714296340942, - -1.7206079959869385, - -1.6770299673080444, - -1.6386257410049438, - -1.6064430475234985, - -1.5813597440719604, - -1.5640599727630615, - -1.5550156831741333, - -1.554473638534546, - -1.562448501586914, - -1.5787227153778076, - -1.602852463722229, - -1.6341795921325684, - -2.0992374420166016, - -2.054143190383911, - -2.003936290740967, - -1.9499861001968384, - -1.8937642574310303, - -1.8368045091629028, - -1.7806603908538818, - -1.7268635034561157, - -1.6768810749053955, - -1.6320768594741821, - -1.5936726331710815, - -1.5627161264419556, - -1.540051817893982, - -1.5262978076934814, - -1.5218292474746704, - -1.5267682075500488, - -1.5409798622131348, - -1.5640764236450195, - -1.5954281091690063, - -1.6341795921325684, - -2.0992374420166016, - -2.0512619018554688, - -1.998252034187317, - -1.941654086112976, - -1.883011817932129, - -1.8239248991012573, - -1.7660049200057983, - -1.710831880569458, - -1.6599106788635254, - -1.6146304607391357, - -1.5762263536453247, - -1.5457457304000854, - -1.5240201950073242, - -1.5116422176361084, - -1.508949637413025, - -1.5160157680511475, - -1.5326478481292725, - -1.5583921670913696, - -1.5925467014312744, - -1.6341795921325684, - -2.0992374420166016, - -2.0532357692718506, - -2.002146005630493, - -1.947361707687378, - -1.8903775215148926, - -1.8327476978302002, - -1.776044249534607, - -1.7218139171600342, - -1.671535849571228, - -1.6265816688537598, - -1.5881774425506592, - -1.557370901107788, - -1.5350022315979004, - -1.5216816663742065, - -1.5177724361419678, - -1.5233814716339111, - -1.5383553504943848, - -1.5622860193252563, - -1.5945205688476562, - -1.6341795921325684, - -2.0992374420166016, - -2.0598509311676025, - -2.015195846557617, - -1.966490387916565, - -1.9150631427764893, - -1.8623169660568237, - -1.8096905946731567, - -1.7586194276809692, - -1.7104967832565308, - -1.6666350364685059, - -1.6282309293746948, - -1.5963318347930908, - -1.571807861328125, - -1.5553278923034668, - -1.5473418235778809, - -1.5480670928955078, - -1.5574841499328613, - -1.57533597946167, - -1.6011357307434082, - -1.6341795921325684, - -2.0992374420166016, - -2.070390462875366, - -2.035987615585327, - -1.9969671964645386, - -1.954393744468689, - -1.909428358078003, - -1.863297700881958, - -1.8172601461410522, - -1.772571325302124, - -1.7304503917694092, - -1.6920462846755981, - -1.658406376838684, - -1.6304484605789185, - -1.6089351177215576, - -1.5944530963897705, - -1.587397575378418, - -1.587960958480835, - -1.5961277484893799, - -1.6116752624511719, - -1.6341795921325684, - -2.0992374420166016, - -2.083712577819824, - -2.0622682571411133, - -2.035489559173584, - -2.0041069984436035, - -1.968976616859436, - -1.9310566186904907, - -1.8913812637329102, - -1.8510329723358154, - -1.8111122846603394, - -1.7727081775665283, - -1.7368680238723755, - -1.7045695781707764, - -1.6766939163208008, - -1.6540014743804932, - -1.637110948562622, - -1.6264833211898804, - -1.622408390045166, - -1.6249973773956299, - -1.6341795921325684, - -2.0992374420166016, - -2.0983731746673584, - -2.0911898612976074, - -2.077883005142212, - -2.0588159561157227, - -2.03450870513916, - -2.005624294281006, - -1.9729506969451904, - -1.9373791217803955, - -1.8998796939849854, - -1.8614755868911743, - -1.823214054107666, - -1.7861391305923462, - -1.7512617111206055, - -1.7195335626602173, - -1.6918199062347412, - -1.6688767671585083, - -1.6513298749923706, - -1.639657974243164, - -1.6341795921325684, - -2.0992374420166016, - -2.112783908843994, - -2.1196181774139404, - -2.119553565979004, - -2.1125919818878174, - -2.098923444747925, - -2.078920602798462, - -2.053129196166992, - -2.0222527980804443, - -1.9871333837509155, - -1.9487292766571045, - -1.9080877304077148, - -1.8663175106048584, - -1.824557900428772, - -1.7839481830596924, - -1.745595932006836, - -1.7105472087860107, - -1.6797581911087036, - -1.6540687084197998, - -1.6341794729232788, - -2.0992374420166016, - -2.125382900238037, - -2.144472599029541, - -2.1559853553771973, - -2.159607410430908, - -2.155240058898926, - -2.1430022716522217, - -2.123228073120117, - -2.096456527709961, - -2.063417911529541, - -2.0250139236450195, - -1.9822914600372314, - -1.9364163875579834, - -1.8886396884918213, - -1.840264916419983, - -1.7926114797592163, - -1.7469791173934937, - -1.7046126127243042, - -1.6666678190231323, - -1.6341794729232788, - -2.0992374420166016, - -2.134805202484131, - -2.163059711456299, - -2.1832306385040283, - -2.194767713546753, - -2.1973562240600586, - -2.190925359725952, - -2.1756508350372314, - -2.151949167251587, - -2.120466947555542, - -2.0820627212524414, - -2.0377843379974365, - -1.9888392686843872, - -1.9365628957748413, - -1.8823810815811157, - -1.8277716636657715, - -1.7742244005203247, - -1.7231998443603516, - -1.676089882850647, - -1.6341794729232788, - -2.0992374420166016, - -2.140029191970825, - -2.173365592956543, - -2.1983370780944824, - -2.2142624855041504, - -2.220707654953003, - -2.217496633529663, - -2.2047171592712402, - -2.1827175617218018, - -2.1520979404449463, - -2.1136937141418457, - -2.0685524940490723, - -2.0179054737091064, - -1.9631341695785522, - -1.9057326316833496, - -1.8472665548324585, - -1.7893307209014893, - -1.7335057258605957, - -1.6813141107559204, - -1.6341794729232788, - -2.0992374420166016, - -2.140489339828491, - -2.1742732524871826, - -2.199667453765869, - -2.2159793376922607, - -2.222764253616333, - -2.219836711883545, - -2.2072768211364746, - -2.185427188873291, - -2.154883623123169, - -2.1164793968200684, - -2.0712621212005615, - -2.020465135574341, - -1.9654741287231445, - -1.9077889919281006, - -1.8489832878112793, - -1.790661096572876, - -1.7344132661819458, - -1.6817741394042969, - -1.6341794729232788, - -2.0992374420166016, - -2.1361355781555176, - -2.165684223175049, - -2.187077522277832, - -2.1997320652008057, - -2.2033026218414307, - -2.1976919174194336, - -2.1830525398254395, - -2.1597843170166016, - -2.128521680831909, - -2.0901176929473877, - -2.045619487762451, - -1.9962409734725952, - -1.9433292150497437, - -1.8883274793624878, - -1.8327360153198242, - -1.7780712842941284, - -1.725824236869812, - -1.6774202585220337, - -1.6341794729232788, - -2.0992374420166016, - -2.127439498901367, - -2.148529291152954, - -2.1619319915771484, - -2.16728138923645, - -2.1644322872161865, - -2.1534619331359863, - -2.134669780731201, - -2.1085681915283203, - -2.07586932182312, - -2.0374650955200195, - -1.9944031238555908, - -1.9478579759597778, - -1.899099349975586, - -1.8494571447372437, - -1.8002854585647583, - -1.7529256343841553, - -1.7086694240570068, - -1.6687242984771729, - -1.6341794729232788, - -2.0992374420166016, - -2.1153435707092285, - -2.1246676445007324, - -2.126955270767212, - -2.1221439838409424, - -2.1103649139404297, - -2.091939687728882, - -2.067370891571045, - -2.0373282432556152, - -2.002631902694702, - -1.9642276763916016, - -1.9231634140014648, - -1.8805592060089111, - -1.837577223777771, - -1.7953897714614868, - -1.7551478147506714, - -1.7179489135742188, - -1.6848077774047852, - -1.6566283702850342, - -1.6341794729232788, - -2.0992374420166016, - -2.101158857345581, - -2.0966849327087402, - -2.085937738418579, - -2.0692107677459717, - -2.04695987701416, - -2.019792318344116, - -1.9884490966796875, - -1.9537850618362427, - -1.916745662689209, - -1.878341555595398, - -1.8396199941635132, - -1.8016374111175537, - -1.7654297351837158, - -1.7319848537445068, - -1.7022147178649902, - -1.676931619644165, - -1.656825065612793, - -1.6424436569213867, - -1.6341795921325684, - -2.0992374420166016, - -2.0864222049713135, - -2.0676136016845703, - -2.0433247089385986, - -2.014218330383301, - -1.9810881614685059, - -1.944838047027588, - -1.9064568281173706, - -1.866991400718689, - -1.8275182247161865, - -1.789113998413086, - -1.7528263330459595, - -1.7196451425552368, - -1.6904754638671875, - -1.666113018989563, - -1.6472221612930298, - -1.6343183517456055, - -1.6277536153793335, - -1.6277068853378296, - -1.6341795921325684, - -2.0992374420166016, - -2.072730541229248, - -2.0406036376953125, - -2.0037336349487305, - -1.9631257057189941, - -1.9198877811431885, - -1.8751994371414185, - -1.8302793502807617, - -1.7863528728485107, - -1.7446184158325195, - -1.7062143087387085, - -1.6721879243850708, - -1.643467664718628, - -1.6208367347717285, - -1.6049126386642456, - -1.5961296558380127, - -1.5947272777557373, - -1.6007438898086548, - -1.6140153408050537, - -1.6341795921325684 - ], - "y": [ - 0.8436195254325867, - 0.8347814679145813, - 0.838092565536499, - 0.8534624576568604, - 0.88047194480896, - 0.9183842539787292, - 0.9661652445793152, - 1.022511601448059, - 1.0858862400054932, - 1.1545605659484863, - 1.2266613245010376, - 1.3002218008041382, - 1.3732353448867798, - 1.443710446357727, - 1.509724736213684, - 1.5694774389266968, - 1.6213387250900269, - 1.6638939380645752, - 1.6959822177886963, - 1.7167282104492188, - 0.8436195254325867, - 0.832930326461792, - 0.8344407081604004, - 0.8481095433235168, - 0.8735639452934265, - 0.9101096391677856, - 0.956749677658081, - 1.0122119188308716, - 1.0749834775924683, - 1.1433521509170532, - 1.2154529094696045, - 1.2893190383911133, - 1.3629357814788818, - 1.4342949390411377, - 1.5014500617980957, - 1.5625693798065186, - 1.6159857511520386, - 1.6602420806884766, - 1.6941308975219727, - 1.7167282104492188, - 0.8436195254325867, - 0.8328826427459717, - 0.8343467116355896, - 0.8479718565940857, - 0.8733862638473511, - 0.9098967909812927, - 0.9565075039863586, - 1.0119470357894897, - 1.0747029781341553, - 1.1430637836456299, - 1.2151645421981812, - 1.2890385389328003, - 1.3626707792282104, - 1.4340527057647705, - 1.501237154006958, - 1.562391757965088, - 1.6158480644226074, - 1.6601481437683105, - 1.694083333015442, - 1.7167282104492188, - 0.8436195254325867, - 0.8346437811851501, - 0.8378208875656128, - 0.8530642986297607, - 0.8799580931663513, - 0.9177687168121338, - 0.9654648303985596, - 1.0217454433441162, - 1.0850752592086792, - 1.1537268161773682, - 1.2258275747299194, - 1.2994107007980347, - 1.372469186782837, - 1.4430100917816162, - 1.5091091394424438, - 1.5689635276794434, - 1.6209404468536377, - 1.663622260093689, - 1.6958444118499756, - 1.7167282104492188, - 0.8436195254325867, - 0.8380227088928223, - 0.844486653804779, - 0.8628350496292114, - 0.8925672769546509, - 0.9328724145889282, - 0.9826511144638062, - 1.0405453443527222, - 1.1049761772155762, - 1.1741857528686523, - 1.2462865114212036, - 1.3193116188049316, - 1.3912692070007324, - 1.4601963758468628, - 1.5242128372192383, - 1.5815727710723877, - 1.630711317062378, - 1.6702879667282104, - 1.6992233991622925, - 1.7167282104492188, - 0.8436195254325867, - 0.8426533937454224, - 0.8536217212677002, - 0.8762252330780029, - 0.9098474979400635, - 0.9535712003707886, - 1.0062038898468018, - 1.0663095712661743, - 1.132249116897583, - 1.202223539352417, - 1.2743242979049683, - 1.3465845584869385, - 1.4170334339141846, - 1.4837490320205688, - 1.5449116230010986, - 1.5988528728485107, - 1.6441015005111694, - 1.6794230937957764, - 1.7038540840148926, - 1.7167282104492188, - 0.8436195254325867, - 0.8480340242385864, - 0.8642361164093018, - 0.8917839527130127, - 0.9299260377883911, - 0.9776219725608826, - 1.0335707664489746, - 1.0962462425231934, - 1.1639387607574463, - 1.2348018884658813, - 1.306902527809143, - 1.3782742023468018, - 1.446969985961914, - 1.5111160278320312, - 1.5689624547958374, - 1.618931531906128, - 1.6596602201461792, - 1.690037488937378, - 1.7092347145080566, - 1.7167282104492188, - 0.8436195254325867, - 0.853581428527832, - 0.875179648399353, - 0.9078251123428345, - 0.9506272077560425, - 1.0024185180664062, - 1.06178617477417, - 1.1271109580993652, - 1.196610927581787, - 1.2683902978897095, - 1.3404910564422607, - 1.4109464883804321, - 1.4778348207473755, - 1.5393314361572266, - 1.5937589406967163, - 1.6396327018737793, - 1.6757012605667114, - 1.7009810209274292, - 1.7147821187973022, - 1.7167282104492188, - 0.8436195254325867, - 0.8586945533752441, - 0.8852663636207581, - 0.9226102828979492, - 0.9697076082229614, - 1.0252735614776611, - 1.0877926349639893, - 1.1555593013763428, - 1.2267252206802368, - 1.2993489503860474, - 1.3714497089385986, - 1.4410607814788818, - 1.506283164024353, - 1.565337896347046, - 1.6166141033172607, - 1.6587131023406982, - 1.6904865503311157, - 1.7110676765441895, - 1.7198952436447144, - 1.7167282104492188, - 0.8436195254325867, - 0.8628191947937012, - 0.8934032917022705, - 0.934537410736084, - 0.9850996732711792, - 1.043710708618164, - 1.1087719202041626, - 1.1785085201263428, - 1.2510181665420532, - 1.3243231773376465, - 1.3964239358901978, - 1.4653537273406982, - 1.5292322635650635, - 1.5863170623779297, - 1.6350511312484741, - 1.674105167388916, - 1.7024136781692505, - 1.7192046642303467, - 1.7240198850631714, - 1.7167282104492188, - 0.8436195254325867, - 0.8655085563659668, - 0.8987085819244385, - 0.9423140287399292, - 0.9951353669166565, - 1.0557317733764648, - 1.1224504709243774, - 1.1934714317321777, - 1.266857385635376, - 1.3406065702438354, - 1.4127073287963867, - 1.4811928272247314, - 1.5441951751708984, - 1.599995732307434, - 1.6470723152160645, - 1.6841408014297485, - 1.7101902961730957, - 1.7245099544525146, - 1.726709246635437, - 1.7167282104492188, - 0.8436195254325867, - 0.8664710521697998, - 0.9006073474884033, - 0.9450973272323608, - 0.9987272024154663, - 1.0600342750549316, - 1.1273460388183594, - 1.1988266706466675, - 1.2725262641906738, - 1.346434473991394, - 1.4185352325439453, - 1.4868618249893188, - 1.5495505332946777, - 1.604891300201416, - 1.6513746976852417, - 1.6877326965332031, - 1.7129734754562378, - 1.7264087200164795, - 1.72767174243927, - 1.7167282104492188, - 0.8436195254325867, - 0.8656024932861328, - 0.8988938927650452, - 0.9425857067108154, - 0.9954859018325806, - 1.0561517477035522, - 1.122928261756897, - 1.1939940452575684, - 1.2674106359481812, - 1.3411753177642822, - 1.4132760763168335, - 1.4817461967468262, - 1.544717788696289, - 1.6004735231399536, - 1.6474921703338623, - 1.6844913959503174, - 1.7104618549346924, - 1.7246952056884766, - 1.726803183555603, - 1.7167282104492188, - 0.8436195254325867, - 0.8629969358444214, - 0.8937538266181946, - 0.9350513219833374, - 0.9857627749443054, - 1.044505000114441, - 1.109675645828247, - 1.1794971227645874, - 1.252064824104309, - 1.3253991603851318, - 1.397499918937683, - 1.4664002656936646, - 1.5302209854125977, - 1.5872209072113037, - 1.635845422744751, - 1.6747682094573975, - 1.702927589416504, - 1.719555139541626, - 1.7241976261138916, - 1.7167282104492188, - 0.8436195254325867, - 0.8589367270469666, - 0.8857442140579224, - 0.9233106970787048, - 0.9706114530563354, - 1.0263562202453613, - 1.089024543762207, - 1.1569069623947144, - 1.228151798248291, - 1.3008155822753906, - 1.3729162216186523, - 1.4424872398376465, - 1.507630705833435, - 1.5665698051452637, - 1.617696762084961, - 1.6596169471740723, - 1.6911869049072266, - 1.711545467376709, - 1.720137357711792, - 1.7167282104492188, - 0.8436195254325867, - 0.853861927986145, - 0.8757328987121582, - 0.9086360931396484, - 0.9516738057136536, - 1.0036721229553223, - 1.0632127523422241, - 1.1286715269088745, - 1.1982628107070923, - 1.2700884342193604, - 1.3421891927719116, - 1.4125983715057373, - 1.4793952703475952, - 1.5407580137252808, - 1.5950126647949219, - 1.6406793594360352, - 1.6765122413635254, - 1.7015342712402344, - 1.7150626182556152, - 1.7167282104492188, - 0.8436195254325867, - 0.848322331905365, - 0.8648048639297485, - 0.8926177024841309, - 0.9310020208358765, - 0.9789108037948608, - 1.0350372791290283, - 1.0978504419326782, - 1.1656368970870972, - 1.236547589302063, - 1.3086483478546143, - 1.3799724578857422, - 1.448574185371399, - 1.512582540512085, - 1.570251226425171, - 1.6200075149536133, - 1.6604939699172974, - 1.6906062364578247, - 1.7095229625701904, - 1.7167282104492188, - 0.8436195254325867, - 0.8429183959960938, - 0.8541443347930908, - 0.8769913911819458, - 0.9108361601829529, - 0.9547555446624756, - 1.0075514316558838, - 1.0677837133407593, - 1.1338095664978027, - 1.2038277387619019, - 1.2759284973144531, - 1.3481450080871582, - 1.4185075759887695, - 1.4850966930389404, - 1.5460959672927856, - 1.599841594696045, - 1.6448676586151123, - 1.679945707321167, - 1.704119086265564, - 1.7167282104492188, - 0.8436195254325867, - 0.83823561668396, - 0.8449065685272217, - 0.8634505271911621, - 0.8933615684509277, - 0.9338238835334778, - 0.9837337136268616, - 1.0417296886444092, - 1.1062297821044922, - 1.1754745244979858, - 1.247575283050537, - 1.3205652236938477, - 1.3924534320831299, - 1.4612789154052734, - 1.5251643657684326, - 1.5823670625686646, - 1.6313267946243286, - 1.6707079410552979, - 1.6994363069534302, - 1.7167282104492188, - 0.8436195254325867, - 0.8347814679145813, - 0.838092565536499, - 0.8534624576568604, - 0.88047194480896, - 0.9183842539787292, - 0.9661652445793152, - 1.0225114822387695, - 1.0858862400054932, - 1.1545605659484863, - 1.2266613245010376, - 1.3002218008041382, - 1.3732353448867798, - 1.443710446357727, - 1.5097246170043945, - 1.5694774389266968, - 1.6213387250900269, - 1.6638939380645752, - 1.6959822177886963, - 1.7167282104492188 - ], - "z": [ - 0.8210567235946655, - 0.806049108505249, - 0.7894418835639954, - 0.7716879844665527, - 0.753271758556366, - 0.7346954941749573, - 0.716465950012207, - 0.6990802884101868, - 0.683012843132019, - 0.6687018871307373, - 0.6565377116203308, - 0.6468521952629089, - 0.6399095058441162, - 0.635899007320404, - 0.6349301338195801, - 0.637029230594635, - 0.642139196395874, - 0.6501204967498779, - 0.660755455493927, - 0.6737540364265442, - 0.8210566639900208, - 0.8303194642066956, - 0.8373206257820129, - 0.8418691158294678, - 0.8438408374786377, - 0.8431820869445801, - 0.8399107456207275, - 0.8341161608695984, - 0.8259562849998474, - 0.8156538009643555, - 0.803489625453949, - 0.7897956371307373, - 0.7749453186988831, - 0.7593438029289246, - 0.7434166669845581, - 0.7275983095169067, - 0.7123202681541443, - 0.6979991793632507, - 0.6850258111953735, - 0.6737539768218994, - 0.8210566639900208, - 0.8534772396087646, - 0.8830044269561768, - 0.908832848072052, - 0.9302579164505005, - 0.9466952681541443, - 0.9576964974403381, - 0.9629615545272827, - 0.9623467922210693, - 0.9558689594268799, - 0.9437048435211182, - 0.9261861443519592, - 0.9037907719612122, - 0.8771296143531799, - 0.8469299077987671, - 0.8140154480934143, - 0.7792840003967285, - 0.7436830401420593, - 0.7081835865974426, - 0.6737539768218994, - 0.8210566639900208, - 0.873012900352478, - 0.9215428233146667, - 0.9653227925300598, - 1.0031585693359375, - 1.0340179204940796, - 1.0570592880249023, - 1.071654200553894, - 1.0774043798446655, - 1.074152946472168, - 1.0619888305664062, - 1.0412436723709106, - 1.0124833583831787, - 0.9764924049377441, - 0.9342525601387024, - 0.8869159817695618, - 0.8357739448547363, - 0.7822214365005493, - 0.7277191877365112, - 0.6737539768218994, - 0.8210566639900208, - 0.8868094086647034, - 0.9487595558166504, - 1.0052173137664795, - 1.0546425580978394, - 1.0956872701644897, - 1.1272315979003906, - 1.148415446281433, - 1.158660650253296, - 1.157688021659851, - 1.1455237865447998, - 1.1225000619888306, - 1.0892446041107178, - 1.0466647148132324, - 0.9959218502044678, - 0.9384000897407532, - 0.8756684064865112, - 0.8094381093978882, - 0.7415157556533813, - 0.6737539768218994, - 0.8210566639900208, - 0.8933717012405396, - 0.961705207824707, - 1.0241931676864624, - 1.079131007194519, - 1.1250202655792236, - 1.160609245300293, - 1.184926986694336, - 1.197310447692871, - 1.1974215507507324, - 1.1852573156356812, - 1.1611497402191162, - 1.1257562637329102, - 1.0800423622131348, - 1.0252549648284912, - 0.9628885388374329, - 0.8946442604064941, - 0.8223838210105896, - 0.7480780482292175, - 0.6737539768218994, - 0.8210566639900208, - 0.8919887542724609, - 0.9589769840240479, - 1.0201940536499023, - 1.0739703178405762, - 1.1188385486602783, - 1.15357506275177, - 1.1772325038909912, - 1.1891651153564453, - 1.189047932624817, - 1.1768836975097656, - 1.15300452709198, - 1.1180616617202759, - 1.0730081796646118, - 1.019073247909546, - 0.9577277898788452, - 0.8906452655792236, - 0.8196555972099304, - 0.7466951012611389, - 0.6737539768218994, - 0.8210566639900208, - 0.8828103542327881, - 0.9408705234527588, - 0.9936534762382507, - 1.0397193431854248, - 1.0778117179870605, - 1.1068915128707886, - 1.126165509223938, - 1.1351077556610107, - 1.133474588394165, - 1.1213103532791138, - 1.0989471673965454, - 1.0669946670532227, - 1.0263246297836304, - 0.9780464768409729, - 0.9234769344329834, - 0.8641046285629272, - 0.8015490770339966, - 0.7375167012214661, - 0.6737539768218994, - 0.8210566639900208, - 0.8668311238288879, - 0.9093478918075562, - 0.9474473595619202, - 0.9800901412963867, - 1.0063859224319458, - 1.0256173610687256, - 1.0372599363327026, - 1.0409960746765137, - 1.0367237329483032, - 1.024559497833252, - 1.0048353672027588, - 0.9780891537666321, - 0.9450504779815674, - 0.9066205620765686, - 0.8638476729393005, - 0.8178985118865967, - 0.7700265049934387, - 0.7215374708175659, - 0.6737539768218994, - 0.8210566639900208, - 0.8457826375961304, - 0.8678251504898071, - 0.8865828514099121, - 0.9015442132949829, - 0.9123010635375977, - 0.9185599684715271, - 0.9201502799987793, - 0.9170284867286682, - 0.9092798233032227, - 0.8971157073974609, - 0.8808678388595581, - 0.860979437828064, - 0.8379930853843689, - 0.8125357031822205, - 0.7853017449378967, - 0.7570340633392334, - 0.7285037040710449, - 0.7004889845848083, - 0.6737539768218994, - 0.8210566639900208, - 0.8219459056854248, - 0.820801854133606, - 0.8176556825637817, - 0.8125932812690735, - 0.8057527542114258, - 0.7973206639289856, - 0.7875270247459412, - 0.776638925075531, - 0.7649534344673157, - 0.7527892589569092, - 0.7404782772064209, - 0.7283561825752258, - 0.7167537212371826, - 0.7059873938560486, - 0.6963508129119873, - 0.6881068348884583, - 0.6814804077148438, - 0.6766522526741028, - 0.6737540364265442, - 0.8210567235946655, - 0.7979038953781128, - 0.7733736634254456, - 0.7481350898742676, - 0.7228766083717346, - 0.6982871890068054, - 0.6750376224517822, - 0.6537619829177856, - 0.6350407600402832, - 0.6193845272064209, - 0.6072203516960144, - 0.5988800525665283, - 0.5945912003517151, - 0.5944706201553345, - 0.5985217690467834, - 0.6066340804100037, - 0.6185862421989441, - 0.6340522766113281, - 0.6526102423667908, - 0.6737540364265442, - 0.8210567235946655, - 0.7762620449066162, - 0.7306802868843079, - 0.6855547428131104, - 0.6421163082122803, - 0.6015498638153076, - 0.5649620294570923, - 0.5333507061004639, - 0.5075782537460327, - 0.48834773898124695, - 0.47618356347084045, - 0.4714176058769226, - 0.4741798937320709, - 0.4843950867652893, - 0.5017844438552856, - 0.5258737802505493, - 0.5560058951377869, - 0.5913589000701904, - 0.6309683918952942, - 0.6737540364265442, - 0.8210567235946655, - 0.7593654990196228, - 0.6973481178283691, - 0.6366961598396301, - 0.5790640115737915, - 0.526023805141449, - 0.4790223240852356, - 0.43934157490730286, - 0.4080640375614166, - 0.38604286313056946, - 0.37387868762016296, - 0.3719033896923065, - 0.3801707625389099, - 0.39845535159111023, - 0.4262583553791046, - 0.46282148361206055, - 0.5071473121643066, - 0.5580266714096069, - 0.6140718460083008, - 0.6737540364265442, - 0.8210567235946655, - 0.7490453720092773, - 0.6769892573356628, - 0.6068539619445801, - 0.5405524969100952, - 0.4798935055732727, - 0.42653149366378784, - 0.38192206621170044, - 0.3472820520401001, - 0.32355645298957825, - 0.31139227747917175, - 0.31112140417099, - 0.3227512538433075, - 0.34596455097198486, - 0.38012808561325073, - 0.42430996894836426, - 0.477305144071579, - 0.5376678705215454, - 0.6037517189979553, - 0.6737540364265442, - 0.8210567235946655, - 0.7464198470115662, - 0.6718099117279053, - 0.599261999130249, - 0.5307550430297852, - 0.4681577682495117, - 0.41317760944366455, - 0.36731433868408203, - 0.33181890845298767, - 0.30765965580940247, - 0.29549548029899597, - 0.29565826058387756, - 0.3081435263156891, - 0.3326106369495392, - 0.36839231848716736, - 0.4145125150680542, - 0.46971315145492554, - 0.5324884653091431, - 0.6011261940002441, - 0.6737540364265442, - 0.8210567235946655, - 0.7517735958099365, - 0.6823713183403015, - 0.6147429943084717, - 0.5507333278656006, - 0.4920884370803833, - 0.4404078722000122, - 0.39710140228271484, - 0.3633502721786499, - 0.3400752544403076, - 0.3279110789299011, - 0.3271896243095398, - 0.3379305899143219, - 0.35984089970588684, - 0.39232298731803894, - 0.43449079990386963, - 0.4851941466331482, - 0.5430498719215393, - 0.6064799427986145, - 0.6737540364265442, - 0.8210567235946655, - 0.7645263671875, - 0.7075289487838745, - 0.6516193151473999, - 0.5983225107192993, - 0.5490922331809998, - 0.5052714347839355, - 0.46805539727211, - 0.43845927715301514, - 0.41729050874710083, - 0.40512633323669434, - 0.40229862928390503, - 0.40888458490371704, - 0.4247044622898102, - 0.4493267834186554, - 0.48207995295524597, - 0.5220704674720764, - 0.5682075619697571, - 0.6192326545715332, - 0.6737540364265442, - 0.8210567235946655, - 0.7832962274551392, - 0.744556725025177, - 0.705894947052002, - 0.6683654189109802, - 0.6329919099807739, - 0.6007393598556519, - 0.5724874138832092, - 0.5490068197250366, - 0.5309379696846008, - 0.5187737941741943, - 0.5128461122512817, - 0.5133165717124939, - 0.5201724171638489, - 0.533226490020752, - 0.5521228909492493, - 0.5763460993766785, - 0.6052352786064148, - 0.6380025148391724, - 0.6737540364265442, - 0.8210567235946655, - 0.806049108505249, - 0.7894419431686401, - 0.7716880440711975, - 0.7532718181610107, - 0.734695553779602, - 0.7164660096168518, - 0.6990803480148315, - 0.6830129623413086, - 0.6687019467353821, - 0.6565377712249756, - 0.6468522548675537, - 0.639909565448761, - 0.6358990669250488, - 0.6349301934242249, - 0.6370292901992798, - 0.642139196395874, - 0.6501204967498779, - 0.660755455493927, - 0.6737540364265442 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.741512656211853, - -1.7699151039123535, - -1.8076547384262085, - -1.8537018299102783, - -1.906800627708435, - -1.9655025005340576, - -2.0282063484191895, - -2.0932018756866455, - -2.1587159633636475, - -2.22296142578125, - -2.284186363220215, - -2.3407201766967773, - -2.3910210132598877, - -2.4337167739868164, - -2.4676427841186523, - -2.4918737411499023, - -2.505748748779297, - -2.5088889598846436, - -2.501209020614624, - -2.4829182624816895, - -1.741512656211853, - -1.7686501741409302, - -1.8051592111587524, - -1.8500440120697021, - -1.9020800590515137, - -1.959848165512085, - -2.0217723846435547, - -2.0861637592315674, - -2.1512656211853027, - -2.2153022289276123, - -2.276527166366577, - -2.3332698345184326, - -2.3839828968048096, - -2.4272828102111816, - -2.4619884490966797, - -2.4871532917022705, - -2.5020906925201416, - -2.5063934326171875, - -2.499943971633911, - -2.4829182624816895, - -1.741512656211853, - -1.7649922370910645, - -1.797943353652954, - -1.8394668102264404, - -1.888430118560791, - -1.9434977769851685, - -2.0031676292419434, - -2.065812110900879, - -2.1297221183776855, - -2.193154811859131, - -2.2543795108795166, - -2.3117265701293945, - -2.363631248474121, - -2.4086780548095703, - -2.4456381797790527, - -2.473503351211548, - -2.49151349067688, - -2.4991774559020996, - -2.496286153793335, - -2.4829182624816895, - -1.741512656211853, - -1.7593379020690918, - -1.786788821220398, - -1.823116421699524, - -1.8673299551010132, - -1.918223261833191, - -1.9744082689285278, - -2.0343523025512695, - -2.0964200496673584, - -2.158918857574463, - -2.2201435565948486, - -2.2784245014190674, - -2.3321714401245117, - -2.3799188137054443, - -2.420363664627075, - -2.4524030685424805, - -2.475163221359253, - -2.488023042678833, - -2.4906318187713623, - -2.4829182624816895, - -1.7415127754211426, - -1.7522997856140137, - -1.7729045152664185, - -1.8027647733688354, - -1.8410660028457642, - -1.8867634534835815, - -1.9386107921600342, - -1.9951934814453125, - -2.0549681186676025, - -2.116304636001587, - -2.1775293350219727, - -2.2369725704193115, - -2.2930126190185547, - -2.344121217727661, - -2.388903856277466, - -2.4261393547058105, - -2.4548115730285645, - -2.4741387367248535, - -2.483593702316284, - -2.4829182624816895, - -1.7415127754211426, - -1.744640588760376, - -1.7577950954437256, - -1.7806172370910645, - -1.8124845027923584, - -1.8525276184082031, - -1.8996542692184448, - -1.952579140663147, - -2.0098583698272705, - -2.069929838180542, - -2.1311545372009277, - -2.1918628215789795, - -2.2503983974456787, - -2.3051648139953613, - -2.354667901992798, - -2.3975577354431152, - -2.432663917541504, - -2.45902943611145, - -2.4759345054626465, - -2.4829182624816895, - -1.7415127754211426, - -1.7371903657913208, - -1.7430977821350098, - -1.7590737342834473, - -1.7846825122833252, - -1.819225549697876, - -1.8617604970932007, - -1.9111273288726807, - -1.9659792184829712, - -2.02482008934021, - -2.0860447883605957, - -2.1479835510253906, - -2.208946466445923, - -2.267271041870117, - -2.3213658332824707, - -2.369755744934082, - -2.411120653152466, - -2.4443321228027344, - -2.4684841632843018, - -2.4829182624816895, - -1.7415127754211426, - -1.730756402015686, - -1.730405330657959, - -1.740468978881836, - -1.7606730461120605, - -1.790466070175171, - -1.829035758972168, - -1.8753297328948975, - -1.928085446357727, - -1.9858636856079102, - -2.047088384628296, - -2.1100897789001465, - -2.1731491088867188, - -2.234546184539795, - -2.2926063537597656, - -2.3457462787628174, - -2.3925158977508545, - -2.4316396713256836, - -2.462050199508667, - -2.4829182624816895, - -1.7415127754211426, - -1.7260358333587646, - -1.7210930585861206, - -1.7268190383911133, - -1.7430576086044312, - -1.769365906715393, - -1.8050261735916138, - -1.8490657806396484, - -1.9002834558486938, - -1.9572820663452148, - -2.0185067653656006, - -2.0822877883911133, - -2.1468851566314697, - -2.2105367183685303, - -2.2715063095092773, - -2.3281309604644775, - -2.378865957260132, - -2.4223272800445557, - -2.457329750061035, - -2.4829182624816895, - -1.7415127754211426, - -1.7235404253005981, - -1.716170310974121, - -1.7196030616760254, - -1.7337454557418823, - -1.758211374282837, - -1.792333722114563, - -1.835181474685669, - -1.885586142539978, - -1.942172646522522, - -2.0033974647521973, - -2.0675904750823975, - -2.1330008506774902, - -2.1978442668914795, - -2.2603516578674316, - -2.3188185691833496, - -2.371649980545044, - -2.4174044132232666, - -2.454834222793579, - -2.4829182624816895, - -1.7415127754211426, - -1.7235404253005981, - -1.716170310974121, - -1.7196030616760254, - -1.7337454557418823, - -1.758211374282837, - -1.792333722114563, - -1.835181474685669, - -1.885586142539978, - -1.942172646522522, - -2.0033974647521973, - -2.0675904750823975, - -2.1330008506774902, - -2.1978442668914795, - -2.2603516578674316, - -2.3188185691833496, - -2.371649980545044, - -2.4174044132232666, - -2.454834222793579, - -2.4829182624816895, - -1.7415127754211426, - -1.7260358333587646, - -1.7210930585861206, - -1.7268190383911133, - -1.7430576086044312, - -1.769365906715393, - -1.8050261735916138, - -1.8490657806396484, - -1.9002834558486938, - -1.9572820663452148, - -2.0185067653656006, - -2.0822877883911133, - -2.1468851566314697, - -2.2105367183685303, - -2.2715063095092773, - -2.3281309604644775, - -2.378865957260132, - -2.4223272800445557, - -2.457329750061035, - -2.4829182624816895, - -1.7415127754211426, - -1.730756402015686, - -1.730405330657959, - -1.740468978881836, - -1.7606730461120605, - -1.790466070175171, - -1.829035758972168, - -1.8753297328948975, - -1.9280853271484375, - -1.9858636856079102, - -2.047088384628296, - -2.1100897789001465, - -2.1731491088867188, - -2.234546184539795, - -2.2926063537597656, - -2.3457462787628174, - -2.3925158977508545, - -2.4316396713256836, - -2.462050199508667, - -2.4829182624816895, - -1.7415127754211426, - -1.7371903657913208, - -1.7430977821350098, - -1.7590737342834473, - -1.7846825122833252, - -1.819225549697876, - -1.8617604970932007, - -1.9111273288726807, - -1.9659792184829712, - -2.02482008934021, - -2.0860447883605957, - -2.1479835510253906, - -2.208946466445923, - -2.267271041870117, - -2.3213658332824707, - -2.369755744934082, - -2.411120653152466, - -2.4443321228027344, - -2.4684841632843018, - -2.4829182624816895, - -1.7415127754211426, - -1.744640588760376, - -1.7577950954437256, - -1.7806172370910645, - -1.8124845027923584, - -1.8525276184082031, - -1.8996542692184448, - -1.952579140663147, - -2.0098583698272705, - -2.069929838180542, - -2.1311545372009277, - -2.1918628215789795, - -2.2503983974456787, - -2.3051648139953613, - -2.354667901992798, - -2.3975577354431152, - -2.432663917541504, - -2.45902943611145, - -2.4759345054626465, - -2.4829182624816895, - -1.7415127754211426, - -1.7522997856140137, - -1.7729045152664185, - -1.8027647733688354, - -1.8410660028457642, - -1.8867634534835815, - -1.9386106729507446, - -1.995193362236023, - -2.0549681186676025, - -2.116304397583008, - -2.1775293350219727, - -2.2369725704193115, - -2.2930126190185547, - -2.344121217727661, - -2.388903856277466, - -2.4261391162872314, - -2.4548115730285645, - -2.4741387367248535, - -2.483593702316284, - -2.4829182624816895, - -1.741512656211853, - -1.7593379020690918, - -1.786788821220398, - -1.823116421699524, - -1.8673299551010132, - -1.918223261833191, - -1.9744082689285278, - -2.0343523025512695, - -2.0964200496673584, - -2.158918857574463, - -2.2201435565948486, - -2.2784245014190674, - -2.3321714401245117, - -2.3799185752868652, - -2.420363664627075, - -2.4524030685424805, - -2.475163221359253, - -2.488023042678833, - -2.4906318187713623, - -2.4829182624816895, - -1.741512656211853, - -1.764992356300354, - -1.797943353652954, - -1.8394668102264404, - -1.888430118560791, - -1.9434977769851685, - -2.0031676292419434, - -2.065812110900879, - -2.1297221183776855, - -2.193154811859131, - -2.2543795108795166, - -2.3117265701293945, - -2.363631248474121, - -2.4086780548095703, - -2.4456381797790527, - -2.473503351211548, - -2.49151349067688, - -2.4991774559020996, - -2.496286153793335, - -2.4829182624816895, - -1.741512656211853, - -1.7686501741409302, - -1.8051592111587524, - -1.8500440120697021, - -1.9020800590515137, - -1.959848165512085, - -2.0217723846435547, - -2.0861637592315674, - -2.1512656211853027, - -2.2153024673461914, - -2.276527166366577, - -2.3332698345184326, - -2.3839828968048096, - -2.4272828102111816, - -2.4619884490966797, - -2.4871532917022705, - -2.5020909309387207, - -2.5063934326171875, - -2.499943971633911, - -2.4829182624816895, - -1.741512656211853, - -1.7699151039123535, - -1.8076547384262085, - -1.8537018299102783, - -1.906800627708435, - -1.9655025005340576, - -2.0282063484191895, - -2.0932018756866455, - -2.1587159633636475, - -2.22296142578125, - -2.284186363220215, - -2.3407201766967773, - -2.3910210132598877, - -2.4337167739868164, - -2.4676427841186523, - -2.4918737411499023, - -2.505748748779297, - -2.5088889598846436, - -2.501209020614624, - -2.4829182624816895 - ], - "y": [ - 1.7442152500152588, - 1.7548078298568726, - 1.7566986083984375, - 1.7498360872268677, - 1.7344074249267578, - 1.7108334302902222, - 1.6797571182250977, - 1.6420263051986694, - 1.5986700057983398, - 1.5508710145950317, - 1.499933123588562, - 1.447245717048645, - 1.394245982170105, - 1.3423796892166138, - 1.29306161403656, - 1.2476370334625244, - 1.207344889640808, - 1.1732842922210693, - 1.1463844776153564, - 1.1273789405822754, - 1.7442152500152588, - 1.7332940101623535, - 1.714257836341858, - 1.6876261234283447, - 1.6541249752044678, - 1.614668607711792, - 1.5703330039978027, - 1.5223275423049927, - 1.4719618558883667, - 1.4206095933914185, - 1.3696717023849487, - 1.3205374479293823, - 1.2745472192764282, - 1.2329554557800293, - 1.1968967914581299, - 1.1673545837402344, - 1.1451348066329956, - 1.1308435201644897, - 1.1248706579208374, - 1.1273789405822754, - 1.7442152500152588, - 1.7125078439712524, - 1.6732525825500488, - 1.6275200843811035, - 1.576557993888855, - 1.5217562913894653, - 1.4646097421646118, - 1.4066773653030396, - 1.3495391607284546, - 1.2947540283203125, - 1.2438160181045532, - 1.1981148719787598, - 1.158897042274475, - 1.127232313156128, - 1.1039843559265137, - 1.089787483215332, - 1.085028886795044, - 1.0898382663726807, - 1.1040844917297363, - 1.1273789405822754, - 1.7442152500152588, - 1.694701910018921, - 1.638126254081726, - 1.5760316848754883, - 1.5101118087768555, - 1.4421648979187012, - 1.3740442991256714, - 1.3076081275939941, - 1.2446686029434204, - 1.186942458152771, - 1.1360045671463013, - 1.093244194984436, - 1.0598278045654297, - 1.0366668701171875, - 1.024393081665039, - 1.023341417312622, - 1.0335404872894287, - 1.054711937904358, - 1.0862784385681152, - 1.1273789405822754, - 1.7442152500152588, - 1.6818056106567383, - 1.6126854419708252, - 1.5387402772903442, - 1.4619871377944946, - 1.3845195770263672, - 1.308450698852539, - 1.2358555793762207, - 1.168714165687561, - 1.1088582277297974, - 1.0579203367233276, - 1.0172898769378662, - 0.9880752563476562, - 0.9710732698440552, - 0.9667477607727051, - 0.9752166867256165, - 0.9962490797042847, - 1.029271125793457, - 1.0733821392059326, - 1.1273789405822754, - 1.7442152500152588, - 1.675216555595398, - 1.599687099456787, - 1.5196871757507324, - 1.437398910522461, - 1.3550670146942139, - 1.2749371528625488, - 1.1991952657699585, - 1.1299071311950684, - 1.068962812423706, - 1.0180249214172363, - 0.978482723236084, - 0.951414942741394, - 0.9375597238540649, - 0.9372951984405518, - 0.950628399848938, - 0.9771958589553833, - 1.016272783279419, - 1.0667932033538818, - 1.1273789405822754, - 1.7442152500152588, - 1.6756486892700195, - 1.6005396842956543, - 1.5209368467330933, - 1.4390116930007935, - 1.3569988012313843, - 1.2771353721618652, - 1.2015997171401978, - 1.1324524879455566, - 1.0715796947479248, - 1.020641803741455, - 0.9810280799865723, - 0.9538193941116333, - 0.9397578239440918, - 0.9392269849777222, - 0.9522411823272705, - 0.9784455895423889, - 1.0171253681182861, - 1.0672253370285034, - 1.1273789405822754, - 1.7442152500152588, - 1.6830552816390991, - 1.615150809288025, - 1.5423539876937866, - 1.4666506052017212, - 1.3901056051254272, - 1.3148070573806763, - 1.2428085803985596, - 1.176074504852295, - 1.1164249181747437, - 1.065487027168274, - 1.0246500968933105, - 0.9950283765792847, - 0.9774295091629028, - 0.9723337888717651, - 0.9798802137374878, - 0.999862790107727, - 1.0317364931106567, - 1.074631929397583, - 1.1273789405822754, - 1.7442152500152588, - 1.6966336965560913, - 1.6419371366500854, - 1.5816177129745483, - 1.5173206329345703, - 1.4507999420166016, - 1.3838698863983154, - 1.3183562755584717, - 1.256046175956726, - 1.198639154434204, - 1.1477012634277344, - 1.1046217679977417, - 1.0705759525299072, - 1.046492338180542, - 1.0330281257629395, - 1.030550241470337, - 1.0391265153884888, - 1.0585228204727173, - 1.0882103443145752, - 1.1273789405822754, - 1.7442152500152588, - 1.7149124145507812, - 1.6779961585998535, - 1.634473204612732, - 1.5855309963226318, - 1.5325044393539429, - 1.4768399000167847, - 1.4200557470321655, - 1.3637011051177979, - 1.3093130588531494, - 1.2583751678466797, - 1.212276816368103, - 1.1722755432128906, - 1.1394624710083008, - 1.1147326231002808, - 1.0987606048583984, - 1.0919820070266724, - 1.0945818424224854, - 1.1064890623092651, - 1.1273789405822754, - 1.7442152500152588, - 1.7359107732772827, - 1.7194199562072754, - 1.6951926946640015, - 1.6638898849487305, - 1.6263651847839355, - 1.5836423635482788, - 1.5368865728378296, - 1.4873734712600708, - 1.4364534616470337, - 1.3855154514312744, - 1.335949182510376, - 1.2891063690185547, - 1.246264934539795, - 1.2085933685302734, - 1.1771193742752075, - 1.152701497077942, - 1.1360056400299072, - 1.1274874210357666, - 1.1273789405822754, - 1.7442152500152588, - 1.7573531866073608, - 1.7617199420928955, - 1.7571964263916016, - 1.7439059019088745, - 1.7222110033035278, - 1.6927034854888916, - 1.6561882495880127, - 1.613661289215088, - 1.5662826299667358, - 1.5153447389602661, - 1.4622368812561035, - 1.4084079265594482, - 1.3553260564804077, - 1.3044391870498657, - 1.2571355104446411, - 1.2147051095962524, - 1.1783056259155273, - 1.1489298343658447, - 1.1273789405822754, - 1.7442152500152588, - 1.7769160270690918, - 1.8003120422363281, - 1.813765048980713, - 1.8169081211090088, - 1.8096554279327393, - 1.7922048568725586, - 1.765032410621643, - 1.7288793325424194, - 1.6847316026687622, - 1.6337937116622925, - 1.577454924583435, - 1.5172522068023682, - 1.4548274278640747, - 1.3918837308883667, - 1.3301377296447754, - 1.2712738513946533, - 1.21689772605896, - 1.1684926748275757, - 1.1273789405822754, - 1.7442152500152588, - 1.7924795150756836, - 1.8310143947601318, - 1.8587688207626343, - 1.874985694885254, - 1.8792226314544678, - 1.8713641166687012, - 1.8516244888305664, - 1.8205419778823853, - 1.7789647579193115, - 1.7280268669128418, - 1.6691176891326904, - 1.603844165802002, - 1.5339866876602173, - 1.4614508152008057, - 1.3882153034210205, - 1.3162775039672852, - 1.2476000785827637, - 1.184056043624878, - 1.1273789405822754, - 1.7442152500152588, - 1.8023568391799927, - 1.8504997491836548, - 1.8873305320739746, - 1.9118448495864868, - 1.9233736991882324, - 1.921602725982666, - 1.9065802097320557, - 1.8787161111831665, - 1.8387701511383057, - 1.787832260131836, - 1.7272918224334717, - 1.6588000059127808, - 1.5842252969741821, - 1.5056020021438599, - 1.4250744581222534, - 1.344839334487915, - 1.2670854330062866, - 1.1939334869384766, - 1.1273789405822754, - 1.7442152500152588, - 1.8054778575897217, - 1.8566566705703735, - 1.896355390548706, - 1.9234914779663086, - 1.9373242855072021, - 1.9374769926071167, - 1.9239450693130493, - 1.8970977067947388, - 1.8576672077178955, - 1.8067293167114258, - 1.745673418045044, - 1.6761647462844849, - 1.6000995635986328, - 1.5195527076721191, - 1.4367209672927856, - 1.3538641929626465, - 1.2732423543930054, - 1.1970545053482056, - 1.1273789405822754, - 1.7442152500152588, - 1.8015042543411255, - 1.8488178253173828, - 1.8848652839660645, - 1.908663272857666, - 1.919562816619873, - 1.9172663688659668, - 1.90183687210083, - 1.8736947774887085, - 1.8336081504821777, - 1.782670259475708, - 1.7222704887390137, - 1.6540565490722656, - 1.579888939857483, - 1.5017911195755005, - 1.4218928813934326, - 1.3423740863800049, - 1.2654035091400146, - 1.1930809020996094, - 1.1273789405822754, - 1.7442152500152588, - 1.790866732597351, - 1.827832818031311, - 1.8541052341461182, - 1.8689674139022827, - 1.8720136880874634, - 1.8631610870361328, - 1.8426512479782104, - 1.8110435009002686, - 1.7691998481750488, - 1.718261957168579, - 1.6596190929412842, - 1.5948710441589355, - 1.5257837772369385, - 1.4542419910430908, - 1.3821970224380493, - 1.3116140365600586, - 1.2444185018539429, - 1.182443380355835, - 1.1273789405822754, - 1.7442152500152588, - 1.774717926979065, - 1.795975685119629, - 1.8074088096618652, - 1.80870521068573, - 1.7998297214508057, - 1.78102445602417, - 1.7528021335601807, - 1.715932846069336, - 1.6714221239089966, - 1.6204842329025269, - 1.5645085573196411, - 1.5050219297409058, - 1.443647027015686, - 1.382058024406433, - 1.3219348192214966, - 1.2649174928665161, - 1.2125613689422607, - 1.1662944555282593, - 1.1273789405822754, - 1.7442152500152588, - 1.7548078298568726, - 1.7566986083984375, - 1.7498360872268677, - 1.7344074249267578, - 1.7108333110809326, - 1.6797571182250977, - 1.6420261859893799, - 1.5986700057983398, - 1.5508708953857422, - 1.4999330043792725, - 1.4472455978393555, - 1.394245982170105, - 1.3423796892166138, - 1.29306161403656, - 1.2476369142532349, - 1.2073447704315186, - 1.1732842922210693, - 1.1463844776153564, - 1.1273789405822754 - ], - "z": [ - 1.1866942644119263, - 1.1967219114303589, - 1.1985118389129639, - 1.1920154094696045, - 1.1774096488952637, - 1.1550930738449097, - 1.1256744861602783, - 1.0899561643600464, - 1.048912525177002, - 1.003663182258606, - 0.9554423093795776, - 0.9055653214454651, - 0.8553926944732666, - 0.8062929511070251, - 0.7596055865287781, - 0.7166038751602173, - 0.678460955619812, - 0.6462172269821167, - 0.620752215385437, - 0.6027605533599854, - 1.1866942644119263, - 1.2178417444229126, - 1.240175485610962, - 1.2530864477157593, - 1.2562222480773926, - 1.2494972944259644, - 1.2330951690673828, - 1.2074633836746216, - 1.173300862312317, - 1.1315395832061768, - 1.0833187103271484, - 1.0299535989761353, - 0.972899854183197, - 0.9137137532234192, - 0.854009747505188, - 0.7954164147377014, - 0.7395319938659668, - 0.6878809332847595, - 0.6418721079826355, - 0.6027605533599854, - 1.1866942644119263, - 1.2351548671722412, - 1.274329423904419, - 1.3031494617462158, - 1.320828914642334, - 1.3268852233886719, - 1.3211535215377808, - 1.3037900924682617, - 1.2752684354782104, - 1.2363665103912354, - 1.188145637512207, - 1.1319211721420288, - 1.0692265033721924, - 1.0017720460891724, - 0.9313977360725403, - 0.8600230813026428, - 0.7895951271057129, - 0.7220348119735718, - 0.6591851711273193, - 0.6027605533599854, - 1.1866942644119263, - 1.2467849254608154, - 1.2972724437713623, - 1.3367794752120972, - 1.36422860622406, - 1.3788708448410034, - 1.3803069591522217, - 1.3684977293014526, - 1.343765377998352, - 1.3067842721939087, - 1.2585633993148804, - 1.2004181146621704, - 1.1339342594146729, - 1.0609254837036133, - 0.9833833575248718, - 0.9034228324890137, - 0.8232250809669495, - 0.7449778318405151, - 0.6708152890205383, - 0.6027605533599854, - 1.1866942644119263, - 1.251471757888794, - 1.3065181970596313, - 1.3503320217132568, - 1.3817182779312134, - 1.3998205661773682, - 1.4041452407836914, - 1.3945744037628174, - 1.3713690042495728, - 1.3351620435714722, - 1.2869411706924438, - 1.2280217409133911, - 1.160010814666748, - 1.084763765335083, - 1.0043331384658813, - 0.920912504196167, - 0.8367776870727539, - 0.7542235851287842, - 0.6755021214485168, - 0.6027605533599854, - 1.1866942644119263, - 1.2487074136734009, - 1.3010649681091309, - 1.3423385620117188, - 1.3714027404785156, - 1.3874642848968506, - 1.390085220336914, - 1.3791941404342651, - 1.3550881147384644, - 1.3184244632720947, - 1.270203709602356, - 1.2117408514022827, - 1.1446306705474854, - 1.0707037448883057, - 0.9919767379760742, - 0.9105969071388245, - 0.8287842273712158, - 0.7487703561782837, - 0.6727377772331238, - 0.6027605533599854, - 1.1866942644119263, - 1.2387914657592773, - 1.2815035581588745, - 1.3136653900146484, - 1.334399700164795, - 1.3431408405303955, - 1.3396503925323486, - 1.324023723602295, - 1.2966868877410889, - 1.2583856582641602, - 1.2101647853851318, - 1.1533396244049072, - 1.0894602537155151, - 1.0202689170837402, - 0.9476532936096191, - 0.8735939264297485, - 0.8001109957695007, - 0.7292089462280273, - 0.6628218293190002, - 0.6027605533599854, - 1.1866942644119263, - 1.222798466682434, - 1.2499537467956543, - 1.267419457435608, - 1.274718999862671, - 1.271653413772583, - 1.2583062648773193, - 1.235041618347168, - 1.2024941444396973, - 1.1615514755249023, - 1.113330602645874, - 1.0591468811035156, - 1.0004781484603882, - 0.9389248490333557, - 0.8761659264564514, - 0.8139132857322693, - 0.7538650631904602, - 0.6976591944694519, - 0.646828830242157, - 0.6027605533599854, - 1.1866942644119263, - 1.2024614810943604, - 1.2098345756530762, - 1.208612322807312, - 1.1988282203674316, - 1.1807489395141602, - 1.1548677682876587, - 1.1218905448913574, - 1.0827170610427856, - 1.038415551185608, - 0.9901947379112244, - 0.939369797706604, - 0.8873270750045776, - 0.8354862332344055, - 0.7852613925933838, - 0.7380224466323853, - 0.6950579881668091, - 0.6575400233268738, - 0.626491904258728, - 0.6027605533599854, - 1.1866942644119263, - 1.179984450340271, - 1.1654934883117676, - 1.143616795539856, - 1.1149510145187378, - 1.0802781581878662, - 1.0405439138412476, - 0.9968321323394775, - 0.9503352642059326, - 0.9023215770721436, - 0.8541007041931152, - 0.806988000869751, - 0.7622686624526978, - 0.7211623787879944, - 0.6847906112670898, - 0.6541452407836914, - 0.6300624012947083, - 0.6131988763809204, - 0.6040147542953491, - 0.6027605533599854, - 1.1866942644119263, - 1.157802939414978, - 1.1217355728149414, - 1.079475998878479, - 1.0321769714355469, - 0.9811286330223083, - 0.9277235269546509, - 0.873418390750885, - 0.8196945190429688, - 0.7680172920227051, - 0.7197964191436768, - 0.6763472557067871, - 0.6388548612594604, - 0.6083420515060425, - 0.585641086101532, - 0.5713711977005005, - 0.5659215450286865, - 0.5694409608840942, - 0.5818332433700562, - 0.6027605533599854, - 1.1866942644119263, - 1.1383206844329834, - 1.0833024978637695, - 1.023140549659729, - 0.9594757556915283, - 0.8940448760986328, - 0.8286325335502625, - 0.7650231122970581, - 0.7049517035484314, - 0.6500568389892578, - 0.6018359661102295, - 0.5616044402122498, - 0.5304595828056335, - 0.5092509984970093, - 0.49855726957321167, - 0.4986700117588043, - 0.5095862150192261, - 0.5310079455375671, - 0.5623511075973511, - 0.6027605533599854, - 1.1866942644119263, - 1.123649001121521, - 1.0543594360351562, - 0.9807153940200806, - 0.9047259092330933, - 0.8284636735916138, - 0.754008948802948, - 0.6833925247192383, - 0.6185409426689148, - 0.5612229108810425, - 0.5130020380020142, - 0.47519367933273315, - 0.4488290548324585, - 0.43462738394737244, - 0.43297603726387024, - 0.4439200758934021, - 0.46716099977493286, - 0.5020648241043091, - 0.5476793646812439, - 0.6027605533599854, - 1.1866942644119263, - 1.1153777837753296, - 1.038042426109314, - 0.9567978978157043, - 0.873860239982605, - 0.7914917469024658, - 0.7119392156600952, - 0.6373727321624756, - 0.5698261857032776, - 0.5111421346664429, - 0.46292129158973694, - 0.42647892236709595, - 0.402809202671051, - 0.39255768060684204, - 0.3960041403770447, - 0.41305437684059143, - 0.44324350357055664, - 0.4857478439807892, - 0.5394080877304077, - 0.6027605533599854, - 1.1866942644119263, - 1.114403247833252, - 1.0361199378967285, - 0.9539798498153687, - 0.8702235221862793, - 0.787135660648346, - 0.7069825530052185, - 0.6319506168365479, - 0.5640865564346313, - 0.5052415132522583, - 0.45702067017555237, - 0.4207392632961273, - 0.3973870873451233, - 0.38760101795196533, - 0.3916480541229248, - 0.4094177484512329, - 0.44042548537254333, - 0.48382535576820374, - 0.5384335517883301, - 0.6027605533599854, - 1.1866942644119263, - 1.12083101272583, - 1.0488002300262451, - 0.9725667238235474, - 0.8942099809646606, - 0.8158673644065857, - 0.739675760269165, - 0.6677136421203613, - 0.601943850517273, - 0.5441604256629944, - 0.49593958258628845, - 0.4585965871810913, - 0.43315011262893677, - 0.42029425501823425, - 0.42037972807884216, - 0.43340417742729187, - 0.45901232957839966, - 0.49650558829307556, - 0.5448613166809082, - 0.6027605533599854, - 1.1866942644119263, - 1.1339646577835083, - 1.074709177017212, - 1.0105443000793457, - 0.9432201981544495, - 0.8745734691619873, - 0.806476354598999, - 0.7407865524291992, - 0.6792958378791809, - 0.6236815452575684, - 0.57546067237854, - 0.535948634147644, - 0.5062230229377747, - 0.48709481954574585, - 0.4790858328342438, - 0.48241445422172546, - 0.496989905834198, - 0.5224145650863647, - 0.5579949617385864, - 0.6027605533599854, - 1.1866942644119263, - 1.1523808240890503, - 1.111039161682129, - 1.063797116279602, - 1.0119433403015137, - 0.9568921327590942, - 0.9001452922821045, - 0.8432506322860718, - 0.7877601385116577, - 0.7351874709129333, - 0.686966598033905, - 0.6444128751754761, - 0.608687162399292, - 0.5807638168334961, - 0.5614045858383179, - 0.5511375665664673, - 0.5502427220344543, - 0.5587445497512817, - 0.5764111280441284, - 0.6027605533599854, - 1.1866942644119263, - 1.1740838289260864, - 1.1538532972335815, - 1.1265544891357422, - 1.0929319858551025, - 1.0539029836654663, - 1.0105321407318115, - 0.9640023708343506, - 0.9155830144882202, - 0.8665947914123535, - 0.8183739185333252, - 0.7722357511520386, - 0.7294389009475708, - 0.6911506056785583, - 0.6584154367446899, - 0.6321262121200562, - 0.6130000352859497, - 0.6015586853027344, - 0.5981141924858093, - 0.6027605533599854, - 1.1866942644119263, - 1.1967219114303589, - 1.1985118389129639, - 1.1920154094696045, - 1.1774096488952637, - 1.1550931930541992, - 1.1256744861602783, - 1.089956283569336, - 1.0489126443862915, - 1.0036633014678955, - 0.9554424285888672, - 0.9055653810501099, - 0.8553927540779114, - 0.8062930107116699, - 0.7596056461334229, - 0.7166039347648621, - 0.6784610152244568, - 0.6462172269821167, - 0.620752215385437, - 0.6027605533599854 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.9452579021453857, - -1.9742393493652344, - -2.0136845111846924, - -2.0625174045562744, - -2.119406223297119, - -2.1827988624572754, - -2.2509660720825195, - -2.3220489025115967, - -2.3941080570220947, - -2.4651777744293213, - -2.5333199501037598, - -2.596675395965576, - -2.6535162925720215, - -2.702291965484619, - -2.7416720390319824, - -2.7705821990966797, - -2.788233757019043, - -2.7941455841064453, - -2.788156032562256, - -2.7704288959503174, - -1.9452579021453857, - -1.9729739427566528, - -2.011188268661499, - -2.0588583946228027, - -2.1146841049194336, - -2.17714262008667, - -2.244529962539673, - -2.3150084018707275, - -2.38665509223938, - -2.4575161933898926, - -2.525658130645752, - -2.5892226696014404, - -2.6464757919311523, - -2.6958558559417725, - -2.736015796661377, - -2.765860080718994, - -2.7845747470855713, - -2.791649341583252, - -2.786890745162964, - -2.7704288959503174, - -1.9452579021453857, - -1.9693148136138916, - -2.00396990776062, - -2.0482776165008545, - -2.101029634475708, - -2.1607866287231445, - -2.225919008255005, - -2.294649839401245, - -2.3651046752929688, - -2.43536114692688, - -2.5035033226013184, - -2.56767201423645, - -2.626117467880249, - -2.6772449016571045, - -2.7196598052978516, - -2.7522056102752686, - -2.773993968963623, - -2.784430980682373, - -2.783231735229492, - -2.7704288959503174, - -1.9452579021453857, - -1.9636585712432861, - -1.992811679840088, - -2.031921863555908, - -2.0799224376678467, - -2.1355037689208984, - -2.1971499919891357, - -2.2631797790527344, - -2.331791400909424, - -2.401113748550415, - -2.4692559242248535, - -2.5343589782714844, - -2.594647169113159, - -2.6484758853912354, - -2.6943769454956055, - -2.731098175048828, - -2.7576382160186768, - -2.773272752761841, - -2.7775754928588867, - -2.7704288959503174, - -1.9452579021453857, - -1.9566181898117065, - -1.9789228439331055, - -2.011563301086426, - -2.053649663925171, - -2.1040334701538086, - -2.1613407135009766, - -2.2240078449249268, - -2.29032564163208, - -2.358485221862793, - -2.4266273975372314, - -2.4928932189941406, - -2.5554752349853516, - -2.612666368484497, - -2.6629066467285156, - -2.7048256397247314, - -2.7372796535491943, - -2.7593839168548584, - -2.7705349922180176, - -2.7704288959503174, - -1.9452579021453857, - -1.9489563703536987, - -1.963808298110962, - -1.9894084930419922, - -2.0250585079193115, - -2.0697860717773438, - -2.122371196746826, - -2.1813793182373047, - -2.2452008724212646, - -2.3120951652526855, - -2.380237340927124, - -2.447768449783325, - -2.5128467082977295, - -2.573697090148926, - -2.628659248352051, - -2.676234483718872, - -2.7151248455047607, - -2.744269371032715, - -2.7628731727600098, - -2.7704288959503174, - -1.9452579021453857, - -1.941503643989563, - -1.9491060972213745, - -1.967857837677002, - -1.9972474575042725, - -2.036473035812378, - -2.0844647884368896, - -2.139913558959961, - -2.2013070583343506, - -2.26697039604187, - -2.3351125717163086, - -2.403874635696411, - -2.471381187438965, - -2.5357906818389893, - -2.595346212387085, - -2.648423194885254, - -2.6935741901397705, - -2.729567050933838, - -2.755420446395874, - -2.7704288959503174, - -1.9452579021453857, - -1.9350675344467163, - -1.9364094734191895, - -1.949246883392334, - -1.9732298851013184, - -2.007704019546509, - -2.051729202270508, - -2.1041042804718018, - -2.163400650024414, - -2.2280008792877197, - -2.296143054962158, - -2.3659682273864746, - -2.4355716705322266, - -2.5030548572540283, - -2.566577196121216, - -2.624405860900879, - -2.6749632358551025, - -2.7168705463409424, - -2.7489843368530273, - -2.7704288959503174, - -1.9452579021453857, - -1.9303455352783203, - -1.9270941019058228, - -1.9355924129486084, - -1.955608606338501, - -1.9865968227386475, - -2.0277116298675537, - -2.077831506729126, - -2.135589361190796, - -2.1994099617004395, - -2.267551898956299, - -2.3381569385528564, - -2.409298896789551, - -2.479037284851074, - -2.5454699993133545, - -2.6067845821380615, - -2.661308765411377, - -2.707555055618286, - -2.744262218475342, - -2.7704288959503174, - -1.9452579021453857, - -1.9278491735458374, - -1.92216956615448, - -1.9283740520477295, - -1.9462933540344238, - -1.9754385948181152, - -2.015014886856079, - -2.0639426708221436, - -2.120887279510498, - -2.184295415878296, - -2.2524375915527344, - -2.3234548568725586, - -2.3954100608825684, - -2.4663407802581787, - -2.5343117713928223, - -2.5974693298339844, - -2.654090404510498, - -2.7026305198669434, - -2.7417659759521484, - -2.7704288959503174, - -1.9452579021453857, - -1.9278491735458374, - -1.92216956615448, - -1.9283740520477295, - -1.9462933540344238, - -1.9754385948181152, - -2.015014886856079, - -2.0639426708221436, - -2.120887279510498, - -2.184295415878296, - -2.2524375915527344, - -2.3234548568725586, - -2.3954100608825684, - -2.4663407802581787, - -2.5343117713928223, - -2.5974693298339844, - -2.654090404510498, - -2.7026305198669434, - -2.7417659759521484, - -2.7704288959503174, - -1.9452579021453857, - -1.9303455352783203, - -1.9270941019058228, - -1.9355924129486084, - -1.955608606338501, - -1.9865968227386475, - -2.0277116298675537, - -2.077831506729126, - -2.135589361190796, - -2.1994099617004395, - -2.267551898956299, - -2.3381569385528564, - -2.409298896789551, - -2.479037284851074, - -2.5454699993133545, - -2.6067845821380615, - -2.661308765411377, - -2.707555055618286, - -2.744262218475342, - -2.7704288959503174, - -1.9452579021453857, - -1.9350675344467163, - -1.9364093542099, - -1.949246883392334, - -1.9732298851013184, - -2.007704019546509, - -2.051729202270508, - -2.1041042804718018, - -2.163400650024414, - -2.2280008792877197, - -2.296143054962158, - -2.3659682273864746, - -2.4355716705322266, - -2.5030548572540283, - -2.566577196121216, - -2.624405860900879, - -2.6749632358551025, - -2.7168703079223633, - -2.7489843368530273, - -2.7704288959503174, - -1.9452579021453857, - -1.941503643989563, - -1.9491060972213745, - -1.967857837677002, - -1.9972474575042725, - -2.036473035812378, - -2.0844647884368896, - -2.13991379737854, - -2.2013070583343506, - -2.26697039604187, - -2.3351125717163086, - -2.403874635696411, - -2.471381187438965, - -2.5357906818389893, - -2.595346212387085, - -2.648423194885254, - -2.6935741901397705, - -2.729567050933838, - -2.755420446395874, - -2.7704288959503174, - -1.9452579021453857, - -1.9489563703536987, - -1.963808298110962, - -1.9894084930419922, - -2.0250585079193115, - -2.0697860717773438, - -2.122371196746826, - -2.1813793182373047, - -2.2452008724212646, - -2.3120951652526855, - -2.380237340927124, - -2.447768449783325, - -2.5128467082977295, - -2.573697090148926, - -2.628659248352051, - -2.676234483718872, - -2.7151248455047607, - -2.744269371032715, - -2.7628731727600098, - -2.7704288959503174, - -1.9452579021453857, - -1.956618070602417, - -1.9789228439331055, - -2.011563301086426, - -2.053649663925171, - -2.1040334701538086, - -2.1613407135009766, - -2.2240078449249268, - -2.29032564163208, - -2.358485221862793, - -2.4266273975372314, - -2.4928932189941406, - -2.5554752349853516, - -2.612666368484497, - -2.6629066467285156, - -2.7048256397247314, - -2.7372796535491943, - -2.7593839168548584, - -2.7705349922180176, - -2.7704288959503174, - -1.9452579021453857, - -1.9636585712432861, - -1.992811679840088, - -2.031921863555908, - -2.0799224376678467, - -2.1355037689208984, - -2.1971499919891357, - -2.2631797790527344, - -2.331791400909424, - -2.401113748550415, - -2.4692559242248535, - -2.5343589782714844, - -2.594647169113159, - -2.6484758853912354, - -2.6943769454956055, - -2.731098175048828, - -2.7576382160186768, - -2.773272752761841, - -2.7775754928588867, - -2.7704288959503174, - -1.9452579021453857, - -1.9693148136138916, - -2.00396990776062, - -2.0482776165008545, - -2.101029634475708, - -2.1607866287231445, - -2.225919008255005, - -2.294650077819824, - -2.3651046752929688, - -2.43536114692688, - -2.5035033226013184, - -2.56767201423645, - -2.626117467880249, - -2.6772449016571045, - -2.7196598052978516, - -2.7522056102752686, - -2.773993968963623, - -2.784430980682373, - -2.783231735229492, - -2.7704288959503174, - -1.9452579021453857, - -1.9729739427566528, - -2.011188268661499, - -2.0588583946228027, - -2.1146841049194336, - -2.17714262008667, - -2.244529962539673, - -2.3150084018707275, - -2.386655330657959, - -2.4575161933898926, - -2.525658130645752, - -2.5892226696014404, - -2.6464757919311523, - -2.6958558559417725, - -2.736015796661377, - -2.765860080718994, - -2.7845747470855713, - -2.791649341583252, - -2.786890745162964, - -2.7704288959503174, - -1.9452579021453857, - -1.9742393493652344, - -2.0136845111846924, - -2.0625174045562744, - -2.119406223297119, - -2.1827988624572754, - -2.2509660720825195, - -2.3220489025115967, - -2.3941080570220947, - -2.4651777744293213, - -2.5333199501037598, - -2.596675395965576, - -2.6535162925720215, - -2.702291965484619, - -2.7416720390319824, - -2.7705821990966797, - -2.788233757019043, - -2.7941455841064453, - -2.788156032562256, - -2.7704288959503174 - ], - "y": [ - 1.934760570526123, - 1.944882869720459, - 1.9453656673431396, - 1.9361958503723145, - 1.9176236391067505, - 1.890155553817749, - 1.8545407056808472, - 1.8117507696151733, - 1.7629529237747192, - 1.7094781398773193, - 1.6527851819992065, - 1.594420313835144, - 1.5359758138656616, - 1.4790457487106323, - 1.4251830577850342, - 1.3758569955825806, - 1.3324129581451416, - 1.2960361242294312, - 1.2677186727523804, - 1.2482330799102783, - 1.934760570526123, - 1.921028733253479, - 1.8983080387115479, - 1.8672184944152832, - 1.8286077976226807, - 1.78352952003479, - 1.733212947845459, - 1.6790307760238647, - 1.622460961341858, - 1.5650464296340942, - 1.5083534717559814, - 1.4539283514022827, - 1.403255820274353, - 1.3577179908752441, - 1.3185570240020752, - 1.2868411540985107, - 1.2634356021881104, - 1.248978614807129, - 1.2438645362854004, - 1.2482330799102783, - 1.934760570526123, - 1.8981553316116333, - 1.8531851768493652, - 1.801076889038086, - 1.7432518005371094, - 1.6812872886657715, - 1.6168735027313232, - 1.5517674684524536, - 1.4877450466156006, - 1.4265528917312622, - 1.3698599338531494, - 1.319212555885315, - 1.275992512702942, - 1.2413785457611084, - 1.2163147926330566, - 1.2014851570129395, - 1.197293996810913, - 1.2038556337356567, - 1.2209911346435547, - 1.2482330799102783, - 1.934760570526123, - 1.8787412643432617, - 1.8148868083953857, - 1.7449387311935425, - 1.6708052158355713, - 1.5945082902908325, - 1.5181293487548828, - 1.443751573562622, - 1.3734039068222046, - 1.3090052604675293, - 1.2523123025894165, - 1.204871416091919, - 1.1679766178131104, - 1.142634391784668, - 1.1295359134674072, - 1.1290385723114014, - 1.1411558389663696, - 1.1655572652816772, - 1.2015771865844727, - 1.2482330799102783, - 1.934760570526123, - 1.8648905754089355, - 1.7875630855560303, - 1.7048872709274292, - 1.619118571281433, - 1.532596468925476, - 1.447680950164795, - 1.3666884899139404, - 1.2918280363082886, - 1.2251418828964233, - 1.1684489250183105, - 1.123295545578003, - 1.0909135341644287, - 1.07218599319458, - 1.0676240921020508, - 1.0773520469665527, - 1.1011043787002563, - 1.1382334232330322, - 1.187726378440857, - 1.2482330799102783, - 1.934760570526123, - 1.8581039905548096, - 1.7741749286651611, - 1.68526291847229, - 1.593793272972107, - 1.5022610425949097, - 1.4131628274917603, - 1.32892906665802, - 1.2518575191497803, - 1.1840505599975586, - 1.1273574829101562, - 1.0833250284194946, - 1.0531542301177979, - 1.0376677513122559, - 1.0372885465621948, - 1.052026629447937, - 1.0814800262451172, - 1.1248455047607422, - 1.180939793586731, - 1.2482330799102783, - 1.934760570526123, - 1.8591169118881226, - 1.7761733531951904, - 1.6881922483444214, - 1.5975735187530518, - 1.506788969039917, - 1.4183151721954346, - 1.3345651626586914, - 1.2578237056732178, - 1.1901839971542358, - 1.133491039276123, - 1.0892912149429321, - 1.0587902069091797, - 1.0428202152252197, - 1.0418165922164917, - 1.0558068752288818, - 1.084409236907959, - 1.126843810081482, - 1.1819528341293335, - 1.2482330799102783, - 1.934760570526123, - 1.8678197860717773, - 1.7933416366577148, - 1.7133575677871704, - 1.6300495862960815, - 1.5456899404525757, - 1.4625798463821411, - 1.3829861879348755, - 1.3090801239013672, - 1.242877721786499, - 1.1861847639083862, - 1.1405476331710815, - 1.1072112321853638, - 1.0870847702026367, - 1.0807175636291504, - 1.0882829427719116, - 1.1095746755599976, - 1.1440119743347168, - 1.1906555891036987, - 1.2482330799102783, - 1.934760570526123, - 1.8832693099975586, - 1.8238192796707153, - 1.7580320835113525, - 1.6877022981643677, - 1.614748239517212, - 1.541159987449646, - 1.4689446687698364, - 1.4000723361968994, - 1.3364216089248657, - 1.279728651046753, - 1.2315398454666138, - 1.1931698322296143, - 1.1656650304794312, - 1.1497758626937866, - 1.1459356546401978, - 1.1542491912841797, - 1.1744897365570068, - 1.2061052322387695, - 1.2482330799102783, - 1.934760570526123, - 1.9037914276123047, - 1.8643038272857666, - 1.817374587059021, - 1.7642841339111328, - 1.7064803838729858, - 1.6455402374267578, - 1.5831259489059448, - 1.5209399461746216, - 1.4606785774230957, - 1.403985619544983, - 1.352407455444336, - 1.307350993156433, - 1.270045280456543, - 1.2415080070495605, - 1.222517490386963, - 1.2135916948318481, - 1.2149741649627686, - 1.2266273498535156, - 1.2482330799102783, - 1.934760570526123, - 1.9271621704101562, - 1.9104077816009521, - 1.8849543333053589, - 1.8514961004257202, - 1.810945749282837, - 1.7644094228744507, - 1.7131564617156982, - 1.6585849523544312, - 1.6021835803985596, - 1.5454905033111572, - 1.4900524616241455, - 1.4373815059661865, - 1.3889144659042358, - 1.3459733724594116, - 1.3097294569015503, - 1.281171441078186, - 1.2610782384872437, - 1.2499980926513672, - 1.2482330799102783, - 1.934760570526123, - 1.9508490562438965, - 1.9571354389190674, - 1.9534480571746826, - 1.939887523651123, - 1.9168238639831543, - 1.8848862648010254, - 1.8449456691741943, - 1.7980916500091553, - 1.7456021308898926, - 1.6889091730117798, - 1.62955904006958, - 1.5691707134246826, - 1.5093913078308105, - 1.451851487159729, - 1.3981208801269531, - 1.3496651649475098, - 1.3078057765960693, - 1.2736849784851074, - 1.2482330799102783, - 1.934760570526123, - 1.9722851514816284, - 1.9994227886199951, - 2.0154333114624023, - 2.0198798179626465, - 2.012641429901123, - 1.99391508102417, - 1.9642118215560913, - 1.9243420362472534, - 1.8753929138183594, - 1.8186999559402466, - 1.7558094263076782, - 1.6884368658065796, - 1.618420124053955, - 1.5476689338684082, - 1.4781132936477661, - 1.4116504192352295, - 1.3500932455062866, - 1.2951209545135498, - 1.2482330799102783, - 1.934760570526123, - 1.989147424697876, - 2.0326876640319824, - 2.0641932487487793, - 2.0828046798706055, - 2.088014602661133, - 2.079680919647217, - 2.0580310821533203, - 2.0236549377441406, - 1.9774909019470215, - 1.9207979440689087, - 1.8551225662231445, - 1.782256007194519, - 1.7041860818862915, - 1.623042345046997, - 1.541038155555725, - 1.460410237312317, - 1.3833580017089844, - 1.311983346939087, - 1.2482330799102783, - 1.934760570526123, - 1.9996088743209839, - 2.0533249378204346, - 2.0944435596466064, - 2.121843099594116, - 2.1347761154174805, - 2.132889986038208, - 2.1162359714508057, - 2.085268497467041, - 2.040832281112671, - 1.9841392040252686, - 1.9167360067367554, - 1.840461015701294, - 1.7573950290679932, - 1.6698037385940552, - 1.5800764560699463, - 1.4906606674194336, - 1.403995394706726, - 1.3224446773529053, - 1.2482330799102783, - 1.934760570526123, - 2.002535581588745, - 2.059098482131958, - 2.1029064655303955, - 2.1327645778656006, - 2.1478583812713623, - 2.147775888442993, - 2.1325197219848633, - 2.102505683898926, - 2.0585527420043945, - 2.0018599033355713, - 1.9339733123779297, - 1.8567447662353516, - 1.7722810506820679, - 1.682886004447937, - 1.5909980535507202, - 1.4991235733032227, - 1.409769058227539, - 1.325371503829956, - 1.2482330799102783, - 1.934760570526123, - 1.9976104497909546, - 2.0493826866149902, - 2.088665008544922, - 2.1143858432769775, - 2.1258435249328613, - 2.12272572517395, - 2.1051173210144043, - 2.0734987258911133, - 2.0287325382232666, - 1.9720394611358643, - 1.9049663543701172, - 1.8293424844741821, - 1.747230887413025, - 1.6608712673187256, - 1.5726191997528076, - 1.484882116317749, - 1.4000531435012817, - 1.3204463720321655, - 1.2482330799102783, - 1.934760570526123, - 1.9853672981262207, - 2.0252301692962646, - 2.053262233734131, - 2.0686981678009033, - 2.071117401123047, - 2.0604538917541504, - 2.0369985103607178, - 2.0013909339904785, - 1.954602599143982, - 1.8979096412658691, - 1.8328585624694824, - 1.7612236738204956, - 1.684959053993225, - 1.6061451435089111, - 1.526931643486023, - 1.4494792222976685, - 1.3759007453918457, - 1.3082032203674316, - 1.2482330799102783, - 1.934760570526123, - 1.9671326875686646, - 1.9892585277557373, - 2.0005345344543457, - 2.00065279006958, - 1.9896105527877808, - 1.9677088260650635, - 1.9355449676513672, - 1.893996238708496, - 1.8441963195800781, - 1.7875033617019653, - 1.7254637479782104, - 1.6597700119018555, - 1.5922138690948486, - 1.5246381759643555, - 1.4588862657546997, - 1.3967515230178833, - 1.3399289846420288, - 1.2899686098098755, - 1.2482330799102783, - 1.934760570526123, - 1.944882869720459, - 1.9453656673431396, - 1.9361958503723145, - 1.9176236391067505, - 1.8901554346084595, - 1.8545405864715576, - 1.8117506504058838, - 1.7629528045654297, - 1.7094780206680298, - 1.652785062789917, - 1.594420313835144, - 1.5359758138656616, - 1.4790457487106323, - 1.4251830577850342, - 1.3758569955825806, - 1.3324129581451416, - 1.2960361242294312, - 1.2677186727523804, - 1.2482330799102783 - ], - "z": [ - 1.3670759201049805, - 1.376658320426941, - 1.3771154880523682, - 1.3684347867965698, - 1.3508532047271729, - 1.3248502016067505, - 1.2911350727081299, - 1.2506276369094849, - 1.2044326066970825, - 1.1538102626800537, - 1.1001412868499756, - 1.0448896884918213, - 0.9895626306533813, - 0.9356693029403687, - 0.8846796751022339, - 0.8379846811294556, - 0.796858012676239, - 0.7624214887619019, - 0.735614538192749, - 0.7171682715415955, - 1.3670759201049805, - 1.40024995803833, - 1.4236550331115723, - 1.4366530179977417, - 1.4388891458511353, - 1.430302619934082, - 1.4111273288726807, - 1.3818867206573486, - 1.3433781862258911, - 1.29665207862854, - 1.2429832220077515, - 1.1838352680206299, - 1.1208217144012451, - 1.0556615591049194, - 0.9901320338249207, - 0.9260206818580627, - 0.8650762438774109, - 0.8089611530303955, - 0.7592060565948486, - 0.7171682715415955, - 1.3670759201049805, - 1.4197663068771362, - 1.4621555805206299, - 1.4930872917175293, - 1.5117179155349731, - 1.517539143562317, - 1.5103923082351685, - 1.4904723167419434, - 1.458322525024414, - 1.4148197174072266, - 1.3611507415771484, - 1.2987794876098633, - 1.2294073104858398, - 1.1549265384674072, - 1.0773687362670898, - 0.9988494515419006, - 0.9215105175971985, - 0.8474615812301636, - 0.7787225246429443, - 0.7171682715415955, - 1.3670759201049805, - 1.4330925941467285, - 1.4884445667266846, - 1.5316221714019775, - 1.5614473819732666, - 1.5771067142486572, - 1.5781731605529785, - 1.564617395401001, - 1.5368094444274902, - 1.4955075979232788, - 1.4418387413024902, - 1.377266526222229, - 1.3035523891448975, - 1.2227072715759277, - 1.1369361877441406, - 1.0485788583755493, - 0.960045337677002, - 0.8737506866455078, - 0.7920488119125366, - 0.7171682119369507, - 1.3670759201049805, - 1.4387847185134888, - 1.49967360496521, - 1.548081636428833, - 1.5826884508132935, - 1.6025500297546387, - 1.6071245670318604, - 1.5962872505187988, - 1.5703338384628296, - 1.5299720764160156, - 1.476303219795227, - 1.4107909202575684, - 1.3352222442626953, - 1.2516586780548096, - 1.162379503250122, - 1.0698199272155762, - 0.9765048623085022, - 0.8849796652793884, - 0.7977409362792969, - 0.7171682119369507, - 1.3670759201049805, - 1.4362258911132812, - 1.4946255683898926, - 1.5406821966171265, - 1.5731394290924072, - 1.5911118984222412, - 1.594109296798706, - 1.58204984664917, - 1.555262804031372, - 1.5144784450531006, - 1.4608094692230225, - 1.3957198858261108, - 1.320984959602356, - 1.2386434078216553, - 1.1509413719177246, - 1.06027090549469, - 0.9691054224967957, - 0.879931628704071, - 0.7951819896697998, - 0.7171682119369507, - 1.3670759201049805, - 1.425693154335022, - 1.4738476276397705, - 1.5102256536483765, - 1.5338350534439087, - 1.5440318584442139, - 1.540537714958191, - 1.5234483480453491, - 1.4932295083999634, - 1.4507055282592773, - 1.3970365524291992, - 1.3336865901947021, - 1.2623833417892456, - 1.1850719451904297, - 1.1038613319396973, - 1.0209665298461914, - 0.9386488199234009, - 0.859153687953949, - 0.7846493721008301, - 0.7171682119369507, - 1.3670759201049805, - 1.4083281755447388, - 1.4395912885665894, - 1.460012435913086, - 1.4690346717834473, - 1.4664117097854614, - 1.452215313911438, - 1.426832675933838, - 1.390956163406372, - 1.3455642461776733, - 1.2918953895568848, - 1.2314132452011108, - 1.165767788887024, - 1.0967495441436768, - 1.0262413024902344, - 0.95616614818573, - 0.8884356021881104, - 0.8248973488807678, - 0.7672843933105469, - 0.7171682715415955, - 1.3670759201049805, - 1.3860125541687012, - 1.39556884765625, - 1.3954838514328003, - 1.3857601881027222, - 1.3666629791259766, - 1.3387130498886108, - 1.3026729822158813, - 1.2595257759094238, - 1.2104482650756836, - 1.1567792892456055, - 1.0999828577041626, - 1.0416079759597778, - 0.9832472205162048, - 0.92649245262146, - 0.8728917241096497, - 0.8239071369171143, - 0.7808748483657837, - 0.7449687719345093, - 0.7171682715415955, - 1.3670759201049805, - 1.3611646890640259, - 1.346550703048706, - 1.3236327171325684, - 1.293035864830017, - 1.2555947303771973, - 1.21233069896698, - 1.1644237041473389, - 1.1131807565689087, - 1.0599994659423828, - 1.0063304901123047, - 0.9536378383636475, - 0.9033588171005249, - 0.856864869594574, - 0.8154242634773254, - 0.7801674008369446, - 0.7520560026168823, - 0.7318568229675293, - 0.7201208472251892, - 0.7171682715415955, - 1.3670759201049805, - 1.3364770412445068, - 1.2978489398956299, - 1.2522451877593994, - 1.2009098529815674, - 1.1452431678771973, - 1.0867637395858765, - 1.0270664691925049, - 0.9677798748016357, - 0.9105212092399597, - 0.8568522930145264, - 0.8082369565963745, - 0.7660014629364014, - 0.7312978506088257, - 0.7050726413726807, - 0.6880413293838501, - 0.6806683540344238, - 0.6831549406051636, - 0.6954332590103149, - 0.7171682715415955, - 1.3670759201049805, - 1.3146250247955322, - 1.2547409534454346, - 1.1890571117401123, - 1.1193652153015137, - 1.047566533088684, - 0.9756191968917847, - 0.9054858684539795, - 0.8390796780586243, - 0.7782119512557983, - 0.7245429754257202, - 0.6795368194580078, - 0.6444209218025208, - 0.6201533079147339, - 0.6073959469795227, - 0.6064968109130859, - 0.6174803376197815, - 0.6400469541549683, - 0.6735812425613403, - 0.7171682715415955, - 1.36707603931427, - 1.2979766130447388, - 1.2218981981277466, - 1.1409159898757935, - 1.0572389364242554, - 0.9731495380401611, - 0.8909415006637573, - 0.8128572106361389, - 0.741026759147644, - 0.6774094104766846, - 0.6237404346466064, - 0.5814838409423828, - 0.5517922639846802, - 0.5354756116867065, - 0.532978892326355, - 0.5443703532218933, - 0.5693391561508179, - 0.6072043180465698, - 0.6569328308105469, - 0.7171683311462402, - 1.36707603931427, - 1.288335919380188, - 1.202879786491394, - 1.1130385398864746, - 1.0212630033493042, - 0.9300563335418701, - 0.8419065475463867, - 0.759218156337738, - 0.6842466592788696, - 0.6190370321273804, - 0.5653680562973022, - 0.5247037410736084, - 0.4981532096862793, - 0.4864407181739807, - 0.48988574743270874, - 0.5083944797515869, - 0.5414617657661438, - 0.5881858468055725, - 0.6472921371459961, - 0.7171683311462402, - 1.36707603931427, - 1.286747694015503, - 1.1997466087341309, - 1.1084458827972412, - 1.015336036682129, - 0.9229569435119629, - 0.833828330039978, - 0.7503814101219177, - 0.6748924255371094, - 0.6094204783439636, - 0.5557515621185303, - 0.5153494477272034, - 0.489316463470459, - 0.478362500667572, - 0.4827864170074463, - 0.5024675726890564, - 0.5368691086769104, - 0.5850526690483093, - 0.6457038521766663, - 0.7171683311462402, - 1.36707603931427, - 1.2933839559555054, - 1.2128381729125977, - 1.1276355981826782, - 1.0401004552841187, - 0.9526205658912659, - 0.8675819635391235, - 0.7873044013977051, - 0.713977575302124, - 0.6496016979217529, - 0.5959327220916748, - 0.5544346570968628, - 0.5262394547462463, - 0.5121161341667175, - 0.5124500393867493, - 0.5272319912910461, - 0.5560588240623474, - 0.5981441736221313, - 0.6523401141166687, - 0.7171683311462402, - 1.3670759201049805, - 1.307525634765625, - 1.2407357692718506, - 1.1685281991958618, - 1.0928726196289062, - 1.015832781791687, - 0.9395099878311157, - 0.865986168384552, - 0.7972669005393982, - 0.7352266311645508, - 0.6815577149391174, - 0.6377240419387817, - 0.6049212217330933, - 0.5840440988540649, - 0.5756622552871704, - 0.5800042152404785, - 0.5969514846801758, - 0.6260418891906738, - 0.6664818525314331, - 0.7171683311462402, - 1.3670759201049805, - 1.3276402950286865, - 1.2804163694381714, - 1.2266924381256104, - 1.1679339408874512, - 1.1057435274124146, - 1.0418177843093872, - 0.9779002666473389, - 0.915734589099884, - 0.8570164442062378, - 0.8033474683761597, - 0.7561916708946228, - 0.7168353199958801, - 0.6863518953323364, - 0.665573000907898, - 0.6550654172897339, - 0.6551156044006348, - 0.6657224893569946, - 0.6865964531898499, - 0.7171682715415955, - 1.3670759201049805, - 1.351548194885254, - 1.3275799751281738, - 1.2958252429962158, - 1.2571501731872559, - 1.2126096487045288, - 1.1634186506271362, - 1.1109191179275513, - 1.0565428733825684, - 1.0017732381820679, - 0.9481043219566345, - 0.8969999551773071, - 0.8498541116714478, - 0.8079528212547302, - 0.7724391222000122, - 0.7442816495895386, - 0.7242484092712402, - 0.7128859758377075, - 0.7105042934417725, - 0.7171682715415955, - 1.3670759201049805, - 1.376658320426941, - 1.3771154880523682, - 1.3684347867965698, - 1.3508532047271729, - 1.3248502016067505, - 1.2911351919174194, - 1.2506276369094849, - 1.204432725906372, - 1.1538102626800537, - 1.1001412868499756, - 1.0448898077011108, - 0.9895627498626709, - 0.9356693625450134, - 0.8846797347068787, - 0.8379847407341003, - 0.7968580722808838, - 0.7624214887619019, - 0.735614538192749, - 0.7171682715415955 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -2.1490721702575684, - -2.178630828857422, - -2.219780445098877, - -2.2713985443115234, - -2.3320770263671875, - -2.400160789489746, - -2.473792791366577, - -2.550964593887329, - -2.629570960998535, - -2.707467794418335, - -2.7825300693511963, - -2.852710723876953, - -2.91609525680542, - -2.970954418182373, - -3.015791893005371, - -3.049384832382202, - -3.070816993713379, - -3.079503297805786, - -3.075207233428955, - -3.0580458641052246, - -2.1490721702575684, - -2.1773650646209717, - -2.2172834873199463, - -2.2677383422851562, - -2.3273537158966064, - -2.394503116607666, - -2.467355251312256, - -2.5439224243164062, - -2.6221163272857666, - -2.6998040676116943, - -2.7748665809631348, - -2.8452560901641846, - -2.909052848815918, - -2.9645166397094727, - -3.010134220123291, - -3.0446617603302, - -3.067157030105591, - -3.0770063400268555, - -3.073941469192505, - -3.0580458641052246, - -2.1490721702575684, - -2.1737051010131836, - -2.2100634574890137, - -2.257155179977417, - -2.3136959075927734, - -2.378143310546875, - -2.448739767074585, - -2.523559093475342, - -2.600560426712036, - -2.6776437759399414, - -2.752706289291382, - -2.823700428009033, - -2.8886895179748535, - -2.9459011554718018, - -2.9937744140625, - -3.031003952026367, - -3.0565736293792725, - -3.069786310195923, - -3.070281505584717, - -3.0580458641052246, - -2.1490721702575684, - -2.1680474281311035, - -2.1989023685455322, - -2.240795373916626, - -2.292583465576172, - -2.3528542518615723, - -2.4199635982513428, - -2.4920809268951416, - -2.567239284515381, - -2.643388032913208, - -2.7184505462646484, - -2.790379047393799, - -2.8572115898132324, - -2.9171252250671387, - -2.9684853553771973, - -3.0098915100097656, - -3.0402138233184814, - -3.0586254596710205, - -3.064624071121216, - -3.0580458641052246, - -2.1490721702575684, - -2.1610052585601807, - -2.1850101947784424, - -2.2204320430755615, - -2.2663044929504395, - -2.321376323699951, - -2.384145498275757, - -2.452899694442749, - -2.525763511657715, - -2.6007492542266846, - -2.675811767578125, - -2.748903274536133, - -2.81803035736084, - -2.8813071250915527, - -2.937007427215576, - -2.983612537384033, - -3.019850492477417, - -3.0447332859039307, - -3.057581901550293, - -3.0580458641052246, - -2.1490721702575684, - -2.153341770172119, - -2.1698920726776123, - -2.1982717514038086, - -2.237706422805786, - -2.287120819091797, - -2.3451666831970215, - -2.4102609157562256, - -2.4806277751922607, - -2.5543477535247803, - -2.6294102668762207, - -2.7037675380706787, - -2.7753913402557373, - -2.8423280715942383, - -2.902751922607422, - -2.95501446723938, - -2.997690200805664, - -3.0296149253845215, - -3.0499181747436523, - -3.0580458641052246, - -2.1490721702575684, - -2.1458871364593506, - -2.155186176300049, - -2.176715850830078, - -2.209888458251953, - -2.2537994384765625, - -2.3072509765625, - -2.3687849044799805, - -2.436722993850708, - -2.509212017059326, - -2.5842745304107666, - -2.659862995147705, - -2.7339155673980713, - -2.804412364959717, - -2.8694305419921875, - -2.927196502685547, - -2.9761343002319336, - -3.014909267425537, - -3.042463541030884, - -3.0580458641052246, - -2.1490721702575684, - -2.1394495964050293, - -2.142486572265625, - -2.1581003665924072, - -2.1858651638031006, - -2.2250235080718994, - -2.2745072841644287, - -2.3329668045043945, - -2.3988075256347656, - -2.470233201980591, - -2.545295476913452, - -2.6219472885131836, - -2.6980974674224854, - -2.7716689109802246, - -2.8406546115875244, - -2.9031729698181152, - -2.9575188159942627, - -3.002209424972534, - -3.0360260009765625, - -3.0580458641052246, - -2.1490721702575684, - -2.1347262859344482, - -2.133168935775757, - -2.144442558288574, - -2.1682395935058594, - -2.203911066055298, - -2.250483989715576, - -2.306687831878662, - -2.3709895610809326, - -2.4416351318359375, - -2.516697406768799, - -2.5941293239593506, - -2.671818256378174, - -2.747645378112793, - -2.819542169570923, - -2.885547637939453, - -2.9438610076904297, - -2.992891788482666, - -3.0313026905059814, - -3.0580458641052246, - -2.1490721702575684, - -2.1322293281555176, - -2.1282432079315186, - -2.1372222900390625, - -2.158921957015991, - -2.1927502155303955, - -2.2377841472625732, - -2.292795419692993, - -2.356283664703369, - -2.4265167713165283, - -2.5015792846679688, - -2.579423427581787, - -2.657926082611084, - -2.73494553565979, - -2.8083813190460205, - -2.876230001449585, - -2.936640739440918, - -2.9879660606384277, - -3.028805732727051, - -3.0580458641052246, - -2.1490721702575684, - -2.1322293281555176, - -2.1282432079315186, - -2.1372222900390625, - -2.158921957015991, - -2.1927502155303955, - -2.2377841472625732, - -2.292795419692993, - -2.356283664703369, - -2.4265167713165283, - -2.5015792846679688, - -2.579423427581787, - -2.657926082611084, - -2.73494553565979, - -2.8083813190460205, - -2.876230001449585, - -2.936640739440918, - -2.9879660606384277, - -3.028805732727051, - -3.0580458641052246, - -2.1490721702575684, - -2.1347262859344482, - -2.133168935775757, - -2.144442558288574, - -2.1682395935058594, - -2.203911066055298, - -2.250483989715576, - -2.306687831878662, - -2.3709895610809326, - -2.4416351318359375, - -2.516697406768799, - -2.5941293239593506, - -2.671818256378174, - -2.747645378112793, - -2.819542169570923, - -2.885547637939453, - -2.9438610076904297, - -2.992891788482666, - -3.0313026905059814, - -3.0580458641052246, - -2.1490721702575684, - -2.1394495964050293, - -2.142486572265625, - -2.1581003665924072, - -2.1858651638031006, - -2.2250235080718994, - -2.2745072841644287, - -2.3329668045043945, - -2.3988075256347656, - -2.4702329635620117, - -2.545295476913452, - -2.6219472885131836, - -2.6980974674224854, - -2.7716689109802246, - -2.8406546115875244, - -2.9031729698181152, - -2.9575188159942627, - -3.002209424972534, - -3.0360260009765625, - -3.0580458641052246, - -2.1490721702575684, - -2.1458871364593506, - -2.155186176300049, - -2.176715850830078, - -2.209888458251953, - -2.2537994384765625, - -2.3072509765625, - -2.3687851428985596, - -2.436722993850708, - -2.509212017059326, - -2.5842745304107666, - -2.659862995147705, - -2.7339155673980713, - -2.804412364959717, - -2.8694305419921875, - -2.927196502685547, - -2.9761343002319336, - -3.014909267425537, - -3.042463541030884, - -3.0580458641052246, - -2.1490721702575684, - -2.153341770172119, - -2.1698920726776123, - -2.1982717514038086, - -2.237706422805786, - -2.287120819091797, - -2.3451666831970215, - -2.4102606773376465, - -2.4806275367736816, - -2.5543477535247803, - -2.6294102668762207, - -2.7037675380706787, - -2.7753913402557373, - -2.8423280715942383, - -2.902751922607422, - -2.95501446723938, - -2.997690200805664, - -3.0296149253845215, - -3.0499181747436523, - -3.0580458641052246, - -2.1490721702575684, - -2.1610052585601807, - -2.1850101947784424, - -2.2204320430755615, - -2.2663044929504395, - -2.321376323699951, - -2.384145498275757, - -2.452899694442749, - -2.5257632732391357, - -2.6007492542266846, - -2.675811529159546, - -2.748903274536133, - -2.8180301189422607, - -2.8813068866729736, - -2.937007427215576, - -2.983612298965454, - -3.019850492477417, - -3.0447330474853516, - -3.057581901550293, - -3.0580458641052246, - -2.1490721702575684, - -2.1680474281311035, - -2.1989023685455322, - -2.240795373916626, - -2.292583465576172, - -2.3528542518615723, - -2.4199635982513428, - -2.4920809268951416, - -2.567239284515381, - -2.643388032913208, - -2.7184505462646484, - -2.790379047393799, - -2.8572115898132324, - -2.9171252250671387, - -2.9684853553771973, - -3.0098915100097656, - -3.0402138233184814, - -3.0586254596710205, - -3.064624071121216, - -3.0580458641052246, - -2.1490721702575684, - -2.1737051010131836, - -2.2100634574890137, - -2.257155179977417, - -2.3136959075927734, - -2.378143548965454, - -2.448739767074585, - -2.523559093475342, - -2.600560426712036, - -2.6776437759399414, - -2.752706289291382, - -2.823700428009033, - -2.8886895179748535, - -2.9459011554718018, - -2.993774652481079, - -3.031003952026367, - -3.0565736293792725, - -3.069786310195923, - -3.070281505584717, - -3.0580458641052246, - -2.1490721702575684, - -2.1773650646209717, - -2.2172834873199463, - -2.2677385807037354, - -2.3273537158966064, - -2.394503116607666, - -2.467355251312256, - -2.5439224243164062, - -2.6221163272857666, - -2.6998040676116943, - -2.7748665809631348, - -2.8452563285827637, - -2.909052848815918, - -2.9645166397094727, - -3.010134220123291, - -3.0446617603302, - -3.067157030105591, - -3.0770065784454346, - -3.073941469192505, - -3.0580458641052246, - -2.1490721702575684, - -2.178630828857422, - -2.219780445098877, - -2.2713985443115234, - -2.3320770263671875, - -2.400160789489746, - -2.473792791366577, - -2.550964593887329, - -2.629570960998535, - -2.707467794418335, - -2.7825300693511963, - -2.852710723876953, - -2.91609525680542, - -2.970954418182373, - -3.015791893005371, - -3.049384832382202, - -3.070816993713379, - -3.079503297805786, - -3.075207233428955, - -3.0580458641052246 - ], - "y": [ - 2.1253769397735596, - 2.1350274085998535, - 2.1341001987457275, - 2.1226210594177246, - 2.100902557373047, - 2.06953763961792, - 2.029381513595581, - 1.9815294742584229, - 1.9272871017456055, - 1.8681339025497437, - 1.8056832551956177, - 1.7416387796401978, - 1.6777474880218506, - 1.6157519817352295, - 1.557343602180481, - 1.504115343093872, - 1.4575191736221313, - 1.4188262224197388, - 1.3890918493270874, - 1.3691271543502808, - 2.1253769397735596, - 2.1088318824768066, - 2.0824239253997803, - 2.0468733310699463, - 2.0031497478485107, - 1.9524461030960083, - 1.896145224571228, - 1.8357830047607422, - 1.773005723953247, - 1.7095261812210083, - 1.6470755338668823, - 1.587357521057129, - 1.5320008993148804, - 1.482515811920166, - 1.4402520656585693, - 1.406362533569336, - 1.381771445274353, - 1.367149829864502, - 1.36289644241333, - 1.3691271543502808, - 2.1253769397735596, - 2.0838704109191895, - 2.03318190574646, - 1.974694013595581, - 1.9100021123886108, - 1.8408708572387695, - 1.7691857814788818, - 1.6969025135040283, - 1.6259925365447998, - 1.5583902597427368, - 1.4959397315979004, - 1.440344214439392, - 1.3931204080581665, - 1.3555563688278198, - 1.3286768198013306, - 1.3132147789001465, - 1.3095922470092773, - 1.3179079294204712, - 1.337934970855713, - 1.3691271543502808, - 2.1253769397735596, - 2.0628480911254883, - 1.9917106628417969, - 1.9139050245285034, - 1.8315534591674805, - 1.7469024658203125, - 1.6622610092163086, - 1.5799378156661987, - 1.5021785497665405, - 1.431104302406311, - 1.368653655052185, - 1.3165302276611328, - 1.276155710220337, - 1.2486315965652466, - 1.2347084283828735, - 1.2347662448883057, - 1.2488031387329102, - 1.2764365673065186, - 1.3169126510620117, - 1.3691271543502808, - 2.1253769397735596, - 2.0480427742004395, - 1.9625039100646973, - 1.871093511581421, - 1.776305079460144, - 1.6807241439819336, - 1.5869579315185547, - 1.4975640773773193, - 1.4149810075759888, - 1.3414615392684937, - 1.2790110111236572, - 1.229332685470581, - 1.1937819719314575, - 1.1733283996582031, - 1.1685301065444946, - 1.1795177459716797, - 1.2059917449951172, - 1.247229814529419, - 1.302107334136963, - 1.3691271543502808, - 2.1253769397735596, - 2.0410590171813965, - 1.9487268924713135, - 1.8508989810943604, - 1.750243902206421, - 1.6495072841644287, - 1.5514366626739502, - 1.458707571029663, - 1.3738491535186768, - 1.2991762161254883, - 1.2367255687713623, - 1.1882009506225586, - 1.1549255847930908, - 1.1378073692321777, - 1.1373131275177002, - 1.1534565687179565, - 1.1857972145080566, - 1.2334527969360352, - 1.29512357711792, - 1.3691271543502808, - 2.1253769397735596, - 2.0426535606384277, - 1.9518723487854004, - 1.8555097579956055, - 1.7561941146850586, - 1.6566345691680908, - 1.5595468282699585, - 1.4675791263580322, - 1.3832402229309082, - 1.3088306188583374, - 1.246380090713501, - 1.1975919008255005, - 1.16379714012146, - 1.1459174156188965, - 1.1444404125213623, - 1.1594066619873047, - 1.1904079914093018, - 1.236598253250122, - 1.2967181205749512, - 1.3691271543502808, - 2.1253769397735596, - 2.0526535511016846, - 1.9715995788574219, - 1.8844261169433594, - 1.7935107946395874, - 1.70133376121521, - 1.6104092597961426, - 1.5232173204421997, - 1.442136526107788, - 1.3693785667419434, - 1.3069279193878174, - 1.2564882040023804, - 1.219435214996338, - 1.196779727935791, - 1.189139723777771, - 1.196723461151123, - 1.2193243503570557, - 1.256325602531433, - 1.306718111038208, - 1.3691271543502808, - 2.1253769397735596, - 2.0699753761291504, - 2.0057709217071533, - 1.9345145225524902, - 1.8581502437591553, - 1.7787610292434692, - 1.6985121965408325, - 1.6195929050445557, - 1.5441558361053467, - 1.4742586612701416, - 1.4118080139160156, - 1.358507513999939, - 1.3158107995986938, - 1.2848827838897705, - 1.2665669918060303, - 1.2613630294799805, - 1.2694127559661865, - 1.290496826171875, - 1.3240399360656738, - 1.3691271543502808, - 2.1253769397735596, - 2.0927419662475586, - 2.05068302154541, - 2.000347375869751, - 1.9431078433990479, - 1.880525827407837, - 1.814308524131775, - 1.7462620735168457, - 1.678242564201355, - 1.6121056079864502, - 1.5496549606323242, - 1.4925942420959473, - 1.4424799680709839, - 1.400679111480713, - 1.3683319091796875, - 1.3463205099105835, - 1.3352454900741577, - 1.3354090452194214, - 1.346806526184082, - 1.3691271543502808, - 2.1253769397735596, - 2.118486166000366, - 2.1014692783355713, - 2.0747902393341064, - 2.0391769409179688, - 1.9956004619598389, - 1.9452497959136963, - 1.889498233795166, - 1.829866647720337, - 1.7679814100265503, - 1.7055308818817139, - 1.6442183256149292, - 1.5857162475585938, - 1.5316203832626343, - 1.4834065437316895, - 1.4423896074295044, - 1.4096884727478027, - 1.3861953020095825, - 1.3725507259368896, - 1.3691271543502808, - 2.1253769397735596, - 2.144418239593506, - 2.1526260375976562, - 2.1497764587402344, - 2.1359469890594482, - 2.1115148067474365, - 2.077146530151367, - 2.0337796211242676, - 1.98259699344635, - 1.924994707107544, - 1.862544059753418, - 1.7969486713409424, - 1.7299975156784058, - 1.6635171175003052, - 1.599320888519287, - 1.5391596555709839, - 1.4846746921539307, - 1.437352180480957, - 1.3984827995300293, - 1.3691271543502808, - 2.1253767013549805, - 2.1677281856536865, - 2.1986098289489746, - 2.217179775238037, - 2.222931385040283, - 2.215707540512085, - 2.1957056522369385, - 2.163470983505249, - 2.1198830604553223, - 2.0661306381225586, - 2.0036799907684326, - 1.934234619140625, - 1.8596889972686768, - 1.7820762395858765, - 1.703513741493225, - 1.6261441707611084, - 1.552078127861023, - 1.4833359718322754, - 1.42179274559021, - 1.3691271543502808, - 2.1253767013549805, - 2.185889720916748, - 2.2344377040863037, - 2.2696964740753174, - 2.2907042503356934, - 2.2968881130218506, - 2.2880795001983643, - 2.2645184993743896, - 2.2268476486206055, - 2.1760947704315186, - 2.1136441230773926, - 2.041199207305908, - 1.9607363939285278, - 1.8744500875473022, - 1.7846943140029907, - 1.6939170360565186, - 1.6045945882797241, - 1.5191636085510254, - 1.4399542808532715, - 1.3691271543502808, - 2.1253767013549805, - 2.196934938430786, - 2.2562265396118164, - 2.3016350269317627, - 2.331921100616455, - 2.346259117126465, - 2.3442578315734863, - 2.3259716033935547, - 2.2918994426727295, - 2.2429707050323486, - 2.1805200576782227, - 2.1062512397766113, - 2.0221896171569824, - 1.9306284189224243, - 1.8340651988983154, - 1.7351340055465698, - 1.636533260345459, - 1.5409526824951172, - 1.45099937915802, - 1.3691271543502808, - 2.1253767013549805, - 2.199666738510132, - 2.2616159915924072, - 2.3095345497131348, - 2.342115879058838, - 2.3584704399108887, - 2.3581528663635254, - 2.3411712646484375, - 2.3079893589019775, - 2.259511947631836, - 2.19706130027771, - 2.1223411560058594, - 2.0373892784118652, - 1.9445234537124634, - 1.8462766408920288, - 1.7453285455703735, - 1.6444329023361206, - 1.546341896057129, - 1.4537312984466553, - 1.3691271543502808, - 2.1253767013549805, - 2.19378924369812, - 2.250021457672119, - 2.292539358139038, - 2.320183277130127, - 2.3321988582611084, - 2.328258991241455, - 2.3084704875946045, - 2.273373603820801, - 2.2239253520965576, - 2.1614747047424316, - 2.0877251625061035, - 2.0046885013580322, - 1.914629578590393, - 1.8200050592422485, - 1.7233959436416626, - 1.6274374723434448, - 1.5347473621368408, - 1.4478538036346436, - 1.3691271543502808, - 2.1253767013549805, - 2.1799395084381104, - 2.2226996421813965, - 2.252490520477295, - 2.2685000896453857, - 2.270291328430176, - 2.257815361022949, - 2.231412649154663, - 2.191803216934204, - 2.1400675773620605, - 2.0776169300079346, - 2.006155014038086, - 1.9276305437088013, - 1.8441859483718872, - 1.7580974102020264, - 1.671712875366211, - 1.5873888731002808, - 1.5074255466461182, - 1.4340040683746338, - 1.3691271543502808, - 2.1253767013549805, - 2.1596181392669678, - 2.1826109886169434, - 2.193728446960449, - 2.192667245864868, - 2.1794562339782715, - 2.1544559001922607, - 2.1183481216430664, - 2.072117805480957, - 2.017025947570801, - 1.9545751810073853, - 1.8864693641662598, - 1.8145660161972046, - 1.7408266067504883, - 1.667262315750122, - 1.5958800315856934, - 1.5286266803741455, - 1.4673370122909546, - 1.4136825799942017, - 1.3691271543502808, - 2.1253769397735596, - 2.1350271701812744, - 2.1341001987457275, - 2.1226208209991455, - 2.100902557373047, - 2.069537401199341, - 2.029381275177002, - 1.9815294742584229, - 1.9272871017456055, - 1.868133783340454, - 1.8056832551956177, - 1.7416387796401978, - 1.677747368812561, - 1.6157519817352295, - 1.5573434829711914, - 1.5041152238845825, - 1.4575190544128418, - 1.4188261032104492, - 1.3890917301177979, - 1.3691271543502808 - ], - "z": [ - 1.5475246906280518, - 1.5566604137420654, - 1.5557827949523926, - 1.544915795326233, - 1.5243558883666992, - 1.494663953781128, - 1.4566497802734375, - 1.4113502502441406, - 1.3600012063980103, - 1.3040032386779785, - 1.2448837757110596, - 1.1842554807662964, - 1.123772144317627, - 1.0650835037231445, - 1.0097906589508057, - 0.9594016075134277, - 0.9152909517288208, - 0.8786618709564209, - 0.8505135178565979, - 0.8316137790679932, - 1.5475246906280518, - 1.5827248096466064, - 1.6072006225585938, - 1.6202845573425293, - 1.621619701385498, - 1.611169695854187, - 1.5892194509506226, - 1.5563678741455078, - 1.5135109424591064, - 1.4618176221847534, - 1.4026981592178345, - 1.3377652168273926, - 1.2687897682189941, - 1.1976532936096191, - 1.1262964010238647, - 1.0566654205322266, - 0.9906597137451172, - 0.9300796985626221, - 0.8765779733657837, - 0.8316137790679932, - 1.5475246906280518, - 1.6044456958770752, - 1.6500499248504639, - 1.683093547821045, - 1.7026749849319458, - 1.7082602977752686, - 1.6996970176696777, - 1.6772189140319824, - 1.6414388418197632, - 1.5933330059051514, - 1.5342135429382324, - 1.4656931161880493, - 1.3896406888961792, - 1.3081308603286743, - 1.2233870029449463, - 1.1377207040786743, - 1.0534685850143433, - 0.972929060459137, - 0.8982988595962524, - 0.8316137790679932, - 1.5475246906280518, - 1.6194692850112915, - 1.679687261581421, - 1.7265362739562988, - 1.7587380409240723, - 1.7754144668579102, - 1.7761104106903076, - 1.7608072757720947, - 1.7299220561981201, - 1.6842975616455078, - 1.6251780986785889, - 1.5541763305664062, - 1.4732290506362915, - 1.3845443725585938, - 1.290541172027588, - 1.1937837600708008, - 1.0969113111495972, - 1.0025663375854492, - 0.9133224487304688, - 0.8316137790679932, - 1.5475246906280518, - 1.6261675357818604, - 1.6929011344909668, - 1.7459049224853516, - 1.783733606338501, - 1.8053549528121948, - 1.8101792335510254, - 1.7980749607086182, - 1.7693721055984497, - 1.724853754043579, - 1.6657344102859497, - 1.5936263799667358, - 1.510496735572815, - 1.418613076210022, - 1.3204816579818726, - 1.2187793254852295, - 1.1162800788879395, - 1.0157802104949951, - 0.9200206398963928, - 0.8316137790679932, - 1.5475246906280518, - 1.6238144636154175, - 1.688259243965149, - 1.7391010522842407, - 1.774953007698059, - 1.794837236404419, - 1.7982113361358643, - 1.7849833965301514, - 1.7555139064788818, - 1.7106070518493652, - 1.6514875888824463, - 1.579768180847168, - 1.4974051713943481, - 1.4066452980041504, - 1.3099640607833862, - 1.2099987268447876, - 1.109476089477539, - 1.0111383199691772, - 0.9176676273345947, - 0.8316137790679932, - 1.5475246906280518, - 1.6126652956008911, - 1.6662648916244507, - 1.7068614959716797, - 1.7333478927612305, - 1.745001196861267, - 1.7415038347244263, - 1.7229511737823486, - 1.6898491382598877, - 1.6431009769439697, - 1.5839815139770508, - 1.5141034126281738, - 1.435373067855835, - 1.3499376773834229, - 1.2601280212402344, - 1.168393611907959, - 1.0772366523742676, - 0.9891440272331238, - 0.9065184593200684, - 0.8316137790679932, - 1.5475246906280518, - 1.5939280986785889, - 1.6293015480041504, - 1.6526802778244019, - 1.6634265184402466, - 1.6612472534179688, - 1.646201729774475, - 1.6187005043029785, - 1.579493761062622, - 1.5296509265899658, - 1.4705314636230469, - 1.4037480354309082, - 1.3311223983764648, - 1.2546356916427612, - 1.1763739585876465, - 1.098472237586975, - 1.0230553150177002, - 0.9521806240081787, - 0.8877811431884766, - 0.8316137790679932, - 1.5475246906280518, - 1.5696332454681396, - 1.5813745260238647, - 1.5824284553527832, - 1.5727663040161133, - 1.5526514053344727, - 1.5226325988769531, - 1.483528733253479, - 1.4364063739776611, - 1.3825509548187256, - 1.3234314918518066, - 1.2606606483459473, - 1.1959506273269653, - 1.1310664415359497, - 1.0677781105041504, - 1.0078120231628418, - 0.9528036117553711, - 0.9042536616325378, - 0.8634864091873169, - 0.8316137790679932, - 1.5475246906280518, - 1.5424134731292725, - 1.5276777744293213, - 1.5037190914154053, - 1.47119140625, - 1.4309817552566528, - 1.3841869831085205, - 1.3320835828781128, - 1.276092767715454, - 1.2177417278289795, - 1.1586222648620605, - 1.1003470420837402, - 1.0445054769515991, - 0.9926208257675171, - 0.9461085200309753, - 0.9062371253967285, - 0.8740942478179932, - 0.8505568504333496, - 0.8362666964530945, - 0.8316137790679932, - 1.5475246906280518, - 1.515218734741211, - 1.474029779434204, - 1.4250816106796265, - 1.3697092533111572, - 1.3094230890274048, - 1.2458677291870117, - 1.180776596069336, - 1.1159253120422363, - 1.053082823753357, - 0.9939634203910828, - 0.9401795864105225, - 0.8931984305381775, - 0.8543015122413635, - 0.8245498538017273, - 0.804754912853241, - 0.7954567670822144, - 0.7969089150428772, - 0.8090718984603882, - 0.8316137790679932, - 1.5475246906280518, - 1.4909956455230713, - 1.4262444972991943, - 1.3550374507904053, - 1.2793169021606445, - 1.201148271560669, - 1.1226637363433838, - 1.0460041761398315, - 0.973260760307312, - 0.906417727470398, - 0.847298264503479, - 0.7975150346755981, - 0.7584260702133179, - 0.7310974597930908, - 0.7162749171257019, - 0.7143625617027283, - 0.7254126071929932, - 0.7491235733032227, - 0.7848488092422485, - 0.8316137790679932, - 1.5475246906280518, - 1.4723694324493408, - 1.3895000219345093, - 1.3011770248413086, - 1.2098097801208496, - 1.1178903579711914, - 1.0279260873794556, - 0.9423710107803345, - 0.8635589480400085, - 0.7936395406723022, - 0.7345200777053833, - 0.6878132224082947, - 0.6547929048538208, - 0.6363599300384521, - 0.6330170035362244, - 0.6448554396629333, - 0.6715521812438965, - 0.7123790979385376, - 0.7662225961685181, - 0.8316137790679932, - 1.5475246906280518, - 1.4613583087921143, - 1.3677781820297241, - 1.2693370580673218, - 1.168720006942749, - 1.068671703338623, - 0.9719211459159851, - 0.8811074495315552, - 0.7987077832221985, - 0.7269698977470398, - 0.6678504347801208, - 0.6229620575904846, - 0.5935292840003967, - 0.5803549289703369, - 0.5837984085083008, - 0.6037656664848328, - 0.6397121548652649, - 0.6906573176383972, - 0.7552114725112915, - 0.8316137790679932, - 1.5475246906280518, - 1.4591556787490845, - 1.3634330034255981, - 1.262967824935913, - 1.160500407218933, - 1.058825969696045, - 0.9607179164886475, - 0.8688522577285767, - 0.785735011100769, - 0.7136332988739014, - 0.6545137763023376, - 0.6099892854690552, - 0.581274151802063, - 0.5691516995429993, - 0.5739527344703674, - 0.5955460667610168, - 0.6333428621292114, - 0.6863120794296265, - 0.7530088424682617, - 0.8316137790679932, - 1.5475246906280518, - 1.4660000801086426, - 1.3769351243972778, - 1.282759428024292, - 1.1860417127609253, - 1.0894200801849365, - 0.995530366897583, - 0.9069334268569946, - 0.8260461688041687, - 0.7550748586654663, - 0.6959553956985474, - 0.6503004431724548, - 0.619355320930481, - 0.6039641499519348, - 0.6045467853546143, - 0.6210873126983643, - 0.6531345248222351, - 0.6998142600059509, - 0.7598532438278198, - 0.8316137790679932, - 1.5475246906280518, - 1.4811499118804932, - 1.4068217277526855, - 1.32656729221344, - 1.2425758838653564, - 1.1571388244628906, - 1.072586178779602, - 0.9912245273590088, - 0.9152732491493225, - 0.8468040227890015, - 0.7876845598220825, - 0.7395275235176086, - 0.7036464214324951, - 0.6810199618339539, - 0.6722654700279236, - 0.6776216626167297, - 0.6969423890113831, - 0.7297008037567139, - 0.7750031352043152, - 0.8316137790679932, - 1.5475246906280518, - 1.5029635429382324, - 1.449853777885437, - 1.3896441459655762, - 1.323976993560791, - 1.2546435594558716, - 1.1835349798202515, - 1.1125911474227905, - 1.0437469482421875, - 0.9788804650306702, - 0.9197610020637512, - 0.8680012226104736, - 0.8250129818916321, - 0.791968822479248, - 0.7697702646255493, - 0.7590226531028748, - 0.7600192427635193, - 0.7727328538894653, - 0.7968167066574097, - 0.8316137790679932, - 1.5475246906280518, - 1.5290769338607788, - 1.5013682842254639, - 1.4651546478271484, - 1.4214236736297607, - 1.3713682889938354, - 1.3163540363311768, - 1.2578812837600708, - 1.1975451707839966, - 1.1369916200637817, - 1.0778721570968628, - 1.0217994451522827, - 0.9703031778335571, - 0.9247878193855286, - 0.886495053768158, - 0.8564693927764893, - 0.8355297446250916, - 0.824247419834137, - 0.822930097579956, - 0.8316137790679932, - 1.5475246906280518, - 1.5566604137420654, - 1.5557827949523926, - 1.544915795326233, - 1.5243560075759888, - 1.494663953781128, - 1.4566497802734375, - 1.4113503694534302, - 1.3600013256072998, - 1.304003357887268, - 1.2448838949203491, - 1.184255599975586, - 1.1237722635269165, - 1.065083622932434, - 1.0097907781600952, - 0.9594016671180725, - 0.9152909517288208, - 0.8786618709564209, - 0.8505135774612427, - 0.8316137790679932 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -2.352937936782837, - -2.3830726146698, - -2.4259259700775146, - -2.4803287982940674, - -2.544797420501709, - -2.6175730228424072, - -2.6966705322265625, - -2.779932737350464, - -2.8650879859924316, - -2.9498138427734375, - -3.031798839569092, - -3.108806848526001, - -3.1787374019622803, - -3.239682912826538, - -3.28998064994812, - -3.328258991241455, - -3.353473663330078, - -3.3649368286132812, - -3.3623361587524414, - -3.3457419872283936, - -2.352937936782837, - -2.3818068504333496, - -2.423428535461426, - -2.476668119430542, - -2.5400731563568115, - -2.6119141578674316, - -2.6902318000793457, - -2.7728891372680664, - -2.8576319217681885, - -2.9421486854553223, - -3.0241336822509766, - -3.101351022720337, - -3.171694040298462, - -3.233243942260742, - -3.2843220233917236, - -3.3235349655151367, - -3.3498129844665527, - -3.3624396324157715, - -3.361070156097412, - -3.3457419872283936, - -2.352937936782837, - -2.378146171569824, - -2.4162070751190186, - -2.466082811355591, - -2.5264127254486084, - -2.5955514907836914, - -2.6716127395629883, - -2.7525219917297363, - -2.8360722064971924, - -2.9199843406677246, - -3.001969337463379, - -3.0797910690307617, - -3.1513266563415527, - -3.2146248817443848, - -3.2679591178894043, - -3.3098745346069336, - -3.3392276763916016, - -3.3552181720733643, - -3.3574094772338867, - -3.3457419872283936, - -2.352937936782837, - -2.3724873065948486, - -2.4050440788269043, - -2.4497199058532715, - -2.505296468734741, - -2.5702576637268066, - -2.642831325531006, - -2.7210381031036377, - -2.8027446269989014, - -2.8857221603393555, - -2.9677071571350098, - -3.0464634895324707, - -3.119843006134033, - -3.1858437061309814, - -3.2426652908325195, - -3.2887582778930664, - -3.3228650093078613, - -3.34405517578125, - -3.3517508506774902, - -3.3457419872283936, - -2.352937936782837, - -2.3654439449310303, - -2.3911492824554443, - -2.4293527603149414, - -2.4790124893188477, - -2.538773775100708, - -2.607006549835205, - -2.681849479675293, - -2.761260986328125, - -2.8430752754211426, - -2.925060510635376, - -3.0049800872802734, - -3.0806541442871094, - -3.1500186920166016, - -3.211181640625, - -3.262474298477173, - -3.3024978637695312, - -3.33016037940979, - -3.3447072505950928, - -3.3457419872283936, - -2.352937936782837, - -2.357778787612915, - -2.376028299331665, - -2.4071884155273438, - -2.450409173965454, - -2.504511833190918, - -2.5680203437805176, - -2.63920259475708, - -2.7161169052124023, - -2.7966651916503906, - -2.878650188446045, - -2.9598357677459717, - -3.0380074977874756, - -3.111032724380493, - -3.176919460296631, - -3.2338709831237793, - -3.2803332805633545, - -3.3150393962860107, - -3.3370423316955566, - -3.3457419872283936, - -2.352937936782837, - -2.350322961807251, - -2.3613197803497314, - -2.3856284618377686, - -2.422585964202881, - -2.471184253692627, - -2.530097723007202, - -2.597719192504883, - -2.6722042560577393, - -2.751521110534668, - -2.8335061073303223, - -2.9159231185913086, - -2.996523857116699, - -3.0731098651885986, - -3.14359188079834, - -3.206047773361206, - -3.2587733268737793, - -3.300330638885498, - -3.3295862674713135, - -3.3457419872283936, - -2.352937936782837, - -2.343883991241455, - -2.3486175537109375, - -2.367009401321411, - -2.3985581398010254, - -2.4424028396606445, - -2.497347831726074, - -2.561894178390503, - -2.6342813968658447, - -2.7125349044799805, - -2.7945199012756348, - -2.878000259399414, - -2.9606990814208984, - -3.04036021232605, - -3.1148107051849365, - -3.1820197105407715, - -3.240154504776001, - -3.287628650665283, - -3.3231472969055176, - -3.3457419872283936, - -2.352937936782837, - -2.3391599655151367, - -2.3392982482910156, - -2.353349208831787, - -2.3809292316436768, - -2.4212865829467773, - -2.4733200073242188, - -2.5356101989746094, - -2.6064581871032715, - -2.683931350708008, - -2.765916585922241, - -2.85017728805542, - -2.934415102005005, - -3.0163321495056152, - -3.0936942100524902, - -3.164391040802002, - -3.226494073867798, - -3.2783093452453613, - -3.318423271179199, - -3.3457419872283936, - -2.352937936782837, - -2.336662530899048, - -2.334371566772461, - -2.346127510070801, - -2.371609926223755, - -2.410123586654663, - -2.460617780685425, - -2.5217154026031494, - -2.591749668121338, - -2.6688103675842285, - -2.750795602798462, - -2.8354687690734863, - -2.920520067214966, - -3.0036301612854004, - -3.082531213760376, - -3.15507173538208, - -3.2192726135253906, - -3.2733826637268066, - -3.3159258365631104, - -3.3457419872283936, - -2.352937936782837, - -2.336662530899048, - -2.334371566772461, - -2.346127510070801, - -2.371609926223755, - -2.410123586654663, - -2.460617780685425, - -2.5217154026031494, - -2.591749668121338, - -2.6688103675842285, - -2.750795602798462, - -2.8354687690734863, - -2.920520067214966, - -3.0036301612854004, - -3.082531213760376, - -3.15507173538208, - -3.2192726135253906, - -3.2733826637268066, - -3.3159258365631104, - -3.3457419872283936, - -2.352937936782837, - -2.3391599655151367, - -2.3392982482910156, - -2.353349208831787, - -2.3809292316436768, - -2.4212865829467773, - -2.4733200073242188, - -2.5356101989746094, - -2.6064581871032715, - -2.683931350708008, - -2.765916585922241, - -2.85017728805542, - -2.934415102005005, - -3.0163321495056152, - -3.0936942100524902, - -3.164391040802002, - -3.226494073867798, - -3.2783093452453613, - -3.318423271179199, - -3.3457419872283936, - -2.352937936782837, - -2.343883991241455, - -2.3486175537109375, - -2.367009401321411, - -2.3985581398010254, - -2.4424028396606445, - -2.497347831726074, - -2.561894178390503, - -2.6342813968658447, - -2.7125349044799805, - -2.7945199012756348, - -2.878000259399414, - -2.9606990814208984, - -3.04036021232605, - -3.1148107051849365, - -3.1820197105407715, - -3.240154504776001, - -3.287628650665283, - -3.3231472969055176, - -3.3457419872283936, - -2.352937936782837, - -2.350322961807251, - -2.3613197803497314, - -2.3856284618377686, - -2.422585964202881, - -2.471184253692627, - -2.530097723007202, - -2.597719192504883, - -2.6722042560577393, - -2.751521110534668, - -2.8335061073303223, - -2.9159231185913086, - -2.996523857116699, - -3.0731098651885986, - -3.143592119216919, - -3.206047773361206, - -3.2587733268737793, - -3.300330877304077, - -3.3295862674713135, - -3.3457419872283936, - -2.352937936782837, - -2.357778787612915, - -2.376028299331665, - -2.4071884155273438, - -2.450409173965454, - -2.504511833190918, - -2.5680203437805176, - -2.63920259475708, - -2.7161169052124023, - -2.7966651916503906, - -2.878650188446045, - -2.9598357677459717, - -3.0380074977874756, - -3.111032485961914, - -3.176919460296631, - -3.2338709831237793, - -3.2803332805633545, - -3.3150393962860107, - -3.3370423316955566, - -3.3457419872283936, - -2.352937936782837, - -2.3654439449310303, - -2.3911492824554443, - -2.4293527603149414, - -2.4790124893188477, - -2.538773775100708, - -2.607006549835205, - -2.681849479675293, - -2.761260986328125, - -2.8430752754211426, - -2.925060272216797, - -3.0049800872802734, - -3.0806541442871094, - -3.1500186920166016, - -3.211181640625, - -3.262474298477173, - -3.3024978637695312, - -3.33016037940979, - -3.3447072505950928, - -3.3457419872283936, - -2.352937936782837, - -2.3724873065948486, - -2.4050440788269043, - -2.4497199058532715, - -2.505296468734741, - -2.5702576637268066, - -2.642831325531006, - -2.7210381031036377, - -2.8027446269989014, - -2.8857221603393555, - -2.9677071571350098, - -3.0464634895324707, - -3.119843006134033, - -3.1858437061309814, - -3.2426652908325195, - -3.2887582778930664, - -3.3228650093078613, - -3.34405517578125, - -3.3517508506774902, - -3.3457419872283936, - -2.352937936782837, - -2.378146171569824, - -2.4162070751190186, - -2.466082811355591, - -2.5264129638671875, - -2.5955514907836914, - -2.6716127395629883, - -2.7525219917297363, - -2.8360722064971924, - -2.9199843406677246, - -3.001969337463379, - -3.0797910690307617, - -3.1513266563415527, - -3.214625120162964, - -3.2679591178894043, - -3.3098745346069336, - -3.3392279148101807, - -3.3552181720733643, - -3.3574094772338867, - -3.3457419872283936, - -2.352937936782837, - -2.3818068504333496, - -2.423428535461426, - -2.476668119430542, - -2.5400731563568115, - -2.6119141578674316, - -2.6902318000793457, - -2.7728891372680664, - -2.8576321601867676, - -2.9421486854553223, - -3.0241339206695557, - -3.101351022720337, - -3.171694040298462, - -3.233243942260742, - -3.2843220233917236, - -3.3235349655151367, - -3.3498129844665527, - -3.3624396324157715, - -3.361070156097412, - -3.3457419872283936, - -2.352937936782837, - -2.3830726146698, - -2.4259259700775146, - -2.4803287982940674, - -2.544797420501709, - -2.6175730228424072, - -2.6966705322265625, - -2.779932737350464, - -2.8650879859924316, - -2.9498138427734375, - -3.031798839569092, - -3.108806848526001, - -3.1787374019622803, - -3.239682912826538, - -3.28998064994812, - -3.328258991241455, - -3.353473663330078, - -3.3649368286132812, - -3.3623361587524414, - -3.3457419872283936 - ], - "y": [ - 2.3160462379455566, - 2.325223922729492, - 2.322885751724243, - 2.3090953826904297, - 2.284229278564453, - 2.248965263366699, - 2.204265832901001, - 2.1513500213623047, - 2.091660976409912, - 2.026827096939087, - 1.958617091178894, - 1.8888911008834839, - 1.8195514678955078, - 1.7524893283843994, - 1.689534068107605, - 1.6324028968811035, - 1.5826542377471924, - 1.5416451692581177, - 1.5104942321777344, - 1.4900511503219604, - 2.3160462379455566, - 2.2966864109039307, - 2.2665891647338867, - 2.2265753746032715, - 2.177736759185791, - 2.1214051246643066, - 2.059117555618286, - 1.9925726652145386, - 1.9235858917236328, - 1.8540388345718384, - 1.785828709602356, - 1.7208160161972046, - 1.6607741117477417, - 1.6073408126831055, - 1.5619738101959229, - 1.5259103775024414, - 1.5001342296600342, - 1.4853485822677612, - 1.4819567203521729, - 1.4900511503219604, - 2.3160464763641357, - 2.269636631011963, - 2.2132270336151123, - 2.1483569145202637, - 2.0767951011657715, - 2.0004942417144775, - 1.9215351343154907, - 1.842071771621704, - 1.764271855354309, - 1.6902573108673096, - 1.6220471858978271, - 1.5615019798278809, - 1.5102733373641968, - 1.4697585105895996, - 1.4410628080368042, - 1.424968957901001, - 1.4219156503677368, - 1.4319865703582764, - 1.4549068212509155, - 1.4900511503219604, - 2.3160464763641357, - 2.2470054626464844, - 2.1685822010040283, - 2.082915782928467, - 1.9923433065414429, - 1.8993350267410278, - 1.8064279556274414, - 1.7161566019058228, - 1.6309831142425537, - 1.5532307624816895, - 1.485020637512207, - 1.4282132387161255, - 1.3843580484390259, - 1.3546514511108398, - 1.3399035930633545, - 1.3405170440673828, - 1.356474757194519, - 1.3873417377471924, - 1.432275652885437, - 1.4900511503219604, - 2.3160464763641357, - 2.231245517730713, - 2.1374924182891846, - 2.037344217300415, - 1.93353271484375, - 1.8288898468017578, - 1.7262697219848633, - 1.6284717321395874, - 1.538163423538208, - 1.4578083753585815, - 1.3895982503890991, - 1.3353936672210693, - 1.29667329788208, - 1.2744932174682617, - 1.269458532333374, - 1.28170645236969, - 1.3109030723571777, - 1.356251835823059, - 1.416515827178955, - 1.4900511503219604, - 2.3160464763641357, - 2.224064826965332, - 2.1233267784118652, - 2.016580104827881, - 1.9067364931106567, - 1.7967925071716309, - 1.6897467374801636, - 1.5885193347930908, - 1.4958715438842773, - 1.4143303632736206, - 1.3461202383041382, - 1.2931017875671387, - 1.256720781326294, - 1.2379701137542725, - 1.2373610734939575, - 1.2549102306365967, - 1.2901389598846436, - 1.3420861959457397, - 1.4093351364135742, - 1.4900511503219604, - 2.3160464763641357, - 2.22624135017395, - 2.127620220184326, - 2.022873640060425, - 1.9148584604263306, - 1.8065210580825806, - 1.7008168697357178, - 1.6006288528442383, - 1.5086901187896729, - 1.4275084733963013, - 1.3592983484268188, - 1.3059203624725342, - 1.2688302993774414, - 1.2490402460098267, - 1.2470897436141968, - 1.2630321979522705, - 1.2964324951171875, - 1.3463797569274902, - 1.4115115404129028, - 1.4900511503219604, - 2.3160464763641357, - 2.237539052963257, - 2.1499078273773193, - 2.0555429458618164, - 1.9570183753967285, - 1.8570215702056885, - 1.7582803964614868, - 1.6634880304336548, - 1.5752302408218384, - 1.4959145784378052, - 1.4277044534683228, - 1.3724603652954102, - 1.331689476966858, - 1.3065037727355957, - 1.2975902557373047, - 1.305191993713379, - 1.329101800918579, - 1.3686673641204834, - 1.422809362411499, - 1.4900511503219604, - 2.3160464763641357, - 2.2567341327667236, - 2.187774181365967, - 2.1110477447509766, - 2.0286474227905273, - 1.9428213834762573, - 1.855910301208496, - 1.7702850103378296, - 1.6882812976837158, - 1.6121357679367065, - 1.5439256429672241, - 1.4855114221572876, - 1.4384865760803223, - 1.404133677482605, - 1.383389949798584, - 1.3768212795257568, - 1.3846065998077393, - 1.4065335988998413, - 1.4420043230056763, - 1.4900511503219604, - 2.3160464763641357, - 2.2817459106445312, - 2.2371158599853516, - 2.183372974395752, - 2.121983766555786, - 2.0546226501464844, - 1.9831268787384033, - 1.9094468355178833, - 1.835592269897461, - 1.7635776996612549, - 1.6953675746917725, - 1.6328223943710327, - 1.577648401260376, - 1.5313503742218018, - 1.4951913356781006, - 1.4701576232910156, - 1.4569319486618042, - 1.455875277519226, - 1.4670162200927734, - 1.4900511503219604, - 2.3160462379455566, - 2.3098645210266113, - 2.292585849761963, - 2.264681577682495, - 2.2269129753112793, - 2.1803102493286133, - 2.1261444091796875, - 2.0658931732177734, - 2.001199960708618, - 1.9338293075561523, - 1.86561918258667, - 1.79843008518219, - 1.7340946197509766, - 1.6743677854537964, - 1.62087881565094, - 1.5750867128372192, - 1.5382404327392578, - 1.5113452672958374, - 1.4951348304748535, - 1.4900511503219604, - 2.3160462379455566, - 2.3380424976348877, - 2.3481733798980713, - 2.3461620807647705, - 2.332064151763916, - 2.3062634468078613, - 2.2694644927978516, - 2.222670316696167, - 2.1671578884124756, - 2.1044411659240723, - 2.03623104095459, - 1.9643880128860474, - 1.8908718824386597, - 1.8176878690719604, - 1.746832251548767, - 1.6802377700805664, - 1.6197210550308228, - 1.5669327974319458, - 1.5233128070831299, - 1.4900511503219604, - 2.3160462379455566, - 2.3632266521453857, - 2.3978543281555176, - 2.41898512840271, - 2.4260425567626953, - 2.4188339710235596, - 2.3975560665130615, - 2.3627893924713135, - 2.3154821395874023, - 2.256924867630005, - 2.1887147426605225, - 2.1127123832702637, - 2.0309908390045166, - 1.94577956199646, - 1.8594026565551758, - 1.7742161750793457, - 1.6925439834594727, - 1.6166138648986816, - 1.5484968423843384, - 1.4900511503219604, - 2.3160462379455566, - 2.382687568664551, - 2.4362454414367676, - 2.4752588272094727, - 2.498664140701294, - 2.5058226585388184, - 2.4965388774871826, - 2.471066474914551, - 2.4300997257232666, - 2.3747565746307373, - 2.306546449661255, - 2.227329969406128, - 2.139267921447754, - 2.044762372970581, - 1.946391224861145, - 1.8468379974365234, - 1.748817801475525, - 1.6550047397613525, - 1.5679577589035034, - 1.4900511503219604, - 2.3160462379455566, - 2.3943164348602295, - 2.459185838699341, - 2.508885383605957, - 2.5420594215393066, - 2.557802677154541, - 2.5556862354278564, - 2.5357673168182373, - 2.498589515686035, - 2.445167064666748, - 2.3769569396972656, - 2.2958197593688965, - 2.2039687633514404, - 2.103909492492676, - 1.9983714818954468, - 1.8902331590652466, - 1.7824443578720093, - 1.6779453754425049, - 1.5795866250991821, - 1.4900511503219604, - 2.3160462379455566, - 2.39685320854187, - 2.4641902446746826, - 2.516220808029175, - 2.551525592803955, - 2.5691418647766113, - 2.5685884952545166, - 2.5498812198638916, - 2.5135300159454346, - 2.460526466369629, - 2.3923163414001465, - 2.310760259628296, - 2.218082904815674, - 2.116811990737915, - 2.0097105503082275, - 1.8996994495391846, - 1.7897796630859375, - 1.6829496622085571, - 1.5821233987808228, - 1.4900511503219604, - 2.3160462379455566, - 2.3900227546691895, - 2.4507157802581787, - 2.4964699745178223, - 2.5260372161865234, - 2.5386106967926025, - 2.5338480472564697, - 2.511878490447998, - 2.473301887512207, - 2.419170379638672, - 2.3509600162506104, - 2.2705321311950684, - 2.1800801753997803, - 2.082071304321289, - 1.9791795015335083, - 1.8742108345031738, - 1.770028829574585, - 1.6694753170013428, - 1.5752930641174316, - 1.4900511503219604, - 2.3160462379455566, - 2.374565601348877, - 2.4202229976654053, - 2.4517734050750732, - 2.468355894088745, - 2.4695181846618652, - 2.455228805541992, - 2.425877571105957, - 2.3822646141052246, - 2.32558012008667, - 2.2573699951171875, - 2.179494857788086, - 2.09407901763916, - 2.0034523010253906, - 1.910086989402771, - 1.816529631614685, - 1.725332260131836, - 1.6389825344085693, - 1.5598357915878296, - 1.4900511503219604, - 2.3160462379455566, - 2.352156400680542, - 2.376016139984131, - 2.386974334716797, - 2.384732484817505, - 2.369351387023926, - 2.3412508964538574, - 2.3011975288391113, - 2.2502834796905518, - 2.1898977756500244, - 2.121687650680542, - 2.047513723373413, - 1.9693989753723145, - 1.8894743919372559, - 1.8099201917648315, - 1.7329062223434448, - 1.6605333089828491, - 1.5947755575180054, - 1.5374267101287842, - 1.4900511503219604, - 2.3160462379455566, - 2.325223922729492, - 2.322885751724243, - 2.3090953826904297, - 2.284229040145874, - 2.248965263366699, - 2.204265832901001, - 2.1513497829437256, - 2.091660976409912, - 2.026827096939087, - 1.9586169719696045, - 1.8888911008834839, - 1.8195513486862183, - 1.7524892091751099, - 1.6895339488983154, - 1.6324028968811035, - 1.5826542377471924, - 1.5416450500488281, - 1.5104942321777344, - 1.4900511503219604 - ], - "z": [ - 1.7280237674713135, - 1.736711859703064, - 1.7344982624053955, - 1.7214436531066895, - 1.6979037523269653, - 1.6645209789276123, - 1.6222057342529297, - 1.5721123218536377, - 1.515607237815857, - 1.4542317390441895, - 1.3896598815917969, - 1.323653221130371, - 1.2580121755599976, - 1.1945271492004395, - 1.134929895401001, - 1.0808461904525757, - 1.033751130104065, - 0.9949295520782471, - 0.9654401540756226, - 0.9460875391960144, - 1.7280237674713135, - 1.7652499675750732, - 1.790796160697937, - 1.803965449333191, - 1.804398536682129, - 1.792083978652954, - 1.7673572301864624, - 1.7308931350708008, - 1.6836860179901123, - 1.6270238161087036, - 1.5624520778656006, - 1.491732120513916, - 1.416792869567871, - 1.3396786451339722, - 1.2624928951263428, - 1.1873410940170288, - 1.1162729263305664, - 1.051227331161499, - 0.9939782619476318, - 0.9460875391960144, - 1.7280237674713135, - 1.7891762256622314, - 1.837996006011963, - 1.8731513023376465, - 1.8936834335327148, - 1.8990322351455688, - 1.8890516757965088, - 1.8640143871307373, - 1.824602723121643, - 1.7718920707702637, - 1.7073203325271606, - 1.6326487064361572, - 1.5499141216278076, - 1.461373209953308, - 1.369441270828247, - 1.2766259908676147, - 1.1854588985443115, - 1.098427176475525, - 1.01790452003479, - 0.9460875391960144, - 1.7280237674713135, - 1.805897831916809, - 1.8709831237792969, - 1.9215041399002075, - 1.956083059310913, - 1.9737763404846191, - 1.9741017818450928, - 1.957050085067749, - 1.9230866432189941, - 1.8731377124786377, - 1.8085659742355347, - 1.7311326265335083, - 1.6429499387741089, - 1.5464231967926025, - 1.444185495376587, - 1.3390254974365234, - 1.2338117361068726, - 1.1314142942428589, - 1.0346261262893677, - 0.9460875391960144, - 1.7280237674713135, - 1.8136026859283447, - 1.8861827850341797, - 1.9437839984893799, - 1.984835147857666, - 2.0082168579101562, - 2.0132906436920166, - 1.9999186992645264, - 1.9684655666351318, - 1.9197893142700195, - 1.855217456817627, - 1.7765116691589355, - 1.6858185529708862, - 1.5856120586395264, - 1.478625774383545, - 1.367777705192566, - 1.2560914754867554, - 1.1466138362884521, - 1.0423309803009033, - 0.9460875391960144, - 1.7280237674713135, - 1.8114559650421143, - 1.8819477558135986, - 1.9375762939453125, - 1.9768242835998535, - 1.9986209869384766, - 2.0023717880249023, - 1.9879746437072754, - 1.955822229385376, - 1.90679132938385, - 1.842219591140747, - 1.7638682126998901, - 1.6738744974136353, - 1.5746933221817017, - 1.4690300226211548, - 1.3597667217254639, - 1.2498838901519775, - 1.1423789262771606, - 1.0401842594146729, - 0.9460875391960144, - 1.7280237674713135, - 1.7996902465820312, - 1.8587372303009033, - 1.903554081916809, - 1.9329184293746948, - 1.9460290670394897, - 1.942528486251831, - 1.9225122928619385, - 1.886526346206665, - 1.8355522155761719, - 1.7709804773330688, - 1.6945724487304688, - 1.6084121465682983, - 1.5148500204086304, - 1.416438102722168, - 1.3158608675003052, - 1.2158616781234741, - 1.1191684007644653, - 1.0284185409545898, - 0.9460875391960144, - 1.7280237674713135, - 1.7795804738998413, - 1.8190662860870361, - 1.845404028892517, - 1.8578753471374512, - 1.85614013671875, - 1.8402457237243652, - 1.810625433921814, - 1.7680875062942505, - 1.713792085647583, - 1.64922034740448, - 1.5761334896087646, - 1.4965252876281738, - 1.412567138671875, - 1.3265491724014282, - 1.240817904472351, - 1.1577116250991821, - 1.0794974565505981, - 1.0083088874816895, - 0.9460875391960144, - 1.7280237674713135, - 1.7533059120178223, - 1.7672338485717773, - 1.7694276571273804, - 1.7598274946212769, - 1.7386951446533203, - 1.7066071033477783, - 1.6644387245178223, - 1.6133402585983276, - 1.5547053813934326, - 1.49013352394104, - 1.4213862419128418, - 1.3503385782241821, - 1.278928518295288, - 1.2091041803359985, - 1.1427699327468872, - 1.0817352533340454, - 1.0276650190353394, - 0.9820342659950256, - 0.9460875391960144, - 1.7280237674713135, - 1.7237138748168945, - 1.7088568210601807, - 1.6838581562042236, - 1.6493995189666748, - 1.6064209938049316, - 1.556094765663147, - 1.4997938871383667, - 1.4390537738800049, - 1.375531554222107, - 1.310959815979004, - 1.2470998764038086, - 1.185693621635437, - 1.1284161806106567, - 1.0768299102783203, - 1.0323419570922852, - 0.9961656332015991, - 0.9692880511283875, - 0.9524421691894531, - 0.9460875391960144, - 1.7280237674713135, - 1.6940109729766846, - 1.6502612829208374, - 1.5979682207107544, - 1.538558006286621, - 1.4736515283584595, - 1.405018925666809, - 1.3345324993133545, - 1.2641149759292603, - 1.1956870555877686, - 1.131115198135376, - 1.0721609592437744, - 1.0204323530197144, - 0.9773403406143188, - 0.9440604448318481, - 0.9215005040168762, - 0.9102757573127747, - 0.9106924533843994, - 0.9227392673492432, - 0.9460875988006592, - 1.7280237674713135, - 1.6674160957336426, - 1.59779691696167, - 1.5210654735565186, - 1.439314603805542, - 1.3547745943069458, - 1.2697510719299316, - 1.186563491821289, - 1.1074808835983276, - 1.0346605777740479, - 0.9700888395309448, - 0.9155269265174866, - 0.8724632263183594, - 0.8420724272727966, - 0.8251835107803345, - 0.8222571015357971, - 0.8333730101585388, - 0.8582280874252319, - 0.8961443901062012, - 0.9460875988006592, - 1.7280237674713135, - 1.6468111276626587, - 1.557149052619934, - 1.4614834785461426, - 1.3624237775802612, - 1.2626721858978271, - 1.1649495363235474, - 1.0719213485717773, - 0.9861255288124084, - 0.9099020957946777, - 0.8453303575515747, - 0.7941715121269226, - 0.7578212022781372, - 0.7372708916664124, - 0.733081042766571, - 0.7453662157058716, - 0.7737910747528076, - 0.8175802826881409, - 0.8755394220352173, - 0.9460875988006592, - 1.7280237674713135, - 1.6344289779663086, - 1.5327225923538208, - 1.4256788492202759, - 1.3162176609039307, - 1.2073249816894531, - 1.1019710302352905, - 1.0030295848846436, - 0.9131994247436523, - 0.8349310159683228, - 0.770359218120575, - 0.7212453484535217, - 0.6889293193817139, - 0.6742924451828003, - 0.6777339577674866, - 0.6991601586341858, - 0.7379863858222961, - 0.7931537628173828, - 0.8631572723388672, - 0.9460875988006592, - 1.7280237674713135, - 1.6316114664077759, - 1.5271644592285156, - 1.4175316095352173, - 1.3057036399841309, - 1.1947309970855713, - 1.0876405239105225, - 0.987353503704071, - 0.896605372428894, - 0.8178715705871582, - 0.7532997727394104, - 0.7046512961387634, - 0.6732532978057861, - 0.6599619388580322, - 0.66513991355896, - 0.6886460781097412, - 0.7298392057418823, - 0.7875955700874329, - 0.8603397607803345, - 0.9460875988006592, - 1.7280237674713135, - 1.6386638879776, - 1.541076898574829, - 1.4379246234893799, - 1.3320209980010986, - 1.2262547016143799, - 1.123510718345642, - 1.0265917778015137, - 0.9381413459777832, - 0.8605723977088928, - 0.796000599861145, - 0.7461873292922974, - 0.712491512298584, - 0.6958321332931519, - 0.6966636180877686, - 0.714963436126709, - 0.7502322196960449, - 0.8015080094337463, - 0.8673921823501587, - 0.9460875988006592, - 1.7280237674713135, - 1.6548219919204712, - 1.572952389717102, - 1.4846481084823608, - 1.392317771911621, - 1.2984801530838013, - 1.2056947946548462, - 1.116492509841919, - 1.0333067178726196, - 0.9584064483642578, - 0.8938345909118652, - 0.8413527011871338, - 0.8023923635482788, - 0.7780161499977112, - 0.7688891291618347, - 0.7752602696418762, - 0.7969556450843811, - 0.8333835601806641, - 0.8835503458976746, - 0.9460875988006592, - 1.7280237674713135, - 1.6783348321914673, - 1.619336724281311, - 1.5526386499404907, - 1.48006010055542, - 1.403580665588379, - 1.325286626815796, - 1.2473137378692627, - 1.1717885732650757, - 1.1007716655731201, - 1.0361998081207275, - 0.9798346161842346, - 0.933213472366333, - 0.8976080417633057, - 0.8739896416664124, - 0.8630024194717407, - 0.8649462461471558, - 0.879767894744873, - 0.9070631861686707, - 0.9460875988006592, - 1.7280237674713135, - 1.70665442943573, - 1.6752034425735474, - 1.634528636932373, - 1.5857393741607666, - 1.5301668643951416, - 1.4693267345428467, - 1.4048786163330078, - 1.3385803699493408, - 1.2722406387329102, - 1.2076689004898071, - 1.1466264724731445, - 1.0907783508300781, - 1.0416481494903564, - 1.0005759000778198, - 0.9686818718910217, - 0.9468361139297485, - 0.9356346130371094, - 0.9353827834129333, - 0.9460875988006592, - 1.7280237674713135, - 1.736711859703064, - 1.734498381614685, - 1.7214436531066895, - 1.6979038715362549, - 1.6645209789276123, - 1.6222057342529297, - 1.5721124410629272, - 1.5156073570251465, - 1.454231858253479, - 1.3896600008010864, - 1.3236533403396606, - 1.2580121755599976, - 1.1945271492004395, - 1.1349300146102905, - 1.0808463096618652, - 1.0337512493133545, - 0.9949295520782471, - 0.9654401540756226, - 0.9460875391960144 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -2.5568432807922363, - -2.587553024291992, - -2.6321091651916504, - -2.6892967224121094, - -2.7575552463531494, - -2.8350231647491455, - -2.9195871353149414, - -3.0089406967163086, - -3.1006462574005127, - -3.192202568054199, - -3.2811121940612793, - -3.3649497032165527, - -3.4414281845092773, - -3.5084619522094727, - -3.5642220973968506, - -3.6071877479553223, - -3.6361870765686035, - -3.6504287719726562, - -3.649524450302124, - -3.6334986686706543, - -2.5568432807922363, - -2.586286783218384, - -2.6296114921569824, - -2.685635566711426, - -2.7528305053710938, - -2.8293635845184326, - -2.913147449493408, - -3.0018961429595947, - -3.093189239501953, - -3.1845364570617676, - -3.2734460830688477, - -3.357492685317993, - -3.4343838691711426, - -3.5020222663879395, - -3.558562755584717, - -3.6024630069732666, - -3.63252592086792, - -3.6479310989379883, - -3.6482582092285156, - -3.6334986686706543, - -2.5568432807922363, - -2.5826256275177, - -2.622389078140259, - -2.675048828125, - -2.739168167114258, - -2.8129985332489014, - -2.8945257663726807, - -2.9815261363983154, - -3.0716264247894287, - -3.1623687744140625, - -3.2512784004211426, - -3.3359296321868896, - -3.4140138626098633, - -3.483400583267212, - -3.5421974658966064, - -3.5888006687164307, - -3.621939182281494, - -3.6407084465026855, - -3.644597053527832, - -3.6334986686706543, - -2.5568432807922363, - -2.5769662857055664, - -2.611224412918091, - -2.6586835384368896, - -2.7180488109588623, - -2.78770112991333, - -2.8657402992248535, - -2.950037717819214, - -3.0382940769195557, - -3.1281018257141113, - -3.2170114517211914, - -3.3025975227355957, - -3.3825254440307617, - -3.4546151161193848, - -3.516900062561035, - -3.5676815509796143, - -3.605573892593384, - -3.6295440196990967, - -3.6389377117156982, - -3.6334986686706543, - -2.5568432807922363, - -2.5699217319488525, - -2.597327709197998, - -2.6383135318756104, - -2.691761016845703, - -2.7562127113342285, - -2.8299102783203125, - -2.91084361076355, - -2.996804714202881, - -3.085448980331421, - -3.174358606338501, - -3.261108160018921, - -3.3433313369750977, - -3.4187850952148438, - -3.4854118824005127, - -3.541393756866455, - -3.5852038860321045, - -3.615647077560425, - -3.6318931579589844, - -3.6334986686706543, - -2.5568432807922363, - -2.562255620956421, - -2.5822043418884277, - -2.6161458492279053, - -2.663153648376465, - -2.7219457626342773, - -2.7909185886383057, - -2.8681907653808594, - -2.9516541957855225, - -3.039032220840454, - -3.127941846847534, - -3.2159574031829834, - -3.300678253173828, - -3.379793643951416, - -3.4511449337005615, - -3.512786388397217, - -3.5630362033843994, - -3.6005239486694336, - -3.6242270469665527, - -3.6334986686706543, - -2.5568432807922363, - -2.5547986030578613, - -2.5674939155578613, - -2.594583034515381, - -2.635326623916626, - -2.6886136531829834, - -2.75299072265625, - -2.8267011642456055, - -2.9077351093292236, - -2.9938817024230957, - -3.082791328430176, - -3.1720385551452637, - -3.2591888904571533, - -3.3418655395507812, - -3.4178125858306885, - -3.484959125518799, - -3.541473150253296, - -3.585813283920288, - -3.616770029067993, - -3.6334986686706543, - -2.5568432807922363, - -2.548358678817749, - -2.5547900199890137, - -2.5759613513946533, - -2.611295223236084, - -2.6598281860351562, - -2.720236301422119, - -2.7908713817596436, - -2.869807004928589, - -2.954890012741089, - -3.043799638748169, - -3.134110450744629, - -3.2233591079711914, - -3.3091111183166504, - -3.3890271186828613, - -3.460927963256836, - -3.5228517055511475, - -3.5731093883514404, - -3.610330104827881, - -3.6334986686706543, - -2.5568432807922363, - -2.5436339378356934, - -2.545469284057617, - -2.5622990131378174, - -2.5936641693115234, - -2.6387088298797607, - -2.696204900741577, - -2.7645835876464844, - -2.84197998046875, - -2.9262826442718506, - -3.0151920318603516, - -3.106283187866211, - -3.1970713138580322, - -3.2850797176361084, - -3.367908000946045, - -3.4432966709136963, - -3.5091893672943115, - -3.563788652420044, - -3.605605363845825, - -3.6334986686706543, - -2.5568432807922363, - -2.5411362648010254, - -2.540541887283325, - -2.5550765991210938, - -2.584343433380127, - -2.627544403076172, - -2.6835010051727295, - -2.7506868839263916, - -2.8272693157196045, - -2.9111595153808594, - -3.0000689029693604, - -3.0915725231170654, - -3.1831743717193604, - -3.2723758220672607, - -3.356743335723877, - -3.4339759349823, - -3.501966953277588, - -3.558861494064331, - -3.6031076908111572, - -3.6334986686706543, - -2.5568432807922363, - -2.5411362648010254, - -2.540541887283325, - -2.5550765991210938, - -2.584343433380127, - -2.627544403076172, - -2.6835010051727295, - -2.7506868839263916, - -2.8272693157196045, - -2.9111595153808594, - -3.0000689029693604, - -3.0915725231170654, - -3.1831743717193604, - -3.2723758220672607, - -3.356743335723877, - -3.4339759349823, - -3.501966953277588, - -3.558861494064331, - -3.6031076908111572, - -3.6334986686706543, - -2.5568432807922363, - -2.5436339378356934, - -2.545469284057617, - -2.5622990131378174, - -2.5936641693115234, - -2.6387088298797607, - -2.696204900741577, - -2.7645835876464844, - -2.84197998046875, - -2.9262826442718506, - -3.0151920318603516, - -3.106283187866211, - -3.1970713138580322, - -3.2850797176361084, - -3.367908000946045, - -3.4432966709136963, - -3.5091893672943115, - -3.563788652420044, - -3.605605363845825, - -3.6334986686706543, - -2.5568432807922363, - -2.548358678817749, - -2.5547900199890137, - -2.5759613513946533, - -2.611295223236084, - -2.6598281860351562, - -2.720236301422119, - -2.7908713817596436, - -2.869807004928589, - -2.954890012741089, - -3.043799638748169, - -3.134110450744629, - -3.2233591079711914, - -3.3091111183166504, - -3.3890271186828613, - -3.460927963256836, - -3.5228517055511475, - -3.5731093883514404, - -3.610330104827881, - -3.6334986686706543, - -2.5568432807922363, - -2.5547986030578613, - -2.5674939155578613, - -2.594583034515381, - -2.635326623916626, - -2.6886136531829834, - -2.75299072265625, - -2.8267011642456055, - -2.9077351093292236, - -2.9938817024230957, - -3.082791328430176, - -3.1720385551452637, - -3.2591888904571533, - -3.3418655395507812, - -3.4178128242492676, - -3.484959125518799, - -3.541473388671875, - -3.585813283920288, - -3.616770029067993, - -3.6334986686706543, - -2.5568432807922363, - -2.562255620956421, - -2.5822043418884277, - -2.6161458492279053, - -2.663153648376465, - -2.7219457626342773, - -2.7909185886383057, - -2.8681907653808594, - -2.9516541957855225, - -3.039032220840454, - -3.127941846847534, - -3.2159574031829834, - -3.300678253173828, - -3.379793405532837, - -3.4511449337005615, - -3.512786388397217, - -3.5630362033843994, - -3.6005239486694336, - -3.6242270469665527, - -3.6334986686706543, - -2.5568432807922363, - -2.5699217319488525, - -2.597327709197998, - -2.6383135318756104, - -2.691761016845703, - -2.7562127113342285, - -2.8299102783203125, - -2.91084361076355, - -2.996804714202881, - -3.085448980331421, - -3.174358606338501, - -3.261107921600342, - -3.3433310985565186, - -3.4187850952148438, - -3.4854118824005127, - -3.541393756866455, - -3.5852038860321045, - -3.615647077560425, - -3.6318931579589844, - -3.6334986686706543, - -2.5568432807922363, - -2.5769662857055664, - -2.611224412918091, - -2.6586835384368896, - -2.7180488109588623, - -2.78770112991333, - -2.8657402992248535, - -2.950037717819214, - -3.0382940769195557, - -3.1281018257141113, - -3.2170114517211914, - -3.3025975227355957, - -3.3825254440307617, - -3.4546151161193848, - -3.516900062561035, - -3.567681312561035, - -3.605573892593384, - -3.6295440196990967, - -3.6389377117156982, - -3.6334986686706543, - -2.5568432807922363, - -2.5826256275177, - -2.622389078140259, - -2.675048828125, - -2.739168167114258, - -2.8129985332489014, - -2.8945257663726807, - -2.9815261363983154, - -3.0716264247894287, - -3.1623687744140625, - -3.2512784004211426, - -3.3359296321868896, - -3.4140138626098633, - -3.483400583267212, - -3.5421974658966064, - -3.5888006687164307, - -3.621939182281494, - -3.6407084465026855, - -3.644597053527832, - -3.6334986686706543, - -2.5568432807922363, - -2.586286783218384, - -2.6296114921569824, - -2.685635566711426, - -2.7528305053710938, - -2.8293635845184326, - -2.913147449493408, - -3.0018961429595947, - -3.093189239501953, - -3.1845364570617676, - -3.2734460830688477, - -3.357492685317993, - -3.4343838691711426, - -3.5020222663879395, - -3.558562755584717, - -3.6024630069732666, - -3.63252592086792, - -3.6479310989379883, - -3.6482582092285156, - -3.6334986686706543, - -2.5568432807922363, - -2.587553024291992, - -2.6321091651916504, - -2.6892967224121094, - -2.7575552463531494, - -2.8350231647491455, - -2.9195871353149414, - -3.0089406967163086, - -3.1006462574005127, - -3.192202568054199, - -3.2811121940612793, - -3.3649497032165527, - -3.4414281845092773, - -3.5084619522094727, - -3.5642220973968506, - -3.6071877479553223, - -3.6361870765686035, - -3.6504287719726562, - -3.649524450302124, - -3.6334986686706543 - ], - "y": [ - 2.506756067276001, - 2.5154600143432617, - 2.511709451675415, - 2.4956068992614746, - 2.4675915241241455, - 2.4284274578094482, - 2.379183053970337, - 2.3212015628814697, - 2.2560644149780273, - 2.1855485439300537, - 2.1115775108337402, - 2.0361688137054443, - 1.9613796472549438, - 1.8892498016357422, - 1.821747064590454, - 1.7607126235961914, - 1.7078112363815308, - 1.664486050605774, - 1.6319189071655273, - 1.6109979152679443, - 2.506756067276001, - 2.4845800399780273, - 2.450791597366333, - 2.406312942504883, - 2.3523573875427246, - 2.290396213531494, - 2.2221198081970215, - 2.149390459060669, - 2.0741922855377197, - 1.9985764026641846, - 1.9246052503585815, - 1.8542966842651367, - 1.7895686626434326, - 1.7321865558624268, - 1.6837157011032104, - 1.6454782485961914, - 1.618517279624939, - 1.603568196296692, - 1.6010386943817139, - 1.6109979152679443, - 2.506756067276001, - 2.4554409980773926, - 2.393308639526367, - 2.322053909301758, - 2.2436203956604004, - 2.1601476669311523, - 2.0739123821258545, - 1.9872671365737915, - 1.902575135231018, - 1.8221466541290283, - 1.7481755018234253, - 1.682679533958435, - 1.6274452209472656, - 1.5839791297912598, - 1.5534672737121582, - 1.5367414951324463, - 1.534258246421814, - 1.546085238456726, - 1.5718998908996582, - 1.6109979152679443, - 2.506756067276001, - 2.4312009811401367, - 2.345489740371704, - 2.251960515975952, - 2.1531643867492676, - 2.0517966747283936, - 1.9506217241287231, - 1.8523998260498047, - 1.759810209274292, - 1.6753782033920288, - 1.6014070510864258, - 1.539914608001709, - 1.4925779104232788, - 1.4606884717941284, - 1.4451160430908203, - 1.4462854862213135, - 1.4641647338867188, - 1.4982662200927734, - 1.5476597547531128, - 1.6109979152679443, - 2.506756067276001, - 2.4144864082336426, - 2.312516689300537, - 2.2036285400390625, - 2.090791702270508, - 1.9770843982696533, - 1.8656080961227417, - 1.7594038248062134, - 1.6613682508468628, - 1.5741758346557617, - 1.5002046823501587, - 1.4414726495742798, - 1.3995819091796875, - 1.3756749629974365, - 1.3704038858413696, - 1.3839125633239746, - 1.415832757949829, - 1.465293288230896, - 1.5309453010559082, - 1.6109979152679443, - 2.506756067276001, - 2.407108783721924, - 2.2979629039764404, - 2.182295322418213, - 2.063261032104492, - 1.9441072940826416, - 1.8280842304229736, - 1.7183564901351929, - 1.6179171800613403, - 1.5295062065124512, - 1.4555351734161377, - 1.3980215787887573, - 1.358534574508667, - 1.338150978088379, - 1.3374269008636475, - 1.3563820123672485, - 1.3944995403289795, - 1.4507393836975098, - 1.523567795753479, - 1.6109979152679443, - 2.506756067276001, - 2.409867763519287, - 2.303405284881592, - 2.190272808074951, - 2.0735559463500977, - 1.9564388990402222, - 1.842116117477417, - 1.7337058782577515, - 1.6341655254364014, - 1.5462102890014648, - 1.4722391366958618, - 1.4142699241638184, - 1.3738839626312256, - 1.3521828651428223, - 1.3497583866119385, - 1.3666770458221436, - 1.4024770259857178, - 1.4561817646026611, - 1.5263266563415527, - 1.6109979152679443, - 2.506756067276001, - 2.422463893890381, - 2.328253984451294, - 2.226696252822876, - 2.120560884475708, - 2.0127429962158203, - 1.9061833620071411, - 1.8037887811660767, - 1.7083524465560913, - 1.6224775314331055, - 1.5485063791275024, - 1.4884567260742188, - 1.4439668655395508, - 1.4162499904632568, - 1.406062364578247, - 1.4136818647384644, - 1.4389005899429321, - 1.4810305833816528, - 1.5389227867126465, - 1.6109979152679443, - 2.506756067276001, - 2.4435324668884277, - 2.369816541671753, - 2.287619113922119, - 2.1991820335388184, - 2.1069178581237793, - 2.013343334197998, - 1.9210107326507568, - 1.8324387073516846, - 1.7500433921813965, - 1.676072359085083, - 1.6125431060791016, - 1.5611886978149414, - 1.5234099626541138, - 1.5002374649047852, - 1.4923030138015747, - 1.4998233318328857, - 1.5225931406021118, - 1.5599913597106934, - 1.6109979152679443, - 2.506756067276001, - 2.470790386199951, - 2.423588991165161, - 2.3664391040802, - 2.3008995056152344, - 2.2287585735321045, - 2.1519834995269775, - 2.0726685523986816, - 1.9929776191711426, - 1.9150842428207397, - 1.8411130905151367, - 1.7730820178985596, - 1.7128467559814453, - 1.6620501279830933, - 1.6220780611038208, - 1.5940206050872803, - 1.5786433219909668, - 1.5763654708862305, - 1.5872492790222168, - 1.6109979152679443, - 2.506756067276001, - 2.501283884048462, - 2.483743906021118, - 2.4546148777008057, - 2.4146909713745117, - 2.3650612831115723, - 2.307080030441284, - 2.24232816696167, - 2.172572374343872, - 2.099715232849121, - 2.0257439613342285, - 1.952676773071289, - 1.882506251335144, - 1.8171467781066895, - 1.7583810091018677, - 1.707811951637268, - 1.6668190956115723, - 1.636520504951477, - 1.6177427768707275, - 1.6109979152679443, - 2.506756067276001, - 2.531708240509033, - 2.5437629222869873, - 2.542591094970703, - 2.5282249450683594, - 2.50105619430542, - 2.4618258476257324, - 2.411604166030884, - 2.3517608642578125, - 2.283928632736206, - 2.2099575996398926, - 2.1318652629852295, - 2.0517821311950684, - 1.9718925952911377, - 1.8943756818771362, - 1.8213459253311157, - 1.7547954320907593, - 1.6965395212173462, - 1.6481671333312988, - 1.6109979152679443, - 2.506756067276001, - 2.5587668418884277, - 2.597141981124878, - 2.6208345890045166, - 2.6291985511779785, - 2.6220054626464844, - 2.599451780319214, - 2.562152862548828, - 2.5111255645751953, - 2.4477622509002686, - 2.373791217803955, - 2.2912299633026123, - 2.2023308277130127, - 2.109518527984619, - 2.0153250694274902, - 1.9223195314407349, - 1.8330388069152832, - 1.7499184608459473, - 1.6752257347106934, - 1.6109979152679443, - 2.506756067276001, - 2.5795273780822754, - 2.638096332550049, - 2.680866241455078, - 2.706669569015503, - 2.7148027420043945, - 2.7050442695617676, - 2.677659749984741, - 2.633396625518799, - 2.5734620094299316, - 2.499490976333618, - 2.413501024246216, - 2.317837953567505, - 2.215111017227173, - 2.1081223487854004, - 1.9997905492782593, - 1.8930703401565552, - 1.7908730506896973, - 1.6959861516952515, - 1.6109979152679443, - 2.506756067276001, - 2.5917398929595947, - 2.6621885299682617, - 2.7161803245544434, - 2.7522428035736084, - 2.7693920135498047, - 2.767160177230835, - 2.745608329772949, - 2.705324172973633, - 2.647406578063965, - 2.5734353065490723, - 2.48542857170105, - 2.385786294937134, - 2.2772269248962402, - 2.1627116203308105, - 2.0453639030456543, - 1.9283846616744995, - 1.814965009689331, - 1.7081986665725708, - 1.6109979152679443, - 2.506756067276001, - 2.594081163406372, - 2.666807174682617, - 2.7229506969451904, - 2.760979652404785, - 2.7798573970794678, - 2.7790684700012207, - 2.7586350440979004, - 2.71911358833313, - 2.6615824699401855, - 2.587611436843872, - 2.499217987060547, - 2.398813009262085, - 2.289135456085205, - 2.1731770038604736, - 2.054100751876831, - 1.935154914855957, - 1.819583773612976, - 1.7105400562286377, - 1.6109979152679443, - 2.506756067276001, - 2.5862975120544434, - 2.6514523029327393, - 2.7004430294036865, - 2.731933832168579, - 2.745065212249756, - 2.7394790649414062, - 2.7153279781341553, - 2.6732707023620605, - 2.6144542694091797, - 2.540482997894287, - 2.4533751010894775, - 2.35550594329834, - 2.2495458126068115, - 2.1383848190307617, - 2.025054693222046, - 1.9126473665237427, - 1.8042287826538086, - 1.7027562856674194, - 1.6109979152679443, - 2.506756067276001, - 2.569232225418091, - 2.6177873611450195, - 2.651096820831299, - 2.6682519912719727, - 2.6687850952148438, - 2.652681589126587, - 2.6203806400299072, - 2.572763204574585, - 2.5111281871795654, - 2.437157154083252, - 2.352867603302002, - 2.260558605194092, - 2.162748336791992, - 2.0621049404144287, - 1.9613730907440186, - 1.863301157951355, - 1.7705638408660889, - 1.6856911182403564, - 1.6109979152679443, - 2.506756067276001, - 2.5447349548339844, - 2.569460868835449, - 2.580259323120117, - 2.576835870742798, - 2.55928373336792, - 2.5280821323394775, - 2.484081506729126, - 2.4284825325012207, - 2.3628017902374268, - 2.2888307571411133, - 2.2085869312286377, - 2.1242597103118896, - 2.038148880004883, - 1.9526034593582153, - 1.8699568510055542, - 1.7924635410308838, - 1.7222373485565186, - 1.6611937284469604, - 1.6109979152679443, - 2.506756067276001, - 2.5154600143432617, - 2.511709451675415, - 2.4956068992614746, - 2.4675915241241455, - 2.4284274578094482, - 2.379183053970337, - 2.3212015628814697, - 2.2560644149780273, - 2.1855485439300537, - 2.1115775108337402, - 2.0361688137054443, - 1.9613795280456543, - 1.8892498016357422, - 1.821747064590454, - 1.7607126235961914, - 1.7078112363815308, - 1.664486050605774, - 1.6319187879562378, - 1.6109979152679443 - ], - "z": [ - 1.908561110496521, - 1.916800856590271, - 1.91325044631958, - 1.898006796836853, - 1.871485710144043, - 1.8344106674194336, - 1.7877929210662842, - 1.7329041957855225, - 1.6712415218353271, - 1.6044870615005493, - 1.5344616174697876, - 1.4630752801895142, - 1.392275333404541, - 1.3239929676055908, - 1.260090947151184, - 1.2023119926452637, - 1.1522324085235596, - 1.1112182140350342, - 1.0803881883621216, - 1.0605831146240234, - 1.908561110496521, - 1.9478132724761963, - 1.9744294881820679, - 1.9876835346221924, - 1.9872140884399414, - 1.9730339050292969, - 1.9455296993255615, - 1.9054518938064575, - 1.853893518447876, - 1.792261004447937, - 1.7222355604171753, - 1.6457271575927734, - 1.564823031425476, - 1.4817297458648682, - 1.3987141847610474, - 1.318040370941162, - 1.2419092655181885, - 1.172397255897522, - 1.1114006042480469, - 1.0605831146240234, - 1.908561110496521, - 1.9739456176757812, - 2.0259811878204346, - 2.063248634338379, - 2.084731101989746, - 2.0898430347442627, - 2.078444480895996, - 2.050847053527832, - 2.007802724838257, - 1.950486183166504, - 1.8804607391357422, - 1.7996364831924438, - 1.710218071937561, - 1.6146446466445923, - 1.5155231952667236, - 1.4155575037002563, - 1.317474126815796, - 1.2239489555358887, - 1.1375329494476318, - 1.0605831146240234, - 1.908561110496521, - 1.992365837097168, - 2.062319278717041, - 2.1165130138397217, - 2.1534693241119385, - 2.172179698944092, - 2.1721339225769043, - 2.1533336639404297, - 2.116290807723999, - 2.062016487121582, - 1.9919910430908203, - 1.908124566078186, - 1.8127046823501587, - 1.70833420753479, - 1.5978599786758423, - 1.4842956066131592, - 1.3707387447357178, - 1.2602869272232056, - 1.1559531688690186, - 1.0605831146240234, - 1.908561110496521, - 2.001077890396118, - 2.079505443572998, - 2.14170503616333, - 2.1859798431396484, - 2.2111217975616455, - 2.2164454460144043, - 2.201805591583252, - 2.1676015853881836, - 2.1147661209106445, - 2.044740676879883, - 1.959435224533081, - 1.8611767292022705, - 1.7526456117630005, - 1.636802077293396, - 1.5168061256408691, - 1.3959307670593262, - 1.2774733304977417, - 1.1646652221679688, - 1.0605831146240234, - 1.908561110496521, - 1.9991376399993896, - 2.0756781101226807, - 2.136094570159912, - 2.178739547729492, - 2.202449321746826, - 2.2065770626068115, - 2.1910104751586914, - 2.156174421310425, - 2.1030185222625732, - 2.0329928398132324, - 1.9480080604553223, - 1.8503817319869995, - 1.7427771091461182, - 1.628129482269287, - 1.509565830230713, - 1.3903203010559082, - 1.2736458778381348, - 1.1627249717712402, - 1.0605831146240234, - 1.908561110496521, - 1.98675537109375, - 2.0512514114379883, - 2.100289821624756, - 2.132533073425293, - 2.147101640701294, - 2.1435980796813965, - 2.1221182346343994, - 2.083247661590576, - 2.0280468463897705, - 1.9580212831497192, - 1.8750813007354736, - 1.781489372253418, - 1.6797982454299927, - 1.5727819204330444, - 1.4633593559265137, - 1.3545154333114624, - 1.2492191791534424, - 1.1503427028656006, - 1.0605831146240234, - 1.908561110496521, - 1.9652729034423828, - 2.0088725090026855, - 2.038170337677002, - 2.052367687225342, - 2.051077127456665, - 2.0343337059020996, - 2.002593994140625, - 1.9567242860794067, - 1.8979753255844116, - 1.82794988155365, - 1.7485580444335938, - 1.661965250968933, - 1.5705336332321167, - 1.476757287979126, - 1.383194088935852, - 1.2923961877822876, - 1.2068402767181396, - 1.1288602352142334, - 1.0605831146240234, - 1.908561110496521, - 1.9370182752609253, - 1.9531338214874268, - 1.9564683437347412, - 1.9469306468963623, - 1.924781084060669, - 1.8906238079071045, - 1.8453904390335083, - 1.7903149127960205, - 1.7268993854522705, - 1.6568739414215088, - 1.582148551940918, - 1.5047615766525269, - 1.4268237352371216, - 1.3504613637924194, - 1.277756929397583, - 1.2106939554214478, - 1.1511017084121704, - 1.1006056070327759, - 1.0605831146240234, - 1.908561110496521, - 1.9050531387329102, - 1.89007568359375, - 1.864037036895752, - 1.8276475667953491, - 1.7818999290466309, - 1.7280418872833252, - 1.6675426959991455, - 1.6020525693893433, - 1.533357858657837, - 1.4633324146270752, - 1.3938862085342407, - 1.326913833618164, - 1.2642419338226318, - 1.2075800895690918, - 1.1584738492965698, - 1.1182626485824585, - 1.088043451309204, - 1.0686405897140503, - 1.060583233833313, - 1.9085612297058105, - 1.8728415966033936, - 1.826531171798706, - 1.770892858505249, - 1.7074445486068726, - 1.6379168033599854, - 1.5642062425613403, - 1.488323450088501, - 1.412338376045227, - 1.338323712348938, - 1.2682982683181763, - 1.204172134399414, - 1.1476945877075195, - 1.100406289100647, - 1.0635969638824463, - 1.0382707118988037, - 1.0251185894012451, - 1.0244989395141602, - 1.0364289283752441, - 1.060583233833313, - 1.9085612297058105, - 1.843874216079712, - 1.7693864107131958, - 1.6871294975280762, - 1.5993475914001465, - 1.508434772491455, - 1.4168710708618164, - 1.3271540403366089, - 1.2417309284210205, - 1.1629319190979004, - 1.0929064750671387, - 1.0335646867752075, - 0.9865251779556274, - 0.9530710577964783, - 0.934114933013916, - 0.9301738142967224, - 0.9413552284240723, - 0.9673541784286499, - 1.0074615478515625, - 1.060583233833313, - 1.9085612297058105, - 1.8212898969650269, - 1.7248339653015137, - 1.6218241453170776, - 1.5150705575942993, - 1.407485008239746, - 1.302002191543579, - 1.2014994621276855, - 1.1087181568145752, - 1.0261892080307007, - 0.956163763999939, - 0.9005518555641174, - 0.8608705401420593, - 0.8382022380828857, - 0.833165168762207, - 0.8458967804908752, - 0.876049816608429, - 0.9228017330169678, - 0.9848772883415222, - 1.060583233833313, - 1.9085612297058105, - 1.807536244392395, - 1.6977016925811768, - 1.5820534229278564, - 1.463746190071106, - 1.3460071086883545, - 1.2320475578308105, - 1.124976396560669, - 1.0277138948440552, - 0.9429135322570801, - 0.8728880286216736, - 0.8195476531982422, - 0.7843474745750427, - 0.7682476043701172, - 0.7716872096061707, - 0.7945724725723267, - 0.8362790942192078, - 0.8956694602966309, - 0.9711235761642456, - 1.060583233833313, - 1.9085612297058105, - 1.8041034936904907, - 1.690929889678955, - 1.5721272230148315, - 1.4509364366531372, - 1.3306630849838257, - 1.2145880460739136, - 1.1058772802352905, - 1.0074964761734009, - 0.9221290946006775, - 0.852103590965271, - 0.7993302345275879, - 0.7652484178543091, - 0.7507879734039307, - 0.7563432455062866, - 0.7817626595497131, - 0.8263528943061829, - 0.8888976573944092, - 0.9676908254623413, - 1.060583233833313, - 1.9085612297058105, - 1.811363697052002, - 1.7052522897720337, - 1.5931211709976196, - 1.4780292510986328, - 1.363115668296814, - 1.25151526927948, - 1.1462719440460205, - 1.0502564907073975, - 0.9660882353782654, - 0.8960627317428589, - 0.8420902490615845, - 0.8056430220603943, - 0.7877152562141418, - 0.7887958884239197, - 0.8088554739952087, - 0.847346842288971, - 0.9032200574874878, - 0.9749510884284973, - 1.060583233833313, - 1.9085612297058105, - 1.828530192375183, - 1.739116907119751, - 1.6427602767944336, - 1.5420887470245361, - 1.4398483037948608, - 1.3388278484344482, - 1.2417829036712646, - 1.1513605117797852, - 1.0700273513793945, - 1.0000019073486328, - 0.9431943297386169, - 0.9011540412902832, - 0.8750278353691101, - 0.8655285239219666, - 0.8729150295257568, - 0.8969860076904297, - 0.9370847344398499, - 0.9921175241470337, - 1.060583233833313, - 1.9085612297058105, - 1.8537425994873047, - 1.7888540029525757, - 1.7156654596328735, - 1.6361732482910156, - 1.5525457859039307, - 1.4670641422271729, - 1.3820600509643555, - 1.2998522520065308, - 1.2226831912994385, - 1.1526577472686768, - 1.0916860103607178, - 1.041431188583374, - 1.0032641887664795, - 0.9782258868217468, - 0.9669994711875916, - 0.9698911309242249, - 0.9868218898773193, - 1.0173299312591553, - 1.060583233833313, - 1.9085612297058105, - 1.884268879890442, - 1.849073886871338, - 1.803936243057251, - 1.7500871419906616, - 1.6889954805374146, - 1.6223276853561401, - 1.551902413368225, - 1.4796403646469116, - 1.407512903213501, - 1.3374874591827393, - 1.2714741230010986, - 1.211273431777954, - 1.1585277318954468, - 1.1146756410598755, - 1.0809133052825928, - 1.0581618547439575, - 1.047041654586792, - 1.0478562116622925, - 1.060583233833313, - 1.908561110496521, - 1.916800856590271, - 1.91325044631958, - 1.898006796836853, - 1.8714858293533325, - 1.8344107866287231, - 1.7877930402755737, - 1.732904314994812, - 1.6712416410446167, - 1.6044871807098389, - 1.5344617366790771, - 1.4630753993988037, - 1.3922754526138306, - 1.3239930868148804, - 1.260090947151184, - 1.2023121118545532, - 1.1522325277328491, - 1.1112182140350342, - 1.0803881883621216, - 1.0605831146240234 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -3.7513480186462402, - -3.722381591796875, - -3.6830132007598877, - -3.6343166828155518, - -3.577620267868042, - -3.5144708156585693, - -3.4465904235839844, - -3.375830888748169, - -3.3041226863861084, - -3.2334213256835938, - -3.1656556129455566, - -3.1026737689971924, - -3.046194076538086, - -2.9977571964263916, - -2.958683967590332, - -2.9300405979156494, - -2.9126081466674805, - -2.906862258911133, - -2.9129598140716553, - -2.930734157562256, - -3.7513480186462402, - -3.7455763816833496, - -3.7287697792053223, - -3.7013869285583496, - -3.664175033569336, - -3.6181488037109375, - -3.564563751220703, - -3.5048816204071045, - -3.440730333328247, - -3.3738596439361572, - -3.30609393119812, - -3.239281415939331, - -3.1752448081970215, - -3.1157305240631104, - -3.0623621940612793, - -3.0165953636169434, - -2.9796786308288574, - -2.9526188373565674, - -2.936154365539551, - -2.930734157562256, - -3.7513480186462402, - -3.7687900066375732, - -3.774563789367676, - -3.768512487411499, - -3.750800848007202, - -3.721911907196045, - -3.682633876800537, - -3.634038209915161, - -3.5774500370025635, - -3.514413595199585, - -3.4466476440429688, - -3.3760013580322266, - -3.304401159286499, - -3.2338006496429443, - -3.1661252975463867, - -3.1032211780548096, - -3.0468039512634277, - -2.9984130859375, - -2.9593679904937744, - -2.930734157562256, - -3.7513480186462402, - -3.7895071506500244, - -3.8154330253601074, - -3.8284189701080322, - -3.828110456466675, - -3.814516067504883, - -3.78800630569458, - -3.7493045330047607, - -3.6994664669036865, - -3.6398515701293945, - -3.5720856189727783, - -3.4980175495147705, - -3.4196677207946777, - -3.3391730785369873, - -3.2587292194366455, - -3.1805307865142822, - -3.106710433959961, - -3.0392823219299316, - -2.9800851345062256, - -2.930734157562256, - -3.7513480186462402, - -3.8054826259613037, - -3.8469486236572266, - -3.874614715576172, - -3.887726306915283, - -3.885925769805908, - -3.8692619800567627, - -3.8381898403167725, - -3.7935569286346436, - -3.7365803718566895, - -3.6688146591186523, - -3.5921080112457275, - -3.5085530281066895, - -3.42042875289917, - -3.330138921737671, - -3.2401466369628906, - -3.1529061794281006, - -3.0707976818084717, - -2.996060848236084, - -2.930734157562256, - -3.7513480186462402, - -3.814985513687134, - -3.865694999694824, - -3.9020934104919434, - -3.923187732696533, - -3.9284026622772217, - -3.917595863342285, - -3.891062021255493, - -3.849525213241577, - -3.7941181659698486, - -3.7263524532318115, - -3.6480765342712402, - -3.56142520904541, - -3.4687626361846924, - -3.3726160526275635, - -3.2756080627441406, - -3.180385112762451, - -3.0895442962646484, - -3.005563735961914, - -2.930734157562256, - -3.7513480186462402, - -3.816985845565796, - -3.8696413040161133, - -3.9078776836395264, - -3.930652379989624, - -3.9373440742492676, - -3.9277701377868652, - -3.902191638946533, - -3.861306667327881, - -3.806229829788208, - -3.738464117050171, - -3.659857749938965, - -3.57255482673645, - -3.4789366722106934, - -3.3815574645996094, - -3.2830727100372314, - -3.186169385910034, - -3.0934903621673584, - -3.007564067840576, - -2.930734157562256, - -3.7513480186462402, - -3.8112668991088867, - -3.8583593368530273, - -3.891340732574463, - -3.909311294555664, - -3.911780834197998, - -3.898682117462158, - -3.8703725337982178, - -3.8276240825653076, - -3.7716028690338135, - -3.7038371562957764, - -3.6261751651763916, - -3.5407357215881348, - -3.4498488903045654, - -3.35599422454834, - -3.2617316246032715, - -3.1696321964263916, - -3.0822083950042725, - -3.001845121383667, - -2.930734157562256, - -3.7513480186462402, - -3.7984485626220703, - -3.8330719470977783, - -3.854274272918701, - -3.8614766597747803, - -3.854483127593994, - -3.833484172821045, - -3.7990527153015137, - -3.7521278858184814, - -3.6939895153045654, - -3.6262238025665283, - -3.5506789684295654, - -3.4694156646728516, - -3.384650945663452, - -3.298696517944336, - -3.2138969898223877, - -3.13256573677063, - -3.0569210052490234, - -2.9890265464782715, - -2.930734157562256, - -3.7513480186462402, - -3.779919385910034, - -3.7965195178985596, - -3.8006951808929443, - -3.792332649230957, - -3.771660089492798, - -3.739241361618042, - -3.695960760116577, - -3.6429989337921143, - -3.5818004608154297, - -3.5140347480773926, - -3.4415502548217773, - -3.366323947906494, - -3.290408134460449, - -3.2158734798431396, - -3.1447529792785645, - -3.078986644744873, - -3.0203685760498047, - -2.9704976081848145, - -2.930734157562256, - -3.7513480186462402, - -3.75768780708313, - -3.7526626586914062, - -3.7364094257354736, - -3.70937180519104, - -3.6722867488861084, - -3.626166343688965, - -3.572268486022949, - -3.512063503265381, - -3.447193145751953, - -3.379427433013916, - -3.310614585876465, - -3.242631673812866, - -3.177333116531372, - -3.11650013923645, - -3.0617918968200684, - -3.0147011280059814, - -2.9765119552612305, - -2.94826602935791, - -2.930734157562256, - -3.7513480186462402, - -3.7341628074645996, - -3.706254482269287, - -3.668383836746216, - -3.621584177017212, - -3.567131996154785, - -3.5065126419067383, - -3.4413797855377197, - -3.3735098838806152, - -3.3047542572021484, - -3.2369885444641113, - -3.1720612049102783, - -3.1117429733276367, - -3.0576794147491455, - -3.011345386505127, - -2.9740045070648193, - -2.9466753005981445, - -2.9301035404205322, - -2.92474102973938, - -2.930734157562256, - -3.7513480186462402, - -3.7118937969207764, - -3.662323474884033, - -3.603989601135254, - -3.538483142852783, - -3.467590808868408, - -3.393246650695801, - -3.3174784183502197, - -3.2423529624938965, - -3.169919490814209, - -3.102153778076172, - -3.0409042835235596, - -2.9878416061401367, - -2.944413423538208, - -2.91180419921875, - -2.8909034729003906, - -2.8822810649871826, - -2.8861727714538574, - -2.9024720191955566, - -2.930734157562256, - -3.7513480186462402, - -3.693293571472168, - -3.6256308555603027, - -3.5502049922943115, - -3.46907377243042, - -3.3844499588012695, - -3.29864239692688, - -3.213991165161133, - -3.132805347442627, - -3.057300090789795, - -2.989534378051758, - -2.93135666847229, - -2.8843541145324707, - -2.849808931350708, - -2.8286633491516113, - -2.8214941024780273, - -2.8284964561462402, - -2.849479913711548, - -2.8838717937469482, - -2.930734157562256, - -3.7513480186462402, - -3.6803784370422363, - -3.6001522541046143, - -3.5128583908081055, - -3.420877695083618, - -3.326719284057617, - -3.2329516410827637, - -3.14213228225708, - -3.0567386150360107, - -2.979100227355957, - -2.91133451461792, - -2.855289936065674, - -2.812495470046997, - -2.784118175506592, - -2.770932674407959, - -2.7732980251312256, - -2.791149854660034, - -2.8240013122558594, - -2.8709564208984375, - -2.930734157562256, - -3.7513480186462402, - -3.6745471954345703, - -3.588649034500122, - -3.4959967136383057, - -3.399117946624756, - -3.300654649734497, - -3.2032930850982666, - -3.1096889972686768, - -3.022395610809326, - -2.943793773651123, - -2.876028060913086, - -2.82094669342041, - -2.7800521850585938, - -2.754459857940674, - -2.7448678016662598, - -2.751538038253784, - -2.7742884159088135, - -2.812498092651367, - -2.8651251792907715, - -2.930734157562256, - -3.7513480186462402, - -3.6764321327209473, - -3.592367649078369, - -3.5014476776123047, - -3.4061520099639893, - -3.3090806007385254, - -3.2128806114196777, - -3.1201767921447754, - -3.0334975719451904, - -2.955207109451294, - -2.887441396713257, - -2.8320486545562744, - -2.7905399799346924, - -2.764047384262085, - -2.753293752670288, - -2.7585723400115967, - -2.7797391414642334, - -2.8162167072296143, - -2.8670103549957275, - -2.930734157562256, - -3.7513480186462402, - -3.6858291625976562, - -3.610905170440674, - -3.5286200046539307, - -3.441218137741089, - -3.351083993911743, - -3.2606756687164307, - -3.172459363937378, - -3.088841676712036, - -3.012103319168091, - -2.9443376064300537, - -2.887392997741699, - -2.842822551727295, - -2.811842203140259, - -2.795297145843506, - -2.7936384677886963, - -2.8069114685058594, - -2.834754228591919, - -2.8764071464538574, - -2.930734157562256, - -3.7513480186462402, - -3.7017195224761963, - -3.6422526836395264, - -3.5745694637298584, - -3.500516414642334, - -3.4221129417419434, - -3.341498374938965, - -3.260871171951294, - -3.1824307441711426, - -3.1083168983459473, - -3.04055118560791, - -2.9809820652008057, - -2.931234359741211, - -2.892664909362793, - -2.866326332092285, - -2.8529365062713623, - -2.852860927581787, - -2.8661017417907715, - -2.8922977447509766, - -2.930734157562256, - -3.7513480186462402, - -3.722381591796875, - -3.6830132007598877, - -3.6343166828155518, - -3.577620267868042, - -3.5144708156585693, - -3.4465904235839844, - -3.375831127166748, - -3.3041226863861084, - -3.2334213256835938, - -3.1656556129455566, - -3.1026737689971924, - -3.046194076538086, - -2.9977571964263916, - -2.958683967590332, - -2.9300405979156494, - -2.9126081466674805, - -2.906862258911133, - -2.9129598140716553, - -2.930734157562256 - ], - "y": [ - 2.3023126125335693, - 2.286303997039795, - 2.268342971801758, - 2.2489194869995117, - 2.2285635471343994, - 2.2078301906585693, - 2.1872851848602295, - 2.1674885749816895, - 2.1489808559417725, - 2.1322662830352783, - 2.1178014278411865, - 2.105980396270752, - 2.097125768661499, - 2.0914790630340576, - 2.0891945362091064, - 2.090333938598633, - 2.0948667526245117, - 2.1026692390441895, - 2.113528251647949, - 2.127147912979126, - 2.3023126125335693, - 2.2459378242492676, - 2.1887118816375732, - 2.1321957111358643, - 2.0779306888580322, - 2.027397394180298, - 1.9819738864898682, - 1.942899465560913, - 1.9112398624420166, - 1.8878586292266846, - 1.8733936548233032, - 1.868239402770996, - 1.8725366592407227, - 1.8861678838729858, - 1.9087615013122559, - 1.9397011995315552, - 1.9781429767608643, - 2.023038148880005, - 2.073162317276001, - 2.127147912979126, - 2.3023126125335693, - 2.2115514278411865, - 2.1208770275115967, - 2.0327625274658203, - 1.9496119022369385, - 1.8736929893493652, - 1.8070764541625977, - 1.751579761505127, - 1.708716630935669, - 1.6796562671661377, - 1.6651911735534668, - 1.665716290473938, - 1.6812169551849365, - 1.7112704515457153, - 1.7550570964813232, - 1.8113824129104614, - 1.8787100315093994, - 1.9552032947540283, - 2.03877592086792, - 2.127147912979126, - 2.3023126125335693, - 2.18687105178833, - 2.0721893310546875, - 1.9613956212997437, - 1.857512354850769, - 1.7633731365203857, - 1.6815457344055176, - 1.6142621040344238, - 1.5633577108383179, - 1.5302212238311768, - 1.5157561302185059, - 1.520357370376587, - 1.5438992977142334, - 1.5857396125793457, - 1.6447372436523438, - 1.719282865524292, - 1.8073430061340332, - 1.9065154790878296, - 2.0140953063964844, - 2.127147912979126, - 2.3023126125335693, - 2.1745710372924805, - 2.047924757003784, - 1.925828456878662, - 1.811612606048584, - 1.708392858505249, - 1.6189848184585571, - 1.5458269119262695, - 1.490915060043335, - 1.455747127532959, - 1.441282033920288, - 1.447914719581604, - 1.475464105606079, - 1.5231788158416748, - 1.5897570848464966, - 1.6733832359313965, - 1.771775722503662, - 1.8822509050369263, - 2.0017952919006348, - 2.127147912979126, - 2.3023126125335693, - 2.1759841442108154, - 2.050712823867798, - 1.929915189743042, - 1.8168866634368896, - 1.7147103548049927, - 1.6261732578277588, - 1.5536903142929077, - 1.4992389678955078, - 1.4643043279647827, - 1.4498393535614014, - 1.4562385082244873, - 1.4833275079727173, - 1.530367136001587, - 1.5960744619369507, - 1.678657054901123, - 1.775862455368042, - 1.8850390911102295, - 2.003208637237549, - 2.127147912979126, - 2.3023126125335693, - 2.19095778465271, - 2.0802512168884277, - 1.9732130765914917, - 1.8727627992630005, - 1.7816405296325684, - 1.7023319005966187, - 1.6369999647140503, - 1.5874271392822266, - 1.5549654960632324, - 1.5405006408691406, - 1.5444269180297852, - 1.5666371583938599, - 1.6065258979797363, - 1.663004755973816, - 1.7345333099365234, - 1.8191603422164917, - 1.9145774841308594, - 2.0181820392608643, - 2.127147912979126, - 2.3023126125335693, - 2.2178688049316406, - 2.1333394050598145, - 2.051030158996582, - 1.9731860160827637, - 1.901930809020996, - 1.8392078876495361, - 1.7867281436920166, - 1.7459232807159424, - 1.7179063558578491, - 1.7034413814544678, - 1.7029229402542114, - 1.7163653373718262, - 1.7434018850326538, - 1.783294916152954, - 1.8349566459655762, - 1.896977424621582, - 1.967665672302246, - 2.045093059539795, - 2.127147912979126, - 2.3023126125335693, - 2.253801107406616, - 2.204224109649658, - 2.154933452606201, - 2.107274055480957, - 2.0625457763671875, - 2.0219686031341553, - 1.986649513244629, - 1.9575519561767578, - 1.935469388961792, - 1.9210045337677002, - 1.9145514965057373, - 1.9162867069244385, - 1.9261627197265625, - 1.943910002708435, - 1.96904456615448, - 2.0008809566497803, - 2.03855037689209, - 2.0810256004333496, - 2.127147912979126, - 2.3023126125335693, - 2.294861078262329, - 2.285223960876465, - 2.2736639976501465, - 2.2604963779449463, - 2.2460803985595703, - 2.230809211730957, - 2.215099334716797, - 2.1993796825408936, - 2.1840784549713135, - 2.1696135997772217, - 2.156379222869873, - 2.1447365283966064, - 2.135003089904785, - 2.1274445056915283, - 2.1222667694091797, - 2.1196112632751465, - 2.1195502281188965, - 2.1220855712890625, - 2.127147912979126, - 2.3023126125335693, - 2.336599111557007, - 2.3675613403320312, - 2.394354820251465, - 2.4162487983703613, - 2.432645559310913, - 2.443098306655884, - 2.447321653366089, - 2.4452006816864014, - 2.436793088912964, - 2.422327995300293, - 2.402200222015381, - 2.3769588470458984, - 2.347292423248291, - 2.31400990486145, - 2.2780191898345947, - 2.240302324295044, - 2.201887607574463, - 2.1638236045837402, - 2.127147912979126, - 2.3023126125335693, - 2.3744921684265137, - 2.4423139095306396, - 2.503927707672119, - 2.5576531887054443, - 2.6020243167877197, - 2.635831117630005, - 2.658151626586914, - 2.6683766841888428, - 2.666227340698242, - 2.6517622470855713, - 2.6253762245178223, - 2.5877888202667236, - 2.540025234222412, - 2.483388662338257, - 2.4194235801696777, - 2.349874973297119, - 2.2766401767730713, - 2.201716661453247, - 2.127147912979126, - 2.3023126125335693, - 2.4044339656829834, - 2.5013809204101562, - 2.590508460998535, - 2.669386148452759, - 2.7358617782592773, - 2.7881224155426025, - 2.824742317199707, - 2.8447227478027344, - 2.8475184440612793, - 2.8330535888671875, - 2.801722526550293, - 2.7543795108795166, - 2.6923165321350098, - 2.6172261238098145, - 2.5311567783355713, - 2.4364559650421143, - 2.335707187652588, - 2.231658458709717, - 2.127147912979126, - 2.3023126125335693, - 2.423179864883423, - 2.5383613109588623, - 2.6447150707244873, - 2.739339828491211, - 2.8196544647216797, - 2.8834686279296875, - 2.9290413856506348, - 2.955129384994507, - 2.9610211849212646, - 2.9465560913085938, - 2.9121289253234863, - 2.8586785793304443, - 2.7876627445220947, - 2.701018810272217, - 2.6011104583740234, - 2.4906623363494873, - 2.372687578201294, - 2.2504043579101562, - 2.127147912979126, - 2.3023126125335693, - 2.4286985397338867, - 2.549248218536377, - 2.660672903060913, - 2.7599337100982666, - 2.844322443008423, - 2.9115376472473145, - 2.9597458839416504, - 2.9876320362091064, - 2.9944353103637695, - 2.9799704551696777, - 2.944631576538086, - 2.88938307762146, - 2.8157317638397217, - 2.72568678855896, - 2.6217041015625, - 2.506620168685913, - 2.3835744857788086, - 2.25592303276062, - 2.127147912979126, - 2.3023126125335693, - 2.4203920364379883, - 2.5328614711761475, - 2.636652946472168, - 2.728935718536377, - 2.807192325592041, - 2.8692879676818848, - 2.91352915763855, - 2.938708782196045, - 2.9441401958465576, - 2.9296751022338867, - 2.8957085609436035, - 2.8431663513183594, - 2.773482084274292, - 2.688556671142578, - 2.5907063484191895, - 2.482600450515747, - 2.367187738418579, - 2.2476162910461426, - 2.127147912979126, - 2.3023126125335693, - 2.399160146713257, - 2.4909768104553223, - 2.575258255004883, - 2.649705410003662, - 2.712287664413452, - 2.7612977027893066, - 2.7953989505767822, - 2.8136610984802246, - 2.8155858516693115, - 2.8011207580566406, - 2.770660638809204, - 2.725036144256592, - 2.665491819381714, - 2.59365177154541, - 2.5114760398864746, - 2.421205520629883, - 2.325303077697754, - 2.226384401321411, - 2.127147912979126, - 2.3023126125335693, - 2.3673038482666016, - 2.428133249282837, - 2.4831416606903076, - 2.5308284759521484, - 2.5698928833007812, - 2.599269390106201, - 2.618156671524048, - 2.626039505004883, - 2.6227030754089355, - 2.6082382202148438, - 2.5830392837524414, - 2.5477938652038574, - 2.5034635066986084, - 2.4512569904327393, - 2.392598867416382, - 2.3290889263153076, - 2.2624595165252686, - 2.194528102874756, - 2.127147912979126, - 2.3023126125335693, - 2.328275203704834, - 2.3511407375335693, - 2.3702852725982666, - 2.3851866722106934, - 2.3954386711120605, - 2.400761127471924, - 2.4010093212127686, - 2.396176338195801, - 2.3863937854766846, - 2.3719289302825928, - 2.3531758785247803, - 2.330646514892578, - 2.304955244064331, - 2.2768027782440186, - 2.246957302093506, - 2.2162325382232666, - 2.185467004776001, - 2.1554996967315674, - 2.127147912979126, - 2.3023126125335693, - 2.286303997039795, - 2.268342971801758, - 2.2489194869995117, - 2.2285635471343994, - 2.2078301906585693, - 2.1872849464416504, - 2.1674885749816895, - 2.1489806175231934, - 2.1322662830352783, - 2.1178011894226074, - 2.105980157852173, - 2.097125768661499, - 2.0914790630340576, - 2.0891942977905273, - 2.090333938598633, - 2.0948667526245117, - 2.1026692390441895, - 2.113528251647949, - 2.127147912979126 - ], - "z": [ - 0.8558326363563538, - 0.8523961305618286, - 0.8702282309532166, - 0.9088425636291504, - 0.9671857953071594, - 1.0436663627624512, - 1.1361984014511108, - 1.2422574758529663, - 1.3589508533477783, - 1.483095407485962, - 1.6113046407699585, - 1.740081548690796, - 1.8659132719039917, - 1.9853675365447998, - 2.0951857566833496, - 2.1923727989196777, - 2.2742772102355957, - 2.338665008544922, - 2.383780002593994, - 2.4083914756774902, - 0.8558326363563538, - 0.8601015210151672, - 0.8854289054870605, - 0.9311238527297974, - 0.9959399104118347, - 1.0781090259552002, - 1.1753900051116943, - 1.2851290702819824, - 1.4043329954147339, - 1.529750108718872, - 1.6579594612121582, - 1.7854636907577515, - 1.9087848663330078, - 2.024559259414673, - 2.1296284198760986, - 2.2211270332336426, - 2.2965586185455322, - 2.3538658618927, - 2.3914854526519775, - 2.4083914756774902, - 0.8558326363563538, - 0.8684916496276855, - 0.9019802808761597, - 0.9553850293159485, - 1.0272490978240967, - 1.115612268447876, - 1.2180641889572144, - 1.3318102359771729, - 1.4537477493286133, - 1.5805505514144897, - 1.7087599039077759, - 1.8348784446716309, - 1.9554660320281982, - 2.0672333240509033, - 2.1671316623687744, - 2.2524361610412598, - 2.320819854736328, - 2.3704171180725098, - 2.3998756408691406, - 2.4083914756774902, - 0.8558326363563538, - 0.8766573071479797, - 0.9180888533592224, - 0.9789971113204956, - 1.05772066116333, - 1.1521120071411133, - 1.259596586227417, - 1.3772423267364502, - 1.501840353012085, - 1.6299917697906494, - 1.7582011222839355, - 1.8829710483551025, - 2.0008981227874756, - 2.1087658405303955, - 2.2036314010620117, - 2.282907724380493, - 2.3444318771362305, - 2.386525869369507, - 2.40804123878479, - 2.4083914756774902, - 0.8558326363563538, - 0.8837136030197144, - 0.9320089221000671, - 0.9994012713432312, - 1.084052324295044, - 1.1836529970169067, - 1.2954864501953125, - 1.4165022373199463, - 1.5433992147445679, - 1.6727160215377808, - 1.800925374031067, - 1.924529790878296, - 2.0401580333709717, - 2.144655704498291, - 2.2351725101470947, - 2.309239387512207, - 2.3648359775543213, - 2.4004459381103516, - 2.41509747505188, - 2.4083914756774902, - 0.8558326363563538, - 0.8888958692550659, - 0.942232072353363, - 1.0143864154815674, - 1.1033908128738403, - 1.2068171501159668, - 1.3218445777893066, - 1.4453352689743042, - 1.573920726776123, - 1.7040934562683105, - 1.8323028087615967, - 1.9550514221191406, - 2.06899094581604, - 2.171013832092285, - 2.2583365440368652, - 2.328577756881714, - 2.379821300506592, - 2.4106690883636475, - 2.4202797412872314, - 2.4083914756774902, - 0.8558326363563538, - 0.8916425108909607, - 0.9476504921913147, - 1.0223288536071777, - 1.113640308380127, - 1.2190945148468018, - 1.3358147144317627, - 1.4606170654296875, - 1.590097427368164, - 1.7207238674163818, - 1.8489331007003784, - 1.9712281227111816, - 2.084272861480713, - 2.184983968734741, - 2.2706139087677, - 2.33882737159729, - 2.387763500213623, - 2.4160873889923096, - 2.4230265617370605, - 2.4083914756774902, - 0.8558326363563538, - 0.8916559219360352, - 0.947676956653595, - 1.0223674774169922, - 1.1136903762817383, - 1.2191544771194458, - 1.3358829021453857, - 1.4606916904449463, - 1.5901764631271362, - 1.720805048942566, - 1.8490142822265625, - 1.9713070392608643, - 2.0843474864959717, - 2.1850521564483643, - 2.2706737518310547, - 2.3388774394989014, - 2.3878023624420166, - 2.41611385345459, - 2.4230399131774902, - 2.4083914756774902, - 0.8558326363563538, - 0.8889346122741699, - 0.9423086047172546, - 1.0144985914230347, - 1.1035354137420654, - 1.2069904804229736, - 1.3220417499542236, - 1.4455509185791016, - 1.5741490125656128, - 1.704328179359436, - 1.8325375318527222, - 1.9552797079086304, - 2.069206714630127, - 2.171211004257202, - 2.258509874343872, - 2.3287224769592285, - 2.3799333572387695, - 2.410745620727539, - 2.420318603515625, - 2.4083914756774902, - 0.8558326363563538, - 0.8837735056877136, - 0.9321271777153015, - 0.999574601650238, - 1.0842759609222412, - 1.1839208602905273, - 1.2957912683486938, - 1.4168355464935303, - 1.5437521934509277, - 1.6730788946151733, - 1.8012882471084595, - 1.9248827695846558, - 2.0404913425445557, - 2.144960403442383, - 2.235440254211426, - 2.3094630241394043, - 2.365009307861328, - 2.400564193725586, - 2.4151575565338135, - 2.4083914756774902, - 0.8558326363563538, - 0.8767319321632385, - 0.9182360172271729, - 0.9792128205299377, - 1.0579988956451416, - 1.1524454355239868, - 1.2599759101867676, - 1.377657413482666, - 1.5022796392440796, - 1.6304434537887573, - 1.7586528062820435, - 1.8834103345870972, - 2.0013132095336914, - 2.109145164489746, - 2.203964948654175, - 2.2831859588623047, - 2.3446474075317383, - 2.3866729736328125, - 2.408115863800049, - 2.4083914756774902, - 0.8558326363563538, - 0.8685728311538696, - 0.9021404385566711, - 0.955619752407074, - 1.0275521278381348, - 1.1159751415252686, - 1.2184770107269287, - 1.3322619199752808, - 1.4542258977890015, - 1.5810420513153076, - 1.7092514038085938, - 1.8353564739227295, - 1.9559175968170166, - 2.0676462650299072, - 2.167494535446167, - 2.2527389526367188, - 2.321054458618164, - 2.370577335357666, - 2.399956703186035, - 2.4083914756774902, - 0.8558326363563538, - 0.8601804971694946, - 0.8855846524238586, - 0.9313521385192871, - 0.9962345361709595, - 1.07846200466156, - 1.175791621208191, - 1.2855684757232666, - 1.4047980308532715, - 1.5302282571792603, - 1.6584374904632568, - 1.785928726196289, - 1.9092241525650024, - 2.02496075630188, - 2.129981517791748, - 2.221421480178833, - 2.2967867851257324, - 2.3540215492248535, - 2.39156436920166, - 2.4083914756774902, - 0.8558326363563538, - 0.8524642586708069, - 0.8703627586364746, - 0.9090396761894226, - 0.9674401879310608, - 1.0439711809158325, - 1.136545181274414, - 1.2426369190216064, - 1.359352469444275, - 1.4835082292556763, - 1.6117175817489624, - 1.7404831647872925, - 1.8662927150726318, - 1.9857144355773926, - 2.0954906940460205, - 2.192627191543579, - 2.2744743824005127, - 2.3387997150421143, - 2.383848190307617, - 2.4083914756774902, - 0.8558326363563538, - 0.8462604284286499, - 0.8581241965293884, - 0.8911003470420837, - 0.9442893862724304, - 1.0162403583526611, - 1.104990839958191, - 1.2081196308135986, - 1.3228139877319336, - 1.445945143699646, - 1.5741543769836426, - 1.7039446830749512, - 1.831775426864624, - 1.9541599750518799, - 2.0677597522735596, - 2.1694765090942383, - 2.256535053253174, - 2.326561212539673, - 2.3776443004608154, - 2.4083914756774902, - 0.8558326363563538, - 0.8422411680221558, - 0.8501952886581421, - 0.8794780969619751, - 0.9292908310890198, - 0.9982746243476868, - 1.0845478773117065, - 1.1857571601867676, - 1.2991420030593872, - 1.4216094017028809, - 1.5498186349868774, - 1.6802726984024048, - 1.809412956237793, - 1.9337170124053955, - 2.0497939586639404, - 2.154477834701538, - 2.24491286277771, - 2.318632125854492, - 2.3736250400543213, - 2.4083914756774902, - 0.8558326363563538, - 0.8408420085906982, - 0.8474352359771729, - 0.8754323720932007, - 0.9240697622299194, - 0.9920206665992737, - 1.0774316787719727, - 1.1779727935791016, - 1.290901780128479, - 1.4131380319595337, - 1.5413472652435303, - 1.672032356262207, - 1.801628589630127, - 1.9266008138656616, - 2.0435400009155273, - 2.149256706237793, - 2.2408671379089355, - 2.3158721923828125, - 2.3722259998321533, - 2.4083914756774902, - 0.8558326363563538, - 0.8422147035598755, - 0.8501431345939636, - 0.8794016242027283, - 0.9291921257972717, - 0.9981564283370972, - 1.0844132900238037, - 1.185610055923462, - 1.2989861965179443, - 1.4214491844177246, - 1.5496585369110107, - 1.680116891860962, - 1.8092658519744873, - 1.9335825443267822, - 2.049675703048706, - 2.15437912940979, - 2.2448363304138184, - 2.318580150604248, - 2.373598575592041, - 2.4083914756774902, - 0.8558326363563538, - 0.8462104201316833, - 0.8580255508422852, - 0.8909557461738586, - 0.9441027045249939, - 1.0160167217254639, - 1.104736328125, - 1.207841396331787, - 1.322519302368164, - 1.4456422328948975, - 1.5738515853881836, - 1.7036499977111816, - 1.8314971923828125, - 1.9539055824279785, - 2.0675363540649414, - 2.1692895889282227, - 2.2563905715942383, - 2.326462507247925, - 2.377594470977783, - 2.4083914756774902, - 0.8558326363563538, - 0.8523961305618286, - 0.8702282309532166, - 0.9088425636291504, - 0.9671857953071594, - 1.0436663627624512, - 1.1361984014511108, - 1.2422575950622559, - 1.3589508533477783, - 1.483095407485962, - 1.611304759979248, - 1.740081548690796, - 1.8659132719039917, - 1.9853675365447998, - 2.0951857566833496, - 2.1923727989196777, - 2.2742772102355957, - 2.338665008544922, - 2.383780002593994, - 2.4083914756774902 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -3.586942195892334, - -3.6103146076202393, - -3.633049726486206, - -3.654526948928833, - -3.6741607189178467, - -3.691415309906006, - -3.705820322036743, - -3.71698260307312, - -3.724597454071045, - -3.7284576892852783, - -3.7284576892852783, - -3.724597454071045, - -3.71698260307312, - -3.705820322036743, - -3.691415309906006, - -3.6741607189178467, - -3.654526948928833, - -3.633049726486206, - -3.6103146076202393, - -3.586942195892334, - -3.586942195892334, - -3.642301082611084, - -3.696150064468384, - -3.7470202445983887, - -3.7935237884521484, - -3.8343923091888428, - -3.8685109615325928, - -3.894949197769165, - -3.9129858016967773, - -3.922128915786743, - -3.922128915786743, - -3.9129858016967773, - -3.894949197769165, - -3.8685109615325928, - -3.8343923091888428, - -3.7935237884521484, - -3.7470202445983887, - -3.696150064468384, - -3.642301082611084, - -3.586942195892334, - -3.586942195892334, - -3.6682887077331543, - -3.7474162578582764, - -3.8221664428710938, - -3.89050030708313, - -3.9505538940429688, - -4.0006890296936035, - -4.039538383483887, - -4.066042423248291, - -4.079477310180664, - -4.079477310180664, - -4.066042423248291, - -4.039538383483887, - -4.000689506530762, - -3.9505538940429688, - -3.89050030708313, - -3.8221664428710938, - -3.7474162578582764, - -3.6682887077331543, - -3.586942195892334, - -3.586942195892334, - -3.6854610443115234, - -3.78129243850708, - -3.8718223571777344, - -3.9545817375183105, - -4.027312755584717, - -4.088031768798828, - -4.135082244873047, - -4.167181015014648, - -4.183452129364014, - -4.183452129364014, - -4.167181015014648, - -4.135082244873047, - -4.088031768798828, - -4.027312755584717, - -3.9545817375183105, - -3.8718223571777344, - -3.78129243850708, - -3.6854610443115234, - -3.586942195892334, - -3.586942195892334, - -3.6919572353363037, - -3.794107675552368, - -3.8906073570251465, - -3.978823661804199, - -4.0563507080078125, - -4.121073246002197, - -4.1712260246276855, - -4.205441474914551, - -4.222785472869873, - -4.222785472869873, - -4.205441474914551, - -4.1712260246276855, - -4.121073246002197, - -4.0563507080078125, - -3.978823661804199, - -3.8906073570251465, - -3.794107675552368, - -3.6919572353363037, - -3.586942195892334, - -3.586942195892334, - -3.6870734691619873, - -3.784473419189453, - -3.8764853477478027, - -3.960599184036255, - -4.034520626068115, - -4.096233367919922, - -4.144053936004639, - -4.176677703857422, - -4.193215370178223, - -4.193215370178223, - -4.176677703857422, - -4.144053936004639, - -4.096233367919922, - -4.034520626068115, - -3.960599184036255, - -3.8764853477478027, - -3.784473419189453, - -3.6870734691619873, - -3.586942195892334, - -3.586942195892334, - -3.6713390350341797, - -3.7534337043762207, - -3.830986976623535, - -3.901883125305176, - -3.964188814163208, - -4.016203880310059, - -4.056509971618652, - -4.084007740020752, - -4.097946643829346, - -4.097946643829346, - -4.084007740020752, - -4.056509971618652, - -4.016203880310059, - -3.964188814163208, - -3.901883363723755, - -3.830986976623535, - -3.7534337043762207, - -3.6713390350341797, - -3.586942195892334, - -3.586942195892334, - -3.646458864212036, - -3.7043519020080566, - -3.759042501449585, - -3.8090384006500244, - -3.8529763221740723, - -3.889657497406006, - -3.918081283569336, - -3.9374725818634033, - -3.9473021030426025, - -3.9473021030426025, - -3.9374725818634033, - -3.918081283569336, - -3.889657497406006, - -3.8529763221740723, - -3.8090384006500244, - -3.759042501449585, - -3.7043519020080566, - -3.646458864212036, - -3.586942195892334, - -3.586942195892334, - -3.615128993988037, - -3.6425468921661377, - -3.6684482097625732, - -3.6921260356903076, - -3.712934970855713, - -3.73030686378479, - -3.7437684535980225, - -3.7529518604278564, - -3.7576072216033936, - -3.7576072216033936, - -3.7529518604278564, - -3.7437684535980225, - -3.73030686378479, - -3.712934970855713, - -3.6921260356903076, - -3.6684482097625732, - -3.6425468921661377, - -3.615128993988037, - -3.586942195892334, - -3.586942195892334, - -3.580744743347168, - -3.574716329574585, - -3.569021463394165, - -3.5638153553009033, - -3.5592403411865234, - -3.5554206371307373, - -3.5524609088897705, - -3.5504417419433594, - -3.5494182109832764, - -3.5494182109832764, - -3.5504417419433594, - -3.5524609088897705, - -3.5554206371307373, - -3.5592403411865234, - -3.5638153553009033, - -3.569021463394165, - -3.574716329574585, - -3.580744743347168, - -3.586942195892334, - -3.586942195892334, - -3.547032117843628, - -3.5082106590270996, - -3.471536874771118, - -3.4380109310150146, - -3.4085476398468018, - -3.3839502334594727, - -3.3648900985717773, - -3.351886749267578, - -3.3452954292297363, - -3.3452954292297363, - -3.351886749267578, - -3.3648900985717773, - -3.3839502334594727, - -3.4085474014282227, - -3.4380109310150146, - -3.471536874771118, - -3.5082106590270996, - -3.547032117843628, - -3.586942195892334, - -3.586942195892334, - -3.5176444053649902, - -3.4502367973327637, - -3.3865580558776855, - -3.328345537185669, - -3.277186632156372, - -3.2344770431518555, - -3.2013819217681885, - -3.1788039207458496, - -3.167358636856079, - -3.167358636856079, - -3.1788039207458496, - -3.2013819217681885, - -3.2344770431518555, - -3.277186632156372, - -3.328345537185669, - -3.3865580558776855, - -3.4502367973327637, - -3.5176444053649902, - -3.586942195892334, - -3.586942195892334, - -3.4957661628723145, - -3.4070770740509033, - -3.323294162750244, - -3.2467029094696045, - -3.1793925762176514, - -3.123199224472046, - -3.079655408859253, - -3.0499491691589355, - -3.034890651702881, - -3.034890651702881, - -3.0499491691589355, - -3.079655408859253, - -3.123198986053467, - -3.1793925762176514, - -3.2467029094696045, - -3.323294162750244, - -3.4070770740509033, - -3.4957661628723145, - -3.586942195892334, - -3.586942195892334, - -3.4837682247161865, - -3.383408308029175, - -3.288600444793701, - -3.201930522918701, - -3.125762939453125, - -3.0621747970581055, - -3.0129010677337646, - -2.979285717010498, - -2.962245464324951, - -2.962245464324951, - -2.979285717010498, - -3.0129010677337646, - -3.0621747970581055, - -3.125762939453125, - -3.201930522918701, - -3.288600444793701, - -3.383408308029175, - -3.4837682247161865, - -3.586942195892334, - -3.586942195892334, - -3.4829506874084473, - -3.381795883178711, - -3.2862367630004883, - -3.198880195617676, - -3.1221091747283936, - -3.0580172538757324, - -3.0083532333374023, - -2.9744715690612793, - -2.957296371459961, - -2.957296371459961, - -2.9744715690612793, - -3.0083532333374023, - -3.0580172538757324, - -3.1221089363098145, - -3.198880195617676, - -3.2862367630004883, - -3.381795883178711, - -3.4829506874084473, - -3.586942195892334, - -3.586942195892334, - -3.4934024810791016, - -3.402414083480835, - -3.3164591789245605, - -3.237882375717163, - -3.1688270568847656, - -3.1111767292022705, - -3.0665042400360107, - -3.036027669906616, - -3.0205788612365723, - -3.0205788612365723, - -3.036027669906616, - -3.0665042400360107, - -3.1111767292022705, - -3.1688270568847656, - -3.237882375717163, - -3.3164591789245605, - -3.402414083480835, - -3.4934024810791016, - -3.586942195892334, - -3.586942195892334, - -3.513990640640259, - -3.4430289268493652, - -3.375992774963379, - -3.3147106170654297, - -3.260854482650757, - -3.215893030166626, - -3.1810529232025146, - -3.1572842597961426, - -3.145235776901245, - -3.145235776901245, - -3.1572842597961426, - -3.1810529232025146, - -3.215893030166626, - -3.260854482650757, - -3.3147106170654297, - -3.375992774963379, - -3.4430289268493652, - -3.513990640640259, - -3.586942195892334, - -3.586942195892334, - -3.5424842834472656, - -3.4992387294769287, - -3.458385944366455, - -3.421039581298828, - -3.388218641281128, - -3.360818386077881, - -3.339586019515991, - -3.325101137161255, - -3.317758560180664, - -3.317758560180664, - -3.325101137161255, - -3.339586019515991, - -3.360818386077881, - -3.388218641281128, - -3.421039581298828, - -3.458385944366455, - -3.4992387294769287, - -3.5424842834472656, - -3.586942195892334, - -3.586942195892334, - -3.5757954120635986, - -3.564952850341797, - -3.5547101497650146, - -3.54534649848938, - -3.5371174812316895, - -3.530247688293457, - -3.5249242782592773, - -3.5212924480438232, - -3.519451379776001, - -3.519451379776001, - -3.5212924480438232, - -3.5249242782592773, - -3.530247688293457, - -3.5371174812316895, - -3.54534649848938, - -3.5547101497650146, - -3.564952850341797, - -3.5757954120635986, - -3.586942195892334, - -3.586942195892334, - -3.6103148460388184, - -3.633049726486206, - -3.654526948928833, - -3.6741607189178467, - -3.691415548324585, - -3.705820322036743, - -3.71698260307312, - -3.724597692489624, - -3.7284579277038574, - -3.7284579277038574, - -3.724597692489624, - -3.71698260307312, - -3.705820322036743, - -3.691415548324585, - -3.6741607189178467, - -3.654526948928833, - -3.633049726486206, - -3.6103148460388184, - -3.586942195892334 - ], - "y": [ - 3.0210771560668945, - 3.0270209312438965, - 3.015059471130371, - 2.98551869392395, - 2.9392049312591553, - 2.8773810863494873, - 2.8017334938049316, - 2.7143261432647705, - 2.6175427436828613, - 2.5140233039855957, - 2.4065918922424316, - 2.2981789112091064, - 2.1917412281036377, - 2.0901825428009033, - 1.9962730407714844, - 1.912574291229248, - 1.8413692712783813, - 1.7846003770828247, - 1.7438161373138428, - 1.720129132270813, - 3.0210771560668945, - 2.9985523223876953, - 2.9588990211486816, - 2.9031982421875, - 2.8329696655273438, - 2.750129222869873, - 2.6569361686706543, - 2.5559325218200684, - 2.449873685836792, - 2.3416526317596436, - 2.2342212200164795, - 2.130509853363037, - 2.0333476066589355, - 1.9453849792480469, - 1.8690211772918701, - 1.8063390254974365, - 1.7590487003326416, - 1.7284399271011353, - 1.7153477668762207, - 1.720129132270813, - 3.0210771560668945, - 2.9715633392333984, - 2.9056570529937744, - 2.8251559734344482, - 2.732255697250366, - 2.629490613937378, - 2.5196638107299805, - 2.405770778656006, - 2.2909185886383057, - 2.1782400608062744, - 2.0708086490631104, - 1.9715547561645508, - 1.8831859827041626, - 1.808112621307373, - 1.748382568359375, - 1.705625057220459, - 1.6810064315795898, - 1.6751980781555176, - 1.6883587837219238, - 1.720129132270813, - 3.0210771560668945, - 2.9489786624908447, - 2.8611035346984863, - 2.7598488330841064, - 2.6479766368865967, - 2.528538465499878, - 2.404792070388794, - 2.2801132202148438, - 2.157902479171753, - 2.0414938926696777, - 1.9340624809265137, - 1.838538646697998, - 1.757528305053711, - 1.6932408809661865, - 1.647430419921875, - 1.6213459968566895, - 1.615699291229248, - 1.6306445598602295, - 1.665773868560791, - 1.720129132270813, - 3.0210771560668945, - 2.9332454204559326, - 2.830066204071045, - 2.7143542766571045, - 2.5892655849456787, - 2.458212375640869, - 2.3247694969177246, - 2.1925766468048096, - 2.065239906311035, - 1.946232795715332, - 1.838801383972168, - 1.7458760738372803, - 1.6699918508529663, - 1.6132183074951172, - 1.5771043300628662, - 1.562634825706482, - 1.570204734802246, - 1.599607229232788, - 1.650040626525879, - 1.7201292514801025, - 3.0210771560668945, - 2.9260687828063965, - 2.815908908843994, - 2.6936020851135254, - 2.5624847412109375, - 2.426133394241333, - 2.2882673740386963, - 2.152647018432617, - 2.022972345352173, - 1.9027798175811768, - 1.7953484058380127, - 1.703608512878418, - 1.6300623416900635, - 1.5767161846160889, - 1.54502534866333, - 1.5358539819717407, - 1.549452543258667, - 1.5854496955871582, - 1.6428639888763428, - 1.7201292514801025, - 3.0210771560668945, - 2.9282264709472656, - 2.8201651573181152, - 2.699841022491455, - 2.5705361366271973, - 2.4357776641845703, - 2.299241304397583, - 2.16465163230896, - 2.035679578781128, - 1.9158436059951782, - 1.8084121942520142, - 1.716315746307373, - 1.6420667171478271, - 1.5876902341842651, - 1.5546696186065674, - 1.5439053773880005, - 1.5556914806365967, - 1.5897060632705688, - 1.645021677017212, - 1.7201292514801025, - 3.0210771560668945, - 2.9394843578338623, - 2.842374086380005, - 2.7323951721191406, - 2.6125473976135254, - 2.486100196838379, - 2.3565022945404053, - 2.2272891998291016, - 2.101985216140747, - 1.984008550643921, - 1.8765771389007568, - 1.7826213836669922, - 1.7047042846679688, - 1.6449512243270874, - 1.6049920320510864, - 1.5859167575836182, - 1.5882456302642822, - 1.611915111541748, - 1.6562796831130981, - 1.7201292514801025, - 3.0210771560668945, - 2.958622932434082, - 2.880129098892212, - 2.787736654281616, - 2.6839659214019775, - 2.5716476440429688, - 2.453845262527466, - 2.3337721824645996, - 2.2147037982940674, - 2.0998878479003906, - 1.9924565553665161, - 1.8953399658203125, - 1.8111873865127563, - 1.7422940731048584, - 1.6905395984649658, - 1.6573352813720703, - 1.6435871124267578, - 1.6496700048446655, - 1.6754181385040283, - 1.720129132270813, - 3.0210771560668945, - 2.983567714691162, - 2.9293384552001953, - 2.8598685264587402, - 2.777052402496338, - 2.683149576187134, - 2.580721378326416, - 2.4725613594055176, - 2.3616204261779785, - 2.250924587249756, - 2.143493175506592, - 2.0422565937042236, - 1.9499766826629639, - 1.8691701889038086, - 1.8020415306091309, - 1.7504217624664307, - 1.7157189846038818, - 1.698879599571228, - 1.7003631591796875, - 1.720129132270813, - 3.0210771560668945, - 3.0116162300109863, - 2.9846701622009277, - 2.940973997116089, - 2.8817195892333984, - 2.808523178100586, - 2.723381519317627, - 2.62861704826355, - 2.5268144607543945, - 2.4207510948181152, - 2.313319683074951, - 2.2074506282806396, - 2.106032133102417, - 2.0118305683135986, - 1.9274152517318726, - 1.8550888299942017, - 1.7968244552612305, - 1.754211187362671, - 1.7284114360809326, - 1.720129132270813, - 3.0210771560668945, - 3.0397284030914307, - 3.040127754211426, - 3.022264003753662, - 2.9866249561309814, - 2.9341821670532227, - 2.8663666248321533, - 2.7850279808044434, - 2.692384719848633, - 2.5909640789031982, - 2.483532667160034, - 2.373020887374878, - 2.2624430656433105, - 2.154815673828125, - 2.053074359893799, - 1.9599943161010742, - 1.8781145811080933, - 1.8096686601638794, - 1.756523609161377, - 1.720129132270813, - 3.0210771560668945, - 3.0648579597473145, - 3.0897014141082764, - 3.0949296951293945, - 3.0804004669189453, - 3.0465097427368164, - 2.9941818714141846, - 2.92484450340271, - 2.840388774871826, - 2.7431187629699707, - 2.6356873512268066, - 2.5210249423980713, - 2.402259588241577, - 2.282630681991577, - 2.1654016971588135, - 2.053769826889038, - 1.9507802724838257, - 1.8592424392700195, - 1.7816532850265503, - 1.720129132270813, - 3.0210769176483154, - 3.0842819213867188, - 3.1280195713043213, - 3.151096820831299, - 3.152884006500244, - 3.1333329677581787, - 3.0929765701293945, - 3.0329155921936035, - 2.9547884464263916, - 2.8607263565063477, - 2.7532949447631836, - 2.6354246139526367, - 2.5103306770324707, - 2.381425380706787, - 2.252224922180176, - 2.126253604888916, - 2.0069472789764404, - 1.897560477256775, - 1.8010772466659546, - 1.720129132270813, - 3.0210769176483154, - 3.095895290374756, - 3.1509294509887695, - 3.184678077697754, - 3.196221113204956, - 3.1852433681488037, - 3.1520445346832275, - 3.097529888153076, - 3.023186445236206, - 2.931042432785034, - 2.82361102104187, - 2.703822612762451, - 2.5749449729919434, - 2.44049334526062, - 2.30413556098938, - 2.169590473175049, - 2.0405287742614746, - 1.9204703569412231, - 1.8126904964447021, - 1.720129132270813, - 3.0210769176483154, - 3.0984394550323486, - 3.1559484004974365, - 3.19203519821167, - 3.2057154178619385, - 3.1966159343719482, - 3.164985179901123, - 3.1116855144500732, - 3.0381710529327393, - 2.9464471340179443, - 2.8390157222747803, - 2.7188072204589844, - 2.5891005992889404, - 2.4534339904785156, - 2.3155078887939453, - 2.1790847778320312, - 2.0478856563568115, - 1.9254894256591797, - 1.8152347803115845, - 1.720129132270813, - 3.0210769176483154, - 3.0916388034820557, - 3.1425328254699707, - 3.172370433807373, - 3.180337905883789, - 3.166217803955078, - 3.1303956508636475, - 3.073848247528076, - 2.9981184005737305, - 2.905271053314209, - 2.797839641571045, - 2.6787543296813965, - 2.5512635707855225, - 2.418844699859619, - 2.2851099967956543, - 2.153707265853882, - 2.0282208919525146, - 1.9120737314224243, - 1.808434247970581, - 1.720129132270813, - 3.0210771560668945, - 3.076230525970459, - 3.112136125564575, - 3.127814769744873, - 3.1228387355804443, - 3.0973434448242188, - 3.0520248413085938, - 2.9881186485290527, - 2.9073684215545654, - 2.811976432800293, - 2.704545021057129, - 2.5880045890808105, - 2.465533971786499, - 2.3404738903045654, - 2.216235637664795, - 2.096208095550537, - 1.9836653470993042, - 1.8816771507263184, - 1.7930257320404053, - 1.720129132270813, - 3.0210771560668945, - 3.0538840293884277, - 3.0680527687072754, - 3.0631966590881348, - 3.0394487380981445, - 2.9974565505981445, - 2.9383649826049805, - 2.8637866973876953, - 2.7757556438446045, - 2.67667293548584, - 2.569241523742676, - 2.4563918113708496, - 2.3412020206451416, - 2.226814031600952, - 2.1163485050201416, - 2.0128180980682373, - 1.919047236442566, - 1.837593674659729, - 1.770679235458374, - 1.720129132270813, - 3.0210771560668945, - 3.0270209312438965, - 3.015059471130371, - 2.98551869392395, - 2.939204692840576, - 2.877380847930908, - 2.8017334938049316, - 2.7143259048461914, - 2.6175425052642822, - 2.5140233039855957, - 2.4065918922424316, - 2.2981786727905273, - 2.1917412281036377, - 2.0901825428009033, - 1.9962730407714844, - 1.9125741720199585, - 1.8413691520690918, - 1.7846003770828247, - 1.7438161373138428, - 1.720129132270813 - ], - "z": [ - 1.0925452709197998, - 1.1159420013427734, - 1.1574435234069824, - 1.2159178256988525, - 1.2897696495056152, - 1.3769848346710205, - 1.4751842021942139, - 1.5816892385482788, - 1.6935945749282837, - 1.8078479766845703, - 1.9213327169418335, - 2.0309531688690186, - 2.1337194442749023, - 2.226828098297119, - 2.307739496231079, - 2.374246597290039, - 2.4245352745056152, - 2.4572336673736572, - 2.471449851989746, - 2.4667961597442627, - 1.0925452709197998, - 1.0889919996261597, - 1.104278564453125, - 1.1379882097244263, - 1.1892012357711792, - 1.2565206289291382, - 1.3381102085113525, - 1.4317444562911987, - 1.5348691940307617, - 1.6446715593338013, - 1.7581562995910645, - 1.8722279071807861, - 1.9837746620178223, - 2.089754104614258, - 2.1872754096984863, - 2.2736780643463135, - 2.3466057777404785, - 2.404068946838379, - 2.444499969482422, - 2.4667961597442627, - 1.0925452709197998, - 1.063442587852478, - 1.0538767576217651, - 1.0641086101531982, - 1.0938591957092285, - 1.1423170566558838, - 1.2081600427627563, - 1.2895923852920532, - 1.3843928575515747, - 1.4899754524230957, - 1.6034601926803589, - 1.7217515707015991, - 1.8416227102279663, - 1.9598040580749512, - 2.0730717182159424, - 2.1783361434936523, - 2.272726058959961, - 2.3536670207977295, - 2.4189505577087402, - 2.4667961597442627, - 1.0925452709197998, - 1.042062520980835, - 1.0116996765136719, - 1.0022852420806885, - 1.014075756072998, - 1.0467495918273926, - 1.0994157791137695, - 1.1706373691558838, - 1.258471965789795, - 1.3605234622955322, - 1.4740082025527954, - 1.5958305597305298, - 1.7226676940917969, - 1.8510596752166748, - 1.9775042533874512, - 2.098552703857422, - 2.210902690887451, - 2.3114898204803467, - 2.3975703716278076, - 2.4667961597442627, - 1.0925452709197998, - 1.0271685123443604, - 0.9823179841041565, - 0.9592172503471375, - 0.9584962725639343, - 0.9801747798919678, - 1.0236613750457764, - 1.0877701044082642, - 1.1707520484924316, - 1.2703436613082886, - 1.3838284015655518, - 1.5081106424331665, - 1.6398003101348877, - 1.7753053903579712, - 1.9109294414520264, - 2.042973279953003, - 2.167834758758545, - 2.2821083068847656, - 2.382676362991333, - 2.4667961597442627, - 1.0925452709197998, - 1.0203746557235718, - 0.9689156413078308, - 0.9395719170570374, - 0.9331439137458801, - 0.9498068690299988, - 0.9891063570976257, - 1.0499703884124756, - 1.1307388544082642, - 1.2292084693908691, - 1.3426930904388428, - 1.468097448348999, - 1.6020007133483887, - 1.7407503128051758, - 1.8805615901947021, - 2.017620801925659, - 2.1481895446777344, - 2.2687058448791504, - 2.375882625579834, - 2.4667961597442627, - 1.0925452709197998, - 1.0224171876907349, - 0.9729449152946472, - 0.9454781413078308, - 0.9407658576965332, - 0.9589367508888245, - 0.9994950890541077, - 1.0613346099853516, - 1.142768383026123, - 1.2415753602981567, - 1.35506010055542, - 1.4801270961761475, - 1.613364815711975, - 1.7511390447616577, - 1.8896913528442383, - 2.025242805480957, - 2.1540956497192383, - 2.272735118865967, - 2.377924919128418, - 2.4667961597442627, - 1.0925452709197998, - 1.0330746173858643, - 0.9939692616462708, - 0.9762958288192749, - 0.9805362224578857, - 1.0065749883651733, - 1.0537017583847046, - 1.1206310987472534, - 1.2055373191833496, - 1.3061044216156006, - 1.4195890426635742, - 1.5428959131240845, - 1.672661304473877, - 1.8053456544876099, - 1.937329649925232, - 2.0650131702423096, - 2.184913396835327, - 2.293759346008301, - 2.388582706451416, - 2.4667961597442627, - 1.0925452709197998, - 1.051192283630371, - 1.029710292816162, - 1.0286853313446045, - 1.0481452941894531, - 1.0875592231750488, - 1.1458523273468018, - 1.2214341163635254, - 1.3122433423995972, - 1.4158027172088623, - 1.5292874574661255, - 1.6496020555496216, - 1.7734644412994385, - 1.897496223449707, - 2.0183138847351074, - 2.132622241973877, - 2.237302780151367, - 2.329500675201416, - 2.4067001342773438, - 2.4667961597442627, - 1.0925452709197998, - 1.0748066902160645, - 1.076295018196106, - 1.0969696044921875, - 1.1362664699554443, - 1.1931138038635254, - 1.265960693359375, - 1.3528203964233398, - 1.451323390007019, - 1.558782935142517, - 1.6722676753997803, - 1.788681983947754, - 1.9048506021499634, - 2.0176048278808594, - 2.123868465423584, - 2.220743417739868, - 2.3055872917175293, - 2.3760852813720703, - 2.430314540863037, - 2.4667961597442627, - 1.0925452709197998, - 1.1013588905334473, - 1.1286752223968506, - 1.1737489700317383, - 1.2353506088256836, - 1.3117998838424683, - 1.4010114669799805, - 1.5005519390106201, - 1.6077059507369995, - 1.7195508480072021, - 1.8330354690551758, - 1.9450645446777344, - 2.052582263946533, - 2.1526553630828857, - 2.2425546646118164, - 2.3198275566101074, - 2.382366418838501, - 2.4284653663635254, - 2.45686674118042, - 2.4667961597442627, - 1.0925452709197998, - 1.1279716491699219, - 1.1811745166778564, - 1.2507030963897705, - 1.334660291671753, - 1.4307562112808228, - 1.5363696813583374, - 1.6486197710037231, - 1.7644445896148682, - 1.880684733390808, - 1.9941694736480713, - 2.1018033027648926, - 2.2006499767303467, - 2.2880136966705322, - 2.361510992050171, - 2.4191372394561768, - 2.459320545196533, - 2.4809646606445312, - 2.4834794998168945, - 2.4667961597442627, - 1.0925452709197998, - 1.1517608165740967, - 1.2281041145324707, - 1.3194926977157593, - 1.423433780670166, - 1.5370919704437256, - 1.6573671102523804, - 1.7809784412384033, - 1.9045541286468506, - 2.0247232913970947, - 2.1382079124450684, - 2.241912841796875, - 2.3330087661743164, - 2.409011125564575, - 2.4678468704223633, - 2.50791072845459, - 2.5281102657318115, - 2.5278942584991455, - 2.5072686672210693, - 2.4667961597442627, - 1.0925452709197998, - 1.1701486110687256, - 1.264378309249878, - 1.3726637363433838, - 1.492051124572754, - 1.6192841529846191, - 1.7508920431137085, - 1.8832850456237793, - 2.0128517150878906, - 2.1360576152801514, - 2.249542474746704, - 2.350210189819336, - 2.4353153705596924, - 2.5025360584259033, - 2.5500388145446777, - 2.5765280723571777, - 2.5812811851501465, - 2.5641684532165527, - 2.5256564617156982, - 2.4667961597442627, - 1.0925452709197998, - 1.1811425685882568, - 1.2860660552978516, - 1.4044538736343384, - 1.533076524734497, - 1.6684256792068481, - 1.8068093061447144, - 1.9444526433944702, - 2.077601194381714, - 2.202622890472412, - 2.316107749938965, - 2.4149599075317383, - 2.4964828491210938, - 2.558453321456909, - 2.5991804599761963, - 2.6175537109375, - 2.6130714416503906, - 2.5858561992645264, - 2.5366504192352295, - 2.4667961597442627, - 1.0925452709197998, - 1.1835510730743408, - 1.290817379951477, - 1.4114184379577637, - 1.5420644283294678, - 1.6791915893554688, - 1.8190596103668213, - 1.9578531980514526, - 2.0917866230010986, - 2.2172060012817383, - 2.330690860748291, - 2.429145097732544, - 2.509883403778076, - 2.5707035064697266, - 2.6099462509155273, - 2.6265413761138916, - 2.6200358867645264, - 2.5906076431274414, - 2.5390589237213135, - 2.4667961597442627, - 1.0925452709197998, - 1.1771132946014404, - 1.2781174182891846, - 1.3928025960922241, - 1.5180405378341675, - 1.650415062904358, - 1.7863153219223022, - 1.9220343828201294, - 2.05387020111084, - 2.1782264709472656, - 2.2917110919952393, - 2.391228675842285, - 2.474064588546753, - 2.537959337234497, - 2.581169843673706, - 2.602517604827881, - 2.6014199256896973, - 2.5779075622558594, - 2.532621145248413, - 2.4667961597442627, - 1.0925452709197998, - 1.1625266075134277, - 1.2493422031402588, - 1.350623607635498, - 1.4636083841323853, - 1.5852144956588745, - 1.7121248245239258, - 1.840877652168274, - 1.9679609537124634, - 2.0899081230163574, - 2.203392744064331, - 2.3053195476531982, - 2.3929078578948975, - 2.46376895904541, - 2.5159692764282227, - 2.5480854511260986, - 2.55924129486084, - 2.5491323471069336, - 2.5180344581604004, - 2.4667961597442627, - 1.0925452709197998, - 1.1413722038269043, - 1.2076101303100586, - 1.289452314376831, - 1.3846665620803833, - 1.4906553030014038, - 1.6045277118682861, - 1.7231776714324951, - 1.8433685302734375, - 1.9618217945098877, - 2.0753064155578613, - 2.180727005004883, - 2.275207996368408, - 2.3561716079711914, - 2.421410083770752, - 2.4691433906555176, - 2.4980697631835938, - 2.5074002742767334, - 2.496880054473877, - 2.4667961597442627, - 1.0925452709197998, - 1.1159420013427734, - 1.1574435234069824, - 1.215917706489563, - 1.2897696495056152, - 1.3769848346710205, - 1.4751842021942139, - 1.5816891193389893, - 1.6935945749282837, - 1.8078478574752808, - 1.921332597732544, - 2.0309531688690186, - 2.1337194442749023, - 2.226828098297119, - 2.307739496231079, - 2.374246597290039, - 2.4245352745056152, - 2.4572336673736572, - 2.471449851989746, - 2.4667961597442627 - ] - }, - { - "marker": { - "color": "black", - "size": 2 - }, - "mode": "markers", - "name": "Means", - "type": "scatter3d", - "x": [ - -0.18377050757408142, - -0.0864175409078598, - 0.017598956823349, - 0.12333059310913086, - 0.2297331690788269, - 0.33646488189697266, - 0.4433820843696594, - 0.5504140853881836, - 0.6575219035148621, - 0.7646824717521667, - 0.8718811869621277, - 0.9791085124015808, - 1.086357593536377, - 1.1936237812042236, - 1.300903558731079 - ], - "y": [ - -0.3563395142555237, - -0.23127293586730957, - -0.09764590859413147, - 0.038184523582458496, - 0.17487680912017822, - 0.3119920492172241, - 0.44934552907943726, - 0.5868465304374695, - 0.7244448065757751, - 0.8621109127998352, - 0.9998261332511902, - 1.137578010559082, - 1.275357723236084, - 1.4131596088409424, - 1.5509788990020752 - ], - "z": [ - -0.18800273537635803, - 0.062225341796875, - 0.32958078384399414, - 0.6013447046279907, - 0.8748331069946289, - 1.149167537689209, - 1.4239786863327026, - 1.699084997177124, - 1.974386215209961, - 2.2498228549957275, - 2.525357723236084, - 2.8009660243988037, - 3.076630115509033, - 3.3523383140563965, - 3.6280813217163086 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.23518574237823486, - -0.24089595675468445, - -0.245047926902771, - -0.24752841889858246, - -0.24826976656913757, - -0.2472517341375351, - -0.24450209736824036, - -0.24009586870670319, - -0.23415322601795197, - -0.22683627903461456, - -0.21834459900856018, - -0.20890983939170837, - -0.1987893432378769, - -0.18825916945934296, - -0.17760656774044037, - -0.16712208092212677, - -0.15709173679351807, - -0.1477891057729721, - -0.13946795463562012, - -0.13235527276992798, - -0.23518574237823486, - -0.23801350593566895, - -0.23936167359352112, - -0.23919345438480377, - -0.2375134527683258, - -0.2343674749135971, - -0.22984133660793304, - -0.22405850887298584, - -0.21717673540115356, - -0.20938372611999512, - -0.20089206099510193, - -0.19193334877490997, - -0.18275198340415955, - -0.17359840869903564, - -0.1647222936153412, - -0.156365767121315, - -0.14875677227973938, - -0.14210285246372223, - -0.1365855187177658, - -0.13235527276992798, - -0.23518574237823486, - -0.23474864661693573, - -0.23292100429534912, - -0.22975265979766846, - -0.22533005475997925, - -0.2197738140821457, - -0.21323548257350922, - -0.20589342713356018, - -0.1979479193687439, - -0.18961569666862488, - -0.1811240166425705, - -0.1727045327425003, - -0.1645869016647339, - -0.15699255466461182, - -0.15012863278388977, - -0.14418238401412964, - -0.13931597769260406, - -0.13566218316555023, - -0.1333206593990326, - -0.13235527276992798, - -0.23518574237823486, - -0.23145516216754913, - -0.22642387449741364, - -0.2202291041612625, - -0.2130398452281952, - -0.2050521969795227, - -0.1964840441942215, - -0.18756909668445587, - -0.17855052649974823, - -0.169674351811409, - -0.16118267178535461, - -0.15330713987350464, - -0.14626257121562958, - -0.1402411162853241, - -0.13540703058242798, - -0.13189217448234558, - -0.12979242205619812, - -0.12916505336761475, - -0.130027174949646, - -0.13235527276992798, - -0.23518574237823486, - -0.228489950299263, - -0.22057433426380157, - -0.21165479719638824, - -0.20197466015815735, - -0.19179795682430267, - -0.1814022809267044, - -0.17107121646404266, - -0.1610865443944931, - -0.15172064304351807, - -0.14322896301746368, - -0.1358431577682495, - -0.12976469099521637, - -0.125159353017807, - -0.12215277552604675, - -0.12082697451114655, - -0.12121810764074326, - -0.12331550568342209, - -0.12706196308135986, - -0.13235527276992798, - -0.23518574237823486, - -0.22617433965206146, - -0.21600627899169922, - -0.20495890080928802, - -0.19333356618881226, - -0.18144738674163818, - -0.16962456703186035, - -0.158187597990036, - -0.14744848012924194, - -0.1377001255750656, - -0.12920846045017242, - -0.12220509350299835, - -0.11688107997179031, - -0.11338163167238235, - -0.11180220544338226, - -0.11218588799238205, - -0.11452221870422363, - -0.11874745786190033, - -0.12474635243415833, - -0.13235527276992798, - -0.23518574237823486, - -0.2247592657804489, - -0.2132147252559662, - -0.20086702704429626, - -0.1880529820919037, - -0.17512212693691254, - -0.1624271720647812, - -0.15031439065933228, - -0.13911423087120056, - -0.12913216650485992, - -0.12064049392938614, - -0.11387083679437637, - -0.10900787264108658, - -0.10618423670530319, - -0.10547693818807602, - -0.10690529644489288, - -0.11043034493923187, - -0.1159559041261673, - -0.12333127856254578, - -0.13235527276992798, - -0.23518574237823486, - -0.22439807653427124, - -0.21250219643115997, - -0.1998225897550583, - -0.18670512735843658, - -0.17350761592388153, - -0.1605900526046753, - -0.1483047902584076, - -0.13698692619800568, - -0.12694521248340607, - -0.11845353990793228, - -0.11174353957176208, - -0.1069982573390007, - -0.1043471172451973, - -0.10386243462562561, - -0.10555744916200638, - -0.1093859001994133, - -0.11524337530136108, - -0.1229700893163681, - -0.13235527276992798, - -0.23518574237823486, - -0.2251299023628235, - -0.2139458954334259, - -0.20193876326084137, - -0.18943606317043304, - -0.17677882313728333, - -0.16431230306625366, - -0.15237653255462646, - -0.1412971168756485, - -0.1313762664794922, - -0.122884601354599, - -0.11605373024940491, - -0.11107000708580017, - -0.10806936025619507, - -0.1071336418390274, - -0.10828838497400284, - -0.11150208115577698, - -0.11668706685304642, - -0.12370191514492035, - -0.13235527276992798, - -0.23518574237823486, - -0.2268754541873932, - -0.21738936007022858, - -0.2069862335920334, - -0.19594985246658325, - -0.18458126485347748, - -0.17319053411483765, - -0.16208840906620026, - -0.15157771110534668, - -0.14194515347480774, - -0.13345348834991455, - -0.1263343244791031, - -0.12078188359737396, - -0.11694760620594025, - -0.11493607610464096, - -0.11480217427015305, - -0.116549551486969, - -0.12013053894042969, - -0.12544745206832886, - -0.13235527276992798, - -0.23518574237823486, - -0.22944554686546326, - -0.22245946526527405, - -0.21441803872585297, - -0.20554062724113464, - -0.1960694044828415, - -0.18626268208026886, - -0.1763879805803299, - -0.1667146533727646, - -0.1575065702199936, - -0.1490149050951004, - -0.141471266746521, - -0.1350814551115036, - -0.13001975417137146, - -0.12642422318458557, - -0.12439295649528503, - -0.12398135662078857, - -0.12520062923431396, - -0.12801755964756012, - -0.13235527276992798, - -0.23518574237823486, - -0.23256170749664307, - -0.22860676050186157, - -0.22342881560325623, - -0.21716907620429993, - -0.20999833941459656, - -0.20211215317249298, - -0.19372566044330597, - -0.18506762385368347, - -0.17637419700622559, - -0.1678825169801712, - -0.15982423722743988, - -0.15241913497447968, - -0.14586922526359558, - -0.14035315811634064, - -0.13602140545845032, - -0.13299211859703064, - -0.13134793937206268, - -0.13113370537757874, - -0.13235527276992798, - -0.23518574237823486, - -0.23588621616363525, - -0.23516511917114258, - -0.23304209113121033, - -0.22957508265972137, - -0.22485864162445068, - -0.21902142465114594, - -0.2122226506471634, - -0.20464777946472168, - -0.1965034306049347, - -0.1880117505788803, - -0.1794043928384781, - -0.1709161251783371, - -0.16277849674224854, - -0.15521347522735596, - -0.14842739701271057, - -0.14260540902614594, - -0.1379062831401825, - -0.13445822894573212, - -0.13235527276992798, - -0.23518574237823486, - -0.23905883729457855, - -0.2414238154888153, - -0.24221615493297577, - -0.24141426384449005, - -0.23903998732566833, - -0.23515811562538147, - -0.22987452149391174, - -0.22333332896232605, - -0.21571296453475952, - -0.20722128450870514, - -0.19808994233608246, - -0.18856799602508545, - -0.17891518771648407, - -0.1693948209285736, - -0.16026657819747925, - -0.15177947282791138, - -0.14416499435901642, - -0.13763085007667542, - -0.13235527276992798, - -0.23518574237823486, - -0.24173575639724731, - -0.24670463800430298, - -0.24995681643486023, - -0.2514036297798157, - -0.2510055899620056, - -0.24877354502677917, - -0.24476838111877441, - -0.23909935355186462, - -0.23192110657691956, - -0.22342944145202637, - -0.21385598182678223, - -0.20346185564994812, - -0.19253061711788177, - -0.1813604235649109, - -0.17025595903396606, - -0.15952013432979584, - -0.1494458019733429, - -0.14030776917934418, - -0.13235527276992798, - -0.23518574237823486, - -0.2436268925666809, - -0.25043532252311707, - -0.25542527437210083, - -0.25846073031425476, - -0.2594587802886963, - -0.2583922743797302, - -0.25529029965400696, - -0.25023743510246277, - -0.24337151646614075, - -0.23487985134124756, - -0.22499403357505798, - -0.21398377418518066, - -0.20214936137199402, - -0.18981361389160156, - -0.17731304466724396, - -0.16498860716819763, - -0.15317648649215698, - -0.14219889044761658, - -0.13235527276992798, - -0.23518574237823486, - -0.24452731013298035, - -0.2522115707397461, - -0.25802895426750183, - -0.2618207633495331, - -0.26348358392715454, - -0.26297199726104736, - -0.26030004024505615, - -0.25554054975509644, - -0.24882332980632782, - -0.24033164978027344, - -0.23029714822769165, - -0.21899351477622986, - -0.20672908425331116, - -0.19383840262889862, - -0.18067309260368347, - -0.16759227216243744, - -0.1549527645111084, - -0.14309930801391602, - -0.13235527276992798, - -0.23518574237823486, - -0.24433942139148712, - -0.2518409490585327, - -0.25748568773269653, - -0.26111966371536255, - -0.2626437544822693, - -0.2620164155960083, - -0.25925469398498535, - -0.2544339895248413, - -0.2476857602596283, - -0.2391940951347351, - -0.22919060289859772, - -0.21794818341732025, - -0.2057734727859497, - -0.19299860298633575, - -0.17997199296951294, - -0.16704899072647095, - -0.15458211302757263, - -0.14291143417358398, - -0.13235527276992798, - -0.23518574237823486, - -0.24308361113071442, - -0.24936357140541077, - -0.25385433435440063, - -0.256433367729187, - -0.2570303678512573, - -0.2556290328502655, - -0.25226759910583496, - -0.24703770875930786, - -0.24008207023143768, - -0.2315904051065445, - -0.22179433703422546, - -0.21096105873584747, - -0.1993861198425293, - -0.1873852163553238, - -0.1752857118844986, - -0.16341763734817505, - -0.15210475027561188, - -0.14165562391281128, - -0.13235527276992798, - -0.23518574237823486, - -0.24089595675468445, - -0.245047926902771, - -0.24752840399742126, - -0.24826976656913757, - -0.2472517192363739, - -0.24450209736824036, - -0.24009586870670319, - -0.23415322601795197, - -0.22683626413345337, - -0.21834459900856018, - -0.20890983939170837, - -0.1987893432378769, - -0.18825916945934296, - -0.17760655283927917, - -0.16712208092212677, - -0.15709172189235687, - -0.1477891057729721, - -0.13946795463562012, - -0.13235527276992798 - ], - "y": [ - -0.42239123582839966, - -0.41309836506843567, - -0.4022572636604309, - -0.3901636302471161, - -0.377147376537323, - -0.36356353759765625, - -0.34978264570236206, - -0.33618059754371643, - -0.32312846183776855, - -0.31098219752311707, - -0.30007320642471313, - -0.29069897532463074, - -0.2831152677536011, - -0.27752891182899475, - -0.27409231662750244, - -0.27289918065071106, - -0.27398210763931274, - -0.2773115336894989, - -0.28279662132263184, - -0.2902877926826477, - -0.42239123582839966, - -0.41197580099105835, - -0.40004274249076843, - -0.3869175910949707, - -0.37295830249786377, - -0.3585457503795624, - -0.34407299757003784, - -0.32993483543395996, - -0.3165169358253479, - -0.30418527126312256, - -0.29327625036239624, - -0.2840874493122101, - -0.2768694758415222, - -0.27181923389434814, - -0.2690744996070862, - -0.2687101364135742, - -0.27073603868484497, - -0.2750970125198364, - -0.2816740572452545, - -0.2902877926826477, - -0.42239123582839966, - -0.41188427805900574, - -0.3998622000217438, - -0.38665294647216797, - -0.37261679768562317, - -0.3581366539001465, - -0.34360751509666443, - -0.3294256329536438, - -0.31597793102264404, - -0.30363115668296814, - -0.2927221357822418, - -0.28354841470718384, - -0.27636027336120605, - -0.27135375142097473, - -0.2686654329299927, - -0.26836860179901123, - -0.2704714238643646, - -0.27491647005081177, - -0.2815825343132019, - -0.2902877926826477, - -0.42239123582839966, - -0.4128337502479553, - -0.40173521637916565, - -0.38939839601516724, - -0.3761598467826843, - -0.36238062381744385, - -0.3484366536140442, - -0.33470821380615234, - -0.3215698301792145, - -0.3093798756599426, - -0.2984708547592163, - -0.28914034366607666, - -0.2816428542137146, - -0.2761828899383545, - -0.27290940284729004, - -0.2719116508960724, - -0.2732168734073639, - -0.27678948640823364, - -0.2825319766998291, - -0.2902877926826477, - -0.42239123582839966, - -0.41472128033638, - -0.40545880794525146, - -0.39485645294189453, - -0.38320350646972656, - -0.37081775069236755, - -0.3580370843410492, - -0.34521010518074036, - -0.3326866924762726, - -0.3208085000514984, - -0.3098994791507721, - -0.30025720596313477, - -0.2921447455883026, - -0.2857833504676819, - -0.28134649991989136, - -0.2789553105831146, - -0.2786749303340912, - -0.28051304817199707, - -0.28441953659057617, - -0.2902877926826477, - -0.42239123582839966, - -0.41734233498573303, - -0.4106294512748718, - -0.40243566036224365, - -0.3929844796657562, - -0.3825337290763855, - -0.3713684678077698, - -0.3597932457923889, - -0.34812384843826294, - -0.33667853474617004, - -0.3257695138454437, - -0.3156943619251251, - -0.30672791600227356, - -0.29911473393440247, - -0.2930625081062317, - -0.2887362837791443, - -0.2862541079521179, - -0.28568369150161743, - -0.2870405912399292, - -0.2902877926826477, - -0.42239123582839966, - -0.42041292786598206, - -0.4166868329048157, - -0.41131463646888733, - -0.4044428765773773, - -0.3962589502334595, - -0.3869861364364624, - -0.3768773674964905, - -0.36620840430259705, - -0.3552702069282532, - -0.34436118602752686, - -0.33377891778945923, - -0.32381200790405273, - -0.3147324025630951, - -0.30678772926330566, - -0.3001946806907654, - -0.295133113861084, - -0.29174110293388367, - -0.2901111841201782, - -0.2902877926826477, - -0.42239123582839966, - -0.4236002564430237, - -0.4229745864868164, - -0.4205312728881836, - -0.41633695363998413, - -0.41050609946250916, - -0.403197705745697, - -0.394611120223999, - -0.38498061895370483, - -0.3745688498020172, - -0.3636598289012909, - -0.352551132440567, - -0.3415457606315613, - -0.3309439420700073, - -0.32103484869003296, - -0.3120887577533722, - -0.30434972047805786, - -0.298028826713562, - -0.29329851269721985, - -0.2902877926826477, - -0.42239123582839966, - -0.4265589714050293, - -0.42881128191947937, - -0.42908674478530884, - -0.427377849817276, - -0.4237312376499176, - -0.418246328830719, - -0.4110727906227112, - -0.402406245470047, - -0.3924831449985504, - -0.3815741240978241, - -0.3699767589569092, - -0.35800743103027344, - -0.3459925949573517, - -0.3342599868774414, - -0.32312965393066406, - -0.3129052221775055, - -0.303865522146225, - -0.2962571978569031, - -0.2902877926826477, - -0.42239123582839966, - -0.4289683997631073, - -0.4335644245147705, - -0.43605396151542664, - -0.4363690912723541, - -0.4345012307167053, - -0.4305013120174408, - -0.4244784712791443, - -0.4165969789028168, - -0.4070717990398407, - -0.3961627781391144, - -0.38416749238967896, - -0.37141311168670654, - -0.3582475781440735, - -0.3450300097465515, - -0.3321209251880646, - -0.3198724389076233, - -0.3086186945438385, - -0.29866665601730347, - -0.2902877926826477, - -0.42239123582839966, - -0.43056750297546387, - -0.43671897053718567, - -0.4406779408454895, - -0.4423363506793976, - -0.4416489899158478, - -0.43863463401794434, - -0.4333754777908325, - -0.4260149598121643, - -0.416753888130188, - -0.40584486722946167, - -0.3935854732990265, - -0.3803101181983948, - -0.366380900144577, - -0.35217776894569397, - -0.33808815479278564, - -0.32449638843536377, - -0.31177324056625366, - -0.30026572942733765, - -0.2902877926826477, - -0.42239123582839966, - -0.4311829209327698, - -0.437933087348938, - -0.44245755672454834, - -0.44463294744491577, - -0.44439995288848877, - -0.4417648911476135, - -0.43679964542388916, - -0.42963966727256775, - -0.42048025131225586, - -0.40957123041152954, - -0.39721018075942993, - -0.3837342858314514, - -0.3695111572742462, - -0.35492873191833496, - -0.3403847813606262, - -0.326276034116745, - -0.3129873275756836, - -0.30088117718696594, - -0.2902877926826477, - -0.42239123582839966, - -0.43074801564216614, - -0.437075138092041, - -0.44119998812675476, - -0.4430100619792938, - -0.4424560070037842, - -0.439552903175354, - -0.4343799650669098, - -0.4270782768726349, - -0.41784703731536865, - -0.40693801641464233, - -0.39464879035949707, - -0.38131460547447205, - -0.3672991693019867, - -0.352984756231308, - -0.3387618660926819, - -0.3250184655189514, - -0.312129408121109, - -0.3004462718963623, - -0.2902877926826477, - -0.42239123582839966, - -0.4293099045753479, - -0.43423813581466675, - -0.4370414912700653, - -0.43764352798461914, - -0.43602776527404785, - -0.4322383403778076, - -0.42637860774993896, - -0.4186083674430847, - -0.40913960337638855, - -0.39823058247566223, - -0.3861788809299469, - -0.3733132481575012, - -0.3599846065044403, - -0.34655654430389404, - -0.3333953320980072, - -0.32085996866226196, - -0.30929240584373474, - -0.29900816082954407, - -0.2902877926826477, - -0.42239123582839966, - -0.4270244538784027, - -0.42972955107688904, - -0.4304327368736267, - -0.4291148781776428, - -0.42581191658973694, - -0.4206138849258423, - -0.4136626422405243, - -0.4051477909088135, - -0.39530155062675476, - -0.38439252972602844, - -0.37271830439567566, - -0.36059728264808655, - -0.348360151052475, - -0.33634066581726074, - -0.32486671209335327, - -0.31425121426582336, - -0.30478382110595703, - -0.2967227101325989, - -0.2902877926826477, - -0.42239123582839966, - -0.42413926124572754, - -0.424037903547287, - -0.4220898747444153, - -0.41834837198257446, - -0.41291543841362, - -0.4059392213821411, - -0.3976100981235504, - -0.3881551921367645, - -0.37783244252204895, - -0.36692342162132263, - -0.3557257056236267, - -0.34454473853111267, - -0.3336854875087738, - -0.3234441876411438, - -0.3141001760959625, - -0.30590835213661194, - -0.299092173576355, - -0.2938375174999237, - -0.2902877926826477, - -0.42239123582839966, - -0.4209670424461365, - -0.41777998208999634, - -0.41291695833206177, - -0.40651068091392517, - -0.3987358510494232, - -0.38980454206466675, - -0.37996041774749756, - -0.3694719672203064, - -0.3586253225803375, - -0.3477163016796112, - -0.3370424807071686, - -0.3268950581550598, - -0.31755080819129944, - -0.309264600276947, - -0.30226248502731323, - -0.2967354357242584, - -0.29283422231674194, - -0.29066529870033264, - -0.2902877926826477, - -0.42239123582839966, - -0.4178515374660492, - -0.4116339385509491, - -0.40390804409980774, - -0.3948846161365509, - -0.3848097622394562, - -0.3739583194255829, - -0.3626262843608856, - -0.35112276673316956, - -0.33976155519485474, - -0.3288525342941284, - -0.31869328022003174, - -0.30956095457077026, - -0.3017045855522156, - -0.29533851146698, - -0.29063642024993896, - -0.2877265214920044, - -0.2866882085800171, - -0.28754979372024536, - -0.2902877926826477, - -0.42239123582839966, - -0.4151303470134735, - -0.4062657952308655, - -0.39603936672210693, - -0.3847300410270691, - -0.372646301984787, - -0.36011773347854614, - -0.34748610854148865, - -0.33509600162506104, - -0.32328537106513977, - -0.31237635016441345, - -0.3026665151119232, - -0.2944207787513733, - -0.28786399960517883, - -0.2831750512123108, - -0.28048184514045715, - -0.2798578441143036, - -0.2813200354576111, - -0.2848286032676697, - -0.2902877926826477, - -0.42239123582839966, - -0.41309836506843567, - -0.4022572636604309, - -0.3901636302471161, - -0.377147376537323, - -0.36356353759765625, - -0.34978264570236206, - -0.33618059754371643, - -0.32312846183776855, - -0.31098219752311707, - -0.30007317662239075, - -0.29069897532463074, - -0.2831152379512787, - -0.27752888202667236, - -0.27409228682518005, - -0.27289918065071106, - -0.27398210763931274, - -0.2773115336894989, - -0.28279662132263184, - -0.2902877926826477 - ], - "z": [ - -0.3201562762260437, - -0.3200538754463196, - -0.31634944677352905, - -0.3091440498828888, - -0.29863426089286804, - -0.28510671854019165, - -0.26893043518066406, - -0.2505466639995575, - -0.2304568588733673, - -0.20920901000499725, - -0.18738271296024323, - -0.16557331383228302, - -0.144375741481781, - -0.12436819821596146, - -0.10609644651412964, - -0.09005887061357498, - -0.07669295370578766, - -0.06636327505111694, - -0.0593516081571579, - -0.05584920942783356, - -0.3201562762260437, - -0.3217363655567169, - -0.31966856122016907, - -0.31400924921035767, - -0.304912805557251, - -0.29262739419937134, - -0.2774880826473236, - -0.2599078118801117, - -0.24036619067192078, - -0.2193962186574936, - -0.19756992161273956, - -0.1754826456308365, - -0.1537368893623352, - -0.1329258233308792, - -0.11361710727214813, - -0.09633743017911911, - -0.08155814558267593, - -0.06968238949775696, - -0.06103411316871643, - -0.05584920942783356, - -0.3201562762260437, - -0.3230523467063904, - -0.32226458191871643, - -0.31781452894210815, - -0.30982354283332825, - -0.2985096275806427, - -0.2841813564300537, - -0.2672295570373535, - -0.24811670184135437, - -0.22736406326293945, - -0.20553776621818542, - -0.18323315680027008, - -0.16105863451957703, - -0.13961909711360931, - -0.1194993332028389, - -0.10124816000461578, - -0.08536341786384583, - -0.07227841019630432, - -0.062350064516067505, - -0.05584920942783356, - -0.3201562762260437, - -0.3238591253757477, - -0.3238561749458313, - -0.3201475143432617, - -0.3128342926502228, - -0.3021159768104553, - -0.28828495740890503, - -0.27171850204467773, - -0.25286850333213806, - -0.23224911093711853, - -0.2104228138923645, - -0.18798495829105377, - -0.16554756462574005, - -0.14372271299362183, - -0.12310569733381271, - -0.10425890237092972, - -0.08769641816616058, - -0.07387001812458038, - -0.06315688043832779, - -0.05584920942783356, - -0.3201562762260437, - -0.32406938076019287, - -0.32427090406417847, - -0.3207554221153259, - -0.3136187791824341, - -0.30305567383766174, - -0.28935420513153076, - -0.2728881537914276, - -0.25410664081573486, - -0.23352199792861938, - -0.21169568598270416, - -0.18922311067581177, - -0.16671723127365112, - -0.14479196071624756, - -0.12404539436101913, - -0.10504339635372162, - -0.0883043110370636, - -0.07428473979234695, - -0.06336710602045059, - -0.05584920942783356, - -0.3201562762260437, - -0.3236602246761322, - -0.3234637975692749, - -0.3195723295211792, - -0.31209200620651245, - -0.3012268841266632, - -0.28727325797080994, - -0.27061179280281067, - -0.25169700384140015, - -0.23104475438594818, - -0.20921845734119415, - -0.18681344389915466, - -0.16444087028503418, - -0.14271101355552673, - -0.1222165897488594, - -0.10351663827896118, - -0.08712124079465866, - -0.07347762584686279, - -0.06295797228813171, - -0.05584920942783356, - -0.3201562762260437, - -0.32267606258392334, - -0.3215223252773285, - -0.3167265057563782, - -0.30841946601867676, - -0.2968277335166931, - -0.28226757049560547, - -0.26513612270355225, - -0.24590063095092773, - -0.22508586943149567, - -0.20325955748558044, - -0.18101710081100464, - -0.15896517038345337, - -0.13770532608032227, - -0.1178174614906311, - -0.0998440608382225, - -0.08427540212869644, - -0.07153614610433578, - -0.06197381019592285, - -0.05584920942783356, - -0.3201562762260437, - -0.32122352719306946, - -0.318656861782074, - -0.31252628564834595, - -0.3029990494251251, - -0.2903349995613098, - -0.2748796343803406, - -0.2570544481277466, - -0.23734572529792786, - -0.21629105508327484, - -0.19446474313735962, - -0.17246218025684357, - -0.1508835107088089, - -0.13031736016273499, - -0.1113247275352478, - -0.09442365914583206, - -0.08007518947124481, - -0.06867069005966187, - -0.060521259903907776, - -0.05584920942783356, - -0.3201562762260437, - -0.3194600045681, - -0.31517794728279114, - -0.3074268698692322, - -0.2964181900024414, - -0.2824522852897644, - -0.26590996980667114, - -0.24724259972572327, - -0.22695930302143097, - -0.205613374710083, - -0.18378706276416779, - -0.16207575798034668, - -0.14107166230678558, - -0.12134773284196854, - -0.10344198346138, - -0.08784281462430954, - -0.07497575134038925, - -0.06519176810979843, - -0.05875775218009949, - -0.05584920942783356, - -0.3201562762260437, - -0.31757664680480957, - -0.31146255135536194, - -0.30198079347610474, - -0.28939005732536316, - -0.27403372526168823, - -0.256330668926239, - -0.2367638200521469, - -0.21586689352989197, - -0.19420990347862244, - -0.1723836064338684, - -0.15098334848880768, - -0.13059288263320923, - -0.11176841706037521, - -0.09502343088388443, - -0.0808146595954895, - -0.0695297047495842, - -0.06147637963294983, - -0.05687437951564789, - -0.05584920942783356, - -0.3201562762260437, - -0.3157774806022644, - -0.30791330337524414, - -0.2967783212661743, - -0.28267619013786316, - -0.2659916579723358, - -0.24717974662780762, - -0.22675366699695587, - -0.20527055859565735, - -0.1833164095878601, - -0.16149011254310608, - -0.14038699865341187, - -0.12058272957801819, - -0.10261749476194382, - -0.08698135614395142, - -0.0741008073091507, - -0.06432721018791199, - -0.057927146553993225, - -0.05507521331310272, - -0.05584920942783356, - -0.3201562762260437, - -0.31425750255584717, - -0.3049148619174957, - -0.2923831343650818, - -0.2770041823387146, - -0.25919753313064575, - -0.23944887518882751, - -0.2182968705892563, - -0.19631853699684143, - -0.17411337792873383, - -0.1522870659828186, - -0.13143499195575714, - -0.1121259406208992, - -0.09488660842180252, - -0.08018725365400314, - -0.06842880696058273, - -0.05993203818798065, - -0.05492869019508362, - -0.05355525016784668, - -0.05584920942783356, - -0.3201562762260437, - -0.31318145990371704, - -0.3027920722961426, - -0.2892715632915497, - -0.2729887068271637, - -0.25438764691352844, - -0.23397578299045563, - -0.21230988204479218, - -0.18998095393180847, - -0.16759806871414185, - -0.14577175676822662, - -0.12509740889072418, - -0.10613895207643509, - -0.08941352367401123, - -0.07537735253572464, - -0.06441330909729004, - -0.05682046711444855, - -0.05280591547489166, - -0.05247919261455536, - -0.05584920942783356, - -0.3201562762260437, - -0.3126659095287323, - -0.3017750382423401, - -0.2877807915210724, - -0.2710648477077484, - -0.2520831823348999, - -0.23135358095169067, - -0.20944146811962128, - -0.18694455921649933, - -0.16447652876377106, - -0.14265021681785583, - -0.12206102162599564, - -0.1032705307006836, - -0.08679132163524628, - -0.0730728954076767, - -0.062489449977874756, - -0.05532968044281006, - -0.05178888142108917, - -0.05196364223957062, - -0.05584920942783356, - -0.3201562762260437, - -0.3127667307853699, - -0.30197396874427795, - -0.2880723476409912, - -0.27144110202789307, - -0.252533882856369, - -0.23186641931533813, - -0.21000246703624725, - -0.18753841519355774, - -0.165087029337883, - -0.14326073229312897, - -0.12265487760305405, - -0.10383153706789017, - -0.08730416744947433, - -0.07352359592914581, - -0.0628657191991806, - -0.055621251463890076, - -0.051987797021865845, - -0.052064478397369385, - -0.05584920942783356, - -0.3201562762260437, - -0.31347301602363586, - -0.3033672571182251, - -0.2901146411895752, - -0.2740767002105713, - -0.25569090247154236, - -0.23545873165130615, - -0.2139320820569992, - -0.19169814884662628, - -0.16936340928077698, - -0.14753711223602295, - -0.126814603805542, - -0.10776115208864212, - -0.09089647978544235, - -0.07668061554431915, - -0.06550132483243942, - -0.057663559913635254, - -0.05338108539581299, - -0.052770763635635376, - -0.05584920942783356, - -0.3201562762260437, - -0.31470823287963867, - -0.30580395460128784, - -0.2936863899230957, - -0.2786860764026642, - -0.26121214032173157, - -0.24174124002456665, - -0.22080449759960175, - -0.19897300004959106, - -0.17684227228164673, - -0.1550159752368927, - -0.13408946990966797, - -0.11463356763124466, - -0.09717898815870285, - -0.08220185339450836, - -0.07011067867279053, - -0.06123529374599457, - -0.055817797780036926, - -0.05400596559047699, - -0.05584920942783356, - -0.3201562762260437, - -0.3163384795188904, - -0.3090200126171112, - -0.29840052127838135, - -0.2847696542739868, - -0.2684992849826813, - -0.2500331401824951, - -0.22987496852874756, - -0.20857463777065277, - -0.18671315908432007, - -0.16488686203956604, - -0.14369109272956848, - -0.12370403856039047, - -0.10547088086605072, - -0.08948898315429688, - -0.07619427889585495, - -0.06594941765069962, - -0.0590338408946991, - -0.05563622713088989, - -0.05584920942783356, - -0.3201562762260437, - -0.3181871175765991, - -0.3126669228076935, - -0.30374616384506226, - -0.29166826605796814, - -0.27676263451576233, - -0.25943586230278015, - -0.24016056954860687, - -0.2194625586271286, - -0.19790638983249664, - -0.17608009278774261, - -0.1545790135860443, - -0.1339896321296692, - -0.11487360298633575, - -0.09775234013795853, - -0.08309287577867508, - -0.07129506766796112, - -0.06268073618412018, - -0.05748488008975983, - -0.05584920942783356, - -0.3201562762260437, - -0.3200538754463196, - -0.31634944677352905, - -0.3091440498828888, - -0.29863426089286804, - -0.28510674834251404, - -0.26893046498298645, - -0.2505466938018799, - -0.2304568737745285, - -0.20920901000499725, - -0.18738271296024323, - -0.1655733287334442, - -0.144375741481781, - -0.12436820566654205, - -0.10609645396471024, - -0.09005887806415558, - -0.07669296115636826, - -0.06636327505111694, - -0.0593516081571579, - -0.05584920942783356 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.14596432447433472, - -0.1275637000799179, - -0.1080407053232193, - -0.08792790025472641, - -0.06777388602495193, - -0.04812842980027199, - -0.02952739968895912, - -0.012478180229663849, - 0.002554163336753845, - 0.01515958458185196, - 0.024994254112243652, - 0.031789906322956085, - 0.0353611558675766, - 0.035610608756542206, - 0.03253144025802612, - 0.026207663118839264, - 0.016811758279800415, - 0.004600033164024353, - -0.010094419121742249, - -0.026870768517255783, - -0.14596432447433472, - -0.1261676847934723, - -0.10528676211833954, - -0.0838911309838295, - -0.0625644102692604, - -0.04188835993409157, - -0.022426940500736237, - -0.0047110095620155334, - 0.01077616959810257, - 0.023612163960933685, - 0.03344683349132538, - 0.04001191258430481, - 0.043128326535224915, - 0.04271106421947479, - 0.03877151012420654, - 0.031417131423950195, - 0.020848527550697327, - 0.007353983819484711, - -0.00869840383529663, - -0.026870768517255783, - -0.14596432447433472, - -0.12682893872261047, - -0.10659120976924896, - -0.08580321818590164, - -0.0650319755077362, - -0.04484408721327782, - -0.025790203362703323, - -0.008390076458454132, - 0.0068816691637039185, - 0.019608445465564728, - 0.02944311499595642, - 0.03611741214990616, - 0.039449259638786316, - 0.03934779763221741, - 0.03581579029560089, - 0.028949573636054993, - 0.018936432898044586, - 0.00604952871799469, - -0.009359650313854218, - -0.026870768517255783, - -0.14596432447433472, - -0.12947578728199005, - -0.11181273311376572, - -0.09345696121454239, - -0.07490917295217514, - -0.05667531117796898, - -0.03925273194909096, - -0.023116685450077057, - -0.008707329630851746, - 0.003582298755645752, - 0.013416968286037445, - 0.020528413355350494, - 0.02472265064716339, - 0.025885269045829773, - 0.02398456633090973, - 0.01907237619161606, - 0.011282697319984436, - 0.0008280053734779358, - -0.012006506323814392, - -0.026870768517255783, - -0.14596432447433472, - -0.13382142782211304, - -0.12038546800613403, - -0.10602296143770218, - -0.09112565964460373, - -0.0760999470949173, - -0.06135566905140877, - -0.04729500412940979, - -0.034301500767469406, - -0.022729597985744476, - -0.012894928455352783, - -0.005065761506557465, - 0.000544331967830658, - 0.00378233939409256, - 0.004559919238090515, - 0.0028558820486068726, - -0.001283302903175354, - -0.007744729518890381, - -0.016352146863937378, - -0.026870768517255783, - -0.14596432447433472, - -0.13939492404460907, - -0.13138043880462646, - -0.12213948369026184, - -0.11192414164543152, - -0.10101302713155746, - -0.08970379829406738, - -0.07830493152141571, - -0.06712733954191208, - -0.05647594481706619, - -0.0466412752866745, - -0.03789160028100014, - -0.030465591698884964, - -0.024565797299146652, - -0.020353160798549652, - -0.01794259250164032, - -0.017399832606315613, - -0.018739700317382812, - -0.021925650537014008, - -0.026870764791965485, - -0.14596432447433472, - -0.1455923169851303, - -0.14360617101192474, - -0.14006006717681885, - -0.13505074381828308, - -0.12871482968330383, - -0.12122516334056854, - -0.11278603971004486, - -0.10362763702869415, - -0.09399979561567307, - -0.08416512608528137, - -0.07439189404249191, - -0.06494669616222382, - -0.05608716607093811, - -0.04805497080087662, - -0.04106920212507248, - -0.03532041981816292, - -0.03096543252468109, - -0.02812303602695465, - -0.026870764791965485, - -0.14596432447433472, - -0.15174201130867004, - -0.15573781728744507, - -0.1578427404165268, - -0.15799938142299652, - -0.15620344877243042, - -0.15250395238399506, - -0.14700177311897278, - -0.1398470252752304, - -0.13123485445976257, - -0.12140019237995148, - -0.11061128973960876, - -0.09916244447231293, - -0.08736594766378403, - -0.0755435898900032, - -0.06401783972978592, - -0.053103089332580566, - -0.04309707134962082, - -0.034272730350494385, - -0.026870764791965485, - -0.14596430957317352, - -0.15717759728431702, - -0.16646072268486023, - -0.1735604703426361, - -0.1782831847667694, - -0.18050004541873932, - -0.1801505982875824, - -0.17724433541297913, - -0.17186057567596436, - -0.16414615511894226, - -0.15431147813796997, - -0.1426248401403427, - -0.12940500676631927, - -0.11501260101795197, - -0.0998401939868927, - -0.08430164307355881, - -0.06882081180810928, - -0.05381997302174568, - -0.03970831260085106, - -0.026870761066675186, - -0.14596430957317352, - -0.16131003201007843, - -0.1746128797531128, - -0.18550997972488403, - -0.19370409846305847, - -0.1989717185497284, - -0.20116916298866272, - -0.2002364993095398, - -0.19619911909103394, - -0.18916720151901245, - -0.17933252453804016, - -0.1669633835554123, - -0.15239715576171875, - -0.13603118062019348, - -0.11831186711788177, - -0.09972257167100906, - -0.0807703286409378, - -0.06197213754057884, - -0.04384075477719307, - -0.026870761066675186, - -0.14596430957317352, - -0.16369152069091797, - -0.1793108880519867, - -0.1923963725566864, - -0.20259103178977966, - -0.2096167802810669, - -0.21328197419643402, - -0.2134866565465927, - -0.2102251946926117, - -0.203586608171463, - -0.19375193119049072, - -0.18098945915699005, - -0.16564732789993286, - -0.1481439769268036, - -0.12895692884922028, - -0.10860950499773026, - -0.08765672147274017, - -0.06667015701532364, - -0.04622224345803261, - -0.026870761066675186, - -0.14596430957317352, - -0.16406399011611938, - -0.18004566431045532, - -0.19347339868545532, - -0.203980952501297, - -0.2112816572189331, - -0.21517641842365265, - -0.2155589759349823, - -0.21241886913776398, - -0.2058417797088623, - -0.1960071176290512, - -0.18318313360214233, - -0.16771963238716125, - -0.15003842115402222, - -0.1306218057870865, - -0.1099994108080864, - -0.08873375505208969, - -0.06740492582321167, - -0.046594709157943726, - -0.026870761066675186, - -0.14596430957317352, - -0.16238707304000854, - -0.17673756182193756, - -0.18862435221672058, - -0.19772322475910187, - -0.2037859559059143, - -0.20664718747138977, - -0.20622888207435608, - -0.20254242420196533, - -0.1956883817911148, - -0.1858537197113037, - -0.1733066886663437, - -0.15838955342769623, - -0.14150920510292053, - -0.12312610447406769, - -0.10374169051647186, - -0.08388470113277435, - -0.06409682333469391, - -0.04491778463125229, - -0.026870761066675186, - -0.14596430957317352, - -0.15884247422218323, - -0.1697450578212738, - -0.17837467789649963, - -0.1844959557056427, - -0.18794192373752594, - -0.18861857056617737, - -0.1865074336528778, - -0.18166609108448029, - -0.17422661185264587, - -0.16439194977283478, - -0.15243035554885864, - -0.13866809010505676, - -0.12348056584596634, - -0.10728206485509872, - -0.09051442891359329, - -0.073635034263134, - -0.05710431933403015, - -0.04137318953871727, - -0.026870761066675186, - -0.14596430957317352, - -0.15381431579589844, - -0.15982592105865479, - -0.16383513808250427, - -0.16573259234428406, - -0.1654665470123291, - -0.16304424405097961, - -0.1585317701101303, - -0.15205220878124237, - -0.14378230273723602, - -0.13394764065742493, - -0.12281646579504013, - -0.11069243401288986, - -0.09790624678134918, - -0.08480668812990189, - -0.07175105065107346, - -0.05909547954797745, - -0.04718518257141113, - -0.036345046013593674, - -0.026870761066675186, - -0.14596432447433472, - -0.1478475034236908, - -0.1480550467967987, - -0.1465812623500824, - -0.14346638321876526, - -0.13879536092281342, - -0.13269560039043427, - -0.1253335028886795, - -0.11690987646579742, - -0.10765449702739716, - -0.09781982749700546, - -0.08767413347959518, - -0.07749416679143906, - -0.06755760312080383, - -0.0581354983150959, - -0.049484845250844955, - -0.04184161126613617, - -0.035414304584264755, - -0.030378229916095734, - -0.026870764791965485, - -0.14596432447433472, - -0.14158859848976135, - -0.13570794463157654, - -0.12848278880119324, - -0.12011019885540009, - -0.11081855744123459, - -0.1008613258600235, - -0.09051010012626648, - -0.08004724234342575, - -0.06975815445184708, - -0.05992348492145538, - -0.05081150308251381, - -0.04267076402902603, - -0.03572332486510277, - -0.030158694833517075, - -0.026128653436899185, - -0.023743130266666412, - -0.023067206144332886, - -0.024119321256875992, - -0.026870764791965485, - -0.14596432447433472, - -0.13571585714817047, - -0.12412266433238983, - -0.11150097101926804, - -0.09819506853818893, - -0.08456791192293167, - -0.07099120318889618, - -0.05783528462052345, - -0.04545901343226433, - -0.03419999033212662, - -0.024365320801734924, - -0.016223274171352386, - -0.009995944797992706, - -0.005853205919265747, - -0.003908038139343262, - -0.0042135268449783325, - -0.006761319935321808, - -0.01148192584514618, - -0.018246576189994812, - -0.026870768517255783, - -0.14596432447433472, - -0.1308656930923462, - -0.11455462872982025, - -0.097476065158844, - -0.08009584993124008, - -0.06288808584213257, - -0.04632212594151497, - -0.030849866569042206, - -0.016893357038497925, - -0.004833288490772247, - 0.005001381039619446, - 0.012342385947704315, - 0.016989469528198242, - 0.01881588250398636, - 0.017771795392036438, - 0.013885699212551117, - 0.007263593375682831, - -0.0019138902425765991, - -0.013396412134170532, - -0.026870768517255783, - -0.14596432447433472, - -0.1275637000799179, - -0.1080407053232193, - -0.08792789280414581, - -0.06777388602495193, - -0.04812842980027199, - -0.029527392238378525, - -0.012478172779083252, - 0.002554170787334442, - 0.015159592032432556, - 0.02499426156282425, - 0.03178991377353668, - 0.035361163318157196, - 0.035610608756542206, - 0.03253144025802612, - 0.026207663118839264, - 0.016811758279800415, - 0.004600033164024353, - -0.010094419121742249, - -0.026870768517255783 - ], - "y": [ - -0.30777084827423096, - -0.3026122450828552, - -0.2955076992511749, - -0.28665098547935486, - -0.27628371119499207, - -0.2646886706352234, - -0.25218212604522705, - -0.239105224609375, - -0.22581468522548676, - -0.21267303824424744, - -0.20003874599933624, - -0.18825644254684448, - -0.17764750123023987, - -0.1685013473033905, - -0.1610674262046814, - -0.15554851293563843, - -0.15209518373012543, - -0.1508016139268875, - -0.1517030894756317, - -0.15477502346038818, - -0.30777084827423096, - -0.30860963463783264, - -0.3073388934135437, - -0.30399325489997864, - -0.29866400361061096, - -0.29149651527404785, - -0.2826862633228302, - -0.27247360348701477, - -0.26113706827163696, - -0.24898594617843628, - -0.23635165393352509, - -0.2235788255929947, - -0.21101588010787964, - -0.19900548458099365, - -0.18787527084350586, - -0.17792882025241852, - -0.1694374531507492, - -0.1626327931880951, - -0.15770047903060913, - -0.15477502346038818, - -0.30777084827423096, - -0.31440305709838867, - -0.3187677264213562, - -0.3207457661628723, - -0.3202831745147705, - -0.3173926770687103, - -0.31215301156044006, - -0.3047071695327759, - -0.29525822401046753, - -0.2840639352798462, - -0.2714296281337738, - -0.25769999623298645, - -0.24324946105480194, - -0.22847223281860352, - -0.21377143263816833, - -0.19954800605773926, - -0.1861899495124817, - -0.1740616410970688, - -0.16349391639232635, - -0.15477502346038818, - -0.30777084827423096, - -0.3193647265434265, - -0.32855573296546936, - -0.33509308099746704, - -0.33879852294921875, - -0.33957090973854065, - -0.3373892307281494, - -0.3323129713535309, - -0.3244805932044983, - -0.3141057789325714, - -0.301471471786499, - -0.2869223356246948, - -0.27085524797439575, - -0.25370845198631287, - -0.23594966530799866, - -0.21806330978870392, - -0.2005372792482376, - -0.18384963274002075, - -0.1684555858373642, - -0.15477502346038818, - -0.30777084827423096, - -0.32295697927474976, - -0.3356421887874603, - -0.3454805016517639, - -0.35220351815223694, - -0.3556278645992279, - -0.3556601405143738, - -0.35229945182800293, - -0.3456374704837799, - -0.3358559310436249, - -0.3232216238975525, - -0.30807924270629883, - -0.2908417284488678, - -0.27197936177253723, - -0.2520066201686859, - -0.2314683347940445, - -0.2109246850013733, - -0.1909361183643341, - -0.17204780876636505, - -0.15477502346038818, - -0.30777084827423096, - -0.32479047775268555, - -0.33925920724868774, - -0.3507823646068573, - -0.3590455949306488, - -0.3638235330581665, - -0.3649858236312866, - -0.36250078678131104, - -0.35643619298934937, - -0.3469574749469757, - -0.3343231678009033, - -0.3188779354095459, - -0.3010430634021759, - -0.2813050448894501, - -0.2602022886276245, - -0.23831039667129517, - -0.21622654795646667, - -0.19455312192440033, - -0.17388132214546204, - -0.15477502346038818, - -0.30777084827423096, - -0.3246665894985199, - -0.33901482820510864, - -0.3504241108894348, - -0.3585832715034485, - -0.36326974630355835, - -0.3643556833267212, - -0.36181148886680603, - -0.35570651292800903, - -0.3462073504924774, - -0.33357304334640503, - -0.31814828515052795, - -0.3003537654876709, - -0.28067493438720703, - -0.25964853167533875, - -0.23784810304641724, - -0.21586830914020538, - -0.19430872797966003, - -0.1737574338912964, - -0.15477502346038818, - -0.30777084827423096, - -0.32259872555732727, - -0.3349354863166809, - -0.34444460272789, - -0.3508666753768921, - -0.35402655601501465, - -0.3538380563259125, - -0.35030627250671387, - -0.34352758526802063, - -0.333686888217926, - -0.32105258107185364, - -0.30596932768821716, - -0.28884854912757874, - -0.2701572775840759, - -0.25040534138679504, - -0.23013150691986084, - -0.2098887860774994, - -0.1902294009923935, - -0.17168956995010376, - -0.15477502346038818, - -0.30777084827423096, - -0.31881096959114075, - -0.327463299036026, - -0.33349180221557617, - -0.33673202991485596, - -0.33709561824798584, - -0.33457261323928833, - -0.3292319178581238, - -0.3212190866470337, - -0.310752809047699, - -0.298118531703949, - -0.2836608588695526, - -0.26777416467666626, - -0.2508918344974518, - -0.23347437381744385, - -0.21599683165550232, - -0.19893598556518555, - -0.1827571988105774, - -0.16790181398391724, - -0.15477502346038818, - -0.30777084827423096, - -0.31371378898620605, - -0.3174079656600952, - -0.31875258684158325, - -0.3177109956741333, - -0.31431159377098083, - -0.30864712595939636, - -0.3008720874786377, - -0.29119858145713806, - -0.2798904478549957, - -0.26725614070892334, - -0.2536403238773346, - -0.23941437900066376, - -0.22496634721755981, - -0.21069036424160004, - -0.19697579741477966, - -0.18419677019119263, - -0.1727018654346466, - -0.16280463337898254, - -0.15477502346038818, - -0.30777084827423096, - -0.30785953998565674, - -0.30585911870002747, - -0.3018242120742798, - -0.2958648204803467, - -0.2881435453891754, - -0.27887099981307983, - -0.2683000862598419, - -0.256719172000885, - -0.24444416165351868, - -0.23180986940860748, - -0.21916092932224274, - -0.20684237778186798, - -0.1951902210712433, - -0.18452230095863342, - -0.17512963712215424, - -0.16726839542388916, - -0.16115303337574005, - -0.15695035457611084, - -0.15477502346038818, - -0.30777084827423096, - -0.3018825948238373, - -0.29406827688217163, - -0.2845411002635956, - -0.27356088161468506, - -0.2614271640777588, - -0.24847093224525452, - -0.23504556715488434, - -0.22151730954647064, - -0.20825514197349548, - -0.1956208497285843, - -0.18395905196666718, - -0.1735878586769104, - -0.16479015350341797, - -0.1578059196472168, - -0.15282569825649261, - -0.14998528361320496, - -0.1493622064590454, - -0.15097343921661377, - -0.15477502346038818, - -0.30777084827423096, - -0.29643070697784424, - -0.28331318497657776, - -0.26877617835998535, - -0.2532161772251129, - -0.2370576113462448, - -0.22074125707149506, - -0.2047121822834015, - -0.189407616853714, - -0.1752450168132782, - -0.162610724568367, - -0.15184935927391052, - -0.14325445890426636, - -0.13706046342849731, - -0.13343635201454163, - -0.13248097896575928, - -0.13422036170959473, - -0.13860711455345154, - -0.14552152156829834, - -0.15477502346038818, - -0.30777084827423096, - -0.2920945882797241, - -0.27475929260253906, - -0.25623777508735657, - -0.23703530430793762, - -0.21767565608024597, - -0.1986868977546692, - -0.18058699369430542, - -0.1638696789741516, - -0.1489909440279007, - -0.1363566517829895, - -0.12631142139434814, - -0.11912927031517029, - -0.11500610411167145, - -0.11405440419912338, - -0.11630010604858398, - -0.12168198078870773, - -0.13005320727825165, - -0.1411854326725006, - -0.15477502346038818, - -0.30777084827423096, - -0.2893442213535309, - -0.26933354139328003, - -0.24828468263149261, - -0.22677180171012878, - -0.20538167655467987, - -0.18469780683517456, - -0.1652843952178955, - -0.1476709544658661, - -0.13233798742294312, - -0.11970368027687073, - -0.11011270433664322, - -0.10382667183876038, - -0.10101702809333801, - -0.10176041722297668, - -0.10603658854961395, - -0.11372888088226318, - -0.12462746351957321, - -0.13843506574630737, - -0.15477502346038818, - -0.30777084827423096, - -0.2884775996208191, - -0.2676239311695099, - -0.24577870965003967, - -0.22353780269622803, - -0.20150789618492126, - -0.18028990924358368, - -0.16046260297298431, - -0.14256680011749268, - -0.1270906925201416, - -0.11445640027523041, - -0.1050085574388504, - -0.09900487959384918, - -0.09660911560058594, - -0.09788663685321808, - -0.1028025895357132, - -0.11122290045022964, - -0.12291783094406128, - -0.1375684142112732, - -0.15477502346038818, - -0.30777084827423096, - -0.2895886301994324, - -0.26981568336486816, - -0.24899138510227203, - -0.22768379747867584, - -0.20647411048412323, - -0.18594086170196533, - -0.1666441708803177, - -0.149110347032547, - -0.13381773233413696, - -0.12118344008922577, - -0.11155210435390472, - -0.10518644750118256, - -0.10226008296012878, - -0.10285285115242004, - -0.1069486066699028, - -0.1144355833530426, - -0.12510958313941956, - -0.13867944478988647, - -0.15477502346038818, - -0.30777084827423096, - -0.29255691170692444, - -0.2756713032722473, - -0.2575746178627014, - -0.23876050114631653, - -0.21974214911460876, - -0.20103833079338074, - -0.1831592172384262, - -0.16659250855445862, - -0.15179014205932617, - -0.13915583491325378, - -0.12903426587581635, - -0.12170149385929108, - -0.117357537150383, - -0.11612089723348618, - -0.11802531033754349, - -0.12301882356405258, - -0.1309652179479599, - -0.14164775609970093, - -0.15477502346038818, - -0.30777084827423096, - -0.2970608174800873, - -0.2845562696456909, - -0.27059829235076904, - -0.25556761026382446, - -0.2398742288351059, - -0.2239462435245514, - -0.20821809768676758, - -0.1931188404560089, - -0.17906031012535095, - -0.16642603278160095, - -0.15556058287620544, - -0.14676037430763245, - -0.14026546478271484, - -0.1362529844045639, - -0.13483241200447083, - -0.13604247570037842, - -0.1398501694202423, - -0.14615166187286377, - -0.15477502346038818, - -0.30777084827423096, - -0.3026122450828552, - -0.2955076992511749, - -0.28665101528167725, - -0.27628374099731445, - -0.2646886706352234, - -0.25218212604522705, - -0.2391052544116974, - -0.22581471502780914, - -0.21267306804656982, - -0.20003876090049744, - -0.18825645744800568, - -0.17764753103256226, - -0.1685013473033905, - -0.1610674262046814, - -0.15554854273796082, - -0.15209519863128662, - -0.1508016288280487, - -0.1517030894756317, - -0.15477502346038818 - ], - "z": [ - -0.09082870185375214, - -0.09764103591442108, - -0.10009261965751648, - -0.09811657667160034, - -0.0917668491601944, - -0.08121660351753235, - -0.06675364077091217, - -0.04877246916294098, - -0.02776356041431427, - -0.004299983382225037, - 0.02097821980714798, - 0.04738153517246246, - 0.07418975979089737, - 0.10067161917686462, - 0.12610477209091187, - 0.14979544281959534, - 0.17109745740890503, - 0.18942971527576447, - 0.2042921632528305, - 0.21527940034866333, - -0.09082871675491333, - -0.09518660604953766, - -0.09525071084499359, - -0.09101927280426025, - -0.08260773122310638, - -0.07024551928043365, - -0.05426985025405884, - -0.035116493701934814, - -0.013307899236679077, - 0.010561034083366394, - 0.03583924099802971, - 0.061837196350097656, - 0.08784573525190353, - 0.11315540969371796, - 0.13707584142684937, - 0.15895456075668335, - 0.17819476127624512, - 0.19427162408828735, - 0.20674659311771393, - 0.21527940034866333, - -0.09082871675491333, - -0.09203372895717621, - -0.08903095126152039, - -0.08190229535102844, - -0.07084222137928009, - -0.05615241080522537, - -0.03823356330394745, - -0.017574459314346313, - 0.005261380225419998, - 0.029651042073965073, - 0.05492924898862839, - 0.08040647953748703, - 0.10538776963949203, - 0.12919169664382935, - 0.15116895735263824, - 0.17072007060050964, - 0.18731175363063812, - 0.20049138367176056, - 0.20989947021007538, - 0.21527940034866333, - -0.09082871675491333, - -0.08852405846118927, - -0.08210735023021698, - -0.0717536062002182, - -0.05774528533220291, - -0.040464483201503754, - -0.020382560789585114, - 0.0019526854157447815, - 0.02593202516436577, - 0.05090134218335152, - 0.07617954909801483, - 0.1010771244764328, - 0.12491491436958313, - 0.14704270660877228, - 0.16685688495635986, - 0.18381699919700623, - 0.19746042788028717, - 0.20741498470306396, - 0.21340914070606232, - 0.21527940034866333, - -0.09082871675491333, - -0.08503793179988861, - -0.07523016631603241, - -0.061672985553741455, - -0.04473618417978287, - -0.024881750345230103, - -0.0026512667536735535, - 0.021348878741264343, - 0.04646404832601547, - 0.0720091238617897, - 0.09728732705116272, - 0.12160913646221161, - 0.1443111002445221, - 0.16477400064468384, - 0.1824396252632141, - 0.19682611525058746, - 0.2075410634279251, - 0.21429216861724854, - 0.21689528226852417, - 0.21527940034866333, - -0.09082871675491333, - -0.08195310831069946, - -0.06914468109607697, - -0.052752815186977386, - -0.03322465717792511, - -0.01109287142753601, - 0.013038843870162964, - 0.03851223737001419, - 0.06463247537612915, - 0.09068703651428223, - 0.11596524715423584, - 0.13977757096290588, - 0.16147446632385254, - 0.18046411871910095, - 0.1962285041809082, - 0.20833764970302582, - 0.21646122634410858, - 0.22037765383720398, - 0.21998010575771332, - 0.21527940034866333, - -0.09082871675491333, - -0.0796038955450058, - -0.06451033055782318, - -0.04595974087715149, - -0.024458147585392, - -0.0005920678377151489, - 0.024987511336803436, - 0.05158284679055214, - 0.07846848666667938, - 0.10491104423999786, - 0.13018923997879028, - 0.15361356735229492, - 0.1745450794696808, - 0.19241277873516083, - 0.20672932267189026, - 0.21710415184497833, - 0.22325430810451508, - 0.22501201927661896, - 0.22232931852340698, - 0.21527938544750214, - -0.09082871675491333, - -0.07824485003948212, - -0.06182931363582611, - -0.042029887437820435, - -0.019386649131774902, - 0.005482733249664307, - 0.03189992159605026, - 0.05914429947733879, - 0.08647273480892181, - 0.11313974857330322, - 0.13841795921325684, - 0.16161783039569855, - 0.18210652470588684, - 0.19932518899440765, - 0.21280410885810852, - 0.22217564284801483, - 0.22718416154384613, - 0.22769302129745483, - 0.22368836402893066, - 0.21527938544750214, - -0.09082871675491333, - -0.07802325487136841, - -0.061392173171043396, - -0.04138912260532379, - -0.01855974644422531, - 0.006473232060670853, - 0.033026985824108124, - 0.06037719547748566, - 0.08777783066034317, - 0.11448144167661667, - 0.13975965976715088, - 0.1629229187965393, - 0.1833394169807434, - 0.20045225322246552, - 0.21379461884498596, - 0.22300255298614502, - 0.22782492637634277, - 0.22813016176223755, - 0.22390994429588318, - 0.21527938544750214, - -0.09082871675491333, - -0.07896313071250916, - -0.06324627995491028, - -0.04410688579082489, - -0.022067032754421234, - 0.002272091805934906, - 0.02824658900499344, - 0.055147938430309296, - 0.08224233984947205, - 0.10879073292016983, - 0.13406893610954285, - 0.15738743543624878, - 0.17811016738414764, - 0.19567185640335083, - 0.20959347486495972, - 0.2194952666759491, - 0.22510716319084167, - 0.22627605497837067, - 0.22297008335590363, - 0.21527938544750214, - -0.09082871675491333, - -0.08096261322498322, - -0.06719070672988892, - -0.04988865554332733, - -0.02952844649553299, - -0.006665430963039398, - 0.01807675138115883, - 0.044023189693689346, - 0.07046613842248917, - 0.0966842919588089, - 0.12196250259876251, - 0.1456112265586853, - 0.166985422372818, - 0.18550202250480652, - 0.2006559520959854, - 0.21203385293483734, - 0.21932539343833923, - 0.22233162820339203, - 0.22097060084342957, - 0.21527938544750214, - -0.09082871675491333, - -0.08380502462387085, - -0.07279801368713379, - -0.0581078976392746, - -0.040135420858860016, - -0.019370809197425842, - 0.003619533032178879, - 0.02820849046111107, - 0.05372535064816475, - 0.0794740542769432, - 0.10475225746631622, - 0.12887044250965118, - 0.1511707305908203, - 0.17104479670524597, - 0.18795056641101837, - 0.20142687857151031, - 0.21110615134239197, - 0.21672432124614716, - 0.21812817454338074, - 0.21527940034866333, - -0.09082871675491333, - -0.08718237280845642, - -0.07946056127548218, - -0.06787392497062683, - -0.052738532423973083, - -0.034467220306396484, - -0.013558395206928253, - 0.009417619556188583, - 0.03383409231901169, - 0.05902500078082085, - 0.08430320769548416, - 0.10897918790578842, - 0.13237985968589783, - 0.15386687219142914, - 0.17285415530204773, - 0.18882375955581665, - 0.20134012401103973, - 0.21006177365779877, - 0.21475084125995636, - 0.21527940034866333, - -0.09082871675491333, - -0.09072864055633545, - -0.08645637333393097, - -0.07812844216823578, - -0.06597204506397247, - -0.05031875520944595, - -0.03159555792808533, - -0.010313168168067932, - 0.012947887182235718, - 0.037553101778030396, - 0.06283130496740341, - 0.08809298276901245, - 0.11264906078577042, - 0.13582971692085266, - 0.15700261294841766, - 0.17559024691581726, - 0.1910856068134308, - 0.20306596159934998, - 0.21120457351207733, - 0.21527940034866333, - -0.09082871675491333, - -0.0940595418214798, - -0.09302732348442078, - -0.08776021003723145, - -0.07840187847614288, - -0.06520761549472809, - -0.04853731393814087, - -0.028845690190792084, - -0.006669886410236359, - 0.017385199666023254, - 0.04266340658068657, - 0.06847520917654037, - 0.09411653876304626, - 0.11888796091079712, - 0.14211374521255493, - 0.16316041350364685, - 0.1814538538455963, - 0.19649502635002136, - 0.20787367224693298, - 0.21527940034866333, - -0.09082870185375214, - -0.0968141257762909, - -0.0984613448381424, - -0.09572546184062958, - -0.08868108689785004, - -0.07752038538455963, - -0.06254778057336807, - -0.044171690940856934, - -0.022893361747264862, - 0.0007067769765853882, - 0.025984983891248703, - 0.05225173383951187, - 0.07879053801298141, - 0.10487748682498932, - 0.1298009753227234, - 0.1528812050819397, - 0.173488587141037, - 0.19106099009513855, - 0.2051190882921219, - 0.21527940034866333, - -0.09082870185375214, - -0.09869389235973358, - -0.10216961801052094, - -0.10116106271743774, - -0.09569576382637024, - -0.08592279255390167, - -0.07210871577262878, - -0.054630376398563385, - -0.033964499831199646, - -0.010674811899662018, - 0.014603391289710999, - 0.04118059575557709, - 0.06833185255527496, - 0.09531654417514801, - 0.12139856815338135, - 0.1458665430545807, - 0.16805297136306763, - 0.18735271692276, - 0.203239306807518, - 0.21527940034866333, - -0.09082870185375214, - -0.09949514269828796, - -0.10375024378299713, - -0.10347796976566315, - -0.09868575632572174, - -0.08950428664684296, - -0.07618403434753418, - -0.05908835679292679, - -0.038683533668518066, - -0.015526182949543, - 0.009752023965120316, - 0.03646156191825867, - 0.06387387216091156, - 0.09124122560024261, - 0.11781707406044006, - 0.142876535654068, - 0.16573607921600342, - 0.1857720911502838, - 0.20243807137012482, - 0.21527940034866333, - -0.09082870185375214, - -0.0991310328245163, - -0.10303196310997009, - -0.10242511332035065, - -0.09732702374458313, - -0.08787676692008972, - -0.07433211803436279, - -0.0570625364780426, - -0.03653908520936966, - -0.01332160085439682, - 0.011956606060266495, - 0.03860601410269737, - 0.06589969247579575, - 0.0930931493639946, - 0.1194445937871933, - 0.1442352682352066, - 0.16678893566131592, - 0.18649037182331085, - 0.2028021663427353, - 0.21527940034866333, - -0.09082870185375214, - -0.09764103591442108, - -0.10009261965751648, - -0.09811657667160034, - -0.0917668491601944, - -0.08121660351753235, - -0.06675364077091217, - -0.04877246171236038, - -0.027763552963733673, - -0.004299983382225037, - 0.020978223532438278, - 0.04738154262304306, - 0.07418976724147797, - 0.10067162662744522, - 0.12610477209091187, - 0.14979545772075653, - 0.17109745740890503, - 0.18942973017692566, - 0.2042921781539917, - 0.21527940034866333 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.07855400443077087, - 0.0509016178548336, - 0.02234083041548729, - -0.006349308416247368, - -0.03438620641827583, - -0.061005063354969025, - -0.08547982573509216, - -0.1071428656578064, - -0.1254032701253891, - -0.13976293802261353, - -0.1498301923274994, - -0.15533041954040527, - -0.15611357986927032, - -0.15215833485126495, - -0.14357252418994904, - -0.13059037923812866, - -0.11356601119041443, - -0.09296382963657379, - -0.06934575736522675, - -0.043356072157621384, - 0.07855399698019028, - 0.05555269122123718, - 0.03151611611247063, - 0.0070999059826135635, - -0.01702992245554924, - -0.040215153247117996, - -0.06182335317134857, - -0.08126513659954071, - -0.09801016747951508, - -0.11160168051719666, - -0.12166893482208252, - -0.12793731689453125, - -0.13023585081100464, - -0.12850186228752136, - -0.12278258800506592, - -0.11323408782482147, - -0.1001167967915535, - -0.08378854393959045, - -0.06469468027353287, - -0.043356072157621384, - 0.07855399698019028, - 0.06260623037815094, - 0.045430783182382584, - 0.027496149763464928, - 0.009291557595133781, - -0.00868644192814827, - -0.02594742923974991, - -0.04202060028910637, - -0.05646749585866928, - -0.06889405846595764, - -0.07896130532026291, - -0.08639465272426605, - -0.0909913182258606, - -0.0926259309053421, - -0.09125388413667679, - -0.0869126245379448, - -0.07972055673599243, - -0.0698738768696785, - -0.05764114856719971, - -0.04335607588291168, - 0.07855398952960968, - 0.07129786163568497, - 0.06257697194814682, - 0.05262918025255203, - 0.04172586649656296, - 0.030164431780576706, - 0.018260251730680466, - 0.006338020786643028, - -0.005277032032608986, - -0.016268081963062286, - -0.02633533626794815, - -0.03520418703556061, - -0.04263269901275635, - -0.04841823875904083, - -0.05240301042795181, - -0.05447831004858017, - -0.05458752065896988, - -0.05272768437862396, - -0.04894951730966568, - -0.04335607588291168, - 0.07855398952960968, - 0.08068571984767914, - 0.08109661191701889, - 0.07977543771266937, - 0.07675826549530029, - 0.07212738692760468, - 0.06600910425186157, - 0.058570314198732376, - 0.0500139445066452, - 0.040573373436927795, - 0.030506117269396782, - 0.02008679322898388, - 0.009599598124623299, - -0.0006693881005048752, - -0.010440060868859291, - -0.019445903599262238, - -0.02744125947356224, - -0.03420804440975189, - -0.03956165537238121, - -0.04335607960820198, - 0.07855398952960968, - 0.08975248038768768, - 0.09898281842470169, - 0.10599321126937866, - 0.11059243977069855, - 0.11265505105257034, - 0.11212477833032608, - 0.10901609063148499, - 0.10341378301382065, - 0.09547065943479538, - 0.08540341258049011, - 0.07348662614822388, - 0.06004536896944046, - 0.04544629901647568, - 0.03008762001991272, - 0.014388272538781166, - -0.0012234952300786972, - -0.016321837902069092, - -0.030494891107082367, - -0.04335608333349228, - 0.07855398952960968, - 0.09751562774181366, - 0.11429735273122787, - 0.12844139337539673, - 0.13956193625926971, - 0.14735564589500427, - 0.15160994231700897, - 0.15220876038074493, - 0.1491357833147049, - 0.14247480034828186, - 0.1324075609445572, - 0.11920863389968872, - 0.103238046169281, - 0.08493145555257797, - 0.06478822231292725, - 0.04335777461528778, - 0.021224679425358772, - -0.0010073035955429077, - -0.02273174747824669, - -0.04335608333349228, - 0.07855398952960968, - 0.10313389450311661, - 0.12538063526153564, - 0.14468736946582794, - 0.16052745282649994, - 0.17246884107589722, - 0.18018576502799988, - 0.18346776068210602, - 0.1822252869606018, - 0.17649221420288086, - 0.166424959897995, - 0.15229813754558563, - 0.1344970464706421, - 0.11350727081298828, - 0.0899014100432396, - 0.0643233060836792, - 0.03747066110372543, - 0.010075978003442287, - -0.01711348071694374, - -0.04335608705878258, - 0.07855398952960968, - 0.1059984564781189, - 0.13103163242340088, - 0.15297064185142517, - 0.17121706902980804, - 0.1852731853723526, - 0.19475559890270233, - 0.19940565526485443, - 0.19909648597240448, - 0.1938365250825882, - 0.18376927077770233, - 0.1691693365573883, - 0.1504349410533905, - 0.12807711958885193, - 0.10270576924085617, - 0.07501290738582611, - 0.04575393348932266, - 0.015726972371339798, - -0.014248918741941452, - -0.04335608705878258, - 0.07855398952960968, - 0.10579890012741089, - 0.13063794374465942, - 0.15239357948303223, - 0.17047236859798431, - 0.1843811720609665, - 0.1937406063079834, - 0.19829535484313965, - 0.19792115688323975, - 0.19262824952602386, - 0.182560995221138, - 0.16799400746822357, - 0.14932464063167572, - 0.1270621120929718, - 0.10181375592947006, - 0.07426822185516357, - 0.045176878571510315, - 0.015333293937146664, - -0.01444847509264946, - -0.04335608705878258, - 0.07855398952960968, - 0.10255683958530426, - 0.12424226850271225, - 0.14301873743534088, - 0.15837408602237701, - 0.1698894500732422, - 0.17725074291229248, - 0.1802571564912796, - 0.17882665991783142, - 0.17299829423427582, - 0.16293103992938995, - 0.14889951050281525, - 0.13128644227981567, - 0.11057224869728088, - 0.08732203394174576, - 0.06216992810368538, - 0.03580203652381897, - 0.008937611244618893, - -0.017690535634756088, - -0.04335608333349228, - 0.07855398952960968, - 0.09662361443042755, - 0.11253765970468521, - 0.1258620023727417, - 0.13623324036598206, - 0.1433684229850769, - 0.1470729410648346, - 0.14724577963352203, - 0.143882155418396, - 0.13707387447357178, - 0.1270066201686859, - 0.11395500600337982, - 0.09827505797147751, - 0.08039446920156479, - 0.06080099195241928, - 0.04002906382083893, - 0.018645303323864937, - -0.0027669966220855713, - -0.023623760789632797, - -0.04335608333349228, - 0.07855398952960968, - 0.0886421725153923, - 0.09679248929023743, - 0.10278259962797165, - 0.10644913464784622, - 0.10769205540418625, - 0.10647748410701752, - 0.10283853858709335, - 0.09687447547912598, - 0.08874797821044922, - 0.07868072390556335, - 0.0669473186135292, - 0.05386782065033913, - 0.03979899734258652, - 0.025124628096818924, - 0.010244959965348244, - -0.00443410687148571, - -0.018512167036533356, - -0.031605202704668045, - -0.04335608333349228, - 0.07855398952960968, - 0.07947742938995361, - 0.07871298491954803, - 0.07628148794174194, - 0.07224930822849274, - 0.06672640144824982, - 0.05986342951655388, - 0.05184759199619293, - 0.0428975373506546, - 0.03325740620493889, - 0.023190153762698174, - 0.012970385141670704, - 0.002876873128116131, - -0.006815062835812569, - -0.015841040760278702, - -0.023954864591360092, - -0.030935212969779968, - -0.036591675132513046, - -0.040769949555397034, - -0.04335607960820198, - 0.07855398952960968, - 0.07012253254652023, - 0.060258373618125916, - 0.049230560660362244, - 0.03733992576599121, - 0.024910815060138702, - 0.012282255105674267, - -0.00020127929747104645, - -0.012199277058243752, - -0.023384451866149902, - -0.03345170617103577, - -0.042126432061195374, - -0.04917199909687042, - -0.054396241903305054, - -0.057656630873680115, - -0.058864250779151917, - -0.05798614025115967, - -0.05504628270864487, - -0.05012483894824982, - -0.04335607588291168, - 0.07855399698019028, - 0.06159123033285141, - 0.04342847317457199, - 0.024561146274209023, - 0.005503909662365913, - -0.013223391026258469, - -0.031109951436519623, - -0.047667860984802246, - -0.06244545429944992, - -0.07503965497016907, - -0.08510690182447433, - -0.09237261116504669, - -0.09663858264684677, - -0.09778845310211182, - -0.09579084813594818, - -0.09070026874542236, - -0.08265555649995804, - -0.07187618315219879, - -0.05865614116191864, - -0.04335607588291168, - 0.07855399698019028, - 0.05480800196528435, - 0.03004704788327217, - 0.004946531727910042, - -0.01980886235833168, - -0.04354384168982506, - -0.06561101973056793, - -0.08540846407413483, - -0.10239611566066742, - -0.11611062288284302, - -0.12617787718772888, - -0.1323232650756836, - -0.13437917828559875, - -0.13228952884674072, - -0.12611129879951477, - -0.11601303517818451, - -0.10227017104625702, - -0.08525761216878891, - -0.065439373254776, - -0.043356072157621384, - 0.07855400443077087, - 0.050507936626672745, - 0.021564215421676636, - -0.0074876826256513596, - -0.03585528954863548, - -0.06276477128267288, - -0.08748215436935425, - -0.10933321714401245, - -0.1277218908071518, - -0.14214658737182617, - -0.15221384167671204, - -0.15764904022216797, - -0.15830393135547638, - -0.15416066348552704, - -0.1453322321176529, - -0.13205945491790771, - -0.11470438539981842, - -0.09374044090509415, - -0.0697394385933876, - -0.043356072157621384, - 0.07855400443077087, - 0.04915701225399971, - 0.018899213522672653, - -0.011394066736102104, - -0.04089648649096489, - -0.06880329549312592, - -0.09435328841209412, - -0.11684951186180115, - -0.13567833602428436, - -0.15032614767551422, - -0.16039340198040009, - -0.16560548543930054, - -0.16582022607326508, - -0.1610317975282669, - -0.15137074887752533, - -0.13710066676139832, - -0.11861076951026917, - -0.09640544652938843, - -0.07109036296606064, - -0.043356072157621384, - 0.07855400443077087, - 0.0509016178548336, - 0.022340834140777588, - -0.006349308416247368, - -0.034386198967695236, - -0.06100505590438843, - -0.08547981083393097, - -0.1071428507566452, - -0.1254032552242279, - -0.13976293802261353, - -0.1498301923274994, - -0.15533040463924408, - -0.15611356496810913, - -0.15215831995010376, - -0.14357252418994904, - -0.13059037923812866, - -0.11356601119041443, - -0.0929638221859932, - -0.06934575736522675, - -0.043356072157621384 - ], - "y": [ - -0.01933959126472473, - -0.02556236833333969, - -0.033751390874385834, - -0.04368330165743828, - -0.055087167769670486, - -0.06765192002058029, - -0.0810348317027092, - -0.09487085044384003, - -0.1087825670838356, - -0.1223905086517334, - -0.13532346487045288, - -0.14722870290279388, - -0.1577814370393753, - -0.16669383645057678, - -0.1737227737903595, - -0.1786765456199646, - -0.1814199984073639, - -0.18187832832336426, - -0.18003901839256287, - -0.1759522259235382, - -0.019339583814144135, - -0.034028828144073486, - -0.050453368574380875, - -0.06816521286964417, - -0.08668120950460434, - -0.10549628734588623, - -0.12409722805023193, - -0.14197665452957153, - -0.1586468368768692, - -0.17365309596061707, - -0.18658605217933655, - -0.1970929652452469, - -0.2048872411251068, - -0.20975622534751892, - -0.21156713366508484, - -0.21027058362960815, - -0.20590192079544067, - -0.1985803246498108, - -0.18850547075271606, - -0.1759522259235382, - -0.019339583814144135, - -0.04101920872926712, - -0.06424346566200256, - -0.08837886154651642, - -0.11276702582836151, - -0.1367427259683609, - -0.1596519649028778, - -0.18086984753608704, - -0.19981759786605835, - -0.21597838401794434, - -0.22891134023666382, - -0.23826374113559723, - -0.24378043413162231, - -0.245310977101326, - -0.2428135871887207, - -0.23635640740394592, - -0.22611555457115173, - -0.21237041056156158, - -0.1954958438873291, - -0.1759522259235382, - -0.019339583814144135, - -0.04577600955963135, - -0.07362730801105499, - -0.10213377326726913, - -0.130517840385437, - -0.15800520777702332, - -0.18384616076946259, - -0.20733578503131866, - -0.2278333604335785, - -0.24477975070476532, - -0.257712721824646, - -0.2662794888019562, - -0.27024635672569275, - -0.2695051431655884, - -0.2640760838985443, - -0.25410720705986023, - -0.23987047374248505, - -0.221754252910614, - -0.20025265216827393, - -0.1759522259235382, - -0.019339583814144135, - -0.0477837435901165, - -0.07758801430463791, - -0.10793942213058472, - -0.13801003992557526, - -0.1669796109199524, - -0.19405795633792877, - -0.21850645542144775, - -0.2396581768989563, - -0.25693613290786743, - -0.2698690891265869, - -0.278104305267334, - -0.28141701221466064, - -0.27971696853637695, - -0.2730504870414734, - -0.26159942150115967, - -0.24567611515522003, - -0.22571496665477753, - -0.20226038992404938, - -0.1759522259235382, - -0.019339583814144135, - -0.04682484641671181, - -0.07569636404514313, - -0.10516662895679474, - -0.13443174958229065, - -0.16269344091415405, - -0.18918079137802124, - -0.2131713181734085, - -0.23401060700416565, - -0.25113022327423096, - -0.2640632092952728, - -0.27245673537254333, - -0.2760818898677826, - -0.2748398184776306, - -0.26876431703567505, - -0.25802111625671387, - -0.24290333688259125, - -0.22382330894470215, - -0.2013014853000641, - -0.1759522259235382, - -0.019339583814144135, - -0.043003231287002563, - -0.0681573823094368, - -0.09411590546369553, - -0.1201707273721695, - -0.14561112225055695, - -0.169743150472641, - -0.1919085681438446, - -0.21150273084640503, - -0.22799116373062134, - -0.24092413485050201, - -0.24994885921478271, - -0.2548191547393799, - -0.255402147769928, - -0.25168198347091675, - -0.2437601238489151, - -0.23185260593891144, - -0.21628433465957642, - -0.19747987389564514, - -0.1759522259235382, - -0.019339583814144135, - -0.03673302382230759, - -0.05578800290822983, - -0.07598476856946945, - -0.09677238762378693, - -0.11758381873369217, - -0.13785140216350555, - -0.15702231228351593, - -0.17457357048988342, - -0.1900264322757721, - -0.20295938849449158, - -0.2130196988582611, - -0.21993288397789001, - -0.22351041436195374, - -0.22365468740463257, - -0.22036176919937134, - -0.21372146904468536, - -0.20391494035720825, - -0.19120967388153076, - -0.1759522259235382, - -0.019339583814144135, - -0.028693705797195435, - -0.03992864862084389, - -0.05273798853158951, - -0.06677228957414627, - -0.08164873719215393, - -0.09696154296398163, - -0.11229303479194641, - -0.12722498178482056, - -0.14135007560253143, - -0.1542830467224121, - -0.16567111015319824, - -0.1752036213874817, - -0.18262054026126862, - -0.18771959841251373, - -0.19036167860031128, - -0.19047468900680542, - -0.1880556046962738, - -0.183170348405838, - -0.1759522259235382, - -0.01933959126472473, - -0.019756458699703217, - -0.0222979336977005, - -0.02689472585916519, - -0.03342141956090927, - -0.041699979454278946, - -0.051504604518413544, - -0.06256784498691559, - -0.07458791881799698, - -0.08723695576190948, - -0.10016992688179016, - -0.11303405463695526, - -0.12547841668128967, - -0.13716360926628113, - -0.14777082204818726, - -0.15701079368591309, - -0.1646314263343811, - -0.17042487859725952, - -0.1742331087589264, - -0.1759522259235382, - -0.01933959126472473, - -0.010889768600463867, - -0.004806414246559143, - -0.0012554973363876343, - -0.0003338456153869629, - -0.0020666196942329407, - -0.006406545639038086, - -0.013235233724117279, - -0.022366441786289215, - -0.03355106711387634, - -0.04648403450846672, - -0.0608125701546669, - -0.07614581286907196, - -0.09206553548574448, - -0.10813745856285095, - -0.12392321974039078, - -0.13899219036102295, - -0.15293335914611816, - -0.16536641120910645, - -0.1759522259235382, - -0.01933959126472473, - -0.003054477274417877, - 0.01065044105052948, - 0.021401293575763702, - 0.028904855251312256, - 0.032956451177597046, - 0.03344555199146271, - 0.030358821153640747, - 0.023780465126037598, - 0.013889886438846588, - 0.0009569227695465088, - -0.014665663242340088, - -0.032551757991313934, - -0.05221344158053398, - -0.07311438769102097, - -0.09468451142311096, - -0.11633540689945221, - -0.13747650384902954, - -0.15753112733364105, - -0.1759522259235382, - -0.01933959871530533, - 0.002900324761867523, - 0.02239762246608734, - 0.03862041234970093, - 0.05112624168395996, - 0.059573933482170105, - 0.06373310089111328, - 0.06349027156829834, - 0.058852046728134155, - 0.049944981932640076, - 0.0370120108127594, - 0.020405925810337067, - 0.0005796924233436584, - -0.021925896406173706, - -0.04649689048528671, - -0.07246312499046326, - -0.09911628812551498, - -0.12572932243347168, - -0.15157631039619446, - -0.1759522259235382, - -0.01933959871530533, - 0.006329365074634552, - 0.029162153601646423, - 0.048535943031311035, - 0.06392227113246918, - 0.07490144670009613, - 0.08117397129535675, - 0.08256877958774567, - 0.0790477842092514, - 0.0707070380449295, - 0.05777406692504883, - 0.04060165584087372, - 0.019658200442790985, - -0.004485011100769043, - -0.031169384717941284, - -0.05966709181666374, - -0.08920076489448547, - -0.1189647912979126, - -0.14814728498458862, - -0.1759522259235382, - -0.01933959871530533, - 0.0068610310554504395, - 0.030210986733436584, - 0.050073325634002686, - 0.06590628623962402, - 0.07727797329425812, - 0.08387815952301025, - 0.08552686870098114, - 0.08217909932136536, - 0.07392619550228119, - 0.06099322438240051, - 0.04373297095298767, - 0.02261628955602646, - -0.0017808079719543457, - -0.028792865574359894, - -0.057683076709508896, - -0.08766336739063263, - -0.11791595816612244, - -0.14761561155319214, - -0.1759522259235382, - -0.01933959871530533, - 0.004437729716300964, - 0.025430485606193542, - 0.04306602478027344, - 0.05686330795288086, - 0.06644599139690399, - 0.07155267894268036, - 0.07204407453536987, - 0.06790675222873688, - 0.05925358831882477, - 0.04632061719894409, - 0.029460623860359192, - 0.009133495390415192, - -0.014106303453445435, - -0.039624832570552826, - -0.06672604382038116, - -0.09467067569494247, - -0.12269646674394608, - -0.1500389128923416, - -0.1759522259235382, - -0.01933959126472473, - -0.0006779581308364868, - 0.015338651835918427, - 0.0282733291387558, - 0.037773266434669495, - 0.04357929527759552, - 0.04553310573101044, - 0.04358135163784027, - 0.03777727484703064, - 0.028279229998588562, - 0.015346258878707886, - -0.000668846070766449, - -0.01932922750711441, - -0.04012588784098625, - -0.062491536140441895, - -0.08581611514091492, - -0.10946337878704071, - -0.1327883005142212, - -0.15515460073947906, - -0.1759522259235382, - -0.01933959126472473, - -0.007931657135486603, - 0.0010291114449501038, - 0.007298275828361511, - 0.01070483773946762, - 0.011155880987644196, - 0.00863908976316452, - 0.003223128616809845, - -0.004944279789924622, - -0.01564035564661026, - -0.02857331931591034, - -0.043390411883592606, - -0.059687450528144836, - -0.07701990008354187, - -0.09491496533155441, - -0.1128845289349556, - -0.1304384171962738, - -0.14709782600402832, - -0.16240829229354858, - -0.1759522259235382, - -0.01933959126472473, - -0.016537316143512726, - -0.01594746857881546, - -0.017586156725883484, - -0.02140866219997406, - -0.02731071412563324, - -0.03513132780790329, - -0.04465716704726219, - -0.05562841519713402, - -0.06774578243494034, - -0.08067875355482101, - -0.094074547290802, - -0.10756774991750717, - -0.12079031765460968, - -0.13338156044483185, - -0.14499802887439728, - -0.1553228497505188, - -0.16407442092895508, - -0.1710139662027359, - -0.1759522259235382, - -0.01933959126472473, - -0.025562375783920288, - -0.03375139832496643, - -0.04368331655859947, - -0.05508718639612198, - -0.06765194237232208, - -0.08103485405445099, - -0.09487088024616241, - -0.10878259688615799, - -0.12239053845405579, - -0.13532349467277527, - -0.14722871780395508, - -0.1577814519405365, - -0.16669385135173798, - -0.17372280359268188, - -0.1786765605211258, - -0.18142002820968628, - -0.18187834322452545, - -0.18003901839256287, - -0.1759522259235382 - ], - "z": [ - 0.4862542748451233, - 0.49712878465652466, - 0.5034329891204834, - 0.5049949884414673, - 0.5017721652984619, - 0.4938523471355438, - 0.48145169019699097, - 0.4649083614349365, - 0.44467365741729736, - 0.4212994873523712, - 0.3954235017299652, - 0.36775150895118713, - 0.33903831243515015, - 0.3100671172142029, - 0.28162822127342224, - 0.25449734926223755, - 0.22941455245018005, - 0.20706400275230408, - 0.18805542588233948, - 0.172907292842865, - 0.4862542748451233, - 0.49955081939697266, - 0.5082110166549683, - 0.5119986534118652, - 0.5108104348182678, - 0.5046787261962891, - 0.4937707781791687, - 0.47838419675827026, - 0.4589385986328125, - 0.4359644651412964, - 0.4100884795188904, - 0.38201647996902466, - 0.3525141179561615, - 0.322386234998703, - 0.2924545705318451, - 0.26353561878204346, - 0.236418217420578, - 0.21184203028678894, - 0.19047747552394867, - 0.172907292842865, - 0.4862542748451233, - 0.500300407409668, - 0.5096898078918457, - 0.5141662359237671, - 0.5136076807975769, - 0.5080293416976929, - 0.49758344888687134, - 0.4825548529624939, - 0.4633535146713257, - 0.44050318002700806, - 0.41462719440460205, - 0.38643136620521545, - 0.3566848039627075, - 0.32619887590408325, - 0.2958052456378937, - 0.2663329243659973, - 0.23858579993247986, - 0.213320791721344, - 0.19122707843780518, - 0.172907292842865, - 0.4862542748451233, - 0.4992963671684265, - 0.5077090263366699, - 0.511262834072113, - 0.5098608136177063, - 0.5035412311553955, - 0.4924764931201935, - 0.476968377828598, - 0.4574398994445801, - 0.4344237446784973, - 0.4085477590560913, - 0.38051775097846985, - 0.35109832882881165, - 0.3210919499397278, - 0.2913171350955963, - 0.2625860571861267, - 0.2356823980808258, - 0.2113400399684906, - 0.19022300839424133, - 0.172907292842865, - 0.4862542748451233, - 0.4966474175453186, - 0.5024834275245667, - 0.5036031007766724, - 0.49997586011886597, - 0.4917007088661194, - 0.479003369808197, - 0.4622301459312439, - 0.4418386220932007, - 0.41838496923446655, - 0.39250898361206055, - 0.36491647362709045, - 0.3363600969314575, - 0.30761879682540894, - 0.2794765830039978, - 0.252701073884964, - 0.22802263498306274, - 0.20611441135406494, - 0.18757407367229462, - 0.172907292842865, - 0.4862542748451233, - 0.4926406443119049, - 0.4945791959762573, - 0.4920169711112976, - 0.48502397537231445, - 0.47379085421562195, - 0.45862406492233276, - 0.4399372935295105, - 0.4182403087615967, - 0.39412492513656616, - 0.36824893951416016, - 0.34131819009780884, - 0.3140672743320465, - 0.2872394919395447, - 0.26156672835350037, - 0.23774917423725128, - 0.21643655002117157, - 0.1982101947069168, - 0.18356731534004211, - 0.172907292842865, - 0.4862542748451233, - 0.48771026730537415, - 0.48485293984413147, - 0.4777601361274719, - 0.4666253924369812, - 0.4517524838447571, - 0.4335470199584961, - 0.4125056266784668, - 0.3892022371292114, - 0.3642725646495819, - 0.3383965790271759, - 0.3122801184654236, - 0.2866355776786804, - 0.262162446975708, - 0.2395283579826355, - 0.21935062110424042, - 0.2021797001361847, - 0.18848392367362976, - 0.17863693833351135, - 0.172907292842865, - 0.4862542748451233, - 0.48239055275917053, - 0.47435861825942993, - 0.4623774588108063, - 0.4467739760875702, - 0.42797380685806274, - 0.40648967027664185, - 0.3829077184200287, - 0.3578711152076721, - 0.33206281065940857, - 0.30618682503700256, - 0.2809489667415619, - 0.2570376694202423, - 0.23510512709617615, - 0.21574966609477997, - 0.1994991898536682, - 0.18679702281951904, - 0.17798960208892822, - 0.17331722378730774, - 0.172907292842865, - 0.4862542748451233, - 0.47725796699523926, - 0.4642334580421448, - 0.4475359320640564, - 0.42762088775634766, - 0.40503159165382385, - 0.3803841769695282, - 0.3543510138988495, - 0.32764214277267456, - 0.3009861707687378, - 0.2751101851463318, - 0.2507200241088867, - 0.22848094999790192, - 0.2089996337890625, - 0.19280746579170227, - 0.18034610152244568, - 0.17195548117160797, - 0.16786444187164307, - 0.16818463802337646, - 0.172907292842865, - 0.4862542748451233, - 0.47286874055862427, - 0.4555746912956238, - 0.4348438084125519, - 0.41124165058135986, - 0.3854120075702667, - 0.35805943608283997, - 0.32993003726005554, - 0.30179110169410706, - 0.274410218000412, - 0.2485342174768448, - 0.22486896812915802, - 0.20405998826026917, - 0.18667487800121307, - 0.17318788170814514, - 0.16396686434745789, - 0.15926337242126465, - 0.15920567512512207, - 0.16379539668560028, - 0.172907292842865, - 0.4862542748451233, - 0.4696984589099884, - 0.44932061433792114, - 0.42567652463912964, - 0.39941123127937317, - 0.37124115228652954, - 0.3419346809387207, - 0.3122912049293518, - 0.2831193804740906, - 0.2552148699760437, - 0.2293388843536377, - 0.20619723200798035, - 0.18642115592956543, - 0.17055010795593262, - 0.15901701152324677, - 0.15213643014431, - 0.1500960886478424, - 0.15295159816741943, - 0.16062511503696442, - 0.172907292842865, - 0.4862542748451233, - 0.4680907130241394, - 0.44614893198013306, - 0.4210274815559387, - 0.39341163635253906, - 0.3640546202659607, - 0.3337572515010834, - 0.3033459782600403, - 0.27365028858184814, - 0.2454802691936493, - 0.2196042835712433, - 0.1967281699180603, - 0.1774759292602539, - 0.16237269341945648, - 0.15183047950267792, - 0.1461368352174759, - 0.1454470455646515, - 0.14977994561195374, - 0.15901736915111542, - 0.172907292842865, - 0.4862542748451233, - 0.46821969747543335, - 0.4464034140110016, - 0.4214004874229431, - 0.39389297366142273, - 0.36463120579719543, - 0.3344133496284485, - 0.3040636479854584, - 0.2744100093841553, - 0.24626129865646362, - 0.22038531303405762, - 0.19748787581920624, - 0.1781936138868332, - 0.1630287915468216, - 0.15240706503391266, - 0.14661818742752075, - 0.14582005143165588, - 0.15003441274166107, - 0.15914635360240936, - 0.172907292842865, - 0.4862542748451233, - 0.4700714349746704, - 0.45005643367767334, - 0.4267551302909851, - 0.4008031487464905, - 0.37290844321250916, - 0.343831866979599, - 0.31436651945114136, - 0.28531622886657715, - 0.25747331976890564, - 0.23159733414649963, - 0.20839408040046692, - 0.18849648535251617, - 0.1724472939968109, - 0.16068430244922638, - 0.1535283625125885, - 0.15117467939853668, - 0.15368743240833282, - 0.1609981209039688, - 0.172907292842865, - 0.4862542748451233, - 0.4734452962875366, - 0.45671212673187256, - 0.4365110993385315, - 0.4133932888507843, - 0.3879893124103546, - 0.36099210381507874, - 0.3331380784511566, - 0.3051869869232178, - 0.2779013216495514, - 0.2520253360271454, - 0.22826486825942993, - 0.20726802945137024, - 0.18960753083229065, - 0.17576518654823303, - 0.16611850261688232, - 0.16093064844608307, - 0.16034312546253204, - 0.16437198221683502, - 0.172907292842865, - 0.4862542748451233, - 0.47797566652297974, - 0.46564924716949463, - 0.44961121678352356, - 0.4302990734577179, - 0.40823960304260254, - 0.38403451442718506, - 0.35834407806396484, - 0.33186906576156616, - 0.30533161759376526, - 0.27945563197135925, - 0.2549469470977783, - 0.23247404396533966, - 0.21264997124671936, - 0.19601547718048096, - 0.18302427232265472, - 0.17403076589107513, - 0.1692802459001541, - 0.16890233755111694, - 0.172907292842865, - 0.4862542748451233, - 0.48317158222198486, - 0.475899338722229, - 0.4646359086036682, - 0.44968852400779724, - 0.43146491050720215, - 0.4104621708393097, - 0.38725319504737854, - 0.3624710738658905, - 0.3367917537689209, - 0.3109157681465149, - 0.2855489253997803, - 0.26138314604759216, - 0.2390775978565216, - 0.21924078464508057, - 0.20241372287273407, - 0.1890554577112198, - 0.17953035235404968, - 0.17409825325012207, - 0.172907292842865, - 0.4862542748451233, - 0.48847001791000366, - 0.4863516688346863, - 0.4799569845199585, - 0.46946045756340027, - 0.4551483988761902, - 0.4374111294746399, - 0.4167325794696808, - 0.3936767578125, - 0.3688725233078003, - 0.3429965376853943, - 0.31675460934638977, - 0.2908625304698944, - 0.2660265862941742, - 0.2429242581129074, - 0.2221856713294983, - 0.20437654852867126, - 0.18998265266418457, - 0.17939665913581848, - 0.172907292842865, - 0.4862542748451233, - 0.49329674243927, - 0.49587351083755493, - 0.4939141869544983, - 0.4874722957611084, - 0.4767235517501831, - 0.46196112036705017, - 0.4435877203941345, - 0.42210447788238525, - 0.3980974555015564, - 0.3722214698791504, - 0.3451823592185974, - 0.31771764159202576, - 0.2905765771865845, - 0.2644994258880615, - 0.24019750952720642, - 0.21833373606204987, - 0.19950449466705322, - 0.18422341346740723, - 0.172907292842865, - 0.4862542748451233, - 0.49712878465652466, - 0.5034329891204834, - 0.5049949884414673, - 0.5017721652984619, - 0.4938523769378662, - 0.48145169019699097, - 0.4649083614349365, - 0.44467365741729736, - 0.4212995171546936, - 0.3954235315322876, - 0.36775150895118713, - 0.33903831243515015, - 0.3100671172142029, - 0.28162825107574463, - 0.25449734926223755, - 0.22941455245018005, - 0.20706400275230408, - 0.18805544078350067, - 0.172907292842865 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.06190788745880127, - 0.095632404088974, - 0.1301124542951584, - 0.16440752148628235, - 0.19758212566375732, - 0.22873130440711975, - 0.2570054531097412, - 0.28163331747055054, - 0.3019430637359619, - 0.31738072633743286, - 0.32752519845962524, - 0.3320998549461365, - 0.33097973465919495, - 0.32419553399086, - 0.3119322657585144, - 0.2945244014263153, - 0.27244681119918823, - 0.24630175530910492, - 0.21680235862731934, - 0.18475328385829926, - 0.06190788745880127, - 0.10023177415132523, - 0.13918574154376984, - 0.1777072250843048, - 0.21474546194076538, - 0.2492901235818863, - 0.2803989350795746, - 0.3072233498096466, - 0.32903164625167847, - 0.3452289402484894, - 0.35537344217300415, - 0.35918840765953064, - 0.356569766998291, - 0.34758901596069336, - 0.33249107003211975, - 0.31168773770332336, - 0.2857465147972107, - 0.2553750276565552, - 0.22140172123908997, - 0.18475328385829926, - 0.06190788745880127, - 0.10076893866062164, - 0.14024542272090912, - 0.1792605072259903, - 0.21674998104572296, - 0.25169122219085693, - 0.28313106298446655, - 0.31021201610565186, - 0.33219534158706665, - 0.34848135709762573, - 0.3586258590221405, - 0.3623521327972412, - 0.35955846309661865, - 0.3503211736679077, - 0.3348921537399292, - 0.31369227170944214, - 0.2872998118400574, - 0.25643473863601685, - 0.22193889319896698, - 0.18475328385829926, - 0.06190788745880127, - 0.09718568623065948, - 0.13317666947841644, - 0.1688990592956543, - 0.20337848365306854, - 0.23567436635494232, - 0.26490581035614014, - 0.290275514125824, - 0.3110913634300232, - 0.3267855644226074, - 0.3369300365447998, - 0.341248095035553, - 0.33962196111679077, - 0.3320959210395813, - 0.3188753128051758, - 0.30032074451446533, - 0.27693837881088257, - 0.24936595559120178, - 0.21835564076900482, - 0.18475328385829926, - 0.06190788745880127, - 0.08987031877040863, - 0.11874546855688095, - 0.14774568378925323, - 0.17607992887496948, - 0.20297527313232422, - 0.22769814729690552, - 0.24957415461540222, - 0.2680065631866455, - 0.28249257802963257, - 0.29263705015182495, - 0.2981633245944977, - 0.29892057180404663, - 0.2948882281780243, - 0.2861762046813965, - 0.27302220463752747, - 0.2557849884033203, - 0.2349347621202469, - 0.21104027330875397, - 0.18475328385829926, - 0.06190789118409157, - 0.07961557060480118, - 0.09851568937301636, - 0.11809269338846207, - 0.1378125697374344, - 0.1571374088525772, - 0.17554008960723877, - 0.19251863658428192, - 0.20760990679264069, - 0.22040227055549622, - 0.230546772480011, - 0.23776668310165405, - 0.24186506867408752, - 0.24273017048835754, - 0.24033834040164948, - 0.23475486040115356, - 0.22613197565078735, - 0.2147049903869629, - 0.20078551769256592, - 0.18475328385829926, - 0.061907894909381866, - 0.06753270328044891, - 0.07467953860759735, - 0.08315344154834747, - 0.09272326529026031, - 0.10312798619270325, - 0.11408378928899765, - 0.12529180943965912, - 0.13644632697105408, - 0.14724309742450714, - 0.15738758444786072, - 0.16660308837890625, - 0.17463824152946472, - 0.18127384781837463, - 0.1863289177417755, - 0.1896655410528183, - 0.19119274616241455, - 0.1908688247203827, - 0.18870264291763306, - 0.18475328385829926, - 0.061907898634672165, - 0.054931074380874634, - 0.04982002079486847, - 0.04671413451433182, - 0.0456981435418129, - 0.04679977148771286, - 0.04998895525932312, - 0.05517870932817459, - 0.062227457761764526, - 0.0709429681301117, - 0.08108745515346527, - 0.0923842191696167, - 0.10452514886856079, - 0.1171790286898613, - 0.13000069558620453, - 0.14264041185379028, - 0.1547534316778183, - 0.1660093069076538, - 0.17610102891921997, - 0.18475329875946045, - 0.06190790235996246, - 0.043176278471946716, - 0.026631057262420654, - 0.012723550200462341, - 0.001833103597164154, - -0.00574319064617157, - -0.009798705577850342, - -0.010222792625427246, - -0.007003903388977051, - -0.00022981315851211548, - 0.009914681315422058, - 0.023152858018875122, - 0.039123646914958954, - 0.05739135295152664, - 0.0774577185511589, - 0.09877538681030273, - 0.12076284736394882, - 0.1428203582763672, - 0.16434621810913086, - 0.18475329875946045, - 0.06190790235996246, - 0.03354211896657944, - 0.0076255351305007935, - -0.015134915709495544, - -0.034118399024009705, - -0.04880706965923309, - -0.05880029499530792, - -0.06382545828819275, - -0.06374548375606537, - -0.05856256186962128, - -0.0484180748462677, - -0.033588722348213196, - -0.014479026198387146, - 0.008389778435230255, - 0.03439383953809738, - 0.06282386183738708, - 0.09290437400341034, - 0.12381482869386673, - 0.15471206605434418, - 0.18475329875946045, - 0.06190790608525276, - 0.027072615921497345, - -0.005137011408805847, - -0.03384236991405487, - -0.05826045572757721, - -0.07772520184516907, - -0.09170570969581604, - -0.0998205840587616, - -0.10184843838214874, - -0.09773401916027069, - -0.08758953213691711, - -0.07169167697429657, - -0.050474151968955994, - -0.024515658617019653, - 0.005475692451000214, - 0.03868180513381958, - 0.07419693470001221, - 0.11105228960514069, - 0.14824256300926208, - 0.18475329875946045, - 0.06190790608525276, - 0.024468831717967987, - -0.010273545980453491, - -0.04137153923511505, - -0.0679769217967987, - -0.08936388790607452, - -0.10494914650917053, - -0.11430750787258148, - -0.11718373000621796, - -0.11349934339523315, - -0.10335485637187958, - -0.08702696859836578, - -0.06496107578277588, - -0.037759095430374146, - -0.006162986159324646, - 0.028965353965759277, - 0.06666775047779083, - 0.10591575503349304, - 0.14563877880573273, - 0.18475329875946045, - 0.06190790608525276, - 0.026012934744358063, - -0.007227465510368347, - -0.03690657019615173, - -0.06221483647823334, - -0.082461878657341, - -0.09709547460079193, - -0.10571642220020294, - -0.10808955132961273, - -0.10415013134479523, - -0.09400564432144165, - -0.07793278992176056, - -0.05636999011039734, - -0.029905423521995544, - 0.0007390007376670837, - 0.03472742438316345, - 0.07113273441791534, - 0.10896183550357819, - 0.1471828818321228, - 0.18475329875946045, - 0.06190790608525276, - 0.03153759986162186, - 0.0036711692810058594, - -0.02093125879764557, - -0.0415986031293869, - -0.0577671080827713, - -0.06899574398994446, - -0.07497823238372803, - -0.0755513459444046, - -0.07069948315620422, - -0.06055499613285065, - -0.04539458453655243, - -0.025631800293922424, - -0.0018056929111480713, - 0.025433801114559174, - 0.055343665182590485, - 0.08710804581642151, - 0.1198604628443718, - 0.1527075469493866, - 0.18475329875946045, - 0.06190790235996246, - 0.04044412821531296, - 0.02124127745628357, - 0.004823170602321625, - -0.008362382650375366, - -0.017955675721168518, - -0.023695066571235657, - -0.025423958897590637, - -0.02309522032737732, - -0.01677238941192627, - -0.006627902388572693, - 0.0070615410804748535, - 0.023922473192214966, - 0.043494999408721924, - 0.06524523347616196, - 0.08857989311218262, - 0.11286246031522751, - 0.1374305784702301, - 0.1616140753030777, - 0.18475329875946045, - 0.061907898634672165, - 0.051767364144325256, - 0.04357888549566269, - 0.03756583482027054, - 0.03389221429824829, - 0.03265824168920517, - 0.03389757126569748, - 0.03757640719413757, - 0.04359438270330429, - 0.051787368953228, - 0.06193186342716217, - 0.07375115156173706, - 0.08692283928394318, - 0.10108763724565506, - 0.11585915833711624, - 0.13083449006080627, - 0.14560513198375702, - 0.15976817905902863, - 0.1729373037815094, - 0.18475329875946045, - 0.061907894909381866, - 0.06428027898073196, - 0.06826340407133102, - 0.0737486332654953, - 0.08058629930019379, - 0.08858993649482727, - 0.0975412130355835, - 0.10719594359397888, - 0.11729079484939575, - 0.1275503784418106, - 0.13769486546516418, - 0.14744755625724792, - 0.15654237568378448, - 0.16473126411437988, - 0.17179085314273834, - 0.17752857506275177, - 0.18178792297840118, - 0.18445269763469696, - 0.1854502260684967, - 0.18475329875946045, - 0.06190789118409157, - 0.07662688940763474, - 0.09261985123157501, - 0.10945051908493042, - 0.1266597956418991, - 0.1437782645225525, - 0.16033896803855896, - 0.17589019238948822, - 0.19000771641731262, - 0.20230644941329956, - 0.21245095133781433, - 0.2201644778251648, - 0.22523662447929382, - 0.22752903401851654, - 0.22697919607162476, - 0.2236020863056183, - 0.2174898087978363, - 0.20880913734436035, - 0.19779685139656067, - 0.18475328385829926, - 0.06190789118409157, - 0.08746924996376038, - 0.1140088215470314, - 0.14080266654491425, - 0.16711992025375366, - 0.19224271178245544, - 0.21548575162887573, - 0.2362150400876999, - 0.25386518239974976, - 0.26795458793640137, - 0.27809908986091614, - 0.28402191400527954, - 0.2855614721775055, - 0.2826758027076721, - 0.2754436433315277, - 0.26406219601631165, - 0.24884195625782013, - 0.23019811511039734, - 0.2086392045021057, - 0.18475328385829926, - 0.06190788745880127, - 0.095632404088974, - 0.13011246919631958, - 0.16440753638744354, - 0.19758212566375732, - 0.22873131930828094, - 0.2570054531097412, - 0.28163331747055054, - 0.3019430935382843, - 0.31738072633743286, - 0.32752522826194763, - 0.3320998549461365, - 0.33097976446151733, - 0.3241955637931824, - 0.3119322657585144, - 0.2945244312286377, - 0.27244681119918823, - 0.2463017702102661, - 0.21680235862731934, - 0.18475328385829926 - ], - "y": [ - -0.04072345793247223, - -0.02615053951740265, - -0.009822722524404526, - 0.00781460665166378, - 0.026280343532562256, - 0.045070793479681015, - 0.06367340683937073, - 0.0815807580947876, - 0.09830436110496521, - 0.1133880540728569, - 0.12642039358615875, - 0.13704589009284973, - 0.1449747085571289, - 0.14999055862426758, - 0.15195664763450623, - 0.1508193016052246, - 0.1466095894575119, - 0.1394423246383667, - 0.12951302528381348, - 0.11709249764680862, - -0.04072345793247223, - -0.03798826038837433, - -0.0331752672791481, - -0.026415765285491943, - -0.017894137650728226, - -0.007842831313610077, - 0.0034639835357666016, - 0.015717875212430954, - 0.028584610670804977, - 0.041713207960128784, - 0.054745547473430634, - 0.0673261359333992, - 0.07911182194948196, - 0.08978112787008286, - 0.09904301166534424, - 0.10664481669664383, - 0.11237921565771103, - 0.11608978360891342, - 0.1176752969622612, - 0.11709249764680862, - -0.04072345048189163, - -0.05000575631856918, - -0.05688246339559555, - -0.061165980994701385, - -0.06273948401212692, - -0.06156004220247269, - -0.057659827172756195, - -0.05114523321390152, - -0.042193956673145294, - -0.031050167977809906, - -0.018017828464508057, - -0.003452431410551071, - 0.012248711660504341, - 0.02865730971097946, - 0.045325785875320435, - 0.061799466609954834, - 0.07762899994850159, - 0.09238259494304657, - 0.10565780103206635, - 0.11709250509738922, - -0.04072345048189163, - -0.06090075522661209, - -0.07837527245283127, - -0.09267033636569977, - -0.10339602828025818, - -0.1102597564458847, - -0.11307433247566223, - -0.11176295578479767, - -0.10636140406131744, - -0.09701701998710632, - -0.08398468047380447, - -0.06761988252401352, - -0.04836900532245636, - -0.02675718069076538, - -0.003373950719833374, - 0.021142933517694473, - 0.0461246520280838, - 0.07088978588581085, - 0.09476280212402344, - 0.11709250509738922, - -0.040723443031311035, - -0.06949260085821152, - -0.09532460570335388, - -0.11751481890678406, - -0.13545797765254974, - -0.14866460859775543, - -0.15677447617053986, - -0.15956638753414154, - -0.15696418285369873, - -0.14903879165649414, - -0.1360064595937729, - -0.11822265386581421, - -0.09617243707180023, - -0.0704573392868042, - -0.04177876561880112, - -0.010919023305177689, - 0.021280160173773766, - 0.05394044518470764, - 0.08617095649242401, - 0.11709251254796982, - -0.040723443031311035, - -0.07485024631023407, - -0.10589374601840973, - -0.13300715386867523, - -0.1554509401321411, - -0.17261281609535217, - -0.18402470648288727, - -0.18937531113624573, - -0.18851865828037262, - -0.18147815763950348, - -0.16844582557678223, - -0.1497771292924881, - -0.12598136067390442, - -0.09770756959915161, - -0.06572700291872025, - -0.03091198205947876, - 0.0057878270745277405, - 0.04337131232023239, - 0.08081331849098206, - 0.11709251254796982, - -0.040723443031311035, - -0.07639309763908386, - -0.10893736779689789, - -0.13746853172779083, - -0.1612083464860916, - -0.1795092225074768, - -0.1918720006942749, - -0.19795945286750793, - -0.19760549068450928, - -0.19081978499889374, - -0.17778745293617249, - -0.15886396169662476, - -0.13456550240516663, - -0.10555486381053925, - -0.07262342423200607, - -0.03666938841342926, - 0.0013264566659927368, - 0.040327683091163635, - 0.07927046716213226, - 0.11709251254796982, - -0.040723443031311035, - -0.07395396381616592, - -0.10412563383579254, - -0.13041545450687408, - -0.15210631489753723, - -0.16860651969909668, - -0.17946602404117584, - -0.18438857793807983, - -0.1832399219274521, - -0.17605137825012207, - -0.16301904618740082, - -0.14449839293956757, - -0.12099462747573853, - -0.09314888715744019, - -0.06172070652246475, - -0.027567356824874878, - 0.008379532024264336, - 0.04513941705226898, - 0.0817095935344696, - 0.11709251254796982, - -0.040723443031311035, - -0.06779716908931732, - -0.0919799953699112, - -0.11261224746704102, - -0.12913118302822113, - -0.1410861611366272, - -0.14815111458301544, - -0.15013332664966583, - -0.1469787061214447, - -0.13877332210540771, - -0.12574099004268646, - -0.10823717713356018, - -0.08673938363790512, - -0.061833977699279785, - -0.03420034795999527, - -0.004592236131429672, - 0.026182739064097404, - 0.057285062968730927, - 0.0878663882613182, - 0.11709250509738922, - -0.04072345048189163, - -0.05858989804983139, - -0.07381658256053925, - -0.08598817139863968, - -0.09477266669273376, - -0.09993042051792145, - -0.1013207733631134, - -0.0989057868719101, - -0.09275132417678833, - -0.083025261759758, - -0.06999292224645615, - -0.05400979518890381, - -0.03551183640956879, - -0.015003625303506851, - 0.006955405697226524, - 0.02976628765463829, - 0.05280680954456329, - 0.07544846832752228, - 0.09707365930080414, - 0.11709250509738922, - -0.04072345048189163, - -0.047329895198345184, - -0.05160371959209442, - -0.05342835187911987, - -0.052754029631614685, - -0.049599140882492065, - -0.04404974728822708, - -0.03625721484422684, - -0.02643410861492157, - -0.014848370105028152, - -0.001816030591726303, - 0.012307418510317802, - 0.027136730030179024, - 0.04226739704608917, - 0.05728669464588165, - 0.07178492099046707, - 0.0853666365146637, - 0.0976613312959671, - 0.10833366960287094, - 0.11709250509738922, - -0.04072345793247223, - -0.03523735702037811, - -0.02774849534034729, - -0.01846114918589592, - -0.0076286643743515015, - 0.004453487694263458, - 0.017455728724598885, - 0.031023405492305756, - 0.04478640854358673, - 0.058369338512420654, - 0.0714016705751419, - 0.08352793753147125, - 0.09441734850406647, - 0.10377287864685059, - 0.11133932322263718, - 0.11691029369831085, - 0.12033383548259735, - 0.12151656299829483, - 0.12042620033025742, - 0.11709249764680862, - -0.04072345793247223, - -0.023622702807188034, - -0.004836000502109528, - 0.015124192461371422, - 0.035713400691747665, - 0.05637001618742943, - 0.0765305832028389, - 0.09564515948295593, - 0.1131923645734787, - 0.1286935657262802, - 0.14172589778900146, - 0.15193389356136322, - 0.15903910994529724, - 0.16284774243831635, - 0.16325587034225464, - 0.16025236248970032, - 0.15391917526721954, - 0.1444290578365326, - 0.1320408582687378, - 0.11709249764680862, - -0.04072345793247223, - -0.013744547963142395, - 0.01465086080133915, - 0.043688200414180756, - 0.07257542014122009, - 0.10052451491355896, - 0.1267731785774231, - 0.15060538053512573, - 0.17137101292610168, - 0.18850363790988922, - 0.20153596997261047, - 0.2101125419139862, - 0.21399933099746704, - 0.21309034526348114, - 0.20741038024425507, - 0.19711437821388245, - 0.18248318135738373, - 0.16391591727733612, - 0.14191901683807373, - 0.11709249764680862, - -0.040723465383052826, - -0.0066733695566654205, - 0.028600340709090233, - 0.06413547694683075, - 0.09896275401115417, - 0.13213211297988892, - 0.1627388745546341, - 0.18994811177253723, - 0.21301761269569397, - 0.2313181310892105, - 0.24435046315193176, - 0.2517591416835785, - 0.25334206223487854, - 0.24905604124069214, - 0.23901797831058502, - 0.22350171208381653, - 0.20293046534061432, - 0.1778654009103775, - 0.1489901840686798, - 0.11709249019622803, - -0.040723465383052826, - -0.0031754150986671448, - 0.03550083935260773, - 0.07425028085708618, - 0.11201594769954681, - 0.14776766300201416, - 0.18053027987480164, - 0.20941007137298584, - 0.23361927270889282, - 0.25249746441841125, - 0.2655298113822937, - 0.27236080169677734, - 0.27280402183532715, - 0.2668474316596985, - 0.2546535134315491, - 0.23655492067337036, - 0.21304526925086975, - 0.18476589024066925, - 0.15248814225196838, - 0.11709249019622803, - -0.040723465383052826, - -0.0036297477781772614, - 0.03460455685853958, - 0.0729365199804306, - 0.11032053828239441, - 0.14573684334754944, - 0.17821943759918213, - 0.20688222348690033, - 0.23094339668750763, - 0.24974659085273743, - 0.2627789378166199, - 0.26968491077423096, - 0.27027618885040283, - 0.264536589384079, - 0.25262272357940674, - 0.23485949635505676, - 0.21173150837421417, - 0.1838696151971817, - 0.15203380584716797, - 0.11709249019622803, - -0.040723465383052826, - -0.007987141609191895, - 0.02600862644612789, - 0.06033652275800705, - 0.09406016767024994, - 0.12625963985919952, - 0.15605668723583221, - 0.1826384961605072, - 0.20527996122837067, - 0.2233635038137436, - 0.23639583587646484, - 0.2440214902162552, - 0.2460324466228485, - 0.24237386882305145, - 0.23314550518989563, - 0.2185991257429123, - 0.19913150370121002, - 0.17527368664741516, - 0.14767640829086304, - 0.11709249019622803, - -0.04072345793247223, - -0.0157754085958004, - 0.010644538328051567, - 0.037815697491168976, - 0.06499691307544708, - 0.09144677221775055, - 0.11644375324249268, - 0.13930605351924896, - 0.1594099998474121, - 0.17620724439620972, - 0.18923957645893097, - 0.19815154373645782, - 0.20270000398159027, - 0.20276090502738953, - 0.19833262264728546, - 0.18953588604927063, - 0.17661067843437195, - 0.15990959107875824, - 0.13988815248012543, - 0.11709249764680862, - -0.04072345793247223, - -0.026150546967983246, - -0.009822733700275421, - 0.007814591750502586, - 0.026280321180820465, - 0.045070767402648926, - 0.06367337703704834, - 0.08158071339130402, - 0.09830433130264282, - 0.11338801681995392, - 0.12642034888267517, - 0.13704586029052734, - 0.14497466385364532, - 0.1499905288219452, - 0.15195661783218384, - 0.15081928670406342, - 0.1466095745563507, - 0.1394423246383667, - 0.12951301038265228, - 0.11709249764680862 - ], - "z": [ - 0.44346883893013, - 0.42608141899108887, - 0.4134747385978699, - 0.40599265694618225, - 0.40383926033973694, - 0.40707331895828247, - 0.4156065583229065, - 0.4292062819004059, - 0.4475014805793762, - 0.46999311447143555, - 0.49606770277023315, - 0.5250139236450195, - 0.5560423135757446, - 0.5883064270019531, - 0.6209261417388916, - 0.6530117392539978, - 0.6836880445480347, - 0.7121182084083557, - 0.7375267744064331, - 0.7592206001281738, - 0.44346883893013, - 0.43020862340927124, - 0.4216165542602539, - 0.4179270267486572, - 0.4192405939102173, - 0.4255215525627136, - 0.4365984797477722, - 0.4521692395210266, - 0.47180911898612976, - 0.49498242139816284, - 0.5210570096969604, - 0.5493215918540955, - 0.579005241394043, - 0.6092982888221741, - 0.6393743753433228, - 0.6684131026268005, - 0.6956223845481873, - 0.7202600240707397, - 0.7416539192199707, - 0.7592206001281738, - 0.44346883893013, - 0.436006098985672, - 0.4330533742904663, - 0.4346911907196045, - 0.4408748745918274, - 0.45143580436706543, - 0.4660857915878296, - 0.4844253361225128, - 0.5059540867805481, - 0.5300849080085754, - 0.556159496307373, - 0.5834665894508362, - 0.6112613677978516, - 0.6387856602668762, - 0.6652886271476746, - 0.6900473833084106, - 0.7123865485191345, - 0.7316968441009521, - 0.7474514245986938, - 0.7592206001281738, - 0.44346883893013, - 0.4428456127643585, - 0.4465458393096924, - 0.45446860790252686, - 0.4663977324962616, - 0.48200786113739014, - 0.5008732080459595, - 0.5224791169166565, - 0.5462363362312317, - 0.5714967250823975, - 0.5975713133811951, - 0.623748779296875, - 0.6493151783943176, - 0.6735730171203613, - 0.6958606839179993, - 0.7155702114105225, - 0.7321639657020569, - 0.7451893091201782, - 0.7542909383773804, - 0.7592206001281738, - 0.44346883893013, - 0.44998598098754883, - 0.4606318473815918, - 0.4751160144805908, - 0.49304330348968506, - 0.513924777507782, - 0.5371909141540527, - 0.5622069239616394, - 0.5882905125617981, - 0.6147302389144897, - 0.6408047676086426, - 0.6658030152320862, - 0.6890429258346558, - 0.7098907232284546, - 0.7277776002883911, - 0.7422157526016235, - 0.7528113722801208, - 0.7592753171920776, - 0.7614313364028931, - 0.7592206001281738, - 0.4434688091278076, - 0.4566534757614136, - 0.4737849533557892, - 0.494395911693573, - 0.5179241895675659, - 0.5437278747558594, - 0.5711032748222351, - 0.5993035435676575, - 0.6275594830513, - 0.655100405216217, - 0.6811749935150146, - 0.7050719857215881, - 0.7261396050453186, - 0.7438031435012817, - 0.7575807571411133, - 0.7670966386795044, - 0.772091269493103, - 0.7724283933639526, - 0.7680988311767578, - 0.7592206001281738, - 0.4434688091278076, - 0.4621255397796631, - 0.48457980155944824, - 0.5102190971374512, - 0.5383440852165222, - 0.5681875348091125, - 0.5989354252815247, - 0.629749059677124, - 0.6597878932952881, - 0.6882325410842896, - 0.7143071293830872, - 0.7373003363609314, - 0.7565851211547852, - 0.7716352939605713, - 0.7820403575897217, - 0.7875165939331055, - 0.787914514541626, - 0.7832232713699341, - 0.7735708951950073, - 0.7592206001281738, - 0.4434688091278076, - 0.4658091962337494, - 0.49184662103652954, - 0.5208708643913269, - 0.5520902276039124, - 0.5846531391143799, - 0.6176713109016418, - 0.6502441763877869, - 0.6814832091331482, - 0.7105362415313721, - 0.7366107702255249, - 0.7589956521987915, - 0.777080237865448, - 0.7903711795806885, - 0.7985060214996338, - 0.8012627363204956, - 0.7985662221908569, - 0.7904900908470154, - 0.7772545218467712, - 0.7592206001281738, - 0.4434688091278076, - 0.4673052430152893, - 0.494797945022583, - 0.52519690990448, - 0.5576730370521545, - 0.5913403630256653, - 0.6252806186676025, - 0.6585679650306702, - 0.6902943849563599, - 0.7195945382118225, - 0.7456691265106201, - 0.767806887626648, - 0.7854039669036865, - 0.7979804873466492, - 0.8051932454109192, - 0.8068455457687378, - 0.8028923273086548, - 0.7934414148330688, - 0.7787505388259888, - 0.7592206001281738, - 0.4434688091278076, - 0.46645158529281616, - 0.4931139051914215, - 0.522728443145752, - 0.5544874668121338, - 0.5875245928764343, - 0.6209387183189392, - 0.6538184285163879, - 0.6852667331695557, - 0.714425802230835, - 0.7405003905296326, - 0.762779176235199, - 0.7806544303894043, - 0.7936385869979858, - 0.8013774752616882, - 0.803659975528717, - 0.8004238605499268, - 0.791757345199585, - 0.7778968811035156, - 0.7592206001281738, - 0.4434688091278076, - 0.46334072947502136, - 0.4869770407676697, - 0.5137330293655396, - 0.5428787469863892, - 0.5736193060874939, - 0.6051161885261536, - 0.6365101337432861, - 0.6669449210166931, - 0.6955902576446533, - 0.7216648459434509, - 0.7444573640823364, - 0.7633461952209473, - 0.7778160572052002, - 0.7874721884727478, - 0.7920512557029724, - 0.7914283871650696, - 0.7856205105781555, - 0.7747860550880432, - 0.7592206001281738, - 0.4434688091278076, - 0.45830976963043213, - 0.47705236077308655, - 0.49918532371520996, - 0.52410489320755, - 0.5511313676834106, - 0.5795275568962097, - 0.6085188388824463, - 0.63731449842453, - 0.6651288866996765, - 0.6912034749984741, - 0.7148269414901733, - 0.7353549003601074, - 0.7522274255752563, - 0.7649842500686646, - 0.7732774019241333, - 0.77688068151474, - 0.77569580078125, - 0.7697551250457764, - 0.7592206001281738, - 0.4434688091278076, - 0.45190390944480896, - 0.46441537141799927, - 0.48066189885139465, - 0.5002003312110901, - 0.5224977135658264, - 0.5469458103179932, - 0.572877824306488, - 0.5995863080024719, - 0.6263427734375, - 0.6524173617362976, - 0.67709881067276, - 0.6997138261795044, - 0.7196456789970398, - 0.7363505363464355, - 0.7493728399276733, - 0.7583572864532471, - 0.7630587816238403, - 0.7633492350578308, - 0.7592206001281738, - 0.44346883893013, - 0.44481730461120605, - 0.45043545961380005, - 0.4601700007915497, - 0.473755419254303, - 0.49082115292549133, - 0.510901689529419, - 0.5334492325782776, - 0.5578488111495972, - 0.5834348797798157, - 0.6095094680786133, - 0.6353613138198853, - 0.6602852940559387, - 0.6836014986038208, - 0.7046740055084229, - 0.7229279279708862, - 0.7378653287887573, - 0.7490788698196411, - 0.7562626004219055, - 0.7592206001281738, - 0.44346883893013, - 0.43781793117523193, - 0.4366275668144226, - 0.4399303197860718, - 0.4476360082626343, - 0.4595344662666321, - 0.4753011167049408, - 0.49450594186782837, - 0.5166250467300415, - 0.5410550832748413, - 0.5671296119689941, - 0.5941374897956848, - 0.6213419437408447, - 0.648000955581665, - 0.6733872890472412, - 0.6968084573745728, - 0.7176256775856018, - 0.7352710366249084, - 0.7492632269859314, - 0.7592206001281738, - 0.44346883893013, - 0.43166422843933105, - 0.42448803782463074, - 0.4221360683441162, - 0.4246724247932434, - 0.4320279359817505, - 0.4440019726753235, - 0.46026790142059326, - 0.4803820550441742, - 0.5037957429885864, - 0.529870331287384, - 0.5578945279121399, - 0.5871039628982544, - 0.6167018413543701, - 0.6458807587623596, - 0.6738448739051819, - 0.6998314261436462, - 0.7231314778327942, - 0.7431095242500305, - 0.7592206001281738, - 0.44346883893013, - 0.4270230531692505, - 0.4153323173522949, - 0.40871554613113403, - 0.40735316276550293, - 0.41128236055374146, - 0.42039597034454346, - 0.4344453811645508, - 0.45304739475250244, - 0.47569453716278076, - 0.5017691254615784, - 0.5305598378181458, - 0.5612813830375671, - 0.5930957794189453, - 0.6251351833343506, - 0.6565256118774414, - 0.6864109039306641, - 0.7139757871627808, - 0.7384684085845947, - 0.7592206001281738, - 0.44346883893013, - 0.42439740896224976, - 0.4101526141166687, - 0.4011230766773224, - 0.39755505323410034, - 0.3995458483695984, - 0.4070412516593933, - 0.4198366701602936, - 0.43758320808410645, - 0.4597967267036438, - 0.485871285200119, - 0.5150956511497498, - 0.5466727018356323, - 0.5797410607337952, - 0.6133986711502075, - 0.6467275023460388, - 0.6788184642791748, - 0.7087960839271545, - 0.7358427047729492, - 0.7592206001281738, - 0.44346883893013, - 0.424071729183197, - 0.40951022505760193, - 0.40018144249916077, - 0.39633986353874207, - 0.39809027314186096, - 0.40538495779037476, - 0.41802486777305603, - 0.4356653094291687, - 0.45782503485679626, - 0.4838995933532715, - 0.513177752494812, - 0.5448608994483948, - 0.5780847668647766, - 0.6119430661201477, - 0.6455123424530029, - 0.6778768301010132, - 0.7081536650657654, - 0.7355170845985413, - 0.7592206001281738, - 0.44346883893013, - 0.42608141899108887, - 0.4134747385978699, - 0.40599268674850464, - 0.4038392901420593, - 0.40707331895828247, - 0.4156065881252289, - 0.4292062819004059, - 0.4475014805793762, - 0.46999314427375793, - 0.49606770277023315, - 0.5250139832496643, - 0.5560423135757446, - 0.5883064270019531, - 0.6209261417388916, - 0.6530117392539978, - 0.6836880445480347, - 0.7121182084083557, - 0.7375267744064331, - 0.7592206001281738 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.16810062527656555, - 0.12081519514322281, - 0.07650075852870941, - 0.03636611998081207, - 0.0015060007572174072, - -0.027128636837005615, - -0.04875677824020386, - -0.0627884566783905, - -0.0688408613204956, - -0.0667489767074585, - -0.056569814682006836, - -0.03858107328414917, - -0.01327340304851532, - 0.018662825226783752, - 0.0563565194606781, - 0.09877948462963104, - 0.14477455615997314, - 0.19308704137802124, - 0.24239912629127502, - 0.29136574268341064, - 0.16810062527656555, - 0.12342279404401779, - 0.08164483308792114, - 0.04390634596347809, - 0.011236697435379028, - -0.015472888946533203, - -0.035493940114974976, - -0.048280268907547, - -0.05348306894302368, - -0.05096051096916199, - -0.04078134894371033, - -0.023223280906677246, - 0.001234784722328186, - 0.03192567825317383, - 0.0680122822523117, - 0.10851018875837326, - 0.15231478214263916, - 0.19823110103607178, - 0.2450067400932312, - 0.29136574268341064, - 0.16810062527656555, - 0.1309630274772644, - 0.0965196043252945, - 0.0657099187374115, - 0.039374351501464844, - 0.018231287598609924, - 0.0028574317693710327, - -0.006327837705612183, - -0.009074017405509949, - -0.0053060948848724365, - 0.00487305223941803, - 0.02118578553199768, - 0.04318720102310181, - 0.07027703523635864, - 0.10171644389629364, - 0.13664782047271729, - 0.17411835491657257, - 0.21310587227344513, - 0.2525469660758972, - 0.29136574268341064, - 0.16810062527656555, - 0.14261877536773682, - 0.11951316893100739, - 0.09941409528255463, - 0.0828697681427002, - 0.07033149898052216, - 0.06214131414890289, - 0.0585225373506546, - 0.059573978185653687, - 0.06526695191860199, - 0.07544609904289246, - 0.08983378112316132, - 0.108037568628788, - 0.1295609176158905, - 0.15381667017936707, - 0.18014325201511383, - 0.2078225165605545, - 0.2360994517803192, - 0.26420271396636963, - 0.29136574268341064, - 0.16810062527656555, - 0.15712696313858032, - 0.14813381433486938, - 0.14136649668216705, - 0.13700959086418152, - 0.13518193364143372, - 0.13593336939811707, - 0.1392434537410736, - 0.14502184092998505, - 0.15311093628406525, - 0.1632900834083557, - 0.17528164386749268, - 0.1887584775686264, - 0.20335300266742706, - 0.21866710484027863, - 0.23428307473659515, - 0.24977493286132812, - 0.26472008228302, - 0.27871090173721313, - 0.29136574268341064, - 0.16810061037540436, - 0.17291541397571564, - 0.17928004264831543, - 0.1870209276676178, - 0.19592687487602234, - 0.20575496554374695, - 0.2162371277809143, - 0.22708742320537567, - 0.23800989985466003, - 0.24870659410953522, - 0.2588857412338257, - 0.26826968789100647, - 0.27660244703292847, - 0.2836567759513855, - 0.28924015164375305, - 0.29320037364959717, - 0.2954293489456177, - 0.29586631059646606, - 0.29449933767318726, - 0.29136571288108826, - 0.16810061037540436, - 0.18827319145202637, - 0.20957669615745544, - 0.2314300239086151, - 0.2532370686531067, - 0.2744029760360718, - 0.29435038566589355, - 0.31253525614738464, - 0.3284614682197571, - 0.3416946530342102, - 0.3518737852573395, - 0.3587212860584259, - 0.36205029487609863, - 0.36177003383636475, - 0.3578881621360779, - 0.3505105674266815, - 0.339838445186615, - 0.32616299390792847, - 0.3098571300506592, - 0.29136571288108826, - 0.16810059547424316, - 0.20153605937957764, - 0.23574064671993256, - 0.2697813808917999, - 0.30272969603538513, - 0.33368682861328125, - 0.3618084192276001, - 0.38632732629776, - 0.4065747857093811, - 0.42199838161468506, - 0.4321775436401367, - 0.43683457374572754, - 0.4358423948287964, - 0.4292280673980713, - 0.41717207431793213, - 0.40000319480895996, - 0.3781898021697998, - 0.3523269295692444, - 0.32311999797821045, - 0.29136571288108826, - 0.16810059547424316, - 0.21126675605773926, - 0.2549366354942322, - 0.29791900515556335, - 0.33904147148132324, - 0.3771822452545166, - 0.41130104660987854, - 0.44046714901924133, - 0.46388494968414307, - 0.48091572523117065, - 0.4910948872566223, - 0.4941447675228119, - 0.4899821877479553, - 0.47872069478034973, - 0.4606674909591675, - 0.43631500005722046, - 0.40632742643356323, - 0.3715229034423828, - 0.33285069465637207, - 0.29136571288108826, - 0.16810059547424316, - 0.216410830616951, - 0.265084445476532, - 0.3127937912940979, - 0.35823744535446167, - 0.4001758396625519, - 0.43746501207351685, - 0.4690878391265869, - 0.49418163299560547, - 0.5120619535446167, - 0.5222411155700684, - 0.5244414210319519, - 0.5186028480529785, - 0.5048846006393433, - 0.48366105556488037, - 0.4555109739303589, - 0.4212022125720978, - 0.3816707134246826, - 0.3379947543144226, - 0.29136571288108826, - 0.16810059547424316, - 0.216410830616951, - 0.265084445476532, - 0.3127937912940979, - 0.35823744535446167, - 0.4001758396625519, - 0.43746501207351685, - 0.4690878391265869, - 0.49418163299560547, - 0.5120619535446167, - 0.5222411155700684, - 0.5244414210319519, - 0.5186028480529785, - 0.5048846006393433, - 0.48366105556488037, - 0.4555109739303589, - 0.4212022125720978, - 0.3816707134246826, - 0.3379947543144226, - 0.29136571288108826, - 0.16810059547424316, - 0.21126675605773926, - 0.2549366354942322, - 0.29791900515556335, - 0.33904147148132324, - 0.3771822452545166, - 0.41130104660987854, - 0.44046714901924133, - 0.46388494968414307, - 0.48091572523117065, - 0.4910948872566223, - 0.4941447675228119, - 0.4899821877479553, - 0.47872069478034973, - 0.4606674909591675, - 0.43631500005722046, - 0.40632742643356323, - 0.3715229034423828, - 0.33285069465637207, - 0.29136571288108826, - 0.16810059547424316, - 0.20153605937957764, - 0.23574064671993256, - 0.2697813808917999, - 0.30272969603538513, - 0.33368685841560364, - 0.3618084192276001, - 0.3863273561000824, - 0.4065747857093811, - 0.42199844121932983, - 0.4321775734424591, - 0.43683457374572754, - 0.4358423948287964, - 0.4292280673980713, - 0.41717207431793213, - 0.40000319480895996, - 0.3781898021697998, - 0.3523269295692444, - 0.32311999797821045, - 0.29136571288108826, - 0.16810061037540436, - 0.18827319145202637, - 0.20957668125629425, - 0.23143000900745392, - 0.2532370388507843, - 0.2744029462337494, - 0.29435035586357117, - 0.31253522634506226, - 0.3284614384174347, - 0.34169459342956543, - 0.3518737554550171, - 0.3587212562561035, - 0.36205023527145386, - 0.36177000403404236, - 0.3578881323337555, - 0.35051053762435913, - 0.339838445186615, - 0.3261629641056061, - 0.3098571300506592, - 0.29136571288108826, - 0.16810061037540436, - 0.17291541397571564, - 0.17928005754947662, - 0.1870209276676178, - 0.19592688977718353, - 0.20575498044490814, - 0.2162371426820755, - 0.22708743810653687, - 0.23800991475582123, - 0.2487066090106964, - 0.25888577103614807, - 0.26826971769332886, - 0.27660247683525085, - 0.2836567759513855, - 0.28924018144607544, - 0.29320037364959717, - 0.2954293489456177, - 0.29586634039878845, - 0.29449933767318726, - 0.29136571288108826, - 0.16810062527656555, - 0.15712697803974152, - 0.14813384413719177, - 0.14136654138565063, - 0.1370096355676651, - 0.1351819932460785, - 0.13593345880508423, - 0.13924352824687958, - 0.14502191543579102, - 0.1531110256910324, - 0.16329017281532288, - 0.17528171837329865, - 0.18875855207443237, - 0.20335307717323303, - 0.2186671644449234, - 0.23428311944007874, - 0.2497749626636505, - 0.2647201120853424, - 0.27871090173721313, - 0.29136574268341064, - 0.16810062527656555, - 0.14261877536773682, - 0.11951317638158798, - 0.09941409528255463, - 0.08286978304386139, - 0.07033152878284454, - 0.06214132905006409, - 0.05852256715297699, - 0.059574007987976074, - 0.06526696681976318, - 0.07544611394405365, - 0.0898338109254837, - 0.10803759843111038, - 0.1295609325170517, - 0.15381668508052826, - 0.18014326691627502, - 0.2078225314617157, - 0.2360994517803192, - 0.26420271396636963, - 0.29136574268341064, - 0.16810062527656555, - 0.1309630125761032, - 0.0965195894241333, - 0.0657099038362503, - 0.039374321699142456, - 0.018231257796287537, - 0.002857416868209839, - -0.006327882409095764, - -0.009074047207832336, - -0.005306139588356018, - 0.004873007535934448, - 0.021185755729675293, - 0.043187156319618225, - 0.07027702033519745, - 0.10171641409397125, - 0.13664782047271729, - 0.17411832511425018, - 0.21310587227344513, - 0.2525469660758972, - 0.29136574268341064, - 0.16810062527656555, - 0.1234227865934372, - 0.08164481818675995, - 0.0439063161611557, - 0.011236697435379028, - -0.01547291874885559, - -0.035493940114974976, - -0.04828032851219177, - -0.05348312854766846, - -0.05096057057380676, - -0.0407814085483551, - -0.02322334051132202, - 0.0012347251176834106, - 0.031925663352012634, - 0.06801222264766693, - 0.10851017385721207, - 0.15231475234031677, - 0.19823108613491058, - 0.24500672519207, - 0.29136574268341064, - 0.16810062527656555, - 0.12081519514322281, - 0.07650075852870941, - 0.03636611998081207, - 0.0015060007572174072, - -0.027128636837005615, - -0.04875677824020386, - -0.0627884566783905, - -0.0688408613204956, - -0.0667489767074585, - -0.056569814682006836, - -0.03858107328414917, - -0.01327340304851532, - 0.018662825226783752, - 0.0563565194606781, - 0.09877948462963104, - 0.14477455615997314, - 0.19308704137802124, - 0.24239912629127502, - 0.29136574268341064 - ], - "y": [ - 0.09569922089576721, - 0.10426690429449081, - 0.1147606298327446, - 0.12689417600631714, - 0.14033657312393188, - 0.15472111105918884, - 0.1696554720401764, - 0.18473224341869354, - 0.1995401829481125, - 0.2136753797531128, - 0.22675223648548126, - 0.23841407895088196, - 0.24834278225898743, - 0.2562675476074219, - 0.2619721591472626, - 0.26530104875564575, - 0.2661634087562561, - 0.26453569531440735, - 0.26046231389045715, - 0.25405439734458923, - 0.09569922834634781, - 0.08906112611293793, - 0.08476385474205017, - 0.08292463421821594, - 0.08359362185001373, - 0.08675257861614227, - 0.09231533855199814, - 0.10013014823198318, - 0.10998386144638062, - 0.1216076910495758, - 0.13468456268310547, - 0.14885775744915009, - 0.16374069452285767, - 0.17892740666866302, - 0.1940036118030548, - 0.2085580974817276, - 0.22219383716583252, - 0.23453891277313232, - 0.24525654315948486, - 0.25405439734458923, - 0.09569922834634781, - 0.07469171285629272, - 0.056416988372802734, - 0.04137353599071503, - 0.02997170388698578, - 0.02252250909805298, - 0.019229158759117126, - 0.020181432366371155, - 0.02535340189933777, - 0.034604012966156006, - 0.047680869698524475, - 0.06422729790210724, - 0.08379197865724564, - 0.10584121197462082, - 0.12977352738380432, - 0.15493617951869965, - 0.1806427538394928, - 0.2061920464038849, - 0.23088712990283966, - 0.25405439734458923, - 0.0956992357969284, - 0.06271582096815109, - 0.032791852951049805, - 0.006743595004081726, - -0.014718413352966309, - -0.0310087651014328, - -0.04168310761451721, - -0.04645024240016937, - -0.045180171728134155, - -0.03790748119354248, - -0.02483062446117401, - -0.006306275725364685, - 0.017160311341285706, - 0.04492896795272827, - 0.07624225318431854, - 0.11024605482816696, - 0.1460128128528595, - 0.18256691098213196, - 0.21891123056411743, - 0.25405439734458923, - 0.0956992357969284, - 0.05443120002746582, - 0.016448602080345154, - -0.017212465405464172, - -0.045633867383003235, - -0.06804031133651733, - -0.08382058143615723, - -0.0925443172454834, - -0.09397342801094055, - -0.08806905150413513, - -0.07499217987060547, - -0.05509953200817108, - -0.028933748602867126, - 0.002791464328765869, - 0.03921070694923401, - 0.07933058589696884, - 0.1220567375421524, - 0.1662236601114273, - 0.21062661707401276, - 0.25405439734458923, - 0.0956992357969284, - 0.05073563754558563, - 0.009158298373222351, - -0.027898699045181274, - -0.05942448973655701, - -0.08455914258956909, - -0.10261708498001099, - -0.11310571432113647, - -0.11573892831802368, - -0.11044487357139587, - -0.09736800193786621, - -0.07686501741409302, - -0.049495160579681396, - -0.016005009412765503, - 0.022691845893859863, - 0.06553996354341507, - 0.1113705113530159, - 0.1589333415031433, - 0.20693105459213257, - 0.25405439734458923, - 0.0956992357969284, - 0.05202959477901459, - 0.011710911989212036, - -0.024157017469406128, - -0.05459584295749664, - -0.07877525687217712, - -0.0960356593132019, - -0.10590633749961853, - -0.1081179678440094, - -0.10261023044586182, - -0.08953335881233215, - -0.06924407184123993, - -0.04229578375816345, - -0.009423613548278809, - 0.028475746512413025, - 0.07036859542131424, - 0.11511218547821045, - 0.1614859700202942, - 0.20822501182556152, - 0.25405439734458923, - 0.0956992357969284, - 0.05817286670207977, - 0.023829862475395203, - -0.006392940878868103, - -0.031671226024627686, - -0.051315367221832275, - -0.06478960812091827, - -0.07172638177871704, - -0.0719364583492279, - -0.06541408598423004, - -0.05233722925186157, - -0.033062562346458435, - -0.008115828037261963, - 0.02182246744632721, - 0.05593562126159668, - 0.09329324215650558, - 0.13287626206874847, - 0.17360492050647736, - 0.2143682837486267, - 0.25405439734458923, - 0.0956992357969284, - 0.06849971413612366, - 0.04420188069343567, - 0.023468539118766785, - 0.006865188479423523, - -0.005155220627784729, - -0.012264832854270935, - -0.014269709587097168, - -0.0111151784658432, - -0.002887234091758728, - 0.010189622640609741, - 0.02775871753692627, - 0.04934084415435791, - 0.07434722036123276, - 0.10209578275680542, - 0.1318296492099762, - 0.16273774206638336, - 0.19397693872451782, - 0.2246951162815094, - 0.25405439734458923, - 0.09569922834634781, - 0.08189107477664948, - 0.07061932235956192, - 0.062191449105739594, - 0.05683733522891998, - 0.054703034460544586, - 0.05584675818681717, - 0.06023731082677841, - 0.06775493174791336, - 0.07819456607103348, - 0.09127143025398254, - 0.10662882775068283, - 0.1238478571176529, - 0.14245882630348206, - 0.16195406019687653, - 0.18180181086063385, - 0.20146065950393677, - 0.22039437294006348, - 0.2380864918231964, - 0.25405439734458923, - 0.09569922834634781, - 0.09689578413963318, - 0.10021945834159851, - 0.10557959973812103, - 0.11282998323440552, - 0.12177283316850662, - 0.13216422498226166, - 0.14372070133686066, - 0.15612705051898956, - 0.1690448373556137, - 0.18212170898914337, - 0.19500094652175903, - 0.20733125507831573, - 0.21877630054950714, - 0.22902387380599976, - 0.23779445886611938, - 0.2448488175868988, - 0.24999451637268066, - 0.2530911862850189, - 0.25405439734458923, - 0.09569922089576721, - 0.1118878498673439, - 0.129794642329216, - 0.14893117547035217, - 0.16877543926239014, - 0.1887861043214798, - 0.2084173858165741, - 0.22713376581668854, - 0.2444247007369995, - 0.25981855392456055, - 0.2728954255580902, - 0.2832985818386078, - 0.2907443046569824, - 0.2950294613838196, - 0.29603713750839233, - 0.293739914894104, - 0.28820037841796875, - 0.27956968545913696, - 0.26808327436447144, - 0.25405439734458923, - 0.09569922089576721, - 0.12524265050888062, - 0.15613995492458344, - 0.18754836916923523, - 0.21861113607883453, - 0.2484809309244156, - 0.2763430178165436, - 0.3014373779296875, - 0.3230794668197632, - 0.34067898988723755, - 0.3537558317184448, - 0.36195334792137146, - 0.3650479316711426, - 0.36295509338378906, - 0.3557319939136505, - 0.3435756266117096, - 0.3268175721168518, - 0.3059149980545044, - 0.28143805265426636, - 0.25405436754226685, - 0.09569921344518661, - 0.13551297783851624, - 0.17640048265457153, - 0.21724645793437958, - 0.2569366693496704, - 0.29438847303390503, - 0.3285803496837616, - 0.3585796058177948, - 0.3835679292678833, - 0.40286362171173096, - 0.4159404933452606, - 0.42244184017181396, - 0.4221901595592499, - 0.41519245505332947, - 0.40163952112197876, - 0.3819011449813843, - 0.35651564598083496, - 0.3261755406856537, - 0.29170840978622437, - 0.25405436754226685, - 0.09569921344518661, - 0.14158588647842407, - 0.1883806586265564, - 0.2348071038722992, - 0.27959877252578735, - 0.3215339183807373, - 0.35946860909461975, - 0.3923681378364563, - 0.4193350672721863, - 0.4396337866783142, - 0.45271065831184387, - 0.45820897817611694, - 0.4559786915779114, - 0.44608068466186523, - 0.42878496646881104, - 0.4045632481575012, - 0.37407630681991577, - 0.33815568685531616, - 0.2977812886238098, - 0.25405436754226685, - 0.09569921344518661, - 0.14280331134796143, - 0.19078226387500763, - 0.23832738399505615, - 0.2841417193412781, - 0.32697558403015137, - 0.3656606078147888, - 0.3991415798664093, - 0.4265051484107971, - 0.44700491428375244, - 0.4600817859172821, - 0.4653790593147278, - 0.4627521336078644, - 0.4522726833820343, - 0.4342266619205475, - 0.40910619497299194, - 0.37759658694267273, - 0.340557336807251, - 0.29899871349334717, - 0.25405436754226685, - 0.09569921344518661, - 0.1390332579612732, - 0.18334504961967468, - 0.22742582857608795, - 0.27007320523262024, - 0.31012386083602905, - 0.34648534655570984, - 0.3781657814979553, - 0.4043010473251343, - 0.42417818307876587, - 0.43725505471229553, - 0.44317495822906494, - 0.4417763352394104, - 0.4330974221229553, - 0.4173749089241028, - 0.3950376808643341, - 0.3666950464248657, - 0.33312010765075684, - 0.29522866010665894, - 0.25405436754226685, - 0.09569921344518661, - 0.13068433105945587, - 0.16687491536140442, - 0.20328375697135925, - 0.2389177531003952, - 0.2728048264980316, - 0.3040207028388977, - 0.3317139148712158, - 0.3551290035247803, - 0.373627245426178, - 0.38670408725738525, - 0.39400288462638855, - 0.3953244686126709, - 0.3906328082084656, - 0.38005590438842773, - 0.36388224363327026, - 0.34255295991897583, - 0.3166499733924866, - 0.2868797481060028, - 0.25405436754226685, - 0.09569922089576721, - 0.11866123974323273, - 0.14315667748451233, - 0.1685173511505127, - 0.19405150413513184, - 0.21906261146068573, - 0.24286843836307526, - 0.2648196518421173, - 0.2843174338340759, - 0.30083000659942627, - 0.31390684843063354, - 0.3231913447380066, - 0.3284302055835724, - 0.32948052883148193, - 0.32631367444992065, - 0.3190159797668457, - 0.30778658390045166, - 0.2929317355155945, - 0.27485665678977966, - 0.25405439734458923, - 0.09569922089576721, - 0.10426689684391022, - 0.1147606149315834, - 0.12689416110515594, - 0.1403365433216095, - 0.15472108125686646, - 0.1696554273366928, - 0.18473219871520996, - 0.1995401382446289, - 0.21367532014846802, - 0.22675219178199768, - 0.23841401934623718, - 0.24834275245666504, - 0.2562674880027771, - 0.2619721293449402, - 0.26530101895332336, - 0.2661633789539337, - 0.26453566551208496, - 0.26046231389045715, - 0.25405439734458923 - ], - "z": [ - 0.7164178490638733, - 0.7335597276687622, - 0.7545551061630249, - 0.778831422328949, - 0.8057264089584351, - 0.8345064520835876, - 0.8643864393234253, - 0.8945514559745789, - 0.9241786003112793, - 0.9524596929550171, - 0.9786233305931091, - 1.0019558668136597, - 1.0218207836151123, - 1.0376763343811035, - 1.0490899085998535, - 1.0557502508163452, - 1.0574755668640137, - 1.0542188882827759, - 1.0460690259933472, - 1.0332484245300293, - 0.7164178490638733, - 0.740145206451416, - 0.7675464749336243, - 0.7978742718696594, - 0.8303012847900391, - 0.8639430403709412, - 0.8978818655014038, - 0.9311919212341309, - 0.962964653968811, - 0.9923334121704102, - 1.018497109413147, - 1.0407419204711914, - 1.058461308479309, - 1.071171760559082, - 1.078526496887207, - 1.0803251266479492, - 1.0765184164047241, - 1.06721031665802, - 1.0526546239852905, - 1.0332484245300293, - 0.7164178490638733, - 0.7443935871124268, - 0.7759274244308472, - 0.8101590871810913, - 0.8461549282073975, - 0.8829330205917358, - 0.9194902181625366, - 0.954829216003418, - 0.9879862070083618, - 1.0180566310882568, - 1.044220209121704, - 1.0657634735107422, - 1.0820986032485962, - 1.0927801132202148, - 1.0975165367126465, - 1.0961787700653076, - 1.0888032913208008, - 1.0755912065505981, - 1.0569030046463013, - 1.0332484245300293, - 0.7164178490638733, - 0.7458444833755493, - 0.7787896990776062, - 0.814354658126831, - 0.8515692949295044, - 0.8894185423851013, - 0.9268699884414673, - 0.9629018902778625, - 0.99653160572052, - 1.026841640472412, - 1.053005337715149, - 1.0743088722229004, - 1.0901713371276855, - 1.1001598834991455, - 1.1040019989013672, - 1.1015931367874146, - 1.092998743057251, - 1.078453540802002, - 1.0583539009094238, - 1.0332484245300293, - 0.7164178490638733, - 0.7443407773971558, - 0.7758231163024902, - 0.8100062608718872, - 0.8459576964378357, - 0.882696807384491, - 0.9192214012145996, - 0.954535186290741, - 0.9876748919487, - 1.017736554145813, - 1.0439002513885498, - 1.065452218055725, - 1.0818045139312744, - 1.0925112962722778, - 1.0972802639007568, - 1.095981478691101, - 1.0886504650115967, - 1.0754868984222412, - 1.0568500757217407, - 1.0332484245300293, - 0.7164178490638733, - 0.7400451898574829, - 0.7673492431640625, - 0.7975851893424988, - 0.8299282193183899, - 0.8634961247444153, - 0.8973733186721802, - 0.9306356310844421, - 0.9623758792877197, - 0.9917280673980713, - 1.017891764640808, - 1.0401531457901, - 1.0579050779342651, - 1.0706632137298584, - 1.0780795812606812, - 1.0799520015716553, - 1.0762293338775635, - 1.0670130252838135, - 1.0525546073913574, - 1.0332484245300293, - 0.7164178490638733, - 0.7334234118461609, - 0.7542862892150879, - 0.7784373760223389, - 0.8052178621292114, - 0.8338972926139832, - 0.863693356513977, - 0.8937932848930359, - 0.9233760237693787, - 0.9516345858573914, - 0.9777982234954834, - 1.0011532306671143, - 1.0210626125335693, - 1.0369832515716553, - 1.048480749130249, - 1.0552417039871216, - 1.0570814609527588, - 1.0539500713348389, - 1.0459327697753906, - 1.0332484245300293, - 0.7164178490638733, - 0.7251929640769958, - 0.7380498647689819, - 0.7546378374099731, - 0.7745044827461243, - 0.7971077561378479, - 0.821831226348877, - 0.8480004668235779, - 0.8749015927314758, - 0.9018008708953857, - 0.9279645085334778, - 0.9526788592338562, - 0.9752697944641113, - 0.9951211214065552, - 1.0116912126541138, - 1.0245282649993896, - 1.0332820415496826, - 1.037713646888733, - 1.0377023220062256, - 1.0332484245300293, - 0.7164178490638733, - 0.716245710849762, - 0.7203993797302246, - 0.7287656664848328, - 0.7411162257194519, - 0.7571142911911011, - 0.7763233780860901, - 0.7982195615768433, - 0.8222055435180664, - 0.8476271033287048, - 0.8737908005714417, - 0.8999828696250916, - 0.9254889488220215, - 0.9496132135391235, - 0.9716977477073669, - 0.9911400079727173, - 1.0074098110198975, - 1.0200631618499756, - 1.0287550687789917, - 1.0332484245300293, - 0.7164178490638733, - 0.7075512409210205, - 0.703247606754303, - 0.7036243677139282, - 0.7086713314056396, - 0.7182506918907166, - 0.7321012020111084, - 0.7498451471328735, - 0.7709983587265015, - 0.7949839234352112, - 0.821147620677948, - 0.8487756252288818, - 0.877114474773407, - 0.9053910970687866, - 0.9328341484069824, - 0.958695113658905, - 0.9822685122489929, - 1.0029113292694092, - 1.0200605392456055, - 1.0332484245300293, - 0.7164178490638733, - 0.7000517249107361, - 0.6884531378746033, - 0.6819385886192322, - 0.6806856393814087, - 0.6847285032272339, - 0.6939569711685181, - 0.70811927318573, - 0.7268290519714355, - 0.7495760321617126, - 0.7757397294044495, - 0.8046063780784607, - 0.8353886604309082, - 0.8672468662261963, - 0.8993119597434998, - 0.9307094216346741, - 0.9605827331542969, - 0.988116979598999, - 1.0125610828399658, - 1.0332484245300293, - 0.7164178490638733, - 0.6945598721504211, - 0.677619218826294, - 0.6660581231117249, - 0.6601918339729309, - 0.6601804494857788, - 0.6660241484642029, - 0.6775636672973633, - 0.6944841146469116, - 0.7163240909576416, - 0.7424877285957336, - 0.7722614407539368, - 0.8048330545425415, - 0.8393140435218811, - 0.8747638463973999, - 0.9102156162261963, - 0.9447022676467896, - 0.9772830605506897, - 1.0070692300796509, - 1.0332484245300293, - 0.7164178490638733, - 0.6916707754135132, - 0.6719199419021606, - 0.6577039957046509, - 0.6494108438491821, - 0.6472665071487427, - 0.6513296961784363, - 0.6614894270896912, - 0.6774685978889465, - 0.6988314390182495, - 0.7249950766563416, - 0.7552459239959717, - 0.7887587547302246, - 0.8246195316314697, - 0.8618499636650085, - 0.8994345664978027, - 0.9363481402397156, - 0.9715837240219116, - 1.0041801929473877, - 1.0332484245300293, - 0.7164178490638733, - 0.6916975975036621, - 0.6719727516174316, - 0.6577814817428589, - 0.6495108008384705, - 0.6473863124847412, - 0.6514659523963928, - 0.6616384983062744, - 0.677626371383667, - 0.6989936232566833, - 0.7251572608947754, - 0.7554036974906921, - 0.7889078855514526, - 0.824755847454071, - 0.8619697690010071, - 0.8995345830917358, - 0.9364256262779236, - 0.9716365933418274, - 1.0042070150375366, - 1.0332484245300293, - 0.7164178490638733, - 0.6946372985839844, - 0.677772045135498, - 0.6662821769714355, - 0.6604809761047363, - 0.660526692867279, - 0.666418194770813, - 0.6779946684837341, - 0.6949403882026672, - 0.7167931795120239, - 0.742956817150116, - 0.7727177143096924, - 0.8052640557289124, - 0.8397080898284912, - 0.8751101493835449, - 0.9105047583580017, - 0.9449262619018555, - 0.9774358868598938, - 1.0071467161178589, - 1.0332484245300293, - 0.7164178490638733, - 0.7001714706420898, - 0.6886893510818481, - 0.6822848320007324, - 0.6811324954032898, - 0.6852638125419617, - 0.6945660710334778, - 0.7087855339050293, - 0.7275343537330627, - 0.7503011226654053, - 0.7764647603034973, - 0.8053116798400879, - 0.8360549211502075, - 0.867855966091156, - 0.8998472690582275, - 0.9311562776565552, - 0.9609289765357971, - 0.9883531928062439, - 1.0126808881759644, - 1.0332484245300293, - 0.7164178490638733, - 0.707700252532959, - 0.70354163646698, - 0.7040554285049438, - 0.7092275619506836, - 0.7189170122146606, - 0.7328594326972961, - 0.7506744861602783, - 0.7718762755393982, - 0.7958865165710449, - 0.822050154209137, - 0.8496536016464233, - 0.8779438734054565, - 0.9061492681503296, - 0.9335004687309265, - 0.9592514038085938, - 0.9826995730400085, - 1.003205418586731, - 1.0202096700668335, - 1.0332484245300293, - 0.7164178490638733, - 0.7164078950881958, - 0.7207193970680237, - 0.7292347550392151, - 0.7417216300964355, - 0.7578393816947937, - 0.7771484851837158, - 0.799122154712677, - 0.8231610059738159, - 0.8486093282699585, - 0.8747730255126953, - 0.9009383320808411, - 0.9263915419578552, - 0.950438380241394, - 0.9724228382110596, - 0.9917454123497009, - 1.0078788995742798, - 1.0203832387924194, - 1.0289173126220703, - 1.0332484245300293, - 0.7164178490638733, - 0.7253507375717163, - 0.7383611798286438, - 0.7550941705703735, - 0.7750933766365051, - 0.7978131771087646, - 0.8226338624954224, - 0.8488784432411194, - 0.8758310079574585, - 0.9027563333511353, - 0.9289199709892273, - 0.9536082744598389, - 0.9761478304862976, - 0.9959237575531006, - 1.0123965740203857, - 1.0251171588897705, - 1.033738374710083, - 1.03802490234375, - 1.0378601551055908, - 1.0332484245300293, - 0.7164178490638733, - 0.7335597276687622, - 0.7545551061630249, - 0.778831422328949, - 0.8057264089584351, - 0.8345064520835876, - 0.8643864989280701, - 0.8945514559745789, - 0.9241786003112793, - 0.9524596929550171, - 0.9786233901977539, - 1.0019558668136597, - 1.0218209028244019, - 1.0376763343811035, - 1.0490899085998535, - 1.0557502508163452, - 1.0574755668640137, - 1.0542188882827759, - 1.0460691452026367, - 1.0332484245300293 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.3982090353965759, - 0.3614596724510193, - 0.32402852177619934, - 0.28693658113479614, - 0.25119566917419434, - 0.21778066456317902, - 0.18760307133197784, - 0.16148601472377777, - 0.14014194905757904, - 0.12415304780006409, - 0.11395546793937683, - 0.10982736945152283, - 0.11188134551048279, - 0.12006136775016785, - 0.13414430618286133, - 0.15374603867530823, - 0.1783318966627121, - 0.20723116397857666, - 0.23965561389923096, - 0.2747207581996918, - 0.3982090353965759, - 0.37818560004234314, - 0.3570241332054138, - 0.33530187606811523, - 0.31361132860183716, - 0.2925441861152649, - 0.2726750671863556, - 0.25454598665237427, - 0.23865142464637756, - 0.22542496025562286, - 0.21522736549377441, - 0.20833684504032135, - 0.20494131743907928, - 0.2051333636045456, - 0.2089078426361084, - 0.21616172790527344, - 0.22669717669487, - 0.24022679030895233, - 0.2563815414905548, - 0.2747207581996918, - 0.3982090353965759, - 0.3969901204109192, - 0.3941202461719513, - 0.3896777033805847, - 0.38378363847732544, - 0.3765988349914551, - 0.3683192729949951, - 0.3591708540916443, - 0.3494030237197876, - 0.3392823040485382, - 0.32908472418785095, - 0.3190884590148926, - 0.3095661699771881, - 0.3007776141166687, - 0.2929624915122986, - 0.2863340377807617, - 0.2810730040073395, - 0.277322918176651, - 0.27518606185913086, - 0.2747207283973694, - 0.39820900559425354, - 0.4158354699611664, - 0.4312969148159027, - 0.44417157769203186, - 0.4541082978248596, - 0.4608359932899475, - 0.4641711711883545, - 0.4640228748321533, - 0.46039512753486633, - 0.4533868730068207, - 0.4431892931461334, - 0.4300805330276489, - 0.41441819071769714, - 0.3966295123100281, - 0.3771996796131134, - 0.3566586971282959, - 0.3355668783187866, - 0.3144995868206024, - 0.29403141140937805, - 0.2747207283973694, - 0.39820900559425354, - 0.4326794743537903, - 0.4645254611968994, - 0.492878258228302, - 0.5169645547866821, - 0.5361272692680359, - 0.5498437285423279, - 0.5577397346496582, - 0.5595999956130981, - 0.5553736686706543, - 0.5451760292053223, - 0.5292853713035583, - 0.5081350803375244, - 0.48230206966400146, - 0.4524909555912018, - 0.4195149838924408, - 0.38427358865737915, - 0.34772810339927673, - 0.31087541580200195, - 0.2747207283973694, - 0.39820900559425354, - 0.44569680094718933, - 0.4902050495147705, - 0.5305196642875671, - 0.5655409693717957, - 0.5943136811256409, - 0.6160529255867004, - 0.6301657557487488, - 0.6362671852111816, - 0.6341907978057861, - 0.6239932775497437, - 0.6059526205062866, - 0.580561101436615, - 0.548511266708374, - 0.5106773376464844, - 0.4680913984775543, - 0.4219149649143219, - 0.3734077215194702, - 0.323892742395401, - 0.2747207283973694, - 0.39820900559425354, - 0.45347684621810913, - 0.5055529475212097, - 0.553016722202301, - 0.5945734977722168, - 0.6290898323059082, - 0.6556240320205688, - 0.6734524965286255, - 0.6820887327194214, - 0.6812973022460938, - 0.6710996627807617, - 0.6517741680145264, - 0.6238478422164917, - 0.5880823731422424, - 0.5454535484313965, - 0.49712395668029785, - 0.4444119930267334, - 0.38875558972358704, - 0.3316727876663208, - 0.2747207283973694, - 0.39820900559425354, - 0.4551765024662018, - 0.5089058876037598, - 0.5579314827919006, - 0.6009161472320557, - 0.636687159538269, - 0.6642689108848572, - 0.6829090118408203, - 0.6920990943908691, - 0.691588282585144, - 0.6813907623291016, - 0.6617845296859741, - 0.6333043575286865, - 0.5967272520065308, - 0.5530508160591125, - 0.5034664869308472, - 0.4493267834186554, - 0.3921085298061371, - 0.33337244391441345, - 0.2747207283973694, - 0.39820900559425354, - 0.45061159133911133, - 0.49990057945251465, - 0.5447314381599426, - 0.5838813781738281, - 0.6162823438644409, - 0.6410506963729858, - 0.6575107574462891, - 0.6652134656906128, - 0.6639487743377686, - 0.6537512540817261, - 0.6348989009857178, - 0.6079061031341553, - 0.5735090374946594, - 0.5326460599899292, - 0.4864317774772644, - 0.4361267387866974, - 0.38310322165489197, - 0.328807532787323, - 0.2747207283973694, - 0.39820900559425354, - 0.4402768015861511, - 0.47951287031173706, - 0.5148469805717468, - 0.5453152656555176, - 0.570086658000946, - 0.5884854793548584, - 0.6000099182128906, - 0.604345440864563, - 0.6013737916946411, - 0.5911762714385986, - 0.574030876159668, - 0.5504052042961121, - 0.520943820476532, - 0.4864503741264343, - 0.44786572456359863, - 0.4062422811985016, - 0.36271554231643677, - 0.3184727430343628, - 0.2747207283973694, - 0.39820900559425354, - 0.425292044878006, - 0.4499521255493164, - 0.47151654958724976, - 0.4893971085548401, - 0.5031061172485352, - 0.5122695565223694, - 0.5166375041007996, - 0.5160908699035645, - 0.5106443762779236, - 0.5004467964172363, - 0.48577624559402466, - 0.46703284978866577, - 0.4447278678417206, - 0.41946977376937866, - 0.39194753766059875, - 0.3629118502140045, - 0.3331547677516937, - 0.30348798632621765, - 0.2747207283973694, - 0.39820900559425354, - 0.40728119015693665, - 0.4144216775894165, - 0.41943567991256714, - 0.4221864938735962, - 0.42259901762008667, - 0.4206620454788208, - 0.4164283573627472, - 0.4100135266780853, - 0.4015924334526062, - 0.39139485359191895, - 0.3796989619731903, - 0.366823673248291, - 0.353120356798172, - 0.3389626741409302, - 0.32473689317703247, - 0.3108309805393219, - 0.2976243197917938, - 0.2854771316051483, - 0.2747207283973694, - 0.3982090353965759, - 0.3881959319114685, - 0.3767717778682709, - 0.3642481565475464, - 0.3509666621685028, - 0.33728960156440735, - 0.3235900402069092, - 0.3102416694164276, - 0.2976086139678955, - 0.2860354483127594, - 0.27583786845207214, - 0.2672940492630005, - 0.2606370151042938, - 0.2560483515262604, - 0.25365325808525085, - 0.2535170316696167, - 0.25564345717430115, - 0.2599744200706482, - 0.2663918733596802, - 0.2747207581996918, - 0.3982090353965759, - 0.37010452151298523, - 0.3410823941230774, - 0.31193432211875916, - 0.28345540165901184, - 0.25642240047454834, - 0.23157277703285217, - 0.2095843404531479, - 0.19105684757232666, - 0.1764957308769226, - 0.16629815101623535, - 0.16074226796627045, - 0.1599796712398529, - 0.16403108835220337, - 0.17278605699539185, - 0.18600577116012573, - 0.20332962274551392, - 0.2242850512266159, - 0.2483004629611969, - 0.2747207581996918, - 0.3982090353965759, - 0.3549674153327942, - 0.31122109293937683, - 0.2681633234024048, - 0.2269686609506607, - 0.18876080214977264, - 0.15458190441131592, - 0.1253642737865448, - 0.101904958486557, - 0.08484378457069397, - 0.07464620471000671, - 0.0715903639793396, - 0.07575958967208862, - 0.08704018592834473, - 0.10512444376945496, - 0.1295190453529358, - 0.15955863893032074, - 0.19442373514175415, - 0.23316335678100586, - 0.2747207581996918, - 0.3982090353965759, - 0.34442493319511414, - 0.2904236912727356, - 0.23767836391925812, - 0.1876276433467865, - 0.14163684844970703, - 0.10096041858196259, - 0.06670793890953064, - 0.03981375694274902, - 0.021011441946029663, - 0.010813862085342407, - 0.009499192237854004, - 0.01710328459739685, - 0.033418744802474976, - 0.05800047516822815, - 0.09017802774906158, - 0.12907366454601288, - 0.1736263483762741, - 0.2226208746433258, - 0.2747207581996918, - 0.3982090353965759, - 0.33961954712867737, - 0.28094398975372314, - 0.22378291189670563, - 0.16969548165798187, - 0.12015712261199951, - 0.07651910185813904, - 0.039971619844436646, - 0.011511743068695068, - -0.008084207773208618, - -0.018281787633895874, - -0.01880282163619995, - -0.009633034467697144, - 0.008977383375167847, - 0.03652074933052063, - 0.07224589586257935, - 0.11517821252346039, - 0.16414664685726166, - 0.21781548857688904, - 0.2747207581996918, - 0.3982090353965759, - 0.3410719633102417, - 0.28380924463272095, - 0.22798281908035278, - 0.17511551082134247, - 0.126649409532547, - 0.08390653133392334, - 0.048052698373794556, - 0.020066052675247192, - 0.0007099807262420654, - -0.00948759913444519, - -0.010248512029647827, - -0.0015519559383392334, - 0.01636481285095215, - 0.043013036251068115, - 0.07766589522361755, - 0.11937811970710754, - 0.16701190173625946, - 0.21926791965961456, - 0.2747207581996918, - 0.3982090353965759, - 0.3486248552799225, - 0.298708975315094, - 0.24982300400733948, - 0.2033003568649292, - 0.16041012108325958, - 0.1223222017288208, - 0.09007550776004791, - 0.06454968452453613, - 0.04644101858139038, - 0.036243438720703125, - 0.03423511981964111, - 0.04047083854675293, - 0.05478048324584961, - 0.0767737627029419, - 0.10585074126720428, - 0.14121830463409424, - 0.1819116324186325, - 0.22682079672813416, - 0.2747207581996918, - 0.3982090353965759, - 0.3614596724510193, - 0.32402852177619934, - 0.28693661093711853, - 0.25119566917419434, - 0.2177807092666626, - 0.18760311603546143, - 0.16148605942726135, - 0.14014199376106262, - 0.12415309250354767, - 0.11395551264286041, - 0.10982741415500641, - 0.11188139021396637, - 0.12006141245365143, - 0.13414433598518372, - 0.15374606847763062, - 0.1783319115638733, - 0.20723117887973785, - 0.23965561389923096, - 0.2747207581996918 - ], - "y": [ - 0.39131298661231995, - 0.4389306604862213, - 0.4830858111381531, - 0.5225738883018494, - 0.556317925453186, - 0.5833973288536072, - 0.6030735373497009, - 0.6148098111152649, - 0.6182860136032104, - 0.6134072542190552, - 0.6003067493438721, - 0.5793417096138, - 0.5510841012001038, - 0.5163046717643738, - 0.4759521484375, - 0.4311271905899048, - 0.3830525279045105, - 0.3330395519733429, - 0.28245243430137634, - 0.2326710820198059, - 0.39131298661231995, - 0.44503480195999146, - 0.4951275587081909, - 0.5402248501777649, - 0.5790965557098389, - 0.6106823682785034, - 0.6341207027435303, - 0.648772120475769, - 0.6542371511459351, - 0.6503665447235107, - 0.6372660398483276, - 0.6152928471565247, - 0.5850464105606079, - 0.5473518371582031, - 0.5032371282577515, - 0.45390585064888, - 0.400703489780426, - 0.3450813293457031, - 0.2885565757751465, - 0.2326710820198059, - 0.39131298661231995, - 0.4452001452445984, - 0.49545371532440186, - 0.5407029390335083, - 0.5797135233879089, - 0.6114213466644287, - 0.6349616050720215, - 0.6496919393539429, - 0.6552108526229858, - 0.6513675451278687, - 0.6382670402526855, - 0.6162665486335754, - 0.5859662294387817, - 0.5481926798820496, - 0.5039761066436768, - 0.4545227885246277, - 0.40118154883384705, - 0.3454074561595917, - 0.28872188925743103, - 0.2326710820198059, - 0.39131298661231995, - 0.43940871953964233, - 0.4840288758277893, - 0.523956298828125, - 0.5581018924713135, - 0.5855342149734497, - 0.6055050492286682, - 0.6174696683883667, - 0.6211016178131104, - 0.6163017749786377, - 0.6032012701034546, - 0.5821572542190552, - 0.5537439584732056, - 0.5187361836433411, - 0.47808900475502014, - 0.43291112780570984, - 0.38443487882614136, - 0.3339826166629791, - 0.28293049335479736, - 0.2326710820198059, - 0.39131298661231995, - 0.42828813195228577, - 0.4620910584926605, - 0.49179965257644653, - 0.5166035890579224, - 0.5358262062072754, - 0.5489432215690613, - 0.5555968284606934, - 0.5556055307388306, - 0.5489691495895386, - 0.5358685851097107, - 0.5166612863540649, - 0.4918711185455322, - 0.46217435598373413, - 0.42838096618652344, - 0.3914128243923187, - 0.3522782623767853, - 0.31204479932785034, - 0.2718099057674408, - 0.2326710820198059, - 0.39131298661231995, - 0.4130434989929199, - 0.43201762437820435, - 0.44771772623062134, - 0.4597156047821045, - 0.46768397092819214, - 0.4714054465293884, - 0.47077858448028564, - 0.4658203721046448, - 0.45666617155075073, - 0.44356560707092285, - 0.4268760681152344, - 0.4070528447628021, - 0.3846365511417389, - 0.3602387309074402, - 0.33452486991882324, - 0.3081963360309601, - 0.28197136521339417, - 0.25656527280807495, - 0.2326710969209671, - 0.39131298661231995, - 0.39532679319381714, - 0.39706745743751526, - 0.3964874744415283, - 0.3936026692390442, - 0.38849177956581116, - 0.3812941312789917, - 0.3722061216831207, - 0.3614756166934967, - 0.3493953347206116, - 0.3362948000431061, - 0.3225313425064087, - 0.3084804117679596, - 0.29452526569366455, - 0.2810465395450592, - 0.26841193437576294, - 0.25696611404418945, - 0.24702122807502747, - 0.23884858191013336, - 0.2326710969209671, - 0.39131301641464233, - 0.37705790996551514, - 0.3610280156135559, - 0.34366050362586975, - 0.32542917132377625, - 0.30683133006095886, - 0.2883742153644562, - 0.2705613970756531, - 0.253878653049469, - 0.23878110945224762, - 0.22568055987358093, - 0.2149343639612198, - 0.20683565735816956, - 0.20160534977912903, - 0.1993860900402069, - 0.2002384215593338, - 0.2041391134262085, - 0.21098175644874573, - 0.22057968378067017, - 0.2326711118221283, - 0.39131301641464233, - 0.36021652817726135, - 0.3278046250343323, - 0.2949613928794861, - 0.2625827193260193, - 0.23155182600021362, - 0.20271509885787964, - 0.17685915529727936, - 0.15468928217887878, - 0.13681025803089142, - 0.12370970845222473, - 0.11574499309062958, - 0.11313343048095703, - 0.11594617366790771, - 0.12410655617713928, - 0.13739196956157684, - 0.15544001758098602, - 0.17775839567184448, - 0.20373830199241638, - 0.2326711118221283, - 0.39131301641464233, - 0.34662771224975586, - 0.30099767446517944, - 0.255667507648468, - 0.21187373995780945, - 0.17081093788146973, - 0.1335991621017456, - 0.10125347971916199, - 0.07465621829032898, - 0.05453288555145264, - 0.041432350873947144, - 0.03571191430091858, - 0.03752774000167847, - 0.04683026671409607, - 0.06336565315723419, - 0.08668296039104462, - 0.11614611744880676, - 0.15095141530036926, - 0.1901494860649109, - 0.2326711118221283, - 0.39131301641464233, - 0.3377639949321747, - 0.28351202607154846, - 0.2300368845462799, - 0.17879728972911835, - 0.13119089603424072, - 0.0885162502527237, - 0.05193743109703064, - 0.02245229482650757, - 0.0008650422096252441, - -0.012235492467880249, - -0.016492009162902832, - -0.011788278818130493, - 0.0017473697662353516, - 0.023745626211166382, - 0.053606510162353516, - 0.09051549434661865, - 0.13346576690673828, - 0.1812857836484909, - 0.2326711118221283, - 0.39131301641464233, - 0.33458593487739563, - 0.2772425413131714, - 0.22084704041481018, - 0.1669377237558365, - 0.11698514223098755, - 0.07235182821750641, - 0.03425520658493042, - 0.003734588623046875, - -0.01837754249572754, - -0.03147807717323303, - -0.035209715366363525, - -0.029470503330230713, - -0.014417111873626709, - 0.009539872407913208, - 0.04174697399139404, - 0.08132565021514893, - 0.1271962970495224, - 0.17810770869255066, - 0.2326711118221283, - 0.39131301641464233, - 0.33743786811828613, - 0.2828686237335205, - 0.22909381985664368, - 0.17758025228977203, - 0.12973308563232422, - 0.08685745298862457, - 0.05012288689613342, - 0.02053147554397583, - -0.0011096596717834473, - -0.01421019434928894, - -0.01841282844543457, - -0.01360282301902771, - 0.00008857250213623047, - 0.022287815809249878, - 0.0523894727230072, - 0.08957242965698242, - 0.13282239437103271, - 0.18095964193344116, - 0.2326711118221283, - 0.39131301641464233, - 0.34601080417633057, - 0.29978063702583313, - 0.25388357043266296, - 0.20957157015800476, - 0.16805334389209747, - 0.13046135008335114, - 0.09782107174396515, - 0.07102280855178833, - 0.05079755187034607, - 0.037697017192840576, - 0.03207850456237793, - 0.03409534692764282, - 0.04369246959686279, - 0.060608088970184326, - 0.08438082039356232, - 0.1143621951341629, - 0.14973439276218414, - 0.1895325779914856, - 0.2326711118221283, - 0.39131301641464233, - 0.35937565565109253, - 0.32614582777023315, - 0.2925299108028412, - 0.25944486260414124, - 0.22779318690299988, - 0.19843822717666626, - 0.17218071222305298, - 0.1497368961572647, - 0.1317189782857895, - 0.1186184287071228, - 0.1107926070690155, - 0.10845498740673065, - 0.11166931688785553, - 0.12034793198108673, - 0.1342541128396988, - 0.15300853550434113, - 0.17609958350658417, - 0.20289744436740875, - 0.2326711118221283, - 0.39131301641464233, - 0.37608420848846436, - 0.3591071367263794, - 0.34084489941596985, - 0.32179564237594604, - 0.30247893929481506, - 0.28342175483703613, - 0.26514390110969543, - 0.24814392626285553, - 0.23288556933403015, - 0.21978503465652466, - 0.20919963717460632, - 0.2014181762933731, - 0.1966528594493866, - 0.1950337141752243, - 0.1966048926115036, - 0.2013235241174698, - 0.2090609073638916, - 0.21960598230361938, - 0.2326711118221283, - 0.39131298661231995, - 0.3943258225917816, - 0.39509278535842896, - 0.3935929834842682, - 0.38986730575561523, - 0.3840174078941345, - 0.37620285153388977, - 0.3666367828845978, - 0.3555801510810852, - 0.3433345556259155, - 0.33023399114608765, - 0.3166358470916748, - 0.30291107296943665, - 0.28943395614624023, - 0.27657216787338257, - 0.264676570892334, - 0.25407159328460693, - 0.24504652619361877, - 0.23784759640693665, - 0.2326710969209671, - 0.39131298661231995, - 0.4121236801147461, - 0.43020308017730713, - 0.4450579881668091, - 0.4562831521034241, - 0.4635724425315857, - 0.466727077960968, - 0.46566087007522583, - 0.4604030251502991, - 0.45109689235687256, - 0.43799635767936707, - 0.42145875096321106, - 0.4019351601600647, - 0.3799581527709961, - 0.3561272621154785, - 0.3310924172401428, - 0.3055365979671478, - 0.28015682101249695, - 0.2556454837322235, - 0.2326710969209671, - 0.39131298661231995, - 0.42754918336868286, - 0.4606332778930664, - 0.4896628260612488, - 0.5138460397720337, - 0.5325230956077576, - 0.5451846718788147, - 0.5514854192733765, - 0.5512533783912659, - 0.5444949269294739, - 0.531394362449646, - 0.5123090744018555, - 0.48775970935821533, - 0.45841580629348755, - 0.4250779151916504, - 0.38865527510643005, - 0.3501414358615875, - 0.3105870485305786, - 0.2710709571838379, - 0.2326710820198059, - 0.39131298661231995, - 0.4389306604862213, - 0.4830858111381531, - 0.5225739479064941, - 0.556317925453186, - 0.583397388458252, - 0.6030735969543457, - 0.6148098707199097, - 0.6182860136032104, - 0.6134073138237, - 0.6003067493438721, - 0.5793417692184448, - 0.5510841608047485, - 0.5163046717643738, - 0.4759521484375, - 0.4311272203922272, - 0.3830525279045105, - 0.3330395519733429, - 0.28245243430137634, - 0.2326710820198059 - ], - "z": [ - 1.3078696727752686, - 1.2953345775604248, - 1.2788124084472656, - 1.258754014968872, - 1.2357063293457031, - 1.2102980613708496, - 1.1832222938537598, - 1.1552176475524902, - 1.1270478963851929, - 1.0994815826416016, - 1.073270559310913, - 1.049129843711853, - 1.0277178287506104, - 1.0096186399459839, - 0.995326042175293, - 0.9852297902107239, - 0.9796053767204285, - 0.9786061644554138, - 0.9822593927383423, - 0.9904654622077942, - 1.3078696727752686, - 1.2857762575149536, - 1.25995671749115, - 1.2311149835586548, - 1.200037956237793, - 1.1675734519958496, - 1.1346067190170288, - 1.1020371913909912, - 1.0707533359527588, - 1.041608452796936, - 1.0153974294662476, - 0.992835283279419, - 0.9745374917984009, - 0.9610031247138977, - 0.952601432800293, - 0.9495615363121033, - 0.951966404914856, - 0.9597503542900085, - 0.9727011322975159, - 0.9904654622077942, - 1.3078696727752686, - 1.278377652168274, - 1.2453612089157104, - 1.2097207307815552, - 1.1724286079406738, - 1.1345020532608032, - 1.0969754457473755, - 1.0608725547790527, - 1.0271780490875244, - 0.9968111515045166, - 0.9706001281738281, - 0.949259877204895, - 0.9333727359771729, - 0.9233717918395996, - 0.9195300340652466, - 0.9219521284103394, - 0.9305721521377563, - 0.9451548457145691, - 0.9653024673461914, - 0.9904654622077942, - 1.3078696727752686, - 1.2739403247833252, - 1.236607551574707, - 1.1968896389007568, - 1.1558700799942017, - 1.1146676540374756, - 1.0744062662124634, - 1.0361841917037964, - 1.0010439157485962, - 0.969944179058075, - 0.9437331557273865, - 0.9231258630752563, - 0.9086843729019165, - 0.9008026123046875, - 0.899695634841919, - 0.9053936004638672, - 0.917741060256958, - 0.9364012479782104, - 0.9608651995658875, - 0.9904654622077942, - 1.3078696727752686, - 1.2729452848434448, - 1.2346445322036743, - 1.1940122842788696, - 1.1521567106246948, - 1.1102195978164673, - 1.0693449974060059, - 1.0306476354599, - 0.9951832294464111, - 0.9639191031455994, - 0.9377080798149109, - 0.9172651171684265, - 0.90314781665802, - 0.89574134349823, - 0.8952476382255554, - 0.9016802310943604, - 0.914863646030426, - 0.9344382286071777, - 0.9598701000213623, - 0.9904654622077942, - 1.3078696727752686, - 1.2755001783370972, - 1.2396847009658813, - 1.2014001607894897, - 1.1616909503936768, - 1.1216399669647217, - 1.0823400020599365, - 1.0448628664016724, - 1.0102308988571167, - 0.9793887138366699, - 0.9531776905059814, - 0.9323127269744873, - 0.9173630475997925, - 0.9087363481521606, - 0.9066680073738098, - 0.9112144708633423, - 0.9222515821456909, - 0.9394783973693848, - 0.9624250531196594, - 0.9904654622077942, - 1.3078696727752686, - 1.2813283205032349, - 1.251181960105896, - 1.2182530164718628, - 1.1834394931793213, - 1.147691249847412, - 1.1119831800460815, - 1.077289342880249, - 1.0445562601089478, - 1.0146766901016235, - 0.9884656667709351, - 0.9666382074356079, - 0.9497895836830139, - 0.9383795261383057, - 0.9327192306518555, - 0.9329630136489868, - 0.9391043782234192, - 0.9509756565093994, - 0.9682531356811523, - 0.9904654622077942, - 1.3078696727752686, - 1.2897980213165283, - 1.267890453338623, - 1.2427443265914917, - 1.215045690536499, - 1.1855502128601074, - 1.155062198638916, - 1.1244133710861206, - 1.0944397449493408, - 1.065959095954895, - 1.0397480726242065, - 1.016521692276001, - 0.9969135522842407, - 0.9814585447311401, - 0.9705781936645508, - 0.9645692706108093, - 0.9635957479476929, - 0.9676840901374817, - 0.9767228364944458, - 0.9904654622077942, - 1.3078696727752686, - 1.299991488456726, - 1.2879993915557861, - 1.272220253944397, - 1.2530845403671265, - 1.2311142683029175, - 1.2069087028503418, - 1.1811281442642212, - 1.1544756889343262, - 1.1276785135269165, - 1.101467490196228, - 1.0765576362609863, - 1.0536283254623413, - 1.033305048942566, - 1.0161422491073608, - 1.002608060836792, - 0.9930716156959534, - 0.9877930879592896, - 0.9869163632392883, - 0.9904654622077942, - 1.3078696727752686, - 1.3108041286468506, - 1.3093297481536865, - 1.3034864664077759, - 1.2934337854385376, - 1.2794458866119385, - 1.2619043588638306, - 1.2412877082824707, - 1.21815824508667, - 1.193146824836731, - 1.1669358015060425, - 1.1402400732040405, - 1.1137878894805908, - 1.0883008241653442, - 1.0644739866256714, - 1.0429573059082031, - 1.024337887763977, - 1.00912344455719, - 0.9977290630340576, - 0.9904654622077942, - 1.307869553565979, - 1.3210642337799072, - 1.3295700550079346, - 1.3331549167633057, - 1.3317210674285889, - 1.3253077268600464, - 1.3140896558761597, - 1.2983729839324951, - 1.2785863876342773, - 1.2552695274353027, - 1.2290585041046143, - 1.200668215751648, - 1.1708731651306152, - 1.1404860019683838, - 1.1103357076644897, - 1.081244707107544, - 1.0540063381195068, - 1.029363751411438, - 1.0079891681671143, - 0.9904654622077942, - 1.307869553565979, - 1.3296599388122559, - 1.3465269804000854, - 1.3580105304718018, - 1.3637974262237549, - 1.36372971534729, - 1.35780930519104, - 1.3461978435516357, - 1.329211711883545, - 1.3073145151138306, - 1.281103491783142, - 1.251293659210205, - 1.2186980247497559, - 1.1842057704925537, - 1.148757815361023, - 1.1133209466934204, - 1.078861951828003, - 1.0463206768035889, - 1.016584873199463, - 0.9904654622077942, - 1.307869553565979, - 1.3356597423553467, - 1.3583629131317139, - 1.3753597736358643, - 1.3861867189407349, - 1.3905483484268188, - 1.388325810432434, - 1.3795795440673828, - 1.3645484447479248, - 1.3436421155929565, - 1.317431092262268, - 1.2866302728652954, - 1.2520798444747925, - 1.2147221565246582, - 1.1755764484405518, - 1.1357102394104004, - 1.0962111949920654, - 1.0581566095352173, - 1.0225846767425537, - 0.9904654622077942, - 1.307869553565979, - 1.3384134769439697, - 1.3637953996658325, - 1.3833227157592773, - 1.3964627981185913, - 1.4028574228286743, - 1.402332067489624, - 1.3949010372161865, - 1.3807669878005981, - 1.3603155612945557, - 1.3341045379638672, - 1.3028488159179688, - 1.2674012184143066, - 1.2287284135818481, - 1.1878855228424072, - 1.1459864377975464, - 1.104174017906189, - 1.063589096069336, - 1.0253384113311768, - 0.9904654622077942, - 1.307869553565979, - 1.337622880935669, - 1.3622355461120605, - 1.3810362815856934, - 1.39351224899292, - 1.3993229866027832, - 1.3983103036880493, - 1.3905017375946045, - 1.3761100769042969, - 1.3555279970169067, - 1.3293169736862183, - 1.2981919050216675, - 1.2630019187927246, - 1.224706768989563, - 1.1843510866165161, - 1.1430357694625854, - 1.101887583732605, - 1.0620291233062744, - 1.0245476961135864, - 0.9904654622077942, - 1.307869553565979, - 1.3333733081817627, - 1.3538525104522705, - 1.3687483072280884, - 1.3776545524597168, - 1.3803281784057617, - 1.3766964673995972, - 1.3668583631515503, - 1.3510822057724, - 1.3297982215881348, - 1.3035871982574463, - 1.2731640338897705, - 1.2393585443496704, - 1.2030928134918213, - 1.1653562784194946, - 1.1271780729293823, - 1.089599609375, - 1.0536460876464844, - 1.0202982425689697, - 0.9904654622077942, - 1.307869553565979, - 1.3261256217956543, - 1.3395545482635498, - 1.3477903604507446, - 1.350608229637146, - 1.3479312658309937, - 1.3398325443267822, - 1.3265330791473389, - 1.308395504951477, - 1.2859145402908325, - 1.259703516960144, - 1.2304773330688477, - 1.199033260345459, - 1.166229009628296, - 1.1329593658447266, - 1.1001317501068115, - 1.0686417818069458, - 1.0393482446670532, - 1.0130504369735718, - 0.9904654622077942, - 1.307869553565979, - 1.3166649341583252, - 1.3208913803100586, - 1.3204336166381836, - 1.315304160118103, - 1.3056429624557495, - 1.2917134761810303, - 1.2738957405090332, - 1.2526757717132568, - 1.2286323308944702, - 1.2024213075637817, - 1.174757719039917, - 1.1463960409164429, - 1.118109941482544, - 1.0906710624694824, - 1.0648276805877686, - 1.0412850379943848, - 1.020685076713562, - 1.0035897493362427, - 0.9904654622077942, - 1.3078696727752686, - 1.3060165643692017, - 1.2998851537704468, - 1.289642572402954, - 1.2755681276321411, - 1.2580459117889404, - 1.2375537157058716, - 1.2146505117416382, - 1.1899611949920654, - 1.1641590595245361, - 1.1379480361938477, - 1.112043023109436, - 1.0871506929397583, - 1.0639500617980957, - 1.0430738925933838, - 1.0250916481018066, - 1.0104939937591553, - 0.9996788501739502, - 0.9929414391517639, - 0.9904654622077942, - 1.3078696727752686, - 1.2953345775604248, - 1.2788124084472656, - 1.258754014968872, - 1.2357062101364136, - 1.21029794216156, - 1.1832222938537598, - 1.1552175283432007, - 1.1270478963851929, - 1.0994815826416016, - 1.073270559310913, - 1.0491297245025635, - 1.0277178287506104, - 1.0096186399459839, - 0.9953259825706482, - 0.9852297902107239, - 0.9796053171157837, - 0.978606104850769, - 0.9822593927383423, - 0.9904654622077942 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.38157156109809875, - 0.31456395983695984, - 0.25107017159461975, - 0.1928221583366394, - 0.1414088010787964, - 0.0982324481010437, - 0.06447091698646545, - 0.04104501008987427, - 0.028593897819519043, - 0.027457088232040405, - 0.03766563534736633, - 0.0589410662651062, - 0.09070304036140442, - 0.13208520412445068, - 0.18195870518684387, - 0.23896315693855286, - 0.301543653011322, - 0.36799314618110657, - 0.4364989995956421, - 0.5051926374435425, - 0.38157156109809875, - 0.31824028491973877, - 0.2583225667476654, - 0.20345281064510345, - 0.1551276445388794, - 0.11466535925865173, - 0.0831696093082428, - 0.061499446630477905, - 0.05024611949920654, - 0.04971650242805481, - 0.05992504954338074, - 0.0805932879447937, - 0.11115747690200806, - 0.15078389644622803, - 0.1983916163444519, - 0.25268203020095825, - 0.31217432022094727, - 0.3752455413341522, - 0.4401753544807434, - 0.5051926374435425, - 0.38157156109809875, - 0.32887089252471924, - 0.27929380536079407, - 0.2341926395893097, - 0.1947975754737854, - 0.16218328475952148, - 0.13723933696746826, - 0.12064617872238159, - 0.1128564178943634, - 0.11408254504203796, - 0.12429109215736389, - 0.14320358633995056, - 0.17030420899391174, - 0.20485365390777588, - 0.24590952694416046, - 0.29235196113586426, - 0.3429141342639923, - 0.3962167799472809, - 0.4508059620857239, - 0.5051926374435425, - 0.38157156109809875, - 0.34530380368232727, - 0.3117113709449768, - 0.28171056509017944, - 0.2561197280883789, - 0.23563694953918457, - 0.22082090377807617, - 0.21207572519779205, - 0.2096399962902069, - 0.2135801762342453, - 0.22378872334957123, - 0.23998717963695526, - 0.2617337703704834, - 0.2884352207183838, - 0.31936320662498474, - 0.35367411375045776, - 0.39043205976486206, - 0.42863431572914124, - 0.4672388434410095, - 0.5051926374435425, - 0.38157153129577637, - 0.3657582402229309, - 0.35206225514411926, - 0.34085729718208313, - 0.33244889974594116, - 0.3270665109157562, - 0.32485687732696533, - 0.3258803188800812, - 0.3301089107990265, - 0.3374272584915161, - 0.34763583540916443, - 0.36045607924461365, - 0.37553834915161133, - 0.39247119426727295, - 0.4107927680015564, - 0.4300033152103424, - 0.44957879185676575, - 0.4689852297306061, - 0.48769327998161316, - 0.5051926374435425, - 0.38157153129577637, - 0.3880176246166229, - 0.39597389101982117, - 0.4052233397960663, - 0.41551363468170166, - 0.42656412720680237, - 0.43807336688041687, - 0.4497274160385132, - 0.46120840311050415, - 0.4722031056880951, - 0.482411652803421, - 0.4915555715560913, - 0.49938544631004333, - 0.5056877136230469, - 0.5102904438972473, - 0.5130680203437805, - 0.5139448046684265, - 0.5128968358039856, - 0.5099526643753052, - 0.5051926374435425, - 0.38157153129577637, - 0.40966981649398804, - 0.4386877119541168, - 0.46783363819122314, - 0.49631258845329285, - 0.5233477354049683, - 0.5482016205787659, - 0.5701963305473328, - 0.5887318253517151, - 0.6033025979995728, - 0.6135111451148987, - 0.6190789937973022, - 0.6198543310165405, - 0.6158159375190735, - 0.6070740222930908, - 0.5938670039176941, - 0.5765551328659058, - 0.5556106567382812, - 0.5316048860549927, - 0.5051926374435425, - 0.38157153129577637, - 0.4283685088157654, - 0.4755750298500061, - 0.521903395652771, - 0.566089928150177, - 0.6069293022155762, - 0.6433075070381165, - 0.6742323040962219, - 0.6988601684570312, - 0.7165191173553467, - 0.7267276644706726, - 0.7292072772979736, - 0.7238903045654297, - 0.7109218835830688, - 0.6906555891036987, - 0.6636443138122559, - 0.6306248903274536, - 0.5924980044364929, - 0.55030357837677, - 0.5051926374435425, - 0.38157153129577637, - 0.4420873820781708, - 0.5026385188102722, - 0.561573326587677, - 0.6172841787338257, - 0.6682513952255249, - 0.7130848169326782, - 0.7505614757537842, - 0.7796590328216553, - 0.7995838522911072, - 0.8097923994064331, - 0.8100062608718872, - 0.8002194762229919, - 0.7806991934776306, - 0.7519777417182922, - 0.7148386240005493, - 0.6702948212623596, - 0.619561493396759, - 0.564022421836853, - 0.5051926374435425, - 0.38157153129577637, - 0.44933977723121643, - 0.516945481300354, - 0.5825445652008057, - 0.6443476676940918, - 0.70066899061203, - 0.7499722242355347, - 0.790912389755249, - 0.8223729133605957, - 0.8434954881668091, - 0.853704035282135, - 0.8527200818061829, - 0.8405704498291016, - 0.8175865411758423, - 0.7843953371047974, - 0.7419021129608154, - 0.6912660598754883, - 0.6338684558868408, - 0.5712748169898987, - 0.5051926374435425, - 0.38157153129577637, - 0.44933977723121643, - 0.516945481300354, - 0.5825445652008057, - 0.6443476676940918, - 0.70066899061203, - 0.7499722242355347, - 0.790912389755249, - 0.8223729133605957, - 0.8434954881668091, - 0.853704035282135, - 0.8527200818061829, - 0.8405704498291016, - 0.8175865411758423, - 0.7843953371047974, - 0.7419021129608154, - 0.6912660598754883, - 0.6338684558868408, - 0.5712748169898987, - 0.5051926374435425, - 0.38157153129577637, - 0.4420873820781708, - 0.5026385188102722, - 0.561573326587677, - 0.6172841787338257, - 0.6682513952255249, - 0.7130848169326782, - 0.7505614757537842, - 0.7796590328216553, - 0.7995838522911072, - 0.8097923994064331, - 0.8100062608718872, - 0.8002194762229919, - 0.7806991934776306, - 0.7519777417182922, - 0.7148386240005493, - 0.6702948212623596, - 0.619561493396759, - 0.564022421836853, - 0.5051926374435425, - 0.38157153129577637, - 0.4283685088157654, - 0.4755750298500061, - 0.521903395652771, - 0.566089928150177, - 0.6069293022155762, - 0.6433075070381165, - 0.6742323637008667, - 0.6988601684570312, - 0.7165191173553467, - 0.7267277240753174, - 0.7292072772979736, - 0.7238903641700745, - 0.7109218835830688, - 0.6906555891036987, - 0.6636443138122559, - 0.6306248903274536, - 0.5924980044364929, - 0.55030357837677, - 0.5051926374435425, - 0.38157153129577637, - 0.40966981649398804, - 0.43868768215179443, - 0.46783360838890076, - 0.49631255865097046, - 0.5233476758003235, - 0.5482015609741211, - 0.570196270942688, - 0.5887317657470703, - 0.603302538394928, - 0.6135110855102539, - 0.6190789937973022, - 0.6198543310165405, - 0.6158158779144287, - 0.607073962688446, - 0.5938669443130493, - 0.5765551328659058, - 0.5556106567382812, - 0.5316048860549927, - 0.5051926374435425, - 0.38157153129577637, - 0.3880176246166229, - 0.39597389101982117, - 0.4052233397960663, - 0.41551366448402405, - 0.42656415700912476, - 0.43807339668273926, - 0.44972744584083557, - 0.46120840311050415, - 0.4722031354904175, - 0.4824116826057434, - 0.4915556013584137, - 0.4993854761123657, - 0.5056877136230469, - 0.5102904438972473, - 0.5130680799484253, - 0.5139448642730713, - 0.5128968358039856, - 0.5099526643753052, - 0.5051926374435425, - 0.38157153129577637, - 0.3657582402229309, - 0.35206231474876404, - 0.3408573567867279, - 0.3324489891529083, - 0.3270666003227234, - 0.3248569965362549, - 0.3258804380893707, - 0.33010903000831604, - 0.33742737770080566, - 0.347635954618454, - 0.3604561984539032, - 0.3755384683609009, - 0.3924713134765625, - 0.41079288721084595, - 0.4300033748149872, - 0.4495788514614105, - 0.46898525953292847, - 0.48769327998161316, - 0.5051926374435425, - 0.38157156109809875, - 0.34530380368232727, - 0.3117113709449768, - 0.28171056509017944, - 0.2561197280883789, - 0.23563697934150696, - 0.22082093358039856, - 0.21207574009895325, - 0.2096400260925293, - 0.2135801911354065, - 0.22378873825073242, - 0.23998720943927765, - 0.2617337703704834, - 0.2884352207183838, - 0.31936323642730713, - 0.35367414355278015, - 0.39043205976486206, - 0.42863431572914124, - 0.4672388434410095, - 0.5051926374435425, - 0.38157156109809875, - 0.32887089252471924, - 0.2792937755584717, - 0.2341926097869873, - 0.194797545671463, - 0.1621832549571991, - 0.13723933696746826, - 0.12064611911773682, - 0.11285635828971863, - 0.11408248543739319, - 0.12429103255271912, - 0.1432035267353058, - 0.17030414938926697, - 0.2048536241054535, - 0.24590949714183807, - 0.29235193133354187, - 0.3429141044616699, - 0.3962167501449585, - 0.4508059322834015, - 0.5051926374435425, - 0.38157156109809875, - 0.31824028491973877, - 0.258322536945343, - 0.20345276594161987, - 0.155127614736557, - 0.11466529965400696, - 0.08316954970359802, - 0.06149938702583313, - 0.05024603009223938, - 0.049716413021087646, - 0.059924960136413574, - 0.08059319853782654, - 0.11115741729736328, - 0.15078383684158325, - 0.19839155673980713, - 0.25268200039863586, - 0.3121742606163025, - 0.37524551153182983, - 0.440175324678421, - 0.5051926374435425, - 0.38157156109809875, - 0.31456395983695984, - 0.25107017159461975, - 0.1928221583366394, - 0.1414088010787964, - 0.0982324481010437, - 0.06447091698646545, - 0.04104501008987427, - 0.028593897819519043, - 0.027457088232040405, - 0.03766563534736633, - 0.0589410662651062, - 0.09070304036140442, - 0.13208520412445068, - 0.18195870518684387, - 0.23896315693855286, - 0.301543653011322, - 0.36799314618110657, - 0.4364989995956421, - 0.5051926374435425 - ], - "y": [ - 0.36993929743766785, - 0.3815789818763733, - 0.39506715536117554, - 0.4100359380245209, - 0.4260769486427307, - 0.4427526891231537, - 0.459608256816864, - 0.4761838912963867, - 0.4920274317264557, - 0.506706714630127, - 0.5198213458061218, - 0.5310136079788208, - 0.5399781465530396, - 0.5464704632759094, - 0.5503134727478027, - 0.5514023303985596, - 0.5497073531150818, - 0.5452747344970703, - 0.5382254719734192, - 0.5287517309188843, - 0.36993929743766785, - 0.3601410984992981, - 0.35277611017227173, - 0.34804534912109375, - 0.3460777699947357, - 0.34692704677581787, - 0.35057005286216736, - 0.3569073975086212, - 0.3657661974430084, - 0.37690484523773193, - 0.3900194764137268, - 0.40475237369537354, - 0.42070162296295166, - 0.4374322295188904, - 0.45448780059814453, - 0.4714031219482422, - 0.4877167344093323, - 0.5029836893081665, - 0.5167875289916992, - 0.528751790523529, - 0.36993929743766785, - 0.3398823142051697, - 0.3128111958503723, - 0.28946441411972046, - 0.270478755235672, - 0.2563721537590027, - 0.2475292831659317, - 0.24419145286083221, - 0.24644970893859863, - 0.254242479801178, - 0.26735711097717285, - 0.28543585538864136, - 0.30798569321632385, - 0.3343914747238159, - 0.36393284797668457, - 0.39580410718917847, - 0.42913582921028137, - 0.4630188047885895, - 0.4965288043022156, - 0.528751790523529, - 0.36993929743766785, - 0.3229980766773224, - 0.2795032560825348, - 0.2406412959098816, - 0.20747226476669312, - 0.18090090155601501, - 0.16165196895599365, - 0.15025058388710022, - 0.1470077931880951, - 0.152011901140213, - 0.16512653231620789, - 0.18599393963813782, - 0.21404482424259186, - 0.24851416051387787, - 0.2884616255760193, - 0.3327976167201996, - 0.3803127110004425, - 0.42971083521842957, - 0.4796445369720459, - 0.528751790523529, - 0.36993932723999023, - 0.31131798028945923, - 0.2564616799354553, - 0.20686675608158112, - 0.16388601064682007, - 0.1286918818950653, - 0.10224434733390808, - 0.08526480197906494, - 0.07821640372276306, - 0.08129149675369263, - 0.0944061279296875, - 0.11720255017280579, - 0.14905905723571777, - 0.1891065239906311, - 0.23625260591506958, - 0.28921133279800415, - 0.34653815627098083, - 0.4066692590713501, - 0.4679644703865051, - 0.528751790523529, - 0.36993932723999023, - 0.3061077892780304, - 0.24618342518806458, - 0.1918007731437683, - 0.14444327354431152, - 0.10540273785591125, - 0.07574403285980225, - 0.05627623200416565, - 0.047530293464660645, - 0.049744874238967896, - 0.06285950541496277, - 0.08651643991470337, - 0.12007048726081848, - 0.16260620951652527, - 0.21296343207359314, - 0.2697685956954956, - 0.33147215843200684, - 0.39639100432395935, - 0.4627542495727539, - 0.528751790523529, - 0.36993932723999023, - 0.3079320788383484, - 0.24978221952915192, - 0.1970759630203247, - 0.1512509286403656, - 0.11355715990066528, - 0.08502280712127686, - 0.06642621755599976, - 0.05827474594116211, - 0.06079059839248657, - 0.07390522956848145, - 0.09726089239120483, - 0.1302204728126526, - 0.17188498377799988, - 0.22111788392066956, - 0.2765762507915497, - 0.33674734830856323, - 0.3999898135662079, - 0.4645785391330719, - 0.528751790523529, - 0.36993929743766785, - 0.3165931701660156, - 0.2668681740760803, - 0.22212070226669312, - 0.18357130885124207, - 0.152271568775177, - 0.12907519936561584, - 0.11461493372917175, - 0.10928532481193542, - 0.11323165893554688, - 0.12634629011154175, - 0.14827147126197815, - 0.17840918898582458, - 0.21593736112117767, - 0.2598322629928589, - 0.30889666080474854, - 0.36179211735725403, - 0.4170757532119751, - 0.4732396602630615, - 0.528751790523529, - 0.36993929743766785, - 0.3311524987220764, - 0.29558971524238586, - 0.2642209827899933, - 0.2379019558429718, - 0.217350572347641, - 0.20312738418579102, - 0.19562038779258728, - 0.19503438472747803, - 0.20138530433177948, - 0.21449993550777435, - 0.23402053117752075, - 0.2594146430492401, - 0.28998956084251404, - 0.32491129636764526, - 0.3632272779941559, - 0.4038923978805542, - 0.44579729437828064, - 0.4877989888191223, - 0.528751790523529, - 0.36993929743766785, - 0.35003235936164856, - 0.3328344225883484, - 0.31881460547447205, - 0.30835533142089844, - 0.30174189805984497, - 0.29915469884872437, - 0.3006643056869507, - 0.3062295913696289, - 0.31569868326187134, - 0.3288133144378662, - 0.34521573781967163, - 0.3644585609436035, - 0.3860169053077698, - 0.40930265188217163, - 0.4336806833744049, - 0.45848599076271057, - 0.48304200172424316, - 0.5066788196563721, - 0.528751790523529, - 0.36993929743766785, - 0.3711867928504944, - 0.3745662569999695, - 0.379985511302948, - 0.3872967064380646, - 0.39630043506622314, - 0.4067510962486267, - 0.41836363077163696, - 0.4308212697505951, - 0.4437842071056366, - 0.45689883828163147, - 0.4698074460029602, - 0.4821578860282898, - 0.4936133027076721, - 0.5038611888885498, - 0.512622058391571, - 0.5196568965911865, - 0.5247738361358643, - 0.5278332829475403, - 0.528751790523529, - 0.36993929743766785, - 0.39232340455055237, - 0.4162629246711731, - 0.44110482931137085, - 0.4661715626716614, - 0.4907792806625366, - 0.5142568349838257, - 0.535963773727417, - 0.5553079843521118, - 0.5717617869377136, - 0.5848764181137085, - 0.5942941308021545, - 0.5997580289840698, - 0.6011190414428711, - 0.5983400344848633, - 0.5914969444274902, - 0.5807762145996094, - 0.5664705038070679, - 0.5489698648452759, - 0.5287517309188843, - 0.36993926763534546, - 0.4111517071723938, - 0.4534059166908264, - 0.49554938077926636, - 0.5364325642585754, - 0.5749402046203613, - 0.6100219488143921, - 0.6407209038734436, - 0.6661996245384216, - 0.6857630610466003, - 0.6988776922225952, - 0.7051857709884644, - 0.7045151591300964, - 0.6968841552734375, - 0.6825010180473328, - 0.6617579460144043, - 0.6352207660675049, - 0.6036134958267212, - 0.5677981376647949, - 0.5287517309188843, - 0.36993926763534546, - 0.4256313443183899, - 0.48197028040885925, - 0.537419319152832, - 0.5904659032821655, - 0.6396631002426147, - 0.6836689710617065, - 0.7212830781936646, - 0.7514793872833252, - 0.7734342813491821, - 0.7865489721298218, - 0.7904655933380127, - 0.7850773334503174, - 0.770531177520752, - 0.7472239136695862, - 0.7157912850379944, - 0.6770907640457153, - 0.6321778893470764, - 0.5822778344154358, - 0.5287517309188843, - 0.36993926763534546, - 0.43419328331947327, - 0.49886056780815125, - 0.5621772408485413, - 0.6224161386489868, - 0.6779341697692871, - 0.7272168397903442, - 0.7689199447631836, - 0.8019058704376221, - 0.8252748250961304, - 0.83838951587677, - 0.8408920168876648, - 0.8327142000198364, - 0.8140790462493896, - 0.7854949235916138, - 0.7477415204048157, - 0.7018486261367798, - 0.6490681171417236, - 0.5908397436141968, - 0.5287517309188843, - 0.36993926763534546, - 0.435909628868103, - 0.5022464990615845, - 0.5671403408050537, - 0.628821074962616, - 0.6856061220169067, - 0.7359466552734375, - 0.778469443321228, - 0.8120145797729492, - 0.835667073726654, - 0.8487817049026489, - 0.8510007858276367, - 0.8422636985778809, - 0.8228088617324829, - 0.7931669354438782, - 0.7541464567184448, - 0.7068117260932922, - 0.6524540781974792, - 0.5925561189651489, - 0.5287517309188843, - 0.36993926763534546, - 0.43059444427490234, - 0.49176108837127686, - 0.5517707467079163, - 0.608986496925354, - 0.661847710609436, - 0.7089123725891113, - 0.7488967180252075, - 0.7807101011276245, - 0.8034847974777222, - 0.8165993690490723, - 0.8196962475776672, - 0.8126909732818604, - 0.7957745790481567, - 0.7694084644317627, - 0.7343118786811829, - 0.6914421319961548, - 0.6419686675071716, - 0.5872409343719482, - 0.5287517309188843, - 0.36993926763534546, - 0.4188236892223358, - 0.46854063868522644, - 0.5177339911460876, - 0.5650619268417358, - 0.6092333793640137, - 0.6490434408187866, - 0.6834063529968262, - 0.7113847732543945, - 0.7322152853012085, - 0.7453299760818481, - 0.7503708600997925, - 0.747200608253479, - 0.7359057068824768, - 0.7167941331863403, - 0.6903872489929199, - 0.6574053764343262, - 0.6187481880187988, - 0.5754701495170593, - 0.5287517309188843, - 0.36993926763534546, - 0.4018728733062744, - 0.4351014196872711, - 0.4687184691429138, - 0.5018070936203003, - 0.5334647297859192, - 0.5628277659416199, - 0.5890953540802002, - 0.6115509271621704, - 0.6295819282531738, - 0.6426965594291687, - 0.6505370736122131, - 0.652889609336853, - 0.6496899724006653, - 0.6410254836082458, - 0.6271324753761292, - 0.6083898544311523, - 0.5853090286254883, - 0.5585193634033203, - 0.5287517309188843, - 0.36993929743766785, - 0.3815789818763733, - 0.39506715536117554, - 0.4100359082221985, - 0.4260769188404083, - 0.4427526295185089, - 0.45960819721221924, - 0.47618383169174194, - 0.4920273423194885, - 0.5067066550254822, - 0.519821286201477, - 0.5310134887695312, - 0.5399780869483948, - 0.5464704036712646, - 0.550313413143158, - 0.5514022707939148, - 0.549707293510437, - 0.5452747344970703, - 0.5382254719734192, - 0.5287517309188843 - ], - "z": [ - 1.265105962753296, - 1.2883942127227783, - 1.3153808116912842, - 1.3453296422958374, - 1.377423882484436, - 1.4107880592346191, - 1.444511890411377, - 1.4776757955551147, - 1.5093748569488525, - 1.538744568824768, - 1.56498384475708, - 1.5873767137527466, - 1.6053125858306885, - 1.6183022260665894, - 1.6259911060333252, - 1.6281696557998657, - 1.6247785091400146, - 1.6159099340438843, - 1.6018059253692627, - 1.5828514099121094, - 1.265105962753296, - 1.297678828239441, - 1.333696722984314, - 1.3721773624420166, - 1.4120709896087646, - 1.452289342880249, - 1.4917354583740234, - 1.529333472251892, - 1.5640575885772705, - 1.5949608087539673, - 1.6211999654769897, - 1.6420594453811646, - 1.6569703817367554, - 1.6655257940292358, - 1.6674925088882446, - 1.6628167629241943, - 1.6516261100769043, - 1.634225845336914, - 1.6110905408859253, - 1.5828514099121094, - 1.265105962753296, - 1.3036683797836304, - 1.3455126285552979, - 1.38949716091156, - 1.434422254562378, - 1.4790624380111694, - 1.522200107574463, - 1.562658667564392, - 1.5993342399597168, - 1.631226658821106, - 1.6574658155441284, - 1.6773362159729004, - 1.6902954578399658, - 1.6959904432296753, - 1.694265604019165, - 1.6851680278778076, - 1.6689459085464478, - 1.646041750907898, - 1.6170802116394043, - 1.5828514099121094, - 1.265105962753296, - 1.3057140111923218, - 1.3495479822158813, - 1.3954122066497803, - 1.4420557022094727, - 1.488206148147583, - 1.5326045751571655, - 1.5740399360656738, - 1.611382007598877, - 1.643612265586853, - 1.669851541519165, - 1.6893839836120605, - 1.701676845550537, - 1.7063947916030884, - 1.703409194946289, - 1.6928014755249023, - 1.674860954284668, - 1.6500771045684814, - 1.6191258430480957, - 1.5828514099121094, - 1.265105962753296, - 1.3035938739776611, - 1.3453656435012817, - 1.3892816305160522, - 1.4341442584991455, - 1.478729486465454, - 1.521821141242981, - 1.5622440576553345, - 1.5988954305648804, - 1.6307755708694458, - 1.6570147275924683, - 1.6768972873687744, - 1.6898809671401978, - 1.6956114768981934, - 1.6939325332641602, - 1.6848900318145752, - 1.6687304973602295, - 1.6458947658538818, - 1.617005705833435, - 1.5828514099121094, - 1.265105962753296, - 1.2975378036499023, - 1.333418607711792, - 1.3717697858810425, - 1.4115450382232666, - 1.4516593217849731, - 1.4910186529159546, - 1.528549313545227, - 1.5632275342941284, - 1.5941073894500732, - 1.6203465461730957, - 1.6412293910980225, - 1.6561862230300903, - 1.664808988571167, - 1.6668624877929688, - 1.6622908115386963, - 1.6512185335159302, - 1.6339478492736816, - 1.6109496355056763, - 1.5828514099121094, - 1.265105962753296, - 1.2882020473480225, - 1.3150018453598022, - 1.3447742462158203, - 1.3767070770263672, - 1.4099292755126953, - 1.4435348510742188, - 1.4766069650650024, - 1.508243441581726, - 1.537581443786621, - 1.5638206005096436, - 1.5862452983856201, - 1.6042438745498657, - 1.6173251867294312, - 1.625132441520691, - 1.6274528503417969, - 1.624222993850708, - 1.6155309677124023, - 1.6016138792037964, - 1.5828514099121094, - 1.265105962753296, - 1.276598334312439, - 1.292110800743103, - 1.311220407485962, - 1.333405613899231, - 1.35806143283844, - 1.384515404701233, - 1.4120457172393799, - 1.4399017095565796, - 1.4673231840133667, - 1.4935623407363892, - 1.5179035663604736, - 1.5396826267242432, - 1.5583057403564453, - 1.5732645988464355, - 1.5841513872146606, - 1.5906691551208496, - 1.5926399230957031, - 1.590010166168213, - 1.5828514099121094, - 1.265105962753296, - 1.263983964920044, - 1.267226219177246, - 1.2747442722320557, - 1.2863330841064453, - 1.3016765117645264, - 1.320356011390686, - 1.3418619632720947, - 1.3656079769134521, - 1.3909461498260498, - 1.4171853065490723, - 1.4436098337173462, - 1.469498872756958, - 1.4941462278366089, - 1.516879677772522, - 1.537078857421875, - 1.5541930198669434, - 1.5677553415298462, - 1.5773957967758179, - 1.5828514099121094, - 1.265105962753296, - 1.2517260313034058, - 1.2430447340011597, - 1.2392988204956055, - 1.2405905723571777, - 1.2468845844268799, - 1.2580091953277588, - 1.2736611366271973, - 1.2934132814407349, - 1.3167269229888916, - 1.3429661989212036, - 1.3714152574539185, - 1.4012980461120605, - 1.4317995309829712, - 1.462087631225586, - 1.4913363456726074, - 1.5187475681304932, - 1.5435738563537598, - 1.5651378631591797, - 1.5828514099121094, - 1.265105962753296, - 1.2411528825759888, - 1.2221866846084595, - 1.2087249755859375, - 1.2011348009109497, - 1.1996232271194458, - 1.2042315006256104, - 1.2148337364196777, - 1.2311410903930664, - 1.2527085542678833, - 1.2789477109909058, - 1.3091429471969604, - 1.342470645904541, - 1.3780217170715332, - 1.4148262739181519, - 1.4518805742263794, - 1.4881737232208252, - 1.5227158069610596, - 1.5545645952224731, - 1.5828514099121094, - 1.265105962753296, - 1.233410120010376, - 1.2069125175476074, - 1.1863359212875366, - 1.1722415685653687, - 1.1650140285491943, - 1.1648502349853516, - 1.1717548370361328, - 1.1855394840240479, - 1.205828070640564, - 1.232067346572876, - 1.263541340827942, - 1.299391746520996, - 1.3386404514312744, - 1.3802170753479004, - 1.4229873418807983, - 1.4657846689224243, - 1.5074416399002075, - 1.54682195186615, - 1.5828514099121094, - 1.265105962753296, - 1.2293369770050049, - 1.1988773345947266, - 1.1745578050613403, - 1.1570417881011963, - 1.1468071937561035, - 1.1441330909729004, - 1.149092435836792, - 1.1615500450134277, - 1.1811659336090088, - 1.2074052095413208, - 1.2395519018173218, - 1.2767293453216553, - 1.3179234266281128, - 1.3620103597640991, - 1.407787561416626, - 1.454006552696228, - 1.4994064569473267, - 1.5427488088607788, - 1.5828514099121094, - 1.265105962753296, - 1.2293747663497925, - 1.1989518404006958, - 1.1746670007705688, - 1.1571828126907349, - 1.146976113319397, - 1.1443252563476562, - 1.1493027210235596, - 1.1617724895477295, - 1.1813946962356567, - 1.2076338529586792, - 1.2397743463516235, - 1.2769395112991333, - 1.318115472793579, - 1.362179160118103, - 1.4079285860061646, - 1.4541157484054565, - 1.499480962753296, - 1.5427865982055664, - 1.5828514099121094, - 1.265105962753296, - 1.2335193157196045, - 1.2071279287338257, - 1.1866517066955566, - 1.1726491451263428, - 1.1655020713806152, - 1.1654057502746582, - 1.1723624467849731, - 1.1861827373504639, - 1.2064893245697021, - 1.2327286005020142, - 1.264184594154358, - 1.2999993562698364, - 1.339195966720581, - 1.3807052373886108, - 1.4233949184417725, - 1.4661004543304443, - 1.5076570510864258, - 1.5469311475753784, - 1.5828514099121094, - 1.265105962753296, - 1.2413216829299927, - 1.2225197553634644, - 1.209213137626648, - 1.2017648220062256, - 1.2003778219223022, - 1.205090045928955, - 1.215773105621338, - 1.23213529586792, - 1.2537306547164917, - 1.2799698114395142, - 1.3101372718811035, - 1.3434098958969116, - 1.3788803815841675, - 1.4155808687210083, - 1.4525104761123657, - 1.4886618852615356, - 1.5230488777160645, - 1.5547335147857666, - 1.5828514099121094, - 1.265105962753296, - 1.2519361972808838, - 1.2434592247009277, - 1.2399065494537354, - 1.2413747310638428, - 1.2478238344192505, - 1.259078025817871, - 1.2748303413391113, - 1.2946510314941406, - 1.3179993629455566, - 1.344238519668579, - 1.3726528882980347, - 1.4024672508239746, - 1.4328683614730835, - 1.463027000427246, - 1.4921205043792725, - 1.519355297088623, - 1.5439884662628174, - 1.5653480291366577, - 1.5828514099121094, - 1.265105962753296, - 1.264212727546692, - 1.2676774263381958, - 1.2754056453704834, - 1.2871865034103394, - 1.3026987314224243, - 1.321519136428833, - 1.3431344032287598, - 1.3669549226760864, - 1.3923307657241821, - 1.4185700416564941, - 1.4449567794799805, - 1.470771312713623, - 1.4953094720840454, - 1.51790189743042, - 1.537932276725769, - 1.554854393005371, - 1.568206548690796, - 1.5776244401931763, - 1.5828514099121094, - 1.265105962753296, - 1.2768207788467407, - 1.292549729347229, - 1.311863660812378, - 1.3342357873916626, - 1.3590558767318726, - 1.385646939277649, - 1.4132834672927856, - 1.4412118196487427, - 1.468670129776001, - 1.4949092864990234, - 1.5192137956619263, - 1.540920376777649, - 1.5594371557235718, - 1.5742590427398682, - 1.5849815607070923, - 1.5913124084472656, - 1.593078851699829, - 1.5902326107025146, - 1.5828514099121094, - 1.265105962753296, - 1.2883942127227783, - 1.3153808116912842, - 1.345329761505127, - 1.377423882484436, - 1.4107880592346191, - 1.4445120096206665, - 1.4776757955551147, - 1.5093748569488525, - 1.538744568824768, - 1.56498384475708, - 1.5873768329620361, - 1.605312705039978, - 1.6183022260665894, - 1.6259911060333252, - 1.6281697750091553, - 1.6247785091400146, - 1.6159099340438843, - 1.6018059253692627, - 1.5828514099121094 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.6122671365737915, - 0.6123354434967041, - 0.6107147336006165, - 0.6074491739273071, - 0.6026278734207153, - 0.5963822603225708, - 0.5888828039169312, - 0.5803340077400208, - 0.5709690451622009, - 0.5610434412956238, - 0.5508278608322144, - 0.5406010150909424, - 0.5306418538093567, - 0.5212219953536987, - 0.51259845495224, - 0.5050063729286194, - 0.49865293502807617, - 0.4937114119529724, - 0.49031656980514526, - 0.4885610342025757, - 0.6122671365737915, - 0.6375253200531006, - 0.6604074239730835, - 0.6802891492843628, - 0.696628212928772, - 0.7089789509773254, - 0.7170044183731079, - 0.7204858064651489, - 0.7193280458450317, - 0.7135627269744873, - 0.7033472061157227, - 0.6889600157737732, - 0.6707936525344849, - 0.6493436098098755, - 0.6251951456069946, - 0.5990067720413208, - 0.5714929103851318, - 0.5434040427207947, - 0.5155064463615417, - 0.4885610342025757, - 0.6122671365737915, - 0.6598867177963257, - 0.7045201659202576, - 0.744949996471405, - 0.7800734043121338, - 0.8089323043823242, - 0.8307394981384277, - 0.8449001312255859, - 0.8510279655456543, - 0.8489558696746826, - 0.8387402892112732, - 0.8206599354743958, - 0.7952079772949219, - 0.7630786895751953, - 0.7251484990119934, - 0.6824519038200378, - 0.6361537575721741, - 0.5875167846679688, - 0.5378677845001221, - 0.4885610342025757, - 0.6122670769691467, - 0.6769962906837463, - 0.7382726669311523, - 0.7944247126579285, - 0.8439208269119263, - 0.8854107856750488, - 0.9177629947662354, - 0.9400948286056519, - 0.9517972469329834, - 0.9525508880615234, - 0.9423352479934692, - 0.9214291572570801, - 0.8904026746749878, - 0.8501021862030029, - 0.8016270399093628, - 0.7462993860244751, - 0.6856284737586975, - 0.6212693452835083, - 0.5549774169921875, - 0.4885610342025757, - 0.6122670769691467, - 0.6870000958442688, - 0.7580073475837708, - 0.8233519792556763, - 0.8812516927719116, - 0.9301269054412842, - 0.9686445593833923, - 0.9957540035247803, - 1.0107157230377197, - 1.0131216049194336, - 1.002906084060669, - 0.9803476929664612, - 0.9460618495941162, - 0.9009838104248047, - 0.8463431000709534, - 0.7836301922798157, - 0.7145557403564453, - 0.6410040259361267, - 0.56498122215271, - 0.4885610342025757, - 0.6122670769691467, - 0.6888139843940735, - 0.7615856528282166, - 0.8285971283912659, - 0.8880205154418945, - 0.938234806060791, - 0.9778704047203064, - 1.0058461427688599, - 1.0213987827301025, - 1.024104356765747, - 1.0138887166976929, - 0.9910308122634888, - 0.9561539888381958, - 0.9102096557617188, - 0.8544510006904602, - 0.7903990745544434, - 0.7198008894920349, - 0.6445823311805725, - 0.5667951107025146, - 0.4885610342025757, - 0.6122670769691467, - 0.6822414398193359, - 0.748619794845581, - 0.8095916509628296, - 0.8634938597679138, - 0.9088560342788696, - 0.9444408416748047, - 0.9692776203155518, - 0.9826889038085938, - 0.9843088388442993, - 0.9740933179855347, - 0.9523208737373352, - 0.9195854663848877, - 0.8767800331115723, - 0.8250722289085388, - 0.7658724188804626, - 0.7007954120635986, - 0.631616473197937, - 0.5602225065231323, - 0.4885610342025757, - 0.6122671365737915, - 0.6679946184158325, - 0.7205148935317993, - 0.768395185470581, - 0.8103295564651489, - 0.8451740741729736, - 0.8719783425331116, - 0.890011191368103, - 0.8987807035446167, - 0.898047685623169, - 0.8878320455551147, - 0.8684127330780029, - 0.840319037437439, - 0.8043175935745239, - 0.7613902688026428, - 0.7127081155776978, - 0.6595989465713501, - 0.6035115122795105, - 0.5459757447242737, - 0.4885610342025757, - 0.6122671365737915, - 0.6476174592971802, - 0.6803164482116699, - 0.7094719409942627, - 0.7342888116836548, - 0.7540899515151978, - 0.7683354616165161, - 0.7766366004943848, - 0.7787669897079468, - 0.7746685147285461, - 0.7644529342651367, - 0.7483989596366882, - 0.7269444465637207, - 0.7006746530532837, - 0.6703062057495117, - 0.6366673111915588, - 0.6006757020950317, - 0.5633130669593811, - 0.5255985856056213, - 0.4885610342025757, - 0.6122671365737915, - 0.6233181953430176, - 0.6323806047439575, - 0.6392071843147278, - 0.64361172914505, - 0.6454740762710571, - 0.6447434425354004, - 0.6414397954940796, - 0.6356531381607056, - 0.6275414228439331, - 0.6173258423805237, - 0.605285108089447, - 0.5917475819587708, - 0.577082633972168, - 0.5616902709007263, - 0.5459902882575989, - 0.5304109454154968, - 0.5153772830963135, - 0.501299262046814, - 0.4885610342025757, - 0.6122671365737915, - 0.5977299213409424, - 0.581902027130127, - 0.5652152299880981, - 0.5481246709823608, - 0.5310965776443481, - 0.5145954489707947, - 0.499071329832077, - 0.48494774103164673, - 0.47260984778404236, - 0.4623942971229553, - 0.4545796811580658, - 0.4493791460990906, - 0.44693464040756226, - 0.44731274247169495, - 0.4505032002925873, - 0.4564189612865448, - 0.4648986756801605, - 0.47571098804473877, - 0.48856106400489807, - 0.6122671365737915, - 0.5736255049705505, - 0.5343507528305054, - 0.4955141842365265, - 0.4581751227378845, - 0.42335209250450134, - 0.39199501276016235, - 0.364959180355072, - 0.34298205375671387, - 0.32666313648223877, - 0.31644755601882935, - 0.31261399388313293, - 0.31526699662208557, - 0.32433417439460754, - 0.33956822752952576, - 0.3605536222457886, - 0.38671794533729553, - 0.41734743118286133, - 0.4516066312789917, - 0.48856106400489807, - 0.6122671365737915, - 0.5536171793937683, - 0.494879812002182, - 0.43765729665756226, - 0.3835104703903198, - 0.3339163661003113, - 0.2902278006076813, - 0.25363630056381226, - 0.22514021396636963, - 0.20551681518554688, - 0.19530123472213745, - 0.19477218389511108, - 0.2039441466331482, - 0.22256696224212646, - 0.2501324713230133, - 0.28588899970054626, - 0.3288610577583313, - 0.3778764605522156, - 0.4315982758998871, - 0.48856106400489807, - 0.6122671365737915, - 0.5398730039596558, - 0.4677664041519165, - 0.39791423082351685, - 0.3322218656539917, - 0.27248114347457886, - 0.22032177448272705, - 0.1771664023399353, - 0.14419230818748474, - 0.12229889631271362, - 0.1120833158493042, - 0.1138242781162262, - 0.12747424840927124, - 0.15266093611717224, - 0.1886972188949585, - 0.23460036516189575, - 0.2891179621219635, - 0.35076308250427246, - 0.4178541302680969, - 0.48856106400489807, - 0.6122671365737915, - 0.5338824391365051, - 0.45594874024391174, - 0.3805917501449585, - 0.30986708402633667, - 0.24570399522781372, - 0.1898525357246399, - 0.14383620023727417, - 0.10891032218933105, - 0.08602750301361084, - 0.07581192255020142, - 0.07854229211807251, - 0.09414404630661011, - 0.12219169735908508, - 0.16192007064819336, - 0.2122456133365631, - 0.27179551124572754, - 0.3389453887939453, - 0.4118635654449463, - 0.48856106400489807, - 0.6122671365737915, - 0.53629469871521, - 0.4607073962688446, - 0.38756704330444336, - 0.3188687562942505, - 0.2564864456653595, - 0.20212164521217346, - 0.15725740790367126, - 0.12311741709709167, - 0.10063305497169495, - 0.09041747450828552, - 0.09274938702583313, - 0.1075652539730072, - 0.13446083664894104, - 0.17270252108573914, - 0.22124728560447693, - 0.2787708044052124, - 0.3437040448188782, - 0.4142758250236511, - 0.48856106400489807, - 0.6122671365737915, - 0.5468482971191406, - 0.48152676224708557, - 0.4180842638015747, - 0.3582513928413391, - 0.30366021394729614, - 0.2557998299598694, - 0.21597576141357422, - 0.18527427315711975, - 0.16453292965888977, - 0.15431734919548035, - 0.1549062430858612, - 0.16628360748291016, - 0.18813899159431458, - 0.21987631916999817, - 0.26062992215156555, - 0.30928802490234375, - 0.36452341079711914, - 0.4248294234275818, - 0.48856106400489807, - 0.6122671365737915, - 0.5643996596336365, - 0.516150712966919, - 0.46883636713027954, - 0.4237472414970398, - 0.3821132779121399, - 0.34507012367248535, - 0.3136281967163086, - 0.2886451184749603, - 0.2708025574684143, - 0.2605869770050049, - 0.2582770884037018, - 0.26393601298332214, - 0.27740928530693054, - 0.2983294129371643, - 0.32612574100494385, - 0.3600401282310486, - 0.3991473615169525, - 0.44238078594207764, - 0.48856106400489807, - 0.6122671365737915, - 0.5870468020439148, - 0.5608271956443787, - 0.5343235731124878, - 0.5082588791847229, - 0.48334401845932007, - 0.46025869250297546, - 0.4396325349807739, - 0.42202824354171753, - 0.40792596340179443, - 0.397710382938385, - 0.391660213470459, - 0.38994038105010986, - 0.39259788393974304, - 0.3995601534843445, - 0.41063737869262695, - 0.42552733421325684, - 0.4438238739967346, - 0.46502789855003357, - 0.48856106400489807, - 0.6122671365737915, - 0.6123355031013489, - 0.6107147932052612, - 0.6074492335319519, - 0.6026279330253601, - 0.5963823199272156, - 0.5888828635215759, - 0.5803340673446655, - 0.5709691643714905, - 0.5610435009002686, - 0.5508279800415039, - 0.5406010746955872, - 0.5306419134140015, - 0.5212220549583435, - 0.5125985145568848, - 0.5050064325332642, - 0.49865299463272095, - 0.4937114417552948, - 0.49031659960746765, - 0.4885610342025757 - ], - "y": [ - 0.6663073897361755, - 0.7387020587921143, - 0.806954562664032, - 0.8692030906677246, - 0.9237496852874756, - 0.9691063165664673, - 1.0040360689163208, - 1.0275858640670776, - 1.0391135215759277, - 1.0383044481277466, - 1.0251808166503906, - 1.0001004934310913, - 0.9637477397918701, - 0.9171141386032104, - 0.8614716529846191, - 0.7983381152153015, - 0.7294356226921082, - 0.6566436886787415, - 0.5819478631019592, - 0.5073856711387634, - 0.6663073897361755, - 0.7305134534835815, - 0.7908006906509399, - 0.8455245494842529, - 0.8931924104690552, - 0.9325039386749268, - 0.9623867869377136, - 0.9820259213447571, - 0.9908856153488159, - 0.9887241125106812, - 0.9756004810333252, - 0.9518725872039795, - 0.9181877970695496, - 0.875464916229248, - 0.8248691558837891, - 0.7677809000015259, - 0.7057570815086365, - 0.6404897570610046, - 0.5737592577934265, - 0.5073856711387634, - 0.6663073897361755, - 0.7152496576309204, - 0.7606894969940186, - 0.8013872504234314, - 0.8362329602241516, - 0.8642760515213013, - 0.884751558303833, - 0.8971010446548462, - 0.9009876251220703, - 0.8963051438331604, - 0.8831815123558044, - 0.8619745969772339, - 0.8332629203796387, - 0.7978296875953674, - 0.7566413879394531, - 0.7108214497566223, - 0.6616197824478149, - 0.6103785634040833, - 0.5584954619407654, - 0.5073856711387634, - 0.6663073897361755, - 0.6945648193359375, - 0.719883918762207, - 0.7415741682052612, - 0.75904381275177, - 0.7718163728713989, - 0.779543399810791, - 0.7820142507553101, - 0.7791613936424255, - 0.7710626721382141, - 0.7579389810562134, - 0.7401484251022339, - 0.7181761264801025, - 0.6926214694976807, - 0.664181649684906, - 0.633632242679596, - 0.601806640625, - 0.5695730447769165, - 0.5378105640411377, - 0.5073856711387634, - 0.6663073897361755, - 0.6707003116607666, - 0.6728059649467468, - 0.672566831111908, - 0.6699895262718201, - 0.6651442646980286, - 0.6581632494926453, - 0.6492368578910828, - 0.6386086940765381, - 0.6265685558319092, - 0.6134448647499084, - 0.5995957255363464, - 0.5853987336158752, - 0.5712413191795349, - 0.5575095415115356, - 0.544577956199646, - 0.5327993631362915, - 0.5224950909614563, - 0.5139461159706116, - 0.5073856711387634, - 0.6663073897361755, - 0.6462423801422119, - 0.6245572566986084, - 0.6018434166908264, - 0.5787205696105957, - 0.5558193325996399, - 0.5337644219398499, - 0.5131574869155884, - 0.4945605993270874, - 0.4784809947013855, - 0.46535736322402954, - 0.45554763078689575, - 0.44931936264038086, - 0.4468424916267395, - 0.4481845796108246, - 0.45330899953842163, - 0.46207594871520996, - 0.4742463529109955, - 0.4894881844520569, - 0.5073856711387634, - 0.6663073897361755, - 0.623841404914856, - 0.5803662538528442, - 0.5370678305625916, - 0.49512729048728943, - 0.45568862557411194, - 0.41982758045196533, - 0.3885223865509033, - 0.36262694001197815, - 0.34284764528274536, - 0.3297240138053894, - 0.3236139714717865, - 0.3246842622756958, - 0.332905650138855, - 0.34805387258529663, - 0.36971575021743774, - 0.3973003625869751, - 0.43005532026290894, - 0.46708714962005615, - 0.5073856711387634, - 0.6663073897361755, - 0.6059247851371765, - 0.5450217127799988, - 0.4852595329284668, - 0.4282683730125427, - 0.3756028413772583, - 0.3286994993686676, - 0.2888377010822296, - 0.257104754447937, - 0.23436641693115234, - 0.2212427854537964, - 0.21809178590774536, - 0.2249995768070221, - 0.24177756905555725, - 0.267968088388443, - 0.30285680294036865, - 0.34549206495285034, - 0.39471083879470825, - 0.4491705298423767, - 0.5073856711387634, - 0.6663073897361755, - 0.5944340825080872, - 0.5223538279533386, - 0.45203274488449097, - 0.3853890299797058, - 0.3242405652999878, - 0.27025532722473145, - 0.2249058187007904, - 0.18942910432815552, - 0.1647929549217224, - 0.15166932344436646, - 0.15041613578796387, - 0.16106769442558289, - 0.1833333671092987, - 0.21660581231117249, - 0.25997745990753174, - 0.3122652769088745, - 0.3720429241657257, - 0.43767988681793213, - 0.5073856711387634, - 0.6663073897361755, - 0.5906145572662354, - 0.5148189663887024, - 0.44098812341690063, - 0.3711358606815338, - 0.3071676790714264, - 0.250828355550766, - 0.20365473628044128, - 0.1669335961341858, - 0.14166659116744995, - 0.128542959690094, - 0.12792062759399414, - 0.13981661200523376, - 0.16390639543533325, - 0.1995328962802887, - 0.24572426080703735, - 0.3012206554412842, - 0.36450809240341187, - 0.4338603615760803, - 0.5073856711387634, - 0.6663073897361755, - 0.5948801040649414, - 0.5232337117195129, - 0.45332247018814087, - 0.3870534598827362, - 0.32623425126075745, - 0.2725238800048828, - 0.22738736867904663, - 0.19205600023269653, - 0.16749349236488342, - 0.15436986088752747, - 0.15304303169250488, - 0.1635492444038391, - 0.18560191988945007, - 0.21859946846961975, - 0.26164186000823975, - 0.3135550022125244, - 0.3729228079319, - 0.4381259083747864, - 0.5073856711387634, - 0.6663073897361755, - 0.6067684888839722, - 0.5466861128807068, - 0.4876992702484131, - 0.4314168393611908, - 0.3793742060661316, - 0.332990825176239, - 0.29353195428848267, - 0.26207393407821655, - 0.23947489261627197, - 0.22635126113891602, - 0.2230609655380249, - 0.22969383001327515, - 0.24606886506080627, - 0.2717394232749939, - 0.3060052692890167, - 0.34793180227279663, - 0.39637523889541626, - 0.45001423358917236, - 0.5073856711387634, - 0.6663073897361755, - 0.6249913573265076, - 0.5826348066329956, - 0.5403931140899658, - 0.49941858649253845, - 0.46082887053489685, - 0.4256765842437744, - 0.39492058753967285, - 0.3693997859954834, - 0.3498104512691498, - 0.33668678998947144, - 0.33038681745529175, - 0.33108246326446533, - 0.33875465393066406, - 0.35319411754608154, - 0.37400704622268677, - 0.40062564611434937, - 0.4323239028453827, - 0.46823710203170776, - 0.5073856711387634, - 0.6663073897361755, - 0.6475740075111389, - 0.6271841526031494, - 0.6056939959526062, - 0.5836897492408752, - 0.5617715716362, - 0.540537416934967, - 0.5205664038658142, - 0.5024033784866333, - 0.4865437150001526, - 0.47342008352279663, - 0.46339040994644165, - 0.4567282795906067, - 0.4536154568195343, - 0.45413684844970703, - 0.45827817916870117, - 0.46592652797698975, - 0.4768732786178589, - 0.4908198118209839, - 0.5073856711387634, - 0.6663073897361755, - 0.6720693111419678, - 0.6755065321922302, - 0.676525354385376, - 0.6750980019569397, - 0.6712633371353149, - 0.6651260256767273, - 0.656853437423706, - 0.6466712951660156, - 0.6348572373390198, - 0.6217336058616638, - 0.607658326625824, - 0.5930153131484985, - 0.5782040953636169, - 0.563628613948822, - 0.5496864318847656, - 0.5367578864097595, - 0.5251956582069397, - 0.515315055847168, - 0.5073856711387634, - 0.6663073897361755, - 0.6958227157592773, - 0.7223654985427856, - 0.7452116012573242, - 0.7637379765510559, - 0.7774391770362854, - 0.7859415411949158, - 0.7890130877494812, - 0.7865700721740723, - 0.7786791324615479, - 0.7655555009841919, - 0.7475571036338806, - 0.7251749634742737, - 0.6990196108818054, - 0.6698044538497925, - 0.6383264064788818, - 0.6054441332817078, - 0.5720545649528503, - 0.5390684604644775, - 0.5073856711387634, - 0.6663073897361755, - 0.7162603139877319, - 0.7626831531524658, - 0.804309606552124, - 0.8400043249130249, - 0.8687934875488281, - 0.8898918628692627, - 0.9027239680290222, - 0.9069397449493408, - 0.9024242162704468, - 0.8893005847930908, - 0.867926836013794, - 0.8388858437538147, - 0.8029699325561523, - 0.7611587643623352, - 0.7145927548408508, - 0.6645421385765076, - 0.6123722195625305, - 0.5595060586929321, - 0.5073856711387634, - 0.6663073897361755, - 0.7311672568321228, - 0.7920904159545898, - 0.8474150896072388, - 0.8956321477890015, - 0.9354262948036194, - 0.9657120704650879, - 0.9856635332107544, - 0.9947361946105957, - 0.9926826357841492, - 0.9795590043067932, - 0.955723226070404, - 0.9218254089355469, - 0.8787901997566223, - 0.8277916312217712, - 0.7702206373214722, - 0.7076476216316223, - 0.6417795419692993, - 0.574413001537323, - 0.5073856711387634, - 0.6663073897361755, - 0.7389281988143921, - 0.8074005842208862, - 0.8698568940162659, - 0.9245933890342712, - 0.9701169729232788, - 1.0051860809326172, - 1.028843879699707, - 1.0404452085494995, - 1.0396734476089478, - 1.0265498161315918, - 1.001432180404663, - 0.9650057554244995, - 0.9182641506195068, - 0.8624823093414307, - 0.7991818785667419, - 0.7300894260406494, - 0.6570897102355957, - 0.5821739435195923, - 0.5073856711387634, - 0.6663073897361755, - 0.7387020587921143, - 0.806954562664032, - 0.8692030906677246, - 0.9237496256828308, - 0.9691063165664673, - 1.0040360689163208, - 1.0275858640670776, - 1.0391135215759277, - 1.0383044481277466, - 1.0251808166503906, - 1.0001004934310913, - 0.9637477397918701, - 0.9171141386032104, - 0.8614716529846191, - 0.7983381152153015, - 0.7294356226921082, - 0.6566436886787415, - 0.5819478631019592, - 0.5073856711387634 - ], - "z": [ - 1.8580670356750488, - 1.8188185691833496, - 1.7763041257858276, - 1.731683373451233, - 1.686173439025879, - 1.641015648841858, - 1.5974419116973877, - 1.556640625, - 1.51972496509552, - 1.487701654434204, - 1.46144437789917, - 1.4416693449020386, - 1.4289159774780273, - 1.4235320091247559, - 1.4256645441055298, - 1.4352551698684692, - 1.4520424604415894, - 1.4755682945251465, - 1.5051912069320679, - 1.5401030778884888, - 1.8580670356750488, - 1.8131110668182373, - 1.7650448083877563, - 1.7151793241500854, - 1.664874792098999, - 1.6155034303665161, - 1.5684120655059814, - 1.5248849391937256, - 1.486109733581543, - 1.453143835067749, - 1.4268865585327148, - 1.4080541133880615, - 1.397160291671753, - 1.3945021629333496, - 1.400152325630188, - 1.4139565229415894, - 1.4355382919311523, - 1.4643089771270752, - 1.4994837045669556, - 1.5401030778884888, - 1.8580670356750488, - 1.8120402097702026, - 1.762932300567627, - 1.712082862854004, - 1.6608787775039673, - 1.6107169389724731, - 1.5629655122756958, - 1.5189270973205566, - 1.4798028469085693, - 1.446660041809082, - 1.4204028844833374, - 1.4017473459243774, - 1.391202449798584, - 1.3890557289123535, - 1.3953657150268555, - 1.4099605083465576, - 1.4324418306350708, - 1.4621964693069458, - 1.498412847518921, - 1.5401030778884888, - 1.8580670356750488, - 1.815722107887268, - 1.770195722579956, - 1.7227295637130737, - 1.6746184825897217, - 1.627174735069275, - 1.5816925764083862, - 1.539412498474121, - 1.5014879703521729, - 1.468953251838684, - 1.4426960945129395, - 1.4234323501586914, - 1.4116878509521484, - 1.407782793045044, - 1.4118235111236572, - 1.423700213432312, - 1.4430885314941406, - 1.469459891319275, - 1.5020947456359863, - 1.5401030778884888, - 1.8580670356750488, - 1.8237577676773071, - 1.7860478162765503, - 1.7459657192230225, - 1.7046048641204834, - 1.6630934476852417, - 1.6225638389587402, - 1.5841214656829834, - 1.5488150119781494, - 1.5176074504852295, - 1.4913501739501953, - 1.470759391784668, - 1.4563968181610107, - 1.4486539363861084, - 1.4477423429489136, - 1.4536867141723633, - 1.466324806213379, - 1.4853119850158691, - 1.5101304054260254, - 1.5401030778884888, - 1.8580670356750488, - 1.8352763652801514, - 1.8087708950042725, - 1.7792733907699585, - 1.7475886344909668, - 1.714580774307251, - 1.6811503171920776, - 1.6482089757919312, - 1.6166553497314453, - 1.5873502492904663, - 1.5610930919647217, - 1.5385998487472534, - 1.5204843282699585, - 1.5072404146194458, - 1.4992296695709229, - 1.4966703653335571, - 1.499632477760315, - 1.5080350637435913, - 1.5216491222381592, - 1.5401030778884888, - 1.8580670356750488, - 1.849029779434204, - 1.835902452468872, - 1.8190431594848633, - 1.798911690711975, - 1.776057243347168, - 1.751103162765503, - 1.724730134010315, - 1.697657585144043, - 1.670624017715454, - 1.64436674118042, - 1.619602084159851, - 1.5970054864883423, - 1.577193260192871, - 1.5607060194015503, - 1.5479934215545654, - 1.5394022464752197, - 1.5351667404174805, - 1.5354024171829224, - 1.5401029586791992, - 1.8580670356750488, - 1.863527536392212, - 1.8645024299621582, - 1.8609652519226074, - 1.8530124425888062, - 1.8408608436584473, - 1.8248419761657715, - 1.8053927421569824, - 1.7830437421798706, - 1.7584046125411987, - 1.7321473360061646, - 1.7049882411956787, - 1.6776680946350098, - 1.6509320735931396, - 1.6255096197128296, - 1.6020941734313965, - 1.5813243389129639, - 1.5637667179107666, - 1.5499001741409302, - 1.5401029586791992, - 1.8580669164657593, - 1.8771984577178955, - 1.8914716243743896, - 1.9004968404769897, - 1.9040281772613525, - 1.901969075202942, - 1.8943759202957153, - 1.881455659866333, - 1.8635609149932861, - 1.841179609298706, - 1.8149223327636719, - 1.7855054140090942, - 1.7537310123443604, - 1.720466136932373, - 1.6866179704666138, - 1.6531099081039429, - 1.6208559274673462, - 1.5907357931137085, - 1.5635712146759033, - 1.5401029586791992, - 1.8580669164657593, - 1.8885613679885864, - 1.91388738155365, - 1.9333540201187134, - 1.9464305639266968, - 1.952760100364685, - 1.9521700143814087, - 1.9446765184402466, - 1.9304838180541992, - 1.909979224205017, - 1.883721947669983, - 1.8524283170700073, - 1.816951870918274, - 1.7782602310180664, - 1.737408995628357, - 1.695512294769287, - 1.6537131071090698, - 1.6131515502929688, - 1.5749340057373047, - 1.5401029586791992, - 1.8580669164657593, - 1.8963847160339355, - 1.9293205738067627, - 1.9559762477874756, - 1.975624680519104, - 1.987729787826538, - 1.9919613599777222, - 1.9882041215896606, - 1.976560354232788, - 1.9573478698730469, - 1.9310905933380127, - 1.8985048532485962, - 1.860479474067688, - 1.8180515766143799, - 1.77237868309021, - 1.7247064113616943, - 1.676335334777832, - 1.628584861755371, - 1.5827573537826538, - 1.5401029586791992, - 1.8580669164657593, - 1.8998208045959473, - 1.9360990524291992, - 1.965912103652954, - 1.9884469509124756, - 2.0030884742736816, - 2.0094380378723145, - 2.00732159614563, - 1.9967974424362183, - 1.9781523942947388, - 1.9518951177597046, - 1.9187418222427368, - 1.8795969486236572, - 1.8355281352996826, - 1.787737488746643, - 1.737528681755066, - 1.6862711906433105, - 1.635363221168518, - 1.5861934423446655, - 1.5401029586791992, - 1.8580669164657593, - 1.8984971046447754, - 1.933487892150879, - 1.9620847702026367, - 1.9835076332092285, - 1.997172236442566, - 2.0027058124542236, - 1.9999574422836304, - 1.989001989364624, - 1.9701383113861084, - 1.9438810348510742, - 1.9109464883804321, - 1.8722327947616577, - 1.8287960290908813, - 1.7818212509155273, - 1.7325894832611084, - 1.6824438571929932, - 1.6327521800994873, - 1.5848698616027832, - 1.5401029586791992, - 1.8580669164657593, - 1.8925573825836182, - 1.9217703342437744, - 1.9449089765548706, - 1.9613423347473145, - 1.9706218242645264, - 1.9724946022033691, - 1.966909408569336, - 1.9540187120437622, - 1.9341740608215332, - 1.907916784286499, - 1.8759632110595703, - 1.8391847610473633, - 1.7985848188400269, - 1.7552707195281982, - 1.7104240655899048, - 1.665268063545227, - 1.6210345029830933, - 1.5789300203323364, - 1.5401029586791992, - 1.8580669164657593, - 1.8826450109481812, - 1.9022160768508911, - 1.9162461757659912, - 1.924352765083313, - 1.9263145923614502, - 1.9220781326293945, - 1.9117591381072998, - 1.8956388235092163, - 1.8741570711135864, - 1.8478997945785522, - 1.8175833225250244, - 1.7840343713760376, - 1.7481683492660522, - 1.710963487625122, - 1.6734344959259033, - 1.6366052627563477, - 1.60148024559021, - 1.5690176486968994, - 1.5401029586791992, - 1.8580670356750488, - 1.869834303855896, - 1.8769440650939941, - 1.8792022466659546, - 1.8765473365783691, - 1.8690518140792847, - 1.8569198846817017, - 1.8404827117919922, - 1.8201885223388672, - 1.79659104347229, - 1.7703337669372559, - 1.7421330213546753, - 1.7127580642700195, - 1.6830101013183594, - 1.653700590133667, - 1.625629186630249, - 1.599561333656311, - 1.576208233833313, - 1.5562069416046143, - 1.5401029586791992, - 1.8580670356750488, - 1.8555134534835815, - 1.8486928939819336, - 1.8377915620803833, - 1.8231065273284912, - 1.8050386905670166, - 1.7840805053710938, - 1.7608040571212769, - 1.7358438968658447, - 1.7098811864852905, - 1.6836239099502563, - 1.6577883958816528, - 1.6330794095993042, - 1.6101707220077515, - 1.589687466621399, - 1.572188377380371, - 1.5581505298614502, - 1.547957181930542, - 1.5418860912322998, - 1.5401029586791992, - 1.8580670356750488, - 1.8412343263626099, - 1.8205242156982422, - 1.7965015172958374, - 1.7698216438293457, - 1.7412121295928955, - 1.7114535570144653, - 1.6813576221466064, - 1.6517452001571655, - 1.6234241724014282, - 1.597166895866394, - 1.5736896991729736, - 1.5536329746246338, - 1.537543773651123, - 1.5258610248565674, - 1.518903374671936, - 1.5168606042861938, - 1.519788384437561, - 1.5276069641113281, - 1.5401029586791992, - 1.8580670356750488, - 1.82854425907135, - 1.7954902648925781, - 1.7598066329956055, - 1.7224665880203247, - 1.6844888925552368, - 1.646909236907959, - 1.6107527017593384, - 1.5770057439804077, - 1.5465888977050781, - 1.520331621170044, - 1.4989502429962158, - 1.4830280542373657, - 1.4729993343353271, - 1.4691376686096191, - 1.4715484380722046, - 1.480165719985962, - 1.4947545528411865, - 1.5149168968200684, - 1.5401030778884888, - 1.8580670356750488, - 1.8188185691833496, - 1.7763041257858276, - 1.731683373451233, - 1.686173439025879, - 1.641015648841858, - 1.5974419116973877, - 1.556640625, - 1.5197248458862305, - 1.487701654434204, - 1.46144437789917, - 1.4416693449020386, - 1.4289159774780273, - 1.4235320091247559, - 1.4256644248962402, - 1.4352551698684692, - 1.4520424604415894, - 1.4755682945251465, - 1.5051912069320679, - 1.5401030778884888 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.7194039225578308, - 0.8046485781669617, - 0.8858800530433655, - 0.9608824253082275, - 1.0276100635528564, - 1.084242582321167, - 1.1292352676391602, - 1.161360740661621, - 1.1797430515289307, - 1.18388032913208, - 1.1736600399017334, - 1.1493606567382812, - 1.1116453409194946, - 1.0615427494049072, - 1.0004194974899292, - 0.9299428462982178, - 0.8520352244377136, - 0.7688218355178833, - 0.6825725436210632, - 0.5956398248672485, - 0.7194039225578308, - 0.7946686148643494, - 0.8661923408508301, - 0.9320240020751953, - 0.9903680682182312, - 1.0396329164505005, - 1.078474760055542, - 1.1058341264724731, - 1.120964765548706, - 1.1234537363052368, - 1.1132333278656006, - 1.0905823707580566, - 1.0561187267303467, - 1.010782241821289, - 0.9558098316192627, - 0.8927008509635925, - 0.8231768012046814, - 0.7491341829299927, - 0.6725925803184509, - 0.5956398844718933, - 0.7194039225578308, - 0.7764410972595215, - 0.8302344679832458, - 0.8793166875839233, - 0.9223489761352539, - 0.9581574201583862, - 0.9857653379440308, - 1.0044195652008057, - 1.0136114358901978, - 1.0130900144577026, - 1.0028696060180664, - 0.9832291603088379, - 0.9547041654586792, - 0.9180728197097778, - 0.8743343353271484, - 0.8246817588806152, - 0.7704694867134094, - 0.7131763100624084, - 0.6543650031089783, - 0.5956398844718933, - 0.7194039225578308, - 0.7519412636756897, - 0.781903088092804, - 0.8084720969200134, - 0.8309236168861389, - 0.8486451506614685, - 0.8611533641815186, - 0.8681070804595947, - 0.8693164587020874, - 0.8647487163543701, - 0.8545283675193787, - 0.8389341831207275, - 0.8183916211128235, - 0.7934608459472656, - 0.7648220658302307, - 0.7332563996315002, - 0.6996248960494995, - 0.6648448705673218, - 0.6298651695251465, - 0.5956398844718933, - 0.7194039225578308, - 0.7238240242004395, - 0.7264355421066284, - 0.7271673083305359, - 0.7259993553161621, - 0.7229634523391724, - 0.7181425094604492, - 0.7116680145263672, - 0.703716516494751, - 0.694504976272583, - 0.6842846274375916, - 0.6733342409133911, - 0.661952555179596, - 0.6504499912261963, - 0.6391403675079346, - 0.6283321380615234, - 0.618320107460022, - 0.609377384185791, - 0.6017479300498962, - 0.5956398844718933, - 0.7194039225578308, - 0.6951363682746887, - 0.6698427200317383, - 0.6442130208015442, - 0.618946373462677, - 0.5947319865226746, - 0.5722302794456482, - 0.5520551204681396, - 0.5347568392753601, - 0.5208072662353516, - 0.5105869770050049, - 0.5043745636940002, - 0.5023397207260132, - 0.5045377612113953, - 0.510908842086792, - 0.5212791562080383, - 0.5353658199310303, - 0.5527845621109009, - 0.5730602741241455, - 0.5956398844718933, - 0.7194039225578308, - 0.668986976146698, - 0.6182572841644287, - 0.5685986280441284, - 0.5213655233383179, - 0.47784650325775146, - 0.43922850489616394, - 0.40656498074531555, - 0.38074690103530884, - 0.3624785542488098, - 0.35225820541381836, - 0.350364625453949, - 0.3568495213985443, - 0.3715359568595886, - 0.3940233588218689, - 0.4236983060836792, - 0.4597513973712921, - 0.5011991262435913, - 0.5469109416007996, - 0.5956398844718933, - 0.7194039225578308, - 0.6482096314430237, - 0.5772693157196045, - 0.5085180997848511, - 0.4438312351703644, - 0.3849734365940094, - 0.3335499167442322, - 0.2909635603427887, - 0.25837594270706177, - 0.23667603731155396, - 0.2264556884765625, - 0.2279936671257019, - 0.24124810099601746, - 0.26585739850997925, - 0.30115026235580444, - 0.3461640179157257, - 0.3996708393096924, - 0.4602110981941223, - 0.5261335372924805, - 0.5956398844718933, - 0.7194039821624756, - 0.6350557804107666, - 0.5513204336166382, - 0.4704820513725281, - 0.39474552869796753, - 0.3261769711971283, - 0.26664653420448303, - 0.21777820587158203, - 0.18090492486953735, - 0.1570325493812561, - 0.14681220054626465, - 0.1505226492881775, - 0.1680627465248108, - 0.19895398616790771, - 0.24235379695892334, - 0.29707831144332886, - 0.3616348206996918, - 0.4342622756958008, - 0.5129797458648682, - 0.5956398844718933, - 0.7194039821624756, - 0.630950927734375, - 0.5432227253913879, - 0.458612322807312, - 0.37942761182785034, - 0.3078286349773407, - 0.24576833844184875, - 0.19493955373764038, - 0.1567288637161255, - 0.13217860460281372, - 0.12195825576782227, - 0.12634658813476562, - 0.14522409439086914, - 0.17807579040527344, - 0.22400546073913574, - 0.2817603647708893, - 0.3497650921344757, - 0.42616456747055054, - 0.5088748931884766, - 0.5956398844718933, - 0.7194039821624756, - 0.6363399028778076, - 0.5538536310195923, - 0.4741951823234558, - 0.3995373845100403, - 0.33191677927970886, - 0.27317777276039124, - 0.22492262721061707, - 0.18846771121025085, - 0.16480746865272522, - 0.15458714962005615, - 0.158085435628891, - 0.17520716786384583, - 0.20548522472381592, - 0.2480936050415039, - 0.3018701374530792, - 0.3653479516506195, - 0.4367954730987549, - 0.5142638087272644, - 0.5956398844718933, - 0.7194039225578308, - 0.6506386399269104, - 0.5820611119270325, - 0.5155419707298279, - 0.4528956413269043, - 0.39583104848861694, - 0.3459046185016632, - 0.30447834730148315, - 0.2726821303367615, - 0.25138339400291443, - 0.24116304516792297, - 0.2422998547554016, - 0.2547628879547119, - 0.2782120704650879, - 0.3120079040527344, - 0.3552284240722656, - 0.40669476985931396, - 0.46500295400619507, - 0.528562605381012, - 0.5956398844718933, - 0.7194039225578308, - 0.6722977161407471, - 0.6247885227203369, - 0.5781721472740173, - 0.5337201952934265, - 0.4926453232765198, - 0.4560678005218506, - 0.424985408782959, - 0.4002459943294525, - 0.3825244605541229, - 0.37230411171913147, - 0.36986371874809265, - 0.37526994943618774, - 0.38837525248527527, - 0.4088221788406372, - 0.43605297803878784, - 0.46932488679885864, - 0.5077303051948547, - 0.5502216815948486, - 0.5956398844718933, - 0.7194039225578308, - 0.6989700794219971, - 0.677405595779419, - 0.6552987694740295, - 0.6332526206970215, - 0.6118683815002441, - 0.5917295217514038, - 0.5733852982521057, - 0.5573360919952393, - 0.5440196990966797, - 0.5337993502616882, - 0.5269538164138794, - 0.5236698389053345, - 0.5240370035171509, - 0.5280452966690063, - 0.5355854034423828, - 0.5464515686035156, - 0.5603474378585815, - 0.5768939852714539, - 0.5956398844718933, - 0.7194039225578308, - 0.7277652621269226, - 0.7342104911804199, - 0.7385638952255249, - 0.7407066822052002, - 0.7405803799629211, - 0.7381885051727295, - 0.7335962057113647, - 0.7269288301467896, - 0.7183681726455688, - 0.7081478238105774, - 0.6965465545654297, - 0.6838807463645935, - 0.6704959869384766, - 0.6567572951316833, - 0.6430394649505615, - 0.6297166347503662, - 0.6171523332595825, - 0.6056891679763794, - 0.5956398844718933, - 0.7194039225578308, - 0.7555628418922424, - 0.7890474796295166, - 0.8189444541931152, - 0.8444382548332214, - 0.864833414554596, - 0.8795737028121948, - 0.8882569670677185, - 0.8906463980674744, - 0.8866767883300781, - 0.8764564394950867, - 0.8602641224861145, - 0.8385415077209473, - 0.8118811845779419, - 0.7810103297233582, - 0.7467710375785828, - 0.7100972533226013, - 0.6719893217086792, - 0.633486807346344, - 0.5956398844718933, - 0.7194039225578308, - 0.7793506979942322, - 0.8359742760658264, - 0.8877301812171936, - 0.9332065582275391, - 0.9711630344390869, - 1.0005640983581543, - 1.0206079483032227, - 1.0307477712631226, - 1.0307068824768066, - 1.02048659324646, - 1.0003654956817627, - 0.9708925485610962, - 0.9328715801239014, - 0.8873399496078491, - 0.8355393409729004, - 0.7788829207420349, - 0.718916118144989, - 0.657274603843689, - 0.5956398844718933, - 0.7194039225578308, - 0.7965508699417114, - 0.8699054718017578, - 0.9374668598175049, - 0.9973920583724976, - 1.0480464696884155, - 1.0880483388900757, - 1.1163066625595093, - 1.1320505142211914, - 1.1348503828048706, - 1.1246299743652344, - 1.1016682386398315, - 1.0665911436080933, - 1.0203558206558228, - 0.9642233848571777, - 0.8997248411178589, - 0.8286195993423462, - 0.7528473138809204, - 0.6744747757911682, - 0.5956398844718933, - 0.7194039225578308, - 0.8052995204925537, - 0.8871641755104065, - 0.9627647399902344, - 1.0300390720367432, - 1.0871522426605225, - 1.132546067237854, - 1.164982557296753, - 1.1835768222808838, - 1.187821626663208, - 1.1776013374328613, - 1.1531944274902344, - 1.115267038345337, - 1.064853549003601, - 1.0033291578292847, - 0.9323719143867493, - 0.8539175391197205, - 0.7701059579849243, - 0.6832234859466553, - 0.5956398248672485, - 0.7194039225578308, - 0.8046485781669617, - 0.8858800530433655, - 0.9608824253082275, - 1.0276100635528564, - 1.084242582321167, - 1.1292352676391602, - 1.161360740661621, - 1.1797430515289307, - 1.18388032913208, - 1.1736600399017334, - 1.1493606567382812, - 1.1116453409194946, - 1.0615427494049072, - 1.0004194974899292, - 0.9299428462982178, - 0.8520352244377136, - 0.7688218355178833, - 0.6825724840164185, - 0.5956398248672485 - ], - "y": [ - 0.8039429187774658, - 0.773959755897522, - 0.7426259517669678, - 0.7107962369918823, - 0.679338812828064, - 0.6491117477416992, - 0.6209395527839661, - 0.5955907106399536, - 0.5737566947937012, - 0.5560330748558044, - 0.5429033041000366, - 0.5347254872322083, - 0.5317226648330688, - 0.5339769124984741, - 0.5414265394210815, - 0.5538684129714966, - 0.5709632635116577, - 0.5922446250915527, - 0.6171320676803589, - 0.6449466943740845, - 0.8039429187774658, - 0.7498779892921448, - 0.6951192617416382, - 0.6411604881286621, - 0.5894734859466553, - 0.5414682030677795, - 0.4984539747238159, - 0.46160420775413513, - 0.43192407488822937, - 0.410223126411438, - 0.3970933258533478, - 0.3928928077220917, - 0.39773616194725037, - 0.4114912748336792, - 0.43378299474716187, - 0.46400317549705505, - 0.5013275146484375, - 0.5447379350662231, - 0.5930503010749817, - 0.6449466943740845, - 0.8039429187774658, - 0.7315374612808228, - 0.6589385271072388, - 0.5881264805793762, - 0.5210328102111816, - 0.4594877064228058, - 0.40516990423202515, - 0.35956108570098877, - 0.323905348777771, - 0.29917535185813904, - 0.28604555130004883, - 0.2848740816116333, - 0.295693039894104, - 0.31820717453956604, - 0.3518024682998657, - 0.39556244015693665, - 0.4482935070991516, - 0.5085572004318237, - 0.5747097730636597, - 0.6449467539787292, - 0.8039429187774658, - 0.7209257483482361, - 0.6380045413970947, - 0.5574411749839783, - 0.481433242559433, - 0.4120540916919708, - 0.3511961102485657, - 0.30051931738853455, - 0.26140615344047546, - 0.23492351174354553, - 0.22179371118545532, - 0.22237491607666016, - 0.23665127158164978, - 0.2642333507537842, - 0.3043688237667084, - 0.355962872505188, - 0.41760820150375366, - 0.4876231551170349, - 0.5640980005264282, - 0.6449467539787292, - 0.8039429187774658, - 0.7191926836967468, - 0.6345857381820679, - 0.5524298548698425, - 0.4749660789966583, - 0.4043075442314148, - 0.34238144755363464, - 0.29087698459625244, - 0.2511991560459137, - 0.22443032264709473, - 0.21130049228668213, - 0.2121679186820984, - 0.22700893878936768, - 0.25541871786117554, - 0.29662227630615234, - 0.3494957387447357, - 0.4125969111919403, - 0.48420435190200806, - 0.5623649954795837, - 0.6449467539787292, - 0.8039429187774658, - 0.726526141166687, - 0.649052619934082, - 0.5736355781555176, - 0.5023322105407715, - 0.4370875060558319, - 0.37968114018440247, - 0.3316790759563446, - 0.29439055919647217, - 0.26883289217948914, - 0.2557030916213989, - 0.2553592920303345, - 0.26781103014945984, - 0.29271844029426575, - 0.32940229773521423, - 0.3768618106842041, - 0.4338025748729706, - 0.4986712634563446, - 0.5696984529495239, - 0.6449467539787292, - 0.8039429187774658, - 0.7421314120292664, - 0.6798374652862549, - 0.618760347366333, - 0.5605659484863281, - 0.506841778755188, - 0.45905327796936035, - 0.41850385069847107, - 0.3862997889518738, - 0.3633194863796234, - 0.3501896858215332, - 0.3472685217857361, - 0.3546358048915863, - 0.37209051847457886, - 0.3991565406322479, - 0.43509557843208313, - 0.4789273738861084, - 0.5294561386108398, - 0.5853037238121033, - 0.6449466943740845, - 0.8039429187774658, - 0.7643174529075623, - 0.7236043214797974, - 0.682914137840271, - 0.6433568000793457, - 0.6060113906860352, - 0.5718965530395508, - 0.5419427156448364, - 0.5169671177864075, - 0.49765098094940186, - 0.48452118039131165, - 0.4779358506202698, - 0.47807466983795166, - 0.4849337935447693, - 0.4983261823654175, - 0.5178865194320679, - 0.5430811643600464, - 0.5732229948043823, - 0.6074897646903992, - 0.6449466943740845, - 0.8039429187774658, - 0.7906799912452698, - 0.7756103277206421, - 0.7591450214385986, - 0.741733193397522, - 0.7238497734069824, - 0.7059826254844666, - 0.6886190176010132, - 0.6722326874732971, - 0.6572705507278442, - 0.6441407203674316, - 0.6332014203071594, - 0.6247509717941284, - 0.6190199255943298, - 0.6161646246910095, - 0.6162628531455994, - 0.619312047958374, - 0.625229001045227, - 0.6338523030281067, - 0.6449466943740845, - 0.8039429187774658, - 0.818362295627594, - 0.8302198648452759, - 0.8391921520233154, - 0.8450344204902649, - 0.8475873470306396, - 0.8467812538146973, - 0.8426381945610046, - 0.8352710604667664, - 0.8248808979988098, - 0.8117510676383972, - 0.7962397933006287, - 0.7787701487541199, - 0.7598186135292053, - 0.7399021983146667, - 0.7195640802383423, - 0.6993591785430908, - 0.6798385381698608, - 0.6615346074104309, - 0.6449466943740845, - 0.8039429187774658, - 0.8443645238876343, - 0.8815150856971741, - 0.9143811464309692, - 0.9420662522315979, - 0.9638152122497559, - 0.9790347814559937, - 0.9873098134994507, - 0.9884145259857178, - 0.9823188781738281, - 0.9691890478134155, - 0.9493832588195801, - 0.9234417676925659, - 0.8920720815658569, - 0.8561300039291382, - 0.8165959119796753, - 0.7745481729507446, - 0.7311336994171143, - 0.6875368356704712, - 0.6449466943740845, - 0.8039429187774658, - 0.8658689260482788, - 0.9239373803138733, - 0.9765640497207642, - 1.0223137140274048, - 1.0599381923675537, - 1.0884113311767578, - 1.1069563627243042, - 1.115067481994629, - 1.1125235557556152, - 1.0993937253952026, - 1.0760362148284912, - 1.0430883169174194, - 1.001448631286621, - 0.9522530436515808, - 0.896843433380127, - 0.8367311358451843, - 0.7735559940338135, - 0.7090412378311157, - 0.6449466943740845, - 0.803942859172821, - 0.8805452585220337, - 0.952889621257782, - 1.0190025568008423, - 1.0770807266235352, - 1.125540018081665, - 1.1630584001541138, - 1.1886125802993774, - 1.201505422592163, - 1.201385259628296, - 1.1882555484771729, - 1.1624741554260254, - 1.1247445344924927, - 1.076095700263977, - 1.017854928970337, - 0.9516105055809021, - 0.8791695833206177, - 0.8025082349777222, - 0.7237175703048706, - 0.6449466943740845, - 0.803942859172821, - 0.8868029713630676, - 0.9652343988418579, - 1.037097692489624, - 1.1004326343536377, - 1.1535115242004395, - 1.1948866844177246, - 1.2234294414520264, - 1.238361120223999, - 1.239274501800537, - 1.226144790649414, - 1.1993298530578613, - 1.1595613956451416, - 1.1079241037368774, - 1.0458264350891113, - 0.9749622941017151, - 0.8972647190093994, - 0.8148530721664429, - 0.7299752831459045, - 0.6449466943740845, - 0.803942859172821, - 0.8839640617370605, - 0.9596339464187622, - 1.028888463973999, - 1.0898387432098389, - 1.1408218145370483, - 1.1804473400115967, - 1.2076340913772583, - 1.221640944480896, - 1.2220854759216309, - 1.2089556455612183, - 1.1826096773147583, - 1.1437660455703735, - 1.09348464012146, - 1.0331366062164307, - 0.9643684029579163, - 0.8890555500984192, - 0.8092526197433472, - 0.7271363735198975, - 0.6449466943740845, - 0.803942859172821, - 0.8723361492156982, - 0.9366952776908875, - 0.9952647686004639, - 1.0464470386505127, - 1.0888458490371704, - 1.1213047504425049, - 1.142938494682312, - 1.1531566381454468, - 1.1516807079315186, - 1.1385509967803955, - 1.114125370979309, - 1.0790704488754272, - 1.0343420505523682, - 0.9811607599258423, - 0.9209766983985901, - 0.8554317951202393, - 0.7863138914108276, - 0.7155084609985352, - 0.6449466943740845, - 0.8039429187774658, - 0.8531791567802429, - 0.8989039659500122, - 0.9398698806762695, - 0.9749596118927002, - 1.0032159090042114, - 1.0238680839538574, - 1.0363528728485107, - 1.0403294563293457, - 1.0356897115707397, - 1.0225598812103271, - 1.001298189163208, - 0.972484827041626, - 0.9369055032730103, - 0.8955308198928833, - 0.8494893312454224, - 0.8000369071960449, - 0.7485225796699524, - 0.6963514685630798, - 0.6449466943740845, - 0.8039429187774658, - 0.828569233417511, - 0.850355327129364, - 0.8687069416046143, - 0.8831233978271484, - 0.8932115435600281, - 0.8986961841583252, - 0.8994277119636536, - 0.8953861594200134, - 0.8866817355155945, - 0.8735519051551819, - 0.8563548922538757, - 0.8355596661567688, - 0.8117334842681885, - 0.7855263352394104, - 0.7576530575752258, - 0.7288739681243896, - 0.699974000453949, - 0.6717415452003479, - 0.6449466943740845, - 0.8039429187774658, - 0.8011731505393982, - 0.7963104248046875, - 0.7894874215126038, - 0.7808902263641357, - 0.7707533240318298, - 0.7593532204627991, - 0.7470009326934814, - 0.7340334057807922, - 0.7208043336868286, - 0.707674503326416, - 0.6950021386146545, - 0.6831328868865967, - 0.6723905801773071, - 0.6630681157112122, - 0.6554198861122131, - 0.6496544480323792, - 0.6459290981292725, - 0.6443454623222351, - 0.6449466943740845, - 0.8039429187774658, - 0.773959755897522, - 0.7426259517669678, - 0.7107961773872375, - 0.6793387532234192, - 0.6491116881370544, - 0.6209394931793213, - 0.5955906510353088, - 0.5737566351890564, - 0.5560330152511597, - 0.5429031848907471, - 0.5347253680229187, - 0.5317226052284241, - 0.5339767932891846, - 0.5414264798164368, - 0.5538684129714966, - 0.5709632039070129, - 0.592244565486908, - 0.6171320676803589, - 0.6449466943740845 - ], - "z": [ - 2.1334426403045654, - 2.1122241020202637, - 2.087245464324951, - 2.0591883659362793, - 2.028817892074585, - 1.9969630241394043, - 1.9644920825958252, - 1.9322911500930786, - 1.9012383222579956, - 1.8721809387207031, - 1.8459113836288452, - 1.8231462240219116, - 1.804506540298462, - 1.7905007600784302, - 1.781510829925537, - 1.7777822017669678, - 1.7794162034988403, - 1.7863686084747314, - 1.7984496355056763, - 1.815329670906067, - 2.1334426403045654, - 2.128143072128296, - 2.118649482727051, - 2.1052205562591553, - 2.0882227420806885, - 2.068120002746582, - 2.0454604625701904, - 2.020862102508545, - 1.9949958324432373, - 1.9685676097869873, - 1.9422980546951294, - 1.9169037342071533, - 1.8930774927139282, - 1.8714690208435059, - 1.8526679277420044, - 1.8371869325637817, - 1.8254485130310059, - 1.817772626876831, - 1.814368724822998, - 1.815329670906067, - 2.1334426403045654, - 2.1444013118743896, - 2.1507225036621094, - 2.152233600616455, - 2.1488935947418213, - 2.1407933235168457, - 2.1281540393829346, - 2.1113202571868896, - 2.0907511711120605, - 2.0670082569122314, - 2.040738582611084, - 2.0126590728759766, - 1.983535647392273, - 1.95416259765625, - 1.925341248512268, - 1.897857666015625, - 1.8724615573883057, - 1.8498457670211792, - 1.8306269645690918, - 1.815329670906067, - 2.1334426403045654, - 2.1592371463775635, - 2.1799893379211426, - 2.1951329708099365, - 2.2042553424835205, - 2.2071075439453125, - 2.2036118507385254, - 2.1938631534576416, - 2.1781280040740967, - 2.1568350791931152, - 2.130565643310547, - 2.1000359058380127, - 2.0660786628723145, - 2.029620409011841, - 1.9916555881500244, - 1.9532195329666138, - 1.915360927581787, - 1.8791124820709229, - 1.845462679862976, - 1.815329670906067, - 2.1334426403045654, - 2.1710424423217773, - 2.203278064727783, - 2.2292699813842773, - 2.248309373855591, - 2.2598767280578613, - 2.2636566162109375, - 2.2595462799072266, - 2.247657299041748, - 2.228314161300659, - 2.202044725418091, - 2.169565200805664, - 2.1317617893218994, - 2.089665412902832, - 2.0444247722625732, - 1.9972734451293945, - 1.9494978189468384, - 1.9024012088775635, - 1.8572680950164795, - 1.815329670906067, - 2.1334426403045654, - 2.1785383224487305, - 2.218065023422241, - 2.2509450912475586, - 2.2762811183929443, - 2.293382406234741, - 2.3017821311950684, - 2.3012514114379883, - 2.291804790496826, - 2.2736995220184326, - 2.2474300861358643, - 2.213712692260742, - 2.173466920852661, - 2.127790927886963, - 2.077930212020874, - 2.025245189666748, - 1.9711729288101196, - 1.917188286781311, - 1.864763855934143, - 1.815329670906067, - 2.1334426403045654, - 2.1809122562408447, - 2.222748279571533, - 2.2578094005584717, - 2.285139799118042, - 2.3039934635162354, - 2.313856363296509, - 2.3144595623016357, - 2.3057861328125, - 2.2880730628967285, - 2.26180362701416, - 2.227694034576416, - 2.1866748332977295, - 2.1398651599884033, - 2.0885415077209473, - 2.0341038703918457, - 1.9780374765396118, - 1.9218714237213135, - 1.8671377897262573, - 1.815329670906067, - 2.1334426403045654, - 2.1779069900512695, - 2.2168197631835938, - 2.249119520187378, - 2.273925304412842, - 2.290560483932495, - 2.2985711097717285, - 2.297739028930664, - 2.2880866527557373, - 2.2698771953582764, - 2.243607521057129, - 2.2099945545196533, - 2.169954538345337, - 2.124579906463623, - 2.075108289718628, - 2.0228893756866455, - 1.9693474769592285, - 1.915942907333374, - 1.8641326427459717, - 1.815329670906067, - 2.1334426403045654, - 2.1698482036590576, - 2.2009222507476807, - 2.2258167266845703, - 2.2438528537750244, - 2.2545387744903564, - 2.257582664489746, - 2.252902030944824, - 2.240623950958252, - 2.221083641052246, - 2.1948139667510986, - 2.162531852722168, - 2.125117301940918, - 2.0835914611816406, - 2.0390868186950684, - 1.9928170442581177, - 1.946044683456421, - 1.900045394897461, - 1.8560738563537598, - 1.815329670906067, - 2.1334426403045654, - 2.157609462738037, - 2.1767783164978027, - 2.1904263496398926, - 2.198181390762329, - 2.199831962585449, - 2.1953330039978027, - 2.184807062149048, - 2.168541431427002, - 2.146979808807373, - 2.1207103729248047, - 2.090449333190918, - 2.0570225715637207, - 2.021341562271118, - 1.9843798875808716, - 1.9471455812454224, - 1.9106543064117432, - 1.875901460647583, - 1.8438349962234497, - 1.815329670906067, - 2.1334426403045654, - 2.142516613006592, - 2.1470043659210205, - 2.1467835903167725, - 2.141860008239746, - 2.132368564605713, - 2.11856746673584, - 2.1008336544036865, - 2.079650640487671, - 2.055596113204956, - 2.0293266773223877, - 2.001558542251587, - 1.9730490446090698, - 1.9445761442184448, - 1.9169163703918457, - 1.8908241987228394, - 1.8670114278793335, - 1.8461275100708008, - 1.828742265701294, - 1.815329670906067, - 2.1334426403045654, - 2.1262054443359375, - 2.1148269176483154, - 2.0996174812316895, - 2.0809922218322754, - 2.0594589710235596, - 2.035604953765869, - 2.0100812911987305, - 1.983583927154541, - 1.9568356275558472, - 1.9305660724639893, - 1.905491828918457, - 1.8822968006134033, - 1.8616137504577637, - 1.8440067768096924, - 1.829956293106079, - 1.8198455572128296, - 1.8139501810073853, - 1.8124310970306396, - 1.815329670906067, - 2.1334426403045654, - 2.110443592071533, - 2.083732843399048, - 2.054039716720581, - 2.0221736431121826, - 1.9890042543411255, - 1.9554359912872314, - 1.9223846197128296, - 1.890751838684082, - 1.8614002466201782, - 1.8351306915283203, - 1.8126596212387085, - 1.7946001291275024, - 1.7814446687698364, - 1.7735521793365479, - 1.7711378335952759, - 1.7742676734924316, - 1.7828561067581177, - 1.7966691255569458, - 1.815329670906067, - 2.1334426403045654, - 2.0969386100769043, - 2.05709171295166, - 2.014988899230957, - 1.9717785120010376, - 1.9286391735076904, - 1.8867477178573608, - 1.847246766090393, - 1.8112139701843262, - 1.7796319723129272, - 1.7533624172210693, - 1.7331217527389526, - 1.7194621562957764, - 1.7127563953399658, - 1.7131869792938232, - 1.7207425832748413, - 1.7352168560028076, - 1.75621497631073, - 1.783164381980896, - 1.815329670906067, - 2.1334426403045654, - 2.0871546268463135, - 2.037790536880493, - 1.9866970777511597, - 1.935267686843872, - 1.8849053382873535, - 1.8369837999343872, - 1.792810320854187, - 1.7535896301269531, - 1.7203917503356934, - 1.6941221952438354, - 1.6754975318908691, - 1.6650257110595703, - 1.6629924774169922, - 1.6694532632827759, - 1.6842317581176758, - 1.7069250345230103, - 1.736913800239563, - 1.7733802795410156, - 1.815329670906067, - 2.1334426403045654, - 2.0821516513824463, - 2.027920961380005, - 1.9722299575805664, - 1.916597843170166, - 1.8625420331954956, - 1.8115370273590088, - 1.7649739980697632, - 1.7241233587265015, - 1.6900991201400757, - 1.6638295650482178, - 1.6460312604904175, - 1.637189507484436, - 1.6375455856323242, - 1.6470898389816284, - 1.6655619144439697, - 1.692457914352417, - 1.7270441055297852, - 1.7683773040771484, - 1.815329670906067, - 2.1334426403045654, - 2.0824716091156006, - 2.028552293777466, - 1.9731552600860596, - 1.9177919626235962, - 1.8639724254608154, - 1.8131645917892456, - 1.7667545080184937, - 1.7260081768035889, - 1.692036747932434, - 1.6657671928405762, - 1.6479159593582153, - 1.6389700174331665, - 1.6391732692718506, - 1.6485202312469482, - 1.6667561531066895, - 1.6933832168579102, - 1.727675437927246, - 1.7686972618103027, - 1.815329670906067, - 2.1334426403045654, - 2.0880801677703857, - 2.039616107940674, - 1.9893728494644165, - 1.938720941543579, - 1.889041781425476, - 1.8416905403137207, - 1.7979588508605957, - 1.7590397596359253, - 1.7259947061538696, - 1.6997251510620117, - 1.6809476613998413, - 1.6701743602752686, - 1.6676990985870361, - 1.6735895872116089, - 1.6876850128173828, - 1.7096009254455566, - 1.7387393712997437, - 1.7743057012557983, - 1.815329670906067, - 2.1334426403045654, - 2.0983691215515137, - 2.0599136352539062, - 2.01912522315979, - 1.9771164655685425, - 1.9350333213806152, - 1.8940234184265137, - 1.8552056550979614, - 1.8196388483047485, - 1.7882931232452393, - 1.7620235681533813, - 1.7415467500686646, - 1.7274211645126343, - 1.7200320959091187, - 1.719581127166748, - 1.7260806560516357, - 1.7393532991409302, - 1.7590370178222656, - 1.7845947742462158, - 1.815329670906067, - 2.1334426403045654, - 2.1122241020202637, - 2.087245464324951, - 2.0591883659362793, - 2.028818130493164, - 1.9969630241394043, - 1.9644920825958252, - 1.9322911500930786, - 1.9012384414672852, - 1.8721809387207031, - 1.8459113836288452, - 1.8231463432312012, - 1.8045066595077515, - 1.7905007600784302, - 1.7815109491348267, - 1.7777822017669678, - 1.7794163227081299, - 1.7863686084747314, - 1.7984496355056763, - 1.815329670906067 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.7027797698974609, - 0.717721700668335, - 0.7339445948600769, - 0.7510059475898743, - 0.7684403657913208, - 0.7857722640037537, - 0.8025288581848145, - 0.8182531595230103, - 0.8325161337852478, - 0.8449288606643677, - 0.8551526069641113, - 0.8629086017608643, - 0.867985188961029, - 0.8702439665794373, - 0.8696233630180359, - 0.8661401867866516, - 0.8598895072937012, - 0.851041853427887, - 0.8398385047912598, - 0.8265851140022278, - 0.7027797698974609, - 0.748293936252594, - 0.7942550778388977, - 0.839409589767456, - 0.8825257420539856, - 0.9224273562431335, - 0.9580261707305908, - 0.9883511066436768, - 1.0125749111175537, - 1.0300368070602417, - 1.0402605533599854, - 1.0429673194885254, - 1.0380830764770508, - 1.0257413387298584, - 1.0062785148620605, - 0.9802255034446716, - 0.9482930898666382, - 0.911352276802063, - 0.870410680770874, - 0.8265851140022278, - 0.7027797698974609, - 0.7740254402160645, - 0.8450162410736084, - 0.9138157367706299, - 0.9785472750663757, - 1.037445068359375, - 1.0889027118682861, - 1.131516456604004, - 1.1641238927841187, - 1.185835599899292, - 1.1960593461990356, - 1.1945163011550903, - 1.181248426437378, - 1.1566178798675537, - 1.1212961673736572, - 1.0762470960617065, - 1.022699236869812, - 0.9621134400367737, - 0.8961422443389893, - 0.8265851140022278, - 0.7027797698974609, - 0.7921278476715088, - 0.8807272911071777, - 0.9661613702774048, - 1.0460996627807617, - 1.118361473083496, - 1.1809759140014648, - 1.232235074043274, - 1.2707405090332031, - 1.29544198513031, - 1.3056657314300537, - 1.3011329174041748, - 1.2819671630859375, - 1.2486910820007324, - 1.2022125720977783, - 1.1437994241714478, - 1.075044870376587, - 0.9978245496749878, - 0.9142446517944336, - 0.8265851140022278, - 0.7027797698974609, - 0.8006395697593689, - 0.897518515586853, - 0.9907740354537964, - 1.0778623819351196, - 1.1564079523086548, - 1.2242683172225952, - 1.279592514038086, - 1.320871114730835, - 1.3469783067703247, - 1.3572020530700684, - 1.3512635231018066, - 1.32932448387146, - 1.2919833660125732, - 1.240259051322937, - 1.1755622625350952, - 1.0996575355529785, - 1.014615774154663, - 0.9227563142776489, - 0.8265851140022278, - 0.7027797698974609, - 0.798638105392456, - 0.8935701847076416, - 0.9849865436553955, - 1.0703935623168945, - 1.1474616527557373, - 1.2140884399414062, - 1.2684566974639893, - 1.3090832233428955, - 1.3348599672317505, - 1.3450837135314941, - 1.3394756317138672, - 1.3181886672973633, - 1.2818036079406738, - 1.2313127517700195, - 1.1680934429168701, - 1.0938701629638672, - 1.0106674432754517, - 0.9207549095153809, - 0.8265851140022278, - 0.7027797698974609, - 0.7863404154777527, - 0.8693102598190308, - 0.9494261145591736, - 1.0245026350021362, - 1.0924919843673706, - 1.1515395641326904, - 1.2000346183776855, - 1.23665452003479, - 1.2604000568389893, - 1.270623803138733, - 1.2670469284057617, - 1.2497667074203491, - 1.2192546129226685, - 1.1763430833816528, - 1.1222025156021118, - 1.0583096742630005, - 0.986407458782196, - 0.9084571599960327, - 0.8265851140022278, - 0.7027797698974609, - 0.7650790810585022, - 0.8273676037788391, - 0.8879461884498596, - 0.9451625347137451, - 0.9974557757377625, - 1.0433995723724365, - 1.0817407369613647, - 1.1114333868026733, - 1.1316676139831543, - 1.1418912410736084, - 1.141825795173645, - 1.1314728260040283, - 1.111114740371704, - 1.0813069343566895, - 1.0428622961044312, - 0.9968297481536865, - 0.9444648027420044, - 0.887195885181427, - 0.8265851140022278, - 0.7027797698974609, - 0.7371581792831421, - 0.7722874283790588, - 0.8072091937065125, - 0.8409708738327026, - 0.8726516962051392, - 0.9013873338699341, - 0.9263941049575806, - 0.9469897150993347, - 0.962612509727478, - 0.9728362560272217, - 0.9773821234703064, - 0.9761261343955994, - 0.9691025018692017, - 0.9565027952194214, - 0.9386707544326782, - 0.9160926938056946, - 0.8893846273422241, - 0.8592749834060669, - 0.8265851140022278, - 0.7027798295021057, - 0.7056033611297607, - 0.710038423538208, - 0.7159640789031982, - 0.7232186198234558, - 0.7316041588783264, - 0.7408920526504517, - 0.7508288025856018, - 0.7611435055732727, - 0.7715547680854797, - 0.7817785143852234, - 0.7915359139442444, - 0.8005608916282654, - 0.8086071610450745, - 0.8154552578926086, - 0.8209184408187866, - 0.8248476386070251, - 0.8271356821060181, - 0.8277201652526855, - 0.8265851140022278, - 0.7027798295021057, - 0.6738340258598328, - 0.6473663449287415, - 0.6240987777709961, - 0.6046659350395203, - 0.5895979404449463, - 0.5793057680130005, - 0.5740702152252197, - 0.5740340948104858, - 0.5791983008384705, - 0.5894221067428589, - 0.6044265031814575, - 0.6238022446632385, - 0.6470208764076233, - 0.6734489798545837, - 0.7023657560348511, - 0.732982337474823, - 0.7644636034965515, - 0.7959508299827576, - 0.8265851736068726, - 0.7027798295021057, - 0.6452929377555847, - 0.5910626649856567, - 0.5415682792663574, - 0.49815988540649414, - 0.4620215594768524, - 0.4341390132904053, - 0.4152728021144867, - 0.4059375822544098, - 0.4063880443572998, - 0.41661179065704346, - 0.43632999062538147, - 0.4650048315525055, - 0.5018540620803833, - 0.5458725690841675, - 0.595859706401825, - 0.6504518389701843, - 0.708159863948822, - 0.7674097418785095, - 0.8265851736068726, - 0.7027798295021057, - 0.6230728626251221, - 0.5472286939620972, - 0.47731608152389526, - 0.415242075920105, - 0.3626998960971832, - 0.32112276554107666, - 0.29164472222328186, - 0.275069922208786, - 0.2718505561351776, - 0.28207430243492126, - 0.3054623305797577, - 0.34137675166130066, - 0.3888378441333771, - 0.4465508759021759, - 0.512941837310791, - 0.5861996412277222, - 0.6643259525299072, - 0.7451896667480469, - 0.8265851736068726, - 0.7027798295021057, - 0.6095818281173706, - 0.5206145644187927, - 0.4383048117160797, - 0.36489787697792053, - 0.3023959696292877, - 0.25250405073165894, - 0.21658289432525635, - 0.1956126093864441, - 0.19016510248184204, - 0.2003888487815857, - 0.22600501775741577, - 0.26631495356559753, - 0.32021909952163696, - 0.3862469494342804, - 0.46259763836860657, - 0.5471883416175842, - 0.637711763381958, - 0.7316986322402954, - 0.8265851736068726, - 0.7027798295021057, - 0.6062816977500916, - 0.5141043663024902, - 0.4287620782852173, - 0.3525828719139099, - 0.2876446843147278, - 0.23571884632110596, - 0.19822174310684204, - 0.17617619037628174, - 0.17018353939056396, - 0.18040728569030762, - 0.20656859874725342, - 0.24795383214950562, - 0.303433895111084, - 0.37149569392204285, - 0.45028266310691833, - 0.5376456379890442, - 0.6312015652656555, - 0.7283985018730164, - 0.8265851736068726, - 0.7027798295021057, - 0.613530158996582, - 0.5284034609794617, - 0.44972190260887146, - 0.3796316385269165, - 0.32004454731941223, - 0.27258604764938354, - 0.23855054378509521, - 0.21886664628982544, - 0.21407121419906616, - 0.22429496049880981, - 0.24925905466079712, - 0.2882826030254364, - 0.3403010964393616, - 0.4038955569267273, - 0.4773314297199249, - 0.558605432510376, - 0.645500659942627, - 0.7356469035148621, - 0.8265851736068726, - 0.7027798295021057, - 0.6305416822433472, - 0.5619624853134155, - 0.4989129900932312, - 0.4431129992008209, - 0.39608463644981384, - 0.359110563993454, - 0.33319950103759766, - 0.3190581798553467, - 0.3170722723007202, - 0.32729601860046387, - 0.34945058822631836, - 0.38293153047561646, - 0.4268256723880768, - 0.4799356162548065, - 0.5408127903938293, - 0.6077965497970581, - 0.6790597438812256, - 0.7526584267616272, - 0.8265851736068726, - 0.7027798295021057, - 0.6554728150367737, - 0.6111447215080261, - 0.5710047483444214, - 0.5361478328704834, - 0.5075247287750244, - 0.4859161972999573, - 0.4719117283821106, - 0.4658932387828827, - 0.46802496910095215, - 0.4782487154006958, - 0.49628564715385437, - 0.5216437578201294, - 0.5536313056945801, - 0.5913757681846619, - 0.6338475942611694, - 0.6798883080482483, - 0.7282419204711914, - 0.7775895595550537, - 0.8265851736068726, - 0.7027798295021057, - 0.6856218576431274, - 0.6706205010414124, - 0.6581849455833435, - 0.6486543416976929, - 0.6422886252403259, - 0.6392615437507629, - 0.639655590057373, - 0.6434600949287415, - 0.6505711674690247, - 0.6607949733734131, - 0.6738525032997131, - 0.6893876194953918, - 0.7069766521453857, - 0.7261397242546082, - 0.7463541030883789, - 0.7670685052871704, - 0.7877177596092224, - 0.8077386617660522, - 0.8265851736068726, - 0.7027797698974609, - 0.7177217602729797, - 0.7339446544647217, - 0.751006007194519, - 0.7684404253959656, - 0.7857723236083984, - 0.802528977394104, - 0.8182532787322998, - 0.8325162529945374, - 0.8449289202690125, - 0.8551527261734009, - 0.862908661365509, - 0.8679853081703186, - 0.8702440857887268, - 0.8696234226226807, - 0.8661402463912964, - 0.859889566898346, - 0.8510419130325317, - 0.8398385047912598, - 0.8265851140022278 - ], - "y": [ - 0.7825863361358643, - 0.6900736689567566, - 0.6022536754608154, - 0.5215219259262085, - 0.450080543756485, - 0.3898783326148987, - 0.3425573706626892, - 0.30940842628479004, - 0.2913358211517334, - 0.288832426071167, - 0.3019666075706482, - 0.33038008213043213, - 0.373297780752182, - 0.429548978805542, - 0.49759936332702637, - 0.5755926370620728, - 0.6614015102386475, - 0.7526851296424866, - 0.8469536304473877, - 0.9416355490684509, - 0.7825863361358643, - 0.6946049332618713, - 0.6111926436424255, - 0.5346247553825378, - 0.46698978543281555, - 0.4101327955722809, - 0.3656045198440552, - 0.3346196413040161, - 0.3180233836174011, - 0.31626832485198975, - 0.32940250635147095, - 0.35706764459609985, - 0.3985089659690857, - 0.45259615778923035, - 0.517853856086731, - 0.5925019383430481, - 0.6745043396949768, - 0.7616240978240967, - 0.8514848947525024, - 0.9416355490684509, - 0.7825863361358643, - 0.7087879180908203, - 0.6391717195510864, - 0.5756367444992065, - 0.5199159383773804, - 0.4735294282436371, - 0.4377423822879791, - 0.41353100538253784, - 0.4015556871891022, - 0.4021431505680084, - 0.4152773320674896, - 0.4405999481678009, - 0.4774203300476074, - 0.5247340202331543, - 0.5812504887580872, - 0.6454280614852905, - 0.7155163288116455, - 0.7896031737327576, - 0.8656678795814514, - 0.9416355490684509, - 0.7825863361358643, - 0.7310855984687805, - 0.6831588745117188, - 0.6401135325431824, - 0.603123664855957, - 0.5731983184814453, - 0.5511537790298462, - 0.5375912189483643, - 0.5328807830810547, - 0.5371509790420532, - 0.5502851009368896, - 0.5719250440597534, - 0.6014806032180786, - 0.638145387172699, - 0.680919349193573, - 0.7286357879638672, - 0.7799931168556213, - 0.8335903286933899, - 0.8879655599594116, - 0.9416354894638062, - 0.7825863361358643, - 0.7590817213058472, - 0.7383875250816345, - 0.7210681438446045, - 0.7075960636138916, - 0.6983387470245361, - 0.6935486793518066, - 0.6933565139770508, - 0.6977676153182983, - 0.706661581993103, - 0.7197957634925842, - 0.7368118762969971, - 0.7572458982467651, - 0.7805403470993042, - 0.8060597777366638, - 0.8331081867218018, - 0.8609477281570435, - 0.8888189792633057, - 0.9159616827964783, - 0.9416354894638062, - 0.7825863361358643, - 0.7897424697875977, - 0.798872709274292, - 0.8097279071807861, - 0.8220119476318359, - 0.8353897929191589, - 0.8494964838027954, - 0.863947331905365, - 0.8783480525016785, - 0.892305850982666, - 0.9054400324821472, - 0.9173923134803772, - 0.9278366565704346, - 0.936488151550293, - 0.9431108832359314, - 0.9475240707397461, - 0.9496074914932251, - 0.9493041634559631, - 0.9466224908828735, - 0.9416354894638062, - 0.7825863361358643, - 0.8197453022003174, - 0.8580599427223206, - 0.8964850902557373, - 0.9339725971221924, - 0.9694998264312744, - 1.0020978450775146, - 1.0308773517608643, - 1.0550533533096313, - 1.073966383934021, - 1.087100625038147, - 1.09409761428833, - 1.0947667360305786, - 1.0890895128250122, - 1.0772209167480469, - 1.0594847202301025, - 1.0363646745681763, - 1.0084913969039917, - 0.9766252636909485, - 0.9416354894638062, - 0.7825863361358643, - 0.8458389043807983, - 0.9095353484153748, - 0.9719381928443909, - 1.031345248222351, - 1.0861361026763916, - 1.1348159313201904, - 1.1760573387145996, - 1.2087349891662598, - 1.2319575548171997, - 1.2450916767120361, - 1.247779130935669, - 1.2399466037750244, - 1.221807599067688, - 1.193857192993164, - 1.1568574905395508, - 1.1118178367614746, - 1.059966802597046, - 1.0027189254760742, - 0.9416354894638062, - 0.7825862765312195, - 0.865195631980896, - 0.9477208256721497, - 1.027910828590393, - 1.1035782098770142, - 1.172658920288086, - 1.2332688570022583, - 1.2837544679641724, - 1.3227388858795166, - 1.3491582870483398, - 1.3622925281524658, - 1.3617830276489258, - 1.3476438522338867, - 1.3202605247497559, - 1.280380129814148, - 1.2290903329849243, - 1.167790412902832, - 1.0981522798538208, - 1.0220756530761719, - 0.9416354894638062, - 0.7825862765312195, - 0.8757178783416748, - 0.9684783220291138, - 1.0583373308181763, - 1.1428438425064087, - 1.219692587852478, - 1.286787509918213, - 1.3422983884811401, - 1.3847110271453857, - 1.4128683805465698, - 1.4260025024414062, - 1.423755168914795, - 1.4061877727508545, - 1.373779296875, - 1.32741379737854, - 1.2683559656143188, - 1.1982169151306152, - 1.1189098358154297, - 1.0325978994369507, - 0.9416354894638062, - 0.7825862765312195, - 0.8762654662132263, - 0.9695584774017334, - 1.0599206686019897, - 1.144887089729309, - 1.2221400737762451, - 1.2895724773406982, - 1.3453449010849, - 1.3879358768463135, - 1.4161837100982666, - 1.429317831993103, - 1.4269800186157227, - 1.4092341661453247, - 1.3765641450881958, - 1.3298612833023071, - 1.2703992128372192, - 1.1998002529144287, - 1.1199899911880493, - 1.0331454277038574, - 0.9416354894638062, - 0.7825862765312195, - 0.8667789697647095, - 0.9508442282676697, - 1.0324890613555908, - 1.1094865798950195, - 1.1797361373901367, - 1.2413218021392822, - 1.2925636768341064, - 1.332063913345337, - 1.3587448596954346, - 1.371878981590271, - 1.371108055114746, - 1.3564529418945312, - 1.3283135890960693, - 1.2874573469161987, - 1.2349987030029297, - 1.1723687648773193, - 1.1012756824493408, - 1.0236588716506958, - 0.9416354894638062, - 0.7825863361358643, - 0.8482863903045654, - 0.9143635630607605, - 0.9790154695510864, - 1.0404784679412842, - 1.0970760583877563, - 1.1472644805908203, - 1.1896746158599854, - 1.2231496572494507, - 1.2467764616012573, - 1.2599107027053833, - 1.2621939182281494, - 1.2535638809204102, - 1.2342561483383179, - 1.2047972679138184, - 1.1659905910491943, - 1.1188950538635254, - 1.0647950172424316, - 1.0051662921905518, - 0.9416354894638062, - 0.7825863361358643, - 0.8227917551994324, - 0.8640697002410889, - 0.9052941799163818, - 0.9453408122062683, - 0.9831171035766602, - 1.0175926685333252, - 1.047827124595642, - 1.072995662689209, - 1.0924118757247925, - 1.105545997619629, - 1.1120399236679077, - 1.111716389656067, - 1.1045843362808228, - 1.0908381938934326, - 1.0708529949188232, - 1.0451737642288208, - 1.0145010948181152, - 0.9796717166900635, - 0.9416354894638062, - 0.7825863361358643, - 0.7930577993392944, - 0.8054128289222717, - 0.8193144202232361, - 0.8343834280967712, - 0.8502087593078613, - 0.866358757019043, - 0.8823928833007812, - 0.8978737592697144, - 0.9123790860176086, - 0.9255132675170898, - 0.9369180202484131, - 0.9462822079658508, - 0.9533504247665405, - 0.9579298496246338, - 0.9598956108093262, - 0.959194004535675, - 0.9558442831039429, - 0.9499377012252808, - 0.9416354894638062, - 0.7825863361358643, - 0.7623065710067749, - 0.7447492480278015, - 0.7303932905197144, - 0.7196301817893982, - 0.7127535939216614, - 0.7099510431289673, - 0.7112990617752075, - 0.7167608737945557, - 0.7261874079704285, - 0.7393215894699097, - 0.7558051347732544, - 0.7751884460449219, - 0.7969427108764648, - 0.8204746246337891, - 0.8451423048973083, - 0.8702728748321533, - 0.8951807618141174, - 0.919186532497406, - 0.9416354894638062, - 0.7825863361358643, - 0.7338705658912659, - 0.6886528134346008, - 0.6481665372848511, - 0.6135161519050598, - 0.5856467485427856, - 0.5653185844421387, - 0.5530861616134644, - 0.5492831468582153, - 0.554013192653656, - 0.5671473741531372, - 0.5883274078369141, - 0.6169754862785339, - 0.6523102521896362, - 0.6933678388595581, - 0.73902827501297, - 0.78804612159729, - 0.839084267616272, - 0.890750527381897, - 0.9416354894638062, - 0.7825863361358643, - 0.7108311653137207, - 0.6432024240493774, - 0.5815449953079224, - 0.5275406837463379, - 0.4826625883579254, - 0.4481348395347595, - 0.42489925026893616, - 0.41358962655067444, - 0.41451457142829895, - 0.42764875292778015, - 0.45263388752937317, - 0.48878857493400574, - 0.5351264476776123, - 0.5903835892677307, - 0.653052806854248, - 0.7214245796203613, - 0.7936339378356934, - 0.867711067199707, - 0.9416354894638062, - 0.7825863361358643, - 0.6956850290298462, - 0.613323450088501, - 0.5377480983734131, - 0.47102051973342896, - 0.4149608910083771, - 0.3710983395576477, - 0.3406292796134949, - 0.3243849277496338, - 0.32280832529067993, - 0.33594250679016113, - 0.3634291887283325, - 0.40451863408088684, - 0.4580899775028229, - 0.5226819515228271, - 0.5965326428413391, - 0.677627682685852, - 0.7637549042701721, - 0.8525650501251221, - 0.9416355490684509, - 0.7825863361358643, - 0.6900736689567566, - 0.6022536754608154, - 0.5215219259262085, - 0.450080543756485, - 0.3898783326148987, - 0.3425573706626892, - 0.30940842628479004, - 0.2913358211517334, - 0.288832426071167, - 0.3019666075706482, - 0.33038008213043213, - 0.373297780752182, - 0.4295489490032196, - 0.49759936332702637, - 0.5755926370620728, - 0.6614015102386475, - 0.7526851296424866, - 0.8469536304473877, - 0.9416355490684509 - ], - "z": [ - 2.0907132625579834, - 2.1341793537139893, - 2.180799961090088, - 2.2293033599853516, - 2.2783665657043457, - 2.326651096343994, - 2.37283992767334, - 2.415673017501831, - 2.453982353210449, - 2.486722707748413, - 2.513000965118408, - 2.5321006774902344, - 2.5435001850128174, - 2.546889305114746, - 2.542175054550171, - 2.5294861793518066, - 2.509168863296509, - 2.4817771911621094, - 2.4480583667755127, - 2.4089324474334717, - 2.0907132625579834, - 2.1200203895568848, - 2.1528680324554443, - 2.1883604526519775, - 2.225529432296753, - 2.2633609771728516, - 2.300823450088501, - 2.3368945121765137, - 2.3705904483795166, - 2.4009923934936523, - 2.4272706508636475, - 2.4487087726593018, - 2.4647216796875, - 2.474872589111328, - 2.4788849353790283, - 2.476649045944214, - 2.4682257175445557, - 2.453845262527466, - 2.433899402618408, - 2.4089324474334717, - 2.0907132625579834, - 2.1029205322265625, - 2.1191349029541016, - 2.138914108276367, - 2.1617186069488525, - 2.1869263648986816, - 2.2138495445251465, - 2.2417542934417725, - 2.269879102706909, - 2.297456741333008, - 2.323734998703003, - 2.3479971885681152, - 2.369581460952759, - 2.3878989219665527, - 2.4024500846862793, - 2.4128382205963135, - 2.4187793731689453, - 2.420111894607544, - 2.416799545288086, - 2.4089324474334717, - 2.0907132625579834, - 2.084733009338379, - 2.0832560062408447, - 2.086322546005249, - 2.093848705291748, - 2.1056296825408936, - 2.1213436126708984, - 2.1405625343322754, - 2.1627614498138428, - 2.187335252761841, - 2.213613510131836, - 2.240879535675049, - 2.2683897018432617, - 2.2953929901123047, - 2.3211536407470703, - 2.344968318939209, - 2.366187810897827, - 2.384232997894287, - 2.3986120223999023, - 2.4089324474334717, - 2.0907132625579834, - 2.0674288272857666, - 2.049119472503662, - 2.0362846851348877, - 2.0292749404907227, - 2.0282809734344482, - 2.033329963684082, - 2.0442845821380615, - 2.0608456134796143, - 2.082561492919922, - 2.108839750289917, - 2.1389636993408203, - 2.172111749649048, - 2.2073793411254883, - 2.243804931640625, - 2.2803943157196045, - 2.316150188446045, - 2.3500964641571045, - 2.38130784034729, - 2.4089324474334717, - 2.0907132625579834, - 2.0528829097747803, - 2.0204243659973145, - 1.9942233562469482, - 1.974994421005249, - 1.9632619619369507, - 1.9593462944030762, - 1.9633539915084839, - 1.9751758575439453, - 1.994489312171936, - 2.0207676887512207, - 2.0532939434051514, - 2.0911810398101807, - 2.1333956718444824, - 2.178785800933838, - 2.226113796234131, - 2.2740886211395264, - 2.321401596069336, - 2.3667619228363037, - 2.4089324474334717, - 2.0907132625579834, - 2.0426716804504395, - 2.0002803802490234, - 1.9646962881088257, - 1.9368895292282104, - 1.917618751525879, - 1.90740966796875, - 1.9065406322479248, - 1.915035605430603, - 1.9326626062393188, - 1.9589409828186035, - 1.9931538105010986, - 2.034367799758911, - 2.0814590454101562, - 2.1331427097320557, - 2.188009023666382, - 2.2445616722106934, - 2.301257610321045, - 2.356550693511963, - 2.4089324474334717, - 2.0907132625579834, - 2.0379016399383545, - 1.9908705949783325, - 1.9509031772613525, - 1.919089436531067, - 1.8962972164154053, - 1.8831483125686646, - 1.8800013065338135, - 1.8869420289993286, - 1.9037812948226929, - 1.9300596714019775, - 1.9650602340698242, - 2.0078284740448, - 2.0571975708007812, - 2.111821174621582, - 2.1702089309692383, - 2.2307684421539307, - 2.2918477058410645, - 2.351780652999878, - 2.4089324474334717, - 2.0907132625579834, - 2.0390896797180176, - 1.99321448802948, - 1.954338788986206, - 1.923523187637329, - 1.9016081094741821, - 1.8891913890838623, - 1.886611819267273, - 1.893939733505249, - 1.9109752178192139, - 1.937253475189209, - 1.972057819366455, - 2.0144388675689697, - 2.0632407665252686, - 2.1171319484710693, - 2.174642562866211, - 2.234204053878784, - 2.294191598892212, - 2.352968692779541, - 2.4089324474334717, - 2.0907132625579834, - 2.046107292175293, - 2.0070581436157227, - 1.9746308326721191, - 1.9497101306915283, - 1.9329756498336792, - 1.9248840808868408, - 1.9256558418273926, - 1.935270071029663, - 1.9534645080566406, - 1.9797428846359253, - 2.013388156890869, - 2.053483009338379, - 2.098933458328247, - 2.1484994888305664, - 2.2008297443389893, - 2.2544960975646973, - 2.308035135269165, - 2.3599863052368164, - 2.4089324474334717, - 2.0907132625579834, - 2.0581936836242676, - 2.0309011936187744, - 2.009580373764038, - 1.9948126077651978, - 1.9870009422302246, - 1.986358404159546, - 1.9929022789001465, - 2.0064544677734375, - 2.0266451835632324, - 2.0529234409332275, - 2.0845727920532227, - 2.120729446411133, - 2.160407781600952, - 2.2025249004364014, - 2.245932102203369, - 2.289445638656616, - 2.331878185272217, - 2.372072696685791, - 2.4089324474334717, - 2.0907132625579834, - 2.0740392208099365, - 2.062160015106201, - 2.0553998947143555, - 2.053943157196045, - 2.0578293800354004, - 2.066952705383301, - 2.081064224243164, - 2.0997791290283203, - 2.122586727142334, - 2.148864984512329, - 2.1778972148895264, - 2.2088913917541504, - 2.241002082824707, - 2.273353338241577, - 2.3050625324249268, - 2.3352651596069336, - 2.3631372451782227, - 2.38791823387146, - 2.4089324474334717, - 2.0907132625579834, - 2.0919268131256104, - 2.097447395324707, - 2.1071243286132812, - 2.1206936836242676, - 2.1377854347229004, - 2.157933235168457, - 2.1805875301361084, - 2.2051303386688232, - 2.2308924198150635, - 2.2571706771850586, - 2.2832486629486084, - 2.3084146976470947, - 2.3319826126098633, - 2.353309392929077, - 2.3718132972717285, - 2.3869898319244385, - 2.3984246253967285, - 2.405805826187134, - 2.4089324474334717, - 2.0907132625579834, - 2.1099181175231934, - 2.132939338684082, - 2.159148693084717, - 2.187831401824951, - 2.218204975128174, - 2.249441146850586, - 2.2806878089904785, - 2.3110923767089844, - 2.3398256301879883, - 2.3661041259765625, - 2.3892104625701904, - 2.408514976501465, - 2.423490524291992, - 2.4337289333343506, - 2.438951015472412, - 2.439013957977295, - 2.4339163303375244, - 2.423797130584717, - 2.4089324474334717, - 2.0907132625579834, - 2.126063346862793, - 2.1647894382476807, - 2.2058348655700684, - 2.248080253601074, - 2.2903730869293213, - 2.331559896469116, - 2.3705170154571533, - 2.406182050704956, - 2.437582015991211, - 2.463860273361206, - 2.484300136566162, - 2.4983441829681396, - 2.5056092739105225, - 2.505897045135498, - 2.499199867248535, - 2.4857001304626465, - 2.465766429901123, - 2.4399423599243164, - 2.4089324474334717, - 2.0907132625579834, - 2.138613224029541, - 2.189546585083008, - 2.242124080657959, - 2.2949116230010986, - 2.3464691638946533, - 2.395390510559082, - 2.4403412342071533, - 2.480095148086548, - 2.5135676860809326, - 2.5398459434509277, - 2.558213233947754, - 2.5681684017181396, - 2.5694398880004883, - 2.56199312210083, - 2.5460312366485596, - 2.521989345550537, - 2.49052357673645, - 2.4524922370910645, - 2.4089324474334717, - 2.0907132625579834, - 2.146207332611084, - 2.2045276165008545, - 2.2640836238861084, - 2.3232505321502686, - 2.3804144859313965, - 2.434016466140747, - 2.4825940132141113, - 2.5248219966888428, - 2.559548854827881, - 2.585827112197876, - 2.602940082550049, - 2.6104211807250977, - 2.6080658435821533, - 2.5959386825561523, - 2.5743701457977295, - 2.5439491271972656, - 2.505504846572876, - 2.4600863456726074, - 2.4089324474334717, - 2.0907132625579834, - 2.1480231285095215, - 2.2081096172332764, - 2.269334077835083, - 2.330026149749756, - 2.388530731201172, - 2.443251609802246, - 2.4926960468292236, - 2.535515785217285, - 2.570542573928833, - 2.596820831298828, - 2.6136341094970703, - 2.62052321434021, - 2.6173009872436523, - 2.6040546894073486, - 2.581145763397217, - 2.549199342727661, - 2.5090866088867188, - 2.461902141571045, - 2.4089324474334717, - 2.0907132625579834, - 2.1438634395599365, - 2.199903964996338, - 2.2573060989379883, - 2.3145041465759277, - 2.3699378967285156, - 2.4220950603485107, - 2.469553232192993, - 2.5110175609588623, - 2.5453574657440186, - 2.5716357231140137, - 2.5891358852386475, - 2.5973803997039795, - 2.596144437789917, - 2.5854618549346924, - 2.5656237602233887, - 2.5371713638305664, - 2.5008811950683594, - 2.45774245262146, - 2.4089324474334717, - 2.0907132625579834, - 2.1341793537139893, - 2.180799961090088, - 2.2293033599853516, - 2.2783665657043457, - 2.326651096343994, - 2.37283992767334, - 2.415673017501831, - 2.453982353210449, - 2.486722707748413, - 2.513000965118408, - 2.5321004390716553, - 2.5435001850128174, - 2.546889305114746, - 2.542175054550171, - 2.5294861793518066, - 2.509168863296509, - 2.4817771911621094, - 2.4480583667755127, - 2.4089324474334717 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.8099634051322937, - 0.8409367799758911, - 0.8727542161941528, - 0.9045478701591492, - 0.9354504346847534, - 0.9646190404891968, - 0.9912579655647278, - 1.0146405696868896, - 1.0341291427612305, - 1.049191951751709, - 1.0594182014465332, - 1.0645289421081543, - 1.0643848180770874, - 1.0589896440505981, - 1.0484906435012817, - 1.0331741571426392, - 1.013458013534546, - 0.9898800253868103, - 0.9630833864212036, - 0.9337989687919617, - 0.8099634051322937, - 0.8727893233299255, - 0.9355904459953308, - 0.9966537952423096, - 1.0543136596679688, - 1.1069972515106201, - 1.1532673835754395, - 1.1918622255325317, - 1.2217286825180054, - 1.2420521974563599, - 1.252278447151184, - 1.2521284818649292, - 1.24160635471344, - 1.2209991216659546, - 1.190868854522705, - 1.1520373821258545, - 1.1055638790130615, - 1.0527162551879883, - 0.994935929775238, - 0.9337989687919617, - 0.8099634051322937, - 0.8979251980781555, - 0.9851766228675842, - 1.0693376064300537, - 1.1481125354766846, - 1.2193524837493896, - 1.2811144590377808, - 1.3317135572433472, - 1.3697696924209595, - 1.39424467086792, - 1.4044709205627441, - 1.4001694917678833, - 1.381457805633545, - 1.3488460779190063, - 1.3032240867614746, - 1.2458361387252808, - 1.1782476902008057, - 1.1023024320602417, - 1.0200717449188232, - 0.9337989091873169, - 0.8099634051322937, - 0.9136205911636353, - 1.016139268875122, - 1.1147229671478271, - 1.2066824436187744, - 1.2895095348358154, - 1.3609447479248047, - 1.4190397262573242, - 1.4622095823287964, - 1.4892767667770386, - 1.4995030164718628, - 1.4926093816757202, - 1.4687838554382324, - 1.4286764860153198, - 1.3733811378479004, - 1.3044061660766602, - 1.223633050918579, - 1.1332650184631348, - 1.0357671976089478, - 0.9337989091873169, - 0.8099634051322937, - 0.9181746244430542, - 1.025123119354248, - 1.1278914213180542, - 1.2236766815185547, - 1.3098657131195068, - 1.3841075897216797, - 1.4443774223327637, - 1.4890310764312744, - 1.5168503522872925, - 1.5270766019821167, - 1.5194308757781982, - 1.4941215515136719, - 1.4518392086029053, - 1.3937373161315918, - 1.3214002847671509, - 1.2368016242980957, - 1.1422488689422607, - 1.0403212308883667, - 0.9337989091873169, - 0.8099634051322937, - 0.9110937714576721, - 1.0111545324325562, - 1.1074162721633911, - 1.1972532272338867, - 1.278214931488037, - 1.3480929136276245, - 1.4049811363220215, - 1.4473276138305664, - 1.4739775657653809, - 1.484203815460205, - 1.4777274131774902, - 1.4547252655029297, - 1.4158246517181396, - 1.362086534500122, - 1.2949769496917725, - 1.2163264751434326, - 1.1282804012298584, - 1.0332403182983398, - 0.9337989091873169, - 0.8099634051322937, - 0.8931454420089722, - 0.9757474064826965, - 1.055516242980957, - 1.1302759647369385, - 1.1979873180389404, - 1.256803274154663, - 1.3051197528839111, - 1.341618537902832, - 1.3653039932250977, - 1.3755302429199219, - 1.3720183372497559, - 1.3548638820648193, - 1.3245350122451782, - 1.2818589210510254, - 1.2279996871948242, - 1.164426326751709, - 1.092873215675354, - 1.0152920484542847, - 0.9337989687919617, - 0.8099634051322937, - 0.8662745356559753, - 0.9227385520935059, - 0.9778153300285339, - 1.0300025939941406, - 1.0778765678405762, - 1.1201316118240356, - 1.1556150913238525, - 1.183358907699585, - 1.202606439590454, - 1.2128326892852783, - 1.2137587070465088, - 1.2053592205047607, - 1.1878632307052612, - 1.1617481708526611, - 1.1277261972427368, - 1.0867254734039307, - 1.039864420890808, - 0.9884210824966431, - 0.9337989687919617, - 0.8099634051322937, - 0.8333929181098938, - 0.8578723073005676, - 0.8827338218688965, - 0.9072993397712708, - 0.9308987259864807, - 0.9528881907463074, - 0.9726681113243103, - 0.9896987676620483, - 1.0035157203674316, - 1.0137419700622559, - 1.0200985670089722, - 1.0224123001098633, - 1.0206198692321777, - 1.014770269393921, - 1.0050230026245117, - 0.9916439652442932, - 0.9749981164932251, - 0.9555395245552063, - 0.9337989687919617, - 0.8099634051322937, - 0.7980639338493347, - 0.7881779670715332, - 0.7805752158164978, - 0.7754631042480469, - 0.7729809284210205, - 0.7731965780258179, - 0.7761040329933167, - 0.7816240787506104, - 0.7896060943603516, - 0.7998323440551758, - 0.812023937702179, - 0.8258482217788696, - 0.8409281969070435, - 0.8568524718284607, - 0.8731867074966431, - 0.8894853591918945, - 0.9053037762641907, - 0.9202105402946472, - 0.9337989687919617, - 0.8099634051322937, - 0.7641159296035767, - 0.7212079763412476, - 0.6824100017547607, - 0.6487802863121033, - 0.6212362051010132, - 0.6005290746688843, - 0.5872236490249634, - 0.5816830396652222, - 0.5840582251548767, - 0.5942844748497009, - 0.612082839012146, - 0.6369678378105164, - 0.6682606339454651, - 0.7051076889038086, - 0.7465038895606995, - 0.7913200855255127, - 0.838333785533905, - 0.8862625360488892, - 0.9337989687919617, - 0.8099634051322937, - 0.7352277040481567, - 0.6642194986343384, - 0.598875880241394, - 0.5409789681434631, - 0.4921083450317383, - 0.4535968601703644, - 0.4264950752258301, - 0.41154229640960693, - 0.40914633870124817, - 0.4193725883960724, - 0.44194212555885315, - 0.47623926401138306, - 0.5213284492492676, - 0.5759798288345337, - 0.6387026309967041, - 0.707785964012146, - 0.7813453674316406, - 0.8573743104934692, - 0.9337989687919617, - 0.8099634647369385, - 0.7145297527313232, - 0.6233882904052734, - 0.5390249490737915, - 0.46374115347862244, - 0.3995903432369232, - 0.34832239151000977, - 0.3113357424736023, - 0.2896392345428467, - 0.2838248610496521, - 0.2940511107444763, - 0.3200390338897705, - 0.3610798716545105, - 0.41605398058891296, - 0.48346179723739624, - 0.561464786529541, - 0.6479350924491882, - 0.7405140995979309, - 0.8366763591766357, - 0.9337989687919617, - 0.8099634647369385, - 0.7042650580406189, - 0.6031388640403748, - 0.5093432664871216, - 0.42543667554855347, - 0.35370802879333496, - 0.2961137294769287, - 0.2542247772216797, - 0.22918397188186646, - 0.221674382686615, - 0.2319006323814392, - 0.2595837712287903, - 0.3039689064025879, - 0.3638452887535095, - 0.4375794529914856, - 0.5231603384017944, - 0.6182533502578735, - 0.7202646732330322, - 0.8264116644859314, - 0.9337989687919617, - 0.8099634647369385, - 0.705545961856842, - 0.6056656837463379, - 0.5130469799041748, - 0.4302164316177368, - 0.3594333529472351, - 0.3026285171508789, - 0.26135140657424927, - 0.23672789335250854, - 0.2294297218322754, - 0.2396559715270996, - 0.2671276926994324, - 0.31109553575515747, - 0.3703600764274597, - 0.4433048367500305, - 0.527940034866333, - 0.6219571232795715, - 0.7227914333343506, - 0.8276925683021545, - 0.9337989687919617, - 0.8099634647369385, - 0.718233585357666, - 0.6306948065757751, - 0.5497349500656128, - 0.47756245732307434, - 0.4161459505558014, - 0.3671606779098511, - 0.3319428563117981, - 0.3114531636238098, - 0.30625057220458984, - 0.31647682189941406, - 0.34185296297073364, - 0.3816870152950287, - 0.4348922669887543, - 0.5000174641609192, - 0.5752861499786377, - 0.6586450934410095, - 0.7478206157684326, - 0.8403801918029785, - 0.9337989687919617, - 0.8099634051322937, - 0.7409530878067017, - 0.6755141019821167, - 0.615431547164917, - 0.5623441934585571, - 0.5177003145217896, - 0.48271745443344116, - 0.4583500027656555, - 0.445262610912323, - 0.4438122510910034, - 0.45403850078582764, - 0.4756624400615692, - 0.5080941915512085, - 0.550449013710022, - 0.601571798324585, - 0.6600678563117981, - 0.724341630935669, - 0.7926399111747742, - 0.8630996942520142, - 0.9337989687919617, - 0.8099634051322937, - 0.7712424397468567, - 0.7352666258811951, - 0.7030172944068909, - 0.6753741502761841, - 0.6530912518501282, - 0.636776328086853, - 0.6268743872642517, - 0.6236556768417358, - 0.62720787525177, - 0.6374341249465942, - 0.6540554761886597, - 0.6766185760498047, - 0.7045078873634338, - 0.7369627356529236, - 0.773097813129425, - 0.8119274377822876, - 0.8523924350738525, - 0.8933890461921692, - 0.9337989687919617, - 0.8099634051322937, - 0.8058193325996399, - 0.8034772872924805, - 0.8030011057853699, - 0.8044037818908691, - 0.8076471090316772, - 0.812642514705658, - 0.8192538619041443, - 0.8273006677627563, - 0.8365635871887207, - 0.8467898368835449, - 0.857700526714325, - 0.8689979910850525, - 0.8803741335868835, - 0.8915186524391174, - 0.9021274447441101, - 0.9119112491607666, - 0.9206030964851379, - 0.9279659390449524, - 0.9337989687919617, - 0.8099634051322937, - 0.8409367799758911, - 0.8727542757987976, - 0.904547929763794, - 0.935450553894043, - 0.9646191596984863, - 0.9912580847740173, - 1.0146406888961792, - 1.03412926197052, - 1.0491920709609985, - 1.0594183206558228, - 1.0645290613174438, - 1.064384937286377, - 1.0589897632598877, - 1.0484906435012817, - 1.0331741571426392, - 1.013458013534546, - 0.9898800849914551, - 0.9630833864212036, - 0.9337989687919617 - ], - "y": [ - 0.9202821850776672, - 0.819007158279419, - 0.7226644158363342, - 0.6338819265365601, - 0.5550814867019653, - 0.48841243982315063, - 0.43569350242614746, - 0.39836251735687256, - 0.3774380087852478, - 0.3734906315803528, - 0.3866279721260071, - 0.4164918065071106, - 0.4622673988342285, - 0.5227063298225403, - 0.5961596965789795, - 0.6806241869926453, - 0.7737956643104553, - 0.873132586479187, - 0.9759253859519958, - 1.079370141029358, - 0.9202821850776672, - 0.8286089301109314, - 0.7416059970855713, - 0.6616467237472534, - 0.5909119844436646, - 0.531331479549408, - 0.4845302700996399, - 0.4517849087715149, - 0.4339887499809265, - 0.43162721395492554, - 0.44476455450057983, - 0.4730425477027893, - 0.5156897902488708, - 0.5715430974960327, - 0.6390787363052368, - 0.7164547443389893, - 0.8015604615211487, - 0.8920741677284241, - 0.9855271577835083, - 1.079370141029358, - 0.9202821850776672, - 0.8482624292373657, - 0.7803769707679749, - 0.7184776067733765, - 0.6642525792121887, - 0.6191811561584473, - 0.5844926834106445, - 0.5611335039138794, - 0.5497406721115112, - 0.5506249666213989, - 0.5637624263763428, - 0.588794469833374, - 0.6250383853912354, - 0.6715055704116821, - 0.7269284129142761, - 0.7897952795028687, - 0.858391284942627, - 0.9308451414108276, - 1.0051807165145874, - 1.079370141029358, - 0.9202821254730225, - 0.8758379817008972, - 0.8347759246826172, - 0.7982159852981567, - 0.7671554088592529, - 0.7424415349960327, - 0.7247483730316162, - 0.7145586609840393, - 0.7121503353118896, - 0.7175890207290649, - 0.730726420879364, - 0.7512040734291077, - 0.77846360206604, - 0.8117612600326538, - 0.8501888513565063, - 0.8926981687545776, - 0.9381296634674072, - 0.9852440357208252, - 1.0327562093734741, - 1.079370141029358, - 0.9202821254730225, - 0.9083473086357117, - 0.8989077806472778, - 0.8922210931777954, - 0.8884695172309875, - 0.8877555131912231, - 0.8900984525680542, - 0.8954344987869263, - 0.9036180973052979, - 0.9144259691238403, - 0.9275633692741394, - 0.9426718950271606, - 0.959339439868927, - 0.9771113395690918, - 0.9955028295516968, - 1.014012336730957, - 1.032134771347046, - 1.0493760108947754, - 1.0652655363082886, - 1.079370141029358, - 0.9202821254730225, - 0.9422675371170044, - 0.9658229947090149, - 0.9903059601783752, - 1.015048623085022, - 1.0393760204315186, - 1.0626245737075806, - 1.0841602087020874, - 1.1033954620361328, - 1.1198055744171143, - 1.1329429149627686, - 1.1424492597579956, - 1.1480650901794434, - 1.1496374607086182, - 1.1471233367919922, - 1.1405913829803467, - 1.1302196979522705, - 1.1162911653518677, - 1.0991857051849365, - 1.079370141029358, - 0.9202821254730225, - 0.973922848701477, - 1.0282701253890991, - 1.0818415880203247, - 1.1331758499145508, - 1.1808725595474243, - 1.2236309051513672, - 1.260284423828125, - 1.2898333072662354, - 1.311471700668335, - 1.3246090412139893, - 1.3288872241973877, - 1.3241894245147705, - 1.3106439113616943, - 1.2886199951171875, - 1.2587186098098755, - 1.2217552661895752, - 1.1787383556365967, - 1.1308410167694092, - 1.079370141029358, - 0.9202821254730225, - 0.9998829364776611, - 1.0794821977615356, - 1.156908631324768, - 1.2300502061843872, - 1.2969119548797607, - 1.3556699752807617, - 1.4047214984893799, - 1.4427285194396973, - 1.4686542749404907, - 1.4817917346954346, - 1.48178231716156, - 1.4686264991760254, - 1.4426828622817993, - 1.404659390449524, - 1.3555930852890015, - 1.2968223094940186, - 1.2299503087997437, - 1.1568012237548828, - 1.079370141029358, - 0.9202821254730225, - 1.0173345804214478, - 1.1139094829559326, - 1.2073724269866943, - 1.2951741218566895, - 1.3749194145202637, - 1.4444332122802734, - 1.5018192529678345, - 1.5455121994018555, - 1.5743203163146973, - 1.5874576568603516, - 1.5845661163330078, - 1.5657241344451904, - 1.531446099281311, - 1.4826668500900269, - 1.4207168817520142, - 1.3472861051559448, - 1.2643775939941406, - 1.1742528676986694, - 1.079370141029358, - 0.9202821254730225, - 1.0243866443634033, - 1.1278212070465088, - 1.2277644872665405, - 1.3214901685714722, - 1.4064416885375977, - 1.4803017377853394, - 1.5410557985305786, - 1.5870463848114014, - 1.6170191764831543, - 1.6301565170288086, - 1.6261001825332642, - 1.6049606800079346, - 1.567314624786377, - 1.5141891241073608, - 1.4470329284667969, - 1.367678165435791, - 1.2782894372940063, - 1.181304931640625, - 1.079370141029358, - 0.9202821254730225, - 1.0202749967575073, - 1.119710087776184, - 1.2158750295639038, - 1.3061466217041016, - 1.3880627155303955, - 1.4593887329101562, - 1.518179178237915, - 1.5628300905227661, - 1.5921237468719482, - 1.6052610874176025, - 1.601883888244629, - 1.5820839405059814, - 1.5464016199111938, - 1.4958101511001587, - 1.4316895008087158, - 1.3557887077331543, - 1.270178198814392, - 1.1771931648254395, - 1.079370141029358, - 0.9202821254730225, - 1.005445122718811, - 1.0904546976089478, - 1.17299222946167, - 1.2508063316345215, - 1.3217742443084717, - 1.3839603662490845, - 1.4356682300567627, - 1.475487470626831, - 1.5023319721221924, - 1.5154693126678467, - 1.5145412683486938, - 1.4995731115341187, - 1.470973253250122, - 1.4295216798782349, - 1.3763492107391357, - 1.31290602684021, - 1.2409229278564453, - 1.1623632907867432, - 1.079370141029358, - 0.9202821254730225, - 0.9815040230751038, - 1.043225646018982, - 1.103763461112976, - 1.1614662408828735, - 1.2147598266601562, - 1.2621904611587524, - 1.3024647235870361, - 1.3344836235046387, - 1.3573739528656006, - 1.3705112934112549, - 1.3735374212265015, - 1.366369605064392, - 1.34920334815979, - 1.3225071430206299, - 1.2870090007781982, - 1.2436772584915161, - 1.1936938762664795, - 1.1384222507476807, - 1.079370141029358, - 0.9202821254730225, - 0.9510461091995239, - 0.983140766620636, - 1.0156904458999634, - 1.0478074550628662, - 1.078615665435791, - 1.1072746515274048, - 1.133002758026123, - 1.1550981998443604, - 1.1729581356048584, - 1.1860954761505127, - 1.1941519975662231, - 1.1969077587127686, - 1.1942875385284424, - 1.1863629817962646, - 1.173350214958191, - 1.1556041240692139, - 1.1336089372634888, - 1.1079643964767456, - 1.079370141029358, - 0.9202821254730225, - 0.9173721075057983, - 0.9167112112045288, - 0.9183174967765808, - 0.9221471548080444, - 0.9280956387519836, - 0.9360007643699646, - 0.9456468224525452, - 0.9567708373069763, - 0.969069242477417, - 0.9822066426277161, - 0.9958246350288391, - 1.009551763534546, - 1.0230135917663574, - 1.035843014717102, - 1.0476899147033691, - 1.058231234550476, - 1.0671794414520264, - 1.07429039478302, - 1.079370141029358, - 0.9202821254730225, - 0.8841310143470764, - 0.8511357307434082, - 0.822196364402771, - 0.7981022596359253, - 0.7795106768608093, - 0.7669286727905273, - 0.7606995701789856, - 0.7609931826591492, - 0.7678015232086182, - 0.7809388637542725, - 0.8000469207763672, - 0.8246044516563416, - 0.8539415597915649, - 0.887257993221283, - 0.92364501953125, - 0.9621101021766663, - 1.0016039609909058, - 1.0410492420196533, - 1.079370141029358, - 0.9202821850776672, - 0.8549249768257141, - 0.7935203313827515, - 0.7377431392669678, - 0.6891149282455444, - 0.6489620208740234, - 0.6183798313140869, - 0.5982024669647217, - 0.5889804363250732, - 0.5909651517868042, - 0.6041025519371033, - 0.628034234046936, - 0.6621074080467224, - 0.7053927183151245, - 0.7567093372344971, - 0.8146576285362244, - 0.8776568174362183, - 0.9439884424209595, - 1.011843204498291, - 1.079370141029358, - 0.9202821850776672, - 0.8329189419746399, - 0.750108540058136, - 0.6741098165512085, - 0.606995701789856, - 0.5505969524383545, - 0.5064521431922913, - 0.4757651686668396, - 0.45937323570251465, - 0.4577234983444214, - 0.4708608388900757, - 0.49842703342437744, - 0.5396701097488403, - 0.5934649705886841, - 0.6583442687988281, - 0.7325384616851807, - 0.814023494720459, - 0.9005767107009888, - 0.9898371696472168, - 1.079370141029358, - 0.9202821850776672, - 0.8204976320266724, - 0.725604772567749, - 0.6381919384002686, - 0.5606435537338257, - 0.49507492780685425, - 0.4432745575904846, - 0.406655490398407, - 0.38621658086776733, - 0.3825153112411499, - 0.3956526517868042, - 0.4252703785896301, - 0.47056037187576294, - 0.5302874445915222, - 0.6028221845626831, - 0.6861863136291504, - 0.7781056761741638, - 0.8760729432106018, - 0.977415919303894, - 1.079370141029358, - 0.9202821850776672, - 0.819007158279419, - 0.7226644158363342, - 0.6338819265365601, - 0.5550814867019653, - 0.48841243982315063, - 0.43569350242614746, - 0.39836251735687256, - 0.3774380087852478, - 0.3734906315803528, - 0.3866279721260071, - 0.4164918065071106, - 0.4622673988342285, - 0.5227063298225403, - 0.5961596965789795, - 0.6806241869926453, - 0.7737956643104553, - 0.873132586479187, - 0.9759253859519958, - 1.079370141029358 - ], - "z": [ - 2.3662092685699463, - 2.407818555831909, - 2.45263409614563, - 2.4994330406188965, - 2.5469393730163574, - 2.5938570499420166, - 2.6389060020446777, - 2.6808578968048096, - 2.7185680866241455, - 2.7510080337524414, - 2.7772927284240723, - 2.7967052459716797, - 2.808716297149658, - 2.812997817993164, - 2.8094334602355957, - 2.7981202602386475, - 2.7793667316436768, - 2.7536845207214355, - 2.721774101257324, - 2.6845061779022217, - 2.3662092685699463, - 2.390627145767212, - 2.418720006942749, - 2.449721574783325, - 2.4827864170074463, - 2.517012357711792, - 2.5514659881591797, - 2.585207462310791, - 2.617316484451294, - 2.6469171047210693, - 2.6732017993927, - 2.695453643798828, - 2.7130658626556396, - 2.725557804107666, - 2.732588768005371, - 2.7339673042297363, - 2.7296552658081055, - 2.7197704315185547, - 2.704582691192627, - 2.6845061779022217, - 2.3662092685699463, - 2.3710248470306396, - 2.38004994392395, - 2.393038749694824, - 2.409636974334717, - 2.429391622543335, - 2.4517641067504883, - 2.4761438369750977, - 2.501866102218628, - 2.528229236602783, - 2.554513931274414, - 2.580003261566162, - 2.6040022373199463, - 2.6258559226989746, - 2.644968032836914, - 2.660817861557007, - 2.6729724407196045, - 2.681100368499756, - 2.6849803924560547, - 2.6845061779022217, - 2.3662092685699463, - 2.351135730743408, - 2.3408145904541016, - 2.335527181625366, - 2.3354179859161377, - 2.340489625930786, - 2.350604295730591, - 2.365485429763794, - 2.384727716445923, - 2.407805919647217, - 2.4340906143188477, - 2.462864875793457, - 2.4933438301086426, - 2.524695873260498, - 2.5560662746429443, - 2.5865988731384277, - 2.6154608726501465, - 2.6418650150299072, - 2.6650915145874023, - 2.6845061779022217, - 2.3662092685699463, - 2.333115577697754, - 2.3052656650543213, - 2.283419132232666, - 2.268172264099121, - 2.2599406242370605, - 2.258948802947998, - 2.265223979949951, - 2.278594970703125, - 2.298696994781494, - 2.324981927871704, - 2.356732130050659, - 2.3930823802948, - 2.4330406188964844, - 2.4755170345306396, - 2.519352912902832, - 2.5633528232574463, - 2.606316089630127, - 2.647071123123169, - 2.6845061779022217, - 2.3662095069885254, - 2.3189167976379395, - 2.2772552967071533, - 2.242361307144165, - 2.215186834335327, - 2.1964731216430664, - 2.18673038482666, - 2.1862244606018066, - 2.1949691772460938, - 2.21272611618042, - 2.23901104927063, - 2.273106575012207, - 2.3140828609466553, - 2.3608219623565674, - 2.4120495319366455, - 2.466367721557617, - 2.5222949981689453, - 2.578305721282959, - 2.6328723430633545, - 2.6845061779022217, - 2.3662095069885254, - 2.3100779056549072, - 2.2598187923431396, - 2.2168030738830566, - 2.182203769683838, - 2.1569647789001465, - 2.1417744159698486, - 2.137047529220581, - 2.1429123878479004, - 2.159209728240967, - 2.1854944229125977, - 2.2210497856140137, - 2.2649056911468506, - 2.315866231918335, - 2.3725411891937256, - 2.433384418487549, - 2.496736526489258, - 2.5608694553375244, - 2.6240334510803223, - 2.6845061779022217, - 2.3662095069885254, - 2.3075571060180664, - 2.2548460960388184, - 2.2095136642456055, - 2.1727967262268066, - 2.1456968784332275, - 2.128952980041504, - 2.1230220794677734, - 2.128065824508667, - 2.143946647644043, - 2.170231580734253, - 2.2062032222747803, - 2.250880479812622, - 2.3030447959899902, - 2.3612732887268066, - 2.4239776134490967, - 2.4894473552703857, - 2.555896520614624, - 2.6215126514434814, - 2.6845061779022217, - 2.3662095069885254, - 2.3116273880004883, - 2.262875556945801, - 2.221283435821533, - 2.187985897064209, - 2.163890838623047, - 2.14965558052063, - 2.1456685066223145, - 2.152038335800171, - 2.1685914993286133, - 2.194876194000244, - 2.230175495147705, - 2.273526906967163, - 2.323747396469116, - 2.379467248916626, - 2.43916654586792, - 2.5012171268463135, - 2.5639262199401855, - 2.6255831718444824, - 2.6845061779022217, - 2.3662092685699463, - 2.321847677230835, - 2.2830374240875244, - 2.2508368492126465, - 2.2261245250701904, - 2.2095746994018555, - 2.2016384601593018, - 2.2025322914123535, - 2.2122321128845215, - 2.230473041534424, - 2.256757974624634, - 2.2903692722320557, - 2.330390691757202, - 2.375730037689209, - 2.4251511096954346, - 2.4773054122924805, - 2.5307705402374268, - 2.58408784866333, - 2.635803461074829, - 2.6845061779022217, - 2.3662092685699463, - 2.3371105194091797, - 2.3131465911865234, - 2.294971227645874, - 2.2830803394317627, - 2.2777979373931885, - 2.279268503189087, - 2.2874515056610107, - 2.3021240234375, - 2.3228859901428223, - 2.349170684814453, - 2.3802614212036133, - 2.4153099060058594, - 2.4533603191375732, - 2.4933743476867676, - 2.5342609882354736, - 2.5749049186706543, - 2.614197254180908, - 2.6510660648345947, - 2.6845061779022217, - 2.3662092685699463, - 2.355761766433716, - 2.349940538406372, - 2.3489041328430176, - 2.3526806831359863, - 2.3611676692962646, - 2.374133348464966, - 2.391223907470703, - 2.411973237991333, - 2.4358155727386475, - 2.4621002674102783, - 2.4901106357574463, - 2.5190823078155518, - 2.548225164413452, - 2.5767440795898438, - 2.6038615703582764, - 2.6288375854492188, - 2.6509909629821777, - 2.669717311859131, - 2.6845061779022217, - 2.3662092685699463, - 2.3757805824279785, - 2.3894317150115967, - 2.4067907333374023, - 2.4273838996887207, - 2.4506494998931885, - 2.4759528636932373, - 2.5026040077209473, - 2.5298757553100586, - 2.5570242404937744, - 2.5833089351654053, - 2.6080129146575928, - 2.630462408065796, - 2.6500446796417236, - 2.6662259101867676, - 2.6785645484924316, - 2.6867241859436035, - 2.6904823780059814, - 2.6897361278533936, - 2.6845061779022217, - 2.3662092685699463, - 2.3949971199035645, - 2.4273409843444824, - 2.4623584747314453, - 2.499094247817993, - 2.536546468734741, - 2.5736935138702393, - 2.6095221042633057, - 2.643054962158203, - 2.673377275466919, - 2.69966197013855, - 2.7211921215057373, - 2.7373805046081543, - 2.7477853298187256, - 2.7521231174468994, - 2.750275135040283, - 2.7422919273376465, - 2.728391647338867, - 2.7089529037475586, - 2.6845061779022217, - 2.3662092685699463, - 2.411329507827759, - 2.4595601558685303, - 2.509585380554199, - 2.5600409507751465, - 2.6095504760742188, - 2.6567635536193848, - 2.700392007827759, - 2.739246129989624, - 2.772265672683716, - 2.798550605773926, - 2.817383289337158, - 2.8282504081726074, - 2.830855369567871, - 2.825127124786377, - 2.8112218379974365, - 2.7895190715789795, - 2.760610580444336, - 2.725285053253174, - 2.6845061779022217, - 2.3662092685699463, - 2.4230074882507324, - 2.482597589492798, - 2.543354034423828, - 2.6036195755004883, - 2.661750316619873, - 2.716160774230957, - 2.765366554260254, - 2.808025360107422, - 2.8429737091064453, - 2.869258403778076, - 2.886162519454956, - 2.8932247161865234, - 2.8902525901794434, - 2.8773269653320312, - 2.8548004627227783, - 2.8232877254486084, - 2.7836482524871826, - 2.7369630336761475, - 2.6845059394836426, - 2.3662092685699463, - 2.4287657737731934, - 2.493957281112671, - 2.560004949569702, - 2.625107765197754, - 2.6874895095825195, - 2.7454488277435303, - 2.7974045276641846, - 2.841939687728882, - 2.8778390884399414, - 2.9041237831115723, - 2.920076847076416, - 2.925262928009033, - 2.9195406436920166, - 2.9030661582946777, - 2.876288652420044, - 2.8399386405944824, - 2.7950077056884766, - 2.7427215576171875, - 2.6845059394836426, - 2.3662092685699463, - 2.427980422973633, - 2.4924075603485107, - 2.5577337741851807, - 2.6221766471862793, - 2.68397855758667, - 2.7414536476135254, - 2.793034553527832, - 2.837313652038574, - 2.8730833530426025, - 2.8993680477142334, - 2.9154508113861084, - 2.9208927154541016, - 2.915545701980591, - 2.899555206298828, - 2.8733575344085693, - 2.837667226791382, - 2.7934582233428955, - 2.741935968399048, - 2.6845059394836426, - 2.3662092685699463, - 2.420736312866211, - 2.478116989135742, - 2.5367863178253174, - 2.595144033432007, - 2.6515979766845703, - 2.704608678817749, - 2.752729654312134, - 2.7946486473083496, - 2.8292219638824463, - 2.855506658554077, - 2.872785806655884, - 2.8805880546569824, - 2.8787004947662354, - 2.8671746253967285, - 2.846324920654297, - 2.8167200088500977, - 2.779167652130127, - 2.734691858291626, - 2.6845059394836426, - 2.3662092685699463, - 2.407818555831909, - 2.45263409614563, - 2.4994330406188965, - 2.5469393730163574, - 2.5938570499420166, - 2.6389060020446777, - 2.6808578968048096, - 2.7185680866241455, - 2.7510077953338623, - 2.7772927284240723, - 2.7967052459716797, - 2.808716297149658, - 2.812997817993164, - 2.8094334602355957, - 2.7981202602386475, - 2.7793667316436768, - 2.7536845207214355, - 2.721774101257324, - 2.6845061779022217 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.9171792268753052, - 1.0193413496017456, - 1.120406150817871, - 1.2176166772842407, - 1.308321237564087, - 1.3900458812713623, - 1.4605611562728882, - 1.5179436206817627, - 1.560628056526184, - 1.5874502658843994, - 1.5976784229278564, - 1.5910335779190063, - 1.5676970481872559, - 1.5283052921295166, - 1.4739329814910889, - 1.4060630798339844, - 1.3265470266342163, - 1.2375537157058716, - 1.1415107250213623, - 1.0410377979278564, - 0.9171792268753052, - 1.0330742597579956, - 1.147497296333313, - 1.2573270797729492, - 1.3595677614212036, - 1.4514305591583252, - 1.530409574508667, - 1.5943505764007568, - 1.6415094137191772, - 1.6705996990203857, - 1.6808278560638428, - 1.6719149351119995, - 1.64410400390625, - 1.598153829574585, - 1.5353176593780518, - 1.457309603691101, - 1.3662574291229248, - 1.2646448612213135, - 1.1552435159683228, - 1.0410377979278564, - 0.9171792268753052, - 1.0343396663665771, - 1.1499934196472168, - 1.260986089706421, - 1.3642897605895996, - 1.4570865631103516, - 1.5368455648422241, - 1.6013908386230469, - 1.6489620208740234, - 1.678261160850525, - 1.688489317893982, - 1.6793675422668457, - 1.65114426612854, - 1.6045897006988525, - 1.5409737825393677, - 1.4620314836502075, - 1.3699164390563965, - 1.2671409845352173, - 1.1565089225769043, - 1.0410377979278564, - 0.9171792268753052, - 1.0230003595352173, - 1.127624273300171, - 1.2281970977783203, - 1.3219753503799438, - 1.4064011573791504, - 1.4791715145111084, - 1.5383014678955078, - 1.5821781158447266, - 1.6096043586730957, - 1.6198325157165527, - 1.6125836372375488, - 1.588054895401001, - 1.5469157695770264, - 1.490288257598877, - 1.4197171926498413, - 1.337127447128296, - 1.2447718381881714, - 1.1451696157455444, - 1.0410377979278564, - 0.9171792268753052, - 1.000285267829895, - 1.0828137397766113, - 1.162513256072998, - 1.2372101545333862, - 1.3048665523529053, - 1.3636372089385986, - 1.4119188785552979, - 1.4483946561813354, - 1.472069501876831, - 1.482297658920288, - 1.4788001775741577, - 1.461672306060791, - 1.4313814640045166, - 1.3887537717819214, - 1.3349518775939941, - 1.2714436054229736, - 1.1999611854553223, - 1.1224545240402222, - 1.0410377979278564, - 0.9171792268753052, - 0.9686558842658997, - 1.0204176902770996, - 1.0710526704788208, - 1.1191797256469727, - 1.1634858846664429, - 1.2027627229690552, - 1.2359389066696167, - 1.262109398841858, - 1.2805603742599487, - 1.2907885313034058, - 1.2925149202346802, - 1.2856923341751099, - 1.2705068588256836, - 1.2473729848861694, - 1.2169214487075806, - 1.1799830198287964, - 1.1375652551651, - 1.0908252000808716, - 1.0410377979278564, - 0.9171792268753052, - 0.93153977394104, - 0.9471977949142456, - 0.963726282119751, - 0.9806744456291199, - 0.99757981300354, - 1.0139813423156738, - 1.0294315814971924, - 1.0435092449188232, - 1.0558301210403442, - 1.0660582780838013, - 1.073914647102356, - 1.0791850090026855, - 1.0817254781723022, - 1.0814669132232666, - 1.0784162282943726, - 1.0726566314697266, - 1.064345359802246, - 1.0537090301513672, - 1.0410377979278564, - 0.9171792268753052, - 0.89295893907547, - 0.8710885643959045, - 0.8521647453308105, - 0.8367035388946533, - 0.8251267671585083, - 0.8177502751350403, - 0.8147752285003662, - 0.8162826895713806, - 0.822231650352478, - 0.8324598073959351, - 0.8466881513595581, - 0.8645285964012146, - 0.8854944705963135, - 0.9090139269828796, - 0.934445321559906, - 0.9610950350761414, - 0.988236129283905, - 1.015128254890442, - 1.0410377979278564, - 0.91717928647995, - 0.8570942878723145, - 0.8003376126289368, - 0.7484573125839233, - 0.7028685212135315, - 0.6648149490356445, - 0.6353343725204468, - 0.6152310967445374, - 0.6050534248352051, - 0.6050790548324585, - 0.6153072118759155, - 0.6354588866233826, - 0.6649845242500305, - 0.70307856798172, - 0.7487019896507263, - 0.8006103038787842, - 0.8573876619338989, - 0.9174851179122925, - 0.9792636036872864, - 1.0410377979278564, - 0.91717928647995, - 0.8278323411941528, - 0.742611825466156, - 0.6638423204421997, - 0.593672513961792, - 0.5340163707733154, - 0.48650115728378296, - 0.4524229168891907, - 0.4327113628387451, - 0.4279041290283203, - 0.43813228607177734, - 0.4631168842315674, - 0.5021763443946838, - 0.5542453527450562, - 0.617903470993042, - 0.6914142370223999, - 0.7727726697921753, - 0.8597593903541565, - 0.95000159740448, - 1.0410377979278564, - 0.91717928647995, - 0.8083440065383911, - 0.7041667699813843, - 0.6074892282485962, - 0.5209485292434692, - 0.446905255317688, - 0.387378990650177, - 0.343993604183197, - 0.31793248653411865, - 0.30990660190582275, - 0.3201347589492798, - 0.3483380079269409, - 0.3937470316886902, - 0.4551231861114502, - 0.5307922959327698, - 0.6186902523040771, - 0.7164195775985718, - 0.8213143348693848, - 0.930513322353363, - 1.0410377979278564, - 0.91717928647995, - 0.8007411956787109, - 0.6891685724258423, - 0.5855047702789307, - 0.49257737398147583, - 0.4129214286804199, - 0.3487093448638916, - 0.3016930818557739, - 0.2731548547744751, - 0.2638733386993408, - 0.27410149574279785, - 0.30356037616729736, - 0.3514465093612671, - 0.4164535403251648, - 0.49680840969085693, - 0.5903191566467285, - 0.6944351196289062, - 0.8063161373138428, - 0.9229105114936829, - 1.0410377979278564, - 0.91717928647995, - 0.8058478236198425, - 0.6992424726486206, - 0.6002711653709412, - 0.5116335153579712, - 0.4357473850250244, - 0.3746827244758606, - 0.330105185508728, - 0.30323076248168945, - 0.2947925925254822, - 0.3050207495689392, - 0.3336362838745117, - 0.3798586130142212, - 0.442426860332489, - 0.5196343660354614, - 0.6093752384185791, - 0.7092015147209167, - 0.8163900375366211, - 0.9280170798301697, - 1.0410377979278564, - 0.91717928647995, - 0.8231104612350464, - 0.7332968711853027, - 0.6501883268356323, - 0.5760519504547119, - 0.5129098892211914, - 0.4624844789505005, - 0.4261511564254761, - 0.4049011468887329, - 0.39931410551071167, - 0.4095422625541687, - 0.4353066682815552, - 0.47590458393096924, - 0.5302286744117737, - 0.5967968702316284, - 0.6737936735153198, - 0.7591186761856079, - 0.8504443764686584, - 0.9452797174453735, - 1.0410377979278564, - 0.91717928647995, - 0.8506583571434021, - 0.7876412868499756, - 0.7298469543457031, - 0.6788517236709595, - 0.636046826839447, - 0.6025997400283813, - 0.5794227719306946, - 0.5671482086181641, - 0.5661109089851379, - 0.576339066028595, - 0.5975537300109863, - 0.6291761994361877, - 0.6703438758850098, - 0.7199338674545288, - 0.7765935063362122, - 0.8387772440910339, - 0.9047888517379761, - 0.972827672958374, - 1.0410377979278564, - 0.9171792268753052, - 0.8855063915252686, - 0.8563867807388306, - 0.8306146860122681, - 0.808893084526062, - 0.7918145656585693, - 0.7798449397087097, - 0.7733106017112732, - 0.7723900079727173, - 0.7771081328392029, - 0.7873362898826599, - 0.8027954697608948, - 0.8230640292167664, - 0.8475890755653381, - 0.8757016658782959, - 0.9066348671913147, - 0.9395450353622437, - 0.9735342860221863, - 1.0076756477355957, - 1.0410377979278564, - 0.9171792268753052, - 0.9238782525062561, - 0.932083785533905, - 0.9415720701217651, - 0.9520841836929321, - 0.9633334875106812, - 0.9750130772590637, - 0.9868044853210449, - 0.9983858466148376, - 1.0094413757324219, - 1.019669532775879, - 1.0287913084030151, - 1.036557912826538, - 1.042757272720337, - 1.0472205877304077, - 1.0498260259628296, - 1.0505024194717407, - 1.0492312908172607, - 1.046047568321228, - 1.0410377979278564, - 0.9171792268753052, - 0.9616156816482544, - 1.0065293312072754, - 1.0506949424743652, - 1.0929079055786133, - 1.132016658782959, - 1.166954517364502, - 1.1967685222625732, - 1.2206451892852783, - 1.2379333972930908, - 1.2481615543365479, - 1.2510507106781006, - 1.2465219497680664, - 1.23469877243042, - 1.215903878211975, - 1.1906496286392212, - 1.1596252918243408, - 1.1236767768859863, - 1.0837849378585815, - 1.0410377979278564, - 0.9171792268753052, - 0.9946292638778687, - 1.0716559886932373, - 1.146158218383789, - 1.2161036729812622, - 1.2795846462249756, - 1.334869384765625, - 1.380449891090393, - 1.4150828123092651, - 1.4378235340118408, - 1.4480516910552979, - 1.4454883337020874, - 1.4302033185958862, - 1.402613639831543, - 1.3634717464447021, - 1.3138455152511597, - 1.255088448524475, - 1.1888034343719482, - 1.1167985200881958, - 1.0410377979278564, - 0.9171792268753052, - 1.0193414688110352, - 1.120406150817871, - 1.2176166772842407, - 1.3083213567733765, - 1.3900458812713623, - 1.4605611562728882, - 1.5179436206817627, - 1.5606281757354736, - 1.5874502658843994, - 1.5976784229278564, - 1.591033697128296, - 1.5676970481872559, - 1.5283052921295166, - 1.4739329814910889, - 1.4060630798339844, - 1.3265470266342163, - 1.2375537157058716, - 1.1415107250213623, - 1.0410377979278564 - ], - "y": [ - 1.0580192804336548, - 1.0994106531143188, - 1.1418431997299194, - 1.1841593980789185, - 1.2252049446105957, - 1.2638602256774902, - 1.299070954322815, - 1.3298765420913696, - 1.3554366827011108, - 1.3750542402267456, - 1.3881940841674805, - 1.3944977521896362, - 1.3937933444976807, - 1.386099934577942, - 1.3716275691986084, - 1.3507710695266724, - 1.324099063873291, - 1.2923393249511719, - 1.256358027458191, - 1.2171367406845093, - 1.0580192804336548, - 1.0630780458450317, - 1.0701689720153809, - 1.0790987014770508, - 1.0896235704421997, - 1.1014565229415894, - 1.1142747402191162, - 1.1277287006378174, - 1.1414512395858765, - 1.1550681591033936, - 1.1682080030441284, - 1.1805123090744019, - 1.1916455030441284, - 1.2013038396835327, - 1.209223985671997, - 1.2151896953582764, - 1.219038486480713, - 1.2206650972366333, - 1.2200254201889038, - 1.2171367406845093, - 1.0580192804336548, - 1.0263148546218872, - 0.997645378112793, - 0.97279292345047, - 0.9524353742599487, - 0.9371281266212463, - 0.9272884726524353, - 0.9231850504875183, - 0.924929678440094, - 0.9324747920036316, - 0.9456146359443665, - 0.9639907479286194, - 0.9871017932891846, - 1.014317512512207, - 1.0448954105377197, - 1.0780014991760254, - 1.1127326488494873, - 1.1481415033340454, - 1.1832622289657593, - 1.2171367406845093, - 1.0580192804336548, - 0.993104875087738, - 0.932131290435791, - 0.876761794090271, - 0.8285067081451416, - 0.7886823415756226, - 0.758374810218811, - 0.7384109497070312, - 0.7293354272842407, - 0.7313956022262573, - 0.7445354461669922, - 0.7683964967727661, - 0.8023277521133423, - 0.845403790473938, - 0.896449625492096, - 0.9540728330612183, - 1.016701579093933, - 1.0826274156570435, - 1.1500523090362549, - 1.2171368598937988, - 1.0580192804336548, - 0.9670469760894775, - 0.8807262778282166, - 0.8014118671417236, - 0.7312672138214111, - 0.6722056269645691, - 0.6258381605148315, - 0.593429684638977, - 0.5758640766143799, - 0.5736206769943237, - 0.5867605209350586, - 0.6149251461029053, - 0.6573464870452881, - 0.712867259979248, - 0.779973030090332, - 0.8568332195281982, - 0.941351592540741, - 1.0312224626541138, - 1.1239943504333496, - 1.2171368598937988, - 1.0580192804336548, - 0.9509649276733398, - 0.849000871181488, - 0.7549084424972534, - 0.6712542772293091, - 0.6003202199935913, - 0.5440410375595093, - 0.503952145576477, - 0.4811468720436096, - 0.47624725103378296, - 0.4893870949745178, - 0.520207941532135, - 0.5678689479827881, - 0.6310701370239258, - 0.7080875039100647, - 0.7968202829360962, - 0.8948481678962708, - 0.9994969964027405, - 1.107912302017212, - 1.2171368598937988, - 1.0580192804336548, - 0.9466014504432678, - 0.8403929471969604, - 0.7422908544540405, - 0.654971182346344, - 0.580815851688385, - 0.5218474268913269, - 0.4796745777130127, - 0.45544761419296265, - 0.4498273730278015, - 0.4629672169685364, - 0.49450868368148804, - 0.5435913801193237, - 0.6088764667510986, - 0.6885831356048584, - 0.7805372476577759, - 0.8822306394577026, - 0.9908890724182129, - 1.1035488843917847, - 1.2171368598937988, - 1.0580192804336548, - 0.9544293880462646, - 0.8558353185653687, - 0.7649264335632324, - 0.6841825842857361, - 0.6158061623573303, - 0.5616622567176819, - 0.523227870464325, - 0.5015512704849243, - 0.49722397327423096, - 0.5103638172149658, - 0.5406123399734497, - 0.587144672870636, - 0.6486912965774536, - 0.7235734462738037, - 0.809748649597168, - 0.9048661589622498, - 1.006331443786621, - 1.1113767623901367, - 1.2171368598937988, - 1.0580192804336548, - 0.9736005067825317, - 0.8936545848846436, - 0.8203623294830322, - 0.7557228207588196, - 0.7014994025230408, - 0.6591710448265076, - 0.6298923492431641, - 0.6144620180130005, - 0.6133009195327759, - 0.6264407634735107, - 0.6535230875015259, - 0.6938091516494751, - 0.7462000846862793, - 0.8092667460441589, - 0.8812888860702515, - 0.9603020548820496, - 1.044150710105896, - 1.1305478811264038, - 1.2171368598937988, - 1.0580192804336548, - 1.0020372867584229, - 0.9497524499893188, - 0.9025911092758179, - 0.8618395328521729, - 0.8286094069480896, - 0.8038071393966675, - 0.7881091833114624, - 0.7819439172744751, - 0.7854794263839722, - 0.798619270324707, - 0.8210049867630005, - 0.8520259857177734, - 0.8908361196517944, - 0.9363767504692078, - 0.9874055981636047, - 1.0425307750701904, - 1.1002485752105713, - 1.158984661102295, - 1.2171368598937988, - 1.0580192804336548, - 1.0366581678390503, - 1.0180498361587524, - 1.002701997756958, - 0.9910332560539246, - 0.9833618402481079, - 0.9798970222473145, - 0.980733335018158, - 0.9858479499816895, - 0.9951013326644897, - 1.0082411766052246, - 1.0249090194702148, - 1.0446500778198242, - 1.0669260025024414, - 1.091129183769226, - 1.1165993213653564, - 1.1426417827606201, - 1.1685459613800049, - 1.1936055421829224, - 1.2171367406845093, - 1.0580192804336548, - 1.0737113952636719, - 1.0911457538604736, - 1.109846591949463, - 1.1293038129806519, - 1.14898681640625, - 1.168358564376831, - 1.186890721321106, - 1.2040778398513794, - 1.2194509506225586, - 1.2325907945632935, - 1.2431389093399048, - 1.250807523727417, - 1.2553876638412476, - 1.2567542791366577, - 1.2548699378967285, - 1.2497862577438354, - 1.241641879081726, - 1.230658769607544, - 1.2171367406845093, - 1.0580191612243652, - 1.1091817617416382, - 1.1611188650131226, - 1.2124139070510864, - 1.2616674900054932, - 1.3075363636016846, - 1.3487690687179565, - 1.3842412233352661, - 1.4129849672317505, - 1.4342162609100342, - 1.447356104850769, - 1.4520459175109863, - 1.4481580257415771, - 1.435798168182373, - 1.4153037071228027, - 1.3872336149215698, - 1.352353572845459, - 1.311614990234375, - 1.2661291360855103, - 1.2171367406845093, - 1.0580191612243652, - 1.1392254829406738, - 1.2203867435455322, - 1.299289345741272, - 1.3737807273864746, - 1.4418292045593262, - 1.5015785694122314, - 1.551398754119873, - 1.5899311304092407, - 1.6161243915557861, - 1.629264235496521, - 1.6289921998977661, - 1.6153156757354736, - 1.5886075496673584, - 1.5495966672897339, - 1.4993468523025513, - 1.4392290115356445, - 1.3708828687667847, - 1.296172857284546, - 1.2171367406845093, - 1.0580191612243652, - 1.1605868339538574, - 1.2625267505645752, - 1.3610584735870361, - 1.4534940719604492, - 1.5373125076293945, - 1.610227108001709, - 1.670249104499817, - 1.7157411575317383, - 1.7454626560211182, - 1.7586023807525635, - 1.7548022270202637, - 1.734165906906128, - 1.6972562074661255, - 1.6450798511505127, - 1.5790603160858154, - 1.5009981393814087, - 1.4130228757858276, - 1.3175342082977295, - 1.2171367406845093, - 1.0580191612243652, - 1.1709508895874023, - 1.2829723358154297, - 1.3910276889801025, - 1.4921696186065674, - 1.583639144897461, - 1.6629414558410645, - 1.7279131412506104, - 1.7767820358276367, - 1.8082150220870972, - 1.821354866027832, - 1.815843105316162, - 1.7918299436569214, - 1.749970555305481, - 1.6914067268371582, - 1.617735743522644, - 1.530967354774475, - 1.4334683418273926, - 1.3278982639312744, - 1.2171367406845093, - 1.0580191612243652, - 1.1691946983337402, - 1.2795077562332153, - 1.3859493732452393, - 1.4856160879135132, - 1.575789213180542, - 1.6540089845657349, - 1.718142032623291, - 1.7664387226104736, - 1.797581672668457, - 1.810721516609192, - 1.805499792098999, - 1.782058835029602, - 1.7410380840301514, - 1.6835566759109497, - 1.6111822128295898, - 1.5258891582489014, - 1.4300038814544678, - 1.3261420726776123, - 1.2171367406845093, - 1.0580191612243652, - 1.1555085182189941, - 1.2525086402893066, - 1.3463739156723022, - 1.4345436096191406, - 1.5146129131317139, - 1.584397792816162, - 1.6419944763183594, - 1.685832142829895, - 1.7147146463394165, - 1.7278544902801514, - 1.7248932123184204, - 1.70591139793396, - 1.6714268922805786, - 1.6223804950714111, - 1.5601098537445068, - 1.4863135814666748, - 1.4030048847198486, - 1.3124558925628662, - 1.2171367406845093, - 1.0580191612243652, - 1.1313754320144653, - 1.2049007415771484, - 1.2765897512435913, - 1.3444868326187134, - 1.4067399501800537, - 1.461651086807251, - 1.5077223777770996, - 1.5436971187591553, - 1.5685938596725464, - 1.5817337036132812, - 1.5827580690383911, - 1.5716391801834106, - 1.5486801862716675, - 1.5145074129104614, - 1.47005295753479, - 1.4165294170379639, - 1.3553968667984009, - 1.2883228063583374, - 1.2171367406845093, - 1.0580192804336548, - 1.0994106531143188, - 1.1418430805206299, - 1.184159278869629, - 1.2252048254013062, - 1.2638602256774902, - 1.2990708351135254, - 1.32987642288208, - 1.3554365634918213, - 1.375054121017456, - 1.3881938457489014, - 1.3944976329803467, - 1.3937932252883911, - 1.3860998153686523, - 1.3716275691986084, - 1.3507709503173828, - 1.324099063873291, - 1.2923392057418823, - 1.256358027458191, - 1.2171367406845093 - ], - "z": [ - 2.6417880058288574, - 2.584395170211792, - 2.532909870147705, - 2.488736391067505, - 2.4530797004699707, - 2.426912546157837, - 2.4109485149383545, - 2.405623197555542, - 2.4110817909240723, - 2.427175283432007, - 2.453464984893799, - 2.4892334938049316, - 2.5335052013397217, - 2.5850727558135986, - 2.642529010772705, - 2.7043073177337646, - 2.7687220573425293, - 2.8340163230895996, - 2.898409128189087, - 2.96014404296875, - 2.6417880058288574, - 2.5972118377685547, - 2.5581934452056885, - 2.525797128677368, - 2.5009069442749023, - 2.484201431274414, - 2.4761364459991455, - 2.4769320487976074, - 2.4865663051605225, - 2.5047767162323, - 2.5310661792755127, - 2.564718008041382, - 2.604814052581787, - 2.6502606868743896, - 2.6998178958892822, - 2.752134323120117, - 2.8057827949523926, - 2.859299898147583, - 2.9112257957458496, - 2.96014404296875, - 2.6417880058288574, - 2.6150941848754883, - 2.593470335006714, - 2.5775063037872314, - 2.5676379203796387, - 2.564133882522583, - 2.5670902729034424, - 2.5764260292053223, - 2.591886520385742, - 2.6130502223968506, - 2.6393399238586426, - 2.6700382232666016, - 2.704308032989502, - 2.7412142753601074, - 2.7797505855560303, - 2.8188652992248535, - 2.857491970062256, - 2.8945767879486084, - 2.929108142852783, - 2.96014404296875, - 2.6417880058288574, - 2.6361043453216553, - 2.634917736053467, - 2.6382603645324707, - 2.6460413932800293, - 2.658048152923584, - 2.6739535331726074, - 2.6933231353759766, - 2.7156293392181396, - 2.740262985229492, - 2.766552686691284, - 2.793781042098999, - 2.8212053775787354, - 2.8480775356292725, - 2.8736648559570312, - 2.897268772125244, - 2.918246030807495, - 2.9360241889953613, - 2.95011830329895, - 2.96014404296875, - 2.6417880058288574, - 2.657965898513794, - 2.678044319152832, - 2.7014758586883545, - 2.727621078491211, - 2.7557671070098877, - 2.7851459980010986, - 2.8149564266204834, - 2.8443851470947266, - 2.8726296424865723, - 2.898919105529785, - 2.922536849975586, - 2.942838430404663, - 2.9592702388763428, - 2.971383571624756, - 2.978848695755005, - 2.981461524963379, - 2.9791507720947266, - 2.971979856491089, - 2.96014404296875, - 2.6417880058288574, - 2.678309440612793, - 2.7181766033172607, - 2.7603020668029785, - 2.803536891937256, - 2.8467013835906982, - 2.888618230819702, - 2.9281444549560547, - 2.9642014503479004, - 2.9958057403564453, - 3.022095203399658, - 3.0423531532287598, - 3.0560264587402344, - 3.0627424716949463, - 3.0623178482055664, - 3.0547642707824707, - 3.040287733078003, - 3.0192830562591553, - 2.992323398590088, - 2.96014404296875, - 2.6417880058288574, - 2.6949307918548584, - 2.7509655952453613, - 2.8083646297454834, - 2.8655617237091064, - 2.92099666595459, - 2.9731576442718506, - 3.0206217765808105, - 3.06209397315979, - 3.0964434146881104, - 3.1227331161499023, - 3.1402456760406494, - 3.1485037803649902, - 3.1472818851470947, - 3.136613368988037, - 3.1167891025543213, - 3.088350296020508, - 3.052072286605835, - 3.008944511413574, - 2.96014404296875, - 2.6417880058288574, - 2.7060282230377197, - 2.772858142852783, - 2.8404548168182373, - 2.9069743156433105, - 2.97060227394104, - 3.0296027660369873, - 3.082366943359375, - 3.127454996109009, - 3.163637161254883, - 3.189926862716675, - 3.205606698989868, - 3.2102489471435547, - 3.2037270069122314, - 3.186218738555908, - 3.1582019329071045, - 3.1204404830932617, - 3.073964834213257, - 3.0200421810150146, - 2.96014404296875, - 2.6417880058288574, - 2.710399866104126, - 2.781481981277466, - 2.853095531463623, - 2.9232871532440186, - 2.990142345428467, - 3.051837205886841, - 3.1066887378692627, - 3.1532013416290283, - 3.190105438232422, - 3.216395139694214, - 3.2313530445098877, - 3.2345709800720215, - 3.225961208343506, - 3.205758810043335, - 3.1745147705078125, - 3.1330811977386475, - 3.0825884342193604, - 3.024413824081421, - 2.96014404296875, - 2.6417880058288574, - 2.707571268081665, - 2.775902271270752, - 2.844916820526123, - 2.9127326011657715, - 2.977499485015869, - 3.0374510288238525, - 3.090952157974243, - 3.136542797088623, - 3.1729800701141357, - 3.1992697715759277, - 3.2146947383880615, - 3.218834161758423, - 3.2115752696990967, - 3.1931161880493164, - 3.1639599800109863, - 3.1249024868011475, - 3.0770087242126465, - 3.02158522605896, - 2.96014404296875, - 2.6417880058288574, - 2.6978495121002197, - 2.7567238807678223, - 2.816804885864258, - 2.8764538764953613, - 2.9340438842773438, - 2.988003730773926, - 3.0368618965148926, - 3.079285144805908, - 3.114116668701172, - 3.140406370162964, - 3.1574368476867676, - 3.1647439002990723, - 3.16212797164917, - 3.149660348892212, - 3.1276814937591553, - 3.0967905521392822, - 3.057830333709717, - 3.0118634700775146, - 2.96014404296875, - 2.6417880058288574, - 2.6822879314422607, - 2.726024866104126, - 2.771806240081787, - 2.818382978439331, - 2.8644845485687256, - 2.908853530883789, - 2.950279474258423, - 2.9876327514648438, - 3.0198941230773926, - 3.0461838245391846, - 3.065784454345703, - 3.0781617164611816, - 3.082977533340454, - 3.0801010131835938, - 3.069610357284546, - 3.0517919063568115, - 3.0271315574645996, - 2.9963018894195557, - 2.96014404296875, - 2.6417880058288574, - 2.6625726222991943, - 2.6871323585510254, - 2.714797019958496, - 2.744812250137329, - 2.7763590812683105, - 2.808577299118042, - 2.840587854385376, - 2.8715176582336426, - 2.9005229473114014, - 2.9268124103546143, - 2.949669361114502, - 2.9684698581695557, - 2.982701539993286, - 2.991975784301758, - 2.996039867401123, - 2.9947826862335205, - 2.98823881149292, - 2.9765865802764893, - 2.96014404296875, - 2.6417880058288574, - 2.6408402919769287, - 2.6442606449127197, - 2.6519551277160645, - 2.6637144088745117, - 2.679217576980591, - 2.6980416774749756, - 2.7196733951568604, - 2.7435224056243896, - 2.7689385414123535, - 2.7952280044555664, - 2.821674346923828, - 2.84755539894104, - 2.8721659183502197, - 2.894834280014038, - 2.9149420261383057, - 2.931940793991089, - 2.9453670978546143, - 2.9548542499542236, - 2.96014404296875, - 2.6417880058288574, - 2.619446039199829, - 2.602055549621582, - 2.590090751647949, - 2.5838780403137207, - 2.5835869312286377, - 2.5892252922058105, - 2.6006393432617188, - 2.6175179481506348, - 2.6394004821777344, - 2.6656901836395264, - 2.695669651031494, - 2.7285215854644775, - 2.7633495330810547, - 2.799203395843506, - 2.8351054191589355, - 2.8700764179229736, - 2.9031620025634766, - 2.933459997177124, - 2.96014404296875, - 2.6417880058288574, - 2.600708246231079, - 2.5650906562805176, - 2.53590726852417, - 2.5139541625976562, - 2.4998297691345215, - 2.493919610977173, - 2.496384859085083, - 2.5071585178375244, - 2.5259463787078857, - 2.5522358417510986, - 2.585310220718384, - 2.624267101287842, - 2.668043851852417, - 2.7154462337493896, - 2.765181541442871, - 2.8158929347991943, - 2.866197109222412, - 2.914721965789795, - 2.96014404296875, - 2.6417880058288574, - 2.5866570472717285, - 2.537371873855591, - 2.495276689529419, - 2.461520195007324, - 2.4370226860046387, - 2.422452688217163, - 2.4182074069976807, - 2.424402952194214, - 2.4408700466156006, - 2.4671597480773926, - 2.5025546550750732, - 2.5460894107818604, - 2.596576690673828, - 2.652639150619507, - 2.712747573852539, - 2.7752623558044434, - 2.8384783267974854, - 2.9006710052490234, - 2.96014404296875, - 2.6417880058288574, - 2.578815460205078, - 2.5219027996063232, - 2.472602128982544, - 2.432258129119873, - 2.4019718170166016, - 2.382568836212158, - 2.3745787143707275, - 2.3782193660736084, - 2.3933913707733154, - 2.4196810722351074, - 2.4563710689544678, - 2.5024609565734863, - 2.5566930770874023, - 2.6175882816314697, - 2.683485746383667, - 2.7525877952575684, - 2.8230092525482178, - 2.892829418182373, - 2.96014404296875, - 2.6417880058288574, - 2.578033447265625, - 2.520359754562378, - 2.4703402519226074, - 2.4293394088745117, - 2.398475408554077, - 2.3785905838012695, - 2.3702268600463867, - 2.373612642288208, - 2.388655424118042, - 2.414945125579834, - 2.4517643451690674, - 2.4981088638305664, - 2.5527145862579346, - 2.6140921115875244, - 2.6805667877197266, - 2.750325918197632, - 2.8214662075042725, - 2.89204740524292, - 2.96014404296875, - 2.6417880058288574, - 2.584395170211792, - 2.532909870147705, - 2.488736391067505, - 2.4530797004699707, - 2.426912546157837, - 2.4109485149383545, - 2.405623197555542, - 2.4110817909240723, - 2.427175283432007, - 2.453464984893799, - 2.4892334938049316, - 2.5335052013397217, - 2.5850727558135986, - 2.642529010772705, - 2.7043073177337646, - 2.7687220573425293, - 2.8340163230895996, - 2.898409128189087, - 2.96014404296875 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 1.148295521736145, - 1.2487369775772095, - 1.344749093055725, - 1.4337129592895508, - 1.5132019519805908, - 1.581047773361206, - 1.635399580001831, - 1.6747750043869019, - 1.6981000900268555, - 1.7047381401062012, - 1.6945085525512695, - 1.6676902770996094, - 1.6250145435333252, - 1.5676459074020386, - 1.4971487522125244, - 1.4154465198516846, - 1.3247673511505127, - 1.2275850772857666, - 1.1265504360198975, - 1.0244195461273193, - 1.148295521736145, - 1.2182338237762451, - 1.2845747470855713, - 1.3455088138580322, - 1.399374008178711, - 1.4447009563446045, - 1.4802531003952026, - 1.5050609111785889, - 1.5184475183486938, - 1.520047903060913, - 1.5098183155059814, - 1.4880378246307373, - 1.4553005695343018, - 1.4124994277954102, - 1.3608020544052124, - 1.3016184568405151, - 1.2365632057189941, - 1.1674107313156128, - 1.096047282218933, - 1.0244195461273193, - 1.1482956409454346, - 1.1800601482391357, - 1.2092688083648682, - 1.2351247072219849, - 1.2569226026535034, - 1.274067997932434, - 1.2860931158065796, - 1.2926700115203857, - 1.293619155883789, - 1.2889147996902466, - 1.278685212135315, - 1.263209342956543, - 1.242909550666809, - 1.2183393239974976, - 1.190169095993042, - 1.1591670513153076, - 1.1261789798736572, - 1.0921046733856201, - 1.0578736066818237, - 1.0244195461273193, - 1.1482956409454346, - 1.1383527517318726, - 1.1269917488098145, - 1.1145222187042236, - 1.1012845039367676, - 1.087639570236206, - 1.0739597082138062, - 1.0606180429458618, - 1.047978401184082, - 1.0363857746124268, - 1.0261561870574951, - 1.0175687074661255, - 1.0108575820922852, - 1.0062059164047241, - 1.003740668296814, - 1.0035289525985718, - 1.005576491355896, - 1.0098276138305664, - 1.01616632938385, - 1.0244195461273193, - 1.1482956409454346, - 1.0976313352584839, - 1.0466595888137817, - 0.9967706799507141, - 0.949325442314148, - 0.9056181311607361, - 0.8668408989906311, - 0.8340514898300171, - 0.8081443309783936, - 0.7898261547088623, - 0.7795965671539307, - 0.777734637260437, - 0.7842910885810852, - 0.7990871667861938, - 0.8217191696166992, - 0.8515698313713074, - 0.8878249526023865, - 0.9294955134391785, - 0.9754448533058167, - 1.0244195461273193, - 1.1482956409454346, - 1.062308669090271, - 0.9769776463508606, - 0.8946302533149719, - 0.8175126314163208, - 0.7477284669876099, - 0.6871812343597412, - 0.6375224590301514, - 0.6001067161560059, - 0.5759546756744385, - 0.5657250881195068, - 0.5696969032287598, - 0.5877619981765747, - 0.6194274425506592, - 0.6638295650482178, - 0.719757080078125, - 0.7856845855712891, - 0.8598135709762573, - 0.940122127532959, - 1.0244196653366089, - 1.1482956409454346, - 1.03621244430542, - 0.9254969358444214, - 0.8191694021224976, - 0.7201300263404846, - 0.6310804486274719, - 0.5544496178627014, - 0.4923277497291565, - 0.44640958309173584, - 0.41794753074645996, - 0.4077179431915283, - 0.41599977016448975, - 0.44256728887557983, - 0.4866957664489746, - 0.5471814274787903, - 0.622374415397644, - 0.7102237343788147, - 0.8083329200744629, - 0.9140259027481079, - 1.0244196653366089, - 1.1482956409454346, - 1.0221705436706543, - 0.8977962732315063, - 0.778565526008606, - 0.6677305102348328, - 0.5683146119117737, - 0.48302948474884033, - 0.41420161724090576, - 0.36370837688446045, - 0.3329271674156189, - 0.32269757986068726, - 0.33329856395721436, - 0.3644411563873291, - 0.4152756929397583, - 0.48441559076309204, - 0.5699748992919922, - 0.6696198582649231, - 0.7806322574615479, - 0.8999840021133423, - 1.0244196653366089, - 1.1482956409454346, - 1.0217047929763794, - 0.8968774676322937, - 0.7772186994552612, - 0.6659923791885376, - 0.5662326216697693, - 0.48066049814224243, - 0.4116101861000061, - 0.36096519231796265, - 0.33010703325271606, - 0.3198774456977844, - 0.33055537939071655, - 0.36184972524642944, - 0.4129066467285156, - 0.4823336601257324, - 0.5682368278503418, - 0.6682730317115784, - 0.7797133922576904, - 0.8995182514190674, - 1.0244196653366089, - 1.1482956409454346, - 1.0348654985427856, - 0.9228399991989136, - 0.8152748346328735, - 0.7151040434837341, - 0.6250602006912231, - 0.5475992560386658, - 0.4848341941833496, - 0.43847715854644775, - 0.4097926616668701, - 0.3995630741119385, - 0.40806734561920166, - 0.43507373332977295, - 0.47984546422958374, - 0.5411611795425415, - 0.6173484325408936, - 0.7063291072845459, - 0.8056759834289551, - 0.9126790165901184, - 1.0244196653366089, - 1.1482956409454346, - 1.0602266788482666, - 0.9728705286979675, - 0.8886099457740784, - 0.8097434639930725, - 0.7384223341941833, - 0.6765918731689453, - 0.6259387731552124, - 0.587844729423523, - 0.5633488297462463, - 0.5531192421913147, - 0.5574349761009216, - 0.5761783719062805, - 0.6088381409645081, - 0.6545233130455017, - 0.7119878530502319, - 0.7796642780303955, - 0.8557064533233643, - 0.9380401372909546, - 1.0244196653366089, - 1.1482956409454346, - 1.0950398445129395, - 1.0415472984313965, - 0.9892771244049072, - 0.9396549463272095, - 0.8940345048904419, - 0.8536601066589355, - 0.8196330666542053, - 0.7928816080093384, - 0.7741353511810303, - 0.7639057636260986, - 0.7624717950820923, - 0.7698726654052734, - 0.7859063148498535, - 0.810135543346405, - 0.8418993949890137, - 0.8803313970565796, - 0.924383282661438, - 0.9728533625602722, - 1.0244195461273193, - 1.1482956409454346, - 1.1355326175689697, - 1.121428370475769, - 1.1063673496246338, - 1.090760588645935, - 1.0750337839126587, - 1.0596157312393188, - 1.0449272394180298, - 1.0313687324523926, - 1.0193103551864624, - 1.0090806484222412, - 1.000959038734436, - 0.9951667785644531, - 0.9918619990348816, - 0.9911348223686218, - 0.9930050373077393, - 0.9974216818809509, - 1.004264235496521, - 1.0133461952209473, - 1.0244195461273193, - 1.1482956409454346, - 1.1773170232772827, - 1.203857183456421, - 1.2271924018859863, - 1.2466859817504883, - 1.2618061304092407, - 1.272140622138977, - 1.2774072885513306, - 1.2774627208709717, - 1.2723053693771362, - 1.262075662612915, - 1.2470530271530151, - 1.2276469469070435, - 1.204386830329895, - 1.1779072284698486, - 1.148930311203003, - 1.1182466745376587, - 1.0866931676864624, - 1.0551304817199707, - 1.0244195461273193, - 1.148295521736145, - 1.2158647775650024, - 1.2799012660980225, - 1.3386585712432861, - 1.390533685684204, - 1.4341115951538086, - 1.4682036638259888, - 1.4918800592422485, - 1.5044949054718018, - 1.5057039260864258, - 1.4954743385314941, - 1.4740850925445557, - 1.4421195983886719, - 1.4004499912261963, - 1.3502126932144165, - 1.2927781343460083, - 1.2297128438949585, - 1.162737250328064, - 1.0936782360076904, - 1.0244195461273193, - 1.148295521736145, - 1.246998906135559, - 1.341320276260376, - 1.4286869764328003, - 1.5067157745361328, - 1.5732784271240234, - 1.6265590190887451, - 1.6651043891906738, - 1.6878631114959717, - 1.694214105606079, - 1.6839845180511475, - 1.6574532985687256, - 1.6153440475463867, - 1.5588053464889526, - 1.4893795251846313, - 1.4089603424072266, - 1.3197412490844727, - 1.2241562604904175, - 1.124812364578247, - 1.0244195461273193, - 1.148295521736145, - 1.2673454284667969, - 1.3814584016799927, - 1.4875218868255615, - 1.5826425552368164, - 1.6642258167266846, - 1.7300465106964111, - 1.7783088684082031, - 1.80769681930542, - 1.8174082040786743, - 1.8071786165237427, - 1.7772870063781738, - 1.728548526763916, - 1.662292718887329, - 1.580327033996582, - 1.4848870038986206, - 1.3785761594772339, - 1.2642943859100342, - 1.1451588869094849, - 1.0244195461273193, - 1.148295521736145, - 1.2746995687484741, - 1.3959660530090332, - 1.5087871551513672, - 1.6100857257843018, - 1.6970980167388916, - 1.7674511671066284, - 1.819225788116455, - 1.851009726524353, - 1.8619358539581299, - 1.8517062664031982, - 1.820599913597107, - 1.7694653272628784, - 1.699697494506836, - 1.613199234008789, - 1.5123300552368164, - 1.399841547012329, - 1.2788020372390747, - 1.152513027191162, - 1.0244195461273193, - 1.148295521736145, - 1.2682642936706543, - 1.3832709789276123, - 1.4901787042617798, - 1.586071252822876, - 1.6683329343795776, - 1.7347197532653809, - 1.7834210395812988, - 1.813108205795288, - 1.8229715824127197, - 1.812741994857788, - 1.782698392868042, - 1.7336606979370117, - 1.6669660806655884, - 1.5844340324401855, - 1.4883158206939697, - 1.3812329769134521, - 1.2661069631576538, - 1.1460777521133423, - 1.0244195461273193, - 1.148295521736145, - 1.2487369775772095, - 1.344749093055725, - 1.4337129592895508, - 1.5132019519805908, - 1.5810476541519165, - 1.635399580001831, - 1.6747748851776123, - 1.6980998516082764, - 1.7047381401062012, - 1.6945085525512695, - 1.6676900386810303, - 1.6250145435333252, - 1.567645788192749, - 1.4971487522125244, - 1.415446400642395, - 1.3247672319412231, - 1.2275850772857666, - 1.1265504360198975, - 1.0244195461273193 - ], - "y": [ - 1.3549277782440186, - 1.2651169300079346, - 1.1755852699279785, - 1.0887752771377563, - 1.0070548057556152, - 0.9326528310775757, - 0.8675990104675293, - 0.8136677742004395, - 0.7723302841186523, - 0.7447140216827393, - 0.7315723896026611, - 0.7332637310028076, - 0.7497419714927673, - 0.7805576920509338, - 0.824870228767395, - 0.8814709186553955, - 0.9488158226013184, - 1.025067925453186, - 1.1081472635269165, - 1.195787787437439, - 1.3549277782440186, - 1.2426680326461792, - 1.1313000917434692, - 1.0238616466522217, - 0.9232832193374634, - 0.8323085904121399, - 0.7534191608428955, - 0.6887668371200562, - 0.6401152014732361, - 0.6087913513183594, - 0.5956497192382812, - 0.6010486483573914, - 0.6248409748077393, - 0.6663777232170105, - 0.7245259284973145, - 0.7976993918418884, - 0.8839021325111389, - 0.980782687664032, - 1.0856984853744507, - 1.195787787437439, - 1.3549277782440186, - 1.2322667837142944, - 1.1107810735702515, - 0.9937846660614014, - 0.8844689130783081, - 0.7858154773712158, - 0.7005155682563782, - 0.6308957934379578, - 0.5788552165031433, - 0.5458135008811951, - 0.5326718688011169, - 0.5397886633872986, - 0.5669699311256409, - 0.6134741306304932, - 0.6780328154563904, - 0.7588850259780884, - 0.8538252115249634, - 0.960263729095459, - 1.0752971172332764, - 1.195787787437439, - 1.3549277782440186, - 1.2350400686264038, - 1.116252064704895, - 1.001803994178772, - 0.8948178291320801, - 0.7982118725776672, - 0.7146211862564087, - 0.6463258266448975, - 0.5951888561248779, - 0.5626051425933838, - 0.5494635105133057, - 0.5561223030090332, - 0.5823999643325806, - 0.6275797486305237, - 0.690429151058197, - 0.7692340016365051, - 0.861844539642334, - 0.9657346606254578, - 1.0780704021453857, - 1.195787787437439, - 1.3549277782440186, - 1.2506873607635498, - 1.1471199989318848, - 1.0470505952835083, - 0.9532087445259094, - 0.8681542873382568, - 0.7942073345184326, - 0.7333849668502808, - 0.6873461008071899, - 0.6573466658592224, - 0.6442050337791443, - 0.6482795476913452, - 0.6694591045379639, - 0.7071660161018372, - 0.7603716850280762, - 0.8276249170303345, - 0.9070910811424255, - 0.9966025948524475, - 1.0937178134918213, - 1.195787787437439, - 1.3549277782440186, - 1.2775132656097412, - 1.2000399827957153, - 1.124621033668518, - 1.053313970565796, - 0.9880635738372803, - 0.9306498765945435, - 0.8826388716697693, - 0.8453402519226074, - 0.8197713494300842, - 0.8066296577453613, - 0.8062736988067627, - 0.8187130689620972, - 0.8436084985733032, - 0.8802809715270996, - 0.9277300834655762, - 0.9846615791320801, - 1.0495225191116333, - 1.1205437183380127, - 1.195787787437439, - 1.3549277782440186, - 1.3126105070114136, - 1.2692772150039673, - 1.2261096239089966, - 1.1842855215072632, - 1.144945502281189, - 1.1091629266738892, - 1.0779136419296265, - 1.0520501136779785, - 1.0322778224945068, - 1.0191361904144287, - 1.0129835605621338, - 1.0139877796173096, - 1.022121548652649, - 1.0371628999710083, - 1.0587016344070435, - 1.0861501693725586, - 1.1187597513198853, - 1.155640959739685, - 1.1957876682281494, - 1.3549277782440186, - 1.3521759510040283, - 1.347328782081604, - 1.3405184745788574, - 1.3319306373596191, - 1.3217997550964355, - 1.3104019165039062, - 1.2980482578277588, - 1.2850756645202637, - 1.2718379497528076, - 1.2586963176727295, - 1.246009111404419, - 1.2341225147247314, - 1.2233606576919556, - 1.2140170335769653, - 1.2063467502593994, - 1.2005589008331299, - 1.1968114376068115, - 1.1952064037322998, - 1.1957876682281494, - 1.3549277782440186, - 1.3919219970703125, - 1.425736665725708, - 1.4554493427276611, - 1.4802496433258057, - 1.499461054801941, - 1.5125595331192017, - 1.5191876888275146, - 1.519164800643921, - 1.5124915838241577, - 1.49934983253479, - 1.4800982475280762, - 1.4552618265151978, - 1.4255181550979614, - 1.3916784524917603, - 1.3546658754348755, - 1.3154898881912231, - 1.2752193212509155, - 1.234952449798584, - 1.1957876682281494, - 1.354927659034729, - 1.4275414943695068, - 1.4960041046142578, - 1.558448076248169, - 1.6131699085235596, - 1.658677339553833, - 1.6937286853790283, - 1.7173680067062378, - 1.7289503812789917, - 1.72816002368927, - 1.7150182723999023, - 1.689883828163147, - 1.653442144393921, - 1.606687307357788, - 1.5508947372436523, - 1.4875861406326294, - 1.4184885025024414, - 1.3454866409301758, - 1.2705719470977783, - 1.1957876682281494, - 1.354927659034729, - 1.4551745653152466, - 1.5505164861679077, - 1.638352870941162, - 1.716287612915039, - 1.7821948528289795, - 1.8342770338058472, - 1.8711133003234863, - 1.891698956489563, - 1.8954722881317139, - 1.8823306560516357, - 1.8526324033737183, - 1.807187557220459, - 1.747235655784607, - 1.6744123697280884, - 1.5907037258148193, - 1.4983932971954346, - 1.3999991416931152, - 1.298205018043518, - 1.1957876682281494, - 1.354927659034729, - 1.4718267917633057, - 1.5833666324615479, - 1.68650484085083, - 1.778428077697754, - 1.8566287755966187, - 1.9189739227294922, - 1.9637629985809326, - 1.9897741079330444, - 1.996297836303711, - 1.9831562042236328, - 1.9507075548171997, - 1.8998370170593262, - 1.831932544708252, - 1.748846173286438, - 1.6528441905975342, - 1.546545386314392, - 1.4328492879867554, - 1.3148572444915771, - 1.1957876682281494, - 1.354927659034729, - 1.4756934642791748, - 1.5909947156906128, - 1.6976860761642456, - 1.7928575277328491, - 1.8739128112792969, - 1.9386411905288696, - 1.9852769374847412, - 2.0125479698181152, - 2.019710063934326, - 2.006568431854248, - 1.9734814167022705, - 1.9213510751724243, - 1.851599931716919, - 1.7661303281784058, - 1.667273759841919, - 1.5577266216278076, - 1.4404773712158203, - 1.3187239170074463, - 1.1957876682281494, - 1.354927659034729, - 1.466355800628662, - 1.5725740194320679, - 1.670684814453125, - 1.758012294769287, - 1.8321740627288818, - 1.891147494316101, - 1.9333237409591675, - 1.9575523138046265, - 1.963172435760498, - 1.95003080368042, - 1.9184857606887817, - 1.8693978786468506, - 1.8041062355041504, - 1.7243915796279907, - 1.632428526878357, - 1.5307254791259766, - 1.4220566749572754, - 1.3093862533569336, - 1.1957876682281494, - 1.354927659034729, - 1.4448256492614746, - 1.5301008224487305, - 1.6084272861480713, - 1.677668571472168, - 1.7359358072280884, - 1.781639575958252, - 1.8135335445404053, - 1.8307472467422485, - 1.8328113555908203, - 1.8196697235107422, - 1.7916806936264038, - 1.7496076822280884, - 1.6945983171463013, - 1.6281532049179077, - 1.5520846843719482, - 1.4684678316116333, - 1.3795833587646484, - 1.2878559827804565, - 1.1957876682281494, - 1.3549277782440186, - 1.413435935974121, - 1.4681777954101562, - 1.5176599025726318, - 1.5605326890945435, - 1.5956265926361084, - 1.6219844818115234, - 1.6388872861862183, - 1.6458740234375, - 1.6427538394927979, - 1.6296122074127197, - 1.6068074703216553, - 1.5749614238739014, - 1.5349432229995728, - 1.4878439903259277, - 1.4349489212036133, - 1.3777004480361938, - 1.3176603317260742, - 1.2564663887023926, - 1.1957876682281494, - 1.3549277782440186, - 1.375588297843933, - 1.3935149908065796, - 1.408218502998352, - 1.4192979335784912, - 1.4264512062072754, - 1.4294828176498413, - 1.4283103942871094, - 1.4229658842086792, - 1.4135949611663818, - 1.4004533290863037, - 1.3838993310928345, - 1.364384651184082, - 1.3424415588378906, - 1.3186686038970947, - 1.293714165687561, - 1.268259048461914, - 1.2429975271224976, - 1.2186187505722046, - 1.1957876682281494, - 1.3549277782440186, - 1.3353842496871948, - 1.3142035007476807, - 1.29196298122406, - 1.269269585609436, - 1.2467422485351562, - 1.224995493888855, - 1.204622507095337, - 1.1861789226531982, - 1.1701680421829224, - 1.1570262908935547, - 1.1471123695373535, - 1.1406967639923096, - 1.1379541158676147, - 1.1389596462249756, - 1.1436858177185059, - 1.152003526687622, - 1.1636860370635986, - 1.1784147024154663, - 1.1957876682281494, - 1.3549277782440186, - 1.297180414199829, - 1.2388378381729126, - 1.1814913749694824, - 1.1267054080963135, - 1.0759742259979248, - 1.030681848526001, - 0.9920634627342224, - 0.9611725807189941, - 0.9388519525527954, - 0.9257102608680725, - 0.9221060276031494, - 0.9281376600265503, - 0.9436404705047607, - 0.9681916236877441, - 1.0011216402053833, - 1.0415319204330444, - 1.0883204936981201, - 1.1402108669281006, - 1.1957876682281494, - 1.3549277782440186, - 1.265116810798645, - 1.1755852699279785, - 1.0887752771377563, - 1.0070546865463257, - 0.9326528310775757, - 0.8675990104675293, - 0.8136677742004395, - 0.7723301649093628, - 0.7447139024734497, - 0.7315722703933716, - 0.7332636117935181, - 0.7497419118881226, - 0.7805576324462891, - 0.8248701691627502, - 0.8814708590507507, - 0.9488158226013184, - 1.025067925453186, - 1.1081472635269165, - 1.195787787437439 - ], - "z": [ - 3.235830545425415, - 3.2385990619659424, - 3.2369496822357178, - 3.2309272289276123, - 3.220695734024048, - 3.2065346240997314, - 3.1888301372528076, - 3.168065071105957, - 3.144805908203125, - 3.119687080383301, - 3.093393564224243, - 3.066642999649048, - 3.0401649475097656, - 3.014681339263916, - 2.9908876419067383, - 2.969432830810547, - 2.950901985168457, - 2.935800790786743, - 2.9245409965515137, - 2.9174296855926514, - 3.235830545425415, - 3.2616868019104004, - 3.2824952602386475, - 3.2976882457733154, - 3.3068511486053467, - 3.309734344482422, - 3.3062591552734375, - 3.296520233154297, - 3.2807834148406982, - 3.2594776153564453, - 3.233184337615967, - 3.202620506286621, - 3.1686201095581055, - 3.132110595703125, - 3.094087600708008, - 3.0555882453918457, - 3.01766300201416, - 2.9813461303710938, - 2.9476284980773926, - 2.9174296855926514, - 3.235830545425415, - 3.2817370891571045, - 3.322049140930176, - 3.3556666374206543, - 3.3816728591918945, - 3.399358034133911, - 3.40824031829834, - 3.4080770015716553, - 3.3988728523254395, - 3.380878448486328, - 3.3545851707458496, - 3.3207099437713623, - 3.280176877975464, - 3.2340915203094482, - 3.183711051940918, - 3.1304097175598145, - 3.075641393661499, - 3.020900249481201, - 2.967679023742676, - 2.9174296855926514, - 3.235830545425415, - 3.2965776920318604, - 3.351325035095215, - 3.3985795974731445, - 3.4370522499084473, - 3.465693473815918, - 3.48372220993042, - 3.4906463623046875, - 3.4862771034240723, - 3.470734119415283, - 3.4444408416748047, - 3.408114433288574, - 3.362746238708496, - 3.3095734119415283, - 3.250046491622925, - 3.1857893466949463, - 3.1185545921325684, - 3.0501761436462402, - 2.9825193881988525, - 2.9174296855926514, - 3.235830545425415, - 3.3045997619628906, - 3.3671507835388184, - 3.4217770099639893, - 3.4669885635375977, - 3.5015523433685303, - 3.5245251655578613, - 3.535280466079712, - 3.533525228500366, - 3.5193068981170654, - 3.493013620376587, - 3.455362319946289, - 3.4073803424835205, - 3.3503763675689697, - 3.285905361175537, - 3.2157256603240967, - 3.141752004623413, - 3.0660018920898438, - 2.990541696548462, - 2.9174296855926514, - 3.235830545425415, - 3.304934501647949, - 3.3678109645843506, - 3.4227449893951416, - 3.4682376384735107, - 3.5030484199523926, - 3.5262274742126465, - 3.537142753601074, - 3.535496473312378, - 3.521333694458008, - 3.49504017829895, - 3.45733380317688, - 3.409242630004883, - 3.352078914642334, - 3.2874014377593994, - 3.2169747352600098, - 3.1427197456359863, - 3.066662073135376, - 2.9908764362335205, - 2.9174296855926514, - 3.235830545425415, - 3.2975454330444336, - 3.3532345294952393, - 3.4013783931732178, - 3.440664052963257, - 3.470019817352295, - 3.488645076751709, - 3.4960315227508545, - 3.4919776916503906, - 3.4765944480895996, - 3.450300931930542, - 3.4138150215148926, - 3.368131399154663, - 3.3144962787628174, - 3.254373073577881, - 3.189401149749756, - 3.1213533878326416, - 3.0520856380462646, - 2.983487367630005, - 2.9174296855926514, - 3.235830545425415, - 3.283233404159546, - 3.325000524520874, - 3.3599929809570312, - 3.387255907058716, - 3.406045913696289, - 3.4158501625061035, - 3.4164013862609863, - 3.407684564590454, - 3.389937400817871, - 3.3636441230773926, - 3.329521894454956, - 3.288501262664795, - 3.241701364517212, - 3.190398931503296, - 3.135993003845215, - 3.079967737197876, - 3.0238516330718994, - 2.969175100326538, - 2.9174296855926514, - 3.235830545425415, - 3.2635490894317627, - 3.2861690521240234, - 3.3030731678009033, - 3.313800811767578, - 3.318058729171753, - 3.3157312870025635, - 3.306881904602051, - 3.2917516231536865, - 3.2707533836364746, - 3.244460105895996, - 3.2135889530181885, - 3.1789817810058594, - 3.141582489013672, - 3.1024117469787598, - 3.062537908554077, - 3.023048162460327, - 2.985020160675049, - 2.949490785598755, - 2.9174296855926514, - 3.235830545425415, - 3.2406258583068848, - 3.240947723388672, - 3.2367875576019287, - 3.2282586097717285, - 3.2155935764312744, - 3.1991381645202637, - 3.1793408393859863, - 3.1567420959472656, - 3.131957769393921, - 3.1056644916534424, - 3.0785791873931885, - 3.051440715789795, - 3.024989366531372, - 2.9999465942382812, - 2.9769957065582275, - 2.9567623138427734, - 2.9397988319396973, - 2.926567554473877, - 2.9174296855926514, - 3.235830545425415, - 3.216947555541992, - 3.194236993789673, - 3.168318748474121, - 3.139899253845215, - 3.1097538471221924, - 3.078705072402954, - 3.0475995540618896, - 3.0172860622406006, - 2.988591194152832, - 2.9622979164123535, - 2.9391233921051025, - 2.9196994304656982, - 2.9045562744140625, - 2.894106864929199, - 2.8886361122131348, - 2.888293504714966, - 2.8930881023406982, - 2.9028892517089844, - 2.9174296855926514, - 3.235830545425415, - 3.195080280303955, - 3.1510989665985107, - 3.1050865650177, - 3.058297634124756, - 3.0120091438293457, - 2.9674830436706543, - 2.925934314727783, - 2.888496160507202, - 2.856189727783203, - 2.8298964500427246, - 2.810333251953125, - 2.798034191131592, - 2.7933342456817627, - 2.7963621616363525, - 2.807034730911255, - 2.825061321258545, - 2.849950075149536, - 2.8810219764709473, - 2.9174296855926514, - 3.235830545425415, - 3.177393674850464, - 3.11620831489563, - 3.053943157196045, - 2.9922969341278076, - 2.9329512119293213, - 2.8775246143341064, - 2.827529191970825, - 2.7843284606933594, - 2.749100923538208, - 2.7228076457977295, - 2.7061655521392822, - 2.699629068374634, - 2.703375816345215, - 2.717304229736328, - 2.7410340309143066, - 2.7739181518554688, - 2.815059185028076, - 2.863335371017456, - 2.9174296855926514, - 3.235830545425415, - 3.165804147720337, - 3.0933456420898438, - 3.02043080329895, - 2.949049234390259, - 2.881147623062134, - 2.8185782432556152, - 2.763047933578491, - 2.716071128845215, - 2.678929567337036, - 2.6526362895965576, - 2.637908458709717, - 2.6351478099823, - 2.6444294452667236, - 2.6655006408691406, - 2.697786331176758, - 2.740405797958374, - 2.792196750640869, - 2.851746082305908, - 2.9174296855926514, - 3.235830545425415, - 3.1615679264068604, - 3.084988594055176, - 3.008181095123291, - 2.9332408905029297, - 2.8622119426727295, - 2.7970316410064697, - 2.73947811126709, - 2.6911213397979736, - 2.653280019760132, - 2.6269867420196533, - 2.6129584312438965, - 2.6115779876708984, - 2.622882843017578, - 2.6465649604797363, - 2.6819779872894287, - 2.728156089782715, - 2.783839702606201, - 2.8475098609924316, - 2.9174296855926514, - 3.235830545425415, - 3.1651439666748047, - 3.092042922973633, - 3.018521547317505, - 2.946585178375244, - 2.8781960010528564, - 2.8152198791503906, - 2.7593741416931152, - 2.7121822834014893, - 2.674931526184082, - 2.6486382484436035, - 2.634019374847412, - 2.631474018096924, - 2.641071081161499, - 2.6625490188598633, - 2.695322275161743, - 2.7384963035583496, - 2.790894031524658, - 2.851085662841797, - 2.9174296855926514, - 3.235830545425415, - 3.176144599914551, - 3.1137442588806152, - 3.0503313541412354, - 2.987635850906372, - 2.9273681640625, - 2.871171712875366, - 2.8205795288085938, - 2.7769718170166016, - 2.7415380477905273, - 2.715244770050049, - 2.6988091468811035, - 2.6926794052124023, - 2.6970229148864746, - 2.7117209434509277, - 2.736372947692871, - 2.770306348800659, - 2.8125951290130615, - 2.862086296081543, - 2.9174296855926514, - 3.235830545425415, - 3.19337797164917, - 3.147740602493286, - 3.100163698196411, - 3.0519447326660156, - 3.004399299621582, - 2.9588239192962646, - 2.9164621829986572, - 2.878469228744507, - 2.845881700515747, - 2.8195884227752686, - 2.800306558609009, - 2.788562059402466, - 2.784675359725952, - 2.788752317428589, - 2.8006818294525146, - 2.820138454437256, - 2.8465917110443115, - 2.879319667816162, - 2.9174296855926514, - 3.235830545425415, - 3.2149763107299805, - 3.1903481483459473, - 3.1626181602478027, - 3.132542848587036, - 3.1009421348571777, - 3.068678379058838, - 3.0366315841674805, - 3.0056755542755127, - 2.9766552448272705, - 2.950361967086792, - 2.9275128841400146, - 2.908731460571289, - 2.8945295810699463, - 2.8852951526641846, - 2.881279945373535, - 2.8825931549072266, - 2.8891992568969727, - 2.9009180068969727, - 2.9174296855926514, - 3.235830545425415, - 3.2385990619659424, - 3.2369496822357178, - 3.2309272289276123, - 3.220695734024048, - 3.2065346240997314, - 3.1888301372528076, - 3.168065071105957, - 3.144805908203125, - 3.119687080383301, - 3.0933938026428223, - 3.066642999649048, - 3.0401649475097656, - 3.014681339263916, - 2.9908876419067383, - 2.969432830810547, - 2.950901985168457, - 2.935800790786743, - 2.9245409965515137, - 2.9174296855926514 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 1.1316787004470825, - 1.113370656967163, - 1.0972516536712646, - 1.08376145362854, - 1.0732680559158325, - 1.0660576820373535, - 1.0623269081115723, - 1.0621775388717651, - 1.0656137466430664, - 1.0725417137145996, - 1.0827724933624268, - 1.0960270166397095, - 1.1119437217712402, - 1.130088448524475, - 1.1499662399291992, - 1.171034812927246, - 1.1927196979522705, - 1.2144291400909424, - 1.2355711460113525, - 1.2555688619613647, - 1.1316787004470825, - 1.1585109233856201, - 1.1863009929656982, - 1.214290738105774, - 1.241716742515564, - 1.2678309679031372, - 1.2919210195541382, - 1.3133296966552734, - 1.3314732313156128, - 1.3458564281463623, - 1.3560872077941895, - 1.3618865013122559, - 1.3630958795547485, - 1.359682559967041, - 1.351739525794983, - 1.339483618736267, - 1.3232489824295044, - 1.303478479385376, - 1.2807114124298096, - 1.2555688619613647, - 1.1316787004470825, - 1.200835108757019, - 1.2697948217391968, - 1.336676836013794, - 1.3996565341949463, - 1.4570163488388062, - 1.50719153881073, - 1.5488134622573853, - 1.5807466506958008, - 1.6021201610565186, - 1.6123509407043457, - 1.6111599206924438, - 1.5985796451568604, - 1.5749530792236328, - 1.5409250259399414, - 1.4974234104156494, - 1.4456349611282349, - 1.3869723081588745, - 1.3230355978012085, - 1.2555688619613647, - 1.131678581237793, - 1.2357566356658936, - 1.3386852741241455, - 1.437657117843628, - 1.5299723148345947, - 1.6131128072738647, - 1.684810757637024, - 1.7431104183197021, - 1.786421537399292, - 1.8135626316070557, - 1.8237934112548828, - 1.8168346881866455, - 1.7928764820098877, - 1.7525722980499268, - 1.697021484375, - 1.6277391910552979, - 1.5466153621673584, - 1.4558628797531128, - 1.357957124710083, - 1.2555688619613647, - 1.131678581237793, - 1.259491205215454, - 1.3855072259902954, - 1.506289005279541, - 1.618542194366455, - 1.7192046642303467, - 1.8055305480957031, - 1.8751654624938965, - 1.9262096881866455, - 1.957270622253418, - 1.9675014019012451, - 1.956622838973999, - 1.9249316453933716, - 1.8732922077178955, - 1.8031132221221924, - 1.7163090705871582, - 1.6152472496032715, - 1.5026847124099731, - 1.381691813468933, - 1.2555688619613647, - 1.131678581237793, - 1.2694669961929321, - 1.405186414718628, - 1.5351351499557495, - 1.6557681560516357, - 1.763795256614685, - 1.856269359588623, - 1.9306683540344238, - 1.9849627017974854, - 2.0176713466644287, - 2.027902126312256, - 2.015376091003418, - 1.980434536933899, - 1.9240310192108154, - 1.8477039337158203, - 1.7535350322723389, - 1.6440932750701904, - 1.5223640203475952, - 1.3916674852371216, - 1.2555688619613647, - 1.131678581237793, - 1.2646026611328125, - 1.3955906629562378, - 1.5210695266723633, - 1.637616515159607, - 1.7420525550842285, - 1.831528902053833, - 1.9036047458648682, - 1.956314206123352, - 1.9882194995880127, - 1.9984502792358398, - 1.9867274761199951, - 1.9533709287643433, - 1.8992903232574463, - 1.8259611129760742, - 1.73538339138031, - 1.6300277709960938, - 1.512768268585205, - 1.3868032693862915, - 1.2555688619613647, - 1.131678581237793, - 1.2454257011413574, - 1.357759714126587, - 1.4656164646148682, - 1.5660539865493774, - 1.6563326120376587, - 1.7339897155761719, - 1.7969070672988892, - 1.8433685302734375, - 1.8721065521240234, - 1.8823373317718506, - 1.8737818002700806, - 1.8466732501983643, - 1.8017513751983643, - 1.740241289138794, - 1.6638208627700806, - 1.5745747089385986, - 1.4749372005462646, - 1.3676261901855469, - 1.2555688619613647, - 1.131678581237793, - 1.214013934135437, - 1.2957929372787476, - 1.37478506565094, - 1.4488356113433838, - 1.5159246921539307, - 1.5742220878601074, - 1.6221379041671753, - 1.65836501121521, - 1.681915044784546, - 1.692145824432373, - 1.6887781620025635, - 1.6719040870666504, - 1.6419837474822998, - 1.5998332500457764, - 1.546602487564087, - 1.4837433099746704, - 1.4129705429077148, - 1.3362144231796265, - 1.2555688619613647, - 1.1316787004470825, - 1.1737713813781738, - 1.2164056301116943, - 1.2584184408187866, - 1.298663854598999, - 1.3360439538955688, - 1.3695392608642578, - 1.3982361555099487, - 1.421351671218872, - 1.4382553100585938, - 1.448486089706421, - 1.4517648220062256, - 1.4480023384094238, - 1.4373008012771606, - 1.419952630996704, - 1.3964306116104126, - 1.367376685142517, - 1.333583116531372, - 1.2959718704223633, - 1.2555688619613647, - 1.1316787004470825, - 1.129059076309204, - 1.1282005310058594, - 1.1291266679763794, - 1.1318119764328003, - 1.136183500289917, - 1.1421217918395996, - 1.1494649648666382, - 1.1580126285552979, - 1.1675316095352173, - 1.1777623891830444, - 1.1884257793426514, - 1.1992310285568237, - 1.2098833322525024, - 1.2200920581817627, - 1.2295788526535034, - 1.2380847930908203, - 1.245378017425537, - 1.2512595653533936, - 1.2555688619613647, - 1.1316787004470825, - 1.0847220420837402, - 1.0407360792160034, - 1.0009204149246216, - 0.9663611650466919, - 0.9380011558532715, - 0.9166138172149658, - 0.9027825593948364, - 0.8968846797943115, - 0.8990811109542847, - 0.9093118906021118, - 0.9272979497909546, - 0.952548623085022, - 0.9843752980232239, - 1.0219097137451172, - 1.0641279220581055, - 1.109878659248352, - 1.1579135656356812, - 1.2069226503372192, - 1.2555688619613647, - 1.1316787004470825, - 1.045565128326416, - 0.96349036693573, - 0.887692928314209, - 0.8202406167984009, - 0.7629731297492981, - 0.7174526453018188, - 0.6849209070205688, - 0.6662651896476746, - 0.6619945168495178, - 0.672225296497345, - 0.6966784596443176, - 0.7346870303153992, - 0.7852141857147217, - 0.8468815684318542, - 0.9180073738098145, - 0.9966511726379395, - 1.0806678533554077, - 1.167765736579895, - 1.2555689811706543, - 1.1316787004470825, - 1.0158315896987915, - 0.9048341512680054, - 0.8017141819000244, - 0.7092844247817993, - 0.6300662755966187, - 0.5662204027175903, - 0.5194883942604065, - 0.49114519357681274, - 0.4819638133049011, - 0.49219459295272827, - 0.5215584635734558, - 0.5692545771598816, - 0.6339818835258484, - 0.7139747142791748, - 0.8070511817932129, - 0.9106723070144653, - 1.022011637687683, - 1.138032078742981, - 1.2555689811706543, - 1.1316787004470825, - 0.9987433552742004, - 0.8711237907409668, - 0.7523012757301331, - 0.6455168128013611, - 0.5536832809448242, - 0.4793056845664978, - 0.4244128465652466, - 0.39050203561782837, - 0.3784983158111572, - 0.3887290954589844, - 0.42091530561447144, - 0.4741790294647217, - 0.5470671653747559, - 0.6375917792320251, - 0.7432835698127747, - 0.8612594604492188, - 0.9883013367652893, - 1.1209439039230347, - 1.2555689811706543, - 1.1316787004470825, - 0.9961522817611694, - 0.8660122752189636, - 0.7448087930679321, - 0.6358477473258972, - 0.5421014428138733, - 0.46612685918807983, - 0.4099964499473572, - 0.3752415180206299, - 0.36280983686447144, - 0.3730406165122986, - 0.40565478801727295, - 0.4597626328468323, - 0.5338883399963379, - 0.6260098814964294, - 0.733614444732666, - 0.8537669777870178, - 0.9831898212432861, - 1.1183527708053589, - 1.2555689811706543, - 1.1316787004470825, - 1.0083391666412354, - 0.8900536298751831, - 0.7800487279891968, - 0.6813251376152039, - 0.5965757369995117, - 0.5281121134757996, - 0.47780197858810425, - 0.4470176100730896, - 0.4365987181663513, - 0.44682949781417847, - 0.47743088006973267, - 0.5275681614875793, - 0.5958735942840576, - 0.6804841756820679, - 0.7790919542312622, - 0.8890069723129272, - 1.0072311162948608, - 1.1305396556854248, - 1.2555689811706543, - 1.1316787004470825, - 1.0339833498001099, - 0.9406424760818481, - 0.854202389717102, - 0.7770208120346069, - 0.7112030386924744, - 0.6585444808006287, - 0.6204814314842224, - 0.5980522632598877, - 0.5918687582015991, - 0.6020995378494263, - 0.6284655332565308, - 0.6702476143836975, - 0.7263059616088867, - 0.7951115369796753, - 0.8747875690460205, - 0.9631605744361877, - 1.0578200817108154, - 1.1561838388442993, - 1.2555689811706543, - 1.1316787004470825, - 1.0703058242797852, - 1.0122969150543213, - 0.9592339992523193, - 0.9125646352767944, - 0.8735618591308594, - 0.8432895541191101, - 0.8225734233856201, - 0.8119785785675049, - 0.8117940425872803, - 0.8220248222351074, - 0.842391848564148, - 0.8723395466804504, - 0.9110510349273682, - 0.9574704170227051, - 1.010331392288208, - 1.0681922435760498, - 1.129474401473999, - 1.1925064325332642, - 1.2555688619613647, - 1.1316787004470825, - 1.113370656967163, - 1.0972516536712646, - 1.0837615728378296, - 1.073268175125122, - 1.0660576820373535, - 1.0623270273208618, - 1.0621776580810547, - 1.065613865852356, - 1.0725418329238892, - 1.0827726125717163, - 1.096027135848999, - 1.1119438409805298, - 1.1300885677337646, - 1.1499662399291992, - 1.1710349321365356, - 1.19271981716156, - 1.214429259300232, - 1.2355711460113525, - 1.2555688619613647 - ], - "y": [ - 1.333580493927002, - 1.2090033292770386, - 1.0899951457977295, - 0.9798018932342529, - 0.8814295530319214, - 0.7975614070892334, - 0.7304852604866028, - 0.6820306181907654, - 0.6535191535949707, - 0.6457289457321167, - 0.658872127532959, - 0.6925902366638184, - 0.7459637522697449, - 0.817536473274231, - 0.9053563475608826, - 1.0070276260375977, - 1.1197774410247803, - 1.2405297756195068, - 1.3659908771514893, - 1.4927387237548828, - 1.333580493927002, - 1.203060269355774, - 1.0782710313796997, - 0.9626166224479675, - 0.859251856803894, - 0.7709962725639343, - 0.7002573013305664, - 0.6489642858505249, - 0.6185165643692017, - 0.6097447872161865, - 0.6228879690170288, - 0.6575876474380493, - 0.7128974199295044, - 0.7873084545135498, - 0.8787912130355835, - 0.9848500490188599, - 1.10259211063385, - 1.228805661201477, - 1.3600478172302246, - 1.4927387237548828, - 1.333580493927002, - 1.2113786935806274, - 1.094680905342102, - 0.9866703748703003, - 0.8902934193611145, - 0.8081788420677185, - 0.7425665855407715, - 0.6952463388442993, - 0.6675089001655579, - 0.6601108908653259, - 0.6732540726661682, - 0.7065799832344055, - 0.7591794729232788, - 0.8296177983283997, - 0.9159736633300781, - 1.0158915519714355, - 1.1266459226608276, - 1.2452155351638794, - 1.3683662414550781, - 1.4927387237548828, - 1.333580493927002, - 1.2330571413040161, - 1.1374465227127075, - 1.0493566989898682, - 0.971190333366394, - 0.9050798416137695, - 0.8528284430503845, - 0.8158613443374634, - 0.7951869964599609, - 0.7913694381713867, - 0.804512619972229, - 0.8342580795288086, - 0.8797944784164429, - 0.9398796558380127, - 1.012874722480774, - 1.0967885255813599, - 1.189332127571106, - 1.2879811525344849, - 1.3900446891784668, - 1.4927387237548828, - 1.333580493927002, - 1.2657464742660522, - 1.2019336223602295, - 1.143882393836975, - 1.093176245689392, - 1.0511986017227173, - 1.0190941095352173, - 0.9977388381958008, - 0.9877151250839233, - 0.9892964363098145, - 1.0024396181106567, - 1.0267860889434814, - 1.0616719722747803, - 1.1061455011367798, - 1.1589934825897217, - 1.218774437904358, - 1.283857822418213, - 1.3524682521820068, - 1.422734022140503, - 1.4927387237548828, - 1.333580493927002, - 1.3059043884277344, - 1.281153917312622, - 1.2600041627883911, - 1.2430320978164673, - 1.2307007312774658, - 1.2233463525772095, - 1.2211695909500122, - 1.2242298126220703, - 1.2324434518814087, - 1.245586633682251, - 1.2633007764816284, - 1.2851027250289917, - 1.3103976249694824, - 1.3384956121444702, - 1.368630290031433, - 1.3999797105789185, - 1.4316885471343994, - 1.462891936302185, - 1.4927387237548828, - 1.333580493927002, - 1.3491789102554321, - 1.3665226697921753, - 1.3851385116577148, - 1.4045186042785645, - 1.4241344928741455, - 1.4434510469436646, - 1.4619412422180176, - 1.4791008234024048, - 1.4944617748260498, - 1.507604956626892, - 1.5181719064712524, - 1.525874376296997, - 1.5305023193359375, - 1.5319294929504395, - 1.5301167964935303, - 1.5251139402389526, - 1.5170572996139526, - 1.5061664581298828, - 1.4927387237548828, - 1.333580493927002, - 1.390880823135376, - 1.4487888813018799, - 1.5057250261306763, - 1.560136318206787, - 1.610538363456726, - 1.655556559562683, - 1.6939626932144165, - 1.7247092723846436, - 1.746957540512085, - 1.7601007223129272, - 1.7637803554534912, - 1.757895827293396, - 1.742607831954956, - 1.71833336353302, - 1.685734510421753, - 1.6457005739212036, - 1.5993235111236572, - 1.5478683710098267, - 1.4927387237548828, - 1.333580493927002, - 1.4264909029006958, - 1.5190377235412598, - 1.608696460723877, - 1.693021535873413, - 1.7697124481201172, - 1.8366777896881104, - 1.8920905590057373, - 1.9344394207000732, - 1.962568998336792, - 1.9757122993469238, - 1.973510503768921, - 1.9560236930847168, - 1.9237291812896729, - 1.8775075674057007, - 1.818619728088379, - 1.7486720085144043, - 1.669572353363037, - 1.5834784507751465, - 1.4927387237548828, - 1.333580493927002, - 1.4521503448486328, - 1.5696566104888916, - 1.682894229888916, - 1.788774013519287, - 1.8844081163406372, - 1.9671876430511475, - 2.0348548889160156, - 2.085563898086548, - 2.117931365966797, - 2.1310746669769287, - 2.1246349811553955, - 2.098788022994995, - 2.05423903465271, - 1.9922031164169312, - 1.9143723249435425, - 1.8228696584701538, - 1.720191240310669, - 1.6091378927230835, - 1.4927387237548828, - 1.333580493927002, - 1.4650784730911255, - 1.5951603651046753, - 1.7202776670455933, - 1.8370176553726196, - 1.9421958923339844, - 2.0329432487487793, - 2.1067848205566406, - 2.16170597076416, - 2.1962087154388428, - 2.2093517780303955, - 2.200777053833008, - 2.17071795463562, - 2.119994640350342, - 2.0499908924102783, - 1.962615966796875, - 1.8602532148361206, - 1.7456949949264526, - 1.6220660209655762, - 1.4927387237548828, - 1.333580493927002, - 1.4638744592666626, - 1.592785120010376, - 1.7167959213256836, - 1.8325244188308716, - 1.9368135929107666, - 2.0268192291259766, - 2.100085496902466, - 2.1546144485473633, - 2.188918113708496, - 2.202061414718628, - 2.193685531616211, - 2.1640186309814453, - 2.11387038230896, - 2.0446088314056396, - 1.958122730255127, - 1.856771469116211, - 1.7433197498321533, - 1.6208620071411133, - 1.4927387237548828, - 1.333580493927002, - 1.4486685991287231, - 1.5627881288528442, - 1.6728262901306152, - 1.775781273841858, - 1.868844985961914, - 1.9494787454605103, - 2.0154831409454346, - 2.0650577545166016, - 2.0968501567840576, - 2.1099934577941895, - 2.104128837585449, - 2.079416275024414, - 2.036530017852783, - 1.976639986038208, - 1.9013795852661133, - 1.812801718711853, - 1.7133227586746216, - 1.6056561470031738, - 1.4927387237548828, - 1.333580493927002, - 1.4211087226867676, - 1.5084202289581299, - 1.5931333303451538, - 1.6729371547698975, - 1.745654821395874, - 1.8093030452728271, - 1.8621454238891602, - 1.902740716934204, - 1.9299813508987427, - 1.943124532699585, - 1.9418118000030518, - 1.9260785579681396, - 1.8963543176651, - 1.853449821472168, - 1.7985353469848633, - 1.7331087589263916, - 1.6589548587799072, - 1.5780963897705078, - 1.4927387237548828, - 1.333580493927002, - 1.3841814994812012, - 1.4355731010437012, - 1.4863532781600952, - 1.5351369380950928, - 1.5805933475494385, - 1.6214826107025146, - 1.6566892862319946, - 1.6852531433105469, - 1.7063950300216675, - 1.7195382118225098, - 1.7243242263793945, - 1.7206224203109741, - 1.7085338830947876, - 1.6883883476257324, - 1.6607351303100586, - 1.6263288259506226, - 1.5861077308654785, - 1.5411691665649414, - 1.4927387237548828, - 1.333580493927002, - 1.3418885469436646, - 1.3521407842636108, - 1.3640573024749756, - 1.3773133754730225, - 1.3915470838546753, - 1.4063704013824463, - 1.4213789701461792, - 1.436163306236267, - 1.4503201246261597, - 1.463463306427002, - 1.4752342700958252, - 1.4853121042251587, - 1.4934217929840088, - 1.4993420839309692, - 1.5029115676879883, - 1.504032850265503, - 1.5026754140853882, - 1.4988760948181152, - 1.4927387237548828, - 1.333580493927002, - 1.2988128662109375, - 1.2671642303466797, - 1.2394980192184448, - 1.2165688276290894, - 1.1990020275115967, - 1.18727707862854, - 1.1817134618759155, - 1.1824631690979004, - 1.189505696296692, - 1.2026488780975342, - 1.221534252166748, - 1.245646595954895, - 1.274328351020813, - 1.3067970275878906, - 1.3421670198440552, - 1.3794734477996826, - 1.417698860168457, - 1.4558004140853882, - 1.4927387237548828, - 1.333580493927002, - 1.25962233543396, - 1.189852237701416, - 1.1261732578277588, - 1.0703226327896118, - 1.0238237380981445, - 0.9879449009895325, - 0.9636647701263428, - 0.9516457319259644, - 0.9522155523300171, - 0.9653587341308594, - 0.9907166957855225, - 1.0275979042053223, - 1.0749962329864502, - 1.131618618965149, - 1.1959208250045776, - 1.2661488056182861, - 1.3403868675231934, - 1.4166098833084106, - 1.4927387237548828, - 1.333580493927002, - 1.228563904762268, - 1.1285825967788696, - 1.0363638401031494, - 0.9544230699539185, - 0.8849954009056091, - 0.8299747705459595, - 0.7908617854118347, - 0.7687234878540039, - 0.7641637325286865, - 0.7773069143295288, - 0.8077945709228516, - 0.8547949194908142, - 0.9170260429382324, - 0.9927902817726135, - 1.0800211429595947, - 1.1763393878936768, - 1.279117226600647, - 1.3855514526367188, - 1.4927387237548828, - 1.333580493927002, - 1.2090033292770386, - 1.08999502658844, - 0.9798018932342529, - 0.8814294934272766, - 0.7975614070892334, - 0.730485200881958, - 0.6820305585861206, - 0.6535191535949707, - 0.6457288861274719, - 0.6588720679283142, - 0.6925902366638184, - 0.7459636926651001, - 0.817536473274231, - 0.9053562879562378, - 1.0070276260375977, - 1.1197773218154907, - 1.2405296564102173, - 1.3659908771514893, - 1.4927387237548828 - ], - "z": [ - 3.193119525909424, - 3.265550136566162, - 3.3403480052948, - 3.415472984313965, - 3.4888756275177, - 3.558554172515869, - 3.622607469558716, - 3.679288625717163, - 3.7270514965057373, - 3.7645928859710693, - 3.790889263153076, - 3.805223226547241, - 3.807203531265259, - 3.796776294708252, - 3.774225950241089, - 3.7401676177978516, - 3.6955301761627197, - 3.641531467437744, - 3.5796444416046143, - 3.51155686378479, - 3.193119525909424, - 3.2509584426879883, - 3.3115625381469727, - 3.373279094696045, - 3.4344241619110107, - 3.493330240249634, - 3.5483906269073486, - 3.5981030464172363, - 3.6411116123199463, - 3.676243305206299, - 3.7025396823883057, - 3.71928334236145, - 3.726017951965332, - 3.7225592136383057, - 3.7090020179748535, - 3.685715913772583, - 3.6533362865448, - 3.612746238708496, - 3.5650527477264404, - 3.51155686378479, - 3.193119525909424, - 3.2303342819213867, - 3.270876884460449, - 3.3136415481567383, - 3.35746169090271, - 3.4011423587799072, - 3.4434914588928223, - 3.483354091644287, - 3.5196433067321777, - 3.5513687133789062, - 3.577664852142334, - 3.5978150367736816, - 3.611268997192383, - 3.6176600456237793, - 3.616813898086548, - 3.6087536811828613, - 3.593698740005493, - 3.5720603466033936, - 3.544428586959839, - 3.51155686378479, - 3.193119525909424, - 3.2059125900268555, - 3.2226998805999756, - 3.243023157119751, - 3.2663283348083496, - 3.2919797897338867, - 3.31927752494812, - 3.3474769592285156, - 3.3758091926574707, - 3.403501033782959, - 3.429797410964966, - 3.4539809226989746, - 3.4753918647766113, - 3.493446111679077, - 3.5076515674591064, - 3.517620086669922, - 3.523080587387085, - 3.52388334274292, - 3.5200068950653076, - 3.51155686378479, - 3.193119764328003, - 3.180340051651001, - 3.1722521781921387, - 3.169076681137085, - 3.1708998680114746, - 3.1776723861694336, - 3.189209222793579, - 3.205195903778076, - 3.225196123123169, - 3.248664617538452, - 3.27496075630188, - 3.303367853164673, - 3.3331105709075928, - 3.363377809524536, - 3.3933441638946533, - 3.422191619873047, - 3.44913387298584, - 3.473435640335083, - 3.494434356689453, - 3.511557102203369, - 3.193119764328003, - 3.1563875675201416, - 3.1250007152557373, - 3.0998148918151855, - 3.081517219543457, - 3.0706069469451904, - 3.0673816204071045, - 3.0719289779663086, - 3.084125280380249, - 3.1036376953125, - 3.129934072494507, - 3.162297010421753, - 3.1998438835144043, - 3.2415502071380615, - 3.28627872467041, - 3.3328092098236084, - 3.3798720836639404, - 3.4261841773986816, - 3.4704818725585938, - 3.511557102203369, - 3.193119764328003, - 3.136651039123535, - 3.0860657691955566, - 3.0427439212799072, - 3.007866859436035, - 2.9823861122131348, - 2.966996669769287, - 2.962118148803711, - 2.967884063720703, - 2.9841368198394775, - 3.0104331970214844, - 3.046055793762207, - 3.0900330543518066, - 3.141165256500244, - 3.1980576515197754, - 3.2591586112976074, - 3.322801113128662, - 3.38724946975708, - 3.4507453441619873, - 3.511557102203369, - 3.193119764328003, - 3.1232690811157227, - 3.059666633605957, - 3.0040478706359863, - 2.9579293727874756, - 2.9225692749023438, - 2.8989322185516357, - 2.887662887573242, - 2.889068603515625, - 2.903111457824707, - 2.929407835006714, - 2.967240571975708, - 3.015577793121338, - 3.073101043701172, - 3.1382410526275635, - 3.209221124649048, - 3.284105062484741, - 3.3608503341674805, - 3.4373631477355957, - 3.511557102203369, - 3.193119764328003, - 3.1176917552948, - 3.048664093017578, - 2.9879202842712402, - 2.9371166229248047, - 2.897639274597168, - 2.8705646991729736, - 2.8566317558288574, - 2.856220245361328, - 2.8693418502807617, - 2.8956382274627686, - 2.934391975402832, - 2.984546661376953, - 3.0447332859039307, - 3.1133108139038086, - 3.188408374786377, - 3.267977476119995, - 3.3498477935791016, - 3.431785821914673, - 3.511557102203369, - 3.193119764328003, - 3.120523452758789, - 3.054250478744507, - 2.9961087703704834, - 2.947683811187744, - 2.91029691696167, - 2.884967803955078, - 2.872387170791626, - 2.872898578643799, - 2.8864874839782715, - 2.9127838611602783, - 2.9510703086853027, - 3.0003020763397217, - 3.059136390686035, - 3.1259686946868896, - 3.1989755630493164, - 3.2761659622192383, - 3.3554341793060303, - 3.434617757797241, - 3.511557102203369, - 3.193119764328003, - 3.131457567214966, - 3.0758204460144043, - 3.0277259349823, - 2.9884860515594482, - 2.9591710567474365, - 2.9405808448791504, - 2.9332220554351807, - 2.93729567527771, - 2.952690839767456, - 2.978987216949463, - 3.015467405319214, - 3.0611367225646973, - 3.1147494316101074, - 3.1748428344726562, - 3.2397778034210205, - 3.3077831268310547, - 3.3770039081573486, - 3.445551633834839, - 3.511557102203369, - 3.193119764328003, - 3.149308919906616, - 3.1110363006591797, - 3.079345703125, - 3.0551016330718994, - 3.0389654636383057, - 3.031377077102661, - 3.032543897628784, - 3.042433738708496, - 3.060777187347412, - 3.087073564529419, - 3.12060546875, - 3.16045880317688, - 3.2055459022521973, - 3.2546370029449463, - 3.3063933849334717, - 3.359402894973755, - 3.412219762802124, - 3.4634032249450684, - 3.511557102203369, - 3.193119764328003, - 3.1721432209014893, - 3.1560819149017334, - 3.145374059677124, - 3.1403117179870605, - 3.1410326957702637, - 3.147517681121826, - 3.1595895290374756, - 3.1769192218780518, - 3.199033737182617, - 3.225330114364624, - 3.2550909519195557, - 3.2875044345855713, - 3.321686267852783, - 3.3567044734954834, - 3.391603469848633, - 3.425431251525879, - 3.4572653770446777, - 3.4862375259399414, - 3.511557102203369, - 3.193119525909424, - 3.19748592376709, - 3.206076145172119, - 3.218656063079834, - 3.234882354736328, - 3.254312753677368, - 3.2764170169830322, - 3.3005919456481934, - 3.326178550720215, - 3.3524787425994873, - 3.378775119781494, - 3.4043502807617188, - 3.428506851196289, - 3.4505856037139893, - 3.469984531402588, - 3.4861741065979004, - 3.498713254928589, - 3.5072596073150635, - 3.511580228805542, - 3.51155686378479, - 3.193119525909424, - 3.222590923309326, - 3.255601167678833, - 3.291250228881836, - 3.3285655975341797, - 3.3665294647216797, - 3.4041061401367188, - 3.4402709007263184, - 3.474036931991577, - 3.504483461380005, - 3.5307798385620117, - 3.552208662033081, - 3.568185806274414, - 3.578274965286255, - 3.5822012424468994, - 3.579857349395752, - 3.571307420730591, - 3.5567846298217773, - 3.536684989929199, - 3.51155686378479, - 3.193119525909424, - 3.244737386703491, - 3.299290180206299, - 3.355289936065674, - 3.4112093448638916, - 3.4655227661132812, - 3.5167489051818848, - 3.563490152359009, - 3.6044719219207764, - 3.638576030731201, - 3.664872407913208, - 3.6826436519622803, - 3.6914050579071045, - 3.690917491912842, - 3.681194543838501, - 3.662501096725464, - 3.635347366333008, - 3.600473642349243, - 3.5588316917419434, - 3.51155686378479, - 3.193119525909424, - 3.2615256309509277, - 3.332408905029297, - 3.4038357734680176, - 3.473857879638672, - 3.540565013885498, - 3.602138042449951, - 3.6568973064422607, - 3.7033488750457764, - 3.7402257919311523, - 3.766522169113159, - 3.7815206050872803, - 3.7848122119903564, - 3.7763068675994873, - 3.756237030029297, - 3.725149631500244, - 3.6838929653167725, - 3.633592367172241, - 3.57561993598938, - 3.51155686378479, - 3.193119525909424, - 3.271136522293091, - 3.3513681888580322, - 3.431626558303833, - 3.5097219944000244, - 3.583524465560913, - 3.6510207653045654, - 3.710369825363159, - 3.7599527835845947, - 3.79841685295105, - 3.8247132301330566, - 3.8381245136260986, - 3.838284730911255, - 3.8251895904541016, - 3.799196243286133, - 3.7610137462615967, - 3.711683750152588, - 3.6525518894195557, - 3.585230827331543, - 3.51155686378479, - 3.193119525909424, - 3.2725281715393066, - 3.354113817214966, - 3.4356510639190674, - 3.514915704727173, - 3.58974552154541, - 3.65809965133667, - 3.718113422393799, - 3.7681496143341064, - 3.8068437576293945, - 3.8331401348114014, - 3.8463213443756104, - 3.8460280895233154, - 3.832268238067627, - 3.80541729927063, - 3.766207456588745, - 3.7157082557678223, - 3.65529727935791, - 3.586622476577759, - 3.51155686378479, - 3.193119525909424, - 3.265550136566162, - 3.3403480052948, - 3.415472984313965, - 3.4888756275177, - 3.558554172515869, - 3.622607469558716, - 3.679288625717163, - 3.727051258087158, - 3.7645928859710693, - 3.790889263153076, - 3.805223226547241, - 3.8072032928466797, - 3.796776294708252, - 3.774225950241089, - 3.7401676177978516, - 3.6955301761627197, - 3.641531467437744, - 3.5796444416046143, - 3.51155686378479 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 1.362854242324829, - 1.3585541248321533, - 1.3526815176010132, - 1.3453963994979858, - 1.3368977308273315, - 1.327417254447937, - 1.3172134160995483, - 1.3065648078918457, - 1.2957617044448853, - 1.285098910331726, - 1.2748671770095825, - 1.2653456926345825, - 1.2567940950393677, - 1.2494457960128784, - 1.24350106716156, - 1.2391220331192017, - 1.2364283800125122, - 1.2354933023452759, - 1.2363425493240356, - 1.238952875137329, - 1.362854242324829, - 1.4064862728118896, - 1.4472382068634033, - 1.4839985370635986, - 1.515764594078064, - 1.5416697263717651, - 1.5610073804855347, - 1.5732501745224, - 1.57806396484375, - 1.5753175020217896, - 1.5650858879089355, - 1.5476479530334473, - 1.5234794616699219, - 1.4932397603988647, - 1.4577535390853882, - 1.417988896369934, - 1.375030517578125, - 1.3300501108169556, - 1.284274697303772, - 1.2389527559280396, - 1.362854242324829, - 1.4495986700057983, - 1.5322870016098022, - 1.60866379737854, - 1.6766457557678223, - 1.7343783378601074, - 1.7802869081497192, - 1.8131191730499268, - 1.831979513168335, - 1.8363535404205322, - 1.8261218070983887, - 1.8015635013580322, - 1.7633485794067383, - 1.7125192880630493, - 1.6504621505737305, - 1.5788700580596924, - 1.4996956586837769, - 1.415098786354065, - 1.3273869752883911, - 1.2389527559280396, - 1.362854242324829, - 1.4832193851470947, - 1.5986113548278809, - 1.7058825492858887, - 1.8021070957183838, - 1.884660005569458, - 1.9512896537780762, - 2.000178575515747, - 2.0299928188323975, - 2.03991961479187, - 2.0296878814697266, - 1.9995768070220947, - 1.950407862663269, - 1.8835220336914062, - 1.8007439374923706, - 1.704331398010254, - 1.596914529800415, - 1.4814231395721436, - 1.3610076904296875, - 1.2389527559280396, - 1.362854242324829, - 1.5037050247192383, - 1.6390239000320435, - 1.7651197910308838, - 1.878553032875061, - 1.9762294292449951, - 2.0554847717285156, - 2.114157199859619, - 2.1506459712982178, - 2.1639561653137207, - 2.153724431991577, - 2.120229959487915, - 2.0643863677978516, - 1.9877171516418457, - 1.8923132419586182, - 1.7807774543762207, - 1.6561516523361206, - 1.5218358039855957, - 1.3814934492111206, - 1.2389527559280396, - 1.362854242324829, - 1.508835792541504, - 1.6491456031799316, - 1.7799561023712158, - 1.8976994752883911, - 1.9991636276245117, - 2.0815811157226562, - 2.1427040100097656, - 2.1808643341064453, - 2.195021867752075, - 2.1847901344299316, - 2.1504483222961426, - 2.092933177947998, - 2.0138134956359863, - 1.9152475595474243, - 1.7999238967895508, - 1.6709880828857422, - 1.5319573879241943, - 1.3866242170333862, - 1.2389527559280396, - 1.362854242324829, - 1.4980556964874268, - 1.6278793811798096, - 1.748783826828003, - 1.8574715852737427, - 1.9509773254394531, - 2.0267510414123535, - 2.0827252864837646, - 2.117373466491699, - 2.1297504901885986, - 2.119518756866455, - 2.0869574546813965, - 2.032954692840576, - 1.9589831829071045, - 1.8670611381530762, - 1.7596958875656128, - 1.6398158073425293, - 1.5106911659240723, - 1.375844120979309, - 1.2389527559280396, - 1.362854242324829, - 1.472532868385315, - 1.577529788017273, - 1.6749811172485352, - 1.7622286081314087, - 1.8368922472000122, - 1.8969355821609497, - 1.940720796585083, - 1.9670534133911133, - 1.9752150774002075, - 1.964983344078064, - 1.9366374015808105, - 1.890950083732605, - 1.8291678428649902, - 1.7529761791229248, - 1.6644529104232788, - 1.566012978553772, - 1.4603416919708252, - 1.3503211736679077, - 1.2389527559280396, - 1.362854242324829, - 1.4350330829620361, - 1.5035531520843506, - 1.5665453672409058, - 1.6222916841506958, - 1.6692713499069214, - 1.7062028646469116, - 1.7320789098739624, - 1.7461936473846436, - 1.748162031173706, - 1.7379302978515625, - 1.7157776355743408, - 1.6823081970214844, - 1.6384351253509521, - 1.5853551626205444, - 1.524515986442566, - 1.4575772285461426, - 1.3863649368286133, - 1.312821388244629, - 1.2389527559280396, - 1.362854242324829, - 1.3896199464797974, - 1.4139657020568848, - 1.435227394104004, - 1.4528251886367798, - 1.4662787914276123, - 1.4752215147018433, - 1.4794092178344727, - 1.4787278175354004, - 1.4731957912445068, - 1.4629640579223633, - 1.4483118057250977, - 1.4296386241912842, - 1.4074537754058838, - 1.3823626041412354, - 1.35504949092865, - 1.3262593746185303, - 1.296777606010437, - 1.2674083709716797, - 1.238952875137329, - 1.362854242324829, - 1.341214895248413, - 1.3184759616851807, - 1.295257568359375, - 1.2721933126449585, - 1.249912142753601, - 1.2290219068527222, - 1.2100924253463745, - 1.1936399936676025, - 1.180113434791565, - 1.1698817014694214, - 1.1632239818572998, - 1.1603217124938965, - 1.1612541675567627, - 1.1659959554672241, - 1.1744176149368286, - 1.1862895488739014, - 1.2012877464294434, - 1.2190033197402954, - 1.238952875137329, - 1.3628543615341187, - 1.2950632572174072, - 1.2274314165115356, - 1.1618038415908813, - 1.0999704599380493, - 1.0436179637908936, - 0.9942836761474609, - 0.9533131122589111, - 0.9218238592147827, - 0.9006749987602234, - 0.8904433250427246, - 0.89140784740448, - 0.9035424590110779, - 0.9265159368515015, - 0.9597017765045166, - 1.0021947622299194, - 1.0528357028961182, - 1.110243320465088, - 1.1728515625, - 1.238952875137329, - 1.3628543615341187, - 1.2561662197113037, - 1.1506984233856201, - 1.0493278503417969, - 0.9548195600509644, - 0.8697515726089478, - 0.7964443564414978, - 0.736897349357605, - 0.692734956741333, - 0.6651619076728821, - 0.6549301743507385, - 0.6623189449310303, - 0.6871266961097717, - 0.7286765575408936, - 0.785835325717926, - 0.8570438623428345, - 0.9403597116470337, - 1.0335102081298828, - 1.1339545249938965, - 1.238952875137329, - 1.3628543615341187, - 1.2287389039993286, - 1.0965919494628906, - 0.9700181484222412, - 0.8524699211120605, - 0.7471539378166199, - 0.6569426655769348, - 0.5842969417572021, - 0.5311984419822693, - 0.499095618724823, - 0.48886388540267944, - 0.5007824301719666, - 0.5345262885093689, - 0.5891749262809753, - 0.6632376313209534, - 0.7546942234039307, - 0.861050009727478, - 0.9794038534164429, - 1.106527328491211, - 1.238952875137329, - 1.3628543615341187, - 1.2157535552978516, - 1.0709755420684814, - 0.9324692487716675, - 0.8040128946304321, - 0.689110517501831, - 0.5908961892127991, - 0.5120489597320557, - 0.4547197222709656, - 0.4204721450805664, - 0.41024041175842285, - 0.42430371046066284, - 0.4622783064842224, - 0.5231283903121948, - 0.6051942110061646, - 0.7062371373176575, - 0.8235011100769043, - 0.9537873268127441, - 1.0935419797897339, - 1.238952875137329, - 1.3628543615341187, - 1.21861732006073, - 1.076624870300293, - 0.9407500624656677, - 0.8146994113922119, - 0.7019110918045044, - 0.6054617166519165, - 0.5279821157455444, - 0.47158586978912354, - 0.43781137466430664, - 0.4275796413421631, - 0.4411698579788208, - 0.4782114624977112, - 0.5376939177513123, - 0.6179947853088379, - 0.7169236540794373, - 0.8317819833755493, - 0.9594366550445557, - 1.0964056253433228, - 1.238952875137329, - 1.3628543615341187, - 1.2370197772979736, - 1.112927794456482, - 0.993963360786438, - 0.8833713531494141, - 0.7841687202453613, - 0.6990610957145691, - 0.6303701996803284, - 0.5799696445465088, - 0.5492344498634338, - 0.5390027165412903, - 0.549553632736206, - 0.5805995464324951, - 0.6312932968139648, - 0.7002524137496948, - 0.7855956554412842, - 0.8849952816963196, - 0.9957396984100342, - 1.114808201789856, - 1.238952875137329, - 1.3628543615341187, - 1.2689669132232666, - 1.175950527191162, - 1.0863425731658936, - 1.0025873184204102, - 0.9269694089889526, - 0.8615514039993286, - 0.8081176280975342, - 0.7681260108947754, - 0.742667019367218, - 0.7324352860450745, - 0.7377099990844727, - 0.7583470344543457, - 0.7937836050987244, - 0.8430531620979309, - 0.9048116207122803, - 0.9773745536804199, - 1.0587623119354248, - 1.1467552185058594, - 1.238952875137329, - 1.3628543615341187, - 1.3109965324401855, - 1.2588634490966797, - 1.2078771591186523, - 1.159428358078003, - 1.1148386001586914, - 1.0753241777420044, - 1.04196298122406, - 1.015665054321289, - 0.9971477389335632, - 0.9869160652160645, - 0.9852490425109863, - 0.9921923875808716, - 1.007556438446045, - 1.0309224128723145, - 1.061652660369873, - 1.0989090204238892, - 1.1416752338409424, - 1.1887849569320679, - 1.238952875137329, - 1.362854242324829, - 1.3585542440414429, - 1.3526815176010132, - 1.3453965187072754, - 1.336897850036621, - 1.3274173736572266, - 1.317213535308838, - 1.3065649271011353, - 1.2957619428634644, - 1.2850990295410156, - 1.2748674154281616, - 1.265345811843872, - 1.2567943334579468, - 1.249445915222168, - 1.2435011863708496, - 1.2391221523284912, - 1.2364283800125122, - 1.2354934215545654, - 1.2363425493240356, - 1.238952875137329 - ], - "y": [ - 1.6305651664733887, - 1.7692841291427612, - 1.9020482301712036, - 2.025236129760742, - 2.1354875564575195, - 2.229794979095459, - 2.305586099624634, - 2.3607935905456543, - 2.393911361694336, - 2.404036283493042, - 2.3908917903900146, - 2.354836940765381, - 2.2968547344207764, - 2.21852707862854, - 2.121990442276001, - 2.009877920150757, - 1.8852479457855225, - 1.7515000104904175, - 1.612282395362854, - 1.4713925123214722, - 1.6305651664733887, - 1.7553431987762451, - 1.8745466470718384, - 1.984924077987671, - 2.0834646224975586, - 2.167480230331421, - 2.2346792221069336, - 2.283228874206543, - 2.3118045330047607, - 2.319627046585083, - 2.3064825534820557, - 2.2727301120758057, - 2.219290018081665, - 2.14762020111084, - 2.059675693511963, - 1.957854986190796, - 1.8449358940124512, - 1.7239984273910522, - 1.598341464996338, - 1.4713925123214722, - 1.6305651664733887, - 1.727763056755066, - 1.820138692855835, - 1.905172348022461, - 1.9805444478988647, - 2.044199228286743, - 2.09440016746521, - 2.1297779083251953, - 2.1493678092956543, - 2.152634859085083, - 2.1394906044006348, - 2.11029314994812, - 2.0658390522003174, - 2.007340908050537, - 1.936394453048706, - 1.8549349308013916, - 1.7651841640472412, - 1.6695903539657593, - 1.5707612037658691, - 1.4713925123214722, - 1.6305651664733887, - 1.6895322799682617, - 1.7447201013565063, - 1.7946231365203857, - 1.8378801345825195, - 1.8733112812042236, - 1.8999499082565308, - 1.917069673538208, - 1.9242033958435059, - 1.921156406402588, - 1.90801203250885, - 1.8851287364959717, - 1.8531306982040405, - 1.8128907680511475, - 1.7655065059661865, - 1.7122704982757568, - 1.654634952545166, - 1.5941718816757202, - 1.5325305461883545, - 1.4713925123214722, - 1.6305651664733887, - 1.64479398727417, - 1.6564637422561646, - 1.6652562618255615, - 1.6709314584732056, - 1.6733347177505493, - 1.6724003553390503, - 1.668154001235962, - 1.660711407661438, - 1.6502755880355835, - 1.6371312141418457, - 1.6216367483139038, - 1.6042150259017944, - 1.585341215133667, - 1.5655299425125122, - 1.5453218221664429, - 1.5252680778503418, - 1.5059155225753784, - 1.4877922534942627, - 1.4713925123214722, - 1.6305652856826782, - 1.5983961820602417, - 1.5649336576461792, - 1.531090497970581, - 1.497789978981018, - 1.4659401178359985, - 1.4364100694656372, - 1.41000497341156, - 1.3874454498291016, - 1.3693466186523438, - 1.356202244758606, - 1.3483707904815674, - 1.3460661172866821, - 1.3493508100509644, - 1.358135461807251, - 1.3721803426742554, - 1.3911023139953613, - 1.414385437965393, - 1.4413944482803345, - 1.4713926315307617, - 1.6305652856826782, - 1.5553667545318604, - 1.4800485372543335, - 1.4066650867462158, - 1.337218165397644, - 1.2736021280288696, - 1.2175521850585938, - 1.1705970764160156, - 1.1340179443359375, - 1.1088125705718994, - 1.095668077468872, - 1.0949434041976929, - 1.1066582202911377, - 1.130492925643921, - 1.1657973527908325, - 1.2116085290908813, - 1.266676902770996, - 1.3295001983642578, - 1.3983650207519531, - 1.4713926315307617, - 1.6305652856826782, - 1.5203685760498047, - 1.4110068082809448, - 1.305463194847107, - 1.2066165208816528, - 1.1171631813049316, - 1.0395432710647583, - 0.9758739471435547, - 0.9278918504714966, - 0.8969061970710754, - 0.8837618231773376, - 0.888817310333252, - 0.9119349718093872, - 0.9524840712547302, - 1.0093584060668945, - 1.0810068845748901, - 1.1654750108718872, - 1.2604585886001587, - 1.3633668422698975, - 1.4713926315307617, - 1.6305652856826782, - 1.4971942901611328, - 1.3652904033660889, - 1.2384517192840576, - 1.1201376914978027, - 1.0135762691497803, - 0.9216735363006592, - 0.8469366431236267, - 0.791404128074646, - 0.7565909624099731, - 0.7434465885162354, - 0.7523295879364014, - 0.7829976677894592, - 0.8346142768859863, - 0.9057714343070984, - 0.9945281744003296, - 1.098463535308838, - 1.2147421836853027, - 1.3401925563812256, - 1.4713926315307617, - 1.6305652856826782, - 1.4883551597595215, - 1.347853422164917, - 1.2128922939300537, - 1.0871531963348389, - 0.9740663170814514, - 0.876715898513794, - 0.797757625579834, - 0.7393452525138855, - 0.703072190284729, - 0.6899278163909912, - 0.7002707123756409, - 0.7338186502456665, - 0.7896566390991211, - 0.8662614822387695, - 0.961543619632721, - 1.072904109954834, - 1.1973050832748413, - 1.3313534259796143, - 1.4713926315307617, - 1.6305652856826782, - 1.4948091506958008, - 1.3605852127075195, - 1.2315547466278076, - 1.1112372875213623, - 1.0029149055480957, - 0.9095422625541687, - 0.833666205406189, - 0.7773566246032715, - 0.7421495318412781, - 0.7290051579475403, - 0.7382820844650269, - 0.7697272300720215, - 0.8224830031394958, - 0.8951101303100586, - 0.9856276512145996, - 1.091566562652588, - 1.2100369930267334, - 1.3378074169158936, - 1.4713926315307617, - 1.6305652856826782, - 1.5158567428588867, - 1.4021062850952148, - 1.2924168109893799, - 1.1897799968719482, - 1.0969959497451782, - 1.0165953636169434, - 0.9507712125778198, - 0.901319146156311, - 0.869588315486908, - 0.8564439415931702, - 0.8622446060180664, - 0.8868322372436523, - 0.9295361042022705, - 0.9891911745071411, - 1.0641703605651855, - 1.1524286270141602, - 1.2515580654144287, - 1.3588550090789795, - 1.4713926315307617, - 1.6305652856826782, - 1.5492172241210938, - 1.4679172039031982, - 1.3888828754425049, - 1.3142701387405396, - 1.2461142539978027, - 1.1862741708755493, - 1.1363823413848877, - 1.09779953956604, - 1.0715785026550293, - 1.058434009552002, - 1.0587248802185059, - 1.0724433660507202, - 1.0992149114608765, - 1.1383094787597656, - 1.1886605024337769, - 1.2488946914672852, - 1.317368984222412, - 1.3922154903411865, - 1.4713926315307617, - 1.6305652856826782, - 1.5912753343582153, - 1.5508862733840942, - 1.5104997158050537, - 1.4712172746658325, - 1.4341106414794922, - 1.4001917839050293, - 1.370386004447937, - 1.3455064296722412, - 1.3262314796447754, - 1.3130871057510376, - 1.306431770324707, - 1.3064470291137695, - 1.3131325244903564, - 1.326305866241455, - 1.3456076383590698, - 1.370511531829834, - 1.4003379344940186, - 1.434273600578308, - 1.4713926315307617, - 1.6305652856826782, - 1.637473464012146, - 1.6420223712921143, - 1.644087791442871, - 1.643613576889038, - 1.6406123638153076, - 1.6351662874221802, - 1.6274237632751465, - 1.6175960302352905, - 1.605951189994812, - 1.5928068161010742, - 1.578521490097046, - 1.5634849071502686, - 1.5481071472167969, - 1.53280770778656, - 1.5180039405822754, - 1.5040996074676514, - 1.4914741516113281, - 1.4804717302322388, - 1.4713925123214722, - 1.6305651664733887, - 1.6828054189682007, - 1.7314496040344238, - 1.775171160697937, - 1.8127772808074951, - 1.8432421684265137, - 1.8657349348068237, - 1.8796420097351074, - 1.8845839500427246, - 1.880426049232483, - 1.8672816753387451, - 1.8455092906951904, - 1.81570303440094, - 1.7786757946014404, - 1.7354375123977661, - 1.6871676445007324, - 1.6351829767227173, - 1.5809013843536377, - 1.525803565979004, - 1.4713925123214722, - 1.6305651664733887, - 1.7223587036132812, - 1.8094773292541504, - 1.8895448446273804, - 1.9603772163391113, - 2.0200421810150146, - 2.0669121742248535, - 2.0997092723846436, - 2.1175379753112793, - 2.119912624359131, - 2.1067683696746826, - 2.078463554382324, - 2.0357701778411865, - 1.9798531532287598, - 1.9122374057769775, - 1.8347675800323486, - 1.7495566606521606, - 1.6589291095733643, - 1.5653568506240845, - 1.4713925123214722, - 1.6305651664733887, - 1.7518470287322998, - 1.867649793624878, - 1.974814534187317, - 2.070418357849121, - 2.15185284614563, - 2.2168972492218018, - 2.263777256011963, - 2.2912137508392334, - 2.2984585762023926, - 2.2853143215179443, - 2.2521393299102783, - 2.199838161468506, - 2.129837989807129, - 2.044048309326172, - 1.9448087215423584, - 1.8348263502120972, - 1.7171015739440918, - 1.5948452949523926, - 1.4713925123214722, - 1.6305651664733887, - 1.7680751085281372, - 1.8996632099151611, - 2.021739959716797, - 2.1309757232666016, - 2.224390745162964, - 2.299436569213867, - 2.354066848754883, - 2.3867907524108887, - 2.3967156410217285, - 2.3835713863372803, - 2.3477160930633545, - 2.290127754211426, - 2.2123775482177734, - 2.116586208343506, - 2.005366325378418, - 1.8817517757415771, - 1.7491148710250854, - 1.61107337474823, - 1.4713925123214722, - 1.6305651664733887, - 1.7692841291427612, - 1.9020482301712036, - 2.025236129760742, - 2.1354875564575195, - 2.229794979095459, - 2.305586099624634, - 2.3607935905456543, - 2.393911361694336, - 2.404036045074463, - 2.3908917903900146, - 2.354836940765381, - 2.2968547344207764, - 2.218526840209961, - 2.121990442276001, - 2.009877920150757, - 1.8852479457855225, - 1.7515000104904175, - 1.612282395362854, - 1.4713925123214722 - ], - "z": [ - 3.7873144149780273, - 3.71661114692688, - 3.643493175506592, - 3.5699548721313477, - 3.49800181388855, - 3.4295973777770996, - 3.3666067123413086, - 3.31074857711792, - 3.2635464668273926, - 3.226287841796875, - 3.199989080429077, - 3.1853675842285156, - 3.1828222274780273, - 3.192422389984131, - 3.2139060497283936, - 3.246687412261963, - 3.289872169494629, - 3.34228253364563, - 3.4024884700775146, - 3.46884822845459, - 3.7873144149780273, - 3.7049307823181152, - 3.620450735092163, - 3.5361790657043457, - 3.454414129257202, - 3.3773863315582275, - 3.307197093963623, - 3.245760440826416, - 3.1947526931762695, - 3.155564785003662, - 3.1292662620544434, - 3.1165738105773926, - 3.1178340911865234, - 3.133012533187866, - 3.1616950035095215, - 3.203099489212036, - 3.256096363067627, - 3.319240093231201, - 3.39080810546875, - 3.46884822845459, - 3.7873144149780273, - 3.7019424438476562, - 3.614555835723877, - 3.5275380611419678, - 3.443262815475464, - 3.3640289306640625, - 3.2919979095458984, - 3.2291340827941895, - 3.177152633666992, - 3.1374714374542236, - 3.111172676086426, - 3.0989737510681152, - 3.101207733154297, - 3.1178133487701416, - 3.1483376026153564, - 3.191948175430298, - 3.247455358505249, - 3.313344955444336, - 3.387819766998291, - 3.46884822845459, - 3.7873144149780273, - 3.707970142364502, - 3.6264467239379883, - 3.5449678897857666, - 3.465756416320801, - 3.390972375869751, - 3.3226561546325684, - 3.2626712322235107, - 3.212653636932373, - 3.1739680767059326, - 3.1476693153381348, - 3.134474992752075, - 3.134744882583618, - 3.1484718322753906, - 3.175281047821045, - 3.2144417762756348, - 3.264885425567627, - 3.3252360820770264, - 3.3938474655151367, - 3.46884822845459, - 3.7873144149780273, - 3.722360849380493, - 3.6548354625701904, - 3.586580276489258, - 3.5194571018218994, - 3.4552969932556152, - 3.39585018157959, - 3.3427376747131348, - 3.2974088191986084, - 3.2610998153686523, - 3.2348010540008545, - 3.2192299365997314, - 3.214811325073242, - 3.221665620803833, - 3.2396059036254883, - 3.2681427001953125, - 3.306497573852539, - 3.3536245822906494, - 3.408238172531128, - 3.46884822845459, - 3.7873144149780273, - 3.7435548305511475, - 3.6966452598571777, - 3.6478655338287354, - 3.598546028137207, - 3.550032377243042, - 3.503647565841675, - 3.4606571197509766, - 3.4222333431243896, - 3.3894248008728027, - 3.363126039505005, - 3.344054698944092, - 3.332730770111084, - 3.329463005065918, - 3.334341049194336, - 3.34723162651062, - 3.3677828311920166, - 3.3954343795776367, - 3.4294321537017822, - 3.46884822845459, - 3.7873144149780273, - 3.7692553997039795, - 3.747345447540283, - 3.722182512283325, - 3.6944525241851807, - 3.664912223815918, - 3.6343672275543213, - 3.6036508083343506, - 3.5736007690429688, - 3.545036792755127, - 3.518738031387329, - 3.495421886444092, - 3.475724220275879, - 3.4601826667785645, - 3.449220895767212, - 3.4431378841400146, - 3.4420998096466064, - 3.4461348056793213, - 3.4551327228546143, - 3.46884822845459, - 3.7873144149780273, - 3.796677589416504, - 3.8014421463012695, - 3.8014776706695557, - 3.796783447265625, - 3.787487506866455, - 3.77384352684021, - 3.756223201751709, - 3.735107660293579, - 3.7110726833343506, - 3.684774160385132, - 3.6569290161132812, - 3.6282968521118164, - 3.599658966064453, - 3.571796417236328, - 3.545469045639038, - 3.521395206451416, - 3.5002312660217285, - 3.4825549125671387, - 3.46884822845459, - 3.7873144149780273, - 3.822849988937378, - 3.8530728816986084, - 3.8771584033966064, - 3.8944499492645264, - 3.904475450515747, - 3.9069619178771973, - 3.901841163635254, - 3.8892526626586914, - 3.8695404529571533, - 3.8432416915893555, - 3.8110740184783936, - 3.7739145755767822, - 3.7327773571014404, - 3.68878436088562, - 3.6431353092193604, - 3.597075939178467, - 3.5518620014190674, - 3.5087273120880127, - 3.46884822845459, - 3.7873144149780273, - 3.8449361324310303, - 3.8966426849365234, - 3.941023349761963, - 3.976868152618408, - 4.003198623657227, - 4.019297122955322, - 4.024724006652832, - 4.019331932067871, - 4.003267288208008, - 3.976968288421631, - 3.941153049468994, - 3.8967976570129395, - 3.8451125621795654, - 3.7875075340270996, - 3.725553512573242, - 3.6609408855438232, - 3.5954318046569824, - 3.530813455581665, - 3.46884822845459, - 3.7873144149780273, - 3.8605427742004395, - 3.9274301528930664, - 3.986151933670044, - 4.035106658935547, - 4.072958946228027, - 4.098675727844238, - 4.111556053161621, - 4.11124849319458, - 4.097761631011963, - 4.071462631225586, - 4.033069610595703, - 3.9836297035217285, - 3.9244914054870605, - 3.8572676181793213, - 3.783792018890381, - 3.7060694694519043, - 3.6262192726135254, - 3.546420097351074, - 3.46884822845459, - 3.7873144149780273, - 3.867978572845459, - 3.94209885597229, - 4.007653713226318, - 4.062854766845703, - 4.106196403503418, - 4.136496067047119, - 4.152927398681641, - 4.15504264831543, - 4.1427836418151855, - 4.116485118865967, - 4.076863765716553, - 4.025001049041748, - 3.9623115062713623, - 3.890505075454712, - 3.811540126800537, - 3.7275710105895996, - 3.640887975692749, - 3.5538558959960938, - 3.46884822845459, - 3.7873144149780273, - 3.8664376735687256, - 3.9390594959259033, - 4.003198146820068, - 4.05710506439209, - 4.09930944442749, - 4.128659248352051, - 4.144355297088623, - 4.145968437194824, - 4.1334547996521, - 4.107156276702881, - 4.067789554595947, - 4.0164289474487305, - 3.954474925994873, - 3.883618116378784, - 3.805790662765503, - 3.7231156826019287, - 3.6378486156463623, - 3.5523149967193604, - 3.46884822845459, - 3.7873144149780273, - 3.8560874462127686, - 3.9186410903930664, - 3.973268985748291, - 4.018481254577637, - 4.053044319152832, - 4.076015472412109, - 4.08676815032959, - 4.08500862121582, - 4.070785999298096, - 4.044486999511719, - 4.006830215454102, - 3.958841562271118, - 3.9018309116363525, - 3.837352991104126, - 3.7671666145324707, - 3.6931862831115723, - 3.6174302101135254, - 3.5419647693634033, - 3.46884822845459, - 3.7873144149780273, - 3.8380491733551025, - 3.883056640625, - 3.9211089611053467, - 3.9511682987213135, - 3.972414493560791, - 3.9842684268951416, - 3.9864063262939453, - 3.9787702560424805, - 3.9615681171417236, - 3.935269355773926, - 3.9005913734436035, - 3.8584799766540527, - 3.8100838661193848, - 3.756723403930664, - 3.6998536586761475, - 3.641026258468628, - 3.581845760345459, - 3.5239264965057373, - 3.46884822845459, - 3.7873144149780273, - 3.8142776489257812, - 3.8361620903015137, - 3.852370262145996, - 3.8624608516693115, - 3.8661580085754395, - 3.86336088180542, - 3.8541462421417236, - 3.8387649059295654, - 3.817636728286743, - 3.7913379669189453, - 3.7605860233306885, - 3.726219654083252, - 3.689176559448242, - 3.6504666805267334, - 3.6111462116241455, - 3.5722877979278564, - 3.5349512100219727, - 3.500154972076416, - 3.46884822845459, - 3.7873144149780273, - 3.787348747253418, - 3.783038854598999, - 3.7745022773742676, - 3.7619714736938477, - 3.74578857421875, - 3.7263948917388916, - 3.704319477081299, - 3.6801645755767822, - 3.6545889377593994, - 3.6282901763916016, - 3.6019856929779053, - 3.5763931274414062, - 3.5522103309631348, - 3.530097246170044, - 3.5106568336486816, - 3.494419574737549, - 3.481828212738037, - 3.473226308822632, - 3.46884822845459, - 3.7873144149780273, - 3.760180950164795, - 3.7294442653656006, - 3.6959426403045654, - 3.6605899333953857, - 3.6243505477905273, - 3.5882129669189453, - 3.5531625747680664, - 3.520156145095825, - 3.490093469619751, - 3.463794708251953, - 3.4419772624969482, - 3.425236225128174, - 3.4140284061431885, - 3.4086592197418213, - 3.409275531768799, - 3.415860176086426, - 3.4282336235046387, - 3.4460582733154297, - 3.46884822845459, - 3.7873144149780273, - 3.735718250274658, - 3.6811859607696533, - 3.6252050399780273, - 3.569302558898926, - 3.5150036811828613, - 3.4637889862060547, - 3.41705584526062, - 3.3760788440704346, - 3.3419759273529053, - 3.3156771659851074, - 3.2979001998901367, - 3.2891294956207275, - 3.289604425430298, - 3.2993123531341553, - 3.317988157272339, - 3.3451223373413086, - 3.3799750804901123, - 3.421595573425293, - 3.46884822845459, - 3.7873144149780273, - 3.71661114692688, - 3.643493175506592, - 3.5699548721313477, - 3.49800181388855, - 3.4295971393585205, - 3.3666067123413086, - 3.31074857711792, - 3.2635462284088135, - 3.226287841796875, - 3.199989080429077, - 3.1853675842285156, - 3.1828222274780273, - 3.1924221515655518, - 3.2139058113098145, - 3.246687412261963, - 3.289872169494629, - 3.34228253364563, - 3.4024884700775146, - 3.46884822845459 - ] - }, - { - "marker": { - "color": "black", - "size": 2 - }, - "mode": "markers", - "name": "Means", - "type": "scatter3d", - "x": [ - 0.46296361088752747, - 0.4355328679084778, - 0.4062245488166809, - 0.37643295526504517, - 0.3464522957801819, - 0.3163789212703705, - 0.28625327348709106, - 0.256095290184021, - 0.22591593861579895, - 0.19572171568870544, - 0.16551676392555237, - 0.13530373573303223, - 0.10508459806442261, - 0.07486063241958618, - 0.044632792472839355 - ], - "y": [ - 0.43206942081451416, - 0.4494422376155853, - 0.4680041968822479, - 0.48687222599983215, - 0.5058599710464478, - 0.5249064564704895, - 0.5439860820770264, - 0.5630861520767212, - 0.58219975233078, - 0.6013227701187134, - 0.6204525828361511, - 0.6395875215530396, - 0.6587263345718384, - 0.6778681874275208, - 0.6970124840736389 - ], - "z": [ - -0.2026686668395996, - -0.4970816969871521, - -0.811646580696106, - -1.131398320198059, - -1.4531790018081665, - -1.775955080986023, - -2.099292278289795, - -2.422976493835449, - -2.746890068054199, - -3.070962905883789, - -3.3951516151428223, - -3.7194266319274902, - -4.043766975402832, - -4.368159770965576, - -4.692593097686768 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.4774506688117981, - 0.4878585636615753, - 0.4975874125957489, - 0.506371796131134, - 0.5139721035957336, - 0.5201810598373413, - 0.5248292088508606, - 0.5277898907661438, - 0.5289822816848755, - 0.5283738374710083, - 0.5259811878204346, - 0.5218695402145386, - 0.5161511301994324, - 0.5089818835258484, - 0.5005574226379395, - 0.49110743403434753, - 0.48088979721069336, - 0.4701831638813019, - 0.4592795968055725, - 0.44847652316093445, - 0.4774506688117981, - 0.48696497082710266, - 0.4958246052265167, - 0.5037878155708313, - 0.5106375217437744, - 0.5161867737770081, - 0.5202842354774475, - 0.5228181481361389, - 0.5237193703651428, - 0.522963285446167, - 0.5205706357955933, - 0.5166066288948059, - 0.5111793279647827, - 0.5044368505477905, - 0.4965631067752838, - 0.4877728521823883, - 0.478305846452713, - 0.4684203565120697, - 0.45838600397109985, - 0.44847652316093445, - 0.4774506688117981, - 0.4850189685821533, - 0.49198561906814575, - 0.4981606602668762, - 0.5033755898475647, - 0.5074881911277771, - 0.5103862881660461, - 0.5119907855987549, - 0.512257993221283, - 0.511180579662323, - 0.5087878704071045, - 0.505145251750946, - 0.5003520250320435, - 0.49453893303871155, - 0.48786455392837524, - 0.4805109202861786, - 0.47267866134643555, - 0.46458137035369873, - 0.4564399719238281, - 0.44847652316093445, - 0.4774506688117981, - 0.48223137855529785, - 0.4864864945411682, - 0.4900999963283539, - 0.492973268032074, - 0.49502795934677124, - 0.4962080121040344, - 0.4964812397956848, - 0.4958402216434479, - 0.4943023920059204, - 0.4919097125530243, - 0.48872748017311096, - 0.4848424792289734, - 0.48036065697669983, - 0.475404292345047, - 0.47010859847068787, - 0.4646179974079132, - 0.4590822756290436, - 0.45365241169929504, - 0.44847655296325684, - 0.4774506688117981, - 0.4789043366909027, - 0.47992315888404846, - 0.48047935962677, - 0.48055779933929443, - 0.4801563024520874, - 0.4792858362197876, - 0.477970153093338, - 0.47624513506889343, - 0.47415781021118164, - 0.4717651307582855, - 0.4691323935985565, - 0.4663313627243042, - 0.463438481092453, - 0.46053266525268555, - 0.4576931297779083, - 0.45499736070632935, - 0.45251891016960144, - 0.4503253698348999, - 0.44847655296325684, - 0.4774506688117981, - 0.47539833188056946, - 0.47300681471824646, - 0.4703413248062134, - 0.4674746096134186, - 0.464484840631485, - 0.46145355701446533, - 0.45846349000930786, - 0.4555961787700653, - 0.4529297947883606, - 0.45053714513778687, - 0.4484834372997284, - 0.44682469964027405, - 0.44560620188713074, - 0.44486117362976074, - 0.44460994005203247, - 0.4448593258857727, - 0.44560256600379944, - 0.44681936502456665, - 0.44847655296325684, - 0.4774506688117981, - 0.4720933437347412, - 0.46648696064949036, - 0.4607844948768616, - 0.45514145493507385, - 0.44971176981925964, - 0.4446435868740082, - 0.4400750994682312, - 0.43613097071647644, - 0.4329187572002411, - 0.43052610754966736, - 0.4290182590484619, - 0.4284363389015198, - 0.4287962317466736, - 0.4300881326198578, - 0.43227678537368774, - 0.4353024959564209, - 0.4390827417373657, - 0.4435143768787384, - 0.44847655296325684, - 0.4774506986141205, - 0.4693474769592285, - 0.46107015013694763, - 0.4528444707393646, - 0.44489482045173645, - 0.437438040971756, - 0.43067750334739685, - 0.4247976839542389, - 0.4199588894844055, - 0.416293203830719, - 0.4139005243778229, - 0.412846177816391, - 0.4131588935852051, - 0.41483014822006226, - 0.41781437397003174, - 0.42203015089035034, - 0.42736247181892395, - 0.4336659014225006, - 0.4407685101032257, - 0.44847655296325684, - 0.4774506986141205, - 0.4674583375453949, - 0.45734336972236633, - 0.4473817050457001, - 0.4378450810909271, - 0.4289936423301697, - 0.42106878757476807, - 0.414286732673645, - 0.4088324308395386, - 0.4048547148704529, - 0.40246206521987915, - 0.40171971917152405, - 0.4026479423046112, - 0.40522143244743347, - 0.40936997532844543, - 0.414980411529541, - 0.4218997061252594, - 0.4299391210079193, - 0.4388793408870697, - 0.44847655296325684, - 0.4774506986141205, - 0.46663057804107666, - 0.45571044087409973, - 0.4449881613254547, - 0.43475621938705444, - 0.4252936840057373, - 0.4168586730957031, - 0.4096812903881073, - 0.403957337141037, - 0.39984288811683655, - 0.3974502384662628, - 0.3968445956707001, - 0.3980425000190735, - 0.40101131796836853, - 0.40567001700401306, - 0.41189152002334595, - 0.41950616240501404, - 0.4283061921596527, - 0.43805161118507385, - 0.44847655296325684, - 0.4774506986141205, - 0.46695396304130554, - 0.45634835958480835, - 0.44592323899269104, - 0.4359629154205322, - 0.4267390966415405, - 0.41850340366363525, - 0.41148045659065247, - 0.40586185455322266, - 0.40180081129074097, - 0.39940816164016724, - 0.39874911308288574, - 0.39984166622161865, - 0.40265604853630066, - 0.40711545944213867, - 0.4130982458591461, - 0.42044124007225037, - 0.42894411087036133, - 0.43837496638298035, - 0.44847655296325684, - 0.4774506986141205, - 0.46839338541030884, - 0.45918798446655273, - 0.4500855803489685, - 0.44133442640304565, - 0.4331732988357544, - 0.42582473158836365, - 0.4194892346858978, - 0.4143396019935608, - 0.41051632165908813, - 0.408123642206192, - 0.40722689032554626, - 0.4078504741191864, - 0.40997737646102905, - 0.41354963183403015, - 0.41846975684165955, - 0.42460358142852783, - 0.4317837357521057, - 0.43981441855430603, - 0.44847655296325684, - 0.4774506688117981, - 0.4707929193973541, - 0.46392157673835754, - 0.45702412724494934, - 0.45028868317604065, - 0.4438989758491516, - 0.43802928924560547, - 0.4328397512435913, - 0.4284719228744507, - 0.4250449538230896, - 0.4226522743701935, - 0.42135918140411377, - 0.4212009906768799, - 0.4221819341182709, - 0.42427530884742737, - 0.42742401361465454, - 0.43154212832450867, - 0.4365173280239105, - 0.4422139525413513, - 0.44847655296325684, - 0.4774506688117981, - 0.4738925099372864, - 0.47003620862960815, - 0.4659869968891144, - 0.46185532212257385, - 0.45775386691093445, - 0.45379453897476196, - 0.450085312128067, - 0.44672736525535583, - 0.4438123106956482, - 0.4414196312427521, - 0.4396146237850189, - 0.4384465217590332, - 0.43794718384742737, - 0.4381302297115326, - 0.43899065256118774, - 0.4405049979686737, - 0.44263195991516113, - 0.44531354308128357, - 0.44847655296325684, - 0.4774506688117981, - 0.4773562550544739, - 0.47686925530433655, - 0.47600293159484863, - 0.47478094696998596, - 0.4732365906238556, - 0.4714120328426361, - 0.4693570137023926, - 0.46712759137153625, - 0.4647845923900604, - 0.4623919427394867, - 0.46001487970352173, - 0.45771822333335876, - 0.4555646777153015, - 0.45361292362213135, - 0.45191627740859985, - 0.45052093267440796, - 0.4494650065898895, - 0.44877728819847107, - 0.44847655296325684, - 0.4774506688117981, - 0.4808088541030884, - 0.48368024826049805, - 0.48598653078079224, - 0.4876648187637329, - 0.48866933584213257, - 0.48897263407707214, - 0.488566517829895, - 0.48746198415756226, - 0.4856892228126526, - 0.48329654335975647, - 0.48034927248954773, - 0.4769277274608612, - 0.47312527894973755, - 0.4690456688404083, - 0.4648001492023468, - 0.46050453186035156, - 0.456275999546051, - 0.4522298574447632, - 0.44847655296325684, - 0.4774506688117981, - 0.48387610912323, - 0.489731103181839, - 0.49485594034194946, - 0.4991108477115631, - 0.5023797154426575, - 0.5045734643936157, - 0.5056321620941162, - 0.5055270195007324, - 0.5042608380317688, - 0.5018681883811951, - 0.4984142780303955, - 0.4939934015274048, - 0.48872610926628113, - 0.4827560782432556, - 0.476246178150177, - 0.4693739414215088, - 0.46232685446739197, - 0.4552971422672272, - 0.44847652316093445, - 0.4774506688117981, - 0.4862256646156311, - 0.4943661093711853, - 0.5016499757766724, - 0.5078786015510559, - 0.5128820538520813, - 0.5165238380432129, - 0.5187046527862549, - 0.5193650126457214, - 0.5184868574142456, - 0.5160942077636719, - 0.5122523307800293, - 0.5070658922195435, - 0.5006765127182007, - 0.49325841665267944, - 0.4850139319896698, - 0.4761680066585541, - 0.4669618606567383, - 0.4576466977596283, - 0.44847652316093445, - 0.4774506688117981, - 0.4876028895378113, - 0.49708303809165955, - 0.5056324601173401, - 0.513018012046814, - 0.519038200378418, - 0.5235288143157959, - 0.5263673663139343, - 0.52747642993927, - 0.5268257856369019, - 0.5244331359863281, - 0.5203636884689331, - 0.5147286057472229, - 0.5076814889907837, - 0.4994145631790161, - 0.49015334248542786, - 0.4801504611968994, - 0.4696787893772125, - 0.45902392268180847, - 0.44847652316093445, - 0.4774506688117981, - 0.4878585636615753, - 0.4975874125957489, - 0.506371796131134, - 0.5139721035957336, - 0.5201810598373413, - 0.5248292088508606, - 0.5277898907661438, - 0.5289822816848755, - 0.5283738374710083, - 0.5259811282157898, - 0.5218695402145386, - 0.5161511301994324, - 0.5089818835258484, - 0.5005574226379395, - 0.49110743403434753, - 0.48088979721069336, - 0.4701831638813019, - 0.4592795968055725, - 0.44847652316093445 - ], - "y": [ - 0.42289426922798157, - 0.4240623414516449, - 0.42544886469841003, - 0.42701593041419983, - 0.4287208616733551, - 0.43051713705062866, - 0.43235576152801514, - 0.43418657779693604, - 0.4359596371650696, - 0.43762657046318054, - 0.4391419291496277, - 0.4404643774032593, - 0.44155779480934143, - 0.4423924386501312, - 0.4429454803466797, - 0.44320183992385864, - 0.44315454363822937, - 0.44280487298965454, - 0.4421623945236206, - 0.44124457240104675, - 0.42289426922798157, - 0.4274565577507019, - 0.4321446418762207, - 0.43683069944381714, - 0.441386878490448, - 0.4456889033317566, - 0.44961944222450256, - 0.4530712366104126, - 0.45595017075538635, - 0.45817768573760986, - 0.459693044424057, - 0.46045488119125366, - 0.460442453622818, - 0.45965608954429626, - 0.4581172466278076, - 0.45586785674095154, - 0.4529693126678467, - 0.4495006799697876, - 0.4455565810203552, - 0.44124457240104675, - 0.42289426922798157, - 0.43036991357803345, - 0.4378919005393982, - 0.4452551007270813, - 0.4522585868835449, - 0.4587113857269287, - 0.46443745493888855, - 0.4692806303501129, - 0.47310876846313477, - 0.4758174419403076, - 0.47733280062675476, - 0.47761350870132446, - 0.4766518473625183, - 0.47447413206100464, - 0.47113972902297974, - 0.46673956513404846, - 0.46139371395111084, - 0.4552479386329651, - 0.44846993684768677, - 0.44124457240104675, - 0.42289426922798157, - 0.43248671293258667, - 0.44206780195236206, - 0.45137616991996765, - 0.4601578712463379, - 0.46817338466644287, - 0.47520411014556885, - 0.4810582101345062, - 0.4855760335922241, - 0.4886343479156494, - 0.49014970660209656, - 0.4900807738304138, - 0.488429456949234, - 0.48524078726768494, - 0.4806017279624939, - 0.47463884949684143, - 0.4675147533416748, - 0.45942384004592896, - 0.4505867660045624, - 0.44124457240104675, - 0.42289426922798157, - 0.43357762694358826, - 0.44421982765197754, - 0.45453059673309326, - 0.46422868967056274, - 0.4730495810508728, - 0.4807526171207428, - 0.48712772130966187, - 0.4920009672641754, - 0.4952394366264343, - 0.49675479531288147, - 0.4965056777000427, - 0.49449893832206726, - 0.4907892942428589, - 0.48547789454460144, - 0.4787096679210663, - 0.4706692099571228, - 0.46157586574554443, - 0.4516776502132416, - 0.44124457240104675, - 0.42289426922798157, - 0.43352437019348145, - 0.4441147744655609, - 0.45437660813331604, - 0.4640299677848816, - 0.4728115200996399, - 0.48048174381256104, - 0.486831396818161, - 0.4916872978210449, - 0.49491697549819946, - 0.4964323341846466, - 0.4961920380592346, - 0.4942026436328888, - 0.4905184209346771, - 0.4852398633956909, - 0.47851094603538513, - 0.4705152213573456, - 0.4614708125591278, - 0.45162439346313477, - 0.44124457240104675, - 0.42289426922798157, - 0.43233272433280945, - 0.4417639970779419, - 0.4509308338165283, - 0.45958319306373596, - 0.4674850106239319, - 0.47442081570625305, - 0.4802013635635376, - 0.484669029712677, - 0.4877018928527832, - 0.48921725153923035, - 0.4891737699508667, - 0.4875726103782654, - 0.48445749282836914, - 0.4799133539199829, - 0.4740641713142395, - 0.46706944704055786, - 0.4591200351715088, - 0.45043274760246277, - 0.44124457240104675, - 0.42289426922798157, - 0.43013185262680054, - 0.4374222755432129, - 0.4445666968822479, - 0.4513702392578125, - 0.45764729380607605, - 0.46322664618492126, - 0.4679561257362366, - 0.47170668840408325, - 0.47437605261802673, - 0.4758914113044739, - 0.47621142864227295, - 0.47532737255096436, - 0.47326332330703735, - 0.4700756072998047, - 0.46585121750831604, - 0.46070531010627747, - 0.4547783136367798, - 0.44823187589645386, - 0.44124457240104675, - 0.42289426922798157, - 0.42716023325920105, - 0.43156009912490845, - 0.4359738826751709, - 0.4402811527252197, - 0.44436439871788025, - 0.4481123089790344, - 0.4514226019382477, - 0.4542049765586853, - 0.4563835561275482, - 0.45789891481399536, - 0.458709716796875, - 0.4587938189506531, - 0.4581489562988281, - 0.4567927420139313, - 0.4547621011734009, - 0.45211249589920044, - 0.44891613721847534, - 0.44526025652885437, - 0.44124457240104675, - 0.42289426922798157, - 0.42373988032341003, - 0.4248127341270447, - 0.426083505153656, - 0.4275175631046295, - 0.42907577753067017, - 0.4307156503200531, - 0.4323924481868744, - 0.4340604543685913, - 0.43567413091659546, - 0.4371894896030426, - 0.4385651648044586, - 0.4397636950016022, - 0.4407522976398468, - 0.4415040910243988, - 0.44199851155281067, - 0.44222211837768555, - 0.4421687722206116, - 0.44183993339538574, - 0.44124457240104675, - 0.42289426922798157, - 0.42024147510528564, - 0.4179113209247589, - 0.41596734523773193, - 0.4144625961780548, - 0.4134381413459778, - 0.41292187571525574, - 0.41292789578437805, - 0.4134560823440552, - 0.4144919514656067, - 0.41600731015205383, - 0.4179607927799225, - 0.42029914259910583, - 0.4229585528373718, - 0.4258664548397064, - 0.42894357442855835, - 0.4321059584617615, - 0.4352673590183258, - 0.43834149837493896, - 0.44124457240104675, - 0.42289426922798157, - 0.417044073343277, - 0.41160374879837036, - 0.40672168135643005, - 0.4025310277938843, - 0.39914608001708984, - 0.3966592252254486, - 0.3951382637023926, - 0.3946246802806854, - 0.39513248205184937, - 0.3966478407382965, - 0.39912939071655273, - 0.402509480714798, - 0.4066958725452423, - 0.41157442331314087, - 0.41701197624206543, - 0.4228602945804596, - 0.42895978689193726, - 0.4351441264152527, - 0.44124457240104675, - 0.42289426922798157, - 0.41449421644210815, - 0.4065735638141632, - 0.3993483781814575, - 0.3930157423019409, - 0.3877483904361725, - 0.3836899995803833, - 0.38095125555992126, - 0.3796069025993347, - 0.3796935975551605, - 0.38120895624160767, - 0.3841116428375244, - 0.38832250237464905, - 0.3937266767024994, - 0.4001767039299011, - 0.40749672055244446, - 0.41548699140548706, - 0.4239296019077301, - 0.4325942397117615, - 0.44124457240104675, - 0.42289426922798157, - 0.4128682017326355, - 0.4033658802509308, - 0.3946464955806732, - 0.3869479298591614, - 0.38048017024993896, - 0.37541961669921875, - 0.37190431356430054, - 0.3700301945209503, - 0.3698483109474182, - 0.37136366963386536, - 0.37453493475914, - 0.3792755603790283, - 0.38545629382133484, - 0.3929084837436676, - 0.4014289081096649, - 0.41078510880470276, - 0.4207219183444977, - 0.4309682250022888, - 0.44124457240104675, - 0.42289426922798157, - 0.4123421907424927, - 0.402328222990036, - 0.3931255340576172, - 0.3849851191043854, - 0.3781290352344513, - 0.3727443218231201, - 0.3689778447151184, - 0.36693233251571655, - 0.3666635751724243, - 0.36817893385887146, - 0.37143704295158386, - 0.3763490617275238, - 0.3827809989452362, - 0.39055734872817993, - 0.3994660973548889, - 0.40926414728164673, - 0.4196842610836029, - 0.4304422438144684, - 0.44124457240104675, - 0.42289426922798157, - 0.4129732549190521, - 0.4035731256008148, - 0.3949503004550934, - 0.3873400092124939, - 0.38094979524612427, - 0.3759540021419525, - 0.3724888861179352, - 0.37064898014068604, - 0.37048444151878357, - 0.3719998002052307, - 0.37515369057655334, - 0.3798601031303406, - 0.3859906494617462, - 0.3933781087398529, - 0.40182095766067505, - 0.4110889136791229, - 0.4209291636943817, - 0.43107327818870544, - 0.44124457240104675, - 0.42289426922798157, - 0.4146929681301117, - 0.4069656431674957, - 0.39992308616638184, - 0.3937573730945587, - 0.3886367380619049, - 0.38470083475112915, - 0.3820570111274719, - 0.38077741861343384, - 0.3808969259262085, - 0.38241228461265564, - 0.38528215885162354, - 0.3894282579421997, - 0.39473751187324524, - 0.40106505155563354, - 0.40823835134506226, - 0.4160616993904114, - 0.4243216812610626, - 0.432792991399765, - 0.44124457240104675, - 0.42289426922798157, - 0.41731497645378113, - 0.4121381342411041, - 0.40750497579574585, - 0.4035418629646301, - 0.4003569185733795, - 0.39803698658943176, - 0.3966453969478607, - 0.39622005820274353, - 0.3967726230621338, - 0.39828798174858093, - 0.4007247984409332, - 0.4040166139602661, - 0.40807366371154785, - 0.41278523206710815, - 0.41802284121513367, - 0.4236435890197754, - 0.429494172334671, - 0.43541499972343445, - 0.44124457240104675, - 0.42289426922798157, - 0.42055514454841614, - 0.41853010654449463, - 0.41687437891960144, - 0.41563311219215393, - 0.4148402214050293, - 0.41451728343963623, - 0.4146731197834015, - 0.41530346870422363, - 0.41639116406440735, - 0.4179065227508545, - 0.41980820894241333, - 0.4220443367958069, - 0.42455393075942993, - 0.42726853489875793, - 0.43011409044265747, - 0.433012992143631, - 0.4358861446380615, - 0.43865516781806946, - 0.44124457240104675, - 0.42289426922798157, - 0.4240623414516449, - 0.42544886469841003, - 0.4270159602165222, - 0.4287208914756775, - 0.43051716685295105, - 0.4323557913303375, - 0.43418657779693604, - 0.4359596371650696, - 0.43762657046318054, - 0.4391419291496277, - 0.4404643774032593, - 0.4415578246116638, - 0.4423924386501312, - 0.4429454803466797, - 0.44320183992385864, - 0.44315457344055176, - 0.44280490279197693, - 0.4421623945236206, - 0.44124457240104675 - ], - "z": [ - -0.047179609537124634, - -0.0502268522977829, - -0.057432323694229126, - -0.06859946250915527, - -0.08342364430427551, - -0.10150052607059479, - -0.12233702093362808, - -0.14536473155021667, - -0.1699555665254593, - -0.1954387128353119, - -0.22111909091472626, - -0.24629616737365723, - -0.27028322219848633, - -0.2924259305000305, - -0.312120258808136, - -0.3288290500640869, - -0.3420965373516083, - -0.3515607714653015, - -0.3569636344909668, - -0.3581577241420746, - -0.047179609537124634, - -0.049943313002586365, - -0.05687296390533447, - -0.06777957081794739, - -0.08236555755138397, - -0.10023311525583267, - -0.12089485675096512, - -0.14378716051578522, - -0.16828560829162598, - -0.1937219351530075, - -0.21940229833126068, - -0.2446262240409851, - -0.2687056362628937, - -0.29098373651504517, - -0.31085285544395447, - -0.32777097821235657, - -0.3412766456604004, - -0.35100144147872925, - -0.35668009519577026, - -0.3581577241420746, - -0.047179609537124634, - -0.049590080976486206, - -0.05617615580558777, - -0.0667581707239151, - -0.0810474380850792, - -0.09865422546863556, - -0.11909826844930649, - -0.14182187616825104, - -0.16620522737503052, - -0.19158321619033813, - -0.2172635942697525, - -0.24254584312438965, - -0.2667403519153595, - -0.28918716311454773, - -0.30927395820617676, - -0.3264528512954712, - -0.3402552306652069, - -0.35030460357666016, - -0.3563268780708313, - -0.3581577241420746, - -0.047179609537124634, - -0.04920545220375061, - -0.055417388677597046, - -0.06564594805240631, - -0.0796121209859848, - -0.0969349592924118, - -0.11714193969964981, - -0.1396818459033966, - -0.16393989324569702, - -0.18925435841083527, - -0.21493473649024963, - -0.24028050899505615, - -0.26460033655166626, - -0.28723084926605225, - -0.307554692029953, - -0.3250175416469574, - -0.3391430377960205, - -0.34954583644866943, - -0.3559422492980957, - -0.3581577241420746, - -0.047179609537124634, - -0.04883110523223877, - -0.054678887128829956, - -0.06456345319747925, - -0.07821514457464218, - -0.09526161849498749, - -0.11523787677288055, - -0.13759900629520416, - -0.16173508763313293, - -0.1869877129793167, - -0.21266809105873108, - -0.23807570338249207, - -0.2625174820423126, - -0.2853267788887024, - -0.3058813512325287, - -0.3236205577850342, - -0.33806049823760986, - -0.34880733489990234, - -0.3555678725242615, - -0.3581577241420746, - -0.047179609537124634, - -0.04850758612155914, - -0.054040685296058655, - -0.06362795829772949, - -0.07700788974761963, - -0.09381553530693054, - -0.11359240859746933, - -0.13579903542995453, - -0.15982970595359802, - -0.18502891063690186, - -0.21070927381515503, - -0.23617032170295715, - -0.260717511177063, - -0.28368130326271057, - -0.30443525314331055, - -0.3224133253097534, - -0.3371250331401825, - -0.34816914796829224, - -0.35524436831474304, - -0.3581577241420746, - -0.047179609537124634, - -0.04826997220516205, - -0.05357193946838379, - -0.06294086575508118, - -0.07612119615077972, - -0.09275342524051666, - -0.11238384991884232, - -0.13447698950767517, - -0.15843024849891663, - -0.18359020352363586, - -0.20927058160305023, - -0.23477086424827576, - -0.2593954801559448, - -0.28247275948524475, - -0.30337315797805786, - -0.3215266168117523, - -0.3364379405975342, - -0.34770041704177856, - -0.35500675439834595, - -0.3581577241420746, - -0.047179609537124634, - -0.048144012689590454, - -0.053323447704315186, - -0.06257663667201996, - -0.0756511390209198, - -0.09219037741422653, - -0.11174316704273224, - -0.13377615809440613, - -0.15768836438655853, - -0.18282753229141235, - -0.20850789546966553, - -0.23402898013591766, - -0.2586946487426758, - -0.2818320691585541, - -0.30281010270118713, - -0.3210565447807312, - -0.33607369661331177, - -0.34745192527770996, - -0.35488080978393555, - -0.3581577241420746, - -0.047179609537124634, - -0.04814334213733673, - -0.05332213640213013, - -0.06257471442222595, - -0.07564866542816162, - -0.09218740463256836, - -0.11173978447914124, - -0.13377246260643005, - -0.15768444538116455, - -0.18282349407672882, - -0.2085038721561432, - -0.23402506113052368, - -0.2586909532546997, - -0.28182870149612427, - -0.30280715227127075, - -0.321054071187973, - -0.33607178926467896, - -0.3474505841732025, - -0.35488012433052063, - -0.3581577241420746, - -0.047179609537124634, - -0.04826804995536804, - -0.05356813967227936, - -0.06293530762195587, - -0.07611402869224548, - -0.09274483472108841, - -0.11237407475709915, - -0.13446630537509918, - -0.1584189236164093, - -0.18357856571674347, - -0.20925894379615784, - -0.23475953936576843, - -0.25938478112220764, - -0.2824629545211792, - -0.3033645749092102, - -0.3215194344520569, - -0.33643239736557007, - -0.34769660234451294, - -0.35500484704971313, - -0.3581577241420746, - -0.047179609537124634, - -0.04850462079048157, - -0.05403481423854828, - -0.06361937522888184, - -0.0769968032836914, - -0.09380225837230682, - -0.11357729882001877, - -0.13578251004219055, - -0.15981221199035645, - -0.18501092493534088, - -0.21069128811359406, - -0.23615282773971558, - -0.2607010006904602, - -0.28366619348526, - -0.304421991109848, - -0.3224022388458252, - -0.33711642026901245, - -0.34816327691078186, - -0.35524141788482666, - -0.3581577241420746, - -0.047179609537124634, - -0.0488273948431015, - -0.05467158555984497, - -0.06455275416374207, - -0.07820133864879608, - -0.09524508565664291, - -0.11521906405687332, - -0.13757842779159546, - -0.16171330213546753, - -0.18696531653404236, - -0.21264569461345673, - -0.23805391788482666, - -0.2624969184398651, - -0.28530797362327576, - -0.3058648109436035, - -0.3236067593097687, - -0.33804982900619507, - -0.34880006313323975, - -0.3555641770362854, - -0.3581577241420746, - -0.047179609537124634, - -0.04920142889022827, - -0.055409446358680725, - -0.06563431024551392, - -0.0795971006155014, - -0.09691696614027023, - -0.11712146550416946, - -0.13965946435928345, - -0.1639162003993988, - -0.18922999501228333, - -0.2149103581905365, - -0.24025681614875793, - -0.2645779550075531, - -0.2872103750705719, - -0.30753669142723083, - -0.325002521276474, - -0.3391313850879669, - -0.3495379090309143, - -0.355938196182251, - -0.3581577241420746, - -0.047179609537124634, - -0.04958617687225342, - -0.056168437004089355, - -0.06674684584140778, - -0.08103282749652863, - -0.09863673150539398, - -0.11907835304737091, - -0.14180009067058563, - -0.16618217527866364, - -0.19155952334403992, - -0.2172398865222931, - -0.24252279102802277, - -0.2667185664176941, - -0.28916725516319275, - -0.3092564642429352, - -0.3264382481575012, - -0.3402439057826996, - -0.35029691457748413, - -0.3563229441642761, - -0.3581577241420746, - -0.047179609537124634, - -0.04993993043899536, - -0.05686630308628082, - -0.06776978075504303, - -0.08235294371843338, - -0.10021800547838211, - -0.12087766081094742, - -0.1437683403491974, - -0.1682656854391098, - -0.19370146095752716, - -0.21938182413578033, - -0.24460630118846893, - -0.26868683099746704, - -0.29096657037734985, - -0.3108377456665039, - -0.3277583718299866, - -0.3412668704986572, - -0.3509947657585144, - -0.35667669773101807, - -0.3581577241420746, - -0.047179609537124634, - -0.05022437870502472, - -0.05742742121219635, - -0.06859229505062103, - -0.08341439068317413, - -0.10148943960666656, - -0.1223243996500969, - -0.14535093307495117, - -0.16994094848632812, - -0.1954236924648285, - -0.22110407054424286, - -0.24628156423568726, - -0.2702694237232208, - -0.29241329431533813, - -0.31210917234420776, - -0.32881981134414673, - -0.34208935499191284, - -0.35155588388442993, - -0.3569611608982086, - -0.3581577241420746, - -0.047179609537124634, - -0.05040867626667023, - -0.05779100954532623, - -0.069125235080719, - -0.08410214632749557, - -0.10231325775384903, - -0.12326180934906006, - -0.1463763564825058, - -0.17102642357349396, - -0.19653961062431335, - -0.22221997380256653, - -0.2473670393228531, - -0.27129483222961426, - -0.2933506965637207, - -0.3129329979419708, - -0.3295075595378876, - -0.3426222801208496, - -0.3519194722175598, - -0.3571454584598541, - -0.3581577241420746, - -0.047179609537124634, - -0.05047287046909332, - -0.05791763961315155, - -0.06931084394454956, - -0.08434168249368668, - -0.10260017961263657, - -0.12358829379081726, - -0.14673349261283875, - -0.17140448093414307, - -0.1969282627105713, - -0.22260864078998566, - -0.2477450966835022, - -0.2716519832611084, - -0.2936772108078003, - -0.31321990489959717, - -0.3297470808029175, - -0.3428078889846802, - -0.35204610228538513, - -0.3572096526622772, - -0.3581577241420746, - -0.047179609537124634, - -0.050409987568855286, - -0.05779358744621277, - -0.06912901997566223, - -0.08410704135894775, - -0.10231912136077881, - -0.1232684776186943, - -0.1463836431503296, - -0.17103415727615356, - -0.19654755294322968, - -0.22222791612148285, - -0.2473747581243515, - -0.27130213379859924, - -0.29335737228393555, - -0.3129388689994812, - -0.32951244711875916, - -0.34262609481811523, - -0.35192203521728516, - -0.3571467697620392, - -0.3581577241420746, - -0.047179609537124634, - -0.0502268522977829, - -0.057432323694229126, - -0.06859946250915527, - -0.08342364430427551, - -0.10150052607059479, - -0.12233702093362808, - -0.14536473155021667, - -0.1699555665254593, - -0.1954387128353119, - -0.22111909091472626, - -0.24629616737365723, - -0.27028322219848633, - -0.2924259305000305, - -0.312120258808136, - -0.3288290500640869, - -0.3420965373516083, - -0.3515607714653015, - -0.3569636344909668, - -0.3581577241420746 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.45231112837791443, - 0.47188621759414673, - 0.49046969413757324, - 0.5075546503067017, - 0.5226750373840332, - 0.5354183912277222, - 0.5454371571540833, - 0.5524579882621765, - 0.5562894344329834, - 0.5568269491195679, - 0.5540558695793152, - 0.5480517745018005, - 0.5389784574508667, - 0.5270834565162659, - 0.5126911997795105, - 0.4961942136287689, - 0.4780425727367401, - 0.45873138308525085, - 0.4387873709201813, - 0.41875460743904114, - 0.45231112837791443, - 0.4718308448791504, - 0.49036043882369995, - 0.5073944926261902, - 0.5224683284759521, - 0.5351707935333252, - 0.54515540599823, - 0.5521498322486877, - 0.5559632182121277, - 0.5564916133880615, - 0.5537205338478088, - 0.5477255582809448, - 0.5386703610420227, - 0.5268017649650574, - 0.5124436020851135, - 0.49598753452301025, - 0.47788241505622864, - 0.4586220979690552, - 0.43873199820518494, - 0.41875460743904114, - 0.45231112837791443, - 0.46963539719581604, - 0.4860294461250305, - 0.5010460615158081, - 0.5142756700515747, - 0.5253573656082153, - 0.533988893032074, - 0.5399347543716431, - 0.5430328845977783, - 0.5431986451148987, - 0.540427565574646, - 0.5347952246665955, - 0.526455283164978, - 0.5156351923942566, - 0.5026301741600037, - 0.4877948760986328, - 0.47153398394584656, - 0.45429110527038574, - 0.4365365505218506, - 0.41875460743904114, - 0.45231112837791443, - 0.46553778648376465, - 0.477946013212204, - 0.489197313785553, - 0.49898478388786316, - 0.5070414543151855, - 0.5131475329399109, - 0.5171365141868591, - 0.5188995599746704, - 0.518388569355011, - 0.5156174898147583, - 0.5106619596481323, - 0.5036570429801941, - 0.4947938919067383, - 0.4843142628669739, - 0.47250398993492126, - 0.45968523621559143, - 0.4462076723575592, - 0.4324389398097992, - 0.41875460743904114, - 0.45231112837791443, - 0.45998209714889526, - 0.46698611974716187, - 0.4731322228908539, - 0.47825270891189575, - 0.48220789432525635, - 0.4848898947238922, - 0.48622560501098633, - 0.48617851734161377, - 0.4847499430179596, - 0.4819788634777069, - 0.4779408574104309, - 0.4727461040019989, - 0.4665362238883972, - 0.4594806730747223, - 0.45177191495895386, - 0.44362014532089233, - 0.4352478086948395, - 0.4268832504749298, - 0.41875460743904114, - 0.45231112837791443, - 0.45357030630111694, - 0.454337477684021, - 0.4545917212963104, - 0.4543260633945465, - 0.45354777574539185, - 0.45227810740470886, - 0.45055168867111206, - 0.4484155476093292, - 0.44592803716659546, - 0.4431569576263428, - 0.44017791748046875, - 0.43707218766212463, - 0.43392443656921387, - 0.4308205842971802, - 0.4278452694416046, - 0.4250796437263489, - 0.4225991666316986, - 0.4204714596271515, - 0.41875460743904114, - 0.45231112837791443, - 0.4469972848892212, - 0.44137072563171387, - 0.4355849325656891, - 0.4297977089881897, - 0.4241669178009033, - 0.4188461899757385, - 0.4139806032180786, - 0.4097028970718384, - 0.4061298072338104, - 0.40335872769355774, - 0.4014652669429779, - 0.4005011022090912, - 0.40049248933792114, - 0.40143972635269165, - 0.4033169150352478, - 0.40607285499572754, - 0.4096323847770691, - 0.41389843821525574, - 0.41875460743904114, - 0.45231112837791443, - 0.4409753084182739, - 0.4294910132884979, - 0.4181715250015259, - 0.4073256254196167, - 0.39724916219711304, - 0.38821694254875183, - 0.38047540187835693, - 0.3742356598377228, - 0.36966797709465027, - 0.3668968975543976, - 0.3659980297088623, - 0.3669959008693695, - 0.36986327171325684, - 0.374521940946579, - 0.3808448314666748, - 0.3886594772338867, - 0.39775270223617554, - 0.40787646174430847, - 0.41875460743904114, - 0.45231112837791443, - 0.4361569285392761, - 0.41998571157455444, - 0.40423858165740967, - 0.38934504985809326, - 0.37571144104003906, - 0.36370956897735596, - 0.35366690158843994, - 0.34585726261138916, - 0.3404937982559204, - 0.3377227187156677, - 0.3376196324825287, - 0.3401873707771301, - 0.34535589814186096, - 0.352984219789505, - 0.36286425590515137, - 0.3747265040874481, - 0.38824737071990967, - 0.40305808186531067, - 0.41875460743904114, - 0.45231112837791443, - 0.4330643117427826, - 0.41388484835624695, - 0.3952958583831787, - 0.3778044581413269, - 0.36188772320747375, - 0.3479798436164856, - 0.3364601731300354, - 0.32764294743537903, - 0.32176870107650757, - 0.3189976215362549, - 0.31940531730651855, - 0.322980672121048, - 0.3296261727809906, - 0.3391605019569397, - 0.351323664188385, - 0.36578381061553955, - 0.3821465075016022, - 0.39996546506881714, - 0.41875460743904114, - 0.45231112837791443, - 0.43203258514404297, - 0.4118495583534241, - 0.39231252670288086, - 0.3739544451236725, - 0.3572760224342346, - 0.3427322804927826, - 0.33071988821029663, - 0.32156652212142944, - 0.31552186608314514, - 0.31275078654289246, - 0.31332889199256897, - 0.3172403872013092, - 0.3243786096572876, - 0.33454883098602295, - 0.3474736213684082, - 0.3628004491329193, - 0.3801112174987793, - 0.3989337682723999, - 0.41875460743904114, - 0.45231112837791443, - 0.4331735670566559, - 0.41410037875175476, - 0.39561182260513306, - 0.37821218371391296, - 0.3623761236667633, - 0.34853556752204895, - 0.3370680809020996, - 0.32828643918037415, - 0.32243025302886963, - 0.31965917348861694, - 0.32004880905151367, - 0.3235885798931122, - 0.33018189668655396, - 0.33964890241622925, - 0.3517313599586487, - 0.3660997450351715, - 0.3823620676994324, - 0.40007472038269043, - 0.41875460743904114, - 0.45231112837791443, - 0.4363636076450348, - 0.4203934073448181, - 0.4048362076282501, - 0.39011630415916443, - 0.37663525342941284, - 0.36476078629493713, - 0.3548167943954468, - 0.3470745086669922, - 0.34174516797065735, - 0.33897408843040466, - 0.3388368785381317, - 0.34133729338645935, - 0.34640711545944214, - 0.35390806198120117, - 0.36363551020622253, - 0.3753241300582886, - 0.3886550962924957, - 0.40326476097106934, - 0.41875460743904114, - 0.45231112837791443, - 0.4412569999694824, - 0.4300467371940613, - 0.41898611187934875, - 0.40837687253952026, - 0.39850834012031555, - 0.38964974880218506, - 0.3820427358150482, - 0.37589478492736816, - 0.37137362360954285, - 0.36860254406929016, - 0.3676571547985077, - 0.3685632348060608, - 0.37129607796669006, - 0.3757811486721039, - 0.381896048784256, - 0.3894740641117096, - 0.3983084261417389, - 0.40815815329551697, - 0.41875460743904114, - 0.45231112837791443, - 0.4473234713077545, - 0.442014217376709, - 0.43652814626693726, - 0.4310149550437927, - 0.4256249964237213, - 0.4205052852630615, - 0.4157954752445221, - 0.41162407398223877, - 0.4081048369407654, - 0.4053337574005127, - 0.4033864438533783, - 0.40231597423553467, - 0.40215161442756653, - 0.40289777517318726, - 0.40453416109085083, - 0.4070160984992981, - 0.4102758765220642, - 0.41422462463378906, - 0.41875460743904114, - 0.45231112837791443, - 0.4539056420326233, - 0.45499899983406067, - 0.4555613696575165, - 0.45557743310928345, - 0.45504671335220337, - 0.45398372411727905, - 0.45241743326187134, - 0.4503905773162842, - 0.44795843958854675, - 0.44518736004829407, - 0.4421529471874237, - 0.4389379322528839, - 0.43563005328178406, - 0.4323195219039917, - 0.42909663915634155, - 0.4260493218898773, - 0.4232606887817383, - 0.42080679535865784, - 0.41875460743904114, - 0.45231112837791443, - 0.46029022336006165, - 0.4675940275192261, - 0.4740232825279236, - 0.4794026017189026, - 0.48358529806137085, - 0.4864572286605835, - 0.48794007301330566, - 0.48799341917037964, - 0.48661574721336365, - 0.48384466767311096, - 0.4797557592391968, - 0.4744606018066406, - 0.4681035578250885, - 0.4608581066131592, - 0.4529218077659607, - 0.44451120495796204, - 0.4358557164669037, - 0.4271913766860962, - 0.41875460743904114, - 0.45231112837791443, - 0.46578535437583923, - 0.47843438386917114, - 0.4899131655693054, - 0.4999086260795593, - 0.5081480741500854, - 0.5144067406654358, - 0.5185139179229736, - 0.5203576683998108, - 0.5198875665664673, - 0.5171164870262146, - 0.5121200084686279, - 0.5050344467163086, - 0.4960530698299408, - 0.4854208528995514, - 0.47342783212661743, - 0.46040111780166626, - 0.44669607281684875, - 0.4326865077018738, - 0.41875460743904114, - 0.45231112837791443, - 0.4697955548763275, - 0.4863453805446625, - 0.5015091896057129, - 0.5148733258247375, - 0.5260732173919678, - 0.5348035097122192, - 0.5408258438110352, - 0.5439761281013489, - 0.5441683530807495, - 0.5413972735404968, - 0.5357385277748108, - 0.5273463726043701, - 0.5164498090744019, - 0.5033460855484009, - 0.48839250206947327, - 0.47199711203575134, - 0.4546070694923401, - 0.43669670820236206, - 0.41875460743904114, - 0.45231112837791443, - 0.47188621759414673, - 0.49046969413757324, - 0.5075546503067017, - 0.5226750373840332, - 0.5354183912277222, - 0.5454371571540833, - 0.5524579882621765, - 0.5562894344329834, - 0.5568269491195679, - 0.5540558695793152, - 0.5480517745018005, - 0.5389784574508667, - 0.5270834565162659, - 0.5126911997795105, - 0.4961942434310913, - 0.4780425727367401, - 0.45873138308525085, - 0.4387873709201813, - 0.41875460743904114 - ], - "y": [ - 0.4388159513473511, - 0.43592721223831177, - 0.43340709805488586, - 0.43132442235946655, - 0.42973592877388, - 0.42868494987487793, - 0.42820021510124207, - 0.4282948970794678, - 0.4289664030075073, - 0.43019646406173706, - 0.43195149302482605, - 0.43418359756469727, - 0.4368319511413574, - 0.43982425332069397, - 0.4430789351463318, - 0.44650718569755554, - 0.45001548528671265, - 0.4535081684589386, - 0.45688992738723755, - 0.4600685238838196, - 0.4388159513473511, - 0.44254401326179504, - 0.4464602470397949, - 0.4504578113555908, - 0.45442768931388855, - 0.4582615792751312, - 0.46185487508773804, - 0.46510961651802063, - 0.4679369628429413, - 0.4702598452568054, - 0.4720148742198944, - 0.4731541574001312, - 0.4736466705799103, - 0.47347894310951233, - 0.4726555347442627, - 0.4711989462375641, - 0.4691489040851593, - 0.46656128764152527, - 0.4635067284107208, - 0.4600685238838196, - 0.4388159513473511, - 0.4487725496292114, - 0.45874741673469543, - 0.46846845746040344, - 0.47767049074172974, - 0.48610255122184753, - 0.4935346245765686, - 0.49976396560668945, - 0.5046206712722778, - 0.507972240447998, - 0.5097272396087646, - 0.5098378658294678, - 0.5083010196685791, - 0.5051586627960205, - 0.500496506690979, - 0.49444177746772766, - 0.48715952038764954, - 0.4788484573364258, - 0.4697352647781372, - 0.4600685238838196, - 0.4388159513473511, - 0.453937828540802, - 0.46893706917762756, - 0.4834045469760895, - 0.4969456195831299, - 0.5091909170150757, - 0.519806444644928, - 0.5285026431083679, - 0.5350422263145447, - 0.5392468571662903, - 0.5410019159317017, - 0.5402594208717346, - 0.5370396971702576, - 0.5314305424690247, - 0.5235849022865295, - 0.5137168765068054, - 0.502095639705658, - 0.4890381097793579, - 0.4749005436897278, - 0.4600685238838196, - 0.4388159513473511, - 0.45748013257980347, - 0.4759250283241272, - 0.49364757537841797, - 0.5101643204689026, - 0.5250247120857239, - 0.5378233790397644, - 0.5482112765312195, - 0.5559050440788269, - 0.560694694519043, - 0.5624497532844543, - 0.5611222386360168, - 0.5567483305931091, - 0.5494474768638611, - 0.5394186973571777, - 0.5269355773925781, - 0.5123386383056641, - 0.49602609872817993, - 0.47844284772872925, - 0.4600685238838196, - 0.4388159513473511, - 0.4590155780315399, - 0.4789540469646454, - 0.4980875253677368, - 0.5158941149711609, - 0.5318880081176758, - 0.54563307762146, - 0.5567542314529419, - 0.5649482607841492, - 0.5699915289878845, - 0.5717465877532959, - 0.5701654553413391, - 0.5652912855148315, - 0.5572571158409119, - 0.5462819933891296, - 0.5326653718948364, - 0.5167785882949829, - 0.49905508756637573, - 0.4799782931804657, - 0.4600685238838196, - 0.4388159513473511, - 0.45837777853012085, - 0.47769588232040405, - 0.49624329805374146, - 0.5135141015052795, - 0.5290371775627136, - 0.5423890948295593, - 0.5532057285308838, - 0.5611919164657593, - 0.5661298632621765, - 0.5678849220275879, - 0.5664091110229492, - 0.5617427825927734, - 0.554013192653656, - 0.5434311628341675, - 0.5302853584289551, - 0.5149343609809875, - 0.4977969229221344, - 0.47934049367904663, - 0.4600685238838196, - 0.4388159513473511, - 0.4556358754634857, - 0.4722868502140045, - 0.488314688205719, - 0.5032821893692017, - 0.5167810916900635, - 0.5284430980682373, - 0.5379502177238464, - 0.5450431108474731, - 0.549528181552887, - 0.5512832403182983, - 0.5502603054046631, - 0.5464872717857361, - 0.540067195892334, - 0.5311750173568726, - 0.5200534462928772, - 0.5070057511329651, - 0.49238789081573486, - 0.4765985906124115, - 0.4600685238838196, - 0.4388159513473511, - 0.45108696818351746, - 0.46331313252449036, - 0.4751609265804291, - 0.48630717396736145, - 0.4964478313922882, - 0.5053063035011292, - 0.5126410126686096, - 0.5182517766952515, - 0.5219855904579163, - 0.5237405896186829, - 0.5234689712524414, - 0.5211780667304993, - 0.5169304013252258, - 0.5108418464660645, - 0.5030784606933594, - 0.49385198950767517, - 0.4834141731262207, - 0.47204968333244324, - 0.4600685238838196, - 0.4388159513473511, - 0.44522401690483093, - 0.4517471492290497, - 0.4582073986530304, - 0.464428573846817, - 0.47024092078208923, - 0.47548598051071167, - 0.4800206124782562, - 0.48372113704681396, - 0.48648664355278015, - 0.48824167251586914, - 0.4889383316040039, - 0.4885576665401459, - 0.4871100187301636, - 0.4846349060535431, - 0.48119983077049255, - 0.4768984615802765, - 0.47184818983078003, - 0.4661867320537567, - 0.4600685238838196, - 0.4388159513473511, - 0.43868234753608704, - 0.4388422667980194, - 0.4392912983894348, - 0.4400172233581543, - 0.4410002529621124, - 0.4422135651111603, - 0.44362401962280273, - 0.44519320130348206, - 0.4468783140182495, - 0.4486333131790161, - 0.4504104256629944, - 0.45216110348701477, - 0.4538376033306122, - 0.4553942382335663, - 0.45678848028182983, - 0.4579823613166809, - 0.45894330739974976, - 0.4596450626850128, - 0.4600685238838196, - 0.4388159513473511, - 0.4321708679199219, - 0.42599689960479736, - 0.4204624891281128, - 0.41571852564811707, - 0.4118945002555847, - 0.4090946316719055, - 0.4073953926563263, - 0.40684303641319275, - 0.40745270252227783, - 0.4092077314853668, - 0.4120602309703827, - 0.41593244671821594, - 0.4207186996936798, - 0.4262884557247162, - 0.432489812374115, - 0.4391535520553589, - 0.4460979700088501, - 0.45313358306884766, - 0.4600685238838196, - 0.4388159513473511, - 0.4263952076435089, - 0.4146031141281128, - 0.4037613272666931, - 0.39416563510894775, - 0.3860777020454407, - 0.37971821427345276, - 0.375260591506958, - 0.372826486825943, - 0.3724822402000427, - 0.3742372691631317, - 0.37804368138313293, - 0.38379764556884766, - 0.39134225249290466, - 0.40047165751457214, - 0.4109368920326233, - 0.4224524199962616, - 0.43470415472984314, - 0.4473579227924347, - 0.4600685238838196, - 0.4388159513473511, - 0.42198121547698975, - 0.40589553117752075, - 0.39099767804145813, - 0.3776940703392029, - 0.3663475513458252, - 0.3572676181793213, - 0.3507019877433777, - 0.34682971239089966, - 0.345756471157074, - 0.34751150012016296, - 0.3520469069480896, - 0.35923904180526733, - 0.3688916563987732, - 0.38074150681495667, - 0.3944653272628784, - 0.4096887707710266, - 0.4259965717792511, - 0.4429439306259155, - 0.4600685238838196, - 0.4388159513473511, - 0.4194072484970093, - 0.40081778168678284, - 0.38355469703674316, - 0.36808881163597107, - 0.35484206676483154, - 0.3441757559776306, - 0.33638083934783936, - 0.33166995644569397, - 0.3301715850830078, - 0.3319266140460968, - 0.3368871510028839, - 0.344917893409729, - 0.3557998239994049, - 0.369236022233963, - 0.3848600685596466, - 0.40224575996398926, - 0.4209188222885132, - 0.44036993384361267, - 0.4600685238838196, - 0.4388159513473511, - 0.41895219683647156, - 0.39992010593414307, - 0.38223886489868164, - 0.36639076471328735, - 0.3528080880641937, - 0.3418613374233246, - 0.33384910225868225, - 0.3289899528026581, - 0.32741641998291016, - 0.32917147874832153, - 0.334207147359848, - 0.3423861563205719, - 0.3534853756427765, - 0.3672020435333252, - 0.3831620216369629, - 0.4009299576282501, - 0.4200211763381958, - 0.43991491198539734, - 0.4600685238838196, - 0.4388159513473511, - 0.4206654131412506, - 0.40329980850219727, - 0.38719287514686584, - 0.37278392910957336, - 0.36046603322029114, - 0.35057514905929565, - 0.3433811068534851, - 0.33908015489578247, - 0.3377895951271057, - 0.3395446240901947, - 0.3442973494529724, - 0.35191816091537476, - 0.36219918727874756, - 0.3748599886894226, - 0.3895551860332489, - 0.40588393807411194, - 0.42340087890625, - 0.4416281282901764, - 0.4600685238838196, - 0.4388159513473511, - 0.4243612289428711, - 0.41059064865112305, - 0.39787980914115906, - 0.38657549023628235, - 0.376986026763916, - 0.3693729341030121, - 0.3639439344406128, - 0.3608471155166626, - 0.3601669669151306, - 0.3619219660758972, - 0.36606431007385254, - 0.37248098850250244, - 0.380996972322464, - 0.3913799524307251, - 0.4033467471599579, - 0.41657090187072754, - 0.4306916892528534, - 0.4453239440917969, - 0.4600685238838196, - 0.4388159513473511, - 0.42963913083076477, - 0.42100250720977783, - 0.4131416380405426, - 0.40627095103263855, - 0.4005778431892395, - 0.3962176740169525, - 0.3933092951774597, - 0.39193210005760193, - 0.39212360978126526, - 0.39387863874435425, - 0.39714929461479187, - 0.40184634923934937, - 0.4078417122364044, - 0.41497182846069336, - 0.4230422079563141, - 0.4318327009677887, - 0.4411035478115082, - 0.45060184597969055, - 0.4600685238838196, - 0.4388159513473511, - 0.43592721223831177, - 0.43340712785720825, - 0.43132442235946655, - 0.42973592877388, - 0.4286849796772003, - 0.42820024490356445, - 0.4282948970794678, - 0.4289664328098297, - 0.43019649386405945, - 0.43195149302482605, - 0.43418362736701965, - 0.4368319809436798, - 0.43982428312301636, - 0.4430789649486542, - 0.44650718569755554, - 0.45001548528671265, - 0.4535081684589386, - 0.45688992738723755, - 0.4600685238838196 - ], - "z": [ - -0.3170015215873718, - -0.32148170471191406, - -0.33075183629989624, - -0.34455904364585876, - -0.36252665519714355, - -0.3841645419597626, - -0.4088825285434723, - -0.4360063672065735, - -0.46479618549346924, - -0.4944666624069214, - -0.5242084860801697, - -0.5532103180885315, - -0.5806811451911926, - -0.6058716177940369, - -0.6280945539474487, - -0.6467437744140625, - -0.6613106727600098, - -0.6713978052139282, - -0.6767300367355347, - -0.6771618723869324, - -0.3170015215873718, - -0.3210861086845398, - -0.32997143268585205, - -0.3434150815010071, - -0.3610503673553467, - -0.38239622116088867, - -0.40687036514282227, - -0.43380528688430786, - -0.46246621012687683, - -0.49207133054733276, - -0.521813154220581, - -0.5508803725242615, - -0.578480064868927, - -0.6038594245910645, - -0.6263262033462524, - -0.6452674865722656, - -0.6601666808128357, - -0.6706173419952393, - -0.6763343811035156, - -0.6771618723869324, - -0.3170015215873718, - -0.3205140233039856, - -0.3288428783416748, - -0.3417608141899109, - -0.3589155077934265, - -0.3798390328884125, - -0.40396061539649963, - -0.43062227964401245, - -0.4590968191623688, - -0.4886074662208557, - -0.518349289894104, - -0.5475109815597534, - -0.5752970576286316, - -0.6009496450424194, - -0.6237690448760986, - -0.6431326866149902, - -0.6585124135017395, - -0.669488787651062, - -0.6757622957229614, - -0.6771618723869324, - -0.3170015215873718, - -0.31982743740081787, - -0.32748842239379883, - -0.3397755026817322, - -0.3563534617424011, - -0.37677010893821716, - -0.40046852827072144, - -0.4268023371696472, - -0.4550531804561615, - -0.48445042967796326, - -0.5141922235488892, - -0.5434673428535461, - -0.5714771151542664, - -0.5974575877189636, - -0.6207000613212585, - -0.6405705809593201, - -0.6565271019935608, - -0.668134331703186, - -0.6750757694244385, - -0.6771618723869324, - -0.3170015215873718, - -0.3191007971763611, - -0.3260549306869507, - -0.33767426013946533, - -0.3536418080329895, - -0.373522013425827, - -0.3967725932598114, - -0.42275935411453247, - -0.4507734179496765, - -0.4800506830215454, - -0.5097925066947937, - -0.5391875505447388, - -0.5674341320991516, - -0.593761682510376, - -0.6174520254135132, - -0.6378589868545532, - -0.654425859451294, - -0.6667008399963379, - -0.6743490695953369, - -0.6771618723869324, - -0.3170015215873718, - -0.31841278076171875, - -0.32469773292541504, - -0.3356848359107971, - -0.3510744273662567, - -0.37044674158096313, - -0.3932732939720154, - -0.4189314842224121, - -0.4467214047908783, - -0.4758850038051605, - -0.5056267976760864, - -0.5351355671882629, - -0.5636062622070312, - -0.5902623534202576, - -0.6143767237663269, - -0.635291576385498, - -0.6524364352226257, - -0.6653436422348022, - -0.6736611127853394, - -0.6771618723869324, - -0.3170015215873718, - -0.31783801317214966, - -0.3235638439655304, - -0.33402279019355774, - -0.3489295244216919, - -0.3678774833679199, - -0.390349805355072, - -0.4157334864139557, - -0.44333615899086, - -0.4724048376083374, - -0.5021466612815857, - -0.5317503213882446, - -0.5604082942008972, - -0.5873388648033142, - -0.6118074655532837, - -0.6331467032432556, - -0.650774359703064, - -0.6642097234725952, - -0.6730862855911255, - -0.6771618723869324, - -0.3170015215873718, - -0.3174387216567993, - -0.3227761685848236, - -0.33286821842193604, - -0.34743955731391907, - -0.3660927414894104, - -0.3883189857006073, - -0.4135119915008545, - -0.4409845471382141, - -0.46998730301856995, - -0.49972909688949585, - -0.5293986797332764, - -0.5581867694854736, - -0.5853080749511719, - -0.6100227236747742, - -0.6316567063331604, - -0.6496198177337646, - -0.6634221076965332, - -0.6726870536804199, - -0.6771618723869324, - -0.3170015215873718, - -0.31725823879241943, - -0.32242006063461304, - -0.33234626054763794, - -0.3467659652233124, - -0.3652859032154083, - -0.38740086555480957, - -0.41250765323638916, - -0.43992140889167786, - -0.468894362449646, - -0.4986361563205719, - -0.5283355712890625, - -0.5571824312210083, - -0.5843899250030518, - -0.6092158555984497, - -0.6309831142425537, - -0.6490978598594666, - -0.663066029548645, - -0.6725065112113953, - -0.6771618723869324, - -0.3170015215873718, - -0.31731605529785156, - -0.32253414392471313, - -0.3325134515762329, - -0.3469817340373993, - -0.3655443787574768, - -0.38769498467445374, - -0.41282936930656433, - -0.44026196002960205, - -0.46924445033073425, - -0.49898624420166016, - -0.5286760926246643, - -0.5575041770935059, - -0.5846840143203735, - -0.6094743609428406, - -0.6311988830566406, - -0.6492650508880615, - -0.6631800532341003, - -0.6725643277168274, - -0.6771618723869324, - -0.3170015215873718, - -0.3176059424877167, - -0.3231060206890106, - -0.3333517014980316, - -0.34806349873542786, - -0.366840124130249, - -0.3891693949699402, - -0.414442241191864, - -0.4419693052768707, - -0.47099965810775757, - -0.5007414817810059, - -0.5303834676742554, - -0.5591170191764832, - -0.5861584544181824, - -0.6107701063156128, - -0.6322806477546692, - -0.6501033306121826, - -0.6637519598007202, - -0.6728542447090149, - -0.6771618723869324, - -0.3170015215873718, - -0.31809645891189575, - -0.3240737318992615, - -0.334770143032074, - -0.34989404678344727, - -0.3690328001976013, - -0.39166438579559326, - -0.41717150807380676, - -0.4448583722114563, - -0.4739697575569153, - -0.5037115812301636, - -0.5332725048065186, - -0.5618463158607483, - -0.5886534452438354, - -0.6129627823829651, - -0.6341111660003662, - -0.6515218019485474, - -0.6647196412086487, - -0.6733447313308716, - -0.6771618723869324, - -0.3170015215873718, - -0.3187345266342163, - -0.325332373380661, - -0.33661511540412903, - -0.35227495431900024, - -0.3718847632408142, - -0.3949095904827118, - -0.4207214117050171, - -0.4486161470413208, - -0.4778329133987427, - -0.507574737071991, - -0.5370302796363831, - -0.5653961896896362, - -0.5918986797332764, - -0.615814745426178, - -0.636492133140564, - -0.6533666849136353, - -0.6659783124923706, - -0.6739827990531921, - -0.6771618723869324, - -0.3170015215873718, - -0.31945091485977173, - -0.3267455995082855, - -0.33868664503097534, - -0.3549482822418213, - -0.3750869333744049, - -0.3985532820224762, - -0.42470723390579224, - -0.4528353810310364, - -0.4821704626083374, - -0.5119122862815857, - -0.5412495136260986, - -0.5693820118904114, - -0.5955423712730408, - -0.6190168857574463, - -0.6391654014587402, - -0.655438244342804, - -0.6673915386199951, - -0.6746991872787476, - -0.6771618723869324, - -0.3170015215873718, - -0.32016801834106445, - -0.32816025614738464, - -0.3407602310180664, - -0.3576242923736572, - -0.3782923221588135, - -0.4022006690502167, - -0.4286970794200897, - -0.4570588767528534, - -0.4865123927593231, - -0.516254186630249, - -0.545473039150238, - -0.5733718872070312, - -0.5991896986961365, - -0.6222223043441772, - -0.6418414115905762, - -0.657511830329895, - -0.6688061952590942, - -0.6754162907600403, - -0.6771618723869324, - -0.3170015215873718, - -0.3208081126213074, - -0.3294230103492737, - -0.34261125326156616, - -0.3600129783153534, - -0.3811536133289337, - -0.40545645356178284, - -0.43225860595703125, - -0.4608289301395416, - -0.4903881549835205, - -0.5201299786567688, - -0.5492430925369263, - -0.5769333839416504, - -0.6024454832077026, - -0.6250835657119751, - -0.6442301273345947, - -0.6593628525733948, - -0.6700689792633057, - -0.6760563850402832, - -0.6771618723869324, - -0.3170015215873718, - -0.3213018774986267, - -0.3303970694541931, - -0.34403902292251587, - -0.36185556650161743, - -0.38336068391799927, - -0.40796786546707153, - -0.4350058138370514, - -0.46373704075813293, - -0.49337780475616455, - -0.5231196284294128, - -0.5521512031555176, - -0.5796805620193481, - -0.6049569249153137, - -0.627290666103363, - -0.6460726857185364, - -0.6607906222343445, - -0.6710430383682251, - -0.6765501499176025, - -0.6771618723869324, - -0.3170015215873718, - -0.32159578800201416, - -0.3309768736362457, - -0.3448888659477234, - -0.3629522919654846, - -0.38467442989349365, - -0.40946269035339355, - -0.43664100766181946, - -0.46546798944473267, - -0.4951573312282562, - -0.5248991250991821, - -0.5538821220397949, - -0.581315815448761, - -0.6064517498016357, - -0.6286044120788574, - -0.6471694707870483, - -0.6616405248641968, - -0.6716228127479553, - -0.67684406042099, - -0.6771618723869324, - -0.3170015215873718, - -0.3216579556465149, - -0.33109956979751587, - -0.34506869316101074, - -0.36318439245224, - -0.3849523961544037, - -0.40977901220321655, - -0.436987042427063, - -0.46583428978919983, - -0.49553388357162476, - -0.525275707244873, - -0.5542484521865845, - -0.5816618204116821, - -0.6067680716514587, - -0.6288824081420898, - -0.6474015116691589, - -0.6618202924728394, - -0.6717454791069031, - -0.6769062280654907, - -0.6771618723869324, - -0.3170015215873718, - -0.32148170471191406, - -0.33075183629989624, - -0.34455904364585876, - -0.36252665519714355, - -0.3841645419597626, - -0.4088825285434723, - -0.4360063672065735, - -0.46479618549346924, - -0.4944666624069214, - -0.5242084860801697, - -0.5532103180885315, - -0.5806811451911926, - -0.6058716177940369, - -0.6280945539474487, - -0.6467437744140625, - -0.6613106727600098, - -0.6713978052139282, - -0.6767300367355347, - -0.6771618723869324 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.3890494704246521, - 0.3591608703136444, - 0.33055606484413147, - 0.30401530861854553, - 0.2802625596523285, - 0.25994569063186646, - 0.24361898005008698, - 0.23172765970230103, - 0.22459620237350464, - 0.22241909801959991, - 0.22525571286678314, - 0.23302868008613586, - 0.24552598595619202, - 0.26240673661231995, - 0.283210426568985, - 0.3073696792125702, - 0.3342254161834717, - 0.3630450963973999, - 0.39304259419441223, - 0.4233996570110321, - 0.3890494704246521, - 0.36079302430152893, - 0.3337758183479309, - 0.30873486399650574, - 0.28635314106941223, - 0.2672412097454071, - 0.2519204020500183, - 0.24080857634544373, - 0.234208881855011, - 0.23230133950710297, - 0.2351379543542862, - 0.2426413595676422, - 0.2546069025993347, - 0.2707081437110901, - 0.290505975484848, - 0.3134602904319763, - 0.3389449715614319, - 0.36626484990119934, - 0.39467471837997437, - 0.4233996570110321, - 0.3890494704246521, - 0.36551254987716675, - 0.3430861830711365, - 0.3223820626735687, - 0.3039649426937103, - 0.28833717107772827, - 0.2759250998497009, - 0.26706722378730774, - 0.2620052099227905, - 0.2608771324157715, - 0.2637137770652771, - 0.27043771743774414, - 0.28086555004119873, - 0.2947128713130951, - 0.3116019368171692, - 0.331072062253952, - 0.3525921404361725, - 0.3755751848220825, - 0.39939427375793457, - 0.4233996570110321, - 0.3890494704246521, - 0.3728080689907074, - 0.35747820138931274, - 0.3434780240058899, - 0.3311893939971924, - 0.320947527885437, - 0.31303179264068604, - 0.3076581358909607, - 0.3049730658531189, - 0.30504992604255676, - 0.30788654088974, - 0.3134055435657501, - 0.3214564323425293, - 0.3318195641040802, - 0.34421226382255554, - 0.3582965135574341, - 0.37368810176849365, - 0.3899672329425812, - 0.4066897928714752, - 0.4233996570110321, - 0.3890494406223297, - 0.3818889856338501, - 0.3753923177719116, - 0.3697366714477539, - 0.36507633328437805, - 0.3615384101867676, - 0.35921940207481384, - 0.3581825792789459, - 0.35845619440078735, - 0.3600328266620636, - 0.3628694415092468, - 0.3668886721134186, - 0.3719809055328369, - 0.378007173538208, - 0.3848031759262085, - 0.39218348264694214, - 0.39994677901268005, - 0.40788131952285767, - 0.41577067971229553, - 0.4233996570110321, - 0.3890494406223297, - 0.39177122712135315, - 0.394887238740921, - 0.398312509059906, - 0.4019536077976227, - 0.40571117401123047, - 0.40948277711868286, - 0.41316550970077515, - 0.416658878326416, - 0.4198676347732544, - 0.42270427942276, - 0.42509135603904724, - 0.42696380615234375, - 0.428270548582077, - 0.4289759397506714, - 0.4290607273578644, - 0.42852258682250977, - 0.42737624049186707, - 0.4256529211997986, - 0.4233996570110321, - 0.3890494406223297, - 0.4013839066028595, - 0.4138503670692444, - 0.42610886693000793, - 0.43782493472099304, - 0.44867902994155884, - 0.45837509632110596, - 0.4666486084461212, - 0.4732739329338074, - 0.47807031869888306, - 0.4809069335460663, - 0.4817064106464386, - 0.4804469347000122, - 0.4771628677845001, - 0.47194379568099976, - 0.46493208408355713, - 0.4563189446926117, - 0.4463393986225128, - 0.43526560068130493, - 0.4233996570110321, - 0.3890494406223297, - 0.40968531370162964, - 0.43022680282592773, - 0.45011356472969055, - 0.46880313754081726, - 0.48578575253486633, - 0.500598132610321, - 0.512836217880249, - 0.5221662521362305, - 0.5283336639404297, - 0.5311703085899353, - 0.5305987596511841, - 0.5266345739364624, - 0.5193858742713928, - 0.5090504884719849, - 0.49591028690338135, - 0.4803236722946167, - 0.4627158045768738, - 0.44356703758239746, - 0.4233996272087097, - 0.3890494406223297, - 0.41577592492103577, - 0.4422418773174286, - 0.46772533655166626, - 0.49153125286102295, - 0.5130102038383484, - 0.5315763354301453, - 0.5467231869697571, - 0.5580375790596008, - 0.5652109384536743, - 0.5680475831031799, - 0.5664700865745544, - 0.5605214834213257, - 0.5503641366958618, - 0.5362749695777893, - 0.5186383724212646, - 0.4979354441165924, - 0.47473087906837463, - 0.4496576189994812, - 0.4233996272087097, - 0.3890494406223297, - 0.4189956784248352, - 0.4485935568809509, - 0.4770357012748718, - 0.5035462975502014, - 0.5274022221565247, - 0.5479527711868286, - 0.564637303352356, - 0.5770007371902466, - 0.5847058892250061, - 0.5875424742698669, - 0.5854332447052002, - 0.5784356594085693, - 0.5667405128479004, - 0.5506670475006104, - 0.5306534767150879, - 0.5072457790374756, - 0.481082558631897, - 0.45287737250328064, - 0.4233996272087097, - 0.3890494406223297, - 0.4189956784248352, - 0.4485935568809509, - 0.4770357012748718, - 0.5035462975502014, - 0.5274022221565247, - 0.5479527711868286, - 0.564637303352356, - 0.5770007371902466, - 0.5847058892250061, - 0.5875424742698669, - 0.5854332447052002, - 0.5784356594085693, - 0.5667405128479004, - 0.5506670475006104, - 0.5306534767150879, - 0.5072457790374756, - 0.481082558631897, - 0.45287737250328064, - 0.4233996272087097, - 0.3890494406223297, - 0.41577592492103577, - 0.4422418773174286, - 0.46772533655166626, - 0.49153125286102295, - 0.5130102038383484, - 0.5315763354301453, - 0.5467231869697571, - 0.5580375790596008, - 0.5652109384536743, - 0.5680475831031799, - 0.5664700865745544, - 0.5605214834213257, - 0.5503641366958618, - 0.5362749695777893, - 0.5186383724212646, - 0.4979354441165924, - 0.47473087906837463, - 0.4496576189994812, - 0.4233996272087097, - 0.3890494406223297, - 0.40968531370162964, - 0.43022680282592773, - 0.45011356472969055, - 0.46880316734313965, - 0.48578575253486633, - 0.500598132610321, - 0.512836217880249, - 0.5221662521362305, - 0.5283337235450745, - 0.5311703085899353, - 0.5305987596511841, - 0.5266345739364624, - 0.5193859338760376, - 0.5090504884719849, - 0.49591028690338135, - 0.4803236722946167, - 0.4627158045768738, - 0.44356703758239746, - 0.4233996272087097, - 0.3890494406223297, - 0.4013838768005371, - 0.4138503670692444, - 0.42610883712768555, - 0.43782490491867065, - 0.44867902994155884, - 0.45837506651878357, - 0.4666486084461212, - 0.473273903131485, - 0.47807028889656067, - 0.4809069037437439, - 0.4817063808441162, - 0.4804469048976898, - 0.47716283798217773, - 0.47194376587867737, - 0.46493205428123474, - 0.4563189446926117, - 0.44633936882019043, - 0.43526560068130493, - 0.4233996570110321, - 0.3890494406223297, - 0.39177122712135315, - 0.394887238740921, - 0.398312509059906, - 0.4019536077976227, - 0.40571120381355286, - 0.40948277711868286, - 0.41316550970077515, - 0.4166589081287384, - 0.4198676645755768, - 0.42270427942276, - 0.42509135603904724, - 0.42696383595466614, - 0.4282705783843994, - 0.4289759397506714, - 0.4290607273578644, - 0.42852261662483215, - 0.42737624049186707, - 0.4256529211997986, - 0.4233996570110321, - 0.3890494406223297, - 0.3818889856338501, - 0.375392347574234, - 0.3697367012500763, - 0.36507636308670044, - 0.36153846979141235, - 0.3592194616794586, - 0.3581826388835907, - 0.35845625400543213, - 0.3600328862667084, - 0.3628695011138916, - 0.36688873171806335, - 0.3719809353351593, - 0.3780072331428528, - 0.3848032057285309, - 0.3921835124492645, - 0.39994680881500244, - 0.40788134932518005, - 0.4157707095146179, - 0.4233996570110321, - 0.3890494704246521, - 0.3728080689907074, - 0.35747820138931274, - 0.3434780240058899, - 0.3311893939971924, - 0.320947527885437, - 0.3130318224430084, - 0.3076581358909607, - 0.3049730956554413, - 0.30504995584487915, - 0.30788654088974, - 0.3134055733680725, - 0.3214564323425293, - 0.3318195939064026, - 0.34421229362487793, - 0.3582965135574341, - 0.37368813157081604, - 0.3899672329425812, - 0.4066897928714752, - 0.4233996570110321, - 0.3890494704246521, - 0.36551254987716675, - 0.3430861830711365, - 0.32238203287124634, - 0.30396491289138794, - 0.28833717107772827, - 0.2759250998497009, - 0.26706719398498535, - 0.2620052099227905, - 0.2608771324157715, - 0.2637137472629547, - 0.27043768763542175, - 0.28086555004119873, - 0.2947128415107727, - 0.3116019070148468, - 0.33107203245162964, - 0.3525921404361725, - 0.3755751848220825, - 0.39939427375793457, - 0.4233996570110321, - 0.3890494704246521, - 0.36079302430152893, - 0.3337758183479309, - 0.30873483419418335, - 0.28635314106941223, - 0.2672411799430847, - 0.2519203722476959, - 0.24080854654312134, - 0.2342088520526886, - 0.23230130970478058, - 0.2351379245519638, - 0.24264132976531982, - 0.25460687279701233, - 0.2707081437110901, - 0.29050594568252563, - 0.31346026062965393, - 0.3389449417591095, - 0.36626482009887695, - 0.39467471837997437, - 0.4233996570110321, - 0.3890494704246521, - 0.3591608703136444, - 0.33055606484413147, - 0.30401530861854553, - 0.2802625596523285, - 0.25994569063186646, - 0.24361898005008698, - 0.23172765970230103, - 0.22459620237350464, - 0.22241909801959991, - 0.22525571286678314, - 0.23302868008613586, - 0.24552598595619202, - 0.26240673661231995, - 0.283210426568985, - 0.3073696792125702, - 0.3342254161834717, - 0.3630450963973999, - 0.39304259419441223, - 0.4233996570110321 - ], - "y": [ - 0.47888168692588806, - 0.47856831550598145, - 0.4779667556285858, - 0.4770934581756592, - 0.4759722054004669, - 0.4746336340904236, - 0.4731141924858093, - 0.4714553952217102, - 0.46970245242118835, - 0.467903196811676, - 0.46610668301582336, - 0.46436190605163574, - 0.4627165198326111, - 0.4612153470516205, - 0.459899365901947, - 0.4588044583797455, - 0.45796048641204834, - 0.4573904871940613, - 0.4571100175380707, - 0.4571267068386078, - 0.47888168692588806, - 0.4883832633495331, - 0.4973289668560028, - 0.5054747462272644, - 0.5125983953475952, - 0.5185056924819946, - 0.5230354070663452, - 0.5260640382766724, - 0.5275089144706726, - 0.5273306965827942, - 0.5255341529846191, - 0.5221683979034424, - 0.5173251628875732, - 0.511136531829834, - 0.5037714242935181, - 0.49543067812919617, - 0.48634177446365356, - 0.47675269842147827, - 0.4669249653816223, - 0.4571267068386078, - 0.47888168692588806, - 0.49715250730514526, - 0.5146282315254211, - 0.5308321714401245, - 0.5453223586082458, - 0.5577034950256348, - 0.5676378607749939, - 0.5748544931411743, - 0.5791564583778381, - 0.5804265737533569, - 0.5786300301551819, - 0.5738159418106079, - 0.5661155581474304, - 0.5557389855384827, - 0.5429692268371582, - 0.5281546115875244, - 0.5116992592811584, - 0.494051992893219, - 0.4756942093372345, - 0.4571266770362854, - 0.47888168692588806, - 0.5039257407188416, - 0.5279899835586548, - 0.550417959690094, - 0.5705978870391846, - 0.5879793167114258, - 0.6020880937576294, - 0.612539529800415, - 0.6190483570098877, - 0.6214370727539062, - 0.619640588760376, - 0.6137077808380127, - 0.6038006544113159, - 0.5901892781257629, - 0.5732450485229492, - 0.5534301400184631, - 0.5312849879264832, - 0.5074137449264526, - 0.4824674725532532, - 0.4571266770362854, - 0.47888168692588806, - 0.5079690217971802, - 0.535966157913208, - 0.5621095299720764, - 0.5856859683990479, - 0.6060522794723511, - 0.622653067111969, - 0.6350353956222534, - 0.6428616046905518, - 0.645918071269989, - 0.6441215872764587, - 0.6375210285186768, - 0.6262965202331543, - 0.6107542514801025, - 0.5913180708885193, - 0.5685182213783264, - 0.5429766178131104, - 0.5153899192810059, - 0.4865107238292694, - 0.4571266770362854, - 0.47888168692588806, - 0.5088441371917725, - 0.5376925468444824, - 0.5646400451660156, - 0.588951587677002, - 0.6099640130996704, - 0.6271041035652161, - 0.6399043798446655, - 0.6480156779289246, - 0.6512167453765869, - 0.6494202017784119, - 0.6426751613616943, - 0.6311655044555664, - 0.6152052879333496, - 0.5952297449111938, - 0.5717838406562805, - 0.5455070734024048, - 0.5171163082122803, - 0.4873858392238617, - 0.4571266770362854, - 0.47888168692588806, - 0.5064562559127808, - 0.5329819917678833, - 0.5577352643013, - 0.5800409317016602, - 0.5992904901504517, - 0.6149588823318481, - 0.6266188025474548, - 0.6339521408081055, - 0.6367588043212891, - 0.634962260723114, - 0.6286115646362305, - 0.6178799271583557, - 0.6030600666999817, - 0.5845562219619751, - 0.5628731846809387, - 0.5386022925376892, - 0.5124056935310364, - 0.4849979877471924, - 0.4571266770362854, - 0.47888168692588806, - 0.5010641813278198, - 0.5223449468612671, - 0.5421433448791504, - 0.5599194765090942, - 0.575188398361206, - 0.5875335931777954, - 0.5966184139251709, - 0.6021949052810669, - 0.6041109561920166, - 0.6023144721984863, - 0.5968543291091919, - 0.587879478931427, - 0.575634777545929, - 0.5604541897773743, - 0.5427517294883728, - 0.5230104327201843, - 0.5017686486244202, - 0.47960591316223145, - 0.4571266770362854, - 0.47888168692588806, - 0.4932522475719452, - 0.5069341063499451, - 0.5195540189743042, - 0.5307678580284119, - 0.5402696132659912, - 0.5478001832962036, - 0.5531541109085083, - 0.5561853647232056, - 0.5568112730979919, - 0.5550147294998169, - 0.5508447885513306, - 0.5444152355194092, - 0.5359013080596924, - 0.5255353450775146, - 0.5136001110076904, - 0.5004211068153381, - 0.48635783791542053, - 0.4717939496040344, - 0.4571267068386078, - 0.47888168692588806, - 0.48386693000793457, - 0.48841947317123413, - 0.4924151599407196, - 0.4957449436187744, - 0.49831804633140564, - 0.5000642538070679, - 0.500935971736908, - 0.5009093880653381, - 0.4999852478504181, - 0.49818873405456543, - 0.4955688714981079, - 0.49219709634780884, - 0.4881654381752014, - 0.48358380794525146, - 0.478577196598053, - 0.47328218817710876, - 0.467843234539032, - 0.4624086320400238, - 0.4571267068386078, - 0.47888168692588806, - 0.47392532229423523, - 0.4688074290752411, - 0.463667631149292, - 0.45864611864089966, - 0.4538798928260803, - 0.4494989216327667, - 0.4456227123737335, - 0.44235703349113464, - 0.4397909343242645, - 0.43799442052841187, - 0.43701648712158203, - 0.4368838369846344, - 0.4376000463962555, - 0.43914562463760376, - 0.4414783716201782, - 0.44453468918800354, - 0.44823119044303894, - 0.45246702432632446, - 0.4571267068386078, - 0.47888168692588806, - 0.46450474858283997, - 0.45022323727607727, - 0.43642672896385193, - 0.42349159717559814, - 0.41177064180374146, - 0.40158361196517944, - 0.3932083249092102, - 0.3868733048439026, - 0.38275131583213806, - 0.3809548020362854, - 0.38153275847435, - 0.3844694495201111, - 0.3896847367286682, - 0.3970363736152649, - 0.4063238501548767, - 0.4172937870025635, - 0.42964696884155273, - 0.4430464506149292, - 0.4571267068386078, - 0.47888171672821045, - 0.4566260278224945, - 0.4346807301044464, - 0.4136444330215454, - 0.3940908908843994, - 0.3765535354614258, - 0.361510694026947, - 0.3493727445602417, - 0.34047073125839233, - 0.33504748344421387, - 0.3332509994506836, - 0.33513015508651733, - 0.3406338393688202, - 0.3496118187904358, - 0.3618192672729492, - 0.376923143863678, - 0.39451146125793457, - 0.41410449147224426, - 0.43516775965690613, - 0.4571267068386078, - 0.47888171672821045, - 0.4511429965496063, - 0.4238642454147339, - 0.39778950810432434, - 0.37363001704216003, - 0.35204485058784485, - 0.33362269401550293, - 0.31886613368988037, - 0.3081777095794678, - 0.3018489480018616, - 0.3000524044036865, - 0.30283719301223755, - 0.31012725830078125, - 0.3217238485813141, - 0.3373105525970459, - 0.3564622402191162, - 0.3786565363407135, - 0.40328797698020935, - 0.42968472838401794, - 0.4571267068386078, - 0.47888171672821045, - 0.4486498236656189, - 0.41894587874412537, - 0.39058011770248413, - 0.36432626843452454, - 0.3409005105495453, - 0.3209417760372162, - 0.3049945533275604, - 0.2934938073158264, - 0.28675323724746704, - 0.284956693649292, - 0.2881532609462738, - 0.2962556779384613, - 0.30904293060302734, - 0.32616621255874634, - 0.3471585214138031, - 0.3714471459388733, - 0.39836961030960083, - 0.42719152569770813, - 0.4571267068386078, - 0.47888171672821045, - 0.4494166374206543, - 0.4204586148262024, - 0.3927974998950958, - 0.3671877980232239, - 0.3443281650543213, - 0.32484203577041626, - 0.3092610239982605, - 0.29801011085510254, - 0.29139620065689087, - 0.2895996868610382, - 0.2926695644855499, - 0.3005221486091614, - 0.3129431903362274, - 0.3295938968658447, - 0.35002005100250244, - 0.373664528131485, - 0.39988234639167786, - 0.4279583692550659, - 0.4571267068386078, - 0.47888171672821045, - 0.4533604085445404, - 0.42823854088783264, - 0.4042013883590698, - 0.38190457224845886, - 0.361956387758255, - 0.34490087628364563, - 0.33120328187942505, - 0.32123732566833496, - 0.31527474522590637, - 0.3134782314300537, - 0.31589674949645996, - 0.3224644064903259, - 0.3330020308494568, - 0.34722208976745605, - 0.3647368252277374, - 0.385068416595459, - 0.4076622724533081, - 0.43190211057662964, - 0.4571267068386078, - 0.47888171672821045, - 0.4600537121295929, - 0.4414425790309906, - 0.42355597019195557, - 0.40688180923461914, - 0.39187490940093994, - 0.37894460558891296, - 0.3684436082839966, - 0.36065834760665894, - 0.3558012545108795, - 0.35400474071502686, - 0.3553178310394287, - 0.35970473289489746, - 0.36704573035240173, - 0.377140611410141, - 0.3897140324115753, - 0.4044229984283447, - 0.42086631059646606, - 0.43859541416168213, - 0.4571267068386078, - 0.47888168692588806, - 0.4687712490558624, - 0.45863986015319824, - 0.448763906955719, - 0.43941277265548706, - 0.4308415651321411, - 0.42328402400016785, - 0.4169463515281677, - 0.4120014011859894, - 0.4085840582847595, - 0.40678754448890686, - 0.40666085481643677, - 0.4082074761390686, - 0.411385178565979, - 0.41610729694366455, - 0.4222450256347656, - 0.42963096499443054, - 0.4380635917186737, - 0.44731295108795166, - 0.4571267068386078, - 0.47888168692588806, - 0.47856831550598145, - 0.4779667556285858, - 0.4770934581756592, - 0.4759722352027893, - 0.4746336340904236, - 0.4731142222881317, - 0.4714554250240326, - 0.46970248222351074, - 0.4679032266139984, - 0.46610671281814575, - 0.4643619656562805, - 0.46271654963493347, - 0.46121537685394287, - 0.4598993957042694, - 0.45880448818206787, - 0.4579605162143707, - 0.45739051699638367, - 0.4571100175380707, - 0.4571267068386078 - ], - "z": [ - -0.9959850311279297, - -0.9906740784645081, - -0.9804797172546387, - -0.965679943561554, - -0.946678638458252, - -0.9239939451217651, - -0.8982447385787964, - -0.8701333403587341, - -0.8404266238212585, - -0.8099347949028015, - -0.7794896960258484, - -0.7499217987060547, - -0.7220374941825867, - -0.6965975761413574, - -0.6742958426475525, - -0.6557407379150391, - -0.6414382457733154, - -0.6317786574363708, - -0.6270253658294678, - -0.6273081302642822, - -0.9959850311279297, - -0.9902469515800476, - -0.9796371459960938, - -0.9644449353218079, - -0.945084810256958, - -0.9220848679542542, - -0.8960724472999573, - -0.8677570819854736, - -0.8379111886024475, - -0.8073488473892212, - -0.7769037485122681, - -0.7474063634872437, - -0.7196612358093262, - -0.6944252848625183, - -0.6723867654800415, - -0.6541469097137451, - -0.6402032375335693, - -0.6309360861778259, - -0.6265982985496521, - -0.6273081302642822, - -0.9959850311279297, - -0.9901692271232605, - -0.9794838428497314, - -0.9642201662063599, - -0.944794774055481, - -0.9217374324798584, - -0.8956770896911621, - -0.8673245906829834, - -0.8374533653259277, - -0.8068782091140747, - -0.7764331102371216, - -0.7469485402107239, - -0.7192287445068359, - -0.6940299272537231, - -0.6720393300056458, - -0.6538568735122681, - -0.6399785280227661, - -0.6307827830314636, - -0.626520574092865, - -0.6273081302642822, - -0.9959850311279297, - -0.9904493093490601, - -0.9800362586975098, - -0.9650300145149231, - -0.9458398818969727, - -0.9229892492294312, - -0.8971015214920044, - -0.8688827753067017, - -0.8391028046607971, - -0.8085739016532898, - -0.7781288027763367, - -0.7485979795455933, - -0.7207869291305542, - -0.6954543590545654, - -0.6732911467552185, - -0.6549019813537598, - -0.6407883167266846, - -0.6313352584838867, - -0.6268006563186646, - -0.6273081302642822, - -0.9959850311279297, - -0.9910567998886108, - -0.9812347292900085, - -0.9667866826057434, - -0.9481068253517151, - -0.9257047176361084, - -0.9001913666725159, - -0.8722627758979797, - -0.8426807522773743, - -0.8122521638870239, - -0.7818070650100708, - -0.7521759271621704, - -0.7241669297218323, - -0.6985442042350769, - -0.6760066151618958, - -0.6571689248085022, - -0.6425449848175049, - -0.6325336694717407, - -0.6274081468582153, - -0.6273081302642822, - -0.9959850311279297, - -0.9919258952140808, - -0.9829491972923279, - -0.9692997932434082, - -0.9513500332832336, - -0.929589569568634, - -0.9046118259429932, - -0.8770983219146729, - -0.8477994203567505, - -0.8175144195556641, - -0.7870693206787109, - -0.7572945952415466, - -0.7290024757385254, - -0.7029646635055542, - -0.6798914670944214, - -0.6604121327400208, - -0.6450580954551697, - -0.6342481374740601, - -0.6282772421836853, - -0.6273081302642822, - -0.9959850311279297, - -0.9929624199867249, - -0.9849939942359924, - -0.9722970724105835, - -0.9552180767059326, - -0.9342227578163147, - -0.9098839163780212, - -0.8828653693199158, - -0.8539042472839355, - -0.8237903714179993, - -0.7933452725410461, - -0.7633993625640869, - -0.7347695231437683, - -0.7082366943359375, - -0.684524655342102, - -0.664280116558075, - -0.648055374622345, - -0.6362929344177246, - -0.6293137669563293, - -0.6273081302642822, - -0.9959850311279297, - -0.9940540790557861, - -0.9871475100517273, - -0.9754536747932434, - -0.9592916369438171, - -0.939102292060852, - -0.9154362082481384, - -0.8889390230178833, - -0.8603335022926331, - -0.8303999900817871, - -0.799954891204834, - -0.7698286771774292, - -0.7408431768417358, - -0.7137890458106995, - -0.6894041299819946, - -0.6683537364006042, - -0.6512119770050049, - -0.6384464502334595, - -0.6304054260253906, - -0.6273081302642822, - -0.9959850311279297, - -0.9950824975967407, - -0.989176332950592, - -0.978427529335022, - -0.963129460811615, - -0.943699300289154, - -0.9206670522689819, - -0.8946610689163208, - -0.8663906455039978, - -0.8366269469261169, - -0.8061818480491638, - -0.775885820388794, - -0.7465652227401733, - -0.719019889831543, - -0.6940011978149414, - -0.6721915602684021, - -0.6541858911514282, - -0.6404752731323242, - -0.6314338445663452, - -0.6273081302642822, - -0.9959850311279297, - -0.9959362745285034, - -0.990860641002655, - -0.9808964133262634, - -0.9663155674934387, - -0.9475157260894775, - -0.9250097274780273, - -0.8994114398956299, - -0.8714191913604736, - -0.8417965173721313, - -0.8113514184951782, - -0.7809143662452698, - -0.7513155937194824, - -0.7233625650405884, - -0.6978176236152649, - -0.675377607345581, - -0.6566547155380249, - -0.6421595811843872, - -0.6322876214981079, - -0.6273081302642822, - -0.9959850311279297, - -0.9965229034423828, - -0.9920178651809692, - -0.982592761516571, - -0.9685046672821045, - -0.9501379132270813, - -0.9279934763908386, - -0.9026753902435303, - -0.8748742938041687, - -0.8453484773635864, - -0.8149033784866333, - -0.7843694686889648, - -0.7545795440673828, - -0.7263463139533997, - -0.7004398107528687, - -0.6775667667388916, - -0.6583510637283325, - -0.6433168649673462, - -0.6328742504119873, - -0.6273081302642822, - -0.9959850311279297, - -0.9967788457870483, - -0.9925227165222168, - -0.9833327531814575, - -0.9694596529006958, - -0.9512817859649658, - -0.9292950630187988, - -0.9040992259979248, - -0.8763814568519592, - -0.8468979001045227, - -0.8164528012275696, - -0.7858766317367554, - -0.7560033798217773, - -0.7276479005813599, - -0.7015836834907532, - -0.6785217523574829, - -0.659091055393219, - -0.6438217163085938, - -0.6331301927566528, - -0.6273081302642822, - -0.9959850311279297, - -0.9966762661933899, - -0.9923204183578491, - -0.9830361604690552, - -0.9690768718719482, - -0.9508233666419983, - -0.9287734031677246, - -0.9035285711288452, - -0.8757774233818054, - -0.8462769389152527, - -0.8158318400382996, - -0.7852725386619568, - -0.7554327249526978, - -0.7271262407302856, - -0.7011252641677856, - -0.6781389713287354, - -0.6587944626808167, - -0.6436193585395813, - -0.6330276131629944, - -0.6273081302642822, - -0.9959850311279297, - -0.9962263703346252, - -0.9914328455924988, - -0.9817351698875427, - -0.9673979878425598, - -0.9488122463226318, - -0.9264850616455078, - -0.9010252952575684, - -0.8731275796890259, - -0.843552827835083, - -0.8131076693534851, - -0.782622754573822, - -0.7529295086860657, - -0.7248378396034241, - -0.699114203453064, - -0.6764600276947021, - -0.6574934720993042, - -0.642731785774231, - -0.6325777173042297, - -0.6273081302642822, - -0.9959850311279297, - -0.9954778552055359, - -0.989956259727478, - -0.979570746421814, - -0.9646047949790955, - -0.9454665184020996, - -0.9226779341697693, - -0.8968607783317566, - -0.8687191605567932, - -0.8390207290649414, - -0.8085756301879883, - -0.7782143354415894, - -0.7487649321556091, - -0.7210307717323303, - -0.695768415927887, - -0.6736668944358826, - -0.6553291082382202, - -0.6412551999092102, - -0.6318292021751404, - -0.6273081302642822, - -0.9959850311279297, - -0.9945118427276611, - -0.9880505800247192, - -0.9767774343490601, - -0.9610000252723694, - -0.9411486387252808, - -0.9177646636962891, - -0.8914861679077148, - -0.8630298376083374, - -0.8331718444824219, - -0.8027267456054688, - -0.7725249528884888, - -0.7433903217315674, - -0.7161175012588501, - -0.6914504766464233, - -0.6700621247291565, - -0.6525357961654663, - -0.6393495798110962, - -0.6308631896972656, - -0.6273081302642822, - -0.9959850311279297, - -0.9934330582618713, - -0.9859224557876587, - -0.9736579656600952, - -0.9569743275642395, - -0.9363265037536621, - -0.9122776985168457, - -0.8854839205741882, - -0.8566761016845703, - -0.8266400098800659, - -0.7961949110031128, - -0.7661712765693665, - -0.7373881340026855, - -0.7106305360794067, - -0.6866283416748047, - -0.6660363674163818, - -0.6494163274765015, - -0.6372213959693909, - -0.6297844052314758, - -0.6273081302642822, - -0.9959850311279297, - -0.992358386516571, - -0.9838023781776428, - -0.9705503582954407, - -0.9529638886451721, - -0.9315226674079895, - -0.906811535358429, - -0.8795045614242554, - -0.850346565246582, - -0.8201329708099365, - -0.7896878719329834, - -0.7598417401313782, - -0.7314087152481079, - -0.70516437292099, - -0.6818245649337769, - -0.6620259881019592, - -0.6463086605072021, - -0.635101318359375, - -0.6287096738815308, - -0.6273081302642822, - -0.9959850311279297, - -0.9914042353630066, - -0.9819201231002808, - -0.9677913188934326, - -0.9494034051895142, - -0.927257776260376, - -0.9019585847854614, - -0.87419593334198, - -0.844727098941803, - -0.8143558502197266, - -0.7839107513427734, - -0.7542222142219543, - -0.7261000871658325, - -0.7003114223480225, - -0.6775596737861633, - -0.6584655046463013, - -0.6435496807098389, - -0.6332190632820129, - -0.6277555823326111, - -0.6273081302642822, - -0.9959850311279297, - -0.9906740784645081, - -0.9804797172546387, - -0.965679943561554, - -0.946678638458252, - -0.9239939451217651, - -0.8982447385787964, - -0.8701333403587341, - -0.8404266238212585, - -0.8099347949028015, - -0.7794896960258484, - -0.7499217987060547, - -0.7220374941825867, - -0.6965975761413574, - -0.6742958426475525, - -0.6557407379150391, - -0.6414382457733154, - -0.6317786574363708, - -0.6270253658294678, - -0.6273081302642822 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.39373978972435, - 0.3531128466129303, - 0.3131219744682312, - 0.2748580873012543, - 0.239364892244339, - 0.2076105773448944, - 0.18046127259731293, - 0.15865755081176758, - 0.1427941918373108, - 0.1333039104938507, - 0.13044553995132446, - 0.13429704308509827, - 0.14475339651107788, - 0.16152936220169067, - 0.18416735529899597, - 0.21204982697963715, - 0.244416281580925, - 0.28038376569747925, - 0.3189712464809418, - 0.35912612080574036, - 0.39373978972435, - 0.3553013205528259, - 0.3174392580986023, - 0.28118640184402466, - 0.24753162264823914, - 0.2173929512500763, - 0.19159245491027832, - 0.17083391547203064, - 0.15568360686302185, - 0.14655473828315735, - 0.1436963677406311, - 0.14718645811080933, - 0.15692976117134094, - 0.17266054451465607, - 0.19394974410533905, - 0.2202165722846985, - 0.25074461102485657, - 0.28470104932785034, - 0.3211597502231598, - 0.35912612080574036, - 0.39373978972435, - 0.3616296350955963, - 0.32992327213287354, - 0.29948559403419495, - 0.27114683389663696, - 0.24567997455596924, - 0.22377973794937134, - 0.20604348182678223, - 0.19295498728752136, - 0.18487133085727692, - 0.18201296031475067, - 0.18445783853530884, - 0.19213932752609253, - 0.20484782755374908, - 0.222236767411232, - 0.24383175373077393, - 0.26904377341270447, - 0.2971850633621216, - 0.3274880647659302, - 0.35912612080574036, - 0.39373978972435, - 0.3714120090007782, - 0.34922119975090027, - 0.3277726173400879, - 0.3076514005661011, - 0.28940635919570923, - 0.2735351622104645, - 0.26047074794769287, - 0.2505694627761841, - 0.24410146474838257, - 0.24124309420585632, - 0.24207232892513275, - 0.24656659364700317, - 0.2546032667160034, - 0.2659631371498108, - 0.28033632040023804, - 0.2973308265209198, - 0.3164829909801483, - 0.33727043867111206, - 0.35912612080574036, - 0.39373978972435, - 0.38358837366104126, - 0.37324175238609314, - 0.3629821836948395, - 0.3530895411968231, - 0.3438336253166199, - 0.3354669213294983, - 0.32821768522262573, - 0.32228362560272217, - 0.31782662868499756, - 0.3149682581424713, - 0.31378647685050964, - 0.31431353092193604, - 0.3165350556373596, - 0.3203904330730438, - 0.32577449083328247, - 0.3325403928756714, - 0.3405035436153412, - 0.34944677352905273, - 0.35912612080574036, - 0.39373978972435, - 0.3968392014503479, - 0.39938199520111084, - 0.40129876136779785, - 0.4025372862815857, - 0.40306374430656433, - 0.4028638005256653, - 0.4019428789615631, - 0.40032610297203064, - 0.39805760979652405, - 0.3951992392539978, - 0.3918289542198181, - 0.3880387246608734, - 0.3839319050312042, - 0.3796205520629883, - 0.37522223591804504, - 0.37085697054862976, - 0.3666437864303589, - 0.36269763112068176, - 0.35912612080574036, - 0.39373978972435, - 0.4097285866737366, - 0.42480915784835815, - 0.43857017159461975, - 0.45063626766204834, - 0.46067824959754944, - 0.4684222340583801, - 0.4736570119857788, - 0.47623977065086365, - 0.47610005736351013, - 0.4732416868209839, - 0.4677426218986511, - 0.4597528576850891, - 0.44949036836624146, - 0.4372350573539734, - 0.4233212172985077, - 0.40812838077545166, - 0.3920709788799286, - 0.37558701634407043, - 0.35912612080574036, - 0.39373978972435, - 0.42085975408554077, - 0.4467678964138031, - 0.47075748443603516, - 0.4921741485595703, - 0.5104336738586426, - 0.5250380039215088, - 0.535588800907135, - 0.5417982339859009, - 0.5434969067573547, - 0.5406385660171509, - 0.5333011150360107, - 0.5216846466064453, - 0.5061061382293701, - 0.48699048161506653, - 0.46485909819602966, - 0.4403156638145447, - 0.41402968764305115, - 0.38671818375587463, - 0.35912612080574036, - 0.39373978972435, - 0.4290264844894409, - 0.46287858486175537, - 0.4943726658821106, - 0.5226496458053589, - 0.5469382405281067, - 0.5665758848190308, - 0.5810269117355347, - 0.5898972153663635, - 0.5929446816444397, - 0.5900863409042358, - 0.5814000368118286, - 0.5671228170394897, - 0.5476440191268921, - 0.523495078086853, - 0.4953346252441406, - 0.4639308452606201, - 0.4301403760910034, - 0.3948849141597748, - 0.35912612080574036, - 0.39373978972435, - 0.433343768119812, - 0.4713954031467438, - 0.5068566799163818, - 0.5387603640556335, - 0.566236138343811, - 0.5885345935821533, - 0.6050475239753723, - 0.6153243780136108, - 0.6190849542617798, - 0.6162265539169312, - 0.6068272590637207, - 0.5911433696746826, - 0.5696027278900146, - 0.5427929759025574, - 0.5114452838897705, - 0.47641485929489136, - 0.4386571943759918, - 0.3992021977901459, - 0.35912612080574036, - 0.39373978972435, - 0.433343768119812, - 0.4713954031467438, - 0.5068566799163818, - 0.5387603640556335, - 0.566236138343811, - 0.5885345935821533, - 0.6050475239753723, - 0.6153243780136108, - 0.6190849542617798, - 0.6162265539169312, - 0.6068272590637207, - 0.5911433696746826, - 0.5696027278900146, - 0.5427929759025574, - 0.5114452838897705, - 0.47641485929489136, - 0.4386571943759918, - 0.3992021977901459, - 0.35912612080574036, - 0.39373978972435, - 0.4290264844894409, - 0.46287858486175537, - 0.4943726658821106, - 0.5226496458053589, - 0.5469382405281067, - 0.5665758848190308, - 0.5810269117355347, - 0.5898972153663635, - 0.5929446816444397, - 0.5900863409042358, - 0.5814000368118286, - 0.5671228170394897, - 0.5476440191268921, - 0.523495078086853, - 0.4953346252441406, - 0.4639308452606201, - 0.4301403760910034, - 0.3948849141597748, - 0.35912612080574036, - 0.39373978972435, - 0.42085975408554077, - 0.4467678964138031, - 0.47075748443603516, - 0.4921741485595703, - 0.5104336738586426, - 0.5250380039215088, - 0.5355888605117798, - 0.5417982339859009, - 0.5434969663619995, - 0.5406385660171509, - 0.5333011150360107, - 0.5216846466064453, - 0.5061061382293701, - 0.4869905114173889, - 0.46485909819602966, - 0.4403156638145447, - 0.41402971744537354, - 0.38671818375587463, - 0.35912612080574036, - 0.39373978972435, - 0.4097285866737366, - 0.42480915784835815, - 0.43857017159461975, - 0.45063623785972595, - 0.46067821979522705, - 0.46842220425605774, - 0.4736569821834564, - 0.47623974084854126, - 0.47610002756118774, - 0.4732416570186615, - 0.46774259209632874, - 0.4597528278827667, - 0.44949033856391907, - 0.437235027551651, - 0.4233211874961853, - 0.4081283509731293, - 0.3920709490776062, - 0.37558698654174805, - 0.35912612080574036, - 0.39373978972435, - 0.3968392014503479, - 0.39938199520111084, - 0.40129879117012024, - 0.4025373160839081, - 0.4030637741088867, - 0.4028638005256653, - 0.4019428789615631, - 0.400326132774353, - 0.39805760979652405, - 0.3951992392539978, - 0.3918289840221405, - 0.3880387246608734, - 0.3839319348335266, - 0.37962058186531067, - 0.37522226572036743, - 0.37085697054862976, - 0.3666437864303589, - 0.36269763112068176, - 0.35912612080574036, - 0.39373978972435, - 0.38358837366104126, - 0.3732417821884155, - 0.36298224329948425, - 0.3530895709991455, - 0.34383368492126465, - 0.33546701073646545, - 0.3282177746295929, - 0.32228371500968933, - 0.3178267180919647, - 0.3149683475494385, - 0.3137865662574768, - 0.3143136203289032, - 0.3165351152420044, - 0.3203904628753662, - 0.32577452063560486, - 0.3325404226779938, - 0.3405035734176636, - 0.3494468033313751, - 0.35912612080574036, - 0.39373978972435, - 0.3714120090007782, - 0.34922119975090027, - 0.3277726471424103, - 0.3076514005661011, - 0.28940635919570923, - 0.2735351622104645, - 0.26047074794769287, - 0.25056949257850647, - 0.24410147964954376, - 0.24124310910701752, - 0.24207234382629395, - 0.24656660854816437, - 0.2546032667160034, - 0.2659631371498108, - 0.2803363502025604, - 0.2973308265209198, - 0.3164829909801483, - 0.33727043867111206, - 0.35912612080574036, - 0.39373978972435, - 0.3616296350955963, - 0.32992327213287354, - 0.29948556423187256, - 0.2711468040943146, - 0.24567995965480804, - 0.22377972304821014, - 0.20604345202445984, - 0.19295495748519897, - 0.18487130105495453, - 0.18201293051242828, - 0.18445780873298645, - 0.19213929772377014, - 0.2048478126525879, - 0.2222367376089096, - 0.24383173882961273, - 0.26904377341270447, - 0.2971850633621216, - 0.3274880647659302, - 0.35912612080574036, - 0.39373978972435, - 0.3553013205528259, - 0.3174392580986023, - 0.28118640184402466, - 0.24753160774707794, - 0.2173929214477539, - 0.19159242510795593, - 0.17083387076854706, - 0.15568356215953827, - 0.14655469357967377, - 0.14369632303714752, - 0.14718641340732574, - 0.15692971646785736, - 0.17266051471233368, - 0.19394969940185547, - 0.2202165424823761, - 0.2507445812225342, - 0.28470104932785034, - 0.3211597204208374, - 0.35912612080574036, - 0.39373978972435, - 0.3531128466129303, - 0.3131219744682312, - 0.2748580873012543, - 0.239364892244339, - 0.2076105773448944, - 0.18046127259731293, - 0.15865755081176758, - 0.1427941918373108, - 0.1333039104938507, - 0.13044553995132446, - 0.13429704308509827, - 0.14475339651107788, - 0.16152936220169067, - 0.18416735529899597, - 0.21204982697963715, - 0.244416281580925, - 0.28038376569747925, - 0.3189712464809418, - 0.35912612080574036 - ], - "y": [ - 0.4759112000465393, - 0.47583940625190735, - 0.47606855630874634, - 0.47659239172935486, - 0.4773966372013092, - 0.47845935821533203, - 0.4797515571117401, - 0.4812380075454712, - 0.4828781187534332, - 0.4846271872520447, - 0.48643749952316284, - 0.4882596731185913, - 0.490043967962265, - 0.49174177646636963, - 0.4933067560195923, - 0.4946961998939514, - 0.49587225914001465, - 0.49680280685424805, - 0.4974624514579773, - 0.497833251953125, - 0.4759112000465393, - 0.48900002241134644, - 0.5020308494567871, - 0.5146481394767761, - 0.5265077948570251, - 0.5372862815856934, - 0.5466895699501038, - 0.5544613003730774, - 0.5603892803192139, - 0.5643119215965271, - 0.5661222338676453, - 0.5657708048820496, - 0.5632672309875488, - 0.5586798191070557, - 0.5521336793899536, - 0.543807327747345, - 0.5339279770851135, - 0.522765040397644, - 0.5106230974197388, - 0.497833251953125, - 0.4759112000465393, - 0.5007584691047668, - 0.5252270102500916, - 0.548649251461029, - 0.5703864693641663, - 0.5898455381393433, - 0.6064958572387695, - 0.6198830604553223, - 0.629642128944397, - 0.635506808757782, - 0.6373171210289001, - 0.6350237131118774, - 0.6286890506744385, - 0.6184860467910767, - 0.6046929359436035, - 0.5876860022544861, - 0.5679291486740112, - 0.5459612011909485, - 0.5223815441131592, - 0.4978332221508026, - 0.4759112000465393, - 0.5098405480384827, - 0.5431433916091919, - 0.5749112963676453, - 0.6042777299880981, - 0.6304416060447693, - 0.6526893377304077, - 0.6704139709472656, - 0.6831321120262146, - 0.6904967427253723, - 0.6923070549964905, - 0.6885136365890503, - 0.6792199611663818, - 0.6646795272827148, - 0.6452890634536743, - 0.621577262878418, - 0.5941911339759827, - 0.5638776421546936, - 0.531463623046875, - 0.4978332221508026, - 0.4759112000465393, - 0.5152620077133179, - 0.5538384914398193, - 0.5905882716178894, - 0.6245089769363403, - 0.6546752452850342, - 0.6802642941474915, - 0.7005781531333923, - 0.71506267786026, - 0.7233226895332336, - 0.7251330018043518, - 0.7204442024230957, - 0.7093841433525085, - 0.6922545433044434, - 0.6695226430892944, - 0.6418085098266602, - 0.6098681092262268, - 0.5745726823806763, - 0.5368850827217102, - 0.4978332221508026, - 0.4759112000465393, - 0.516435444355011, - 0.5561532974243164, - 0.5939813256263733, - 0.6288877129554749, - 0.6599202752113342, - 0.6862325668334961, - 0.7071068286895752, - 0.7219736576080322, - 0.7304275035858154, - 0.7322378158569336, - 0.7273551821708679, - 0.7159128189086914, - 0.698222815990448, - 0.6747677326202393, - 0.6461873054504395, - 0.6132612228393555, - 0.5768875479698181, - 0.5380585193634033, - 0.4978332221508026, - 0.4759112000465393, - 0.5132336616516113, - 0.5498369932174683, - 0.5847228765487671, - 0.6169396638870239, - 0.6456084847450256, - 0.6699473857879639, - 0.6892925500869751, - 0.7031161785125732, - 0.7110412120819092, - 0.7128515243530273, - 0.7084977030754089, - 0.6980985403060913, - 0.6819376349449158, - 0.6604558825492859, - 0.6342391967773438, - 0.6040027141571045, - 0.57057124376297, - 0.5348566770553589, - 0.4978332221508026, - 0.4759112000465393, - 0.5060035586357117, - 0.5355740785598755, - 0.5638161301612854, - 0.5899593830108643, - 0.6132906079292297, - 0.6331735253334045, - 0.6490657329559326, - 0.6605337262153625, - 0.6672646403312683, - 0.6690749526023865, - 0.6659152507781982, - 0.6578717231750488, - 0.6451637744903564, - 0.6281380653381348, - 0.6072589159011841, - 0.5830959677696228, - 0.5563083291053772, - 0.527626633644104, - 0.4978332221508026, - 0.4759112000465393, - 0.4955287277698517, - 0.514910101890564, - 0.5335266590118408, - 0.5508706569671631, - 0.5664689540863037, - 0.5798959732055664, - 0.5907856225967407, - 0.5988407731056213, - 0.6038416624069214, - 0.6056519746780396, - 0.604222297668457, - 0.5995916128158569, - 0.5918862223625183, - 0.581316351890564, - 0.5681702494621277, - 0.552806556224823, - 0.5356443524360657, - 0.5171517729759216, - 0.497833251953125, - 0.4759112000465393, - 0.48294419050216675, - 0.49008435010910034, - 0.4971368610858917, - 0.5039094090461731, - 0.5102171897888184, - 0.5158882141113281, - 0.5207677483558655, - 0.524722695350647, - 0.5276451706886292, - 0.5294554829597473, - 0.5301042199134827, - 0.5295737385749817, - 0.5278784036636353, - 0.5250645875930786, - 0.5212089419364929, - 0.5164167284965515, - 0.510818600654602, - 0.5045672655105591, - 0.497833251953125, - 0.4759112000465393, - 0.4696137607097626, - 0.4637870788574219, - 0.4585900902748108, - 0.4541645646095276, - 0.4506312310695648, - 0.4480864405632019, - 0.4465996325016022, - 0.4462113380432129, - 0.44693219661712646, - 0.44874250888824463, - 0.45159289240837097, - 0.455405592918396, - 0.4600766599178314, - 0.4654785990715027, - 0.4714641273021698, - 0.4778699278831482, - 0.4845212996006012, - 0.4912368059158325, - 0.497833251953125, - 0.4759112000465393, - 0.45698192715644836, - 0.43886798620224, - 0.4220634698867798, - 0.4070267677307129, - 0.39416804909706116, - 0.38383805751800537, - 0.3763185441493988, - 0.37181466817855835, - 0.3704492449760437, - 0.37225955724716187, - 0.37719619274139404, - 0.3851245045661926, - 0.3958282470703125, - 0.409015417098999, - 0.4243263304233551, - 0.4413433372974396, - 0.4596022367477417, - 0.4786049723625183, - 0.497833251953125, - 0.4759112298488617, - 0.44641759991645813, - 0.41802746057510376, - 0.39151525497436523, - 0.36760413646698, - 0.3469463288784027, - 0.33010536432266235, - 0.3175405263900757, - 0.30959463119506836, - 0.3064844608306885, - 0.30829477310180664, - 0.31497621536254883, - 0.3263465166091919, - 0.3420955538749695, - 0.3617936968803406, - 0.3849036693572998, - 0.410795122385025, - 0.43876171112060547, - 0.4680406451225281, - 0.497833251953125, - 0.4759112298488617, - 0.439065545797348, - 0.40352392196655273, - 0.37025579810142517, - 0.34016868472099304, - 0.3140832781791687, - 0.292711079120636, - 0.276635080575943, - 0.26629382371902466, - 0.2619693875312805, - 0.2637796998023987, - 0.27167534828186035, - 0.2854410707950592, - 0.3047012686729431, - 0.3289306163787842, - 0.35746824741363525, - 0.38953566551208496, - 0.42425814270973206, - 0.46068859100341797, - 0.497833251953125, - 0.4759112298488617, - 0.4357225000858307, - 0.3969290256500244, - 0.360588937997818, - 0.32769352197647095, - 0.29914015531539917, - 0.27570754289627075, - 0.25803500413894653, - 0.2466045320034027, - 0.24172793328762054, - 0.2435382455587387, - 0.2519860863685608, - 0.26684099435806274, - 0.28769776225090027, - 0.31398749351501465, - 0.34499308466911316, - 0.3798687756061554, - 0.41766324639320374, - 0.45734554529190063, - 0.497833251953125, - 0.4759112298488617, - 0.43675071001052856, - 0.39895740151405334, - 0.3635621666908264, - 0.33153051137924194, - 0.30373615026474, - 0.2809373140335083, - 0.26375579833984375, - 0.25266033411026, - 0.24795357882976532, - 0.24976389110088348, - 0.2580418884754181, - 0.27256178855895996, - 0.29292750358581543, - 0.31858354806900024, - 0.34883004426956177, - 0.3828420042991638, - 0.41969162225723267, - 0.4583737552165985, - 0.497833251953125, - 0.4759112298488617, - 0.44203877449035645, - 0.40938928723335266, - 0.37885332107543945, - 0.3512638211250305, - 0.3273734152317047, - 0.3078336715698242, - 0.29317763447761536, - 0.28380507230758667, - 0.2799716889858246, - 0.28178200125694275, - 0.28918665647506714, - 0.30198362469673157, - 0.31982389092445374, - 0.3422207832336426, - 0.3685634136199951, - 0.39813318848609924, - 0.43012353777885437, - 0.4636618494987488, - 0.497833251953125, - 0.4759112298488617, - 0.4510136544704437, - 0.4270942509174347, - 0.40480539202690125, - 0.38475513458251953, - 0.36749035120010376, - 0.3534820079803467, - 0.34311217069625854, - 0.33666372299194336, - 0.33431264758110046, - 0.33612295985221863, - 0.34204530715942383, - 0.35191816091537476, - 0.3654721975326538, - 0.3823377192020416, - 0.40205466747283936, - 0.42408525943756104, - 0.447828471660614, - 0.47263669967651367, - 0.497833251953125, - 0.4759112000465393, - 0.46270278096199036, - 0.4501536190509796, - 0.43860605359077454, - 0.4283750653266907, - 0.4197397232055664, - 0.4129355847835541, - 0.40814822912216187, - 0.40550827980041504, - 0.4050877094268799, - 0.40689802169799805, - 0.4108898341655731, - 0.4169542193412781, - 0.4249257743358612, - 0.43458712100982666, - 0.4456746280193329, - 0.4578859210014343, - 0.4708878695964813, - 0.4843258261680603, - 0.497833251953125, - 0.4759112000465393, - 0.47583940625190735, - 0.47606855630874634, - 0.47659242153167725, - 0.4773966670036316, - 0.4784593880176544, - 0.4797516167163849, - 0.4812380373477936, - 0.4828781485557556, - 0.48462721705436707, - 0.48643752932548523, - 0.4882597029209137, - 0.4900440275669098, - 0.491741806268692, - 0.4933067858219147, - 0.4946962296962738, - 0.49587225914001465, - 0.49680280685424805, - 0.4974624514579773, - 0.497833251953125 - ], - "z": [ - -0.9456449151039124, - -0.9444281458854675, - -0.948311448097229, - -0.9571888446807861, - -0.970818281173706, - -0.9888278245925903, - -1.0107264518737793, - -1.0359165668487549, - -1.0637112855911255, - -1.093352198600769, - -1.1240310668945312, - -1.1549108028411865, - -1.1851491928100586, - -1.2139214277267456, - -1.2404425144195557, - -1.2639893293380737, - -1.283919334411621, - -1.2996890544891357, - -1.3108681440353394, - -1.3171517848968506, - -0.9456449151039124, - -0.9438554048538208, - -0.9471817016601562, - -0.9555328488349915, - -0.9686811566352844, - -0.9862679839134216, - -1.007813572883606, - -1.032730221748352, - -1.0603383779525757, - -1.0898847579956055, - -1.1205635070800781, - -1.1515378952026367, - -1.1819628477096558, - -1.2110085487365723, - -1.2378827333450317, - -1.2618522644042969, - -1.2822633981704712, - -1.2985591888427734, - -1.3102954626083374, - -1.3171517848968506, - -0.9456449151039124, - -0.9437512159347534, - -0.9469760656356812, - -0.9552314281463623, - -0.968292236328125, - -0.9858020544052124, - -1.0072834491729736, - -1.032150387763977, - -1.0597244501113892, - -1.0892536640167236, - -1.1199324131011963, - -1.1509239673614502, - -1.1813828945159912, - -1.21047842502594, - -1.2374167442321777, - -1.2614632844924927, - -1.2819619178771973, - -1.298353672027588, - -1.3101911544799805, - -1.3171517848968506, - -0.9456449151039124, - -0.9441267251968384, - -0.9477168321609497, - -0.9563173055648804, - -0.9696935415267944, - -0.987480640411377, - -1.0091934204101562, - -1.034239649772644, - -1.0619361400604248, - -1.0915273427963257, - -1.1222060918807983, - -1.1531356573104858, - -1.1834721565246582, - -1.2123883962631226, - -1.2390953302383423, - -1.262864589691162, - -1.2830477952957153, - -1.2990944385528564, - -1.3105666637420654, - -1.3171517848968506, - -0.9456449151039124, - -0.9449412822723389, - -0.9493237733840942, - -0.9586727619171143, - -0.972733199596405, - -0.9911216497421265, - -1.0133365392684937, - -1.0387717485427856, - -1.0667335987091064, - -1.0964593887329102, - -1.1271381378173828, - -1.1579331159591675, - -1.1880043745040894, - -1.21653151512146, - -1.2427363395690918, - -1.2659043073654175, - -1.2854032516479492, - -1.300701379776001, - -1.311381220817566, - -1.3171517848968506, - -0.9456449151039124, - -0.9461066722869873, - -0.9516226649284363, - -0.962042510509491, - -0.9770818948745728, - -0.9963306784629822, - -1.019263744354248, - -1.0452555418014526, - -1.0735970735549927, - -1.1035152673721313, - -1.1341941356658936, - -1.1647965908050537, - -1.1944881677627563, - -1.2224587202072144, - -1.2479454278945923, - -1.2702529430389404, - -1.2887730598449707, - -1.3030002117156982, - -1.3125466108322144, - -1.3171517848968506, - -0.9456449151039124, - -0.9474964737892151, - -0.9543644785881042, - -0.9660614728927612, - -0.9822683930397034, - -1.0025432109832764, - -1.0263328552246094, - -1.0529884099960327, - -1.0817828178405762, - -1.1119306087493896, - -1.1426093578338623, - -1.1729823350906372, - -1.2022210359573364, - -1.2295278310775757, - -1.2541579008102417, - -1.2754395008087158, - -1.2927919626235962, - -1.3057420253753662, - -1.313936471939087, - -1.3171517848968506, - -0.9456449151039124, - -0.9489602446556091, - -0.957252025604248, - -0.9702940583229065, - -0.9877306222915649, - -1.009086012840271, - -1.0337777137756348, - -1.0611324310302734, - -1.09040367603302, - -1.1207932233810425, - -1.1514719724655151, - -1.181603193283081, - -1.2103649377822876, - -1.2369728088378906, - -1.2607007026672363, - -1.2809016704559326, - -1.2970244884490967, - -1.3086296319961548, - -1.315400242805481, - -1.3171517848968506, - -0.9456449151039124, - -0.9503392577171326, - -0.9599723815917969, - -0.9742816686630249, - -0.9928765892982483, - -1.0152500867843628, - -1.0407917499542236, - -1.0688049793243408, - -1.0985255241394043, - -1.1291427612304688, - -1.1598215103149414, - -1.1897250413894653, - -1.218037486076355, - -1.24398672580719, - -1.2668647766113281, - -1.2860476970672607, - -1.3010121583938599, - -1.3113499879837036, - -1.3167792558670044, - -1.3171517848968506, - -0.9456449151039124, - -0.9514840841293335, - -0.9622308611869812, - -0.9775921106338501, - -0.9971487522125244, - -1.0203673839569092, - -1.046614646911621, - -1.0751745700836182, - -1.105268120765686, - -1.1360745429992676, - -1.1667532920837402, - -1.1964677572250366, - -1.2244071960449219, - -1.2498096227645874, - -1.2719820737838745, - -1.290319800376892, - -1.304322600364685, - -1.3136084079742432, - -1.3179240226745605, - -1.3171517848968506, - -0.9456449151039124, - -0.9522706866264343, - -0.9637826085090637, - -0.9798666834831238, - -1.0000841617584229, - -1.0238834619522095, - -1.0506155490875244, - -1.079551100730896, - -1.1099010705947876, - -1.14083731174469, - -1.1715160608291626, - -1.2011005878448486, - -1.2287837266921997, - -1.2538105249404907, - -1.2754981517791748, - -1.2932552099227905, - -1.3065972328186035, - -1.3151601552963257, - -1.3187106847763062, - -1.3171517848968506, - -0.9456449151039124, - -0.9526138305664062, - -0.9644595384597778, - -0.9808589220046997, - -1.0013645887374878, - -1.0254173278808594, - -1.0523607730865479, - -1.0814603567123413, - -1.111922025680542, - -1.142914891242981, - -1.1735937595367432, - -1.203121542930603, - -1.2306928634643555, - -1.2555557489395142, - -1.2770320177078247, - -1.2945356369018555, - -1.3075894117355347, - -1.3158371448516846, - -1.3190537691116333, - -1.3171517848968506, - -0.9456449151039124, - -0.9524763226509094, - -0.964188277721405, - -0.9804612398147583, - -1.0008513927459717, - -1.024802565574646, - -1.0516613721847534, - -1.0806951522827148, - -1.111112117767334, - -1.1420823335647583, - -1.172761082649231, - -1.202311635017395, - -1.2299277782440186, - -1.2548563480377197, - -1.2764172554016113, - -1.294022560119629, - -1.3071917295455933, - -1.315565824508667, - -1.3189163208007812, - -1.3171517848968506, - -0.9456449151039124, - -0.9518730640411377, - -0.9629981517791748, - -0.9787168502807617, - -0.9986002445220947, - -1.0221060514450073, - -1.0485930442810059, - -1.077338695526123, - -1.1075589656829834, - -1.1384296417236328, - -1.1691083908081055, - -1.198758602142334, - -1.2265713214874268, - -1.2517880201339722, - -1.2737207412719727, - -1.2917712926864624, - -1.3054473400115967, - -1.3143757581710815, - -1.3183130025863647, - -1.3171517848968506, - -0.9456449151039124, - -0.9508693814277649, - -0.9610182642936707, - -0.9758146405220032, - -0.9948549270629883, - -1.0176198482513428, - -1.0434882640838623, - -1.0717545747756958, - -1.1016478538513184, - -1.1323527097702026, - -1.1630315780639648, - -1.192847490310669, - -1.2209872007369995, - -1.2466832399368286, - -1.269234538078308, - -1.2880260944366455, - -1.302545189857483, - -1.3123958110809326, - -1.3173093795776367, - -1.3171517848968506, - -0.9456449151039124, - -0.9495741128921509, - -0.9584630727767944, - -0.9720692038536072, - -0.9900214672088623, - -1.0118300914764404, - -1.0369001626968384, - -1.0645480155944824, - -1.0940192937850952, - -1.1245101690292358, - -1.1551889181137085, - -1.1852188110351562, - -1.2137805223464966, - -1.2400951385498047, - -1.2634447813034058, - -1.28319251537323, - -1.298799753189087, - -1.3098406791687012, - -1.316014051437378, - -1.3171517848968506, - -0.9456449151039124, - -0.9481276273727417, - -0.9556094408035278, - -0.9678863883018494, - -0.9846234917640686, - -1.005364179611206, - -1.0295428037643433, - -1.056499719619751, - -1.0854997634887695, - -1.1157517433166504, - -1.1464306116104126, - -1.1766992807388306, - -1.2057323455810547, - -1.2327377796173096, - -1.256978988647461, - -1.277794599533081, - -1.294616937637329, - -1.3069870471954346, - -1.3145675659179688, - -1.3171517848968506, - -0.9456449151039124, - -0.9466865658760071, - -0.9527667164802551, - -0.9637194871902466, - -0.9792460203170776, - -0.9989229440689087, - -1.0222134590148926, - -1.0484821796417236, - -1.0770126581192017, - -1.1070266962051392, - -1.1377054452896118, - -1.1682121753692627, - -1.1977148056030273, - -1.2254084348678589, - -1.250537633895874, - -1.2724170684814453, - -1.2904499769210815, - -1.304144263267517, - -1.313126564025879, - -1.3171517848968506, - -0.9456449151039124, - -0.9454072117805481, - -0.9502428770065308, - -0.9600200057029724, - -0.9744718074798584, - -0.9932042360305786, - -1.015706181526184, - -1.0413639545440674, - -1.0694776773452759, - -1.0992803573608398, - -1.1299591064453125, - -1.160677194595337, - -1.190596580505371, - -1.2189011573791504, - -1.244818925857544, - -1.2676429748535156, - -1.2867504358291626, - -1.3016204833984375, - -1.31184720993042, - -1.3171517848968506, - -0.9456449151039124, - -0.9444281458854675, - -0.948311448097229, - -0.9571888446807861, - -0.970818281173706, - -0.9888278245925903, - -1.0107264518737793, - -1.0359165668487549, - -1.0637112855911255, - -1.093352198600769, - -1.1240310668945312, - -1.1549108028411865, - -1.1851491928100586, - -1.2139214277267456, - -1.2404425144195557, - -1.2639893293380737, - -1.283919334411621, - -1.2996890544891357, - -1.3108681440353394, - -1.3171517848968506 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.3638182580471039, - 0.312843382358551, - 0.2627852261066437, - 0.21500930190086365, - 0.17081880569458008, - 0.13141915202140808, - 0.09788502752780914, - 0.0711311399936676, - 0.051887333393096924, - 0.040678471326828, - 0.03781035542488098, - 0.043361127376556396, - 0.05717948079109192, - 0.07888844609260559, - 0.10789582133293152, - 0.14341042935848236, - 0.1844635009765625, - 0.2299351692199707, - 0.27858513593673706, - 0.3290863335132599, - 0.3638182580471039, - 0.315592497587204, - 0.26820850372314453, - 0.2229587733745575, - 0.18107764422893524, - 0.1437075138092041, - 0.11186771094799042, - 0.0864267647266388, - 0.06807869672775269, - 0.057323843240737915, - 0.054455727338790894, - 0.05955249071121216, - 0.07247510552406311, - 0.09287112951278687, - 0.12018419802188873, - 0.15366928279399872, - 0.19241297245025635, - 0.23535844683647156, - 0.2813342809677124, - 0.3290863335132599, - 0.3638182580471039, - 0.3235419690608978, - 0.28389060497283936, - 0.2459457516670227, - 0.21074244379997253, - 0.17924098670482635, - 0.15230058133602142, - 0.1306561529636383, - 0.11489804089069366, - 0.10545618832111359, - 0.10258804261684418, - 0.10637186467647552, - 0.11670449376106262, - 0.13330399990081787, - 0.1557176560163498, - 0.18333406746387482, - 0.21539993584156036, - 0.2510405480861664, - 0.28928375244140625, - 0.3290863335132599, - 0.3638182580471039, - 0.33583033084869385, - 0.308132141828537, - 0.28147920966148376, - 0.2565985918045044, - 0.23416894674301147, - 0.214802086353302, - 0.19902628660202026, - 0.18727190792560577, - 0.17985956370830536, - 0.17699141800403595, - 0.17874573171138763, - 0.18507462739944458, - 0.19580550491809845, - 0.2106456309556961, - 0.22919020056724548, - 0.2509334087371826, - 0.275282084941864, - 0.30157211422920227, - 0.3290863335132599, - 0.3638182580471039, - 0.35112595558166504, - 0.33830615878105164, - 0.3257085680961609, - 0.3136768341064453, - 0.3025391101837158, - 0.29259923100471497, - 0.2841283082962036, - 0.27735742926597595, - 0.2724713087081909, - 0.2696031630039215, - 0.2688312530517578, - 0.27017664909362793, - 0.2736026644706726, - 0.27901580929756165, - 0.2862684726715088, - 0.29516276717185974, - 0.30545610189437866, - 0.31686773896217346, - 0.3290863335132599, - 0.3638182580471039, - 0.36777132749557495, - 0.3711428642272949, - 0.37384089827537537, - 0.37579184770584106, - 0.37694251537323, - 0.3772614598274231, - 0.3767400085926056, - 0.3753924071788788, - 0.3732554018497467, - 0.3703872561454773, - 0.36686623096466064, - 0.3627883493900299, - 0.35826489329338074, - 0.3534192144870758, - 0.34838348627090454, - 0.3432950973510742, - 0.33829280734062195, - 0.333513081073761, - 0.3290863335132599, - 0.3638182580471039, - 0.38396263122558594, - 0.403083860874176, - 0.4206603169441223, - 0.43621253967285156, - 0.4493163824081421, - 0.4596143364906311, - 0.4668255150318146, - 0.4707532525062561, - 0.47129034996032715, - 0.4684222340583801, - 0.46222707629203796, - 0.4528738558292389, - 0.44061776995658875, - 0.4257930815219879, - 0.40880417823791504, - 0.3901144862174988, - 0.37023380398750305, - 0.34970441460609436, - 0.3290863335132599, - 0.3638182580471039, - 0.3979453444480896, - 0.43066784739494324, - 0.46109315752983093, - 0.4883913993835449, - 0.5118178725242615, - 0.5307336449623108, - 0.5446226596832275, - 0.5531061291694641, - 0.5559526085853577, - 0.5530844926834106, - 0.5445799827575684, - 0.5306710004806519, - 0.511737048625946, - 0.4882946014404297, - 0.4609830379486084, - 0.4305473566055298, - 0.39781779050827026, - 0.363687127828598, - 0.3290863335132599, - 0.3638182580471039, - 0.40820419788360596, - 0.4509056806564331, - 0.4907579720020294, - 0.5266740322113037, - 0.557673990726471, - 0.5829124450683594, - 0.6017009019851685, - 0.6135268211364746, - 0.6180676221847534, - 0.6151995062828064, - 0.6050006151199341, - 0.5877492427825928, - 0.5639159083366394, - 0.5341507196426392, - 0.4992656409740448, - 0.46021217107772827, - 0.4180556535720825, - 0.373945951461792, - 0.3290863335132599, - 0.3638182580471039, - 0.4136274456977844, - 0.4616042971611023, - 0.5064400434494019, - 0.5469118356704712, - 0.581915557384491, - 0.610496461391449, - 0.6318749189376831, - 0.6454678773880005, - 0.6509042978286743, - 0.6480362415313721, - 0.63694167137146, - 0.6179232597351074, - 0.591499924659729, - 0.5583922863006592, - 0.5195034742355347, - 0.4758942723274231, - 0.4287542402744293, - 0.37936922907829285, - 0.3290863335132599, - 0.3638182580471039, - 0.4136274456977844, - 0.4616042971611023, - 0.5064400434494019, - 0.5469118356704712, - 0.581915557384491, - 0.610496461391449, - 0.6318749189376831, - 0.6454678773880005, - 0.6509042978286743, - 0.6480362415313721, - 0.63694167137146, - 0.6179232597351074, - 0.591499924659729, - 0.5583922863006592, - 0.5195034742355347, - 0.4758942723274231, - 0.4287542402744293, - 0.37936922907829285, - 0.3290863335132599, - 0.3638182580471039, - 0.40820419788360596, - 0.4509056806564331, - 0.4907579720020294, - 0.5266740322113037, - 0.557673990726471, - 0.5829124450683594, - 0.6017009019851685, - 0.6135268211364746, - 0.6180676221847534, - 0.6151995062828064, - 0.6050006151199341, - 0.5877492427825928, - 0.5639159083366394, - 0.5341507196426392, - 0.4992656409740448, - 0.46021217107772827, - 0.4180556535720825, - 0.373945951461792, - 0.3290863335132599, - 0.3638182580471039, - 0.3979453444480896, - 0.43066784739494324, - 0.4610931873321533, - 0.4883913993835449, - 0.5118178725242615, - 0.5307336449623108, - 0.5446226596832275, - 0.5531061291694641, - 0.5559526681900024, - 0.5530844926834106, - 0.5445799827575684, - 0.5306710004806519, - 0.5117371082305908, - 0.4882946014404297, - 0.4609830379486084, - 0.4305473566055298, - 0.39781779050827026, - 0.363687127828598, - 0.3290863335132599, - 0.3638182580471039, - 0.38396263122558594, - 0.40308383107185364, - 0.4206602871417999, - 0.4362125098705292, - 0.4493163228034973, - 0.45961427688598633, - 0.4668254852294922, - 0.47075319290161133, - 0.47129032015800476, - 0.46842217445373535, - 0.4622270166873932, - 0.4528738260269165, - 0.44061774015426636, - 0.4257930517196655, - 0.40880414843559265, - 0.3901144564151764, - 0.37023377418518066, - 0.34970441460609436, - 0.3290863335132599, - 0.3638182580471039, - 0.36777132749557495, - 0.3711428642272949, - 0.37384089827537537, - 0.37579187750816345, - 0.37694251537323, - 0.3772614598274231, - 0.376740038394928, - 0.37539243698120117, - 0.3732554018497467, - 0.3703872561454773, - 0.36686623096466064, - 0.3627883791923523, - 0.3582649230957031, - 0.3534192442893982, - 0.34838351607322693, - 0.3432950973510742, - 0.33829280734062195, - 0.3335131108760834, - 0.3290863335132599, - 0.3638182580471039, - 0.3511259853839874, - 0.338306188583374, - 0.32570862770080566, - 0.3136768937110901, - 0.3025391697883606, - 0.29259929060935974, - 0.2841283977031708, - 0.2773575186729431, - 0.2724713683128357, - 0.26960325241088867, - 0.268831342458725, - 0.2701767385005951, - 0.2736027240753174, - 0.2790158689022064, - 0.2862685024738312, - 0.29516279697418213, - 0.30545613169670105, - 0.31686773896217346, - 0.3290863335132599, - 0.3638182580471039, - 0.33583033084869385, - 0.308132141828537, - 0.28147920966148376, - 0.2565985918045044, - 0.23416896164417267, - 0.2148021012544632, - 0.19902631640434265, - 0.18727193772792816, - 0.17985959351062775, - 0.17699144780635834, - 0.17874576151371002, - 0.18507465720176697, - 0.19580551981925964, - 0.2106456458568573, - 0.22919023036956787, - 0.2509334087371826, - 0.275282084941864, - 0.30157211422920227, - 0.3290863335132599, - 0.3638182580471039, - 0.3235419690608978, - 0.28389060497283936, - 0.24594572186470032, - 0.21074241399765015, - 0.17924095690250397, - 0.15230056643486023, - 0.13065610826015472, - 0.11489799618721008, - 0.10545614361763, - 0.1025879979133606, - 0.10637181997299194, - 0.11670444905757904, - 0.13330398499965668, - 0.1557176262140274, - 0.18333405256271362, - 0.21539992094039917, - 0.251040518283844, - 0.28928372263908386, - 0.3290863335132599, - 0.3638182580471039, - 0.315592497587204, - 0.26820847392082214, - 0.2229587435722351, - 0.18107762932777405, - 0.1437074840068817, - 0.11186768114566803, - 0.08642670512199402, - 0.06807863712310791, - 0.05732378363609314, - 0.05445566773414612, - 0.05955243110656738, - 0.07247504591941833, - 0.09287109971046448, - 0.12018413841724396, - 0.15366925299167633, - 0.19241294264793396, - 0.23535841703414917, - 0.28133425116539, - 0.3290863335132599, - 0.3638182580471039, - 0.312843382358551, - 0.2627852261066437, - 0.21500930190086365, - 0.17081880569458008, - 0.13141915202140808, - 0.09788502752780914, - 0.0711311399936676, - 0.051887333393096924, - 0.040678471326828, - 0.03781035542488098, - 0.043361127376556396, - 0.05717948079109192, - 0.07888844609260559, - 0.10789582133293152, - 0.14341042935848236, - 0.1844635009765625, - 0.2299351692199707, - 0.27858513593673706, - 0.3290863335132599 - ], - "y": [ - 0.49486154317855835, - 0.4947335422039032, - 0.4949090778827667, - 0.49538329243659973, - 0.49614331126213074, - 0.4971683621406555, - 0.4984305202960968, - 0.499895304441452, - 0.5015227794647217, - 0.5032685995101929, - 0.5050851106643677, - 0.506922721862793, - 0.5087313652038574, - 0.510461688041687, - 0.5120664238929749, - 0.5135019421577454, - 0.5147289633750916, - 0.5157141089439392, - 0.5164304375648499, - 0.5168583989143372, - 0.49486151337623596, - 0.5112655758857727, - 0.5275222063064575, - 0.5431879758834839, - 0.5578354597091675, - 0.5710652470588684, - 0.5825163722038269, - 0.5918765068054199, - 0.5988903641700745, - 0.6033665537834167, - 0.6051830649375916, - 0.6042903065681458, - 0.6007125377655029, - 0.5945475101470947, - 0.5859633088111877, - 0.5751941204071045, - 0.5625336170196533, - 0.5483272671699524, - 0.5329625010490417, - 0.5168583989143372, - 0.49486151337623596, - 0.526036262512207, - 0.5566606521606445, - 0.5858993530273438, - 0.6129547357559204, - 0.6370888948440552, - 0.6576434373855591, - 0.6740577220916748, - 0.6858840584754944, - 0.6927998065948486, - 0.6946162581443787, - 0.6912840008735657, - 0.6828938126564026, - 0.6696746349334717, - 0.6519869565963745, - 0.6303133964538574, - 0.6052449941635132, - 0.5774656534194946, - 0.5477331280708313, - 0.5168583989143372, - 0.49486151337623596, - 0.5374448895454407, - 0.5791667699813843, - 0.6188889741897583, - 0.6555280685424805, - 0.688084602355957, - 0.7156705260276794, - 0.7375333905220032, - 0.7530767917633057, - 0.7618767023086548, - 0.7636932134628296, - 0.758476734161377, - 0.7463694214820862, - 0.727701723575592, - 0.7029827237129211, - 0.6728867292404175, - 0.6382346749305725, - 0.5999717712402344, - 0.5591418147087097, - 0.5168583989143372, - 0.49486151337623596, - 0.544255256652832, - 0.5926017165184021, - 0.6385819911956787, - 0.6809420585632324, - 0.7185262441635132, - 0.7503095269203186, - 0.7754248380661011, - 0.793187141418457, - 0.8031118512153625, - 0.8049283623695374, - 0.7985870838165283, - 0.7842608690261841, - 0.7623406648635864, - 0.7334243655204773, - 0.6983007192611694, - 0.6579276919364929, - 0.6134067177772522, - 0.5659521222114563, - 0.5168583989143372, - 0.49486151337623596, - 0.5457292795181274, - 0.5955095291137695, - 0.6428443193435669, - 0.6864426136016846, - 0.7251150012016296, - 0.7578067779541016, - 0.7836260199546814, - 0.8018685579299927, - 0.8120367527008057, - 0.8138532638549805, - 0.807268500328064, - 0.7924620509147644, - 0.7698379158973694, - 0.7400131225585938, - 0.7038012742996216, - 0.6621900200843811, - 0.6163145303726196, - 0.5674261450767517, - 0.5168583989143372, - 0.49486151337623596, - 0.5417072176933289, - 0.5875751376152039, - 0.6312140822410583, - 0.671433687210083, - 0.707136869430542, - 0.7373496890068054, - 0.7612482309341431, - 0.7781802415847778, - 0.7876841425895691, - 0.7895006537437439, - 0.7835801839828491, - 0.7700842618942261, - 0.749380886554718, - 0.7220349907875061, - 0.68879234790802, - 0.6505597829818726, - 0.6083801984786987, - 0.5634041428565979, - 0.5168583989143372, - 0.49486151337623596, - 0.5326250195503235, - 0.5696583986282349, - 0.6049515604972839, - 0.6375417709350586, - 0.6665399670600891, - 0.6911553144454956, - 0.7107162475585938, - 0.724689245223999, - 0.7326931953430176, - 0.7345096468925476, - 0.7300891876220703, - 0.7195522785186768, - 0.7031864523887634, - 0.6814380884170532, - 0.6549003720283508, - 0.6242972612380981, - 0.5904634594917297, - 0.5543218851089478, - 0.5168583989143372, - 0.49486151337623596, - 0.519466757774353, - 0.5437008142471313, - 0.5669026970863342, - 0.5884395241737366, - 0.6077237129211426, - 0.624229371547699, - 0.6375062465667725, - 0.647192120552063, - 0.653022825717926, - 0.6548393368721008, - 0.6525920629501343, - 0.6463422775268555, - 0.6362605690956116, - 0.6226218342781067, - 0.6057981252670288, - 0.5862483978271484, - 0.5645058751106262, - 0.5411636233329773, - 0.5168583989143372, - 0.49486151337623596, - 0.5036584138870239, - 0.5125153660774231, - 0.5211907625198364, - 0.5294479727745056, - 0.5370617508888245, - 0.5438244342803955, - 0.5495515465736389, - 0.5540868639945984, - 0.557306706905365, - 0.5591232180595398, - 0.5594868063926697, - 0.5583876371383667, - 0.5558555722236633, - 0.5519598126411438, - 0.5468065738677979, - 0.5405364036560059, - 0.5333203673362732, - 0.5253552794456482, - 0.5168583989143372, - 0.49486154317855835, - 0.4869130253791809, - 0.47948136925697327, - 0.47276926040649414, - 0.46695974469184875, - 0.46221134066581726, - 0.4586535692214966, - 0.45638343691825867, - 0.4554629325866699, - 0.4559171199798584, - 0.4577336013317108, - 0.4608628451824188, - 0.46521949768066406, - 0.4706847071647644, - 0.477109432220459, - 0.4843183755874634, - 0.49211493134498596, - 0.5002864003181458, - 0.5086098909378052, - 0.5168583989143372, - 0.49486154317855835, - 0.47104525566101074, - 0.44817864894866943, - 0.4268854260444641, - 0.40774643421173096, - 0.3912837505340576, - 0.3779463469982147, - 0.3680981397628784, - 0.36200767755508423, - 0.35984116792678833, - 0.36165764927864075, - 0.3674076199531555, - 0.3769341707229614, - 0.38997751474380493, - 0.40618181228637695, - 0.4251050651073456, - 0.4462311267852783, - 0.4689836800098419, - 0.4927421510219574, - 0.5168583989143372, - 0.49486154317855835, - 0.4577746093273163, - 0.42199933528900146, - 0.3885115385055542, - 0.3582247495651245, - 0.33196502923965454, - 0.31044870615005493, - 0.2942626476287842, - 0.28384849429130554, - 0.27949023246765137, - 0.2813066840171814, - 0.28924840688705444, - 0.30309873819351196, - 0.32247984409332275, - 0.3468630909919739, - 0.37558335065841675, - 0.4078572392463684, - 0.44280436635017395, - 0.47947150468826294, - 0.5168583989143372, - 0.49486154317855835, - 0.448539137840271, - 0.40378034114837646, - 0.3618059754371643, - 0.3237610161304474, - 0.2906832695007324, - 0.2634749710559845, - 0.2428782880306244, - 0.22945502400398254, - 0.22357144951820374, - 0.22538796067237854, - 0.23485496640205383, - 0.2517143189907074, - 0.2755061388015747, - 0.30558133125305176, - 0.341119647026062, - 0.38115164637565613, - 0.42458534240722656, - 0.47023603320121765, - 0.5168583989143372, - 0.49486154317855835, - 0.44433969259262085, - 0.3954959809780121, - 0.3496626913547516, - 0.3080900311470032, - 0.2719120681285858, - 0.2421155869960785, - 0.21951335668563843, - 0.20472189784049988, - 0.19814470410346985, - 0.19996121525764465, - 0.21012184023857117, - 0.22834938764572144, - 0.2541466951370239, - 0.28681010007858276, - 0.3254486620426178, - 0.3690083622932434, - 0.41630101203918457, - 0.4660365879535675, - 0.5168583989143372, - 0.49486154317855835, - 0.44563132524490356, - 0.39804399013519287, - 0.3533976078033447, - 0.31290996074676514, - 0.2776855230331421, - 0.2486850917339325, - 0.22669965028762817, - 0.21232903003692627, - 0.20596522092819214, - 0.20778173208236694, - 0.21772897243499756, - 0.23553568124771118, - 0.26071619987487793, - 0.2925835847854614, - 0.3302685618400574, - 0.37274324893951416, - 0.41884899139404297, - 0.46732819080352783, - 0.5168583989143372, - 0.49486154317855835, - 0.45227405428886414, - 0.4111482501029968, - 0.37260597944259644, - 0.33769845962524414, - 0.30737799406051636, - 0.28247159719467163, - 0.26365864276885986, - 0.2514522969722748, - 0.2461855113506317, - 0.24800202250480652, - 0.2568522095680237, - 0.27249467372894287, - 0.29450273513793945, - 0.3222760558128357, - 0.35505712032318115, - 0.39195165038108826, - 0.4319533109664917, - 0.4739709496498108, - 0.5168583989143372, - 0.49486154317855835, - 0.46354806423187256, - 0.43338876962661743, - 0.4052062928676605, - 0.37976938486099243, - 0.3577719032764435, - 0.33981388807296753, - 0.32638511061668396, - 0.3178520202636719, - 0.3144472539424896, - 0.31626373529434204, - 0.3232519328594208, - 0.33522117137908936, - 0.35184502601623535, - 0.3726699650287628, - 0.39712798595428467, - 0.42455196380615234, - 0.4541938006877899, - 0.4852449595928192, - 0.5168583989143372, - 0.49486154317855835, - 0.47823163866996765, - 0.462355375289917, - 0.447665810585022, - 0.43456363677978516, - 0.4234062433242798, - 0.414497971534729, - 0.4080817699432373, - 0.4043327569961548, - 0.40335312485694885, - 0.40516960620880127, - 0.4097326695919037, - 0.4169178307056427, - 0.4265291094779968, - 0.4383043050765991, - 0.4519222676753998, - 0.4670115113258362, - 0.48316043615341187, - 0.4999285340309143, - 0.5168583989143372, - 0.49486154317855835, - 0.4947335720062256, - 0.4949090778827667, - 0.4953833222389221, - 0.4961433410644531, - 0.4971684217453003, - 0.4984305500984192, - 0.4998953640460968, - 0.5015228390693665, - 0.5032686591148376, - 0.5050851702690125, - 0.5069227814674377, - 0.5087314248085022, - 0.510461688041687, - 0.5120664834976196, - 0.5135020017623901, - 0.5147290229797363, - 0.5157141089439392, - 0.5164304375648499, - 0.5168583989143372 - ], - "z": [ - -1.2667909860610962, - -1.2646220922470093, - -1.2675966024398804, - -1.2756333351135254, - -1.2885130643844604, - -1.3058843612670898, - -1.3272736072540283, - -1.3520971536636353, - -1.3796778917312622, - -1.4092636108398438, - -1.440047264099121, - -1.471189022064209, - -1.5018396377563477, - -1.5311627388000488, - -1.5583587884902954, - -1.5826858282089233, - -1.6034801006317139, - -1.620174765586853, - -1.6323140859603882, - -1.6395670175552368, - -1.2667909860610962, - -1.2639027833938599, - -1.2661775350570679, - -1.2735531330108643, - -1.2858285903930664, - -1.302668809890747, - -1.3236145973205566, - -1.3480945825576782, - -1.3754409551620483, - -1.4049078226089478, - -1.435691475868225, - -1.4669520854949951, - -1.4978370666503906, - -1.5275038480758667, - -1.555143117904663, - -1.5800012350082397, - -1.6013998985290527, - -1.618755578994751, - -1.6315946578979492, - -1.6395670175552368, - -1.2667909860610962, - -1.2637717723846436, - -1.2659192085266113, - -1.273174524307251, - -1.2853399515151978, - -1.3020834922790527, - -1.322948694229126, - -1.3473660945892334, - -1.3746697902679443, - -1.404115080833435, - -1.4348987340927124, - -1.4661809206008911, - -1.4971085786819458, - -1.5268378257751465, - -1.5545579195022583, - -1.579512596130371, - -1.6010212898254395, - -1.6184972524642944, - -1.6314637660980225, - -1.6395670175552368, - -1.2667909860610962, - -1.264243483543396, - -1.2668497562408447, - -1.274538516998291, - -1.2871001958847046, - -1.304192066192627, - -1.325347900390625, - -1.3499906063079834, - -1.3774480819702148, - -1.4069712162017822, - -1.4377548694610596, - -1.468959093093872, - -1.4997330904006958, - -1.5292370319366455, - -1.556666374206543, - -1.5812729597091675, - -1.6023852825164795, - -1.6194278001785278, - -1.631935477256775, - -1.6395670175552368, - -1.2667909860610962, - -1.2652667760849, - -1.268868327140808, - -1.277497410774231, - -1.2909185886383057, - -1.3087658882141113, - -1.330552339553833, - -1.35568368434906, - -1.383474588394165, - -1.4131667613983154, - -1.4439502954483032, - -1.4749855995178223, - -1.5054261684417725, - -1.5344414710998535, - -1.5612401962280273, - -1.5850913524627686, - -1.6053441762924194, - -1.6214463710784912, - -1.6329586505889893, - -1.6395670175552368, - -1.2667909860610962, - -1.2667306661605835, - -1.2717561721801758, - -1.2817304134368896, - -1.2963813543319702, - -1.3153092861175537, - -1.3379980325698853, - -1.3638285398483276, - -1.3920962810516357, - -1.4220302104949951, - -1.4528138637542725, - -1.4836074113845825, - -1.51357102394104, - -1.5418871641159058, - -1.5677837133407593, - -1.5905539989471436, - -1.6095771789550781, - -1.6243342161178589, - -1.6344225406646729, - -1.6395670175552368, - -1.2667909860610962, - -1.2684764862060547, - -1.275200366973877, - -1.2867789268493652, - -1.302896499633789, - -1.3231133222579956, - -1.3468780517578125, - -1.373542308807373, - -1.4023789167404175, - -1.4326012134552002, - -1.4633848667144775, - -1.4938900470733643, - -1.5232847929000854, - -1.550767183303833, - -1.5755876302719116, - -1.5970691442489624, - -1.6146256923675537, - -1.62777841091156, - -1.6361684799194336, - -1.6395670175552368, - -1.2667909860610962, - -1.2703152894973755, - -1.2788275480270386, - -1.2920957803726196, - -1.309757947921753, - -1.3313322067260742, - -1.3562301397323608, - -1.383772611618042, - -1.413208246231079, - -1.4437342882156372, - -1.474517822265625, - -1.5047193765640259, - -1.5335150957107544, - -1.560119390487671, - -1.5838065147399902, - -1.6039305925369263, - -1.619942545890808, - -1.6314057111740112, - -1.6380071640014648, - -1.6395670175552368, - -1.2667909860610962, - -1.272047519683838, - -1.2822449207305908, - -1.2971049547195435, - -1.3162221908569336, - -1.3390753269195557, - -1.365040898323059, - -1.3934106826782227, - -1.4234107732772827, - -1.4542227983474731, - -1.4850064516067505, - -1.51492178440094, - -1.5431530475616455, - -1.5689301490783691, - -1.5915496349334717, - -1.6103949546813965, - -1.624951720237732, - -1.634822964668274, - -1.6397393941879272, - -1.6395670175552368, - -1.2667909860610962, - -1.2734856605529785, - -1.2850818634033203, - -1.301263451576233, - -1.3215887546539307, - -1.345503568649292, - -1.3723554611206055, - -1.401412010192871, - -1.4318807125091553, - -1.4629303216934204, - -1.4937138557434082, - -1.523391842842102, - -1.5511544942855835, - -1.5762447118759155, - -1.5979779958724976, - -1.6157615184783936, - -1.6291102170944214, - -1.637660026550293, - -1.6411775350570679, - -1.6395670175552368, - -1.2667909860610962, - -1.274473786354065, - -1.2870311737060547, - -1.304120659828186, - -1.3252761363983154, - -1.349920392036438, - -1.3773813247680664, - -1.4069098234176636, - -1.4377003908157349, - -1.4689130783081055, - -1.4996967315673828, - -1.5292115211486816, - -1.5566521883010864, - -1.581270456314087, - -1.6023948192596436, - -1.6194487810134888, - -1.6319674253463745, - -1.6396092176437378, - -1.6421656608581543, - -1.6395670175552368, - -1.2667909860610962, - -1.2749048471450806, - -1.2878814935684204, - -1.305367112159729, - -1.3268846273422241, - -1.3518470525741577, - -1.3795737028121948, - -1.4093079566955566, - -1.4402390718460083, - -1.4715230464935303, - -1.502306580543518, - -1.5317500829696655, - -1.559050440788269, - -1.5834628343582153, - -1.6043214797973633, - -1.6210572719573975, - -1.6332138776779175, - -1.6404595375061035, - -1.64259672164917, - -1.6395670175552368, - -1.2667909860610962, - -1.2747321128845215, - -1.2875406742095947, - -1.3048676252365112, - -1.326240062713623, - -1.3510749340057373, - -1.378695011138916, - -1.4083468914031982, - -1.4392216205596924, - -1.4704771041870117, - -1.5012606382369995, - -1.5307327508926392, - -1.5580893754959106, - -1.582584261894226, - -1.6035493612289429, - -1.6204127073287964, - -1.6327143907546997, - -1.6401188373565674, - -1.6424239873886108, - -1.6395670175552368, - -1.2667909860610962, - -1.2739742994308472, - -1.286045789718628, - -1.3026763200759888, - -1.3234120607376099, - -1.3476876020431519, - -1.3748406171798706, - -1.4041305780410767, - -1.4347584247589111, - -1.4658886194229126, - -1.49667227268219, - -1.526269555091858, - -1.553873062133789, - -1.5787298679351807, - -1.6001620292663574, - -1.6175848245620728, - -1.6305230855941772, - -1.638623833656311, - -1.6416661739349365, - -1.6395670175552368, - -1.2667909860610962, - -1.272713541984558, - -1.2835586071014404, - -1.2990306615829468, - -1.3187073469161987, - -1.3420521020889282, - -1.368428111076355, - -1.39711594581604, - -1.4273329973220825, - -1.4582550525665283, - -1.4890387058258057, - -1.5188441276550293, - -1.5468584299087524, - -1.572317361831665, - -1.5945265293121338, - -1.6128801107406616, - -1.6268774271011353, - -1.636136770248413, - -1.6404054164886475, - -1.6395670175552368, - -1.2667909860610962, - -1.2710864543914795, - -1.2803488969802856, - -1.2943257093429565, - -1.3126356601715088, - -1.334779143333435, - -1.3601524829864502, - -1.3880631923675537, - -1.4177501201629639, - -1.4484034776687622, - -1.47918701171875, - -1.5092612504959106, - -1.5378055572509766, - -1.5640416145324707, - -1.5872535705566406, - -1.6068083047866821, - -1.622172474861145, - -1.6329269409179688, - -1.6387783288955688, - -1.6395670175552368, - -1.2667909860610962, - -1.269269347190857, - -1.2767642736434937, - -1.2890713214874268, - -1.3058547973632812, - -1.3266569375991821, - -1.3509103059768677, - -1.3779531717300415, - -1.4070481061935425, - -1.4374014139175415, - -1.4681849479675293, - -1.4985592365264893, - -1.527695655822754, - -1.5547994375228882, - -1.5791313648223877, - -1.6000275611877441, - -1.6169180870056152, - -1.6293423175811768, - -1.6369612216949463, - -1.6395670175552368, - -1.2667909860610962, - -1.2674591541290283, - -1.2731932401657104, - -1.2838369607925415, - -1.2990998029708862, - -1.3185656070709229, - -1.3417032957077026, - -1.3678816556930542, - -1.3963868618011475, - -1.4264410734176636, - -1.457224726676941, - -1.4878979921340942, - -1.5176241397857666, - -1.5455924272537231, - -1.5710399150848389, - -1.5932725667953491, - -1.61168372631073, - -1.6257712841033936, - -1.6351510286331177, - -1.6395670175552368, - -1.2667909860610962, - -1.2658519744873047, - -1.2700228691101074, - -1.2791898250579834, - -1.2931026220321655, - -1.3113819360733032, - -1.3335291147232056, - -1.3589400053024292, - -1.3869215250015259, - -1.416710376739502, - -1.4474939107894897, - -1.4784326553344727, - -1.5086824893951416, - -1.5374183654785156, - -1.5638562440872192, - -1.5872752666473389, - -1.6070365905761719, - -1.6226009130477905, - -1.6335439682006836, - -1.6395670175552368, - -1.2667909860610962, - -1.2646220922470093, - -1.2675966024398804, - -1.2756333351135254, - -1.2885130643844604, - -1.3058843612670898, - -1.3272736072540283, - -1.3520971536636353, - -1.3796778917312622, - -1.4092636108398438, - -1.440047264099121, - -1.471189022064209, - -1.5018396377563477, - -1.5311627388000488, - -1.5583587884902954, - -1.5826858282089233, - -1.6034801006317139, - -1.6201746463775635, - -1.6323140859603882, - -1.6395670175552368 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.3337763547897339, - 0.27241459488868713, - 0.21225206553936005, - 0.15492986142635345, - 0.1020115464925766, - 0.054940611124038696, - 0.015001088380813599, - -0.016717731952667236, - -0.0393504798412323, - -0.05227985978126526, - -0.055153220891952515, - -0.04789212346076965, - -0.030694663524627686, - -0.0040299296379089355, - 0.03137469291687012, - 0.07455350458621979, - 0.12432871758937836, - 0.17934252321720123, - 0.23809432983398438, - 0.29898151755332947, - 0.3337763547897339, - 0.27572646737098694, - 0.21878550946712494, - 0.16450664401054382, - 0.1143704205751419, - 0.06974449753761292, - 0.03184610605239868, - 0.0017090439796447754, - -0.019844651222229004, - -0.03222706913948059, - -0.03510043025016785, - -0.028386294841766357, - -0.012267887592315674, - 0.012815117835998535, - 0.046178579330444336, - 0.08691240847110748, - 0.13390550017356873, - 0.18587596714496613, - 0.24140620231628418, - 0.29898151755332947, - 0.3337763547897339, - 0.2853032648563385, - 0.23767784237861633, - 0.19219917058944702, - 0.15010781586170197, - 0.11255189776420593, - 0.08055585622787476, - 0.0549924373626709, - 0.036558955907821655, - 0.025758296251296997, - 0.02288493514060974, - 0.028017312288284302, - 0.04101550579071045, - 0.06152486801147461, - 0.08898597955703735, - 0.12264978885650635, - 0.16159804165363312, - 0.20476830005645752, - 0.25098299980163574, - 0.29898151755332947, - 0.3337763547897339, - 0.3001071512699127, - 0.2668817937374115, - 0.23500660061836243, - 0.20535102486610413, - 0.1787239909172058, - 0.1558518409729004, - 0.13735844194889069, - 0.12374825775623322, - 0.11539255082607269, - 0.11251921951770782, - 0.11520664393901825, - 0.12338151037693024, - 0.13682086765766144, - 0.15515808761119843, - 0.1778929978609085, - 0.20440545678138733, - 0.23397225141525269, - 0.26578688621520996, - 0.29898151755332947, - 0.3337763249874115, - 0.31853389739990234, - 0.3032326400279999, - 0.28829002380371094, - 0.27411356568336487, - 0.2610900104045868, - 0.24957460165023804, - 0.23988142609596252, - 0.2322748899459839, - 0.22696250677108765, - 0.22408917546272278, - 0.22373327612876892, - 0.22590449452400208, - 0.23054362833499908, - 0.2375241070985794, - 0.24665555357933044, - 0.25768887996673584, - 0.27032309770584106, - 0.2842136025428772, - 0.29898151755332947, - 0.3337763249874115, - 0.338586688041687, - 0.34279125928878784, - 0.34627535939216614, - 0.3489439785480499, - 0.3507242798805237, - 0.3515677750110626, - 0.35145139694213867, - 0.3503783047199249, - 0.3483778238296509, - 0.345504492521286, - 0.34183669090270996, - 0.3374744653701782, - 0.33253681659698486, - 0.3271583914756775, - 0.3214859664440155, - 0.31567421555519104, - 0.30988168716430664, - 0.30426639318466187, - 0.29898151755332947, - 0.3337763249874115, - 0.3580924868583679, - 0.38127076625823975, - 0.4026789963245392, - 0.42173320055007935, - 0.43791356682777405, - 0.4507788419723511, - 0.45997801423072815, - 0.4652601480484009, - 0.46648120880126953, - 0.46360787749290466, - 0.4567185640335083, - 0.4460010826587677, - 0.4317478835582733, - 0.41434770822525024, - 0.3942751884460449, - 0.3720778822898865, - 0.34836122393608093, - 0.3237721920013428, - 0.2989814877510071, - 0.3337763249874115, - 0.3749375343322754, - 0.4145013988018036, - 0.45138877630233765, - 0.48459339141845703, - 0.5132095813751221, - 0.5364567637443542, - 0.5537007451057434, - 0.5644712448120117, - 0.5684744119644165, - 0.5656010508537292, - 0.5559296607971191, - 0.539723813533783, - 0.5174257755279541, - 0.48964372277259827, - 0.457135409116745, - 0.42078763246536255, - 0.3815918564796448, - 0.34061726927757263, - 0.2989814877510071, - 0.3337763249874115, - 0.3872964084148407, - 0.438882052898407, - 0.4871261715888977, - 0.5307127237319946, - 0.568452775478363, - 0.5993169546127319, - 0.6224633455276489, - 0.6372604966163635, - 0.6433048248291016, - 0.6404315233230591, - 0.6287188529968262, - 0.6084864139556885, - 0.5802860260009766, - 0.5448869466781616, - 0.5032547116279602, - 0.4565250277519226, - 0.40597254037857056, - 0.35297614336013794, - 0.2989814877510071, - 0.3337763249874115, - 0.393829882144928, - 0.45177075266838074, - 0.5060185194015503, - 0.5550934076309204, - 0.5976567268371582, - 0.6325475573539734, - 0.6588141918182373, - 0.6757400631904602, - 0.6828634738922119, - 0.6799900531768799, - 0.6671984195709229, - 0.6448372602462769, - 0.6135165691375732, - 0.5740908980369568, - 0.527635395526886, - 0.4754173457622528, - 0.4188612103462219, - 0.35950958728790283, - 0.2989814877510071, - 0.3337763249874115, - 0.393829882144928, - 0.45177075266838074, - 0.5060185194015503, - 0.5550934076309204, - 0.5976567268371582, - 0.6325475573539734, - 0.6588141918182373, - 0.6757400631904602, - 0.6828634738922119, - 0.6799900531768799, - 0.6671984195709229, - 0.6448372602462769, - 0.6135165691375732, - 0.5740908980369568, - 0.527635395526886, - 0.4754173457622528, - 0.4188612103462219, - 0.35950958728790283, - 0.2989814877510071, - 0.3337763249874115, - 0.3872964084148407, - 0.438882052898407, - 0.4871261715888977, - 0.5307127237319946, - 0.568452775478363, - 0.5993169546127319, - 0.6224633455276489, - 0.6372604966163635, - 0.6433048248291016, - 0.6404315233230591, - 0.6287188529968262, - 0.6084864139556885, - 0.5802860260009766, - 0.5448869466781616, - 0.5032547116279602, - 0.4565250277519226, - 0.40597254037857056, - 0.35297614336013794, - 0.2989814877510071, - 0.3337763249874115, - 0.3749375343322754, - 0.414501428604126, - 0.45138877630233765, - 0.4845934212207794, - 0.5132095813751221, - 0.5364567637443542, - 0.5537008047103882, - 0.5644712448120117, - 0.5684744119644165, - 0.565601110458374, - 0.5559296607971191, - 0.5397238731384277, - 0.5174257755279541, - 0.48964375257492065, - 0.4571354389190674, - 0.42078763246536255, - 0.3815918564796448, - 0.34061726927757263, - 0.2989814877510071, - 0.3337763249874115, - 0.35809245705604553, - 0.38127076625823975, - 0.4026789665222168, - 0.42173317074775696, - 0.43791353702545166, - 0.4507787823677063, - 0.45997798442840576, - 0.4652600884437561, - 0.46648114919662476, - 0.4636078476905823, - 0.4567185044288635, - 0.4460010528564453, - 0.43174782395362854, - 0.41434764862060547, - 0.39427515864372253, - 0.3720778524875641, - 0.34836122393608093, - 0.3237721920013428, - 0.2989814877510071, - 0.3337763249874115, - 0.338586688041687, - 0.34279125928878784, - 0.34627535939216614, - 0.3489439785480499, - 0.35072430968284607, - 0.351567804813385, - 0.35145139694213867, - 0.3503783345222473, - 0.34837785363197327, - 0.3455045223236084, - 0.34183672070503235, - 0.3374744951725006, - 0.33253681659698486, - 0.3271584212779999, - 0.3214859664440155, - 0.31567421555519104, - 0.30988171696662903, - 0.30426639318466187, - 0.29898151755332947, - 0.3337763249874115, - 0.31853389739990234, - 0.30323269963264465, - 0.2882900834083557, - 0.27411362528800964, - 0.26109009981155396, - 0.2495746910572052, - 0.23988153040409088, - 0.23227500915527344, - 0.2269626259803772, - 0.22408929467201233, - 0.22373338043689728, - 0.22590461373329163, - 0.23054373264312744, - 0.23752418160438538, - 0.24665561318397522, - 0.2576889395713806, - 0.27032315731048584, - 0.2842136323451996, - 0.29898151755332947, - 0.3337763547897339, - 0.3001071512699127, - 0.2668817937374115, - 0.23500660061836243, - 0.20535102486610413, - 0.1787240207195282, - 0.15585187077522278, - 0.13735847175121307, - 0.1237482875585556, - 0.11539258062839508, - 0.11251924932003021, - 0.11520667374134064, - 0.12338154017925262, - 0.13682089745998383, - 0.15515810251235962, - 0.1778930127620697, - 0.20440547168254852, - 0.23397225141525269, - 0.26578688621520996, - 0.29898151755332947, - 0.3337763547897339, - 0.2853032648563385, - 0.23767782747745514, - 0.19219917058944702, - 0.15010778605937958, - 0.11255186796188354, - 0.08055584132671356, - 0.05499240756034851, - 0.03655892610549927, - 0.02575823664665222, - 0.022884875535964966, - 0.028017282485961914, - 0.04101547598838806, - 0.06152483820915222, - 0.08898593485355377, - 0.12264977395534515, - 0.16159802675247192, - 0.20476828515529633, - 0.25098299980163574, - 0.29898151755332947, - 0.3337763547897339, - 0.27572646737098694, - 0.21878549456596375, - 0.16450661420822144, - 0.11437039077281952, - 0.06974443793296814, - 0.031846076250076294, - 0.001708984375, - -0.01984471082687378, - -0.032227128744125366, - -0.03510048985481262, - -0.028386354446411133, - -0.01226794719696045, - 0.01281505823135376, - 0.04617851972579956, - 0.0869123637676239, - 0.13390547037124634, - 0.18587593734264374, - 0.24140620231628418, - 0.29898151755332947, - 0.3337763547897339, - 0.27241459488868713, - 0.21225206553936005, - 0.15492986142635345, - 0.1020115464925766, - 0.054940611124038696, - 0.015001088380813599, - -0.016717731952667236, - -0.0393504798412323, - -0.05227985978126526, - -0.055153220891952515, - -0.04789212346076965, - -0.030694663524627686, - -0.0040299296379089355, - 0.03137469291687012, - 0.07455350458621979, - 0.12432871758937836, - 0.17934252321720123, - 0.23809432983398438, - 0.29898151755332947 - ], - "y": [ - 0.5138880610466003, - 0.513703465461731, - 0.513824462890625, - 0.514247715473175, - 0.5149617195129395, - 0.5159469842910767, - 0.517176628112793, - 0.5186171531677246, - 0.5202292203903198, - 0.5219689011573792, - 0.5237886905670166, - 0.5256389379501343, - 0.5274692177772522, - 0.5292296409606934, - 0.530872106552124, - 0.5323517918586731, - 0.5336284637451172, - 0.5346671938896179, - 0.535439670085907, - 0.5359248518943787, - 0.5138880610466003, - 0.53361976146698, - 0.5531136989593506, - 0.5718382596969604, - 0.5892826914787292, - 0.6049710512161255, - 0.6184754371643066, - 0.6294276118278503, - 0.6375285983085632, - 0.6425576210021973, - 0.6443773508071899, - 0.6429383158683777, - 0.6382796764373779, - 0.630528450012207, - 0.6198961734771729, - 0.6066727638244629, - 0.5912190675735474, - 0.5739564895629883, - 0.555355966091156, - 0.5359248518943787, - 0.5138880610466003, - 0.5514140725135803, - 0.58821702003479, - 0.6232929825782776, - 0.6556852459907532, - 0.6845101714134216, - 0.7089815735816956, - 0.7284318804740906, - 0.7423305511474609, - 0.7502984404563904, - 0.7521182298660278, - 0.7477402687072754, - 0.7372839450836182, - 0.721034586429596, - 0.699435293674469, - 0.6730753183364868, - 0.6426737308502197, - 0.609059751033783, - 0.5731502771377563, - 0.5359248518943787, - 0.5138880610466003, - 0.5651581287384033, - 0.6153302788734436, - 0.6630358695983887, - 0.706973671913147, - 0.7459450960159302, - 0.7788872718811035, - 0.8049014210700989, - 0.8232780694961548, - 0.8335158824920654, - 0.8353356719017029, - 0.8286877870559692, - 0.8137534856796265, - 0.7909402251243591, - 0.7608702182769775, - 0.7243638038635254, - 0.6824166178703308, - 0.6361730098724365, - 0.5868943333625793, - 0.5359248518943787, - 0.5138880610466003, - 0.5733625888824463, - 0.631515383720398, - 0.6867601871490479, - 0.7375900149345398, - 0.7826184034347534, - 0.8206170797348022, - 0.8505495190620422, - 0.8715992569923401, - 0.8831921815872192, - 0.8850119709968567, - 0.8770089745521545, - 0.8594015836715698, - 0.8326700925827026, - 0.7975435256958008, - 0.7549801468849182, - 0.70614093542099, - 0.6523581743240356, - 0.5950988531112671, - 0.5359248518943787, - 0.5138880610466003, - 0.5751383900642395, - 0.6350184679031372, - 0.691895067691803, - 0.7442165613174438, - 0.7905558347702026, - 0.8296489715576172, - 0.8604295253753662, - 0.8820578455924988, - 0.8939440250396729, - 0.8957637548446655, - 0.8874675631523132, - 0.8692815899848938, - 0.8417019844055176, - 0.8054810166358948, - 0.7616066932678223, - 0.7112758159637451, - 0.6558612585067749, - 0.5968745946884155, - 0.5359247922897339, - 0.5138880610466003, - 0.5702930092811584, - 0.6254599094390869, - 0.6778839826583862, - 0.72613525390625, - 0.7688974738121033, - 0.8050042390823364, - 0.8334707617759705, - 0.853520393371582, - 0.8646062612533569, - 0.8664261102676392, - 0.8589301109313965, - 0.842322826385498, - 0.8170572519302368, - 0.7838226556777954, - 0.7435253858566284, - 0.6972647309303284, - 0.6463026404380798, - 0.5920292139053345, - 0.5359248518943787, - 0.5138880610466003, - 0.5593515634536743, - 0.6038755178451538, - 0.6462453007698059, - 0.6853054165840149, - 0.7199901342391968, - 0.7493535280227661, - 0.7725946307182312, - 0.7890794277191162, - 0.7983582615852356, - 0.800178050994873, - 0.7944891452789307, - 0.7814466953277588, - 0.7614065408706665, - 0.7349152565002441, - 0.7026954889297485, - 0.665626049041748, - 0.6247182488441467, - 0.5810877680778503, - 0.5359248518943787, - 0.5138880610466003, - 0.5434997081756592, - 0.572604238986969, - 0.600407600402832, - 0.6261515617370605, - 0.6491338014602661, - 0.6687273979187012, - 0.6843980550765991, - 0.6957181096076965, - 0.7023788690567017, - 0.7041986584663391, - 0.701127827167511, - 0.6932500600814819, - 0.6807804107666016, - 0.6640589237213135, - 0.643541693687439, - 0.619788408279419, - 0.5934469699859619, - 0.5652359127998352, - 0.5359248518943787, - 0.5138880610466003, - 0.5244553089141846, - 0.5350348353385925, - 0.5453380942344666, - 0.5550840497016907, - 0.5640068054199219, - 0.571863055229187, - 0.578438401222229, - 0.5835535526275635, - 0.5870689749717712, - 0.5888887643814087, - 0.5889632701873779, - 0.5872904658317566, - 0.5839160084724426, - 0.5789319276809692, - 0.5724741816520691, - 0.5647188425064087, - 0.5558776259422302, - 0.5461915135383606, - 0.5359248518943787, - 0.5138880610466003, - 0.5042820572853088, - 0.4952385723590851, - 0.4870043992996216, - 0.47980406880378723, - 0.4738340377807617, - 0.469257116317749, - 0.4661981463432312, - 0.4647406041622162, - 0.4649242162704468, - 0.46674400568008423, - 0.47015029191970825, - 0.4750502109527588, - 0.48131006956100464, - 0.4887591004371643, - 0.49719417095184326, - 0.5063851475715637, - 0.5160813331604004, - 0.5260182619094849, - 0.5359248518943787, - 0.5138880610466003, - 0.4851660132408142, - 0.4575279951095581, - 0.4317278563976288, - 0.40846937894821167, - 0.3883870244026184, - 0.37202855944633484, - 0.3598402142524719, - 0.3521544337272644, - 0.3491808772087097, - 0.35100066661834717, - 0.35756415128707886, - 0.3686922788619995, - 0.38408154249191284, - 0.403312087059021, - 0.4258594810962677, - 0.4511086344718933, - 0.478370726108551, - 0.5069022178649902, - 0.5359248518943787, - 0.5138880610466003, - 0.4691787660121918, - 0.42598956823349, - 0.385498583316803, - 0.34881025552749634, - 0.31692537665367126, - 0.29071366786956787, - 0.27089011669158936, - 0.25799548625946045, - 0.2523815333843231, - 0.25420132279396057, - 0.2634052038192749, - 0.27974218130111694, - 0.3027666211128235, - 0.33185040950775146, - 0.36620032787323, - 0.4048793315887451, - 0.4468323290348053, - 0.4909150004386902, - 0.5359248518943787, - 0.5138880610466003, - 0.45805275440216064, - 0.40404099225997925, - 0.3533261716365814, - 0.30729156732559204, - 0.2671929597854614, - 0.2341240644454956, - 0.20898696780204773, - 0.1924673616886139, - 0.18501582741737366, - 0.1868356168270111, - 0.19787707924842834, - 0.21783903241157532, - 0.24617698788642883, - 0.282118022441864, - 0.3246816396713257, - 0.37270691990852356, - 0.42488375306129456, - 0.47978895902633667, - 0.5359248518943787, - 0.5138881206512451, - 0.45299363136291504, - 0.39406079053878784, - 0.33869707584381104, - 0.2884126305580139, - 0.24457916617393494, - 0.20839229226112366, - 0.18083906173706055, - 0.16267108917236328, - 0.15438401699066162, - 0.15620380640029907, - 0.16808080673217773, - 0.18969112634658813, - 0.22044524550437927, - 0.2595042586326599, - 0.30580270290374756, - 0.3580778241157532, - 0.41490352153778076, - 0.47472986578941345, - 0.5359248518943787, - 0.5138880610466003, - 0.4545496702194214, - 0.3971303701400757, - 0.3431965112686157, - 0.2942191958427429, - 0.25153446197509766, - 0.21630659699440002, - 0.1894964873790741, - 0.1718355119228363, - 0.16380542516708374, - 0.1656252145767212, - 0.17724522948265076, - 0.19834855198860168, - 0.22835952043533325, - 0.26645955443382263, - 0.31160926818847656, - 0.36257725954055786, - 0.417973130941391, - 0.4762858748435974, - 0.5359248518943787, - 0.5138880610466003, - 0.4625522196292877, - 0.41291722655296326, - 0.36633700132369995, - 0.32408207654953003, - 0.28730523586273193, - 0.25700944662094116, - 0.23402121663093567, - 0.21896755695343018, - 0.2122591733932495, - 0.21407896280288696, - 0.22437727451324463, - 0.24287328124046326, - 0.2690623998641968, - 0.30223026871681213, - 0.34147220849990845, - 0.3857177495956421, - 0.4337599575519562, - 0.48428842425346375, - 0.5359248518943787, - 0.5138880610466003, - 0.4761340916156769, - 0.43971049785614014, - 0.4056108295917511, - 0.37476521730422974, - 0.34801506996154785, - 0.32609009742736816, - 0.3095882534980774, - 0.29895976185798645, - 0.29449450969696045, - 0.2963142991065979, - 0.3043694794178009, - 0.318440318107605, - 0.3381430208683014, - 0.36294013261795044, - 0.39215531945228577, - 0.42499157786369324, - 0.46055325865745544, - 0.4978703260421753, - 0.5359248518943787, - 0.5138880610466003, - 0.49382349848747253, - 0.47460678219795227, - 0.4567621350288391, - 0.4407762587070465, - 0.4270852208137512, - 0.41606253385543823, - 0.40800878405570984, - 0.4031437337398529, - 0.4016000032424927, - 0.4034197926521301, - 0.40855342149734497, - 0.4168608486652374, - 0.42811548709869385, - 0.4420103132724762, - 0.45816636085510254, - 0.47614288330078125, - 0.4954495429992676, - 0.515559732913971, - 0.5359248518943787, - 0.5138880610466003, - 0.513703465461731, - 0.513824462890625, - 0.514247715473175, - 0.5149617791175842, - 0.5159470438957214, - 0.5171766877174377, - 0.5186172127723694, - 0.5202292799949646, - 0.5219689607620239, - 0.5237887501716614, - 0.525638997554779, - 0.527469277381897, - 0.5292297005653381, - 0.530872106552124, - 0.5323518514633179, - 0.5336284637451172, - 0.5346671938896179, - 0.535439670085907, - 0.5359248518943787 - ], - "z": [ - -1.5892294645309448, - -1.5861009359359741, - -1.5881510972976685, - -1.5953240394592285, - -1.6074241399765015, - -1.6241213083267212, - -1.6449601650238037, - -1.6693720817565918, - -1.6966913938522339, - -1.726172924041748, - -1.7570122480392456, - -1.7883683443069458, - -1.8193857669830322, - -1.849218487739563, - -1.877052903175354, - -1.9021295309066772, - -1.9237644672393799, - -1.9413676261901855, - -1.9544587135314941, - -1.962680697441101, - -1.5892294645309448, - -1.58523428440094, - -1.5864413976669312, - -1.592818021774292, - -1.6041901111602783, - -1.620247483253479, - -1.640552043914795, - -1.6645501852035522, - -1.691587209701538, - -1.7209254503250122, - -1.7517647743225098, - -1.7832640409469604, - -1.8145638704299927, - -1.8448104858398438, - -1.8731789588928223, - -1.898895502090454, - -1.9212584495544434, - -1.9396579265594482, - -1.95359206199646, - -1.962680697441101, - -1.5892294645309448, - -1.5850765705108643, - -1.5861302614212036, - -1.5923618078231812, - -1.6036014556884766, - -1.6195423603057861, - -1.6397497653961182, - -1.6636725664138794, - -1.6906582117080688, - -1.7199703454971313, - -1.7508097887039185, - -1.7823350429534912, - -1.8136862516403198, - -1.844008207321167, - -1.872473955154419, - -1.8983068466186523, - -1.920802354812622, - -1.9393467903137207, - -1.9534343481063843, - -1.962680697441101, - -1.5892294645309448, - -1.5856448411941528, - -1.5872513055801392, - -1.5940051078796387, - -1.6057220697402954, - -1.6220824718475342, - -1.642640233039856, - -1.6668343544006348, - -1.6940051317214966, - -1.723411202430725, - -1.7542505264282227, - -1.785681962966919, - -1.8168480396270752, - -1.8468986749649048, - -1.875014066696167, - -1.9004274606704712, - -1.9224456548690796, - -1.9404678344726562, - -1.9540026187896729, - -1.962680697441101, - -1.5892294645309448, - -1.586877465248108, - -1.5896830558776855, - -1.5975697040557861, - -1.610322117805481, - -1.6275925636291504, - -1.6489100456237793, - -1.6736929416656494, - -1.7012653350830078, - -1.730875015258789, - -1.7617143392562866, - -1.7929421663284302, - -1.8237066268920898, - -1.8531684875488281, - -1.8805241584777832, - -1.9050275087356567, - -1.9260101318359375, - -1.9428995847702026, - -1.955235242843628, - -1.962680697441101, - -1.5892294645309448, - -1.5886410474777222, - -1.5931620597839355, - -1.6026692390441895, - -1.6169030666351318, - -1.635475516319275, - -1.6578798294067383, - -1.6835050582885742, - -1.7116519212722778, - -1.7415529489517212, - -1.7723922729492188, - -1.8033287525177002, - -1.833518624305725, - -1.862138271331787, - -1.8884071111679077, - -1.9116085767745972, - -1.9311096668243408, - -1.9463785886764526, - -1.9569988250732422, - -1.962680697441101, - -1.5892294645309448, - -1.5907443761825562, - -1.59731125831604, - -1.6087511777877808, - -1.6247519254684448, - -1.6448770761489868, - -1.6685776710510254, - -1.6952073574066162, - -1.7240395545959473, - -1.754287838935852, - -1.7851272821426392, - -1.8157163858413696, - -1.8452210426330566, - -1.8728361129760742, - -1.8978086709976196, - -1.9194573163986206, - -1.9371917247772217, - -1.9505279064178467, - -1.9591021537780762, - -1.962680697441101, - -1.5892294645309448, - -1.5929594039916992, - -1.601681113243103, - -1.6151564121246338, - -1.6330180168151855, - -1.6547784805297852, - -1.6798442602157593, - -1.7075318098068237, - -1.7370857000350952, - -1.7676998376846313, - -1.7985392808914185, - -1.8287625312805176, - -1.8575453758239746, - -1.884102702140808, - -1.907710075378418, - -1.9277234077453613, - -1.9435969591140747, - -1.9548976421356201, - -1.9613173007965088, - -1.962680697441101, - -1.5892294645309448, - -1.5950464010238647, - -1.6057978868484497, - -1.6211909055709839, - -1.6408054828643799, - -1.6641066074371338, - -1.6904586553573608, - -1.7191427946090698, - -1.749376654624939, - -1.780335545539856, - -1.8111748695373535, - -1.8410534858703613, - -1.8691564798355103, - -1.8947170972824097, - -1.9170382022857666, - -1.9355109930038452, - -1.9496314525604248, - -1.9590145349502563, - -1.9634041786193848, - -1.962680697441101, - -1.5892294645309448, - -1.5967788696289062, - -1.6092157363891602, - -1.6262006759643555, - -1.647270679473877, - -1.6718508005142212, - -1.6992706060409546, - -1.7287821769714355, - -1.7595804929733276, - -1.7908254861831665, - -1.821664810180664, - -1.85125732421875, - -1.878795862197876, - -1.9035290479660034, - -1.924782395362854, - -1.9419760704040527, - -1.9546412229537964, - -1.9624322652816772, - -1.9651366472244263, - -1.962680697441101, - -1.5892294645309448, - -1.5979692935943604, - -1.611564040184021, - -1.6296429634094238, - -1.6517127752304077, - -1.6771717071533203, - -1.7053252458572388, - -1.7354053258895874, - -1.7665914297103882, - -1.7980329990386963, - -1.8288724422454834, - -1.8582682609558105, - -1.8854188919067383, - -1.9095836877822876, - -1.9301033020019531, - -1.946418285369873, - -1.9580833911895752, - -1.964780569076538, - -1.9663270711898804, - -1.962680697441101, - -1.5892294645309448, - -1.5984885692596436, - -1.6125884056091309, - -1.6311445236206055, - -1.6536506414413452, - -1.6794928312301636, - -1.7079663276672363, - -1.7382944822311401, - -1.769649863243103, - -1.8011771440505981, - -1.8320164680480957, - -1.8613266944885254, - -1.888308048248291, - -1.9122247695922852, - -1.9324244260787964, - -1.948356032371521, - -1.9595849514007568, - -1.965804934501648, - -1.9668463468551636, - -1.962680697441101, - -1.5892294645309448, - -1.598280429840088, - -1.612177848815918, - -1.6305426359176636, - -1.6528739929199219, - -1.6785626411437988, - -1.706907868385315, - -1.7371366024017334, - -1.768424153327942, - -1.7999171018600464, - -1.830756425857544, - -1.8601009845733643, - -1.8871501684188843, - -1.9111663103103638, - -1.9314942359924316, - -1.9475795030593872, - -1.9589831829071045, - -1.965394377708435, - -1.966638207435608, - -1.962680697441101, - -1.5892294645309448, - -1.597367525100708, - -1.6103768348693848, - -1.6279027462005615, - -1.6494672298431396, - -1.6744818687438965, - -1.702264428138733, - -1.7320570945739746, - -1.763047218322754, - -1.7943894863128662, - -1.8252288103103638, - -1.8547240495681763, - -1.882070779800415, - -1.9065228700637817, - -1.9274134635925293, - -1.9441726207733154, - -1.9563432931900024, - -1.9635934829711914, - -1.965725302696228, - -1.962680697441101, - -1.5892294645309448, - -1.5958486795425415, - -1.6073806285858154, - -1.6235108375549316, - -1.6437994241714478, - -1.66769278049469, - -1.6945393085479736, - -1.7236065864562988, - -1.7541017532348633, - -1.7851932048797607, - -1.8160325288772583, - -1.8457787036895752, - -1.8736201524734497, - -1.898797631263733, - -1.9206243753433228, - -1.9385048151016235, - -1.9519513845443726, - -1.9605971574783325, - -1.9642064571380615, - -1.962680697441101, - -1.5892294645309448, - -1.593888521194458, - -1.6035137176513672, - -1.6178427934646606, - -1.6364847421646118, - -1.658931016921997, - -1.6845694780349731, - -1.712700605392456, - -1.742557168006897, - -1.7733248472213745, - -1.804164171218872, - -1.8342341184616089, - -1.8627142906188965, - -1.888827919960022, - -1.9118626117706299, - -1.9311901330947876, - -1.9462833404541016, - -1.9567303657531738, - -1.962246298789978, - -1.962680697441101, - -1.5892294645309448, - -1.5916993618011475, - -1.5991953611373901, - -1.6115127801895142, - -1.6283159255981445, - -1.6491460800170898, - -1.6734353303909302, - -1.7005211114883423, - -1.7296644449234009, - -1.760070562362671, - -1.7909098863601685, - -1.8213412761688232, - -1.8505347967147827, - -1.877693772315979, - -1.9020776748657227, - -1.9230213165283203, - -1.939953327178955, - -1.9524118900299072, - -1.960057258605957, - -1.962680697441101, - -1.5892294645309448, - -1.589518666267395, - -1.5948933362960815, - -1.6052069664001465, - -1.6201781034469604, - -1.6393983364105225, - -1.6623436212539673, - -1.6883878707885742, - -1.7168207168579102, - -1.7468667030334473, - -1.7777060270309448, - -1.8084975481033325, - -1.8384015560150146, - -1.8666020631790161, - -1.8923299312591553, - -1.9148834943771362, - -1.9336473941802979, - -1.9481098651885986, - -1.957876443862915, - -1.962680697441101, - -1.5892294645309448, - -1.5875825881958008, - -1.591073989868164, - -1.5996084213256836, - -1.6129531860351562, - -1.630744218826294, - -1.6524962186813354, - -1.677615761756897, - -1.7054178714752197, - -1.735144019126892, - -1.7659833431243896, - -1.797094702720642, - -1.8276294469833374, - -1.8567545413970947, - -1.8836758136749268, - -1.907658576965332, - -1.9280489683151245, - -1.9442905187606812, - -1.9559403657913208, - -1.962680697441101, - -1.5892294645309448, - -1.5861009359359741, - -1.5881510972976685, - -1.5953240394592285, - -1.6074241399765015, - -1.6241213083267212, - -1.6449601650238037, - -1.6693720817565918, - -1.6966913938522339, - -1.726172924041748, - -1.7570122480392456, - -1.7883682250976562, - -1.8193857669830322, - -1.849218487739563, - -1.877052903175354, - -1.9021295309066772, - -1.9237644672393799, - -1.9413676261901855, - -1.9544587135314941, - -1.962680697441101 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.30366939306259155, - 0.37493762373924255, - 0.4437867999076843, - 0.5083388686180115, - 0.5668330192565918, - 0.6176736354827881, - 0.6594740152359009, - 0.691093921661377, - 0.7116708159446716, - 0.7206434011459351, - 0.7177670001983643, - 0.7031199932098389, - 0.6771019697189331, - 0.6404225826263428, - 0.5940824747085571, - 0.5393455028533936, - 0.47770482301712036, - 0.41084185242652893, - 0.34058043360710144, - 0.2688371241092682, - 0.30366939306259155, - 0.3717063069343567, - 0.4374122619628906, - 0.49899500608444214, - 0.5547747611999512, - 0.6032298803329468, - 0.6430387496948242, - 0.6731153726577759, - 0.6926394701004028, - 0.7010784149169922, - 0.6982020139694214, - 0.6840887069702148, - 0.659123420715332, - 0.6239873170852661, - 0.5796387195587158, - 0.5272872447967529, - 0.468360960483551, - 0.4044673442840576, - 0.3373491168022156, - 0.2688371241092682, - 0.30366939306259155, - 0.36107635498046875, - 0.4164423942565918, - 0.46825718879699707, - 0.5151073932647705, - 0.555715024471283, - 0.5889724493026733, - 0.613972544670105, - 0.6300332546234131, - 0.6367164850234985, - 0.6338400840759277, - 0.6214824318885803, - 0.5999805927276611, - 0.5699210166931152, - 0.5321238040924072, - 0.4876198470592499, - 0.43762314319610596, - 0.3834974467754364, - 0.32671919465065, - 0.2688371241092682, - 0.30366939306259155, - 0.3441997766494751, - 0.38314953446388245, - 0.41945621371269226, - 0.4521294832229614, - 0.48027804493904114, - 0.5031341314315796, - 0.5200743079185486, - 0.5306364297866821, - 0.534532368183136, - 0.5316559076309204, - 0.5220856070518494, - 0.5060823559761047, - 0.4840826988220215, - 0.4566868245601654, - 0.4246419370174408, - 0.38882216811180115, - 0.35020458698272705, - 0.309842586517334, - 0.2688371539115906, - 0.30366939306259155, - 0.3229053318500519, - 0.3411415219306946, - 0.35788047313690186, - 0.3726656436920166, - 0.38509368896484375, - 0.39482563734054565, - 0.4015960097312927, - 0.4052201509475708, - 0.4055991768836975, - 0.4027227461338043, - 0.39666932821273804, - 0.3876040577888489, - 0.37577420473098755, - 0.361502468585968, - 0.34517809748649597, - 0.32724642753601074, - 0.3081965744495392, - 0.28854814171791077, - 0.2688371539115906, - 0.30366939306259155, - 0.29950064420700073, - 0.2949705421924591, - 0.29020264744758606, - 0.2853270471096039, - 0.2804766893386841, - 0.275783896446228, - 0.27137669920921326, - 0.26737529039382935, - 0.2638888359069824, - 0.26101240515708923, - 0.2588244676589966, - 0.2573847472667694, - 0.2567324638366699, - 0.25688543915748596, - 0.25783950090408325, - 0.25956860184669495, - 0.2620255947113037, - 0.2651434540748596, - 0.2688371539115906, - 0.30366939306259155, - 0.2765219807624817, - 0.24963998794555664, - 0.22375670075416565, - 0.1995781660079956, - 0.1777639240026474, - 0.15890896320343018, - 0.14352762699127197, - 0.13203947246074677, - 0.12475788593292236, - 0.12188145518302917, - 0.123488649725914, - 0.12953567504882812, - 0.13985751569271088, - 0.15417265892028809, - 0.17209061980247498, - 0.19312265515327454, - 0.21669504046440125, - 0.24216479063034058, - 0.2688371539115906, - 0.30366942286491394, - 0.25645938515663147, - 0.21006208658218384, - 0.16574306786060333, - 0.12471123039722443, - 0.08808588981628418, - 0.05686599016189575, - 0.03190317749977112, - 0.013878405094146729, - 0.003283292055130005, - 0.0004068911075592041, - 0.005327582359313965, - 0.01791122555732727, - 0.037814557552337646, - 0.06449460983276367, - 0.0972236692905426, - 0.13510902225971222, - 0.17711713910102844, - 0.22210222482681274, - 0.2688371539115906, - 0.30366942286491394, - 0.24148701131343842, - 0.18052572011947632, - 0.12244841456413269, - 0.06883923709392548, - 0.021160602569580078, - -0.019287019968032837, - -0.05140030384063721, - -0.07430329918861389, - -0.08737123012542725, - -0.09024763107299805, - -0.08285412192344666, - -0.06539225578308105, - -0.03833848237991333, - -0.002430647611618042, - 0.041351690888404846, - 0.09181436896324158, - 0.14758078753948212, - 0.2071298360824585, - 0.2688371539115906, - 0.30366942286491394, - 0.23322731256484985, - 0.16423162817955017, - 0.09856438636779785, - 0.03801681101322174, - -0.015759557485580444, - -0.06129777431488037, - -0.09735575318336487, - -0.12294980883598328, - -0.137381911277771, - -0.1402583122253418, - -0.13150063157081604, - -0.11134770512580872, - -0.08034923672676086, - -0.039350807666778564, - 0.010529249906539917, - 0.06793034076690674, - 0.13128668069839478, - 0.19887013733386993, - 0.2688371539115906, - 0.30366942286491394, - 0.23257537186145782, - 0.16294553875923157, - 0.0966792106628418, - 0.0355839729309082, - -0.018673688173294067, - -0.0646136999130249, - -0.10098302364349365, - -0.12678951025009155, - -0.14132928848266602, - -0.14420568943023682, - -0.13534033298492432, - -0.1149749755859375, - -0.0836651623249054, - -0.04226493835449219, - 0.008096426725387573, - 0.06604516506195068, - 0.13000059127807617, - 0.1982181966304779, - 0.2688371539115906, - 0.30366942286491394, - 0.23960183560848236, - 0.17680679261684418, - 0.11699716746807098, - 0.061804383993148804, - 0.012734025716781616, - -0.02887547016143799, - -0.061889082193374634, - -0.08540627360343933, - -0.09878557920455933, - -0.10166198015213013, - -0.0939570963382721, - -0.07588103413581848, - -0.04792693257331848, - -0.010857224464416504, - 0.034316837787628174, - 0.08636312186717987, - 0.14386184513568878, - 0.20524466037750244, - 0.2688371539115906, - 0.30366942286491394, - 0.25354528427124023, - 0.20431330800056458, - 0.15731647610664368, - 0.11383667588233948, - 0.07505998015403748, - 0.04204407334327698, - 0.01568952202796936, - -0.0032846927642822266, - -0.01436111330986023, - -0.01723751425743103, - -0.01183551549911499, - 0.0016975700855255127, - 0.022992610931396484, - 0.051468685269355774, - 0.08634912967681885, - 0.12668243050575256, - 0.17136836051940918, - 0.21918809413909912, - 0.2688371539115906, - 0.30366939306259155, - 0.2728947103023529, - 0.24248439073562622, - 0.2132679671049118, - 0.1860423982143402, - 0.16155031323432922, - 0.1404598355293274, - 0.12334616482257843, - 0.11067621409893036, - 0.1027955561876297, - 0.09991912543773651, - 0.1021253913640976, - 0.10935421288013458, - 0.1214083880186081, - 0.1379590779542923, - 0.15855485200881958, - 0.1826339215040207, - 0.20953944325447083, - 0.2385375201702118, - 0.2688371539115906, - 0.30366939306259155, - 0.2955532670021057, - 0.2871834933757782, - 0.278788298368454, - 0.27059677243232727, - 0.26283228397369385, - 0.25570666790008545, - 0.24941428005695343, - 0.24412676692008972, - 0.23998835682868958, - 0.2371119260787964, - 0.23557595908641815, - 0.23542232811450958, - 0.23665523529052734, - 0.23924103379249573, - 0.24310922622680664, - 0.24815425276756287, - 0.2542385458946228, - 0.261196106672287, - 0.2688371539115906, - 0.30366939306259155, - 0.3190656304359436, - 0.333566814661026, - 0.34677743911743164, - 0.3583371043205261, - 0.36793050169944763, - 0.3752959370613098, - 0.380232572555542, - 0.3826056718826294, - 0.38235053420066833, - 0.37947410345077515, - 0.37405484914779663, - 0.36624062061309814, - 0.3562445342540741, - 0.3443392515182495, - 0.3308495581150055, - 0.3161433935165405, - 0.3006218671798706, - 0.2847084403038025, - 0.2688371539115906, - 0.30366939306259155, - 0.34088385105133057, - 0.37660813331604004, - 0.4098677635192871, - 0.43975549936294556, - 0.4654560983181, - 0.4862685203552246, - 0.5016250610351562, - 0.5111068487167358, - 0.5144551396369934, - 0.5115786790847778, - 0.5025559663772583, - 0.4876331090927124, - 0.4672170877456665, - 0.44186487793922424, - 0.4122679829597473, - 0.379233717918396, - 0.34366318583488464, - 0.30652666091918945, - 0.2688371539115906, - 0.30366939306259155, - 0.3586435317993164, - 0.4116430878639221, - 0.4612223505973816, - 0.5060288906097412, - 0.5448405146598816, - 0.5765985250473022, - 0.6004367470741272, - 0.6157048940658569, - 0.6219862699508667, - 0.6191098690032959, - 0.6071540117263794, - 0.5864447951316833, - 0.5575470924377441, - 0.5212492942810059, - 0.47854137420654297, - 0.4305883049964905, - 0.3786981701850891, - 0.3242863714694977, - 0.2688371241092682, - 0.30366939306259155, - 0.3704202175140381, - 0.4348751902580261, - 0.4952761232852936, - 0.5499755144119263, - 0.5974811911582947, - 0.6364973783493042, - 0.665959894657135, - 0.6850649118423462, - 0.693291425704956, - 0.6904150247573853, - 0.6765141487121582, - 0.6519679427146912, - 0.6174459457397461, - 0.573889970779419, - 0.5224879384040833, - 0.46464207768440247, - 0.4019302427768707, - 0.336063027381897, - 0.2688371241092682, - 0.30366939306259155, - 0.37493762373924255, - 0.4437867999076843, - 0.5083388686180115, - 0.5668330192565918, - 0.6176736354827881, - 0.6594740152359009, - 0.691093921661377, - 0.7116708159446716, - 0.7206434011459351, - 0.7177670001983643, - 0.7031199932098389, - 0.6771019697189331, - 0.6404225826263428, - 0.5940824747085571, - 0.5393455028533936, - 0.47770482301712036, - 0.41084185242652893, - 0.34058043360710144, - 0.2688371241092682 - ], - "y": [ - 0.5329558253288269, - 0.5315124988555908, - 0.5304093956947327, - 0.5296766757965088, - 0.5293342471122742, - 0.5293914675712585, - 0.5298467874526978, - 0.5306878089904785, - 0.5318915843963623, - 0.5334252715110779, - 0.5352469682693481, - 0.53730708360672, - 0.5395494103431702, - 0.5419127345085144, - 0.5443326234817505, - 0.5467430353164673, - 0.5490782856941223, - 0.5512745976448059, - 0.5532721281051636, - 0.5550163388252258, - 0.5329558253288269, - 0.5548799633979797, - 0.5765069723129272, - 0.5972468852996826, - 0.6165339350700378, - 0.6338421106338501, - 0.6486992835998535, - 0.6607000827789307, - 0.6695172786712646, - 0.674910306930542, - 0.6767320036888123, - 0.6749328374862671, - 0.6695616841316223, - 0.6607651710510254, - 0.648783266544342, - 0.6339427828788757, - 0.6166484951972961, - 0.5973721742630005, - 0.5766395926475525, - 0.5550163388252258, - 0.5329558253288269, - 0.57588791847229, - 0.6179498434066772, - 0.6579942107200623, - 0.694928765296936, - 0.7277458906173706, - 0.7555506229400635, - 0.777584433555603, - 0.7932462692260742, - 0.802108883857727, - 0.8039306402206421, - 0.7986617684364319, - 0.7864460349082947, - 0.7676165699958801, - 0.7426871061325073, - 0.7123375535011292, - 0.6773958206176758, - 0.6388150453567505, - 0.5976475477218628, - 0.555016279220581, - 0.5329558253288269, - 0.5922598242759705, - 0.6502470970153809, - 0.705335795879364, - 0.7560232877731323, - 0.800926923751831, - 0.8388220071792603, - 0.868674635887146, - 0.8896706104278564, - 0.9012372493743896, - 0.9030590057373047, - 0.8950861692428589, - 0.8775362372398376, - 0.8508879542350769, - 0.8158681392669678, - 0.7734321355819702, - 0.7247374057769775, - 0.6711122393608093, - 0.6140194535255432, - 0.555016279220581, - 0.5329558253288269, - 0.6022215485572815, - 0.6698987483978271, - 0.7341413497924805, - 0.7931970357894897, - 0.8454549312591553, - 0.889489471912384, - 0.9240996837615967, - 0.9483412504196167, - 0.9615530967712402, - 0.9633748531341553, - 0.9537568092346191, - 0.9329612255096436, - 0.9015554189682007, - 0.8603960871696472, - 0.8106058835983276, - 0.753542959690094, - 0.6907639503479004, - 0.6239811182022095, - 0.555016279220581, - 0.5329558253288269, - 0.6046935319900513, - 0.674775242805481, - 0.7412894368171692, - 0.8024216890335083, - 0.8565044403076172, - 0.9020625352859497, - 0.9378532767295837, - 0.9629003405570984, - 0.9765204787254333, - 0.9783422350883484, - 0.968315839767456, - 0.9467148780822754, - 0.9141285419464111, - 0.8714456558227539, - 0.8198305368423462, - 0.7606910467147827, - 0.6956404447555542, - 0.6264531016349792, - 0.555016279220581, - 0.5329558253288269, - 0.5994079113006592, - 0.6643482446670532, - 0.7260054349899292, - 0.7826975584030151, - 0.8328782320022583, - 0.8751786947250366, - 0.9084452390670776, - 0.9317701458930969, - 0.9445172548294067, - 0.9463390111923218, - 0.9371856451034546, - 0.9173067808151245, - 0.887244701385498, - 0.847819447517395, - 0.800106406211853, - 0.745406985282898, - 0.6852134466171265, - 0.6211675405502319, - 0.555016279220581, - 0.5329558253288269, - 0.5869374871253967, - 0.6397475600242615, - 0.6899455189704895, - 0.7361620664596558, - 0.7771365642547607, - 0.8117512464523315, - 0.8390620946884155, - 0.8583240509033203, - 0.869011640548706, - 0.8708333969116211, - 0.8637396097183228, - 0.847923755645752, - 0.823817253112793, - 0.7920777797698975, - 0.7535709142684937, - 0.709347128868103, - 0.6606127619743347, - 0.6086971163749695, - 0.555016279220581, - 0.5329558253288269, - 0.5686336159706116, - 0.6036391258239746, - 0.6370174288749695, - 0.6678581237792969, - 0.6953198313713074, - 0.7186535596847534, - 0.7372229099273682, - 0.750521183013916, - 0.7581856846809387, - 0.7600074410438538, - 0.7559366822242737, - 0.746084451675415, - 0.7307195663452148, - 0.7102609872817993, - 0.68526691198349, - 0.656419038772583, - 0.6245043277740479, - 0.5903932452201843, - 0.555016279220581, - 0.5329558253288269, - 0.5464798212051392, - 0.5599358081817627, - 0.5729567408561707, - 0.5851873755455017, - 0.5962941646575928, - 0.6059741377830505, - 0.61396324634552, - 0.6200435757637024, - 0.624049186706543, - 0.625870943069458, - 0.6254590749740601, - 0.6228248476982117, - 0.6180400848388672, - 0.6112353205680847, - 0.6025962233543396, - 0.5923583507537842, - 0.5808010101318359, - 0.5682394504547119, - 0.5550163388252258, - 0.5329558253288269, - 0.5228767991065979, - 0.5133735537528992, - 0.5047053694725037, - 0.4971086382865906, - 0.49079060554504395, - 0.4859235882759094, - 0.4826403856277466, - 0.48103052377700806, - 0.4811379313468933, - 0.48295968770980835, - 0.4864460527896881, - 0.49150195717811584, - 0.4979895353317261, - 0.5057317614555359, - 0.5145174264907837, - 0.5241069793701172, - 0.5342387557029724, - 0.5446364283561707, - 0.5550163388252258, - 0.5329558849334717, - 0.5003823041915894, - 0.46899813413619995, - 0.43965944647789, - 0.41316652297973633, - 0.3902420103549957, - 0.37151122093200684, - 0.3574851155281067, - 0.34854626655578613, - 0.3449385166168213, - 0.34676027297973633, - 0.3539618253707886, - 0.36634671688079834, - 0.3835771679878235, - 0.4051831364631653, - 0.43057531118392944, - 0.45906105637550354, - 0.4898633062839508, - 0.5221418738365173, - 0.5550163388252258, - 0.5329558849334717, - 0.4814339280128479, - 0.43161827325820923, - 0.38486772775650024, - 0.34245750308036804, - 0.3055444359779358, - 0.27513545751571655, - 0.2520599663257599, - 0.23694753646850586, - 0.2302103042602539, - 0.23203206062316895, - 0.24236303567886353, - 0.26092156767845154, - 0.2872013747692108, - 0.32048553228378296, - 0.35986629128456116, - 0.40426933765411377, - 0.4524834454059601, - 0.5031935572624207, - 0.5550163388252258, - 0.5329558849334717, - 0.46808505058288574, - 0.4052846431732178, - 0.3462676405906677, - 0.2926439046859741, - 0.24587610363960266, - 0.20723998546600342, - 0.1777893602848053, - 0.15832772850990295, - 0.14938578009605408, - 0.15120753645896912, - 0.16374322772026062, - 0.18665096163749695, - 0.21930590271949768, - 0.2608172297477722, - 0.31005269289016724, - 0.36566925048828125, - 0.426149845123291, - 0.4898446500301361, - 0.5550163388252258, - 0.5329558849334717, - 0.4617822766304016, - 0.39285099506378174, - 0.32804226875305176, - 0.26912394165992737, - 0.21770316362380981, - 0.1751824915409088, - 0.14272183179855347, - 0.12120664119720459, - 0.11122369766235352, - 0.11304545402526855, - 0.12662214040756226, - 0.15158343315124512, - 0.18724840879440308, - 0.23264425992965698, - 0.2865327000617981, - 0.3474438786506653, - 0.4137161672115326, - 0.483541876077652, - 0.5550163388252258, - 0.5329558849334717, - 0.46320852637290955, - 0.3956645727157593, - 0.33216649293899536, - 0.2744462788105011, - 0.22407838702201843, - 0.1824367642402649, - 0.15065723657608032, - 0.1296067237854004, - 0.11985939741134644, - 0.12168115377426147, - 0.13502222299575806, - 0.15951883792877197, - 0.19450268149375916, - 0.2390194833278656, - 0.2918550372123718, - 0.3515681028366089, - 0.4165297746658325, - 0.4849681258201599, - 0.5550163388252258, - 0.5329558849334717, - 0.47220930457115173, - 0.4134206175804138, - 0.35819342732429504, - 0.30803418159484863, - 0.2643111050128937, - 0.22821679711341858, - 0.20073586702346802, - 0.1826179325580597, - 0.1743571162223816, - 0.17617887258529663, - 0.18803343176841736, - 0.20959746837615967, - 0.24028271436691284, - 0.27925220131874084, - 0.32544299960136414, - 0.37759503722190857, - 0.4342857897281647, - 0.4939689040184021, - 0.5550163388252258, - 0.5329558849334717, - 0.4878092110157013, - 0.4441949129104614, - 0.4033026695251465, - 0.36624789237976074, - 0.33404141664505005, - 0.30756160616874695, - 0.2875308394432068, - 0.27449554204940796, - 0.2688111960887909, - 0.27063295245170593, - 0.2799110412597656, - 0.29639244079589844, - 0.3196275234222412, - 0.3489825129508972, - 0.38365671038627625, - 0.42270427942276, - 0.46506011486053467, - 0.5095688104629517, - 0.5550163388252258, - 0.5329558253288269, - 0.508317768573761, - 0.48465263843536377, - 0.46260595321655273, - 0.4427791237831116, - 0.4257129430770874, - 0.411872923374176, - 0.40163663029670715, - 0.3952832818031311, - 0.39298611879348755, - 0.3948078751564026, - 0.40069878101348877, - 0.4104982316493988, - 0.4239388704299927, - 0.44065406918525696, - 0.4601879119873047, - 0.48200756311416626, - 0.5055177807807922, - 0.530077338218689, - 0.5550163388252258, - 0.5329558253288269, - 0.5315124988555908, - 0.5304094552993774, - 0.5296766757965088, - 0.529334306716919, - 0.5293915271759033, - 0.5298468470573425, - 0.5306878685951233, - 0.5318916440010071, - 0.5334253311157227, - 0.5352470874786377, - 0.5373072028160095, - 0.5395494699478149, - 0.5419127941131592, - 0.5443326830863953, - 0.5467430949211121, - 0.5490782856941223, - 0.5512745976448059, - 0.5532721281051636, - 0.5550163388252258 - ], - "z": [ - -1.9123659133911133, - -1.9216716289520264, - -1.9358223676681519, - -1.9544322490692139, - -1.976993441581726, - -2.0028905868530273, - -2.0314173698425293, - -2.061795711517334, - -2.0931966304779053, - -2.1247639656066895, - -2.1556365489959717, - -2.184972047805786, - -2.211970567703247, - -2.2358953952789307, - -2.256094217300415, - -2.2720158100128174, - -2.2832260131835938, - -2.289418935775757, - -2.2904255390167236, - -2.2862186431884766, - -1.9123659133911133, - -1.9199917316436768, - -1.9325083494186401, - -1.94957435131073, - -1.97072434425354, - -1.9953813552856445, - -2.0228726863861084, - -2.0524487495422363, - -2.0833024978637695, - -2.1145923137664795, - -2.1454648971557617, - -2.1750779151916504, - -2.2026236057281494, - -2.227350950241089, - -2.2485849857330322, - -2.265746831893921, - -2.2783679962158203, - -2.286104679107666, - -2.288745641708374, - -2.2862186431884766, - -1.9123659133911133, - -1.9177615642547607, - -1.928109049797058, - -1.9431259632110596, - -1.962402582168579, - -1.9854131937026978, - -2.0115301609039307, - -2.040041208267212, - -2.0701682567596436, - -2.1010897159576416, - -2.131962299346924, - -2.1619436740875244, - -2.190216064453125, - -2.216008424758911, - -2.238616943359375, - -2.257424831390381, - -2.2719197273254395, - -2.281705379486084, - -2.286515474319458, - -2.2862186431884766, - -1.9123659133911133, - -1.9152231216430664, - -1.9231013059616089, - -1.9357855319976807, - -1.9529297351837158, - -1.9740663766860962, - -1.9986188411712646, - -2.0259175300598145, - -2.0552175045013428, - -2.0857198238372803, - -2.1165921688079834, - -2.1469929218292236, - -2.1760923862457275, - -2.203096866607666, - -2.2272698879241943, - -2.2479522228240967, - -2.2645792961120605, - -2.2766976356506348, - -2.2839770317077637, - -2.2862186431884766, - -1.9123659133911133, - -1.9126513004302979, - -1.9180277585983276, - -1.9283486604690552, - -1.9433324337005615, - -1.9625704288482666, - -1.9855377674102783, - -2.011608123779297, - -2.0400702953338623, - -2.070147752761841, - -2.101020336151123, - -2.131845712661743, - -2.16178297996521, - -2.190016031265259, - -2.2157740592956543, - -2.2383549213409424, - -2.2571423053741455, - -2.2716240882873535, - -2.281405210494995, - -2.2862186431884766, - -1.9123659133911133, - -1.9103248119354248, - -1.9134382009506226, - -1.9216212034225464, - -1.9346506595611572, - -1.9521710872650146, - -1.9737046957015991, - -1.9986639022827148, - -2.0263679027557373, - -2.056061267852783, - -2.0869338512420654, - -2.118143320083618, - -2.148838758468628, - -2.17818284034729, - -2.2053747177124023, - -2.229673147201538, - -2.2504148483276367, - -2.2670345306396484, - -2.279078722000122, - -2.2862186431884766, - -1.9123659133911133, - -1.9084956645965576, - -1.9098299741744995, - -1.9163322448730469, - -1.9278252124786377, - -1.943995475769043, - -1.9644017219543457, - -1.9884873628616333, - -2.0155954360961914, - -2.0449867248535156, - -2.075859308242798, - -2.1073710918426514, - -2.138662338256836, - -2.168879747390747, - -2.1971991062164307, - -2.2228477001190186, - -2.2451260089874268, - -2.2634263038635254, - -2.277249574661255, - -2.2862186431884766, - -1.9123659133911133, - -1.9073623418807983, - -1.907594084739685, - -1.9130549430847168, - -1.923595905303955, - -1.9389293193817139, - -1.958636999130249, - -1.982181429862976, - -2.008920431137085, - -2.0381243228912354, - -2.0689969062805176, - -2.100695848464966, - -2.1323564052581787, - -2.1631150245666504, - -2.1921329498291016, - -2.218618154525757, - -2.2418487071990967, - -2.26119065284729, - -2.276116371154785, - -2.2862186431884766, - -1.9123659133911133, - -1.9070473909378052, - -1.906972885131836, - -1.912144422531128, - -1.9224207401275635, - -1.9375216960906982, - -1.9570353031158447, - -1.9804292917251587, - -2.007065534591675, - -2.03621768951416, - -2.0670902729034424, - -2.0988411903381348, - -2.1306042671203613, - -2.161513328552246, - -2.190725326538086, - -2.2174429893493652, - -2.240938186645508, - -2.2605693340301514, - -2.275801420211792, - -2.2862186431884766, - -1.9123659133911133, - -1.9075851440429688, - -1.9080336093902588, - -1.9136991500854492, - -1.9244272708892822, - -1.939925193786621, - -1.9597702026367188, - -1.983420968055725, - -2.010232448577881, - -2.039473295211792, - -2.070345878601074, - -2.1020078659057617, - -2.1335959434509277, - -2.16424822807312, - -2.193128824234009, - -2.219449520111084, - -2.242492914199829, - -2.261630058288574, - -2.276339054107666, - -2.2862186431884766, - -1.9123659133911133, - -1.9089171886444092, - -1.9106613397598267, - -1.917551040649414, - -1.9293979406356812, - -1.9458792209625244, - -1.9665452241897583, - -1.9908322095870972, - -2.018077850341797, - -2.0475385189056396, - -2.078411102294922, - -2.1098532676696777, - -2.1410071849823, - -2.171023368835449, - -2.199082851409912, - -2.2244203090667725, - -2.246344804763794, - -2.2642579078674316, - -2.2776710987091064, - -2.2862186431884766, - -1.9123659133911133, - -1.9108991622924805, - -1.9145714044570923, - -1.923282265663147, - -1.9367942810058594, - -1.9547388553619385, - -1.9766263961791992, - -2.0018599033355713, - -2.0297510623931885, - -2.059539318084717, - -2.090411901473999, - -2.1215267181396484, - -2.1520347595214844, - -2.1811044216156006, - -2.207942485809326, - -2.2318167686462402, - -2.2520759105682373, - -2.268167734146118, - -2.2796530723571777, - -2.2862186431884766, - -1.9123659133911133, - -1.9133164882659912, - -1.919339895248413, - -1.930272102355957, - -1.945814609527588, - -1.9655436277389526, - -1.988921046257019, - -2.0153088569641113, - -2.04398775100708, - -2.0741751194000244, - -2.1050477027893066, - -2.135763168334961, - -2.1654839515686035, - -2.19339919090271, - -2.218747138977051, - -2.2408370971679688, - -2.259065866470337, - -2.2729363441467285, - -2.2820703983306885, - -2.2862186431884766, - -1.9123659133911133, - -1.9159069061279297, - -1.9244502782821655, - -1.9377628564834595, - -1.9554815292358398, - -1.9771230220794678, - -2.0020968914031982, - -2.029721975326538, - -2.0592448711395264, - -2.089860200881958, - -2.1207327842712402, - -2.1510202884674072, - -2.1798970699310303, - -2.2065749168395996, - -2.2303266525268555, - -2.2505040168762207, - -2.26655650138855, - -2.2780466079711914, - -2.284660816192627, - -2.2862186431884766, - -1.9123659133911133, - -1.9183900356292725, - -1.9293485879898071, - -1.9449429512023926, - -1.964747428894043, - -1.9882220029830933, - -2.014726161956787, - -2.043537139892578, - -2.073868989944458, - -2.1048943996429443, - -2.1357669830322266, - -2.165644645690918, - -2.1937122344970703, - -2.2192044258117676, - -2.2414255142211914, - -2.259769916534424, - -2.2737367153167725, - -2.282945156097412, - -2.2871439456939697, - -2.2862186431884766, - -1.9123659133911133, - -1.9204964637756348, - -1.9335042238235474, - -1.9510341882705688, - -1.972608208656311, - -1.9976378679275513, - -2.0254404544830322, - -2.055257558822632, - -2.086275577545166, - -2.1176488399505615, - -2.1485214233398438, - -2.178050994873047, - -2.205432415008545, - -2.2299184799194336, - -2.2508416175842285, - -2.2676305770874023, - -2.279827833175659, - -2.2871005535125732, - -2.289250373840332, - -2.2862186431884766, - -1.9123659133911133, - -1.9219982624053955, - -1.9364666938781738, - -1.9553765058517456, - -1.9782121181488037, - -2.004350423812866, - -2.03307843208313, - -2.063612699508667, - -2.0951201915740967, - -2.126741409301758, - -2.15761399269104, - -2.1868956089019775, - -2.21378755569458, - -2.2375564575195312, - -2.257554054260254, - -2.2732343673706055, - -2.284170150756836, - -2.2900631427764893, - -2.2907521724700928, - -2.2862186431884766, - -1.9123659133911133, - -1.9227323532104492, - -1.9379149675369263, - -1.9574995040893555, - -1.9809517860412598, - -2.00763201713562, - -2.0368125438690186, - -2.067697286605835, - -2.0994439125061035, - -2.1311864852905273, - -2.1620590686798096, - -2.1912195682525635, - -2.217872381210327, - -2.24129056930542, - -2.260835647583008, - -2.2759740352630615, - -2.2862932682037354, - -2.291511297225952, - -2.2914862632751465, - -2.2862186431884766, - -1.9123659133911133, - -1.9226194620132446, - -1.9376921653747559, - -1.9571728706359863, - -1.9805302619934082, - -2.007127285003662, - -2.036238193511963, - -2.0670690536499023, - -2.0987789630889893, - -2.130502700805664, - -2.1613752841949463, - -2.19055438041687, - -2.2172439098358154, - -2.2407162189483643, - -2.2603306770324707, - -2.275552749633789, - -2.285966634750366, - -2.2912886142730713, - -2.2913732528686523, - -2.2862186431884766, - -1.9123659133911133, - -1.9216716289520264, - -1.9358223676681519, - -1.9544322490692139, - -1.976993441581726, - -2.0028905868530273, - -2.0314173698425293, - -2.061795711517334, - -2.0931966304779053, - -2.1247639656066895, - -2.1556365489959717, - -2.184972047805786, - -2.211970567703247, - -2.2358953952789307, - -2.256094217300415, - -2.2720158100128174, - -2.2832260131835938, - -2.2894186973571777, - -2.2904255390167236, - -2.2862186431884766 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.27352339029312134, - 0.2776167094707489, - 0.28112298250198364, - 0.28394657373428345, - 0.2860104441642761, - 0.2872582972049713, - 0.28765609860420227, - 0.28719303011894226, - 0.2858816981315613, - 0.2837578356266022, - 0.2808794379234314, - 0.27732500433921814, - 0.2731914520263672, - 0.26859158277511597, - 0.2636508345603943, - 0.2585040032863617, - 0.25329145789146423, - 0.2481553852558136, - 0.24323590099811554, - 0.23866719007492065, - 0.27352339029312134, - 0.3039558529853821, - 0.33308279514312744, - 0.36010971665382385, - 0.3842993974685669, - 0.404992014169693, - 0.4216231107711792, - 0.4337390661239624, - 0.4410093426704407, - 0.4432356357574463, - 0.4403572082519531, - 0.43245261907577515, - 0.41973745822906494, - 0.4025585651397705, - 0.38138455152511597, - 0.35679298639297485, - 0.32945460081100464, - 0.3001151978969574, - 0.2695750296115875, - 0.23866717517375946, - 0.27352339029312134, - 0.3269713819026947, - 0.37848609685897827, - 0.42666226625442505, - 0.4701858460903168, - 0.5078696012496948, - 0.5386855602264404, - 0.5617932677268982, - 0.5765622854232788, - 0.5825898051261902, - 0.579711377620697, - 0.5680056214332581, - 0.5477917194366455, - 0.5196210741996765, - 0.4842621684074402, - 0.44267940521240234, - 0.3960071802139282, - 0.3455184996128082, - 0.29259058833122253, - 0.23866717517375946, - 0.27352336049079895, - 0.3441692590713501, - 0.41241270303726196, - 0.4763922691345215, - 0.5343626737594604, - 0.5847426652908325, - 0.6261579990386963, - 0.6574789881706238, - 0.6778513193130493, - 0.6867191791534424, - 0.6838407516479492, - 0.6692945957183838, - 0.6434774398803711, - 0.6070934534072876, - 0.5611352324485779, - 0.5068562030792236, - 0.4457371234893799, - 0.3794451355934143, - 0.30978843569755554, - 0.23866717517375946, - 0.27352336049079895, - 0.35368579626083374, - 0.4311861991882324, - 0.5039106011390686, - 0.5698752403259277, - 0.6272808313369751, - 0.6745613217353821, - 0.7104272842407227, - 0.7339000701904297, - 0.7443397641181946, - 0.7414613366127014, - 0.7253434658050537, - 0.6964256763458252, - 0.6554968357086182, - 0.6036733388900757, - 0.5423688888549805, - 0.473255455493927, - 0.39821863174438477, - 0.3193049728870392, - 0.23866716027259827, - 0.27352336049079895, - 0.3544897437095642, - 0.432772159576416, - 0.5062352418899536, - 0.5728752613067627, - 0.6308742761611938, - 0.6786502599716187, - 0.7149001359939575, - 0.7386350035667419, - 0.7492074370384216, - 0.7463290095329285, - 0.7300783395767212, - 0.7008985877037048, - 0.6595857739448547, - 0.607266902923584, - 0.5453688502311707, - 0.4755801558494568, - 0.3998045325279236, - 0.32010892033576965, - 0.23866716027259827, - 0.27352336049079895, - 0.3464939594268799, - 0.4169986844062805, - 0.4831143915653229, - 0.5430376529693604, - 0.5951338410377502, - 0.6379818916320801, - 0.6704131364822388, - 0.6915428638458252, - 0.7007946968078613, - 0.6979162693023682, - 0.6829861998558044, - 0.6564115881919861, - 0.6189173460006714, - 0.5715264081954956, - 0.5155312418937683, - 0.45245927572250366, - 0.38403111696243286, - 0.3121131360530853, - 0.23866717517375946, - 0.27352339029312134, - 0.3305649161338806, - 0.3855751156806946, - 0.4370534420013428, - 0.48359572887420654, - 0.5239323973655701, - 0.5569630861282349, - 0.5817869901657104, - 0.5977268218994141, - 0.604347825050354, - 0.6014693975448608, - 0.5891702175140381, - 0.5677854418754578, - 0.537898600101471, - 0.5003249645233154, - 0.4560893177986145, - 0.40639835596084595, - 0.3526075482368469, - 0.29618412256240845, - 0.23866717517375946, - 0.27352339029312134, - 0.3084287941455841, - 0.34190669655799866, - 0.37304386496543884, - 0.4009910225868225, - 0.42498576641082764, - 0.44437360763549805, - 0.4586257338523865, - 0.46735334396362305, - 0.47031837701797485, - 0.46744000911712646, - 0.4587966501712799, - 0.4446241557598114, - 0.42530906200408936, - 0.401378333568573, - 0.3734845817089081, - 0.34238874912261963, - 0.3089390993118286, - 0.27404800057411194, - 0.23866717517375946, - 0.27352339029312134, - 0.28248438239097595, - 0.2907255291938782, - 0.29802206158638, - 0.3041749596595764, - 0.3090163469314575, - 0.3124141991138458, - 0.3142758309841156, - 0.31455039978027344, - 0.3132305145263672, - 0.3103521168231964, - 0.3059937357902527, - 0.3002742528915405, - 0.29334965348243713, - 0.2854088842868805, - 0.276668518781662, - 0.2673669457435608, - 0.25775793194770813, - 0.2481035590171814, - 0.23866719007492065, - 0.27352339029312134, - 0.25554314255714417, - 0.23757793009281158, - 0.22011783719062805, - 0.20363909006118774, - 0.18859124183654785, - 0.1753847301006317, - 0.1643797606229782, - 0.15587657690048218, - 0.15010708570480347, - 0.1472286880016327, - 0.14731988310813904, - 0.15037818253040314, - 0.15632018446922302, - 0.16498377919197083, - 0.17613264918327332, - 0.18946272134780884, - 0.20461033284664154, - 0.2211623191833496, - 0.23866719007492065, - 0.27352339029312134, - 0.23052456974983215, - 0.1882232427597046, - 0.14777329564094543, - 0.11027806997299194, - 0.07676038146018982, - 0.0481344610452652, - 0.025181174278259277, - 0.008526638150215149, - -0.0013748705387115479, - -0.004253298044204712, - -0.000030040740966796875, - 0.011179596185684204, - 0.029069900512695312, - 0.05315287411212921, - 0.08277162909507751, - 0.11711817979812622, - 0.15525564551353455, - 0.1961437612771988, - 0.23866720497608185, - 0.2735234200954437, - 0.21013984084129333, - 0.14800982177257538, - 0.08882808685302734, - 0.034208983182907104, - -0.014357656240463257, - -0.05554699897766113, - -0.08823567628860474, - -0.11153185367584229, - -0.12480002641677856, - -0.12767845392227173, - -0.12008851766586304, - -0.10223725438117981, - -0.07461157441139221, - -0.03796517848968506, - 0.006702512502670288, - 0.05817297101020813, - 0.11504222452640533, - 0.17575903236865997, - 0.23866720497608185, - 0.2735234200954437, - 0.19659793376922607, - 0.12129540741443634, - 0.04966984689235687, - -0.016324937343597412, - -0.07488882541656494, - -0.12442430853843689, - -0.1635802984237671, - -0.191288560628891, - -0.20679330825805664, - -0.2096717357635498, - -0.19984522461891174, - -0.17758187651634216, - -0.14348888397216797, - -0.09849634766578674, - -0.04383140802383423, - 0.01901473104953766, - 0.0883278101682663, - 0.1622171252965927, - 0.23866720497608185, - 0.2735234200954437, - 0.19136635959148407, - 0.11097492277622223, - 0.0345420241355896, - -0.035847485065460205, - -0.09827357530593872, - -0.15103337168693542, - -0.1926877796649933, - -0.2221006155014038, - -0.2384694218635559, - -0.24134784936904907, - -0.23065727949142456, - -0.20668935775756836, - -0.1700979471206665, - -0.12188109755516052, - -0.06335395574569702, - 0.0038869082927703857, - 0.07800732553005219, - 0.1569855511188507, - 0.23866720497608185, - 0.2735234200954437, - 0.19501198828220367, - 0.11816674470901489, - 0.04508388042449951, - -0.02224317193031311, - -0.08197787404060364, - -0.1324908435344696, - -0.1724041998386383, - -0.20062917470932007, - -0.21639588475227356, - -0.21927431225776672, - -0.20918583869934082, - -0.18640577793121338, - -0.15155541896820068, - -0.10558539628982544, - -0.04974964261054993, - 0.014428764581680298, - 0.08519914746284485, - 0.1606311798095703, - 0.23866720497608185, - 0.2735234200954437, - 0.20713981986045837, - 0.14209158718585968, - 0.08015309274196625, - 0.02301381528377533, - -0.02776750922203064, - -0.07080590724945068, - -0.10492724180221558, - -0.12920090556144714, - -0.14296454191207886, - -0.14584296941757202, - -0.1377575695514679, - -0.11892881989479065, - -0.08987048268318176, - -0.05137503147125244, - -0.004492610692977905, - 0.049497976899147034, - 0.10912398993968964, - 0.17275899648666382, - 0.23866720497608185, - 0.27352339029312134, - 0.2264355719089508, - 0.18015676736831665, - 0.13594938814640045, - 0.09501925110816956, - 0.05848288536071777, - 0.02733685076236725, - 0.002430737018585205, - -0.015556097030639648, - -0.02613288164138794, - -0.029011309146881104, - -0.0241127610206604, - -0.011570841073989868, - 0.00827227532863617, - 0.03487539291381836, - 0.06751279532909393, - 0.10529427230358124, - 0.1471891701221466, - 0.19205474853515625, - 0.23866720497608185, - 0.27352339029312134, - 0.2508082687854767, - 0.2282373607158661, - 0.20642635226249695, - 0.18597017228603363, - 0.16742683947086334, - 0.15130214393138885, - 0.13803592324256897, - 0.12799005210399628, - 0.12143854796886444, - 0.11856015026569366, - 0.11943335831165314, - 0.1240343451499939, - 0.13223759829998016, - 0.14381936192512512, - 0.158463716506958, - 0.17577123641967773, - 0.19526976346969604, - 0.21642746031284332, - 0.23866719007492065, - 0.27352339029312134, - 0.2776167094707489, - 0.28112301230430603, - 0.28394660353660583, - 0.2860104739665985, - 0.2872583568096161, - 0.28765618801116943, - 0.2871931195259094, - 0.28588175773620605, - 0.28375792503356934, - 0.28087952733039856, - 0.2773250937461853, - 0.27319154143333435, - 0.26859164237976074, - 0.26365089416503906, - 0.2585040330886841, - 0.2532914876937866, - 0.248155415058136, - 0.24323591589927673, - 0.23866719007492065 - ], - "y": [ - 0.5520483255386353, - 0.6342743635177612, - 0.7145585417747498, - 0.7907109260559082, - 0.860654354095459, - 0.9224808216094971, - 0.9745039939880371, - 1.0153048038482666, - 1.04377019405365, - 1.0591237545013428, - 1.0609468221664429, - 1.0491894483566284, - 1.0241724252700806, - 0.9865782260894775, - 0.9374322891235352, - 0.878075122833252, - 0.8101258277893066, - 0.7354379892349243, - 0.6560488343238831, - 0.5741239190101624, - 0.5520483255386353, - 0.6285629868507385, - 0.7032915353775024, - 0.774195671081543, - 0.8393413424491882, - 0.89695143699646, - 0.9454545974731445, - 0.9835277795791626, - 1.0101323127746582, - 1.0245425701141357, - 1.0263656377792358, - 1.0155515670776367, - 0.9923954010009766, - 0.957528829574585, - 0.911902904510498, - 0.8567621111869812, - 0.7936105728149414, - 0.7241710424423218, - 0.6503374576568604, - 0.5741239190101624, - 0.5520483255386353, - 0.6145763397216797, - 0.6756998300552368, - 0.7337515354156494, - 0.7871479392051697, - 0.8344324827194214, - 0.8743153810501099, - 0.9057088494300842, - 0.9277564287185669, - 0.939856767654419, - 0.9416797161102295, - 0.9331756830215454, - 0.914576530456543, - 0.8863896727561951, - 0.8493839502334595, - 0.8045687079429626, - 0.7531664371490479, - 0.6965793371200562, - 0.6363508701324463, - 0.5741239190101624, - 0.5520483255386353, - 0.5938301682472229, - 0.6347734332084656, - 0.6737611889839172, - 0.7097300291061401, - 0.7416988611221313, - 0.7687955498695374, - 0.7902810573577881, - 0.8055692911148071, - 0.8142430782318115, - 0.8160661458969116, - 0.8109884858131409, - 0.799148678779602, - 0.780869722366333, - 0.7566502690315247, - 0.7271507978439331, - 0.6931760907173157, - 0.6556528806686401, - 0.6156046986579895, - 0.5741239190101624, - 0.5520483255386353, - 0.5685726404190063, - 0.5849472284317017, - 0.600725531578064, - 0.6154770851135254, - 0.6287996172904968, - 0.6403295993804932, - 0.6497526168823242, - 0.6568115949630737, - 0.6613140106201172, - 0.6631369590759277, - 0.6622308492660522, - 0.658620297908783, - 0.6524038314819336, - 0.6437510251998901, - 0.6328978538513184, - 0.6201404333114624, - 0.6058266758918762, - 0.5903471112251282, - 0.5741239190101624, - 0.55204838514328, - 0.5415406823158264, - 0.5316207408905029, - 0.5225590467453003, - 0.5146028995513916, - 0.5079692006111145, - 0.5028389692306519, - 0.4993520975112915, - 0.49760371446609497, - 0.49764156341552734, - 0.4994645416736603, - 0.5030229687690735, - 0.5082197785377502, - 0.5149131417274475, - 0.5229206085205078, - 0.5320236086845398, - 0.5419740080833435, - 0.5525002479553223, - 0.563315212726593, - 0.5741239786148071, - 0.55204838514328, - 0.515663743019104, - 0.48057273030281067, - 0.44773241877555847, - 0.4180386960506439, - 0.392301470041275, - 0.3712227940559387, - 0.3553776443004608, - 0.34519827365875244, - 0.340962290763855, - 0.3427852988243103, - 0.35061749815940857, - 0.36424529552459717, - 0.38329699635505676, - 0.40725284814834595, - 0.4354594349861145, - 0.4671473205089569, - 0.5014522075653076, - 0.5374382734298706, - 0.5741239786148071, - 0.55204838514328, - 0.49374598264694214, - 0.4373350143432617, - 0.38435420393943787, - 0.3362486958503723, - 0.29433077573776245, - 0.2597437798976898, - 0.2334311604499817, - 0.21611067652702332, - 0.20825481414794922, - 0.21007782220840454, - 0.22152993083000183, - 0.24229884147644043, - 0.27181801199913025, - 0.3092821538448334, - 0.3536694347858429, - 0.4037691056728363, - 0.4582144618034363, - 0.5155205130577087, - 0.5741239786148071, - 0.55204838514328, - 0.4781624674797058, - 0.40659305453300476, - 0.33929237723350525, - 0.27809616923332214, - 0.22467383742332458, - 0.180482417345047, - 0.14672744274139404, - 0.12432965636253357, - 0.11390003561973572, - 0.11572304368019104, - 0.12974891066551208, - 0.15559512376785278, - 0.19255661964416504, - 0.23962518572807312, - 0.2955169379711151, - 0.3587072789669037, - 0.4274725317955017, - 0.4999369978904724, - 0.5741239786148071, - 0.55204838514328, - 0.4706019461154938, - 0.3916782736778259, - 0.31743013858795166, - 0.24988284707069397, - 0.1908789575099945, - 0.14202791452407837, - 0.10466215014457703, - 0.07980108261108398, - 0.06812277436256409, - 0.06994578242301941, - 0.0852203369140625, - 0.11352983117103577, - 0.1541021168231964, - 0.20583030581474304, - 0.26730358600616455, - 0.3368450403213501, - 0.4125577509403229, - 0.4923764765262604, - 0.5741239786148071, - 0.55204838514328, - 0.47188374400138855, - 0.3942068815231323, - 0.32113659381866455, - 0.2546660602092743, - 0.19660842418670654, - 0.14854738116264343, - 0.11179378628730774, - 0.08735033869743347, - 0.07588368654251099, - 0.07770669460296631, - 0.09276959300041199, - 0.12066146731376648, - 0.16062158346176147, - 0.21155977249145508, - 0.2720867991447449, - 0.340551495552063, - 0.4150863587856293, - 0.49365824460983276, - 0.5741239786148071, - 0.55204838514328, - 0.4818689227104187, - 0.4139048457145691, - 0.35001009702682495, - 0.29192742705345154, - 0.24124136567115784, - 0.19933432340621948, - 0.1673494577407837, - 0.14615929126739502, - 0.13634181022644043, - 0.13816481828689575, - 0.15157854557037354, - 0.17621713876724243, - 0.21140852570533752, - 0.25619271397590637, - 0.3093481957912445, - 0.3694249987602234, - 0.4347843527793884, - 0.5036434531211853, - 0.5741239786148071, - 0.55204838514328, - 0.4994754493236542, - 0.44863763451576233, - 0.40092170238494873, - 0.3576291799545288, - 0.319940984249115, - 0.2888852059841156, - 0.26530882716178894, - 0.24985507130622864, - 0.24294546246528625, - 0.24476847052574158, - 0.25527432560920715, - 0.2741765081882477, - 0.30095940828323364, - 0.3348923623561859, - 0.375049889087677, - 0.42033660411834717, - 0.4695171117782593, - 0.5212499499320984, - 0.5741239786148071, - 0.55204838514328, - 0.5227953791618347, - 0.49464142322540283, - 0.4683544635772705, - 0.4446515440940857, - 0.42417919635772705, - 0.40749591588974, - 0.39505666494369507, - 0.38720083236694336, - 0.38414275646209717, - 0.3859657049179077, - 0.3926200866699219, - 0.4039243161678314, - 0.41957008838653564, - 0.43913060426712036, - 0.4620722830295563, - 0.48776936531066895, - 0.5155209302902222, - 0.5445699095726013, - 0.5741239786148071, - 0.55204838514328, - 0.5493016242980957, - 0.5469309091567993, - 0.5450008511543274, - 0.5435640811920166, - 0.5426598787307739, - 0.5423128008842468, - 0.5425324440002441, - 0.543312668800354, - 0.5446322560310364, - 0.5464552640914917, - 0.5487319231033325, - 0.5514000654220581, - 0.5543870329856873, - 0.5576112866401672, - 0.5609848499298096, - 0.5644157528877258, - 0.5678103566169739, - 0.5710761547088623, - 0.5741239786148071, - 0.5520483255386353, - 0.5761218070983887, - 0.5998396873474121, - 0.6225550770759583, - 0.6436482667922974, - 0.6625438928604126, - 0.6787266731262207, - 0.6917549967765808, - 0.7012736201286316, - 0.7070227861404419, - 0.7088457942008972, - 0.7066928148269653, - 0.7006226778030396, - 0.6908008456230164, - 0.6774953603744507, - 0.6610690355300903, - 0.6419699788093567, - 0.6207191944122314, - 0.5978963375091553, - 0.5741239190101624, - 0.5520483255386353, - 0.6003496646881104, - 0.6476345062255859, - 0.6926130652427673, - 0.7340584993362427, - 0.7708402276039124, - 0.801954984664917, - 0.8265540599822998, - 0.8439663648605347, - 0.8537169694900513, - 0.8555400371551514, - 0.8493856191635132, - 0.8354217410087585, - 0.8140292167663574, - 0.7857916355133057, - 0.7514792680740356, - 0.7120279669761658, - 0.6685139536857605, - 0.6221241354942322, - 0.5741239190101624, - 0.5520483255386353, - 0.61935955286026, - 0.6851357817649841, - 0.7475828528404236, - 0.8049973249435425, - 0.8558130264282227, - 0.8986439108848572, - 0.9323217272758484, - 0.9559277296066284, - 0.9688180088996887, - 0.970641016960144, - 0.9613469839096069, - 0.9411894083023071, - 0.9107182025909424, - 0.8707644939422607, - 0.8224180936813354, - 0.766997754573822, - 0.7060152888298035, - 0.6411340832710266, - 0.5741239190101624, - 0.5520483255386353, - 0.6310915946960449, - 0.7082798480987549, - 0.7815075516700745, - 0.8487772941589355, - 0.9082541465759277, - 0.9583157300949097, - 0.9975965023040771, - 1.0250248908996582, - 1.0398528575897217, - 1.0416758060455322, - 1.0304441452026367, - 1.0064642429351807, - 0.9703899621963501, - 0.9232056140899658, - 0.8661980628967285, - 0.8009224534034729, - 0.7291592955589294, - 0.6528661251068115, - 0.5741239190101624, - 0.5520483255386353, - 0.6342743635177612, - 0.7145585417747498, - 0.7907109260559082, - 0.860654354095459, - 0.9224808216094971, - 0.9745039939880371, - 1.0153048038482666, - 1.04377019405365, - 1.0591237545013428, - 1.0609468221664429, - 1.0491894483566284, - 1.0241724252700806, - 0.9865782260894775, - 0.9374322891235352, - 0.878075122833252, - 0.8101258277893066, - 0.7354379892349243, - 0.6560488343238831, - 0.5741239190101624 - ], - "z": [ - -2.235921621322632, - -2.2340331077575684, - -2.2372984886169434, - -2.245628833770752, - -2.2587966918945312, - -2.2764430046081543, - -2.298086166381836, - -2.323136329650879, - -2.350909471511841, - -2.3806488513946533, - -2.4115424156188965, - -2.4427480697631836, - -2.473414421081543, - -2.5027048587799072, - -2.529820680618286, - -2.5540220737457275, - -2.57464861869812, - -2.5911381244659424, - -2.6030406951904297, - -2.6100313663482666, - -2.235921621322632, - -2.2368242740631104, - -2.242804527282715, - -2.253699541091919, - -2.269212007522583, - -2.2889187335968018, - -2.3122823238372803, - -2.338665246963501, - -2.3673479557037354, - -2.397547960281372, - -2.4284417629241943, - -2.459186553955078, - -2.488943338394165, - -2.5169010162353516, - -2.5422964096069336, - -2.5644373893737793, - -2.582719326019287, - -2.596644163131714, - -2.6058316230773926, - -2.6100313663482666, - -2.235921621322632, - -2.2397937774658203, - -2.2486629486083984, - -2.262286901473999, - -2.2802939414978027, - -2.3021931648254395, - -2.3273868560791016, - -2.3551881313323975, - -2.384838342666626, - -2.4155290126800537, - -2.446422815322876, - -2.4766769409179688, - -2.5054662227630615, - -2.532005548477173, - -2.5555708408355713, - -2.575519323348999, - -2.591306686401367, - -2.6025025844573975, - -2.6088013648986816, - -2.6100313663482666, - -2.235921621322632, - -2.2426204681396484, - -2.2542388439178467, - -2.2704601287841797, - -2.290841579437256, - -2.3148274421691895, - -2.3417632579803467, - -2.3709144592285156, - -2.4014856815338135, - -2.432642936706543, - -2.4635367393493652, - -2.4933242797851562, - -2.5211925506591797, - -2.546381950378418, - -2.5682053565979004, - -2.586066961288452, - -2.599480152130127, - -2.6080784797668457, - -2.6116280555725098, - -2.6100313663482666, - -2.235921621322632, - -2.244997501373291, - -2.2589282989501953, - -2.2773337364196777, - -2.2997121810913086, - -2.3254528045654297, - -2.353853702545166, - -2.3841400146484375, - -2.4154856204986572, - -2.447035789489746, - -2.4779293537139893, - -2.50732421875, - -2.5344181060791016, - -2.5584723949432373, - -2.5788304805755615, - -2.594937324523926, - -2.606353759765625, - -2.6127679347991943, - -2.6140050888061523, - -2.6100313663482666, - -2.235921621322632, - -2.2466673851013184, - -2.2622227668762207, - -2.28216290473938, - -2.3059439659118652, - -2.3329176902770996, - -2.3623476028442383, - -2.3934316635131836, - -2.425321340560913, - -2.4571473598480225, - -2.4880409240722656, - -2.517159938812256, - -2.5437097549438477, - -2.5669665336608887, - -2.5862953662872314, - -2.6011693477630615, - -2.611182689666748, - -2.6160624027252197, - -2.6156749725341797, - -2.6100313663482666, - -2.235921621322632, - -2.2474493980407715, - -2.263765335083008, - -2.284424066543579, - -2.3088622093200684, - -2.3364129066467285, - -2.3663251399993896, - -2.397782325744629, - -2.429926872253418, - -2.4618818759918213, - -2.4927756786346436, - -2.5217654705047607, - -2.548060655593872, - -2.570943832397461, - -2.5897908210754395, - -2.6040873527526855, - -2.6134438514709473, - -2.617604970932007, - -2.616456985473633, - -2.6100313663482666, - -2.235921621322632, - -2.2472586631774902, - -2.2633888721466064, - -2.283872365951538, - -2.308150291442871, - -2.3355600833892822, - -2.365354537963867, - -2.3967208862304688, - -2.4288032054901123, - -2.460726737976074, - -2.4916205406188965, - -2.520641803741455, - -2.546999216079712, - -2.5699734687805176, - -2.588937997817993, - -2.6033754348754883, - -2.6128921508789062, - -2.6172285079956055, - -2.6162662506103516, - -2.6100313663482666, - -2.235921621322632, - -2.2461156845092773, - -2.261134386062622, - -2.2805676460266113, - -2.3038852214813232, - -2.330451488494873, - -2.359541654586792, - -2.390362024307251, - -2.422072172164917, - -2.4538068771362305, - -2.4847006797790527, - -2.5139107704162598, - -2.540640354156494, - -2.5641603469848633, - -2.583829402923584, - -2.5991106033325195, - -2.6095874309539795, - -2.614974021911621, - -2.6151232719421387, - -2.6100313663482666, - -2.235921621322632, - -2.2441446781158447, - -2.2572457790374756, - -2.2748677730560303, - -2.296529769897461, - -2.321640729904175, - -2.349515914916992, - -2.379395008087158, - -2.4104628562927246, - -2.4418721199035645, - -2.4727656841278076, - -2.5023014545440674, - -2.5296733379364014, - -2.5541346073150635, - -2.5750184059143066, - -2.591754913330078, - -2.6038875579833984, - -2.6110854148864746, - -2.613152265548706, - -2.6100313663482666, - -2.235921621322632, - -2.241558790206909, - -2.2521448135375977, - -2.267390727996826, - -2.2868804931640625, - -2.31008243560791, - -2.3363640308380127, - -2.3650081157684326, - -2.395233631134033, - -2.426215648651123, - -2.4571094512939453, - -2.487072229385376, - -2.515286445617676, - -2.540982723236084, - -2.563460350036621, - -2.5821056365966797, - -2.5964105129241943, - -2.6059844493865967, - -2.6105663776397705, - -2.6100313663482666, - -2.235921621322632, - -2.2386386394500732, - -2.2463841438293457, - -2.258946418762207, - -2.2759830951690674, - -2.297029495239258, - -2.3215112686157227, - -2.3487606048583984, - -2.3780345916748047, - -2.408534526824951, - -2.4394280910491943, - -2.4698731899261475, - -2.4990389347076416, - -2.526129961013794, - -2.5504071712493896, - -2.5712084770202637, - -2.587966203689575, - -2.6002237796783447, - -2.6076462268829346, - -2.6100313663482666, - -2.235921621322632, - -2.2357003688812256, - -2.2405877113342285, - -2.250450372695923, - -2.2650187015533447, - -2.283895969390869, - -2.3065669536590576, - -2.3324131965637207, - -2.360729694366455, - -2.390744209289551, - -2.421638011932373, - -2.452568292617798, - -2.4826912879943848, - -2.511185646057129, - -2.537273645401001, - -2.560244083404541, - -2.579470157623291, - -2.5944273471832275, - -2.604707956314087, - -2.6100313663482666, - -2.235921621322632, - -2.233062744140625, - -2.235384225845337, - -2.2428226470947266, - -2.2551753520965576, - -2.2721052169799805, - -2.2931504249572754, - -2.317737102508545, - -2.345194101333618, - -2.3747730255126953, - -2.4056668281555176, - -2.437032699584961, - -2.468015193939209, - -2.4977691173553467, - -2.5254828929901123, - -2.550400733947754, - -2.571842670440674, - -2.589223861694336, - -2.6020703315734863, - -2.6100313663482666, - -2.235921621322632, - -2.231011152267456, - -2.231337070465088, - -2.2368905544281006, - -2.2475197315216064, - -2.262935161590576, - -2.2827160358428955, - -2.3063228130340576, - -2.333111524581909, - -2.362351655960083, - -2.393245220184326, - -2.424950122833252, - -2.4566009044647217, - -2.487334728240967, - -2.516312837600708, - -2.5427451133728027, - -2.5659103393554688, - -2.585176706314087, - -2.6000187397003174, - -2.6100313663482666, - -2.235921621322632, - -2.2297682762145996, - -2.2288851737976074, - -2.2332963943481445, - -2.2428815364837646, - -2.2573792934417725, - -2.2763941287994385, - -2.2994072437286377, - -2.325791120529175, - -2.354825735092163, - -2.3857195377349854, - -2.4176294803619385, - -2.4496853351593018, - -2.4810128211975098, - -2.5107569694519043, - -2.538106918334961, - -2.5623161792755127, - -2.5827248096466064, - -2.598775863647461, - -2.6100313663482666, - -2.235921621322632, - -2.229468584060669, - -2.2282938957214355, - -2.2324297428131104, - -2.241763114929199, - -2.256039619445801, - -2.274869918823242, - -2.2977397441864014, - -2.324026107788086, - -2.3530113697052, - -2.3839049339294434, - -2.4158644676208496, - -2.4480180740356445, - -2.4794886112213135, - -2.5094175338745117, - -2.5369884967803955, - -2.5614495277404785, - -2.5821335315704346, - -2.5984761714935303, - -2.6100313663482666, - -2.235921621322632, - -2.230144500732422, - -2.2296276092529297, - -2.234384775161743, - -2.244286060333252, - -2.259061574935913, - -2.278308391571045, - -2.3015012741088867, - -2.328007698059082, - -2.357104778289795, - -2.387998342514038, - -2.419846296310425, - -2.45177960395813, - -2.482927083969116, - -2.512439489364624, - -2.5395114421844482, - -2.5634045600891113, - -2.5834672451019287, - -2.599152088165283, - -2.6100313663482666, - -2.235921621322632, - -2.2317230701446533, - -2.232741594314575, - -2.2389492988586426, - -2.2501766681671143, - -2.266117572784424, - -2.28633713722229, - -2.31028413772583, - -2.3373048305511475, - -2.3666625022888184, - -2.3975560665130615, - -2.4291434288024902, - -2.460562229156494, - -2.4909560680389404, - -2.5194952487945557, - -2.5454020500183105, - -2.5679690837860107, - -2.586581230163574, - -2.6007306575775146, - -2.6100313663482666, - -2.235921621322632, - -2.2340331077575684, - -2.2372984886169434, - -2.245628833770752, - -2.2587966918945312, - -2.2764430046081543, - -2.298086166381836, - -2.323136329650879, - -2.350909471511841, - -2.3806488513946533, - -2.4115424156188965, - -2.4427480697631836, - -2.473414421081543, - -2.5027048587799072, - -2.529820680618286, - -2.5540220737457275, - -2.57464861869812, - -2.5911381244659424, - -2.6030406951904297, - -2.6100313663482666 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.24335217475891113, - 0.33509567379951477, - 0.423861026763916, - 0.5072269439697266, - 0.5829194784164429, - 0.6488738656044006, - 0.7032910585403442, - 0.7446867227554321, - 0.7719316482543945, - 0.7842826843261719, - 0.7814029455184937, - 0.7633709907531738, - 0.7306785583496094, - 0.684217631816864, - 0.6252554059028625, - 0.5554002523422241, - 0.47655752301216125, - 0.39087802171707153, - 0.30069878697395325, - 0.20847965776920319, - 0.24335217475891113, - 0.33292168378829956, - 0.4195723533630371, - 0.5009405612945557, - 0.5748068690299988, - 0.6391562819480896, - 0.692233681678772, - 0.7325910329818726, - 0.7591276168823242, - 0.7711195945739746, - 0.7682398557662964, - 0.7505669593811035, - 0.7185828685760498, - 0.673160195350647, - 0.6155378222465515, - 0.5472875833511353, - 0.47027111053466797, - 0.38658931851387024, - 0.29852479696273804, - 0.20847965776920319, - 0.24335217475891113, - 0.3210156559944153, - 0.39608511328697205, - 0.4665127396583557, - 0.5303775072097778, - 0.5859374403953552, - 0.6316768527030945, - 0.6663482189178467, - 0.6890057325363159, - 0.6990312933921814, - 0.6961515545845032, - 0.6804450154304504, - 0.6523400545120239, - 0.612603485584259, - 0.5623189806938171, - 0.5028582811355591, - 0.435843288898468, - 0.3631020784378052, - 0.28661876916885376, - 0.20847965776920319, - 0.24335217475891113, - 0.3006678521633148, - 0.35594451427459717, - 0.40767428278923035, - 0.4544461965560913, - 0.49498438835144043, - 0.528183102607727, - 0.5531367063522339, - 0.5691646337509155, - 0.5758296251296997, - 0.5729498863220215, - 0.5606039762496948, - 0.5391286611557007, - 0.5091096758842468, - 0.47136589884757996, - 0.4269269108772278, - 0.37700483202934265, - 0.3229614794254303, - 0.2662709653377533, - 0.20847967267036438, - 0.24335218966007233, - 0.2740832269191742, - 0.30350035429000854, - 0.33080121874809265, - 0.355241060256958, - 0.37615329027175903, - 0.3929674029350281, - 0.4052248001098633, - 0.4125910997390747, - 0.4148654043674469, - 0.4119856655597687, - 0.404030442237854, - 0.3912166655063629, - 0.37389397621154785, - 0.35253477096557617, - 0.3277217745780945, - 0.30013176798820496, - 0.27051734924316406, - 0.23968632519245148, - 0.20847967267036438, - 0.24335218966007233, - 0.24414263665676117, - 0.2444358915090561, - 0.24422398209571838, - 0.24351267516613007, - 0.24232137203216553, - 0.24068255722522736, - 0.23864096403121948, - 0.23625226318836212, - 0.23358161747455597, - 0.23070186376571655, - 0.22769157588481903, - 0.2246328443288803, - 0.22160910069942474, - 0.21870285272598267, - 0.21599335968494415, - 0.2135545164346695, - 0.21145287156105042, - 0.20974573493003845, - 0.20847968757152557, - 0.24335220456123352, - 0.21409063041210175, - 0.185151606798172, - 0.15732453763484955, - 0.1313684582710266, - 0.10799138993024826, - 0.08783099055290222, - 0.07143719494342804, - 0.0592571496963501, - 0.05162316560745239, - 0.04874342679977417, - 0.05069646239280701, - 0.05742906033992767, - 0.06875753402709961, - 0.08437284827232361, - 0.10384912043809891, - 0.12665507197380066, - 0.15216857194900513, - 0.17969372868537903, - 0.20847968757152557, - 0.24335220456123352, - 0.18718378245830536, - 0.1320718675851822, - 0.07951977849006653, - 0.030960991978645325, - -0.012279927730560303, - -0.04902350902557373, - -0.07826745510101318, - -0.09921404719352722, - -0.11129194498062134, - -0.11417168378829956, - -0.1077747642993927, - -0.09227555990219116, - -0.06809696555137634, - -0.035898447036743164, - 0.0034416615962982178, - 0.04885032773017883, - 0.09908884763717651, - 0.15278688073158264, - 0.20847970247268677, - 0.24335221946239471, - 0.16633789241313934, - 0.09094870090484619, - 0.019241079688072205, - -0.046829044818878174, - -0.10545927286148071, - -0.15505054593086243, - -0.19425007700920105, - -0.2219885289669037, - -0.23750928044319153, - -0.24038901925086975, - -0.23054924607276917, - -0.20825818181037903, - -0.17412403225898743, - -0.12907788157463074, - -0.0743483304977417, - -0.01142837107181549, - 0.05796566605567932, - 0.13194099068641663, - 0.20847970247268677, - 0.24335221946239471, - 0.15381193161010742, - 0.06623844802379608, - -0.016979455947875977, - -0.09357178211212158, - -0.16144931316375732, - -0.21876055002212524, - -0.26394224166870117, - -0.2957617938518524, - -0.3133513033390045, - -0.31623104214668274, - -0.3043224513530731, - -0.27795037627220154, - -0.23783403635025024, - -0.18506789207458496, - -0.1210910975933075, - -0.04764890670776367, - 0.03325541317462921, - 0.1194150298833847, - 0.20847970247268677, - 0.24335221946239471, - 0.15096327662467957, - 0.060618847608566284, - -0.025216728448867798, - -0.1042020320892334, - -0.17418256402015686, - -0.2332494854927063, - -0.27979162335395813, - -0.31253936886787415, - -0.33059927821159363, - -0.33347901701927185, - -0.32110002636909485, - -0.2937997877597809, - -0.2523229718208313, - -0.1978011429309845, - -0.1317213475704193, - -0.05588617920875549, - 0.027635812759399414, - 0.11656637489795685, - 0.20847970247268677, - 0.24335221946239471, - 0.15810061991214752, - 0.07469885051250458, - -0.004578098654747009, - -0.07756784558296204, - -0.14227917790412903, - -0.19694724678993225, - -0.24008074402809143, - -0.2705029845237732, - -0.28738418221473694, - -0.29026392102241516, - -0.2790636718273163, - -0.2540888488292694, - -0.21602073311805725, - -0.16589778661727905, - -0.10508713126182556, - -0.0352475643157959, - 0.04171581566333771, - 0.1237037181854248, - 0.20847970247268677, - 0.24335221946239471, - 0.17445051670074463, - 0.10695267468690872, - 0.04269982874393463, - -0.01655535399913788, - -0.06919652223587036, - -0.11378780007362366, - -0.14911293983459473, - -0.17420819401741028, - -0.18838906288146973, - -0.19126880168914795, - -0.18276891112327576, - -0.1631210446357727, - -0.13286128640174866, - -0.092815101146698, - -0.044074684381484985, - 0.012030377984046936, - 0.07396964728832245, - 0.1400536298751831, - 0.20847970247268677, - 0.24335220456123352, - 0.1982412487268448, - 0.15388518571853638, - 0.11149392277002335, - 0.07222379744052887, - 0.03714600205421448, - 0.0072173625230789185, - -0.01674579083919525, - -0.03408971428871155, - -0.04434138536453247, - -0.04722112417221069, - -0.042650431394577026, - -0.030753910541534424, - -0.011856108903884888, - 0.013527467846870422, - 0.04470446705818176, - 0.08082446455955505, - 0.1209021583199501, - 0.16384434700012207, - 0.20847970247268677, - 0.24335220456123352, - 0.22689463198184967, - 0.21041037142276764, - 0.19434905052185059, - 0.17914879322052002, - 0.16522423923015594, - 0.15295517444610596, - 0.14267630875110626, - 0.1346679925918579, - 0.1291486918926239, - 0.1262689232826233, - 0.12610730528831482, - 0.1286681741476059, - 0.13388171792030334, - 0.1416057050228119, - 0.1516294777393341, - 0.1636795997619629, - 0.17742733657360077, - 0.19249773025512695, - 0.20847968757152557, - 0.24335218966007233, - 0.25730568170547485, - 0.2704029083251953, - 0.28228670358657837, - 0.2926328182220459, - 0.3011590540409088, - 0.3076328635215759, - 0.31187766790390015, - 0.3137776553630829, - 0.31328099966049194, - 0.3104012608528137, - 0.3052169680595398, - 0.29786956310272217, - 0.2885594367980957, - 0.27754056453704834, - 0.26511350274086, - 0.2516172230243683, - 0.23741990327835083, - 0.22290877997875214, - 0.20847967267036438, - 0.24335218966007233, - 0.28617891669273376, - 0.3273618221282959, - 0.36577755212783813, - 0.4003782272338867, - 0.43022000789642334, - 0.45448893308639526, - 0.472523033618927, - 0.4838302433490753, - 0.4881022274494171, - 0.4852224886417389, - 0.4752695560455322, - 0.45851486921310425, - 0.43541550636291504, - 0.40660154819488525, - 0.3728589415550232, - 0.33510810136795044, - 0.2943788170814514, - 0.25178202986717224, - 0.20847967267036438, - 0.24335217475891113, - 0.31038543581962585, - 0.3751145899295807, - 0.43577396869659424, - 0.4907090365886688, - 0.5384211540222168, - 0.5776090025901794, - 0.6072036027908325, - 0.6263976097106934, - 0.6346675157546997, - 0.6317877769470215, - 0.6178368926048279, - 0.5931954383850098, - 0.5585355758666992, - 0.5148026943206787, - 0.4631897211074829, - 0.40510451793670654, - 0.3421315550804138, - 0.27598854899406433, - 0.20847967267036438, - 0.24335217475891113, - 0.32730209827423096, - 0.4084864854812622, - 0.48469078540802, - 0.5538363456726074, - 0.6140372157096863, - 0.6636511087417603, - 0.7013247013092041, - 0.7260303497314453, - 0.7370941638946533, - 0.7342144250869751, - 0.7174696922302246, - 0.6873165369033813, - 0.6445776224136353, - 0.5904187560081482, - 0.5263171195983887, - 0.4540213346481323, - 0.37550342082977295, - 0.29290521144866943, - 0.20847965776920319, - 0.24335217475891113, - 0.33509567379951477, - 0.423861026763916, - 0.5072269439697266, - 0.5829194784164429, - 0.6488738656044006, - 0.7032910585403442, - 0.7446867227554321, - 0.7719316482543945, - 0.7842826843261719, - 0.7814029455184937, - 0.7633709907531738, - 0.7306785583496094, - 0.684217631816864, - 0.6252554059028625, - 0.5554002523422241, - 0.47655752301216125, - 0.39087802171707153, - 0.30069878697395325, - 0.20847965776920319 - ], - "y": [ - 0.5711567997932434, - 0.5631355047225952, - 0.5556342601776123, - 0.5488576889038086, - 0.5429905652999878, - 0.5381929874420166, - 0.534595787525177, - 0.5322971343994141, - 0.5313596129417419, - 0.5318089723587036, - 0.5336328148841858, - 0.5367814302444458, - 0.5411689281463623, - 0.5466756820678711, - 0.5531513690948486, - 0.560419499874115, - 0.5682817101478577, - 0.5765235424041748, - 0.5849202275276184, - 0.5932427048683167, - 0.5711567997932434, - 0.5935367941856384, - 0.6156075596809387, - 0.6367670297622681, - 0.6564380526542664, - 0.6740840673446655, - 0.6892237067222595, - 0.7014440298080444, - 0.7104116678237915, - 0.7158820033073425, - 0.7177058458328247, - 0.7158334255218506, - 0.7103158831596375, - 0.7013036012649536, - 0.6890425086021423, - 0.6738669872283936, - 0.6561910510063171, - 0.6364968419075012, - 0.6153215169906616, - 0.5932427048683167, - 0.5711567401885986, - 0.6215291619300842, - 0.6708287000656128, - 0.7177107334136963, - 0.7608963251113892, - 0.7992075681686401, - 0.8315994143486023, - 0.8571882843971252, - 0.8752762079238892, - 0.8853697776794434, - 0.8871935606002808, - 0.8806979656219482, - 0.8660601377487183, - 0.8436793088912964, - 0.8141660094261169, - 0.7783252596855164, - 0.7371347546577454, - 0.6917179822921753, - 0.6433138847351074, - 0.5932427048683167, - 0.5711567401885986, - 0.6440792083740234, - 0.715313732624054, - 0.7829172611236572, - 0.8450457453727722, - 0.9000044465065002, - 0.9462943077087402, - 0.9826525449752808, - 1.0080876350402832, - 1.0219054222106934, - 1.0237293243408203, - 1.0135093927383423, - 0.9915244579315186, - 0.9583742022514343, - 0.914962887763977, - 0.8624746799468994, - 0.8023412823677063, - 0.7362030148506165, - 0.6658639311790466, - 0.5932427048683167, - 0.5711567401885986, - 0.6587433218955994, - 0.7442419528961182, - 0.8253204822540283, - 0.8997673392295837, - 0.9655517339706421, - 1.0208792686462402, - 1.0642409324645996, - 1.0944536924362183, - 1.1106934547424316, - 1.112517237663269, - 1.0998754501342773, - 1.0731127262115479, - 1.032959222793579, - 0.9805101752281189, - 0.9171962738037109, - 0.8447444438934326, - 0.7651312351226807, - 0.6805280447006226, - 0.5932427048683167, - 0.5711567401885986, - 0.6639323234558105, - 0.7544785141944885, - 0.8403253555297852, - 0.9191312193870544, - 0.9887464046478271, - 1.0472720861434937, - 1.0931118726730347, - 1.1250152587890625, - 1.1421120166778564, - 1.1439359188079834, - 1.1304371356964111, - 1.101983666419983, - 1.0593520402908325, - 1.0037047863006592, - 0.9365601539611816, - 0.8597493767738342, - 0.775367796421051, - 0.6857171058654785, - 0.5932427048683167, - 0.5711567401885986, - 0.6590840816497803, - 0.744914174079895, - 0.8263058662414551, - 0.9010390043258667, - 0.967074990272522, - 1.0226125717163086, - 1.0661368370056152, - 1.0964605808258057, - 1.1127567291259766, - 1.114580512046814, - 1.1018824577331543, - 1.075008749961853, - 1.0346925258636475, - 0.9820334315299988, - 0.9184679388999939, - 0.8457298278808594, - 0.7658034563064575, - 0.6808688044548035, - 0.5932427048683167, - 0.5711567401885986, - 0.6447238326072693, - 0.7165853977203369, - 0.7847812175750732, - 0.8474512100219727, - 0.9028857946395874, - 0.9495729207992554, - 0.9862390756607056, - 1.011884093284607, - 1.0258084535598755, - 1.027632236480713, - 1.017305850982666, - 0.9951109886169434, - 0.9616528749465942, - 0.917844295501709, - 0.8648802042007446, - 0.8042052388191223, - 0.7374746799468994, - 0.6665085554122925, - 0.5932427048683167, - 0.5711567401885986, - 0.6224077343940735, - 0.6725619435310364, - 0.7202513217926025, - 0.7641750574111938, - 0.8031349182128906, - 0.8360681533813477, - 0.8620766401290894, - 0.8804508447647095, - 0.890689492225647, - 0.8925133347511292, - 0.8858726024627686, - 0.8709485530853271, - 0.8481481075286865, - 0.8180932998657227, - 0.7816039323806763, - 0.7396753430366516, - 0.6934512257575989, - 0.6441924571990967, - 0.5932427048683167, - 0.5711567997932434, - 0.5945541858673096, - 0.6176145672798157, - 0.639708936214447, - 0.6602346301078796, - 0.6786317229270935, - 0.6943984031677246, - 0.7071045637130737, - 0.7164037227630615, - 0.7220420837402344, - 0.7238659262657166, - 0.7218254804611206, - 0.7159764170646667, - 0.7064782381057739, - 0.6935901641845703, - 0.6776635646820068, - 0.6591329574584961, - 0.6385038495063782, - 0.6163389086723328, - 0.5932427048683167, - 0.5711567997932434, - 0.5641814470291138, - 0.557697594165802, - 0.5518820881843567, - 0.5468935966491699, - 0.5428681373596191, - 0.5399155616760254, - 0.5381163954734802, - 0.5375196933746338, - 0.5381417274475098, - 0.5399655699729919, - 0.5429414510726929, - 0.5469881892204285, - 0.5519954562187195, - 0.557826578617096, - 0.5643225312232971, - 0.5713061094284058, - 0.5785868763923645, - 0.585966169834137, - 0.5932427048683167, - 0.5711567997932434, - 0.5345809459686279, - 0.4993039667606354, - 0.4662882089614868, - 0.43643417954444885, - 0.4105563163757324, - 0.38936036825180054, - 0.37342461943626404, - 0.3631837069988251, - 0.3589169681072235, - 0.3607408106327057, - 0.36860549449920654, - 0.38229644298553467, - 0.40144023299217224, - 0.42551466822624207, - 0.45386308431625366, - 0.4857122302055359, - 0.5201932191848755, - 0.5563656687736511, - 0.5932427644729614, - 0.5711567997932434, - 0.5089602470397949, - 0.44876155257225037, - 0.3922026753425598, - 0.3408263921737671, - 0.29603421688079834, - 0.25904783606529236, - 0.2308761477470398, - 0.21228772401809692, - 0.20378953218460083, - 0.205613374710083, - 0.217709481716156, - 0.2397480010986328, - 0.27112770080566406, - 0.3109925389289856, - 0.3582552671432495, - 0.4116266965866089, - 0.46965083479881287, - 0.5307450294494629, - 0.5932427644729614, - 0.5711567997932434, - 0.49009591341018677, - 0.41154736280441284, - 0.337653785943985, - 0.2704307734966278, - 0.2117120325565338, - 0.16309916973114014, - 0.12591829895973206, - 0.10118359327316284, - 0.08956986665725708, - 0.09139370918273926, - 0.10660535097122192, - 0.13479015231132507, - 0.17517903447151184, - 0.22667035460472107, - 0.2878596782684326, - 0.35707780718803406, - 0.43243664503097534, - 0.51188063621521, - 0.5932427644729614, - 0.5711567997932434, - 0.4800320863723755, - 0.39169421792030334, - 0.3085528612136841, - 0.23287582397460938, - 0.16672754287719727, - 0.11191219091415405, - 0.06992506980895996, - 0.041911423206329346, - 0.028635501861572266, - 0.030459344387054443, - 0.04733318090438843, - 0.0787968635559082, - 0.12399205565452576, - 0.18168586492538452, - 0.2503047287464142, - 0.32797688245773315, - 0.41258350014686584, - 0.5018168091773987, - 0.5932427644729614, - 0.5711567997932434, - 0.479859322309494, - 0.39135342836380005, - 0.3080533444881439, - 0.23223119974136353, - 0.16595539450645447, - 0.11103352904319763, - 0.06896388530731201, - 0.0408940315246582, - 0.027589499950408936, - 0.029413342475891113, - 0.046315789222717285, - 0.07783567905426025, - 0.12311339378356934, - 0.18091371655464172, - 0.24966010451316833, - 0.327477365732193, - 0.41224271059036255, - 0.5016440749168396, - 0.5932427644729614, - 0.5711567997932434, - 0.4895963966846466, - 0.4105619788169861, - 0.33620941638946533, - 0.2685667872428894, - 0.20947933197021484, - 0.16055861115455627, - 0.12313917279243469, - 0.09824177622795105, - 0.08654546737670898, - 0.08836930990219116, - 0.10366353392601013, - 0.1320110261440277, - 0.17263847589492798, - 0.2244376242160797, - 0.2859957218170166, - 0.3556334376335144, - 0.4314512610435486, - 0.5113811492919922, - 0.5932427644729614, - 0.5711567997932434, - 0.5081881284713745, - 0.44723832607269287, - 0.38996991515159607, - 0.33794504404067993, - 0.29258283972740173, - 0.25512054562568665, - 0.22658014297485352, - 0.20774012804031372, - 0.19911441206932068, - 0.20093825459480286, - 0.2131618857383728, - 0.23545199632644653, - 0.26720041036605835, - 0.307541161775589, - 0.35537391901016235, - 0.40939393639564514, - 0.46812760829925537, - 0.5299728512763977, - 0.5932427644729614, - 0.5711567997932434, - 0.5336198210716248, - 0.49740803241729736, - 0.46350914239883423, - 0.432847797870636, - 0.4062603712081909, - 0.38447216153144836, - 0.3680773973464966, - 0.3575233519077301, - 0.3530978858470917, - 0.35492172837257385, - 0.3629451394081116, - 0.3769491910934448, - 0.3965519964694977, - 0.42121875286102295, - 0.4502766728401184, - 0.4829331636428833, - 0.5182973146438599, - 0.555404543876648, - 0.5932427644729614, - 0.5711567997932434, - 0.56313556432724, - 0.5556343197822571, - 0.5488577485084534, - 0.5429906249046326, - 0.5381930470466614, - 0.5345958471298218, - 0.5322971940040588, - 0.5313597321510315, - 0.5318090319633484, - 0.5336328744888306, - 0.5367814898490906, - 0.5411690473556519, - 0.5466757416725159, - 0.5531514883041382, - 0.5604195594787598, - 0.5682817697525024, - 0.5765236020088196, - 0.5849202871322632, - 0.5932427048683167 - ], - "z": [ - -2.5597474575042725, - -2.571352243423462, - -2.587744951248169, - -2.6084787845611572, - -2.632988214492798, - -2.660604476928711, - -2.6905744075775146, - -2.7220804691314697, - -2.754263401031494, - -2.786245107650757, - -2.817153215408325, - -2.846144914627075, - -2.872429132461548, - -2.8952889442443848, - -2.9141008853912354, - -2.928351640701294, - -2.937652587890625, - -2.9417500495910645, - -2.9405324459075928, - -2.934032678604126, - -2.5597474575042725, - -2.5693557262420654, - -2.5838065147399902, - -2.602705717086792, - -2.625537872314453, - -2.6516802310943604, - -2.680419921875, - -2.710972309112549, - -2.742504835128784, - -2.7741568088531494, - -2.8050649166107178, - -2.8343863487243652, - -2.861320972442627, - -2.885134220123291, - -2.9051766395568848, - -2.920901298522949, - -2.9318795204162598, - -2.9378116130828857, - -2.9385359287261963, - -2.934032678604126, - -2.5597474575042725, - -2.5665946006774902, - -2.578359603881836, - -2.594721555709839, - -2.615234375, - -2.639338493347168, - -2.6663763523101807, - -2.695610284805298, - -2.726243019104004, - -2.757438898086548, - -2.7883472442626953, - -2.818124532699585, - -2.845958948135376, - -2.871090888977051, - -2.8928349018096924, - -2.910598039627075, - -2.9238955974578857, - -2.9323647022247314, - -2.935774803161621, - -2.934032678604126, - -2.5597474575042725, - -2.563368082046509, - -2.5719945430755615, - -2.5853917598724365, - -2.603194236755371, - -2.6249165534973145, - -2.649965763092041, - -2.677658796310425, - -2.707240343093872, - -2.737903356552124, - -2.7688117027282715, - -2.799121856689453, - -2.828007459640503, - -2.854680299758911, - -2.8784127235412598, - -2.8985579013824463, - -2.9145658016204834, - -2.925999879837036, - -2.9325482845306396, - -2.934032678604126, - -2.5597474575042725, - -2.560025930404663, - -2.565401315689087, - -2.5757274627685547, - -2.5907223224639893, - -2.6099770069122314, - -2.6329662799835205, - -2.6590633392333984, - -2.6875557899475098, - -2.7176668643951416, - -2.748575210571289, - -2.779437303543091, - -2.8094117641448975, - -2.8376808166503906, - -2.863473415374756, - -2.8860857486724854, - -2.9049012660980225, - -2.9194066524505615, - -2.929206132888794, - -2.934032678604126, - -2.5597474575042725, - -2.5569300651550293, - -2.5592942237854004, - -2.5667755603790283, - -2.579169750213623, - -2.5961389541625977, - -2.617220401763916, - -2.641838788986206, - -2.6693227291107178, - -2.698922634124756, - -2.729830741882324, - -2.761204242706299, - -2.792187452316284, - -2.821934938430786, - -2.849635362625122, - -2.874533176422119, - -2.895949363708496, - -2.913299560546875, - -2.92611026763916, - -2.934032678604126, - -2.5597474575042725, - -2.5544161796569824, - -2.554335117340088, - -2.5595061779022217, - -2.569788694381714, - -2.584902286529541, - -2.6044342517852783, - -2.627851963043213, - -2.6545169353485107, - -2.683701515197754, - -2.7146098613739014, - -2.746398448944092, - -2.778200626373291, - -2.8091487884521484, - -2.8383984565734863, - -2.865152359008789, - -2.8886799812316895, - -2.9083402156829834, - -2.9235963821411133, - -2.934032678604126, - -2.5597474575042725, - -2.5527565479278564, - -2.5510611534118652, - -2.5547072887420654, - -2.563595771789551, - -2.577484130859375, - -2.5959932804107666, - -2.6186184883117676, - -2.644742727279663, - -2.6736533641815186, - -2.704561471939087, - -2.736624240875244, - -2.7689671516418457, - -2.8007078170776367, - -2.8309805393218994, - -2.858959197998047, - -2.8838813304901123, - -2.90506649017334, - -2.9219369888305664, - -2.934032678604126, - -2.5597474575042725, - -2.552131175994873, - -2.5498273372650146, - -2.55289888381958, - -2.5612621307373047, - -2.574688673019409, - -2.5928125381469727, - -2.6151390075683594, - -2.641059398651123, - -2.6698665618896484, - -2.700774908065796, - -2.732940912246704, - -2.7654876708984375, - -2.7975268363952637, - -2.8281850814819336, - -2.856625556945801, - -2.882072925567627, - -2.9038326740264893, - -2.921311378479004, - -2.934032678604126, - -2.5597474575042725, - -2.552607774734497, - -2.550767421722412, - -2.554276943206787, - -2.5630404949188232, - -2.5768187046051025, - -2.595236301422119, - -2.617790460586548, - -2.6438660621643066, - -2.6727521419525146, - -2.703660249710083, - -2.7357475757598877, - -2.768138885498047, - -2.7999508380889893, - -2.830315113067627, - -2.8584039211273193, - -2.883450746536255, - -2.9047727584838867, - -2.921787977218628, - -2.934032678604126, - -2.5597474575042725, - -2.5541346073150635, - -2.5537796020507812, - -2.55869197845459, - -2.5687379837036133, - -2.583643674850464, - -2.6030020713806152, - -2.6262855529785156, - -2.6528584957122803, - -2.6819968223571777, - -2.712904930114746, - -2.7447402477264404, - -2.7766339778900146, - -2.8077166080474854, - -2.837139844894409, - -2.8641014099121094, - -2.8878657817840576, - -2.9077847003936768, - -2.9233148097991943, - -2.934032678604126, - -2.5597474575042725, - -2.556546211242676, - -2.558537006378174, - -2.5656657218933105, - -2.57773756980896, - -2.594423532485962, - -2.6152684688568115, - -2.6397035121917725, - -2.667062520980835, - -2.696599006652832, - -2.7275071144104004, - -2.758944034576416, - -2.7900521755218506, - -2.8199830055236816, - -2.8479199409484863, - -2.873100996017456, - -2.8948395252227783, - -2.9125423431396484, - -2.9257266521453857, - -2.934032678604126, - -2.5597474575042725, - -2.5595815181732178, - -2.5645246505737305, - -2.5744423866271973, - -2.589063882827759, - -2.6079905033111572, - -2.6307060718536377, - -2.656590700149536, - -2.684938430786133, - -2.7149763107299805, - -2.745884418487549, - -2.776819944381714, - -2.8069393634796143, - -2.835420608520508, - -2.8614869117736816, - -2.884427309036255, - -2.903616189956665, - -2.918529987335205, - -2.9287617206573486, - -2.934032678604126, - -2.5597474575042725, - -2.56291127204895, - -2.5710933208465576, - -2.5840706825256348, - -2.601489543914795, - -2.6228742599487305, - -2.647641897201538, - -2.675117015838623, - -2.704549551010132, - -2.7351372241973877, - -2.766045331954956, - -2.796431064605713, - -2.825465440750122, - -2.852356433868408, - -2.876370668411255, - -2.896852970123291, - -2.9132447242736816, - -2.9250986576080322, - -2.932091474533081, - -2.934032678604126, - -2.5597474575042725, - -2.5661747455596924, - -2.577531337738037, - -2.593507766723633, - -2.6136679649353027, - -2.6374619007110596, - -2.664241075515747, - -2.69327449798584, - -2.7237703800201416, - -2.754897117614746, - -2.7858052253723145, - -2.8156518936157227, - -2.843623161315918, - -2.868955612182617, - -2.890958309173584, - -2.909031391143799, - -2.9226815700531006, - -2.9315366744995117, - -2.9353549480438232, - -2.934032678604126, - -2.5597474575042725, - -2.5690183639526367, - -2.5831410884857178, - -2.6017303466796875, - -2.624279260635376, - -2.650172710418701, - -2.678704261779785, - -2.7090959548950195, - -2.74051833152771, - -2.7721145153045654, - -2.803022861480713, - -2.832399845123291, - -2.8594443798065186, - -2.8834187984466553, - -2.9036691188812256, - -2.919642686843872, - -2.9309041500091553, - -2.9371461868286133, - -2.9381985664367676, - -2.934032678604126, - -2.5597474575042725, - -2.571133852005005, - -2.5873146057128906, - -2.6078479290008545, - -2.632174015045166, - -2.6596291065216064, - -2.689464569091797, - -2.7208664417266846, - -2.7529783248901367, - -2.784924030303955, - -2.8158321380615234, - -2.8448598384857178, - -2.8712151050567627, - -2.894179105758667, - -2.913125514984131, - -2.927537441253662, - -2.9370217323303223, - -2.941319704055786, - -2.940314292907715, - -2.934032678604126, - -2.5597474575042725, - -2.5722923278808594, - -2.589599370956421, - -2.6111972332000732, - -2.6364963054656982, - -2.664806604385376, - -2.6953558921813965, - -2.7273108959198, - -2.7598001956939697, - -2.7919371128082275, - -2.822845220565796, - -2.851681709289551, - -2.877659559249878, - -2.9000704288482666, - -2.9183030128479004, - -2.9318597316741943, - -2.940371036529541, - -2.9436047077178955, - -2.9414725303649902, - -2.934032678604126, - -2.5597474575042725, - -2.5723676681518555, - -2.5897483825683594, - -2.611415386199951, - -2.636777877807617, - -2.6651439666748047, - -2.69573974609375, - -2.7277307510375977, - -2.760244607925415, - -2.792393922805786, - -2.8233022689819336, - -2.852126121520996, - -2.878079414367676, - -2.90045428276062, - -2.91864013671875, - -2.9321413040161133, - -2.940589189529419, - -2.943753480911255, - -2.9415478706359863, - -2.934032678604126, - -2.5597474575042725, - -2.571352243423462, - -2.587744951248169, - -2.6084787845611572, - -2.632988214492798, - -2.660604476928711, - -2.6905744075775146, - -2.7220804691314697, - -2.754263401031494, - -2.786245107650757, - -2.817153215408325, - -2.846144914627075, - -2.872429132461548, - -2.8952889442443848, - -2.9141008853912354, - -2.928351640701294, - -2.937652587890625, - -2.9417500495910645, - -2.9405324459075928, - -2.934032678604126 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.21316376328468323, - 0.3156668543815613, - 0.41489818692207336, - 0.5081509351730347, - 0.592881441116333, - 0.6667784452438354, - 0.7278262376785278, - 0.7743597030639648, - 0.8051092624664307, - 0.8192363977432251, - 0.8163557052612305, - 0.7965457439422607, - 0.7603468894958496, - 0.7087464332580566, - 0.643152117729187, - 0.5653529763221741, - 0.4774712324142456, - 0.38190415501594543, - 0.2812584936618805, - 0.17827960848808289, - 0.21316376328468323, - 0.308745801448822, - 0.4012448191642761, - 0.48813772201538086, - 0.5670543313026428, - 0.6358418464660645, - 0.6926240921020508, - 0.7358521223068237, - 0.7643468379974365, - 0.7773308753967285, - 0.7744501829147339, - 0.7557833194732666, - 0.7218393087387085, - 0.6735442876815796, - 0.612215518951416, - 0.5395258069038391, - 0.4574580192565918, - 0.3682507872581482, - 0.27433744072914124, - 0.17827960848808289, - 0.21316377818584442, - 0.2914411425590515, - 0.3671075701713562, - 0.4380990266799927, - 0.502479076385498, - 0.558491587638855, - 0.6046086549758911, - 0.6395723819732666, - 0.6624289751052856, - 0.6725550293922424, - 0.6696743369102478, - 0.6538654565811157, - 0.6255595684051514, - 0.5855288505554199, - 0.5348652601242065, - 0.4749506115913391, - 0.4074193239212036, - 0.33411353826522827, - 0.2570327818393707, - 0.17827962338924408, - 0.21316377818584442, - 0.2656281888484955, - 0.31618571281433105, - 0.3634573221206665, - 0.40615350008010864, - 0.4431096911430359, - 0.4733177423477173, - 0.495953768491745, - 0.5104001760482788, - 0.516262948513031, - 0.5133822560310364, - 0.5018365979194641, - 0.48194095492362976, - 0.4542379379272461, - 0.4194833040237427, - 0.3786250352859497, - 0.33277761936187744, - 0.2831916809082031, - 0.2312197983264923, - 0.17827962338924408, - 0.21316379308700562, - 0.23410408198833466, - 0.25399741530418396, - 0.2723011374473572, - 0.28851595520973206, - 0.3021996021270752, - 0.3129788041114807, - 0.320559561252594, - 0.32473504543304443, - 0.32539135217666626, - 0.32251065969467163, - 0.3161714971065521, - 0.30654674768447876, - 0.2938989996910095, - 0.278573215007782, - 0.26098746061325073, - 0.24162143468856812, - 0.22100336849689484, - 0.19969570636749268, - 0.17827963829040527, - 0.21316379308700562, - 0.20028500258922577, - 0.1872817426919937, - 0.1745086908340454, - 0.1623142808675766, - 0.15103113651275635, - 0.14096704125404358, - 0.13239650428295135, - 0.12555330991744995, - 0.1206241324543953, - 0.11774342507123947, - 0.11698976159095764, - 0.11838369816541672, - 0.1218872144818306, - 0.12740474939346313, - 0.13478577136993408, - 0.14382898807525635, - 0.1542876958847046, - 0.1658766269683838, - 0.17827963829040527, - 0.2131638079881668, - 0.1678357720375061, - 0.12326838076114655, - 0.080677330493927, - 0.041224390268325806, - 0.005985751748085022, - -0.024077385663986206, - -0.04814499616622925, - -0.06556054949760437, - -0.0758490264415741, - -0.07872971892356873, - -0.07412412762641907, - -0.06215780973434448, - -0.04315723478794098, - -0.017640680074691772, - 0.013695880770683289, - 0.04999762773513794, - 0.09027434885501862, - 0.13342738151550293, - 0.17827965319156647, - 0.2131638079881668, - 0.14027273654937744, - 0.068894162774086, - 0.0009751319885253906, - -0.061631739139556885, - -0.11721870303153992, - -0.16426944732666016, - -0.2015005350112915, - -0.22789648175239563, - -0.24273720383644104, - -0.24561789631843567, - -0.23646005988121033, - -0.21551334857940674, - -0.18334925174713135, - -0.14084511995315552, - -0.08916029334068298, - -0.029704570770263672, - 0.03590013086795807, - 0.10586435347795486, - 0.17827965319156647, - 0.213163822889328, - 0.12058280408382416, - 0.030051395297050476, - -0.05596095323562622, - -0.135108083486557, - -0.2052309811115265, - -0.26441702246665955, - -0.3110516369342804, - -0.3438628613948822, - -0.3619554340839386, - -0.3648361265659332, - -0.3524263799190521, - -0.32506445050239563, - -0.2834968566894531, - -0.22885745763778687, - -0.16263660788536072, - -0.08664065599441528, - -0.0029426366090774536, - 0.08617442846298218, - 0.17827966809272766, - 0.213163822889328, - 0.11089968681335449, - 0.010949268937110901, - -0.08396100997924805, - -0.17124226689338684, - -0.24851372838020325, - -0.3136676251888275, - -0.3649267256259918, - -0.4008927643299103, - -0.42058470845222473, - -0.42346540093421936, - -0.4094562828540802, - -0.37893953919410706, - -0.3327474892139435, - -0.27214017510414124, - -0.19877085089683533, - -0.11464071273803711, - -0.02204476296901703, - 0.07649131119251251, - 0.17827966809272766, - 0.213163822889328, - 0.11227268725633621, - 0.013657838106155396, - -0.07999077439308167, - -0.16611865162849426, - -0.24237653613090515, - -0.3066841661930084, - -0.35728761553764343, - -0.3928062617778778, - -0.4122714698314667, - -0.4151521623134613, - -0.40136978030204773, - -0.37130042910575867, - -0.3257640302181244, - -0.26600298285484314, - -0.19364723563194275, - -0.11067047715187073, - -0.019336193799972534, - 0.07786431163549423, - 0.17827966809272766, - 0.213163822889328, - 0.12455303221940994, - 0.03788354992866516, - -0.04448050260543823, - -0.12029248476028442, - -0.18748438358306885, - -0.24422350525856018, - -0.2889620065689087, - -0.3204796612262726, - -0.3379165828227997, - -0.3407972753047943, - -0.3290431797504425, - -0.3029748201370239, - -0.26330333948135376, - -0.21111086010932922, - -0.14782100915908813, - -0.0751602053642273, - 0.0048895180225372314, - 0.09014465659856796, - 0.17827966809272766, - 0.2131638079881668, - 0.14640994369983673, - 0.0810011774301529, - 0.018721699714660645, - -0.038729727268218994, - -0.0897858738899231, - -0.13305413722991943, - -0.1673542857170105, - -0.1917506456375122, - -0.20557773113250732, - -0.20845842361450195, - -0.2003142237663269, - -0.18136709928512573, - -0.152133971452713, - -0.1134122908115387, - -0.06625822186470032, - -0.011958003044128418, - 0.04800714552402496, - 0.11200156807899475, - 0.17827965319156647, - 0.2131638079881668, - 0.17547491192817688, - 0.13833831250667572, - 0.1027669832110405, - 0.06973119080066681, - 0.04013212025165558, - 0.014777138829231262, - -0.00564219057559967, - -0.020568817853927612, - -0.02959558367729187, - -0.03247630596160889, - -0.029132366180419922, - -0.019655004143714905, - -0.004302710294723511, - 0.016505718231201172, - 0.04220268130302429, - 0.07208728045225143, - 0.10534428060054779, - 0.1410665363073349, - 0.17827965319156647, - 0.21316379308700562, - 0.20859824120998383, - 0.20368145406246185, - 0.19854754209518433, - 0.19333654642105103, - 0.18819060921669006, - 0.18325011432170868, - 0.17864979803562164, - 0.17451517283916473, - 0.1709589958190918, - 0.16807828843593597, - 0.16595160961151123, - 0.1646369993686676, - 0.1641702950000763, - 0.16456422209739685, - 0.1658080518245697, - 0.16786783933639526, - 0.17068740725517273, - 0.17418986558914185, - 0.17827963829040527, - 0.21316379308700562, - 0.24219053983688354, - 0.269949734210968, - 0.29568418860435486, - 0.3186919093132019, - 0.33834534883499146, - 0.35410839319229126, - 0.36555105447769165, - 0.3723611831665039, - 0.3743530809879303, - 0.3714723587036133, - 0.3637976348400116, - 0.3515382409095764, - 0.3350285589694977, - 0.31471896171569824, - 0.29116344451904297, - 0.2650044858455658, - 0.2369557023048401, - 0.20778214931488037, - 0.17827963829040527, - 0.21316377818584442, - 0.2726115882396698, - 0.3299620747566223, - 0.3836508095264435, - 0.43221330642700195, - 0.4743249714374542, - 0.5088369846343994, - 0.5348081588745117, - 0.5515298843383789, - 0.5585460662841797, - 0.5556653738021851, - 0.5429663062095642, - 0.5207953453063965, - 0.489757239818573, - 0.4506986141204834, - 0.404684841632843, - 0.3529711067676544, - 0.2969680428504944, - 0.23820321261882782, - 0.17827962338924408, - 0.21316376328468323, - 0.2965647876262665, - 0.37721505761146545, - 0.45291465520858765, - 0.5215986967086792, - 0.5813936591148376, - 0.6306685209274292, - 0.6680791974067688, - 0.6926051378250122, - 0.7035773992538452, - 0.7006967067718506, - 0.6840416193008423, - 0.6540663838386536, - 0.611588716506958, - 0.557767391204834, - 0.49407023191452026, - 0.4222349524497986, - 0.3442210257053375, - 0.2621563971042633, - 0.17827960848808289, - 0.21316376328468323, - 0.3114543855190277, - 0.4065881073474884, - 0.4959699511528015, - 0.5771617889404297, - 0.6479489207267761, - 0.7064005136489868, - 0.7509222030639648, - 0.7802993059158325, - 0.7937307357788086, - 0.790850043296814, - 0.7717357873916626, - 0.7369093894958496, - 0.6873207092285156, - 0.6243226528167725, - 0.549633264541626, - 0.46529024839401245, - 0.3735940754413605, - 0.27704599499702454, - 0.17827960848808289, - 0.21316376328468323, - 0.3156668543815613, - 0.41489818692207336, - 0.5081509351730347, - 0.592881441116333, - 0.6667784452438354, - 0.7278262376785278, - 0.7743597030639648, - 0.8051092624664307, - 0.8192363977432251, - 0.8163557052612305, - 0.7965457439422607, - 0.7603468894958496, - 0.7087464332580566, - 0.643152117729187, - 0.5653529763221741, - 0.4774712324142456, - 0.38190415501594543, - 0.2812584936618805, - 0.17827960848808289 - ], - "y": [ - 0.5902760624885559, - 0.5951712727546692, - 0.6002342104911804, - 0.6053268313407898, - 0.6103102564811707, - 0.6150485277175903, - 0.6194124221801758, - 0.6232828497886658, - 0.6265542507171631, - 0.629137396812439, - 0.6309618949890137, - 0.6319778561592102, - 0.6321576237678528, - 0.6314963102340698, - 0.6300119757652283, - 0.6277450323104858, - 0.6247573494911194, - 0.6211304664611816, - 0.616963267326355, - 0.6123694777488708, - 0.5902760624885559, - 0.6283524632453918, - 0.665691614151001, - 0.7012748718261719, - 0.7341317534446716, - 0.7633659243583679, - 0.7881799936294556, - 0.8078970909118652, - 0.8219793438911438, - 0.8300426602363586, - 0.8318670988082886, - 0.8274029493331909, - 0.8167718648910522, - 0.8002639412879944, - 0.7783293724060059, - 0.7515665292739868, - 0.7207053899765015, - 0.6865878701210022, - 0.6501445174217224, - 0.6123694181442261, - 0.5902760624885559, - 0.6574238538742065, - 0.7230414152145386, - 0.7853387594223022, - 0.8426166772842407, - 0.8933125734329224, - 0.936043918132782, - 0.9696449041366577, - 0.9931990504264832, - 1.00606369972229, - 1.0078881978988647, - 0.9986226558685303, - 0.9785196781158447, - 0.9481278657913208, - 0.9082761406898499, - 0.8600513935089111, - 0.8047692775726318, - 0.7439377307891846, - 0.6792159080505371, - 0.6123694181442261, - 0.5902760624885559, - 0.6792351007461548, - 0.7660689353942871, - 0.8484088778495789, - 0.9240089654922485, - 0.9908069372177124, - 1.046980857849121, - 1.0909985303878784, - 1.1216590404510498, - 1.138126015663147, - 1.1399505138397217, - 1.1270825862884521, - 1.0998733043670654, - 1.0590648651123047, - 1.0057704448699951, - 0.9414437413215637, - 0.8678393959999084, - 0.7869651913642883, - 0.7010271549224854, - 0.6123694181442261, - 0.5902760624885559, - 0.6914225816726685, - 0.7901114225387573, - 0.883650541305542, - 0.9694885611534119, - 1.0452839136123657, - 1.1089692115783691, - 1.1588072776794434, - 1.1934385299682617, - 1.2119183540344238, - 1.2137428522109985, - 1.198862075805664, - 1.1676820516586304, - 1.1210532188415527, - 1.0602474212646484, - 0.986923336982727, - 0.9030810594558716, - 0.8110076785087585, - 0.713214635848999, - 0.6123694181442261, - 0.5902760624885559, - 0.6926655769348145, - 0.7925634384155273, - 0.8872448205947876, - 0.974126935005188, - 1.050839900970459, - 1.1152913570404053, - 1.1657230854034424, - 1.2007592916488647, - 1.2194443941116333, - 1.221268892288208, - 1.206182837486267, - 1.1745977401733398, - 1.1273753643035889, - 1.0658035278320312, - 0.991561770439148, - 0.9066753387451172, - 0.8134597539901733, - 0.7144575715065002, - 0.6123694181442261, - 0.5902760624885559, - 0.6828293800354004, - 0.7731594443321228, - 0.8588021993637085, - 0.9374216794967651, - 1.0068731307983398, - 1.0652623176574707, - 1.1109964847564697, - 1.1428279876708984, - 1.159888505935669, - 1.1617131233215332, - 1.1482515335083008, - 1.1198712587356567, - 1.0773463249206543, - 1.0218366384506226, - 0.9548564553260803, - 0.8782327175140381, - 0.794055700302124, - 0.704621434211731, - 0.6123694181442261, - 0.5902760624885559, - 0.6629799604415894, - 0.7340019941329956, - 0.8014049530029297, - 0.8633500933647156, - 0.91814786195755, - 0.9643034338951111, - 1.0005578994750977, - 1.0259222984313965, - 1.03970468044281, - 1.0415290594100952, - 1.0313458442687988, - 1.0094326734542847, - 0.9763873815536499, - 0.9331113696098328, - 0.8807848691940308, - 0.8208354711532593, - 0.7548983097076416, - 0.6847720146179199, - 0.6123694181442261, - 0.5902760624885559, - 0.6352682709693909, - 0.6793345212936401, - 0.7212728261947632, - 0.7599391937255859, - 0.7942789196968079, - 0.8233553171157837, - 0.8463752269744873, - 0.8627107739448547, - 0.8719162940979004, - 0.8737407326698303, - 0.8681343793869019, - 0.8552500009536743, - 0.8354392051696777, - 0.8092423677444458, - 0.7773739695549011, - 0.7407033443450928, - 0.7002308368682861, - 0.6570603251457214, - 0.6123694181442261, - 0.5902760624885559, - 0.6026973128318787, - 0.6150810122489929, - 0.6270895004272461, - 0.6383950710296631, - 0.6486893892288208, - 0.6576917171478271, - 0.6651564240455627, - 0.6708799600601196, - 0.6747061014175415, - 0.6765305399894714, - 0.6763035655021667, - 0.6740312576293945, - 0.669775664806366, - 0.6636528372764587, - 0.6558298468589783, - 0.6465200185775757, - 0.6359773278236389, - 0.6244893670082092, - 0.6123694181442261, - 0.5902761220932007, - 0.5687966346740723, - 0.5482044219970703, - 0.5290610790252686, - 0.5118889212608337, - 0.4971562325954437, - 0.48526495695114136, - 0.4765394330024719, - 0.47121769189834595, - 0.4694448411464691, - 0.47126930952072144, - 0.47664129734039307, - 0.4854142367839813, - 0.4973488748073578, - 0.5121196508407593, - 0.5293236374855042, - 0.5484915971755981, - 0.5691006779670715, - 0.5905886888504028, - 0.6123694777488708, - 0.5902761220932007, - 0.5372399091720581, - 0.4859517514705658, - 0.43781059980392456, - 0.3941296339035034, - 0.3561003804206848, - 0.3247601091861725, - 0.30096378922462463, - 0.2853604257106781, - 0.2783757746219635, - 0.28020021319389343, - 0.2907840311527252, - 0.30983856320381165, - 0.3368440568447113, - 0.371063768863678, - 0.4115644097328186, - 0.45724111795425415, - 0.5068480372428894, - 0.5590319633483887, - 0.6123694777488708, - 0.5902761220932007, - 0.5114468336105347, - 0.43506914377212524, - 0.36322641372680664, - 0.29787829518318176, - 0.2408074140548706, - 0.19357040524482727, - 0.15745580196380615, - 0.1334487497806549, - 0.12220415472984314, - 0.12402859330177307, - 0.13887235522270203, - 0.16633057594299316, - 0.2056543231010437, - 0.2557707726955414, - 0.31531304121017456, - 0.38265693187713623, - 0.45596539974212646, - 0.5332388877868652, - 0.6123694777488708, - 0.5902761220932007, - 0.49421241879463196, - 0.40107041597366333, - 0.3133907914161682, - 0.23356518149375916, - 0.16377106308937073, - 0.10591214895248413, - 0.061566829681396484, - 0.03194457292556763, - 0.017853498458862305, - 0.01967799663543701, - 0.03736811876296997, - 0.0704416036605835, - 0.11799606680870056, - 0.1787344217300415, - 0.25099992752075195, - 0.3328213095664978, - 0.42196670174598694, - 0.5160044431686401, - 0.6123694777488708, - 0.5902761220932007, - 0.48740434646606445, - 0.38763999938964844, - 0.2937043309211731, - 0.2081596553325653, - 0.133339524269104, - 0.0712847113609314, - 0.023688018321990967, - -0.008152365684509277, - -0.023367881774902344, - -0.021543383598327637, - -0.0027288198471069336, - 0.03256279230117798, - 0.08336859941482544, - 0.14830288290977478, - 0.22559437155723572, - 0.3131348490715027, - 0.40853625535964966, - 0.509196400642395, - 0.6123694777488708, - 0.5902761220932007, - 0.49176034331321716, - 0.39623314142227173, - 0.30630025267601013, - 0.22441476583480835, - 0.1528104543685913, - 0.09344029426574707, - 0.04792386293411255, - 0.01750272512435913, - 0.0030066370964050293, - 0.004831135272979736, - 0.022926270961761475, - 0.05679863691329956, - 0.1055242121219635, - 0.16777381300926208, - 0.24184951186180115, - 0.3257307708263397, - 0.41712939739227295, - 0.5135523676872253, - 0.6123694777488708, - 0.5902761220932007, - 0.5068084001541138, - 0.4259187579154968, - 0.34981366991996765, - 0.2805691361427307, - 0.2200739085674286, - 0.16997814178466797, - 0.13164836168289185, - 0.10613003373146057, - 0.09411931037902832, - 0.09594380855560303, - 0.11155363917350769, - 0.14052313566207886, - 0.1820620596408844, - 0.23503726720809937, - 0.2980039119720459, - 0.36924421787261963, - 0.44681504368782043, - 0.5286003947257996, - 0.6123694777488708, - 0.5902761220932007, - 0.530917763710022, - 0.4734799265861511, - 0.4195292592048645, - 0.3705374598503113, - 0.3278409242630005, - 0.2926042079925537, - 0.2657885253429413, - 0.2481253445148468, - 0.24009650945663452, - 0.24192094802856445, - 0.2535489499568939, - 0.2746632993221283, - 0.30468812584877014, - 0.34280431270599365, - 0.3879722058773041, - 0.4389597773551941, - 0.49437618255615234, - 0.5527098178863525, - 0.6123694777488708, - 0.5902761220932007, - 0.561475932598114, - 0.5337626338005066, - 0.5078922510147095, - 0.48457035422325134, - 0.4644331932067871, - 0.4480299949645996, - 0.4358082413673401, - 0.4281013011932373, - 0.42511940002441406, - 0.4269438683986664, - 0.4335249066352844, - 0.4446830451488495, - 0.46011391282081604, - 0.4793965816497803, - 0.5020051002502441, - 0.5273227691650391, - 0.5546588897705078, - 0.5832679271697998, - 0.6123694777488708, - 0.5902760624885559, - 0.5951712727546692, - 0.6002342104911804, - 0.6053268909454346, - 0.6103103160858154, - 0.6150486469268799, - 0.6194124817848206, - 0.6232829689979553, - 0.6265543699264526, - 0.6291375160217285, - 0.6309620141983032, - 0.6319779753684998, - 0.6321577429771423, - 0.6314964294433594, - 0.630012035369873, - 0.6277450919151306, - 0.6247574090957642, - 0.6211305260658264, - 0.6169633269309998, - 0.6123694777488708 - ], - "z": [ - -2.883758068084717, - -2.895603656768799, - -2.9122328758239746, - -2.9331915378570557, - -2.9579086303710938, - -2.9857091903686523, - -3.0158355236053467, - -3.0474653244018555, - -3.0797362327575684, - -3.1117677688598633, - -3.142686367034912, - -3.1716485023498535, - -3.197864055633545, - -3.22061824798584, - -3.2392899990081787, - -3.253370523452759, - -3.2624752521514893, - -3.2663559913635254, - -3.264907121658325, - -3.2581677436828613, - -2.883758068084717, - -2.893000841140747, - -2.9070982933044434, - -2.9256651401519775, - -2.948195695877075, - -2.9740748405456543, - -3.002596855163574, - -3.0329837799072266, - -3.064406633377075, - -3.09600830078125, - -3.126926898956299, - -3.1563189029693604, - -3.183382511138916, - -3.2073795795440674, - -3.2276556491851807, - -3.2436575889587402, - -3.254948854446411, - -3.261221408843994, - -3.2623043060302734, - -3.2581677436828613, - -2.883758068084717, - -2.8896732330322266, - -2.900533437728882, - -2.9160425662994385, - -2.9357776641845703, - -2.959200143814087, - -2.985671043395996, - -3.0144686698913574, - -3.0448074340820312, - -3.075859546661377, - -3.106778144836426, - -3.1367197036743164, - -3.164867401123047, - -3.1904540061950684, - -3.2127809524536133, - -3.2312395572662354, - -3.245326280593872, - -3.2546567916870117, - -3.258976459503174, - -3.2581677436828613, - -2.883758068084717, - -2.8859810829162598, - -2.893249988555908, - -2.9053664207458496, - -2.921999931335449, - -2.9426968097686768, - -2.9668924808502197, - -2.993926763534546, - -3.0230624675750732, - -3.053504705429077, - -3.084423303604126, - -3.1149747371673584, - -3.1443254947662354, - -3.171675205230713, - -3.196277618408203, - -3.2174620628356934, - -3.234650135040283, - -3.247373342514038, - -3.255284547805786, - -3.2581677436828613, - -2.883758068084717, - -2.882324695587158, - -2.8860371112823486, - -2.894793748855591, - -2.908355951309204, - -2.9263534545898438, - -2.9482955932617188, - -2.973583936691284, - -3.001528263092041, - -3.0313668251037598, - -3.0622851848602295, - -3.093440532684326, - -3.1239826679229736, - -3.153078317642212, - -3.179934501647949, - -3.203817844390869, - -3.2240774631500244, - -3.2401604652404785, - -3.2516281604766846, - -3.2581677436828613, - -2.883758068084717, - -2.8791005611419678, - -2.879676580429077, - -2.885470390319824, - -2.8963239192962646, - -2.9119410514831543, - -2.931896209716797, - -2.955644369125366, - -2.9825384616851807, - -3.0118441581726074, - -3.0427627563476562, - -3.0744504928588867, - -3.1060431003570557, - -3.13667893409729, - -3.1655220985412598, - -3.1917858123779297, - -3.2147538661956787, - -3.233799695968628, - -3.248403787612915, - -3.2581677436828613, - -2.883758068084717, - -2.876657485961914, - -2.8748574256896973, - -2.878406286239624, - -2.8872077465057373, - -2.9010214805603027, - -2.91947078704834, - -2.9420526027679443, - -2.9681506156921387, - -2.9970529079437256, - -3.0279715061187744, - -3.0600626468658447, - -3.092451333999634, - -3.124253749847412, - -3.154602289199829, - -3.1826696395874023, - -3.2076900005340576, - -3.228980541229248, - -3.2459609508514404, - -3.2581677436828613, - -2.883758068084717, - -2.875260829925537, - -2.8721017837524414, - -2.8743672370910645, - -2.881995439529419, - -2.89477801322937, - -2.9123663902282715, - -2.93428111076355, - -2.9599239826202393, - -2.988595724105835, - -3.019514322280884, - -3.0518360137939453, - -3.0846798419952393, - -3.1171493530273438, - -3.1483588218688965, - -3.177457332611084, - -3.203650951385498, - -3.2262251377105713, - -3.2445640563964844, - -3.2581677436828613, - -2.883758068084717, - -2.875061511993408, - -2.871708631515503, - -2.873790979385376, - -2.881251573562622, - -2.8938870429992676, - -2.9113526344299316, - -2.9331722259521484, - -2.958750009536743, - -2.987388849258423, - -3.0183074474334717, - -3.0506622791290283, - -3.083570957183838, - -3.116135597229004, - -3.147468090057373, - -3.176713705062866, - -3.2030746936798096, - -3.225831985473633, - -3.2443649768829346, - -3.2581677436828613, - -2.883758068084717, - -2.8760812282562256, - -2.873720407485962, - -2.876739740371704, - -2.885056972503662, - -2.8984453678131104, - -2.9165396690368652, - -2.9388458728790283, - -2.9647562503814697, - -2.993563413619995, - -3.024482011795044, - -3.056668281555176, - -3.0892446041107178, - -3.1213223934173584, - -3.1520261764526367, - -3.1805191040039062, - -3.2060234546661377, - -3.227843761444092, - -3.245384693145752, - -3.2581677436828613, - -2.883758068084717, - -2.8782095909118652, - -2.8779189586639404, - -2.882894277572632, - -2.8929994106292725, - -2.907958984375, - -2.9273648262023926, - -2.9506876468658447, - -2.9772913455963135, - -3.0064501762390137, - -3.0373687744140625, - -3.0692036151885986, - -3.101086378097534, - -3.1321475505828857, - -3.1615397930145264, - -3.1884613037109375, - -3.2121777534484863, - -3.2320423126220703, - -3.2475130558013916, - -3.2581677436828613, - -2.883758068084717, - -2.881215810775757, - -2.883849620819092, - -2.891587257385254, - -2.9042179584503174, - -2.9213967323303223, - -2.942655563354492, - -2.967414140701294, - -2.994997262954712, - -3.0246524810791016, - -3.0555710792541504, - -3.086909532546997, - -3.1178128719329834, - -3.1474382877349854, - -3.1749777793884277, - -3.1996798515319824, - -3.2208709716796875, - -3.2379729747772217, - -3.250519275665283, - -3.2581677436828613, - -2.883758068084717, - -2.8847742080688477, - -2.890869379043579, - -2.901876926422119, - -2.917496681213379, - -2.937302827835083, - -2.960754632949829, - -2.987212657928467, - -3.0159552097320557, - -3.0461981296539307, - -3.0771167278289795, - -3.107867479324341, - -3.1376113891601562, - -3.1655373573303223, - -3.1908836364746094, - -3.212958812713623, - -3.2311606407165527, - -3.244992733001709, - -3.254077672958374, - -3.2581677436828613, - -2.883758068084717, - -2.8884992599487305, - -2.8982176780700684, - -2.9126482009887695, - -2.9313971996307373, - -2.953953266143799, - -2.979700803756714, - -3.0079379081726074, - -3.0378940105438232, - -3.0687522888183594, - -3.099670648574829, - -3.1298060417175293, - -3.1583364009857178, - -3.184483528137207, - -3.207534074783325, - -3.2268590927124023, - -3.241931915283203, - -3.2523410320281982, - -3.257802724838257, - -3.2581677436828613, - -2.883758068084717, - -2.8919870853424072, - -2.9050984382629395, - -2.922734022140503, - -2.9444127082824707, - -2.969543695449829, - -2.997440814971924, - -3.02734375, - -3.058436155319214, - -3.0898704528808594, - -3.120789051055908, - -3.150348424911499, - -3.1777424812316895, - -3.202223777770996, - -3.2231245040893555, - -3.239874839782715, - -3.2520174980163574, - -3.2592217922210693, - -3.2612905502319336, - -3.2581677436828613, - -2.883758068084717, - -2.894860029220581, - -2.9107656478881836, - -2.9310410022735596, - -2.9551331996917725, - -2.98238468170166, - -3.012052536010742, - -3.0433273315429688, - -3.0753557682037354, - -3.107264518737793, - -3.138183116912842, - -3.1672680377960205, - -3.193726062774658, - -3.2168352603912354, - -3.2359657287597656, - -3.2505950927734375, - -3.260324716567993, - -3.2648890018463135, - -3.2641634941101074, - -3.2581677436828613, - -2.883758068084717, - -2.896806478500366, - -2.9146053791046143, - -2.93666934967041, - -2.9623963832855225, - -2.9910850524902344, - -3.0219523906707764, - -3.05415678024292, - -3.0868194103240967, - -3.119049549102783, - -3.149968147277832, - -3.178731679916382, - -3.2045555114746094, - -3.2267351150512695, - -3.2446658611297607, - -3.2578585147857666, - -3.2659528255462646, - -3.268728733062744, - -3.2661097049713135, - -3.2581677436828613, - -2.883758068084717, - -2.897615432739258, - -2.91620135307312, - -2.939008951187134, - -2.9654157161712646, - -2.994701623916626, - -3.0260674953460693, - -3.0586583614349365, - -3.0915846824645996, - -3.123948574066162, - -3.154866933822632, - -3.1834967136383057, - -3.209057092666626, - -3.2308504581451416, - -3.2482824325561523, - -3.2608776092529297, - -3.2682924270629883, - -3.27032470703125, - -3.266918897628784, - -3.2581677436828613, - -2.883758068084717, - -2.8971996307373047, - -2.9153809547424316, - -2.9378061294555664, - -2.9638636112213135, - -2.992842435836792, - -3.0239522457122803, - -3.0563442707061768, - -3.08913516998291, - -3.1214301586151123, - -3.152348756790161, - -3.181047201156616, - -3.206743001937866, - -3.2287349700927734, - -3.2464232444763184, - -3.2593255043029785, - -3.26708984375, - -3.2695043087005615, - -3.266502857208252, - -3.2581677436828613, - -2.883758068084717, - -2.895603656768799, - -2.9122328758239746, - -2.9331915378570557, - -2.9579086303710938, - -2.9857091903686523, - -3.0158355236053467, - -3.0474653244018555, - -3.0797362327575684, - -3.1117677688598633, - -3.142686367034912, - -3.1716485023498535, - -3.197864055633545, - -3.22061824798584, - -3.2392899990081787, - -3.253370523452759, - -3.2624752521514893, - -3.2663559913635254, - -3.264907121658325, - -3.2581677436828613 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.18296308815479279, - 0.1870672106742859, - 0.1905834823846817, - 0.19341601431369781, - 0.19548751413822174, - 0.1967414915561676, - 0.19714374840259552, - 0.19668330252170563, - 0.19537271559238434, - 0.1932477355003357, - 0.19036631286144257, - 0.1868070662021637, - 0.1826670914888382, - 0.17805927991867065, - 0.17310935258865356, - 0.16795231401920319, - 0.16272884607315063, - 0.1575814187526703, - 0.15265044569969177, - 0.14807043969631195, - 0.1829630732536316, - 0.22358307242393494, - 0.26261916756629944, - 0.2990065813064575, - 0.3317527174949646, - 0.35996437072753906, - 0.3828720152378082, - 0.3998507857322693, - 0.41043752431869507, - 0.4143434166908264, - 0.4114620089530945, - 0.40187186002731323, - 0.38583457469940186, - 0.36378759145736694, - 0.3363322615623474, - 0.30421751737594604, - 0.26831939816474915, - 0.22961711883544922, - 0.18916632235050201, - 0.14807042479515076, - 0.1829630732536316, - 0.25567135214805603, - 0.3259204626083374, - 0.3917941451072693, - 0.45149561762809753, - 0.5033962726593018, - 0.546080470085144, - 0.5783839225769043, - 0.5994254350662231, - 0.6086310148239136, - 0.6057496070861816, - 0.5908597707748413, - 0.5643677711486816, - 0.5269960761070251, - 0.4797641634941101, - 0.423960417509079, - 0.3611069917678833, - 0.2929183840751648, - 0.22125458717346191, - 0.14807042479515076, - 0.1829630583524704, - 0.27985477447509766, - 0.3736276626586914, - 0.46172380447387695, - 0.5417401790618896, - 0.6114941835403442, - 0.6690831184387207, - 0.7129360437393188, - 0.7418568134307861, - 0.7550565004348755, - 0.7521750926971436, - 0.7332911491394043, - 0.6989197731018066, - 0.649998664855957, - 0.5878621339797974, - 0.5142049789428711, - 0.43103665113449097, - 0.3406255841255188, - 0.24543800950050354, - 0.14807040989398956, - 0.1829630583524704, - 0.2935127019882202, - 0.40057095885276794, - 0.5012174844741821, - 0.5927070379257202, - 0.672544002532959, - 0.7385504245758057, - 0.7889261245727539, - 0.8222968578338623, - 0.8377522230148315, - 0.8348708152770996, - 0.8137311935424805, - 0.7749098539352417, - 0.719465970993042, - 0.6489118337631226, - 0.5651718974113464, - 0.47053036093711853, - 0.36756888031959534, - 0.2590959370136261, - 0.14807040989398956, - 0.1829630583524704, - 0.2951650619506836, - 0.4038306176662445, - 0.505995512008667, - 0.5988731980323792, - 0.6799299716949463, - 0.7469547986984253, - 0.7981196641921997, - 0.8320286273956299, - 0.8477569818496704, - 0.8448755741119385, - 0.823462963104248, - 0.7841033935546875, - 0.7278704643249512, - 0.6562978029251099, - 0.5713380575180054, - 0.4753083884716034, - 0.3708285391330719, - 0.26074832677841187, - 0.14807040989398956, - 0.1829630583524704, - 0.2846328318119049, - 0.38305342197418213, - 0.4755401611328125, - 0.5595703125, - 0.6328517198562622, - 0.6933853626251221, - 0.7395201921463013, - 0.7699977159500122, - 0.7839865684509277, - 0.7811051607131958, - 0.7614320516586304, - 0.7255039215087891, - 0.6743009090423584, - 0.6092196106910706, - 0.5320351719856262, - 0.4448530077934265, - 0.3500513434410095, - 0.2502160668373108, - 0.14807040989398956, - 0.1829630583524704, - 0.26305732131004333, - 0.3404909372329712, - 0.4131516218185425, - 0.47905755043029785, - 0.536410927772522, - 0.5836471915245056, - 0.6194781064987183, - 0.6429259777069092, - 0.6533514261245728, - 0.6504700183868408, - 0.6343603134155273, - 0.605461835861206, - 0.5645627975463867, - 0.5127788782119751, - 0.4515223801136017, - 0.3824644684791565, - 0.3074888586997986, - 0.22864055633544922, - 0.14807042479515076, - 0.1829630732536316, - 0.23277655243873596, - 0.2807553708553314, - 0.32559075951576233, - 0.3660597801208496, - 0.40105849504470825, - 0.4296322166919708, - 0.4510015845298767, - 0.46458369493484497, - 0.470007985830307, - 0.4671265780925751, - 0.45601803064346313, - 0.4369853734970093, - 0.41054779291152954, - 0.3774263858795166, - 0.33852458000183105, - 0.29490360617637634, - 0.2477532923221588, - 0.19835978746414185, - 0.14807042479515076, - 0.18296308815479279, - 0.19707195460796356, - 0.21032008528709412, - 0.22234609723091125, - 0.23282194137573242, - 0.2414618730545044, - 0.24803024530410767, - 0.252347856760025, - 0.2542969286441803, - 0.25382429361343384, - 0.2509428858757019, - 0.24573129415512085, - 0.2383316457271576, - 0.2289457768201828, - 0.21782974898815155, - 0.20528674125671387, - 0.19165892899036407, - 0.1773180067539215, - 0.16265520453453064, - 0.14807043969631195, - 0.18296308815479279, - 0.15981264412403107, - 0.1368177980184555, - 0.11460578441619873, - 0.09378249198198318, - 0.07491590827703476, - 0.05852070450782776, - 0.04504403471946716, - 0.034853577613830566, - 0.02822728455066681, - 0.025345876812934875, - 0.026287943124771118, - 0.03102782368659973, - 0.0394362211227417, - 0.05128375440835953, - 0.06624727696180344, - 0.08391861617565155, - 0.10381573438644409, - 0.12539589405059814, - 0.14807045459747314, - 0.18296310305595398, - 0.12503626942634583, - 0.06821364164352417, - 0.01404520869255066, - -0.035991519689559937, - -0.08053158223628998, - -0.11836010217666626, - -0.1484452188014984, - -0.1699662208557129, - -0.18233618140220642, - -0.18521758913993835, - -0.17853188514709473, - -0.16246142983436584, - -0.13744458556175232, - -0.1041637659072876, - -0.06352671980857849, - -0.016641944646835327, - 0.035211578011512756, - 0.0906195193529129, - 0.14807045459747314, - 0.18296310305595398, - 0.09651137888431549, - 0.011941954493522644, - -0.06843838095664978, - -0.14243701100349426, - -0.2080354392528534, - -0.2634443938732147, - -0.3071524202823639, - -0.337967187166214, - -0.3550483286380768, - -0.3579297363758087, - -0.3465328514575958, - -0.3211686313152313, - -0.2825288772583008, - -0.23166769742965698, - -0.1699722409248352, - -0.09912553429603577, - -0.021060124039649963, - 0.06209462881088257, - 0.14807046949863434, - 0.18296311795711517, - 0.07732906192541122, - -0.025899425148963928, - -0.12390658259391785, - -0.2140190601348877, - -0.29377874732017517, - -0.36101004481315613, - -0.4138791859149933, - -0.45094379782676697, - -0.47119298577308655, - -0.4740743935108185, - -0.4595094621181488, - -0.4278954565525055, - -0.3800945580005646, - -0.31741100549697876, - -0.24155431985855103, - -0.15459373593330383, - -0.058901503682136536, - 0.0429123118519783, - 0.14807046949863434, - 0.18296311795711517, - 0.06956808269023895, - -0.04120969772338867, - -0.14634856581687927, - -0.24298053979873657, - -0.32846978306770325, - -0.4004842936992645, - -0.4570598304271698, - -0.4966530501842499, - -0.5181840658187866, - -0.5210654735565186, - -0.5052187442779541, - -0.471076101064682, - -0.419568806886673, - -0.35210201144218445, - -0.2705157697200775, - -0.17703571915626526, - -0.07421177625656128, - 0.03515133261680603, - 0.14807046949863434, - 0.18296311795711517, - 0.07406939566135406, - -0.032329872250556946, - -0.13333240151405334, - -0.22618308663368225, - -0.30834922194480896, - -0.37758955359458923, - -0.4320153295993805, - -0.47014209628105164, - -0.49092957377433777, - -0.4938109815120697, - -0.47870776057243347, - -0.4460316002368927, - -0.3966740667819977, - -0.33198148012161255, - -0.2537183165550232, - -0.16401955485343933, - -0.06533195078372955, - 0.03965264558792114, - 0.14807046949863434, - 0.18296310305595398, - 0.09034527093172073, - -0.00022208690643310547, - -0.08626854419708252, - -0.1654469072818756, - -0.2355974316596985, - -0.29480668902397156, - -0.3414594233036041, - -0.37428322434425354, - -0.39238277077674866, - -0.3952641785144806, - -0.3828488886356354, - -0.35547569394111633, - -0.3138911724090576, - -0.2592296898365021, - -0.19298210740089417, - -0.1169556975364685, - -0.03322416543960571, - 0.05592852085828781, - 0.14807046949863434, - 0.18296310305595398, - 0.11663194000720978, - 0.051634229719638824, - -0.010257065296173096, - -0.06735369563102722, - -0.1180981993675232, - -0.16110646724700928, - -0.19520533084869385, - -0.21946460008621216, - -0.2332226037979126, - -0.23610401153564453, - -0.228030264377594, - -0.20922154188156128, - -0.18019095063209534, - -0.1417304277420044, - -0.09488892555236816, - -0.04094421863555908, - 0.018632158637046814, - 0.08221518993377686, - 0.14807045459747314, - 0.18296310305595398, - 0.1500808596611023, - 0.11761964857578278, - 0.08646497875452042, - 0.05746660381555557, - 0.03141559660434723, - 0.009022489190101624, - -0.00910186767578125, - -0.02246306836605072, - -0.030696675181388855, - -0.03357808291912079, - -0.03102870285511017, - -0.02311807870864868, - -0.010061979293823242, - 0.007783427834510803, - 0.029931411147117615, - 0.055777810513973236, - 0.08461758494377136, - 0.11566409468650818, - 0.14807045459747314, - 0.18296308815479279, - 0.18706722557544708, - 0.19058352708816528, - 0.1934160590171814, - 0.1954875886440277, - 0.19674158096313477, - 0.19714385271072388, - 0.19668340682983398, - 0.1953728199005127, - 0.19324785470962524, - 0.19036643207073212, - 0.18680718541145325, - 0.18266719579696655, - 0.178059384226799, - 0.17310944199562073, - 0.16795238852500916, - 0.1627289056777954, - 0.15758146345615387, - 0.15265047550201416, - 0.14807043969631195 - ], - "y": [ - 0.6094031929969788, - 0.7230539321899414, - 0.8339059352874756, - 0.9389355182647705, - 1.0352777242660522, - 1.1203045845031738, - 1.1916966438293457, - 1.247506856918335, - 1.286212682723999, - 1.306758165359497, - 1.3085830211639404, - 1.2916374206542969, - 1.2563837766647339, - 1.203783631324768, - 1.1352715492248535, - 1.0527167320251465, - 0.9583707451820374, - 0.8548072576522827, - 0.7448512315750122, - 0.6315019130706787, - 0.6094031929969788, - 0.7156920433044434, - 0.8193830251693726, - 0.9176476001739502, - 1.007805585861206, - 1.087397575378418, - 1.154252529144287, - 1.2065467834472656, - 1.2428538799285889, - 1.262183427810669, - 1.2640082836151123, - 1.2482787370681763, - 1.215423583984375, - 1.16633939743042, - 1.1023645401000977, - 1.0252445936203003, - 0.9370828866958618, - 0.8402842879295349, - 0.7374893426895142, - 0.6315019130706787, - 0.6094032526016235, - 0.6968284845352173, - 0.7821703553199768, - 0.8631010055541992, - 0.9374128580093384, - 1.0030789375305176, - 1.0583078861236572, - 1.101593255996704, - 1.1317543983459473, - 1.1479685306549072, - 1.1497933864593506, - 1.1371792554855347, - 1.110470175743103, - 1.0703946352005005, - 1.0180459022521973, - 0.9548518657684326, - 0.8825362324714661, - 0.8030716776847839, - 0.7186257243156433, - 0.6315019130706787, - 0.6094032526016235, - 0.6685073375701904, - 0.7263005971908569, - 0.7812066078186035, - 0.8317277431488037, - 0.8764857053756714, - 0.9142598509788513, - 0.9440197348594666, - 0.9649534225463867, - 0.9764900803565979, - 0.978314995765686, - 0.9703783988952637, - 0.9528966546058655, - 0.9263466596603394, - 0.8914527893066406, - 0.8491666913032532, - 0.8006418347358704, - 0.7472019195556641, - 0.6903045773506165, - 0.6315019130706787, - 0.6094032526016235, - 0.6337976455688477, - 0.6578280925750732, - 0.680838942527771, - 0.7022026777267456, - 0.7213364839553833, - 0.737718403339386, - 0.7509016394615173, - 0.7605265378952026, - 0.7663306593894958, - 0.7681555151939392, - 0.7659514546394348, - 0.7597785592079163, - 0.7498052716255188, - 0.7363035082817078, - 0.7196416854858398, - 0.7002741694450378, - 0.6787293553352356, - 0.6555949449539185, - 0.6315019130706787, - 0.6094032526016235, - 0.5964608192443848, - 0.5841728448867798, - 0.5728744864463806, - 0.562873899936676, - 0.5544439554214478, - 0.5478144884109497, - 0.54316645860672, - 0.540626585483551, - 0.5402641296386719, - 0.54208904504776, - 0.5460515022277832, - 0.5520433783531189, - 0.5599013566970825, - 0.5694109201431274, - 0.5803128480911255, - 0.5923096537590027, - 0.6050741672515869, - 0.6182581186294556, - 0.6315019130706787, - 0.6094032526016235, - 0.5605428218841553, - 0.5133165717124939, - 0.4690127372741699, - 0.428839772939682, - 0.3938935101032257, - 0.36512717604637146, - 0.3433254659175873, - 0.32908302545547485, - 0.32278844714164734, - 0.3246133625507355, - 0.33450794219970703, - 0.3522023856639862, - 0.3772140145301819, - 0.4088605046272278, - 0.4462786912918091, - 0.4884479343891144, - 0.534217894077301, - 0.5823401212692261, - 0.6315019130706787, - 0.6094032526016235, - 0.5299359560012817, - 0.4529377222061157, - 0.3805088400840759, - 0.31462496519088745, - 0.25708329677581787, - 0.20945340394973755, - 0.1730344593524933, - 0.1488199234008789, - 0.1374703347682953, - 0.13929525017738342, - 0.15424484014511108, - 0.1819113790988922, - 0.22154021263122559, - 0.27205026149749756, - 0.3320638835430145, - 0.399944007396698, - 0.4738389849662781, - 0.5517332553863525, - 0.6315019130706787, - 0.6094032526016235, - 0.5079569220542908, - 0.40957915782928467, - 0.3169534504413605, - 0.2326064109802246, - 0.15883886814117432, - 0.09766286611557007, - 0.05074721574783325, - 0.01937168836593628, - 0.004392027854919434, - 0.006216883659362793, - 0.02479654550552368, - 0.05962413549423218, - 0.1097496747970581, - 0.173805832862854, - 0.2500453591346741, - 0.3363886773586273, - 0.430480420589447, - 0.5297541618347168, - 0.6315019726753235, - 0.6094032526016235, - 0.4969874918460846, - 0.3879395127296448, - 0.28523388504981995, - 0.1916721761226654, - 0.10980641841888428, - 0.04186981916427612, - -0.010284662246704102, - -0.045234084129333496, - -0.06202542781829834, - -0.06020057201385498, - -0.039809226989746094, - -0.0014077425003051758, - 0.05395662784576416, - 0.12477341294288635, - 0.2091110646724701, - 0.3046691119670868, - 0.4088408052921295, - 0.518784761428833, - 0.6315019726753235, - 0.6094032526016235, - 0.4982163906097412, - 0.39036381244659424, - 0.2887874245643616, - 0.1962580382823944, - 0.1152995228767395, - 0.04812026023864746, - -0.003447234630584717, - -0.03799635171890259, - -0.05458468198776245, - -0.05275982618331909, - -0.032571494579315186, - 0.005429685115814209, - 0.0602070689201355, - 0.1302664875984192, - 0.2136969268321991, - 0.3082226514816284, - 0.4112650752067566, - 0.520013689994812, - 0.6315019726753235, - 0.6094032526016235, - 0.51151043176651, - 0.41658926010131836, - 0.32722899317741394, - 0.2458670437335968, - 0.1747228503227234, - 0.1157369613647461, - 0.07051843404769897, - 0.04030066728591919, - 0.025907933712005615, - 0.027732789516448975, - 0.04572552442550659, - 0.0793953537940979, - 0.12782374024391174, - 0.18968981504440308, - 0.26330599188804626, - 0.3466642200946808, - 0.4374905824661255, - 0.5333077311515808, - 0.6315019726753235, - 0.6094032526016235, - 0.5354290008544922, - 0.46377402544021606, - 0.3963927924633026, - 0.33512330055236816, - 0.28163689374923706, - 0.23739251494407654, - 0.20359691977500916, - 0.18117207288742065, - 0.17072975635528564, - 0.17255467176437378, - 0.18659698963165283, - 0.21247383952140808, - 0.2494792938232422, - 0.29660385847091675, - 0.3525622487068176, - 0.41582798957824707, - 0.4846752882003784, - 0.557226300239563, - 0.6315019130706787, - 0.6094032526016235, - 0.5673802495002747, - 0.5268048644065857, - 0.48878395557403564, - 0.4543546736240387, - 0.42445605993270874, - 0.3999037742614746, - 0.38136738538742065, - 0.3693527281284332, - 0.3641873598098755, - 0.3660122752189636, - 0.374777615070343, - 0.39024433493614197, - 0.41199058294296265, - 0.4394230842590332, - 0.47179359197616577, - 0.5082191824913025, - 0.5477061867713928, - 0.5891774892807007, - 0.6315019130706787, - 0.6094032526016235, - 0.6039015650749207, - 0.5988513231277466, - 0.594390332698822, - 0.5906402468681335, - 0.5877033472061157, - 0.5856597423553467, - 0.5845652222633362, - 0.5844496488571167, - 0.5853161215782166, - 0.5871409773826599, - 0.5898745059967041, - 0.5934422016143799, - 0.5977466106414795, - 0.6026703715324402, - 0.608079195022583, - 0.6138255000114441, - 0.6197526454925537, - 0.6256988048553467, - 0.6315019130706787, - 0.6094032526016235, - 0.6410353779792786, - 0.6721060872077942, - 0.7017678618431091, - 0.7292115092277527, - 0.7536885142326355, - 0.7745311856269836, - 0.7911710143089294, - 0.8031541109085083, - 0.8101535439491272, - 0.8119784593582153, - 0.8085789680480957, - 0.8000479340553284, - 0.7866180539131165, - 0.76865553855896, - 0.7466504573822021, - 0.7212030291557312, - 0.6930074095726013, - 0.6628326773643494, - 0.6315019130706787, - 0.6094032526016235, - 0.6747577786445618, - 0.7386310696601868, - 0.7992807030677795, - 0.8550524115562439, - 0.904424786567688, - 0.9460512399673462, - 0.978796124458313, - 1.0017664432525635, - 1.0143353939056396, - 1.016160249710083, - 1.0071913003921509, - 0.9876730442047119, - 0.9581380486488342, - 0.9193918704986572, - 0.8724913597106934, - 0.8187159299850464, - 0.7595323324203491, - 0.6965550780296326, - 0.6315019130706787, - 0.6094031929969788, - 0.7014143466949463, - 0.791217029094696, - 0.8763616681098938, - 0.9545258283615112, - 1.023577332496643, - 1.0816326141357422, - 1.127108097076416, - 1.1587634086608887, - 1.1757349967956543, - 1.1775598526000977, - 1.1641883850097656, - 1.1359851360321045, - 1.093719482421875, - 1.0385444164276123, - 0.9719648361206055, - 0.8957968950271606, - 0.8121182918548584, - 0.7232115864753723, - 0.6315019130706787, - 0.6094031929969788, - 0.7181163430213928, - 0.8241654634475708, - 0.9246578216552734, - 1.0168522596359253, - 1.098233938217163, - 1.1665829420089722, - 1.2200350761413574, - 1.2571320533752441, - 1.2768621444702148, - 1.2786870002746582, - 1.2625569105148315, - 1.2289119958877563, - 1.1786699295043945, - 1.1132011413574219, - 1.0342912673950195, - 0.9440930485725403, - 0.8450667858123779, - 0.7399136424064636, - 0.6315019130706787, - 0.6094031929969788, - 0.7230539321899414, - 0.8339059352874756, - 0.9389355182647705, - 1.0352777242660522, - 1.1203045845031738, - 1.1916966438293457, - 1.247506856918335, - 1.286212682723999, - 1.306758165359497, - 1.3085830211639404, - 1.2916374206542969, - 1.2563837766647339, - 1.203783631324768, - 1.1352715492248535, - 1.0527167320251465, - 0.9583707451820374, - 0.8548072576522827, - 0.7448512315750122, - 0.6315019130706787 - ], - "z": [ - -3.2079010009765625, - -3.204162120819092, - -3.2056326866149902, - -3.212272882461548, - -3.2239017486572266, - -3.240201473236084, - -3.260728120803833, - -3.284921407699585, - -3.312121629714966, - -3.3415865898132324, - -3.3725125789642334, - -3.4040560722351074, - -3.435356855392456, - -3.4655609130859375, - -3.4938442707061768, - -3.5194356441497803, - -3.5416369438171387, - -3.559842348098755, - -3.5735554695129395, - -3.582402229309082, - -3.2079010009765625, - -3.207998752593994, - -3.2132012844085693, - -3.2233669757843018, - -3.2382187843322754, - -3.2573509216308594, - -3.2802422046661377, - -3.306267738342285, - -3.3347179889678955, - -3.364816427230835, - -3.395742654800415, - -3.426652431488037, - -3.4567031860351562, - -3.485074996948242, - -3.510993719100952, - -3.533752679824829, - -3.5527310371398926, - -3.567410945892334, - -3.577392101287842, - -3.582402229309082, - -3.2079010009765625, - -3.212101459503174, - -3.22129487991333, - -3.2352309226989746, - -3.2535290718078613, - -3.2756903171539307, - -3.301110029220581, - -3.3290951251983643, - -3.358881950378418, - -3.389658212661743, - -3.420584201812744, - -3.4508163928985596, - -3.4795303344726562, - -3.5059428215026855, - -3.5293328762054443, - -3.549062967300415, - -3.5645947456359863, - -3.5755045413970947, - -3.5814948081970215, - -3.582402229309082, - -3.2079010009765625, - -3.2160258293151855, - -3.229036808013916, - -3.2465786933898926, - -3.2681734561920166, - -3.293231725692749, - -3.3210701942443848, - -3.3509294986724854, - -3.3819949626922607, - -3.413419246673584, - -3.444345474243164, - -3.4739296436309814, - -3.5013649463653564, - -3.5259029865264893, - -3.546874523162842, - -3.5637075901031494, - -3.5759427547454834, - -3.5832462310791016, - -3.585419178009033, - -3.582402229309082, - -3.2079010009765625, - -3.219346523284912, - -3.2355875968933105, - -3.256181001663208, - -3.2805652618408203, - -3.308074951171875, - -3.3379600048065186, - -3.3694052696228027, - -3.401552677154541, - -3.433525323867798, - -3.464451313018799, - -3.4934871196746826, - -3.5198404788970947, - -3.542792797088623, - -3.5617177486419678, - -3.576099157333374, - -3.5855448246002197, - -3.589797019958496, - -3.5887398719787598, - -3.582402229309082, - -3.2079010009765625, - -3.22170352935791, - -3.2402374744415283, - -3.2629969120025635, - -3.2893612384796143, - -3.3186111450195312, - -3.3499491214752197, - -3.3825197219848633, - -3.415435314178467, - -3.4477972984313965, - -3.4787232875823975, - -3.5073697566986084, - -3.5329551696777344, - -3.554781675338745, - -3.572253942489624, - -3.584895133972168, - -3.592360734939575, - -3.594447135925293, - -3.591097116470337, - -3.582402229309082, - -3.2079010009765625, - -3.222841739654541, - -3.2424826622009277, - -3.2662880420684814, - -3.2936084270477295, - -3.3236987590789795, - -3.3557379245758057, - -3.38885235786438, - -3.4221384525299072, - -3.454688549041748, - -3.485614776611328, - -3.514073133468628, - -3.539287805557251, - -3.56057071685791, - -3.577341318130493, - -3.5891425609588623, - -3.5956521034240723, - -3.5966923236846924, - -3.5922353267669678, - -3.582402229309082, - -3.2079010009765625, - -3.22263765335083, - -3.242079973220825, - -3.265697717666626, - -3.2928466796875, - -3.3227860927581787, - -3.3546996116638184, - -3.38771653175354, - -3.420936107635498, - -3.4534525871276855, - -3.4843785762786865, - -3.5128707885742188, - -3.538151741027832, - -3.5595321655273438, - -3.5764288902282715, - -3.5883805751800537, - -3.5950615406036377, - -3.59628963470459, - -3.5920310020446777, - -3.582402229309082, - -3.2079010009765625, - -3.2211132049560547, - -3.239072799682617, - -3.2612898349761963, - -3.287158250808716, - -3.315972328186035, - -3.3469464778900146, - -3.37923526763916, - -3.4119584560394287, - -3.444222927093506, - -3.475148916244507, - -3.5038928985595703, - -3.5296707153320312, - -3.55177903175354, - -3.569615125656128, - -3.5826923847198486, - -3.590653896331787, - -3.593282461166382, - -3.5905067920684814, - -3.582402229309082, - -3.2079010009765625, - -3.2184338569641113, - -3.2337872982025146, - -3.253542184829712, - -3.2771599292755127, - -3.3039960861206055, - -3.3333187103271484, - -3.364327907562256, - -3.3961780071258545, - -3.427999973297119, - -3.458926200866699, - -3.488112688064575, - -3.514763355255127, - -3.538151264190674, - -3.557638645172119, - -3.5726938247680664, - -3.5829060077667236, - -3.5879969596862793, - -3.587827444076538, - -3.582402229309082, - -3.2079010009765625, - -3.2148900032043457, - -3.2267959117889404, - -3.2432942390441895, - -3.263934850692749, - -3.2881546020507812, - -3.315293073654175, - -3.3446097373962402, - -3.37530517578125, - -3.4065418243408203, - -3.4374680519104004, - -3.4672396183013916, - -3.4950451850891113, - -3.5201256275177, - -3.541797399520874, - -3.5594687461853027, - -3.572658061981201, - -3.581005573272705, - -3.5842833518981934, - -3.582402229309082, - -3.2079010009765625, - -3.2108652591705322, - -3.2188565731048584, - -3.231656551361084, - -3.2489161491394043, - -3.270164966583252, - -3.294822931289673, - -3.3222174644470215, - -3.3516016006469727, - -3.382173776626587, - -3.413099765777588, - -3.4435362815856934, - -3.4726529121398926, - -3.4996554851531982, - -3.5238075256347656, - -3.544450283050537, - -3.5610203742980957, - -3.573066234588623, - -3.580258846282959, - -3.582402229309082, - -3.2079010009765625, - -3.206796169281006, - -3.210829257965088, - -3.2198901176452637, - -3.233731746673584, - -3.251976490020752, - -3.2741265296936035, - -3.2995779514312744, - -3.327636241912842, - -3.3575363159179688, - -3.3884623050689697, - -3.4195709228515625, - -3.4500133991241455, - -3.478959321975708, - -3.5056190490722656, - -3.529265880584717, - -3.5492541790008545, - -3.5650389194488525, - -3.5761897563934326, - -3.582402229309082, - -3.2079010009765625, - -3.2031235694885254, - -3.2035841941833496, - -3.2092702388763428, - -3.220026731491089, - -3.235560178756714, - -3.255446672439575, - -3.279144048690796, - -3.3060059547424316, - -3.335299491882324, - -3.366225481033325, - -3.3979406356811523, - -3.429579496383667, - -3.4602794647216797, - -3.4892027378082275, - -3.5155608654022217, - -3.5386343002319336, - -3.5577938556671143, - -3.572517156600952, - -3.582402229309082, - -3.2079010009765625, - -3.2002453804016113, - -3.197906494140625, - -3.2009477615356445, - -3.2092864513397217, - -3.2226951122283936, - -3.2408077716827393, - -3.2631306648254395, - -3.2890546321868896, - -3.3178727626800537, - -3.3487987518310547, - -3.3809893131256104, - -3.4135661125183105, - -3.4456405639648438, - -3.4763376712799072, - -3.5048203468322754, - -3.5303115844726562, - -3.5521161556243896, - -3.569638967514038, - -3.582402229309082, - -3.2079010009765625, - -3.1984736919403076, - -3.194411039352417, - -3.195824384689331, - -3.202674627304077, - -3.2147750854492188, - -3.2317957878112793, - -3.253272533416748, - -3.2786192893981934, - -3.3071448802948, - -3.338070869445801, - -3.370553970336914, - -3.403707981109619, - -3.436628580093384, - -3.4684178829193115, - -3.498208522796631, - -3.5251882076263428, - -3.5486207008361816, - -3.5678670406341553, - -3.582402229309082, - -3.2079010009765625, - -3.198000192642212, - -3.193477153778076, - -3.194455146789551, - -3.2009077072143555, - -3.2126588821411133, - -3.2293877601623535, - -3.250638246536255, - -3.2758307456970215, - -3.3042781352996826, - -3.3352041244506836, - -3.367765426635742, - -3.401073694229126, - -3.434220552444458, - -3.466301441192627, - -3.4964418411254883, - -3.5238192081451416, - -3.547686815261841, - -3.5673935413360596, - -3.582402229309082, - -3.2079010009765625, - -3.19887638092041, - -3.1952056884765625, - -3.196988821029663, - -3.2041773796081543, - -3.2165753841400146, - -3.23384428024292, - -3.2555134296417236, - -3.280991315841675, - -3.3095831871032715, - -3.3405094146728516, - -3.3729259967803955, - -3.4059486389160156, - -3.4386770725250244, - -3.4702179431915283, - -3.499711513519287, - -3.526352882385254, - -3.549415349960327, - -3.568269729614258, - -3.582402229309082, - -3.2079010009765625, - -3.20100736618042, - -3.199409246444702, - -3.203150749206543, - -3.2121293544769287, - -3.226100444793701, - -3.244682550430298, - -3.267369270324707, - -3.293541669845581, - -3.3224854469299316, - -3.3534114360809326, - -3.3854761123657227, - -3.417804718017578, - -3.4495153427124023, - -3.479743003845215, - -3.5076632499694824, - -3.5325145721435547, - -3.553618907928467, - -3.5704007148742676, - -3.582402229309082, - -3.2079010009765625, - -3.204162120819092, - -3.2056326866149902, - -3.212272882461548, - -3.2239017486572266, - -3.240201473236084, - -3.260728120803833, - -3.284921407699585, - -3.312121629714966, - -3.3415865898132324, - -3.3725125789642334, - -3.4040560722351074, - -3.435356855392456, - -3.4655609130859375, - -3.4938442707061768, - -3.5194356441497803, - -3.5416369438171387, - -3.559842348098755, - -3.5735554695129395, - -3.582402229309082 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.13530373573303223, - 0.13243162631988525, - 0.12963786721229553, - 0.1269986480474472, - 0.12458597123622894, - 0.12246565520763397, - 0.12069552391767502, - 0.11932386457920074, - 0.1183880940079689, - 0.11791373789310455, - 0.11791373789310455, - 0.1183880940079689, - 0.11932386457920074, - 0.12069552391767502, - 0.12246565520763397, - 0.12458597123622894, - 0.1269986480474472, - 0.12963786721229553, - 0.13243162631988525, - 0.13530373573303223, - 0.13530375063419342, - 0.09241721034049988, - 0.05070049315690994, - 0.011291548609733582, - -0.02473469078540802, - -0.05639547109603882, - -0.08282719552516937, - -0.10330891609191895, - -0.11728188395500183, - -0.1243649423122406, - -0.1243649423122406, - -0.11728188395500183, - -0.10330891609191895, - -0.08282721042633057, - -0.05639548599720001, - -0.02473469078540802, - 0.011291548609733582, - 0.05070049315690994, - 0.09241721034049988, - 0.13530375063419342, - 0.13530375063419342, - 0.05705021321773529, - -0.019068792462348938, - -0.09097690880298615, - -0.15671268105506897, - -0.21448299288749695, - -0.2627120614051819, - -0.30008429288864136, - -0.32558029890060425, - -0.33850449323654175, - -0.33850449323654175, - -0.32558029890060425, - -0.30008429288864136, - -0.2627120912075043, - -0.21448305249214172, - -0.15671271085739136, - -0.09097690880298615, - -0.019068792462348938, - 0.05705021321773529, - 0.13530375063419342, - 0.13530376553535461, - 0.030163191258907318, - -0.07210943102836609, - -0.16872432827949524, - -0.2570462226867676, - -0.3346657156944275, - -0.39946573972702026, - -0.4496786594390869, - -0.48393476009368896, - -0.5012996196746826, - -0.5012996196746826, - -0.48393476009368896, - -0.4496786594390869, - -0.39946579933166504, - -0.33466580510139465, - -0.2570462226867676, - -0.16872432827949524, - -0.07210943102836609, - 0.030163191258907318, - 0.13530376553535461, - 0.13530376553535461, - 0.014669783413410187, - -0.10267363488674164, - -0.213525652885437, - -0.31486254930496216, - -0.40391993522644043, - -0.4782688617706299, - -0.5358810424804688, - -0.5751851201057434, - -0.5951088666915894, - -0.5951088666915894, - -0.5751851201057434, - -0.5358810424804688, - -0.47826892137527466, - -0.4039199948310852, - -0.31486257910728455, - -0.213525652885437, - -0.10267363488674164, - 0.014669783413410187, - 0.13530376553535461, - 0.13530376553535461, - 0.0122489333152771, - -0.10744927823543549, - -0.2205258011817932, - -0.32389628887176514, - -0.4147408604621887, - -0.49058181047439575, - -0.5493502020835876, - -0.5894429683685303, - -0.6097665429115295, - -0.6097665429115295, - -0.5894429683685303, - -0.5493502020835876, - -0.4905818700790405, - -0.41474097967147827, - -0.3238963186740875, - -0.2205258011817932, - -0.10744927823543549, - 0.0122489333152771, - 0.13530376553535461, - 0.13530376553535461, - 0.02316298335790634, - -0.08591890335083008, - -0.18896639347076416, - -0.28316864371299744, - -0.36595606803894043, - -0.43507033586502075, - -0.4886264204978943, - -0.5251632928848267, - -0.5436843037605286, - -0.5436843037605286, - -0.5251632928848267, - -0.4886264204978943, - -0.4350703954696655, - -0.3659561276435852, - -0.2831687033176422, - -0.18896639347076416, - -0.08591890335083008, - 0.02316298335790634, - 0.13530376553535461, - 0.13530376553535461, - 0.046229228377342224, - -0.040415599942207336, - -0.1222672164440155, - -0.19709303975105286, - -0.26285186409950256, - -0.31775009632110596, - -0.36029019951820374, - -0.3893117904663086, - -0.4040231704711914, - -0.4040231704711914, - -0.3893117904663086, - -0.36029019951820374, - -0.31775012612342834, - -0.2628519535064697, - -0.19709303975105286, - -0.1222672164440155, - -0.040415599942207336, - 0.046229228377342224, - 0.13530376553535461, - 0.13530375063419342, - 0.07894807308912277, - 0.024129629135131836, - -0.02765628695487976, - -0.07499706745147705, - -0.1166013777256012, - -0.15133434534072876, - -0.17824867367744446, - -0.19661003351211548, - -0.20591765642166138, - -0.20591765642166138, - -0.19661003351211548, - -0.17824867367744446, - -0.15133437514305115, - -0.11660143733024597, - -0.07499709725379944, - -0.02765628695487976, - 0.024129629135131836, - 0.07894807308912277, - 0.13530375063419342, - 0.13530373573303223, - 0.11777392774820328, - 0.1007222831249237, - 0.08461391925811768, - 0.06988824903964996, - 0.05694695562124252, - 0.04614301770925522, - 0.03777114301919937, - 0.032059721648693085, - 0.029164522886276245, - 0.029164522886276245, - 0.032059721648693085, - 0.03777114301919937, - 0.04614301770925522, - 0.05694694072008133, - 0.06988824903964996, - 0.08461391925811768, - 0.1007222831249237, - 0.11777392774820328, - 0.13530373573303223, - 0.13530373573303223, - 0.15849940478801727, - 0.18106237053871155, - 0.20237717032432556, - 0.22186236083507538, - 0.23898646235466003, - 0.253282368183136, - 0.26436012983322144, - 0.27191758155822754, - 0.2757485508918762, - 0.2757485508918762, - 0.27191758155822754, - 0.26436012983322144, - 0.253282368183136, - 0.23898647725582123, - 0.22186237573623657, - 0.20237717032432556, - 0.18106237053871155, - 0.15849940478801727, - 0.13530373573303223, - 0.13530372083187103, - 0.19671128690242767, - 0.2564437985420227, - 0.31287193298339844, - 0.3644564747810364, - 0.4097903370857239, - 0.4476369023323059, - 0.4769638478755951, - 0.4969712197780609, - 0.5071131587028503, - 0.5071131587028503, - 0.4969712197780609, - 0.4769638478755951, - 0.4476369023323059, - 0.40979036688804626, - 0.3644564747810364, - 0.31287193298339844, - 0.2564437985420227, - 0.19671128690242767, - 0.13530372083187103, - 0.13530370593070984, - 0.22826868295669556, - 0.31869781017303467, - 0.4041244685649872, - 0.48221835494041443, - 0.5508493185043335, - 0.6081452369689941, - 0.6525434255599976, - 0.6828325390815735, - 0.698186457157135, - 0.698186457157135, - 0.6828325390815735, - 0.6525434255599976, - 0.6081452965736389, - 0.5508493781089783, - 0.4822184145450592, - 0.4041244685649872, - 0.31869781017303467, - 0.22826868295669556, - 0.13530370593070984, - 0.13530370593070984, - 0.24975192546844482, - 0.36107829213142395, - 0.466246098279953, - 0.5623866319656372, - 0.6468775272369385, - 0.7174140214920044, - 0.7720720767974854, - 0.809360682964325, - 0.8282628059387207, - 0.8282628059387207, - 0.809360682964325, - 0.7720720767974854, - 0.7174140810966492, - 0.6468775868415833, - 0.5623867511749268, - 0.466246098279953, - 0.36107829213142395, - 0.24975192546844482, - 0.13530370593070984, - 0.13530370593070984, - 0.2588328719139099, - 0.37899249792099, - 0.49250495433807373, - 0.5962738990783691, - 0.6874687075614929, - 0.7636019587516785, - 0.8225968480110168, - 0.8628442287445068, - 0.883246123790741, - 0.883246123790741, - 0.8628442287445068, - 0.8225968480110168, - 0.7636020183563232, - 0.6874688267707825, - 0.5962738990783691, - 0.49250495433807373, - 0.37899249792099, - 0.2588328719139099, - 0.13530370593070984, - 0.13530370593070984, - 0.25452756881713867, - 0.3704993724822998, - 0.480055570602417, - 0.5802079439163208, - 0.6682243347167969, - 0.7417041659355164, - 0.7986429333686829, - 0.8374875783920288, - 0.8571783900260925, - 0.8571783900260925, - 0.8374875783920288, - 0.7986429333686829, - 0.7417041659355164, - 0.6682244539260864, - 0.5802079439163208, - 0.480055570602417, - 0.3704993724822998, - 0.25452756881713867, - 0.13530370593070984, - 0.13530370593070984, - 0.2373024821281433, - 0.3365190327167511, - 0.43024691939353943, - 0.5159295797348022, - 0.5912296772003174, - 0.654093325138092, - 0.702805757522583, - 0.736038327217102, - 0.7528842687606812, - 0.7528842687606812, - 0.736038327217102, - 0.702805757522583, - 0.6540933847427368, - 0.5912297964096069, - 0.5159295797348022, - 0.43024691939353943, - 0.3365190327167511, - 0.2373024821281433, - 0.13530370593070984, - 0.13530372083187103, - 0.20902425050735474, - 0.2807338833808899, - 0.3484765887260437, - 0.4104044735431671, - 0.4648282825946808, - 0.5102635622024536, - 0.5454709529876709, - 0.5694900751113892, - 0.581665575504303, - 0.581665575504303, - 0.5694900751113892, - 0.5454709529876709, - 0.5102636218070984, - 0.46482834219932556, - 0.4104045033454895, - 0.3484765887260437, - 0.2807338833808899, - 0.20902425050735474, - 0.13530372083187103, - 0.13530372083187103, - 0.17275723814964294, - 0.20918911695480347, - 0.2436055839061737, - 0.27506786584854126, - 0.30271774530410767, - 0.3258010149002075, - 0.343688040971756, - 0.35589084029197693, - 0.36207664012908936, - 0.36207664012908936, - 0.35589084029197693, - 0.343688040971756, - 0.3258010447025299, - 0.30271780490875244, - 0.27506789565086365, - 0.2436055839061737, - 0.20918911695480347, - 0.17275723814964294, - 0.13530372083187103, - 0.13530373573303223, - 0.13243161141872406, - 0.12963782250881195, - 0.12699858844280243, - 0.12458589673042297, - 0.12246555835008621, - 0.12069541215896606, - 0.1193237453699112, - 0.11838796734809875, - 0.1179136112332344, - 0.1179136112332344, - 0.11838796734809875, - 0.1193237453699112, - 0.12069541215896606, - 0.12246555089950562, - 0.12458589673042297, - 0.12699858844280243, - 0.12963782250881195, - 0.13243161141872406, - 0.13530373573303223 - ], - "y": [ - -0.11397767066955566, - -0.10188102722167969, - -0.06955909729003906, - -0.017893433570861816, - 0.05170661211013794, - 0.1373424530029297, - 0.23667827248573303, - 0.34700435400009155, - 0.4653114080429077, - 0.5883722305297852, - 0.7128300666809082, - 0.8352900147438049, - 0.9524117708206177, - 1.0610004663467407, - 1.158094048500061, - 1.241044282913208, - 1.3075882196426392, - 1.3559108972549438, - 1.3846940994262695, - 1.3931527137756348, - -0.11397767066955566, - -0.10219967365264893, - -0.07018768787384033, - -0.018814802169799805, - 0.05051755905151367, - 0.13591814041137695, - 0.23505759239196777, - 0.3452315032482147, - 0.46343469619750977, - 0.5864428877830505, - 0.7109007835388184, - 0.8334133625030518, - 0.9506388902664185, - 1.0593798160552979, - 1.1566697359085083, - 1.2398550510406494, - 1.3066668510437012, - 1.3552823066711426, - 1.3843754529953003, - 1.3931527137756348, - -0.11397767066955566, - -0.10268092155456543, - -0.07113701105117798, - -0.020206332206726074, - 0.04872173070907593, - 0.13376706838607788, - 0.23260992765426636, - 0.3425540328025818, - 0.46060043573379517, - 0.5835291743278503, - 0.7079870104789734, - 0.8305791020393372, - 0.9479614496231079, - 1.0569322109222412, - 1.154518723487854, - 1.2380592823028564, - 1.3052752017974854, - 1.3543329238891602, - 1.3838942050933838, - 1.3931527137756348, - -0.11397767066955566, - -0.10327255725860596, - -0.07230418920516968, - -0.021917223930358887, - 0.04651385545730591, - 0.13112235069274902, - 0.22960057854652405, - 0.33926209807395935, - 0.4571157693862915, - 0.579946756362915, - 0.7044045925140381, - 0.8270944356918335, - 0.9446694850921631, - 1.0539227724075317, - 1.15187406539917, - 1.235851526260376, - 1.303564429283142, - 1.3531657457351685, - 1.3833025693893433, - 1.3931527137756348, - -0.11397767066955566, - -0.10391056537628174, - -0.07356280088424683, - -0.023762047290802002, - 0.04413306713104248, - 0.12827062606811523, - 0.22635561227798462, - 0.3357124626636505, - 0.4533582329750061, - 0.5760838389396667, - 0.7005417346954346, - 0.8233368992805481, - 0.9411198496818542, - 1.05067777633667, - 1.1490222215652466, - 1.2334706783294678, - 1.3017195463180542, - 1.3519072532653809, - 1.3826645612716675, - 1.3931527137756348, - -0.11397767066955566, - -0.10452574491500854, - -0.07477635145187378, - -0.025540947914123535, - 0.041837453842163086, - 0.12552082538604736, - 0.22322669625282288, - 0.3322897255420685, - 0.4497350752353668, - 0.5723590850830078, - 0.6968169212341309, - 0.8197137117385864, - 0.9376971125602722, - 1.0475488901138306, - 1.1462724208831787, - 1.2311750650405884, - 1.2999407052993774, - 1.350693702697754, - 1.382049322128296, - 1.3931527137756348, - -0.11397767066955566, - -0.10505145788192749, - -0.0758134126663208, - -0.027061045169830322, - 0.039875686168670654, - 0.12317097187042236, - 0.22055286169052124, - 0.3293648362159729, - 0.44663891196250916, - 0.5691761374473572, - 0.6936339735984802, - 0.8166175484657288, - 0.934772253036499, - 1.0448750257492065, - 1.1439225673675537, - 1.2292132377624512, - 1.2984205484390259, - 1.349656581878662, - 1.381523609161377, - 1.3931527137756348, - -0.11397767066955566, - -0.1054307222366333, - -0.0765615701675415, - -0.028157711029052734, - 0.03846043348312378, - 0.12147575616836548, - 0.21862390637397766, - 0.3272547423839569, - 0.4444052577018738, - 0.5668798089027405, - 0.6913376450538635, - 0.814383864402771, - 0.9326621294021606, - 1.0429461002349854, - 1.1422274112701416, - 1.2277979850769043, - 1.2973239421844482, - 1.3489084243774414, - 1.3811445236206055, - 1.3931527137756348, - -0.11397767066955566, - -0.10562241077423096, - -0.07693976163864136, - -0.028712093830108643, - 0.03774505853652954, - 0.12061882019042969, - 0.21764880418777466, - 0.3261881172657013, - 0.44327616691589355, - 0.5657190680503845, - 0.6901769042015076, - 0.8132548332214355, - 0.931595504283905, - 1.04197096824646, - 1.1413705348968506, - 1.2270827293395996, - 1.296769618988037, - 1.3485302925109863, - 1.3809527158737183, - 1.3931527137756348, - -0.11397767066955566, - -0.10560578107833862, - -0.07690697908401489, - -0.028664052486419678, - 0.03780704736709595, - 0.12069308757781982, - 0.21773329377174377, - 0.32628050446510315, - 0.44337397813796997, - 0.5658196210861206, - 0.6902774572372437, - 0.8133525848388672, - 0.9316878914833069, - 1.0420554876327515, - 1.1414446830749512, - 1.227144718170166, - 1.2968175411224365, - 1.3485629558563232, - 1.3809692859649658, - 1.3931527137756348, - -0.11397767066955566, - -0.10538268089294434, - -0.07646679878234863, - -0.028018832206726074, - 0.03863966464996338, - 0.12169045209884644, - 0.2188681662082672, - 0.327521950006485, - 0.444688081741333, - 0.5671706199645996, - 0.6916284561157227, - 0.814666748046875, - 0.9329293370246887, - 1.043190360069275, - 1.142441987991333, - 1.2279772758483887, - 1.2974627017974854, - 1.3490030765533447, - 1.3811924457550049, - 1.3931527137756348, - -0.11397767066955566, - -0.10497719049453735, - -0.07566696405410767, - -0.02684640884399414, - 0.04015272855758667, - 0.12350285053253174, - 0.22093045711517334, - 0.32977789640426636, - 0.44707614183425903, - 0.5696256160736084, - 0.6940834522247314, - 0.8170547485351562, - 0.9351852536201477, - 1.0452526807785034, - 1.144254446029663, - 1.2294902801513672, - 1.2986352443695068, - 1.3498029708862305, - 1.3815979957580566, - 1.3931527137756348, - -0.11397767066955566, - -0.10443335771560669, - -0.07459408044815063, - -0.02527374029159546, - 0.04218226671218872, - 0.12593388557434082, - 0.22369667887687683, - 0.3328038454055786, - 0.4502792954444885, - 0.5729185938835144, - 0.6973764300346375, - 0.8202579617500305, - 0.93821120262146, - 1.0480189323425293, - 1.1466854810714722, - 1.2315199375152588, - 1.3002078533172607, - 1.3508758544921875, - 1.3821418285369873, - 1.3931527137756348, - -0.11397767066955566, - -0.10381001234054565, - -0.07336437702178955, - -0.023471295833587646, - 0.04450833797454834, - 0.12872010469436646, - 0.22686707973480225, - 0.3362719416618347, - 0.4539504647254944, - 0.5766927003860474, - 0.7011505365371704, - 0.8239291310310364, - 0.9416793584823608, - 1.0511893033981323, - 1.1494717597961426, - 1.2338459491729736, - 1.3020102977752686, - 1.3521056175231934, - 1.3827650547027588, - 1.3931527137756348, - -0.11397767066955566, - -0.10317474603652954, - -0.07211124897003174, - -0.021634399890899658, - 0.0468788743019104, - 0.1315596103668213, - 0.23009809851646423, - 0.33980634808540344, - 0.45769184827804565, - 0.5805389881134033, - 0.7049968242645264, - 0.8276705145835876, - 0.9452137351036072, - 1.0544202327728271, - 1.1523112058639526, - 1.2362165451049805, - 1.303847312927246, - 1.3533587455749512, - 1.3834004402160645, - 1.3931527137756348, - -0.11397767066955566, - -0.1025964617729187, - -0.07097035646438599, - -0.019962072372436523, - 0.04903697967529297, - 0.13414466381072998, - 0.23303958773612976, - 0.34302401542663574, - 0.46109795570373535, - 0.584040641784668, - 0.708498477935791, - 0.8310766220092773, - 0.9484313726425171, - 1.0573618412017822, - 1.1548962593078613, - 1.2383745908737183, - 1.3055195808410645, - 1.3544995784759521, - 1.3839787244796753, - 1.3931527137756348, - -0.11397767066955566, - -0.10213768482208252, - -0.07006537914276123, - -0.018635571002960205, - 0.05074882507324219, - 0.1361951231956482, - 0.23537281155586243, - 0.34557631611824036, - 0.46379971504211426, - 0.5868181586265564, - 0.7112759947776794, - 0.8337783813476562, - 0.9509837031364441, - 1.0596950054168701, - 1.1569467782974243, - 1.2400864362716675, - 1.306846022605896, - 1.3554046154022217, - 1.3844374418258667, - 1.3931527137756348, - -0.11397767066955566, - -0.101848304271698, - -0.06949442625045776, - -0.017798662185668945, - 0.051828861236572266, - 0.13748890161514282, - 0.23684489727020264, - 0.3471866548061371, - 0.46550434827804565, - 0.5885705947875977, - 0.7130284309387207, - 0.8354830145835876, - 0.9525940418243408, - 1.0611671209335327, - 1.158240556716919, - 1.2411664724349976, - 1.307682991027832, - 1.3559755086898804, - 1.384726881980896, - 1.3931527137756348, - -0.11397767066955566, - -0.10175955295562744, - -0.06931936740875244, - -0.017542004585266113, - 0.05216008424758911, - 0.13788563013076782, - 0.23729637265205383, - 0.3476805090904236, - 0.4660271406173706, - 0.5891079902648926, - 0.7135658860206604, - 0.8360058069229126, - 0.9530879259109497, - 1.0616185665130615, - 1.158637285232544, - 1.2414977550506592, - 1.3079396486282349, - 1.3561506271362305, - 1.3848156929016113, - 1.3931527137756348, - -0.11397767066955566, - -0.10188102722167969, - -0.06955909729003906, - -0.017893433570861816, - 0.05170661211013794, - 0.1373424530029297, - 0.23667827248573303, - 0.34700435400009155, - 0.4653114080429077, - 0.5883722305297852, - 0.7128300666809082, - 0.8352900147438049, - 0.9524117708206177, - 1.0610004663467407, - 1.158094048500061, - 1.241044282913208, - 1.3075882196426392, - 1.3559108972549438, - 1.3846940994262695, - 1.3931527137756348 - ], - "z": [ - -3.7638933658599854, - -3.7941129207611084, - -3.8222954273223877, - -3.8476719856262207, - -3.8695502281188965, - -3.887333631515503, - -3.9005367755889893, - -3.908799886703491, - -3.9118971824645996, - -3.9097445011138916, - -3.902400493621826, - -3.8900654315948486, - -3.8730757236480713, - -3.8518948554992676, - -3.8271007537841797, - -3.7993693351745605, - -3.7694575786590576, - -3.7381808757781982, - -3.706392765045166, - -3.674959897994995, - -3.7638933658599854, - -3.788712978363037, - -3.81164288520813, - -3.832057237625122, - -3.8493993282318115, - -3.86319637298584, - -3.8730714321136475, - -3.878755569458008, - -3.880093574523926, - -3.877049207687378, - -3.8697049617767334, - -3.858261823654175, - -3.843031406402588, - -3.824429512023926, - -3.8029634952545166, - -3.7792186737060547, - -3.753842830657959, - -3.7275283336639404, - -3.7009928226470947, - -3.674959897994995, - -3.7638933658599854, - -3.780557870864868, - -3.7955548763275146, - -3.8084752559661865, - -3.8189666271209717, - -3.8267428874969482, - -3.831591844558716, - -3.833381175994873, - -3.832062005996704, - -3.8276705741882324, - -3.820326566696167, - -3.810230255126953, - -3.797657012939453, - -3.782949924468994, - -3.766510009765625, - -3.7487857341766357, - -3.7302608489990234, - -3.711440086364746, - -3.6928374767303467, - -3.674959897994995, - -3.7638933658599854, - -3.770530939102173, - -3.7757744789123535, - -3.7794811725616455, - -3.7815496921539307, - -3.781923770904541, - -3.780592918395996, - -3.7775936126708984, - -3.77300763130188, - -3.7669601440429688, - -3.7596161365509033, - -3.751175880432129, - -3.7418694496154785, - -3.7319509983062744, - -3.7216908931732178, - -3.7113687992095947, - -3.7012667655944824, - -3.691659927368164, - -3.6828105449676514, - -3.674959897994995, - -3.7638933658599854, - -3.759719133377075, - -3.754445791244507, - -3.7482173442840576, - -3.7412033081054688, - -3.733595609664917, - -3.7256011962890625, - -3.7174384593963623, - -3.709329843521118, - -3.7014968395233154, - -3.694152593612671, - -3.687498092651367, - -3.6817142963409424, - -3.676959276199341, - -3.6733627319335938, - -3.671022653579712, - -3.6700026988983154, - -3.6703312397003174, - -3.6719987392425537, - -3.674959897994995, - -3.7638933658599854, - -3.749293804168701, - -3.733879566192627, - -3.718071222305298, - -3.7022998332977295, - -3.686995506286621, - -3.6725759506225586, - -3.6594343185424805, - -3.6479291915893555, - -3.638374090194702, - -3.6310300827026367, - -3.6260972023010254, - -3.6237101554870605, - -3.623934030532837, - -3.626762628555298, - -3.6321189403533936, - -3.6398568153381348, - -3.6497650146484375, - -3.6615734100341797, - -3.674959897994995, - -3.7638933658599854, - -3.740384817123413, - -3.7163047790527344, - -3.692310094833374, - -3.6690547466278076, - -3.6471736431121826, - -3.627263307571411, - -3.6098668575286865, - -3.595458984375, - -3.58443284034729, - -3.5770888328552246, - -3.573627233505249, - -3.5741429328918457, - -3.5786213874816895, - -3.5869407653808594, - -3.5988738536834717, - -3.614095449447632, - -3.632190227508545, - -3.6526646614074707, - -3.674959897994995, - -3.7638933658599854, - -3.7339577674865723, - -3.7036259174346924, - -3.673725128173828, - -3.645071029663086, - -3.6184449195861816, - -3.594573497772217, - -3.5741076469421387, - -3.557605743408203, - -3.545517921447754, - -3.5381739139556885, - -3.535773992538452, - -3.5383834838867188, - -3.545931577682495, - -3.5582120418548584, - -3.57489013671875, - -3.595510721206665, - -3.619511365890503, - -3.646237373352051, - -3.674959897994995, - -3.7638933658599854, - -3.7307088375091553, - -3.6972169876098633, - -3.6643307209014893, - -3.6329472064971924, - -3.6039228439331055, - -3.5780489444732666, - -3.5560317039489746, - -3.538471221923828, - -3.5258467197418213, - -3.518502712249756, - -3.516639471054077, - -3.5203075408935547, - -3.529407024383545, - -3.5436899662017822, - -3.5627663135528564, - -3.586116075515747, - -3.6131021976470947, - -3.642988681793213, - -3.674959897994995, - -3.7638933658599854, - -3.730990409851074, - -3.6977720260620117, - -3.665144443511963, - -3.6339974403381348, - -3.6051809787750244, - -3.5794806480407715, - -3.5575976371765137, - -3.5401289463043213, - -3.5275509357452393, - -3.520206928253174, - -3.518296957015991, - -3.5218734741210938, - -3.53083872795105, - -3.544948101043701, - -3.563816785812378, - -3.5869300365448, - -3.6136574745178223, - -3.6432700157165527, - -3.674959897994995, - -3.7638933658599854, - -3.734771728515625, - -3.7052314281463623, - -3.6760785579681396, - -3.6481080055236816, - -3.6220829486846924, - -3.598712921142578, - -3.5786359310150146, - -3.56239914894104, - -3.550445795059204, - -3.5431015491485596, - -3.540567398071289, - -3.5429117679595947, - -3.5500710010528564, - -3.561850070953369, - -3.5779271125793457, - -3.5978641510009766, - -3.621116876602173, - -3.6470513343811035, - -3.674959897994995, - -3.7638933658599854, - -3.741642951965332, - -3.7187867164611816, - -3.6959478855133057, - -3.6737494468688965, - -3.652796983718872, - -3.633662223815918, - -3.6168665885925293, - -3.6028685569763184, - -3.592050075531006, - -3.5847060680389404, - -3.5810368061065674, - -3.5811424255371094, - -3.5850203037261963, - -3.592564105987549, - -3.6035685539245605, - -3.6177334785461426, - -3.634672164916992, - -3.6539225578308105, - -3.674959897994995, - -3.7638933658599854, - -3.7508597373962402, - -3.736968755722046, - -3.722599506378174, - -3.708143472671509, - -3.693995237350464, - -3.6805408000946045, - -3.668147087097168, - -3.657151937484741, - -3.647855520248413, - -3.6405115127563477, - -3.6353201866149902, - -3.632422924041748, - -3.631898880004883, - -3.6337623596191406, - -3.637962579727173, - -3.6443848609924316, - -3.6528542041778564, - -3.6631393432617188, - -3.674959897994995, - -3.7638933658599854, - -3.761423110961914, - -3.757807493209839, - -3.7531449794769287, - -3.7475626468658447, - -3.741212844848633, - -3.7342689037323, - -3.7269198894500732, - -3.7193665504455566, - -3.7118148803710938, - -3.7044708728790283, - -3.6975347995758057, - -3.6911959648132324, - -3.685626983642578, - -3.6809799671173096, - -3.677381992340088, - -3.6749305725097656, - -3.6736929416656494, - -3.6737029552459717, - -3.674959897994995, - -3.7638933658599854, - -3.772188663482666, - -3.7790446281433105, - -3.7842745780944824, - -3.7877354621887207, - -3.7893333435058594, - -3.7890241146087646, - -3.786816358566284, - -3.7827706336975098, - -3.7769970893859863, - -3.769652843475342, - -3.760938882827759, - -3.7510924339294434, - -3.740382194519043, - -3.729100465774536, - -3.717554807662964, - -3.7060601711273193, - -3.694930076599121, - -3.6844682693481445, - -3.674959897994995, - -3.7638933658599854, - -3.781989336013794, - -3.7983787059783936, - -3.812614679336548, - -3.8243086338043213, - -3.833141565322876, - -3.8388729095458984, - -3.84134578704834, - -3.8404932022094727, - -3.8363382816314697, - -3.8289942741394043, - -3.8186614513397217, - -3.805621862411499, - -3.7902309894561768, - -3.772908926010132, - -3.7541277408599854, - -3.7344002723693848, - -3.714264154434204, - -3.6942689418792725, - -3.674959897994995, - -3.7638933658599854, - -3.7897634506225586, - -3.8137147426605225, - -3.835094451904297, - -3.853318691253662, - -3.8678908348083496, - -3.878413438796997, - -3.884599208831787, - -3.886279344558716, - -3.883408308029175, - -3.8760643005371094, - -3.864447593688965, - -3.848875045776367, - -3.8297715187072754, - -3.8076581954956055, - -3.7831380367279053, - -3.7568798065185547, - -3.729600191116333, - -3.702043056488037, - -3.674959897994995, - -3.7638933658599854, - -3.794668197631836, - -3.8233907222747803, - -3.8492774963378906, - -3.871622085571289, - -3.889815330505371, - -3.9033608436584473, - -3.91188907623291, - -3.9151673316955566, - -3.9131064414978027, - -3.9057624340057373, - -3.8933355808258057, - -3.8761649131774902, - -3.8547189235687256, - -3.829582452774048, - -3.8014414310455322, - -3.7710630893707275, - -3.739276170730591, - -3.7069478034973145, - -3.674959897994995, - -3.7638933658599854, - -3.7961723804473877, - -3.8263580799102783, - -3.8536272048950195, - -3.8772354125976562, - -3.8965392112731934, - -3.9110116958618164, - -3.9202582836151123, - -3.9240267276763916, - -3.9222140312194824, - -3.914870023727417, - -3.9021947383880615, - -3.8845341205596924, - -3.8623697757720947, - -3.83630633354187, - -3.8070545196533203, - -3.7754125595092773, - -3.742243528366089, - -3.7084522247314453, - -3.674959897994995, - -3.7638933658599854, - -3.7941129207611084, - -3.8222954273223877, - -3.8476719856262207, - -3.8695502281188965, - -3.887333631515503, - -3.9005367755889893, - -3.908799886703491, - -3.9118971824645996, - -3.9097445011138916, - -3.902400493621826, - -3.8900654315948486, - -3.8730757236480713, - -3.8518948554992676, - -3.8271007537841797, - -3.7993693351745605, - -3.7694575786590576, - -3.7381808757781982, - -3.706392765045166, - -3.674959897994995 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.7049801349639893, - -0.691059410572052, - -0.6554219722747803, - -0.5990397930145264, - -0.523451030254364, - -0.43071746826171875, - -0.3233685791492462, - -0.2043326199054718, - -0.0768565684556961, - 0.05558237433433533, - 0.18937160074710846, - 0.32086169719696045, - 0.44646596908569336, - 0.562758207321167, - 0.6665663123130798, - 0.7550587058067322, - 0.8258215188980103, - 0.876924455165863, - 0.9069736003875732, - 0.9151493310928345, - -0.7049801349639893, - -0.6863735914230347, - -0.646178126335144, - -0.5854901075363159, - -0.5059651136398315, - -0.40977221727371216, - -0.2995353937149048, - -0.17826160788536072, - -0.04925882816314697, - 0.08395400643348694, - 0.21774324774742126, - 0.3484594225883484, - 0.47253701090812683, - 0.5865914225578308, - 0.6875115633010864, - 0.7725446820259094, - 0.8393712043762207, - 0.8861683011054993, - 0.9116594195365906, - 0.9151493310928345, - -0.7049801349639893, - -0.682506799697876, - -0.6385501027107239, - -0.5743088722229004, - -0.49153560400009155, - -0.39248815178871155, - -0.27986815571784973, - -0.15674766898155212, - -0.02648507058620453, - 0.1073664054274559, - 0.24115562438964844, - 0.371233195066452, - 0.4940509498119354, - 0.6062586903572083, - 0.7047956585884094, - 0.7869741320610046, - 0.8505524396896362, - 0.8937963247299194, - 0.9155262112617493, - 0.9151493310928345, - -0.7049801349639893, - -0.6798781752586365, - -0.6333644390106201, - -0.5667076706886292, - -0.4817262887954712, - -0.38073819875717163, - -0.2664980888366699, - -0.14212222397327423, - -0.011003173887729645, - 0.12328244745731354, - 0.25707167387008667, - 0.3867151141166687, - 0.5086764097213745, - 0.6196287274360657, - 0.716545581817627, - 0.7967835068702698, - 0.8581535816192627, - 0.8989819884300232, - 0.9181548953056335, - 0.9151493310928345, - -0.7049801349639893, - -0.6787723898887634, - -0.6311831474304199, - -0.5635102987289429, - -0.4776000380516052, - -0.3757956922054291, - -0.26087409257888794, - -0.13597016036510468, - -0.004490837454795837, - 0.12997740507125854, - 0.26376664638519287, - 0.3932274281978607, - 0.5148284435272217, - 0.6252527236938477, - 0.7214881181716919, - 0.800909698009491, - 0.861350953578949, - 0.9011632800102234, - 0.9192606210708618, - 0.9151493310928345, - -0.7049801349639893, - -0.6793094277381897, - -0.6322425603866577, - -0.5650632381439209, - -0.4796041250228882, - -0.37819617986679077, - -0.26360559463500977, - -0.138958141207695, - -0.007653787732124329, - 0.12672576308250427, - 0.2605149745941162, - 0.3900644779205322, - 0.5118404626846313, - 0.6225212216377258, - 0.7190876007080078, - 0.7989056706428528, - 0.8597980737686157, - 0.9001038670539856, - 0.9187235832214355, - 0.9151493310928345, - -0.7049801349639893, - -0.6814310550689697, - -0.6364278793334961, - -0.5711981654167175, - -0.487521231174469, - -0.3876796066761017, - -0.2743965983390808, - -0.15076234936714172, - -0.020149260759353638, - 0.11387988924980164, - 0.24766911566257477, - 0.3775690197944641, - 0.5000362396240234, - 0.6117302179336548, - 0.7096042037010193, - 0.7909885048866272, - 0.8536631464958191, - 0.8959185481071472, - 0.9166019558906555, - 0.9151493310928345, - -0.7049801349639893, - -0.6849073171615601, - -0.6432856321334839, - -0.5812502503395081, - -0.5004935264587402, - -0.40321820974349976, - -0.2920777201652527, - -0.17010366916656494, - -0.040623173117637634, - 0.09283184260129929, - 0.22662106156349182, - 0.3570951223373413, - 0.4806949496269226, - 0.5940490961074829, - 0.6940655708312988, - 0.778016209602356, - 0.8436110615730286, - 0.8890607953071594, - 0.9131256937980652, - 0.9151493310928345, - -0.7049801349639893, - -0.689361572265625, - -0.652072548866272, - -0.5941302180290222, - -0.5171152353286743, - -0.42312824726104736, - -0.3147329092025757, - -0.19488611817359924, - -0.06685687601566315, - 0.06586248427629471, - 0.19965171813964844, - 0.3308613896369934, - 0.4559125006198883, - 0.5713939070701599, - 0.674155592918396, - 0.7613945603370667, - 0.8307310938835144, - 0.8802738785743713, - 0.908671498298645, - 0.9151493310928345, - -0.7049801349639893, - -0.6943110227584839, - -0.661836564540863, - -0.6084423661231995, - -0.5355851054191589, - -0.44525206089019775, - -0.3399071991443634, - -0.22242414951324463, - -0.09600752592086792, - 0.03589438647031784, - 0.16968360543251038, - 0.30171075463294983, - 0.42837443947792053, - 0.5462196469306946, - 0.6520317792892456, - 0.7429246306419373, - 0.8164189457893372, - 0.870509922504425, - 0.9037219882011414, - 0.9151493310928345, - -0.7049801349639893, - -0.6992194652557373, - -0.6715194582939148, - -0.6226356625556946, - -0.5539016723632812, - -0.46719223260879517, - -0.3648724853992462, - -0.24973362684249878, - -0.1249161958694458, - 0.006175041198730469, - 0.1399642676115036, - 0.27280208468437195, - 0.40106499195098877, - 0.521254301071167, - 0.6300916075706482, - 0.7246081233024597, - 0.802225649356842, - 0.8608269691467285, - 0.8988135457038879, - 0.9151493310928345, - -0.7049801349639893, - -0.7035548686981201, - -0.6800720691680908, - -0.6351721286773682, - -0.570080041885376, - -0.48657119274139404, - -0.3869234621524811, - -0.2738550901412964, - -0.150450199842453, - -0.0200749933719635, - 0.11371423304080963, - 0.24726808071136475, - 0.37694352865219116, - 0.4992033541202545, - 0.6107126474380493, - 0.708429753780365, - 0.7896891832351685, - 0.8522743582725525, - 0.8944781422615051, - 0.9151493310928345, - -0.7049801349639893, - -0.7068474888801575, - -0.686567485332489, - -0.6446931958198547, - -0.5823670029640198, - -0.501288890838623, - -0.4036704897880554, - -0.29217463731765747, - -0.16984251141548157, - -0.04001110792160034, - 0.09377811849117279, - 0.22787576913833618, - 0.3586239814758301, - 0.4824563264846802, - 0.5959948301315308, - 0.6961427330970764, - 0.7801681160926819, - 0.8457789421081543, - 0.8911855220794678, - 0.9151493310928345, - -0.7049801349639893, - -0.7087405323982239, - -0.6903018951416016, - -0.6501671075820923, - -0.58943110704422, - -0.5097505450248718, - -0.4132988452911377, - -0.3027070462703705, - -0.18099167943000793, - -0.051472947001457214, - 0.08231627941131592, - 0.21672658622264862, - 0.34809157252311707, - 0.4728279709815979, - 0.5875332355499268, - 0.6890786290168762, - 0.7746942043304443, - 0.8420445322990417, - 0.8892925381660461, - 0.9151493310928345, - -0.7049801349639893, - -0.7090287804603577, - -0.6908705830574036, - -0.6510007381439209, - -0.590506911277771, - -0.511039137840271, - -0.4147651195526123, - -0.30431094765663147, - -0.18268954753875732, - -0.05321839451789856, - 0.08057083189487457, - 0.21502873301506042, - 0.3464876413345337, - 0.4713617265224457, - 0.5862446427345276, - 0.68800288438797, - 0.7738605737686157, - 0.8414758443832397, - 0.8890042304992676, - 0.9151493310928345, - -0.7049801349639893, - -0.7076811194419861, - -0.6882119178771973, - -0.6471036672592163, - -0.5854777097702026, - -0.5050150156021118, - -0.4079103469848633, - -0.29681259393692017, - -0.17475208640098572, - -0.045058369636535645, - 0.08873085677623749, - 0.22296619415283203, - 0.3539860248565674, - 0.4782164394855499, - 0.5922687649726868, - 0.6930320262908936, - 0.7777576446533203, - 0.844134509563446, - 0.8903519511222839, - 0.9151493310928345, - -0.7049801349639893, - -0.7048434615135193, - -0.6826140284538269, - -0.6388982534408569, - -0.5748885869979858, - -0.49233102798461914, - -0.3934774696826935, - -0.2810244858264923, - -0.15803945064544678, - -0.027877062559127808, - 0.10591217130422592, - 0.23967882990837097, - 0.36977410316467285, - 0.4926493465900421, - 0.6049528121948242, - 0.7036212086677551, - 0.7859630584716797, - 0.8497323989868164, - 0.893189549446106, - 0.9151493310928345, - -0.7049801349639893, - -0.7008233666419983, - -0.6746835708618164, - -0.6272736191749573, - -0.5598869919776917, - -0.4743615984916687, - -0.373030424118042, - -0.2586575448513031, - -0.13436269760131836, - -0.0035363659262657166, - 0.13025285303592682, - 0.263355553150177, - 0.39214107394218445, - 0.5130963921546936, - 0.6229221820831299, - 0.7186228036880493, - 0.7975876927375793, - 0.8576628565788269, - 0.897209644317627, - 0.9151493310928345, - -0.7049801349639893, - -0.6960564851760864, - -0.6652798056602478, - -0.61348956823349, - -0.5420985817909241, - -0.4530540704727173, - -0.3487849831581116, - -0.23213553428649902, - -0.10628759860992432, - 0.02532602846622467, - 0.1591152548789978, - 0.29143068194389343, - 0.41866305470466614, - 0.537341833114624, - 0.6442297101020813, - 0.7364112138748169, - 0.8113717436790466, - 0.8670666217803955, - 0.9019765257835388, - 0.9151493310928345, - -0.7049801349639893, - -0.691059410572052, - -0.6554219722747803, - -0.5990397930145264, - -0.523451030254364, - -0.43071746826171875, - -0.3233685791492462, - -0.2043326199054718, - -0.07685655355453491, - 0.05558238923549652, - 0.18937161564826965, - 0.32086172699928284, - 0.44646599888801575, - 0.5627582669258118, - 0.6665663123130798, - 0.7550587058067322, - 0.8258215188980103, - 0.8769245147705078, - 0.9069736003875732, - 0.9151493310928345 - ], - "y": [ - 0.5634652972221375, - 0.5629452466964722, - 0.5650379061698914, - 0.5696861147880554, - 0.5767630934715271, - 0.5860758423805237, - 0.5973703265190125, - 0.6103383898735046, - 0.6246263980865479, - 0.639844536781311, - 0.6555777192115784, - 0.671396791934967, - 0.6868702173233032, - 0.7015759944915771, - 0.7151129245758057, - 0.72711181640625, - 0.7372452616691589, - 0.7452369928359985, - 0.7508688569068909, - 0.7539873719215393, - 0.5634652972221375, - 0.5196660757064819, - 0.4796600937843323, - 0.44453856348991394, - 0.4152595102787018, - 0.39262160658836365, - 0.3772423267364502, - 0.369541198015213, - 0.36972829699516296, - 0.37779852747917175, - 0.3935317099094391, - 0.41649869084358215, - 0.4460730254650116, - 0.4814479947090149, - 0.5216586589813232, - 0.5656082034111023, - 0.6120977401733398, - 0.6598591804504395, - 0.7075896859169006, - 0.7539873719215393, - 0.5634652972221375, - 0.4812740683555603, - 0.4039232134819031, - 0.333522766828537, - 0.2719930112361908, - 0.22101235389709473, - 0.18197134137153625, - 0.15593492984771729, - 0.14361345767974854, - 0.1453428864479065, - 0.16107609868049622, - 0.19038385152816772, - 0.23246678709983826, - 0.28617700934410095, - 0.35004937648773193, - 0.42234164476394653, - 0.5010819435119629, - 0.5841223001480103, - 0.669197678565979, - 0.7539873719215393, - 0.5634653568267822, - 0.45192950963974, - 0.3460344970226288, - 0.24866899847984314, - 0.16248872876167297, - 0.08984452486038208, - 0.032718002796173096, - -0.007332742214202881, - -0.02921503782272339, - -0.03233218193054199, - -0.016598999500274658, - 0.0175553560256958, - 0.06919914484024048, - 0.1369236707687378, - 0.21888157725334167, - 0.3128373920917511, - 0.41622814536094666, - 0.5262335538864136, - 0.6398531198501587, - 0.7539874315261841, - 0.5634653568267822, - 0.43481236696243286, - 0.31226715445518494, - 0.1991724967956543, - 0.0986132025718689, - 0.013332366943359375, - -0.0543438196182251, - -0.10256928205490112, - -0.1300286054611206, - -0.13597267866134644, - -0.1202394962310791, - -0.08325821161270142, - -0.026037395000457764, - 0.049861907958984375, - 0.14236938953399658, - 0.24896180629730225, - 0.3667316436767578, - 0.4924662113189697, - 0.6227359771728516, - 0.7539874315261841, - 0.5634653568267822, - 0.4317775368690491, - 0.30628034472465515, - 0.19039693474769592, - 0.08728832006454468, - -0.00023293495178222656, - -0.06977945566177368, - -0.1194542646408081, - -0.14790236949920654, - -0.15434777736663818, - -0.13861459493637085, - -0.10113197565078735, - -0.042922377586364746, - 0.034426212310791016, - 0.12880408763885498, - 0.23763695359230042, - 0.35795608162879944, - 0.48647940158843994, - 0.6197011470794678, - 0.7539874315261841, - 0.5634653568267822, - 0.4431539475917816, - 0.3287228047847748, - 0.22329336404800415, - 0.12974131107330322, - 0.050618648529052734, - -0.01191645860671997, - -0.05615818500518799, - -0.08089971542358398, - -0.08546608686447144, - -0.0697329044342041, - -0.034129321575164795, - 0.02037370204925537, - 0.09228920936584473, - 0.17965564131736755, - 0.28008994460105896, - 0.39085251092910767, - 0.5089218616485596, - 0.6310775279998779, - 0.7539874315261841, - 0.5634653568267822, - 0.4677087366580963, - 0.3771626353263855, - 0.29429686069488525, - 0.22137176990509033, - 0.16037657856941223, - 0.11297500133514404, - 0.0804600715637207, - 0.06371885538101196, - 0.06320786476135254, - 0.07894104719161987, - 0.11048924922943115, - 0.15699195861816406, - 0.21718069911003113, - 0.28941354155540466, - 0.37172040343284607, - 0.46185600757598877, - 0.5573617219924927, - 0.6556323170661926, - 0.7539873719215393, - 0.5634652972221375, - 0.5027810335159302, - 0.4463505446910858, - 0.39571312069892883, - 0.35225000977516174, - 0.31714674830436707, - 0.29136091470718384, - 0.27559584379196167, - 0.2702815532684326, - 0.2755630612373352, - 0.29129624366760254, - 0.3170519471168518, - 0.35212767124176025, - 0.3955666124820709, - 0.4461837708950043, - 0.5025986433029175, - 0.5632722973823547, - 0.6265496015548706, - 0.6907046437263489, - 0.7539873719215393, - 0.5634652972221375, - 0.5445702075958252, - 0.5287889838218689, - 0.5165521502494812, - 0.5081933736801147, - 0.5039408206939697, - 0.5039104223251343, - 0.5081029534339905, - 0.5164040923118591, - 0.5285874605178833, - 0.5443206429481506, - 0.5631744861602783, - 0.5846347808837891, - 0.608116090297699, - 0.6329779028892517, - 0.6585420966148376, - 0.6841112971305847, - 0.7089880704879761, - 0.7324938178062439, - 0.7539873719215393, - 0.5634652972221375, - 0.5885477662086487, - 0.6155444979667664, - 0.6437191367149353, - 0.6723031401634216, - 0.7005167603492737, - 0.7275904417037964, - 0.7527857422828674, - 0.7754153609275818, - 0.794861912727356, - 0.8105951547622681, - 0.822185754776001, - 0.829317569732666, - 0.8317961692810059, - 0.8295538425445557, - 0.8226518034934998, - 0.8112782835960388, - 0.7957435846328735, - 0.7764713764190674, - 0.7539873719215393, - 0.5634652972221375, - 0.6299480199813843, - 0.697215735912323, - 0.7634335160255432, - 0.826795220375061, - 0.8855724334716797, - 0.9381618499755859, - 0.9831290245056152, - 1.01924729347229, - 1.0455316305160522, - 1.0612647533416748, - 1.066017746925354, - 1.0596609115600586, - 1.0423675775527954, - 1.0146095752716064, - 0.9771438837051392, - 0.9309927225112915, - 0.8774147629737854, - 0.8178715705871582, - 0.7539873719215393, - 0.5634652972221375, - 0.6642845869064331, - 0.7649523615837097, - 0.8627225160598755, - 0.9549281597137451, - 1.0390541553497314, - 1.1128058433532715, - 1.1741714477539062, - 1.2214771509170532, - 1.253432273864746, - 1.2691655158996582, - 1.2682476043701172, - 1.2507033348083496, - 1.2170116901397705, - 1.1680912971496582, - 1.1052768230438232, - 1.030281662940979, - 0.9451514482498169, - 0.8522081971168518, - 0.7539873123168945, - 0.5634652376174927, - 0.6878367066383362, - 0.8114140629768372, - 0.9308265447616577, - 1.0428168773651123, - 1.1443300247192383, - 1.2325973510742188, - 1.3052109479904175, - 1.3601901531219482, - 1.396035075187683, - 1.4117681980133057, - 1.4069604873657227, - 1.3817428350448608, - 1.3368031978607178, - 1.273367166519165, - 1.1931655406951904, - 1.0983856916427612, - 0.9916131496429443, - 0.8757603168487549, - 0.7539873123168945, - 0.5634652376174927, - 0.6980519890785217, - 0.8315659761428833, - 0.9603654146194458, - 1.0809369087219238, - 1.1899914741516113, - 1.2845547199249268, - 1.3620468378067017, - 1.4203542470932007, - 1.4578864574432373, - 1.4736196994781494, - 1.4671247005462646, - 1.438578724861145, - 1.3887604475021362, - 1.319028615951538, - 1.231285572052002, - 1.1279245615005493, - 1.0117650032043457, - 0.8859755992889404, - 0.7539873123168945, - 0.5634652376174927, - 0.693823516368866, - 0.8232244253158569, - 0.9481382369995117, - 1.0651576519012451, - 1.1710906028747559, - 1.263047695159912, - 1.3385205268859863, - 1.3954503536224365, - 1.4322839975357056, - 1.4480171203613281, - 1.442220687866211, - 1.4150524139404297, - 1.3672535419464111, - 1.3001277446746826, - 1.2155063152313232, - 1.1156973838806152, - 1.0034234523773193, - 0.8817471265792847, - 0.7539873123168945, - 0.5634652376174927, - 0.6756094694137573, - 0.7872931957244873, - 0.8954699039459229, - 0.997188925743103, - 1.0896755456924438, - 1.1704068183898926, - 1.2371811866760254, - 1.2881765365600586, - 1.3220020532608032, - 1.3377351760864258, - 1.334946870803833, - 1.3137130737304688, - 1.2746126651763916, - 1.218712568283081, - 1.1475375890731812, - 1.0630290508270264, - 0.9674922823905945, - 0.863533079624176, - 0.7539873123168945, - 0.5634652972221375, - 0.6453837156295776, - 0.7276660799980164, - 0.8080679178237915, - 0.8843961358070374, - 0.95456862449646, - 1.0166714191436768, - 1.0690103769302368, - 1.11015784740448, - 1.138991355895996, - 1.1547245979309082, - 1.1569281816482544, - 1.1455421447753906, - 1.1208771467208862, - 1.0836057662963867, - 1.0347448587417603, - 0.975627064704895, - 0.9078651070594788, - 0.8333072662353516, - 0.7539873719215393, - 0.5634652972221375, - 0.6064215302467346, - 0.6508045196533203, - 0.6954035758972168, - 0.7390022277832031, - 0.7804111242294312, - 0.8185007572174072, - 0.8522322177886963, - 0.8806852698326111, - 0.903083860874176, - 0.9188170433044434, - 0.9274556636810303, - 0.9287640452384949, - 0.9227064847946167, - 0.9094482064247131, - 0.8893508911132812, - 0.8629627227783203, - 0.8310035467147827, - 0.7943451404571533, - 0.7539873719215393, - 0.5634652972221375, - 0.5629452466964722, - 0.5650378465652466, - 0.5696860551834106, - 0.5767630338668823, - 0.5860757231712341, - 0.5973702073097229, - 0.6103382706642151, - 0.6246262192726135, - 0.6398443579673767, - 0.655577540397644, - 0.6713966131210327, - 0.6868700981140137, - 0.7015758752822876, - 0.7151128053665161, - 0.7271116971969604, - 0.7372452020645142, - 0.7452369332313538, - 0.7508688569068909, - 0.7539873719215393 - ], - "z": [ - -3.9739136695861816, - -3.944035768508911, - -3.9168784618377686, - -3.8931820392608643, - -3.87359356880188, - -3.8586466312408447, - -3.8487496376037598, - -3.8441720008850098, - -3.845038652420044, - -3.8513262271881104, - -3.862863302230835, - -3.8793346881866455, - -3.9002914428710938, - -3.925161838531494, - -3.9532675743103027, - -3.98384165763855, - -4.016050338745117, - -4.049015522003174, - -4.081837177276611, - -4.113620281219482, - -3.9739136695861816, - -3.9487171173095703, - -3.9261131286621094, - -3.9067184925079346, - -3.8910622596740723, - -3.8795714378356934, - -3.8725593090057373, - -3.8702173233032227, - -3.8726093769073486, - -3.8796701431274414, - -3.891206979751587, - -3.90690541267395, - -3.9263367652893066, - -3.948971748352051, - -3.9741921424865723, - -4.001310348510742, - -4.0295867919921875, - -4.0582499504089355, - -4.086518287658691, - -4.113620281219482, - -3.9739136695861816, - -3.9562318325042725, - -3.9409379959106445, - -3.9284489154815674, - -3.919105291366577, - -3.9131622314453125, - -3.9107818603515625, - -3.9120287895202637, - -3.9168694019317627, - -3.925171136856079, - -3.9367079734802246, - -3.951165199279785, - -3.9681484699249268, - -3.987194061279297, - -4.007782936096191, - -4.029353618621826, - -4.05131721496582, - -4.073074817657471, - -4.094033241271973, - -4.113620281219482, - -3.9739136695861816, - -3.965766191482544, - -3.9597463607788086, - -3.9560184478759766, - -3.954684019088745, - -3.955779552459717, - -3.959275245666504, - -3.9650754928588867, - -3.973022222518921, - -3.9828989505767822, - -3.9944357872009277, - -4.007318496704102, - -4.021194934844971, - -4.035687446594238, - -4.050400257110596, - -4.064932346343994, - -4.078886985778809, - -4.091883182525635, - -4.103567600250244, - -4.113620281219482, - -3.9739136695861816, - -3.9762864112854004, - -3.9804999828338623, - -3.9864394664764404, - -3.9939424991607666, - -4.002804756164551, - -4.012784004211426, - -4.023608684539795, - -4.034983158111572, - -4.046597480773926, - -4.05813455581665, - -4.069279193878174, - -4.079728603363037, - -4.089196681976318, - -4.09742546081543, - -4.104190826416016, - -4.109307765960693, - -4.112637042999268, - -4.11408805847168, - -4.113620281219482, - -3.9739136695861816, - -3.9866530895233154, - -4.000950336456299, - -4.016415596008301, - -4.032626628875732, - -4.049141883850098, - -4.0655107498168945, - -4.0812859535217285, - -4.096037864685059, - -4.109364032745361, - -4.120901107788086, - -4.13033390045166, - -4.1374053955078125, - -4.141922950744629, - -4.143762588500977, - -4.1428751945495605, - -4.139284133911133, - -4.133087158203125, - -4.124454498291016, - -4.113620281219482, - -3.9739136695861816, - -3.995742082595825, - -4.018880844116211, - -4.042698383331299, - -4.066544532775879, - -4.0897698402404785, - -4.111740589141846, - -4.131856441497803, - -4.149569988250732, - -4.164397239685059, - -4.175934314727783, - -4.183866024017334, - -4.187976360321045, - -4.18815279006958, - -4.184391021728516, - -4.176793098449707, - -4.165566444396973, - -4.151017665863037, - -4.133543491363525, - -4.113620281219482, - -3.9739136695861816, - -4.002569198608398, - -4.0323486328125, - -4.062439441680908, - -4.0920209884643555, - -4.120285987854004, - -4.146463871002197, - -4.1698408126831055, - -4.1897783279418945, - -4.205733299255371, - -4.217270374298096, - -4.224074363708496, - -4.2259602546691895, - -4.22287654876709, - -4.214906692504883, - -4.202269077301025, - -4.185307502746582, - -4.164485454559326, - -4.1403703689575195, - -4.113620281219482, - -3.9739136695861816, - -4.006393909454346, - -4.039894104003906, - -4.07349967956543, - -4.10629415512085, - -4.137382984161377, - -4.165918350219727, - -4.191122055053711, - -4.212306022644043, - -4.2288923263549805, - -4.240429401397705, - -4.2466020584106445, - -4.247241497039795, - -4.242331027984619, - -4.232004165649414, - -4.2165422439575195, - -4.196368217468262, - -4.172030925750732, - -4.144195556640625, - -4.113620281219482, - -3.9739136695861816, - -4.006802558898926, - -4.0406999588012695, - -4.074680805206299, - -4.107818126678467, - -4.139208793640137, - -4.167995929718018, - -4.193394184112549, - -4.2147111892700195, - -4.23136568069458, - -4.2429022789001465, - -4.249007225036621, - -4.249514102935791, - -4.244408130645752, - -4.233829498291016, - -4.218066692352295, - -4.197548866271973, - -4.172836780548096, - -4.144603729248047, - -4.113620281219482, - -3.9739136695861816, - -4.003750324249268, - -4.0346784591674805, - -4.065854549407959, - -4.096427917480469, - -4.125565052032471, - -4.15247106552124, - -4.1764116287231445, - -4.1967339515686035, - -4.212883949279785, - -4.22442102432251, - -4.231029987335205, - -4.2325310707092285, - -4.228883266448975, - -4.22018575668335, - -4.206676006317139, - -4.188722610473633, - -4.166815280914307, - -4.141551494598389, - -4.113620281219482, - -3.9739136695861816, - -3.997567892074585, - -4.022482395172119, - -4.047976970672607, - -4.073357105255127, - -4.097930431365967, - -4.121026039123535, - -4.142014026641846, - -4.160322189331055, - -4.175451278686523, - -4.18698787689209, - -4.194618225097656, - -4.19813346862793, - -4.1974382400512695, - -4.192551136016846, - -4.183605670928955, - -4.1708455085754395, - -4.154619216918945, - -4.135369300842285, - -4.113620281219482, - -3.9739136695861816, - -3.9889254570007324, - -4.005433082580566, - -4.02298641204834, - -4.041106700897217, - -4.059299468994141, - -4.077068328857422, - -4.093929290771484, - -4.109421253204346, - -4.1231231689453125, - -4.134659767150879, - -4.143717288970947, - -4.150048732757568, - -4.153480529785156, - -4.1539201736450195, - -4.151354789733887, - -4.145854949951172, - -4.137569904327393, - -4.1267266273498535, - -4.113620281219482, - -3.9739136695861816, - -3.978759288787842, - -3.9853785037994385, - -3.9935901165008545, - -4.003170490264893, - -4.013858318328857, - -4.025362014770508, - -4.037367343902588, - -4.0495476722717285, - -4.061570167541504, - -4.0731072425842285, - -4.08384370803833, - -4.09348726272583, - -4.101774215698242, - -4.108479022979736, - -4.1134185791015625, - -4.116458415985107, - -4.117515563964844, - -4.116560935974121, - -4.113620281219482, - -3.9739136695861816, - -3.9681715965270996, - -3.964491605758667, - -3.9629740715026855, - -3.96366024017334, - -3.966531753540039, - -3.9715096950531006, - -3.978458881378174, - -3.987189531326294, - -3.9974632263183594, - -4.009000301361084, - -4.021485328674316, - -4.034578323364258, - -4.047922134399414, - -4.061152458190918, - -4.07390832901001, - -4.085842609405518, - -4.096628665924072, - -4.105972766876221, - -4.113620281219482, - -3.9739136695861816, - -3.9583091735839844, - -3.945035934448242, - -3.934455633163452, - -3.9268572330474854, - -3.922447919845581, - -3.9213476181030273, - -3.92358660697937, - -3.9291040897369385, - -3.937748908996582, - -3.9492859840393066, - -3.963399887084961, - -3.979706287384033, - -3.997760057449341, - -4.017068386077881, - -4.037105560302734, - -4.057323932647705, - -4.077172756195068, - -4.0961103439331055, - -4.113620281219482, - -3.9739136695861816, - -3.9502410888671875, - -3.929119825363159, - -3.911125659942627, - -3.89674973487854, - -3.8863840103149414, - -3.8803112506866455, - -3.878697156906128, - -3.8815855979919434, - -3.8888981342315674, - -3.900434970855713, - -3.915881633758545, - -3.934816598892212, - -3.95672345161438, - -3.9810047149658203, - -4.006998062133789, - -4.033994197845459, - -4.0612568855285645, - -4.088042259216309, - -4.113620281219482, - -3.9739136695861816, - -3.9448413848876953, - -3.9184677600860596, - -3.8955118656158447, - -3.8766000270843506, - -3.862248182296753, - -3.8528475761413574, - -3.8486547470092773, - -3.8497838973999023, - -3.8562047481536865, - -3.867741584777832, - -3.884079933166504, - -3.9047741889953613, - -3.929259777069092, - -3.956868886947632, - -3.9868483543395996, - -4.018380165100098, - -4.050604820251465, - -4.082643032073975, - -4.113620281219482, - -3.9739136695861816, - -3.9426956176757812, - -3.9142343997955322, - -3.8893065452575684, - -3.8685920238494873, - -3.8526558876037598, - -3.841932773590088, - -3.83671498298645, - -3.8371450901031494, - -3.8432114124298096, - -3.854748249053955, - -3.871441125869751, - -3.8928346633911133, - -3.9183449745178223, - -3.9472765922546387, - -3.9788403511047363, - -4.0121750831604, - -4.0463714599609375, - -4.080496788024902, - -4.113620281219482, - -3.9739136695861816, - -3.944035768508911, - -3.9168784618377686, - -3.8931820392608643, - -3.87359356880188, - -3.8586466312408447, - -3.8487496376037598, - -3.8441720008850098, - -3.845038652420044, - -3.8513264656066895, - -3.862863302230835, - -3.8793346881866455, - -3.9002914428710938, - -3.925161838531494, - -3.9532675743103027, - -3.98384165763855, - -4.016050338745117, - -4.049015522003174, - -4.081837177276611, - -4.113620281219482 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.09231464564800262, - 0.23669025301933289, - 0.3766515851020813, - 0.5083808302879333, - 0.628284752368927, - 0.7330927848815918, - 0.8199458718299866, - 0.8864750266075134, - 0.9308655261993408, - 0.9519063234329224, - 0.9490236043930054, - 0.9222960472106934, - 0.8724525570869446, - 0.8008530139923096, - 0.7094502449035645, - 0.600737452507019, - 0.4776800870895386, - 0.3436349034309387, - 0.20225825905799866, - 0.05740654468536377, - 0.09231464564800262, - 0.22899726033210754, - 0.36147546768188477, - 0.4861355125904083, - 0.5995771288871765, - 0.698705792427063, - 0.7808175683021545, - 0.8436727523803711, - 0.885556697845459, - 0.9053269028663635, - 0.9024441838264465, - 0.8769872188568115, - 0.8296502828598022, - 0.7617247104644775, - 0.6750631332397461, - 0.572029709815979, - 0.45543476939201355, - 0.3284587860107422, - 0.19456526637077332, - 0.05740654841065407, - 0.09231464564800262, - 0.20646680891513824, - 0.31702911853790283, - 0.4209856688976288, - 0.5155009031295776, - 0.5979965329170227, - 0.6662223935127258, - 0.718317449092865, - 0.7528607249259949, - 0.7689098715782166, - 0.7660271525382996, - 0.7442912459373474, - 0.7042949795722961, - 0.647129476070404, - 0.5743539333343506, - 0.4879534840583801, - 0.390284925699234, - 0.28401243686676025, - 0.17203480005264282, - 0.057406552135944366, - 0.09231466054916382, - 0.17154040932655334, - 0.2481289803981781, - 0.31999123096466064, - 0.3851670026779175, - 0.44187837839126587, - 0.4885784685611725, - 0.5239934921264648, - 0.5471572875976562, - 0.5574380159378052, - 0.5545552968978882, - 0.5385878086090088, - 0.509971022605896, - 0.4694855809211731, - 0.4182358384132385, - 0.35761961340904236, - 0.28929048776626587, - 0.21511229872703552, - 0.13710841536521912, - 0.05740656331181526, - 0.09231466799974442, - 0.1280028522014618, - 0.16224145889282227, - 0.19409655034542084, - 0.22269919514656067, - 0.2472691684961319, - 0.2671363055706024, - 0.2817586660385132, - 0.2907373905181885, - 0.29382753372192383, - 0.2909448444843292, - 0.2821679711341858, - 0.2677362561225891, - 0.24804340302944183, - 0.22362659871578217, - 0.19515182077884674, - 0.16339579224586487, - 0.1292247772216797, - 0.09357086569070816, - 0.05740657448768616, - 0.09231468290090561, - 0.08057215064764023, - 0.06867382675409317, - 0.05694425851106644, - 0.04570339620113373, - 0.03525787964463234, - 0.02589261904358864, - 0.017863072454929352, - 0.011388272047042847, - 0.006644837558269501, - 0.0037621483206748962, - 0.0028188377618789673, - 0.0038406476378440857, - 0.0067996978759765625, - 0.011615268886089325, - 0.018156006932258606, - 0.026243504136800766, - 0.03565714508295059, - 0.046140156686306, - 0.05740658938884735, - 0.0923146903514862, - 0.034388136118650436, - -0.02243444323539734, - -0.07660306990146637, - -0.12664015591144562, - -0.1711808145046234, - -0.20901009440422058, - -0.23909619450569153, - -0.26061829924583435, - -0.2729893922805786, - -0.2758720815181732, - -0.26918771862983704, - -0.2531186044216156, - -0.22810304164886475, - -0.1948234736919403, - -0.15418757498264313, - -0.10730381309986115, - -0.05545112490653992, - -0.000043861567974090576, - 0.057406600564718246, - 0.0923147052526474, - -0.005544446408748627, - -0.1012103408575058, - -0.1920734941959381, - -0.2756553888320923, - -0.34967610239982605, - -0.41211655735969543, - -0.46127355098724365, - -0.4958062171936035, - -0.5147725343704224, - -0.5176552534103394, - -0.504375696182251, - -0.4752960205078125, - -0.4312094449996948, - -0.37331876158714294, - -0.3032028377056122, - -0.22277423739433289, - -0.13422702252864838, - -0.039976440370082855, - 0.05740661174058914, - 0.092314712703228, - -0.03489825129508972, - -0.15911731123924255, - -0.2769540250301361, - -0.38519418239593506, - -0.4808851480484009, - -0.5614169239997864, - -0.624592661857605, - -0.6686892509460449, - -0.6925035715103149, - -0.6953862905502319, - -0.6772587299346924, - -0.6386151313781738, - -0.5805099010467529, - -0.5045278668403625, - -0.41274160146713257, - -0.3076547682285309, - -0.19213399291038513, - -0.06933024525642395, - 0.05740661919116974, - 0.0923147201538086, - -0.05049237608909607, - -0.18988019227981567, - -0.32204651832580566, - -0.4433862566947937, - -0.5505895614624023, - -0.6407322883605957, - -0.7113555073738098, - -0.7605327367782593, - -0.7869226336479187, - -0.7898053526878357, - -0.7691022157669067, - -0.7253779768943787, - -0.6598252654075623, - -0.5742323398590088, - -0.4709336757659912, - -0.35274726152420044, - -0.22289687395095825, - -0.0849243700504303, - 0.05740662291646004, - 0.0923147201538086, - -0.050636932253837585, - -0.19016534090042114, - -0.3224644958972931, - -0.443925678730011, - -0.5512356758117676, - -0.6414675116539001, - -0.7121598124504089, - -0.761384129524231, - -0.7877978682518005, - -0.7906805872917175, - -0.7699536085128784, - -0.7261822819709778, - -0.6605604887008667, - -0.574878454208374, - -0.4714730978012085, - -0.35316523909568787, - -0.22318202257156372, - -0.08506892621517181, - 0.05740662291646004, - 0.092314712703228, - -0.03531624376773834, - -0.1599418818950653, - -0.2781626880168915, - -0.38675400614738464, - -0.48275357484817505, - -0.5635429620742798, - -0.6269183158874512, - -0.6711511015892029, - -0.6950344443321228, - -0.6979171633720398, - -0.6797205805778503, - -0.64094078540802, - -0.5826359391212463, - -0.5063962936401367, - -0.41430142521858215, - -0.30886343121528625, - -0.19295856356620789, - -0.06974823772907257, - 0.05740661919116974, - 0.0923147052526474, - -0.006190590560436249, - -0.10248501598834991, - -0.1939418911933899, - -0.27806657552719116, - -0.3525643050670624, - -0.41540297865867615, - -0.46486860513687134, - -0.4996117949485779, - -0.5186848044395447, - -0.5215675234794617, - -0.5081812739372253, - -0.4788910746574402, - -0.4344959259033203, - -0.3762069642543793, - -0.30561402440071106, - -0.22464263439178467, - -0.1355016976594925, - -0.04062258452177048, - 0.05740661174058914, - 0.0923146978020668, - 0.03358389064669609, - -0.024020984768867493, - -0.0789286345243454, - -0.1296413242816925, - -0.17477568984031677, - -0.21310067176818848, - -0.24357083439826965, - -0.2653549909591675, - -0.2778589129447937, - -0.2807416021823883, - -0.27392441034317017, - -0.2575932443141937, - -0.23219361901283264, - -0.19841831922531128, - -0.15718872845172882, - -0.10962937772274017, - -0.05703766644001007, - -0.0008481070399284363, - 0.057406600564718246, - 0.09231468290090561, - 0.0796969085931778, - 0.06694720685482025, - 0.05441337823867798, - 0.04243727773427963, - 0.03134561702609062, - 0.02144092321395874, - 0.012993380427360535, - 0.006233423948287964, - 0.0013454258441925049, - -0.0015372633934020996, - -0.0023360103368759155, - -0.0010290443897247314, - 0.002347998321056366, - 0.0077029988169670105, - 0.014889884740114212, - 0.023712623864412308, - 0.03393053263425827, - 0.04526491463184357, - 0.05740658938884735, - 0.09231466799974442, - 0.1271514594554901, - 0.16056187450885773, - 0.19163459539413452, - 0.21952202916145325, - 0.2434634566307068, - 0.26280587911605835, - 0.2770216166973114, - 0.28572291135787964, - 0.28867244720458984, - 0.2857897877693176, - 0.27715349197387695, - 0.26299920678138733, - 0.24371296167373657, - 0.21982088685035706, - 0.19197465479373932, - 0.16093383729457855, - 0.12754519283771515, - 0.09271945804357529, - 0.05740657448768616, - 0.09231466054916382, - 0.1708051562309265, - 0.24667856097221375, - 0.31786519289016724, - 0.3824233114719391, - 0.4385918974876404, - 0.4848388731479645, - 0.5199027061462402, - 0.5428270101547241, - 0.5529862642288208, - 0.5501035451889038, - 0.5342575311660767, - 0.5058803558349609, - 0.4657459557056427, - 0.41494935750961304, - 0.35487592220306396, - 0.28716444969177246, - 0.21366187930107117, - 0.13637316226959229, - 0.05740656703710556, - 0.09231464564800262, - 0.20592741668224335, - 0.3159649968147278, - 0.419425904750824, - 0.5134879350662231, - 0.5955854058265686, - 0.6634787321090698, - 0.7153163552284241, - 0.7496838569641113, - 0.765643835067749, - 0.762761116027832, - 0.7411143779754639, - 0.7012938857078552, - 0.6443858742713928, - 0.571942925453186, - 0.4859405755996704, - 0.3887251615524292, - 0.2829483151435852, - 0.17149540781974792, - 0.057406555861234665, - 0.09231464564800262, - 0.22871212661266327, - 0.360912948846817, - 0.48531100153923035, - 0.5985130071640015, - 0.697431206703186, - 0.7793672680854797, - 0.8420862555503845, - 0.8838773369789124, - 0.9036005139350891, - 0.9007177948951721, - 0.8753078579902649, - 0.8280637860298157, - 0.7602744102478027, - 0.6737886667251587, - 0.5709656476974487, - 0.45461025834083557, - 0.32789626717567444, - 0.19428013265132904, - 0.05740654841065407, - 0.09231464564800262, - 0.23669025301933289, - 0.3766515851020813, - 0.5083808302879333, - 0.628284752368927, - 0.7330927848815918, - 0.8199458718299866, - 0.8864750266075134, - 0.9308655261993408, - 0.9519063234329224, - 0.9490236043930054, - 0.9222960472106934, - 0.8724525570869446, - 0.8008530139923096, - 0.7094502449035645, - 0.600737452507019, - 0.4776800870895386, - 0.3436349034309387, - 0.20225825905799866, - 0.05740654468536377 - ], - "y": [ - 0.6668139696121216, - 0.6673167943954468, - 0.6681073904037476, - 0.6691642999649048, - 0.6704586148262024, - 0.6719550490379333, - 0.6736127734184265, - 0.6753865480422974, - 0.6772280335426331, - 0.6790869832038879, - 0.6809126734733582, - 0.6826553344726562, - 0.6842674016952515, - 0.6857049465179443, - 0.6869286894798279, - 0.6879053115844727, - 0.6886081099510193, - 0.6890180110931396, - 0.6891237497329712, - 0.6889224052429199, - 0.6668139100074768, - 0.7143751978874207, - 0.760940670967102, - 0.8052400946617126, - 0.8460651636123657, - 0.8823022842407227, - 0.9129629731178284, - 0.9372109174728394, - 0.9543845653533936, - 0.9640156030654907, - 0.9658412933349609, - 0.9598119258880615, - 0.9460917711257935, - 0.925055205821991, - 0.897275984287262, - 0.8635119199752808, - 0.8246839046478271, - 0.7818512320518494, - 0.7361821532249451, - 0.6889224052429199, - 0.6668139100074768, - 0.7562959790229797, - 0.8436387181282043, - 0.9264597296714783, - 1.0024996995925903, - 1.069684624671936, - 1.1261818408966064, - 1.170450210571289, - 1.201282262802124, - 1.217836856842041, - 1.2196625471115112, - 1.206709623336792, - 1.1793310642242432, - 1.138274073600769, - 1.0846583843231201, - 1.0199464559555054, - 0.9459035396575928, - 0.8645493388175964, - 0.7781029343605042, - 0.6889224052429199, - 0.6668139100074768, - 0.7885363101959229, - 0.9072399735450745, - 1.0196869373321533, - 1.1228101253509521, - 1.2137963771820068, - 1.2901637554168701, - 1.3498294353485107, - 1.3911657333374023, - 1.4130451679229736, - 1.4148709774017334, - 1.3965930938720703, - 1.3587102890014648, - 1.3022561073303223, - 1.2287700176239014, - 1.1402567625045776, - 1.0391308069229126, - 0.9281505346298218, - 0.8103432655334473, - 0.6889224052429199, - 0.6668139100074768, - 0.8076025247573853, - 0.9448522925376892, - 1.0748194456100464, - 1.1939587593078613, - 1.299020528793335, - 1.387138843536377, - 1.455910086631775, - 1.5034584999084473, - 1.528486728668213, - 1.530312418937683, - 1.5088858604431152, - 1.464790940284729, - 1.3992310762405396, - 1.3139941692352295, - 1.2114055156707764, - 1.0942631959915161, - 0.9657628536224365, - 0.8294094800949097, - 0.6889224052429199, - 0.6668139100074768, - 0.8114283680915833, - 0.9523996710777283, - 1.0858824253082275, - 1.208235740661621, - 1.3161218166351318, - 1.4065980911254883, - 1.4771965742111206, - 1.525991439819336, - 1.5516517162322998, - 1.5534772872924805, - 1.531418800354004, - 1.4860774278640747, - 1.4186904430389404, - 1.3310956954956055, - 1.2256824970245361, - 1.1053262948989868, - 0.9733102321624756, - 0.8332353234291077, - 0.6889224052429199, - 0.6668139100074768, - 0.7995993494987488, - 0.9290643930435181, - 1.0516773462295532, - 1.1640937328338623, - 1.2632472515106201, - 1.3464330434799194, - 1.4113823175430298, - 1.4563231468200684, - 1.480029582977295, - 1.4818553924560547, - 1.4617505073547363, - 1.4202631711959839, - 1.358525276184082, - 1.2782210111618042, - 1.1815404891967773, - 1.071121096611023, - 0.9499748945236206, - 0.8214063048362732, - 0.6889224052429199, - 0.6668139100074768, - 0.7733973860740662, - 0.8773750066757202, - 0.9759106636047363, - 1.0663164854049683, - 1.146126389503479, - 1.2131634950637817, - 1.265599250793457, - 1.302003026008606, - 1.3213820457458496, - 1.3232078552246094, - 1.307430386543274, - 1.2744801044464111, - 1.2252557277679443, - 1.161100149154663, - 1.0837632417678833, - 0.995354413986206, - 0.8982856273651123, - 0.7952043414115906, - 0.6889224052429199, - 0.6668139100074768, - 0.7356617450714111, - 0.8029330372810364, - 0.8667929172515869, - 0.925499439239502, - 0.9774512052536011, - 1.0212311744689941, - 1.0556451082229614, - 1.0797542333602905, - 1.0929008722305298, - 1.0947265625, - 1.085181474685669, - 1.0645259618759155, - 1.0333234071731567, - 0.9924249649047852, - 0.942946195602417, - 0.8862367868423462, - 0.8238435983657837, - 0.7574687004089355, - 0.6889224052429199, - 0.6668139100074768, - 0.6904816627502441, - 0.7138053774833679, - 0.7361487746238708, - 0.7569024562835693, - 0.7755002975463867, - 0.7914349436759949, - 0.8042718172073364, - 0.813660740852356, - 0.8193455338478088, - 0.8211712837219238, - 0.8190880417823792, - 0.8131526708602905, - 0.8035271167755127, - 0.7904739379882812, - 0.7743491530418396, - 0.7555926442146301, - 0.7347159385681152, - 0.7122886180877686, - 0.6889224052429199, - 0.6668139696121216, - 0.6427532434463501, - 0.6196503639221191, - 0.5981354713439941, - 0.5787955522537231, - 0.5621580481529236, - 0.5486767888069153, - 0.5387195348739624, - 0.5325579643249512, - 0.5303599834442139, - 0.5321856737136841, - 0.5379852056503296, - 0.5476004481315613, - 0.5607689619064331, - 0.5771316885948181, - 0.5962422490119934, - 0.6175793409347534, - 0.6405609250068665, - 0.6645601987838745, - 0.6889224648475647, - 0.6668139696121216, - 0.5976484417915344, - 0.5306711196899414, - 0.467708945274353, - 0.410479336977005, - 0.36054348945617676, - 0.31926336884498596, - 0.2877650558948517, - 0.2669077217578888, - 0.25726035237312317, - 0.2590860426425934, - 0.272335022687912, - 0.2966459095478058, - 0.3313555121421814, - 0.3755171000957489, - 0.42792603373527527, - 0.4871528148651123, - 0.5515817403793335, - 0.6194553971290588, - 0.6889224648475647, - 0.6668139696121216, - 0.5600551962852478, - 0.4565100073814392, - 0.359002947807312, - 0.2701936364173889, - 0.19250470399856567, - 0.1280551552772522, - 0.07860302925109863, - 0.045497357845306396, - 0.029641151428222656, - 0.03146684169769287, - 0.050924718379974365, - 0.08748388290405273, - 0.14014732837677002, - 0.20747825503349304, - 0.2876402735710144, - 0.3784467577934265, - 0.4774205982685089, - 0.5818621516227722, - 0.6889224648475647, - 0.6668139696121216, - 0.5340471863746643, - 0.4052034914493561, - 0.28379732370376587, - 0.17314040660858154, - 0.07625114917755127, - -0.004227578639984131, - -0.06610053777694702, - -0.10767996311187744, - -0.1278315782546997, - -0.1260058879852295, - -0.10225260257720947, - -0.05721968412399292, - 0.007864594459533691, - 0.09122467041015625, - 0.19058704376220703, - 0.30324113368988037, - 0.4261140525341034, - 0.5558541417121887, - 0.6889224648475647, - 0.6668139696121216, - 0.5224429368972778, - 0.38231146335601807, - 0.2502419650554657, - 0.12983697652816772, - 0.024380981922149658, - -0.06324976682662964, - -0.13066458702087402, - -0.17602485418319702, - -0.1980929970741272, - -0.19626730680465698, - -0.17059749364852905, - -0.12178373336791992, - -0.05115753412246704, - 0.03935450315475464, - 0.147283673286438, - 0.2696857750415802, - 0.4032220244407654, - 0.5442498922348022, - 0.6889224648475647, - 0.6668139696121216, - 0.5264997482299805, - 0.390314519405365, - 0.26197296380996704, - 0.14497590065002441, - 0.0425148606300354, - -0.042615532875061035, - -0.10809296369552612, - -0.15213143825531006, - -0.17352956533432007, - -0.17170387506484985, - -0.1467040777206421, - -0.09921211004257202, - -0.030523359775543213, - 0.05748838186264038, - 0.16242259740829468, - 0.28141677379608154, - 0.4112250804901123, - 0.5483067035675049, - 0.6889224648475647, - 0.6668139696121216, - 0.545778214931488, - 0.4283455014228821, - 0.31771916151046753, - 0.21691671013832092, - 0.12868791818618774, - 0.05543923377990723, - -0.0008312463760375977, - -0.03858858346939087, - -0.05680269002914429, - -0.05497699975967407, - -0.0331612229347229, - 0.008049607276916504, - 0.06753140687942505, - 0.14366143941879272, - 0.2343634068965912, - 0.33716297149658203, - 0.44925612211227417, - 0.5675851702690125, - 0.6889224648475647, - 0.6668139696121216, - 0.5781891345977783, - 0.49228325486183167, - 0.4114396572113037, - 0.3378635346889496, - 0.27356186509132385, - 0.22028863430023193, - 0.1794969141483307, - 0.15229946374893188, - 0.13943827152252197, - 0.1412639617919922, - 0.15772682428359985, - 0.1883777678012848, - 0.23238074779510498, - 0.288535475730896, - 0.35531020164489746, - 0.4308834671974182, - 0.5131938457489014, - 0.5999960899353027, - 0.6889224648475647, - 0.6668139696121216, - 0.6202202439308167, - 0.5751990079879761, - 0.532978355884552, - 0.49470987915992737, - 0.46143749356269836, - 0.4340687692165375, - 0.41335028409957886, - 0.399847149848938, - 0.3939276933670044, - 0.3957533836364746, - 0.4052744507789612, - 0.42223113775253296, - 0.4461609423160553, - 0.4764111340045929, - 0.5121565461158752, - 0.5524221658706665, - 0.5961096286773682, - 0.6420271992683411, - 0.6889224648475647, - 0.6668139696121216, - 0.6673167943954468, - 0.6681074500083923, - 0.6691643595695496, - 0.6704587340354919, - 0.6719551682472229, - 0.6736128926277161, - 0.6753866672515869, - 0.6772282123565674, - 0.6790871620178223, - 0.6809128522872925, - 0.6826555132865906, - 0.6842675805091858, - 0.6857050657272339, - 0.6869288086891174, - 0.6879054307937622, - 0.6886082291603088, - 0.6890180706977844, - 0.6891237497329712, - 0.6889224052429199 - ], - "z": [ - -4.180826187133789, - -4.196834087371826, - -4.217515468597412, - -4.242306232452393, - -4.270529747009277, - -4.301415920257568, - -4.334123134613037, - -4.367758750915527, - -4.401405334472656, - -4.434144973754883, - -4.465084552764893, - -4.493380546569824, - -4.518260955810547, - -4.539046764373779, - -4.555171012878418, - -4.566194534301758, - -4.5718159675598145, - -4.571882247924805, - -4.566391468048096, - -4.555493354797363, - -4.180826187133789, - -4.19334077835083, - -4.210623741149902, - -4.232203960418701, - -4.257492542266846, - -4.285799980163574, - -4.316353797912598, - -4.348320960998535, - -4.380829334259033, - -4.412992000579834, - -4.443931579589844, - -4.472804546356201, - -4.498823165893555, - -4.52127742767334, - -4.539555072784424, - -4.553157329559326, - -4.561713695526123, - -4.564990043640137, - -4.562897682189941, - -4.555493354797363, - -4.180826187133789, - -4.188767910003662, - -4.201602458953857, - -4.21898078918457, - -4.2404279708862305, - -4.265359401702881, - -4.293095111846924, - -4.322878360748291, - -4.353896617889404, - -4.385303974151611, - -4.416244029998779, - -4.445871829986572, - -4.4733805656433105, - -4.498018741607666, - -4.5191144943237305, - -4.536092758178711, - -4.548490524291992, - -4.55596923828125, - -4.558324813842773, - -4.555493354797363, - -4.180826187133789, - -4.1836113929748535, - -4.19143009185791, - -4.2040696144104, - -4.221185207366943, - -4.242310047149658, - -4.266867637634277, - -4.294188022613525, - -4.323526382446289, - -4.354082107543945, - -4.385021686553955, - -4.415501594543457, - -4.444690227508545, - -4.471790790557861, - -4.496065139770508, - -4.516850471496582, - -4.533579349517822, - -4.5457963943481445, - -4.553168296813965, - -4.555493354797363, - -4.180826187133789, - -4.17842960357666, - -4.181208610534668, - -4.1890869140625, - -4.201849937438965, - -4.219149112701416, - -4.240513324737549, - -4.265358924865723, - -4.293009281158447, - -4.322709083557129, - -4.353649139404297, - -4.384984493255615, - -4.415861129760742, - -4.445436477661133, - -4.472904205322266, - -4.497514724731445, - -4.518596649169922, - -4.535574913024902, - -4.5479865074157715, - -4.555493354797363, - -4.180826187133789, - -4.1737847328186035, - -4.1720452308654785, - -4.175655364990234, - -4.184516429901123, - -4.1983866691589355, - -4.216887950897217, - -4.239515781402588, - -4.265652179718018, - -4.294585227966309, - -4.325524806976318, - -4.357627868652344, - -4.390017509460449, - -4.421811580657959, - -4.452141761779785, - -4.4801812171936035, - -4.505165100097656, - -4.526412010192871, - -4.543341636657715, - -4.555493354797363, - -4.180826187133789, - -4.170179843902588, - -4.164933681488037, - -4.165231227874756, - -4.1710638999938965, - -4.182272911071777, - -4.198552131652832, - -4.219458103179932, - -4.244420051574707, - -4.272757530212402, - -4.30369758605957, - -4.336395740509033, - -4.369960308074951, - -4.403475761413574, - -4.436027526855469, - -4.466728687286377, - -4.494740962982178, - -4.5192999839782715, - -4.539736747741699, - -4.555493354797363, - -4.180826187133789, - -4.168005466461182, - -4.160644054412842, - -4.158943176269531, - -4.162949562072754, - -4.172553062438965, - -4.187492847442627, - -4.20736026763916, - -4.231613636016846, - -4.259592056274414, - -4.290531635284424, - -4.323588848114014, - -4.3578619956970215, - -4.392416000366211, - -4.4263081550598145, - -4.458614349365234, - -4.488452911376953, - -4.515010833740234, - -4.537562370300293, - -4.555493354797363, - -4.180826187133789, - -4.167497158050537, - -4.159641742706299, - -4.157474040985107, - -4.16105318069458, - -4.170281887054443, - -4.184907913208008, - -4.204532623291016, - -4.228620529174805, - -4.256515026092529, - -4.287455081939697, - -4.320596218109131, - -4.355034828186035, - -4.389831066131592, - -4.424036502838135, - -4.4567179679870605, - -4.486983776092529, - -4.514008045196533, - -4.537054061889648, - -4.555493354797363, - -4.180826187133789, - -4.168710231781006, - -4.162034511566162, - -4.16098165512085, - -4.165579795837402, - -4.175704002380371, - -4.191077709197998, - -4.211282253265381, - -4.23576545715332, - -4.26386022567749, - -4.2947998046875, - -4.327740669250488, - -4.361783981323242, - -4.39600133895874, - -4.429459095001221, - -4.461244583129883, - -4.4904913902282715, - -4.516401290893555, - -4.538267135620117, - -4.555493354797363, - -4.180826187133789, - -4.171513080596924, - -4.1675639152526855, - -4.169086933135986, - -4.176039695739746, - -4.188232898712158, - -4.205334186553955, - -4.226877212524414, - -4.2522735595703125, - -4.280831336975098, - -4.311770915985107, - -4.3442487716674805, - -4.377378940582275, - -4.410257816314697, - -4.441987991333008, - -4.471704483032227, - -4.498596668243408, - -4.521930694580078, - -4.541069984436035, - -4.555493354797363, - -4.180826187133789, - -4.175602436065674, - -4.175630569458008, - -4.180910587310791, - -4.191298484802246, - -4.206510543823242, - -4.226131916046143, - -4.249627590179443, - -4.276356220245361, - -4.305589199066162, - -4.33652925491333, - -4.368331432342529, - -4.400129318237305, - -4.431055545806885, - -4.460265636444092, - -4.486963272094727, - -4.510420322418213, - -4.529996871948242, - -4.545159339904785, - -4.555493354797363, - -4.180826187133789, - -4.180534362792969, - -4.185359954833984, - -4.195172309875488, - -4.209702968597412, - -4.228556156158447, - -4.251217365264893, - -4.277068138122559, - -4.305404186248779, - -4.335451602935791, - -4.366391181945801, - -4.397379398345947, - -4.427570343017578, - -4.456140518188477, - -4.482311248779297, - -4.505367755889893, - -4.52468204498291, - -4.539726734161377, - -4.55009126663208, - -4.555493354797363, - -4.180826187133789, - -4.185774803161621, - -4.195698261260986, - -4.210325717926025, - -4.229259014129639, - -4.251980781555176, - -4.277871608734131, - -4.306225776672363, - -4.336268901824951, - -4.367181777954102, - -4.398121356964111, - -4.428244113922119, - -4.456727504730225, - -4.482795238494873, - -4.505735874176025, - -4.524923801422119, - -4.539835453033447, - -4.550064563751221, - -4.555331707000732, - -4.555493354797363, - -4.180826187133789, - -4.190755844116211, - -4.205524444580078, - -4.224729537963867, - -4.247847080230713, - -4.2742462158203125, - -4.303206920623779, - -4.333939552307129, - -4.36560583114624, - -4.397341728210449, - -4.428281307220459, - -4.457581043243408, - -4.484441757202148, - -4.5081305503845215, - -4.528001308441162, - -4.543511867523193, - -4.554239273071289, - -4.559891223907471, - -4.560312747955322, - -4.555493354797363, - -4.180826187133789, - -4.194937705993652, - -4.213774681091309, - -4.236822605133057, - -4.263453006744385, - -4.292939186096191, - -4.324477672576904, - -4.357207775115967, - -4.3902363777160645, - -4.422662734985352, - -4.453602313995361, - -4.482211589813232, - -4.507709503173828, - -4.5294013023376465, - -4.546694278717041, - -4.559117794036865, - -4.5663323402404785, - -4.568140983581543, - -4.564495086669922, - -4.555493354797363, - -4.180826187133789, - -4.197867393493652, - -4.2195539474487305, - -4.245294094085693, - -4.274385452270508, - -4.306034564971924, - -4.339378833770752, - -4.373507499694824, - -4.4074907302856445, - -4.440401077270508, - -4.471340656280518, - -4.4994659423828125, - -4.524009704589844, - -4.544301986694336, - -4.559789657592773, - -4.570050239562988, - -4.574803829193115, - -4.573920249938965, - -4.567424297332764, - -4.555493354797363, - -4.180826187133789, - -4.199227333068848, - -4.222236633300781, - -4.249226093292236, - -4.2794599533081055, - -4.312113285064697, - -4.346295356750488, - -4.381073474884033, - -4.415499687194824, - -4.448634624481201, - -4.479574680328369, - -4.507474899291992, - -4.531575679779053, - -4.551218509674072, - -4.565867900848389, - -4.575124740600586, - -4.578735828399658, - -4.576602935791016, - -4.568784236907959, - -4.555493354797363, - -4.180826187133789, - -4.1988701820373535, - -4.221531867980957, - -4.24819278717041, - -4.278126239776611, - -4.310515880584717, - -4.344477653503418, - -4.379085540771484, - -4.413395404815674, - -4.446471214294434, - -4.477410793304443, - -4.505370616912842, - -4.529587745666504, - -4.54940128326416, - -4.564270973205566, - -4.57379150390625, - -4.577702522277832, - -4.575898170471191, - -4.568427085876465, - -4.555493354797363, - -4.180826187133789, - -4.196834087371826, - -4.217515468597412, - -4.242306232452393, - -4.270529747009277, - -4.301415920257568, - -4.334123134613037, - -4.367758750915527, - -4.401405334472656, - -4.434144973754883, - -4.465084552764893, - -4.493380546569824, - -4.518260955810547, - -4.539046764373779, - -4.555171012878418, - -4.566194534301758, - -4.5718159675598145, - -4.571882247924805, - -4.566391468048096, - -4.555493354797363 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.06208840012550354, - 0.21689601242542267, - 0.36700475215911865, - 0.5083199739456177, - 0.636987030506134, - 0.7494962811470032, - 0.8427786231040955, - 0.914289653301239, - 0.9620786905288696, - 0.9848421812057495, - 0.9819592237472534, - 0.9535084962844849, - 0.9002659916877747, - 0.8236839771270752, - 0.7258515357971191, - 0.6094372272491455, - 0.47761639952659607, - 0.33398503065109253, - 0.18246085941791534, - 0.027177101001143456, - 0.06208840385079384, - 0.2076617330312729, - 0.3487880825996399, - 0.48161780834198, - 0.6025277376174927, - 0.7082198262214661, - 0.795810878276825, - 0.8629118204116821, - 0.9076921939849854, - 0.9289306402206421, - 0.926047682762146, - 0.8991219997406006, - 0.8488881587982178, - 0.7767162322998047, - 0.684575080871582, - 0.5749778747558594, - 0.45091426372528076, - 0.31576836109161377, - 0.17322658002376556, - 0.027177104726433754, - 0.06208840757608414, - 0.18262653052806854, - 0.29940053820610046, - 0.4092251658439636, - 0.5091046690940857, - 0.596314549446106, - 0.6684760451316833, - 0.7236206531524658, - 0.7602443099021912, - 0.7773478627204895, - 0.7744649052619934, - 0.7516741156578064, - 0.7095969915390015, - 0.6493813991546631, - 0.5726698040962219, - 0.48155477643013, - 0.3785216212272644, - 0.26638084650039673, - 0.14819137752056122, - 0.0271771103143692, - 0.06208842247724533, - 0.14450335502624512, - 0.22419410943984985, - 0.29898688197135925, - 0.36684155464172363, - 0.4259071946144104, - 0.47457262873649597, - 0.5115104913711548, - 0.5357131361961365, - 0.5465202927589417, - 0.5436373353004456, - 0.5271429419517517, - 0.49748679995536804, - 0.4554780125617981, - 0.40226244926452637, - 0.33929166197776794, - 0.26828330755233765, - 0.19117438793182373, - 0.11006820946931839, - 0.027177121490240097, - 0.06208842992782593, - 0.09742344915866852, - 0.13131847977638245, - 0.16284894943237305, - 0.19115479290485382, - 0.21546389162540436, - 0.23511317372322083, - 0.2495666742324829, - 0.2584300637245178, - 0.26146161556243896, - 0.25857865810394287, - 0.24985983967781067, - 0.23554295301437378, - 0.21601851284503937, - 0.19181914627552032, - 0.16360488533973694, - 0.13214537501335144, - 0.09829877316951752, - 0.0629882961511612, - 0.027177132666110992, - 0.06208844482898712, - 0.04648865386843681, - 0.030838239938020706, - 0.015564097091555595, - 0.0010828785598278046, - -0.012210410088300705, - -0.023953162133693695, - -0.03382507711648941, - -0.041556864976882935, - -0.04693761467933655, - -0.04982057213783264, - -0.05012708157300949, - -0.04784878343343735, - -0.04304784536361694, - -0.03585519641637802, - -0.02646704763174057, - -0.015139471739530563, - -0.00218147411942482, - 0.01205349713563919, - 0.027177147567272186, - 0.062088459730148315, - -0.0027814581990242004, - -0.0663580521941185, - -0.1269071102142334, - -0.18277698755264282, - -0.2324436902999878, - -0.27455252408981323, - -0.3079548180103302, - -0.3317394554615021, - -0.34525755047798157, - -0.34814050793647766, - -0.34030964970588684, - -0.32197853922843933, - -0.2936471998691559, - -0.2560885548591614, - -0.2103269398212433, - -0.157610684633255, - -0.09937776625156403, - -0.037216611206531525, - 0.02717716060578823, - 0.06208847090601921, - -0.04504773020744324, - -0.1497376561164856, - -0.24912571907043457, - -0.34050077199935913, - -0.42137035727500916, - -0.4895285964012146, - -0.5431164503097534, - -0.5806719064712524, - -0.6011706590652466, - -0.6040536165237427, - -0.5892421007156372, - -0.5571401119232178, - -0.5086233019828796, - -0.44501522183418274, - -0.3680507242679596, - -0.2798292636871338, - -0.18275737762451172, - -0.07948288321495056, - 0.027177171781659126, - 0.06208847835659981, - -0.07572992146015167, - -0.2102651596069336, - -0.33784741163253784, - -0.45499661564826965, - -0.5585171580314636, - -0.6455854177474976, - -0.7138263583183289, - -0.7613785862922668, - -0.7869446873664856, - -0.7898276448249817, - -0.7699487805366516, - -0.7278500199317932, - -0.6646801829338074, - -0.582162082195282, - -0.48254650831222534, - -0.36855095624923706, - -0.24328488111495972, - -0.110165074467659, - 0.027177179232239723, - 0.062088482081890106, - -0.09150315821170807, - -0.24138134717941284, - -0.38345783948898315, - -0.5138571858406067, - -0.6290222406387329, - -0.7258118391036987, - -0.8015857934951782, - -0.8542770147323608, - -0.8824482560157776, - -0.8853312134742737, - -0.8628472089767456, - -0.8156094551086426, - -0.7449066042900085, - -0.6526671648025513, - -0.5414071083068848, - -0.4141613841056824, - -0.27440106868743896, - -0.1259383112192154, - 0.02717718295753002, - 0.062088482081890106, - -0.09065815806388855, - -0.2397143840789795, - -0.3810144066810608, - -0.5107038617134094, - -0.6252451539039612, - -0.7215139269828796, - -0.7968843579292297, - -0.8493002653121948, - -0.8773319721221924, - -0.8802149295806885, - -0.8578704595565796, - -0.8109080195426941, - -0.7406086921691895, - -0.6488900780677795, - -0.5382537841796875, - -0.41171795129776, - -0.2727341055870056, - -0.12509331107139587, - 0.02717718295753002, - 0.06208847835659981, - -0.07328648865222931, - -0.20544493198394775, - -0.33078187704086304, - -0.4458785355091095, - -0.547595202922821, - -0.6331575512886047, - -0.7002315521240234, - -0.7469876408576965, - -0.7721502184867859, - -0.775033175945282, - -0.7555578351020813, - -0.7142552137374878, - -0.6522523164749146, - -0.5712401270866394, - -0.4734284281730652, - -0.36148542165756226, - -0.23846465349197388, - -0.10772164165973663, - 0.027177179232239723, - 0.06208846718072891, - -0.041270650923252106, - -0.1422865390777588, - -0.238203763961792, - -0.32640597224235535, - -0.40448713302612305, - -0.4703174829483032, - -0.5221015214920044, - -0.5584263205528259, - -0.5783012509346008, - -0.5811842083930969, - -0.5669965147972107, - -0.5361251831054688, - -0.48941224813461304, - -0.428132027387619, - -0.3539559245109558, - -0.2689073085784912, - -0.1753062605857849, - -0.07570580393075943, - 0.027177169919013977, - 0.062088459730148315, - 0.0019199848175048828, - -0.05708339810371399, - -0.11331221461296082, - -0.16523271799087524, - -0.21142861247062683, - -0.25063982605934143, - -0.28179681301116943, - -0.30404964089393616, - -0.31679123640060425, - -0.31967419385910034, - -0.3126198351383209, - -0.29582053422927856, - -0.2697345018386841, - -0.23507344722747803, - -0.1927826702594757, - -0.14401578903198242, - -0.09010310471057892, - -0.03251516819000244, - 0.02717715874314308, - 0.06208844482898712, - 0.051604945212602615, - 0.04093126952648163, - 0.030358554795384407, - 0.020175207406282425, - 0.010659001767635345, - 0.0020695067942142487, - -0.0053589679300785065, - -0.011423800140619278, - -0.015959560871124268, - -0.01884251832962036, - -0.019994013011455536, - -0.019382677972316742, - -0.0170251727104187, - -0.01298578456044197, - -0.00737471878528595, - -0.0003450140357017517, - 0.007911555469036102, - 0.017169790342450142, - 0.027177145704627037, - 0.06208842992782593, - 0.10240015387535095, - 0.14113612473011017, - 0.17723974585533142, - 0.20972619950771332, - 0.23770929872989655, - 0.2604258060455322, - 0.2772560715675354, - 0.28774094581604004, - 0.2915944457054138, - 0.2887114882469177, - 0.2791707217693329, - 0.26323235034942627, - 0.24133116006851196, - 0.2140645682811737, - 0.18217629194259644, - 0.14653617143630981, - 0.10811641812324524, - 0.06796500086784363, - 0.027177132666110992, - 0.06208841875195503, - 0.14880123734474182, - 0.23267261683940887, - 0.3114147186279297, - 0.38287976384162903, - 0.4451182782649994, - 0.4964325726032257, - 0.5354230403900146, - 0.5610259771347046, - 0.5725429654121399, - 0.5696600079536438, - 0.5524557828903198, - 0.5213993191719055, - 0.47733795642852783, - 0.42147353291511536, - 0.35532987117767334, - 0.28071117401123047, - 0.19965289533138275, - 0.1143660768866539, - 0.027177119627594948, - 0.06208840757608414, - 0.18577982485294342, - 0.30562111735343933, - 0.41834330558776855, - 0.5208716988563538, - 0.6104094386100769, - 0.6845143437385559, - 0.7411649823188782, - 0.7788159847259521, - 0.7964403629302979, - 0.7935574054718018, - 0.7702457904815674, - 0.7271413207054138, - 0.6654196977615356, - 0.5867647528648376, - 0.49332180619239807, - 0.38763976097106934, - 0.2726013958454132, - 0.1513446718454361, - 0.0271771103143692, - 0.06208840012550354, - 0.20932871103286743, - 0.35207656025886536, - 0.4864380955696106, - 0.6087483167648315, - 0.7156710624694824, - 0.8042895197868347, - 0.8721866011619568, - 0.9175100922584534, - 0.9390238523483276, - 0.9361408948898315, - 0.9089398980140686, - 0.8581629395484924, - 0.7851948738098145, - 0.6920263767242432, - 0.581198513507843, - 0.4557345509529114, - 0.31905683875083923, - 0.1748935580253601, - 0.027177104726433754, - 0.06208840012550354, - 0.21689601242542267, - 0.36700475215911865, - 0.5083199739456177, - 0.636987030506134, - 0.7494962811470032, - 0.8427786231040955, - 0.914289653301239, - 0.9620786905288696, - 0.9848421812057495, - 0.9819592237472534, - 0.9535084962844849, - 0.9002659916877747, - 0.8236839771270752, - 0.7258515357971191, - 0.6094372272491455, - 0.47761639952659607, - 0.33398503065109253, - 0.18246085941791534, - 0.027177101001143456 - ], - "y": [ - 0.6859571933746338, - 0.6895309686660767, - 0.6933088302612305, - 0.6971876621246338, - 0.7010617852210999, - 0.7048254013061523, - 0.7083759307861328, - 0.7116164565086365, - 0.714458703994751, - 0.716825008392334, - 0.7186508774757385, - 0.7198864817619324, - 0.7204982042312622, - 0.7204692363739014, - 0.7198004722595215, - 0.718510091304779, - 0.7166333198547363, - 0.7142213582992554, - 0.7113399505615234, - 0.708067774772644, - 0.6859571933746338, - 0.7398136854171753, - 0.7925026416778564, - 0.842586874961853, - 0.8887002468109131, - 0.929584801197052, - 0.964125394821167, - 0.991379976272583, - 1.0106048583984375, - 1.0212757587432861, - 1.023101568222046, - 1.0160326957702637, - 1.000261664390564, - 0.9762187600135803, - 0.9445598721504211, - 0.9061485528945923, - 0.8620324730873108, - 0.8134151697158813, - 0.7616226673126221, - 0.7080677151679993, - 0.6859571933746338, - 0.7842764854431152, - 0.8802154660224915, - 0.9711571335792542, - 1.0546208620071411, - 1.128329873085022, - 1.1902738809585571, - 1.2387628555297852, - 1.2724742889404297, - 1.2904887199401855, - 1.2923145294189453, - 1.2779021263122559, - 1.2476446628570557, - 1.2023673057556152, - 1.1433050632476807, - 1.0720691680908203, - 0.9906027913093567, - 0.9011279940605164, - 0.806085467338562, - 0.7080677151679993, - 0.6859571933746338, - 0.8181012868881226, - 0.9469423294067383, - 1.068966031074524, - 1.1808438301086426, - 1.2795238494873047, - 1.3623144626617432, - 1.426957607269287, - 1.4716894626617432, - 1.4952902793884277, - 1.497116208076477, - 1.4771173000335693, - 1.4358391761779785, - 1.3744078874588013, - 1.2944989204406738, - 1.1982921361923218, - 1.0884116888046265, - 0.9678548574447632, - 0.8399102687835693, - 0.7080677151679993, - 0.6859571933746338, - 0.8376225233078003, - 0.9854523539543152, - 1.125414252281189, - 1.2536906003952026, - 1.3667821884155273, - 1.461604118347168, - 1.5355700254440308, - 1.5866622924804688, - 1.6134871244430542, - 1.6153130531311035, - 1.592090129852295, - 1.5444517135620117, - 1.4736974239349365, - 1.3817572593688965, - 1.2711389064788818, - 1.1448599100112915, - 1.0063648223876953, - 0.8594315052032471, - 0.7080677151679993, - 0.6859571933746338, - 0.840724766254425, - 0.9915722608566284, - 1.1343849897384644, - 1.2652673721313477, - 1.3806490898132324, - 1.4773831367492676, - 1.5528305768966675, - 1.604933500289917, - 1.6322708129882812, - 1.6340968608856201, - 1.6103613376617432, - 1.5617122650146484, - 1.4894764423370361, - 1.3956242799758911, - 1.2827157974243164, - 1.153830647468567, - 1.0124847888946533, - 0.8625337481498718, - 0.7080677151679993, - 0.6859571933746338, - 0.8270719647407532, - 0.9646390676498413, - 1.094905972480774, - 1.2143194675445557, - 1.3196220397949219, - 1.4079415798187256, - 1.4768688678741455, - 1.5245234966278076, - 1.5496058464050293, - 1.5514317750930786, - 1.5299513339996338, - 1.485750436782837, - 1.4200348854064941, - 1.3345972299575806, - 1.2317677736282349, - 1.1143516302108765, - 0.9855515956878662, - 0.8488809466362, - 0.7080677151679993, - 0.6859571933746338, - 0.7981435060501099, - 0.9075711965560913, - 1.0112553834915161, - 1.1063679456710815, - 1.1903141736984253, - 1.2608046531677246, - 1.3159161806106567, - 1.3541457653045654, - 1.3744502067565918, - 1.3762762546539307, - 1.3595736026763916, - 1.3247978687286377, - 1.2728979587554932, - 1.205289363861084, - 1.1238162517547607, - 1.0307010412216187, - 0.9284837245941162, - 0.8199524879455566, - 0.7080677151679993, - 0.6859571933746338, - 0.757074236869812, - 0.8265529274940491, - 0.8924981355667114, - 0.9531109929084778, - 1.0067381858825684, - 1.0519168376922607, - 1.0874145030975342, - 1.1122632026672363, - 1.1257848739624023, - 1.127610683441162, - 1.1176910400390625, - 1.0962963104248047, - 1.0640101432800293, - 1.0217132568359375, - 0.9705593585968018, - 0.911943793296814, - 0.847465455532074, - 0.7788832187652588, - 0.7080677151679993, - 0.6859571933746338, - 0.7083147168159485, - 0.7303639054298401, - 0.7515033483505249, - 0.7711564302444458, - 0.7887870073318481, - 0.8039143085479736, - 0.8161255717277527, - 0.8250877261161804, - 0.830556333065033, - 0.8323822021484375, - 0.8305155038833618, - 0.8250072598457336, - 0.8160076141357422, - 0.8037621378898621, - 0.788604736328125, - 0.7709489464759827, - 0.751276433467865, - 0.7301236391067505, - 0.7080677151679993, - 0.6859572529792786, - 0.6571487188339233, - 0.6294275522232056, - 0.6035499572753906, - 0.5802217721939087, - 0.5600793361663818, - 0.5436720848083496, - 0.5314475893974304, - 0.523739218711853, - 0.5207573175430298, - 0.5225831866264343, - 0.5291670560836792, - 0.5403292775154114, - 0.5557653903961182, - 0.575054407119751, - 0.5976700782775879, - 0.6229956150054932, - 0.6503400802612305, - 0.6789577007293701, - 0.708067774772644, - 0.6859572529792786, - 0.6091209053993225, - 0.534682035446167, - 0.46467113494873047, - 0.4009978473186493, - 0.3453991413116455, - 0.2993914783000946, - 0.2642298638820648, - 0.24087348580360413, - 0.22995933890342712, - 0.23178520798683167, - 0.2463013231754303, - 0.2731115520000458, - 0.31148475408554077, - 0.3603741526603699, - 0.4184461534023285, - 0.4841167628765106, - 0.5555945634841919, - 0.6309298872947693, - 0.708067774772644, - 0.6859572529792786, - 0.5694358348846436, - 0.4563944339752197, - 0.3499164581298828, - 0.25290635228157043, - 0.16801029443740845, - 0.09754407405853271, - 0.043429672718048096, - 0.0071433186531066895, - -0.010325074195861816, - -0.0084991455078125, - 0.012571156024932861, - 0.05231136083602905, - 0.1096373200416565, - 0.18298524618148804, - 0.27035459876060486, - 0.36936211585998535, - 0.47730696201324463, - 0.5912448167800903, - 0.708067774772644, - 0.6859572529792786, - 0.5423940420150757, - 0.40304839611053467, - 0.2717213034629822, - 0.15199512243270874, - 0.04713559150695801, - -0.03999704122543335, - -0.10702604055404663, - -0.15212291479110718, - -0.1740574836730957, - -0.1722315549850464, - -0.146695077419281, - -0.09814435243606567, - -0.02790379524230957, - 0.0621105432510376, - 0.16944342851638794, - 0.2911669611930847, - 0.42396092414855957, - 0.5642030239105225, - 0.708067774772644, - 0.6859572529792786, - 0.5309258699417114, - 0.3804248869419098, - 0.2385595738887787, - 0.1091996431350708, - -0.004126191139221191, - -0.09832686185836792, - -0.17083275318145752, - -0.21966606378555298, - -0.24349480867385864, - -0.24166887998580933, - -0.2142382264137268, - -0.16195106506347656, - -0.08623361587524414, - 0.010848760604858398, - 0.12664788961410522, - 0.2580052316188812, - 0.4013374149799347, - 0.5527348518371582, - 0.708067774772644, - 0.6859572529792786, - 0.5362740755081177, - 0.39097538590431213, - 0.2540246248245239, - 0.1291574239730835, - 0.01977980136871338, - -0.0711246132850647, - -0.14107638597488403, - -0.18816715478897095, - -0.21111255884170532, - -0.209286630153656, - -0.18273931741714478, - -0.13219469785690308, - -0.05903136730194092, - 0.03475475311279297, - 0.14660567045211792, - 0.27347028255462646, - 0.41188791394233704, - 0.5580830574035645, - 0.708067774772644, - 0.6859572529792786, - 0.5578591227531433, - 0.4335567057132721, - 0.3164407014846802, - 0.2097056806087494, - 0.11626321077346802, - 0.03866201639175415, - -0.020981132984161377, - -0.06103932857513428, - -0.08041977882385254, - -0.07859385013580322, - -0.055611491203308105, - -0.01209944486618042, - 0.05075526237487793, - 0.1312381625175476, - 0.2271539866924286, - 0.3358863592147827, - 0.454469233751297, - 0.5796681046485901, - 0.708067774772644, - 0.6859572529792786, - 0.5933419466018677, - 0.5035544633865356, - 0.4190440773963928, - 0.34211593866348267, - 0.2748684585094452, - 0.21913596987724304, - 0.17643862962722778, - 0.1479412317276001, - 0.13442105054855347, - 0.13624697923660278, - 0.15336906909942627, - 0.18532031774520874, - 0.23122921586036682, - 0.28984346985816956, - 0.3595642149448395, - 0.43848973512649536, - 0.5244669914245605, - 0.6151509284973145, - 0.708067774772644, - 0.6859572529792786, - 0.6388774514198303, - 0.5933834314346313, - 0.5507161021232605, - 0.5120393633842468, - 0.4784082770347595, - 0.45074009895324707, - 0.42978954315185547, - 0.4161281883716583, - 0.4101286232471466, - 0.41195449233055115, - 0.4215560257434845, - 0.4386712312698364, - 0.46283334493637085, - 0.4933832883834839, - 0.529487669467926, - 0.5701617002487183, - 0.6142959594726562, - 0.6606863737106323, - 0.708067774772644, - 0.6859571933746338, - 0.6895310282707214, - 0.6933088898658752, - 0.6971877813339233, - 0.7010619044303894, - 0.7048255205154419, - 0.7083760499954224, - 0.7116166353225708, - 0.7144588232040405, - 0.7168251276016235, - 0.7186509966850281, - 0.7198866605758667, - 0.7204983234405518, - 0.7204693555831909, - 0.719800591468811, - 0.7185102105140686, - 0.7166333794593811, - 0.7142214179039001, - 0.7113400101661682, - 0.708067774772644 - ], - "z": [ - -4.505242347717285, - -4.522041320800781, - -4.543492794036865, - -4.5690107345581055, - -4.597900390625, - -4.629372596740723, - -4.662569046020508, - -4.696584701538086, - -4.730491638183594, - -4.763364791870117, - -4.794307231903076, - -4.822475433349609, - -4.847100734710693, - -4.86751127243042, - -4.883150577545166, - -4.893592357635498, - -4.898550987243652, - -4.897891521453857, - -4.891632080078125, - -4.87994384765625, - -4.505242347717285, - -4.518214225769043, - -4.535942077636719, - -4.557943344116211, - -4.583617210388184, - -4.612264156341553, - -4.643101692199707, - -4.675289630889893, - -4.707949161529541, - -4.740190505981445, - -4.771132946014404, - -4.799932956695557, - -4.825805187225342, - -4.848043918609619, - -4.866042137145996, - -4.879309177398682, - -4.8874831199646, - -4.890340805053711, - -4.887804985046387, - -4.87994384765625, - -4.505242347717285, - -4.51325798034668, - -4.526165008544922, - -4.543611526489258, - -4.565122127532959, - -4.590109825134277, - -4.617893218994141, - -4.647714138031006, - -4.6787590980529785, - -4.71018123626709, - -4.741123676300049, - -4.770742893218994, - -4.798229694366455, - -4.822835445404053, - -4.843888282775879, - -4.860814094543457, - -4.873151779174805, - -4.880563735961914, - -4.882848739624023, - -4.87994384765625, - -4.505242347717285, - -4.507709980010986, - -4.5152201652526855, - -4.52756929397583, - -4.544419288635254, - -4.565311431884766, - -4.589674949645996, - -4.616846561431885, - -4.646083831787109, - -4.6765899658203125, - -4.7075324058532715, - -4.738067626953125, - -4.767362117767334, - -4.794617176055908, - -4.819089412689209, - -4.840111255645752, - -4.857109069824219, - -4.869619369506836, - -4.87730073928833, - -4.87994384765625, - -4.505242347717285, - -4.502171516418457, - -4.504294395446777, - -4.51155424118042, - -4.523751735687256, - -4.540555000305176, - -4.561505317687988, - -4.586031913757324, - -4.613464832305908, - -4.6430559158325195, - -4.673998832702637, - -4.705448150634766, - -4.736547470092773, - -4.7664475440979, - -4.794333457946777, - -4.819443702697754, - -4.841094017028809, - -4.858693599700928, - -4.871762275695801, - -4.87994384765625, - -4.505242347717285, - -4.4972429275512695, - -4.494571685791016, - -4.497302055358887, - -4.505359649658203, - -4.518524169921875, - -4.536437034606934, - -4.558609485626221, - -4.584436416625977, - -4.613213539123535, - -4.644156455993652, - -4.676420211791992, - -4.70912504196167, - -4.741379261016846, - -4.772302150726318, - -4.801051616668701, - -4.826841831207275, - -4.848970413208008, - -4.866833686828613, - -4.87994384765625, - -4.505242347717285, - -4.493457794189453, - -4.487104892730713, - -4.486357688903809, - -4.491235256195068, - -4.501605987548828, - -4.517186164855957, - -4.537550926208496, - -4.562144756317139, - -4.590296745300293, - -4.62123966217041, - -4.654128551483154, - -4.688066482543945, - -4.722128391265869, - -4.7553839683532715, - -4.786927223205566, - -4.815897464752197, - -4.841504096984863, - -4.863048553466797, - -4.87994384765625, - -4.505242347717285, - -4.491226673126221, - -4.482704162597656, - -4.47990608215332, - -4.48291015625, - -4.491633892059326, - -4.505838871002197, - -4.525137901306152, - -4.549005031585693, - -4.576788902282715, - -4.607731342315674, - -4.640988826751709, - -4.67565393447876, - -4.710781097412109, - -4.7454118728637695, - -4.778602123260498, - -4.809446334838867, - -4.837102890014648, - -4.8608174324035645, - -4.87994384765625, - -4.505242347717285, - -4.4907917976379395, - -4.481845378875732, - -4.478647708892822, - -4.48128604888916, - -4.489687919616699, - -4.50362491607666, - -4.522716522216797, - -4.546441555023193, - -4.574153423309326, - -4.605095863342285, - -4.638425350189209, - -4.673232078552246, - -4.708567142486572, - -4.743466377258301, - -4.776978015899658, - -4.808187484741211, - -4.836244106292725, - -4.860382556915283, - -4.87994384765625, - -4.505242347717285, - -4.492199420928955, - -4.484622001647949, - -4.482717990875244, - -4.486538887023926, - -4.495980262756348, - -4.51078462600708, - -4.530548095703125, - -4.554731845855713, - -4.582676410675049, - -4.613618850708008, - -4.6467156410217285, - -4.681064128875732, - -4.715726375579834, - -4.749758243560791, - -4.782230854034424, - -4.812257766723633, - -4.8390212059021, - -4.861790180206299, - -4.87994384765625, - -4.505242347717285, - -4.495296955108643, - -4.490733623504639, - -4.491676330566406, - -4.498099327087402, - -4.509827613830566, - -4.526541233062744, - -4.547784805297852, - -4.572977542877197, - -4.601433753967285, - -4.632376194000244, - -4.664961338043213, - -4.698300361633301, - -4.731483459472656, - -4.763606071472168, - -4.7937912940979, - -4.821216106414795, - -4.845132350921631, - -4.8648881912231445, - -4.87994384765625, - -4.505242347717285, - -4.499749660491943, - -4.499517440795898, - -4.504551410675049, - -4.51471471786499, - -4.529730319976807, - -4.549188137054443, - -4.5725579261779785, - -4.599201679229736, - -4.628393173217773, - -4.659335613250732, - -4.691185474395752, - -4.723073482513428, - -4.7541303634643555, - -4.783508777618408, - -4.810406684875488, - -4.8340911865234375, - -4.853916168212891, - -4.869340419769287, - -4.87994384765625, - -4.505242347717285, - -4.505074501037598, - -4.510021209716797, - -4.519948482513428, - -4.534584999084473, - -4.553531169891357, - -4.576271057128906, - -4.6021833419799805, - -4.6305623054504395, - -4.660633087158203, - -4.691575527191162, - -4.722546100616455, - -4.752699375152588, - -4.781213283538818, - -4.807309627532959, - -4.830276966094971, - -4.849488258361816, - -4.864420413970947, - -4.874665260314941, - -4.87994384765625, - -4.505242347717285, - -4.5106940269470215, - -4.5211076736450195, - -4.53619909286499, - -4.555556297302246, - -4.578651428222656, - -4.604854583740234, - -4.633450984954834, - -4.663661003112793, - -4.69465970993042, - -4.725602626800537, - -4.755644798278809, - -4.783967018127441, - -4.8097968101501465, - -4.8324294090271, - -4.851248264312744, - -4.865738868713379, - -4.87550687789917, - -4.880285263061523, - -4.87994384765625, - -4.505242347717285, - -4.516000270843506, - -4.531574726104736, - -4.551541805267334, - -4.5753560066223145, - -4.602368354797363, - -4.631841659545898, - -4.662972450256348, - -4.694911003112793, - -4.726786136627197, - -4.757728576660156, - -4.78689432144165, - -4.813488006591797, - -4.8367838859558105, - -4.856146812438965, - -4.8710479736328125, - -4.881081581115723, - -4.885973930358887, - -4.88559103012085, - -4.87994384765625, - -4.505242347717285, - -4.520417213439941, - -4.54028844833374, - -4.564314365386963, - -4.59183931350708, - -4.622112274169922, - -4.654307842254639, - -4.6875481605529785, - -4.720925331115723, - -4.753530502319336, - -4.784472942352295, - -4.812909126281738, - -4.838063716888428, - -4.859250068664551, - -4.875890731811523, - -4.88753080368042, - -4.893854141235352, - -4.894687652587891, - -4.890007972717285, - -4.87994384765625, - -4.505242347717285, - -4.52346658706665, - -4.546304225921631, - -4.573132514953613, - -4.603219032287598, - -4.635743618011475, - -4.66981840133667, - -4.704514980316162, - -4.73888635635376, - -4.771994590759277, - -4.802937030792236, - -4.830869674682617, - -4.855030536651611, - -4.874760627746582, - -4.889521598815918, - -4.898910999298096, - -4.902672290802002, - -4.900703430175781, - -4.893057346343994, - -4.87994384765625, - -4.505242347717285, - -4.524818420410156, - -4.548970699310303, - -4.577040672302246, - -4.608262538909912, - -4.64178466796875, - -4.676692962646484, - -4.712034702301025, - -4.7468461990356445, - -4.780178070068359, - -4.811120510101318, - -4.83882999420166, - -4.862550735473633, - -4.8816351890563965, - -4.895563125610352, - -4.90395450592041, - -4.906580448150635, - -4.903369426727295, - -4.8944091796875, - -4.87994384765625, - -4.505242347717285, - -4.524325370788574, - -4.547998428344727, - -4.575615406036377, - -4.6064229011535645, - -4.639581680297852, - -4.674185752868652, - -4.709292411804199, - -4.743943214416504, - -4.777193546295166, - -4.808135986328125, - -4.8359270095825195, - -4.859807968139648, - -4.8791279792785645, - -4.893359661102295, - -4.9021148681640625, - -4.905155181884766, - -4.902397155761719, - -4.893916130065918, - -4.87994384765625, - -4.505242347717285, - -4.522041320800781, - -4.543492794036865, - -4.5690107345581055, - -4.597900390625, - -4.629372596740723, - -4.662569046020508, - -4.696584701538086, - -4.730491638183594, - -4.763364791870117, - -4.794307231903076, - -4.822475433349609, - -4.847100734710693, - -4.86751127243042, - -4.883150577545166, - -4.893592357635498, - -4.898550987243652, - -4.897891521453857, - -4.891632080078125, - -4.87994384765625 - ] - }, - { - "marker": { - "color": "black", - "size": 2 - }, - "mode": "markers", - "name": "Means", - "type": "scatter3d", - "x": [ - 0.41768988966941833, - 0.3657273054122925, - 0.3102080523967743, - 0.2537733316421509, - 0.19698047637939453, - 0.14001193642616272, - 0.08294442296028137, - 0.025815576314926147, - -0.03135371208190918, - -0.0885511040687561, - -0.1457688808441162, - -0.2030019760131836, - -0.2602466344833374, - -0.31750041246414185, - -0.37476152181625366 - ], - "y": [ - -0.44257861375808716, - -0.6822264194488525, - -0.9382774233818054, - -1.1985504627227783, - -1.4604750871658325, - -1.7232099771499634, - -1.9864014387130737, - -2.249875545501709, - -2.5135364532470703, - -2.777327060699463, - -3.0412116050720215, - -3.305166244506836, - -3.5691747665405273, - -3.8332252502441406, - -4.097309112548828 - ], - "z": [ - -0.1038898378610611, - 0.06224912405014038, - 0.23975986242294312, - 0.42019760608673096, - 0.6017802357673645, - 0.7839246988296509, - 0.9663856029510498, - 1.1490426063537598, - 1.3318288326263428, - 1.5147050619125366, - 1.6976464986801147, - 1.8806366920471191, - 2.063663959503174, - 2.246720314025879, - 2.429800271987915 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.382763534784317, - 0.387756884098053, - 0.39356669783592224, - 0.4000345468521118, - 0.40698400139808655, - 0.4142254590988159, - 0.42156144976615906, - 0.4287918210029602, - 0.4357193410396576, - 0.44215506315231323, - 0.4479234516620636, - 0.45286715030670166, - 0.4568513035774231, - 0.45976725220680237, - 0.46153542399406433, - 0.4621075987815857, - 0.4614681601524353, - 0.45963460206985474, - 0.45665687322616577, - 0.45261624455451965, - 0.382763534784317, - 0.3846471607685089, - 0.3874320983886719, - 0.3910423815250397, - 0.39537954330444336, - 0.40032529830932617, - 0.40574467182159424, - 0.41148990392684937, - 0.41740426421165466, - 0.42332640290260315, - 0.4290947914123535, - 0.43455207347869873, - 0.43954941630363464, - 0.44395050406455994, - 0.4476352334022522, - 0.4505031406879425, - 0.45247599482536316, - 0.453499972820282, - 0.4535471498966217, - 0.45261624455451965, - 0.382763534784317, - 0.381384938955307, - 0.3809966444969177, - 0.3816092610359192, - 0.3832060396671295, - 0.3857434391975403, - 0.38915228843688965, - 0.3933395445346832, - 0.39819103479385376, - 0.4035743772983551, - 0.40934276580810547, - 0.4153388440608978, - 0.4213990569114685, - 0.42735809087753296, - 0.4330534040927887, - 0.43832963705062866, - 0.4430428743362427, - 0.4470645487308502, - 0.4502849280834198, - 0.45261624455451965, - 0.382763534784317, - 0.3783237338066101, - 0.37495774030685425, - 0.3727573752403259, - 0.3717826306819916, - 0.3720601201057434, - 0.37358227372169495, - 0.37630757689476013, - 0.38016167283058167, - 0.38503944873809814, - 0.3908078372478485, - 0.39730948209762573, - 0.4043670892715454, - 0.41178807616233826, - 0.41937005519866943, - 0.4269062280654907, - 0.434190958738327, - 0.44102561473846436, - 0.4472237229347229, - 0.45261624455451965, - 0.382763534784317, - 0.37579527497291565, - 0.36996978521347046, - 0.36544597148895264, - 0.36234721541404724, - 0.36075809597969055, - 0.3607219159603119, - 0.36223965883255005, - 0.3652699589729309, - 0.369730144739151, - 0.37549853324890137, - 0.38241779804229736, - 0.3902991712093353, - 0.3989277184009552, - 0.4080680310726166, - 0.4174708127975464, - 0.4268795847892761, - 0.43603765964508057, - 0.44469526410102844, - 0.45261624455451965, - 0.382763534784317, - 0.3740735650062561, - 0.366573303937912, - 0.3604673743247986, - 0.35592231154441833, - 0.35306215286254883, - 0.3519648313522339, - 0.35266032814979553, - 0.3551296591758728, - 0.3593054711818695, - 0.3650738596916199, - 0.37227746844291687, - 0.3807198405265808, - 0.3901706337928772, - 0.40037208795547485, - 0.4110459089279175, - 0.42190098762512207, - 0.4326411783695221, - 0.4429735541343689, - 0.45261624455451965, - 0.382763534784317, - 0.37334513664245605, - 0.36513635516166687, - 0.35836106538772583, - 0.3532041311264038, - 0.3498062193393707, - 0.34825998544692993, - 0.34860759973526, - 0.35083961486816406, - 0.35489511489868164, - 0.360663503408432, - 0.36798742413520813, - 0.3766671121120453, - 0.38646578788757324, - 0.39711615443229675, - 0.40832772850990295, - 0.4197946786880493, - 0.431204229593277, - 0.44224512577056885, - 0.45261624455451965, - 0.382763534784317, - 0.3736889958381653, - 0.3658146560192108, - 0.3593553304672241, - 0.35448724031448364, - 0.35134315490722656, - 0.35000884532928467, - 0.35052067041397095, - 0.35286468267440796, - 0.3569769859313965, - 0.36274540424346924, - 0.3700125217437744, - 0.37858015298843384, - 0.3882146179676056, - 0.3986530900001526, - 0.4096108376979828, - 0.4207889437675476, - 0.4318825304508209, - 0.4425889849662781, - 0.45261624455451965, - 0.382763534784317, - 0.375067800283432, - 0.3685346841812134, - 0.36334240436553955, - 0.35963258147239685, - 0.3575063943862915, - 0.35702186822891235, - 0.35819220542907715, - 0.36098548769950867, - 0.3653255105018616, - 0.37109389901161194, - 0.3781333267688751, - 0.3862517178058624, - 0.39522767066955566, - 0.4048163592815399, - 0.414756178855896, - 0.42477601766586304, - 0.4346025884151459, - 0.4439678192138672, - 0.45261624455451965, - 0.382763534784317, - 0.3773322105407715, - 0.37300172448158264, - 0.3698902428150177, - 0.36808258295059204, - 0.3676280975341797, - 0.36853915452957153, - 0.37079092860221863, - 0.37432196736335754, - 0.37903597950935364, - 0.384804368019104, - 0.391469806432724, - 0.3988504409790039, - 0.40674495697021484, - 0.4149380326271057, - 0.4232061803340912, - 0.4313238561153412, - 0.43906962871551514, - 0.4462321996688843, - 0.45261624455451965, - 0.382763534784317, - 0.38023680448532104, - 0.37873169779777527, - 0.37828925251960754, - 0.3789215683937073, - 0.3806113600730896, - 0.3833125829696655, - 0.3869515061378479, - 0.3914289176464081, - 0.3966226577758789, - 0.4023910462856293, - 0.40857672691345215, - 0.4150110185146332, - 0.42151838541030884, - 0.427921324968338, - 0.4340451657772064, - 0.43972286581993103, - 0.4447995722293854, - 0.44913679361343384, - 0.45261624455451965, - 0.382763534784317, - 0.38346683979034424, - 0.38510361313819885, - 0.38762930035591125, - 0.3909749388694763, - 0.3950493037700653, - 0.3997412323951721, - 0.404922753572464, - 0.41045254468917847, - 0.41617974638938904, - 0.4219481348991394, - 0.42760035395622253, - 0.43298226594924927, - 0.43794703483581543, - 0.44235923886299133, - 0.44609853625297546, - 0.44906291365623474, - 0.45117151737213135, - 0.45236682891845703, - 0.45261624455451965, - 0.382763534784317, - 0.3866722583770752, - 0.39142704010009766, - 0.3968982398509979, - 0.40293654799461365, - 0.4093772768974304, - 0.41604480147361755, - 0.42275717854499817, - 0.42933130264282227, - 0.43558791279792786, - 0.4413563013076782, - 0.4464791417121887, - 0.45081669092178345, - 0.45425060391426086, - 0.45668724179267883, - 0.4580601453781128, - 0.458331823348999, - 0.45749494433403015, - 0.455572247505188, - 0.45261624455451965, - 0.382763534784317, - 0.3895057439804077, - 0.397016704082489, - 0.40509161353111267, - 0.41351017355918884, - 0.42204272747039795, - 0.4304565489292145, - 0.4385221302509308, - 0.4460194706916809, - 0.4527440369129181, - 0.45851242542266846, - 0.463167279958725, - 0.46658164262771606, - 0.4686623513698578, - 0.469352662563324, - 0.468633770942688, - 0.46652522683143616, - 0.4630846083164215, - 0.4584057331085205, - 0.45261624455451965, - 0.382763534784317, - 0.391660213470459, - 0.4012669026851654, - 0.41132158041000366, - 0.4215499758720398, - 0.4316730499267578, - 0.4414147138595581, - 0.4505092203617096, - 0.4587085247039795, - 0.46578893065452576, - 0.4715573191642761, - 0.47585633397102356, - 0.4785687327384949, - 0.4796205163002014, - 0.47898298501968384, - 0.47667354345321655, - 0.47275519371032715, - 0.4673348069190979, - 0.4605602025985718, - 0.45261624455451965, - 0.382763534784317, - 0.3929022252559662, - 0.403717041015625, - 0.41491299867630005, - 0.4261847138404846, - 0.43722471594810486, - 0.4477318525314331, - 0.4574195146560669, - 0.4660234749317169, - 0.4733089804649353, - 0.47907739877700806, - 0.483171284198761, - 0.4854790270328522, - 0.4859376549720764, - 0.4845346510410309, - 0.48130831122398376, - 0.47634661197662354, - 0.4697849154472351, - 0.461802214384079, - 0.45261624455451965, - 0.382763534784317, - 0.3930971622467041, - 0.4041016101837158, - 0.4154767096042633, - 0.42691218852996826, - 0.4380960762500763, - 0.44872337579727173, - 0.4585041403770447, - 0.4671716094017029, - 0.47448933124542236, - 0.48025771975517273, - 0.48431941866874695, - 0.48656365275382996, - 0.48692917823791504, - 0.4854060411453247, - 0.4820357859134674, - 0.4769103229045868, - 0.4701694846153259, - 0.4619971513748169, - 0.45261624455451965, - 0.382763534784317, - 0.39222392439842224, - 0.40237894654273987, - 0.41295158863067627, - 0.4236535131931305, - 0.4341927468776703, - 0.44428184628486633, - 0.4536455571651459, - 0.46202850341796875, - 0.4692020118236542, - 0.47497040033340454, - 0.4791763424873352, - 0.48170506954193115, - 0.48248764872550964, - 0.4815027117729187, - 0.47877711057662964, - 0.47438520193099976, - 0.46844682097435, - 0.46112391352653503, - 0.45261624455451965, - 0.382763534784317, - 0.39037710428237915, - 0.3987357020378113, - 0.40761131048202515, - 0.4167618453502655, - 0.425937682390213, - 0.4348885416984558, - 0.4433702826499939, - 0.4511515200138092, - 0.45802000164985657, - 0.46378839015960693, - 0.46829932928085327, - 0.4714297950267792, - 0.4730943441390991, - 0.47324761748313904, - 0.47188544273376465, - 0.46904492378234863, - 0.4648035764694214, - 0.45927709341049194, - 0.45261624455451965, - 0.382763534784317, - 0.387756884098053, - 0.39356669783592224, - 0.4000345468521118, - 0.40698400139808655, - 0.4142254590988159, - 0.42156144976615906, - 0.4287917912006378, - 0.4357193410396576, - 0.44215506315231323, - 0.4479234516620636, - 0.45286715030670166, - 0.4568513035774231, - 0.45976722240448, - 0.46153542399406433, - 0.4621075987815857, - 0.4614681601524353, - 0.45963460206985474, - 0.45665687322616577, - 0.45261624455451965 - ], - "y": [ - -0.4064404368400574, - -0.38610130548477173, - -0.36730268597602844, - -0.350557416677475, - -0.33632224798202515, - -0.32498547434806824, - -0.316856324672699, - -0.3121565580368042, - -0.3110143542289734, - -0.31346091628074646, - -0.3194294571876526, - -0.3287571668624878, - -0.3411896228790283, - -0.356387734413147, - -0.37393689155578613, - -0.39335840940475464, - -0.4141225814819336, - -0.4356628954410553, - -0.4573918879032135, - -0.47871679067611694, - -0.4064404368400574, - -0.38789069652557373, - -0.3708326816558838, - -0.355731725692749, - -0.3429996967315674, - -0.33298394083976746, - -0.32595765590667725, - -0.32211247086524963, - -0.3215532898902893, - -0.3242953419685364, - -0.3302638828754425, - -0.3392960727214813, - -0.35114553570747375, - -0.36548906564712524, - -0.38193535804748535, - -0.40003588795661926, - -0.41929686069488525, - -0.43919289112091064, - -0.4591812789440155, - -0.47871679067611694, - -0.4064404368400574, - -0.39174365997314453, - -0.3784335255622864, - -0.3668730854988098, - -0.35737770795822144, - -0.3502063751220703, - -0.34555473923683167, - -0.3435496389865875, - -0.3442457914352417, - -0.3476242423057556, - -0.35359275341033936, - -0.3619886040687561, - -0.37258273363113403, - -0.38508614897727966, - -0.3991578221321106, - -0.4144138991832733, - -0.43043825030326843, - -0.44679373502731323, - -0.4630342423915863, - -0.47871679067611694, - -0.4064404368400574, - -0.3972426652908325, - -0.3892815113067627, - -0.3827742040157318, - -0.3778981566429138, - -0.37478646636009216, - -0.3735239505767822, - -0.3741450607776642, - -0.3766328692436218, - -0.38091951608657837, - -0.3868880271911621, - -0.39437565207481384, - -0.4031781256198883, - -0.4130553603172302, - -0.42373788356781006, - -0.4349343478679657, - -0.44633933901786804, - -0.45764175057411194, - -0.4685332477092743, - -0.47871679067611694, - -0.4064404368400574, - -0.40379178524017334, - -0.4022011458873749, - -0.40171191096305847, - -0.40233737230300903, - -0.4040605425834656, - -0.4068343937397003, - -0.4105832278728485, - -0.41520482301712036, - -0.4205731153488159, - -0.42654162645339966, - -0.4329476058483124, - -0.43961629271507263, - -0.4463658034801483, - -0.45301198959350586, - -0.4593735933303833, - -0.4652770459651947, - -0.4705613851547241, - -0.4750823974609375, - -0.47871679067611694, - -0.4064404368400574, - -0.4106813669204712, - -0.4157923460006714, - -0.4216340184211731, - -0.42804697155952454, - -0.4348563253879547, - -0.4418763518333435, - -0.4489154815673828, - -0.4557817876338959, - -0.46228793263435364, - -0.46825647354125977, - -0.4735246002674103, - -0.4779485762119293, - -0.4814077615737915, - -0.483807772397995, - -0.4850831627845764, - -0.4851991534233093, - -0.48415258526802063, - -0.48197194933891296, - -0.47871679067611694, - -0.4064404368400574, - -0.41716477274894714, - -0.4285823106765747, - -0.4403816759586334, - -0.4522409439086914, - -0.4638366401195526, - -0.47485247254371643, - -0.4849879741668701, - -0.49396663904190063, - -0.5015435814857483, - -0.507512092590332, - -0.511709451675415, - -0.5140210390090942, - -0.5143839120864868, - -0.5127880573272705, - -0.5092771053314209, - -0.503946840763092, - -0.49694254994392395, - -0.4884553551673889, - -0.47871679067611694, - -0.4064404368400574, - -0.42253944277763367, - -0.4391850531101227, - -0.45592325925827026, - -0.47229743003845215, - -0.4878609776496887, - -0.5021893382072449, - -0.5148916244506836, - -0.5256214737892151, - -0.5340860486030579, - -0.5400546193122864, - -0.5433642268180847, - -0.5439247488975525, - -0.5417207479476929, - -0.536812424659729, - -0.5293336510658264, - -0.5194883942604065, - -0.5075452923774719, - -0.49383002519607544, - -0.47871679067611694, - -0.4064404368400574, - -0.42622295022010803, - -0.4464516043663025, - -0.46657460927963257, - -0.4860430955886841, - -0.5043259263038635, - -0.5209245085716248, - -0.5353859663009644, - -0.5473159551620483, - -0.5563889145851135, - -0.5623574256896973, - -0.565058708190918, - -0.5644190311431885, - -0.5604559183120728, - -0.5532773733139038, - -0.5430792570114136, - -0.5301397442817688, - -0.5148118138313293, - -0.4975135326385498, - -0.47871679067611694, - -0.4064404368400574, - -0.42781612277030945, - -0.44959449768066406, - -0.4711814820766449, - -0.49198827147483826, - -0.5114473104476929, - -0.5290277600288391, - -0.5442501306533813, - -0.5566991567611694, - -0.566035270690918, - -0.5720037817955017, - -0.5744419097900391, - -0.5732831954956055, - -0.5685591697692871, - -0.5603987574577332, - -0.5490244626998901, - -0.5347466468811035, - -0.5179547071456909, - -0.4991067051887512, - -0.47871679067611694, - -0.4064404368400574, - -0.427146315574646, - -0.4482731521129608, - -0.46924465894699097, - -0.489488810300827, - -0.5084533095359802, - -0.5256209969520569, - -0.5405234694480896, - -0.552754282951355, - -0.5619797706604004, - -0.5679482817649841, - -0.5704970359802246, - -0.5695565342903137, - -0.5651524066925049, - -0.5574047565460205, - -0.5465250015258789, - -0.532809853553772, - -0.5166333913803101, - -0.49843692779541016, - -0.47871679067611694, - -0.4064404368400574, - -0.4242861270904541, - -0.442630797624588, - -0.4609740376472473, - -0.478815495967865, - -0.49566850066185, - -0.5110733509063721, - -0.5246098637580872, - -0.5359087586402893, - -0.5446618795394897, - -0.5506303906440735, - -0.5536515712738037, - -0.5536429286003113, - -0.5506048202514648, - -0.5446199774742126, - -0.5358517169952393, - -0.5245391726493835, - -0.5109910368919373, - -0.4955767095088959, - -0.47871679067611694, - -0.4064404368400574, - -0.4195455014705658, - -0.4332788288593292, - -0.4472658336162567, - -0.461124986410141, - -0.47447824478149414, - -0.48696136474609375, - -0.4982338547706604, - -0.5079882144927979, - -0.515958309173584, - -0.5219268798828125, - -0.5257309675216675, - -0.5272669196128845, - -0.5264927744865417, - -0.5234296917915344, - -0.5181611776351929, - -0.5108309984207153, - -0.5016390681266785, - -0.49083608388900757, - -0.47871679067611694, - -0.4064404368400574, - -0.4134381115436554, - -0.421230673789978, - -0.42960554361343384, - -0.43833431601524353, - -0.44717881083488464, - -0.45589786767959595, - -0.46425357460975647, - -0.4720180630683899, - -0.47897952795028687, - -0.484948068857193, - -0.4897608757019043, - -0.493286669254303, - -0.49542927742004395, - -0.4961302578449249, - -0.4953705072402954, - -0.49317070841789246, - -0.4895908832550049, - -0.48472872376441956, - -0.47871679067611694, - -0.4064404368400574, - -0.4066258668899536, - -0.40779197216033936, - -0.4099069833755493, - -0.4129132032394409, - -0.4167286157608032, - -0.421249121427536, - -0.4263514578342438, - -0.4318964183330536, - -0.4377327859401703, - -0.4437013268470764, - -0.449639230966568, - -0.4553845524787903, - -0.460780531167984, - -0.4656800329685211, - -0.4699493944644928, - -0.47347214818000793, - -0.4761522114276886, - -0.4779164493083954, - -0.47871679067611694, - -0.4064404368400574, - -0.3998469114303589, - -0.39441901445388794, - -0.3903047740459442, - -0.38761642575263977, - -0.3864273130893707, - -0.3867698609828949, - -0.38863471150398254, - -0.39197102189064026, - -0.396687775850296, - -0.40265628695487976, - -0.4097138047218323, - -0.41766777634620667, - -0.4263012707233429, - -0.4353787302970886, - -0.44465261697769165, - -0.45386993885040283, - -0.4627792239189148, - -0.47113752365112305, - -0.47871679067611694, - -0.4064404368400574, - -0.3938359022140503, - -0.3825609087944031, - -0.3729230761528015, - -0.3651852607727051, - -0.3595585227012634, - -0.3561963438987732, - -0.3551904559135437, - -0.356568306684494, - -0.3602922856807709, - -0.366260826587677, - -0.37431108951568604, - -0.3842235505580902, - -0.3957277536392212, - -0.4085099399089813, - -0.42222145199775696, - -0.43648821115493774, - -0.4509211480617523, - -0.46512648463249207, - -0.47871679067611694, - -0.4064404368400574, - -0.3892441689968109, - -0.3735027313232422, - -0.3596455156803131, - -0.34805047512054443, - -0.33903393149375916, - -0.33284181356430054, - -0.32964301109313965, - -0.32952481508255005, - -0.3324904441833496, - -0.33845895528793335, - -0.34726759791374207, - -0.35867610573768616, - -0.37237322330474854, - -0.38798534870147705, - -0.4050866663455963, - -0.42321065068244934, - -0.44186297059059143, - -0.4605347812175751, - -0.47871679067611694, - -0.4064404368400574, - -0.3865693509578705, - -0.3682260513305664, - -0.35191088914871216, - -0.3380689322948456, - -0.3270776867866516, - -0.3192370533943176, - -0.31476080417633057, - -0.31377112865448, - -0.31629496812820435, - -0.3222634792327881, - -0.331513911485672, - -0.3437938690185547, - -0.35876843333244324, - -0.3760291337966919, - -0.39510512351989746, - -0.4154760539531708, - -0.43658626079559326, - -0.45785996317863464, - -0.47871679067611694, - -0.4064404368400574, - -0.38610130548477173, - -0.36730268597602844, - -0.350557416677475, - -0.33632224798202515, - -0.32498547434806824, - -0.316856324672699, - -0.3121565580368042, - -0.3110143542289734, - -0.31346091628074646, - -0.3194294571876526, - -0.3287571668624878, - -0.3411896228790283, - -0.356387734413147, - -0.37393689155578613, - -0.39335840940475464, - -0.4141225814819336, - -0.4356628954410553, - -0.4573918879032135, - -0.47871679067611694 - ], - "z": [ - -0.06268595159053802, - -0.0776900053024292, - -0.09340871870517731, - -0.10941333323717117, - -0.12526726722717285, - -0.1405380815267563, - -0.15480925142765045, - -0.1676914393901825, - -0.17883330583572388, - -0.1879309117794037, - -0.19473609328269958, - -0.19906321167945862, - -0.2007942646741867, - -0.19988201558589935, - -0.19635134935379028, - -0.19029857218265533, - -0.18188878893852234, - -0.17135140299797058, - -0.158973827958107, - -0.14509370923042297, - -0.06268595159053802, - -0.07875654101371765, - -0.09551269561052322, - -0.11249735206365585, - -0.12924723327159882, - -0.14530541002750397, - -0.16023388504981995, - -0.17362543940544128, - -0.1851148009300232, - -0.19438853859901428, - -0.20119372010231018, - -0.20534470677375793, - -0.2067282646894455, - -0.20530666410923004, - -0.20111867785453796, - -0.1942785233259201, - -0.18497280776500702, - -0.1734553724527359, - -0.16004036366939545, - -0.14509370923042297, - -0.06268595159053802, - -0.07814247906208038, - -0.09430131316184998, - -0.11072170734405518, - -0.12695574760437012, - -0.14256058633327484, - -0.15711061656475067, - -0.1702089011669159, - -0.1814981997013092, - -0.19067052006721497, - -0.19747570157051086, - -0.20172810554504395, - -0.2033117264509201, - -0.20218339562416077, - -0.19837385416030884, - -0.1919870376586914, - -0.18319717049598694, - -0.17224398255348206, - -0.15942630171775818, - -0.14509370923042297, - -0.06268595904111862, - -0.07591435313224792, - -0.08990585058927536, - -0.1042788028717041, - -0.11864113807678223, - -0.1326010823249817, - -0.1457778811454773, - -0.15781207382678986, - -0.1683754026889801, - -0.1771797388792038, - -0.1839849054813385, - -0.18860530853271484, - -0.19091489911079407, - -0.1908506453037262, - -0.1884143352508545, - -0.18367242813110352, - -0.17675425112247467, - -0.16784852743148804, - -0.15719817578792572, - -0.14509370923042297, - -0.06268595904111862, - -0.07231363654136658, - -0.08280262351036072, - -0.09386681765317917, - -0.10520441830158234, - -0.11650615185499191, - -0.12746375799179077, - -0.13777831196784973, - -0.14716848731040955, - -0.15537813305854797, - -0.16218331456184387, - -0.1673983931541443, - -0.17088113725185394, - -0.17253652215003967, - -0.1723194122314453, - -0.17023572325706482, - -0.16634227335453033, - -0.1607452929019928, - -0.15359744429588318, - -0.14509370923042297, - -0.06268595904111862, - -0.06773050129413605, - -0.07376136630773544, - -0.08061406761407852, - -0.08810167014598846, - -0.0960199236869812, - -0.1041528582572937, - -0.11227861791849136, - -0.12017554044723511, - -0.12762825191020966, - -0.13443341851234436, - -0.14040544629096985, - -0.14538143575191498, - -0.1492256224155426, - -0.151833176612854, - -0.15313297510147095, - -0.1530895233154297, - -0.15170404314994812, - -0.14901432394981384, - -0.14509370923042297, - -0.06268596649169922, - -0.06266161054372787, - -0.06376185268163681, - -0.06595669686794281, - -0.0691862404346466, - -0.07336241751909256, - -0.07837130129337311, - -0.08407626301050186, - -0.09032168984413147, - -0.09693721681833267, - -0.10374239832162857, - -0.11055159568786621, - -0.11717908084392548, - -0.12344406545162201, - -0.12917566299438477, - -0.1342175304889679, - -0.13843214511871338, - -0.1417045295238495, - -0.14394542574882507, - -0.14509370923042297, - -0.06268596649169922, - -0.05765625834465027, - -0.05388768017292023, - -0.05148303881287575, - -0.050507910549640656, - -0.050988905131816864, - -0.05291289836168289, - -0.05622740834951401, - -0.06084202602505684, - -0.06663088500499725, - -0.07343605905771255, - -0.08107193559408188, - -0.08933022618293762, - -0.09798566997051239, - -0.10680215805768967, - -0.11553920805454254, - -0.12395849823951721, - -0.1318303644657135, - -0.13894008100032806, - -0.14509370923042297, - -0.06268596649169922, - -0.05325684696435928, - -0.04520886763930321, - -0.03876155614852905, - -0.034090764820575714, - -0.03132392466068268, - -0.030536480247974396, - -0.03174992650747299, - -0.034931160509586334, - -0.03999341279268265, - -0.04679859057068825, - -0.055161066353321075, - -0.0648527443408966, - -0.0756092369556427, - -0.08713716268539429, - -0.0991220623254776, - -0.11123701184988022, - -0.12315154820680618, - -0.13454066216945648, - -0.14509370923042297, - -0.06268596649169922, - -0.04994012787938118, - -0.03866589814424515, - -0.02917081117630005, - -0.02171386033296585, - -0.016498461365699768, - -0.013666868209838867, - -0.01329631358385086, - -0.01539691537618637, - -0.01991138607263565, - -0.026716560125350952, - -0.03562682121992111, - -0.046399135142564774, - -0.05873963236808777, - -0.07231169939041138, - -0.08674515038728714, - -0.10164626687765121, - -0.11660857498645782, - -0.13122394680976868, - -0.14509370923042297, - -0.06268596649169922, - -0.048065513372421265, - -0.034967802464962006, - -0.02375011146068573, - -0.014718420803546906, - -0.008119098842144012, - -0.0041321441531181335, - -0.002866312861442566, - -0.0043561458587646484, - -0.008561007678508759, - -0.01536618173122406, - -0.02458605170249939, - -0.03596913069486618, - -0.049204908311367035, - -0.06393232941627502, - -0.0797497108578682, - -0.0962255671620369, - -0.11291048675775528, - -0.12934933602809906, - -0.14509372413158417, - -0.06268596649169922, - -0.04783615097403526, - -0.03451533615589142, - -0.02308688312768936, - -0.01386251300573349, - -0.007093861699104309, - -0.0029655545949935913, - -0.0015901848673820496, - -0.003005288541316986, - -0.0071722641587257385, - -0.01397743821144104, - -0.023235194385051727, - -0.034693002700805664, - -0.0480383038520813, - -0.06290709972381592, - -0.07889380306005478, - -0.09556233882904053, - -0.1124580129981041, - -0.12911997735500336, - -0.14509372413158417, - -0.06268596649169922, - -0.049276892095804214, - -0.03735751658678055, - -0.027252979576587677, - -0.01923888921737671, - -0.013533852994441986, - -0.01029350608587265, - -0.009606190025806427, - -0.01149071753025055, - -0.015895642340183258, - -0.02270081639289856, - -0.03172062337398529, - -0.04270901158452034, - -0.055366262793540955, - -0.0693470910191536, - -0.0842701718211174, - -0.09972843527793884, - -0.11530019342899323, - -0.1305607110261917, - -0.14509372413158417, - -0.06268596649169922, - -0.05223161727190018, - -0.04318636655807495, - -0.035796962678432465, - -0.030264943838119507, - -0.026741214096546173, - -0.02532190829515457, - -0.026045717298984528, - -0.02889292687177658, - -0.0337858572602272, - -0.040591031312942505, - -0.049122828990221024, - -0.05914853885769844, - -0.07039467245340347, - -0.08255445957183838, - -0.0952962264418602, - -0.10827241092920303, - -0.12112905085086823, - -0.13351543247699738, - -0.14509370923042297, - -0.06268596649169922, - -0.056380122900009155, - -0.05137022212147713, - -0.04779292270541191, - -0.04574579745531082, - -0.0452846921980381, - -0.04642218351364136, - -0.049127236008644104, - -0.0533260777592659, - -0.05890416353940964, - -0.06570933759212494, - -0.07355598360300064, - -0.08223005384206772, - -0.09149494767189026, - -0.1010979413986206, - -0.11077708750963211, - -0.12026837468147278, - -0.1293129026889801, - -0.13766394555568695, - -0.14509370923042297, - -0.06268596649169922, - -0.06127285957336426, - -0.061022236943244934, - -0.061940934509038925, - -0.06400388479232788, - -0.06715482473373413, - -0.07130779325962067, - -0.07634951174259186, - -0.08214247226715088, - -0.08852863311767578, - -0.09533381462097168, - -0.10237237811088562, - -0.10945233702659607, - -0.11638056486845016, - -0.12296807765960693, - -0.12903517484664917, - -0.1344163864850998, - -0.1389649212360382, - -0.14255668222904205, - -0.14509370923042297, - -0.06268595904111862, - -0.06637963652610779, - -0.07109648734331131, - -0.0767078623175621, - -0.08306068927049637, - -0.08998168259859085, - -0.0972820520401001, - -0.10476266592741013, - -0.11221946775913239, - -0.11944905668497086, - -0.12625423073768616, - -0.13244937360286713, - -0.13786548376083374, - -0.142354816198349, - -0.14579492807388306, - -0.14809198677539825, - -0.14918331801891327, - -0.149039164185524, - -0.14766345918178558, - -0.14509370923042297, - -0.06268595904111862, - -0.07114703953266144, - -0.0805012583732605, - -0.09049346297979355, - -0.10085108131170273, - -0.11129157990217209, - -0.1215301901102066, - -0.1312876045703888, - -0.14029769599437714, - -0.1483146697282791, - -0.15511983633041382, - -0.16052760183811188, - -0.164390429854393, - -0.1666029542684555, - -0.1671048402786255, - -0.16588237881660461, - -0.16296891868114471, - -0.15844394266605377, - -0.15243086218833923, - -0.14509370923042297, - -0.06268595904111862, - -0.0750584527850151, - -0.08821739256381989, - -0.10180383920669556, - -0.11544717848300934, - -0.12877526879310608, - -0.14142455160617828, - -0.15304997563362122, - -0.1633344441652298, - -0.17199742794036865, - -0.17880260944366455, - -0.18356436491012573, - -0.18615280091762543, - -0.18649733066558838, - -0.18458852171897888, - -0.18047848343849182, - -0.17427928745746613, - -0.16616007685661316, - -0.1563422679901123, - -0.14509370923042297, - -0.06268595159053802, - -0.0776900053024292, - -0.09340871870517731, - -0.10941333323717117, - -0.12526726722717285, - -0.14053809642791748, - -0.15480925142765045, - -0.1676914542913437, - -0.17883332073688507, - -0.1879309117794037, - -0.19473609328269958, - -0.1990632265806198, - -0.2007942795753479, - -0.19988201558589935, - -0.19635134935379028, - -0.19029858708381653, - -0.18188878893852234, - -0.17135140299797058, - -0.158973827958107, - -0.14509370923042297 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.486172616481781, - 0.47929853200912476, - 0.4693264961242676, - 0.45652857422828674, - 0.4412538409233093, - 0.4239189326763153, - 0.40499669313430786, - 0.38500329852104187, - 0.36448410153388977, - 0.34399881958961487, - 0.32410621643066406, - 0.3053489327430725, - 0.28823864459991455, - 0.2732420265674591, - 0.2607681453227997, - 0.25115731358528137, - 0.24467162787914276, - 0.2414880245923996, - 0.24169334769248962, - 0.24528200924396515, - 0.486172616481781, - 0.47958195209503174, - 0.4698856770992279, - 0.4573482275009155, - 0.4423115849494934, - 0.4251859188079834, - 0.4064383804798126, - 0.38658034801483154, - 0.3661535084247589, - 0.3457150459289551, - 0.3258224427700043, - 0.30701836943626404, - 0.2898156940937042, - 0.27468371391296387, - 0.26203516125679016, - 0.25221505761146545, - 0.24549126625061035, - 0.24204719066619873, - 0.241976797580719, - 0.24528200924396515, - 0.486172616481781, - 0.4804016053676605, - 0.4715026021003723, - 0.4597182869911194, - 0.4453701674938202, - 0.42884960770606995, - 0.4106072187423706, - 0.3911406397819519, - 0.370980829000473, - 0.3506777286529541, - 0.3307851552963257, - 0.31184569001197815, - 0.2943759858608246, - 0.27885255217552185, - 0.2656988501548767, - 0.25527364015579224, - 0.2478613406419754, - 0.24366410076618195, - 0.24279645085334778, - 0.24528200924396515, - 0.486172616481781, - 0.4816685914993286, - 0.47400203347206116, - 0.46338197588920593, - 0.4500981867313385, - 0.4345129728317261, - 0.4170514643192291, - 0.3981899619102478, - 0.3784429728984833, - 0.35834914445877075, - 0.33845654129981995, - 0.3193078339099884, - 0.30142533779144287, - 0.28529679775238037, - 0.27136221528053284, - 0.26000165939331055, - 0.25152504444122314, - 0.2461635321378708, - 0.24406343698501587, - 0.24528200924396515, - 0.486172616481781, - 0.4832456707954407, - 0.47711312770843506, - 0.4679422676563263, - 0.4559832811355591, - 0.44156232476234436, - 0.4250727891921997, - 0.4069644510746002, - 0.38773128390312195, - 0.3678978979587555, - 0.3480053246021271, - 0.3285961449146271, - 0.3101997971534729, - 0.29331809282302856, - 0.2784115672111511, - 0.26588672399520874, - 0.2560853362083435, - 0.24927464127540588, - 0.24564050137996674, - 0.24528200924396515, - 0.486172616481781, - 0.4849618971347809, - 0.4804987907409668, - 0.4729049801826477, - 0.46238768100738525, - 0.4492337107658386, - 0.43380191922187805, - 0.41651320457458496, - 0.397839218378067, - 0.37828928232192993, - 0.3583967089653015, - 0.33870407938957214, - 0.31974858045578003, - 0.3020472526550293, - 0.2860829532146454, - 0.2722911238670349, - 0.26104801893234253, - 0.25266027450561523, - 0.24735672771930695, - 0.24528200924396515, - 0.486172616481781, - 0.48663130402565, - 0.4837920665740967, - 0.4777323007583618, - 0.46861737966537476, - 0.4566958546638489, - 0.4422929286956787, - 0.42580151557922363, - 0.4076714515686035, - 0.388397216796875, - 0.3685046434402466, - 0.34853628277778625, - 0.3290368616580963, - 0.31053826212882996, - 0.29354509711265564, - 0.2785208225250244, - 0.26587533950805664, - 0.2559535801410675, - 0.24902614951133728, - 0.24528200924396515, - 0.486172616481781, - 0.4880729913711548, - 0.48663613200187683, - 0.4819011688232422, - 0.4739972949028015, - 0.4631401002407074, - 0.44962573051452637, - 0.4338228404521942, - 0.4161624610424042, - 0.39712637662887573, - 0.3772337734699249, - 0.3570273220539093, - 0.3370581865310669, - 0.3178710639476776, - 0.29998934268951416, - 0.28390076756477356, - 0.270044207572937, - 0.25879764556884766, - 0.25046783685684204, - 0.24528200924396515, - 0.486172616481781, - 0.48913073539733887, - 0.4887227416038513, - 0.48495975136756897, - 0.47794443368911743, - 0.4678680896759033, - 0.4550056457519531, - 0.4397079050540924, - 0.4223921597003937, - 0.4035307765007019, - 0.3836381733417511, - 0.3632570207118988, - 0.3429432511329651, - 0.32325097918510437, - 0.30471736192703247, - 0.2878479063510895, - 0.2731028199195862, - 0.26088425517082214, - 0.2515255808830261, - 0.24528200924396515, - 0.486172616481781, - 0.4896898865699768, - 0.4898258447647095, - 0.4865766763687134, - 0.4800310730934143, - 0.47036755084991455, - 0.4578497111797333, - 0.4428189992904663, - 0.42568546533584595, - 0.40691640973091125, - 0.38702380657196045, - 0.3665503263473511, - 0.3460543751716614, - 0.3260950446128845, - 0.3072167932987213, - 0.28993454575538635, - 0.2747197151184082, - 0.2619873285293579, - 0.25208473205566406, - 0.24528200924396515, - 0.486172616481781, - 0.4896898865699768, - 0.4898258447647095, - 0.4865766763687134, - 0.4800310730934143, - 0.47036755084991455, - 0.4578497111797333, - 0.4428189992904663, - 0.42568546533584595, - 0.40691640973091125, - 0.38702380657196045, - 0.3665503263473511, - 0.3460543751716614, - 0.3260950446128845, - 0.3072167932987213, - 0.28993454575538635, - 0.2747197151184082, - 0.2619873285293579, - 0.25208473205566406, - 0.24528200924396515, - 0.486172616481781, - 0.48913073539733887, - 0.4887227416038513, - 0.48495975136756897, - 0.47794443368911743, - 0.4678680896759033, - 0.4550056457519531, - 0.4397079050540924, - 0.4223921597003937, - 0.4035307765007019, - 0.3836381733417511, - 0.3632570207118988, - 0.3429432511329651, - 0.32325097918510437, - 0.30471736192703247, - 0.2878479063510895, - 0.2731028199195862, - 0.26088425517082214, - 0.2515255808830261, - 0.24528200924396515, - 0.486172616481781, - 0.4880729913711548, - 0.48663613200187683, - 0.4819011688232422, - 0.4739972949028015, - 0.4631401002407074, - 0.44962573051452637, - 0.4338228404521942, - 0.4161624610424042, - 0.39712637662887573, - 0.3772337734699249, - 0.3570273220539093, - 0.3370581865310669, - 0.3178710639476776, - 0.29998934268951416, - 0.28390076756477356, - 0.270044207572937, - 0.25879764556884766, - 0.25046783685684204, - 0.24528200924396515, - 0.486172616481781, - 0.48663130402565, - 0.4837920665740967, - 0.4777323007583618, - 0.46861737966537476, - 0.4566958546638489, - 0.4422929286956787, - 0.42580151557922363, - 0.40767142176628113, - 0.388397216796875, - 0.3685046434402466, - 0.34853628277778625, - 0.3290368616580963, - 0.31053826212882996, - 0.29354506731033325, - 0.2785208225250244, - 0.26587533950805664, - 0.2559535801410675, - 0.24902614951133728, - 0.24528200924396515, - 0.486172616481781, - 0.4849618971347809, - 0.4804987907409668, - 0.4729049801826477, - 0.46238768100738525, - 0.4492337107658386, - 0.43380191922187805, - 0.41651323437690735, - 0.397839218378067, - 0.37828928232192993, - 0.3583967089653015, - 0.33870407938957214, - 0.31974858045578003, - 0.3020472526550293, - 0.2860829532146454, - 0.2722911238670349, - 0.26104801893234253, - 0.25266027450561523, - 0.24735672771930695, - 0.24528200924396515, - 0.486172616481781, - 0.4832456707954407, - 0.47711312770843506, - 0.4679422676563263, - 0.4559832811355591, - 0.44156232476234436, - 0.4250727891921997, - 0.4069644510746002, - 0.38773128390312195, - 0.3678978979587555, - 0.3480053246021271, - 0.3285961449146271, - 0.3101997971534729, - 0.29331812262535095, - 0.2784115672111511, - 0.26588675379753113, - 0.2560853362083435, - 0.24927464127540588, - 0.24564050137996674, - 0.24528200924396515, - 0.486172616481781, - 0.4816685914993286, - 0.47400203347206116, - 0.46338197588920593, - 0.4500981867313385, - 0.4345129728317261, - 0.4170514643192291, - 0.3981899619102478, - 0.3784429728984833, - 0.35834914445877075, - 0.33845654129981995, - 0.3193078339099884, - 0.30142533779144287, - 0.28529679775238037, - 0.27136221528053284, - 0.26000165939331055, - 0.25152504444122314, - 0.2461635321378708, - 0.24406343698501587, - 0.24528200924396515, - 0.486172616481781, - 0.4804016053676605, - 0.4715026021003723, - 0.4597182869911194, - 0.4453701674938202, - 0.42884960770606995, - 0.4106072187423706, - 0.3911406397819519, - 0.370980829000473, - 0.3506777286529541, - 0.3307851552963257, - 0.31184569001197815, - 0.2943759858608246, - 0.27885255217552185, - 0.2656988501548767, - 0.25527364015579224, - 0.2478613406419754, - 0.24366410076618195, - 0.24279645085334778, - 0.24528200924396515, - 0.486172616481781, - 0.47958195209503174, - 0.4698856770992279, - 0.4573482275009155, - 0.4423115849494934, - 0.4251859188079834, - 0.4064383804798126, - 0.38658034801483154, - 0.3661535084247589, - 0.3457150459289551, - 0.3258224427700043, - 0.30701833963394165, - 0.2898156940937042, - 0.27468371391296387, - 0.26203516125679016, - 0.25221502780914307, - 0.24549126625061035, - 0.24204719066619873, - 0.241976797580719, - 0.24528200924396515, - 0.486172616481781, - 0.47929853200912476, - 0.4693264961242676, - 0.45652857422828674, - 0.4412538409233093, - 0.4239189326763153, - 0.40499669313430786, - 0.38500329852104187, - 0.36448410153388977, - 0.34399881958961487, - 0.32410621643066406, - 0.3053489327430725, - 0.28823864459991455, - 0.2732420265674591, - 0.2607681453227997, - 0.25115731358528137, - 0.24467162787914276, - 0.2414880245923996, - 0.24169334769248962, - 0.24528200924396515 - ], - "y": [ - -0.6998650431632996, - -0.7237511873245239, - -0.7465046048164368, - -0.7675046920776367, - -0.7861786484718323, - -0.8020169734954834, - -0.8145878314971924, - -0.8235481381416321, - -0.8286535739898682, - -0.8297648429870605, - -0.8268516659736633, - -0.8199934959411621, - -0.8093773722648621, - -0.7952929735183716, - -0.7781243324279785, - -0.7583398818969727, - -0.7364792227745056, - -0.7131386995315552, - -0.6889550089836121, - -0.6645877361297607, - -0.6998650431632996, - -0.7187187075614929, - -0.7365769743919373, - -0.7529526352882385, - -0.7673990726470947, - -0.7795222997665405, - -0.7889914512634277, - -0.7955483794212341, - -0.7990142107009888, - -0.7992943525314331, - -0.7963811159133911, - -0.7903541326522827, - -0.7813776731491089, - -0.7696965932846069, - -0.7556295990943909, - -0.7395603656768799, - -0.7219271659851074, - -0.7032110691070557, - -0.683922529220581, - -0.6645877361297607, - -0.6998651027679443, - -0.711617112159729, - -0.7225674390792847, - -0.7324173450469971, - -0.7408981919288635, - -0.747778594493866, - -0.7528709173202515, - -0.7560362815856934, - -0.7571882605552673, - -0.7562955021858215, - -0.7533823251724243, - -0.748528242111206, - -0.7418655753135681, - -0.7335760593414307, - -0.7238859534263611, - -0.7130594253540039, - -0.701391875743866, - -0.6892015337944031, - -0.6768209338188171, - -0.6645877361297607, - -0.6998651027679443, - -0.7032158970832825, - -0.7059941291809082, - -0.7081241011619568, - -0.7095476388931274, - -0.7102259397506714, - -0.7101404070854187, - -0.70929354429245, - -0.7077082991600037, - -0.7054280042648315, - -0.7025148272514343, - -0.6990482807159424, - -0.6951227784156799, - -0.6908455491065979, - -0.6863332390785217, - -0.6817088723182678, - -0.6770986318588257, - -0.6726282835006714, - -0.6684197187423706, - -0.6645877361297607, - -0.6998651027679443, - -0.6944255232810974, - -0.6886531710624695, - -0.6827055215835571, - -0.6767447590827942, - -0.6709336042404175, - -0.6654304265975952, - -0.6603854298591614, - -0.6559361815452576, - -0.6522040963172913, - -0.649290919303894, - -0.6472761631011963, - -0.6462147235870361, - -0.6461355686187744, - -0.6470409035682678, - -0.6489060521125793, - -0.651680052280426, - -0.6552872657775879, - -0.6596293449401855, - -0.6645877361297607, - -0.6998651027679443, - -0.6861984729766846, - -0.6724236011505127, - -0.6589160561561584, - -0.6460443735122681, - -0.6341596245765686, - -0.6235859990119934, - -0.6146119832992554, - -0.6074823141098022, - -0.6023914217948914, - -0.5994782447814941, - -0.5988222360610962, - -0.6004412174224854, - -0.6042911410331726, - -0.610266923904419, - -0.6182056069374084, - -0.6278905868530273, - -0.6390576958656311, - -0.6514022946357727, - -0.6645877361297607, - -0.6998651027679443, - -0.6794264316558838, - -0.6590641140937805, - -0.6393336653709412, - -0.620773196220398, - -0.603888988494873, - -0.5891416668891907, - -0.5769333839416504, - -0.5675972700119019, - -0.5613879561424255, - -0.5584747791290283, - -0.5589371919631958, - -0.5627626776695251, - -0.5698467493057251, - -0.5799962878227234, - -0.5929344296455383, - -0.6083081960678101, - -0.6256982684135437, - -0.6446302533149719, - -0.6645877957344055, - -0.6998651027679443, - -0.6748431324958801, - -0.650022566318512, - -0.6260803937911987, - -0.6036698222160339, - -0.5834020376205444, - -0.565829873085022, - -0.551432728767395, - -0.5406033396720886, - -0.5336370468139648, - -0.5307238698005676, - -0.5319432616233826, - -0.5372620224952698, - -0.5465350151062012, - -0.5595093369483948, - -0.5758310556411743, - -0.5950549244880676, - -0.6166566610336304, - -0.6400469541549683, - -0.6645877957344055, - -0.6998651027679443, - -0.6729452610015869, - -0.6462786197662354, - -0.6205925345420837, - -0.5965876579284668, - -0.5749187469482422, - -0.5561769604682922, - -0.5408734083175659, - -0.5294256806373596, - -0.5221459269523621, - -0.5192327499389648, - -0.5207656025886536, - -0.5267027020454407, - -0.5368821024894714, - -0.5510260462760925, - -0.5687488913536072, - -0.5895670652389526, - -0.6129127144813538, - -0.638149082660675, - -0.6645877957344055, - -0.6998651027679443, - -0.673938512802124, - -0.6482380032539368, - -0.6234646439552307, - -0.6002941131591797, - -0.5793585181236267, - -0.56122887134552, - -0.546399712562561, - -0.5352755784988403, - -0.5281598567962646, - -0.5252466797828674, - -0.5266155004501343, - -0.5322290062904358, - -0.5419340133666992, - -0.555465817451477, - -0.5724553465843201, - -0.5924391746520996, - -0.6148720979690552, - -0.6391423344612122, - -0.6645877957344055, - -0.6998651027679443, - -0.6777152419090271, - -0.655688464641571, - -0.6343855857849121, - -0.6143876314163208, - -0.596240222454071, - -0.5804382562637329, - -0.5674127340316772, - -0.5575191378593445, - -0.5510271787643433, - -0.548114001750946, - -0.5488590598106384, - -0.553242027759552, - -0.5611433386802673, - -0.5723475217819214, - -0.586548924446106, - -0.603360116481781, - -0.6223225593566895, - -0.6429190635681152, - -0.6645877957344055, - -0.6998651027679443, - -0.6838662028312683, - -0.6678225994110107, - -0.6521718502044678, - -0.6373409032821655, - -0.6237344145774841, - -0.6117233633995056, - -0.6016354560852051, - -0.5937458276748657, - -0.5882697701454163, - -0.585356593132019, - -0.5850857496261597, - -0.5874646902084351, - -0.5924285054206848, - -0.5998417139053345, - -0.6095021963119507, - -0.6211463809013367, - -0.6344566941261292, - -0.6490700244903564, - -0.6645877361297607, - -0.6998651027679443, - -0.6917247772216797, - -0.6833254098892212, - -0.6748960614204407, - -0.6666666269302368, - -0.6588616371154785, - -0.6516939997673035, - -0.645359218120575, - -0.640030026435852, - -0.6358519196510315, - -0.6329387426376343, - -0.631369948387146, - -0.6311884522438049, - -0.6323991417884827, - -0.6349689960479736, - -0.6388278603553772, - -0.6438705921173096, - -0.6499595046043396, - -0.6569285988807678, - -0.6645877361297607, - -0.6998651027679443, - -0.700439453125, - -0.7005169987678528, - -0.7000956535339355, - -0.6991868615150452, - -0.697815477848053, - -0.6960188150405884, - -0.6938459873199463, - -0.6913561224937439, - -0.6886172890663147, - -0.6857041120529175, - -0.6826960444450378, - -0.6796752214431763, - -0.6767239570617676, - -0.6739227771759033, - -0.6713480949401855, - -0.6690701842308044, - -0.6671510934829712, - -0.6656432747840881, - -0.6645877361297607, - -0.6998651027679443, - -0.7090657949447632, - -0.7175343632698059, - -0.7250398993492126, - -0.7313775420188904, - -0.7363744974136353, - -0.7398943901062012, - -0.7418413162231445, - -0.7421620488166809, - -0.7408478856086731, - -0.7379347085952759, - -0.7335019707679749, - -0.7276705503463745, - -0.7205995321273804, - -0.7124817967414856, - -0.7035387754440308, - -0.6940144300460815, - -0.6841685175895691, - -0.6742696166038513, - -0.6645877361297607, - -0.6998651027679443, - -0.7166690230369568, - -0.7325334548950195, - -0.7470256686210632, - -0.7597503066062927, - -0.7703602910041809, - -0.7785661816596985, - -0.7841442227363586, - -0.7869422435760498, - -0.7868838310241699, - -0.7839706540107727, - -0.7782821655273438, - -0.7699735164642334, - -0.7592713832855225, - -0.7464675903320312, - -0.7319115400314331, - -0.7160001993179321, - -0.6991675496101379, - -0.6818728446960449, - -0.6645877361297607, - -0.6998650431632996, - -0.7224252223968506, - -0.7438888549804688, - -0.7636705040931702, - -0.7812305688858032, - -0.7960900068283081, - -0.8078436255455017, - -0.8161706924438477, - -0.8208441138267517, - -0.8217363953590393, - -0.8188232183456421, - -0.8121840357780457, - -0.8019999265670776, - -0.7885487675666809, - -0.7721973657608032, - -0.7533918023109436, - -0.7326450347900391, - -0.7105229496955872, - -0.6876290440559387, - -0.6645877361297607, - -0.6998650431632996, - -0.7257106304168701, - -0.7503700256347656, - -0.7731706500053406, - -0.7934905290603638, - -0.8107754588127136, - -0.8245538473129272, - -0.8344500064849854, - -0.8401938676834106, - -0.8416287302970886, - -0.8387155532836914, - -0.8315337896347046, - -0.8202792406082153, - -0.8052589893341064, - -0.786882758140564, - -0.7656518220901489, - -0.7421451807022095, - -0.717004120349884, - -0.6909144520759583, - -0.6645877361297607, - -0.6998650431632996, - -0.7261691689491272, - -0.751274585723877, - -0.7744966149330139, - -0.7952017188072205, - -0.8128251433372498, - -0.8268861770629883, - -0.8370012640953064, - -0.8428945541381836, - -0.8444051742553711, - -0.8414919376373291, - -0.8342344760894775, - -0.8228305578231812, - -0.8075913190841675, - -0.7889324426651001, - -0.7673629522323608, - -0.7434711456298828, - -0.7179087400436401, - -0.6913729906082153, - -0.6645877361297607, - -0.6998650431632996, - -0.7237511873245239, - -0.7465046048164368, - -0.7675046920776367, - -0.7861785888671875, - -0.8020169734954834, - -0.8145877718925476, - -0.8235481381416321, - -0.8286535739898682, - -0.8297648429870605, - -0.8268516659736633, - -0.8199934959411621, - -0.8093773722648621, - -0.7952929735183716, - -0.7781243324279785, - -0.7583398818969727, - -0.7364792227745056, - -0.7131386995315552, - -0.6889550089836121, - -0.6645877361297607 - ], - "z": [ - 0.07447735220193863, - 0.09103672206401825, - 0.10681083798408508, - 0.12136942893266678, - 0.1343153715133667, - 0.14529553055763245, - 0.15401040017604828, - 0.16022227704524994, - 0.1637616902589798, - 0.16453209519386292, - 0.16251249611377716, - 0.1577579826116562, - 0.15039822459220886, - 0.14063400030136108, - 0.1287316381931305, - 0.11501578986644745, - 0.09986060857772827, - 0.08367949724197388, - 0.06691380590200424, - 0.050020888447761536, - 0.07447735220193863, - 0.09550391137599945, - 0.1156233698129654, - 0.13428691029548645, - 0.150985449552536, - 0.16526350378990173, - 0.17673158645629883, - 0.18507689237594604, - 0.19007177650928497, - 0.19157998263835907, - 0.18956038355827332, - 0.18406805396080017, - 0.17525283992290497, - 0.16335517168045044, - 0.14869961142539978, - 0.13168588280677795, - 0.11277809739112854, - 0.09249202162027359, - 0.07138100266456604, - 0.05002088472247124, - 0.07447735220193863, - 0.09767447412014008, - 0.11990529298782349, - 0.14056339859962463, - 0.15908528864383698, - 0.1749657392501831, - 0.18777160346508026, - 0.1971535086631775, - 0.20285558700561523, - 0.2047223001718521, - 0.20270270109176636, - 0.19685187935829163, - 0.1873294711112976, - 0.17439518868923187, - 0.15840184688568115, - 0.13978572189807892, - 0.11905458569526672, - 0.09677394479513168, - 0.07355156540870667, - 0.05002088472247124, - 0.07447735220193863, - 0.09731320291757584, - 0.11919260025024414, - 0.13951872289180756, - 0.157737135887146, - 0.17335087060928345, - 0.18593406677246094, - 0.1951434463262558, - 0.20072782039642334, - 0.20253485441207886, - 0.2005152553319931, - 0.19472411274909973, - 0.18531939387321472, - 0.17255765199661255, - 0.1567869931459427, - 0.13843756914138794, - 0.11800990998744965, - 0.09606125205755234, - 0.07319029420614243, - 0.05002088472247124, - 0.07447735220193863, - 0.09445923566818237, - 0.11356251686811447, - 0.13126608729362488, - 0.14708706736564636, - 0.1605938971042633, - 0.17141811549663544, - 0.17926451563835144, - 0.1839190274477005, - 0.18525469303131104, - 0.18323509395122528, - 0.1779153198003769, - 0.16944044828414917, - 0.15804171562194824, - 0.14402997493743896, - 0.1277875006198883, - 0.10975727438926697, - 0.09043116867542267, - 0.07033632695674896, - 0.050020888447761536, - 0.07447735220193863, - 0.089421845972538, - 0.10362514853477478, - 0.11669981479644775, - 0.12828919291496277, - 0.13807719945907593, - 0.1457967907190323, - 0.15123742818832397, - 0.15425071120262146, - 0.1547544002532959, - 0.15273480117321014, - 0.14824700355529785, - 0.1414133757352829, - 0.1324203908443451, - 0.12151329219341278, - 0.10898962616920471, - 0.09519098699092865, - 0.08049380034208298, - 0.06529893726110458, - 0.050020888447761536, - 0.07447735220193863, - 0.08274692296981812, - 0.09045736491680145, - 0.09739835560321808, - 0.10338057577610016, - 0.10824083536863327, - 0.11184655129909515, - 0.1140993982553482, - 0.11493787914514542, - 0.11433915793895721, - 0.11231955885887146, - 0.10893417149782181, - 0.10427534580230713, - 0.09847013652324677, - 0.09167692065238953, - 0.08408098667860031, - 0.07588954269886017, - 0.06732602417469025, - 0.058624014258384705, - 0.050020888447761536, - 0.07447735965251923, - 0.0751577839255333, - 0.07548610866069794, - 0.07545334845781326, - 0.0750604197382927, - 0.07431802898645401, - 0.07324642688035965, - 0.07187484949827194, - 0.07024070620536804, - 0.06838858872652054, - 0.06636898964643478, - 0.06423699855804443, - 0.062050800770521164, - 0.05987001582980156, - 0.05775412172079086, - 0.05576082691550255, - 0.053944531828165054, - 0.052354756742715836, - 0.051034875214099884, - 0.050020892173051834, - 0.07447735965251923, - 0.06747684627771378, - 0.0603337287902832, - 0.053242865949869156, - 0.04639766365289688, - 0.03998485952615738, - 0.03417935222387314, - 0.029139522463083267, - 0.025002826005220413, - 0.02188212424516678, - 0.019862525165081024, - 0.018999118357896805, - 0.01931547373533249, - 0.02080293372273445, - 0.023420941084623337, - 0.027098078280687332, - 0.03173404932022095, - 0.0372023805975914, - 0.04335393011569977, - 0.050020892173051834, - 0.07447735965251923, - 0.06053644046187401, - 0.0466422401368618, - 0.033173754811286926, - 0.020498372614383698, - 0.008961841464042664, - -0.0011211633682250977, - -0.00947558879852295, - -0.015873543918132782, - -0.02014051377773285, - -0.022160112857818604, - -0.02187725156545639, - -0.019299641251564026, - -0.014497585594654083, - -0.007602088153362274, - 0.0011987760663032532, - 0.011664938181638718, - 0.023510891944169998, - 0.0364135317504406, - 0.05002089589834213, - 0.07447735965251923, - 0.05508868023753166, - 0.035895317792892456, - 0.017420820891857147, - 0.00016912445425987244, - -0.015389196574687958, - -0.028829745948314667, - -0.03978590667247772, - -0.04795881360769272, - -0.0531255304813385, - -0.055145129561424255, - -0.05396252125501633, - -0.0496099591255188, - -0.04220616817474365, - -0.0319531187415123, - -0.01913047581911087, - -0.00408799946308136, - 0.012763969600200653, - 0.03096577152609825, - 0.05002089589834213, - 0.07447735965251923, - 0.051723912358284, - 0.02925756201148033, - 0.007691141217947006, - -0.012387096881866455, - -0.03042943775653839, - -0.045943744480609894, - -0.05850685387849808, - -0.06777603924274445, - -0.07349847257137299, - -0.07551807165145874, - -0.07377974689006805, - -0.06833089888095856, - -0.059320174157619476, - -0.04699335992336273, - -0.031686678528785706, - -0.013817675411701202, - 0.0061262138187885284, - 0.027600999921560287, - 0.05002089589834213, - 0.07447735965251923, - 0.05080675706267357, - 0.027448270469903946, - 0.005039062350988388, - -0.01580961048603058, - -0.03452903777360916, - -0.05060860514640808, - -0.06360973417758942, - -0.07317773997783661, - -0.07905164361000061, - -0.08107124269008636, - -0.07918144762516022, - -0.0734337717294693, - -0.06398503482341766, - -0.0510929599404335, - -0.03510920703411102, - -0.01646975427865982, - 0.004316922277212143, - 0.026683848351240158, - 0.05002089589834213, - 0.07447735965251923, - 0.05243660882115364, - 0.030663516372442245, - 0.009751994162797928, - -0.009727537631988525, - -0.027243733406066895, - -0.04231880605220795, - -0.054541535675525665, - -0.0635785162448883, - -0.06918323040008545, - -0.0712028294801712, - -0.06958222389221191, - -0.06436558067798615, - -0.05569522827863693, - -0.043807655572891235, - -0.029027126729488373, - -0.01175682246685028, - 0.0075321681797504425, - 0.02831370010972023, - 0.05002089589834213, - 0.07447735965251923, - 0.05643684044480324, - 0.03855486586689949, - 0.021319210529327393, - 0.005200009793043137, - -0.009363040328025818, - -0.021972686052322388, - -0.03228498250246048, - -0.04001864790916443, - -0.044962696731090546, - -0.0469822958111763, - -0.04602235555648804, - -0.042109034955501556, - -0.03534911572933197, - -0.025926955044269562, - -0.01409958302974701, - -0.0001896098256111145, - 0.015423517674207687, - 0.03231393173336983, - 0.05002089589834213, - 0.07447735965251923, - 0.062373969703912735, - 0.05026716738939285, - 0.038487210869789124, - 0.027355417609214783, - 0.017175424844026566, - 0.008224930614233017, - 0.00074806809425354, - -0.0050511956214904785, - -0.009014680981636047, - -0.011034280061721802, - -0.011054903268814087, - -0.009075984358787537, - -0.005151495337486267, - 0.0006115101277828217, - 0.008055821061134338, - 0.016978390514850616, - 0.02713581919670105, - 0.038251057267189026, - 0.05002089589834213, - 0.07447735965251923, - 0.06960462033748627, - 0.06453124433755875, - 0.05939561501145363, - 0.05433782935142517, - 0.04949583858251572, - 0.04500172287225723, - 0.0409780777990818, - 0.037534646689891815, - 0.03476535156369209, - 0.03274575248360634, - 0.03153093904256821, - 0.031154027208685875, - 0.03162530064582825, - 0.032931920140981674, - 0.03503824397921562, - 0.03788679838180542, - 0.04139989987015724, - 0.045481711626052856, - 0.050020892173051834, - 0.07447735965251923, - 0.07734523713588715, - 0.07980133593082428, - 0.08177865296602249, - 0.08322326093912125, - 0.08409574627876282, - 0.08437231183052063, - 0.0840454250574112, - 0.08312398195266724, - 0.08163312077522278, - 0.07961352169513702, - 0.07712027430534363, - 0.07422137260437012, - 0.07099589705467224, - 0.06753183901309967, - 0.0639236718416214, - 0.06026983633637428, - 0.05666998773813248, - 0.053222328424453735, - 0.050020892173051834, - 0.07447735220193863, - 0.084757000207901, - 0.09442269802093506, - 0.10321076959371567, - 0.11088152229785919, - 0.11722571402788162, - 0.12207028269767761, - 0.12528309226036072, - 0.12677650153636932, - 0.12650975584983826, - 0.1244901493191719, - 0.12077279388904572, - 0.11545903980731964, - 0.10869386792182922, - 0.10066181421279907, - 0.09158194065093994, - 0.08170194923877716, - 0.07129134982824326, - 0.06063409149646759, - 0.050020888447761536, - 0.07447735220193863, - 0.09103672206401825, - 0.10681084543466568, - 0.12136943638324738, - 0.1343153715133667, - 0.14529553055763245, - 0.15401041507720947, - 0.16022229194641113, - 0.163761705160141, - 0.1645321249961853, - 0.16251251101493835, - 0.15775799751281738, - 0.15039823949337006, - 0.14063401520252228, - 0.1287316530942917, - 0.11501580476760864, - 0.09986061602830887, - 0.08367949724197388, - 0.06691381335258484, - 0.050020888447761536 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.4894389510154724, - 0.4816395044326782, - 0.46916383504867554, - 0.45235228538513184, - 0.4316633939743042, - 0.4076615273952484, - 0.38100138306617737, - 0.3524101674556732, - 0.32266780734062195, - 0.2925855815410614, - 0.262984037399292, - 0.23467063903808594, - 0.20841771364212036, - 0.1849413514137268, - 0.16488195955753326, - 0.14878666400909424, - 0.13709452748298645, - 0.13012447953224182, - 0.12806664407253265, - 0.13097715377807617, - 0.4894389510154724, - 0.4805991053581238, - 0.46711140871047974, - 0.44934383034706116, - 0.42778098583221436, - 0.4030110239982605, - 0.3757096827030182, - 0.3466216027736664, - 0.31654027104377747, - 0.28628620505332947, - 0.25668466091156006, - 0.22854310274124146, - 0.20262913405895233, - 0.17964965105056763, - 0.16023147106170654, - 0.1449042558670044, - 0.13408607244491577, - 0.12807205319404602, - 0.1270262598991394, - 0.13097715377807617, - 0.4894389510154724, - 0.4802517294883728, - 0.46642619371414185, - 0.44833940267562866, - 0.42648473381996155, - 0.40145838260650635, - 0.37394291162490845, - 0.34468895196914673, - 0.31449443101882935, - 0.2841830253601074, - 0.254581481218338, - 0.22649727761745453, - 0.20069649815559387, - 0.17788290977478027, - 0.15867879986763, - 0.14360801875591278, - 0.13308164477348328, - 0.12738680839538574, - 0.12667889893054962, - 0.13097715377807617, - 0.4894389510154724, - 0.48063504695892334, - 0.46718236804008484, - 0.4494478106498718, - 0.42791515588760376, - 0.4031717777252197, - 0.3758925795555115, - 0.34682169556617737, - 0.3167520761489868, - 0.28650394082069397, - 0.25690239667892456, - 0.2287549078464508, - 0.20282922685146332, - 0.1798325628042221, - 0.16039222478866577, - 0.1450384557247162, - 0.13419006764888763, - 0.12814299762248993, - 0.12706221640110016, - 0.13097715377807617, - 0.4894389510154724, - 0.48170751333236694, - 0.4692980647087097, - 0.4525489807128906, - 0.4319172501564026, - 0.40796560049057007, - 0.3813473880290985, - 0.35278868675231934, - 0.3230684697628021, - 0.29299747943878174, - 0.26339593529701233, - 0.2350713014602661, - 0.2087962031364441, - 0.18528735637664795, - 0.1651860475540161, - 0.14904053509235382, - 0.13729123771190643, - 0.1302586793899536, - 0.12813468277454376, - 0.13097715377807617, - 0.4894389510154724, - 0.4833528995513916, - 0.47254395484924316, - 0.4573068618774414, - 0.4380573034286499, - 0.41532033681869507, - 0.3897162079811096, - 0.3619433045387268, - 0.33275917172431946, - 0.3029599189758301, - 0.27335840463638306, - 0.24476201832294464, - 0.21795083582401276, - 0.19365619122982025, - 0.1725407838821411, - 0.15518057346343994, - 0.14204910397529602, - 0.13350456953048706, - 0.12978006899356842, - 0.13097715377807617, - 0.4894389510154724, - 0.4853929281234741, - 0.4765682816505432, - 0.46320581436157227, - 0.44566991925239563, - 0.424439013004303, - 0.40009215474128723, - 0.37329351902008057, - 0.344774067401886, - 0.3153117299079895, - 0.2857101857662201, - 0.25677689909935, - 0.22930103540420532, - 0.20403213798999786, - 0.18165944516658783, - 0.16279320418834686, - 0.14794805645942688, - 0.1375289261341095, - 0.13182006776332855, - 0.13097715377807617, - 0.4894389510154724, - 0.4876064658164978, - 0.4809350371360779, - 0.4696066081523895, - 0.45393019914627075, - 0.4343334436416626, - 0.4113508462905884, - 0.38560935854911804, - 0.3578110933303833, - 0.32871437072753906, - 0.29911282658576965, - 0.2698139250278473, - 0.2416168749332428, - 0.215290829539299, - 0.19155386090278625, - 0.17105348408222198, - 0.15434886515140533, - 0.14189568161964417, - 0.13403363525867462, - 0.13097715377807617, - 0.4894389510154724, - 0.48975372314453125, - 0.48517096042633057, - 0.47581565380096436, - 0.46194300055503845, - 0.4439314305782318, - 0.4222722053527832, - 0.3975561857223511, - 0.3704575300216675, - 0.3417154550552368, - 0.3121139109134674, - 0.28246039152145386, - 0.2535637319087982, - 0.22621220350265503, - 0.20115184783935547, - 0.17906628549098969, - 0.16055789589881897, - 0.14613159000873566, - 0.13618087768554688, - 0.13097715377807617, - 0.4894389510154724, - 0.49160194396972656, - 0.4888170063495636, - 0.481160044670105, - 0.46884000301361084, - 0.45219287276268005, - 0.43167275190353394, - 0.40783941745758057, - 0.38134294748306274, - 0.35290610790252686, - 0.32330456376075745, - 0.29334577918052673, - 0.2638469636440277, - 0.23561275005340576, - 0.2094133198261261, - 0.18596327304840088, - 0.16590231657028198, - 0.1497776359319687, - 0.13802911341190338, - 0.13097715377807617, - 0.4894389510154724, - 0.4929508864879608, - 0.4914780855178833, - 0.4850606918334961, - 0.4738737940788269, - 0.45822253823280334, - 0.4385337829589844, - 0.4153446853160858, - 0.38928771018981934, - 0.36107367277145386, - 0.33147212862968445, - 0.3012905418872833, - 0.27135223150253296, - 0.2424737811088562, - 0.2154429703950882, - 0.19099709391593933, - 0.1698029637336731, - 0.15243873000144958, - 0.13937805593013763, - 0.13097715377807617, - 0.4894389510154724, - 0.49365437030792236, - 0.4928658604621887, - 0.4870948791503906, - 0.47649893164634705, - 0.46136701107025146, - 0.4421118497848511, - 0.4192586839199066, - 0.3934309184551239, - 0.36533302068710327, - 0.33573147654533386, - 0.3054337501525879, - 0.27526620030403137, - 0.2460518181324005, - 0.21858742833137512, - 0.19362221658229828, - 0.17183715105056763, - 0.1538264900445938, - 0.140081524848938, - 0.13097715377807617, - 0.4894389510154724, - 0.4936361312866211, - 0.4928298890590668, - 0.4870421886444092, - 0.47643089294433594, - 0.4612855315208435, - 0.44201910495758057, - 0.4191572666168213, - 0.39332354068756104, - 0.36522263288497925, - 0.3356211185455322, - 0.305326372385025, - 0.27516478300094604, - 0.2459590882062912, - 0.21850594878196716, - 0.19355419278144836, - 0.1717844307422638, - 0.15379051864147186, - 0.14006328582763672, - 0.13097715377807617, - 0.4894389510154724, - 0.492898166179657, - 0.49137410521507263, - 0.4849082827568054, - 0.4736770987510681, - 0.45798689126968384, - 0.43826568126678467, - 0.4150514006614685, - 0.3889772295951843, - 0.36075448989868164, - 0.33115294575691223, - 0.3009800910949707, - 0.27105891704559326, - 0.2422056645154953, - 0.21520733833312988, - 0.19080036878585815, - 0.16965052485466003, - 0.15233473479747772, - 0.1393253356218338, - 0.13097715377807617, - 0.4894389510154724, - 0.4915204644203186, - 0.48865625262260437, - 0.48092442750930786, - 0.4685359001159668, - 0.45182862877845764, - 0.43125832080841064, - 0.40738603472709656, - 0.3808630108833313, - 0.35241270065307617, - 0.32281118631362915, - 0.2928658723831177, - 0.2633935809135437, - 0.23519828915596008, - 0.2090490758419037, - 0.18565919995307922, - 0.16566668450832367, - 0.14961688220500946, - 0.13794761896133423, - 0.13097715377807617, - 0.4894389510154724, - 0.48965227603912354, - 0.4849708676338196, - 0.47552233934402466, - 0.4615645110607147, - 0.4434780478477478, - 0.4217563271522522, - 0.39699187874794006, - 0.3698601722717285, - 0.3411013185977936, - 0.31149977445602417, - 0.2818630039691925, - 0.2529994249343872, - 0.22569631040096283, - 0.20069849491119385, - 0.17868778109550476, - 0.16026461124420166, - 0.14593149721622467, - 0.13607944548130035, - 0.13097715377807617, - 0.4894389510154724, - 0.4874960780143738, - 0.4807173013687134, - 0.4692874252796173, - 0.4535183012485504, - 0.4338400363922119, - 0.410789430141449, - 0.3849952220916748, - 0.3571610152721405, - 0.328046053647995, - 0.2984445095062256, - 0.2691638469696045, - 0.24100275337696075, - 0.2147294133901596, - 0.19106048345565796, - 0.17064158618450165, - 0.15402968227863312, - 0.14167793095111847, - 0.1339232474565506, - 0.13097715377807617, - 0.4894389510154724, - 0.48528552055358887, - 0.47635650634765625, - 0.46289533376693726, - 0.44526925683021545, - 0.42395907640457153, - 0.3995460569858551, - 0.3726961314678192, - 0.3441416919231415, - 0.3146616220474243, - 0.2850600779056549, - 0.25614452362060547, - 0.22870366275310516, - 0.20348602533340454, - 0.18117950856685638, - 0.1623925417661667, - 0.14763757586479187, - 0.13731712102890015, - 0.13171270489692688, - 0.13097715377807617, - 0.4894389510154724, - 0.4832601845264435, - 0.4723610281944275, - 0.4570387005805969, - 0.43771126866340637, - 0.4149058759212494, - 0.38924458622932434, - 0.3614273965358734, - 0.33221307396888733, - 0.3023985028266907, - 0.27279695868492126, - 0.24421590566635132, - 0.21743492782115936, - 0.19318455457687378, - 0.17212630808353424, - 0.1548345535993576, - 0.14178097248077393, - 0.1333216428756714, - 0.1296873390674591, - 0.13097715377807617, - 0.4894389510154724, - 0.4816395044326782, - 0.46916383504867554, - 0.45235228538513184, - 0.4316633939743042, - 0.4076615273952484, - 0.38100138306617737, - 0.3524101674556732, - 0.32266780734062195, - 0.2925855815410614, - 0.262984037399292, - 0.23467063903808594, - 0.20841771364212036, - 0.1849413514137268, - 0.16488195955753326, - 0.14878666400909424, - 0.13709452748298645, - 0.13012446463108063, - 0.12806664407253265, - 0.13097715377807617 - ], - "y": [ - -0.9501169919967651, - -0.974652886390686, - -0.998196542263031, - -1.0201057195663452, - -1.0397828817367554, - -1.0566911697387695, - -1.0703696012496948, - -1.0804448127746582, - -1.0866420269012451, - -1.0887922048568726, - -1.086836814880371, - -1.08082914352417, - -1.0709329843521118, - -1.0574183464050293, - -1.0406538248062134, - -1.0210967063903809, - -0.999280571937561, - -0.9758003950119019, - -0.9512966871261597, - -0.9264378547668457, - -0.9501169919967651, - -0.9675765037536621, - -0.9842368364334106, - -0.9996435046195984, - -1.0133763551712036, - -1.0250605344772339, - -1.0343775749206543, - -1.0410733222961426, - -1.0449650287628174, - -1.045946478843689, - -1.0439910888671875, - -1.0391521453857422, - -1.0315614938735962, - -1.0214263200759888, - -1.0090230703353882, - -0.9946901202201843, - -0.9788183569908142, - -0.9618406891822815, - -0.9442203044891357, - -0.9264378547668457, - -0.9501169919967651, - -0.9585906863212585, - -0.9665102362632751, - -0.9736596941947937, - -0.9798440337181091, - -0.9848945736885071, - -0.9886734485626221, - -0.9910776615142822, - -0.9920417070388794, - -0.9915390610694885, - -0.9895836710929871, - -0.9862287640571594, - -0.9815658926963806, - -0.9757221937179565, - -0.9688571095466614, - -0.9611578583717346, - -0.9528345465660095, - -0.944114089012146, - -0.9352344870567322, - -0.9264378547668457, - -0.9501169919967651, - -0.9486690759658813, - -0.9469376802444458, - -0.9449700713157654, - -0.9428198933601379, - -0.9405457973480225, - -0.9382098317146301, - -0.9358757138252258, - -0.9336071014404297, - -0.9314659237861633, - -0.9295104742050171, - -0.9277942180633545, - -0.9263638854026794, - -0.9252585768699646, - -0.9245083332061768, - -0.9241337180137634, - -0.9241448640823364, - -0.9245415329933167, - -0.925312876701355, - -0.9264378547668457, - -0.9501169919967651, - -0.9388868808746338, - -0.9276400804519653, - -0.9166834950447083, - -0.9063159227371216, - -0.8968201875686646, - -0.8884552717208862, - -0.8814494013786316, - -0.8759936094284058, - -0.8722367882728577, - -0.8702813982963562, - -0.8701807260513306, - -0.8719375729560852, - -0.8755040168762207, - -0.8807827234268188, - -0.8876297473907471, - -0.8958582878112793, - -0.9052439332008362, - -0.9155306816101074, - -0.9264378547668457, - -0.9501169919967651, - -0.9303041100502014, - -0.9107087254524231, - -0.8918653726577759, - -0.8742879629135132, - -0.8584560751914978, - -0.8448014259338379, - -0.8336966037750244, - -0.8254445195198059, - -0.8202701807022095, - -0.8183147311210632, - -0.8196316361427307, - -0.8241848349571228, - -0.8318501710891724, - -0.8424186110496521, - -0.8556017875671387, - -0.8710401654243469, - -0.888312578201294, - -0.906947910785675, - -0.9264378547668457, - -0.9501169919967651, - -0.9238508939743042, - -0.8979783654212952, - -0.8732050657272339, - -0.850206732749939, - -0.8296107649803162, - -0.8119789361953735, - -0.7977921962738037, - -0.7874375581741333, - -0.7811974287033081, - -0.7792419791221619, - -0.7816246747970581, - -0.7882803678512573, - -0.799027681350708, - -0.8135733008384705, - -0.8315205574035645, - -0.8523798584938049, - -0.875582218170166, - -0.9004947543144226, - -0.9264378547668457, - -0.9501169919967651, - -0.9202265739440918, - -0.8908284902572632, - -0.8627247214317322, - -0.8366817831993103, - -0.8134101629257202, - -0.7935445308685303, - -0.7776268720626831, - -0.7660913467407227, - -0.759252667427063, - -0.7572972178459167, - -0.7602784633636475, - -0.7681151032447815, - -0.7805932760238647, - -0.7973726987838745, - -0.8179956078529358, - -0.8418995141983032, - -0.868432343006134, - -0.8968703746795654, - -0.9264378547668457, - -0.9501169919967651, - -0.9198237657546997, - -0.8900339007377625, - -0.861560046672821, - -0.835178792476654, - -0.8116098046302795, - -0.7914959788322449, - -0.7753859758377075, - -0.7637192010879517, - -0.7568139433860779, - -0.7548584938049316, - -0.7579063177108765, - -0.7658741474151611, - -0.7785446643829346, - -0.7955723404884338, - -0.8164926171302795, - -0.8407348394393921, - -0.8676377534866333, - -0.8964675664901733, - -0.9264378547668457, - -0.9501169919967651, - -0.9226862192153931, - -0.8956807851791382, - -0.86983722448349, - -0.8458606004714966, - -0.824404776096344, - -0.8060551881790161, - -0.7913122177124023, - -0.780578076839447, - -0.7741456031799316, - -0.7721901535987854, - -0.7747651934623718, - -0.781800389289856, - -0.7931039333343506, - -0.8083673119544983, - -0.8271743655204773, - -0.8490120768547058, - -0.873284637928009, - -0.8993300795555115, - -0.9264378547668457, - -0.9501169919967651, - -0.9285037517547607, - -0.9071571230888367, - -0.8866593837738037, - -0.867569625377655, - -0.8504086136817932, - -0.8356444239616394, - -0.8236798048019409, - -0.814841091632843, - -0.8093693852424622, - -0.8074139952659607, - -0.8090282082557678, - -0.8141679763793945, - -0.8226931691169739, - -0.8343711495399475, - -0.8488834500312805, - -0.8658341765403748, - -0.8847609758377075, - -0.9051475524902344, - -0.9264378547668457, - -0.9501169919967651, - -0.9366459250450134, - -0.9232193231582642, - -0.9102035164833069, - -0.897953450679779, - -0.8868033289909363, - -0.8770573139190674, - -0.8689811825752258, - -0.8627952933311462, - -0.858668327331543, - -0.8567129373550415, - -0.856982409954071, - -0.8594693541526794, - -0.8641059994697571, - -0.8707658648490906, - -0.8792672753334045, - -0.8893783092498779, - -0.900823175907135, - -0.9132897257804871, - -0.9264378547668457, - -0.9501169919967651, - -0.9462303519248962, - -0.9421268105506897, - -0.9379182457923889, - -0.9337194561958313, - -0.9296450018882751, - -0.9258060455322266, - -0.9223072528839111, - -0.919244110584259, - -0.9167001247406006, - -0.9147447347640991, - -0.9134312272071838, - -0.9127954840660095, - -0.912854790687561, - -0.9136075973510742, - -0.9150332808494568, - -0.91709303855896, - -0.9197306632995605, - -0.9228741526603699, - -0.9264378547668457, - -0.9501169919967651, - -0.9562184810638428, - -0.9618306159973145, - -0.9668002724647522, - -0.9709919095039368, - -0.9742911458015442, - -0.9766080379486084, - -0.9778794050216675, - -0.9780704975128174, - -0.9771761298179626, - -0.9752207398414612, - -0.9722576141357422, - -0.9683675765991211, - -0.9636567831039429, - -0.9582536816596985, - -0.9523057341575623, - -0.9459750652313232, - -0.9394344687461853, - -0.9328622817993164, - -0.9264378547668457, - -0.9501169919967651, - -0.9655279517173767, - -0.9801955223083496, - -0.993719756603241, - -1.0057315826416016, - -1.0159034729003906, - -1.0239579677581787, - -1.0296753644943237, - -1.0328994989395142, - -1.0335427522659302, - -1.0315873622894287, - -1.027086615562439, - -1.0201635360717773, - -1.0110067129135132, - -0.9998661279678345, - -0.9870454668998718, - -0.972894549369812, - -0.9577994346618652, - -0.9421717524528503, - -0.9264378547668457, - -0.9501169919967651, - -0.973149836063385, - -0.9952315092086792, - -1.0157595872879028, - -1.0341740846633911, - -1.0499728918075562, - -1.0627248287200928, - -1.072082281112671, - -1.0777897834777832, - -1.079691767692566, - -1.0777363777160645, - -1.071976900100708, - -1.0625704526901245, - -1.0497735738754272, - -1.0339354276657104, - -1.0154879093170166, - -0.9949343800544739, - -0.97283536195755, - -0.9497936367988586, - -0.9264378547668457, - -0.9501169919967651, - -0.9782583117485046, - -1.0053091049194336, - -1.030531406402588, - -1.0532371997833252, - -1.0728073120117188, - -1.088707685470581, - -1.1005048751831055, - -1.1078767776489258, - -1.1106224060058594, - -1.108667016029358, - -1.1020638942718506, - -1.090993046760559, - -1.0757564306259155, - -1.056769847869873, - -1.0345510244369507, - -1.0097061395645142, - -0.9829128980636597, - -0.9549021124839783, - -0.9264378547668457, - -0.9501169919967651, - -0.980299711227417, - -1.009336233139038, - -1.0364344120025635, - -1.0608551502227783, - -1.0819321870803833, - -1.099090814590454, - -1.1118628978729248, - -1.119899868965149, - -1.1229827404022217, - -1.1210273504257202, - -1.1140869855880737, - -1.1023510694503784, - -1.0861395597457886, - -1.0658948421478271, - -1.0421689748764038, - -1.0156092643737793, - -0.9869400858879089, - -0.9569435119628906, - -0.9264378547668457, - -0.9501169919967651, - -0.9790529012680054, - -1.0068764686584473, - -1.0328289270401, - -1.0562022924423218, - -1.0763589143753052, - -1.092748999595642, - -1.104925513267517, - -1.1125563383102417, - -1.1154333353042603, - -1.1134779453277588, - -1.1067434549331665, - -1.0954138040542603, - -1.0797977447509766, - -1.0603214502334595, - -1.0375161170959473, - -1.012003779411316, - -0.9844803810119629, - -0.955696702003479, - -0.9264378547668457, - -0.9501169919967651, - -0.974652886390686, - -0.998196542263031, - -1.0201057195663452, - -1.0397828817367554, - -1.0566911697387695, - -1.0703694820404053, - -1.0804448127746582, - -1.0866420269012451, - -1.0887922048568726, - -1.086836814880371, - -1.08082914352417, - -1.0709329843521118, - -1.0574182271957397, - -1.0406538248062134, - -1.0210967063903809, - -0.9992805123329163, - -0.9758003950119019, - -0.9512966871261597, - -0.9264378547668457 - ], - "z": [ - 0.27873846888542175, - 0.2953283488750458, - 0.3104024827480316, - 0.32354962825775146, - 0.33441126346588135, - 0.34269100427627563, - 0.34816306829452515, - 0.3506782054901123, - 0.35016775131225586, - 0.34664565324783325, - 0.3402079939842224, - 0.33103036880493164, - 0.31936314702033997, - 0.3055245280265808, - 0.2898920178413391, - 0.2728920578956604, - 0.25498831272125244, - 0.23666918277740479, - 0.21843436360359192, - 0.20078124105930328, - 0.27873846888542175, - 0.30226171016693115, - 0.32408004999160767, - 0.3435983657836914, - 0.3602842092514038, - 0.37368249893188477, - 0.3834276795387268, - 0.38925403356552124, - 0.3910025358200073, - 0.3886255621910095, - 0.3821879029273987, - 0.3718651831150055, - 0.3579389750957489, - 0.34078913927078247, - 0.32088351249694824, - 0.29876500368118286, - 0.2750369906425476, - 0.25034675002098083, - 0.2253677099943161, - 0.20078124105930328, - 0.27873846888542175, - 0.3065883219242096, - 0.33261528611183167, - 0.3561093807220459, - 0.3764297664165497, - 0.39302217960357666, - 0.4054339528083801, - 0.41332659125328064, - 0.4164847731590271, - 0.41482236981391907, - 0.4083847105503082, - 0.39734742045402527, - 0.3820115327835083, - 0.3627954125404358, - 0.34022319316864014, - 0.31491056084632874, - 0.2875480353832245, - 0.25888198614120483, - 0.22969433665275574, - 0.20078124105930328, - 0.27873846888542175, - 0.30783939361572266, - 0.3350832760334015, - 0.35972699522972107, - 0.38109833002090454, - 0.3986142873764038, - 0.41179710626602173, - 0.42028725147247314, - 0.4238530397415161, - 0.422397255897522, - 0.41595959663391113, - 0.4047156870365143, - 0.3889721930027008, - 0.3691585659980774, - 0.3458153009414673, - 0.3195791244506836, - 0.29116564989089966, - 0.26134997606277466, - 0.2309453934431076, - 0.20078124105930328, - 0.27873846888542175, - 0.30587929487228394, - 0.33121657371520996, - 0.3540591299533844, - 0.3737839162349701, - 0.3898528814315796, - 0.4018276631832123, - 0.4093816876411438, - 0.41230887174606323, - 0.41052934527397156, - 0.4040916860103607, - 0.3931715190410614, - 0.37806662917137146, - 0.35918912291526794, - 0.33705389499664307, - 0.31226471066474915, - 0.285497784614563, - 0.25748327374458313, - 0.22898530960083008, - 0.20078124105930328, - 0.27873846888542175, - 0.3009204864501953, - 0.3214341700077057, - 0.3397200107574463, - 0.35527920722961426, - 0.36768731474876404, - 0.37660592794418335, - 0.38179171085357666, - 0.38310325145721436, - 0.3805047273635864, - 0.3740670680999756, - 0.36396586894989014, - 0.35047662258148193, - 0.3339673578739166, - 0.3148883581161499, - 0.2937600016593933, - 0.2711586654186249, - 0.24770087003707886, - 0.22402647137641907, - 0.20078124105930328, - 0.27873846888542175, - 0.29350027441978455, - 0.30679619312286377, - 0.3182635009288788, - 0.3275894820690155, - 0.3345196545124054, - 0.3388650417327881, - 0.3405071198940277, - 0.3394010365009308, - 0.3355770409107208, - 0.32913938164711, - 0.32026368379592896, - 0.30919206142425537, - 0.29622650146484375, - 0.28172066807746887, - 0.26607027649879456, - 0.24970217049121857, - 0.23306289315223694, - 0.2166062891483307, - 0.20078124105930328, - 0.27873846888542175, - 0.2844228148460388, - 0.2888888418674469, - 0.2920147776603699, - 0.29371532797813416, - 0.2939440906047821, - 0.2926948666572571, - 0.2900017201900482, - 0.2859381139278412, - 0.2806148827075958, - 0.274177223443985, - 0.26680073142051697, - 0.2586866617202759, - 0.25005632638931274, - 0.24114510416984558, - 0.23219610750675201, - 0.22345341742038727, - 0.21515554189682007, - 0.20752879977226257, - 0.20078124105930328, - 0.27873846888542175, - 0.274671733379364, - 0.26965266466140747, - 0.26381823420524597, - 0.25732752680778503, - 0.25035762786865234, - 0.243098646402359, - 0.23574860394001007, - 0.22850795090198517, - 0.22157424688339233, - 0.2151365876197815, - 0.20937058329582214, - 0.20443353056907654, - 0.20046007633209229, - 0.19755864143371582, - 0.1958083212375641, - 0.19525688886642456, - 0.19591937959194183, - 0.19777773320674896, - 0.20078125596046448, - 0.27873849868774414, - 0.26530373096466064, - 0.2511722445487976, - 0.2367294430732727, - 0.22236929833889008, - 0.2084835320711136, - 0.19545090198516846, - 0.18362687528133392, - 0.1733340322971344, - 0.16485312581062317, - 0.15841546654701233, - 0.15419666469097137, - 0.15231181681156158, - 0.15281233191490173, - 0.15568453073501587, - 0.16085007786750793, - 0.1681680977344513, - 0.17743894457817078, - 0.1884097456932068, - 0.20078125596046448, - 0.27873849868774414, - 0.25733402371406555, - 0.23545017838478088, - 0.21368388831615448, - 0.192628875374794, - 0.17285948991775513, - 0.1549149751663208, - 0.13928478956222534, - 0.1263953000307083, - 0.11659811437129974, - 0.1101604551076889, - 0.10725793242454529, - 0.10796971619129181, - 0.11227639019489288, - 0.12006048113107681, - 0.13110965490341187, - 0.14512254297733307, - 0.16171687841415405, - 0.1804400086402893, - 0.20078125596046448, - 0.27873849868774414, - 0.251626193523407, - 0.22419019043445587, - 0.197178915143013, - 0.17132912576198578, - 0.14734596014022827, - 0.1258835792541504, - 0.10752744972705841, - 0.0927782952785492, - 0.08203841745853424, - 0.0756007581949234, - 0.07364092767238617, - 0.07621239125728607, - 0.08324500918388367, - 0.09454694390296936, - 0.10980990529060364, - 0.1286175698041916, - 0.15045689046382904, - 0.17473217844963074, - 0.20078125596046448, - 0.27873849868774414, - 0.24879877269268036, - 0.21861250698566437, - 0.1890030801296234, - 0.16077816486358643, - 0.13470768928527832, - 0.1115027368068695, - 0.09179629385471344, - 0.07612593472003937, - 0.06491908431053162, - 0.058481425046920776, - 0.05698856711387634, - 0.0604812353849411, - 0.06886415183544159, - 0.08190867304801941, - 0.09925894439220428, - 0.1204417422413826, - 0.14487920701503754, - 0.1719047725200653, - 0.20078125596046448, - 0.27873849868774414, - 0.24915818870067596, - 0.21932154893875122, - 0.1900423914194107, - 0.16211941838264465, - 0.1363142430782318, - 0.11333081126213074, - 0.0937960296869278, - 0.07824276387691498, - 0.06709529459476471, - 0.06065763533115387, - 0.05910539627075195, - 0.06248097121715546, - 0.07069224119186401, - 0.0835152417421341, - 0.10060018301010132, - 0.1214810460805893, - 0.1455882489681244, - 0.1722641885280609, - 0.20078125596046448, - 0.27873849868774414, - 0.2526654899120331, - 0.22624045610427856, - 0.2001841962337494, - 0.1752074509859085, - 0.15199154615402222, - 0.13116970658302307, - 0.11330993473529816, - 0.09889939427375793, - 0.08833116292953491, - 0.08189350366592407, - 0.07976202666759491, - 0.08199487626552582, - 0.08853113651275635, - 0.09919251501560211, - 0.11368823051452637, - 0.13162285089492798, - 0.15250715613365173, - 0.17577148973941803, - 0.20078125596046448, - 0.27873849868774414, - 0.25894057750701904, - 0.23861946165561676, - 0.21832945942878723, - 0.19862401485443115, - 0.1800406575202942, - 0.16308628022670746, - 0.14822335541248322, - 0.13585731387138367, - 0.12632545828819275, - 0.1198878064751625, - 0.11671994626522064, - 0.11690828949213028, - 0.12044771760702133, - 0.12724167108535767, - 0.137104794383049, - 0.14976811408996582, - 0.16488614678382874, - 0.182046577334404, - 0.20078125596046448, - 0.27873846888542175, - 0.267303466796875, - 0.25511714816093445, - 0.24251191318035126, - 0.22983162105083466, - 0.21742212772369385, - 0.20562195777893066, - 0.1947529911994934, - 0.18511167168617249, - 0.1769610345363617, - 0.17052337527275085, - 0.16597430408000946, - 0.16343791782855988, - 0.16298338770866394, - 0.16462314128875732, - 0.16831240057945251, - 0.17395058274269104, - 0.18138384819030762, - 0.19040948152542114, - 0.20078125596046448, - 0.27873846888542175, - 0.2768479287624359, - 0.27394571900367737, - 0.27011099457740784, - 0.2654483914375305, - 0.2600850462913513, - 0.2541672885417938, - 0.24785654246807098, - 0.24132494628429413, - 0.2347506433725357, - 0.22831298410892487, - 0.2221875786781311, - 0.21654148399829865, - 0.2115287184715271, - 0.2072860449552536, - 0.20392915606498718, - 0.20154964923858643, - 0.20021241903305054, - 0.19995392858982086, - 0.20078124105930328, - 0.27873846888542175, - 0.28653964400291443, - 0.29306477308273315, - 0.298135906457901, - 0.3016146719455719, - 0.3034062087535858, - 0.30346164107322693, - 0.30177944898605347, - 0.2984055280685425, - 0.2934318780899048, - 0.28699424862861633, - 0.27926814556121826, - 0.27046439051628113, - 0.2608230710029602, - 0.2506072223186493, - 0.24009546637535095, - 0.2295745611190796, - 0.21933148801326752, - 0.20964564383029938, - 0.20078124105930328, - 0.27873846888542175, - 0.2953283488750458, - 0.3104024827480316, - 0.32354965806007385, - 0.33441126346588135, - 0.342691034078598, - 0.34816309809684753, - 0.3506782352924347, - 0.35016775131225586, - 0.34664568305015564, - 0.3402080237865448, - 0.33103039860725403, - 0.31936317682266235, - 0.3055245280265808, - 0.2898920476436615, - 0.2728920578956604, - 0.25498831272125244, - 0.23666918277740479, - 0.21843436360359192, - 0.20078124105930328 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.18664833903312683, - 0.1821676641702652, - 0.17964020371437073, - 0.17913490533828735, - 0.1806655377149582, - 0.18419036269187927, - 0.1896132230758667, - 0.19678620994091034, - 0.20551367104053497, - 0.2155575156211853, - 0.22664378583431244, - 0.23847009241580963, - 0.2507138252258301, - 0.26304101943969727, - 0.27511540055274963, - 0.28660762310028076, - 0.29720422625541687, - 0.3066161572933197, - 0.3145866394042969, - 0.3208983242511749, - 0.18664833903312683, - 0.19492116570472717, - 0.2047993391752243, - 0.21601340174674988, - 0.2282574474811554, - 0.24119748175144196, - 0.2544805705547333, - 0.26774436235427856, - 0.2806270718574524, - 0.29277727007865906, - 0.3038635551929474, - 0.31358349323272705, - 0.3216719925403595, - 0.32790833711624146, - 0.3321225345134735, - 0.33419954776763916, - 0.3340827226638794, - 0.3317753076553345, - 0.32734015583992004, - 0.3208983242511749, - 0.18664833903312683, - 0.20687739551067352, - 0.22838567197322845, - 0.25058645009994507, - 0.2728741466999054, - 0.29464083909988403, - 0.31529274582862854, - 0.3342666029930115, - 0.35104477405548096, - 0.3651696443557739, - 0.37625592947006226, - 0.3840011954307556, - 0.38819420337677, - 0.3887205421924591, - 0.3855658769607544, - 0.37881624698638916, - 0.3686557710170746, - 0.3553616404533386, - 0.3392964005470276, - 0.3208983242511749, - 0.18664833903312683, - 0.2167406976222992, - 0.24784323573112488, - 0.2791075110435486, - 0.3096807599067688, - 0.33872896432876587, - 0.3654598295688629, - 0.3891441822052002, - 0.40913599729537964, - 0.42488986253738403, - 0.43597611784935, - 0.4420924186706543, - 0.44307178258895874, - 0.4388876259326935, - 0.429654061794281, - 0.41562286019325256, - 0.3971768617630005, - 0.37481918931007385, - 0.34915968775749207, - 0.3208983242511749, - 0.18664833903312683, - 0.22344224154949188, - 0.26106351613998413, - 0.2984859347343445, - 0.3346887230873108, - 0.368684321641922, - 0.39954543113708496, - 0.42643028497695923, - 0.4486055374145508, - 0.4654662013053894, - 0.47655248641967773, - 0.48156195878982544, - 0.4803578853607178, - 0.4729732275009155, - 0.45960938930511475, - 0.44063082337379456, - 0.416555255651474, - 0.3880394697189331, - 0.35586124658584595, - 0.3208983242511749, - 0.18664833903312683, - 0.22625580430030823, - 0.2666138708591461, - 0.3066217005252838, - 0.3451879620552063, - 0.3812606632709503, - 0.4138558506965637, - 0.4420843720436096, - 0.4651763141155243, - 0.48250168561935425, - 0.4935879707336426, - 0.49813273549079895, - 0.49601197242736816, - 0.4872836470603943, - 0.47218573093414307, - 0.45113009214401245, - 0.42469102144241333, - 0.3935898542404175, - 0.3586747944355011, - 0.3208983242511749, - 0.18664833903312683, - 0.2248764932155609, - 0.26389285922050476, - 0.30263322591781616, - 0.34004080295562744, - 0.3750952184200287, - 0.4068402647972107, - 0.4344101548194885, - 0.45705264806747437, - 0.4741502106189728, - 0.4852364659309387, - 0.490009069442749, - 0.48833775520324707, - 0.48026806116104126, - 0.46602028608322144, - 0.4459829330444336, - 0.42070257663726807, - 0.3908688426017761, - 0.3572954833507538, - 0.3208983242511749, - 0.18664833903312683, - 0.21945375204086304, - 0.2531953454017639, - 0.2869526743888855, - 0.31980499625205994, - 0.35085609555244446, - 0.37925904989242554, - 0.40423911809921265, - 0.42511487007141113, - 0.44131678342819214, - 0.45240306854248047, - 0.4580712914466858, - 0.4581667184829712, - 0.4526868462562561, - 0.4417811632156372, - 0.4257470965385437, - 0.4050220251083374, - 0.3801712989807129, - 0.3518727421760559, - 0.3208983242511749, - 0.18664833903312683, - 0.21057526767253876, - 0.23568053543567657, - 0.2612793445587158, - 0.286673367023468, - 0.31116998195648193, - 0.33410096168518066, - 0.35484084486961365, - 0.3728238344192505, - 0.3875594735145569, - 0.3986457288265228, - 0.40578025579452515, - 0.4087684750556946, - 0.40752875804901123, - 0.4020950496196747, - 0.39261549711227417, - 0.37934866547584534, - 0.36265647411346436, - 0.3429942727088928, - 0.3208983242511749, - 0.18664833903312683, - 0.19920313358306885, - 0.21324646472930908, - 0.2283952534198761, - 0.2442363053560257, - 0.2603375017642975, - 0.2762596309185028, - 0.291568398475647, - 0.3058462142944336, - 0.31870362162590027, - 0.3297899067401886, - 0.33880263566970825, - 0.3454959988594055, - 0.349687397480011, - 0.35126253962516785, - 0.35017842054367065, - 0.346464604139328, - 0.34022241830825806, - 0.3316221237182617, - 0.3208983242511749, - 0.18664833903312683, - 0.1865696907043457, - 0.1883241832256317, - 0.1918639838695526, - 0.1970924735069275, - 0.2038670927286148, - 0.21200302243232727, - 0.2212783247232437, - 0.231440007686615, - 0.24221089482307434, - 0.25329717993736267, - 0.26439642906188965, - 0.27520594000816345, - 0.28543078899383545, - 0.294792115688324, - 0.30303457379341125, - 0.30993330478668213, - 0.3153001368045807, - 0.3189886808395386, - 0.3208983242511749, - 0.18664833903312683, - 0.17404398322105408, - 0.1636144518852234, - 0.15564420819282532, - 0.1503506898880005, - 0.1478782296180725, - 0.1482943445444107, - 0.15158763527870178, - 0.15766829252243042, - 0.1663704514503479, - 0.17745673656463623, - 0.19062471389770508, - 0.20551523566246033, - 0.22172212600708008, - 0.23880328238010406, - 0.25629276037216187, - 0.2737135589122772, - 0.29059040546417236, - 0.30646297335624695, - 0.3208983242511749, - 0.18664833903312683, - 0.16298337280750275, - 0.14179491996765137, - 0.12366093695163727, - 0.10907609760761261, - 0.09843820333480835, - 0.09203745424747467, - 0.0900484174489975, - 0.09252539277076721, - 0.09940078854560852, - 0.11048705875873566, - 0.12548181414604187, - 0.14397601783275604, - 0.16546523571014404, - 0.18936322629451752, - 0.215018168091774, - 0.24173027276992798, - 0.26877087354660034, - 0.2954023778438568, - 0.3208983242511749, - 0.18664833903312683, - 0.15458641946315765, - 0.12523005902767181, - 0.0993800163269043, - 0.07774142920970917, - 0.06090453267097473, - 0.04932859539985657, - 0.04332935810089111, - 0.04307049512863159, - 0.04855906963348389, - 0.05964533984661102, - 0.07602691650390625, - 0.09725695848464966, - 0.12275636196136475, - 0.1518295556306839, - 0.18368349969387054, - 0.217449352145195, - 0.252206027507782, - 0.2870054244995117, - 0.3208983242511749, - 0.18664833903312683, - 0.1497630923986435, - 0.11571496725082397, - 0.08543272316455841, - 0.059742361307144165, - 0.0393446683883667, - 0.024796023964881897, - 0.01649327576160431, - 0.01466292142868042, - 0.019354864954948425, - 0.03044113516807556, - 0.04761934280395508, - 0.07042087614536285, - 0.09822379052639008, - 0.13026967644691467, - 0.16568443179130554, - 0.20350205898284912, - 0.24269093573093414, - 0.28218209743499756, - 0.3208983242511749, - 0.18664833903312683, - 0.14903604984283447, - 0.11428071558475494, - 0.08333040773868561, - 0.05702930688858032, - 0.036094874143600464, - 0.02109813690185547, - 0.012448176741600037, - 0.010380938649177551, - 0.014952823519706726, - 0.026039093732833862, - 0.04333736002445221, - 0.06637577712535858, - 0.09452590346336365, - 0.12701988220214844, - 0.1629713773727417, - 0.20139974355697632, - 0.2412566840648651, - 0.28145503997802734, - 0.3208983242511749, - 0.18664833903312683, - 0.15248411893844604, - 0.12108276784420013, - 0.09330089390277863, - 0.06989628076553345, - 0.051507368683815, - 0.0386357307434082, - 0.03163248300552368, - 0.030688658356666565, - 0.03583000600337982, - 0.04691627621650696, - 0.06364507973194122, - 0.08556008338928223, - 0.11206349730491638, - 0.14243237674236298, - 0.1758383810520172, - 0.21137022972106934, - 0.2480587363243103, - 0.2849031090736389, - 0.3208983242511749, - 0.18664833903312683, - 0.1597335934638977, - 0.1353839933872223, - 0.11426377296447754, - 0.09694898128509521, - 0.0839119553565979, - 0.07550831139087677, - 0.07196725904941559, - 0.07338540256023407, - 0.07972408831119537, - 0.09081035852432251, - 0.10634182393550873, - 0.12589485943317413, - 0.14893609285354614, - 0.17483697831630707, - 0.20289106667041779, - 0.23233309388160706, - 0.26235994696617126, - 0.2921525835990906, - 0.3208983242511749, - 0.18664833903312683, - 0.1699989140033722, - 0.15563464164733887, - 0.14394736289978027, - 0.1352558135986328, - 0.12979711592197418, - 0.1277201771736145, - 0.1290816366672516, - 0.13384434580802917, - 0.1418784260749817, - 0.15296471118927002, - 0.16680076718330383, - 0.18300923705101013, - 0.20114794373512268, - 0.22072213888168335, - 0.24119789898395538, - 0.2620166838169098, - 0.28261059522628784, - 0.30241790413856506, - 0.3208983242511749, - 0.18664833903312683, - 0.1821676790714264, - 0.17964020371437073, - 0.17913490533828735, - 0.18066555261611938, - 0.18419039249420166, - 0.1896132528781891, - 0.19678625464439392, - 0.20551371574401855, - 0.21555756032466888, - 0.22664383053779602, - 0.2384701371192932, - 0.25071385502815247, - 0.26304104924201965, - 0.275115430355072, - 0.28660765290260315, - 0.29720425605773926, - 0.3066161572933197, - 0.31458666920661926, - 0.3208983242511749 - ], - "y": [ - -1.053784966468811, - -1.0806461572647095, - -1.1107234954833984, - -1.1431964635849, - -1.1771794557571411, - -1.211745262145996, - -1.2459511756896973, - -1.2788641452789307, - -1.3095864057540894, - -1.3372797966003418, - -1.3611891269683838, - -1.3806620836257935, - -1.3951674699783325, - -1.404309630393982, - -1.407839298248291, - -1.4056600332260132, - -1.3978313207626343, - -1.3845669031143188, - -1.3662283420562744, - -1.3433159589767456, - -1.053784966468811, - -1.0790464878082275, - -1.1075677871704102, - -1.1385709047317505, - -1.1712100505828857, - -1.2045949697494507, - -1.237815022468567, - -1.2699639797210693, - -1.300165057182312, - -1.32759428024292, - -1.351503610610962, - -1.3712407350540161, - -1.3862673044204712, - -1.3961734771728516, - -1.400688886642456, - -1.3996906280517578, - -1.3932057619094849, - -1.3814111948013306, - -1.3646286725997925, - -1.3433159589767456, - -1.053784966468811, - -1.0749233961105347, - -1.0994338989257812, - -1.126648187637329, - -1.1558237075805664, - -1.1861647367477417, - -1.216843605041504, - -1.2470234632492065, - -1.2758811712265015, - -1.3026293516159058, - -1.3265386819839478, - -1.346956729888916, - -1.3633267879486084, - -1.3752020597457886, - -1.382258653640747, - -1.3843042850494385, - -1.3812830448150635, - -1.3732773065567017, - -1.36050546169281, - -1.3433159589767456, - -1.053784966468811, - -1.068723440170288, - -1.0872032642364502, - -1.1087204217910767, - -1.1326878070831299, - -1.158451795578003, - -1.1853095293045044, - -1.2125284671783447, - -1.2393661737442017, - -1.2650904655456543, - -1.2889996767044067, - -1.3104417324066162, - -1.3288317918777466, - -1.343667984008789, - -1.3545457124710083, - -1.361168384552002, - -1.363355278968811, - -1.3610466718673706, - -1.354305624961853, - -1.3433159589767456, - -1.053784966468811, - -1.061118721961975, - -1.0722012519836426, - -1.0867302417755127, - -1.1043094396591187, - -1.1244592666625977, - -1.146630048751831, - -1.1702171564102173, - -1.1945770978927612, - -1.2190454006195068, - -1.2429546117782593, - -1.2656526565551758, - -1.2865203619003296, - -1.3049885034561157, - -1.320553183555603, - -1.3327900171279907, - -1.341365098953247, - -1.346044659614563, - -1.34670090675354, - -1.3433159589767456, - -1.053784966468811, - -1.0529332160949707, - -1.0560535192489624, - -1.0630607604980469, - -1.0737638473510742, - -1.087870717048645, - -1.104996681213379, - -1.1246744394302368, - -1.1463674306869507, - -1.1694839000701904, - -1.1933932304382324, - -1.2174431085586548, - -1.2409777641296387, - -1.263355016708374, - -1.2839646339416504, - -1.3022444248199463, - -1.3176956176757812, - -1.3298969268798828, - -1.3385154008865356, - -1.3433159589767456, - -1.053784966468811, - -1.0450539588928223, - -1.0405099391937256, - -1.0402768850326538, - -1.0443609952926636, - -1.0526511669158936, - -1.0649209022521973, - -1.0808358192443848, - -1.0999616384506226, - -1.121776819229126, - -1.1456860303878784, - -1.1710373163223267, - -1.1971391439437866, - -1.223279356956482, - -1.248745083808899, - -1.2728415727615356, - -1.2949117422103882, - -1.314353346824646, - -1.3306361436843872, - -1.3433159589767456, - -1.053784966468811, - -1.038334846496582, - -1.0272549390792847, - -1.0208475589752197, - -1.019287347793579, - -1.0226171016693115, - -1.0307457447052002, - -1.0434517860412598, - -1.060388445854187, - -1.0810937881469727, - -1.1050031185150146, - -1.1314640045166016, - -1.159754991531372, - -1.1891041994094849, - -1.218711018562317, - -1.2477679252624512, - -1.275482416152954, - -1.301098346710205, - -1.3239169120788574, - -1.3433159589767456, - -1.053784966468811, - -1.0335038900375366, - -1.017724871635437, - -1.0068782567977905, - -1.0012599229812622, - -1.001023292541504, - -1.0061745643615723, - -1.016573429107666, - -1.0319360494613647, - -1.051843523979187, - -1.075752854347229, - -1.1030117273330688, - -1.1328766345977783, - -1.164533019065857, - -1.1971172094345093, - -1.2297405004501343, - -1.261513113975525, - -1.2915682792663574, - -1.3190860748291016, - -1.3433159589767456, - -1.053784966468811, - -1.031084656715393, - -1.012952446937561, - -0.9998828172683716, - -0.9922323226928711, - -0.9902096390724182, - -0.993869960308075, - -1.0031133890151978, - -1.0176879167556763, - -1.0371958017349243, - -1.0611051321029663, - -1.0887635946273804, - -1.1194167137145996, - -1.1522283554077148, - -1.1863036155700684, - -1.2207129001617432, - -1.254517674446106, - -1.2867958545684814, - -1.316666841506958, - -1.3433159589767456, - -1.053784966468811, - -1.031339406967163, - -1.0134549140930176, - -1.0006192922592163, - -0.9931827187538147, - -0.9913480877876282, - -0.9951653480529785, - -1.004530429840088, - -1.0191879272460938, - -1.0387380123138428, - -1.0626472234725952, - -1.0902636051177979, - -1.1208337545394897, - -1.1535238027572632, - -1.1874420642852783, - -1.2216633558273315, - -1.2552541494369507, - -1.2872982025146484, - -1.3169214725494385, - -1.3433159589767456, - -1.053784966468811, - -1.0342403650283813, - -1.0191776752471924, - -1.0090078115463257, - -1.004008173942566, - -1.0043152570724487, - -1.009920358657837, - -1.020671010017395, - -1.0362735986709595, - -1.056302785873413, - -1.0802119970321655, - -1.1073492765426636, - -1.1369742155075073, - -1.1682788133621216, - -1.200409173965454, - -1.2324888706207275, - -1.2636427879333496, - -1.2930210828781128, - -1.3198225498199463, - -1.3433159589767456, - -1.053784966468811, - -1.039473295211792, - -1.0295007228851318, - -1.0241395235061646, - -1.0235357284545898, - -1.0277057886123657, - -1.0365362167358398, - -1.049785852432251, - -1.0670933723449707, - -1.0879868268966675, - -1.11189603805542, - -1.1381690502166748, - -1.1660890579223633, - -1.194894552230835, - -1.2237998247146606, - -1.252016305923462, - -1.278774380683899, - -1.3033441305160522, - -1.3250553607940674, - -1.3433159589767456, - -1.053784966468811, - -1.0464709997177124, - -1.0433053970336914, - -1.0443744659423828, - -1.0496490001678467, - -1.0589852333068848, - -1.072128415107727, - -1.0887200832366943, - -1.1083076000213623, - -1.1303566694259644, - -1.1542659997940063, - -1.1793832778930664, - -1.2050232887268066, - -1.2304868698120117, - -1.2550791501998901, - -1.2781295776367188, - -1.2990093231201172, - -1.3171488046646118, - -1.3320531845092773, - -1.3433159589767456, - -1.053784966468811, - -1.0544753074645996, - -1.0590956211090088, - -1.0675199031829834, - -1.0795183181762695, - -1.0947637557983398, - -1.1128400564193726, - -1.1332544088363647, - -1.1554498672485352, - -1.1788209676742554, - -1.2027301788330078, - -1.2265254259109497, - -1.249557614326477, - -1.2711985111236572, - -1.2908576726913452, - -1.3079990148544312, - -1.3221547603607178, - -1.3329390287399292, - -1.3400574922561646, - -1.3433159589767456, - -1.053784966468811, - -1.0626187324523926, - -1.0751603841781616, - -1.0910677909851074, - -1.1099070310592651, - -1.1311641931533813, - -1.154259443283081, - -1.1785629987716675, - -1.20341157913208, - -1.2281277179718018, - -1.2520369291305542, - -1.2744872570037842, - -1.2948662042617798, - -1.3126178979873657, - -1.3272581100463867, - -1.3383876085281372, - -1.3457026481628418, - -1.349003791809082, - -1.3482009172439575, - -1.3433159589767456, - -1.053784966468811, - -1.0700188875198364, - -1.0897587537765503, - -1.1124662160873413, - -1.1375218629837036, - -1.164242148399353, - -1.1918983459472656, - -1.219735860824585, - -1.2469956874847412, - -1.272933840751648, - -1.29684317111969, - -1.3180712461471558, - -1.3360391855239868, - -1.3502566814422607, - -1.360336184501648, - -1.3660024404525757, - -1.3671010732650757, - -1.3636021614074707, - -1.3556010723114014, - -1.3433159589767456, - -1.053784966468811, - -1.0758737325668335, - -1.101308822631836, - -1.1293964385986328, - -1.1593704223632812, - -1.190412998199463, - -1.2216776609420776, - -1.2523114681243896, - -1.281478762626648, - -1.3083839416503906, - -1.3322932720184326, - -1.352554440498352, - -1.368614673614502, - -1.3800361156463623, - -1.3865070343017578, - -1.3878509998321533, - -1.3840312957763672, - -1.3751522302627563, - -1.3614559173583984, - -1.3433159589767456, - -1.053784966468811, - -1.079548954963684, - -1.108559012413025, - -1.1400237083435059, - -1.1730849742889404, - -1.2068407535552979, - -1.240370512008667, - -1.2727594375610352, - -1.303124189376831, - -1.3306365013122559, - -1.3545457124710083, - -1.3741998672485352, - -1.389062762260437, - -1.3987289667129517, - -1.4029347896575928, - -1.4015655517578125, - -1.3946585655212402, - -1.3824024200439453, - -1.365131139755249, - -1.3433159589767456, - -1.053784966468811, - -1.0806461572647095, - -1.1107234954833984, - -1.1431964635849, - -1.1771794557571411, - -1.211745262145996, - -1.2459511756896973, - -1.2788641452789307, - -1.3095864057540894, - -1.3372797966003418, - -1.3611891269683838, - -1.3806620836257935, - -1.3951674699783325, - -1.404309630393982, - -1.407839298248291, - -1.4056600332260132, - -1.3978313207626343, - -1.3845669031143188, - -1.3662283420562744, - -1.3433159589767456 - ], - "z": [ - 0.6080207228660583, - 0.6227121353149414, - 0.6318795084953308, - 0.635272741317749, - 0.6327992677688599, - 0.6245266199111938, - 0.610680341720581, - 0.5916382670402527, - 0.5679196715354919, - 0.5401716232299805, - 0.509151041507721, - 0.47570398449897766, - 0.4407428801059723, - 0.4052213430404663, - 0.37010836601257324, - 0.3363616466522217, - 0.30490174889564514, - 0.2765868306159973, - 0.2521892488002777, - 0.23237450420856476, - 0.6080207228660583, - 0.6260371208190918, - 0.6384387016296387, - 0.6448873281478882, - 0.6452069282531738, - 0.639388918876648, - 0.6275919079780579, - 0.6101377010345459, - 0.5875024795532227, - 0.5603035688400269, - 0.5292829871177673, - 0.4952867925167084, - 0.4592423737049103, - 0.4221329092979431, - 0.38497066497802734, - 0.34876930713653564, - 0.3145163357257843, - 0.28314608335494995, - 0.2555142045021057, - 0.23237450420856476, - 0.6080207228660583, - 0.6271321177482605, - 0.6405988931655884, - 0.6480536460876465, - 0.6492931842803955, - 0.6442835330963135, - 0.6331614255905151, - 0.6162301898002625, - 0.5939517021179199, - 0.5669336318969727, - 0.5359130501747131, - 0.501736044883728, - 0.46533483266830444, - 0.427702397108078, - 0.38986527919769287, - 0.3528555631637573, - 0.3176827132701874, - 0.2853062152862549, - 0.2566092312335968, - 0.23237450420856476, - 0.6080207228660583, - 0.6258785128593445, - 0.6381258964538574, - 0.6444287300109863, - 0.6446151733398438, - 0.6386800408363342, - 0.6267852783203125, - 0.6092553734779358, - 0.5865684747695923, - 0.5593433976173401, - 0.5283227562904358, - 0.4943527579307556, - 0.4583600163459778, - 0.42132630944252014, - 0.384261816740036, - 0.3481775224208832, - 0.31405776739120483, - 0.2828332185745239, - 0.2553556263446808, - 0.23237450420856476, - 0.6080207228660583, - 0.6224121451377869, - 0.631287693977356, - 0.634405255317688, - 0.6316798329353333, - 0.6231856942176819, - 0.6091545224189758, - 0.5899691581726074, - 0.5661528706550598, - 0.53835529088974, - 0.5073346495628357, - 0.47393718361854553, - 0.4390738010406494, - 0.40369555354118347, - 0.3687674403190613, - 0.33524221181869507, - 0.3040342926979065, - 0.27599504590034485, - 0.25188925862312317, - 0.23237450420856476, - 0.6080207228660583, - 0.6171086430549622, - 0.6208254098892212, - 0.6190694570541382, - 0.6118888854980469, - 0.5994794964790344, - 0.5821797251701355, - 0.5604615211486816, - 0.5349172353744507, - 0.5062437653541565, - 0.4752231240272522, - 0.4427015781402588, - 0.40956613421440125, - 0.37672072649002075, - 0.3450612425804138, - 0.3154512941837311, - 0.2886984944343567, - 0.2655327022075653, - 0.24658577144145966, - 0.23237450420856476, - 0.6080207228660583, - 0.6105427742004395, - 0.6078726649284363, - 0.6000832319259644, - 0.5873870849609375, - 0.5701304078102112, - 0.5487839579582214, - 0.523930013179779, - 0.49624648690223694, - 0.4664885699748993, - 0.4354679584503174, - 0.40403079986572266, - 0.37303462624549866, - 0.3433249592781067, - 0.3157121539115906, - 0.2909494638442993, - 0.26971229910850525, - 0.2525799870491028, - 0.24001985788345337, - 0.23237450420856476, - 0.6080207228660583, - 0.603425920009613, - 0.5938331484794617, - 0.5795040726661682, - 0.5608295202255249, - 0.5383188724517822, - 0.5125861763954163, - 0.4843333959579468, - 0.4543311595916748, - 0.42339783906936646, - 0.39237719774246216, - 0.3621154725551605, - 0.33343803882598877, - 0.3071271777153015, - 0.2839006185531616, - 0.26439186930656433, - 0.24913308024406433, - 0.23854048550128937, - 0.23290304839611053, - 0.23237450420856476, - 0.6080207228660583, - 0.5965294241905212, - 0.580228328704834, - 0.5595619082450867, - 0.5350940823554993, - 0.5074921250343323, - 0.4775090217590332, - 0.4459626376628876, - 0.4137134253978729, - 0.38164108991622925, - 0.35062044858932495, - 0.32149773836135864, - 0.2950672507286072, - 0.27205002307891846, - 0.25307387113571167, - 0.2386564463376999, - 0.22919096052646637, - 0.2249356359243393, - 0.22600655257701874, - 0.23237450420856476, - 0.6080207228660583, - 0.5906006097793579, - 0.5685323476791382, - 0.5424179434776306, - 0.5129696130752563, - 0.48099079728126526, - 0.44735363125801086, - 0.4129757285118103, - 0.3787948489189148, - 0.3457432985305786, - 0.3147226870059967, - 0.2865791320800781, - 0.2620803713798523, - 0.24189463257789612, - 0.22657252848148346, - 0.21653200685977936, - 0.21204695105552673, - 0.21323969960212708, - 0.2200777232646942, - 0.23237450420856476, - 0.6080207228660583, - 0.5862818956375122, - 0.5600128173828125, - 0.5299298763275146, - 0.49685370922088623, - 0.4616866111755371, - 0.42538779973983765, - 0.38894736766815186, - 0.3533594012260437, - 0.3195945918560028, - 0.2885739803314209, - 0.2611437141895294, - 0.23805201053619385, - 0.2199287861585617, - 0.2072683572769165, - 0.20041608810424805, - 0.19955888390541077, - 0.2047201246023178, - 0.2157590389251709, - 0.23237450420856476, - 0.6080207228660583, - 0.5840413570404053, - 0.5555928349494934, - 0.523451030254364, - 0.4884927272796631, - 0.4516715705394745, - 0.4139918386936188, - 0.37648141384124756, - 0.3401634097099304, - 0.3060285747051239, - 0.275007963180542, - 0.24794773757457733, - 0.22558602690696716, - 0.20853282511234283, - 0.1972533017396927, - 0.1920551061630249, - 0.19308005273342133, - 0.2003001570701599, - 0.21351850032806396, - 0.23237450420856476, - 0.6080207228660583, - 0.5841217637062073, - 0.555751383304596, - 0.523683488368988, - 0.4887927174568176, - 0.45203089714050293, - 0.41440072655677795, - 0.3769286870956421, - 0.34063687920570374, - 0.30651533603668213, - 0.27549469470977783, - 0.24842119216918945, - 0.2260333001613617, - 0.20894171297550201, - 0.19761262834072113, - 0.19235509634017944, - 0.19331251084804535, - 0.20045873522758484, - 0.21359889209270477, - 0.23237450420856476, - 0.6080207228660583, - 0.5865143537521362, - 0.5604713559150696, - 0.5306020379066467, - 0.49772119522094727, - 0.4627256989479065, - 0.4265701472759247, - 0.39024075865745544, - 0.3547285199165344, - 0.3210020959377289, - 0.289981484413147, - 0.26251280307769775, - 0.23934538662433624, - 0.22111113369464874, - 0.2083074301481247, - 0.2012835592031479, - 0.20023107528686523, - 0.20517870783805847, - 0.21599151194095612, - 0.23237450420856476, - 0.6080207228660583, - 0.5909599661827087, - 0.5692412257194519, - 0.5434569716453552, - 0.5143105387687683, - 0.4825969934463501, - 0.44918131828308105, - 0.41497501730918884, - 0.3809112012386322, - 0.3479190170764923, - 0.3168984055519104, - 0.2886955142021179, - 0.26407966017723083, - 0.24372228980064392, - 0.2281787246465683, - 0.21787293255329132, - 0.21308602392673492, - 0.2139485627412796, - 0.22043706476688385, - 0.23237450420856476, - 0.6080207228660583, - 0.5969766974449158, - 0.5811106562614441, - 0.5608552694320679, - 0.5367631316184998, - 0.5094913840293884, - 0.47978395223617554, - 0.4484511613845825, - 0.4163476526737213, - 0.38434919714927673, - 0.3533285856246948, - 0.32413196563720703, - 0.2975557744503021, - 0.2743249535560608, - 0.2550731301307678, - 0.24032549560070038, - 0.23048429191112518, - 0.2258179634809494, - 0.22645382583141327, - 0.23237450420856476, - 0.6080207228660583, - 0.6039126515388489, - 0.5947933793067932, - 0.5809115171432495, - 0.5626458525657654, - 0.5404945611953735, - 0.5150618553161621, - 0.48704156279563904, - 0.457197904586792, - 0.42634496092796326, - 0.39532431960105896, - 0.3649821877479553, - 0.33614617586135864, - 0.30960288643836975, - 0.28607630729675293, - 0.2662082314491272, - 0.250540554523468, - 0.23950070142745972, - 0.23338979482650757, - 0.23237450420856476, - 0.6080207228660583, - 0.6110162138938904, - 0.6088066697120667, - 0.6014523506164551, - 0.5891538858413696, - 0.572246789932251, - 0.5511921644210815, - 0.5265643000602722, - 0.4990350604057312, - 0.46935534477233887, - 0.43833470344543457, - 0.4068193733692169, - 0.3756689429283142, - 0.3457331359386444, - 0.31782853603363037, - 0.29271629452705383, - 0.2710813879966736, - 0.25351399183273315, - 0.24049332737922668, - 0.23237450420856476, - 0.6080207228660583, - 0.6175175309181213, - 0.6216319799423218, - 0.6202518343925476, - 0.6134147644042969, - 0.601307213306427, - 0.5842593908309937, - 0.5627365112304688, - 0.5373254418373108, - 0.5087195038795471, - 0.4776988625526428, - 0.4451097846031189, - 0.41184112429618835, - 0.3788004219532013, - 0.3468889594078064, - 0.3169771432876587, - 0.2898808717727661, - 0.26633933186531067, - 0.24699465930461884, - 0.23237450420856476, - 0.6080207228660583, - 0.6227121353149414, - 0.6318795084953308, - 0.635272741317749, - 0.6327992677688599, - 0.6245266199111938, - 0.610680341720581, - 0.5916382670402527, - 0.5679197311401367, - 0.5401716828346252, - 0.509151041507721, - 0.47570401430130005, - 0.4407429099082947, - 0.4052213728427887, - 0.37010836601257324, - 0.3363616466522217, - 0.30490174889564514, - 0.2765868306159973, - 0.2521892488002777, - 0.23237450420856476 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.16657865047454834, - 0.17240791022777557, - 0.17890742421150208, - 0.18589994311332703, - 0.1931947022676468, - 0.20059272646903992, - 0.20789222419261932, - 0.21489407122135162, - 0.22140729427337646, - 0.22725419700145721, - 0.2322753220796585, - 0.2363336980342865, - 0.2393186241388321, - 0.2411486655473709, - 0.24177391827106476, - 0.24117732048034668, - 0.23937514424324036, - 0.23641657829284668, - 0.23238226771354675, - 0.22738230228424072, - 0.16657865047454834, - 0.18832240998744965, - 0.21030233800411224, - 0.23191888630390167, - 0.2525824010372162, - 0.2717292308807373, - 0.28883713483810425, - 0.3034394085407257, - 0.3151377737522125, - 0.32361310720443726, - 0.32863420248031616, - 0.33006417751312256, - 0.3278639614582062, - 0.32209357619285583, - 0.31291043758392334, - 0.30056503415107727, - 0.2853940725326538, - 0.26781147718429565, - 0.24829676747322083, - 0.22738228738307953, - 0.16657865047454834, - 0.20192557573318481, - 0.23713761568069458, - 0.2712542712688446, - 0.3033449351787567, - 0.3325342535972595, - 0.35802602767944336, - 0.37912487983703613, - 0.39525532722473145, - 0.4059773087501526, - 0.41099846363067627, - 0.4101817309856415, - 0.4035494327545166, - 0.39128243923187256, - 0.37371546030044556, - 0.3513275384902954, - 0.3247295022010803, - 0.2946467399597168, - 0.2618999481201172, - 0.22738228738307953, - 0.16657865047454834, - 0.2117432802915573, - 0.25650525093078613, - 0.29964351654052734, - 0.3399813771247864, - 0.3764185905456543, - 0.4079611897468567, - 0.4337487816810608, - 0.45307794213294983, - 0.4654214084148407, - 0.470442533493042, - 0.46800437569618225, - 0.45817330479621887, - 0.44121766090393066, - 0.41759979724884033, - 0.38796401023864746, - 0.3531187176704407, - 0.31401437520980835, - 0.2717176377773285, - 0.22738228738307953, - 0.16657863557338715, - 0.2167116403579712, - 0.26630643010139465, - 0.3140101730823517, - 0.3585216701030731, - 0.39862674474716187, - 0.4332314133644104, - 0.461391806602478, - 0.48233968019485474, - 0.4955037236213684, - 0.5005248785018921, - 0.49726611375808716, - 0.4858163595199585, - 0.466487854719162, - 0.4398079514503479, - 0.4065043032169342, - 0.367485374212265, - 0.32381558418273926, - 0.27668601274490356, - 0.22738228738307953, - 0.16657863557338715, - 0.21629223227500916, - 0.26547905802726746, - 0.3127974271774292, - 0.3569566011428833, - 0.3967520594596863, - 0.43109822273254395, - 0.4590582847595215, - 0.4798695743083954, - 0.49296435713768005, - 0.49798548221588135, - 0.4947960078716278, - 0.48348283767700195, - 0.46435463428497314, - 0.4379332661628723, - 0.4049392342567444, - 0.36627262830734253, - 0.32298821210861206, - 0.27626660466194153, - 0.22738228738307953, - 0.16657865047454834, - 0.21053053438663483, - 0.2541128098964691, - 0.29613667726516724, - 0.33545583486557007, - 0.37099769711494446, - 0.40179282426834106, - 0.4270012378692627, - 0.44593530893325806, - 0.4580784738063812, - 0.4630995988845825, - 0.4608617424964905, - 0.45142579078674316, - 0.43504929542541504, - 0.4121789336204529, - 0.38343846797943115, - 0.34961187839508057, - 0.3116219639778137, - 0.270504891872406, - 0.22738228738307953, - 0.16657865047454834, - 0.20005089044570923, - 0.2334393858909607, - 0.26583337783813477, - 0.29634925723075867, - 0.3241545855998993, - 0.34849095344543457, - 0.3686945140361786, - 0.3842141628265381, - 0.39462655782699585, - 0.39964768290519714, - 0.3991405963897705, - 0.39311906695365906, - 0.38174739480018616, - 0.3653358221054077, - 0.34433186054229736, - 0.3193085789680481, - 0.2909485101699829, - 0.2600252628326416, - 0.22738228738307953, - 0.16657865047454834, - 0.18598894774913788, - 0.20569907128810883, - 0.22517137229442596, - 0.2438746988773346, - 0.26129886507987976, - 0.2769685983657837, - 0.29045647382736206, - 0.30139458179473877, - 0.3094845116138458, - 0.3145056366920471, - 0.3163209855556488, - 0.31488102674484253, - 0.31022506952285767, - 0.3024800717830658, - 0.2918573319911957, - 0.2786465883255005, - 0.26320821046829224, - 0.24596330523490906, - 0.22738228738307953, - 0.16657865047454834, - 0.16986852884292603, - 0.17389795184135437, - 0.17855700850486755, - 0.18371860682964325, - 0.1892419457435608, - 0.19497638940811157, - 0.2007654905319214, - 0.20645134150981903, - 0.21187885105609894, - 0.21689997613430023, - 0.22137776017189026, - 0.22519002854824066, - 0.22823283076286316, - 0.23042313754558563, - 0.23170122504234314, - 0.23203220963478088, - 0.23140709102153778, - 0.2298429012298584, - 0.22738230228424072, - 0.16657865047454834, - 0.153436541557312, - 0.1414821743965149, - 0.13104167580604553, - 0.12239980697631836, - 0.11579231172800064, - 0.11139941960573196, - 0.10934093594551086, - 0.10967304557561874, - 0.11238667368888855, - 0.11740779876708984, - 0.12459945678710938, - 0.13376548886299133, - 0.14465585350990295, - 0.1569734811782837, - 0.17038242518901825, - 0.18451689183712006, - 0.1989913284778595, - 0.2134108990430832, - 0.22738230228424072, - 0.16657866537570953, - 0.13847362995147705, - 0.11196450889110565, - 0.08777441829442978, - 0.06656314432621002, - 0.04890936613082886, - 0.035294562578201294, - 0.026090100407600403, - 0.021547123789787292, - 0.02178947627544403, - 0.026810601353645325, - 0.03647352755069733, - 0.05051465332508087, - 0.0685509741306305, - 0.09009052813053131, - 0.11454576998949051, - 0.1412496268749237, - 0.16947364807128906, - 0.19844798743724823, - 0.22738230228424072, - 0.16657866537570953, - 0.12660127878189087, - 0.08854363858699799, - 0.05344387888908386, - 0.022259414196014404, - -0.004159078001976013, - -0.025091052055358887, - -0.03996548056602478, - -0.048376649618148804, - -0.05009511113166809, - -0.0450739860534668, - -0.03345024585723877, - -0.015540927648544312, - 0.008165374398231506, - 0.03702205419540405, - 0.0702420175075531, - 0.10691908001899719, - 0.1460527777671814, - 0.18657563626766205, - 0.22738230228424072, - 0.16657866537570953, - 0.11910600960254669, - 0.07375756651163101, - 0.03177030384540558, - -0.005710437893867493, - -0.03766226768493652, - -0.06321370601654053, - -0.08166772127151489, - -0.09252098202705383, - -0.09547728300094604, - -0.09045615792274475, - -0.07759454846382141, - -0.057243168354034424, - -0.029957294464111328, - 0.0035188645124435425, - 0.042272165417671204, - 0.08524550497531891, - 0.13126671314239502, - 0.17908036708831787, - 0.22738231718540192, - 0.16657866537570953, - 0.11680008471012115, - 0.06920860707759857, - 0.0251024067401886, - -0.014315396547317505, - -0.04796959459781647, - -0.0749422013759613, - -0.0944974422454834, - -0.10610195994377136, - -0.10943916440010071, - -0.10441803932189941, - -0.09117552638053894, - -0.07007288932800293, - -0.04168574512004852, - -0.0067884474992752075, - 0.03366720676422119, - 0.07857760787010193, - 0.12671774625778198, - 0.17677444219589233, - 0.22738231718540192, - 0.16657866537570953, - 0.1199333593249321, - 0.07538969814777374, - 0.0341627299785614, - -0.0026230216026306152, - -0.033964067697525024, - -0.05900558829307556, - -0.07706451416015625, - -0.08764812350273132, - -0.09046781063079834, - -0.08544668555259705, - -0.0727216899394989, - -0.05263996124267578, - -0.025749146938323975, - 0.0072170644998550415, - 0.04535958170890808, - 0.08763793110847473, - 0.13289883732795715, - 0.17990772426128387, - 0.22738231718540192, - 0.16657866537570953, - 0.1281663179397583, - 0.09163105487823486, - 0.05796945095062256, - 0.028099700808525085, - 0.00283658504486084, - -0.01713082194328308, - -0.03125779330730438, - -0.03915904462337494, - -0.04061897099018097, - -0.035597845911979675, - -0.024232640862464905, - -0.006833240389823914, - 0.016125619411468506, - 0.0440177321434021, - 0.07608232647180557, - 0.11144465208053589, - 0.14914019405841827, - 0.18814069032669067, - 0.22738230228424072, - 0.16657866537570953, - 0.1406068056821823, - 0.1161726638674736, - 0.09394276142120361, - 0.0745234414935112, - 0.05844445526599884, - 0.04614435136318207, - 0.03795865178108215, - 0.03411068022251129, - 0.034705355763435364, - 0.03972648084163666, - 0.049037083983421326, - 0.06238320469856262, - 0.07940077781677246, - 0.0996256172657013, - 0.12250605970621109, - 0.14741796255111694, - 0.17368179559707642, - 0.2005811631679535, - 0.22738230228424072, - 0.16657865047454834, - 0.15590666234493256, - 0.1463550627231598, - 0.13818438351154327, - 0.1316175013780594, - 0.12683355808258057, - 0.12396304309368134, - 0.12308423966169357, - 0.12422116100788116, - 0.12734274566173553, - 0.13236387073993683, - 0.1391475796699524, - 0.14750878512859344, - 0.15721948444843292, - 0.1680147349834442, - 0.17960011959075928, - 0.1916595846414566, - 0.2038642019033432, - 0.21588101983070374, - 0.22738230228424072, - 0.16657865047454834, - 0.17240791022777557, - 0.17890745401382446, - 0.18589997291564941, - 0.19319474697113037, - 0.2005927711725235, - 0.2078922688961029, - 0.2148941308259964, - 0.22140733897686005, - 0.227254256606102, - 0.23227538168430328, - 0.23633375763893127, - 0.23931866884231567, - 0.2411487102508545, - 0.24177396297454834, - 0.24117735028266907, - 0.23937517404556274, - 0.23641657829284668, - 0.23238226771354675, - 0.22738230228424072 - ], - "y": [ - -1.6315299272537231, - -1.6042251586914062, - -1.5729992389678955, - -1.5387040376663208, - -1.5022748708724976, - -1.464705467224121, - -1.427020788192749, - -1.3902486562728882, - -1.3553919792175293, - -1.3234018087387085, - -1.295150637626648, - -1.271409034729004, - -1.2528247833251953, - -1.239904522895813, - -1.2330009937286377, - -1.232302188873291, - -1.2378275394439697, - -1.249426007270813, - -1.2667814493179321, - -1.289420247077942, - -1.6315299272537231, - -1.6088920831680298, - -1.5822057723999023, - -1.5521990060806274, - -1.5196901559829712, - -1.4855661392211914, - -1.4507577419281006, - -1.4162143468856812, - -1.382878303527832, - -1.3516589403152466, - -1.3234076499938965, - -1.2988953590393066, - -1.2787904739379883, - -1.2636414766311646, - -1.253861665725708, - -1.2497175931930542, - -1.2513225078582764, - -1.2586325407028198, - -1.2714483737945557, - -1.289420247077942, - -1.6315299272537231, - -1.615759253501892, - -1.5957529544830322, - -1.572056531906128, - -1.545316457748413, - -1.516262173652649, - -1.485686182975769, - -1.4544224739074707, - -1.4233238697052002, - -1.3932386636734009, - -1.3649873733520508, - -1.3393409252166748, - -1.3169986009597778, - -1.298569917678833, - -1.284557580947876, - -1.275343894958496, - -1.2711801528930664, - -1.2721797227859497, - -1.278315544128418, - -1.289420247077942, - -1.6315299272537231, - -1.6240826845169067, - -1.6121727228164673, - -1.5961248874664307, - -1.5763767957687378, - -1.5534672737121582, - -1.5280210971832275, - -1.500732421875, - -1.4723457098007202, - -1.4436352252960205, - -1.41538405418396, - -1.3883627653121948, - -1.3633085489273071, - -1.3409048318862915, - -1.3217626810073853, - -1.3064042329788208, - -1.2952483892440796, - -1.2885994911193848, - -1.2866389751434326, - -1.289420247077942, - -1.6315299272537231, - -1.632960319519043, - -1.629685878753662, - -1.6217957735061646, - -1.6095051765441895, - -1.5931495428085327, - -1.5731748342514038, - -1.5501259565353394, - -1.5246316194534302, - -1.4973872900009155, - -1.469136118888855, - -1.4406486749649048, - -1.4127020835876465, - -1.3860585689544678, - -1.3614449501037598, - -1.3395326137542725, - -1.3209192752838135, - -1.3061126470565796, - -1.2955166101455688, - -1.289420247077942, - -1.6315299272537231, - -1.641430139541626, - -1.6463944911956787, - -1.6462873220443726, - -1.6411117315292358, - -1.6310088634490967, - -1.616254210472107, - -1.5972503423690796, - -1.574515700340271, - -1.5486701726913452, - -1.5204190015792847, - -1.4905327558517456, - -1.4598264694213867, - -1.429137945175171, - -1.3993042707443237, - -1.3711391687393188, - -1.3454108238220215, - -1.3228212594985962, - -1.3039864301681519, - -1.289420247077942, - -1.6315299272537231, - -1.6485743522644043, - -1.6604878902435303, - -1.6669455766677856, - -1.667771339416504, - -1.66294264793396, - -1.6525911092758179, - -1.6369991302490234, - -1.6165920495986938, - -1.5919264554977417, - -1.5636752843856812, - -1.5326091051101685, - -1.4995752573013306, - -1.4654748439788818, - -1.431238055229187, - -1.397798776626587, - -1.3660691976547241, - -1.3369146585464478, - -1.3111306428909302, - -1.289420247077942, - -1.6315299272537231, - -1.653618574142456, - -1.6704388856887817, - -1.6815319061279297, - -1.68659508228302, - -1.6854902505874634, - -1.6782475709915161, - -1.6650646924972534, - -1.6463011503219604, - -1.6224687099456787, - -1.5942175388336182, - -1.562318205833435, - -1.5276408195495605, - -1.4911314249038696, - -1.4537856578826904, - -1.416622519493103, - -1.3806554079055786, - -1.3468656539916992, - -1.316174864768982, - -1.289420247077942, - -1.6315299272537231, - -1.65601646900177, - -1.6751692295074463, - -1.6884655952453613, - -1.6955430507659912, - -1.6962084770202637, - -1.6904436349868774, - -1.6784058809280396, - -1.6604235172271729, - -1.6369870901107788, - -1.6087359189987183, - -1.5764405727386475, - -1.5409820079803467, - -1.5033273696899414, - -1.4645038843154907, - -1.4255704879760742, - -1.3875890970230103, - -1.3515959978103638, - -1.318572759628296, - -1.289420247077942, - -1.6315299272537231, - -1.655508041381836, - -1.6741660833358765, - -1.686995267868042, - -1.6936455965042114, - -1.6939356327056885, - -1.6878573894500732, - -1.6755768060684204, - -1.6574288606643677, - -1.6339085102081299, - -1.6056573390960693, - -1.5734459161758423, - -1.5381529331207275, - -1.5007411241531372, - -1.4622310400009155, - -1.4236730337142944, - -1.3861188888549805, - -1.350592851638794, - -1.3180643320083618, - -1.289420247077942, - -1.6315299272537231, - -1.6521483659744263, - -1.6675384044647217, - -1.677280306816101, - -1.6811083555221558, - -1.6789181232452393, - -1.670769214630127, - -1.6568841934204102, - -1.6376415491104126, - -1.613566279411316, - -1.5853151082992554, - -1.5536586046218872, - -1.5194603204727173, - -1.4836530685424805, - -1.4472135305404663, - -1.4111357927322388, - -1.37640380859375, - -1.3439651727676392, - -1.3147046566009521, - -1.289420247077942, - -1.6315299272537231, - -1.646301507949829, - -1.6560043096542358, - -1.6603734493255615, - -1.6592899560928345, - -1.6527832746505737, - -1.64103102684021, - -1.6243536472320557, - -1.6032060384750366, - -1.578165054321289, - -1.5499138832092285, - -1.5192230939865112, - -1.4869297742843628, - -1.453914761543274, - -1.4210788011550903, - -1.3893173933029175, - -1.3594969511032104, - -1.3324310779571533, - -1.308857798576355, - -1.289420247077942, - -1.6315299272537231, - -1.6386011838912964, - -1.6408135890960693, - -1.6381068229675293, - -1.6305547952651978, - -1.618363380432129, - -1.6018651723861694, - -1.5815101861953735, - -1.5578538179397583, - -1.531541109085083, - -1.5032899379730225, - -1.473870873451233, - -1.4440863132476807, - -1.4147489070892334, - -1.386658787727356, - -1.3605822324752808, - -1.3372303247451782, - -1.3172403573989868, - -1.3011574745178223, - -1.289420247077942, - -1.6315299272537231, - -1.6298816204071045, - -1.6236125230789185, - -1.6128933429718018, - -1.598016619682312, - -1.57938814163208, - -1.5575159788131714, - -1.5329967737197876, - -1.5064994096755981, - -1.4787466526031494, - -1.4504954814910889, - -1.4225164651870728, - -1.3955729007720947, - -1.3703997135162354, - -1.3476835489273071, - -1.328044056892395, - -1.3120168447494507, - -1.300039291381836, - -1.29243803024292, - -1.289420247077942, - -1.6315299272537231, - -1.6210880279541016, - -1.6062650680541992, - -1.5874652862548828, - -1.5652016401290894, - -1.540081262588501, - -1.5127893686294556, - -1.4840705394744873, - -1.4547080993652344, - -1.4255030155181885, - -1.397251844406128, - -1.370725154876709, - -1.3466466665267944, - -1.3256731033325195, - -1.308376669883728, - -1.2952289581298828, - -1.2865889072418213, - -1.2826918363571167, - -1.2836443185806274, - -1.289420247077942, - -1.6315299272537231, - -1.6131731271743774, - -1.5906511545181274, - -1.5645781755447388, - -1.53566575050354, - -1.5047022104263306, - -1.4725322723388672, - -1.4400334358215332, - -1.4080921411514282, - -1.3775798082351685, - -1.349328637123108, - -1.3241091966629028, - -1.3026095628738403, - -1.2854160070419312, - -1.2729976177215576, - -1.2656930685043335, - -1.2637017965316772, - -1.267077922821045, - -1.2757294178009033, - -1.289420247077942, - -1.6315299272537231, - -1.60699462890625, - -1.5784626007080078, - -1.5467122793197632, - -1.512609601020813, - -1.477084755897522, - -1.441106915473938, - -1.405657410621643, - -1.3717031478881836, - -1.3401703834533691, - -1.311919093132019, - -1.2877202033996582, - -1.2682335376739502, - -1.253990650177002, - -1.245380163192749, - -1.2426369190216064, - -1.245835781097412, - -1.2548893690109253, - -1.2695509195327759, - -1.289420247077942, - -1.6315299272537231, - -1.603222131729126, - -1.571020483970642, - -1.5358034372329712, - -1.498531699180603, - -1.4602218866348267, - -1.4219189882278442, - -1.3846677541732788, - -1.3494843244552612, - -1.3173284530639648, - -1.2890772819519043, - -1.2655013799667358, - -1.247243881225586, - -1.2348027229309082, - -1.2285172939300537, - -1.228559136390686, - -1.2349270582199097, - -1.2474472522735596, - -1.2657783031463623, - -1.289420247077942, - -1.6315299272537231, - -1.6022642850875854, - -1.5691311359405518, - -1.5330339670181274, - -1.494957685470581, - -1.455940842628479, - -1.4170476198196411, - -1.3793389797210693, - -1.3438435792922974, - -1.311529517173767, - -1.2832783460617065, - -1.2598605155944824, - -1.2419151067733765, - -1.229931354522705, - -1.224236249923706, - -1.224985122680664, - -1.232157588005066, - -1.2455579042434692, - -1.2648205757141113, - -1.289420247077942, - -1.6315299272537231, - -1.6042251586914062, - -1.5729992389678955, - -1.5387040376663208, - -1.5022748708724976, - -1.4647055864334106, - -1.427020788192749, - -1.3902486562728882, - -1.3553919792175293, - -1.3234018087387085, - -1.295150637626648, - -1.271409034729004, - -1.2528247833251953, - -1.239904522895813, - -1.2330009937286377, - -1.2323023080825806, - -1.2378275394439697, - -1.249426007270813, - -1.2667814493179321, - -1.289420247077942 - ], - "z": [ - 0.3455328941345215, - 0.33171576261520386, - 0.32526522874832153, - 0.326357364654541, - 0.33496227860450745, - 0.3508453071117401, - 0.3735731840133667, - 0.40252596139907837, - 0.4369138479232788, - 0.4757988750934601, - 0.5181203484535217, - 0.5627238750457764, - 0.6083927154541016, - 0.6538811922073364, - 0.6979484558105469, - 0.7393925786018372, - 0.7770829796791077, - 0.8099915981292725, - 0.8372206687927246, - 0.8580275774002075, - 0.3455328941345215, - 0.3329429626464844, - 0.3276861608028412, - 0.32990598678588867, - 0.33954179286956787, - 0.3563307523727417, - 0.3798149824142456, - 0.4093538522720337, - 0.44414156675338745, - 0.48322927951812744, - 0.5255507826805115, - 0.569951593875885, - 0.6152206063270569, - 0.6601229906082153, - 0.7034339308738708, - 0.7439720630645752, - 0.7806315422058105, - 0.8124125003814697, - 0.8384478688240051, - 0.8580275774002075, - 0.3455328941345215, - 0.33591318130493164, - 0.33354559540748596, - 0.33849480748176575, - 0.3506257236003876, - 0.36960747838020325, - 0.39492231607437134, - 0.42587965726852417, - 0.46163517236709595, - 0.5012134313583374, - 0.5435349345207214, - 0.5874451398849487, - 0.6317464113235474, - 0.6752303242683411, - 0.7167106866836548, - 0.7550560235977173, - 0.78922039270401, - 0.8182719349861145, - 0.8414180874824524, - 0.8580275774002075, - 0.3455328941345215, - 0.34030458331108093, - 0.3422086238861084, - 0.3511931598186493, - 0.36701303720474243, - 0.3892366886138916, - 0.41725802421569824, - 0.45031264424324036, - 0.4874989092350006, - 0.5278024673461914, - 0.5701239109039307, - 0.6133089065551758, - 0.6561794281005859, - 0.697566032409668, - 0.7363398671150208, - 0.7714433073997498, - 0.8019187450408936, - 0.8269349932670593, - 0.8458095192909241, - 0.8580275774002075, - 0.3455328941345215, - 0.34564128518104553, - 0.3527364730834961, - 0.36662495136260986, - 0.38692784309387207, - 0.4130913019180298, - 0.44440174102783203, - 0.48000505566596985, - 0.5189300775527954, - 0.5601150393486023, - 0.6024364829063416, - 0.644740104675293, - 0.6858718395233154, - 0.7247097492218018, - 0.7601944804191589, - 0.7913581132888794, - 0.8173505663871765, - 0.8374627828598022, - 0.8511462211608887, - 0.8580275774002075, - 0.3455328941345215, - 0.3513449728488922, - 0.3639882206916809, - 0.3831179141998291, - 0.4082120656967163, - 0.4385862648487091, - 0.4734119772911072, - 0.5117392539978027, - 0.552522599697113, - 0.5946495532989502, - 0.6369710564613342, - 0.6783326268196106, - 0.7176060080528259, - 0.7537200450897217, - 0.7856894731521606, - 0.8126423358917236, - 0.833843469619751, - 0.8487145900726318, - 0.8568499088287354, - 0.8580275774002075, - 0.3455328941345215, - 0.35679754614830017, - 0.3747446537017822, - 0.39888477325439453, - 0.4285593032836914, - 0.46295881271362305, - 0.50114506483078, - 0.5420763492584229, - 0.5846362113952637, - 0.6276637315750122, - 0.6699851751327515, - 0.7104462385177612, - 0.7479431629180908, - 0.7814530730247498, - 0.810062050819397, - 0.8329895734786987, - 0.8496103286743164, - 0.8594709634780884, - 0.8623024225234985, - 0.8580275774002075, - 0.3455328941345215, - 0.36140814423561096, - 0.38384008407592773, - 0.4122169613838196, - 0.44576454162597656, - 0.48356783390045166, - 0.5245956778526306, - 0.5677288770675659, - 0.6117909550666809, - 0.6555799245834351, - 0.6979014277458191, - 0.7376009225845337, - 0.7735956311225891, - 0.8049036860466003, - 0.8306710124015808, - 0.8501948118209839, - 0.8629425168037415, - 0.8685664534568787, - 0.8669130802154541, - 0.8580275774002075, - 0.3455328941345215, - 0.3646771311759949, - 0.39028891921043396, - 0.4216696619987488, - 0.45796334743499756, - 0.49817997217178345, - 0.5412225723266602, - 0.5859169960021973, - 0.6310440897941589, - 0.6753730177879333, - 0.7176944613456726, - 0.7568541169166565, - 0.7917837500572205, - 0.8215305805206299, - 0.8452831506729126, - 0.8623936176300049, - 0.8723952770233154, - 0.8750152587890625, - 0.8701820373535156, - 0.8580275774002075, - 0.3455328941345215, - 0.36625027656555176, - 0.39339229464530945, - 0.4262186288833618, - 0.4638338088989258, - 0.5052117705345154, - 0.5492238998413086, - 0.5946696400642395, - 0.6403093338012695, - 0.6848980188369751, - 0.7272195219993591, - 0.7661193609237671, - 0.8005363941192627, - 0.8295319080352783, - 0.8523149490356445, - 0.8682640790939331, - 0.8769442439079285, - 0.878118634223938, - 0.8717551827430725, - 0.8580275774002075, - 0.3455328941345215, - 0.365957111120224, - 0.39281392097473145, - 0.42537087202072144, - 0.4627397656440735, - 0.5039013028144836, - 0.5477327108383179, - 0.5930384397506714, - 0.6385825872421265, - 0.6831228733062744, - 0.7254443764686584, - 0.764392614364624, - 0.7989051938056946, - 0.8280407190322876, - 0.8510044813156128, - 0.8671700358390808, - 0.8760964870452881, - 0.8775402307510376, - 0.8714619874954224, - 0.8580275774002075, - 0.3455328941345215, - 0.3638293743133545, - 0.38861650228500366, - 0.4192182421684265, - 0.45479974150657654, - 0.49439048767089844, - 0.5369105935096741, - 0.581200122833252, - 0.6260510683059692, - 0.6702399253845215, - 0.7125613689422607, - 0.751861035823822, - 0.7870668768882751, - 0.8172186017036438, - 0.8414936661720276, - 0.8592300415039062, - 0.8699438571929932, - 0.8733428716659546, - 0.8693342804908752, - 0.8580275774002075, - 0.3455328941345215, - 0.36009764671325684, - 0.3812548518180847, - 0.40842747688293457, - 0.44087421894073486, - 0.4777100086212158, - 0.5179301500320435, - 0.5604375600814819, - 0.604072630405426, - 0.6476451754570007, - 0.68996661901474, - 0.7298825979232788, - 0.7663043141365051, - 0.798238217830658, - 0.8248132467269897, - 0.8453044891357422, - 0.8591530323028564, - 0.8659812211990356, - 0.8656025528907776, - 0.8580275774002075, - 0.3455328941345215, - 0.35516634583473206, - 0.37152671813964844, - 0.3941679000854492, - 0.42247214913368225, - 0.4556674361228943, - 0.49284836649894714, - 0.5330005884170532, - 0.5750290155410767, - 0.6177871227264404, - 0.6601085662841797, - 0.7008390426635742, - 0.7388674020767212, - 0.7731564044952393, - 0.8027706742286682, - 0.826902449131012, - 0.8448935151100159, - 0.8562530875205994, - 0.8606712818145752, - 0.8580275774002075, - 0.3455328941345215, - 0.34956982731819153, - 0.36048635840415955, - 0.37798482179641724, - 0.4015877842903137, - 0.4306514859199524, - 0.46438318490982056, - 0.501862645149231, - 0.5420676469802856, - 0.5839014053344727, - 0.6262229084968567, - 0.6678776741027832, - 0.7077293992042542, - 0.7446911931037903, - 0.7777546644210815, - 0.8060181140899658, - 0.8287104368209839, - 0.8452126979827881, - 0.8550747632980347, - 0.8580275774002075, - 0.3455328941345215, - 0.34391456842422485, - 0.3493301272392273, - 0.3616319000720978, - 0.38048428297042847, - 0.4053729772567749, - 0.4356192350387573, - 0.4703978896141052, - 0.5087603330612183, - 0.5496600866317749, - 0.5919815897941589, - 0.634570300579071, - 0.6762646436691284, - 0.715927243232727, - 0.7524762153625488, - 0.7849145531654358, - 0.812357485294342, - 0.8340564370155334, - 0.8494194746017456, - 0.8580275774002075, - 0.3455328941345215, - 0.3388133943080902, - 0.33926692605018616, - 0.3468811810016632, - 0.36144840717315674, - 0.3825712203979492, - 0.4096735119819641, - 0.44201594591140747, - 0.4787163734436035, - 0.51877361536026, - 0.561095118522644, - 0.6045263409614563, - 0.6478826999664307, - 0.6899815201759338, - 0.7296743988990784, - 0.7658786773681641, - 0.7976067662239075, - 0.8239932656288147, - 0.8443183302879333, - 0.8580275774002075, - 0.3455328941345215, - 0.33481913805007935, - 0.33138734102249146, - 0.3353312015533447, - 0.3465430736541748, - 0.36471712589263916, - 0.38935768604278564, - 0.4197925329208374, - 0.45519155263900757, - 0.4945891499519348, - 0.5369106531143188, - 0.5810015797615051, - 0.6256592869758606, - 0.6696656942367554, - 0.7118203043937683, - 0.7509733438491821, - 0.7860567569732666, - 0.8161136507987976, - 0.8403240442276001, - 0.8580275774002075, - 0.3455328941345215, - 0.33236458897590637, - 0.32654517889022827, - 0.328233540058136, - 0.337383508682251, - 0.3537455201148987, - 0.37687328457832336, - 0.4061359167098999, - 0.44073522090911865, - 0.4797273874282837, - 0.5220488905906677, - 0.5665451884269714, - 0.6120026707649231, - 0.6571812629699707, - 0.7008486986160278, - 0.7418137788772583, - 0.7789591550827026, - 0.8112715482711792, - 0.8378695249557495, - 0.8580275774002075, - 0.3455328941345215, - 0.33171576261520386, - 0.32526522874832153, - 0.326357364654541, - 0.33496227860450745, - 0.3508453071117401, - 0.3735731840133667, - 0.40252596139907837, - 0.4369138479232788, - 0.4757988750934601, - 0.5181203484535217, - 0.5627238750457764, - 0.6083927154541016, - 0.6538811922073364, - 0.6979484558105469, - 0.7393925786018372, - 0.7770829796791077, - 0.8099915981292725, - 0.8372206687927246, - 0.8580275774002075 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.14001193642616272, - 0.1454363465309143, - 0.15071280300617218, - 0.15569736063480377, - 0.1602540761232376, - 0.16425861418247223, - 0.1676017940044403, - 0.17019237577915192, - 0.17195971310138702, - 0.17285560071468353, - 0.17285560071468353, - 0.17195971310138702, - 0.17019237577915192, - 0.1676017940044403, - 0.16425862908363342, - 0.1602540761232376, - 0.15569736063480377, - 0.15071280300617218, - 0.1454363465309143, - 0.14001193642616272, - 0.14001193642616272, - 0.1255188286304474, - 0.11142104864120483, - 0.09810315072536469, - 0.08592841774225235, - 0.07522893697023392, - 0.06629657745361328, - 0.05937497317790985, - 0.05465293675661087, - 0.05225928872823715, - 0.05225928872823715, - 0.05465293675661087, - 0.05937497317790985, - 0.06629657000303268, - 0.07522892951965332, - 0.08592841774225235, - 0.09810315072536469, - 0.11142104864120483, - 0.1255188286304474, - 0.14001193642616272, - 0.1400119513273239, - 0.10717185586690903, - 0.07522755116224289, - 0.045050397515296936, - 0.017463557422161102, - -0.006780475378036499, - -0.027020424604415894, - -0.04270416498184204, - -0.05340386927127838, - -0.058827683329582214, - -0.058827683329582214, - -0.05340386927127838, - -0.04270416498184204, - -0.02702045440673828, - -0.006780505180358887, - 0.01746354252099991, - 0.045050397515296936, - 0.07522755116224289, - 0.10717185586690903, - 0.1400119513273239, - 0.1400119513273239, - 0.09238360822200775, - 0.04605443775653839, - 0.0022882074117660522, - -0.03772132098674774, - -0.07288269698619843, - -0.10223688185214996, - -0.12498316168785095, - -0.14050108194351196, - -0.1483672857284546, - -0.1483672857284546, - -0.14050108194351196, - -0.12498316168785095, - -0.10223691165447235, - -0.072882741689682, - -0.03772132098674774, - 0.0022882074117660522, - 0.04605443775653839, - 0.09238360822200775, - 0.1400119513273239, - 0.1400119513273239, - 0.0827566385269165, - 0.027063101530075073, - -0.025549471378326416, - -0.07364600896835327, - -0.11591446399688721, - -0.15120193362236023, - -0.17854583263397217, - -0.19720032811164856, - -0.2066565454006195, - -0.2066565454006195, - -0.19720032811164856, - -0.17854583263397217, - -0.15120196342468262, - -0.11591446399688721, - -0.07364602386951447, - -0.025549471378326416, - 0.027063101530075073, - 0.0827566385269165, - 0.1400119513273239, - 0.1400119513273239, - 0.07933416962623596, - 0.020311519503593445, - -0.035446032881736755, - -0.0864175409078598, - -0.13121262192726135, - -0.1686094105243683, - -0.19758784770965576, - -0.21735739707946777, - -0.22737887501716614, - -0.22737887501716614, - -0.21735739707946777, - -0.19758784770965576, - -0.16860944032669067, - -0.13121265172958374, - -0.086417555809021, - -0.035446032881736755, - 0.020311519503593445, - 0.07933416962623596, - 0.1400119513273239, - 0.1400119513273239, - 0.0824870765209198, - 0.026531308889389038, - -0.026328980922698975, - -0.07465194165706635, - -0.11711940169334412, - -0.15257298946380615, - -0.1800456941127777, - -0.19878795742988586, - -0.20828872919082642, - -0.20828872919082642, - -0.19878795742988586, - -0.1800456941127777, - -0.15257301926612854, - -0.11711946129798889, - -0.07465195655822754, - -0.026328980922698975, - 0.026531308889389038, - 0.0824870765209198, - 0.1400119513273239, - 0.1400119513273239, - 0.09187369048595428, - 0.04504850506782532, - 0.0008136928081512451, - -0.0396241694688797, - -0.07516200840473175, - -0.10483047366142273, - -0.12782031297683716, - -0.1435043215751648, - -0.15145477652549744, - -0.15145477652549744, - -0.1435043215751648, - -0.12782031297683716, - -0.10483050346374512, - -0.07516205310821533, - -0.0396241694688797, - 0.0008136928081512451, - 0.04504850506782532, - 0.09187369048595428, - 0.1400119513273239, - 0.1400119513273239, - 0.10647682845592499, - 0.07385646551847458, - 0.04304066300392151, - 0.014869943261146545, - -0.00988718867301941, - -0.03055545687675476, - -0.04657113552093506, - -0.05749727785587311, - -0.06303589046001434, - -0.06303589046001434, - -0.05749727785587311, - -0.04657113552093506, - -0.030555471777915955, - -0.009887203574180603, - 0.014869943261146545, - 0.04304066300392151, - 0.07385646551847458, - 0.10647682845592499, - 0.1400119513273239, - 0.14001193642616272, - 0.12471401691436768, - 0.10983338952064514, - 0.09577594697475433, - 0.08292515575885773, - 0.0716315433382988, - 0.06220316141843796, - 0.054897189140319824, - 0.0499129444360733, - 0.04738636314868927, - 0.04738636314868927, - 0.0499129444360733, - 0.054897189140319824, - 0.06220315396785736, - 0.0716315284371376, - 0.08292514830827713, - 0.09577594697475433, - 0.10983338952064514, - 0.12471401691436768, - 0.14001193642616272, - 0.14001193642616272, - 0.1446089744567871, - 0.14908063411712646, - 0.15330490469932556, - 0.15716658532619476, - 0.16056033968925476, - 0.16339357197284698, - 0.16558903455734253, - 0.16708679497241974, - 0.16784603893756866, - 0.16784603893756866, - 0.16708679497241974, - 0.16558903455734253, - 0.16339358687400818, - 0.16056033968925476, - 0.15716660022735596, - 0.15330490469932556, - 0.14908063411712646, - 0.1446089744567871, - 0.14001193642616272, - 0.14001193642616272, - 0.16400577127933502, - 0.18734513223171234, - 0.20939335227012634, - 0.22954905033111572, - 0.2472623884677887, - 0.26205021142959595, - 0.2735092043876648, - 0.28132665157318115, - 0.285289466381073, - 0.285289466381073, - 0.28132665157318115, - 0.2735092043876648, - 0.26205024123191833, - 0.24726241827011108, - 0.22954905033111572, - 0.20939335227012634, - 0.18734513223171234, - 0.16400577127933502, - 0.14001193642616272, - 0.14001192152500153, - 0.18080246448516846, - 0.22048035264015198, - 0.25796324014663696, - 0.2922287583351135, - 0.322342187166214, - 0.3474821448326111, - 0.36696285009384155, - 0.3802528977394104, - 0.3869898319244385, - 0.3869898319244385, - 0.3802528977394104, - 0.36696285009384155, - 0.3474821448326111, - 0.3223422169685364, - 0.2922288179397583, - 0.25796324014663696, - 0.22048035264015198, - 0.18080246448516846, - 0.14001192152500153, - 0.14001192152500153, - 0.19317887723445892, - 0.2448955774307251, - 0.2937513291835785, - 0.3384134769439697, - 0.3776637315750122, - 0.41043147444725037, - 0.43582287430763245, - 0.4531453251838684, - 0.46192631125450134, - 0.46192631125450134, - 0.4531453251838684, - 0.43582287430763245, - 0.41043147444725037, - 0.3776637613773346, - 0.3384134769439697, - 0.2937513291835785, - 0.2448955774307251, - 0.19317887723445892, - 0.14001192152500153, - 0.14001192152500153, - 0.19979381561279297, - 0.2579450011253357, - 0.3128793239593506, - 0.36309826374053955, - 0.4072319567203522, - 0.4440765678882599, - 0.4726271629333496, - 0.49210482835769653, - 0.5019782781600952, - 0.5019782781600952, - 0.49210482835769653, - 0.4726271629333496, - 0.4440765976905823, - 0.40723198652267456, - 0.36309826374053955, - 0.3128793239593506, - 0.2579450011253357, - 0.19979381561279297, - 0.14001192152500153, - 0.14001192152500153, - 0.19993045926094055, - 0.2582145929336548, - 0.31327444314956665, - 0.363608181476593, - 0.407842755317688, - 0.4447716474533081, - 0.4733874499797821, - 0.49290966987609863, - 0.5028057098388672, - 0.5028057098388672, - 0.49290966987609863, - 0.4733874499797821, - 0.4447716474533081, - 0.4078427851200104, - 0.363608181476593, - 0.31327444314956665, - 0.2582145929336548, - 0.19993045926094055, - 0.14001192152500153, - 0.14001192152500153, - 0.19357401132583618, - 0.24567507207393646, - 0.29489392042160034, - 0.33988797664642334, - 0.3794299364089966, - 0.4124411940574646, - 0.43802133202552795, - 0.45547252893447876, - 0.46431872248649597, - 0.46431872248649597, - 0.45547252893447876, - 0.43802133202552795, - 0.412441223859787, - 0.37942996621131897, - 0.33988797664642334, - 0.29489392042160034, - 0.24567507207393646, - 0.19357401132583618, - 0.14001192152500153, - 0.14001192152500153, - 0.18141326308250427, - 0.2216852903366089, - 0.2597294747829437, - 0.29450806975364685, - 0.32507240772247314, - 0.3505887985229492, - 0.37036120891571045, - 0.3838502764701843, - 0.39068806171417236, - 0.39068806171417236, - 0.3838502764701843, - 0.37036120891571045, - 0.3505887985229492, - 0.32507243752479553, - 0.29450809955596924, - 0.2597294747829437, - 0.2216852903366089, - 0.18141326308250427, - 0.14001192152500153, - 0.14001193642616272, - 0.16476604342460632, - 0.18884491920471191, - 0.21159175038337708, - 0.23238608241081238, - 0.2506606876850128, - 0.2659170925617218, - 0.27773910760879517, - 0.2858043313026428, - 0.28989267349243164, - 0.28989267349243164, - 0.2858043313026428, - 0.27773910760879517, - 0.2659171223640442, - 0.2506607174873352, - 0.23238608241081238, - 0.21159175038337708, - 0.18884491920471191, - 0.16476604342460632, - 0.14001193642616272, - 0.14001193642616272, - 0.1454363465309143, - 0.150712788105011, - 0.15569733083248138, - 0.16025403141975403, - 0.16425856947898865, - 0.16760173439979553, - 0.17019231617450714, - 0.17195965349674225, - 0.17285554111003876, - 0.17285554111003876, - 0.17195965349674225, - 0.17019231617450714, - 0.16760173439979553, - 0.16425856947898865, - 0.16025403141975403, - 0.15569733083248138, - 0.150712788105011, - 0.1454363465309143, - 0.14001193642616272 - ], - "y": [ - -1.935704231262207, - -1.9077891111373901, - -1.8748390674591064, - -1.8377530574798584, - -1.7975425720214844, - -1.7553044557571411, - -1.712190866470337, - -1.6693779230117798, - -1.6280333995819092, - -1.589284896850586, - -1.554189682006836, - -1.5237047672271729, - -1.498661994934082, - -1.4797441959381104, - -1.4674675464630127, - -1.4621667861938477, - -1.4639867544174194, - -1.4728775024414062, - -1.488596796989441, - -1.5107157230377197, - -1.935704231262207, - -1.9062707424163818, - -1.871843934059143, - -1.8333626985549927, - -1.7918767929077148, - -1.7485177516937256, - -1.7044684886932373, - -1.6609303951263428, - -1.6190911531448364, - -1.580091953277588, - -1.544996738433838, - -1.5147626399993896, - -1.490214467048645, - -1.4720218181610107, - -1.4606808423995972, - -1.4565010070800781, - -1.4595963954925537, - -1.4698823690414429, - -1.4870785474777222, - -1.5107157230377197, - -1.935704231262207, - -1.907628059387207, - -1.8745213747024536, - -1.837287187576294, - -1.7969413995742798, - -1.7545844316482544, - -1.711371660232544, - -1.668481707572937, - -1.6270846128463745, - -1.588309645652771, - -1.553214430809021, - -1.5227560997009277, - -1.4977657794952393, - -1.4789248704910278, - -1.466747522354126, - -1.4615657329559326, - -1.4635210037231445, - -1.4725598096847534, - -1.4884357452392578, - -1.5107157230377197, - -1.935704231262207, - -1.911713719367981, - -1.8825812339782715, - -1.8491014242172241, - -1.8121877908706665, - -1.7728469371795654, - -1.7321522235870361, - -1.6912134885787964, - -1.6511476039886475, - -1.6130473613739014, - -1.5779521465301514, - -1.5468190908432007, - -1.5204975605010986, - -1.4997055530548096, - -1.485010027885437, - -1.4768120050430298, - -1.4753351211547852, - -1.4806196689605713, - -1.4925214052200317, - -1.5107157230377197, - -1.935704231262207, - -1.918084979057312, - -1.895150065422058, - -1.8675251007080078, - -1.835963487625122, - -1.8013263940811157, - -1.7645584344863892, - -1.726662516593933, - -1.6886725425720215, - -1.6516245603561401, - -1.6165292263031006, - -1.5843440294265747, - -1.5559465885162354, - -1.532111644744873, - -1.5134894847869873, - -1.500587821006775, - -1.4937587976455688, - -1.4931886196136475, - -1.4988927841186523, - -1.5107157230377197, - -1.935704231262207, - -1.9260516166687012, - -1.9108660221099854, - -1.890561580657959, - -1.8656922578811646, - -1.8369364738464355, - -1.805078387260437, - -1.7709872722625732, - -1.7355928421020508, - -1.699860692024231, - -1.6647653579711914, - -1.631264328956604, - -1.6002713441848755, - -1.5726317167282104, - -1.5490995645523071, - -1.5303165912628174, - -1.51679527759552, - -1.5089044570922852, - -1.506859302520752, - -1.5107157230377197, - -1.935704231262207, - -1.9347501993179321, - -1.9280258417129517, - -1.9157146215438843, - -1.898152470588684, - -1.8758182525634766, - -1.8493213653564453, - -1.8193844556808472, - -1.786824107170105, - -1.7525285482406616, - -1.7174333333969116, - -1.6824955940246582, - -1.6486685276031494, - -1.6168746948242188, - -1.5879813432693481, - -1.562776803970337, - -1.5419483184814453, - -1.5260642766952515, - -1.515557885169983, - -1.5107157230377197, - -1.935704231262207, - -1.9432380199432373, - -1.944770097732544, - -1.940258502960205, - -1.9298264980316162, - -1.9137585163116455, - -1.8924927711486816, - -1.8666094541549683, - -1.8368146419525146, - -1.8039209842681885, - -1.768825650215149, - -1.7324861288070679, - -1.6958935260772705, - -1.660046100616455, - -1.6259214878082275, - -1.594450831413269, - -1.5664923191070557, - -1.5428085327148438, - -1.5240458250045776, - -1.5107157230377197, - -1.935704231262207, - -1.950595498085022, - -1.9592843055725098, - -1.961533546447754, - -1.9572819471359253, - -1.9466454982757568, - -1.9299143552780151, - -1.9075448513031006, - -1.880147099494934, - -1.848468542098999, - -1.813373327255249, - -1.7758185863494873, - -1.7368288040161133, - -1.6974676847457886, - -1.6588085889816284, - -1.6219062805175781, - -1.587767243385315, - -1.5573227405548096, - -1.5314031839370728, - -1.5107157230377197, - -1.935704231262207, - -1.9560251235961914, - -1.9699954986572266, - -1.977234125137329, - -1.9775437116622925, - -1.970915675163269, - -1.9575309753417969, - -1.937754511833191, - -1.912125825881958, - -1.8813440799713135, - -1.846248745918274, - -1.8077973127365112, - -1.7670385837554932, - -1.7250841856002808, - -1.6830787658691406, - -1.6421680450439453, - -1.6034679412841797, - -1.5680339336395264, - -1.5368329286575317, - -1.5107157230377197, - -1.935704231262207, - -1.958938717842102, - -1.975743055343628, - -1.9856590032577515, - -1.9884159564971924, - -1.9839389324188232, - -1.972349762916565, - -1.9539648294448853, - -1.9292854070663452, - -1.8989847898483276, - -1.8638895750045776, - -1.8249568939208984, - -1.783248782157898, - -1.7399030923843384, - -1.6961020231246948, - -1.6530402898788452, - -1.6118927001953125, - -1.5737814903259277, - -1.5397464036941528, - -1.5107157230377197, - -1.935704231262207, - -1.9590203762054443, - -1.9759042263031006, - -1.9858951568603516, - -1.9887207746505737, - -1.9843039512634277, - -1.9727650880813599, - -1.9544191360473633, - -1.929766297340393, - -1.8994791507720947, - -1.8643839359283447, - -1.8254377841949463, - -1.783703088760376, - -1.7403184175491333, - -1.6964670419692993, - -1.6533451080322266, - -1.6121288537979126, - -1.5739426612854004, - -1.5398280620574951, - -1.5107157230377197, - -1.935704231262207, - -1.9562612771987915, - -1.970461368560791, - -1.977916955947876, - -1.9784247875213623, - -1.971971035003662, - -1.9587318897247314, - -1.9390681982040405, - -1.9135164022445679, - -1.8827736377716064, - -1.8476784229278564, - -1.809187889099121, - -1.7683521509170532, - -1.7262850999832153, - -1.6841342449188232, - -1.6430491209030151, - -1.604150652885437, - -1.5684998035430908, - -1.5370689630508423, - -1.5107157230377197, - -1.935704231262207, - -1.9509605169296265, - -1.9600043296813965, - -1.962588906288147, - -1.958643913269043, - -1.9482769966125488, - -1.9317706823349, - -1.9095754623413086, - -1.8822966814041138, - -1.8506784439086914, - -1.8155831098556519, - -1.777968168258667, - -1.7388595342636108, - -1.6993240118026733, - -1.6604400873184204, - -1.6232682466506958, - -1.588822603225708, - -1.5580427646636963, - -1.5317682027816772, - -1.5107157230377197, - -1.935704231262207, - -1.9436924457550049, - -1.9456663131713867, - -1.9415721893310547, - -1.9315217733383179, - -1.9157891273498535, - -1.8948034048080444, - -1.869137167930603, - -1.839490294456482, - -1.8066716194152832, - -1.7715764045715332, - -1.7351617813110352, - -1.6984211206436157, - -1.6623567342758179, - -1.627952218055725, - -1.5961461067199707, - -1.5678060054779053, - -1.5437047481536865, - -1.5245001316070557, - -1.5107157230377197, - -1.935704231262207, - -1.9352445602416992, - -1.9290012121200562, - -1.9171442985534668, - -1.899997353553772, - -1.878028154373169, - -1.8518359661102295, - -1.8221352100372314, - -1.7897359132766724, - -1.7555220127105713, - -1.7204267978668213, - -1.6854074001312256, - -1.6514191627502441, - -1.619389295578003, - -1.59019136428833, - -1.5646216869354248, - -1.5433779954910278, - -1.527039647102356, - -1.51605224609375, - -1.5107157230377197, - -1.935704231262207, - -1.926532506942749, - -1.9118146896362305, - -1.8919521570205688, - -1.867486834526062, - -1.8390860557556152, - -1.8075244426727295, - -1.7736629247665405, - -1.7384251356124878, - -1.7027723789215088, - -1.6676771640777588, - -1.634096622467041, - -1.6029469966888428, - -1.575077772140503, - -1.5512491464614868, - -1.5321111679077148, - -1.5181859731674194, - -1.5098531246185303, - -1.5073401927947998, - -1.5107157230377197, - -1.935704231262207, - -1.918500304222107, - -1.8959693908691406, - -1.8687260150909424, - -1.8375133275985718, - -1.8031827211380005, - -1.7666707038879395, - -1.728973150253296, - -1.6911184787750244, - -1.6541391611099243, - -1.6190438270568848, - -1.5867899656295776, - -1.5582572221755981, - -1.534224033355713, - -1.515345811843872, - -1.5021376609802246, - -1.4949597120285034, - -1.4940078258514404, - -1.4993081092834473, - -1.5107157230377197, - -1.935704231262207, - -1.9120182991027832, - -1.8831822872161865, - -1.849982500076294, - -1.8133248090744019, - -1.774208903312683, - -1.7337019443511963, - -1.692908763885498, - -1.652942180633545, - -1.6148922443389893, - -1.5797970294952393, - -1.5486136674880981, - -1.5221928358078003, - -1.5012552738189697, - -1.4863719940185547, - -1.4779490232467651, - -1.476216197013855, - -1.4812207221984863, - -1.4928261041641235, - -1.5107157230377197, - -1.935704231262207, - -1.9077891111373901, - -1.8748390674591064, - -1.8377530574798584, - -1.7975425720214844, - -1.7553044557571411, - -1.712190866470337, - -1.6693779230117798, - -1.6280333995819092, - -1.589284896850586, - -1.554189682006836, - -1.5237047672271729, - -1.498661994934082, - -1.4797441959381104, - -1.4674675464630127, - -1.4621667861938477, - -1.4639867544174194, - -1.4728775024414062, - -1.488596796989441, - -1.5107157230377197 - ], - "z": [ - 0.47741156816482544, - 0.4642486274242401, - 0.45980557799339294, - 0.46420371532440186, - 0.4773229956626892, - 0.49880555272102356, - 0.5280653834342957, - 0.5643044114112854, - 0.6065341234207153, - 0.6536026000976562, - 0.7042258977890015, - 0.7570231556892395, - 0.8105542659759521, - 0.8633589744567871, - 0.9139968752861023, - 0.9610868096351624, - 1.003344178199768, - 1.0396164655685425, - 1.0689139366149902, - 1.090437889099121, - 0.47741156816482544, - 0.4631960391998291, - 0.45772913098335266, - 0.4611600637435913, - 0.47339510917663574, - 0.4941006004810333, - 0.5227117538452148, - 0.558448076248169, - 0.6003348231315613, - 0.6472294330596924, - 0.6978527307510376, - 0.7508238554000854, - 0.8046979308128357, - 0.8580052852630615, - 0.9092919826507568, - 0.9571589231491089, - 1.0003005266189575, - 1.0375399589538574, - 1.0678614377975464, - 1.090437889099121, - 0.47741156816482544, - 0.4641369581222534, - 0.4595852792263031, - 0.4638808071613312, - 0.47690626978874207, - 0.49830639362335205, - 0.527497410774231, - 0.5636830925941467, - 0.6058764457702637, - 0.6529264450073242, - 0.7035497426986694, - 0.7563654780387878, - 0.8099329471588135, - 0.8627910017967224, - 0.9134977459907532, - 0.9606701135635376, - 1.003021240234375, - 1.0393961668014526, - 1.0688023567199707, - 1.090437889099121, - 0.47741156816482544, - 0.46696940064430237, - 0.4651728868484497, - 0.47207117080688477, - 0.4874759912490845, - 0.5109671354293823, - 0.5419038534164429, - 0.5794422626495361, - 0.6225584149360657, - 0.6700762510299683, - 0.7206995487213135, - 0.7730474472045898, - 0.8256920576095581, - 0.8771973848342896, - 0.9261584877967834, - 0.9712398052215576, - 1.011211633682251, - 1.0449837446212769, - 1.0716347694396973, - 1.090437889099121, - 0.47741156816482544, - 0.4713864326477051, - 0.4738864600658417, - 0.4848436117172241, - 0.5039588212966919, - 0.5307108163833618, - 0.5643698573112488, - 0.6040177345275879, - 0.6485730409622192, - 0.6968203783035278, - 0.747443675994873, - 0.7990620732307434, - 0.8502675890922546, - 0.8996634483337402, - 0.9459022283554077, - 0.9877226948738098, - 1.0239840745925903, - 1.0536973476409912, - 1.0760518312454224, - 1.090437889099121, - 0.47741156816482544, - 0.4769093692302704, - 0.4847817122936249, - 0.5008139610290527, - 0.5245686769485474, - 0.5553979873657227, - 0.5924608707427979, - 0.6347464323043823, - 0.6811012029647827, - 0.7302606701850891, - 0.7808839678764343, - 0.8315902352333069, - 0.8809962868690491, - 0.9277544617652893, - 0.9705893993377686, - 1.0083324909210205, - 1.039954423904419, - 1.0645925998687744, - 1.0815746784210205, - 1.090437889099121, - 0.47741156816482544, - 0.48293977975845337, - 0.49667802453041077, - 0.5182516574859619, - 0.547072172164917, - 0.5823533535003662, - 0.6231328845024109, - 0.6682984232902527, - 0.7166179418563843, - 0.7667734026908875, - 0.8173967003822327, - 0.8671069741249084, - 0.9145482778549194, - 0.9584264755249023, - 0.9975447058677673, - 1.0308359861373901, - 1.0573921203613281, - 1.0764888525009155, - 1.0876051187515259, - 1.090437889099121, - 0.47741156816482544, - 0.48882409930229187, - 0.5082862377166748, - 0.5352670550346375, - 0.5690305829048157, - 0.6086558699607849, - 0.6530620455741882, - 0.7010378241539001, - 0.7512745261192322, - 0.8024018406867981, - 0.8530251383781433, - 0.9017635583877563, - 0.9472876191139221, - 0.9883556365966797, - 1.023847222328186, - 1.0527944564819336, - 1.0744075775146484, - 1.088097095489502, - 1.093489408493042, - 1.090437889099121, - 0.47741156816482544, - 0.49392473697662354, - 0.5183483362197876, - 0.5500162243843079, - 0.5880644917488098, - 0.6314553022384644, - 0.6790050268173218, - 0.7294167876243591, - 0.7813153266906738, - 0.8332850337028503, - 0.8839083313941956, - 0.931804358959198, - 0.9756666421890259, - 1.014298677444458, - 1.0466465950012207, - 1.0718283653259277, - 1.0891566276550293, - 1.0981591939926147, - 1.0985901355743408, - 1.090437889099121, - 0.47741156816482544, - 0.4976889491081238, - 0.5257740020751953, - 0.560900866985321, - 0.6021112203598022, - 0.6482808589935303, - 0.698150634765625, - 0.7503600120544434, - 0.8034849762916565, - 0.8560764193534851, - 0.9066997170448303, - 0.9539740681648254, - 0.9966098666191101, - 1.0334441661834717, - 1.0634722709655762, - 1.0858750343322754, - 1.100041389465332, - 1.1055848598480225, - 1.1023542881011963, - 1.090437889099121, - 0.47741156816482544, - 0.49970877170562744, - 0.529758632183075, - 0.5667415261268616, - 0.609648585319519, - 0.6573094129562378, - 0.7084239721298218, - 0.7615980505943298, - 0.8153811097145081, - 0.8683061003684998, - 0.918929398059845, - 0.9658701419830322, - 1.0078479051589966, - 1.043717622756958, - 1.0725008249282837, - 1.0934123992919922, - 1.105881929397583, - 1.1095694303512573, - 1.1043741703033447, - 1.090437889099121, - 0.47741156816482544, - 0.4997653663158417, - 0.5298702716827393, - 0.5669052004814148, - 0.609859824180603, - 0.6575624346733093, - 0.7087119221687317, - 0.761913001537323, - 0.8157144784927368, - 0.8686488270759583, - 0.9192721247673035, - 0.9662035703659058, - 1.0081628561019897, - 1.0440055131912231, - 1.0727537870407104, - 1.0936236381530762, - 1.1060457229614258, - 1.1096811294555664, - 1.1044307947158813, - 1.090437889099121, - 0.47741156816482544, - 0.497852623462677, - 0.5260969400405884, - 0.5613741874694824, - 0.6027220487594604, - 0.649012565612793, - 0.6989831328392029, - 0.7512707710266113, - 0.8044490814208984, - 0.8570675253868103, - 0.9076908230781555, - 0.9549381136894226, - 0.9975205659866333, - 1.0342767238616943, - 1.0642039775848389, - 1.0864858627319336, - 1.1005146503448486, - 1.1059077978134155, - 1.1025179624557495, - 1.090437889099121, - 0.47741156816482544, - 0.49417775869369507, - 0.5188474655151367, - 0.5507478713989258, - 0.5890086889266968, - 0.6325863003730774, - 0.680292010307312, - 0.7308245301246643, - 0.7828055620193481, - 0.8348170518875122, - 0.8854403495788574, - 0.9332945942878723, - 0.977074384689331, - 1.0155855417251587, - 1.0477776527404785, - 1.07277250289917, - 1.089888334274292, - 1.0986583232879639, - 1.0988430976867676, - 1.090437889099121, - 0.47741156816482544, - 0.48913905024528503, - 0.5089074969291687, - 0.5361777544021606, - 0.5702058672904968, - 0.6100636720657349, - 0.6546639204025269, - 0.7027901411056519, - 0.7531294226646423, - 0.8043087720870972, - 0.8549320697784424, - 0.9036185145378113, - 0.9490399360656738, - 0.9899575710296631, - 1.0252550840377808, - 1.0539697408676147, - 1.0753182172775269, - 1.0887184143066406, - 1.0938043594360352, - 1.090437889099121, - 0.47741156816482544, - 0.48328250646591187, - 0.4973541796207428, - 0.5192427635192871, - 0.5483511686325073, - 0.5838854312896729, - 0.6248762011528015, - 0.6702054142951965, - 0.7186365723609924, - 0.7688486576080322, - 0.8194719552993774, - 0.8691256046295166, - 0.9164552688598633, - 0.960169792175293, - 0.999076783657074, - 1.0321149826049805, - 1.0583832263946533, - 1.0771650075912476, - 1.0879478454589844, - 1.090437889099121, - 0.47741156816482544, - 0.47724276781082153, - 0.4854394197463989, - 0.5017780065536499, - 0.5258128643035889, - 0.556888222694397, - 0.5941566228866577, - 0.6366013884544373, - 0.6830647587776184, - 0.7322793006896973, - 0.7829025983810425, - 0.8335537910461426, - 0.882851243019104, - 0.9294502139091492, - 0.9720796346664429, - 1.009576678276062, - 1.0409185886383057, - 1.065250277519226, - 1.081908106803894, - 1.090437889099121, - 0.47741156816482544, - 0.4716743230819702, - 0.47445443272590637, - 0.4856761395931244, - 0.5050332546234131, - 0.531997799873352, - 0.5658342242240906, - 0.6056196689605713, - 0.6502687335014343, - 0.6985635757446289, - 0.7491869330406189, - 0.8007577657699585, - 0.8518694639205933, - 0.901127815246582, - 0.9471891522407532, - 0.9887970685958862, - 1.024816632270813, - 1.0542652606964111, - 1.0763397216796875, - 1.090437889099121, - 0.47741156816482544, - 0.46718063950538635, - 0.46558961272239685, - 0.47268199920654297, - 0.4882642328739166, - 0.5119113326072693, - 0.5429782271385193, - 0.5806175470352173, - 0.6238024830818176, - 0.6713551878929138, - 0.7219785451889038, - 0.7742915749549866, - 0.8268673419952393, - 0.8782718181610107, - 0.9271026849746704, - 0.9720280766487122, - 1.0118224620819092, - 1.0454005002975464, - 1.0718460083007812, - 1.090437889099121, - 0.47741156816482544, - 0.4642486274242401, - 0.45980557799339294, - 0.46420371532440186, - 0.4773229956626892, - 0.49880552291870117, - 0.5280653834342957, - 0.5643044114112854, - 0.6065341234207153, - 0.6536026000976562, - 0.7042258977890015, - 0.7570231556892395, - 0.8105542659759521, - 0.8633589744567871, - 0.9139968752861023, - 0.9610868096351624, - 1.003344178199768, - 1.0396164655685425, - 1.0689139366149902, - 1.090437889099121 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.3460003137588501, - -0.33471983671188354, - -0.3120465576648712, - -0.27859893441200256, - -0.23528936505317688, - -0.1832992136478424, - -0.12404660880565643, - -0.05914786458015442, - 0.009626820683479309, - 0.08040140569210052, - 0.1512453556060791, - 0.2202262431383133, - 0.2854624390602112, - 0.34517449140548706, - 0.39773350954055786, - 0.44170600175857544, - 0.4758923649787903, - 0.4993601441383362, - 0.5114691853523254, - 0.5118891596794128, - -0.3460003137588501, - -0.3363831341266632, - -0.31532779335975647, - -0.28340861201286316, - -0.24149629473686218, - -0.19073405861854553, - -0.1325065791606903, - -0.06840218603610992, - -0.00016943365335464478, - 0.07033044844865799, - 0.14117440581321716, - 0.21042998135089874, - 0.2762081027030945, - 0.336714506149292, - 0.39029866456985474, - 0.43549907207489014, - 0.4710826873779297, - 0.4960789084434509, - 0.5098059177398682, - 0.5118891596794128, - -0.3460003137588501, - -0.3384546637535095, - -0.31941431760787964, - -0.2893986701965332, - -0.24922648072242737, - -0.19999352097511292, - -0.14304277300834656, - -0.07992769777774811, - -0.012369871139526367, - 0.057787880301475525, - 0.1286318302154541, - 0.19822955131530762, - 0.2646825909614563, - 0.32617831230163574, - 0.38103917241096497, - 0.42776888608932495, - 0.46509262919425964, - 0.49199238419532776, - 0.5077343583106995, - 0.5118891596794128, - -0.3460003137588501, - -0.3407098948955536, - -0.32386326789855957, - -0.2959200143814087, - -0.25764229893684387, - -0.2100742757320404, - -0.15451344847679138, - -0.09247542917728424, - -0.025652378797531128, - 0.04413289204239845, - 0.11497684568166733, - 0.18494704365730286, - 0.25213485956192017, - 0.3147076368331909, - 0.37095844745635986, - 0.41935306787490845, - 0.45857131481170654, - 0.4875434339046478, - 0.505479097366333, - 0.5118891596794128, - -0.3460003137588501, - -0.3429044783115387, - -0.3281925618648529, - -0.3022659122943878, - -0.26583173871040344, - -0.21988382935523987, - -0.1656755656003952, - -0.10468563437461853, - -0.0385776087641716, - 0.030845213681459427, - 0.1016891673207283, - 0.1720218062400818, - 0.23992465436458588, - 0.3035455048084259, - 0.3611488938331604, - 0.4111636281013489, - 0.4522254168987274, - 0.4832141399383545, - 0.5032845735549927, - 0.5118891596794128, - -0.3460003137588501, - -0.34480056166648865, - -0.33193305134773254, - -0.3077487349510193, - -0.2729073464870453, - -0.22835922241210938, - -0.17531955242156982, - -0.11523514986038208, - -0.04974488914012909, - 0.019364774227142334, - 0.09020872414112091, - 0.1608545184135437, - 0.22937513887882233, - 0.2939015328884125, - 0.3526735007762909, - 0.40408802032470703, - 0.44674259424209595, - 0.47947368025779724, - 0.501388430595398, - 0.5118891596794128, - -0.3460003137588501, - -0.34619271755218506, - -0.33467936515808105, - -0.31177428364753723, - -0.2781023681163788, - -0.23458197712898254, - -0.18240031599998474, - -0.12298078835010529, - -0.057944104075431824, - 0.010935649275779724, - 0.0817795991897583, - 0.15265531837940216, - 0.22162951529026031, - 0.28682076930999756, - 0.3464507460594177, - 0.39889299869537354, - 0.4427170157432556, - 0.47672736644744873, - 0.4999963045120239, - 0.5118891596794128, - -0.3460003137588501, - -0.34693002700805664, - -0.3361338973045349, - -0.31390637159347534, - -0.28085383772850037, - -0.23787778615951538, - -0.18615055084228516, - -0.12708315253257751, - -0.062286704778671265, - 0.006471261382102966, - 0.07731521129608154, - 0.14831271767616272, - 0.21752715110778809, - 0.28307050466537476, - 0.3431549370288849, - 0.39614152908325195, - 0.4405849277973175, - 0.4752728044986725, - 0.49925896525382996, - 0.5118891596794128, - -0.3460003137588501, - -0.34693264961242676, - -0.336139053106308, - -0.3139139711856842, - -0.28086361289024353, - -0.23788949847221375, - -0.18616387248039246, - -0.1270977258682251, - -0.0623021274805069, - 0.006455413997173309, - 0.07729936391115189, - 0.1482972949743271, - 0.2175125777721405, - 0.28305721282958984, - 0.3431432247161865, - 0.3961317539215088, - 0.44057735800743103, - 0.4752676486968994, - 0.4992563724517822, - 0.5118891596794128, - -0.3460003137588501, - -0.34620028734207153, - -0.3346942961215973, - -0.3117961883544922, - -0.27813059091567993, - -0.23461583256721497, - -0.18243882060050964, - -0.1230228990316391, - -0.057988688349723816, - 0.010889805853366852, - 0.08173375576734543, - 0.15261073410511017, - 0.2215873897075653, - 0.28678226470947266, - 0.3464168906211853, - 0.39886474609375, - 0.44269514083862305, - 0.4767124354839325, - 0.49998873472213745, - 0.5118891596794128, - -0.3460003137588501, - -0.344812273979187, - -0.3319561183452606, - -0.3077825605869293, - -0.27295100688934326, - -0.22841152548789978, - -0.17537906765937805, - -0.1153002679347992, - -0.04981382191181183, - 0.01929391175508499, - 0.09013786911964417, - 0.16078560054302216, - 0.2293100357055664, - 0.29384201765060425, - 0.3526211977005005, - 0.40404435992240906, - 0.4467087388038635, - 0.4794505834579468, - 0.501376748085022, - 0.5118891596794128, - -0.3460003137588501, - -0.3429190516471863, - -0.32822129130363464, - -0.30230802297592163, - -0.2658860981464386, - -0.21994894742965698, - -0.165749654173851, - -0.10476668179035187, - -0.03866339474916458, - 0.03075702115893364, - 0.10160097479820251, - 0.1719360202550888, - 0.23984362185001373, - 0.3034714460372925, - 0.3610837757587433, - 0.4111092686653137, - 0.4521832764148712, - 0.48318541049957275, - 0.5032699704170227, - 0.5118891596794128, - -0.3460003137588501, - -0.34072574973106384, - -0.32389456033706665, - -0.29596585035324097, - -0.25770145654678345, - -0.21014511585235596, - -0.1545940786600113, - -0.09256362915039062, - -0.02574574202299118, - 0.04403691366314888, - 0.11488086730241776, - 0.1848536729812622, - 0.252046674489975, - 0.3146269917488098, - 0.3708876073360443, - 0.41929391026496887, - 0.45852547883987427, - 0.48751217126846313, - 0.5054632425308228, - 0.5118891596794128, - -0.3460003137588501, - -0.33847007155418396, - -0.3194447457790375, - -0.2894432544708252, - -0.249284029006958, - -0.20006245374679565, - -0.14312119781970978, - -0.08001348376274109, - -0.012460671365261078, - 0.05769452825188637, - 0.12853848934173584, - 0.1981387436389923, - 0.2645968198776245, - 0.32609987258911133, - 0.3809702694416046, - 0.4277113378047943, - 0.46504807472229004, - 0.4919619858264923, - 0.5077189207077026, - 0.5118891596794128, - -0.3460003137588501, - -0.3363964557647705, - -0.3153540790081024, - -0.28344711661338806, - -0.24154597520828247, - -0.19079357385635376, - -0.13257430493831635, - -0.06847627460956573, - -0.000247858464717865, - 0.07024981826543808, - 0.14109377562999725, - 0.21035155653953552, - 0.27613401412963867, - 0.33664679527282715, - 0.3902391493320465, - 0.43544939160346985, - 0.4710442125797272, - 0.49605265259742737, - 0.5097925662994385, - 0.5118891596794128, - -0.3460003137588501, - -0.3347296118736267, - -0.31206583976745605, - -0.2786271870136261, - -0.23532584309577942, - -0.18334287405014038, - -0.12409630417823792, - -0.059202224016189575, - 0.00956927239894867, - 0.08034224808216095, - 0.15118619799613953, - 0.22016869485378265, - 0.285408079624176, - 0.3451247811317444, - 0.3976898491382599, - 0.4416695237159729, - 0.47586411237716675, - 0.49934089183807373, - 0.5114594101905823, - 0.5118891596794128, - -0.3460003137588501, - -0.333650141954422, - -0.3099363446235657, - -0.27550578117370605, - -0.23129764199256897, - -0.17851778864860535, - -0.11860591173171997, - -0.05319631099700928, - 0.015926897525787354, - 0.08687815070152283, - 0.1577221006155014, - 0.22652631998062134, - 0.2914139926433563, - 0.35061517357826233, - 0.4025149345397949, - 0.44569772481918335, - 0.4789855182170868, - 0.5014703273773193, - 0.5125389099121094, - 0.5118891596794128, - -0.3460003137588501, - -0.33327504992485046, - -0.309196412563324, - -0.27442115545272827, - -0.22989791631698608, - -0.17684116959571838, - -0.11669811606407166, - -0.051109373569488525, - 0.01813603937625885, - 0.08914924412965775, - 0.15999320149421692, - 0.22873546183109283, - 0.2935009300708771, - 0.35252296924591064, - 0.4041915535926819, - 0.44709745049476624, - 0.4800701439380646, - 0.5022103190422058, - 0.5129139423370361, - 0.5118891596794128, - -0.3460003137588501, - -0.3336449861526489, - -0.3099261522293091, - -0.2754908502101898, - -0.23127835988998413, - -0.17849469184875488, - -0.11857965588569641, - -0.05316758155822754, - 0.0159573033452034, - 0.08690941333770752, - 0.1577533781528473, - 0.2265567183494568, - 0.29144272208213806, - 0.3506414294242859, - 0.4025380313396454, - 0.4457170069217682, - 0.479000449180603, - 0.5014805793762207, - 0.5125440359115601, - 0.5118891596794128, - -0.3460003137588501, - -0.33471983671188354, - -0.3120465576648712, - -0.27859893441200256, - -0.23528936505317688, - -0.1832992136478424, - -0.12404660880565643, - -0.05914786458015442, - 0.009626813232898712, - 0.08040139824151993, - 0.1512453556060791, - 0.2202262282371521, - 0.2854624390602112, - 0.3451744616031647, - 0.39773350954055786, - 0.44170600175857544, - 0.4758923649787903, - 0.4993601441383362, - 0.5114691853523254, - 0.5118891596794128 - ], - "y": [ - -1.9384095668792725, - -1.9140201807022095, - -1.8916051387786865, - -1.8717759847640991, - -1.8550734519958496, - -1.841953158378601, - -1.8327730894088745, - -1.8277835845947266, - -1.8271207809448242, - -1.8308026790618896, - -1.8387290239334106, - -1.8506834506988525, - -1.8663398027420044, - -1.8852711915969849, - -1.90696120262146, - -1.9308180809020996, - -1.9561911821365356, - -1.9823882579803467, - -2.008694887161255, - -2.034393310546875, - -1.9384095668792725, - -1.9019099473953247, - -1.8677150011062622, - -1.8367575407028198, - -1.8098819255828857, - -1.7878212928771973, - -1.7711774110794067, - -1.760404348373413, - -1.7557958364486694, - -1.7574777603149414, - -1.7654039859771729, - -1.7793585062026978, - -1.798960566520691, - -1.8236756324768066, - -1.8528293371200562, - -1.8856265544891357, - -1.9211726188659668, - -1.9584980010986328, - -1.9965845346450806, - -2.034393310546875, - -1.9384095668792725, - -1.893825888633728, - -1.8517674207687378, - -1.8133814334869385, - -1.7797149419784546, - -1.7516863346099854, - -1.73006010055542, - -1.7154263257980347, - -1.708184003829956, - -1.7085306644439697, - -1.7164568901062012, - -1.7317465543746948, - -1.7539825439453125, - -1.7825583219528198, - -1.8166943788528442, - -1.8554595708847046, - -1.897796630859375, - -1.942550539970398, - -1.9885005950927734, - -2.034393310546875, - -1.9384095668792725, - -1.8906440734863281, - -1.8454906940460205, - -1.8041808605194092, - -1.7678415775299072, - -1.7374640703201294, - -1.7138769626617432, - -1.6977235078811646, - -1.6894445419311523, - -1.6892657279968262, - -1.6971919536590576, - -1.7130070924758911, - -1.7362797260284424, - -1.7663750648498535, - -1.8024721145629883, - -1.8435863256454468, - -1.8885960578918457, - -1.9362736940383911, - -1.9853187799453735, - -2.034393310546875, - -1.9384095668792725, - -1.8927093744277954, - -1.8495649099349976, - -1.8101530075073242, - -1.7755485773086548, - -1.7466957569122314, - -1.724381446838379, - -1.709214448928833, - -1.7016083002090454, - -1.701770544052124, - -1.709696888923645, - -1.7251708507537842, - -1.7477706670761108, - -1.7768795490264893, - -1.8117038011550903, - -1.8512932062149048, - -1.8945680856704712, - -1.9403480291366577, - -1.9873840808868408, - -2.034393310546875, - -1.9384095668792725, - -1.8997979164123535, - -1.8635486364364624, - -1.8306504487991333, - -1.8020007610321045, - -1.7783809900283813, - -1.7604354619979858, - -1.748653769493103, - -1.7433571815490723, - -1.744690179824829, - -1.7526164054870605, - -1.766919732093811, - -1.7872099876403809, - -1.8129335641860962, - -1.8433889150619507, - -1.8777453899383545, - -1.9150656461715698, - -1.9543317556381226, - -1.994472622871399, - -2.034393310546875, - -1.9384095668792725, - -1.9111416339874268, - -1.8859264850616455, - -1.8634520769119263, - -1.8443313837051392, - -1.8290860652923584, - -1.818131923675537, - -1.811767578125, - -1.810166835784912, - -1.8133734464645386, - -1.82129967212677, - -1.8337295055389404, - -1.8503237962722778, - -1.8706300258636475, - -1.8940939903259277, - -1.9200760126113892, - -1.9478672742843628, - -1.9767096042633057, - -2.0058162212371826, - -2.034393310546875, - -1.9384095668792725, - -1.925511121749878, - -1.9142735004425049, - -1.9050034284591675, - -1.8979536294937134, - -1.893316388130188, - -1.8912184238433838, - -1.891716718673706, - -1.894797682762146, - -1.9003775119781494, - -1.9083037376403809, - -1.9183603525161743, - -1.9302729368209839, - -1.9437165260314941, - -1.9583244323730469, - -1.9736982583999634, - -1.9894185066223145, - -2.005056619644165, - -2.020185708999634, - -2.034393310546875, - -1.9384095668792725, - -1.9413492679595947, - -1.9455177783966064, - -1.9508016109466553, - -1.9570564031600952, - -1.9641116857528687, - -1.971774935722351, - -1.9798372983932495, - -1.9880785942077637, - -1.9962741136550903, - -2.0042004585266113, - -2.011641263961792, - -2.0183935165405273, - -2.024273157119751, - -2.0291197299957275, - -2.0328011512756348, - -2.035216808319092, - -2.0363008975982666, - -2.0360238552093506, - -2.034393310546875, - -1.9384095668792725, - -1.9569398164749146, - -1.976273536682129, - -1.9958837032318115, - -2.015235185623169, - -2.0338001251220703, - -2.051072120666504, - -2.066580057144165, - -2.0799009799957275, - -2.0906715393066406, - -2.098597764968872, - -2.103463649749756, - -2.1051363945007324, - -2.1035702228546143, - -2.0988080501556396, - -2.090979814529419, - -2.080298900604248, - -2.067056655883789, - -2.051614284515381, - -2.034393310546875, - -1.9384095668792725, - -1.9705932140350342, - -2.0032079219818115, - -2.0353643894195557, - -2.066185235977173, - -2.094829797744751, - -2.120516538619995, - -2.142545223236084, - -2.1603145599365234, - -2.173340082168579, - -2.1812663078308105, - -2.1838772296905518, - -2.1811013221740723, - -2.1730146408081055, - -2.1598377227783203, - -2.141929864883423, - -2.119779586791992, - -2.0939910411834717, - -2.06526780128479, - -2.034393310546875, - -1.9384095668792725, - -1.9808299541473389, - -2.023402214050293, - -2.0649654865264893, - -2.1043853759765625, - -2.140587329864502, - -2.1725831031799316, - -2.199500560760498, - -2.2206053733825684, - -2.235321521759033, - -2.2432477474212646, - -2.2441678047180176, - -2.2380568981170654, - -2.225081443786621, - -2.2055952548980713, - -2.1801302433013916, - -2.149380683898926, - -2.114185333251953, - -2.0755045413970947, - -2.034393310546875, - -1.9384095668792725, - -1.9865407943725586, - -2.034668207168579, - -2.0814788341522217, - -2.1256961822509766, - -2.16611385345459, - -2.201629638671875, - -2.231274366378784, - -2.254239797592163, - -2.2698991298675537, - -2.277825355529785, - -2.2778022289276123, - -2.2698307037353516, - -2.2541277408599854, - -2.2311220169067383, - -2.2014408111572266, - -2.165894031524658, - -2.12545108795166, - -2.0812153816223145, - -2.034393310546875, - -1.9384095668792725, - -1.9871066808700562, - -2.0357847213745117, - -2.083115577697754, - -2.1278083324432373, - -2.1686437129974365, - -2.2045083045959473, - -2.2344233989715576, - -2.257572889328003, - -2.2733256816864014, - -2.281252145767212, - -2.2811355590820312, - -2.272979497909546, - -2.2570064067840576, - -2.233651876449585, - -2.2035529613494873, - -2.1675305366516113, - -2.1265676021575928, - -2.0817813873291016, - -2.034393310546875, - -1.9384095668792725, - -1.982466459274292, - -2.0266308784484863, - -2.069697618484497, - -2.110492467880249, - -2.147902488708496, - -2.1809070110321045, - -2.208606004714966, - -2.2302439212799072, - -2.2452304363250732, - -2.2531566619873047, - -2.2538065910339355, - -2.247162342071533, - -2.233405351638794, - -2.2129104137420654, - -2.186237335205078, - -2.1541128158569336, - -2.1174137592315674, - -2.077141046524048, - -2.034393310546875, - -1.9384095668792725, - -1.9731229543685913, - -2.0081987380981445, - -2.042679786682129, - -2.0756256580352783, - -2.106137752532959, - -2.1333837509155273, - -2.156620502471924, - -2.1752140522003174, - -2.188657522201538, - -2.1965837478637695, - -2.1987767219543457, - -2.195176839828491, - -2.1858818531036377, - -2.1711456775665283, - -2.1513702869415283, - -2.1270947456359863, - -2.0989816188812256, - -2.0677976608276367, - -2.034393310546875, - -1.9384095668792725, - -1.9600886106491089, - -1.9824855327606201, - -2.0049891471862793, - -2.0269856452941895, - -2.04787540435791, - -2.0670881271362305, - -2.0841000080108643, - -2.098446846008301, - -2.1097373962402344, - -2.117663621902466, - -2.12200927734375, - -2.1226561069488525, - -2.119586229324341, - -2.1128833293914795, - -2.1027305126190186, - -2.089404344558716, - -2.0732686519622803, - -2.0547633171081543, - -2.034393310546875, - -1.9384095668792725, - -1.944775938987732, - -1.9522777795791626, - -1.9607105255126953, - -1.969843864440918, - -1.979429006576538, - -1.9892042875289917, - -1.9989030361175537, - -2.00826096534729, - -2.0170223712921143, - -2.0249485969543457, - -2.0318233966827393, - -2.037459373474121, - -2.0417022705078125, - -2.0444369316101074, - -2.045588493347168, - -2.045125722885132, - -2.043060779571533, - -2.0394506454467773, - -2.034393310546875, - -1.9384095668792725, - -1.9288443326950073, - -1.920849084854126, - -1.9146419763565063, - -1.9103922843933105, - -1.908215880393982, - -1.9081721305847168, - -1.9102623462677002, - -1.9144294261932373, - -1.9205597639083862, - -1.9284859895706177, - -1.9379920959472656, - -1.948818564414978, - -1.9606703519821167, - -1.9732239246368408, - -1.9861369132995605, - -1.9990571737289429, - -2.011632204055786, - -2.0235190391540527, - -2.034393310546875, - -1.9384095668792725, - -1.9140201807022095, - -1.8916051387786865, - -1.8717759847640991, - -1.8550734519958496, - -1.841953158378601, - -1.8327730894088745, - -1.8277835845947266, - -1.8271207809448242, - -1.8308026790618896, - -1.838728904724121, - -1.850683331489563, - -1.8663398027420044, - -1.8852711915969849, - -1.90696120262146, - -1.9308180809020996, - -1.956191062927246, - -1.9823882579803467, - -2.008694887161255, - -2.034393310546875 - ], - "z": [ - 0.9014524221420288, - 0.8849760293960571, - 0.8707202076911926, - 0.8590739369392395, - 0.8503548502922058, - 0.8448007106781006, - 0.8425631523132324, - 0.8437031507492065, - 0.8481895923614502, - 0.8559001088142395, - 0.8666244149208069, - 0.88006991147995, - 0.8958698511123657, - 0.9135933518409729, - 0.932756781578064, - 0.9528375864028931, - 0.9732879996299744, - 0.9935500621795654, - 1.0130711793899536, - 1.0313187837600708, - 0.9014524221420288, - 0.904914379119873, - 0.9100530743598938, - 0.9167283773422241, - 0.9247581958770752, - 0.9339235424995422, - 0.9439743161201477, - 0.9546364545822144, - 0.9656190872192383, - 0.9766225814819336, - 0.9873468279838562, - 0.9974993467330933, - 1.0068031549453735, - 1.0150045156478882, - 1.0218796730041504, - 1.0272409915924072, - 1.030942440032959, - 1.0328829288482666, - 1.0330095291137695, - 1.0313187837600708, - 0.9014524221420288, - 0.924573540687561, - 0.9488351941108704, - 0.9735755324363708, - 0.9981197714805603, - 1.0217983722686768, - 1.043965458869934, - 1.0640164613723755, - 1.081404209136963, - 1.0956546068191528, - 1.1063789129257202, - 1.1132845878601074, - 1.1161831617355347, - 1.1149957180023193, - 1.1097544431686401, - 1.100602626800537, - 1.087789535522461, - 1.0716650485992432, - 1.0526686906814575, - 1.0313187837600708, - 0.9014524221420288, - 0.9418231248855591, - 0.9828639030456543, - 1.0234551429748535, - 1.062489628791809, - 1.098902702331543, - 1.131701111793518, - 1.1599900722503662, - 1.1829979419708252, - 1.2000973224639893, - 1.2108216285705566, - 1.2148783206939697, - 1.2121567726135254, - 1.2027312517166138, - 1.186858892440796, - 1.1649724245071411, - 1.1376692056655884, - 1.1056936979293823, - 1.0699182748794556, - 1.0313187837600708, - 0.9014524221420288, - 0.9547939300537109, - 1.0084517002105713, - 1.0609619617462158, - 1.110892415046692, - 1.1568810939788818, - 1.1976735591888428, - 1.2321571111679077, - 1.2593910694122314, - 1.278632640838623, - 1.2893569469451904, - 1.291271448135376, - 1.284323811531067, - 1.2687036991119385, - 1.2448371648788452, - 1.213375210762024, - 1.1751759052276611, - 1.1312814950942993, - 1.0828890800476074, - 1.0313187837600708, - 0.9014524221420288, - 0.9620802998542786, - 1.0228255987167358, - 1.082031488418579, - 1.13808274269104, - 1.1894505023956299, - 1.2347338199615479, - 1.2726972103118896, - 1.3023051023483276, - 1.3227500915527344, - 1.3334743976593018, - 1.3341853618621826, - 1.3248639106750488, - 1.3057639598846436, - 1.2774066925048828, - 1.240565538406372, - 1.1962454319000244, - 1.1456555128097534, - 1.0901753902435303, - 1.0313187837600708, - 0.9014524221420288, - 0.9628927111625671, - 1.0244282484054565, - 1.0843805074691772, - 1.1411142349243164, - 1.1930817365646362, - 1.238865613937378, - 1.2772170305252075, - 1.3070896863937378, - 1.3276687860488892, - 1.3383930921554565, - 1.3389699459075928, - 1.3293837308883667, - 1.3098958730697632, - 1.2810379266738892, - 1.2435970306396484, - 1.198594570159912, - 1.1472580432891846, - 1.0909878015518188, - 1.0313187837600708, - 0.9014524221420288, - 0.9571430087089539, - 1.0130857229232788, - 1.0677546262741089, - 1.119658350944519, - 1.1673812866210938, - 1.209621548652649, - 1.2452269792556763, - 1.2732263803482056, - 1.2928558588027954, - 1.3035801649093628, - 1.3051066398620605, - 1.2973936796188354, - 1.2806516885757446, - 1.2553373575210571, - 1.2221412658691406, - 1.1819686889648438, - 1.1359155178070068, - 1.0852382183074951, - 1.0313187837600708, - 0.9014524221420288, - 0.9454543590545654, - 0.9900273084640503, - 1.0339553356170654, - 1.076040267944336, - 1.1151340007781982, - 1.1501704454421997, - 1.180193543434143, - 1.204384684562683, - 1.2220836877822876, - 1.232807993888855, - 1.236264944076538, - 1.2323603630065918, - 1.2212005853652954, - 1.2030901908874512, - 1.178523063659668, - 1.1481693983078003, - 1.1128571033477783, - 1.073549509048462, - 1.0313187837600708, - 0.9014524221420288, - 0.9290934205055237, - 0.9577516913414001, - 0.9866454005241394, - 1.014986515045166, - 1.0420019626617432, - 1.0669547319412231, - 1.0891642570495605, - 1.1080247163772583, - 1.1230216026306152, - 1.1337459087371826, - 1.1399049758911133, - 1.1413309574127197, - 1.1379848718643188, - 1.1299580335617065, - 1.117469310760498, - 1.1008594036102295, - 1.080581545829773, - 1.0571885108947754, - 1.0313187837600708, - 0.9014524221420288, - 0.9098331332206726, - 0.9197564125061035, - 0.9309515953063965, - 0.9431133270263672, - 0.9559099078178406, - 0.9689922332763672, - 0.9820034503936768, - 0.9945886135101318, - 1.0064045190811157, - 1.017128825187683, - 1.0264689922332764, - 1.034170150756836, - 1.040022373199463, - 1.0438660383224487, - 1.0455961227416992, - 1.0451656579971313, - 1.0425862073898315, - 1.0379282236099243, - 1.0313187837600708, - 0.9014524221420288, - 0.8897605538368225, - 0.8801588416099548, - 0.8729091882705688, - 0.8682093024253845, - 0.8661873936653137, - 0.8668986558914185, - 0.8703235983848572, - 0.8763689398765564, - 0.8848696947097778, - 0.8955939412117004, - 0.9082492589950562, - 0.9224903583526611, - 0.9379287958145142, - 0.9541434645652771, - 0.9706920981407166, - 0.9871231913566589, - 1.0029886960983276, - 1.0178557634353638, - 1.0313187837600708, - 0.9014524221420288, - 0.871051013469696, - 0.843250036239624, - 0.8188079595565796, - 0.7983913421630859, - 0.7825571894645691, - 0.7717373967170715, - 0.766227126121521, - 0.7661765813827515, - 0.7715873122215271, - 0.7823115587234497, - 0.7980569005012512, - 0.8183938264846802, - 0.8427675366401672, - 0.8705132603645325, - 0.900874137878418, - 0.9330219626426697, - 0.9660798907279968, - 0.9991461634635925, - 1.0313187837600708, - 0.9014524221420288, - 0.8557318449020386, - 0.8130296468734741, - 0.7745105624198914, - 0.7412253618240356, - 0.714081883430481, - 0.6938206553459167, - 0.6809942722320557, - 0.6759525537490845, - 0.6788331866264343, - 0.6895574331283569, - 0.707832932472229, - 0.7331609725952148, - 0.7648507952690125, - 0.8020379543304443, - 0.8437080979347229, - 0.8887246251106262, - 0.9358595013618469, - 0.9838269948959351, - 1.0313187837600708, - 0.9014524221420288, - 0.8454632759094238, - 0.7927725315093994, - 0.7448174953460693, - 0.7029061913490295, - 0.6681820154190063, - 0.6415920257568359, - 0.62386155128479, - 0.6154742240905762, - 0.6166588664054871, - 0.6273831129074097, - 0.6473545432090759, - 0.6760282516479492, - 0.7126221656799316, - 0.756138026714325, - 0.8053889870643616, - 0.8590314984321594, - 0.9156023263931274, - 0.9735583662986755, - 1.0313187837600708, - 0.9014524221420288, - 0.8413578867912292, - 0.7846737504005432, - 0.7329462766647339, - 0.6875863075256348, - 0.6498314142227173, - 0.6207112073898315, - 0.6010200381278992, - 0.5912951231002808, - 0.5918017625808716, - 0.602526068687439, - 0.6231755018234253, - 0.6531867384910583, - 0.6917412877082825, - 0.7377874255180359, - 0.7900691032409668, - 0.847160279750824, - 0.9075035452842712, - 0.9694530367851257, - 1.0313187837600708, - 0.9014524221420288, - 0.8438606262207031, - 0.7896110415458679, - 0.7401833534240723, - 0.6969258785247803, - 0.6610186100006104, - 0.6334408521652222, - 0.6149450540542603, - 0.606035590171814, - 0.6069555282592773, - 0.6176798343658447, - 0.6379159092903137, - 0.6671117544174194, - 0.7044709920883179, - 0.748974621295929, - 0.7994086742401123, - 0.8543974161148071, - 0.912440836429596, - 0.9719557762145996, - 1.0313187837600708, - 0.9014524221420288, - 0.8527003526687622, - 0.8070493340492249, - 0.7657445669174194, - 0.7299127578735352, - 0.7005313634872437, - 0.67840176820755, - 0.6641275882720947, - 0.6580982208251953, - 0.6604781150817871, - 0.6712024211883545, - 0.6899784803390503, - 0.7162942886352539, - 0.7494319081306458, - 0.788487434387207, - 0.8323955535888672, - 0.8799586296081543, - 0.9298791885375977, - 0.9807955026626587, - 1.0313187837600708, - 0.9014524221420288, - 0.8669191002845764, - 0.8350989818572998, - 0.8068599700927734, - 0.7829724550247192, - 0.7640879154205322, - 0.7507215738296509, - 0.7432379722595215, - 0.7418412566184998, - 0.7465695142745972, - 0.7572938203811646, - 0.7737215757369995, - 0.7954046726226807, - 0.8217517137527466, - 0.8520439863204956, - 0.8854552507400513, - 0.9210740327835083, - 0.9579287767410278, - 0.9950142502784729, - 1.0313187837600708, - 0.9014524221420288, - 0.8849760293960571, - 0.8707202672958374, - 0.8590739369392395, - 0.8503548502922058, - 0.8448007702827454, - 0.8425632119178772, - 0.8437032103538513, - 0.848189651966095, - 0.8559001684188843, - 0.8666244745254517, - 0.8800699710845947, - 0.8958699107170105, - 0.9135934114456177, - 0.9327568411827087, - 0.9528376460075378, - 0.9732879996299744, - 0.9935500621795654, - 1.0130711793899536, - 1.0313187837600708 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.31150317192077637, - 0.31304076313972473, - 0.3067435920238495, - 0.2927834093570709, - 0.2715410590171814, - 0.24359597265720367, - 0.20971040427684784, - 0.17080865800380707, - 0.12795186042785645, - 0.0823090672492981, - 0.03512527793645859, - -0.012312449514865875, - -0.05871015787124634, - -0.10280223190784454, - -0.1433859020471573, - -0.1793542355298996, - -0.20972608029842377, - -0.23367294669151306, - -0.250541627407074, - -0.2598720192909241, - 0.31150317192077637, - 0.2913180887699127, - 0.26389080286026, - 0.22996941208839417, - 0.19047924876213074, - 0.14649748802185059, - 0.09922387450933456, - 0.0499478280544281, - 0.000013524666428565979, - -0.049216948449611664, - -0.09640073776245117, - -0.1402507871389389, - -0.1795709878206253, - -0.21328876912593842, - -0.24048438668251038, - -0.26041606068611145, - -0.2725400924682617, - -0.27652573585510254, - -0.272264301776886, - -0.2598720192909241, - 0.31150317192077637, - 0.2713605761528015, - 0.22452011704444885, - 0.17225952446460724, - 0.11600431799888611, - 0.05728901922702789, - -0.0022847913205623627, - -0.061092130839824677, - -0.11752884089946747, - -0.17005546391010284, - -0.21723924577236176, - -0.2577931582927704, - -0.2906109392642975, - -0.31479743123054504, - -0.32969287037849426, - -0.3348909914493561, - -0.33024996519088745, - -0.3158964216709137, - -0.2922218143939972, - -0.2598720192909241, - 0.31150320172309875, - 0.2553308606147766, - 0.1928979903459549, - 0.1259075105190277, - 0.05618678033351898, - -0.014362350106239319, - -0.0838155671954155, - -0.15027831494808197, - -0.21193771064281464, - -0.26711180806159973, - -0.31429558992385864, - -0.35220202803611755, - -0.3797971308231354, - -0.3963282108306885, - -0.40134426951408386, - -0.394708514213562, - -0.3766019940376282, - -0.34751853346824646, - -0.3082515299320221, - -0.2598720192909241, - 0.31150320172309875, - 0.24496610462665558, - 0.17245112359523773, - 0.09593632817268372, - 0.01750880666077137, - -0.06069210171699524, - -0.13653329014778137, - -0.2079460769891739, - -0.2729824185371399, - -0.3298683166503906, - -0.37705209851264954, - -0.4132467210292816, - -0.4374648928642273, - -0.44904595613479614, - -0.4476740062236786, - -0.43338650465011597, - -0.40657317638397217, - -0.3679654002189636, - -0.3186163008213043, - -0.2598720192909241, - 0.31150320172309875, - 0.24138939380645752, - 0.16539530456066132, - 0.08559384942054749, - 0.004161776974797249, - -0.07667961716651917, - -0.15472519397735596, - -0.2278461456298828, - -0.2940478026866913, - -0.3515244424343109, - -0.3987082242965698, - -0.434312105178833, - -0.457364946603775, - -0.4672378599643707, - -0.4636615216732025, - -0.4467335343360901, - -0.4169156551361084, - -0.37502121925354004, - -0.3221929967403412, - -0.2598719894886017, - 0.31150320172309875, - 0.24498838186264038, - 0.17249509692192078, - 0.0960007905960083, - 0.017591984942555428, - -0.060592472553253174, - -0.13641992211341858, - -0.2078220397233963, - -0.2728511691093445, - -0.32973337173461914, - -0.37691715359687805, - -0.4131154716014862, - -0.4373408555984497, - -0.44893255829811096, - -0.4475743770599365, - -0.4333033263683319, - -0.4065087139606476, - -0.3679214417934418, - -0.3185940086841583, - -0.2598720192909241, - 0.31150320172309875, - 0.2553730607032776, - 0.19298115372657776, - 0.12602943181991577, - 0.05634412169456482, - -0.014173895120620728, - -0.08360110968351364, - -0.15004374086856842, - -0.21168939769268036, - -0.26685652136802673, - -0.31404030323028564, - -0.3519537150859833, - -0.3795625567436218, - -0.396113783121109, - -0.40115582942962646, - -0.39455118775367737, - -0.3764800727367401, - -0.3474353849887848, - -0.3082093596458435, - -0.2598720192909241, - 0.31150317192077637, - 0.271418035030365, - 0.22463348507881165, - 0.17242570221424103, - 0.11621876060962677, - 0.05754588544368744, - -0.001992505043745041, - -0.060772381722927094, - -0.11719036102294922, - -0.1697075217962265, - -0.2168913036584854, - -0.25745469331741333, - -0.2902911901473999, - -0.3145051598548889, - -0.3294360041618347, - -0.3346765339374542, - -0.33008378744125366, - -0.3157830536365509, - -0.2921643555164337, - -0.2598720192909241, - 0.31150317192077637, - 0.29138463735580444, - 0.2640220522880554, - 0.23016183078289032, - 0.19072756171226501, - 0.14679494500160217, - 0.09956233203411102, - 0.050318069756031036, - 0.00040546245872974396, - -0.04881403595209122, - -0.09599782526493073, - -0.13985885679721832, - -0.17920073866844177, - -0.21295030415058136, - -0.2401869297027588, - -0.2601677179336548, - -0.27234765887260437, - -0.27639445662498474, - -0.27219775319099426, - -0.2598720192909241, - 0.31150317192077637, - 0.3131091594696045, - 0.30687853693962097, - 0.29298123717308044, - 0.2717963457107544, - 0.24390175938606262, - 0.21005836129188538, - 0.1711892932653427, - 0.12835478782653809, - 0.08272328972816467, - 0.035539500415325165, - -0.01190953329205513, - -0.05832952260971069, - -0.102454274892807, - -0.14308010041713715, - -0.1790989488363266, - -0.20952826738357544, - -0.23353800177574158, - -0.2504732310771942, - -0.2598720192909241, - 0.31150317192077637, - 0.3342374265193939, - 0.3485587239265442, - 0.35407644510269165, - 0.35064005851745605, - 0.3383432924747467, - 0.3175216019153595, - 0.28874295949935913, - 0.2527922987937927, - 0.21065030992031097, - 0.16346652805805206, - 0.1125279888510704, - 0.05922413989901543, - 0.005008993670344353, - -0.048638537526130676, - -0.10025525093078613, - -0.14843305945396423, - -0.19185779988765717, - -0.22934496402740479, - -0.2598720192909241, - 0.31150317192077637, - 0.35247981548309326, - 0.3845459520816803, - 0.40682682394981384, - 0.4187147319316864, - 0.4198853671550751, - 0.41030678153038025, - 0.390240341424942, - 0.36023327708244324, - 0.32110416889190674, - 0.2739203870296478, - 0.2199689745903015, - 0.1607215404510498, - 0.09779417514801025, - 0.0329035259783268, - -0.03218056261539459, - -0.09568266570568085, - -0.15587058663368225, - -0.21110256016254425, - -0.2598720192909241, - 0.31150317192077637, - 0.3658595681190491, - 0.4109404385089874, - 0.44551610946655273, - 0.468643456697464, - 0.47969162464141846, - 0.478359192609787, - 0.4646826386451721, - 0.4390348792076111, - 0.40211552381515503, - 0.3549317419528961, - 0.29877057671546936, - 0.2351638376712799, - 0.16584660112857819, - 0.09270978718996048, - 0.01774817705154419, - -0.056993380188941956, - -0.12947608530521393, - -0.19772282242774963, - -0.25987204909324646, - 0.31150317192077637, - 0.3729266822338104, - 0.4248819053173065, - 0.4659516513347626, - 0.49501562118530273, - 0.5112810134887695, - 0.5143042206764221, - 0.5040027499198914, - 0.48065754771232605, - 0.44490543007850647, - 0.39772164821624756, - 0.3403932452201843, - 0.27448394894599915, - 0.20179162919521332, - 0.12429920583963394, - 0.04412035644054413, - -0.03655784949660301, - -0.11553461849689484, - -0.19065570831298828, - -0.25987204909324646, - 0.31150317192077637, - 0.3729153871536255, - 0.4248596429824829, - 0.46591898798942566, - 0.49497348070144653, - 0.5112305879592896, - 0.5142468214035034, - 0.5039399266242981, - 0.4805910289287567, - 0.4448370337486267, - 0.3976532518863678, - 0.340326726436615, - 0.2744211256504059, - 0.20173422992229462, - 0.12424875050783157, - 0.04407821595668793, - -0.03659049794077873, - -0.11555689573287964, - -0.1906670182943344, - -0.25987204909324646, - 0.31150317192077637, - 0.36582687497138977, - 0.41087597608566284, - 0.44542163610458374, - 0.4685215353965759, - 0.479545533657074, - 0.4781930148601532, - 0.4645007848739624, - 0.43884241580963135, - 0.4019176661968231, - 0.3547338843345642, - 0.2985781133174896, - 0.2349819839000702, - 0.1656804233789444, - 0.09256372600793839, - 0.01762622594833374, - -0.057087868452072144, - -0.1295405477285385, - -0.19775551557540894, - -0.25987204909324646, - 0.31150317192077637, - 0.3524293303489685, - 0.38444632291793823, - 0.40668076276779175, - 0.41852623224258423, - 0.4196595549583435, - 0.4100498855113983, - 0.38995927572250366, - 0.35993579030036926, - 0.3207983374595642, - 0.2736145555973053, - 0.21967148780822754, - 0.16044047474861145, - 0.09753726422786713, - 0.032677728682756424, - -0.03236904740333557, - -0.09582872688770294, - -0.15597021579742432, - -0.2111530750989914, - -0.2598720192909241, - 0.31150317192077637, - 0.3341745436191559, - 0.3484346568584442, - 0.35389459133148193, - 0.35040536522865295, - 0.33806219696998596, - 0.31720173358917236, - 0.2883930504322052, - 0.25242191553115845, - 0.21026954054832458, - 0.16308575868606567, - 0.11215760558843613, - 0.05887424573302269, - 0.004689125344157219, - -0.04891965538263321, - -0.10048991441726685, - -0.14861491322517395, - -0.19198186695575714, - -0.22940784692764282, - -0.2598720192909241, - 0.31150317192077637, - 0.31304073333740234, - 0.3067435622215271, - 0.29278337955474854, - 0.2715409994125366, - 0.2435959130525589, - 0.20971034467220306, - 0.1708085983991623, - 0.12795180082321167, - 0.08230900764465332, - 0.035125210881233215, - -0.012312516570091248, - -0.05871021747589111, - -0.10280229151248932, - -0.14338594675064087, - -0.17935428023338318, - -0.20972611010074615, - -0.23367297649383545, - -0.25054165720939636, - -0.2598720192909241 - ], - "y": [ - -2.5237486362457275, - -2.4949522018432617, - -2.459470748901367, - -2.418272018432617, - -2.3724799156188965, - -2.323343515396118, - -2.272203207015991, - -2.2204537391662598, - -2.169506788253784, - -2.1207520961761475, - -2.075519561767578, - -2.0350430011749268, - -2.0004265308380127, - -1.9726142883300781, - -1.9523651599884033, - -1.940231204032898, - -1.936543583869934, - -1.9414029121398926, - -1.9546765089035034, - -1.9760024547576904, - -2.5237486362457275, - -2.5020079612731934, - -2.4733898639678955, - -2.4386749267578125, - -2.3988099098205566, - -2.35488224029541, - -2.3080904483795166, - -2.2597105503082275, - -2.2110626697540283, - -2.163473129272461, - -2.1182405948638916, - -2.076598882675171, - -2.0396833419799805, - -2.0085015296936035, - -1.9839038848876953, - -1.9665610790252686, - -1.9569463729858398, - -1.955322027206421, - -1.961732268333435, - -1.9760024547576904, - -2.5237486362457275, - -2.511014938354492, - -2.4911580085754395, - -2.464719533920288, - -2.4324207305908203, - -2.3951425552368164, - -2.3539018630981445, - -2.309823513031006, - -2.2641100883483887, - -2.218008279800415, - -2.1727757453918457, - -2.1296463012695312, - -2.089796304702759, - -2.0543129444122314, - -2.0241641998291016, - -2.0001718997955322, - -1.982991099357605, - -1.9730901718139648, - -1.9707392454147339, - -1.9760024547576904, - -2.5237486362457275, - -2.5209970474243164, - -2.510849952697754, - -2.493584156036377, - -2.469670534133911, - -2.4397614002227783, - -2.404672861099243, - -2.3653619289398193, - -2.3229005336761475, - -2.278447389602661, - -2.233214855194092, - -2.18843674659729, - -2.1453347206115723, - -2.10508394241333, - -2.0687830448150635, - -2.037421703338623, - -2.0118556022644043, - -1.9927819967269897, - -1.9807212352752686, - -1.9760024547576904, - -2.5237486362457275, - -2.5308725833892822, - -2.530331611633301, - -2.5221402645111084, - -2.5065224170684814, - -2.4839041233062744, - -2.454901933670044, - -2.420307159423828, - -2.381063461303711, - -2.3382413387298584, - -2.293008804321289, - -2.2465996742248535, - -2.200279951095581, - -2.155313014984131, - -2.1129255294799805, - -2.0742735862731934, - -2.0404117107391357, - -2.012263536453247, - -1.9905967712402344, - -1.9760024547576904, - -2.5237486362457275, - -2.5395712852478027, - -2.5474915504455566, - -2.5472939014434814, - -2.5389833450317383, - -2.5227866172790527, - -2.4991455078125, - -2.468705177307129, - -2.432295560836792, - -2.3909101486206055, - -2.345677614212036, - -2.2978317737579346, - -2.248677968978882, - -2.199556589126587, - -2.151808023452759, - -2.10673451423645, - -2.065565347671509, - -2.029423713684082, - -1.9992954730987549, - -1.9760023355484009, - -2.5237486362457275, - -2.5461506843566895, - -2.5604708194732666, - -2.5663187503814697, - -2.563535213470459, - -2.5521955490112305, - -2.532609462738037, - -2.5053112506866455, - -2.4710452556610107, - -2.430746555328369, - -2.3855140209198, - -2.3365814685821533, - -2.2852840423583984, - -2.233020544052124, - -2.1812171936035156, - -2.131286382675171, - -2.084590196609497, - -2.042402982711792, - -2.0058748722076416, - -1.9760023355484009, - -2.5237486362457275, - -2.5498974323272705, - -2.5678625106811523, - -2.5771536827087402, - -2.577517509460449, - -2.568944215774536, - -2.5516674518585205, - -2.526158571243286, - -2.4931135177612305, - -2.4534335136413574, - -2.408200979232788, - -2.358649730682373, - -2.306131362915039, - -2.2520785331726074, - -2.197965621948242, - -2.145268678665161, - -2.0954251289367676, - -2.0497946739196777, - -2.0096216201782227, - -1.9760023355484009, - -2.5237486362457275, - -2.550405979156494, - -2.5688657760620117, - -2.5786242485046387, - -2.5794153213500977, - -2.5712172985076904, - -2.5542540550231934, - -2.5289881229400635, - -2.4961087703704834, - -2.456512689590454, - -2.4112801551818848, - -2.361644983291626, - -2.3089609146118164, - -2.2546651363372803, - -2.2002389430999756, - -2.1471664905548096, - -2.096895694732666, - -2.050797939300537, - -2.0101304054260254, - -1.9760023355484009, - -2.5237486362457275, - -2.547621250152588, - -2.5633718967437744, - -2.570571184158325, - -2.5690226554870605, - -2.5587687492370605, - -2.5400891304016113, - -2.513493061065674, - -2.479706287384033, - -2.439650297164917, - -2.3944177627563477, - -2.345242500305176, - -2.2934658527374268, - -2.2405002117156982, - -2.1877903938293457, - -2.1367738246917725, - -2.0888426303863525, - -2.0453038215637207, - -2.00734543800354, - -1.9760023355484009, - -2.5237486362457275, - -2.541844367980957, - -2.551975965499878, - -2.5538671016693115, - -2.5474660396575928, - -2.532947540283203, - -2.5107076168060303, - -2.4813528060913086, - -2.4456839561462402, - -2.4046738147735596, - -2.3594412803649902, - -2.311220169067383, - -2.2613255977630615, - -2.211118698120117, - -2.1619691848754883, - -2.1152172088623047, - -2.072138547897339, - -2.0339081287384033, - -2.001568555831909, - -1.9760023355484009, - -2.5237486362457275, - -2.5337021350860596, - -2.5359132289886475, - -2.530322313308716, - -2.5170812606811523, - -2.496551752090454, - -2.4692933559417725, - -2.4360499382019043, - -2.397728204727173, - -2.3553733825683594, - -2.31014084815979, - -2.2632644176483154, - -2.2160227298736572, - -2.1697044372558594, - -2.12557315826416, - -2.0848324298858643, - -2.048593759536743, - -2.017845392227173, - -1.9934262037277222, - -1.9760023355484009, - -2.5237486362457275, - -2.524076223373413, - -2.5169243812561035, - -2.502487897872925, - -2.481161117553711, - -2.4535253047943115, - -2.4203343391418457, - -2.3824939727783203, - -2.341035842895508, - -2.297091245651245, - -2.251858711242676, - -2.2065720558166504, - -2.1624667644500732, - -2.1207456588745117, - -2.0825467109680176, - -2.048912286758423, - -2.0207595825195312, - -1.9988564252853394, - -1.9838004112243652, - -1.9760024547576904, - -2.5237486362457275, - -2.514010190963745, - -2.4970667362213135, - -2.4733805656433105, - -2.4435977935791016, - -2.4085309505462646, - -2.369136095046997, - -2.3264882564544678, - -2.2817506790161133, - -2.2361435890197754, - -2.190911054611206, - -2.147286891937256, - -2.1064610481262207, - -2.069547176361084, - -2.0375523567199707, - -2.0113489627838135, - -1.9916521310806274, - -1.9789988994598389, - -1.9737343788146973, - -1.9760024547576904, - -2.5237486362457275, - -2.5045948028564453, - -2.4784927368164062, - -2.4461543560028076, - -2.4084622859954834, - -2.3664443492889404, - -2.32124662399292, - -2.274102210998535, - -2.226296901702881, - -2.1791348457336426, - -2.133902072906494, - -2.0918331146240234, - -2.054075002670288, - -2.021657943725586, - -1.995465874671936, - -1.9762134552001953, - -1.9644259214401245, - -1.9604246616363525, - -1.9643189907073975, - -1.9760024547576904, - -2.5237486362457275, - -2.49685001373291, - -2.463214635848999, - -2.423759698867798, - -2.3795619010925293, - -2.3318264484405518, - -2.281855583190918, - -2.2310125827789307, - -2.1806838512420654, - -2.1322426795959473, - -2.087010145187378, - -2.046220064163208, - -2.0109853744506836, - -1.9822667837142944, - -1.9608479738235474, - -1.9473130702972412, - -1.9420312643051147, - -1.9451466798782349, - -1.9565743207931519, - -1.9760024547576904, - -2.5237486362457275, - -2.4916155338287354, - -2.452888250350952, - -2.408623456954956, - -2.3600282669067383, - -2.3084285259246826, - -2.2552316188812256, - -2.2018885612487793, - -2.1498544216156006, - -2.100548505783081, - -2.0553159713745117, - -2.015390634536743, - -1.9818613529205322, - -1.9556427001953125, - -1.9374500513076782, - -1.9277794361114502, - -1.9268949031829834, - -1.9348204135894775, - -1.9513397216796875, - -1.9760024547576904, - -2.5237486362457275, - -2.4894583225250244, - -2.4486327171325684, - -2.402385711669922, - -2.351978302001953, - -2.298786163330078, - -2.2442595958709717, - -2.1898863315582275, - -2.1371493339538574, - -2.0874874591827393, - -2.04225492477417, - -2.002685546875, - -1.9698591232299805, - -1.9446707963943481, - -1.9278075695037842, - -1.9197295904159546, - -1.9206571578979492, - -1.9305648803710938, - -1.9491825103759766, - -1.9760024547576904, - -2.5237486362457275, - -2.490612268447876, - -2.45090913772583, - -2.4057223796844482, - -2.3562846183776855, - -2.3039441108703613, - -2.250128746032715, - -2.1963067054748535, - -2.1439456939697266, - -2.0944743156433105, - -2.049241781234741, - -2.009481906890869, - -1.9762794971466064, - -1.9505399465560913, - -1.932965636253357, - -1.9240357875823975, - -1.9239938259124756, - -1.9328413009643555, - -1.9503364562988281, - -1.9760024547576904, - -2.5237486362457275, - -2.4949522018432617, - -2.459470748901367, - -2.4182722568511963, - -2.3724799156188965, - -2.323343515396118, - -2.272203207015991, - -2.2204537391662598, - -2.169506788253784, - -2.1207520961761475, - -2.075519561767578, - -2.0350430011749268, - -2.0004265308380127, - -1.9726142883300781, - -1.9523651599884033, - -1.940231204032898, - -1.936543583869934, - -1.9414029121398926, - -1.9546765089035034, - -1.9760024547576904 - ], - "z": [ - 0.8433465361595154, - 0.8301418423652649, - 0.8256359100341797, - 0.8299517631530762, - 0.8429715037345886, - 0.86434006690979, - 0.8934745788574219, - 0.9295803308486938, - 0.9716724753379822, - 1.0186028480529785, - 1.0690912008285522, - 1.121760368347168, - 1.1751737594604492, - 1.2278743982315063, - 1.2784247398376465, - 1.3254458904266357, - 1.3676551580429077, - 1.403901219367981, - 1.4331954717636108, - 1.454738736152649, - 0.8433465361595154, - 0.8161622285842896, - 0.7980580925941467, - 0.7895278930664062, - 0.7908042669296265, - 0.8018524646759033, - 0.8223711252212524, - 0.8518005609512329, - 0.8893378973007202, - 0.9339593648910522, - 0.984447717666626, - 1.0394258499145508, - 1.0973939895629883, - 1.156770944595337, - 1.2159371376037598, - 1.2732785940170288, - 1.3272312879562378, - 1.3763233423233032, - 1.4192157983779907, - 1.454738736152649, - 0.8433465361595154, - 0.8055803179740906, - 0.7771828174591064, - 0.7589287757873535, - 0.7513159513473511, - 0.7545520663261414, - 0.768548846244812, - 0.7929245233535767, - 0.8270142078399658, - 0.8698879480361938, - 0.9203763008117676, - 0.9771020412445068, - 1.038517951965332, - 1.1029486656188965, - 1.168636679649353, - 1.2337901592254639, - 1.2966320514678955, - 1.3554481267929077, - 1.4086339473724365, - 1.454738736152649, - 0.8433465361595154, - 0.7995427250862122, - 0.7652723789215088, - 0.741470217704773, - 0.7287856340408325, - 0.7275645732879639, - 0.7378402948379517, - 0.759332537651062, - 0.7914550304412842, - 0.8333316445350647, - 0.8838200569152832, - 0.9415429830551147, - 1.0049259662628174, - 1.0722401142120361, - 1.1416491270065308, - 1.2112599611282349, - 1.2791736125946045, - 1.3435375690460205, - 1.4025962352752686, - 1.454738736152649, - 0.8433465361595154, - 0.7987037897109985, - 0.7636172771453857, - 0.7390443086624146, - 0.7256549000740051, - 0.7238144874572754, - 0.7335731387138367, - 0.7546647191047668, - 0.7865139245986938, - 0.8282519578933716, - 0.8787403106689453, - 0.9366018176078796, - 1.000258207321167, - 1.0679728984832764, - 1.1378990411758423, - 1.2081291675567627, - 1.276747703552246, - 1.341882586479187, - 1.4017573595046997, - 1.454738736152649, - 0.8433465361595154, - 0.8031543493270874, - 0.7723971009254456, - 0.7519137859344482, - 0.7422630786895752, - 0.7437082529067993, - 0.7562098503112793, - 0.7794269323348999, - 0.8127261996269226, - 0.8551992774009705, - 0.9056876301765442, - 0.9628140926361084, - 1.0250203609466553, - 1.0906096696853638, - 1.1577928066253662, - 1.2247374057769775, - 1.2896170616149902, - 1.350662350654602, - 1.4062079191207886, - 1.454738736152649, - 0.8433465361595154, - 0.8124121427536011, - 0.7906602621078491, - 0.7786840200424194, - 0.7768102884292603, - 0.7850899696350098, - 0.8032974004745483, - 0.8309358358383179, - 0.8672513961791992, - 0.9112535119056702, - 0.9617418646812439, - 1.0173393487930298, - 1.0765292644500732, - 1.1376972198486328, - 1.1991746425628662, - 1.259284496307373, - 1.316387414932251, - 1.3689255714416504, - 1.4154658317565918, - 1.454738736152649, - 0.8433465361595154, - 0.8254740238189697, - 0.8164277076721191, - 0.8164541721343994, - 0.8255528211593628, - 0.8434754610061646, - 0.8697330951690674, - 0.903609573841095, - 0.9441808462142944, - 0.9903402328491211, - 1.0408285856246948, - 1.094268798828125, - 1.1492030620574951, - 1.2041329145431519, - 1.2575600147247314, - 1.3080271482467651, - 1.354157567024231, - 1.3946928977966309, - 1.428527593612671, - 1.454738736152649, - 0.8433465361595154, - 0.8409245014190674, - 0.8469070792198181, - 0.8611311912536621, - 0.8832087516784668, - 0.9125375151634216, - 0.9483175873756409, - 0.9895728826522827, - 1.0351781845092773, - 1.0838892459869385, - 1.1343775987625122, - 1.1852660179138184, - 1.235166311264038, - 1.2827174663543701, - 1.3266221284866333, - 1.3656830787658691, - 1.3988345861434937, - 1.4251723289489746, - 1.4439780712127686, - 1.454738736152649, - 0.8433464765548706, - 0.8570891618728638, - 0.8787955641746521, - 0.9078736305236816, - 0.9435300827026367, - 0.9847924113273621, - 1.030535101890564, - 1.0795103311538696, - 1.1303821802139282, - 1.1817630529403687, - 1.2322514057159424, - 1.2804701328277588, - 1.325103759765625, - 1.3649349212646484, - 1.3988770246505737, - 1.426004409790039, - 1.4455769062042236, - 1.4570608139038086, - 1.460142731666565, - 1.4547386169433594, - 0.8433464765548706, - 0.8722164630889893, - 0.908637523651123, - 0.9516161680221558, - 0.999980092048645, - 1.0524101257324219, - 1.107475996017456, - 1.1636756658554077, - 1.2194762229919434, - 1.273355484008789, - 1.3238438367843628, - 1.3695640563964844, - 1.409269094467163, - 1.4418758153915405, - 1.4664947986602783, - 1.4824544191360474, - 1.4893195629119873, - 1.4869027137756348, - 1.4752700328826904, - 1.4547386169433594, - 0.8433464765548706, - 0.8846670389175415, - 0.9331990480422974, - 0.9876186847686768, - 1.0464415550231934, - 1.1080631017684937, - 1.1708024740219116, - 1.2329483032226562, - 1.2928054332733154, - 1.348741054534912, - 1.3992294073104858, - 1.442893385887146, - 1.4785418510437012, - 1.5052024126052856, - 1.52214777469635, - 1.5289158821105957, - 1.5253220796585083, - 1.5114643573760986, - 1.4877206087112427, - 1.4547386169433594, - 0.8433464765548706, - 0.8930916786193848, - 0.9498186111450195, - 1.0119798183441162, - 1.0778796672821045, - 1.1457207202911377, - 1.2136523723602295, - 1.2798216342926025, - 1.342423677444458, - 1.3997505903244019, - 1.4502389430999756, - 1.492511510848999, - 1.5254151821136475, - 1.548052191734314, - 1.5598053932189941, - 1.5603539943695068, - 1.5496830940246582, - 1.5280838012695312, - 1.496145248413086, - 1.4547386169433594, - 0.8433464765548706, - 0.8965775370597839, - 0.9566951394081116, - 1.022059440612793, - 1.0908875465393066, - 1.161302089691162, - 1.2313820123672485, - 1.2992160320281982, - 1.362953782081604, - 1.4208564758300781, - 1.4713448286056519, - 1.5130417346954346, - 1.5448095798492432, - 1.565781831741333, - 1.5753867626190186, - 1.573361873626709, - 1.5597628355026245, - 1.534960389137268, - 1.4996311664581299, - 1.4547386169433594, - 0.8433464765548706, - 0.8947467803955078, - 0.9530835151672363, - 1.0167655944824219, - 1.0840556621551514, - 1.15311861038208, - 1.2220702171325684, - 1.2890299558639526, - 1.3521711826324463, - 1.40977144241333, - 1.4602599143981934, - 1.5022590160369873, - 1.534623384475708, - 1.5564701557159424, - 1.5672032833099365, - 1.5665299892425537, - 1.5544688701629639, - 1.531348705291748, - 1.497800350189209, - 1.4547386169433594, - 0.8433464765548706, - 0.8877977728843689, - 0.939375102519989, - 0.9966716170310974, - 1.0581244230270386, - 1.1220571994781494, - 1.1867260932922363, - 1.2503671646118164, - 1.311244249343872, - 1.3676968812942505, - 1.4181852340698242, - 1.461332082748413, - 1.4959605932235718, - 1.5211260318756104, - 1.5361418724060059, - 1.540598750114441, - 1.5343749523162842, - 1.5176403522491455, - 1.4908514022827148, - 1.4547386169433594, - 0.8433464765548706, - 0.8764835596084595, - 0.9170553684234619, - 0.9639551639556885, - 1.0159037113189697, - 1.071483850479126, - 1.12917959690094, - 1.1874171495437622, - 1.2446080446243286, - 1.2991920709609985, - 1.3496804237365723, - 1.3946958780288696, - 1.4330105781555176, - 1.4635794162750244, - 1.4855685234069824, - 1.498378038406372, - 1.50165855884552, - 1.4953206777572632, - 1.4795372486114502, - 1.4547386169433594, - 0.8433464765548706, - 0.8620303273200989, - 0.8885430693626404, - 0.9221615791320801, - 0.9619687795639038, - 1.0068788528442383, - 1.0556668043136597, - 1.107001781463623, - 1.1594836711883545, - 1.21168053150177, - 1.2621688842773438, - 1.3095715045928955, - 1.352595329284668, - 1.3900666236877441, - 1.4209635257720947, - 1.4444431066513062, - 1.4598649740219116, - 1.4668083190917969, - 1.4650838375091553, - 1.4547386169433594, - 0.8433465361595154, - 0.8460041284561157, - 0.8569278717041016, - 0.8758198022842407, - 0.9021644592285156, - 0.9352433085441589, - 0.9741540551185608, - 1.017835259437561, - 1.0650955438613892, - 1.1146457195281982, - 1.165134072303772, - 1.2151834964752197, - 1.263428807258606, - 1.30855393409729, - 1.3493279218673706, - 1.384638786315918, - 1.4135231971740723, - 1.4351931810379028, - 1.4490578174591064, - 1.4547386169433594, - 0.8433465361595154, - 0.8301418423652649, - 0.8256359100341797, - 0.8299517631530762, - 0.8429714441299438, - 0.86434006690979, - 0.8934745788574219, - 0.9295803308486938, - 0.9716724157333374, - 1.018602728843689, - 1.0690910816192627, - 1.121760368347168, - 1.1751737594604492, - 1.2278743982315063, - 1.2784247398376465, - 1.3254457712173462, - 1.3676550388336182, - 1.403901219367981, - 1.4331953525543213, - 1.454738736152649 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.5763612985610962, - -0.5743646621704102, - -0.5575560331344604, - -0.5263940095901489, - -0.4817286431789398, - -0.42477816343307495, - -0.3570961058139801, - -0.2805286645889282, - -0.19716434180736542, - -0.10927714407444, - -0.019264407455921173, - 0.07041856646537781, - 0.15732546150684357, - 0.23908570408821106, - 0.3134689927101135, - 0.378446489572525, - 0.432245671749115, - 0.4733991026878357, - 0.500784158706665, - 0.5136538743972778, - -0.5763612985610962, - -0.5684716701507568, - -0.545930802822113, - -0.5093536376953125, - -0.4597379267215729, - -0.398436963558197, - -0.3271229565143585, - -0.24774111807346344, - -0.16245679557323456, - -0.07359632849693298, - 0.016416411846876144, - 0.10512609779834747, - 0.19011299312114716, - 0.26905885338783264, - 0.33981019258499146, - 0.40043720602989197, - 0.4492860734462738, - 0.4850243330001831, - 0.5066771507263184, - 0.5136538743972778, - -0.5763612985610962, - -0.5626281499862671, - -0.5344031453132629, - -0.4924562871456146, - -0.43793177604675293, - -0.3723168671131134, - -0.29740139842033386, - -0.21522881090641022, - -0.1280405968427658, - -0.03821500390768051, - 0.05179773271083832, - 0.13954231142997742, - 0.22262531518936157, - 0.2987804114818573, - 0.3659302890300751, - 0.4222433269023895, - 0.4661834239959717, - 0.4965519905090332, - 0.5125206708908081, - 0.5136538743972778, - -0.5763612985610962, - -0.5574672818183899, - -0.5242222547531128, - -0.4775330424308777, - -0.41867324709892273, - -0.34924840927124023, - -0.27115219831466675, - -0.18651491403579712, - -0.09764525294303894, - -0.006967304274439812, - 0.08304543048143387, - 0.16993765532970428, - 0.2513391971588135, - 0.3250296115875244, - 0.38899877667427063, - 0.4415018558502197, - 0.48110663890838623, - 0.5067328810691833, - 0.5176815390586853, - 0.5136538743972778, - -0.5763612985610962, - -0.5535484552383423, - -0.5164914131164551, - -0.4662010967731476, - -0.4040493369102478, - -0.331731379032135, - -0.25121989846229553, - -0.16471104323863983, - -0.07456456124782562, - 0.01676062121987343, - 0.10677336156368256, - 0.1930183470249176, - 0.27314305305480957, - 0.34496191143989563, - 0.40651577711105347, - 0.45612579584121704, - 0.4924386143684387, - 0.5144637227058411, - 0.5216003656387329, - 0.5136538743972778, - -0.5763612985610962, - -0.5512961745262146, - -0.5120483636856079, - -0.4596884548664093, - -0.3956446945667267, - -0.321664035320282, - -0.2397644817829132, - -0.1521800011396408, - -0.06129969283938408, - 0.030397456139326096, - 0.12041018903255463, - 0.20628321170806885, - 0.2856740951538086, - 0.35641732811927795, - 0.4165831208229065, - 0.46453043818473816, - 0.498951256275177, - 0.5189067721366882, - 0.5238526463508606, - 0.5136538743972778, - -0.5763612985610962, - -0.5509546399116516, - -0.5113745927810669, - -0.4587008059024811, - -0.3943701684474945, - -0.3201373517513275, - -0.23802728950977325, - -0.1502796858549118, - -0.059288110584020615, - 0.032465457916259766, - 0.12247820198535919, - 0.2082947939634323, - 0.2875744104385376, - 0.3581545352935791, - 0.41810983419418335, - 0.46580496430397034, - 0.4999389052391052, - 0.5195805430412292, - 0.5241941809654236, - 0.5136538743972778, - -0.5763612985610962, - -0.5525608062744141, - -0.5145430564880371, - -0.4633452296257019, - -0.4003638029098511, - -0.3273167312145233, - -0.24619658291339874, - -0.159216046333313, - -0.06874777376651764, - 0.022740524262189865, - 0.1127532571554184, - 0.19883513450622559, - 0.2786380648612976, - 0.3499852418899536, - 0.41093042492866516, - 0.4598113000392914, - 0.495294451713562, - 0.516412079334259, - 0.5225880146026611, - 0.5136538743972778, - -0.5763612985610962, - -0.5559406280517578, - -0.5212105512619019, - -0.4731184244155884, - -0.41297614574432373, - -0.342424213886261, - -0.2633870840072632, - -0.1780206859111786, - -0.08865359425544739, - 0.0022764913737773895, - 0.09228922426700592, - 0.17892929911613464, - 0.259833425283432, - 0.332794725894928, - 0.3958229720592499, - 0.4471989572048187, - 0.4855213165283203, - 0.5097446441650391, - 0.5192081928253174, - 0.5136538743972778, - -0.5763612985610962, - -0.5607278347015381, - -0.5306543111801147, - -0.4869612753391266, - -0.4308404326438904, - -0.3638226389884949, - -0.2877359688282013, - -0.20465582609176636, - -0.11684846878051758, - -0.02670902945101261, - 0.06330370903015137, - 0.15073443949222565, - 0.23319828510284424, - 0.30844584107398987, - 0.3744245171546936, - 0.4293346703052521, - 0.4716784358024597, - 0.5003007650375366, - 0.5144209861755371, - 0.5136538743972778, - -0.5763612985610962, - -0.5664036273956299, - -0.5418512225151062, - -0.5033737421035767, - -0.4520208239555359, - -0.38919317722320557, - -0.3166046142578125, - -0.2362351417541504, - -0.1502770483493805, - -0.06107501685619354, - 0.02893771603703499, - 0.11730585992336273, - 0.2016189694404602, - 0.27957719564437866, - 0.3490539789199829, - 0.40815430879592896, - 0.45526596903800964, - 0.48910391330718994, - 0.5087451338768005, - 0.5136538743972778, - -0.5763612985610962, - -0.5723530650138855, - -0.5535877346992493, - -0.5205772519111633, - -0.4742220342159271, - -0.4157865047454834, - -0.3468646705150604, - -0.2693365216255188, - -0.18531681597232819, - -0.09709738194942474, - -0.007084649056196213, - 0.08226609230041504, - 0.1685175895690918, - 0.24931713938713074, - 0.3224606513977051, - 0.38595306873321533, - 0.438062459230423, - 0.4773674011230469, - 0.5027957558631897, - 0.5136538743972778, - -0.5763612985610962, - -0.5779313445091248, - -0.5645921230316162, - -0.5367075204849243, - -0.4950382709503174, - -0.4407208561897278, - -0.37523701786994934, - -0.3003729283809662, - -0.2181706726551056, - -0.13087254762649536, - -0.040859807282686234, - 0.04941222816705704, - 0.1374811977148056, - 0.22094479203224182, - 0.2975262999534607, - 0.36513686180114746, - 0.421932190656662, - 0.4663630425930023, - 0.49721747636795044, - 0.5136538743972778, - -0.5763612985610962, - -0.5825339555740356, - -0.573671817779541, - -0.5500166416168213, - -0.5122137069702148, - -0.4612942337989807, - -0.3986470401287079, - -0.325981080532074, - -0.24527841806411743, - -0.15874044597148895, - -0.06872771680355072, - 0.022304482758045197, - 0.11187303066253662, - 0.19753475487232208, - 0.27695292234420776, - 0.3479613661766052, - 0.408623069524765, - 0.4572833478450775, - 0.49261486530303955, - 0.5136538743972778, - -0.5763612985610962, - -0.5856621861457825, - -0.5798429250717163, - -0.5590623021125793, - -0.5238872766494751, - -0.4752770960330963, - -0.41455790400505066, - -0.3433859050273895, - -0.2637024521827698, - -0.17768113315105438, - -0.08766840398311615, - 0.003880441188812256, - 0.09446820616722107, - 0.1816238909959793, - 0.26297006011009216, - 0.33628788590431213, - 0.39957737922668457, - 0.4511122405529022, - 0.4894866347312927, - 0.5136538743972778, - -0.5763612985610962, - -0.5869770050048828, - -0.5824366807937622, - -0.5628643035888672, - -0.5287936925888062, - -0.48115426301956177, - -0.42124542593955994, - -0.35070136189460754, - -0.2714462876319885, - -0.18564213812351227, - -0.09562940895557404, - -0.0038634035736322403, - 0.08715275675058365, - 0.17493636906147003, - 0.2570928633213043, - 0.3313813805580139, - 0.39577537775039673, - 0.44851842522621155, - 0.4881718158721924, - 0.5136538743972778, - -0.5763612985610962, - -0.5863359570503235, - -0.5811721086502075, - -0.5610106587409973, - -0.5264015197753906, - -0.47828882932662964, - -0.41798490285873413, - -0.34713467955589294, - -0.26767075061798096, - -0.1817607283592224, - -0.09174799919128418, - -0.0000878646969795227, - 0.09071942418813705, - 0.17819689214229584, - 0.25995829701423645, - 0.33377355337142944, - 0.397629052400589, - 0.4497830271720886, - 0.4888128638267517, - 0.5136538743972778, - -0.5763612985610962, - -0.5838084816932678, - -0.5761861205101013, - -0.553702175617218, - -0.5169699192047119, - -0.4669913351535797, - -0.40512967109680176, - -0.33307239413261414, - -0.25278499722480774, - -0.16645753383636475, - -0.07644479721784592, - 0.014797903597354889, - 0.10478171706199646, - 0.1910521239042282, - 0.27125582098960876, - 0.34320518374443054, - 0.4049375355243683, - 0.4547690153121948, - 0.4913403391838074, - 0.5136538743972778, - -0.5763612985610962, - -0.5796685218811035, - -0.5680190920829773, - -0.5417308211326599, - -0.5015208721160889, - -0.44848597049713135, - -0.38407275080680847, - -0.31003832817077637, - -0.2284020632505417, - -0.141390860080719, - -0.05137811601161957, - 0.03918083757162094, - 0.12781578302383423, - 0.2121090292930603, - 0.28976118564605713, - 0.3586542308330536, - 0.416908860206604, - 0.46293604373931885, - 0.4954802989959717, - 0.5136538743972778, - -0.5763612985610962, - -0.5743646621704102, - -0.5575560331344604, - -0.5263940095901489, - -0.48172861337661743, - -0.42477816343307495, - -0.3570960760116577, - -0.28052860498428345, - -0.19716432690620422, - -0.10927712172269821, - -0.01926438882946968, - 0.070418581366539, - 0.15732547640800476, - 0.23908570408821106, - 0.3134689927101135, - 0.378446489572525, - 0.432245671749115, - 0.4733991026878357, - 0.500784158706665, - 0.5136538743972778 - ], - "y": [ - -2.494345188140869, - -2.5196797847747803, - -2.544847011566162, - -2.569159984588623, - -2.5919556617736816, - -2.61261248588562, - -2.6305665969848633, - -2.6453282833099365, - -2.6564953327178955, - -2.6637625694274902, - -2.6669323444366455, - -2.6659176349639893, - -2.6607463359832764, - -2.651559829711914, - -2.63860821723938, - -2.6222448348999023, - -2.6029162406921387, - -2.5811498165130615, - -2.5575387477874756, - -2.5327277183532715, - -2.494345188140869, - -2.5359976291656494, - -2.5770373344421387, - -2.616344928741455, - -2.652848243713379, - -2.685551404953003, - -2.713562488555908, - -2.736117124557495, - -2.75260066986084, - -2.7625629901885986, - -2.765732765197754, - -2.7620229721069336, - -2.751535177230835, - -2.73455548286438, - -2.7115471363067627, - -2.6831371784210205, - -2.6501011848449707, - -2.613340139389038, - -2.5738565921783447, - -2.5327277183532715, - -2.494345188140869, - -2.547830104827881, - -2.600379467010498, - -2.650559902191162, - -2.69700288772583, - -2.738441228866577, - -2.773744821548462, - -2.801950693130493, - -2.822289228439331, - -2.8342058658599854, - -2.8373754024505615, - -2.831711530685425, - -2.817368745803833, - -2.7947380542755127, - -2.764436960220337, - -2.727292060852051, - -2.684316396713257, - -2.6366822719573975, - -2.585689067840576, - -2.5327277183532715, - -2.494345188140869, - -2.5538949966430664, - -2.6123437881469727, - -2.668097496032715, - -2.719635009765625, - -2.7655506134033203, - -2.8045921325683594, - -2.8356945514678955, - -2.858009099960327, - -2.870927333831787, - -2.8740968704223633, - -2.867431402206421, - -2.8511126041412354, - -2.82558536529541, - -2.791546583175659, - -2.7499241828918457, - -2.7018537521362305, - -2.648646593093872, - -2.5917539596557617, - -2.5327277183532715, - -2.494345188140869, - -2.553534984588623, - -2.611633777618408, - -2.6670565605163574, - -2.718291997909546, - -2.763942003250122, - -2.8027615547180176, - -2.8336920738220215, - -2.855889320373535, - -2.868748188018799, - -2.871917963027954, - -2.865311861038208, - -2.8491101264953613, - -2.8237550258636475, - -2.789937734603882, - -2.7485811710357666, - -2.700813055038452, - -2.6479365825653076, - -2.5913939476013184, - -2.5327277183532715, - -2.494345188140869, - -2.5467894077301025, - -2.5983264446258545, - -2.647550582885742, - -2.6931192874908447, - -2.7337894439697266, - -2.768451690673828, - -2.7961604595184326, - -2.816159963607788, - -2.82790470123291, - -2.8310742378234863, - -2.825582265853882, - -2.8115785121917725, - -2.789444923400879, - -2.7597851753234863, - -2.7234084606170654, - -2.681307077407837, - -2.634629249572754, - -2.584648370742798, - -2.5327277183532715, - -2.494345188140869, - -2.534389019012451, - -2.5738637447357178, - -2.6116931438446045, - -2.6468451023101807, - -2.6783607006073, - -2.7053802013397217, - -2.7271668910980225, - -2.743126153945923, - -2.7528228759765625, - -2.7559924125671387, - -2.7525484561920166, - -2.7425849437713623, - -2.7263734340667725, - -2.7043564319610596, - -2.6771342754364014, - -2.645449638366699, - -2.610166549682617, - -2.5722479820251465, - -2.5327277183532715, - -2.494345188140869, - -2.5176775455474854, - -2.5408968925476074, - -2.5633697509765625, - -2.5844836235046387, - -2.6036620140075684, - -2.620382070541382, - -2.6341874599456787, - -2.6447019577026367, - -2.6516387462615967, - -2.654808282852173, - -2.6541244983673096, - -2.6496055126190186, - -2.6413750648498535, - -2.629657745361328, - -2.6147725582122803, - -2.5971262454986572, - -2.577199697494507, - -2.5555365085601807, - -2.5327277183532715, - -2.494345188140869, - -2.4984660148620605, - -2.502997875213623, - -2.507817268371582, - -2.5127925872802734, - -2.5177881717681885, - -2.52266788482666, - -2.5272984504699707, - -2.5315537452697754, - -2.5353174209594727, - -2.538486957550049, - -2.540976047515869, - -2.5427165031433105, - -2.543661117553711, - -2.5437839031219482, - -2.543081760406494, - -2.5415735244750977, - -2.5393006801605225, - -2.536324977874756, - -2.5327277183532715, - -2.494345188140869, - -2.4788362979888916, - -2.4642739295959473, - -2.4510555267333984, - -2.4395411014556885, - -2.4300453662872314, - -2.4228267669677734, - -2.4180827140808105, - -2.415942430496216, - -2.41646409034729, - -2.419633626937866, - -2.4253647327423096, - -2.4335007667541504, - -2.443819999694824, - -2.456041097640991, - -2.469830274581909, - -2.484811782836914, - -2.5005767345428467, - -2.516695261001587, - -2.5327277183532715, - -2.494345188140869, - -2.4609158039093018, - -2.4289214611053467, - -2.399235486984253, - -2.372667074203491, - -2.3499414920806885, - -2.3316781520843506, - -2.3183753490448, - -2.310396194458008, - -2.3079581260681152, - -2.3111279010772705, - -2.3198184967041016, - -2.3337934017181396, - -2.3526713848114014, - -2.375936985015869, - -2.402956247329712, - -2.4329917430877686, - -2.465224266052246, - -2.498774766921997, - -2.5327277183532715, - -2.494345188140869, - -2.446645975112915, - -2.400771379470825, - -2.3579726219177246, - -2.3194172382354736, - -2.2861571311950684, - -2.259099006652832, - -2.2389814853668213, - -2.226353168487549, - -2.2215583324432373, - -2.2247278690338135, - -2.2357754707336426, - -2.254399538040161, - -2.280092239379883, - -2.312152862548828, - -2.3497064113616943, - -2.3917288780212402, - -2.4370741844177246, - -2.4845049381256104, - -2.5327277183532715, - -2.494345188140869, - -2.4375736713409424, - -2.382874011993408, - -2.3317387104034424, - -2.285562038421631, - -2.2456042766571045, - -2.2129547595977783, - -2.188504457473755, - -2.1729202270507812, - -2.1666269302368164, - -2.1697964668273926, - -2.182342529296875, - -2.2039225101470947, - -2.233947992324829, - -2.2716000080108643, - -2.3158512115478516, - -2.365494966506958, - -2.4191768169403076, - -2.4754326343536377, - -2.5327277183532715, - -2.494345188140869, - -2.4346816539764404, - -2.377169132232666, - -2.323376178741455, - -2.274770498275757, - -2.232677459716797, - -2.1982457637786865, - -2.1724143028259277, - -2.1558876037597656, - -2.1491169929504395, - -2.1522865295410156, - -2.1653101444244385, - -2.1878323554992676, - -2.2192389965057373, - -2.2586731910705566, - -2.3050594329833984, - -2.3571324348449707, - -2.4134719371795654, - -2.4725406169891357, - -2.5327277183532715, - -2.494345188140869, - -2.438283681869507, - -2.38427472114563, - -2.333791494369507, - -2.2882115840911865, - -2.2487776279449463, - -2.2165658473968506, - -2.1924545764923096, - -2.1771016120910645, - -2.1709256172180176, - -2.1740951538085938, - -2.186523914337158, - -2.2078726291656494, - -2.2375590801239014, - -2.274773359298706, - -2.318500518798828, - -2.3675479888916016, - -2.42057728767395, - -2.476142644882202, - -2.5327277183532715, - -2.494345188140869, - -2.447988986968994, - -2.4034206867218018, - -2.361855983734131, - -2.3244287967681885, - -2.2921600341796875, - -2.265929937362671, - -2.2464537620544434, - -2.234262704849243, - -2.229689836502075, - -2.2328593730926514, - -2.243685007095337, - -2.261871814727783, - -2.2869229316711426, - -2.3181557655334473, - -2.354717969894409, - -2.3956124782562256, - -2.439723491668701, - -2.4858479499816895, - -2.5327277183532715, - -2.494345188140869, - -2.4627461433410645, - -2.432532548904419, - -2.4045286178588867, - -2.37949800491333, - -2.358123540878296, - -2.3409883975982666, - -2.3285598754882812, - -2.3211772441864014, - -2.3190414905548096, - -2.3222110271453857, - -2.330599546432495, - -2.343977928161621, - -2.3619816303253174, - -2.3841192722320557, - -2.409787178039551, - -2.4382848739624023, - -2.4688353538513184, - -2.5006051063537598, - -2.5327277183532715, - -2.494345188140869, - -2.4809560775756836, - -2.4684555530548096, - -2.4571847915649414, - -2.447450876235962, - -2.4395198822021484, - -2.433607816696167, - -2.4298760890960693, - -2.4284262657165527, - -2.429297924041748, - -2.4324676990509033, - -2.4378485679626465, - -2.445294141769409, - -2.4546010494232178, - -2.465515613555908, - -2.4777400493621826, - -2.490941047668457, - -2.504758358001709, - -2.518815040588379, - -2.5327277183532715, - -2.494345188140869, - -2.500645160675049, - -2.507296562194824, - -2.5141184329986572, - -2.5209243297576904, - -2.5275285243988037, - -2.5337512493133545, - -2.5394225120544434, - -2.5443878173828125, - -2.548511266708374, - -2.5516810417175293, - -2.5538101196289062, - -2.554840564727783, - -2.5547444820404053, - -2.5535242557525635, - -2.551213502883911, - -2.547874689102173, - -2.5435993671417236, - -2.538504123687744, - -2.5327277183532715, - -2.494345188140869, - -2.5196797847747803, - -2.544847011566162, - -2.569159984588623, - -2.5919556617736816, - -2.61261248588562, - -2.6305665969848633, - -2.6453285217285156, - -2.6564953327178955, - -2.6637628078460693, - -2.6669323444366455, - -2.6659176349639893, - -2.6607465744018555, - -2.651559829711914, - -2.63860821723938, - -2.6222448348999023, - -2.6029162406921387, - -2.5811498165130615, - -2.5575387477874756, - -2.5327277183532715 - ], - "z": [ - 1.189051628112793, - 1.2083810567855835, - 1.231077790260315, - 1.25652277469635, - 1.2840218544006348, - 1.312825083732605, - 1.342146635055542, - 1.3711867332458496, - 1.399153232574463, - 1.425283432006836, - 1.448864221572876, - 1.4692527055740356, - 1.485892653465271, - 1.4983301162719727, - 1.506225824356079, - 1.5093644857406616, - 1.5076603889465332, - 1.5011601448059082, - 1.490040898323059, - 1.4746060371398926, - 1.189051628112793, - 1.1836930513381958, - 1.182375192642212, - 1.1851340532302856, - 1.1918944120407104, - 1.2024717330932617, - 1.2165776491165161, - 1.2338273525238037, - 1.253750205039978, - 1.2758028507232666, - 1.2993837594985962, - 1.3238496780395508, - 1.348533272743225, - 1.3727611303329468, - 1.3958725929260254, - 1.4172370433807373, - 1.4362716674804688, - 1.4524575471878052, - 1.4653528928756714, - 1.4746060371398926, - 1.189051628112793, - 1.1597967147827148, - 1.1352344751358032, - 1.116034746170044, - 1.1027213335037231, - 1.0956573486328125, - 1.0950355529785156, - 1.1008727550506592, - 1.1130099296569824, - 1.1311159133911133, - 1.1546968221664429, - 1.1831094026565552, - 1.2155786752700806, - 1.2512190341949463, - 1.2890580892562866, - 1.3280638456344604, - 1.367172360420227, - 1.405316710472107, - 1.4414565563201904, - 1.4746060371398926, - 1.189051628112793, - 1.1392816305160522, - 1.0947638750076294, - 1.0567126274108887, - 1.0261658430099487, - 1.0039567947387695, - 0.9906911253929138, - 0.9867308735847473, - 0.9921839237213135, - 1.006901741027832, - 1.0304826498031616, - 1.0622833967208862, - 1.101436734199524, - 1.1468745470046997, - 1.197357416152954, - 1.2515084743499756, - 1.3078502416610718, - 1.3648462295532227, - 1.4209415912628174, - 1.4746060371398926, - 1.189051628112793, - 1.1243709325790405, - 1.0653492212295532, - 1.0135964155197144, - 0.9705240726470947, - 0.9373071789741516, - 0.9148519039154053, - 0.9037705659866333, - 0.9043655395507812, - 0.916620671749115, - 0.9402015805244446, - 0.974465012550354, - 1.0184764862060547, - 1.071035385131836, - 1.1307079792022705, - 1.195866584777832, - 1.2647340297698975, - 1.3354315757751465, - 1.4060308933258057, - 1.4746060371398926, - 1.189051628112793, - 1.1166805028915405, - 1.050178050994873, - 0.99135822057724, - 0.9418255686759949, - 0.9029312133789062, - 0.8757361173629761, - 0.8609819412231445, - 0.8590712547302246, - 0.8700562715530396, - 0.8936371803283691, - 0.9291707277297974, - 0.9756878614425659, - 1.0319194793701172, - 1.0963319540023804, - 1.167168140411377, - 1.2424958944320679, - 1.3202602863311768, - 1.3983403444290161, - 1.4746060371398926, - 1.189051628112793, - 1.1170434951782227, - 1.0508941411972046, - 0.9924079775810242, - 0.9431803226470947, - 0.9045539498329163, - 0.8775825500488281, - 0.863001823425293, - 0.8612093925476074, - 0.8722543120384216, - 0.8958352208137512, - 0.9313088655471802, - 0.9777077436447144, - 1.0337660312652588, - 1.0979546308517456, - 1.168522834777832, - 1.243545651435852, - 1.3209764957427979, - 1.3987033367156982, - 1.4746060371398926, - 1.189051628112793, - 1.1254208087921143, - 1.0674201250076294, - 1.0166319608688354, - 0.974441409111023, - 0.9419995546340942, - 0.92019122838974, - 0.9096112251281738, - 0.9105482697486877, - 0.9229767322540283, - 0.9465576410293579, - 0.9806477427482605, - 1.0243171453475952, - 1.0763747692108154, - 1.1354002952575684, - 1.1997840404510498, - 1.2677695751190186, - 1.3375024795532227, - 1.4070806503295898, - 1.4746060371398926, - 1.189051628112793, - 1.140904426574707, - 1.097965121269226, - 1.061405062675476, - 1.0322213172912598, - 1.0112102031707764, - 0.9989447593688965, - 0.9957594871520996, - 1.0017412900924683, - 1.0167269706726074, - 1.040307879447937, - 1.071840763092041, - 1.110465407371521, - 1.1551282405853271, - 1.2046109437942505, - 1.2575639486312866, - 1.3125426769256592, - 1.3680474758148193, - 1.4225642681121826, - 1.4746060371398926, - 1.189051628112793, - 1.1618165969848633, - 1.139219045639038, - 1.1218754053115845, - 1.11025869846344, - 1.10468590259552, - 1.105309009552002, - 1.1121108531951904, - 1.124906063079834, - 1.1433457136154175, - 1.166926622390747, - 1.1950056552886963, - 1.2268167734146118, - 1.2614924907684326, - 1.2980866432189941, - 1.3356013298034668, - 1.3730130195617676, - 1.4093014001846313, - 1.4434764385223389, - 1.4746060371398926, - 1.189051628112793, - 1.1858911514282227, - 1.1867114305496216, - 1.1914901733398438, - 1.2000969648361206, - 1.2122970819473267, - 1.2277576923370361, - 1.2460570335388184, - 1.2666960954666138, - 1.289111852645874, - 1.3126927614212036, - 1.3367955684661865, - 1.3607629537582397, - 1.3839411735534668, - 1.4056978225708008, - 1.4254395961761475, - 1.4426277875900269, - 1.4567937850952148, - 1.4675509929656982, - 1.4746060371398926, - 1.189051628112793, - 1.2105191946029663, - 1.2352957725524902, - 1.2627054452896118, - 1.2920007705688477, - 1.3223823308944702, - 1.3530216217041016, - 1.3830828666687012, - 1.4117460250854492, - 1.4382293224334717, - 1.4618102312088013, - 1.481845498085022, - 1.4977887868881226, - 1.5092051029205322, - 1.5157830715179443, - 1.517343282699585, - 1.513843059539795, - 1.505378007888794, - 1.492179036140442, - 1.4746060371398926, - 1.189051628112793, - 1.2330318689346313, - 1.2797070741653442, - 1.3278039693832397, - 1.376010775566101, - 1.4230122566223145, - 1.4675266742706299, - 1.508339524269104, - 1.544337511062622, - 1.5745389461517334, - 1.598119854927063, - 1.6144371032714844, - 1.6230454444885254, - 1.6237101554870605, - 1.6164131164550781, - 1.601353406906128, - 1.5789417028427124, - 1.5497894287109375, - 1.514691710472107, - 1.4746060371398926, - 1.189051628112793, - 1.2509896755218506, - 1.3151328563690186, - 1.3797314167022705, - 1.4430233240127563, - 1.5032821893692017, - 1.5588642358779907, - 1.6082533597946167, - 1.6501023769378662, - 1.6832696199417114, - 1.706850528717041, - 1.720201849937439, - 1.722959280014038, - 1.7150477170944214, - 1.6966830492019653, - 1.6683659553527832, - 1.6308690309524536, - 1.5852150917053223, - 1.5326495170593262, - 1.4746060371398926, - 1.189051628112793, - 1.2624465227127075, - 1.3377341032028198, - 1.4128605127334595, - 1.4857765436172485, - 1.5544934272766113, - 1.6171364784240723, - 1.6719971895217896, - 1.7175788879394531, - 1.752638339996338, - 1.7762192487716675, - 1.7876783609390259, - 1.786703109741211, - 1.773319959640503, - 1.7478941679000854, - 1.7111191749572754, - 1.6639981269836426, - 1.6078163385391235, - 1.544106364250183, - 1.4746060371398926, - 1.189051628112793, - 1.2661609649658203, - 1.3450615406036377, - 1.4236011505126953, - 1.499637484550476, - 1.571096420288086, - 1.6360288858413696, - 1.6926634311676025, - 1.7394553422927856, - 1.7751282453536987, - 1.7987091541290283, - 1.8095548152923584, - 1.807369351387024, - 1.7922123670578003, - 1.7644972801208496, - 1.724980115890503, - 1.674738883972168, - 1.615143895149231, - 1.547820806503296, - 1.4746060371398926, - 1.189051628112793, - 1.2617303133010864, - 1.336321234703064, - 1.4107896089553833, - 1.4831041097640991, - 1.5512921810150146, - 1.6134939193725586, - 1.6680126190185547, - 1.7133610248565674, - 1.7483022212982178, - 1.7718830108642578, - 1.7834604978561401, - 1.7827184200286865, - 1.7696774005889893, - 1.7446930408477783, - 1.708446741104126, - 1.6619272232055664, - 1.6064035892486572, - 1.5433902740478516, - 1.4746060371398926, - 1.189051628112793, - 1.2496349811553955, - 1.3124603033065796, - 1.3758140802383423, - 1.4379678964614868, - 1.497226595878601, - 1.5519737005233765, - 1.6007158756256104, - 1.6421234607696533, - 1.6750669479370117, - 1.6986478567123413, - 1.712222933769226, - 1.7154217958450317, - 1.7081573009490967, - 1.6906274557113647, - 1.6633105278015137, - 1.6269516944885254, - 1.5825426578521729, - 1.531294822692871, - 1.4746060371398926, - 1.189051628112793, - 1.2311854362487793, - 1.276064395904541, - 1.3224645853042603, - 1.3691202402114868, - 1.4147586822509766, - 1.4581348896026611, - 1.4980659484863281, - 1.533462405204773, - 1.5633587837219238, - 1.5869396924972534, - 1.6035618782043457, - 1.6127718687057495, - 1.6143183708190918, - 1.6081594228744507, - 1.5944628715515137, - 1.5736021995544434, - 1.5461467504501343, - 1.5128452777862549, - 1.4746060371398926, - 1.189051628112793, - 1.2083810567855835, - 1.231077790260315, - 1.25652277469635, - 1.2840218544006348, - 1.3128249645233154, - 1.3421465158462524, - 1.3711867332458496, - 1.399153232574463, - 1.4252833127975464, - 1.448864221572876, - 1.4692527055740356, - 1.4858925342559814, - 1.4983301162719727, - 1.506225824356079, - 1.5093644857406616, - 1.5076603889465332, - 1.5011600255966187, - 1.490040898323059, - 1.4746060371398926 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.7037211060523987, - -0.6898926496505737, - -0.6596611738204956, - -0.6138513088226318, - -0.5537126064300537, - -0.48088547587394714, - -0.3973565399646759, - -0.3054041862487793, - -0.20753665268421173, - -0.10642349720001221, - -0.004822827875614166, - 0.09449397027492523, - 0.18881776928901672, - 0.2755756676197052, - 0.35240107774734497, - 0.4171985387802124, - 0.4682005047798157, - 0.5040156245231628, - 0.5236670970916748, - 0.5266188979148865, - -0.7037211060523987, - -0.6931641697883606, - -0.6661149859428406, - -0.6233113408088684, - -0.5659208297729492, - -0.49550893902778625, - -0.41399627923965454, - -0.32360637187957764, - -0.226804718375206, - -0.12623187899589539, - -0.024631209671497345, - 0.07522588968276978, - 0.17061561346054077, - 0.2589358985424042, - 0.33777764439582825, - 0.4049902856349945, - 0.4587404131889343, - 0.49756181240081787, - 0.5203955769538879, - 0.5266188979148865, - -0.7037211060523987, - -0.6966705322265625, - -0.6730320453643799, - -0.6334503889083862, - -0.5790053606033325, - -0.5111819505691528, - -0.4318303167819977, - -0.3431149423122406, - -0.24745571613311768, - -0.14746198058128357, - -0.04586131498217583, - 0.05457489192485809, - 0.15110701322555542, - 0.24110186100006104, - 0.3221046030521393, - 0.3919057846069336, - 0.4486013650894165, - 0.49064481258392334, - 0.5168892741203308, - 0.5266188979148865, - -0.7037211060523987, - -0.7000316977500916, - -0.6796627044677734, - -0.6431697010993958, - -0.5915481448173523, - -0.5262061357498169, - -0.44892606139183044, - -0.3618159294128418, - -0.26725178956985474, - -0.16781318187713623, - -0.06621252000331879, - 0.03477881848812103, - 0.13240604102611542, - 0.22400611639022827, - 0.3070804178714752, - 0.3793630003929138, - 0.438882052898407, - 0.4840141534805298, - 0.5135281085968018, - 0.5266188979148865, - -0.7037211060523987, - -0.7028834819793701, - -0.6852884888648987, - -0.651416003704071, - -0.6021900773048401, - -0.538953423500061, - -0.46343091130256653, - -0.37768271565437317, - -0.2840477228164673, - -0.18508011102676392, - -0.08347944915294647, - 0.017982885241508484, - 0.11653925478458405, - 0.20950129628181458, - 0.29433318972587585, - 0.368721067905426, - 0.4306357502937317, - 0.47838836908340454, - 0.5106763243675232, - 0.5266188979148865, - -0.7037211060523987, - -0.7049168348312378, - -0.6892997026443481, - -0.6572957038879395, - -0.6097778677940369, - -0.5480422973632812, - -0.4737730324268341, - -0.3889959156513214, - -0.296023428440094, - -0.19739164412021637, - -0.09579097479581833, - 0.006007179617881775, - 0.1052260547876358, - 0.199159175157547, - 0.28524425625801086, - 0.36113324761390686, - 0.4247560501098633, - 0.4743770956993103, - 0.5086429715156555, - 0.5266188979148865, - -0.7037211060523987, - -0.70591139793396, - -0.6912617683410645, - -0.6601716876029968, - -0.6134893298149109, - -0.5524879693984985, - -0.4788317084312439, - -0.3945295810699463, - -0.3018811345100403, - -0.20341360569000244, - -0.101812943816185, - 0.00014947354793548584, - 0.09969237446784973, - 0.1941004991531372, - 0.2807985544204712, - 0.3574218153953552, - 0.4218800663948059, - 0.47241508960723877, - 0.5076483488082886, - 0.5266188979148865, - -0.7037211060523987, - -0.7057594656944275, - -0.6909619569778442, - -0.6597322225570679, - -0.612922191619873, - -0.5518087148666382, - -0.47805872559547424, - -0.3936840295791626, - -0.300986111164093, - -0.20249345898628235, - -0.1008927971124649, - 0.0010445266962051392, - 0.10053792595863342, - 0.19487345218658447, - 0.2814778685569763, - 0.3579889237880707, - 0.42231953144073486, - 0.472714900970459, - 0.5078003406524658, - 0.5266188979148865, - -0.7037211060523987, - -0.7044773697853088, - -0.6884328126907349, - -0.6560249924659729, - -0.6081380248069763, - -0.5460780262947083, - -0.47153788805007935, - -0.3865509331226349, - -0.293435275554657, - -0.19473090767860413, - -0.09313023090362549, - 0.00859534740447998, - 0.10767103731632233, - 0.20139428973197937, - 0.28720855712890625, - 0.3627731204032898, - 0.42602676153182983, - 0.4752439856529236, - 0.5090823769569397, - 0.5266188979148865, - -0.7037211060523987, - -0.702204167842865, - -0.6839483976364136, - -0.649451732635498, - -0.5996551513671875, - -0.5359169244766235, - -0.45997583866119385, - -0.37390321493148804, - -0.28004691004753113, - -0.18096712231636047, - -0.07936644554138184, - 0.02198369801044464, - 0.12031874060630798, - 0.21295636892318726, - 0.2973695993423462, - 0.3712559938430786, - 0.4326000213623047, - 0.4797284007072449, - 0.5113555788993835, - 0.5266188979148865, - -0.7037211060523987, - -0.6991861462593079, - -0.6779946684837341, - -0.6407247185707092, - -0.5883928537368774, - -0.5224266648292542, - -0.4446254372596741, - -0.35711148381233215, - -0.2622718811035156, - -0.16269361972808838, - -0.06109295412898064, - 0.039758726954460144, - 0.13711047172546387, - 0.22830674052238464, - 0.31085991859436035, - 0.3825182616710663, - 0.4413270950317383, - 0.4856821298599243, - 0.5143736004829407, - 0.5266188979148865, - -0.7037211060523987, - -0.69575035572052, - -0.6712167859077454, - -0.6307896375656128, - -0.5755716562271118, - -0.5070689916610718, - -0.4271502196788788, - -0.33799540996551514, - -0.2420363575220108, - -0.14189064502716064, - -0.0402899831533432, - 0.059994250535964966, - 0.15622657537460327, - 0.24578198790550232, - 0.3262176215648651, - 0.3953395187854767, - 0.45126211643218994, - 0.4924600124359131, - 0.5178093910217285, - 0.5266188979148865, - -0.7037211060523987, - -0.6922691464424133, - -0.6643493175506592, - -0.6207231879234314, - -0.5625808238983154, - -0.4915081262588501, - -0.40944382548332214, - -0.3186264634132385, - -0.22153319418430328, - -0.12081252783536911, - -0.01921185851097107, - 0.08049742877483368, - 0.17559552192687988, - 0.2634883522987366, - 0.3417784571647644, - 0.4083303213119507, - 0.46132856607437134, - 0.49932754039764404, - 0.52129065990448, - 0.5266188979148865, - -0.7037211060523987, - -0.6891196966171265, - -0.6581363081932068, - -0.6116161346435547, - -0.5508280992507935, - -0.47743040323257446, - -0.3934250771999359, - -0.3011035919189453, - -0.20298418402671814, - -0.10174337029457092, - -0.00014270097017288208, - 0.09904642403125763, - 0.1931183934211731, - 0.2795071303844452, - 0.35585618019104004, - 0.4200829863548279, - 0.47043561935424805, - 0.5055404901504517, - 0.5244401097297668, - 0.5266188979148865, - -0.7037211060523987, - -0.6866433620452881, - -0.6532511711120605, - -0.6044554710388184, - -0.541587233543396, - -0.4663613736629486, - -0.3808298110961914, - -0.2873256802558899, - -0.18839946389198303, - -0.08674965053796768, - 0.014851018786430359, - 0.11363115906715393, - 0.20689627528190613, - 0.2921023964881897, - 0.3669252097606659, - 0.4293239116668701, - 0.4775962829589844, - 0.5104256272315979, - 0.5269164443016052, - 0.5266188979148865, - -0.7037211060523987, - -0.6851084232330322, - -0.6502232551574707, - -0.6000171303749084, - -0.5358594655990601, - -0.4595004916191101, - -0.3730229437351227, - -0.278785765171051, - -0.17935946583747864, - -0.07745615392923355, - 0.02414451539516449, - 0.12267114222049713, - 0.215436190366745, - 0.2999092638492584, - 0.3737860918045044, - 0.4350516200065613, - 0.4820346236228943, - 0.5134535431861877, - 0.5284513235092163, - 0.5266188979148865, - -0.7037211060523987, - -0.6846812963485718, - -0.649380624294281, - -0.5987820029258728, - -0.5342655777931213, - -0.4575912356376648, - -0.37085044384002686, - -0.2764092683792114, - -0.1768438220024109, - -0.07486996799707413, - 0.026730701327323914, - 0.12518678605556488, - 0.2178126871585846, - 0.30208173394203186, - 0.3756953477859497, - 0.4366455674171448, - 0.48326975107192993, - 0.5142961740493774, - 0.5288784503936768, - 0.5266188979148865, - -0.7037211060523987, - -0.6854082345962524, - -0.6508146524429321, - -0.6008840203285217, - -0.5369782447814941, - -0.4608405530452728, - -0.3745477795600891, - -0.28045380115509033, - -0.18112516403198242, - -0.0792713612318039, - 0.022329308092594147, - 0.12090545892715454, - 0.21376818418502808, - 0.298384428024292, - 0.3724460303783417, - 0.433932900428772, - 0.481167733669281, - 0.5128621459007263, - 0.5281515121459961, - 0.5266188979148865, - -0.7037211060523987, - -0.6872104406356812, - -0.6543699502944946, - -0.6060953736305237, - -0.543703556060791, - -0.4688962996006012, - -0.3837142586708069, - -0.29048097133636475, - -0.1917395293712616, - -0.09018337726593018, - 0.011417292058467865, - 0.11029109358787537, - 0.20374101400375366, - 0.2892179489135742, - 0.3643902838230133, - 0.4272075891494751, - 0.47595638036727905, - 0.5093068480491638, - 0.5263493061065674, - 0.5266188979148865, - -0.7037211060523987, - -0.6898926496505737, - -0.6596611738204956, - -0.6138513088226318, - -0.5537126064300537, - -0.48088550567626953, - -0.3973565399646759, - -0.3054041862487793, - -0.20753666758537292, - -0.1064235046505928, - -0.004822835326194763, - 0.09449395537376404, - 0.18881776928901672, - 0.2755756378173828, - 0.35240107774734497, - 0.4171985387802124, - 0.4682004451751709, - 0.5040156245231628, - 0.5236670970916748, - 0.5266188979148865 - ], - "y": [ - -2.719473361968994, - -2.695181131362915, - -2.6731295585632324, - -2.6539204120635986, - -2.6380772590637207, - -2.626032590866089, - -2.618114948272705, - -2.6145401000976562, - -2.615405559539795, - -2.620687961578369, - -2.6302430629730225, - -2.643810272216797, - -2.6610193252563477, - -2.681401014328003, - -2.704399347305298, - -2.729386806488037, - -2.7556822299957275, - -2.7825677394866943, - -2.8093106746673584, - -2.8351807594299316, - -2.719473361968994, - -2.6770777702331543, - -2.6374166011810303, - -2.601571798324585, - -2.570521354675293, - -2.545111894607544, - -2.5260367393493652, - -2.5138161182403564, - -2.5087833404541016, - -2.511075735092163, - -2.5206308364868164, - -2.5371878147125244, - -2.560295343399048, - -2.589322805404663, - -2.623478651046753, - -2.6618309020996094, - -2.703333616256714, - -2.746854782104492, - -2.7912070751190186, - -2.8351807594299316, - -2.719473361968994, - -2.66365385055542, - -2.6109354496002197, - -2.562755584716797, - -2.5204286575317383, - -2.485109329223633, - -2.457760810852051, - -2.43912935256958, - -2.429722785949707, - -2.4297983646392822, - -2.4393532276153564, - -2.458127498626709, - -2.4856085777282715, - -2.5210468769073486, - -2.5634758472442627, - -2.6117382049560547, - -2.664517402648926, - -2.7203736305236816, - -2.7777833938598633, - -2.8351807594299316, - -2.719473361968994, - -2.656364679336548, - -2.596555709838867, - -2.541677474975586, - -2.493227481842041, - -2.452526569366455, - -2.4206857681274414, - -2.3985729217529297, - -2.386791706085205, - -2.3856632709503174, - -2.3952181339263916, - -2.415196180343628, - -2.445052146911621, - -2.4839718341827393, - -2.530893325805664, - -2.5845370292663574, - -2.643439292907715, - -2.705993890762329, - -2.770494222640991, - -2.8351809978485107, - -2.719473361968994, - -2.6559996604919434, - -2.5958356857299805, - -2.5406219959259033, - -2.491865396499634, - -2.450895309448242, - -2.4188292026519775, - -2.3965423107147217, - -2.3846421241760254, - -2.383453369140625, - -2.393008232116699, - -2.4130465984344482, - -2.443021535873413, - -2.4821152687072754, - -2.529261827468872, - -2.58317494392395, - -2.6423838138580322, - -2.7052738666534424, - -2.7701292037963867, - -2.8351809978485107, - -2.719473361968994, - -2.6625986099243164, - -2.608853340148926, - -2.5597035884857178, - -2.5164902210235596, - -2.480391502380371, - -2.452392578125, - -2.4332571029663086, - -2.423506736755371, - -2.423408031463623, - -2.4329628944396973, - -2.451911449432373, - -2.479736328125, - -2.515678644180298, - -2.55875825881958, - -2.607799530029297, - -2.6614654064178467, - -2.7182915210723877, - -2.7767281532287598, - -2.8351807594299316, - -2.719473361968994, - -2.6754462718963623, - -2.6341981887817383, - -2.5968542098999023, - -2.5644330978393555, - -2.5378193855285645, - -2.5177385807037354, - -2.5047388076782227, - -2.4991745948791504, - -2.501197576522827, - -2.5107526779174805, - -2.5275790691375732, - -2.551218032836914, - -2.581024646759033, - -2.6161859035491943, - -2.655742883682251, - -2.6986160278320312, - -2.7436363697052, - -2.7895755767822266, - -2.8351807594299316, - -2.719473361968994, - -2.693150281906128, - -2.669123411178589, - -2.648048162460327, - -2.6304993629455566, - -2.616955518722534, - -2.607786178588867, - -2.603241443634033, - -2.603445291519165, - -2.6083922386169434, - -2.6179473400115967, - -2.631849765777588, - -2.6497206687927246, - -2.671072244644165, - -2.695322036743164, - -2.721808910369873, - -2.749809980392456, - -2.77856183052063, - -2.8072798252105713, - -2.8351807594299316, - -2.719473361968994, - -2.713792562484741, - -2.7098448276519775, - -2.707737684249878, - -2.707529067993164, - -2.709224224090576, - -2.7127768993377686, - -2.718090534210205, - -2.725019931793213, - -2.7333760261535645, - -2.7429311275482178, - -2.7534244060516357, - -2.7645697593688965, - -2.7760629653930664, - -2.787590742111206, - -2.7988386154174805, - -2.809499502182007, - -2.8192830085754395, - -2.8279218673706055, - -2.8351807594299316, - -2.719473361968994, - -2.735135793685913, - -2.7519490718841553, - -2.7694547176361084, - -2.787174940109253, - -2.804626703262329, - -2.821333646774292, - -2.8368403911590576, - -2.8507237434387207, - -2.862604856491089, - -2.872159957885742, - -2.8791282176971436, - -2.883319616317749, - -2.88461971282959, - -2.882993459701538, - -2.8784844875335693, - -2.8712165355682373, - -2.861387252807617, - -2.8492653369903564, - -2.8351807594299316, - -2.719473361968994, - -2.7548673152923584, - -2.7908737659454346, - -2.8265109062194824, - -2.860806465148926, - -2.89282488822937, - -2.9216928482055664, - -2.946622848510742, - -2.9669346809387207, - -2.982074737548828, - -2.9916298389434814, - -2.9953393936157227, - -2.9931020736694336, - -2.9849789142608643, - -2.97119140625, - -2.952116012573242, - -2.9282727241516113, - -2.9003121852874756, - -2.8689966201782227, - -2.8351807594299316, - -2.719473361968994, - -2.7708487510681152, - -2.8224010467529297, - -2.8727235794067383, - -2.9204442501068115, - -2.9642608165740967, - -3.002978563308716, - -3.035540819168091, - -3.0610599517822266, - -3.0788395404815674, - -3.0883944034576416, - -3.0894644260406494, - -3.0820200443267822, - -3.0662646293640137, - -3.0426275730133057, - -3.011753797531128, - -2.974485397338867, - -2.9318392276763916, - -2.8849782943725586, - -2.8351807594299316, - -2.719473123550415, - -2.781348466873169, - -2.843113899230957, - -2.9030849933624268, - -2.959625482559204, - -3.0111935138702393, - -3.056382179260254, - -3.093959093093872, - -3.122899055480957, - -3.1424126625061035, - -3.151967763900757, - -3.151303768157959, - -3.1404383182525635, - -3.119668483734131, - -3.0895602703094482, - -3.0509352684020996, - -3.0048468112945557, - -2.952552080154419, - -2.8954780101776123, - -2.8351807594299316, - -2.719473123550415, - -2.7852284908294678, - -2.8507680892944336, - -2.914304733276367, - -2.974104642868042, - -3.0285370349884033, - -3.0761172771453857, - -3.1155471801757812, - -3.1457512378692627, - -3.165905714035034, - -3.1754608154296875, - -3.1741557121276855, - -3.1620264053344727, - -3.1394033432006836, - -3.1069037914276123, - -3.0654141902923584, - -3.016066551208496, - -2.9602065086364746, - -2.899358034133911, - -2.8351807594299316, - -2.719473123550415, - -2.7820684909820557, - -2.844534397125244, - -2.9051668643951416, - -2.9623124599456787, - -3.0144119262695312, - -3.060044527053833, - -3.0979652404785156, - -3.1271398067474365, - -3.1467723846435547, - -3.156327486038208, - -3.1555442810058594, - -3.144444465637207, - -3.123330593109131, - -3.0927786827087402, - -3.053622007369995, - -3.0069286823272705, - -2.953972578048706, - -2.896198034286499, - -2.8351807594299316, - -2.719473361968994, - -2.7722108364105225, - -2.825087785720825, - -2.876662254333496, - -2.9255268573760986, - -2.970349073410034, - -3.009906053543091, - -3.043118953704834, - -3.0690817832946777, - -3.0870862007141113, - -3.0966413021087646, - -3.0974862575531006, - -3.0895981788635254, - -3.0731921195983887, - -3.048715591430664, - -3.016836404800415, - -2.978424072265625, - -2.934526205062866, - -2.886340379714966, - -2.8351807594299316, - -2.719473361968994, - -2.756723642349243, - -2.7945361137390137, - -2.831879138946533, - -2.867733955383301, - -2.901122808456421, - -2.9311349391937256, - -2.95695161819458, - -2.9778685569763184, - -2.9933149814605713, - -3.0028700828552246, - -3.006273031234741, - -3.0034308433532715, - -2.9944210052490234, - -2.97948956489563, - -2.959043502807617, - -2.933640956878662, - -2.9039742946624756, - -2.8708531856536865, - -2.8351807594299316, - -2.719473361968994, - -2.7372853755950928, - -2.7561898231506348, - -2.7756707668304443, - -2.795196771621704, - -2.8142354488372803, - -2.8322672843933105, - -2.8488006591796875, - -2.863384246826172, - -2.8756206035614014, - -2.8851757049560547, - -2.8917887210845947, - -2.895279884338379, - -2.8955533504486084, - -2.89260196685791, - -2.8865063190460205, - -2.877432346343994, - -2.8656280040740967, - -2.851414918899536, - -2.8351807594299316, - -2.719473361968994, - -2.7160024642944336, - -2.7142043113708496, - -2.714128017425537, - -2.715775728225708, - -2.719102144241333, - -2.7240171432495117, - -2.7303860187530518, - -2.7380354404449463, - -2.7467565536499023, - -2.7563116550445557, - -2.766439914703369, - -2.776865243911743, - -2.7873032093048096, - -2.797468900680542, - -2.8070852756500244, - -2.815889835357666, - -2.8236424922943115, - -2.830132007598877, - -2.8351807594299316, - -2.719473361968994, - -2.695181131362915, - -2.6731295585632324, - -2.6539204120635986, - -2.6380772590637207, - -2.626032590866089, - -2.618114948272705, - -2.6145401000976562, - -2.615405559539795, - -2.620687961578369, - -2.6302430629730225, - -2.6438100337982178, - -2.6610193252563477, - -2.681401014328003, - -2.7043991088867188, - -2.729386806488037, - -2.7556822299957275, - -2.7825677394866943, - -2.8093104362487793, - -2.8351807594299316 - ], - "z": [ - 1.405752420425415, - 1.3898504972457886, - 1.3773542642593384, - 1.3686045408248901, - 1.363840103149414, - 1.3631908893585205, - 1.3666746616363525, - 1.374196171760559, - 1.3855504989624023, - 1.4004278182983398, - 1.4184222221374512, - 1.4390430450439453, - 1.4617277383804321, - 1.4858574867248535, - 1.5107741355895996, - 1.5357980728149414, - 1.5602465867996216, - 1.583452820777893, - 1.6047837734222412, - 1.6236577033996582, - 1.405752420425415, - 1.4179351329803467, - 1.4327574968338013, - 1.4498151540756226, - 1.4686428308486938, - 1.4887269735336304, - 1.5095196962356567, - 1.5304539203643799, - 1.550958514213562, - 1.5704741477966309, - 1.5884686708450317, - 1.604451060295105, - 1.617985486984253, - 1.6287026405334473, - 1.6363102197647095, - 1.6406006813049316, - 1.6414570808410645, - 1.638856053352356, - 1.6328685283660889, - 1.6236577033996582, - 1.405752420425415, - 1.444860577583313, - 1.4858739376068115, - 1.5276737213134766, - 1.5691198110580444, - 1.609081506729126, - 1.646468997001648, - 1.6802622079849243, - 1.709539532661438, - 1.7335021495819092, - 1.75149667263031, - 1.763032078742981, - 1.7677937746047974, - 1.7656519412994385, - 1.7566648721694946, - 1.7410777807235718, - 1.719315767288208, - 1.6919726133346558, - 1.6597939729690552, - 1.6236577033996582, - 1.405752420425415, - 1.4677090644836426, - 1.5309478044509888, - 1.5937434434890747, - 1.6543830633163452, - 1.7112126350402832, - 1.7626819610595703, - 1.8073872327804565, - 1.8441088199615479, - 1.8718451261520386, - 1.8898396492004395, - 1.8976014852523804, - 1.8949187994003296, - 1.8818649053573608, - 1.8587958812713623, - 1.826340913772583, - 1.7853853702545166, - 1.7370463609695435, - 1.6826424598693848, - 1.6236577033996582, - 1.405752420425415, - 1.4840047359466553, - 1.5630944967269897, - 1.6408642530441284, - 1.7151927947998047, - 1.7840526103973389, - 1.8455651998519897, - 1.8980529308319092, - 1.9400837421417236, - 1.9705114364624023, - 1.9885058403015137, - 1.9935762882232666, - 1.9855844974517822, - 1.9647481441497803, - 1.931635856628418, - 1.887150764465332, - 1.8325062990188599, - 1.7691930532455444, - 1.6989381313323975, - 1.6236577033996582, - 1.405752420425415, - 1.4919815063476562, - 1.578830361366272, - 1.6639301776885986, - 1.7449594736099243, - 1.819707989692688, - 1.8861368894577026, - 1.9424340724945068, - 1.9870638847351074, - 2.0188088417053223, - 2.0368034839630127, - 2.0405564308166504, - 2.02996563911438, - 2.005319833755493, - 1.9672913551330566, - 1.9169174432754517, - 1.85557222366333, - 1.7849290370941162, - 1.7069149017333984, - 1.6236577033996582, - 1.405752420425415, - 1.4907749891281128, - 1.5764503479003906, - 1.660441517829895, - 1.74045729637146, - 1.8143151998519897, - 1.8800004720687866, - 1.935721516609192, - 1.9799582958221436, - 2.0115041732788086, - 2.02949857711792, - 2.0334508419036865, - 2.0232529640197754, - 1.9991834163665771, - 1.9618985652923584, - 1.9124152660369873, - 1.8520835638046265, - 1.7825490236282349, - 1.705708384513855, - 1.6236577033996582, - 1.405752420425415, - 1.4805160760879517, - 1.556212306022644, - 1.6307764053344727, - 1.7021743059158325, - 1.768458604812622, - 1.8278210163116455, - 1.8786426782608032, - 1.919536828994751, - 1.9493883848190308, - 1.9673829078674316, - 1.9730294942855835, - 1.9661742448806763, - 1.947003960609436, - 1.9160418510437012, - 1.8741322755813599, - 1.8224183320999146, - 1.7623109817504883, - 1.6954494714736938, - 1.6236577033996582, - 1.405752420425415, - 1.4623162746429443, - 1.520309329032898, - 1.578149437904358, - 1.6342588663101196, - 1.6871073246002197, - 1.7352529764175415, - 1.777382731437683, - 1.8123472929000854, - 1.8391929864883423, - 1.8571875095367432, - 1.865839958190918, - 1.8649142980575562, - 1.854435920715332, - 1.8346905708312988, - 1.806216835975647, - 1.7697913646697998, - 1.7264078855514526, - 1.6772496700286865, - 1.6236577033996582, - 1.405752420425415, - 1.438148021697998, - 1.4726319313049316, - 1.5082635879516602, - 1.544070839881897, - 1.579077124595642, - 1.6123274564743042, - 1.6429150104522705, - 1.670005202293396, - 1.692859172821045, - 1.7108536958694458, - 1.723497748374939, - 1.7304465770721436, - 1.7315104007720947, - 1.7266603708267212, - 1.7160286903381348, - 1.6999056339263916, - 1.6787306070327759, - 1.6530814170837402, - 1.6236577033996582, - 1.405752420425415, - 1.410630226135254, - 1.418346881866455, - 1.428692102432251, - 1.4413833618164062, - 1.4560747146606445, - 1.472365379333496, - 1.4898109436035156, - 1.5079355239868164, - 1.5262447595596313, - 1.5442392826080322, - 1.5614280700683594, - 1.5773425102233887, - 1.591548204421997, - 1.6036579608917236, - 1.6133413314819336, - 1.6203340291976929, - 1.6244455575942993, - 1.625563621520996, - 1.6236577033996582, - 1.405752420425415, - 1.3827447891235352, - 1.3633368015289307, - 1.348057746887207, - 1.3373242616653442, - 1.331429362297058, - 1.330533742904663, - 1.334661841392517, - 1.3437010049819946, - 1.3574047088623047, - 1.3753992319107056, - 1.3971936702728271, - 1.4221934080123901, - 1.4497166872024536, - 1.4790126085281372, - 1.5092822313308716, - 1.539699673652649, - 1.5694353580474854, - 1.5976781845092773, - 1.6236577033996582, - 1.405752420425415, - 1.357513666152954, - 1.3135627508163452, - 1.2750985622406006, - 1.2431700229644775, - 1.2186484336853027, - 1.202202320098877, - 1.1942806243896484, - 1.195099115371704, - 1.204635739326477, - 1.222630262374878, - 1.2485917806625366, - 1.2818121910095215, - 1.3213852643966675, - 1.3662315607070923, - 1.4151279926300049, - 1.4667404890060425, - 1.5196614265441895, - 1.5724470615386963, - 1.6236577033996582, - 1.405752420425415, - 1.3376710414886475, - 1.274418592453003, - 1.217720627784729, - 1.169123649597168, - 1.129953145980835, - 1.1012777090072632, - 1.0838794708251953, - 1.078233003616333, - 1.0844924449920654, - 1.1024869680404663, - 1.1317256689071655, - 1.1714110374450684, - 1.2204606533050537, - 1.277536392211914, - 1.3410815000534058, - 1.4093626737594604, - 1.4805172681808472, - 1.5526044368743896, - 1.6236577033996582, - 1.405752420425415, - 1.3253670930862427, - 1.2501463890075684, - 1.1821420192718506, - 1.1232092380523682, - 1.0749554634094238, - 1.0386967658996582, - 1.0154224634170532, - 1.0057673454284668, - 1.0099945068359375, - 1.0279890298843384, - 1.0592598915100098, - 1.1029540300369263, - 1.1578797101974487, - 1.2225385904312134, - 1.295167088508606, - 1.373784065246582, - 1.456244945526123, - 1.5403003692626953, - 1.6236577033996582, - 1.405752420425415, - 1.3219350576400757, - 1.2433760166168213, - 1.1722180843353271, - 1.1104023456573486, - 1.059614896774292, - 1.0212410688400269, - 0.9963276386260986, - 0.9855542778968811, - 0.9892147183418274, - 1.007209300994873, - 1.0390468835830688, - 1.0838592052459717, - 1.1404238939285278, - 1.2071980237960815, - 1.2823601961135864, - 1.3638601303100586, - 1.449474573135376, - 1.5368684530258179, - 1.6236577033996582, - 1.405752420425415, - 1.327747106552124, - 1.2548414468765259, - 1.1890242099761963, - 1.13209068775177, - 1.0855939388275146, - 1.050802230834961, - 1.0286643505096436, - 1.019784688949585, - 1.0244050025939941, - 1.042399525642395, - 1.073277235031128, - 1.1161959171295166, - 1.169985055923462, - 1.2331770658493042, - 1.3040485382080078, - 1.3806661367416382, - 1.4609400033950806, - 1.5426803827285767, - 1.6236577033996582, - 1.405752420425415, - 1.3421732187271118, - 1.2833001613616943, - 1.2307392358779907, - 1.1859241724014282, - 1.1500773429870605, - 1.1241767406463623, - 1.1089285612106323, - 1.1047489643096924, - 1.1117520332336426, - 1.129746437072754, - 1.158241629600525, - 1.1964601278305054, - 1.2433595657348633, - 1.2976605892181396, - 1.357882022857666, - 1.4223811626434326, - 1.489398717880249, - 1.5571064949035645, - 1.6236577033996582, - 1.405752420425415, - 1.3636500835418701, - 1.325668215751648, - 1.2928426265716553, - 1.2660690546035767, - 1.246077537536621, - 1.2334134578704834, - 1.2284222841262817, - 1.231240153312683, - 1.2417902946472168, - 1.2597846984863281, - 1.284732699394226, - 1.3159538507461548, - 1.3525962829589844, - 1.3936607837677002, - 1.4380269050598145, - 1.4844846725463867, - 1.5317667722702026, - 1.5785834789276123, - 1.6236577033996582, - 1.405752420425415, - 1.3898504972457886, - 1.3773542642593384, - 1.3686046600341797, - 1.3638402223587036, - 1.36319100856781, - 1.3666746616363525, - 1.3741962909698486, - 1.3855504989624023, - 1.4004278182983398, - 1.4184223413467407, - 1.4390431642532349, - 1.4617278575897217, - 1.485857605934143, - 1.5107742547988892, - 1.5357980728149414, - 1.5602465867996216, - 1.583452820777893, - 1.6047838926315308, - 1.6236577033996582 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.18456584215164185, - -0.1894763708114624, - -0.1931946724653244, - -0.19561931490898132, - -0.19668418169021606, - -0.19636021554470062, - -0.19465623795986176, - -0.19161874055862427, - -0.18733058869838715, - -0.1819087266921997, - -0.17550107836723328, - -0.1682824045419693, - -0.16044962406158447, - -0.15221638977527618, - -0.1438072919845581, - -0.13545168936252594, - -0.12737751007080078, - -0.11980500817298889, - -0.1129407286643982, - -0.10697191953659058, - -0.18456584215164185, - -0.15287673473358154, - -0.1209937259554863, - -0.08978651463985443, - -0.06010635942220688, - -0.03276287019252777, - -0.008501887321472168, - 0.012014850974082947, - 0.028227627277374268, - 0.039694204926490784, - 0.046101853251457214, - 0.047275811433792114, - 0.04318396747112274, - 0.03393799066543579, - 0.019790083169937134, - 0.0011261403560638428, - -0.02154470980167389, - -0.04760405421257019, - -0.07634108513593674, - -0.10697193443775177, - -0.18456585705280304, - -0.11965375393629074, - -0.05545399338006973, - 0.006282225251197815, - 0.06387084722518921, - 0.11574104428291321, - 0.16047796607017517, - 0.19686126708984375, - 0.2238985002040863, - 0.24085217714309692, - 0.24725985527038574, - 0.24294668436050415, - 0.22803038358688354, - 0.20291787385940552, - 0.1682940423488617, - 0.12510335445404053, - 0.07452403008937836, - 0.017935678362846375, - -0.04311811178922653, - -0.10697193443775177, - -0.18456587195396423, - -0.09340766817331314, - -0.00367775559425354, - 0.0821763128042221, - 0.16181263327598572, - 0.2330588698387146, - 0.2939716875553131, - 0.34288957715034485, - 0.37847810983657837, - 0.39976662397384644, - 0.4061742424964905, - 0.3975263237953186, - 0.37405866384506226, - 0.33641159534454346, - 0.2856118679046631, - 0.22304514050483704, - 0.15041813254356384, - 0.06971192359924316, - -0.01687203347682953, - -0.10697194933891296, - -0.18456587195396423, - -0.07698263972997665, - 0.02872428297996521, - 0.12967145442962646, - 0.22310540080070496, - 0.3064773678779602, - 0.3775132894515991, - 0.4342752695083618, - 0.4752153754234314, - 0.4992164969444275, - 0.5056241154670715, - 0.49426358938217163, - 0.4654443860054016, - 0.4199531078338623, - 0.3590303063392639, - 0.28433793783187866, - 0.1979132890701294, - 0.10211396217346191, - -0.000447005033493042, - -0.10697194933891296, - -0.18456587195396423, - -0.07215858995914459, - 0.038240790367126465, - 0.14362087845802307, - 0.24110719561576843, - 0.3280404806137085, - 0.40204954147338867, - 0.46111541986465454, - 0.5036271810531616, - 0.5284250974655151, - 0.5348327159881592, - 0.5226753950119019, - 0.49228453636169434, - 0.44448941946029663, - 0.380593478679657, - 0.30233973264694214, - 0.211862713098526, - 0.11163046956062317, - 0.004377052187919617, - -0.10697194933891296, - -0.18456587195396423, - -0.07945826649665833, - 0.023840561509132385, - 0.12251287698745728, - 0.2138671875, - 0.29541152715682983, - 0.3649216294288635, - 0.4205014705657959, - 0.46063482761383057, - 0.48422718048095703, - 0.4906347990036011, - 0.4796830415725708, - 0.4516705870628357, - 0.4073615074157715, - 0.3479645550251007, - 0.2750997543334961, - 0.1907547116279602, - 0.09723024070262909, - -0.002922624349594116, - -0.10697194933891296, - -0.18456587195396423, - -0.09809063374996185, - -0.012915939092636108, - 0.06863486766815186, - 0.14433729648590088, - 0.21212637424468994, - 0.2701529860496521, - 0.3168344497680664, - 0.3508971929550171, - 0.3714122176170349, - 0.37781983613967896, - 0.3699454069137573, - 0.3480035662651062, - 0.31259292364120483, - 0.2646794021129608, - 0.20556983351707458, - 0.1368766725063324, - 0.060473740100860596, - -0.021554991602897644, - -0.10697194933891296, - -0.18456585705280304, - -0.12603659927845, - -0.06804557889699936, - -0.012174651026725769, - 0.04005219042301178, - 0.0872102677822113, - 0.12801331281661987, - 0.16134831309318542, - 0.1863059401512146, - 0.20220544934272766, - 0.20861312747001648, - 0.20535412430763245, - 0.19251742959022522, - 0.17045322060585022, - 0.1397632658481598, - 0.10128471255302429, - 0.05606715381145477, - 0.005344092845916748, - -0.0495009571313858, - -0.10697193443775177, - -0.18456584215164185, - -0.16026777029037476, - -0.13557419180870056, - -0.11115869879722595, - -0.08768728375434875, - -0.06580019742250443, - -0.04609442502260208, - -0.02910751849412918, - -0.015302836894989014, - -0.00505693256855011, - 0.0013507157564163208, - 0.003745347261428833, - 0.002061605453491211, - -0.003654569387435913, - -0.013247236609458923, - -0.026454776525497437, - -0.04291689395904541, - -0.06218452751636505, - -0.08373212814331055, - -0.10697192698717117, - -0.18456584215164185, - -0.19707466661930084, - -0.20818401873111725, - -0.2175908386707306, - -0.225038543343544, - -0.23032398521900177, - -0.2333029806613922, - -0.23389428853988647, - -0.23208174109458923, - -0.22791481018066406, - -0.22150716185569763, - -0.2130335569381714, - -0.20272515714168549, - -0.19086313247680664, - -0.17777107656002045, - -0.16380605101585388, - -0.14934903383255005, - -0.13479435443878174, - -0.12053903192281723, - -0.10697191953659058, - -0.18456582725048065, - -0.23246870934963226, - -0.2780066430568695, - -0.31993746757507324, - -0.3571174740791321, - -0.3885323703289032, - -0.41332533955574036, - -0.430820107460022, - -0.4405393600463867, - -0.4422180950641632, - -0.4358104169368744, - -0.42149117588996887, - -0.3996509909629822, - -0.3708855211734772, - -0.3359794616699219, - -0.29588496685028076, - -0.2516956329345703, - -0.204616978764534, - -0.15593306720256805, - -0.10697190463542938, - -0.18456581234931946, - -0.2626143991947174, - -0.3374757170677185, - -0.40710777044296265, - -0.46961119771003723, - -0.5232809782028198, - -0.5666533708572388, - -0.5985450148582458, - -0.6180862188339233, - -0.6247437000274658, - -0.618336021900177, - -0.5990380048751831, - -0.567375898361206, - -0.524213433265686, - -0.47072815895080566, - -0.4083787202835083, - -0.3388659358024597, - -0.2640860378742218, - -0.1860787570476532, - -0.10697190463542938, - -0.18456581234931946, - -0.28424495458602905, - -0.380146861076355, - -0.46965551376342773, - -0.5503293871879578, - -0.6199678778648376, - -0.6766715049743652, - -0.7188935875892639, - -0.7454821467399597, - -0.7557120323181152, - -0.7493044137954712, - -0.7264339327812195, - -0.6877244710922241, - -0.634231686592102, - -0.5674149990081787, - -0.4890969395637512, - -0.4014136791229248, - -0.3067571520805359, - -0.20770932734012604, - -0.10697188973426819, - -0.18456581234931946, - -0.29501640796661377, - -0.40139591693878174, - -0.5008026361465454, - -0.5905249118804932, - -0.6681153774261475, - -0.7314575910568237, - -0.7788237929344177, - -0.8089218139648438, - -0.8209308385848999, - -0.8145232200622559, - -0.7898736000061035, - -0.7476546764373779, - -0.6890178322792053, - -0.6155624985694885, - -0.5292924046516418, - -0.4325607717037201, - -0.32800623774528503, - -0.21848076581954956, - -0.10697188973426819, - -0.18456581234931946, - -0.2937614917755127, - -0.39892032742500305, - -0.49717381596565247, - -0.5858418941497803, - -0.6625059247016907, - -0.7250747680664062, - -0.7718416452407837, - -0.8015309572219849, - -0.8133325576782227, - -0.8069249391555786, - -0.7824827432632446, - -0.7406725287437439, - -0.6826350092887878, - -0.6099530458450317, - -0.5246094465255737, - -0.42893198132514954, - -0.32553064823150635, - -0.2172258496284485, - -0.10697188973426819, - -0.18456581234931946, - -0.2806161642074585, - -0.3729882538318634, - -0.4591623842716217, - -0.5367879867553711, - -0.6037474870681763, - -0.6582146286964417, - -0.6987036466598511, - -0.724109947681427, - -0.7337406277656555, - -0.7273330092430115, - -0.7050617337226868, - -0.6675345301628113, - -0.6157747507095337, - -0.5511946678161621, - -0.4755554497241974, - -0.39092057943344116, - -0.2995985746383667, - -0.2040805220603943, - -0.10697189718484879, - -0.18456581234931946, - -0.257004976272583, - -0.32640987634658813, - -0.39088737964630127, - -0.4486786723136902, - -0.49820736050605774, - -0.5381224751472473, - -0.5673352479934692, - -0.5850487351417542, - -0.5907797813415527, - -0.5843721628189087, - -0.5660005807876587, - -0.5361660718917847, - -0.49568265676498413, - -0.4456544816493988, - -0.38744619488716125, - -0.3226455748081207, - -0.2530202269554138, - -0.1804693341255188, - -0.10697190463542938, - -0.18456582725048065, - -0.22548648715019226, - -0.26423269510269165, - -0.2997474670410156, - -0.3310621380805969, - -0.35732245445251465, - -0.3778121769428253, - -0.3919723629951477, - -0.3994167745113373, - -0.3999423086643219, - -0.39353466033935547, - -0.38036859035491943, - -0.3608032464981079, - -0.33537232875823975, - -0.3047695755958557, - -0.2698296308517456, - -0.23150566220283508, - -0.19084301590919495, - -0.14895085990428925, - -0.10697191208600998, - -0.18456584215164185, - -0.18947634100914001, - -0.19319462776184082, - -0.19561927020549774, - -0.1966841071844101, - -0.19636012613773346, - -0.1946561336517334, - -0.1916186362504959, - -0.1873304694890976, - -0.18190860748291016, - -0.17550095915794373, - -0.16828228533267975, - -0.16044951975345612, - -0.15221628546714783, - -0.14380720257759094, - -0.13545161485671997, - -0.127377450466156, - -0.11980496346950531, - -0.112940713763237, - -0.10697191953659058 - ], - "y": [ - -2.642402172088623, - -2.672928810119629, - -2.713501214981079, - -2.7630128860473633, - -2.820112705230713, - -2.8832437992095947, - -2.950683832168579, - -3.0205931663513184, - -3.091064929962158, - -3.1601767539978027, - -3.226043701171875, - -3.2868685722351074, - -3.3409929275512695, - -3.3869400024414062, - -3.4234561920166016, - -3.4495460987091064, - -3.4644975662231445, - -3.467902898788452, - -3.4596691131591797, - -3.44002103805542, - -2.642402172088623, - -2.6756863594055176, - -2.7189409732818604, - -2.770986318588257, - -2.8304026126861572, - -2.895569324493408, - -2.9647088050842285, - -3.0359349250793457, - -3.1073052883148193, - -3.176872491836548, - -3.242739200592041, - -3.3031089305877686, - -3.356334686279297, - -3.4009649753570557, - -3.435781717300415, - -3.459836006164551, - -3.472470998764038, - -3.4733424186706543, - -3.4624266624450684, - -3.44002103805542, - -2.642402172088623, - -2.6754262447357178, - -2.718428134918213, - -2.7702345848083496, - -2.829432487487793, - -2.894407272338867, - -2.9633865356445312, - -3.0344884395599365, - -3.10577392578125, - -3.1752984523773193, - -3.2411651611328125, - -3.3015778064727783, - -3.354888439178467, - -3.3996424674987793, - -3.434619665145874, - -3.4588656425476074, - -3.471719264984131, - -3.472829580307007, - -3.4621665477752686, - -3.44002103805542, - -2.642402172088623, - -2.6721770763397217, - -2.7120182514190674, - -2.7608389854431152, - -2.817307472229004, - -2.8798835277557373, - -2.9468603134155273, - -3.0164105892181396, - -3.086637258529663, - -3.155625104904175, - -3.221491813659668, - -3.2824411392211914, - -3.336810350418091, - -3.3831162452697754, - -3.420095920562744, - -3.4467406272888184, - -3.4623236656188965, - -3.4664196968078613, - -3.4589173793792725, - -3.44002103805542, - -2.642402172088623, - -2.666290760040283, - -2.700406074523926, - -2.7438178062438965, - -2.7953414916992188, - -2.853571891784668, - -2.9169206619262695, - -2.9836599826812744, - -3.051968812942505, - -3.1199843883514404, - -3.1858513355255127, - -3.247772693634033, - -3.3040597438812256, - -3.3531768321990967, - -3.393784523010254, - -3.424774646759033, - -3.4453024864196777, - -3.454807758331299, - -3.453031063079834, - -3.44002103805542, - -2.642402172088623, - -2.658405065536499, - -2.684849977493286, - -2.721015453338623, - -2.7659149169921875, - -2.818323850631714, - -2.876812696456909, - -2.9397857189178467, - -3.005525588989258, - -3.0722386837005615, - -3.1381053924560547, - -3.201329231262207, - -3.260185480117798, - -3.3130688667297363, - -3.3585362434387207, - -3.395348072052002, - -3.4225001335144043, - -3.43925142288208, - -3.44514536857605, - -3.44002103805542, - -2.642402172088623, - -2.6493747234344482, - -2.6670355796813965, - -2.6949028968811035, - -2.7322165966033936, - -2.777958869934082, - -2.8308820724487305, - -2.889542579650879, - -2.9523401260375977, - -3.017561674118042, - -3.0834286212921143, - -3.148143768310547, - -3.20994234085083, - -3.2671382427215576, - -3.318171501159668, - -3.361649990081787, - -3.3963875770568848, - -3.4214370250701904, - -3.436115026473999, - -3.44002103805542, - -2.642402172088623, - -2.6401782035827637, - -2.648893356323242, - -2.6683099269866943, - -2.6978983879089355, - -2.736851215362549, - -2.784106492996216, - -2.8383748531341553, - -2.8981759548187256, - -2.961879014968872, - -3.0277457237243652, - -3.093979835510254, - -3.1587746143341064, - -3.220362663269043, - -3.2770638465881348, - -3.32733154296875, - -3.3697946071624756, - -3.4032950401306152, - -3.4269185066223145, - -3.44002103805542, - -2.642402172088623, - -2.63181209564209, - -2.632389545440674, - -2.644118309020996, - -2.6666789054870605, - -2.699455738067627, - -2.7415547370910645, - -2.791827440261841, - -2.848902940750122, - -2.911224126815796, - -2.977090835571289, - -3.0447068214416504, - -3.112227439880371, - -3.1778106689453125, - -3.239668130874634, - -3.296112060546875, - -3.3456029891967773, - -3.3867909908294678, - -3.4185523986816406, - -3.44002103805542, - -2.642402172088623, - -2.62518310546875, - -2.619312047958374, - -2.6249494552612305, - -2.6419413089752197, - -2.6698243618011475, - -2.7078378200531006, - -2.7549448013305664, - -2.8098602294921875, - -2.871086597442627, - -2.93695330619812, - -3.005664110183716, - -3.0753445625305176, - -3.1440937519073486, - -3.2100367546081543, - -3.2713747024536133, - -3.3264341354370117, - -3.373713731765747, - -3.411923408508301, - -3.44002103805542, - -2.642402172088623, - -2.621009349822998, - -2.6110787391662598, - -2.6128807067871094, - -2.62636661529541, - -2.6511683464050293, - -2.6866095066070557, - -2.7317233085632324, - -2.7852790355682373, - -2.845815896987915, - -2.9116828441619873, - -2.9810829162597656, - -3.0521230697631836, - -3.122865676879883, - -3.191380739212036, - -3.2557997703552246, - -3.3143653869628906, - -3.3654801845550537, - -3.407749652862549, - -3.44002103805542, - -2.642402172088623, - -2.6197433471679688, - -2.608581066131592, - -2.609220027923584, - -2.6216423511505127, - -2.6455094814300537, - -2.6801702976226807, - -2.724679470062256, - -2.777822732925415, - -2.8381505012512207, - -2.904017448425293, - -2.9736266136169434, - -3.045079231262207, - -3.116426467895508, - -3.1857218742370605, - -3.251075506210327, - -3.3107047080993652, - -3.362982749938965, - -3.4064836502075195, - -3.44002103805542, - -2.642402172088623, - -2.6215224266052246, - -2.6120903491973877, - -2.614363670349121, - -2.6282804012298584, - -2.653460741043091, - -2.689218044281006, - -2.73457670211792, - -2.788299560546875, - -2.848921298980713, - -2.914788007736206, - -2.9841034412384033, - -3.054976463317871, - -3.125474214553833, - -3.1936731338500977, - -3.257713794708252, - -3.3158483505249023, - -3.3664917945861816, - -3.4082624912261963, - -3.44002103805542, - -2.642402172088623, - -2.6261532306671143, - -2.6212260723114014, - -2.6277549266815186, - -2.645561695098877, - -2.6741607189178467, - -2.7127721309661865, - -2.7603423595428467, - -2.8155741691589355, - -2.876960515975952, - -2.9428274631500244, - -3.011378049850464, - -3.080742120742798, - -3.1490283012390137, - -3.2143731117248535, - -3.2749948501586914, - -3.3292393684387207, - -3.3756275177001953, - -3.412893533706665, - -3.44002103805542, - -2.642402172088623, - -2.633134365081787, - -2.634997844696045, - -2.647941827774048, - -2.6716132164001465, - -2.7053661346435547, - -2.7482800483703613, - -2.799184560775757, - -2.8566908836364746, - -2.9192302227020264, - -2.9850971698760986, - -3.052494525909424, - -3.119584321975708, - -3.1845362186431885, - -3.2455785274505615, - -3.301046371459961, - -3.349426507949829, - -3.389399528503418, - -3.419874668121338, - -3.44002103805542, - -2.642402172088623, - -2.641709327697754, - -2.65191388130188, - -2.6727375984191895, - -2.7036120891571045, - -2.7436954975128174, - -2.7918941974639893, - -2.846893787384033, - -2.907193899154663, - -2.9711496829986572, - -3.0370163917541504, - -3.1029977798461914, - -3.1672935485839844, - -3.2281503677368164, - -3.283907890319824, - -3.333045244216919, - -3.3742222785949707, - -3.406315326690674, - -3.4284496307373047, - -3.44002103805542, - -2.642402172088623, - -2.6509487628936768, - -2.6701407432556152, - -2.6994545459747314, - -2.738090753555298, - -2.7849950790405273, - -2.83888840675354, - -2.8983004093170166, - -2.961610794067383, - -3.027092695236206, - -3.092959403991699, - -3.157414674758911, - -3.2187001705169678, - -3.275144338607788, - -3.325207471847534, - -3.3675239086151123, - -3.4009392261505127, - -3.4245424270629883, - -3.4376890659332275, - -3.44002103805542, - -2.642402172088623, - -2.659851551055908, - -2.6877033710479736, - -2.7251980304718018, - -2.771312713623047, - -2.824789524078369, - -2.884169578552246, - -2.94783353805542, - -3.0140445232391357, - -3.0809967517852783, - -3.1468634605407715, - -3.209848403930664, - -3.268233299255371, - -3.3204257488250732, - -3.365001916885376, - -3.4007458686828613, - -3.426682710647583, - -3.4421048164367676, - -3.446591854095459, - -3.44002103805542, - -2.642402172088623, - -2.667452812194824, - -2.7026984691619873, - -2.747178077697754, - -2.799678087234497, - -2.8587663173675537, - -2.9228312969207764, - -2.9901254177093506, - -3.0588130950927734, - -3.1270205974578857, - -3.192887306213379, - -3.2546169757843018, - -3.3105251789093018, - -3.3590874671936035, - -3.3989787101745605, - -3.4291112422943115, - -3.448662757873535, - -3.4571001529693604, - -3.454193115234375, - -3.44002103805542, - -2.642402172088623, - -2.672928810119629, - -2.713501214981079, - -2.7630128860473633, - -2.820112705230713, - -2.8832437992095947, - -2.950683832168579, - -3.0205931663513184, - -3.091064929962158, - -3.1601767539978027, - -3.226043701171875, - -3.2868688106536865, - -3.3409929275512695, - -3.3869400024414062, - -3.4234561920166016, - -3.4495460987091064, - -3.4644975662231445, - -3.467902898788452, - -3.4596691131591797, - -3.44002103805542 - ], - "z": [ - 2.2607760429382324, - 2.2704877853393555, - 2.2645740509033203, - 2.2431960105895996, - 2.2069365978240967, - 2.156785249710083, - 2.0941097736358643, - 2.0206198692321777, - 1.9383199214935303, - 1.8494551181793213, - 1.7564493417739868, - 1.6618396043777466, - 1.5682066679000854, - 1.4781043529510498, - 1.3939907550811768, - 1.3181599378585815, - 1.2526805400848389, - 1.199338674545288, - 1.159589409828186, - 1.134516954421997, - 2.2607760429382324, - 2.2749621868133545, - 2.2734007835388184, - 2.256134033203125, - 2.2236335277557373, - 2.1767852306365967, - 2.1168673038482666, - 2.0455143451690674, - 1.9646722078323364, - 1.8765463829040527, - 1.7835407257080078, - 1.6881920099258423, - 1.593101143836975, - 1.5008621215820312, - 1.4139907360076904, - 1.3348567485809326, - 1.2656188011169434, - 1.2081654071807861, - 1.164063811302185, - 1.134516954421997, - 2.2607760429382324, - 2.277066946029663, - 2.277552843093872, - 2.2622203826904297, - 2.23148775100708, - 2.1861934661865234, - 2.127572774887085, - 2.057224988937378, - 1.9770686626434326, - 1.889290452003479, - 1.796284794807434, - 1.7005884647369385, - 1.6048119068145752, - 1.5115675926208496, - 1.4233989715576172, - 1.3427112102508545, - 1.271705150604248, - 1.2123175859451294, - 1.1661685705184937, - 1.134516954421997, - 2.2607760429382324, - 2.27657413482666, - 2.276580572128296, - 2.2607951164245605, - 2.2296485900878906, - 2.183990478515625, - 2.125066041946411, - 2.0544826984405518, - 1.974165916442871, - 1.8863062858581543, - 1.7933005094528198, - 1.6976855993270874, - 1.602069616317749, - 1.5090606212615967, - 1.4211959838867188, - 1.3408719301223755, - 1.270279884338379, - 1.2113453149795532, - 1.1656756401062012, - 1.134516954421997, - 2.2607760429382324, - 2.2735371589660645, - 2.2705891132354736, - 2.2520129680633545, - 2.2183151245117188, - 2.170414686203003, - 2.1096184253692627, - 2.0375847816467285, - 1.9562783241271973, - 1.8679170608520508, - 1.7749114036560059, - 1.6797981262207031, - 1.5851715803146362, - 1.4936131238937378, - 1.4076201915740967, - 1.329538345336914, - 1.2614977359771729, - 1.205353856086731, - 1.1626386642456055, - 1.134516954421997, - 2.2607760429382324, - 2.268284797668457, - 2.260227918624878, - 2.236825466156006, - 2.1987154483795166, - 2.146937608718872, - 2.08290433883667, - 2.008362054824829, - 1.925344467163086, - 1.836115837097168, - 1.7431100606918335, - 1.6488642692565918, - 1.5559489727020264, - 1.4668989181518555, - 1.3841431140899658, - 1.309938669204712, - 1.2463099956512451, - 1.1949926614761353, - 1.157386302947998, - 1.134516954421997, - 2.2607760429382324, - 2.2613863945007324, - 2.246619701385498, - 2.2168781757354736, - 2.172973394393921, - 2.116103172302246, - 2.047818183898926, - 1.9699816703796387, - 1.884716510772705, - 1.7943485975265503, - 1.7013428211212158, - 1.608236312866211, - 1.517568588256836, - 1.4318128824234009, - 1.3533085584640503, - 1.2841968536376953, - 1.226362943649292, - 1.1813843250274658, - 1.1504881381988525, - 1.134516954421997, - 2.2607760429382324, - 2.2535898685455322, - 2.231239080429077, - 2.194333076477051, - 2.143878936767578, - 2.0812525749206543, - 2.008162498474121, - 1.9266024827957153, - 1.8387970924377441, - 1.7471414804458618, - 1.6541357040405273, - 1.5623167753219604, - 1.4741894006729126, - 1.3921573162078857, - 1.318458080291748, - 1.2551021575927734, - 1.2038178443908691, - 1.166003704071045, - 1.1426913738250732, - 1.134516954421997, - 2.2607760429382324, - 2.245739698410034, - 2.215752601623535, - 2.171633005142212, - 2.114584445953369, - 2.0461628437042236, - 1.9682345390319824, - 1.8829253911972046, - 1.7925622463226318, - 1.6996101140975952, - 1.6066043376922607, - 1.5160819292068481, - 1.4305121898651123, - 1.3522292375564575, - 1.2833683490753174, - 1.225807785987854, - 1.1811177730560303, - 1.150517463684082, - 1.1348412036895752, - 1.134516954421997, - 2.2607760429382324, - 2.2386865615844727, - 2.201838970184326, - 2.151238203048706, - 2.0882647037506104, - 2.014636278152466, - 1.9323610067367554, - 1.8436833620071411, - 1.751022219657898, - 1.656905174255371, - 1.5638995170593262, - 1.4745420217514038, - 1.3912702798843384, - 1.316355586051941, - 1.25184166431427, - 1.1994880437850952, - 1.1607229709625244, - 1.136603593826294, - 1.1277880668640137, - 1.134516954421997, - 2.2607760429382324, - 2.2331948280334473, - 2.1910054683685303, - 2.1353583335876465, - 2.0677719116210938, - 1.9900890588760376, - 1.904429316520691, - 1.8131290674209595, - 1.7186787128448486, - 1.6236546039581299, - 1.530648946762085, - 1.442198395729065, - 1.3607158660888672, - 1.288424015045166, - 1.2272945642471313, - 1.178995132446289, - 1.1448431015014648, - 1.125770092010498, - 1.1222965717315674, - 1.134516954421997, - 2.2607760429382324, - 2.2298598289489746, - 2.1844263076782227, - 2.1257145404815674, - 2.055326461791992, - 1.9751815795898438, - 1.8874664306640625, - 1.7945733070373535, - 1.6990363597869873, - 1.603461503982544, - 1.510455846786499, - 1.4225561618804932, - 1.3421602249145508, - 1.271461009979248, - 1.2123870849609375, - 1.1665496826171875, - 1.1351993083953857, - 1.1191909313201904, - 1.1189614534378052, - 1.134516954421997, - 2.2607760429382324, - 2.2290427684783936, - 2.182814359664917, - 2.123351812362671, - 2.0522773265838623, - 1.971529245376587, - 1.8833104372024536, - 1.790027141571045, - 1.6942239999771118, - 1.598514199256897, - 1.5055084228515625, - 1.4177436828613281, - 1.3376140594482422, - 1.2673050165176392, - 1.2087347507476807, - 1.1635005474090576, - 1.1328365802764893, - 1.1175791025161743, - 1.1181443929672241, - 1.134516954421997, - 2.2607760429382324, - 2.230832099914551, - 2.1863443851470947, - 2.128526210784912, - 2.0589547157287598, - 1.9795277118682861, - 1.892411708831787, - 1.799983024597168, - 1.7047629356384277, - 1.6093486547470093, - 1.5163428783416748, - 1.428282618522644, - 1.3475699424743652, - 1.2764064073562622, - 1.2167332172393799, - 1.1701780557632446, - 1.1380109786987305, - 1.121109127998352, - 1.119933843612671, - 1.134516954421997, - 2.2607760429382324, - 2.235034227371216, - 2.194633722305298, - 2.140676736831665, - 2.0746352672576904, - 1.9983103275299072, - 1.9137840270996094, - 1.8233622312545776, - 1.7295111417770386, - 1.6347907781600952, - 1.5417851209640503, - 1.4530308246612549, - 1.3709490299224854, - 1.2977787256240845, - 1.235515832901001, - 1.1858584880828857, - 1.1501615047454834, - 1.1293984651565552, - 1.1241357326507568, - 1.134516954421997, - 2.2607760429382324, - 2.2411932945251465, - 2.206784248352051, - 2.15848708152771, - 2.0976195335388184, - 2.02584171295166, - 1.9451113939285278, - 1.8576310873031616, - 1.7657866477966309, - 1.6720837354660034, - 1.579077959060669, - 1.4893064498901367, - 1.4052178859710693, - 1.329106092453003, - 1.2630470991134644, - 1.2088427543640137, - 1.1679718494415283, - 1.1415488719940186, - 1.1302950382232666, - 1.134516954421997, - 2.2607760429382324, - 2.2486424446105957, - 2.2214791774749756, - 2.1800270080566406, - 2.1254167556762695, - 2.059138298034668, - 1.9829990863800049, - 1.899076223373413, - 1.8096587657928467, - 1.7171860933303833, - 1.6241803169250488, - 1.5331785678863525, - 1.4466630220413208, - 1.3669936656951904, - 1.2963436841964722, - 1.236640214920044, - 1.189511775970459, - 1.1562438011169434, - 1.1377440690994263, - 1.134516954421997, - 2.2607760429382324, - 2.2565741539001465, - 2.237126111984253, - 2.2029623985290527, - 2.155014991760254, - 2.0945918560028076, - 2.023341178894043, - 1.9432061910629272, - 1.8563730716705322, - 1.7652103900909424, - 1.672204613685608, - 1.579892873764038, - 1.4907931089401245, - 1.4073357582092285, - 1.3317973613739014, - 1.2662384510040283, - 1.212447166442871, - 1.1718907356262207, - 1.1456756591796875, - 1.134516954421997, - 2.2607760429382324, - 2.2641286849975586, - 2.2520294189453125, - 2.2248077392578125, - 2.183206558227539, - 2.1283607482910156, - 2.0617661476135254, - 1.985239028930664, - 1.9008673429489136, - 1.8109523057937622, - 1.7179465293884277, - 1.6243871450424194, - 1.5328259468078613, - 1.445760726928711, - 1.3655662536621094, - 1.2944300174713135, - 1.2342925071716309, - 1.1867940425872803, - 1.1532304286956787, - 1.134516954421997, - 2.2607760429382324, - 2.2704877853393555, - 2.2645740509033203, - 2.2431960105895996, - 2.2069365978240967, - 2.156785249710083, - 2.0941097736358643, - 2.0206198692321777, - 1.9383199214935303, - 1.8494551181793213, - 1.7564493417739868, - 1.6618396043777466, - 1.5682066679000854, - 1.4781043529510498, - 1.3939907550811768, - 1.3181599378585815, - 1.2526806592941284, - 1.199338674545288, - 1.159589409828186, - 1.134516954421997 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.25136521458625793, - -0.25614628195762634, - -0.25947773456573486, - -0.26126864552497864, - -0.2614701986312866, - -0.2600768804550171, - -0.25712671875953674, - -0.25270017981529236, - -0.24691800773143768, - -0.2399379163980484, - -0.2319502979516983, - -0.22317305207252502, - -0.21384559571743011, - -0.20422235131263733, - -0.1945658177137375, - -0.18513940274715424, - -0.17620021104812622, - -0.16799212992191315, - -0.160739004611969, - -0.15463872253894806, - -0.2513652443885803, - -0.21621794998645782, - -0.18071015179157257, - -0.14581042528152466, - -0.11247071623802185, - -0.08160050213336945, - -0.054041787981987, - -0.030546292662620544, - -0.01175495982170105, - 0.0018196254968643188, - 0.009807243943214417, - 0.011989995837211609, - 0.008308306336402893, - -0.0011374056339263916, - -0.016089409589767456, - -0.03613990545272827, - -0.060742005705833435, - -0.08922454714775085, - -0.12081066519021988, - -0.15463873744010925, - -0.2513652443885803, - -0.18002687394618988, - -0.1093151792883873, - -0.04115903377532959, - 0.02258242666721344, - 0.08017054200172424, - 0.13003453612327576, - 0.17081409692764282, - 0.20139697194099426, - 0.22094878554344177, - 0.22893640398979187, - 0.22514191269874573, - 0.20966869592666626, - 0.18293893337249756, - 0.14568167924880981, - 0.09891325235366821, - 0.04390940070152283, - -0.01782958209514618, - -0.08461958914995193, - -0.15463873744010925, - -0.2513652443885803, - -0.15149493515491486, - -0.05302956700325012, - 0.04134492576122284, - 0.12905430793762207, - 0.20770594477653503, - 0.27515465021133423, - 0.32956045866012573, - 0.36943942308425903, - 0.39370352029800415, - 0.40169113874435425, - 0.3931843638420105, - 0.36841505765914917, - 0.3280590772628784, - 0.273217111825943, - 0.20538508892059326, - 0.12641334533691406, - 0.0384560227394104, - -0.05608765780925751, - -0.15463875234127045, - -0.2513652443885803, - -0.1337140053510666, - -0.01795274019241333, - 0.09276086091995239, - 0.19540685415267944, - 0.2871851921081543, - 0.3655925989151001, - 0.42849016189575195, - 0.47416239976882935, - 0.5013631582260132, - 0.5093507766723633, - 0.4979073405265808, - 0.4673447608947754, - 0.4184970259666443, - 0.3526962995529175, - 0.271737664937973, - 0.17782926559448242, - 0.07353284955024719, - -0.03830672800540924, - -0.15463875234127045, - -0.2513652443885803, - -0.12861093878746033, - -0.007885828614234924, - 0.10751703381538391, - 0.21444976329803467, - 0.3099954128265381, - 0.3915479779243469, - 0.45688265562057495, - 0.5042174458503723, - 0.5322611331939697, - 0.5402487516403198, - 0.5279623866081238, - 0.4957372546195984, - 0.44445234537124634, - 0.3755066394805908, - 0.29078057408332825, - 0.19258543848991394, - 0.08359977602958679, - -0.03320366144180298, - -0.15463875234127045, - -0.2513652443885803, - -0.13673873245716095, - -0.023919671773910522, - 0.0840144157409668, - 0.1841195523738861, - 0.2736649513244629, - 0.3502081036567688, - 0.41166120767593384, - 0.45634782314300537, - 0.48304909467697144, - 0.49103671312332153, - 0.48009276390075684, - 0.4505158066749573, - 0.403112530708313, - 0.33917611837387085, - 0.2604503929615021, - 0.16908282041549683, - 0.06756591796875, - -0.0413314551115036, - -0.15463875234127045, - -0.2513652443885803, - -0.1572166085243225, - -0.06431683897972107, - 0.024799928069114685, - 0.10770291090011597, - 0.18213054537773132, - 0.24605286121368408, - 0.2977261543273926, - 0.335740864276886, - 0.35906004905700684, - 0.36704766750335693, - 0.35948580503463745, - 0.336580753326416, - 0.29895728826522827, - 0.24764171242713928, - 0.18403369188308716, - 0.10986834764480591, - 0.027168750762939453, - -0.06180931627750397, - -0.15463875234127045, - -0.2513652443885803, - -0.18782545626163483, - -0.12469964474439621, - -0.06370972096920013, - -0.006519302725791931, - 0.04531155526638031, - 0.0903690755367279, - 0.1274242103099823, - 0.15546616911888123, - 0.1737300455570221, - 0.1817176640033722, - 0.1792111098766327, - 0.16627880930900574, - 0.1432734727859497, - 0.11082267761230469, - 0.06981152296066284, - 0.021358713507652283, - -0.03321404755115509, - -0.09241817891597748, - -0.15463873744010925, - -0.2513652443885803, - -0.22524835169315338, - -0.19852463901042938, - -0.17192305624485016, - -0.14616921544075012, - -0.12196565419435501, - -0.09997252374887466, - -0.08078977465629578, - -0.0649406760931015, - -0.05285750329494476, - -0.044869884848594666, - -0.04119572043418884, - -0.04193517565727234, - -0.04706814885139465, - -0.056454554200172424, - -0.06983841955661774, - -0.08685463666915894, - -0.10703903436660767, - -0.12984105944633484, - -0.15463873744010925, - -0.25136521458625793, - -0.26542994379997253, - -0.2777917683124542, - -0.288113534450531, - -0.29611366987228394, - -0.3015739619731903, - -0.3043454885482788, - -0.30435261130332947, - -0.30159515142440796, - -0.2961483299732208, - -0.2881607413291931, - -0.2778502106666565, - -0.26549801230430603, - -0.2514411211013794, - -0.2360628992319107, - -0.21978288888931274, - -0.20304511487483978, - -0.1863061636686325, - -0.170022651553154, - -0.15463872253894806, - -0.25136521458625793, - -0.3040159046649933, - -0.35391122102737427, - -0.39969009160995483, - -0.4401038587093353, - -0.4740500748157501, - -0.5006028413772583, - -0.5190377235412598, - -0.528852105140686, - -0.5297781229019165, - -0.5217905044555664, - -0.5051071643829346, - -0.4801831543445587, - -0.4476984441280365, - -0.4085389971733093, - -0.36377304792404175, - -0.3146216571331024, - -0.26242560148239136, - -0.20860862731933594, - -0.15463870763778687, - -0.25136521458625793, - -0.336824893951416, - -0.41863420605659485, - -0.49456170201301575, - -0.5625361204147339, - -0.6207034587860107, - -0.6674768924713135, - -0.701580822467804, - -0.7220847010612488, - -0.72842937707901, - -0.7204417586326599, - -0.6983397603034973, - -0.6627262234687805, - -0.6145725846290588, - -0.5551924705505371, - -0.48620539903640747, - -0.40949326753616333, - -0.3271486163139343, - -0.24141760170459747, - -0.15463870763778687, - -0.25136518478393555, - -0.36030152440071106, - -0.4649471342563629, - -0.5624475479125977, - -0.6501431465148926, - -0.7256420254707336, - -0.786884605884552, - -0.8322004079818726, - -0.8603532910346985, - -0.8705753087997437, - -0.8625876903533936, - -0.836608350276947, - -0.7933458089828491, - -0.7339802980422974, - -0.6601309776306152, - -0.5738124847412109, - -0.47737911343574524, - -0.3734615445137024, - -0.2648942470550537, - -0.15463869273662567, - -0.25136518478393555, - -0.3719017207622528, - -0.48783108592033386, - -0.5959910154342651, - -0.6934313178062439, - -0.777493953704834, - -0.8458859324455261, - -0.8967416882514954, - -0.928674042224884, - -0.9408119916915894, - -0.9328243732452393, - -0.9049291014671326, - -0.8578870892524719, - -0.7929815649986267, - -0.7119829654693604, - -0.6171005964279175, - -0.5109226703643799, - -0.39634549617767334, - -0.27649444341659546, - -0.15463869273662567, - -0.25136518478393555, - -0.37036845088005066, - -0.4848063886165619, - -0.5915573835372925, - -0.6877096891403198, - -0.7706403732299805, - -0.8380873799324036, - -0.8882109522819519, - -0.919643759727478, - -0.9315283894538879, - -0.9235407710075378, - -0.8958988189697266, - -0.8493563532829285, - -0.7851830124855042, - -0.7051293253898621, - -0.6113789081573486, - -0.5064889788627625, - -0.39332079887390137, - -0.2749611735343933, - -0.15463869273662567, - -0.25136518478393555, - -0.35586783289909363, - -0.4562007188796997, - -0.5496269464492798, - -0.6335982084274292, - -0.7058238387107849, - -0.7643339037895203, - -0.8075322508811951, - -0.8342406153678894, - -0.8437303900718689, - -0.8357427716255188, - -0.8104956746101379, - -0.7686776518821716, - -0.7114295959472656, - -0.640312910079956, - -0.557267427444458, - -0.46455854177474976, - -0.3647151291370392, - -0.2604605555534363, - -0.15463869273662567, - -0.25136521458625793, - -0.3299712538719177, - -0.40511393547058105, - -0.4747435450553894, - -0.5369607210159302, - -0.5900683403015137, - -0.6326178312301636, - -0.6634485721588135, - -0.6817195415496826, - -0.6869322061538696, - -0.6789445877075195, - -0.6579746007919312, - -0.62459397315979, - -0.5797134637832642, - -0.52455735206604, - -0.460629940032959, - -0.389675110578537, - -0.31362834572792053, - -0.23456399142742157, - -0.15463870763778687, - -0.25136521458625793, - -0.2954850196838379, - -0.3370821177959442, - -0.37502187490463257, - -0.40826934576034546, - -0.4359176754951477, - -0.4572126865386963, - -0.47157350182533264, - -0.4786083400249481, - -0.4781253933906555, - -0.4701377749443054, - -0.45486339926719666, - -0.4327189028263092, - -0.4043083190917969, - -0.3704066276550293, - -0.33193856477737427, - -0.28995344042778015, - -0.2455965280532837, - -0.20007772743701935, - -0.15463870763778687, - -0.25136521458625793, - -0.25614628195762634, - -0.2594776749610901, - -0.26126858592033386, - -0.26147010922431946, - -0.2600767910480499, - -0.2571266293525696, - -0.2527000606060028, - -0.24691787362098694, - -0.23993778228759766, - -0.23195017874240875, - -0.22317293286323547, - -0.21384547650814056, - -0.20422223210334778, - -0.19456572830677032, - -0.18513931334018707, - -0.17620015144348145, - -0.16799208521842957, - -0.1607389897108078, - -0.15463872253894806 - ], - "y": [ - -2.8689117431640625, - -2.899953842163086, - -2.9420487880706787, - -2.994048833847046, - -3.054535388946533, - -3.1218583583831787, - -3.194181442260742, - -3.2695322036743164, - -3.3458547592163086, - -3.421067476272583, - -3.4931185245513916, - -3.5600428581237793, - -3.6200149059295654, - -3.671398639678955, - -3.7127926349639893, - -3.743067502975464, - -3.76139760017395, - -3.7672829627990723, - -3.7605628967285156, - -3.7414207458496094, - -2.8689117431640625, - -2.902902603149414, - -2.9478659629821777, - -3.002575635910034, - -3.0655391216278076, - -3.1350390911102295, - -3.209179639816284, - -3.2859385013580322, - -3.3632218837738037, - -3.4389216899871826, - -3.510972738265991, - -3.5774102210998535, - -3.6364214420318604, - -3.686396837234497, - -3.72597336769104, - -3.7540712356567383, - -3.7699244022369385, - -3.773099899291992, - -3.7635116577148438, - -3.7414207458496094, - -2.8689117431640625, - -2.9028127193450928, - -2.947688579559326, - -3.0023157596588135, - -3.065203905105591, - -3.1346373558044434, - -3.2087225914001465, - -3.2854385375976562, - -3.3626925945281982, - -3.4383773803710938, - -3.5104286670684814, - -3.576880931854248, - -3.6359214782714844, - -3.6859397888183594, - -3.725571632385254, - -3.7537360191345215, - -3.7696645259857178, - -3.7729227542877197, - -3.7634217739105225, - -3.7414207458496094, - -2.8689117431640625, - -2.899693727493286, - -2.9415361881256104, - -2.9932973384857178, - -3.053565502166748, - -3.120696783065796, - -3.192859649658203, - -3.2680861949920654, - -3.3443241119384766, - -3.4194939136505127, - -3.4915449619293213, - -3.5585124492645264, - -3.6185688972473145, - -3.670076847076416, - -3.7116308212280273, - -3.7420976161956787, - -3.760646104812622, - -3.766770124435425, - -3.760303020477295, - -3.7414207458496094, - -2.8689117431640625, - -2.8938841819763184, - -2.930075168609619, - -2.9764976501464844, - -3.0318853855133057, - -3.0947275161743164, - -3.1633100509643555, - -3.235761880874634, - -3.3101069927215576, - -3.38431715965271, - -3.4563684463500977, - -3.5242950916290283, - -3.586244821548462, - -3.6405272483825684, - -3.685661792755127, - -3.7204177379608154, - -3.7438464164733887, - -3.7553091049194336, - -3.754493236541748, - -3.7414207458496094, - -2.8689117431640625, - -2.8860130310058594, - -2.9145476818084717, - -2.953737258911133, - -3.0025131702423096, - -3.059544324874878, - -3.1232757568359375, - -3.1919684410095215, - -3.26374888420105, - -3.3366591930389404, - -3.408710479736328, - -3.4779372215270996, - -3.5424513816833496, - -3.6004929542541504, - -3.6504786014556885, - -3.6910452842712402, - -3.721086025238037, - -3.739781618118286, - -3.746622085571289, - -3.7414207458496094, - -2.8689117431640625, - -2.8769335746765137, - -2.8966362476348877, - -2.9274826049804688, - -2.9686312675476074, - -3.0189597606658936, - -3.0770950317382812, - -3.141451597213745, - -3.2102739810943604, - -3.281684637069702, - -3.35373592376709, - -3.42446231842041, - -3.4919345378875732, - -3.554312229156494, - -3.609894037246704, - -3.657163381576538, - -3.694831371307373, - -3.7218704223632812, - -3.7375426292419434, - -3.7414207458496094, - -2.8689117431640625, - -2.8676295280456543, - -2.878282070159912, - -2.900578737258911, - -2.9339118003845215, - -2.9773714542388916, - -3.0297725200653076, - -3.0896856784820557, - -3.1554768085479736, - -3.225350856781006, - -3.2974019050598145, - -3.3696649074554443, - -3.440168619155884, - -3.5069897174835205, - -3.568305730819702, - -3.622443914413452, - -3.6679275035858154, - -3.7035160064697266, - -3.728238582611084, - -3.7414207458496094, - -2.8689117431640625, - -2.8591091632843018, - -2.861473798751831, - -2.875941276550293, - -2.9021167755126953, - -2.939286470413208, - -2.986436367034912, - -3.042280435562134, - -3.105295181274414, - -3.173762083053589, - -3.2458133697509766, - -3.319483518600464, - -3.392763376235962, - -3.463653564453125, - -3.5302207469940186, - -3.590648889541626, - -3.6432900428771973, - -3.6867077350616455, - -3.7197182178497314, - -3.7414207458496094, - -2.8689117431640625, - -2.8522958755493164, - -2.8480329513549805, - -2.8562397956848145, - -2.8766918182373047, - -2.9088315963745117, - -2.951782464981079, - -3.0043725967407227, - -3.0651676654815674, - -3.132509231567383, - -3.2045605182647705, - -3.279356002807617, - -3.354855537414551, - -3.428999662399292, - -3.4997658729553223, - -3.5652239322662354, - -3.6235885620117188, - -3.673267126083374, - -3.712904930114746, - -3.7414207458496094, - -2.8689117431640625, - -2.847928047180176, - -2.83941650390625, - -2.84360933303833, - -2.8603923320770264, - -2.8893074989318848, - -2.9295663833618164, - -2.9800703525543213, - -3.039442300796509, - -3.106062650680542, - -3.1781136989593506, - -3.2536306381225586, - -3.3305532932281494, - -3.40678334236145, - -3.4802417755126953, - -3.548924446105957, - -3.6109580993652344, - -3.6646504402160645, - -3.7085371017456055, - -3.7414207458496094, - -2.8689117431640625, - -2.8464787006378174, - -2.836557388305664, - -2.839418649673462, - -2.8549842834472656, - -2.8828296661376953, - -2.9221951961517334, - -2.9720072746276855, - -3.030906915664673, - -3.097287893295288, - -3.169339179992676, - -3.2450952529907227, - -3.3224902153015137, - -3.3994123935699463, - -3.473763942718506, - -3.5435163974761963, - -3.606767416000366, - -3.6617915630340576, - -3.707087755203247, - -3.7414207458496094, - -2.8689117431640625, - -2.8481051921844482, - -2.839766025543213, - -2.8441219329833984, - -2.861053943634033, - -2.8901000022888184, - -2.9304680824279785, - -2.9810569286346436, - -3.0404865741729736, - -3.1071360111236572, - -3.179187297821045, - -3.2546749114990234, - -3.3315396308898926, - -3.4076852798461914, - -3.481034278869629, - -3.549586057662964, - -3.6114706993103027, - -3.6650002002716064, - -3.708714246749878, - -3.7414207458496094, - -2.8689117431640625, - -2.8526313304901123, - -2.8486948013305664, - -2.8572094440460205, - -2.877943515777588, - -2.9103307723999023, - -2.953488349914551, - -3.0062386989593506, - -3.067142963409424, - -3.13454008102417, - -3.2065911293029785, - -3.2813313007354736, - -3.3567216396331787, - -3.4307055473327637, - -3.501265048980713, - -3.5664756298065186, - -3.624558210372925, - -3.673928737640381, - -3.713240385055542, - -3.7414207458496094, - -2.8689117431640625, - -2.8595662117004395, - -2.862375497817993, - -2.877263069152832, - -2.903822422027588, - -2.9413297176361084, - -2.9887614250183105, - -3.04482364654541, - -3.107987642288208, - -3.176529884338379, - -3.2485811710357666, - -3.322175979614258, - -3.3953065872192383, - -3.4659786224365234, - -3.532263994216919, - -3.5923547744750977, - -3.6446118354797363, - -3.6876096725463867, - -3.720175266265869, - -3.7414207458496094, - -2.8689117431640625, - -2.8681588172912598, - -2.879326105117798, - -2.902109384536743, - -2.935886859893799, - -2.9797375202178955, - -3.0324649810791016, - -3.0926308631896973, - -3.1585941314697266, - -3.228555679321289, - -3.3006069660186768, - -3.3727824687957764, - -3.4431138038635254, - -3.5096819400787354, - -3.570671796798706, - -3.6244192123413086, - -3.6694581508636475, - -3.7045602798461914, - -3.7287678718566895, - -3.7414207458496094, - -2.8689117431640625, - -2.8774776458740234, - -2.897709846496582, - -2.929056167602539, - -2.9706618785858154, - -3.0213921070098877, - -3.0798628330230713, - -3.144479274749756, - -3.2134790420532227, - -3.2849795818328857, - -3.3570306301116943, - -3.4276671409606934, - -3.494962215423584, - -3.557080030441284, - -3.6123263835906982, - -3.659193992614746, - -3.6964049339294434, - -3.7229437828063965, - -3.738086700439453, - -3.7414207458496094, - -2.8689117431640625, - -2.8865129947662354, - -2.915534019470215, - -2.955183267593384, - -3.0043790340423584, - -3.061779499053955, - -3.125818967819214, - -3.1947505474090576, - -3.2666940689086914, - -3.339686870574951, - -3.411738157272339, - -3.480882406234741, - -3.5452334880828857, - -3.6030361652374268, - -3.6527137756347656, - -3.692911148071289, - -3.722532033920288, - -3.7407681941986084, - -3.747122049331665, - -3.7414207458496094, - -2.8689117431640625, - -2.8942859172821045, - -2.9308676719665527, - -2.9776594638824463, - -3.0333845615386963, - -3.0965232849121094, - -3.165353298187256, - -3.237997055053711, - -3.3124730587005615, - -3.386749505996704, - -3.458800792694092, - -3.5266613960266113, - -3.588479995727539, - -3.6425704956054688, - -3.68745756149292, - -3.721916675567627, - -3.7450082302093506, - -3.756101608276367, - -3.754894971847534, - -3.7414207458496094, - -2.8689117431640625, - -2.899953842163086, - -2.9420487880706787, - -2.994048833847046, - -3.054535388946533, - -3.1218583583831787, - -3.194181442260742, - -3.2695322036743164, - -3.3458547592163086, - -3.421067476272583, - -3.4931185245513916, - -3.5600428581237793, - -3.6200149059295654, - -3.671398639678955, - -3.7127926349639893, - -3.743067502975464, - -3.76139760017395, - -3.7672829627990723, - -3.7605628967285156, - -3.7414207458496094 - ], - "z": [ - 2.4947872161865234, - 2.5038063526153564, - 2.4958271980285645, - 2.471066951751709, - 2.430201530456543, - 2.374345302581787, - 2.3050222396850586, - 2.2241227626800537, - 2.1338539123535156, - 2.0366780757904053, - 1.9352458715438843, - 1.8323239088058472, - 1.7307199239730835, - 1.6332051753997803, - 1.5424396991729736, - 1.4608994722366333, - 1.3908084630966187, - 1.3340787887573242, - 1.2922577857971191, - 1.2664861679077148, - 2.4947872161865234, - 2.509045362472534, - 2.506162166595459, - 2.4862160682678223, - 2.449751377105713, - 2.3977627754211426, - 2.3316686153411865, - 2.2532711029052734, - 2.1647093296051025, - 2.0683987140655518, - 1.9669662714004517, - 1.8631792068481445, - 1.7598682641983032, - 1.6598515510559082, - 1.5658572912216187, - 1.4804494380950928, - 1.4059574604034424, - 1.3444137573242188, - 1.2974966764450073, - 1.2664861679077148, - 2.4947872161865234, - 2.511831521987915, - 2.511658191680908, - 2.4942727088928223, - 2.460148334503174, - 2.410216808319092, - 2.345839500427246, - 2.268772602081299, - 2.1811184883117676, - 2.085268020629883, - 1.9838358163833618, - 1.8795884847640991, - 1.7753697633743286, - 1.6740224361419678, - 1.5783110857009888, - 1.4908463954925537, - 1.4140139818191528, - 1.349910020828247, - 1.3002827167510986, - 1.2664861679077148, - 2.4947872161865234, - 2.5118627548217773, - 2.5117204189300537, - 2.49436354637146, - 2.460265636444092, - 2.4103572368621826, - 2.3459994792938232, - 2.2689476013183594, - 2.1813037395477295, - 2.085458517074585, - 1.9840261936187744, - 1.879773736000061, - 1.7755447626113892, - 1.674182415008545, - 1.5784516334533691, - 1.4909636974334717, - 1.41410493850708, - 1.3499720096588135, - 1.30031418800354, - 1.2664861679077148, - 2.4947872161865234, - 2.509136199951172, - 2.5063414573669434, - 2.4864790439605713, - 2.4500908851623535, - 2.3981692790985107, - 2.3321309089660645, - 2.253777027130127, - 2.1652448177337646, - 2.0689492225646973, - 1.9675167798995972, - 1.8637146949768066, - 1.7603740692138672, - 1.6603139638900757, - 1.5662636756896973, - 1.4807887077331543, - 1.4062204360961914, - 1.3445930480957031, - 1.2975876331329346, - 1.2664861679077148, - 2.4947872161865234, - 2.5039470195770264, - 2.4961042404174805, - 2.471473455429077, - 2.4307260513305664, - 2.3749735355377197, - 2.305737018585205, - 2.224904775619507, - 2.1346817016601562, - 2.0375289916992188, - 1.9360967874526978, - 1.8331516981124878, - 1.731501817703247, - 1.6339199542999268, - 1.5430679321289062, - 1.4614239931106567, - 1.3912148475646973, - 1.3343560695648193, - 1.29239821434021, - 1.2664861679077148, - 2.4947872161865234, - 2.4968574047088623, - 2.482118606567383, - 2.4509730339050293, - 2.4042701721191406, - 2.3432838916778564, - 2.2696776390075684, - 2.185459613800049, - 2.0929267406463623, - 1.994603157043457, - 1.8931708335876465, - 1.7913967370986938, - 1.6920567750930786, - 1.5978606939315796, - 1.5113781690597534, - 1.4349679946899414, - 1.3707144260406494, - 1.3203701972961426, - 1.2853087186813354, - 1.2664861679077148, - 2.4947872161865234, - 2.488635778427124, - 2.465899705886841, - 2.427199125289917, - 2.3735897541046143, - 2.3065338134765625, - 2.227860689163208, - 2.139716148376465, - 2.0445046424865723, - 1.944823145866394, - 1.8433908224105835, - 1.7429745197296143, - 1.6463133096694946, - 1.5560437440872192, - 1.474628210067749, - 1.404287576675415, - 1.346940517425537, - 1.3041512966156006, - 1.2770870923995972, - 1.2664861679077148, - 2.4947872161865234, - 2.480173110961914, - 2.449205160140991, - 2.4027280807495117, - 2.3420097827911377, - 2.2687063217163086, - 2.1848175525665283, - 2.0926313400268555, - 1.9946625232696533, - 1.8935834169387817, - 1.7921510934829712, - 1.6931324005126953, - 1.5992285013198853, - 1.51300048828125, - 1.4368007183074951, - 1.3727076053619385, - 1.3224694728851318, - 1.287456750869751, - 1.2686244249343872, - 1.2664861679077148, - 2.4947872161865234, - 2.472386360168457, - 2.4338440895080566, - 2.38021183013916, - 2.3129522800445557, - 2.233900547027588, - 2.145212411880493, - 2.0493075847625732, - 1.9488017559051514, - 1.8464365005493164, - 1.7450042963027954, - 1.6472716331481934, - 1.5559046268463135, - 1.4733954668045044, - 1.4019948244094849, - 1.343650221824646, - 1.2999532222747803, - 1.2720956802368164, - 1.2608376741409302, - 1.2664861679077148, - 2.4947872161865234, - 2.4661195278167725, - 2.421481132507324, - 2.3620901107788086, - 2.2895662784576416, - 2.205887794494629, - 2.113337516784668, - 2.014439582824707, - 1.9118919372558594, - 1.8084917068481445, - 1.707059383392334, - 1.6103618144989014, - 1.5210366249084473, - 1.4415204524993896, - 1.3739821910858154, - 1.3202641010284424, - 1.2818315029144287, - 1.2597328424453735, - 1.254570722579956, - 1.2664861679077148, - 2.4947872161865234, - 2.4620513916015625, - 2.4134562015533447, - 2.3503270149230957, - 2.274385690689087, - 2.187704086303711, - 2.092646598815918, - 1.9918060302734375, - 1.8879328966140747, - 1.7838608026504517, - 1.6824284791946411, - 1.5864027738571167, - 1.4984030723571777, - 1.4208295345306396, - 1.3557984828948975, - 1.3050837516784668, - 1.2700684070587158, - 1.2517077922821045, - 1.2505028247833252, - 1.2664861679077148, - 2.4947872161865234, - 2.460623264312744, - 2.4106385707855225, - 2.3461968898773193, - 2.2690558433532715, - 2.1813199520111084, - 2.0853819847106934, - 1.9838593006134033, - 1.8795208930969238, - 1.7752128839492798, - 1.6737806797027588, - 1.5779907703399658, - 1.4904563426971436, - 1.4135650396347046, - 1.349414348602295, - 1.2997539043426514, - 1.2659382820129395, - 1.2488901615142822, - 1.2490744590759277, - 1.2664861679077148, - 2.4947872161865234, - 2.461989402770996, - 2.4133338928222656, - 2.3501474857330322, - 2.2741541862487793, - 2.187427043914795, - 2.0923311710357666, - 1.991460919380188, - 1.8875676393508911, - 1.7834852933883667, - 1.6820529699325562, - 1.586037516593933, - 1.4980579614639282, - 1.4205141067504883, - 1.3555212020874023, - 1.3048522472381592, - 1.269888997077942, - 1.2515854835510254, - 1.2504407167434692, - 1.2664861679077148, - 2.4947872161865234, - 2.4660019874572754, - 2.4212498664855957, - 2.361750841140747, - 2.289128303527832, - 2.2053632736206055, - 2.1127407550811768, - 2.013786792755127, - 1.9112008810043335, - 1.8077813386917114, - 1.7063490152359009, - 1.609670877456665, - 1.5203838348388672, - 1.4409236907958984, - 1.373457670211792, - 1.319826364517212, - 1.2814922332763672, - 1.2595014572143555, - 1.254453420639038, - 1.2664861679077148, - 2.4947872161865234, - 2.47222638130188, - 2.4335286617279053, - 2.379749298095703, - 2.3123555183410645, - 2.2331855297088623, - 2.1443991661071777, - 2.048417806625366, - 1.9478598833084106, - 1.845468282699585, - 1.7440359592437744, - 1.6463297605514526, - 1.5550148487091064, - 1.4725821018218994, - 1.4012799263000488, - 1.3430534601211548, - 1.2994906902313232, - 1.271780252456665, - 1.2606778144836426, - 1.2664861679077148, - 2.4947872161865234, - 2.479987859725952, - 2.4488396644592285, - 2.4021925926208496, - 2.3413186073303223, - 2.267878532409668, - 2.183875560760498, - 2.0916011333465576, - 1.9935718774795532, - 1.892462134361267, - 1.7910298109054565, - 1.6920417547225952, - 1.5981981754302979, - 1.5120586156845093, - 1.4359729290008545, - 1.3720166683197021, - 1.3219339847564697, - 1.2870914936065674, - 1.2684392929077148, - 1.2664861679077148, - 2.4947872161865234, - 2.488445281982422, - 2.465524196624756, - 2.4266486167907715, - 2.3728792667388916, - 2.305682897567749, - 2.2268924713134766, - 2.1386570930480957, - 2.0433833599090576, - 1.9436705112457275, - 1.842238187789917, - 1.7418533563613892, - 1.645254135131836, - 1.5550754070281982, - 1.4737772941589355, - 1.403577208518982, - 1.3463900089263916, - 1.3037757873535156, - 1.2768967151641846, - 1.2664861679077148, - 2.4947872161865234, - 2.4966824054718018, - 2.4817733764648438, - 2.450467109680176, - 2.4036173820495605, - 2.3425018787384033, - 2.2687880992889404, - 2.1844863891601562, - 2.0918965339660645, - 1.993544101715088, - 1.8921117782592773, - 1.7903664112091064, - 1.6910834312438965, - 1.596971035003662, - 1.5105962753295898, - 1.4343152046203613, - 1.370208501815796, - 1.3200252056121826, - 1.2851338386535645, - 1.2664861679077148, - 2.4947872161865234, - 2.5038063526153564, - 2.4958271980285645, - 2.471066951751709, - 2.430201530456543, - 2.374345302581787, - 2.3050222396850586, - 2.2241227626800537, - 2.1338539123535156, - 2.0366780757904053, - 1.9352458715438843, - 1.8323239088058472, - 1.7307199239730835, - 1.6332051753997803, - 1.5424398183822632, - 1.4608994722366333, - 1.3908084630966187, - 1.3340787887573242, - 1.2922577857971191, - 1.2664861679077148 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.2602466344833374, - -0.25480517745018005, - -0.24951216578483582, - -0.2445119470357895, - -0.23994094133377075, - -0.23592381179332733, - -0.23257015645503998, - -0.22997143864631653, - -0.22819854319095612, - -0.22729983925819397, - -0.22729983925819397, - -0.22819854319095612, - -0.22997143864631653, - -0.23257015645503998, - -0.23592381179332733, - -0.23994094133377075, - -0.2445119470357895, - -0.24951216578483582, - -0.25480517745018005, - -0.2602466344833374, - -0.2602466344833374, - -0.29817232489585876, - -0.33506348729133606, - -0.36991387605667114, - -0.40177279710769653, - -0.4297712445259094, - -0.4531455338001251, - -0.4712580442428589, - -0.4836146831512451, - -0.48987841606140137, - -0.48987841606140137, - -0.4836146831512451, - -0.4712580442428589, - -0.4531455636024475, - -0.4297712743282318, - -0.40177279710769653, - -0.36991387605667114, - -0.33506348729133606, - -0.29817232489585876, - -0.2602466344833374, - -0.260246604681015, - -0.33742958307266235, - -0.41250723600387573, - -0.4834316372871399, - -0.5482680797576904, - -0.6052480936050415, - -0.6528173089027405, - -0.6896783113479614, - -0.714825451374054, - -0.7275728583335876, - -0.7275728583335876, - -0.714825451374054, - -0.6896783113479614, - -0.6528173685073853, - -0.6052480936050415, - -0.5482680797576904, - -0.4834316372871399, - -0.41250723600387573, - -0.33742958307266235, - -0.260246604681015, - -0.260246604681015, - -0.3683229386806488, - -0.4734512269496918, - -0.5727638006210327, - -0.6635518074035645, - -0.7433387041091919, - -0.8099479675292969, - -0.861562967300415, - -0.8967755436897278, - -0.9146252870559692, - -0.9146252870559692, - -0.8967755436897278, - -0.861562967300415, - -0.8099480271339417, - -0.7433387041091919, - -0.6635518074035645, - -0.5727638006210327, - -0.4734512269496918, - -0.3683229386806488, - -0.260246604681015, - -0.260246604681015, - -0.387504518032074, - -0.5112911462783813, - -0.6282299757003784, - -0.7351311445236206, - -0.829078733921051, - -0.9075100421905518, - -0.9682856798171997, - -1.009747862815857, - -1.0307655334472656, - -1.0307655334472656, - -1.009747862815857, - -0.9682856798171997, - -0.9075100421905518, - -0.8290787935256958, - -0.7351312041282654, - -0.6282299757003784, - -0.5112911462783813, - -0.387504518032074, - -0.260246604681015, - -0.260246604681015, - -0.3928956985473633, - -0.5219265222549438, - -0.6438193321228027, - -0.7552493810653687, - -0.8531769514083862, - -0.9349309206008911, - -0.9982813596725464, - -1.0415000915527344, - -1.0634081363677979, - -1.0634081363677979, - -1.0415000915527344, - -0.9982813596725464, - -0.9349309802055359, - -0.853177011013031, - -0.7552493810653687, - -0.6438193321228027, - -0.5219265222549438, - -0.3928956985473633, - -0.260246604681015, - -0.260246604681015, - -0.3839123547077179, - -0.5042048096656799, - -0.6178426742553711, - -0.7217264175415039, - -0.8130220770835876, - -0.8892393708229065, - -0.9482996463775635, - -0.9885913729667664, - -1.0090157985687256, - -1.0090157985687256, - -0.9885913729667664, - -0.9482996463775635, - -0.8892394304275513, - -0.8130221962928772, - -0.7217264175415039, - -0.6178426742553711, - -0.5042048096656799, - -0.3839123547077179, - -0.260246604681015, - -0.260246604681015, - -0.36152786016464233, - -0.4600464701652527, - -0.5531150102615356, - -0.6381949186325073, - -0.7129652500152588, - -0.7753867506980896, - -0.8237565755844116, - -0.856755256652832, - -0.8734827041625977, - -0.8734827041625977, - -0.856755256652832, - -0.8237565755844116, - -0.7753867506980896, - -0.7129653692245483, - -0.6381949186325073, - -0.5531150102615356, - -0.4600464701652527, - -0.36152786016464233, - -0.260246604681015, - -0.260246604681015, - -0.32816800475120544, - -0.39423668384552, - -0.45665043592453003, - -0.5137068033218384, - -0.5638494491577148, - -0.6057106256484985, - -0.6381484866142273, - -0.6602780818939209, - -0.6714959144592285, - -0.6714959144592285, - -0.6602780818939209, - -0.6381484866142273, - -0.6057106256484985, - -0.5638495683670044, - -0.5137068629264832, - -0.45665043592453003, - -0.39423668384552, - -0.32816800475120544, - -0.260246604681015, - -0.2602466344833374, - -0.28744781017303467, - -0.3139069974422455, - -0.3389025032520294, - -0.361752450466156, - -0.38183361291885376, - -0.39859819412231445, - -0.4115889072418213, - -0.4204513430595398, - -0.42494386434555054, - -0.42494386434555054, - -0.4204513430595398, - -0.4115889072418213, - -0.39859819412231445, - -0.38183361291885376, - -0.3617524802684784, - -0.3389025032520294, - -0.3139069974422455, - -0.28744781017303467, - -0.2602466344833374, - -0.2602466344833374, - -0.24377994239330292, - -0.2277624011039734, - -0.212630957365036, - -0.19879834353923798, - -0.1866418719291687, - -0.17649316787719727, - -0.1686290055513382, - -0.1632639467716217, - -0.16054433584213257, - -0.16054433584213257, - -0.1632639467716217, - -0.1686290055513382, - -0.17649315297603607, - -0.1866418719291687, - -0.19879832863807678, - -0.212630957365036, - -0.2277624011039734, - -0.24377994239330292, - -0.2602466344833374, - -0.2602466642856598, - -0.20189648866653442, - -0.1451379656791687, - -0.09151934087276459, - -0.042503103613853455, - 0.0005736351013183594, - 0.03653585910797119, - 0.06440263986587524, - 0.08341386914253235, - 0.09305089712142944, - 0.09305089712142944, - 0.08341386914253235, - 0.06440263986587524, - 0.03653585910797119, - 0.0005736649036407471, - -0.042503103613853455, - -0.09151934087276459, - -0.1451379656791687, - -0.20189648866653442, - -0.2602466642856598, - -0.2602466642856598, - -0.16633617877960205, - -0.07498735189437866, - 0.011308103799819946, - 0.09019625186920166, - 0.15952515602111816, - 0.21740388870239258, - 0.2622535824775696, - 0.2928507924079895, - 0.30836087465286255, - 0.30836087465286255, - 0.2928507924079895, - 0.2622535824775696, - 0.21740394830703735, - 0.15952524542808533, - 0.09019628167152405, - 0.011308103799819946, - -0.07498735189437866, - -0.16633617877960205, - -0.2602466642856598, - -0.2602466642856598, - -0.14095252752304077, - -0.02491241693496704, - 0.08470839262008667, - 0.18491971492767334, - 0.27298808097839355, - 0.3465111255645752, - 0.403483510017395, - 0.44235098361968994, - 0.46205347776412964, - 0.46205347776412964, - 0.44235098361968994, - 0.403483510017395, - 0.34651118516921997, - 0.2729882001876831, - 0.18491971492767334, - 0.08470839262008667, - -0.02491241693496704, - -0.14095252752304077, - -0.2602466642856598, - -0.2602466642856598, - -0.12849624454975128, - -0.0003396570682525635, - 0.12072739005088806, - 0.2314024269580841, - 0.3286665678024292, - 0.40986669063568115, - 0.47278785705566406, - 0.5157137513160706, - 0.5374734997749329, - 0.5374734997749329, - 0.5157137513160706, - 0.47278785705566406, - 0.4098667502403259, - 0.328666627407074, - 0.23140248656272888, - 0.12072739005088806, - -0.0003396570682525635, - -0.12849624454975128, - -0.2602466642856598, - -0.2602466642856598, - -0.13031715154647827, - -0.003931790590286255, - 0.11546197533607483, - 0.22460737824440002, - 0.32052725553512573, - 0.40060508251190186, - 0.4626566767692566, - 0.5049893260002136, - 0.5264482498168945, - 0.5264482498168945, - 0.5049893260002136, - 0.4626566767692566, - 0.40060514211654663, - 0.3205273151397705, - 0.2246074378490448, - 0.11546197533607483, - -0.003931790590286255, - -0.13031715154647827, - -0.2602466642856598, - -0.2602466642856598, - -0.1462179720401764, - -0.035299643874168396, - 0.06948265433311462, - 0.16527089476585388, - 0.24945205450057983, - 0.31972992420196533, - 0.3741875886917114, - 0.41133958101272583, - 0.4301724433898926, - 0.4301724433898926, - 0.41133958101272583, - 0.3741875886917114, - 0.3197299838066101, - 0.2494521141052246, - 0.16527089476585388, - 0.06948265433311462, - -0.035299643874168396, - -0.1462179720401764, - -0.2602466642856598, - -0.2602466642856598, - -0.1744755506515503, - -0.09104402363300323, - -0.012227937579154968, - 0.05982285737991333, - 0.12314295768737793, - 0.17600521445274353, - 0.21696773171424866, - 0.2449129819869995, - 0.25907886028289795, - 0.25907886028289795, - 0.2449129819869995, - 0.21696773171424866, - 0.17600524425506592, - 0.12314304709434509, - 0.05982288718223572, - -0.012227937579154968, - -0.09104402363300323, - -0.1744755506515503, - -0.2602466642856598, - -0.2602466344833374, - -0.21202777326107025, - -0.16512417793273926, - -0.12081529200077057, - -0.08030970394611359, - -0.04471234977245331, - -0.014994204044342041, - 0.008034110069274902, - 0.023744404315948486, - 0.03170818090438843, - 0.03170818090438843, - 0.023744404315948486, - 0.008034110069274902, - -0.014994189143180847, - -0.044712334871292114, - -0.08030968904495239, - -0.12081529200077057, - -0.16512417793273926, - -0.21202777326107025, - -0.2602466344833374, - -0.2602466344833374, - -0.25480520725250244, - -0.2495122104883194, - -0.24451202154159546, - -0.23994103074073792, - -0.2359239161014557, - -0.23257027566432953, - -0.22997155785560608, - -0.22819867730140686, - -0.22729997336864471, - -0.22729997336864471, - -0.22819867730140686, - -0.22997155785560608, - -0.23257027566432953, - -0.2359239161014557, - -0.23994103074073792, - -0.24451202154159546, - -0.2495122104883194, - -0.25480520725250244, - -0.2602466344833374 - ], - "y": [ - -4.035583019256592, - -4.004126071929932, - -3.9608051776885986, - -3.906801223754883, - -3.843587875366211, - -3.7728893756866455, - -3.696633815765381, - -3.6169016361236572, - -3.535867691040039, - -3.455742120742798, - -3.3787107467651367, - -3.3068747520446777, - -3.2421936988830566, - -3.186431646347046, - -3.1411099433898926, - -3.1074647903442383, - -3.086413621902466, - -3.078531265258789, - -3.0840320587158203, - -3.102766513824463, - -4.035583019256592, - -3.999178171157837, - -3.9510440826416016, - -3.892493486404419, - -3.8251237869262695, - -3.75077223777771, - -3.6714673042297363, - -3.589372158050537, - -3.506725788116455, - -3.425783157348633, - -3.3487517833709717, - -3.2777328491210938, - -3.2146639823913574, - -3.1612648963928223, - -3.118992805480957, - -3.0890004634857178, - -3.072105884552002, - -3.068770170211792, - -3.0790841579437256, - -3.102766513824463, - -4.035583019256592, - -3.997485876083374, - -3.9477057456970215, - -3.8875999450683594, - -3.8188085556030273, - -3.7432079315185547, - -3.6628599166870117, - -3.579956293106079, - -3.4967589378356934, - -3.415536642074585, - -3.338505268096924, - -3.267765998840332, - -3.2052483558654785, - -3.1526575088500977, - -3.1114282608032227, - -3.0826852321624756, - -3.0672123432159424, - -3.065431594848633, - -3.0773918628692627, - -3.102766513824463, - -4.035583019256592, - -3.999232769012451, - -3.9511516094207764, - -3.892651081085205, - -3.825326919555664, - -3.7510156631469727, - -3.6717443466186523, - -3.589675188064575, - -3.507046699523926, - -3.4261128902435303, - -3.349081516265869, - -3.2780537605285645, - -3.2149670124053955, - -3.1615419387817383, - -3.1192362308502197, - -3.0892035961151123, - -3.072263479232788, - -3.068877696990967, - -3.0791385173797607, - -3.102766513824463, - -4.035583019256592, - -4.0042290687561035, - -3.961008310317993, - -3.9070992469787598, - -3.8439724445343018, - -3.7733500003814697, - -3.697157859802246, - -3.6174750328063965, - -3.5364744663238525, - -3.4563660621643066, - -3.3793346881866455, - -3.307481527328491, - -3.242766857147217, - -3.186955690383911, - -3.141570568084717, - -3.10784912109375, - -3.0867116451263428, - -3.0787343978881836, - -3.084135055541992, - -3.102766513824463, - -4.035583019256592, - -4.011934280395508, - -3.976207971572876, - -3.9293789863586426, - -3.8727245330810547, - -3.8077900409698486, - -3.736346960067749, - -3.660343647003174, - -3.5818533897399902, - -3.5030174255371094, - -3.4259860515594482, - -3.352860450744629, - -3.285635471343994, - -3.226144552230835, - -3.1760106086730957, - -3.136601209640503, - -3.1089913845062256, - -3.0939340591430664, - -3.0918400287628174, - -3.102766513824463, - -4.035583019256592, - -4.021512508392334, - -3.995103359222412, - -3.957075834274292, - -3.9084675312042236, - -3.850604295730591, - -3.785064220428467, - -3.713635206222534, - -3.63826584815979, - -3.561011791229248, - -3.483980417251587, - -3.4092729091644287, - -3.3389272689819336, - -3.2748618125915527, - -3.218824863433838, - -3.172344207763672, - -3.136688232421875, - -3.1128292083740234, - -3.1014182567596436, - -3.102766513824463, - -4.035583019256592, - -4.031926155090332, - -4.015646457672119, - -3.9871885776519775, - -3.9473280906677246, - -3.8971526622772217, - -3.8380308151245117, - -3.7715752124786377, - -3.699598789215088, - -3.6240644454956055, - -3.5470330715179443, - -3.4706058502197266, - -3.396867036819458, - -3.3278284072875977, - -3.2653732299804688, - -3.211204767227173, - -3.1668009757995605, - -3.1333727836608887, - -3.1118321418762207, - -3.102766513824463, - -4.035583019256592, - -4.042046546936035, - -4.035611629486084, - -4.016453742980957, - -3.9850950241088867, - -3.9423909187316895, - -3.8895068168640137, - -3.8278846740722656, - -3.7592055797576904, - -3.685342788696289, - -3.608311653137207, - -3.530212640762329, - -3.453176498413086, - -3.3793044090270996, - -3.3106117248535156, - -3.248971700668335, - -3.19606614112854, - -3.1533379554748535, - -3.121952772140503, - -3.102766513824463, - -4.035583019256592, - -4.050777435302734, - -4.052835464477539, - -4.04170036315918, - -4.017675876617432, - -3.981417179107666, - -3.9339139461517334, - -3.8764615058898926, - -3.810626983642578, - -3.738206386566162, - -3.661175012588501, - -3.581634044647217, - -3.501753330230713, - -3.4237117767333984, - -3.349637985229492, - -3.281552314758301, - -3.2213125228881836, - -3.1705615520477295, - -3.130683422088623, - -3.102766513824463, - -4.035583019256592, - -4.057172775268555, - -4.065450668334961, - -4.060192108154297, - -4.041539669036865, - -4.010002136230469, - -3.966440200805664, - -3.9120419025421143, - -3.8482909202575684, - -3.7769265174865723, - -3.699895143508911, - -3.619297981262207, - -3.5373337268829346, - -3.45623779296875, - -3.378222703933716, - -3.3054163455963135, - -3.23980450630188, - -3.1831769943237305, - -3.1370785236358643, - -3.102766513824463, - -4.035583019256592, - -4.0605387687683105, - -4.072091102600098, - -4.069925308227539, - -4.054100513458252, - -4.02504825592041, - -3.983560800552368, - -3.930769920349121, - -3.8681156635284424, - -3.797307252883911, - -3.72027587890625, - -3.639122724533081, - -3.5560617446899414, - -3.473358392715454, - -3.3932688236236572, - -3.3179771900177, - -3.249537944793701, - -3.189817190170288, - -3.14044451713562, - -3.102766513824463, - -4.035583019256592, - -4.060511112213135, - -4.0720367431640625, - -4.069845676422119, - -4.05399751663208, - -4.0249247550964355, - -3.9834203720092773, - -3.9306163787841797, - -3.867953062057495, - -3.797140121459961, - -3.7201087474823, - -3.638960123062134, - -3.555908203125, - -3.4732179641723633, - -3.3931453227996826, - -3.3178741931915283, - -3.249458074569702, - -3.189762830734253, - -3.1404168605804443, - -3.102766513824463, - -4.035583019256592, - -4.057092666625977, - -4.065293312072754, - -4.059961318969727, - -4.041241645812988, - -4.009645462036133, - -3.966033935546875, - -3.911597490310669, - -3.84782075881958, - -3.7764430046081543, - -3.699411630630493, - -3.6188278198242188, - -3.5368895530700684, - -3.45583176612854, - -3.377865791320801, - -3.3051183223724365, - -3.2395734786987305, - -3.1830193996429443, - -3.1369986534118652, - -3.102766513824463, - -4.035583019256592, - -4.050654411315918, - -4.052591800689697, - -4.0413432121276855, - -4.017215251922607, - -3.980865478515625, - -3.933286190032959, - -3.87577486038208, - -3.8099000453948975, - -3.737459182739258, - -3.6604278087615967, - -3.580907106399536, - -3.5010666847229004, - -3.423083782196045, - -3.349086284637451, - -3.2810919284820557, - -3.2209556102752686, - -3.1703178882598877, - -3.1305601596832275, - -3.102766513824463, - -4.035583019256592, - -4.041893005371094, - -4.035308837890625, - -4.016009330749512, - -3.9845216274261475, - -3.941704273223877, - -3.8887252807617188, - -3.8270299434661865, - -3.75830078125, - -3.684412717819214, - -3.6073813438415527, - -3.5293078422546387, - -3.452321767807007, - -3.378523111343384, - -3.309925079345703, - -3.248398542404175, - -3.195621967315674, - -3.1530349254608154, - -3.1217989921569824, - -3.102766513824463, - -4.035583019256592, - -4.031758785247803, - -4.015316963195801, - -3.9867050647735596, - -3.946704149246216, - -3.8964052200317383, - -3.8371803760528564, - -3.7706449031829834, - -3.6986141204833984, - -3.6230523586273193, - -3.546020984649658, - -3.469621181488037, - -3.395936965942383, - -3.3269782066345215, - -3.2646257877349854, - -3.210580825805664, - -3.1663174629211426, - -3.133042812347412, - -3.1116647720336914, - -3.102766513824463, - -4.035583019256592, - -4.021349906921387, - -3.9947824478149414, - -3.9566056728363037, - -3.90786075592041, - -3.84987735748291, - -3.7842369079589844, - -3.7127304077148438, - -3.637308120727539, - -3.5600271224975586, - -3.4829957485198975, - -3.4083151817321777, - -3.338022232055664, - -3.2740347385406494, - -3.2180979251861572, - -3.1717374324798584, - -3.1362180709838867, - -3.112508535385132, - -3.1012556552886963, - -3.102766513824463, - -4.035583019256592, - -4.011793613433838, - -3.97593092918396, - -3.9289727210998535, - -3.8722004890441895, - -3.807162284851074, - -3.7356324195861816, - -3.659562110900879, - -3.581026315689087, - -3.502166986465454, - -3.425135612487793, - -3.3520333766937256, - -3.284853935241699, - -3.2254302501678467, - -3.1753828525543213, - -3.1360771656036377, - -3.1085853576660156, - -3.0936570167541504, - -3.0916996002197266, - -3.102766513824463, - -4.035583019256592, - -4.004126071929932, - -3.9608051776885986, - -3.906801223754883, - -3.843587875366211, - -3.7728893756866455, - -3.696633815765381, - -3.6169016361236572, - -3.535867691040039, - -3.455742120742798, - -3.3787107467651367, - -3.3068747520446777, - -3.2421936988830566, - -3.186431646347046, - -3.1411099433898926, - -3.1074647903442383, - -3.086413621902466, - -3.078531265258789, - -3.0840320587158203, - -3.102766513824463 - ], - "z": [ - 1.3908917903900146, - 1.3826696872711182, - 1.3930232524871826, - 1.4216701984405518, - 1.4678291082382202, - 1.530240774154663, - 1.6072028875350952, - 1.6966160535812378, - 1.7960413694381714, - 1.9027667045593262, - 2.013880729675293, - 2.1263530254364014, - 2.2371151447296143, - 2.3431458473205566, - 2.4415531158447266, - 2.5296525955200195, - 2.605041265487671, - 2.6656622886657715, - 2.70986270904541, - 2.736436128616333, - 1.3908917903900146, - 1.3792393207550049, - 1.3862563371658325, - 1.4117512702941895, - 1.4550285339355469, - 1.5149078369140625, - 1.5897557735443115, - 1.6775307655334473, - 1.7758383750915527, - 1.8819972276687622, - 1.9931113719940186, - 2.1061501502990723, - 2.218029737472534, - 2.3256988525390625, - 2.426220178604126, - 2.5168521404266357, - 2.5951223373413086, - 2.658895492553711, - 2.706432342529297, - 2.736436128616333, - 1.3908917903900146, - 1.3780661821365356, - 1.383941888809204, - 1.4083586931228638, - 1.4506504535675049, - 1.509663701057434, - 1.5837886333465576, - 1.6710032224655151, - 1.7689286470413208, - 1.8748936653137207, - 1.986007809638977, - 2.099240303039551, - 2.2115023136138916, - 2.3197317123413086, - 2.420976161956787, - 2.5124740600585938, - 2.5917296409606934, - 2.656580924987793, - 2.705259084701538, - 2.736436128616333, - 1.3908917903900146, - 1.3792771100997925, - 1.3863308429718018, - 1.411860466003418, - 1.455169439315796, - 1.5150766372680664, - 1.5899479389190674, - 1.6777408123016357, - 1.7760608196258545, - 1.8822258710861206, - 1.993340015411377, - 2.106372356414795, - 2.2182397842407227, - 2.3258910179138184, - 2.42638897895813, - 2.5169930458068848, - 2.595231533050537, - 2.6589698791503906, - 2.706470012664795, - 2.736436128616333, - 1.3908917903900146, - 1.382741093635559, - 1.3931641578674316, - 1.4218769073486328, - 1.4680956602096558, - 1.5305601358413696, - 1.607566237449646, - 1.6970134973526, - 1.796462059020996, - 1.9031991958618164, - 2.0143134593963623, - 2.1267735958099365, - 2.2375125885009766, - 2.3435091972351074, - 2.4418725967407227, - 2.529919147491455, - 2.605247735977173, - 2.6658034324645996, - 2.7099339962005615, - 2.736436128616333, - 1.3908917903900146, - 1.388082504272461, - 1.4037015438079834, - 1.4373226165771484, - 1.4880285263061523, - 1.554436206817627, - 1.6347343921661377, - 1.7267327308654785, - 1.8279216289520264, - 1.9355409145355225, - 2.0466549396514893, - 2.158233165740967, - 2.2672317028045654, - 2.3706774711608887, - 2.4657485485076904, - 2.549852132797241, - 2.6206934452056885, - 2.6763405799865723, - 2.715275526046753, - 2.736436128616333, - 1.3908917903900146, - 1.394722819328308, - 1.4168009757995605, - 1.4565237760543823, - 1.5128077268600464, - 1.5841176509857178, - 1.6685084104537964, - 1.7636778354644775, - 1.8670302629470825, - 1.9757462739944458, - 2.086860418319702, - 2.1973419189453125, - 2.3041768074035645, - 2.404451370239258, - 2.4954299926757812, - 2.5746312141418457, - 2.639894723892212, - 2.6894400119781494, - 2.7219157218933105, - 2.736436128616333, - 1.3908917903900146, - 1.401942253112793, - 1.4310429096221924, - 1.4773997068405151, - 1.5397483110427856, - 1.616387963294983, - 1.7052280902862549, - 1.8038454055786133, - 1.9095499515533447, - 2.019458293914795, - 2.130572557449341, - 2.2398617267608643, - 2.3443446159362793, - 2.441171169281006, - 2.527700424194336, - 2.601572036743164, - 2.6607706546783447, - 2.7036819458007812, - 2.729135274887085, - 2.736436128616333, - 1.3908917903900146, - 1.4089585542678833, - 1.4448840618133545, - 1.4976882934570312, - 1.565930724143982, - 1.6477501392364502, - 1.7409145832061768, - 1.8428826332092285, - 1.9508732557296753, - 2.0619404315948486, - 2.1730544567108154, - 2.2811849117279053, - 2.3833818435668945, - 2.4768576622009277, - 2.5590624809265137, - 2.6277542114257812, - 2.6810591220855713, - 2.7175230979919434, - 2.7361514568328857, - 2.736436128616333, - 1.3908917903900146, - 1.4150114059448242, - 1.456824541091919, - 1.515190601348877, - 1.588517665863037, - 1.6748055219650269, - 1.771700382232666, - 1.8765592575073242, - 1.98652184009552, - 2.098588705062866, - 2.209702968597412, - 2.31683349609375, - 2.417058229446411, - 2.507643461227417, - 2.58611798286438, - 2.650341272354126, - 2.698561668395996, - 2.729463577270508, - 2.742204189300537, - 2.736436128616333, - 1.3908917903900146, - 1.4194447994232178, - 1.465570330619812, - 1.528010368347168, - 1.605061650276184, - 1.6946223974227905, - 1.7942496538162231, - 1.9012258052825928, - 2.0126328468322754, - 2.125432014465332, - 2.236546039581299, - 2.342944622039795, - 2.4417247772216797, - 2.5301926136016846, - 2.6059348583221436, - 2.6668853759765625, - 2.711381435394287, - 2.7382094860076904, - 2.7466378211975098, - 2.736436128616333, - 1.3908917903900146, - 1.4217782020568848, - 1.4701738357543945, - 1.53475821018219, - 1.613769769668579, - 1.7050532102584839, - 1.8061187267303467, - 1.914209246635437, - 2.026376724243164, - 2.139561176300049, - 2.2506752014160156, - 2.3566882610321045, - 2.4547083377838135, - 2.5420618057250977, - 2.616365671157837, - 2.675593376159668, - 2.7181291580200195, - 2.7428128719329834, - 2.7489712238311768, - 2.736436128616333, - 1.3908917903900146, - 1.4217591285705566, - 1.470136046409607, - 1.5347027778625488, - 1.6136982440948486, - 1.7049676179885864, - 1.8060213327407837, - 1.9141027927398682, - 2.026263952255249, - 2.1394453048706055, - 2.2505593299865723, - 2.3565754890441895, - 2.454601764678955, - 2.541964292526245, - 2.6162800788879395, - 2.6755218505859375, - 2.718073844909668, - 2.7427752017974854, - 2.7489521503448486, - 2.736436128616333, - 1.3908917903900146, - 1.4193893671035767, - 1.4654611349105835, - 1.5278503894805908, - 1.6048550605773926, - 1.694374918937683, - 1.7939680814743042, - 1.9009177684783936, - 2.0123069286346436, - 2.1250967979431152, - 2.236210823059082, - 2.342618465423584, - 2.4414167404174805, - 2.5299110412597656, - 2.605687379837036, - 2.6666786670684814, - 2.711221218109131, - 2.738100290298462, - 2.746582269668579, - 2.736436128616333, - 1.3908917903900146, - 1.4149258136749268, - 1.456655740737915, - 1.514943242073059, - 1.5881984233856201, - 1.674423098564148, - 1.7712652683258057, - 1.8760831356048584, - 1.9860179424285889, - 2.0980706214904785, - 2.2091848850250244, - 2.3163294792175293, - 2.4165823459625244, - 2.5072083473205566, - 2.585735559463501, - 2.650022029876709, - 2.6983141899108887, - 2.729294776916504, - 2.7421188354492188, - 2.736436128616333, - 1.3908917903900146, - 1.4088521003723145, - 1.4446738958358765, - 1.497380256652832, - 1.5655332803726196, - 1.6472740173339844, - 1.740372896194458, - 1.8422901630401611, - 1.950245976448059, - 2.061295509338379, - 2.172409772872925, - 2.280557632446289, - 2.382789134979248, - 2.476315975189209, - 2.558586359024048, - 2.627357006072998, - 2.680751323699951, - 2.717313051223755, - 2.7360448837280273, - 2.736436128616333, - 1.3908917903900146, - 1.4018263816833496, - 1.430814266204834, - 1.477064609527588, - 1.5393157005310059, - 1.6158698797225952, - 1.7046386003494263, - 1.803200602531433, - 1.908867359161377, - 2.018756628036499, - 2.129870891571045, - 2.2391791343688965, - 2.3436996936798096, - 2.4405815601348877, - 2.5271823406219482, - 2.6011393070220947, - 2.660435676574707, - 2.703453302383423, - 2.7290194034576416, - 2.736436128616333, - 1.3908917903900146, - 1.3946101665496826, - 1.4165785312652588, - 1.456197738647461, - 1.5123870372772217, - 1.583613634109497, - 1.6679348945617676, - 1.7630505561828613, - 1.8663661479949951, - 1.9750635623931885, - 2.0861778259277344, - 2.1966779232025146, - 2.3035495281219482, - 2.4038779735565186, - 2.4949259757995605, - 2.5742106437683105, - 2.63956880569458, - 2.6892175674438477, - 2.7218031883239746, - 2.736436128616333, - 1.3908917903900146, - 1.3879852294921875, - 1.4035093784332275, - 1.4370410442352295, - 1.4876651763916016, - 1.554000973701477, - 1.6342391967773438, - 1.7261909246444702, - 1.8273481130599976, - 1.9349513053894043, - 2.04606556892395, - 2.1576597690582275, - 2.2666900157928467, - 2.3701822757720947, - 2.46531343460083, - 2.5494887828826904, - 2.6204118728637695, - 2.6761486530303955, - 2.7151782512664795, - 2.736436128616333, - 1.3908917903900146, - 1.3826696872711182, - 1.3930232524871826, - 1.4216701984405518, - 1.4678291082382202, - 1.530240774154663, - 1.6072028875350952, - 1.6966160535812378, - 1.7960412502288818, - 1.9027667045593262, - 2.013880729675293, - 2.1263530254364014, - 2.2371151447296143, - 2.3431458473205566, - 2.4415531158447266, - 2.5296525955200195, - 2.605041265487671, - 2.6656622886657715, - 2.70986270904541, - 2.736436128616333 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.46984797716140747, - -0.46232807636260986, - -0.45085763931274414, - -0.4357495903968811, - -0.4174160063266754, - -0.396356999874115, - -0.3731469511985779, - -0.34841904044151306, - -0.32284775376319885, - -0.2971305847167969, - -0.2719690799713135, - -0.2480495274066925, - -0.22602441906929016, - -0.20649453997612, - -0.18999262154102325, - -0.1769687682390213, - -0.16777825355529785, - -0.1626717746257782, - -0.16178861260414124, - -0.16515286266803741, - -0.4698479473590851, - -0.5083309412002563, - -0.5416085124015808, - -0.5687730312347412, - -0.5890834927558899, - -0.6019858121871948, - -0.6071282029151917, - -0.6043702960014343, - -0.5937873125076294, - -0.5756678581237793, - -0.5505063533782959, - -0.518989086151123, - -0.4819756746292114, - -0.44047582149505615, - -0.39562150835990906, - -0.348636269569397, - -0.30080169439315796, - -0.2534226179122925, - -0.20779144763946533, - -0.16515286266803741, - -0.4698479175567627, - -0.5499383807182312, - -0.6236884593963623, - -0.6890866160392761, - -0.7443487644195557, - -0.7879676818847656, - -0.8187534213066101, - -0.835866391658783, - -0.8388396501541138, - -0.8275920152664185, - -0.8024305105209351, - -0.7640414237976074, - -0.7134717702865601, - -0.6521010398864746, - -0.5816034078598022, - -0.5039016008377075, - -0.42111527919769287, - -0.33550262451171875, - -0.24939890205860138, - -0.16515284776687622, - -0.4698479175567627, - -0.5826416015625, - -0.688202977180481, - -0.7836524844169617, - -0.8663865923881531, - -0.9341484904289246, - -0.985089898109436, - -1.0178213119506836, - -1.031449556350708, - -1.0256032943725586, - -1.0004417896270752, - -0.9566513299942017, - -0.8954266309738159, - -0.8184375166893005, - -0.727784276008606, - -0.6259393692016602, - -0.5156811475753784, - -0.4000170826911926, - -0.28210216760635376, - -0.16515283286571503, - -0.4698479175567627, - -0.6028968095779419, - -0.7281607389450073, - -0.8422229886054993, - -0.9419721961021423, - -1.0246872901916504, - -1.0881123542785645, - -1.1305170059204102, - -1.1507447957992554, - -1.1482436656951904, - -1.123082160949707, - -1.075946569442749, - -1.008122444152832, - -0.921459972858429, - -0.8183229565620422, - -0.7015249729156494, - -0.574251651763916, - -0.4399748742580414, - -0.3023573160171509, - -0.16515283286571503, - -0.4698479175567627, - -0.608508825302124, - -0.7392318248748779, - -0.8584510684013367, - -0.9629145860671997, - -1.04977285861969, - -1.1166566610336304, - -1.1617416143417358, - -1.183797836303711, - -1.1822235584259033, - -1.15706205368042, - -1.108999490737915, - -1.0393469333648682, - -0.9500042796134949, - -0.8434085249900818, - -0.7224674224853516, - -0.5904797315597534, - -0.4510459303855896, - -0.3079693913459778, - -0.16515283286571503, - -0.4698479175567627, - -0.5988696813583374, - -0.7202165126800537, - -0.8305782079696655, - -0.9269444942474365, - -1.0066866874694824, - -1.0676296949386597, - -1.1081112623214722, - -1.127026915550232, - -1.1238607168197632, - -1.0986992120742798, - -1.0522286891937256, - -0.9857166409492493, - -0.9009773135185242, - -0.800322413444519, - -0.6864973306655884, - -0.5626068115234375, - -0.432030588388443, - -0.29833024740219116, - -0.16515283286571503, - -0.4698479175567627, - -0.575023889541626, - -0.6731752753257751, - -0.7616247534751892, - -0.8379597663879395, - -0.9000978469848633, - -0.946344256401062, - -0.9754376411437988, - -0.986583948135376, - -0.9794794321060181, - -0.9543179273605347, - -0.9117857217788696, - -0.8530430197715759, - -0.7796918749809265, - -0.6937336325645447, - -0.5975125432014465, - -0.49365341663360596, - -0.3849894106388092, - -0.27448442578315735, - -0.16515283286571503, - -0.4698479175567627, - -0.5395554900169373, - -0.6032059192657471, - -0.6590630412101746, - -0.7056032419204712, - -0.7415570020675659, - -0.7659436464309692, - -0.7780978679656982, - -0.7776882648468018, - -0.764725923538208, - -0.7395643591880798, - -0.7028900384902954, - -0.6557033061981201, - -0.599291205406189, - -0.5351927280426025, - -0.46515607833862305, - -0.3910917043685913, - -0.31502005457878113, - -0.23901601135730743, - -0.16515284776687622, - -0.4698479473590851, - -0.49630799889564514, - -0.5178906321525574, - -0.5340071320533752, - -0.5442179441452026, - -0.5482444167137146, - -0.5459768772125244, - -0.5374770164489746, - -0.522976815700531, - -0.5028717517852783, - -0.47771021723747253, - -0.44817858934402466, - -0.4150823950767517, - -0.37932443618774414, - -0.34188008308410645, - -0.30377069115638733, - -0.266035795211792, - -0.22970473766326904, - -0.1957685351371765, - -0.16515286266803741, - -0.46984797716140747, - -0.44996798038482666, - -0.4264746606349945, - -0.40000879764556885, - -0.3712922930717468, - -0.3411085307598114, - -0.31028077006340027, - -0.279649943113327, - -0.2500515580177307, - -0.22229304909706116, - -0.19713151454925537, - -0.17525334656238556, - -0.15725532174110413, - -0.14362832903862, - -0.13474415242671967, - -0.1308450549840927, - -0.1320374459028244, - -0.13828878104686737, - -0.14942854642868042, - -0.1651528775691986, - -0.46984797716140747, - -0.40555715560913086, - -0.3388643264770508, - -0.2715888023376465, - -0.20556557178497314, - -0.14259573817253113, - -0.08439674973487854, - -0.0325562059879303, - 0.011511743068695068, - 0.046605080366134644, - 0.07176661491394043, - 0.08630996942520142, - 0.0898384153842926, - 0.08225572109222412, - 0.06376868486404419, - 0.034881651401519775, - -0.0036174654960632324, - -0.05067846179008484, - -0.10501767694950104, - -0.1651528775691986, - -0.46984797716140747, - -0.36788803339004517, - -0.26455363631248474, - -0.16266348958015442, - -0.0649968683719635, - 0.025782018899917603, - 0.10719716548919678, - 0.17702767252922058, - 0.23336869478225708, - 0.27468347549438477, - 0.29984498023986816, - 0.3081669211387634, - 0.2994222640991211, - 0.27384960651397705, - 0.2321465015411377, - 0.1754504144191742, - 0.10530784726142883, - 0.0236322283744812, - -0.06734856963157654, - -0.1651528924703598, - -0.46984797716140747, - -0.341042697429657, - -0.21159520745277405, - -0.0850365161895752, - 0.035181134939193726, - 0.14577853679656982, - 0.24373894929885864, - 0.32639020681381226, - 0.3914778232574463, - 0.43722623586654663, - 0.46238774061203003, - 0.46627604961395264, - 0.44878482818603516, - 0.4103914499282837, - 0.3521430492401123, - 0.2756284475326538, - 0.18293482065200806, - 0.07659068703651428, - -0.040503233671188354, - -0.165152907371521, - -0.46984797716140747, - -0.3279302418231964, - -0.18572799861431122, - -0.047120124101638794, - 0.08411243557929993, - 0.2043900489807129, - 0.3104318380355835, - 0.3993452787399292, - 0.46870511770248413, - 0.5166192650794983, - 0.5417807698249817, - 0.5435033440589905, - 0.5217399001121521, - 0.47708433866500854, - 0.4107545018196106, - 0.32455974817276, - 0.22085124254226685, - 0.10245788097381592, - -0.027390778064727783, - -0.165152907371521, - -0.46984797716140747, - -0.329971581697464, - -0.18975500762462616, - -0.05302301049232483, - 0.07649478316307068, - 0.19526523351669312, - 0.3000490069389343, - 0.3879876136779785, - 0.4566822648048401, - 0.5042592287063599, - 0.5294207334518433, - 0.5314804911613464, - 0.5103822350502014, - 0.4667015075683594, - 0.4016297459602356, - 0.31694209575653076, - 0.2149483561515808, - 0.09843087196350098, - -0.02943214774131775, - -0.165152907371521, - -0.46984797716140747, - -0.3469456136226654, - -0.2232399880886078, - -0.10210555791854858, - 0.013153433799743652, - 0.11939293146133423, - 0.2137153148651123, - 0.29354745149612427, - 0.35671186447143555, - 0.4014853835105896, - 0.426646888256073, - 0.4315100908279419, - 0.41594207286834717, - 0.38036781549453735, - 0.3257574439048767, - 0.2536006569862366, - 0.16586577892303467, - 0.06494587659835815, - -0.04640614986419678, - -0.1651528924703598, - -0.46984797716140747, - -0.37701281905174255, - -0.2825542986392975, - -0.18904900550842285, - -0.09904752671718597, - -0.015004932880401611, - 0.06078639626502991, - 0.12625911831855774, - 0.1796271800994873, - 0.219434916973114, - 0.2445964217185974, - 0.25442540645599365, - 0.24865370988845825, - 0.22743886709213257, - 0.1913595199584961, - 0.14139971137046814, - 0.0789223313331604, - 0.005631595849990845, - -0.07647335529327393, - -0.1651528924703598, - -0.46984797716140747, - -0.41691499948501587, - -0.3612702786922455, - -0.30443161725997925, - -0.24794942140579224, - -0.19336441159248352, - -0.14216554164886475, - -0.09574927389621735, - -0.05538186430931091, - -0.022164344787597656, - 0.00299718976020813, - 0.019416362047195435, - 0.026645362377166748, - 0.024486958980560303, - 0.01299998164176941, - -0.007502168416976929, - -0.036460280418395996, - -0.07308439910411835, - -0.11637555062770844, - -0.1651528775691986, - -0.46984797716140747, - -0.46232807636260986, - -0.4508576989173889, - -0.4357496500015259, - -0.4174160957336426, - -0.39635708928108215, - -0.37314707040786743, - -0.348419189453125, - -0.3228479027748108, - -0.2971307337284088, - -0.2719692289829254, - -0.24804967641830444, - -0.2260245680809021, - -0.20649465918540955, - -0.1899927258491516, - -0.17696885764598846, - -0.16777831315994263, - -0.16267181932926178, - -0.16178862750530243, - -0.16515286266803741 - ], - "y": [ - -4.305863380432129, - -4.274318695068359, - -4.23074197769165, - -4.1763224601745605, - -4.112544059753418, - -4.041146278381348, - -3.9640769958496094, - -3.8834385871887207, - -3.8014304637908936, - -3.720289707183838, - -3.6422293186187744, - -3.5693788528442383, - -3.503725528717041, - -3.4470601081848145, - -3.400928258895874, - -3.3665881156921387, - -3.3449769020080566, - -3.336683750152588, - -3.3419349193573, - -3.3605871200561523, - -4.305863380432129, - -4.264273166656494, - -4.2109246253967285, - -4.147274017333984, - -4.075056552886963, - -3.9962427616119385, - -3.912982225418091, - -3.8275461196899414, - -3.742264986038208, - -3.6594648361206055, - -3.581404685974121, - -3.5102133750915527, - -3.4478330612182617, - -3.395965099334717, - -3.3560245037078857, - -3.3291008472442627, - -3.3159282207489014, - -3.316866159439087, - -3.3318891525268555, - -3.3605871200561523, - -4.305863380432129, - -4.258035659790039, - -4.198620319366455, - -4.129237651824951, - -4.051780700683594, - -3.968362331390381, - -3.8812577724456787, - -3.7928428649902344, - -3.7055294513702393, - -3.621699333190918, - -3.5436389446258545, - -3.473477840423584, - -3.4131298065185547, - -3.3642406463623047, - -3.3281443119049072, - -3.3058252334594727, - -3.2978920936584473, - -3.3045616149902344, - -3.3256518840789795, - -3.3605871200561523, - -4.305863380432129, - -4.256282806396484, - -4.195162296295166, - -4.124168872833252, - -4.045239448547363, - -3.960526704788208, - -3.8723416328430176, - -3.7830893993377686, - -3.695204973220825, - -3.6110854148864746, - -3.533025026321411, - -3.46315336227417, - -3.403376340866089, - -3.3553245067596436, - -3.3203086853027344, - -3.299283504486084, - -3.292823314666748, - -3.3011035919189453, - -3.3238987922668457, - -3.3605871200561523, - -4.305863380432129, - -4.259203910827637, - -4.200924873352051, - -4.13261604309082, - -4.056140899658203, - -3.9735846519470215, - -3.887200117111206, - -3.7993431091308594, - -3.7124104499816895, - -3.6287732124328613, - -3.550712823867798, - -3.480358839035034, - -3.4196300506591797, - -3.370182991027832, - -3.333366632461548, - -3.310184955596924, - -3.3012704849243164, - -3.306866407394409, - -3.326820135116577, - -3.3605871200561523, - -4.305863380432129, - -4.266482830047607, - -4.21528434753418, - -4.153664588928223, - -4.083303451538086, - -4.0061211585998535, - -3.924222946166992, - -3.8398423194885254, - -3.7552812099456787, - -3.6728460788726807, - -3.5947859287261963, - -3.5232295989990234, - -3.4601292610168457, - -3.407205820083618, - -3.365903377532959, - -3.337347984313965, - -3.3223187923431396, - -3.321226119995117, - -3.334099054336548, - -3.3605871200561523, - -4.305863380432129, - -4.2773308753967285, - -4.236684322357178, - -4.185032844543457, - -4.12378454208374, - -4.054610729217529, - -3.979398250579834, - -3.900198221206665, - -3.819171667098999, - -3.738528251647949, - -3.6604678630828857, - -3.5871200561523438, - -3.5204851627349854, - -3.46238112449646, - -3.4143927097320557, - -3.37782883644104, - -3.353687286376953, - -3.3426260948181152, - -3.344947099685669, - -3.3605871200561523, - -4.305863380432129, - -4.290572166442871, - -4.262805938720703, - -4.223321914672852, - -4.173196792602539, - -4.11379861831665, - -4.046746730804443, - -3.9738707542419434, - -3.897158145904541, - -3.81870174407959, - -3.7406413555145264, - -3.6651065349578857, - -3.5941574573516846, - -3.5297296047210693, - -3.4735803604125977, - -3.427241325378418, - -3.3919763565063477, - -3.3687474727630615, - -3.3581883907318115, - -3.3605871200561523, - -4.305863380432129, - -4.30477237701416, - -4.290818214416504, - -4.264382362365723, - -4.2261857986450195, - -4.177270412445068, - -4.1189703941345215, - -4.052875995635986, - -3.9807896614074707, - -3.9046785831451416, - -3.826618194580078, - -3.7487380504608154, - -3.6731626987457275, - -3.6019532680511475, - -3.5370523929595947, - -3.4802303314208984, - -3.433037042617798, - -3.3967597484588623, - -3.3723883628845215, - -3.3605871200561523, - -4.305863380432129, - -4.318391799926758, - -4.317686080932617, - -4.303765296936035, - -4.2770094871521, - -4.2381486892700195, - -4.188242435455322, - -4.128652095794678, - -4.061003684997559, - -3.9871418476104736, - -3.90908145904541, - -3.8289520740509033, - -3.748939275741577, - -3.6712253093719482, - -3.597930669784546, - -3.5310540199279785, - -3.4724197387695312, - -3.4236273765563965, - -3.386007785797119, - -3.3605871200561523, - -4.305863380432129, - -4.329955101013184, - -4.340497016906738, - -4.337202072143555, - -4.320160388946533, - -4.2898359298706055, - -4.247056484222412, - -4.192988395690918, - -4.129107475280762, - -4.057155609130859, - -3.979094982147217, - -3.8970558643341064, - -3.8132755756378174, - -3.730039358139038, - -3.6496176719665527, - -3.574204444885254, - -3.50585675239563, - -3.446438789367676, - -3.397571086883545, - -3.3605871200561523, - -4.305863380432129, - -4.33820915222168, - -4.356780052185059, - -4.361070156097412, - -4.350961685180664, - -4.326731204986572, - -4.28903865814209, - -4.238913059234619, - -4.17772102355957, - -4.1071319580078125, - -4.029071807861328, - -3.945669412612915, - -3.8591997623443604, - -3.772021532058716, - -3.6865129470825195, - -3.605006217956543, - -3.529724597930908, - -3.462721824645996, - -3.405825138092041, - -3.3605871200561523, - -4.305863380432129, - -4.342259407043457, - -4.364770412445068, - -4.372782230377197, - -4.366076469421387, - -4.3448357582092285, - -4.309639930725098, - -4.261448383331299, - -4.201576232910156, - -4.131656646728516, - -4.053596019744873, - -3.969524621963501, - -3.881735324859619, - -3.7926228046417236, - -3.704617977142334, - -3.6201207637786865, - -3.5414366722106934, - -3.4707119464874268, - -3.4098756313323975, - -3.3605871200561523, - -4.305863380432129, - -4.341667175292969, - -4.363602161407471, - -4.37106990814209, - -4.363866329193115, - -4.342188835144043, - -4.3066277503967285, - -4.258153438568115, - -4.1980881690979, - -4.12807035446167, - -4.0500102043151855, - -3.966036558151245, - -3.8784403800964355, - -3.7896106243133545, - -3.7019705772399902, - -3.617910861968994, - -3.539724349975586, - -3.469543695449829, - -3.409283399581909, - -3.3605871200561523, - -4.305863380432129, - -4.336496353149414, - -4.353402137756348, - -4.356118202209473, - -4.344571113586426, - -4.319076061248779, - -4.280328273773193, - -4.229384422302246, - -4.167634963989258, - -4.0967631340026855, - -4.018702983856201, - -3.9355831146240234, - -3.8496716022491455, - -3.7633111476898193, - -3.6788580417633057, - -3.5986154079437256, - -3.5247726440429688, - -3.459343433380127, - -3.4041128158569336, - -3.3605871200561523, - -4.305863380432129, - -4.32730770111084, - -4.335274696350098, - -4.32954740524292, - -4.310281753540039, - -4.278002738952637, - -4.2335920333862305, - -4.17825984954834, - -4.113516330718994, - -4.041126728057861, - -3.963066577911377, - -3.881464719772339, - -3.79854679107666, - -3.7165749073028564, - -3.637784957885742, - -3.5643258094787598, - -3.498201847076416, - -3.441216468811035, - -3.3949239253997803, - -3.3605871200561523, - -4.305863380432129, - -4.315096378326416, - -4.311185836791992, - -4.29423713684082, - -4.264713287353516, - -4.223419666290283, - -4.171483039855957, - -4.110319137573242, - -4.04159688949585, - -3.967190742492676, - -3.8891303539276123, - -3.8095452785491943, - -3.7306058406829834, - -3.654465675354004, - -3.5832018852233887, - -3.5187578201293945, - -3.4628915786743164, - -3.4171271324157715, - -3.3827128410339355, - -3.3605871200561523, - -4.305863380432129, - -4.3011860847473145, - -4.2837443351745605, - -4.254013538360596, - -4.212804794311523, - -4.1612420082092285, - -4.10073184967041, - -4.032924652099609, - -3.959670305252075, - -3.8829667568206787, - -3.8049066066741943, - -3.72761869430542, - -3.6532115936279297, - -3.583714723587036, - -3.521023750305176, - -3.4668490886688232, - -3.422667980194092, - -3.389685869216919, - -3.368802309036255, - -3.3605871200561523, - -4.305863380432129, - -4.287084102630615, - -4.255925178527832, - -4.213235855102539, - -4.160180568695068, - -4.098206996917725, - -4.029005527496338, - -3.9544637203216553, - -3.876614570617676, - -3.7975821495056152, - -3.7195217609405518, - -3.6445631980895996, - -3.5747504234313965, - -3.511988639831543, - -3.457988977432251, - -3.414224863052368, - -3.381890058517456, - -3.3618664741516113, - -3.3547003269195557, - -3.3605871200561523, - -4.305863380432129, - -4.274318695068359, - -4.23074197769165, - -4.1763224601745605, - -4.112544059753418, - -4.041146278381348, - -3.9640769958496094, - -3.8834385871887207, - -3.8014304637908936, - -3.720289707183838, - -3.6422293186187744, - -3.5693788528442383, - -3.503725528717041, - -3.4470601081848145, - -3.400928020477295, - -3.3665881156921387, - -3.3449769020080566, - -3.336683750152588, - -3.3419349193573, - -3.3605871200561523 - ], - "z": [ - 1.5173125267028809, - 1.509860873222351, - 1.5225088596343994, - 1.5549113750457764, - 1.6061846017837524, - 1.6749300956726074, - 1.7592723369598389, - 1.856911063194275, - 1.9651827812194824, - 2.081134080886841, - 2.201601982116699, - 2.323300838470459, - 2.442910671234131, - 2.557168960571289, - 2.662958860397339, - 2.757395029067993, - 2.8379013538360596, - 2.9022817611694336, - 2.948780059814453, - 2.976128101348877, - 1.5173125267028809, - 1.5129598379135132, - 1.5286222696304321, - 1.5638724565505981, - 1.6177489757537842, - 1.6887822151184082, - 1.7750345468521118, - 1.8741532564163208, - 1.9834345579147339, - 2.099897623062134, - 2.2203657627105713, - 2.341552734375, - 2.4601528644561768, - 2.5729310512542725, - 2.6768109798431396, - 2.7689595222473145, - 2.846862316131592, - 2.9083950519561768, - 2.9518790245056152, - 2.976128101348877, - 1.5173125267028809, - 1.517608642578125, - 1.5377929210662842, - 1.577314853668213, - 1.6350964307785034, - 1.7095615863800049, - 1.798678994178772, - 1.9000177383422852, - 2.0108137130737305, - 2.128044605255127, - 2.2485125064849854, - 2.368931770324707, - 2.4860172271728516, - 2.5965754985809326, - 2.6975903511047363, - 2.786306858062744, - 2.860304832458496, - 2.9175658226013184, - 2.9565277099609375, - 2.976128101348877, - 1.5173125267028809, - 1.5233032703399658, - 1.5490268468856812, - 1.5937817096710205, - 1.6563470363616943, - 1.7350162267684937, - 1.8276433944702148, - 1.9317017793655396, - 2.0443532466888428, - 2.162524461746216, - 2.2829926013946533, - 2.4024710655212402, - 2.5177013874053955, - 2.625539779663086, - 2.7230451107025146, - 2.8075575828552246, - 2.8767716884613037, - 2.928799629211426, - 2.9622223377227783, - 2.976128101348877, - 1.5173125267028809, - 1.5294268131256104, - 1.5611069202423096, - 1.611488699913025, - 1.6791980266571045, - 1.7623878717422485, - 1.8587889671325684, - 1.9657719135284424, - 2.080418348312378, - 2.199601173400879, - 2.3200690746307373, - 2.4385364055633545, - 2.551771402359009, - 2.6566853523254395, - 2.7504167556762695, - 2.8304083347320557, - 2.8944787979125977, - 2.9408798217773438, - 2.968345880508423, - 2.976128101348877, - 1.5173125267028809, - 1.5353155136108398, - 1.5727238655090332, - 1.6285169124603271, - 1.7011730670928955, - 1.7887102365493774, - 1.8887407779693604, - 1.9985361099243164, - 2.1151010990142822, - 2.2352564334869385, - 2.355724573135376, - 2.473219156265259, - 2.584535598754883, - 2.6866374015808105, - 2.7767391204833984, - 2.8523833751678467, - 2.9115068912506104, - 2.9524967670440674, - 2.9742348194122314, - 2.976128101348877, - 1.5173125267028809, - 1.540331482887268, - 1.5826188325881958, - 1.6430212259292603, - 1.719890832901001, - 1.8111310005187988, - 1.9142529964447021, - 2.0264437198638916, - 2.1446430683135986, - 2.265626907348633, - 2.386094808578491, - 2.502761125564575, - 2.612443208694458, - 2.7121493816375732, - 2.7991600036621094, - 2.8711013793945312, - 2.926011085510254, - 2.9623918533325195, - 2.97925066947937, - 2.976128101348877, - 1.5173125267028809, - 1.543931007385254, - 1.5897197723388672, - 1.6534297466278076, - 1.733323097229004, - 1.8272205591201782, - 1.932560920715332, - 2.046470880508423, - 2.1658430099487305, - 2.287421226501465, - 2.4078891277313232, - 2.523961067199707, - 2.6324703693389893, - 2.730457305908203, - 2.815249443054199, - 2.884533405303955, - 2.936419725418091, - 2.9694926738739014, - 2.9828500747680664, - 2.976128101348877, - 1.5173125267028809, - 1.5457240343093872, - 1.5932568311691284, - 1.6586143970489502, - 1.7400140762329102, - 1.8352352380752563, - 1.941680669784546, - 2.0564467906951904, - 2.176403284072876, - 2.2982776165008545, - 2.418745517730713, - 2.5345211029052734, - 2.642446517944336, - 2.739577293395996, - 2.8232641220092773, - 2.8912243843078613, - 2.9416043758392334, - 2.973029613494873, - 2.9846432209014893, - 2.976128101348877, - 1.5173125267028809, - 1.5455162525177002, - 1.5928469896316528, - 1.6580137014389038, - 1.7392387390136719, - 1.8343065977096558, - 1.9406239986419678, - 2.055290937423706, - 2.1751794815063477, - 2.2970197200775146, - 2.417487621307373, - 2.533297538757324, - 2.6412904262542725, - 2.738520622253418, - 2.8223354816436768, - 2.890449047088623, - 2.9410037994384766, - 2.9726200103759766, - 2.984435558319092, - 2.976128101348877, - 1.5173125267028809, - 1.543330192565918, - 1.5885345935821533, - 1.651692509651184, - 1.731081247329712, - 1.8245352506637573, - 1.9295053482055664, - 2.043128252029419, - 2.162304639816284, - 2.2837836742401123, - 2.40425181388855, - 2.5204226970672607, - 2.6291277408599854, - 2.7274017333984375, - 2.8125641345977783, - 2.882291555404663, - 2.9346823692321777, - 2.9683074951171875, - 2.9822494983673096, - 2.976128101348877, - 1.5173125267028809, - 1.5394028425216675, - 1.580786943435669, - 1.6403357982635498, - 1.7164254188537598, - 1.806980013847351, - 1.909529685974121, - 2.0212769508361816, - 2.139173746109009, - 2.2600040435791016, - 2.380472183227539, - 2.4972918033599854, - 2.607276439666748, - 2.707426071166992, - 2.795008897781372, - 2.867635726928711, - 2.923325777053833, - 2.960559844970703, - 2.9783220291137695, - 2.976128101348877, - 1.5173125267028809, - 1.5341596603393555, - 1.5704435110092163, - 1.6251745223999023, - 1.69685959815979, - 1.783543348312378, - 1.8828614950180054, - 1.9921047687530518, - 2.108293294906616, - 2.228257656097412, - 2.3487257957458496, - 2.4664113521575928, - 2.578104257583618, - 2.680757999420166, - 2.7715721130371094, - 2.848069906234741, - 2.9081645011901855, - 2.950216293334961, - 2.973078727722168, - 2.976128101348877, - 1.5173125267028809, - 1.528168797492981, - 1.558625340461731, - 1.607851266860962, - 1.6745038032531738, - 1.7567650079727173, - 1.8523908853530884, - 1.9587730169296265, - 2.073009729385376, - 2.1919846534729004, - 2.312452793121338, - 2.4311277866363525, - 2.5447726249694824, - 2.650287389755249, - 2.7447938919067383, - 2.825714111328125, - 2.890841245651245, - 2.9383981227874756, - 2.967087984085083, - 2.976128101348877, - 1.5173125267028809, - 1.5220797061920166, - 1.5466129779815674, - 1.5902435779571533, - 1.6517809629440308, - 1.7295467853546143, - 1.8214198350906372, - 1.924893856048584, - 2.03714656829834, - 2.155115842819214, - 2.2755839824676514, - 2.3952646255493164, - 2.5108933448791504, - 2.619316339492798, - 2.7175755500793457, - 2.8029913902282715, - 2.8732333183288574, - 2.9263858795166016, - 2.960998773574829, - 2.976128101348877, - 1.5173125267028809, - 1.5165518522262573, - 1.5357083082199097, - 1.5742592811584473, - 1.6311532258987427, - 1.7048382759094238, - 1.7933043241500854, - 1.8941384553909302, - 2.0045900344848633, - 2.1216464042663574, - 2.242114543914795, - 2.36270809173584, - 2.480138063430786, - 2.591200828552246, - 2.6928670406341553, - 2.7823636531829834, - 2.8572492599487305, - 2.9154810905456543, - 2.9554710388183594, - 2.976128101348877, - 1.5173125267028809, - 1.5121846199035645, - 1.5270928144454956, - 1.5616307258605957, - 1.6148560047149658, - 1.685316801071167, - 1.771091341972351, - 1.8698396682739258, - 1.9788684844970703, - 2.095203399658203, - 2.2156715393066406, - 2.336986541748047, - 2.455839157104492, - 2.5689878463745117, - 2.6733455657958984, - 2.766066312789917, - 2.844620704650879, - 2.9068655967712402, - 2.951103687286377, - 2.976128101348877, - 1.5173125267028809, - 1.5094510316848755, - 1.5217002630233765, - 1.5537261962890625, - 1.6046552658081055, - 1.673098087310791, - 1.757187843322754, - 1.854630708694458, - 1.962768793106079, - 2.0786523818969727, - 2.19912052154541, - 2.3208868503570557, - 2.4406301975250244, - 2.555084228515625, - 2.6611268520355225, - 2.7558655738830566, - 2.8367161750793457, - 2.901473045349121, - 2.9483702182769775, - 2.976128101348877, - 1.5173125267028809, - 1.5086474418640137, - 1.5201150178909302, - 1.5514025688171387, - 1.601656436920166, - 1.6695060729980469, - 1.7531005144119263, - 1.8501596450805664, - 1.958035945892334, - 2.073786735534668, - 2.1942548751831055, - 2.3161540031433105, - 2.436159133911133, - 2.550997018814087, - 2.6575348377227783, - 2.752866744995117, - 2.834392547607422, - 2.899888038635254, - 2.947566509246826, - 2.976128101348877, - 1.5173125267028809, - 1.509860873222351, - 1.5225088596343994, - 1.5549113750457764, - 1.606184720993042, - 1.6749300956726074, - 1.7592723369598389, - 1.856911063194275, - 1.9651827812194824, - 2.081134080886841, - 2.201601982116699, - 2.323300838470459, - 2.442910671234131, - 2.557168960571289, - 2.662958860397339, - 2.757395029067993, - 2.8379013538360596, - 2.9022817611694336, - 2.948780059814453, - 2.976128101348877 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.1870278120040894, - -1.1813921928405762, - -1.1537537574768066, - -1.1048662662506104, - -1.0360636711120605, - -0.9492223858833313, - -0.846711277961731, - -0.731326699256897, - -0.6062158346176147, - -0.47479158639907837, - -0.3406387269496918, - -0.20741666853427887, - -0.0787593424320221, - 0.0418238639831543, - 0.1510435938835144, - 0.2459208369255066, - 0.32386744022369385, - 0.382757306098938, - 0.4209839701652527, - 0.43750476837158203, - -1.1870278120040894, - -1.2054672241210938, - -1.201246976852417, - -1.1744824647903442, - -1.125903606414795, - -1.056835651397705, - -0.9691624641418457, - -0.8652755618095398, - -0.748008668422699, - -0.6205605864524841, - -0.4864077568054199, - -0.3492094874382019, - -0.2127082347869873, - -0.08062732219696045, - 0.04343026876449585, - 0.15608078241348267, - 0.25425130128860474, - 0.33526402711868286, - 0.3969089984893799, - 0.4375048279762268, - -1.1870278120040894, - -1.2263435125350952, - -1.2424302101135254, - -1.234849214553833, - -1.2038072347640991, - -1.150151014328003, - -1.0753443241119385, - -0.9814274907112122, - -0.870962381362915, - -0.7469621896743774, - -0.6128093600273132, - -0.47216320037841797, - -0.32886019349098206, - -0.18680919706821442, - -0.04988515377044678, - 0.07817721366882324, - 0.19388461112976074, - 0.29408079385757446, - 0.37603265047073364, - 0.4375048279762268, - -1.1870278120040894, - -1.2417588233947754, - -1.2728404998779297, - -1.279424786567688, - -1.2613322734832764, - -1.219056487083435, - -1.1537504196166992, - -1.0671956539154053, - -0.9617531299591064, - -0.8402989506721497, - -0.7061461210250854, - -0.5629539489746094, - -0.41462838649749756, - -0.26521533727645874, - -0.11879056692123413, - 0.02065214514732361, - 0.149308979511261, - 0.26367056369781494, - 0.3606172800064087, - 0.4375048279762268, - -1.1870278120040894, - -1.2500427961349487, - -1.289182424545288, - -1.3033788204193115, - -1.2922451496124268, - -1.25608491897583, - -1.1958844661712646, - -1.113285779953003, - -1.0105422735214233, - -0.8904561400413513, - -0.7563033103942871, - -0.6117430925369263, - -0.4607185125350952, - -0.3073492646217346, - -0.15581892430782318, - -0.010260671377182007, - 0.12535494565963745, - 0.24732869863510132, - 0.3523333668708801, - 0.4375048279762268, - -1.1870278120040894, - -1.2502975463867188, - -1.2896850109100342, - -1.3041155338287354, - -1.2931957244873047, - -1.2572236061096191, - -1.197180151939392, - -1.1147031784057617, - -1.0120426416397095, - -0.8919987082481384, - -0.7578458786010742, - -0.6132434606552124, - -0.4621359407901764, - -0.30864500999450684, - -0.1569577008485794, - -0.011211365461349487, - 0.12461826205253601, - 0.246826171875, - 0.3520786166191101, - 0.4375048279762268, - -1.1870278120040894, - -1.2424955368041992, - -1.2742937803268433, - -1.281554937362671, - -1.264081358909607, - -1.2223494052886963, - -1.1574974060058594, - -1.0712945461273193, - -0.9660918712615967, - -0.8447593450546265, - -0.7106064558029175, - -0.5672926902770996, - -0.41872715950012207, - -0.26896223425865173, - -0.12208345532417297, - 0.01790308952331543, - 0.1471787691116333, - 0.26221728324890137, - 0.35988062620162964, - 0.4375048279762268, - -1.1870278120040894, - -1.2274823188781738, - -1.2446767091751099, - -1.2381420135498047, - -1.2080566883087158, - -1.1552412509918213, - -1.0811363458633423, - -0.9877634048461914, - -0.8776692748069763, - -0.7538571357727051, - -0.6197043061256409, - -0.47887009382247925, - -0.3351960778236389, - -0.19260121881961823, - -0.05497539043426514, - 0.07392773032188416, - 0.1905916929244995, - 0.29183435440063477, - 0.3748939037322998, - 0.4375048279762268, - -1.1870278120040894, - -1.2068846225738525, - -1.2040433883666992, - -1.1785812377929688, - -1.1311931610107422, - -1.063171625137329, - -0.9763719439506531, - -0.8731619715690613, - -0.756356954574585, - -0.6291429400444031, - -0.49499011039733887, - -0.3575577139854431, - -0.22059465944766998, - -0.08783677220344543, - 0.03709438443183899, - 0.15079134702682495, - 0.250152587890625, - 0.33246779441833496, - 0.3954915404319763, - 0.4375048279762268, - -1.1870278120040894, - -1.1829347610473633, - -1.1567966938018799, - -1.1093268394470215, - -1.0418198108673096, - -0.9561173319816589, - -0.8545569777488708, - -0.7399090528488159, - -0.6153007745742798, - -0.4841312766075134, - -0.34997841715812683, - -0.21650159358978271, - -0.08734169602394104, - 0.03397819399833679, - 0.144148588180542, - 0.2401646375656128, - 0.31940698623657227, - 0.37971436977386475, - 0.41944146156311035, - 0.43750476837158203, - -1.1870278120040894, - -1.158227801322937, - -1.108056902885437, - -1.0378835201263428, - -0.9496219158172607, - -0.8456797003746033, - -0.7288920283317566, - -0.602444589138031, - -0.46978652477264404, - -0.33453646302223206, - -0.20038361847400665, - -0.07098734378814697, - 0.050122737884521484, - 0.15964317321777344, - 0.25458627939224243, - 0.3323625326156616, - 0.390850305557251, - 0.4284541606903076, - 0.44414836168289185, - 0.43750476837158203, - -1.187027931213379, - -1.1354413032531738, - -1.063105583190918, - -0.9719934463500977, - -0.8645904064178467, - -0.743826150894165, - -0.6129948496818542, - -0.47566506266593933, - -0.3355829119682312, - -0.19656945765018463, - -0.06241661310195923, - 0.06321629881858826, - 0.17690223455429077, - 0.2755403518676758, - 0.3564397692680359, - 0.4173940420150757, - 0.4567403793334961, - 0.47340548038482666, - 0.46693480014801025, - 0.43750476837158203, - -1.187027931213379, - -1.1170446872711182, - -1.0268138647079468, - -0.918796718120575, - -0.7959398031234741, - -0.6615942716598511, - -0.5194246768951416, - -0.3733089864253998, - -0.2272329181432724, - -0.08518111705780029, - 0.048971742391586304, - 0.17156624794006348, - 0.2792583703994751, - 0.3691105246543884, - 0.43867170810699463, - 0.486044704914093, - 0.509937047958374, - 0.5096971988677979, - 0.48533153533935547, - 0.43750476837158203, - -1.187027931213379, - -1.105031132698059, - -1.0031145811080933, - -0.8840581178665161, - -0.7511093616485596, - -0.607895016670227, - -0.458321213722229, - -0.30646812915802, - -0.15647797286510468, - -0.012442022562026978, - 0.12171083688735962, - 0.2423211932182312, - 0.34609919786453247, - 0.430213987827301, - 0.4923710227012634, - 0.5308750867843628, - 0.5446756482124329, - 0.5333964824676514, - 0.4973450303077698, - 0.43750476837158203, - -1.187027931213379, - -1.1007027626037598, - -0.9945759177207947, - -0.8715420365333557, - -0.7349573373794556, - -0.5885475873947144, - -0.4363061189651489, - -0.2823859453201294, - -0.1309855729341507, - 0.013765275478363037, - 0.14791810512542725, - 0.26781362295150757, - 0.3701813817024231, - 0.4522290825843811, - 0.5117184519767761, - 0.5470271706581116, - 0.5571917295455933, - 0.54193514585495, - 0.5016734004020691, - 0.43750476837158203, - -1.187027931213379, - -1.104528546333313, - -1.0021231174468994, - -0.8826048374176025, - -0.7492339611053467, - -0.6056485176086426, - -0.4557649493217468, - -0.3036718964576721, - -0.153517946600914, - -0.00939902663230896, - 0.12475383281707764, - 0.24528121948242188, - 0.34889543056488037, - 0.4327702522277832, - 0.4946175217628479, - 0.5327505469322205, - 0.5461289286613464, - 0.5343879461288452, - 0.49784761667251587, - 0.43750476837158203, - -1.187027931213379, - -1.1160938739776611, - -1.0249383449554443, - -0.9160476922988892, - -0.7923921346664429, - -0.6573446989059448, - -0.5145891904830933, - -0.3680195212364197, - -0.2216336876153946, - -0.07942485809326172, - 0.05472800135612488, - 0.17716550827026367, - 0.2845478057861328, - 0.37394601106643677, - 0.4429212808609009, - 0.48959237337112427, - 0.5126860737800598, - 0.5115726590156555, - 0.48628222942352295, - 0.43750476837158203, - -1.187027931213379, - -1.1341456174850464, - -1.0605493783950806, - -0.9682465195655823, - -0.8597550392150879, - -0.7380342483520508, - -0.6064042448997498, - -0.46845564246177673, - -0.3279512822628021, - -0.1887238323688507, - -0.05457097291946411, - 0.07084789872169495, - 0.18411165475845337, - 0.2821309566497803, - 0.3622317910194397, - 0.42222946882247925, - 0.4604872465133667, - 0.47596168518066406, - 0.46823054552078247, - 0.43750476837158203, - -1.1870278120040894, - -1.1567273139953613, - -1.1050970554351807, - -1.0335447788238525, - -0.9440228343009949, - -0.8389729261398315, - -0.7212605476379395, - -0.5940965414047241, - -0.4609495997428894, - -0.32545170187950134, - -0.19129887223243713, - -0.062150418758392334, - 0.05847081542015076, - 0.16727465391159058, - 0.26129305362701416, - 0.3379616141319275, - 0.39518892765045166, - 0.43141406774520874, - 0.445648729801178, - 0.43750476837158203, - -1.1870278120040894, - -1.1813921928405762, - -1.1537537574768066, - -1.1048663854599, - -1.0360636711120605, - -0.9492224454879761, - -0.8467113971710205, - -0.731326699256897, - -0.6062159538269043, - -0.47479164600372314, - -0.34063881635665894, - -0.20741674304008484, - -0.07875943183898926, - 0.041823774576187134, - 0.15104353427886963, - 0.24592077732086182, - 0.32386744022369385, - 0.382757306098938, - 0.4209839701652527, - 0.43750476837158203 - ], - "y": [ - -3.7144670486450195, - -3.7447893619537354, - -3.7847273349761963, - -3.8331918716430664, - -3.8888607025146484, - -3.9502155780792236, - -4.01558256149292, - -4.083178997039795, - -4.151161193847656, - -4.2176737785339355, - -4.2809038162231445, - -4.339125156402588, - -4.390750885009766, - -4.4343719482421875, - -4.468799114227295, - -4.493093013763428, - -4.506590843200684, - -4.50892448425293, - -4.500030517578125, - -4.480151176452637, - -3.7144670486450195, - -3.7649827003479004, - -3.824563503265381, - -3.8915839195251465, - -3.9642162322998047, - -4.040478706359863, - -4.11829137802124, - -4.195531845092773, - -4.270092964172363, - -4.339941024780273, - -4.403170585632324, - -4.458057403564453, - -4.503103733062744, - -4.537080764770508, - -4.559062480926514, - -4.568448543548584, - -4.564982891082764, - -4.548760890960693, - -4.520224094390869, - -4.480151176452637, - -3.7144670486450195, - -3.7802679538726807, - -3.8547167778015137, - -3.9357831478118896, - -4.0212554931640625, - -4.10880184173584, - -4.196035385131836, - -4.280575752258301, - -4.360116958618164, - -4.432489395141602, - -4.495718955993652, - -4.548081398010254, - -4.588147163391113, - -4.6148247718811035, - -4.62738561630249, - -4.625487804412842, - -4.609182357788086, - -4.578914165496826, - -4.53550910949707, - -4.480151176452637, - -3.7144670486450195, - -3.7889883518218994, - -3.871919870376587, - -3.9609992504119873, - -4.053797245025635, - -4.147781848907471, - -4.240389347076416, - -4.329094409942627, - -4.411477088928223, - -4.485289573669434, - -4.548519611358643, - -4.5994415283203125, - -4.636666297912598, - -4.659179210662842, - -4.666365623474121, - -4.658029556274414, - -4.634398460388184, - -4.59611701965332, - -4.544229507446289, - -4.480151176452637, - -3.7144670486450195, - -3.790199041366577, - -3.8743081092834473, - -3.9645004272460938, - -4.058315277099609, - -4.153193473815918, - -4.246547698974609, - -4.3358306884765625, - -4.418607711791992, - -4.492620468139648, - -4.555850028991699, - -4.606572151184082, - -4.643402576446533, - -4.665337085723877, - -4.671777248382568, - -4.662547588348389, - -4.637899398803711, - -4.59850549697876, - -4.545440196990967, - -4.480151176452637, - -3.7144670486450195, - -3.783768892288208, - -3.8616232872009277, - -3.945906639099121, - -4.034319877624512, - -4.124451160430908, - -4.213841915130615, - -4.300054550170898, - -4.380736351013184, - -4.453686714172363, - -4.516916751861572, - -4.568700790405273, - -4.607625961303711, - -4.632631778717041, - -4.643034934997559, - -4.638552188873291, - -4.619305610656738, - -4.58582067489624, - -4.539010047912598, - -4.480151176452637, - -3.7144670486450195, - -3.7703945636749268, - -3.8352394104003906, - -3.9072329998016357, - -3.9844112396240234, - -4.064669132232666, - -4.145817279815674, - -4.225642204284668, - -4.301966667175293, - -4.372708320617676, - -4.435938358306885, - -4.489931106567383, - -4.533214092254639, - -4.564606666564941, - -4.583252906799316, - -4.588643550872803, - -4.580632209777832, - -4.559436798095703, - -4.525635719299316, - -4.480151176452637, - -3.7144670486450195, - -3.751525402069092, - -3.79801607131958, - -3.852670431137085, - -3.9139981269836426, - -3.980325937271118, - -4.049844741821289, - -4.1206583976745605, - -4.190834999084473, - -4.258460521697998, - -4.321690082550049, - -4.3787994384765625, - -4.428230285644531, - -4.468634128570557, - -4.4989094734191895, - -4.518230438232422, - -4.526069641113281, - -4.522213459014893, - -4.5067667961120605, - -4.480151176452637, - -3.7144670486450195, - -3.7292063236236572, - -3.7539865970611572, - -3.7881317138671875, - -3.8307106494903564, - -3.880561351776123, - -3.9363245964050293, - -3.996478796005249, - -4.059383869171143, - -4.1233229637146, - -4.18655252456665, - -4.247347831726074, - -4.304050922393799, - -4.355113983154297, - -4.399145126342773, - -4.434942722320557, - -4.461530685424805, - -4.478183746337891, - -4.484447479248047, - -4.480151176452637, - -3.7144670486450195, - -3.7058558464050293, - -3.7079224586486816, - -3.7206106185913086, - -3.7435741424560547, - -3.776186466217041, - -3.8175582885742188, - -3.866560935974121, - -3.9218578338623047, - -3.981940507888794, - -4.045170307159424, - -4.1098222732543945, - -4.174132823944092, - -4.236347675323486, - -4.294770240783691, - -4.347806453704834, - -4.394009590148926, - -4.432119846343994, - -4.461097240447998, - -4.480151176452637, - -3.7144670486450195, - -3.684004306793213, - -3.6648154258728027, - -3.657423973083496, - -3.662031412124634, - -3.67851185798645, - -3.706416130065918, - -3.744983196258545, - -3.7931604385375977, - -3.8496341705322266, - -3.9128639698028564, - -3.9811248779296875, - -4.052555084228516, - -4.125205993652344, - -4.19709587097168, - -4.266263484954834, - -4.330822944641113, - -4.389012813568115, - -4.439245700836182, - -4.480151176452637, - -3.7144670486450195, - -3.6660196781158447, - -3.6293368339538574, - -3.605419158935547, - -3.594918727874756, - -3.5981223583221436, - -3.6149423122406006, - -3.6449201107025146, - -3.6872379779815674, - -3.74074125289917, - -3.8039710521698, - -3.875202178955078, - -3.9524919986724854, - -4.033731937408447, - -4.116705894470215, - -4.199151039123535, - -4.278818130493164, - -4.35353422164917, - -4.421260833740234, - -4.480151176452637, - -3.7144670486450195, - -3.65385103225708, - -3.6053311824798584, - -3.5702314376831055, - -3.549509048461914, - -3.543728828430176, - -3.553049087524414, - -3.5772154331207275, - -3.6155683994293213, - -3.6670620441436768, - -3.7302918434143066, - -3.803532838821411, - -3.8847873210906982, - -3.9718387126922607, - -4.062312602996826, - -4.153741359710693, - -4.243630409240723, - -4.329528331756592, - -4.409091949462891, - -4.480151176452637, - -3.7144670486450195, - -3.6488168239593506, - -3.595400094985962, - -3.5556743144989014, - -3.5307228565216064, - -3.521226406097412, - -3.5274438858032227, - -3.549205780029297, - -3.585918664932251, - -3.6365809440612793, - -3.69981050491333, - -3.773883104324341, - -3.8567776679992676, - -3.9462332725524902, - -4.0398101806640625, - -4.134954929351807, - -4.229073524475098, - -4.319597244262695, - -4.40405797958374, - -4.480151176452637, - -3.7144670486450195, - -3.6514625549316406, - -3.6006195545196533, - -3.5633249282836914, - -3.5405960083007812, - -3.533052921295166, - -3.5409011840820312, - -3.5639266967773438, - -3.60150146484375, - -3.6526007652282715, - -3.7158303260803223, - -3.78946590423584, - -3.8714985847473145, - -3.959690570831299, - -4.051636695861816, - -4.1448283195495605, - -4.236723899841309, - -4.324816703796387, - -4.406703948974609, - -4.480151176452637, - -3.7144670486450195, - -3.66150164604187, - -3.6204240322113037, - -3.5923545360565186, - -3.578058958053589, - -3.5779271125793457, - -3.5919625759124756, - -3.6197826862335205, - -3.660628318786621, - -3.713385581970215, - -3.7766153812408447, - -3.848592758178711, - -3.927354335784912, - -4.010752201080322, - -4.096510887145996, - -4.182291030883789, - -4.265753746032715, - -4.344621181488037, - -4.41674280166626, - -4.480151176452637, - -3.7144670486450195, - -3.6778464317321777, - -3.65266752243042, - -3.6396172046661377, - -3.639051675796509, - -3.6509861946105957, - -3.6750950813293457, - -3.710721015930176, - -3.756891965866089, - -3.8123486042022705, - -3.8755784034729004, - -3.9448564052581787, - -4.0182929039001465, - -4.093884468078613, - -4.169569969177246, - -4.243283748626709, - -4.313016414642334, - -4.376864433288574, - -4.433087348937988, - -4.480151176452637, - -3.7144670486450195, - -3.6987252235412598, - -3.6938555240631104, - -3.699991226196289, - -3.7169647216796875, - -3.7443127632141113, - -3.78128981590271, - -3.8268871307373047, - -3.8798606395721436, - -3.93876576423645, - -4.00199556350708, - -4.067824840545654, - -4.134459018707275, - -4.200079441070557, - -4.262896537780762, - -4.321197032928467, - -4.373390197753906, - -4.418052673339844, - -4.45396614074707, - -4.480151176452637, - -3.7144670486450195, - -3.7218756675720215, - -3.739525318145752, - -3.766934394836426, - -3.8033549785614014, - -3.8477940559387207, - -3.8990392684936523, - -3.9556925296783447, - -4.016209125518799, - -4.078937530517578, - -4.142167091369629, - -4.2041730880737305, - -4.263264179229736, - -4.31782865524292, - -4.366377830505371, - -4.40758752822876, - -4.440333366394043, - -4.4637227058410645, - -4.47711706161499, - -4.480151176452637, - -3.7144670486450195, - -3.7447893619537354, - -3.7847273349761963, - -3.8331918716430664, - -3.8888607025146484, - -3.9502155780792236, - -4.01558256149292, - -4.083178997039795, - -4.151161193847656, - -4.2176737785339355, - -4.2809038162231445, - -4.339125156402588, - -4.390750885009766, - -4.434372425079346, - -4.468799114227295, - -4.493093013763428, - -4.506590843200684, - -4.50892448425293, - -4.500030517578125, - -4.480151176452637 - ], - "z": [ - 2.727983236312866, - 2.7413177490234375, - 2.746155023574829, - 2.7423629760742188, - 2.7300448417663574, - 2.7095370292663574, - 2.681398630142212, - 2.646397352218628, - 2.605487823486328, - 2.559785842895508, - 2.510538339614868, - 2.4590885639190674, - 2.4068398475646973, - 2.355217456817627, - 2.3056294918060303, - 2.2594285011291504, - 2.217874765396118, - 2.1821019649505615, - 2.153085708618164, - 2.131617307662964, - 2.727983236312866, - 2.701663017272949, - 2.6679270267486572, - 2.6276955604553223, - 2.5820658206939697, - 2.532283067703247, - 2.4797046184539795, - 2.425765037536621, - 2.3719353675842285, - 2.3196842670440674, - 2.2704367637634277, - 2.225536346435547, - 2.1862075328826904, - 2.1535234451293945, - 2.12837553024292, - 2.1114494800567627, - 2.1032073497772217, - 2.1038737297058105, - 2.1134307384490967, - 2.131617307662964, - 2.727983236312866, - 2.664419412612915, - 2.594456195831299, - 2.520001173019409, - 2.4430859088897705, - 2.3658082485198975, - 2.290276050567627, - 2.2185497283935547, - 2.152585983276367, - 2.0941836833953857, - 2.044936180114746, - 2.0061867237091064, - 1.9789923429489136, - 1.964094877243042, - 1.9619007110595703, - 1.9724695682525635, - 1.9955132007598877, - 2.0304031372070312, - 2.0761873722076416, - 2.131617307662964, - 2.727983236312866, - 2.6336236000061035, - 2.5337042808532715, - 2.430950403213501, - 2.3281655311584473, - 2.2281529903411865, - 2.1336405277252197, - 2.0472068786621094, - 1.971209168434143, - 1.907720685005188, - 1.8584731817245483, - 1.8248100280761719, - 1.8076493740081787, - 1.8074593544006348, - 1.8242452144622803, - 1.8575491905212402, - 1.9064624309539795, - 1.9696511030197144, - 2.04539155960083, - 2.131617546081543, - 2.727983236312866, - 2.612612247467041, - 2.4922547340393066, - 2.3701934814453125, - 2.249758005142212, - 2.1342339515686035, - 2.0267720222473145, - 1.9303035736083984, - 1.8474602699279785, - 1.7805016040802002, - 1.7312541007995605, - 1.7010610103607178, - 1.6907461881637573, - 1.7005908489227295, - 1.7303264141082764, - 1.7791416645050049, - 1.845705270767212, - 1.9282015562057495, - 2.0243802070617676, - 2.131617546081543, - 2.727983236312866, - 2.6036624908447266, - 2.4745991230010986, - 2.344313859939575, - 2.216360330581665, - 2.094228982925415, - 1.9812512397766113, - 1.880508542060852, - 1.7947492599487305, - 1.7263123989105225, - 1.6770648956298828, - 1.6483500003814697, - 1.640951156616211, - 1.6550699472427368, - 1.690321445465088, - 1.745743989944458, - 1.8198257684707642, - 1.910546064376831, - 2.015430212020874, - 2.131617546081543, - 2.727983236312866, - 2.607743978500366, - 2.4826509952545166, - 2.35611629486084, - 2.2315914630889893, - 2.112473249435425, - 2.0020110607147217, - 1.9032175540924072, - 1.8187880516052246, - 1.7510254383087158, - 1.7017779350280762, - 1.6723889112472534, - 1.6636602878570557, - 1.6758297681808472, - 1.7085657119750977, - 1.7609748840332031, - 1.8316280841827393, - 1.9185978174209595, - 2.0195119380950928, - 2.131617546081543, - 2.727983236312866, - 2.6244146823883057, - 2.5155375003814697, - 2.4043216705322266, - 2.2938008308410645, - 2.1869897842407227, - 2.086801767349243, - 1.9959700107574463, - 1.9169719219207764, - 1.8519625663757324, - 1.8027150630950928, - 1.7705727815628052, - 1.7564125061035156, - 1.7606205940246582, - 1.7830820083618164, - 1.8231843709945679, - 1.8798335790634155, - 1.9514844417572021, - 2.036182403564453, - 2.131617546081543, - 2.727983236312866, - 2.6518678665161133, - 2.569694995880127, - 2.48370623588562, - 2.396247148513794, - 2.3097031116485596, - 2.2264351844787598, - 2.148714542388916, - 2.0786609649658203, - 2.018185615539551, - 1.9689382314682007, - 1.9322619438171387, - 1.9091570377349854, - 1.9002540111541748, - 1.9057955741882324, - 1.9256306886672974, - 1.9592182636260986, - 2.0056419372558594, - 2.0636355876922607, - 2.131617307662964, - 2.727983236312866, - 2.6871285438537598, - 2.6392548084259033, - 2.585667610168457, - 2.5278286933898926, - 2.467315912246704, - 2.4057798385620117, - 2.3448989391326904, - 2.2863337993621826, - 2.231682062149048, - 2.182434558868408, - 2.139934539794922, - 2.1053414344787598, - 2.0795986652374268, - 2.063408374786377, - 2.0572123527526855, - 2.0611796379089355, - 2.0752017498016357, - 2.0988965034484863, - 2.131617307662964, - 2.727983236312866, - 2.7263758182525635, - 2.7166788578033447, - 2.6991565227508545, - 2.6742866039276123, - 2.6427481174468994, - 2.605400800704956, - 2.563263416290283, - 2.5174856185913086, - 2.469316005706787, - 2.4200685024261475, - 2.371086597442627, - 2.3237061500549316, - 2.279219627380371, - 2.2388405799865723, - 2.2036702632904053, - 2.174668312072754, - 2.152625799179077, - 2.13814377784729, - 2.131617307662964, - 2.727983236312866, - 2.7653565406799316, - 2.793577194213867, - 2.8118746280670166, - 2.8197500705718994, - 2.816988945007324, - 2.803666114807129, - 2.7801451683044434, - 2.747067928314209, - 2.705336093902588, - 2.6560888290405273, - 2.6006686687469482, - 2.540587902069092, - 2.477484941482544, - 2.413081407546997, - 2.3491337299346924, - 2.287386417388916, - 2.2295238971710205, - 2.177124500274658, - 2.131617307662964, - 2.727983236312866, - 2.799846649169922, - 2.861616373062134, - 2.911607265472412, - 2.948455572128296, - 2.971156597137451, - 2.979090690612793, - 2.972041368484497, - 2.9502015113830566, - 2.914166212081909, - 2.8649187088012695, - 2.803802251815796, - 2.7324841022491455, - 2.652909517288208, - 2.567249059677124, - 2.477839231491089, - 2.3871192932128906, - 2.297563314437866, - 2.2116146087646484, - 2.131617307662964, - 2.727982997894287, - 2.826108455657959, - 2.913423776626587, - 2.987546920776367, - 3.0464563369750977, - 3.0885448455810547, - 3.1126644611358643, - 3.118157386779785, - 3.1048738956451416, - 3.0731759071350098, - 3.02392840385437, - 2.958474636077881, - 2.8786001205444336, - 2.7864832878112793, - 2.6846373081207275, - 2.5758399963378906, - 2.4630589485168457, - 2.3493707180023193, - 2.2378764152526855, - 2.131617307662964, - 2.727982997894287, - 2.8412961959838867, - 2.943384885787964, - 3.031464099884033, - 3.1031317710876465, - 3.156432628631592, - 3.189912796020508, - 3.2026591300964355, - 3.194323778152466, - 3.1651341915130615, - 3.115886688232422, - 3.047924518585205, - 2.963101625442505, - 2.863731622695923, - 2.7525250911712646, - 2.6325154304504395, - 2.5069761276245117, - 2.3793318271636963, - 2.2530641555786133, - 2.131617307662964, - 2.727982997894287, - 2.843764066696167, - 2.9482531547546387, - 3.038600206375122, - 3.1123406887054443, - 3.1674633026123047, - 3.2024645805358887, - 3.2163894176483154, - 3.208858013153076, - 3.1800761222839355, - 3.130828619003296, - 3.0624589920043945, - 2.9768319129943848, - 2.8762834072113037, - 2.7635560035705566, - 2.6417243480682373, - 2.5141119956970215, - 2.384200096130371, - 2.2555320262908936, - 2.131617307662964, - 2.727982997894287, - 2.833244562149048, - 2.9275009632110596, - 3.00818133354187, - 3.073085069656372, - 3.1204416751861572, - 3.1489593982696533, - 3.157860279083252, - 3.1469016075134277, - 3.116382360458374, - 3.0671348571777344, - 3.000502586364746, - 2.9183030128479004, - 2.8227782249450684, - 2.71653413772583, - 2.602468729019165, - 2.4836933612823486, - 2.363447904586792, - 2.2450122833251953, - 2.131617307662964, - 2.727982997894287, - 2.810877561569214, - 2.8833770751953125, - 2.9435043334960938, - 2.9896187782287598, - 3.020462989807129, - 3.0351955890655518, - 3.033414602279663, - 3.0151684284210205, - 2.980955123901367, - 2.9317073822021484, - 2.868769407272339, - 2.7938570976257324, - 2.709014415740967, - 2.616555690765381, - 2.5190024375915527, - 2.419016122817993, - 2.319324016571045, - 2.2226452827453613, - 2.131617307662964, - 2.727983236312866, - 2.7790868282318115, - 2.8206629753112793, - 2.8515772819519043, - 2.8709867000579834, - 2.878361701965332, - 2.8735013008117676, - 2.8565375804901123, - 2.8279337882995605, - 2.7884697914123535, - 2.739222288131714, - 2.6815345287323, - 2.6169803142547607, - 2.5473201274871826, - 2.474454164505005, - 2.4003703594207764, - 2.327089309692383, - 2.2566099166870117, - 2.190854787826538, - 2.131617307662964, - 2.727983236312866, - 2.7413177490234375, - 2.746155023574829, - 2.7423627376556396, - 2.7300448417663574, - 2.7095367908477783, - 2.681398391723633, - 2.646397113800049, - 2.605487585067749, - 2.559785842895508, - 2.510538339614868, - 2.4590885639190674, - 2.4068398475646973, - 2.355217218399048, - 2.305629253387451, - 2.2594285011291504, - 2.217874765396118, - 2.1821019649505615, - 2.153085708618164, - 2.131617307662964 - ] - }, - { - "alphahull": 0, - "color": "#111111", - "opacity": 0.05, - "type": "mesh3d", - "x": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - -8.79903883088673e-9, - 0.0203650314360857, - 0.04052110016345978, - 0.06026134267449379, - 0.0793832466006279, - 0.09769056737422943, - 0.11499544978141785, - 0.13112030923366547, - 0.1458997279405594, - 0.15918199717998505, - 0.1708308458328247, - 0.18072673678398132, - 0.18876813352108002, - 0.19487251341342926, - 0.19897723197937012, - 0.20104016363620758, - 0.20104016363620758, - 0.19897723197937012, - 0.19487251341342926, - 0.18876813352108002, - 0.18072673678398132, - 0.1708308458328247, - 0.15918199717998505, - 0.1458997279405594, - 0.13112030923366547, - 0.11499544233083725, - 0.09769056737422943, - 0.0793832466006279, - 0.06026134267449379, - 0.04052107781171799, - 0.02036500722169876, - -8.79903883088673e-9, - -1.7237843152884125e-8, - 0.03989631310105324, - 0.0793832540512085, - 0.11805557459592819, - 0.15551652014255524, - 0.19138166308403015, - 0.2252829670906067, - 0.2568725347518921, - 0.28582629561424255, - 0.3118470311164856, - 0.334667831659317, - 0.3540544807910919, - 0.36980804800987244, - 0.3817668855190277, - 0.3898082971572876, - 0.3938497006893158, - 0.3938497006893158, - 0.3898082971572876, - 0.3817668855190277, - 0.36980804800987244, - 0.3540544807910919, - 0.334667831659317, - 0.3118470311164856, - 0.28582629561424255, - 0.2568725347518921, - 0.2252829372882843, - 0.19138166308403015, - 0.15551652014255524, - 0.11805557459592819, - 0.07938320934772491, - 0.039896268397569656, - -1.7237843152884125e-8, - -2.497092843611881e-8, - 0.0577942430973053, - 0.11499546468257904, - 0.1710166037082672, - 0.2252829521894455, - 0.27723759412765503, - 0.32634738087654114, - 0.3721083998680115, - 0.4140511155128479, - 0.45174506306648254, - 0.48480352759361267, - 0.5128872394561768, - 0.5357080101966858, - 0.5530317425727844, - 0.5646805763244629, - 0.5705350041389465, - 0.5705350041389465, - 0.5646805763244629, - 0.5530317425727844, - 0.5357080101966858, - 0.5128872394561768, - 0.48480352759361267, - 0.45174506306648254, - 0.4140511155128479, - 0.3721083998680115, - 0.32634735107421875, - 0.27723759412765503, - 0.2252829521894455, - 0.1710166037082672, - 0.11499539762735367, - 0.05779417231678963, - -2.497092843611881e-8, - -3.168169726563974e-8, - 0.07332605868577957, - 0.1458997279405594, - 0.21697618067264557, - 0.2858262360095978, - 0.35174334049224854, - 0.4140510559082031, - 0.4721100330352783, - 0.5253245830535889, - 0.5731485486030579, - 0.6150912046432495, - 0.6507222652435303, - 0.6796759963035583, - 0.7016553282737732, - 0.7164347171783447, - 0.7238624691963196, - 0.7238624691963196, - 0.7164347171783447, - 0.7016553282737732, - 0.6796759963035583, - 0.6507222652435303, - 0.6150912046432495, - 0.5731485486030579, - 0.5253245830535889, - 0.4721100330352783, - 0.41405102610588074, - 0.35174334049224854, - 0.2858262360095978, - 0.21697618067264557, - 0.14589963853359222, - 0.07332596927881241, - -3.168169726563974e-8, - -3.709541829266527e-8, - 0.08585590124130249, - 0.1708308458328247, - 0.2540527284145355, - 0.33466780185699463, - 0.41184869408607483, - 0.4848034679889679, - 0.5527834892272949, - 0.6150912046432495, - 0.6710872650146484, - 0.7201970815658569, - 0.7619166970252991, - 0.7958179712295532, - 0.821553111076355, - 0.8388580083847046, - 0.8475549817085266, - 0.8475549817085266, - 0.8388580083847046, - 0.821553111076355, - 0.7958179712295532, - 0.7619166970252991, - 0.7201970815658569, - 0.6710872650146484, - 0.6150912046432495, - 0.5527834892272949, - 0.4848034381866455, - 0.41184869408607483, - 0.33466780185699463, - 0.2540527284145355, - 0.17083074152469635, - 0.08585579693317413, - -3.709541829266527e-8, - -4.0990450145272916e-8, - 0.09487079828977585, - 0.1887681484222412, - 0.2807283401489258, - 0.36980801820755005, - 0.4550929665565491, - 0.5357080101966858, - 0.6108258962631226, - 0.6796759963035583, - 0.7415516376495361, - 0.795818030834198, - 0.8419181704521179, - 0.8793790936470032, - 0.9078164100646973, - 0.9269383549690247, - 0.9365485310554504, - 0.9365485310554504, - 0.9269383549690247, - 0.9078164100646973, - 0.8793790936470032, - 0.8419181704521179, - 0.795818030834198, - 0.7415516376495361, - 0.6796759963035583, - 0.6108258962631226, - 0.535707950592041, - 0.4550929665565491, - 0.36980801820755005, - 0.2807283401489258, - 0.18876802921295166, - 0.0948706865310669, - -4.0990450145272916e-8, - -4.3207322164562356e-8, - 0.10000167042016983, - 0.19897723197937012, - 0.29591089487075806, - 0.3898082375526428, - 0.4797056019306183, - 0.5646805167198181, - 0.6438610553741455, - 0.7164347171783447, - 0.7816567420959473, - 0.8388580083847046, - 0.8874514102935791, - 0.9269382953643799, - 0.9569135904312134, - 0.9770696759223938, - 0.987199604511261, - 0.987199604511261, - 0.9770696759223938, - 0.9569135904312134, - 0.9269382953643799, - 0.8874514102935791, - 0.8388580083847046, - 0.7816567420959473, - 0.7164347171783447, - 0.6438610553741455, - 0.5646804571151733, - 0.4797056019306183, - 0.3898082375526428, - 0.29591089487075806, - 0.19897711277008057, - 0.10000155121088028, - -4.3207322164562356e-8, - -4.365528383232231e-8, - 0.10103845596313477, - 0.20104016363620758, - 0.2989788055419922, - 0.393849641084671, - 0.48467904329299927, - 0.5705349445343018, - 0.6505363583564758, - 0.7238624691963196, - 0.7897607088088989, - 0.8475549817085266, - 0.8966522216796875, - 0.9365484714508057, - 0.966834545135498, - 0.987199604511261, - 0.9974346160888672, - 0.9974346160888672, - 0.987199604511261, - 0.966834545135498, - 0.9365484714508057, - 0.8966522216796875, - 0.8475549817085266, - 0.7897607088088989, - 0.7238624691963196, - 0.6505363583564758, - 0.570534884929657, - 0.48467904329299927, - 0.393849641084671, - 0.2989788055419922, - 0.20104004442691803, - 0.10103833675384521, - -4.365528383232231e-8, - -4.2315996040542814e-8, - 0.09793872386217117, - 0.19487251341342926, - 0.2898065149784088, - 0.38176682591438293, - 0.46980971097946167, - 0.5530316829681396, - 0.6305787563323975, - 0.7016553282737732, - 0.7655318975448608, - 0.821553111076355, - 0.869144082069397, - 0.9078164100646973, - 0.9371733069419861, - 0.9569135904312134, - 0.966834545135498, - 0.966834545135498, - 0.9569135904312134, - 0.9371733069419861, - 0.9078164100646973, - 0.869144082069397, - 0.821553111076355, - 0.7655318975448608, - 0.7016553282737732, - 0.6305787563323975, - 0.5530316233634949, - 0.46980971097946167, - 0.38176682591438293, - 0.2898065149784088, - 0.1948723942041397, - 0.09793860465288162, - -4.2315996040542814e-8, - -3.9244280714001434e-8, - 0.09082935750484467, - 0.18072673678398132, - 0.2687695026397705, - 0.35405442118644714, - 0.4357062578201294, - 0.512887179851532, - 0.5848050713539124, - 0.6507222056388855, - 0.709962010383606, - 0.7619166374206543, - 0.8060529828071594, - 0.8419180512428284, - 0.8691440224647522, - 0.8874513506889343, - 0.8966521620750427, - 0.8966521620750427, - 0.8874513506889343, - 0.8691440224647522, - 0.8419180512428284, - 0.8060529828071594, - 0.7619166374206543, - 0.709962010383606, - 0.6507222056388855, - 0.5848050713539124, - 0.5128871202468872, - 0.4357062578201294, - 0.35405442118644714, - 0.2687695026397705, - 0.18072661757469177, - 0.09082925319671631, - -3.9244280714001434e-8, - -3.456590036421403e-8, - 0.08000143617391586, - 0.15918198227882385, - 0.23672901093959808, - 0.3118469715118408, - 0.38376495242118835, - 0.4517449736595154, - 0.5150894522666931, - 0.5731484889984131, - 0.6253261566162109, - 0.6710872054100037, - 0.709962010383606, - 0.7415515780448914, - 0.7655318379402161, - 0.7816566824913025, - 0.7897606492042542, - 0.7897606492042542, - 0.7816566824913025, - 0.7655318379402161, - 0.7415515780448914, - 0.709962010383606, - 0.6710872054100037, - 0.6253261566162109, - 0.5731484889984131, - 0.5150894522666931, - 0.451744943857193, - 0.38376495242118835, - 0.3118469715118408, - 0.23672901093959808, - 0.1591818928718567, - 0.0800013393163681, - -3.456590036421403e-8, - -2.8472390667388936e-8, - 0.06589823961257935, - 0.13112030923366547, - 0.19499681890010834, - 0.2568724751472473, - 0.3161122798919678, - 0.3721083104610443, - 0.42428600788116455, - 0.47211000323295593, - 0.5150894522666931, - 0.5527834296226501, - 0.5848050713539124, - 0.6108258366584778, - 0.6305786967277527, - 0.6438609957695007, - 0.650536298751831, - 0.650536298751831, - 0.6438609957695007, - 0.6305786967277527, - 0.6108258366584778, - 0.5848050713539124, - 0.5527834296226501, - 0.5150894522666931, - 0.47211000323295593, - 0.42428600788116455, - 0.3721082806587219, - 0.3161122798919678, - 0.2568724751472473, - 0.19499681890010834, - 0.1311202198266983, - 0.06589815765619278, - -2.8472390667388936e-8, - -2.1213214296267324e-8, - 0.04909715801477432, - 0.09769053757190704, - 0.14528141915798187, - 0.191381573677063, - 0.23551790416240692, - 0.2772374749183655, - 0.316112220287323, - 0.351743221282959, - 0.3837648630142212, - 0.4118485748767853, - 0.43570616841316223, - 0.45509278774261475, - 0.46980956196784973, - 0.47970545291900635, - 0.48467889428138733, - 0.48467889428138733, - 0.47970545291900635, - 0.46980956196784973, - 0.45509278774261475, - 0.43570616841316223, - 0.4118485748767853, - 0.3837648630142212, - 0.351743221282959, - 0.316112220287323, - 0.2772374451160431, - 0.23551790416240692, - 0.191381573677063, - 0.14528141915798187, - 0.09769048541784286, - 0.049097102135419846, - -2.1213214296267324e-8, - -1.3085568184578733e-8, - 0.030286036431789398, - 0.0602613128721714, - 0.08961819112300873, - 0.11805549263954163, - 0.14528138935565948, - 0.17101649940013885, - 0.19499674439430237, - 0.21697606146335602, - 0.23672890663146973, - 0.25405260920524597, - 0.26876938343048096, - 0.28072819113731384, - 0.2898063659667969, - 0.2959107458591461, - 0.29897865653038025, - 0.29897865653038025, - 0.2959107458591461, - 0.2898063659667969, - 0.28072819113731384, - 0.26876938343048096, - 0.25405260920524597, - 0.23672890663146973, - 0.21697606146335602, - 0.19499674439430237, - 0.17101648449897766, - 0.14528138935565948, - 0.11805549263954163, - 0.08961819112300873, - 0.06026127561926842, - 0.030286001041531563, - -1.3085568184578733e-8, - -4.422205268639345e-9, - 0.010235020890831947, - 0.020365022122859955, - 0.030286038294434547, - 0.03989629074931145, - 0.049097154289484024, - 0.05779420956969261, - 0.06589821726083755, - 0.07332602143287659, - 0.08000140637159348, - 0.0858558639883995, - 0.09082932770252228, - 0.09487075358629227, - 0.09793867915868759, - 0.10000162571668625, - 0.10103841125965118, - 0.10103841125965118, - 0.10000162571668625, - 0.09793867915868759, - 0.09487075358629227, - 0.09082932770252228, - 0.0858558639883995, - 0.08000140637159348, - 0.07332602143287659, - 0.06589821726083755, - 0.057794202119112015, - 0.049097154289484024, - 0.03989629074931145, - 0.030286038294434547, - 0.02036501094698906, - 0.010235009714961052, - -4.422205268639345e-9, - 4.422212374066703e-9, - -0.010235038585960865, - -0.02036505751311779, - -0.030286090448498726, - -0.03989635780453682, - -0.04909723624587059, - -0.05779430642724037, - -0.06589832901954651, - -0.07332614809274673, - -0.08000154048204422, - -0.08585600554943085, - -0.09082947671413422, - -0.0948709100484848, - -0.09793884307146072, - -0.10000178962945938, - -0.10103858262300491, - -0.10103858262300491, - -0.10000178962945938, - -0.09793884307146072, - -0.0948709100484848, - -0.09082947671413422, - -0.08585600554943085, - -0.08000154048204422, - -0.07332614809274673, - -0.06589832901954651, - -0.05779430270195007, - -0.04909723624587059, - -0.03989635780453682, - -0.030286090448498726, - -0.020365044474601746, - -0.010235026478767395, - 4.422212374066703e-9, - 1.3085585059968707e-8, - -0.030286075547337532, - -0.06026139110326767, - -0.08961830288171768, - -0.11805564910173416, - -0.145281583070755, - -0.17101672291755676, - -0.19499699771404266, - -0.2169763445854187, - -0.2367292195558548, - -0.25405293703079224, - -0.2687697112560272, - -0.2807285487651825, - -0.2898067533969879, - -0.29591113328933716, - -0.2989790439605713, - -0.2989790439605713, - -0.29591113328933716, - -0.2898067533969879, - -0.2807285487651825, - -0.2687697112560272, - -0.25405293703079224, - -0.2367292195558548, - -0.2169763445854187, - -0.19499699771404266, - -0.17101670801639557, - -0.145281583070755, - -0.11805564910173416, - -0.08961830288171768, - -0.060261353850364685, - -0.030286040157079697, - 1.3085585059968707e-8, - 2.121323028347888e-8, - -0.04909719526767731, - -0.09769061207771301, - -0.14528152346611023, - -0.19138172268867493, - -0.23551808297634125, - -0.2772376835346222, - -0.3161124289035797, - -0.3517434895038605, - -0.38376516103744507, - -0.41184887290000916, - -0.4357064962387085, - -0.455093115568161, - -0.4698099195957184, - -0.479705810546875, - -0.484679251909256, - -0.484679251909256, - -0.479705810546875, - -0.4698099195957184, - -0.455093115568161, - -0.4357064962387085, - -0.41184887290000916, - -0.38376516103744507, - -0.3517434895038605, - -0.3161124289035797, - -0.2772376537322998, - -0.23551808297634125, - -0.19138172268867493, - -0.14528152346611023, - -0.09769055247306824, - -0.04909713938832283, - 2.121323028347888e-8, - 2.8472395996459454e-8, - -0.06589824706315994, - -0.13112032413482666, - -0.19499684870243073, - -0.2568725347518921, - -0.31611233949661255, - -0.3721083998680115, - -0.4242860972881317, - -0.4721100926399231, - -0.5150895714759827, - -0.5527835488319397, - -0.5848051905632019, - -0.6108259558677673, - -0.6305788159370422, - -0.6438611149787903, - -0.6505364179611206, - -0.6505364179611206, - -0.6438611149787903, - -0.6305788159370422, - -0.6108259558677673, - -0.5848051905632019, - -0.5527835488319397, - -0.5150895714759827, - -0.4721100926399231, - -0.4242860972881317, - -0.3721083402633667, - -0.31611233949661255, - -0.2568725347518921, - -0.19499684870243073, - -0.1311202496290207, - -0.06589817255735397, - 2.8472395996459454e-8, - 3.456590746964139e-8, - -0.08000144362449646, - -0.15918201208114624, - -0.23672904074192047, - -0.3118470311164856, - -0.38376501202583313, - -0.45174506306648254, - -0.5150895118713379, - -0.5731485486030579, - -0.6253262758255005, - -0.6710873246192932, - -0.7099620699882507, - -0.7415516376495361, - -0.7655319571495056, - -0.781656801700592, - -0.7897607684135437, - -0.7897607684135437, - -0.781656801700592, - -0.7655319571495056, - -0.7415516376495361, - -0.7099620699882507, - -0.6710873246192932, - -0.6253262758255005, - -0.5731485486030579, - -0.5150895118713379, - -0.45174500346183777, - -0.38376501202583313, - -0.3118470311164856, - -0.23672904074192047, - -0.15918190777301788, - -0.0800013467669487, - 3.456590746964139e-8, - 3.924428781942879e-8, - -0.09082937240600586, - -0.18072675168514252, - -0.2687695324420929, - -0.35405445098876953, - -0.43570631742477417, - -0.5128872394561768, - -0.5848051905632019, - -0.650722324848175, - -0.7099620699882507, - -0.7619167566299438, - -0.806053102016449, - -0.8419181704521179, - -0.869144082069397, - -0.8874514698982239, - -0.8966522812843323, - -0.8966522812843323, - -0.8874514698982239, - -0.869144082069397, - -0.8419181704521179, - -0.806053102016449, - -0.7619167566299438, - -0.7099620699882507, - -0.650722324848175, - -0.5848051905632019, - -0.512887179851532, - -0.43570631742477417, - -0.35405445098876953, - -0.2687695324420929, - -0.18072664737701416, - -0.0908292606472969, - 3.924428781942879e-8, - 4.2315996040542814e-8, - -0.09793872386217117, - -0.19487251341342926, - -0.2898065447807312, - -0.3817668557167053, - -0.46980974078178406, - -0.5530316829681396, - -0.6305788159370422, - -0.7016553282737732, - -0.7655319571495056, - -0.8215531706809998, - -0.869144082069397, - -0.9078164100646973, - -0.9371733665466309, - -0.9569136500358582, - -0.9668346047401428, - -0.9668346047401428, - -0.9569136500358582, - -0.9371733665466309, - -0.9078164100646973, - -0.869144082069397, - -0.8215531706809998, - -0.7655319571495056, - -0.7016553282737732, - -0.6305788159370422, - -0.5530316233634949, - -0.46980974078178406, - -0.3817668557167053, - -0.2898065447807312, - -0.1948724091053009, - -0.09793861210346222, - 4.2315996040542814e-8, - 4.365528738503599e-8, - -0.10103845596313477, - -0.20104017853736877, - -0.2989788353443146, - -0.3938496708869934, - -0.48467907309532166, - -0.5705350041389465, - -0.6505364179611206, - -0.7238625288009644, - -0.7897607684135437, - -0.8475550413131714, - -0.8966522812843323, - -0.9365485310554504, - -0.9668346047401428, - -0.9871996641159058, - -0.997434675693512, - -0.997434675693512, - -0.9871996641159058, - -0.9668346047401428, - -0.9365485310554504, - -0.8966522812843323, - -0.8475550413131714, - -0.7897607684135437, - -0.7238625288009644, - -0.6505364179611206, - -0.5705349445343018, - -0.48467907309532166, - -0.3938496708869934, - -0.2989788353443146, - -0.20104005932807922, - -0.10103833675384521, - 4.365528738503599e-8, - 4.3207322164562356e-8, - -0.10000166296958923, - -0.19897721707820892, - -0.29591086506843567, - -0.38980820775032043, - -0.4797055721282959, - -0.5646805167198181, - -0.6438609957695007, - -0.7164346575737, - -0.7816567420959473, - -0.8388579487800598, - -0.8874513506889343, - -0.9269382357597351, - -0.9569135308265686, - -0.977069616317749, - -0.9871995449066162, - -0.9871995449066162, - -0.977069616317749, - -0.9569135308265686, - -0.9269382357597351, - -0.8874513506889343, - -0.8388579487800598, - -0.7816567420959473, - -0.7164346575737, - -0.6438609957695007, - -0.5646804571151733, - -0.4797055721282959, - -0.38980820775032043, - -0.29591086506843567, - -0.19897709786891937, - -0.10000154376029968, - 4.3207322164562356e-8, - 4.099044303984556e-8, - -0.09487078338861465, - -0.18876810371875763, - -0.2807283103466034, - -0.3698079586029053, - -0.4550928771495819, - -0.5357078909873962, - -0.6108258366584778, - -0.6796758770942688, - -0.7415515184402466, - -0.7958178520202637, - -0.8419180512428284, - -0.8793789148330688, - -0.9078162908554077, - -0.9269381761550903, - -0.9365483522415161, - -0.9365483522415161, - -0.9269381761550903, - -0.9078162908554077, - -0.8793789148330688, - -0.8419180512428284, - -0.7958178520202637, - -0.7415515184402466, - -0.6796758770942688, - -0.6108258366584778, - -0.5357078313827515, - -0.4550928771495819, - -0.3698079586029053, - -0.2807283103466034, - -0.18876799941062927, - -0.0948706716299057, - 4.099044303984556e-8, - 3.7095407634524236e-8, - -0.0858558788895607, - -0.17083080112934113, - -0.25405266880989075, - -0.3346676826477051, - -0.4118485748767853, - -0.48480334877967834, - -0.5527833104133606, - -0.61509108543396, - -0.6710870862007141, - -0.7201968431472778, - -0.76191645860672, - -0.7958177328109741, - -0.8215528726577759, - -0.8388577699661255, - -0.8475547432899475, - -0.8475547432899475, - -0.8388577699661255, - -0.8215528726577759, - -0.7958177328109741, - -0.76191645860672, - -0.7201968431472778, - -0.6710870862007141, - -0.61509108543396, - -0.5527833104133606, - -0.48480328917503357, - -0.4118485748767853, - -0.3346676826477051, - -0.25405266880989075, - -0.17083069682121277, - -0.08585577458143234, - 3.7095407634524236e-8, - 3.1681686607498705e-8, - -0.07332602888345718, - -0.1458996683359146, - -0.2169760912656784, - -0.2858261168003082, - -0.3517431914806366, - -0.4140509068965912, - -0.472109854221344, - -0.5253243446350098, - -0.5731483101844788, - -0.6150909662246704, - -0.6507219672203064, - -0.6796756982803345, - -0.7016550302505493, - -0.7164344191551208, - -0.7238621711730957, - -0.7238621711730957, - -0.7164344191551208, - -0.7016550302505493, - -0.6796756982803345, - -0.6507219672203064, - -0.6150909662246704, - -0.5731483101844788, - -0.5253243446350098, - -0.472109854221344, - -0.4140508472919464, - -0.3517431914806366, - -0.2858261168003082, - -0.2169760912656784, - -0.14589957892894745, - -0.07332593947649002, - 3.1681686607498705e-8, - 2.4970907119836738e-8, - -0.05779419466853142, - -0.11499536782503128, - -0.17101646959781647, - -0.22528277337551117, - -0.2772373557090759, - -0.32634711265563965, - -0.3721080720424652, - -0.41405075788497925, - -0.4517447054386139, - -0.48480311036109924, - -0.5128868222236633, - -0.5357075929641724, - -0.5530312657356262, - -0.5646800994873047, - -0.5705345273017883, - -0.5705345273017883, - -0.5646800994873047, - -0.5530312657356262, - -0.5357075929641724, - -0.5128868222236633, - -0.48480311036109924, - -0.4517447054386139, - -0.41405075788497925, - -0.3721080720424652, - -0.32634708285331726, - -0.2772373557090759, - -0.22528277337551117, - -0.17101646959781647, - -0.11499530076980591, - -0.05779412388801575, - 2.4970907119836738e-8, - 1.7237820060245213e-8, - -0.03989626467227936, - -0.07938315719366074, - -0.11805541813373566, - -0.15551632642745972, - -0.19138142466545105, - -0.2252826690673828, - -0.2568722069263458, - -0.2858259081840515, - -0.31184664368629456, - -0.3346674144268036, - -0.3540540337562561, - -0.36980757117271423, - -0.3817664086818695, - -0.389807790517807, - -0.3938491940498352, - -0.3938491940498352, - -0.389807790517807, - -0.3817664086818695, - -0.36980757117271423, - -0.3540540337562561, - -0.3346674144268036, - -0.31184664368629456, - -0.2858259081840515, - -0.2568722069263458, - -0.22528265416622162, - -0.19138142466545105, - -0.15551632642745972, - -0.11805541813373566, - -0.07938310503959656, - -0.03989621624350548, - 1.7237820060245213e-8, - 8.799012185534139e-9, - -0.020364971831440926, - -0.04052098095417023, - -0.060261163860559464, - -0.0793830081820488, - -0.09769028425216675, - -0.11499511450529099, - -0.13111992180347443, - -0.14589929580688477, - -0.15918152034282684, - -0.17083033919334412, - -0.18072620034217834, - -0.18876756727695465, - -0.1948719322681427, - -0.19897663593292236, - -0.20103956758975983, - -0.20103956758975983, - -0.19897663593292236, - -0.1948719322681427, - -0.18876756727695465, - -0.18072620034217834, - -0.17083033919334412, - -0.15918152034282684, - -0.14589929580688477, - -0.13111992180347443, - -0.11499509960412979, - -0.09769028425216675, - -0.0793830081820488, - -0.060261163860559464, - -0.04052095487713814, - -0.020364947617053986, - 8.799012185534139e-9, - -7.64274186065882e-15, - 1.768882817998474e-8, - 3.519615532354692e-8, - 5.2342297607310684e-8, - 6.895135840068178e-8, - 8.485288560677873e-8, - 9.988370663904789e-8, - 1.138895697749831e-7, - 1.2672678906255896e-7, - 1.3826361566771084e-7, - 1.483816731706611e-7, - 1.5697713706686045e-7, - 1.6396178637023695e-7, - 1.6926398416217125e-7, - 1.7282928865824942e-7, - 1.7462113532928925e-7, - 1.7462113532928925e-7, - 1.7282928865824942e-7, - 1.6926398416217125e-7, - 1.6396178637023695e-7, - 1.5697713706686045e-7, - 1.483816731706611e-7, - 1.3826361566771084e-7, - 1.2672678906255896e-7, - 1.138895697749831e-7, - 9.988369242819317e-8, - 8.485288560677873e-8, - 6.895135840068178e-8, - 5.2342297607310684e-8, - 3.5196134007264845e-8, - 1.7688806863702666e-8, - -7.64274186065882e-15 - ], - "y": [ - -4.371138828673793e-8, - 0.10116830468177795, - 0.2012985348701477, - 0.29936304688453674, - 0.39435580372810364, - 0.4853019416332245, - 0.5712682008743286, - 0.6513724327087402, - 0.7247927784919739, - 0.790775716304779, - 0.8486442565917969, - 0.8978045582771301, - 0.9377521276473999, - 0.9680771231651306, - 0.98846834897995, - 0.9987164735794067, - 0.9987164735794067, - 0.98846834897995, - 0.9680771231651306, - 0.9377521276473999, - 0.8978045582771301, - 0.8486442565917969, - 0.790775716304779, - 0.7247927784919739, - 0.6513724327087402, - 0.5712681412696838, - 0.4853019416332245, - 0.39435580372810364, - 0.29936304688453674, - 0.20129841566085815, - 0.1011681854724884, - -4.371138828673793e-8, - -4.281661247773627e-8, - 0.09909737855195999, - 0.1971779316663742, - 0.29323506355285645, - 0.3862833082675934, - 0.47536778450012207, - 0.5595743060112, - 0.6380388140678406, - 0.7099562287330627, - 0.7745884656906128, - 0.8312724232673645, - 0.8794264197349548, - 0.918556272983551, - 0.948260486125946, - 0.9682343006134033, - 0.9782726764678955, - 0.9782726764678955, - 0.9682343006134033, - 0.948260486125946, - 0.918556272983551, - 0.8794264197349548, - 0.8312724232673645, - 0.7745884656906128, - 0.7099562287330627, - 0.6380388140678406, - 0.5595742464065552, - 0.47536778450012207, - 0.3862833082675934, - 0.29323506355285645, - 0.19717782735824585, - 0.09909726679325104, - -4.281661247773627e-8, - -4.016892418690077e-8, - 0.09296940267086029, - 0.18498486280441284, - 0.27510201930999756, - 0.36239635944366455, - 0.4459720253944397, - 0.5249713659286499, - 0.5985838174819946, - 0.6660540103912354, - 0.7266895174980164, - 0.7798683047294617, - 0.8250445127487183, - 0.8617546558380127, - 0.8896220326423645, - 0.9083607196807861, - 0.9177783131599426, - 0.9177783131599426, - 0.9083607196807861, - 0.8896220326423645, - 0.8617546558380127, - 0.8250445127487183, - 0.7798683047294617, - 0.7266895174980164, - 0.6660540103912354, - 0.5985838174819946, - 0.5249713063240051, - 0.4459720253944397, - 0.36239635944366455, - 0.27510201930999756, - 0.18498475849628448, - 0.09296929836273193, - -4.016892418690077e-8, - -3.5876709603144263e-8, - 0.08303524553775787, - 0.16521847248077393, - 0.2457062304019928, - 0.3236728012561798, - 0.3983180820941925, - 0.46887603402137756, - 0.5346226692199707, - 0.594883382320404, - 0.6490397453308105, - 0.696536123752594, - 0.736885130405426, - 0.7696726322174072, - 0.7945622801780701, - 0.811298668384552, - 0.8197099566459656, - 0.8197099566459656, - 0.811298668384552, - 0.7945622801780701, - 0.7696726322174072, - 0.736885130405426, - 0.696536123752594, - 0.6490397453308105, - 0.594883382320404, - 0.5346226692199707, - 0.4688759744167328, - 0.3983180820941925, - 0.3236728012561798, - 0.2457062304019928, - 0.16521836817264557, - 0.08303514122962952, - -3.5876709603144263e-8, - -3.011570015587495e-8, - 0.06970161199569702, - 0.13868802785873413, - 0.20625121891498566, - 0.27169808745384216, - 0.33435696363449097, - 0.39358487725257874, - 0.4487740397453308, - 0.499358206987381, - 0.5448182821273804, - 0.5846877694129944, - 0.6185575723648071, - 0.6460801362991333, - 0.6669730544090271, - 0.6810219287872314, - 0.6880825757980347, - 0.6880825757980347, - 0.6810219287872314, - 0.6669730544090271, - 0.6460801362991333, - 0.6185575723648071, - 0.5846877694129944, - 0.5448182821273804, - 0.499358206987381, - 0.4487740397453308, - 0.39358481764793396, - 0.33435696363449097, - 0.27169808745384216, - 0.20625121891498566, - 0.13868793845176697, - 0.06970153003931046, - -3.011570015587495e-8, - -2.3121749848087347e-8, - 0.05351439118385315, - 0.10647967457771301, - 0.15835227072238922, - 0.2086000144481659, - 0.25670725107192993, - 0.30218029022216797, - 0.34455254673957825, - 0.38338926434516907, - 0.4182918667793274, - 0.4489022493362427, - 0.4749062657356262, - 0.496037095785141, - 0.5120779275894165, - 0.5228641629219055, - 0.528285026550293, - 0.528285026550293, - 0.5228641629219055, - 0.5120779275894165, - 0.496037095785141, - 0.4749062657356262, - 0.4489022493362427, - 0.4182918667793274, - 0.38338926434516907, - 0.34455254673957825, - 0.3021802604198456, - 0.25670725107192993, - 0.2086000144481659, - 0.15835227072238922, - 0.10647961497306824, - 0.053514327853918076, - -2.3121749848087347e-8, - -1.518119141508123e-8, - 0.03513627499341965, - 0.06991202384233475, - 0.10397033393383026, - 0.13696181774139404, - 0.1685478836297989, - 0.19840440154075623, - 0.22622501850128174, - 0.2517242729663849, - 0.2746405005455017, - 0.2947385311126709, - 0.311812162399292, - 0.32568615674972534, - 0.3362182080745697, - 0.3433001637458801, - 0.3468593955039978, - 0.3468593955039978, - 0.3433001637458801, - 0.3362182080745697, - 0.32568615674972534, - 0.311812162399292, - 0.2947385311126709, - 0.2746405005455017, - 0.2517242729663849, - 0.22622501850128174, - 0.19840438663959503, - 0.1685478836297989, - 0.13696181774139404, - 0.10397033393383026, - 0.06991197913885117, - 0.035136234015226364, - -1.518119141508123e-8, - -6.619118142481284e-9, - 0.01531969103962183, - 0.03048218972980976, - 0.04533188045024872, - 0.059716422110795975, - 0.07348819077014923, - 0.08650587499141693, - 0.09863588213920593, - 0.10975375771522522, - 0.1197454109787941, - 0.1285083144903183, - 0.13595254719257355, - 0.14200171828269958, - 0.14659376442432404, - 0.14968156814575195, - 0.15123341977596283, - 0.15123341977596283, - 0.14968156814575195, - 0.14659376442432404, - 0.14200171828269958, - 0.13595254719257355, - 0.1285083144903183, - 0.1197454109787941, - 0.10975375771522522, - 0.09863588213920593, - 0.08650586754083633, - 0.07348819077014923, - 0.059716422110795975, - 0.04533188045024872, - 0.03048217110335827, - 0.015319673344492912, - -6.619118142481284e-9, - 2.213947913887182e-9, - -0.005124096293002367, - -0.010195614770054817, - -0.015162506140768528, - -0.019973816350102425, - -0.02458016760647297, - -0.028934292495250702, - -0.03299150988459587, - -0.036710191518068314, - -0.040052179247140884, - -0.042983174324035645, - -0.04547310620546341, - -0.04749641939997673, - -0.04903235659003258, - -0.05006515607237816, - -0.05058421567082405, - -0.05058421567082405, - -0.05006515607237816, - -0.04903235659003258, - -0.04749641939997673, - -0.04547310620546341, - -0.042983174324035645, - -0.040052179247140884, - -0.036710191518068314, - -0.03299150988459587, - -0.028934288769960403, - -0.02458016760647297, - -0.019973816350102425, - -0.015162506140768528, - -0.01019560918211937, - -0.005124090239405632, - 2.213947913887182e-9, - 1.095637447434683e-8, - -0.025358103215694427, - -0.050456009805202484, - -0.07503613829612732, - -0.09884632378816605, - -0.12164221704006195, - -0.14318987727165222, - -0.16326822340488434, - -0.18167121708393097, - -0.19821001589298248, - -0.21271492540836334, - -0.225037083029747, - -0.2350500524044037, - -0.2426510900259018, - -0.24776220321655273, - -0.25033092498779297, - -0.25033092498779297, - -0.24776220321655273, - -0.2426510900259018, - -0.2350500524044037, - -0.225037083029747, - -0.21271492540836334, - -0.19821001589298248, - -0.18167121708393097, - -0.16326822340488434, - -0.14318986237049103, - -0.12164221704006195, - -0.09884632378816605, - -0.07503613829612732, - -0.050455980002880096, - -0.02535807341337204, - 1.095637447434683e-8, - 1.925024228910388e-8, - -0.044553935527801514, - -0.08865070343017578, - -0.13183774054050446, - -0.17367200553417206, - -0.21372415125370026, - -0.25158318877220154, - -0.2868606448173523, - -0.3191945254802704, - -0.3482530415058136, - -0.37373799085617065, - -0.3953879177570343, - -0.4129805862903595, - -0.42633554339408875, - -0.43531572818756104, - -0.43982893228530884, - -0.43982893228530884, - -0.43531572818756104, - -0.42633554339408875, - -0.4129805862903595, - -0.3953879177570343, - -0.37373799085617065, - -0.3482530415058136, - -0.3191945254802704, - -0.2868606448173523, - -0.25158315896987915, - -0.21372415125370026, - -0.17367200553417206, - -0.13183774054050446, - -0.0886506512761116, - -0.04455387964844704, - 1.925024228910388e-8, - 2.6756007187600517e-8, - -0.0619257353246212, - -0.12321605533361435, - -0.18324194848537445, - -0.24138759076595306, - -0.29705625772476196, - -0.3496767282485962, - -0.3987090289592743, - -0.4436500668525696, - -0.4840386211872101, - -0.5194603204727173, - -0.5495516061782837, - -0.5740037560462952, - -0.5925658941268921, - -0.6050474643707275, - -0.611320436000824, - -0.611320436000824, - -0.6050474643707275, - -0.5925658941268921, - -0.5740037560462952, - -0.5495516061782837, - -0.5194603204727173, - -0.4840386211872101, - -0.4436500668525696, - -0.3987090289592743, - -0.3496766984462738, - -0.29705625772476196, - -0.24138759076595306, - -0.18324194848537445, - -0.12321598827838898, - -0.06192566081881523, - 2.6756007187600517e-8, - 3.316637275929679e-8, - -0.07676228135824203, - -0.15273691713809967, - -0.22714416682720184, - -0.2992206811904907, - -0.3682268261909485, - -0.4334544241428375, - -0.494234174489975, - -0.5499424338340759, - -0.6000075340270996, - -0.6439157724380493, - -0.6812165379524231, - -0.7115271091461182, - -0.7345364689826965, - -0.7500084638595581, - -0.7577843070030212, - -0.7577843070030212, - -0.7500084638595581, - -0.7345364689826965, - -0.7115271091461182, - -0.6812165379524231, - -0.6439157724380493, - -0.6000075340270996, - -0.5499424338340759, - -0.494234174489975, - -0.43345436453819275, - -0.3682268261909485, - -0.2992206811904907, - -0.22714416682720184, - -0.1527368277311325, - -0.07676219195127487, - 3.316637275929679e-8, - 3.821891070288075e-8, - -0.0884561762213707, - -0.17600472271442413, - -0.2617470920085907, - -0.34480372071266174, - -0.4243221580982208, - -0.4994864761829376, - -0.5695253610610962, - -0.6337202191352844, - -0.6914121508598328, - -0.7420093417167664, - -0.7849924564361572, - -0.8199204802513123, - -0.8464350700378418, - -0.8642640709877014, - -0.8732244968414307, - -0.8732244968414307, - -0.8642640709877014, - -0.8464350700378418, - -0.8199204802513123, - -0.7849924564361572, - -0.7420093417167664, - -0.6914121508598328, - -0.6337202191352844, - -0.5695253610610962, - -0.49948644638061523, - -0.4243221580982208, - -0.34480372071266174, - -0.2617470920085907, - -0.17600461840629578, - -0.08845607191324234, - 3.821891070288075e-8, - 4.170675538262003e-8, - -0.09652866423130035, - -0.19206684827804565, - -0.2856340706348419, - -0.3762703835964203, - -0.4630456864833832, - -0.5450694561004639, - -0.6215000748634338, - -0.6915532946586609, - -0.754510223865509, - -0.8097248673439026, - -0.8566306829452515, - -0.8947461843490601, - -0.9236804842948914, - -0.9431365728378296, - -0.9529147148132324, - -0.9529147148132324, - -0.9431365728378296, - -0.9236804842948914, - -0.8947461843490601, - -0.8566306829452515, - -0.8097248673439026, - -0.754510223865509, - -0.6915532946586609, - -0.6215000748634338, - -0.5450693964958191, - -0.4630456864833832, - -0.3762703835964203, - -0.2856340706348419, - -0.1920667439699173, - -0.0965285450220108, - 4.170675538262003e-8, - 4.348711968304997e-8, - -0.10064924508333206, - -0.20026573538780212, - -0.2978271245956421, - -0.3923324942588806, - -0.4828120172023773, - -0.5683372020721436, - -0.6480304598808289, - -0.721074104309082, - -0.7867185473442078, - -0.8442901372909546, - -0.8931982517242432, - -0.9329408407211304, - -0.9631102681159973, - -0.9833968877792358, - -0.993592381477356, - -0.993592381477356, - -0.9833968877792358, - -0.9631102681159973, - -0.9329408407211304, - -0.8931982517242432, - -0.8442901372909546, - -0.7867185473442078, - -0.721074104309082, - -0.6480304598808289, - -0.5683371424674988, - -0.4828120172023773, - -0.3923324942588806, - -0.2978271245956421, - -0.20026563107967377, - -0.10064912587404251, - 4.348711968304997e-8, - 4.348711968304997e-8, - -0.10064923763275146, - -0.20026573538780212, - -0.2978270947933197, - -0.3923324644565582, - -0.48281198740005493, - -0.5683372020721436, - -0.6480304598808289, - -0.721074104309082, - -0.786718487739563, - -0.8442901372909546, - -0.8931981921195984, - -0.9329407811164856, - -0.9631102085113525, - -0.9833968281745911, - -0.9935923218727112, - -0.9935923218727112, - -0.9833968281745911, - -0.9631102085113525, - -0.9329407811164856, - -0.8931981921195984, - -0.8442901372909546, - -0.786718487739563, - -0.721074104309082, - -0.6480304598808289, - -0.5683371424674988, - -0.48281198740005493, - -0.3923324644565582, - -0.2978270947933197, - -0.20026561617851257, - -0.10064911842346191, - 4.348711968304997e-8, - 4.170675182990635e-8, - -0.09652864933013916, - -0.19206683337688446, - -0.28563404083251953, - -0.3762703537940979, - -0.4630456268787384, - -0.5450693964958191, - -0.6215000152587891, - -0.6915532350540161, - -0.7545101642608643, - -0.8097248077392578, - -0.8566305637359619, - -0.8947461247444153, - -0.9236803650856018, - -0.94313645362854, - -0.9529145956039429, - -0.9529145956039429, - -0.94313645362854, - -0.9236803650856018, - -0.8947461247444153, - -0.8566305637359619, - -0.8097248077392578, - -0.7545101642608643, - -0.6915532350540161, - -0.6215000152587891, - -0.5450693368911743, - -0.4630456268787384, - -0.3762703537940979, - -0.28563404083251953, - -0.1920667141675949, - -0.0965285375714302, - 4.170675182990635e-8, - 3.821890004473971e-8, - -0.0884561538696289, - -0.17600466310977936, - -0.2617470324039459, - -0.3448036015033722, - -0.4243220388889313, - -0.49948635697364807, - -0.5695251822471619, - -0.6337200403213501, - -0.6914119720458984, - -0.7420091032981873, - -0.7849922776222229, - -0.8199203014373779, - -0.8464348316192627, - -0.8642638325691223, - -0.8732242584228516, - -0.8732242584228516, - -0.8642638325691223, - -0.8464348316192627, - -0.8199203014373779, - -0.7849922776222229, - -0.7420091032981873, - -0.6914119720458984, - -0.6337200403213501, - -0.5695251822471619, - -0.4994862973690033, - -0.4243220388889313, - -0.3448036015033722, - -0.2617470324039459, - -0.176004558801651, - -0.08845604956150055, - 3.821890004473971e-8, - 3.316637275929679e-8, - -0.07676227390766144, - -0.15273690223693848, - -0.22714415192604065, - -0.2992206811904907, - -0.3682267963886261, - -0.43345439434051514, - -0.4942341148853302, - -0.5499424338340759, - -0.6000074744224548, - -0.6439157128334045, - -0.6812164783477783, - -0.7115270495414734, - -0.7345364093780518, - -0.7500084042549133, - -0.7577842473983765, - -0.7577842473983765, - -0.7500084042549133, - -0.7345364093780518, - -0.7115270495414734, - -0.6812164783477783, - -0.6439157128334045, - -0.6000074744224548, - -0.5499424338340759, - -0.4942341148853302, - -0.43345433473587036, - -0.3682267963886261, - -0.2992206811904907, - -0.22714415192604065, - -0.1527368128299713, - -0.07676218450069427, - 3.316637275929679e-8, - 2.675599830581632e-8, - -0.06192571669816971, - -0.12321602553129196, - -0.18324188888072968, - -0.2413875162601471, - -0.2970561981201172, - -0.34967663884162903, - -0.39870890974998474, - -0.44364994764328003, - -0.48403847217559814, - -0.519460141658783, - -0.5495514869689941, - -0.5740036368370056, - -0.5925657153129578, - -0.6050472855567932, - -0.6113202571868896, - -0.6113202571868896, - -0.6050472855567932, - -0.5925657153129578, - -0.5740036368370056, - -0.5495514869689941, - -0.519460141658783, - -0.48403847217559814, - -0.44364994764328003, - -0.39870890974998474, - -0.34967660903930664, - -0.2970561981201172, - -0.2413875162601471, - -0.18324188888072968, - -0.12321595102548599, - -0.06192564219236374, - 2.675599830581632e-8, - 1.9250235183676523e-8, - -0.04455392062664032, - -0.0886506736278534, - -0.13183769583702087, - -0.17367194592952728, - -0.21372409164905548, - -0.2515830993652344, - -0.28686052560806274, - -0.3191944360733032, - -0.34825292229652405, - -0.3737378716468811, - -0.39538776874542236, - -0.41298043727874756, - -0.4263353943824768, - -0.4353155791759491, - -0.4398287832736969, - -0.4398287832736969, - -0.4353155791759491, - -0.4263353943824768, - -0.41298043727874756, - -0.39538776874542236, - -0.3737378716468811, - -0.34825292229652405, - -0.3191944360733032, - -0.28686052560806274, - -0.2515830993652344, - -0.21372409164905548, - -0.17367194592952728, - -0.13183769583702087, - -0.08865062147378922, - -0.04455386474728584, - 1.9250235183676523e-8, - 1.0956362039848955e-8, - -0.02535807341337204, - -0.05045595020055771, - -0.07503604888916016, - -0.0988462045788765, - -0.12164206802845001, - -0.1431897133588791, - -0.16326802968978882, - -0.18167100846767426, - -0.19820979237556458, - -0.21271467208862305, - -0.22503681480884552, - -0.235049769282341, - -0.24265079200267792, - -0.24776190519332886, - -0.2503306269645691, - -0.2503306269645691, - -0.24776190519332886, - -0.24265079200267792, - -0.235049769282341, - -0.22503681480884552, - -0.21271467208862305, - -0.19820979237556458, - -0.18167100846767426, - -0.16326802968978882, - -0.1431896984577179, - -0.12164206802845001, - -0.0988462045788765, - -0.07503604888916016, - -0.05045592039823532, - -0.025358043611049652, - 1.0956362039848955e-8, - 2.2139350353000964e-9, - -0.005124066490679979, - -0.010195556096732616, - -0.015162418596446514, - -0.019973700866103172, - -0.02458002418279648, - -0.028934122994542122, - -0.03299131616950035, - -0.0367099791765213, - -0.04005194455385208, - -0.04298292472958565, - -0.04547284170985222, - -0.047496143728494644, - -0.049032073467969894, - -0.05006486549973488, - -0.05058392137289047, - -0.05058392137289047, - -0.05006486549973488, - -0.049032073467969894, - -0.047496143728494644, - -0.04547284170985222, - -0.04298292472958565, - -0.04005194455385208, - -0.0367099791765213, - -0.03299131616950035, - -0.028934121131896973, - -0.02458002418279648, - -0.019973700866103172, - -0.015162418596446514, - -0.010195549577474594, - -0.005124060437083244, - 2.2139350353000964e-9, - -6.61913057697916e-9, - 0.015319719910621643, - 0.030482245609164238, - 0.04533196613192558, - 0.05971653386950493, - 0.07348833233118057, - 0.08650603145360947, - 0.09863606095314026, - 0.10975396633148193, - 0.119745634496212, - 0.1285085529088974, - 0.13595280051231384, - 0.14200198650360107, - 0.14659403264522552, - 0.14968183636665344, - 0.1512337028980255, - 0.1512337028980255, - 0.14968183636665344, - 0.14659403264522552, - 0.14200198650360107, - 0.13595280051231384, - 0.1285085529088974, - 0.119745634496212, - 0.10975396633148193, - 0.09863606095314026, - 0.08650602400302887, - 0.07348833233118057, - 0.05971653386950493, - 0.04533196613192558, - 0.030482228845357895, - 0.015319702215492725, - -6.61913057697916e-9, - -1.5181209178649624e-8, - 0.03513631597161293, - 0.06991209834814072, - 0.10397045314311981, - 0.13696196675300598, - 0.16854806244373322, - 0.19840462505817413, - 0.22622527182102203, - 0.25172457098960876, - 0.2746407985687256, - 0.29473888874053955, - 0.31181252002716064, - 0.3256865441799164, - 0.33621856570243835, - 0.34330055117607117, - 0.34685978293418884, - 0.34685978293418884, - 0.34330055117607117, - 0.33621856570243835, - 0.3256865441799164, - 0.31181252002716064, - 0.29473888874053955, - 0.2746407985687256, - 0.25172457098960876, - 0.22622527182102203, - 0.19840461015701294, - 0.16854806244373322, - 0.13696196675300598, - 0.10397045314311981, - 0.06991206109523773, - 0.03513627499341965, - -1.5181209178649624e-8, - -2.3121765835298902e-8, - 0.053514424711465836, - 0.10647974908351898, - 0.15835237503051758, - 0.20860016345977783, - 0.25670742988586426, - 0.3021804988384247, - 0.34455278515815735, - 0.38338953256607056, - 0.41829216480255127, - 0.44890254735946655, - 0.4749065935611725, - 0.49603742361068726, - 0.5120782852172852, - 0.5228645205497742, - 0.5282853841781616, - 0.5282853841781616, - 0.5228645205497742, - 0.5120782852172852, - 0.49603742361068726, - 0.4749065935611725, - 0.44890254735946655, - 0.41829216480255127, - 0.38338953256607056, - 0.34455278515815735, - 0.3021804690361023, - 0.25670742988586426, - 0.20860016345977783, - 0.15835237503051758, - 0.10647968202829361, - 0.05351436138153076, - -2.3121765835298902e-8, - -3.011571436672966e-8, - 0.0697016492486, - 0.1386880874633789, - 0.206251323223114, - 0.2716982364654541, - 0.3343571424484253, - 0.39358505606651306, - 0.4487742483615875, - 0.49935847520828247, - 0.5448185801506042, - 0.5846880674362183, - 0.6185579299926758, - 0.646080493927002, - 0.6669734120368958, - 0.6810222864151001, - 0.6880829334259033, - 0.6880829334259033, - 0.6810222864151001, - 0.6669734120368958, - 0.646080493927002, - 0.6185579299926758, - 0.5846880674362183, - 0.5448185801506042, - 0.49935847520828247, - 0.4487742483615875, - 0.3935850262641907, - 0.3343571424484253, - 0.2716982364654541, - 0.206251323223114, - 0.13868801295757294, - 0.06970156729221344, - -3.011571436672966e-8, - -3.58767202612853e-8, - 0.08303527534008026, - 0.1652185320854187, - 0.24570631980895996, - 0.32367292046546936, - 0.39831823110580444, - 0.4688762128353119, - 0.534622848033905, - 0.5948836207389832, - 0.6490399837493896, - 0.6965364217758179, - 0.7368853688240051, - 0.7696729302406311, - 0.794562578201294, - 0.8112989664077759, - 0.8197102546691895, - 0.8197102546691895, - 0.8112989664077759, - 0.794562578201294, - 0.7696729302406311, - 0.7368853688240051, - 0.6965364217758179, - 0.6490399837493896, - 0.5948836207389832, - 0.534622848033905, - 0.4688761532306671, - 0.39831823110580444, - 0.32367292046546936, - 0.24570631980895996, - 0.16521842777729034, - 0.0830351784825325, - -3.58767202612853e-8, - -4.0168931292328125e-8, - 0.09296942502260208, - 0.18498490750789642, - 0.27510207891464233, - 0.3623964190483093, - 0.44597211480140686, - 0.5249714851379395, - 0.5985839366912842, - 0.6660541296005249, - 0.7266896963119507, - 0.7798684239387512, - 0.8250446915626526, - 0.861754834651947, - 0.8896222114562988, - 0.9083608984947205, - 0.917778491973877, - 0.917778491973877, - 0.9083608984947205, - 0.8896222114562988, - 0.861754834651947, - 0.8250446915626526, - 0.7798684239387512, - 0.7266896963119507, - 0.6660541296005249, - 0.5985839366912842, - 0.5249714255332947, - 0.44597211480140686, - 0.3623964190483093, - 0.27510207891464233, - 0.18498478829860687, - 0.09296931326389313, - -4.0168931292328125e-8, - -4.281661603044995e-8, - 0.09909739345312119, - 0.1971779614686966, - 0.29323509335517883, - 0.38628336787223816, - 0.47536781430244446, - 0.5595743656158447, - 0.6380388736724854, - 0.7099562883377075, - 0.7745885848999023, - 0.831272542476654, - 0.8794265389442444, - 0.9185563921928406, - 0.9482606053352356, - 0.9682344198226929, - 0.9782727956771851, - 0.9782727956771851, - 0.9682344198226929, - 0.9482606053352356, - 0.9185563921928406, - 0.8794265389442444, - 0.831272542476654, - 0.7745885848999023, - 0.7099562883377075, - 0.6380388736724854, - 0.5595743060112, - 0.47536781430244446, - 0.38628336787223816, - 0.29323509335517883, - 0.19717784225940704, - 0.09909727424383163, - -4.281661603044995e-8, - -4.371138828673793e-8, - 0.10116830468177795, - 0.2012985348701477, - 0.29936304688453674, - 0.39435580372810364, - 0.4853019416332245, - 0.5712682008743286, - 0.6513724327087402, - 0.7247927784919739, - 0.790775716304779, - 0.8486442565917969, - 0.8978045582771301, - 0.9377521276473999, - 0.9680771231651306, - 0.98846834897995, - 0.9987164735794067, - 0.9987164735794067, - 0.98846834897995, - 0.9680771231651306, - 0.9377521276473999, - 0.8978045582771301, - 0.8486442565917969, - 0.790775716304779, - 0.7247927784919739, - 0.6513724327087402, - 0.5712681412696838, - 0.4853019416332245, - 0.39435580372810364, - 0.29936304688453674, - 0.20129841566085815, - 0.1011681854724884, - -4.371138828673793e-8 - ], - "z": [ - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1 - ] - }, - { - "alphahull": 0, - "color": "#111111", - "opacity": 0.05, - "type": "mesh3d", - "x": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - -1.759807766177346e-8, - 0.0407300628721714, - 0.08104220032691956, - 0.12052268534898758, - 0.1587664932012558, - 0.19538113474845886, - 0.2299908995628357, - 0.26224061846733093, - 0.2917994558811188, - 0.3183639943599701, - 0.3416616916656494, - 0.36145347356796265, - 0.37753626704216003, - 0.3897450268268585, - 0.39795446395874023, - 0.40208032727241516, - 0.40208032727241516, - 0.39795446395874023, - 0.3897450268268585, - 0.37753626704216003, - 0.36145347356796265, - 0.3416616916656494, - 0.3183639943599701, - 0.2917994558811188, - 0.26224061846733093, - 0.2299908846616745, - 0.19538113474845886, - 0.1587664932012558, - 0.12052268534898758, - 0.08104215562343597, - 0.04073001444339752, - -1.759807766177346e-8, - -3.447568630576825e-8, - 0.07979262620210648, - 0.158766508102417, - 0.23611114919185638, - 0.3110330402851105, - 0.3827633261680603, - 0.4505659341812134, - 0.5137450695037842, - 0.5716525912284851, - 0.6236940622329712, - 0.669335663318634, - 0.7081089615821838, - 0.7396160960197449, - 0.7635337710380554, - 0.7796165943145752, - 0.7876994013786316, - 0.7876994013786316, - 0.7796165943145752, - 0.7635337710380554, - 0.7396160960197449, - 0.7081089615821838, - 0.669335663318634, - 0.6236940622329712, - 0.5716525912284851, - 0.5137450695037842, - 0.4505658745765686, - 0.3827633261680603, - 0.3110330402851105, - 0.23611114919185638, - 0.15876641869544983, - 0.07979253679513931, - -3.447568630576825e-8, - -4.994185687223762e-8, - 0.1155884861946106, - 0.22999092936515808, - 0.3420332074165344, - 0.450565904378891, - 0.5544751882553101, - 0.6526947617530823, - 0.744216799736023, - 0.8281022310256958, - 0.9034901261329651, - 0.9696070551872253, - 1.0257744789123535, - 1.0714160203933716, - 1.1060634851455688, - 1.1293611526489258, - 1.141070008277893, - 1.141070008277893, - 1.1293611526489258, - 1.1060634851455688, - 1.0714160203933716, - 1.0257744789123535, - 0.9696070551872253, - 0.9034901261329651, - 0.8281022310256958, - 0.744216799736023, - 0.6526947021484375, - 0.5544751882553101, - 0.450565904378891, - 0.3420332074165344, - 0.22999079525470734, - 0.11558834463357925, - -4.994185687223762e-8, - -6.336339453127948e-8, - 0.14665211737155914, - 0.2917994558811188, - 0.43395236134529114, - 0.5716524720191956, - 0.7034866809844971, - 0.8281021118164062, - 0.9442200660705566, - 1.0506491661071777, - 1.1462970972061157, - 1.230182409286499, - 1.3014445304870605, - 1.3593519926071167, - 1.4033106565475464, - 1.4328694343566895, - 1.4477249383926392, - 1.4477249383926392, - 1.4328694343566895, - 1.4033106565475464, - 1.3593519926071167, - 1.3014445304870605, - 1.230182409286499, - 1.1462970972061157, - 1.0506491661071777, - 0.9442200660705566, - 0.8281020522117615, - 0.7034866809844971, - 0.5716524720191956, - 0.43395236134529114, - 0.29179927706718445, - 0.14665193855762482, - -6.336339453127948e-8, - -7.419083658533054e-8, - 0.17171180248260498, - 0.3416616916656494, - 0.508105456829071, - 0.6693356037139893, - 0.8236973881721497, - 0.9696069359779358, - 1.1055669784545898, - 1.230182409286499, - 1.3421745300292969, - 1.4403941631317139, - 1.5238333940505981, - 1.5916359424591064, - 1.64310622215271, - 1.6777160167694092, - 1.6951099634170532, - 1.6951099634170532, - 1.6777160167694092, - 1.64310622215271, - 1.5916359424591064, - 1.5238333940505981, - 1.4403941631317139, - 1.3421745300292969, - 1.230182409286499, - 1.1055669784545898, - 0.969606876373291, - 0.8236973881721497, - 0.6693356037139893, - 0.508105456829071, - 0.3416614830493927, - 0.17171159386634827, - -7.419083658533054e-8, - -8.198090029054583e-8, - 0.1897415965795517, - 0.3775362968444824, - 0.5614566802978516, - 0.7396160364151001, - 0.9101859331130981, - 1.0714160203933716, - 1.2216517925262451, - 1.3593519926071167, - 1.4831032752990723, - 1.591636061668396, - 1.6838363409042358, - 1.7587581872940063, - 1.8156328201293945, - 1.8538767099380493, - 1.8730970621109009, - 1.8730970621109009, - 1.8538767099380493, - 1.8156328201293945, - 1.7587581872940063, - 1.6838363409042358, - 1.591636061668396, - 1.4831032752990723, - 1.3593519926071167, - 1.2216517925262451, - 1.071415901184082, - 0.9101859331130981, - 0.7396160364151001, - 0.5614566802978516, - 0.3775360584259033, - 0.1897413730621338, - -8.198090029054583e-8, - -8.641464432912471e-8, - 0.20000334084033966, - 0.39795446395874023, - 0.5918217897415161, - 0.7796164751052856, - 0.9594112038612366, - 1.1293610334396362, - 1.287722110748291, - 1.4328694343566895, - 1.5633134841918945, - 1.6777160167694092, - 1.7749028205871582, - 1.8538765907287598, - 1.9138271808624268, - 1.9541393518447876, - 1.974399209022522, - 1.974399209022522, - 1.9541393518447876, - 1.9138271808624268, - 1.8538765907287598, - 1.7749028205871582, - 1.6777160167694092, - 1.5633134841918945, - 1.4328694343566895, - 1.287722110748291, - 1.1293609142303467, - 0.9594112038612366, - 0.7796164751052856, - 0.5918217897415161, - 0.39795422554016113, - 0.20000310242176056, - -8.641464432912471e-8, - -8.731056766464462e-8, - 0.20207691192626953, - 0.40208032727241516, - 0.5979576110839844, - 0.787699282169342, - 0.9693580865859985, - 1.1410698890686035, - 1.3010727167129517, - 1.4477249383926392, - 1.5795214176177979, - 1.6951099634170532, - 1.793304443359375, - 1.8730969429016113, - 1.933669090270996, - 1.974399209022522, - 1.9948692321777344, - 1.9948692321777344, - 1.974399209022522, - 1.933669090270996, - 1.8730969429016113, - 1.793304443359375, - 1.6951099634170532, - 1.5795214176177979, - 1.4477249383926392, - 1.3010727167129517, - 1.141069769859314, - 0.9693580865859985, - 0.787699282169342, - 0.5979576110839844, - 0.40208008885383606, - 0.20207667350769043, - -8.731056766464462e-8, - -8.463199208108563e-8, - 0.19587744772434235, - 0.3897450268268585, - 0.5796130299568176, - 0.7635336518287659, - 0.9396194219589233, - 1.1060633659362793, - 1.261157512664795, - 1.4033106565475464, - 1.5310637950897217, - 1.64310622215271, - 1.738288164138794, - 1.8156328201293945, - 1.8743466138839722, - 1.9138271808624268, - 1.933669090270996, - 1.933669090270996, - 1.9138271808624268, - 1.8743466138839722, - 1.8156328201293945, - 1.738288164138794, - 1.64310622215271, - 1.5310637950897217, - 1.4033106565475464, - 1.261157512664795, - 1.1060632467269897, - 0.9396194219589233, - 0.7635336518287659, - 0.5796130299568176, - 0.3897447884082794, - 0.19587720930576324, - -8.463199208108563e-8, - -7.848856142800287e-8, - 0.18165871500968933, - 0.36145347356796265, - 0.537539005279541, - 0.7081088423728943, - 0.8714125156402588, - 1.025774359703064, - 1.1696101427078247, - 1.301444411277771, - 1.419924020767212, - 1.5238332748413086, - 1.6121059656143188, - 1.6838361024856567, - 1.7382880449295044, - 1.7749027013778687, - 1.7933043241500854, - 1.7933043241500854, - 1.7749027013778687, - 1.7382880449295044, - 1.6838361024856567, - 1.6121059656143188, - 1.5238332748413086, - 1.419924020767212, - 1.301444411277771, - 1.1696101427078247, - 1.0257742404937744, - 0.8714125156402588, - 0.7081088423728943, - 0.537539005279541, - 0.36145323514938354, - 0.18165850639343262, - -7.848856142800287e-8, - -6.913180072842806e-8, - 0.16000287234783173, - 0.3183639645576477, - 0.47345802187919617, - 0.6236939430236816, - 0.7675299048423767, - 0.9034899473190308, - 1.0301789045333862, - 1.1462969779968262, - 1.2506523132324219, - 1.3421744108200073, - 1.419924020767212, - 1.4831031560897827, - 1.5310636758804321, - 1.563313364982605, - 1.5795212984085083, - 1.5795212984085083, - 1.563313364982605, - 1.5310636758804321, - 1.4831031560897827, - 1.419924020767212, - 1.3421744108200073, - 1.2506523132324219, - 1.1462969779968262, - 1.0301789045333862, - 0.903489887714386, - 0.7675299048423767, - 0.6236939430236816, - 0.47345802187919617, - 0.3183637857437134, - 0.1600026786327362, - -6.913180072842806e-8, - -5.694478133477787e-8, - 0.1317964792251587, - 0.26224061846733093, - 0.3899936378002167, - 0.5137449502944946, - 0.6322245597839355, - 0.7442166209220886, - 0.8485720157623291, - 0.9442200064659119, - 1.0301789045333862, - 1.1055668592453003, - 1.1696101427078247, - 1.2216516733169556, - 1.2611573934555054, - 1.2877219915390015, - 1.301072597503662, - 1.301072597503662, - 1.2877219915390015, - 1.2611573934555054, - 1.2216516733169556, - 1.1696101427078247, - 1.1055668592453003, - 1.0301789045333862, - 0.9442200064659119, - 0.8485720157623291, - 0.7442165613174438, - 0.6322245597839355, - 0.5137449502944946, - 0.3899936378002167, - 0.2622404396533966, - 0.13179631531238556, - -5.694478133477787e-8, - -4.242642859253465e-8, - 0.09819431602954865, - 0.1953810751438141, - 0.29056283831596375, - 0.382763147354126, - 0.47103580832481384, - 0.554474949836731, - 0.632224440574646, - 0.703486442565918, - 0.7675297260284424, - 0.8236971497535706, - 0.8714123368263245, - 0.9101855754852295, - 0.9396191239356995, - 0.9594109058380127, - 0.9693577885627747, - 0.9693577885627747, - 0.9594109058380127, - 0.9396191239356995, - 0.9101855754852295, - 0.8714123368263245, - 0.8236971497535706, - 0.7675297260284424, - 0.703486442565918, - 0.632224440574646, - 0.5544748902320862, - 0.47103580832481384, - 0.382763147354126, - 0.29056283831596375, - 0.19538097083568573, - 0.09819420427083969, - -4.242642859253465e-8, - -2.6171136369157466e-8, - 0.060572072863578796, - 0.1205226257443428, - 0.17923638224601746, - 0.23611098527908325, - 0.29056277871131897, - 0.3420329988002777, - 0.38999348878860474, - 0.43395212292671204, - 0.47345781326293945, - 0.5081052184104919, - 0.5375387668609619, - 0.5614563822746277, - 0.5796127319335938, - 0.5918214917182922, - 0.5979573130607605, - 0.5979573130607605, - 0.5918214917182922, - 0.5796127319335938, - 0.5614563822746277, - 0.5375387668609619, - 0.5081052184104919, - 0.47345781326293945, - 0.43395212292671204, - 0.38999348878860474, - 0.3420329689979553, - 0.29056277871131897, - 0.23611098527908325, - 0.17923638224601746, - 0.12052255123853683, - 0.060572002083063126, - -2.6171136369157466e-8, - -8.84441053727869e-9, - 0.020470041781663895, - 0.04073004424571991, - 0.060572076588869095, - 0.0797925814986229, - 0.09819430857896805, - 0.11558841913938522, - 0.1317964345216751, - 0.14665204286575317, - 0.16000281274318695, - 0.171711727976799, - 0.18165865540504456, - 0.18974150717258453, - 0.19587735831737518, - 0.2000032514333725, - 0.20207682251930237, - 0.20207682251930237, - 0.2000032514333725, - 0.19587735831737518, - 0.18974150717258453, - 0.18165865540504456, - 0.171711727976799, - 0.16000281274318695, - 0.14665204286575317, - 0.1317964345216751, - 0.11558840423822403, - 0.09819430857896805, - 0.0797925814986229, - 0.060572076588869095, - 0.04073002189397812, - 0.020470019429922104, - -8.84441053727869e-9, - 8.844424748133406e-9, - -0.02047007717192173, - -0.04073011502623558, - -0.06057218089699745, - -0.07979271560907364, - -0.09819447249174118, - -0.11558861285448074, - -0.13179665803909302, - -0.14665229618549347, - -0.16000308096408844, - -0.1717120110988617, - -0.18165895342826843, - -0.1897418200969696, - -0.19587768614292145, - -0.20000357925891876, - -0.20207716524600983, - -0.20207716524600983, - -0.20000357925891876, - -0.19587768614292145, - -0.1897418200969696, - -0.18165895342826843, - -0.1717120110988617, - -0.16000308096408844, - -0.14665229618549347, - -0.13179665803909302, - -0.11558860540390015, - -0.09819447249174118, - -0.07979271560907364, - -0.06057218089699745, - -0.04073008894920349, - -0.02047005295753479, - 8.844424748133406e-9, - 2.6171170119937415e-8, - -0.060572151094675064, - -0.12052278220653534, - -0.17923660576343536, - -0.23611129820346832, - -0.29056316614151, - -0.3420334458351135, - -0.3899939954280853, - -0.4339526891708374, - -0.4734584391117096, - -0.5081058740615845, - -0.5375394225120544, - -0.561457097530365, - -0.5796135067939758, - -0.5918222665786743, - -0.5979580879211426, - -0.5979580879211426, - -0.5918222665786743, - -0.5796135067939758, - -0.561457097530365, - -0.5375394225120544, - -0.5081058740615845, - -0.4734584391117096, - -0.4339526891708374, - -0.3899939954280853, - -0.34203341603279114, - -0.29056316614151, - -0.23611129820346832, - -0.17923660576343536, - -0.12052270770072937, - -0.06057208031415939, - 2.6171170119937415e-8, - 4.242646056695776e-8, - -0.09819439053535461, - -0.19538122415542603, - -0.29056304693222046, - -0.38276344537734985, - -0.4710361659526825, - -0.5544753670692444, - -0.6322248578071594, - -0.703486979007721, - -0.7675303220748901, - -0.8236977458000183, - -0.871412992477417, - -0.910186231136322, - -0.9396198391914368, - -0.95941162109375, - -0.969358503818512, - -0.969358503818512, - -0.95941162109375, - -0.9396198391914368, - -0.910186231136322, - -0.871412992477417, - -0.8236977458000183, - -0.7675303220748901, - -0.703486979007721, - -0.6322248578071594, - -0.5544753074645996, - -0.4710361659526825, - -0.38276344537734985, - -0.29056304693222046, - -0.19538110494613647, - -0.09819427877664566, - 4.242646056695776e-8, - 5.694479199291891e-8, - -0.13179649412631989, - -0.2622406482696533, - -0.38999369740486145, - -0.5137450695037842, - -0.6322246789932251, - -0.744216799736023, - -0.8485721945762634, - -0.9442201852798462, - -1.0301791429519653, - -1.1055670976638794, - -1.1696103811264038, - -1.2216519117355347, - -1.2611576318740845, - -1.2877222299575806, - -1.3010728359222412, - -1.3010728359222412, - -1.2877222299575806, - -1.2611576318740845, - -1.2216519117355347, - -1.1696103811264038, - -1.1055670976638794, - -1.0301791429519653, - -0.9442201852798462, - -0.8485721945762634, - -0.7442166805267334, - -0.6322246789932251, - -0.5137450695037842, - -0.38999369740486145, - -0.2622404992580414, - -0.13179634511470795, - 5.694479199291891e-8, - 6.913181493928278e-8, - -0.16000288724899292, - -0.3183640241622925, - -0.47345808148384094, - -0.6236940622329712, - -0.7675300240516663, - -0.9034901261329651, - -1.0301790237426758, - -1.1462970972061157, - -1.250652551651001, - -1.3421746492385864, - -1.4199241399765015, - -1.4831032752990723, - -1.5310639142990112, - -1.563313603401184, - -1.5795215368270874, - -1.5795215368270874, - -1.563313603401184, - -1.5310639142990112, - -1.4831032752990723, - -1.4199241399765015, - -1.3421746492385864, - -1.250652551651001, - -1.1462970972061157, - -1.0301790237426758, - -0.9034900069236755, - -0.7675300240516663, - -0.6236940622329712, - -0.47345808148384094, - -0.31836381554603577, - -0.1600026935338974, - 6.913181493928278e-8, - 7.848857563885758e-8, - -0.18165874481201172, - -0.36145350337028503, - -0.5375390648841858, - -0.7081089019775391, - -0.8714126348495483, - -1.0257744789123535, - -1.1696103811264038, - -1.30144464969635, - -1.4199241399765015, - -1.5238335132598877, - -1.612106204032898, - -1.6838363409042358, - -1.738288164138794, - -1.7749029397964478, - -1.7933045625686646, - -1.7933045625686646, - -1.7749029397964478, - -1.738288164138794, - -1.6838363409042358, - -1.612106204032898, - -1.5238335132598877, - -1.4199241399765015, - -1.30144464969635, - -1.1696103811264038, - -1.025774359703064, - -0.8714126348495483, - -0.7081089019775391, - -0.5375390648841858, - -0.3614532947540283, - -0.1816585212945938, - 7.848857563885758e-8, - 8.463199208108563e-8, - -0.19587744772434235, - -0.3897450268268585, - -0.5796130895614624, - -0.7635337114334106, - -0.9396194815635681, - -1.1060633659362793, - -1.2611576318740845, - -1.4033106565475464, - -1.5310639142990112, - -1.6431063413619995, - -1.738288164138794, - -1.8156328201293945, - -1.8743467330932617, - -1.9138273000717163, - -1.9336692094802856, - -1.9336692094802856, - -1.9138273000717163, - -1.8743467330932617, - -1.8156328201293945, - -1.738288164138794, - -1.6431063413619995, - -1.5310639142990112, - -1.4033106565475464, - -1.2611576318740845, - -1.1060632467269897, - -0.9396194815635681, - -0.7635337114334106, - -0.5796130895614624, - -0.3897448182106018, - -0.19587722420692444, - 8.463199208108563e-8, - 8.731057477007198e-8, - -0.20207691192626953, - -0.40208035707473755, - -0.5979576706886292, - -0.7876993417739868, - -0.9693581461906433, - -1.141070008277893, - -1.3010728359222412, - -1.4477250576019287, - -1.5795215368270874, - -1.6951100826263428, - -1.7933045625686646, - -1.8730970621109009, - -1.9336692094802856, - -1.9743993282318115, - -1.994869351387024, - -1.994869351387024, - -1.9743993282318115, - -1.9336692094802856, - -1.8730970621109009, - -1.7933045625686646, - -1.6951100826263428, - -1.5795215368270874, - -1.4477250576019287, - -1.3010728359222412, - -1.1410698890686035, - -0.9693581461906433, - -0.7876993417739868, - -0.5979576706886292, - -0.40208011865615845, - -0.20207667350769043, - 8.731057477007198e-8, - 8.641464432912471e-8, - -0.20000332593917847, - -0.39795443415641785, - -0.5918217301368713, - -0.7796164155006409, - -0.9594111442565918, - -1.1293610334396362, - -1.2877219915390015, - -1.4328693151474, - -1.5633134841918945, - -1.6777158975601196, - -1.7749027013778687, - -1.8538764715194702, - -1.9138270616531372, - -1.954139232635498, - -1.9743990898132324, - -1.9743990898132324, - -1.954139232635498, - -1.9138270616531372, - -1.8538764715194702, - -1.7749027013778687, - -1.6777158975601196, - -1.5633134841918945, - -1.4328693151474, - -1.2877219915390015, - -1.1293609142303467, - -0.9594111442565918, - -0.7796164155006409, - -0.5918217301368713, - -0.39795419573783875, - -0.20000308752059937, - 8.641464432912471e-8, - 8.198088607969112e-8, - -0.1897415667772293, - -0.37753620743751526, - -0.5614566206932068, - -0.7396159172058105, - -0.9101857542991638, - -1.0714157819747925, - -1.2216516733169556, - -1.3593517541885376, - -1.4831030368804932, - -1.5916357040405273, - -1.6838361024856567, - -1.7587578296661377, - -1.8156325817108154, - -1.8538763523101807, - -1.8730967044830322, - -1.8730967044830322, - -1.8538763523101807, - -1.8156325817108154, - -1.7587578296661377, - -1.6838361024856567, - -1.5916357040405273, - -1.4831030368804932, - -1.3593517541885376, - -1.2216516733169556, - -1.071415662765503, - -0.9101857542991638, - -0.7396159172058105, - -0.5614566206932068, - -0.37753599882125854, - -0.1897413432598114, - 8.198088607969112e-8, - 7.419081526904847e-8, - -0.1717117577791214, - -0.34166160225868225, - -0.5081053376197815, - -0.6693353652954102, - -0.8236971497535706, - -0.9696066975593567, - -1.1055666208267212, - -1.23018217086792, - -1.3421741724014282, - -1.4403936862945557, - -1.52383291721344, - -1.5916354656219482, - -1.6431057453155518, - -1.677715539932251, - -1.695109486579895, - -1.695109486579895, - -1.677715539932251, - -1.6431057453155518, - -1.5916354656219482, - -1.52383291721344, - -1.4403936862945557, - -1.3421741724014282, - -1.23018217086792, - -1.1055666208267212, - -0.9696065783500671, - -0.8236971497535706, - -0.6693353652954102, - -0.5081053376197815, - -0.34166139364242554, - -0.17171154916286469, - 7.419081526904847e-8, - 6.336337321499741e-8, - -0.14665205776691437, - -0.2917993366718292, - -0.4339521825313568, - -0.5716522336006165, - -0.7034863829612732, - -0.8281018137931824, - -0.944219708442688, - -1.0506486892700195, - -1.1462966203689575, - -1.2301819324493408, - -1.3014439344406128, - -1.359351396560669, - -1.4033100605010986, - -1.4328688383102417, - -1.4477243423461914, - -1.4477243423461914, - -1.4328688383102417, - -1.4033100605010986, - -1.359351396560669, - -1.3014439344406128, - -1.2301819324493408, - -1.1462966203689575, - -1.0506486892700195, - -0.944219708442688, - -0.8281016945838928, - -0.7034863829612732, - -0.5716522336006165, - -0.4339521825313568, - -0.2917991578578949, - -0.14665187895298004, - 6.336337321499741e-8, - 4.9941814239673477e-8, - -0.11558838933706284, - -0.22999073565006256, - -0.34203293919563293, - -0.45056554675102234, - -0.5544747114181519, - -0.6526942253112793, - -0.7442161440849304, - -0.8281015157699585, - -0.9034894108772278, - -0.9696062207221985, - -1.0257736444473267, - -1.0714151859283447, - -1.1060625314712524, - -1.1293601989746094, - -1.1410690546035767, - -1.1410690546035767, - -1.1293601989746094, - -1.1060625314712524, - -1.0714151859283447, - -1.0257736444473267, - -0.9696062207221985, - -0.9034894108772278, - -0.8281015157699585, - -0.7442161440849304, - -0.6526941657066345, - -0.5544747114181519, - -0.45056554675102234, - -0.34203293919563293, - -0.22999060153961182, - -0.1155882477760315, - 4.9941814239673477e-8, - 3.4475640120490425e-8, - -0.07979252934455872, - -0.15876631438732147, - -0.2361108362674713, - -0.31103265285491943, - -0.3827628493309021, - -0.4505653381347656, - -0.5137444138526917, - -0.571651816368103, - -0.6236932873725891, - -0.6693348288536072, - -0.7081080675125122, - -0.7396151423454285, - -0.763532817363739, - -0.779615581035614, - -0.7876983880996704, - -0.7876983880996704, - -0.779615581035614, - -0.763532817363739, - -0.7396151423454285, - -0.7081080675125122, - -0.6693348288536072, - -0.6236932873725891, - -0.571651816368103, - -0.5137444138526917, - -0.45056530833244324, - -0.3827628493309021, - -0.31103265285491943, - -0.2361108362674713, - -0.15876621007919312, - -0.07979243248701096, - 3.4475640120490425e-8, - 1.7598024371068277e-8, - -0.04072994366288185, - -0.08104196190834045, - -0.12052232772111893, - -0.1587660163640976, - -0.1953805685043335, - -0.22999022901058197, - -0.26223984360694885, - -0.29179859161376953, - -0.3183630406856537, - -0.34166067838668823, - -0.3614524006843567, - -0.3775351345539093, - -0.3897438645362854, - -0.3979532718658447, - -0.40207913517951965, - -0.40207913517951965, - -0.3979532718658447, - -0.3897438645362854, - -0.3775351345539093, - -0.3614524006843567, - -0.34166067838668823, - -0.3183630406856537, - -0.29179859161376953, - -0.26223984360694885, - -0.22999019920825958, - -0.1953805685043335, - -0.1587660163640976, - -0.12052232772111893, - -0.08104190975427628, - -0.04072989523410797, - 1.7598024371068277e-8, - -1.528548372131764e-14, - 3.537765635996948e-8, - 7.039231064709384e-8, - 1.0468459521462137e-7, - 1.3790271680136357e-7, - 1.6970577121355745e-7, - 1.9976741327809577e-7, - 2.277791395499662e-7, - 2.5345357812511793e-7, - 2.765272313354217e-7, - 2.967633463413222e-7, - 3.139542741337209e-7, - 3.279235727404739e-7, - 3.385279683243425e-7, - 3.4565857731649885e-7, - 3.492422706585785e-7, - 3.492422706585785e-7, - 3.4565857731649885e-7, - 3.385279683243425e-7, - 3.279235727404739e-7, - 3.139542741337209e-7, - 2.967633463413222e-7, - 2.765272313354217e-7, - 2.5345357812511793e-7, - 2.277791395499662e-7, - 1.9976738485638634e-7, - 1.6970577121355745e-7, - 1.3790271680136357e-7, - 1.0468459521462137e-7, - 7.039226801452969e-8, - 3.537761372740533e-8, - -1.528548372131764e-14 - ], - "y": [ - -8.742277657347586e-8, - 0.2023366093635559, - 0.4025970697402954, - 0.5987260937690735, - 0.7887116074562073, - 0.970603883266449, - 1.1425364017486572, - 1.3027448654174805, - 1.4495855569839478, - 1.581551432609558, - 1.6972885131835938, - 1.7956091165542603, - 1.8755042552947998, - 1.9361542463302612, - 1.9769366979599, - 1.9974329471588135, - 1.9974329471588135, - 1.9769366979599, - 1.9361542463302612, - 1.8755042552947998, - 1.7956091165542603, - 1.6972885131835938, - 1.581551432609558, - 1.4495855569839478, - 1.3027448654174805, - 1.1425362825393677, - 0.970603883266449, - 0.7887116074562073, - 0.5987260937690735, - 0.4025968313217163, - 0.2023363709449768, - -8.742277657347586e-8, - -8.563322495547254e-8, - 0.19819475710391998, - 0.3943558633327484, - 0.5864701271057129, - 0.7725666165351868, - 0.9507355690002441, - 1.1191486120224, - 1.2760776281356812, - 1.4199124574661255, - 1.5491769313812256, - 1.662544846534729, - 1.7588528394699097, - 1.837112545967102, - 1.896520972251892, - 1.9364686012268066, - 1.956545352935791, - 1.956545352935791, - 1.9364686012268066, - 1.896520972251892, - 1.837112545967102, - 1.7588528394699097, - 1.662544846534729, - 1.5491769313812256, - 1.4199124574661255, - 1.2760776281356812, - 1.1191484928131104, - 0.9507355690002441, - 0.7725666165351868, - 0.5864701271057129, - 0.3943556547164917, - 0.19819453358650208, - -8.563322495547254e-8, - -8.033784837380153e-8, - 0.18593880534172058, - 0.3699697256088257, - 0.5502040386199951, - 0.7247927188873291, - 0.8919440507888794, - 1.0499427318572998, - 1.1971676349639893, - 1.3321080207824707, - 1.4533790349960327, - 1.5597366094589233, - 1.6500890254974365, - 1.7235093116760254, - 1.779244065284729, - 1.8167214393615723, - 1.8355566263198853, - 1.8355566263198853, - 1.8167214393615723, - 1.779244065284729, - 1.7235093116760254, - 1.6500890254974365, - 1.5597366094589233, - 1.4533790349960327, - 1.3321080207824707, - 1.1971676349639893, - 1.0499426126480103, - 0.8919440507888794, - 0.7247927188873291, - 0.5502040386199951, - 0.36996951699256897, - 0.18593859672546387, - -8.033784837380153e-8, - -7.175341920628853e-8, - 0.16607049107551575, - 0.33043694496154785, - 0.4914124608039856, - 0.6473456025123596, - 0.796636164188385, - 0.9377520680427551, - 1.0692453384399414, - 1.189766764640808, - 1.298079490661621, - 1.393072247505188, - 1.473770260810852, - 1.5393452644348145, - 1.5891245603561401, - 1.622597336769104, - 1.6394199132919312, - 1.6394199132919312, - 1.622597336769104, - 1.5891245603561401, - 1.5393452644348145, - 1.473770260810852, - 1.393072247505188, - 1.298079490661621, - 1.189766764640808, - 1.0692453384399414, - 0.9377519488334656, - 0.796636164188385, - 0.6473456025123596, - 0.4914124608039856, - 0.33043673634529114, - 0.16607028245925903, - -7.175341920628853e-8, - -6.02314003117499e-8, - 0.13940322399139404, - 0.27737605571746826, - 0.4125024378299713, - 0.5433961749076843, - 0.6687139272689819, - 0.7871697545051575, - 0.8975480794906616, - 0.998716413974762, - 1.0896365642547607, - 1.1693755388259888, - 1.2371151447296143, - 1.2921602725982666, - 1.3339461088180542, - 1.362043857574463, - 1.3761651515960693, - 1.3761651515960693, - 1.362043857574463, - 1.3339461088180542, - 1.2921602725982666, - 1.2371151447296143, - 1.1693755388259888, - 1.0896365642547607, - 0.998716413974762, - 0.8975480794906616, - 0.7871696352958679, - 0.6687139272689819, - 0.5433961749076843, - 0.4125024378299713, - 0.27737587690353394, - 0.1394030600786209, - -6.02314003117499e-8, - -4.6243499696174695e-8, - 0.1070287823677063, - 0.21295934915542603, - 0.31670454144477844, - 0.4172000288963318, - 0.5134145021438599, - 0.6043605804443359, - 0.6891050934791565, - 0.7667785286903381, - 0.8365837335586548, - 0.8978044986724854, - 0.9498125314712524, - 0.992074191570282, - 1.024155855178833, - 1.045728325843811, - 1.056570053100586, - 1.056570053100586, - 1.045728325843811, - 1.024155855178833, - 0.992074191570282, - 0.9498125314712524, - 0.8978044986724854, - 0.8365837335586548, - 0.7667785286903381, - 0.6891050934791565, - 0.6043605208396912, - 0.5134145021438599, - 0.4172000288963318, - 0.31670454144477844, - 0.21295922994613647, - 0.10702865570783615, - -4.6243499696174695e-8, - -3.036238283016246e-8, - 0.0702725499868393, - 0.1398240476846695, - 0.20794066786766052, - 0.2739236354827881, - 0.3370957672595978, - 0.39680880308151245, - 0.4524500370025635, - 0.5034485459327698, - 0.5492810010910034, - 0.5894770622253418, - 0.623624324798584, - 0.6513723134994507, - 0.6724364161491394, - 0.6866003274917603, - 0.6937187910079956, - 0.6937187910079956, - 0.6866003274917603, - 0.6724364161491394, - 0.6513723134994507, - 0.623624324798584, - 0.5894770622253418, - 0.5492810010910034, - 0.5034485459327698, - 0.4524500370025635, - 0.39680877327919006, - 0.3370957672595978, - 0.2739236354827881, - 0.20794066786766052, - 0.13982395827770233, - 0.07027246803045273, - -3.036238283016246e-8, - -1.3238236284962568e-8, - 0.03063938207924366, - 0.06096437945961952, - 0.09066376090049744, - 0.11943284422159195, - 0.14697638154029846, - 0.17301174998283386, - 0.19727176427841187, - 0.21950751543045044, - 0.2394908219575882, - 0.2570166289806366, - 0.2719050943851471, - 0.28400343656539917, - 0.29318752884864807, - 0.2993631362915039, - 0.30246683955192566, - 0.30246683955192566, - 0.2993631362915039, - 0.29318752884864807, - 0.28400343656539917, - 0.2719050943851471, - 0.2570166289806366, - 0.2394908219575882, - 0.21950751543045044, - 0.19727176427841187, - 0.17301173508167267, - 0.14697638154029846, - 0.11943284422159195, - 0.09066376090049744, - 0.06096434220671654, - 0.030639346688985825, - -1.3238236284962568e-8, - 4.427895827774364e-9, - -0.010248192586004734, - -0.020391229540109634, - -0.030325012281537056, - -0.03994763270020485, - -0.04916033521294594, - -0.057868584990501404, - -0.06598301976919174, - -0.07342038303613663, - -0.08010435849428177, - -0.08596634864807129, - -0.09094621241092682, - -0.09499283879995346, - -0.09806471318006516, - -0.10013031214475632, - -0.1011684313416481, - -0.1011684313416481, - -0.10013031214475632, - -0.09806471318006516, - -0.09499283879995346, - -0.09094621241092682, - -0.08596634864807129, - -0.08010435849428177, - -0.07342038303613663, - -0.06598301976919174, - -0.05786857753992081, - -0.04916033521294594, - -0.03994763270020485, - -0.030325012281537056, - -0.02039121836423874, - -0.010248180478811264, - 4.427895827774364e-9, - 2.191274894869366e-8, - -0.050716206431388855, - -0.10091201961040497, - -0.15007227659225464, - -0.1976926475763321, - -0.2432844340801239, - -0.28637975454330444, - -0.3265364468097687, - -0.36334243416786194, - -0.39642003178596497, - -0.4254298508167267, - -0.450074166059494, - -0.4701001048088074, - -0.4853021800518036, - -0.49552440643310547, - -0.5006618499755859, - -0.5006618499755859, - -0.49552440643310547, - -0.4853021800518036, - -0.4701001048088074, - -0.450074166059494, - -0.4254298508167267, - -0.39642003178596497, - -0.36334243416786194, - -0.3265364468097687, - -0.28637972474098206, - -0.2432844340801239, - -0.1976926475763321, - -0.15007227659225464, - -0.10091196000576019, - -0.05071614682674408, - 2.191274894869366e-8, - 3.850048457820776e-8, - -0.08910787105560303, - -0.17730140686035156, - -0.2636754810810089, - -0.3473440110683441, - -0.4274483025074005, - -0.5031663775444031, - -0.5737212896347046, - -0.6383890509605408, - -0.6965060830116272, - -0.7474759817123413, - -0.7907758355140686, - -0.825961172580719, - -0.8526710867881775, - -0.8706314563751221, - -0.8796578645706177, - -0.8796578645706177, - -0.8706314563751221, - -0.8526710867881775, - -0.825961172580719, - -0.7907758355140686, - -0.7474759817123413, - -0.6965060830116272, - -0.6383890509605408, - -0.5737212896347046, - -0.5031663179397583, - -0.4274483025074005, - -0.3473440110683441, - -0.2636754810810089, - -0.1773013025522232, - -0.08910775929689407, - 3.850048457820776e-8, - 5.3512014375201034e-8, - -0.1238514706492424, - -0.2464321106672287, - -0.3664838969707489, - -0.48277518153190613, - -0.5941125154495239, - -0.6993534564971924, - -0.7974180579185486, - -0.8873001337051392, - -0.9680772423744202, - -1.0389206409454346, - -1.0991032123565674, - -1.1480075120925903, - -1.1851317882537842, - -1.210094928741455, - -1.222640872001648, - -1.222640872001648, - -1.210094928741455, - -1.1851317882537842, - -1.1480075120925903, - -1.0991032123565674, - -1.0389206409454346, - -0.9680772423744202, - -0.8873001337051392, - -0.7974180579185486, - -0.6993533968925476, - -0.5941125154495239, - -0.48277518153190613, - -0.3664838969707489, - -0.24643197655677795, - -0.12385132163763046, - 5.3512014375201034e-8, - 6.633274551859358e-8, - -0.15352456271648407, - -0.30547383427619934, - -0.4542883336544037, - -0.5984413623809814, - -0.736453652381897, - -0.866908848285675, - -0.98846834897995, - -1.0998848676681519, - -1.2000150680541992, - -1.2878315448760986, - -1.3624330759048462, - -1.4230542182922363, - -1.469072937965393, - -1.5000169277191162, - -1.5155686140060425, - -1.5155686140060425, - -1.5000169277191162, - -1.469072937965393, - -1.4230542182922363, - -1.3624330759048462, - -1.2878315448760986, - -1.2000150680541992, - -1.0998848676681519, - -0.98846834897995, - -0.8669087290763855, - -0.736453652381897, - -0.5984413623809814, - -0.4542883336544037, - -0.305473655462265, - -0.15352438390254974, - 6.633274551859358e-8, - 7.64378214057615e-8, - -0.1769123524427414, - -0.35200944542884827, - -0.5234941840171814, - -0.6896074414253235, - -0.8486443161964417, - -0.9989729523658752, - -1.1390507221221924, - -1.2674404382705688, - -1.3828243017196655, - -1.4840186834335327, - -1.5699849128723145, - -1.6398409605026245, - -1.6928701400756836, - -1.7285281419754028, - -1.7464489936828613, - -1.7464489936828613, - -1.7285281419754028, - -1.6928701400756836, - -1.6398409605026245, - -1.5699849128723145, - -1.4840186834335327, - -1.3828243017196655, - -1.2674404382705688, - -1.1390507221221924, - -0.9989728927612305, - -0.8486443161964417, - -0.6896074414253235, - -0.5234941840171814, - -0.35200923681259155, - -0.17691214382648468, - 7.64378214057615e-8, - 8.341351076524006e-8, - -0.1930573284626007, - -0.3841336965560913, - -0.5712681412696838, - -0.7525407671928406, - -0.9260913729667664, - -1.0901389122009277, - -1.2430001497268677, - -1.3831065893173218, - -1.509020447731018, - -1.6194497346878052, - -1.713261365890503, - -1.7894923686981201, - -1.8473609685897827, - -1.8862731456756592, - -1.9058294296264648, - -1.9058294296264648, - -1.8862731456756592, - -1.8473609685897827, - -1.7894923686981201, - -1.713261365890503, - -1.6194497346878052, - -1.509020447731018, - -1.3831065893173218, - -1.2430001497268677, - -1.0901387929916382, - -0.9260913729667664, - -0.7525407671928406, - -0.5712681412696838, - -0.3841334879398346, - -0.1930570900440216, - 8.341351076524006e-8, - 8.697423936609994e-8, - -0.20129849016666412, - -0.40053147077560425, - -0.5956542491912842, - -0.7846649885177612, - -0.9656240344047546, - -1.136674404144287, - -1.2960609197616577, - -1.442148208618164, - -1.5734370946884155, - -1.6885802745819092, - -1.7863965034484863, - -1.8658816814422607, - -1.9262205362319946, - -1.9667937755584717, - -1.987184762954712, - -1.987184762954712, - -1.9667937755584717, - -1.9262205362319946, - -1.8658816814422607, - -1.7863965034484863, - -1.6885802745819092, - -1.5734370946884155, - -1.442148208618164, - -1.2960609197616577, - -1.1366742849349976, - -0.9656240344047546, - -0.7846649885177612, - -0.5956542491912842, - -0.40053126215934753, - -0.20129825174808502, - 8.697423936609994e-8, - 8.697423936609994e-8, - -0.20129847526550293, - -0.40053147077560425, - -0.5956541895866394, - -0.7846649289131165, - -0.9656239748001099, - -1.136674404144287, - -1.2960609197616577, - -1.442148208618164, - -1.573436975479126, - -1.6885802745819092, - -1.7863963842391968, - -1.8658815622329712, - -1.926220417022705, - -1.9667936563491821, - -1.9871846437454224, - -1.9871846437454224, - -1.9667936563491821, - -1.926220417022705, - -1.8658815622329712, - -1.7863963842391968, - -1.6885802745819092, - -1.573436975479126, - -1.442148208618164, - -1.2960609197616577, - -1.1366742849349976, - -0.9656239748001099, - -0.7846649289131165, - -0.5956541895866394, - -0.40053123235702515, - -0.20129823684692383, - 8.697423936609994e-8, - 8.34135036598127e-8, - -0.19305729866027832, - -0.3841336667537689, - -0.5712680816650391, - -0.7525407075881958, - -0.9260912537574768, - -1.0901387929916382, - -1.2430000305175781, - -1.3831064701080322, - -1.5090203285217285, - -1.6194496154785156, - -1.7132611274719238, - -1.7894922494888306, - -1.8473607301712036, - -1.88627290725708, - -1.9058291912078857, - -1.9058291912078857, - -1.88627290725708, - -1.8473607301712036, - -1.7894922494888306, - -1.7132611274719238, - -1.6194496154785156, - -1.5090203285217285, - -1.3831064701080322, - -1.2430000305175781, - -1.0901386737823486, - -0.9260912537574768, - -0.7525407075881958, - -0.5712680816650391, - -0.3841334283351898, - -0.1930570751428604, - 8.34135036598127e-8, - 7.643780008947942e-8, - -0.1769123077392578, - -0.3520093262195587, - -0.5234940648078918, - -0.6896072030067444, - -0.8486440777778625, - -0.9989727139472961, - -1.1390503644943237, - -1.2674400806427002, - -1.3828239440917969, - -1.4840182065963745, - -1.5699845552444458, - -1.6398406028747559, - -1.6928696632385254, - -1.7285276651382446, - -1.7464485168457031, - -1.7464485168457031, - -1.7285276651382446, - -1.6928696632385254, - -1.6398406028747559, - -1.5699845552444458, - -1.4840182065963745, - -1.3828239440917969, - -1.2674400806427002, - -1.1390503644943237, - -0.9989725947380066, - -0.8486440777778625, - -0.6896072030067444, - -0.5234940648078918, - -0.352009117603302, - -0.1769120991230011, - 7.643780008947942e-8, - 6.633274551859358e-8, - -0.15352454781532288, - -0.30547380447387695, - -0.4542883038520813, - -0.5984413623809814, - -0.7364535927772522, - -0.8669087886810303, - -0.9884682297706604, - -1.0998848676681519, - -1.2000149488449097, - -1.287831425666809, - -1.3624329566955566, - -1.4230540990829468, - -1.4690728187561035, - -1.5000168085098267, - -1.515568494796753, - -1.515568494796753, - -1.5000168085098267, - -1.4690728187561035, - -1.4230540990829468, - -1.3624329566955566, - -1.287831425666809, - -1.2000149488449097, - -1.0998848676681519, - -0.9884682297706604, - -0.8669086694717407, - -0.7364535927772522, - -0.5984413623809814, - -0.4542883038520813, - -0.3054736256599426, - -0.15352436900138855, - 6.633274551859358e-8, - 5.351199661163264e-8, - -0.12385143339633942, - -0.24643205106258392, - -0.36648377776145935, - -0.4827750325202942, - -0.5941123962402344, - -0.6993532776832581, - -0.7974178194999695, - -0.8872998952865601, - -0.9680769443511963, - -1.038920283317566, - -1.0991029739379883, - -1.1480072736740112, - -1.1851314306259155, - -1.2100945711135864, - -1.2226405143737793, - -1.2226405143737793, - -1.2100945711135864, - -1.1851314306259155, - -1.1480072736740112, - -1.0991029739379883, - -1.038920283317566, - -0.9680769443511963, - -0.8872998952865601, - -0.7974178194999695, - -0.6993532180786133, - -0.5941123962402344, - -0.4827750325202942, - -0.36648377776145935, - -0.24643190205097198, - -0.12385128438472748, - 5.351199661163264e-8, - 3.8500470367353046e-8, - -0.08910784125328064, - -0.1773013472557068, - -0.26367539167404175, - -0.34734389185905457, - -0.42744818329811096, - -0.5031661987304688, - -0.5737210512161255, - -0.6383888721466064, - -0.6965058445930481, - -0.7474757432937622, - -0.7907755374908447, - -0.8259608745574951, - -0.8526707887649536, - -0.8706311583518982, - -0.8796575665473938, - -0.8796575665473938, - -0.8706311583518982, - -0.8526707887649536, - -0.8259608745574951, - -0.7907755374908447, - -0.7474757432937622, - -0.6965058445930481, - -0.6383888721466064, - -0.5737210512161255, - -0.5031661987304688, - -0.42744818329811096, - -0.34734389185905457, - -0.26367539167404175, - -0.17730124294757843, - -0.08910772949457169, - 3.8500470367353046e-8, - 2.191272407969791e-8, - -0.05071614682674408, - -0.10091190040111542, - -0.1500720977783203, - -0.197692409157753, - -0.24328413605690002, - -0.2863794267177582, - -0.32653605937957764, - -0.3633420169353485, - -0.39641958475112915, - -0.4254293441772461, - -0.45007362961769104, - -0.470099538564682, - -0.48530158400535583, - -0.4955238103866577, - -0.5006612539291382, - -0.5006612539291382, - -0.4955238103866577, - -0.48530158400535583, - -0.470099538564682, - -0.45007362961769104, - -0.4254293441772461, - -0.39641958475112915, - -0.3633420169353485, - -0.32653605937957764, - -0.2863793969154358, - -0.24328413605690002, - -0.197692409157753, - -0.1500720977783203, - -0.10091184079647064, - -0.050716087222099304, - 2.191272407969791e-8, - 4.427870070600193e-9, - -0.010248132981359959, - -0.020391112193465233, - -0.030324837192893028, - -0.039947401732206345, - -0.04916004836559296, - -0.057868245989084244, - -0.0659826323390007, - -0.0734199583530426, - -0.08010388910770416, - -0.0859658494591713, - -0.09094568341970444, - -0.09499228745698929, - -0.09806414693593979, - -0.10012973099946976, - -0.10116784274578094, - -0.10116784274578094, - -0.10012973099946976, - -0.09806414693593979, - -0.09499228745698929, - -0.09094568341970444, - -0.0859658494591713, - -0.08010388910770416, - -0.0734199583530426, - -0.0659826323390007, - -0.057868242263793945, - -0.04916004836559296, - -0.039947401732206345, - -0.030324837192893028, - -0.020391099154949188, - -0.010248120874166489, - 4.427870070600193e-9, - -1.323826115395832e-8, - 0.030639439821243286, - 0.060964491218328476, - 0.09066393226385117, - 0.11943306773900986, - 0.14697666466236115, - 0.17301206290721893, - 0.19727212190628052, - 0.21950793266296387, - 0.239491268992424, - 0.2570171058177948, - 0.2719056010246277, - 0.28400397300720215, - 0.29318806529045105, - 0.2993636727333069, - 0.302467405796051, - 0.302467405796051, - 0.2993636727333069, - 0.29318806529045105, - 0.28400397300720215, - 0.2719056010246277, - 0.2570171058177948, - 0.239491268992424, - 0.21950793266296387, - 0.19727212190628052, - 0.17301204800605774, - 0.14697666466236115, - 0.11943306773900986, - 0.09066393226385117, - 0.06096445769071579, - 0.03063940443098545, - -1.323826115395832e-8, - -3.036241835729925e-8, - 0.07027263194322586, - 0.13982419669628143, - 0.20794090628623962, - 0.27392393350601196, - 0.33709612488746643, - 0.39680925011634827, - 0.45245054364204407, - 0.5034491419792175, - 0.5492815971374512, - 0.5894777774810791, - 0.6236250400543213, - 0.6513730883598328, - 0.6724371314048767, - 0.6866011023521423, - 0.6937195658683777, - 0.6937195658683777, - 0.6866011023521423, - 0.6724371314048767, - 0.6513730883598328, - 0.6236250400543213, - 0.5894777774810791, - 0.5492815971374512, - 0.5034491419792175, - 0.45245054364204407, - 0.3968092203140259, - 0.33709612488746643, - 0.27392393350601196, - 0.20794090628623962, - 0.13982412219047546, - 0.0702725499868393, - -3.036241835729925e-8, - -4.6243531670597804e-8, - 0.10702884942293167, - 0.21295949816703796, - 0.31670475006103516, - 0.41720032691955566, - 0.5134148597717285, - 0.6043609976768494, - 0.6891055703163147, - 0.7667790651321411, - 0.8365843296051025, - 0.8978050947189331, - 0.949813187122345, - 0.9920748472213745, - 1.0241565704345703, - 1.0457290410995483, - 1.0565707683563232, - 1.0565707683563232, - 1.0457290410995483, - 1.0241565704345703, - 0.9920748472213745, - 0.949813187122345, - 0.8978050947189331, - 0.8365843296051025, - 0.7667790651321411, - 0.6891055703163147, - 0.6043609380722046, - 0.5134148597717285, - 0.41720032691955566, - 0.31670475006103516, - 0.21295936405658722, - 0.10702872276306152, - -4.6243531670597804e-8, - -6.023142873345932e-8, - 0.1394032984972, - 0.2773761749267578, - 0.412502646446228, - 0.5433964729309082, - 0.6687142848968506, - 0.7871701121330261, - 0.897548496723175, - 0.9987169504165649, - 1.0896371603012085, - 1.1693761348724365, - 1.2371158599853516, - 1.292160987854004, - 1.3339468240737915, - 1.3620445728302002, - 1.3761658668518066, - 1.3761658668518066, - 1.3620445728302002, - 1.3339468240737915, - 1.292160987854004, - 1.2371158599853516, - 1.1693761348724365, - 1.0896371603012085, - 0.9987169504165649, - 0.897548496723175, - 0.7871700525283813, - 0.6687142848968506, - 0.5433964729309082, - 0.412502646446228, - 0.2773760259151459, - 0.13940313458442688, - -6.023142873345932e-8, - -7.17534405225706e-8, - 0.16607055068016052, - 0.3304370641708374, - 0.4914126396179199, - 0.6473458409309387, - 0.7966364622116089, - 0.9377524256706238, - 1.06924569606781, - 1.1897672414779663, - 1.2980799674987793, - 1.3930728435516357, - 1.4737707376480103, - 1.5393458604812622, - 1.589125156402588, - 1.6225979328155518, - 1.639420509338379, - 1.639420509338379, - 1.6225979328155518, - 1.589125156402588, - 1.5393458604812622, - 1.4737707376480103, - 1.3930728435516357, - 1.2980799674987793, - 1.1897672414779663, - 1.06924569606781, - 0.9377523064613342, - 0.7966364622116089, - 0.6473458409309387, - 0.4914126396179199, - 0.3304368555545807, - 0.166070356965065, - -7.17534405225706e-8, - -8.033786258465625e-8, - 0.18593885004520416, - 0.36996981501579285, - 0.5502041578292847, - 0.7247928380966187, - 0.8919442296028137, - 1.049942970275879, - 1.1971678733825684, - 1.3321082592010498, - 1.4533793926239014, - 1.5597368478775024, - 1.6500893831253052, - 1.723509669303894, - 1.7792444229125977, - 1.816721796989441, - 1.835556983947754, - 1.835556983947754, - 1.816721796989441, - 1.7792444229125977, - 1.723509669303894, - 1.6500893831253052, - 1.5597368478775024, - 1.4533793926239014, - 1.3321082592010498, - 1.1971678733825684, - 1.0499428510665894, - 0.8919442296028137, - 0.7247928380966187, - 0.5502041578292847, - 0.36996957659721375, - 0.18593862652778625, - -8.033786258465625e-8, - -8.56332320608999e-8, - 0.19819478690624237, - 0.3943559229373932, - 0.5864701867103577, - 0.7725667357444763, - 0.9507356286048889, - 1.1191487312316895, - 1.2760777473449707, - 1.419912576675415, - 1.5491771697998047, - 1.662545084953308, - 1.7588530778884888, - 1.8371127843856812, - 1.8965212106704712, - 1.9364688396453857, - 1.9565455913543701, - 1.9565455913543701, - 1.9364688396453857, - 1.8965212106704712, - 1.8371127843856812, - 1.7588530778884888, - 1.662545084953308, - 1.5491771697998047, - 1.419912576675415, - 1.2760777473449707, - 1.1191486120224, - 0.9507356286048889, - 0.7725667357444763, - 0.5864701867103577, - 0.3943556845188141, - 0.19819454848766327, - -8.56332320608999e-8, - -8.742277657347586e-8, - 0.2023366093635559, - 0.4025970697402954, - 0.5987260937690735, - 0.7887116074562073, - 0.970603883266449, - 1.1425364017486572, - 1.3027448654174805, - 1.4495855569839478, - 1.581551432609558, - 1.6972885131835938, - 1.7956091165542603, - 1.8755042552947998, - 1.9361542463302612, - 1.9769366979599, - 1.9974329471588135, - 1.9974329471588135, - 1.9769366979599, - 1.9361542463302612, - 1.8755042552947998, - 1.7956091165542603, - 1.6972885131835938, - 1.581551432609558, - 1.4495855569839478, - 1.3027448654174805, - 1.1425362825393677, - 0.970603883266449, - 0.7887116074562073, - 0.5987260937690735, - 0.4025968313217163, - 0.2023363709449768, - -8.742277657347586e-8 - ], - "z": [ - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2 - ] - } - ], - "layout": { - "hovermode": false, - "margin": { - "b": 10, - "l": 0, - "r": 0, - "t": 10 - }, - "paper_bgcolor": "rgba(0,0,0,0)", - "scene": { - "aspectmode": "data", - "camera": { - "up": { - "x": 0, - "y": 1, - "z": 0 - } - }, - "xaxis": { - "showspikes": false - }, - "yaxis": { - "showspikes": false - }, - "zaxis": { - "showspikes": false - } - }, - "showlegend": false, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - } - } - }, - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# COLLAPSED\n", - "import nerfstudio\n", - "from nerfstudio.utils import plotly as vis\n", - "import torch\n", - "import plotly.graph_objects as go\n", - "\n", - "num_rays = 4\n", - "num_samples = 15\n", - "pixel_area = 0.12\n", - "far = 5\n", - "\n", - "origins = torch.rand((num_rays, 1, 3)) * 1 - 0.5\n", - "directions = torch.randn((num_rays, 1, 3))\n", - "bins = torch.linspace(0.1, far, num_samples + 1)[None, ..., None]\n", - "pixel_area = torch.tensor([pixel_area])[None, None, ...]\n", - "\n", - "directions = directions / directions.norm(dim=-1, keepdim=True)\n", - "\n", - "frustums = nerfstudio.cameras.rays.Frustums(\n", - " origins=origins, directions=directions, starts=bins[:, :-1, :], ends=bins[:, 1:, :], pixel_area=pixel_area\n", - ")\n", - "\n", - "data = []\n", - "for i, frustum in enumerate(frustums):\n", - " data += vis.get_gaussian_ellipsoids_list(frustum.get_gaussian_blob(), color=vis.get_random_color(idx=i))\n", - "data.append(vis.get_sphere(radius=1.0, color=\"#111111\", opacity=0.05))\n", - "data.append(vis.get_sphere(radius=2.0, color=\"#111111\", opacity=0.05))\n", - "\n", - "fig = go.Figure(data=data, layout=webdocs_layout)\n", - "fig.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "tags": [] - }, - "source": [ - "### After Contraction\n", - "\n", - "Using a $L_2$ norm" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": { - "tags": [ - "hide-input" - ] - }, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "marker": { - "color": "black", - "size": 2 - }, - "mode": "markers", - "name": "Means", - "type": "scatter3d", - "x": [ - -0.18384791910648346, - -0.40699541568756104, - -0.6454167366027832, - -0.8779518008232117, - -1.0302002429962158, - -1.1260967254638672, - -1.1910892724990845, - -1.2376961708068848, - -1.272605061531067, - -1.2996591329574585, - -1.321205496788025, - -1.3387508392333984, - -1.3533034324645996, - -1.3655617237091064, - -1.3760242462158203 - ], - "y": [ - 0.21343474090099335, - 0.35488447546958923, - 0.5060160160064697, - 0.652344822883606, - 0.7412369847297668, - 0.7930960059165955, - 0.8261945843696594, - 0.8488022089004517, - 0.8650645017623901, - 0.8772437572479248, - 0.8866627812385559, - 0.8941397070884705, - 0.9002040028572083, - 0.9052121639251709, - 0.9094117283821106 - ], - "z": [ - -0.2624335289001465, - -0.12852880358695984, - 0.01454135775566101, - 0.15820150077342987, - 0.27885910868644714, - 0.3707502484321594, - 0.4409075975418091, - 0.49555715918540955, - 0.5390712022781372, - 0.5744247436523438, - 0.6036604046821594, - 0.628210186958313, - 0.6491003632545471, - 0.6670824289321899, - 0.6827179789543152 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.1918720006942749, - -0.17236486077308655, - -0.15317094326019287, - -0.1348138153553009, - -0.1177942156791687, - -0.10257638990879059, - -0.08957543969154358, - -0.07914598286151886, - -0.07157253473997116, - -0.06706167012453079, - -0.06573642045259476, - -0.06763295084238052, - -0.07269951701164246, - -0.08079793304204941, - -0.0917072594165802, - -0.10512996464967728, - -0.12069988995790482, - -0.13799232244491577, - -0.1565355807542801, - -0.1758238524198532, - -0.1918720006942749, - -0.17117249965667725, - -0.15081876516342163, - -0.13136596977710724, - -0.11334474384784698, - -0.0972466692328453, - -0.0835108533501625, - -0.0725119560956955, - -0.064550019800663, - -0.05984222888946533, - -0.0585169792175293, - -0.06061043590307236, - -0.06606549024581909, - -0.07473333179950714, - -0.08637753874063492, - -0.10068050026893616, - -0.11725204437971115, - -0.13564014434814453, - -0.15534323453903198, - -0.1758238524198532, - -0.1918720006942749, - -0.1722114086151123, - -0.15286822617053986, - -0.1343700885772705, - -0.11722157150506973, - -0.1018904522061348, - -0.08879492431879044, - -0.07829218357801437, - -0.07066872715950012, - -0.06613252311944962, - -0.06480727344751358, - -0.06672914326190948, - -0.07184571772813797, - -0.08001741021871567, - -0.091021329164505, - -0.10455732047557831, - -0.12025615572929382, - -0.13768960535526276, - -0.15638212859630585, - -0.1758238524198532, - -0.1918720006942749, - -0.17536896467208862, - -0.15909722447395325, - -0.14350061118602753, - -0.129004567861557, - -0.11600451916456223, - -0.10485505312681198, - -0.09586029499769211, - -0.0892656221985817, - -0.08525092154741287, - -0.08392567187547684, - -0.08532603830099106, - -0.0894138291478157, - -0.09607753902673721, - -0.10513539612293243, - -0.11634032428264618, - -0.12938669323921204, - -0.14391860365867615, - -0.15953969955444336, - -0.1758238524198532, - -0.1918720006942749, - -0.18030303716659546, - -0.1688307821750641, - -0.1577681452035904, - -0.147416889667511, - -0.13805939257144928, - -0.1299508810043335, - -0.12331253290176392, - -0.11832544952630997, - -0.1151256412267685, - -0.11380039155483246, - -0.11438586562871933, - -0.11686606705188751, - -0.12117337435483932, - -0.1271902620792389, - -0.13475264608860016, - -0.1436542123556137, - -0.153652161359787, - -0.1644737720489502, - -0.1758238524198532, - -0.1918720006942749, - -0.18647892773151398, - -0.18101409077644348, - -0.17562654614448547, - -0.17046326398849487, - -0.16566509008407593, - -0.161362886428833, - -0.15767401456832886, - -0.15469910204410553, - -0.15251928567886353, - -0.1511940360069275, - -0.1507595181465149, - -0.15122753381729126, - -0.15258537232875824, - -0.15479595959186554, - -0.15779902040958405, - -0.1615126132965088, - -0.16583546996116638, - -0.17064964771270752, - -0.17582383751869202, - -0.1918720006942749, - -0.1932273656129837, - -0.19432690739631653, - -0.19514060020446777, - -0.1956462413072586, - -0.1958300769329071, - -0.19568707048892975, - -0.19522111117839813, - -0.1944449245929718, - -0.19337968528270721, - -0.19205443561077118, - -0.19050534069538116, - -0.18877464532852173, - -0.18690955638885498, - -0.1849609613418579, - -0.18298199772834778, - -0.1810266673564911, - -0.17914828658103943, - -0.17739810049533844, - -0.17582383751869202, - -0.1918720006942749, - -0.19981709122657776, - -0.20732657611370087, - -0.2141956388950348, - -0.2202368974685669, - -0.22528554499149323, - -0.22920389473438263, - -0.23188504576683044, - -0.23325586318969727, - -0.23327897489070892, - -0.2319537252187729, - -0.22931627929210663, - -0.22543857991695404, - -0.22042638063430786, - -0.21441642940044403, - -0.20757263898849487, - -0.2000817060470581, - -0.19214795529842377, - -0.1839878112077713, - -0.17582383751869202, - -0.1918719857931137, - -0.205533966422081, - -0.21860440075397491, - -0.23072676360607147, - -0.2415703982114792, - -0.250839501619339, - -0.25828129053115845, - -0.2636926770210266, - -0.2669261395931244, - -0.2678934335708618, - -0.2665681838989258, - -0.26298657059669495, - -0.2572462260723114, - -0.24950379133224487, - -0.23997041583061218, - -0.22890615463256836, - -0.21661284565925598, - -0.20342577993869781, - -0.18970468640327454, - -0.17582383751869202, - -0.1918719857931137, - -0.20975850522518158, - -0.22693823277950287, - -0.24294257164001465, - -0.25733497738838196, - -0.2697228193283081, - -0.2797682583332062, - -0.28719720244407654, - -0.29180708527565, - -0.2934720814228058, - -0.29214683175086975, - -0.2878674864768982, - -0.28075075149536133, - -0.2709907293319702, - -0.2588537335395813, - -0.24467073380947113, - -0.22882865369319916, - -0.21175961196422577, - -0.19392922520637512, - -0.17582383751869202, - -0.1918719857931137, - -0.21203289926052094, - -0.2314249873161316, - -0.24951928853988647, - -0.26582226157188416, - -0.27988916635513306, - -0.2913363575935364, - -0.29985150694847107, - -0.3052024245262146, - -0.3072430491447449, - -0.30591779947280884, - -0.30126282572746277, - -0.29340505599975586, - -0.2825588583946228, - -0.26902008056640625, - -0.2531580328941345, - -0.23540537059307098, - -0.2162463665008545, - -0.19620361924171448, - -0.17582383751869202, - -0.1918719857931137, - -0.21211068332195282, - -0.23157843947410583, - -0.2497442364692688, - -0.2661125361919403, - -0.2802368998527527, - -0.2917320132255554, - -0.30028432607650757, - -0.30566054582595825, - -0.30771404504776, - -0.306388795375824, - -0.3017209768295288, - -0.29383784532546997, - -0.28295451402664185, - -0.2693677842617035, - -0.2534483075141907, - -0.23563030362129211, - -0.21639981865882874, - -0.19628140330314636, - -0.17582383751869202, - -0.1918719857931137, - -0.2099834382534027, - -0.22738197445869446, - -0.2435930073261261, - -0.2581743597984314, - -0.27072829008102417, - -0.2809123396873474, - -0.2884487211704254, - -0.29313188791275024, - -0.2948340177536011, - -0.29350876808166504, - -0.2891922891139984, - -0.2820022702217102, - -0.27213484048843384, - -0.259859174489975, - -0.24551013112068176, - -0.2294790893793106, - -0.21220335364341736, - -0.19415415823459625, - -0.17582383751869202, - -0.1918719857931137, - -0.20588167011737823, - -0.2192903310060501, - -0.23173220455646515, - -0.24286793172359467, - -0.2523937225341797, - -0.2600497901439667, - -0.26562726497650146, - -0.2689740061759949, - -0.2699987292289734, - -0.26867347955703735, - -0.26503443717956543, - -0.25918081402778625, - -0.2512722909450531, - -0.24152463674545288, - -0.23020368814468384, - -0.21761828660964966, - -0.204111710190773, - -0.19005239009857178, - -0.17582383751869202, - -0.1918719857931137, - -0.20024988055229187, - -0.20818038284778595, - -0.21544715762138367, - -0.22185197472572327, - -0.22722014784812927, - -0.23140522837638855, - -0.23429308831691742, - -0.23580491542816162, - -0.23589950799942017, - -0.23457425832748413, - -0.23186533153057098, - -0.22784662246704102, - -0.22262772917747498, - -0.21635103225708008, - -0.20918773114681244, - -0.20133322477340698, - -0.19300176203250885, - -0.1844206154346466, - -0.17582383751869202, - -0.1918720006942749, - -0.19369837641716003, - -0.1952560544013977, - -0.19650255143642426, - -0.19740387797355652, - -0.19793541729450226, - -0.19808268547058105, - -0.19784167408943176, - -0.19721895456314087, - -0.19623148441314697, - -0.19490624964237213, - -0.19327935576438904, - -0.19139520823955536, - -0.18930518627166748, - -0.18706630170345306, - -0.1847396194934845, - -0.18238863348960876, - -0.1800774335861206, - -0.17786909639835358, - -0.17582383751869202, - -0.1918720006942749, - -0.18693707883358002, - -0.18191789090633392, - -0.1769513487815857, - -0.1721729338169098, - -0.1677129715681076, - -0.1636931300163269, - -0.16022305190563202, - -0.15739741921424866, - -0.155293270945549, - -0.15396803617477417, - -0.15345782041549683, - -0.15377658605575562, - -0.15491563081741333, - -0.15684384107589722, - -0.15950867533683777, - -0.162837415933609, - -0.16673927009105682, - -0.17110779881477356, - -0.17582383751869202, - -0.1918720006942749, - -0.1806986927986145, - -0.16961127519607544, - -0.15891221165657043, - -0.1488933265209198, - -0.1398279070854187, - -0.13196325302124023, - -0.12551385164260864, - -0.12065567076206207, - -0.11752121150493622, - -0.11619596183300018, - -0.11671608686447144, - -0.11906738579273224, - -0.12318573892116547, - -0.1289587914943695, - -0.13622908294200897, - -0.14479827880859375, - -0.15443265438079834, - -0.16486941277980804, - -0.1758238524198532, - -0.1918720006942749, - -0.17565925419330597, - -0.15966986119747162, - -0.14433999359607697, - -0.13008779287338257, - -0.11730203032493591, - -0.1063314750790596, - -0.09747534990310669, - -0.09097525477409363, - -0.08700849115848541, - -0.08568324148654938, - -0.08703567087650299, - -0.09102888405323029, - -0.09755396842956543, - -0.10643290728330612, - -0.11742354184389114, - -0.13022607564926147, - -0.14449124038219452, - -0.1598299741744995, - -0.1758238524198532, - -0.1918720006942749, - -0.17236486077308655, - -0.15317094326019287, - -0.1348138153553009, - -0.1177942156791687, - -0.10257638245820999, - -0.08957543224096298, - -0.07914597541093826, - -0.07157252728939056, - -0.0670616626739502, - -0.06573641300201416, - -0.06763294339179993, - -0.07269950956106186, - -0.08079792559146881, - -0.0917072594165802, - -0.10512995719909668, - -0.12069988995790482, - -0.13799232244491577, - -0.1565355807542801, - -0.1758238524198532 - ], - "y": [ - 0.2506425082683563, - 0.23783914744853973, - 0.2243700921535492, - 0.21060273051261902, - 0.19691263139247894, - 0.1836732178926468, - 0.17124561965465546, - 0.15996882319450378, - 0.15015044808387756, - 0.14205829799175262, - 0.13591310381889343, - 0.13188251852989197, - 0.13007643818855286, - 0.13054418563842773, - 0.1332729458808899, - 0.13818830251693726, - 0.14515621960163116, - 0.15398657321929932, - 0.16443853080272675, - 0.17622697353363037, - 0.2506425082683563, - 0.24082013964653015, - 0.2302507609128952, - 0.21922269463539124, - 0.20803672075271606, - 0.1969980150461197, - 0.1864076554775238, - 0.17655453085899353, - 0.1677073836326599, - 0.1601075828075409, - 0.1539624035358429, - 0.14943945407867432, - 0.1466621458530426, - 0.1457062065601349, - 0.1465977430343628, - 0.14931240677833557, - 0.1537761688232422, - 0.15986725687980652, - 0.16741952300071716, - 0.17622697353363037, - 0.2506425082683563, - 0.244810551404953, - 0.23812273144721985, - 0.23076149821281433, - 0.22292762994766235, - 0.2148348093032837, - 0.2067038118839264, - 0.19875642657279968, - 0.19120940566062927, - 0.18426865339279175, - 0.17812345921993256, - 0.17294147610664368, - 0.16886404156684875, - 0.16600237786769867, - 0.1644345372915268, - 0.16420330107212067, - 0.16531497240066528, - 0.16773922741413116, - 0.17140993475914001, - 0.17622697353363037, - 0.2506425082683563, - 0.24937795102596283, - 0.24713295698165894, - 0.24396875500679016, - 0.23997166752815247, - 0.23525072634220123, - 0.2299346923828125, - 0.2241685837507248, - 0.21810969710350037, - 0.211923286318779, - 0.2057780921459198, - 0.19984176754951477, - 0.19427619874477386, - 0.18923324346542358, - 0.18485045433044434, - 0.18124735355377197, - 0.1785222291946411, - 0.17674943804740906, - 0.17597733438014984, - 0.17622697353363037, - 0.2506425082683563, - 0.254027396440506, - 0.2563050091266632, - 0.25741323828697205, - 0.25732186436653137, - 0.25603336095809937, - 0.2535828649997711, - 0.25003722310066223, - 0.24549318850040436, - 0.24007466435432434, - 0.23392948508262634, - 0.22722524404525757, - 0.2201448529958725, - 0.2128814160823822, - 0.20563307404518127, - 0.19859755039215088, - 0.19196674227714539, - 0.18592151999473572, - 0.180626779794693, - 0.17622697353363037, - 0.2506425082683563, - 0.2582550346851349, - 0.264644980430603, - 0.2696380615234375, - 0.27309805154800415, - 0.27493059635162354, - 0.2750856578350067, - 0.2735590934753418, - 0.27039244771003723, - 0.2656721770763397, - 0.25952696800231934, - 0.25212451815605164, - 0.24366669356822968, - 0.23438423871994019, - 0.22453032433986664, - 0.21437373757362366, - 0.20419155061244965, - 0.19426149129867554, - 0.1848544329404831, - 0.17622697353363037, - 0.2506425082683563, - 0.2616027593612671, - 0.27124911546707153, - 0.2793184518814087, - 0.28559064865112305, - 0.28989461064338684, - 0.29211294651031494, - 0.2921851873397827, - 0.2901092767715454, - 0.2859418988227844, - 0.2797967195510864, - 0.2718413472175598, - 0.2622928023338318, - 0.2514115273952484, - 0.23949435353279114, - 0.22686633467674255, - 0.21387194097042084, - 0.20086561143398285, - 0.1882021576166153, - 0.17622697353363037, - 0.2506425082683563, - 0.2637077867984772, - 0.2754017412662506, - 0.28540539741516113, - 0.293445885181427, - 0.2993038594722748, - 0.30281955003738403, - 0.30389708280563354, - 0.30250704288482666, - 0.29868730902671814, - 0.29254212975502014, - 0.28423911333084106, - 0.2740046977996826, - 0.2621181309223175, - 0.24890360236167908, - 0.23472155630588531, - 0.21995887160301208, - 0.20501822233200073, - 0.19030717015266418, - 0.17622697353363037, - 0.2506425082683563, - 0.26434198021888733, - 0.27665284276008606, - 0.2872392535209656, - 0.2958124876022339, - 0.30213868618011475, - 0.306045264005661, - 0.3074256479740143, - 0.3062422275543213, - 0.3025272488594055, - 0.2963820695877075, - 0.2879742980003357, - 0.27753326296806335, - 0.2653438150882721, - 0.25173842906951904, - 0.2370881885290146, - 0.22179274260997772, - 0.20626932382583618, - 0.19094136357307434, - 0.17622697353363037, - 0.2506425082683563, - 0.2634366452693939, - 0.27486684918403625, - 0.28462135791778564, - 0.29243406653404236, - 0.2980918884277344, - 0.3014404773712158, - 0.3023884892463684, - 0.3009101152420044, - 0.29704558849334717, - 0.29090040922164917, - 0.2826421856880188, - 0.27249613404273987, - 0.2607390284538269, - 0.24769161641597748, - 0.23370975255966187, - 0.2191748321056366, - 0.20448334515094757, - 0.19003602862358093, - 0.17622697353363037, - 0.2506425082683563, - 0.26108986139297485, - 0.2702372968196869, - 0.27783530950546265, - 0.2836766541004181, - 0.2876019775867462, - 0.2895042300224304, - 0.28933149576187134, - 0.2870884835720062, - 0.282836377620697, - 0.276691198348999, - 0.26882052421569824, - 0.2594391107559204, - 0.2488027811050415, - 0.2372017204761505, - 0.2249523550271988, - 0.212388813495636, - 0.1998538076877594, - 0.18768924474716187, - 0.17622697353363037, - 0.2506425082683563, - 0.2575559616088867, - 0.2632659077644348, - 0.2676165699958801, - 0.27048930525779724, - 0.2718057334423065, - 0.2715299725532532, - 0.2696695029735565, - 0.2662751078605652, - 0.26143938302993774, - 0.25529420375823975, - 0.2480071783065796, - 0.23977713286876678, - 0.23082853853702545, - 0.22140547633171082, - 0.21176499128341675, - 0.20217005908489227, - 0.19288238883018494, - 0.18415534496307373, - 0.17622697353363037, - 0.2506425082683563, - 0.253217875957489, - 0.25470808148384094, - 0.2550724446773529, - 0.2543010711669922, - 0.2524149417877197, - 0.24946552515029907, - 0.2455333024263382, - 0.24072550237178802, - 0.2351732850074768, - 0.2290281057357788, - 0.22245757281780243, - 0.21564091742038727, - 0.20876409113407135, - 0.20201466977596283, - 0.1955767422914505, - 0.18962594866752625, - 0.18432459235191345, - 0.17981727421283722, - 0.17622697353363037, - 0.2506425082683563, - 0.24854573607444763, - 0.24549123644828796, - 0.24156230688095093, - 0.23686613142490387, - 0.2315308153629303, - 0.22570188343524933, - 0.21953833103179932, - 0.21320830285549164, - 0.2068844437599182, - 0.20073924958705902, - 0.19494035840034485, - 0.1896459460258484, - 0.1850004494190216, - 0.1811305433511734, - 0.17814181745052338, - 0.17611579596996307, - 0.17510773241519928, - 0.17514513432979584, - 0.17622697353363037, - 0.2506425082683563, - 0.24404582381248474, - 0.2366141527891159, - 0.22855019569396973, - 0.22007392346858978, - 0.2114165723323822, - 0.2028142660856247, - 0.19450163841247559, - 0.18670547008514404, - 0.17963841557502747, - 0.17349322140216827, - 0.16843754053115845, - 0.16460925340652466, - 0.16211281716823578, - 0.1610162854194641, - 0.1613496094942093, - 0.16310368478298187, - 0.16623064875602722, - 0.17064520716667175, - 0.17622697353363037, - 0.2506425082683563, - 0.2402057647705078, - 0.2290387749671936, - 0.21744614839553833, - 0.20574410259723663, - 0.19425183534622192, - 0.18328283727169037, - 0.17313629388809204, - 0.16408899426460266, - 0.15638771653175354, - 0.15024252235889435, - 0.14582104980945587, - 0.1432439088821411, - 0.14258138835430145, - 0.14385156333446503, - 0.14701978862285614, - 0.15199963748455048, - 0.15865527093410492, - 0.16680516302585602, - 0.17622697353363037, - 0.2506425082683563, - 0.23744170367717743, - 0.2235860377550125, - 0.20945347845554352, - 0.1954295039176941, - 0.18189668655395508, - 0.16922412812709808, - 0.15775752067565918, - 0.14780965447425842, - 0.13965186476707458, - 0.1335066854953766, - 0.12954172492027283, - 0.12786513566970825, - 0.12852269411087036, - 0.131496399641037, - 0.1367051899433136, - 0.14400696754455566, - 0.15320253372192383, - 0.16404108703136444, - 0.17622697353363037, - 0.2506425082683563, - 0.23605315387248993, - 0.22084681689739227, - 0.2054383009672165, - 0.19024790823459625, - 0.17568999528884888, - 0.1621616631746292, - 0.1500319242477417, - 0.13963162899017334, - 0.1312445104122162, - 0.1250993311405182, - 0.12136369943618774, - 0.12013953179121017, - 0.1214602142572403, - 0.1252897083759308, - 0.13152357935905457, - 0.13999179005622864, - 0.1504633128643036, - 0.16265255212783813, - 0.17622697353363037, - 0.2506425082683563, - 0.23619060218334198, - 0.22111797332763672, - 0.20583575963974, - 0.19076082110404968, - 0.17630437016487122, - 0.16286075115203857, - 0.15079665184020996, - 0.1404411494731903, - 0.13207674026489258, - 0.1259315460920334, - 0.12217321246862411, - 0.12090425938367844, - 0.12215930223464966, - 0.12590408325195312, - 0.1320365071296692, - 0.14038923382759094, - 0.15073445439338684, - 0.162789985537529, - 0.17622697353363037, - 0.2506425082683563, - 0.23783914744853973, - 0.2243700921535492, - 0.21060273051261902, - 0.19691264629364014, - 0.18367323279380798, - 0.17124563455581665, - 0.15996882319450378, - 0.15015044808387756, - 0.14205831289291382, - 0.13591311872005463, - 0.13188251852989197, - 0.13007643818855286, - 0.13054418563842773, - 0.1332729458808899, - 0.13818831741809845, - 0.14515621960163116, - 0.15398657321929932, - 0.16443853080272675, - 0.17622697353363037 - ], - "z": [ - -0.31510964035987854, - -0.32603126764297485, - -0.33521807193756104, - -0.34241950511932373, - -0.347439169883728, - -0.3501400649547577, - -0.3504485785961151, - -0.3483562469482422, - -0.34392017126083374, - -0.3372613787651062, - -0.3285614550113678, - -0.31805771589279175, - -0.30603674054145813, - -0.2928263545036316, - -0.27878692746162415, - -0.26430144906044006, - -0.24976497888565063, - -0.23557409644126892, - -0.2221158742904663, - -0.20975740253925323, - -0.31510964035987854, - -0.32410725951194763, - -0.3314225673675537, - -0.33685600757598877, - -0.3402594327926636, - -0.34153997898101807, - -0.3406626582145691, - -0.33765149116516113, - -0.3325885534286499, - -0.32561197876930237, - -0.31691205501556396, - -0.3067261278629303, - -0.2953319847583771, - -0.28304046392440796, - -0.2701868414878845, - -0.2571217119693756, - -0.24420148134231567, - -0.2317785769701004, - -0.2201918661594391, - -0.20975740253925323, - -0.31510964035987854, - -0.3211303651332855, - -0.32555001974105835, - -0.32824796438217163, - -0.3291507065296173, - -0.3282335698604584, - -0.3255215883255005, - -0.3210887014865875, - -0.31505587697029114, - -0.3075876235961914, - -0.298887699842453, - -0.28919342160224915, - -0.27876919507980347, - -0.26789936423301697, - -0.25688043236732483, - -0.24601298570632935, - -0.23559343814849854, - -0.22590602934360504, - -0.21721500158309937, - -0.20975740253925323, - -0.3151096701622009, - -0.3174231946468353, - -0.3182367980480194, - -0.3175281882286072, - -0.315316766500473, - -0.31166282296180725, - -0.3066660165786743, - -0.3004626929759979, - -0.29322201013565063, - -0.2851414978504181, - -0.2764415740966797, - -0.26735955476760864, - -0.25814318656921387, - -0.249043807387352, - -0.2403096854686737, - -0.23217904567718506, - -0.22487366199493408, - -0.2185928076505661, - -0.21350783109664917, - -0.20975740253925323, - -0.3151096701622009, - -0.3133874833583832, - -0.3102754056453705, - -0.305858314037323, - -0.30025672912597656, - -0.2936234176158905, - -0.2861393392086029, - -0.2780086100101471, - -0.2694530487060547, - -0.26070600748062134, - -0.25200608372688293, - -0.2435906082391739, - -0.23568910360336304, - -0.22851711511611938, - -0.22227029502391815, - -0.2171190083026886, - -0.2132037878036499, - -0.21063141524791718, - -0.20947209000587463, - -0.20975740253925323, - -0.3151096701622009, - -0.30946052074432373, - -0.30252858996391296, - -0.29450297355651855, - -0.2856025993824005, - -0.276070237159729, - -0.2661658823490143, - -0.2561597526073456, - -0.24632471799850464, - -0.23692910373210907, - -0.22822917997837067, - -0.22046226263046265, - -0.21384021639823914, - -0.20854367315769196, - -0.20471709966659546, - -0.20246487855911255, - -0.20184844732284546, - -0.20288461446762085, - -0.20554512739181519, - -0.20975740253925323, - -0.3151096701622009, - -0.30606788396835327, - -0.29583585262298584, - -0.2846927046775818, - -0.27294236421585083, - -0.2609054148197174, - -0.2489101141691208, - -0.23728370666503906, - -0.2263433188199997, - -0.21638739109039307, - -0.20768746733665466, - -0.2004808783531189, - -0.1949641853570938, - -0.19128790497779846, - -0.18955226242542267, - -0.18980464339256287, - -0.1920381486415863, - -0.19619187712669373, - -0.20215249061584473, - -0.20975740253925323, - -0.3151096701622009, - -0.303577184677124, - -0.2909224331378937, - -0.2774905562400818, - -0.26364797353744507, - -0.24977228045463562, - -0.23624193668365479, - -0.22342602908611298, - -0.21167415380477905, - -0.20130684971809387, - -0.19260694086551666, - -0.18581169843673706, - -0.18110650777816772, - -0.17861971259117126, - -0.17841914296150208, - -0.1805102527141571, - -0.1848360300064087, - -0.19127845764160156, - -0.19966180622577667, - -0.20975740253925323, - -0.3151096701622009, - -0.30225837230682373, - -0.28832077980041504, - -0.2736770510673523, - -0.2587266266345978, - -0.24387730658054352, - -0.22953416407108307, - -0.2160884141921997, - -0.2039068639278412, - -0.19332174956798553, - -0.18462184071540833, - -0.1780444085597992, - -0.17376890778541565, - -0.17191193997859955, - -0.17252415418624878, - -0.17558889091014862, - -0.181022509932518, - -0.18867680430412292, - -0.19834299385547638, - -0.20975740253925323, - -0.3151096701622009, - -0.3022543489933014, - -0.2883128523826599, - -0.2736653983592987, - -0.258711576461792, - -0.24385930597782135, - -0.22951367497444153, - -0.21606600284576416, - -0.2038831263780594, - -0.1932973563671112, - -0.1845974326133728, - -0.1780206859111786, - -0.1737464964389801, - -0.171891450881958, - -0.1725061535835266, - -0.17557385563850403, - -0.18101085722446442, - -0.1886688470840454, - -0.19833895564079285, - -0.20975740253925323, - -0.3151096701622009, - -0.30356553196907043, - -0.29089945554733276, - -0.2774568796157837, - -0.2636045217514038, - -0.24972021579742432, - -0.23618268966674805, - -0.22336122393608093, - -0.21160554885864258, - -0.2012363225221634, - -0.19253641366958618, - -0.18574309349060059, - -0.18104170262813568, - -0.17856046557426453, - -0.17836706340312958, - -0.18046678602695465, - -0.1848023384809494, - -0.19125548005104065, - -0.19965015351772308, - -0.20975740253925323, - -0.3151096701622009, - -0.3060498535633087, - -0.2958003282546997, - -0.2846406400203705, - -0.27287518978118896, - -0.26082491874694824, - -0.2488185316324234, - -0.23718352615833282, - -0.22623726725578308, - -0.2162783443927765, - -0.20757842063903809, - -0.2003748118877411, - -0.19486400485038757, - -0.1911962926387787, - -0.1894717812538147, - -0.1897374391555786, - -0.191986083984375, - -0.1961563527584076, - -0.20213447511196136, - -0.20975740253925323, - -0.3151096701622009, - -0.3094381093978882, - -0.3024843633174896, - -0.2944381833076477, - -0.28551897406578064, - -0.2759700417518616, - -0.26605188846588135, - -0.2560350298881531, - -0.24619269371032715, - -0.2367933839559555, - -0.2280934602022171, - -0.22033025324344635, - -0.21371550858020782, - -0.20842966437339783, - -0.20461690425872803, - -0.2023812234401703, - -0.20178362727165222, - -0.2028403878211975, - -0.20552271604537964, - -0.20975740253925323, - -0.3151096701622009, - -0.31336307525634766, - -0.31022727489471436, - -0.3057878017425537, - -0.30016571283340454, - -0.2935144007205963, - -0.2860153019428253, - -0.2778729200363159, - -0.269309401512146, - -0.2605583369731903, - -0.2518584132194519, - -0.2434469610452652, - -0.23555339872837067, - -0.2283930629491806, - -0.22216126322746277, - -0.21702799201011658, - -0.21313326060771942, - -0.21058329939842224, - -0.2094476968050003, - -0.20975740253925323, - -0.3151096701622009, - -0.3173994719982147, - -0.31818997859954834, - -0.3174595832824707, - -0.3152282238006592, - -0.31155675649642944, - -0.30654534697532654, - -0.30033066868782043, - -0.29308226704597473, - -0.2849978506565094, - -0.276297926902771, - -0.26721981167793274, - -0.2580111622810364, - -0.24892312288284302, - -0.2402036190032959, - -0.23209050297737122, - -0.2248050421476364, - -0.21854600310325623, - -0.21348409354686737, - -0.20975740253925323, - -0.31510964035987854, - -0.3211098909378052, - -0.32550957798957825, - -0.3281887173652649, - -0.3290742337703705, - -0.3281419575214386, - -0.32541733980178833, - -0.3209746778011322, - -0.31493517756462097, - -0.30746355652809143, - -0.298763632774353, - -0.289072722196579, - -0.27865517139434814, - -0.2677951157093048, - -0.25678882002830505, - -0.24593651294708252, - -0.2355341762304306, - -0.22586560249328613, - -0.21719449758529663, - -0.20975740253925323, - -0.31510964035987854, - -0.32409220933914185, - -0.33139291405677795, - -0.3368125557899475, - -0.34020334482192993, - -0.3414727747440338, - -0.34058621525764465, - -0.33756786584854126, - -0.33250004053115845, - -0.32552096247673035, - -0.31682103872299194, - -0.30663758516311646, - -0.2952483296394348, - -0.28296399116516113, - -0.27011963725090027, - -0.25706562399864197, - -0.24415801465511322, - -0.23174892365932465, - -0.2201768457889557, - -0.20975740253925323, - -0.31510964035987854, - -0.32602331042289734, - -0.3352023959159851, - -0.3423965573310852, - -0.34740951657295227, - -0.35010454058647156, - -0.350408136844635, - -0.34831202030181885, - -0.34387338161468506, - -0.3372132480144501, - -0.32851332426071167, - -0.31801092624664307, - -0.3059925138950348, - -0.2927859425544739, - -0.2787514328956604, - -0.2642717957496643, - -0.24974200129508972, - -0.235558420419693, - -0.2221079170703888, - -0.20975740253925323, - -0.31510964035987854, - -0.3266938626766205, - -0.33652523159980774, - -0.34433555603027344, - -0.3499118387699127, - -0.353101909160614, - -0.35381880402565, - -0.35204294323921204, - -0.34782275557518005, - -0.34127336740493774, - -0.33257347345352173, - -0.32196030020713806, - -0.3097234070301056, - -0.2961965799331665, - -0.28174877166748047, - -0.26677411794662476, - -0.25168102979660034, - -0.23688125610351562, - -0.22277848422527313, - -0.20975740253925323, - -0.31510964035987854, - -0.32603126764297485, - -0.33521807193756104, - -0.34241950511932373, - -0.347439169883728, - -0.3501400649547577, - -0.3504485487937927, - -0.3483562469482422, - -0.34392017126083374, - -0.3372613787651062, - -0.3285614550113678, - -0.31805771589279175, - -0.30603674054145813, - -0.2928263545036316, - -0.27878692746162415, - -0.26430144906044006, - -0.24976497888565063, - -0.23557409644126892, - -0.2221158742904663, - -0.20975740253925323 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.3819572329521179, - -0.3598332107067108, - -0.33899563550949097, - -0.3200129270553589, - -0.303402841091156, - -0.2896185517311096, - -0.2790359556674957, - -0.27194374799728394, - -0.26853543519973755, - -0.268903911113739, - -0.27303922176361084, - -0.28082844614982605, - -0.2920592129230499, - -0.3064251244068146, - -0.3235343396663666, - -0.3429201543331146, - -0.36405375599861145, - -0.38635873794555664, - -0.40922659635543823, - -0.43203359842300415, - -0.3819572329521179, - -0.3651365637779236, - -0.34945768117904663, - -0.33534830808639526, - -0.3231932520866394, - -0.31332412362098694, - -0.30601006746292114, - -0.3014506697654724, - -0.2997702360153198, - -0.30101463198661804, - -0.3051499128341675, - -0.3120632767677307, - -0.321566104888916, - -0.3333992660045624, - -0.3472399115562439, - -0.36271053552627563, - -0.3793891668319702, - -0.3968207836151123, - -0.414529949426651, - -0.43203359842300415, - -0.3819572329521179, - -0.3722997009754181, - -0.3635886013507843, - -0.35606151819229126, - -0.3499237596988678, - -0.345342755317688, - -0.3424435257911682, - -0.34130507707595825, - -0.3419584631919861, - -0.34438592195510864, - -0.3485212028026581, - -0.354251503944397, - -0.36142051219940186, - -0.36983269453048706, - -0.37925857305526733, - -0.38944104313850403, - -0.4001023471355438, - -0.41095170378685, - -0.4216931164264679, - -0.43203359842300415, - -0.3819572329521179, - -0.3805463910102844, - -0.37985703349113464, - -0.3799079358577728, - -0.38069769740104675, - -0.3822048008441925, - -0.38438814878463745, - -0.3871881365776062, - -0.3905284106731415, - -0.3943178951740265, - -0.3984531760215759, - -0.40282145142555237, - -0.4073035717010498, - -0.4117773175239563, - -0.41612061858177185, - -0.420214980840683, - -0.4239487946033478, - -0.4272201359272003, - -0.42993980646133423, - -0.43203359842300415, - -0.3819572329521179, - -0.38898298144340515, - -0.3965000808238983, - -0.4043034613132477, - -0.4121802747249603, - -0.41991564631462097, - -0.42729857563972473, - -0.43412771821022034, - -0.4402167499065399, - -0.44539958238601685, - -0.4495348632335663, - -0.4525097608566284, - -0.45424315333366394, - -0.45468777418136597, - -0.45383143424987793, - -0.45169755816459656, - -0.44834432005882263, - -0.443863183259964, - -0.43837636709213257, - -0.43203359842300415, - -0.3819572329521179, - -0.39669522643089294, - -0.41171419620513916, - -0.4266044497489929, - -0.4409598112106323, - -0.45438870787620544, - -0.4665248394012451, - -0.4770371913909912, - -0.48563894629478455, - -0.4920955300331116, - -0.496230810880661, - -0.49793198704719543, - -0.4971526265144348, - -0.49391403794288635, - -0.4883045256137848, - -0.48047709465026855, - -0.47064530849456787, - -0.45907729864120483, - -0.44608861207962036, - -0.43203359842300415, - -0.3819572329521179, - -0.40284737944602966, - -0.4238506853580475, - -0.44439423084259033, - -0.46391761302948, - -0.4818883240222931, - -0.49781614542007446, - -0.5112665891647339, - -0.5218728184700012, - -0.5293455123901367, - -0.5334807634353638, - -0.5341658592224121, - -0.5313820838928223, - -0.5252053141593933, - -0.5158041715621948, - -0.5034348964691162, - -0.4884350895881653, - -0.47121378779411316, - -0.4522407650947571, - -0.43203359842300415, - -0.3819572329521179, - -0.40677276253700256, - -0.4315944015979767, - -0.45574501156806946, - -0.47856587171554565, - -0.4994344711303711, - -0.5177816152572632, - -0.5331067442893982, - -0.5449919104576111, - -0.5531128644943237, - -0.5572481751441956, - -0.557284951210022, - -0.5532221794128418, - -0.545170783996582, - -0.5333502888679504, - -0.5180832147598267, - -0.4997858703136444, - -0.47895747423171997, - -0.45616617798805237, - -0.43203359842300415, - -0.3819572329521179, - -0.40804600715637207, - -0.43410614132881165, - -0.45942676067352295, - -0.48331719636917114, - -0.5051257610321045, - -0.5242576003074646, - -0.5401908159255981, - -0.5524908304214478, - -0.5608221292495728, - -0.5649573802947998, - -0.5647838711738586, - -0.5603063106536865, - -0.5516468286514282, - -0.5390415787696838, - -0.5228345394134521, - -0.5034676194190979, - -0.4814692437648773, - -0.4574394226074219, - -0.43203359842300415, - -0.3819572329521179, - -0.40652912855148315, - -0.4311137795448303, - -0.4550405442714691, - -0.4776567220687866, - -0.4983454942703247, - -0.5165424346923828, - -0.531751275062561, - -0.5435570478439331, - -0.5516377687454224, - -0.5557730197906494, - -0.5558500289916992, - -0.5518667101860046, - -0.5439316034317017, - -0.532261312007904, - -0.5171740651130676, - -0.4990813732147217, - -0.478476881980896, - -0.45592254400253296, - -0.43203359842300415, - -0.3819572329521179, - -0.40238651633262634, - -0.42294153571128845, - -0.44306159019470215, - -0.46219784021377563, - -0.4798283278942108, - -0.49547213315963745, - -0.5087025165557861, - -0.5191586017608643, - -0.5265551209449768, - -0.5306903719902039, - -0.5314515829086304, - -0.5288179516792297, - -0.5228613018989563, - -0.5137441158294678, - -0.5017151832580566, - -0.4871024489402771, - -0.4703046381473541, - -0.45177993178367615, - -0.43203359842300415, - -0.3819572329521179, - -0.3960670828819275, - -0.4104750454425812, - -0.42478805780410767, - -0.4386157691478729, - -0.4515809416770935, - -0.463329941034317, - -0.47354230284690857, - -0.481939435005188, - -0.48829224705696106, - -0.4924275279045105, - -0.4942324459552765, - -0.49365776777267456, - -0.49071913957595825, - -0.48549675941467285, - -0.47813308238983154, - -0.4688289165496826, - -0.45783814787864685, - -0.4454604685306549, - -0.43203359842300415, - -0.3819572329521179, - -0.38825562596321106, - -0.39506518840789795, - -0.40220019221305847, - -0.4094659984111786, - -0.41666439175605774, - -0.4235990643501282, - -0.4300808012485504, - -0.43593287467956543, - -0.44099557399749756, - -0.445130854845047, - -0.44822588562965393, - -0.4501962661743164, - -0.450988233089447, - -0.4505802094936371, - -0.4489832818508148, - -0.4462410509586334, - -0.4424282908439636, - -0.4376490116119385, - -0.43203359842300415, - -0.3819572329521179, - -0.37979865074157715, - -0.3783819079399109, - -0.37774568796157837, - -0.37790730595588684, - -0.3788623511791229, - -0.38058483600616455, - -0.38302773237228394, - -0.3861243724822998, - -0.3897903263568878, - -0.39392560720443726, - -0.3984173834323883, - -0.40314316749572754, - -0.4079740047454834, - -0.41277816891670227, - -0.41742458939552307, - -0.42178651690483093, - -0.42574501037597656, - -0.42919203639030457, - -0.43203359842300415, - -0.3819572329521179, - -0.3716125786304474, - -0.36223310232162476, - -0.3540745973587036, - -0.34735962748527527, - -0.3422713875770569, - -0.33894863724708557, - -0.3374820351600647, - -0.33791157603263855, - -0.34022554755210876, - -0.3443608283996582, - -0.35020458698272705, - -0.3575975000858307, - -0.3663378357887268, - -0.37618720531463623, - -0.3868769109249115, - -0.39811545610427856, - -0.40959617495536804, - -0.4210059642791748, - -0.43203359842300415, - -0.3819572329521179, - -0.3645845353603363, - -0.34836870431900024, - -0.3337520360946655, - -0.3211332857608795, - -0.3108566105365753, - -0.303202360868454, - -0.2983793020248413, - -0.296519011259079, - -0.29767224192619324, - -0.3018075227737427, - -0.3088120222091675, - -0.3184947371482849, - -0.3305915296077728, - -0.3447723984718323, - -0.36065056920051575, - -0.3777928948402405, - -0.3957318067550659, - -0.4139779210090637, - -0.43203359842300415, - -0.3819572329521179, - -0.35947608947753906, - -0.33829113841056824, - -0.31898027658462524, - -0.3020702302455902, - -0.2880222797393799, - -0.27721959352493286, - -0.2699568271636963, - -0.26643216609954834, - -0.26674169301986694, - -0.270876944065094, - -0.27872517704963684, - -0.2900722920894623, - -0.3046087622642517, - -0.32193806767463684, - -0.34158751368522644, - -0.3630211353302002, - -0.3856542408466339, - -0.4088694751262665, - -0.43203359842300415, - -0.3819572329521179, - -0.3568408191204071, - -0.33309251070022583, - -0.31136006116867065, - -0.2922362983226776, - -0.2762428820133209, - -0.26381605863571167, - -0.2552947402000427, - -0.2509114742279053, - -0.250785768032074, - -0.254921019077301, - -0.2632044553756714, - -0.27541017532348633, - -0.29120519757270813, - -0.3101586699485779, - -0.33175361156463623, - -0.3554009199142456, - -0.3804556131362915, - -0.4062342345714569, - -0.43203359842300415, - -0.3819572329521179, - -0.3569643199443817, - -0.33333614468574524, - -0.3117171823978424, - -0.29269716143608093, - -0.2767949104309082, - -0.2644442021846771, - -0.2559818625450134, - -0.25163882970809937, - -0.25153350830078125, - -0.2556688189506531, - -0.26393187046051025, - -0.2760973274707794, - -0.29183337092399597, - -0.31071069836616516, - -0.33221447467803955, - -0.35575804114341736, - -0.3806992471218109, - -0.4063577353954315, - -0.43203359842300415, - -0.3819572329521179, - -0.3598332107067108, - -0.33899563550949097, - -0.3200129270553589, - -0.3034028708934784, - -0.2896185517311096, - -0.2790359854698181, - -0.27194374799728394, - -0.26853543519973755, - -0.2689039409160614, - -0.27303922176361084, - -0.28082847595214844, - -0.2920592129230499, - -0.3064251244068146, - -0.3235343396663666, - -0.3429201543331146, - -0.36405378580093384, - -0.38635873794555664, - -0.40922659635543823, - -0.43203359842300415 - ], - "y": [ - 0.29578542709350586, - 0.28235092759132385, - 0.27089494466781616, - 0.26172998547554016, - 0.25510603189468384, - 0.2512037456035614, - 0.2501296401023865, - 0.2519129514694214, - 0.2565050721168518, - 0.26378071308135986, - 0.2735414505004883, - 0.285521000623703, - 0.29939258098602295, - 0.31477785110473633, - 0.3312571346759796, - 0.3483809232711792, - 0.36568209528923035, - 0.3826887309551239, - 0.3989369571208954, - 0.4139835238456726, - 0.29578542709350586, - 0.2783240079879761, - 0.26295095682144165, - 0.25008559226989746, - 0.240078866481781, - 0.23320376873016357, - 0.22964778542518616, - 0.2295079231262207, - 0.23278802633285522, - 0.23939859867095947, - 0.2491593062877655, - 0.26180392503738403, - 0.27698755264282227, - 0.294295996427536, - 0.3132571578025818, - 0.33335378766059875, - 0.35403770208358765, - 0.3747447431087494, - 0.3949100375175476, - 0.4139835238456726, - 0.29578542709350586, - 0.2762766480445862, - 0.2589120864868164, - 0.24416539072990417, - 0.2324388176202774, - 0.22405225038528442, - 0.21923445165157318, - 0.21811681985855103, - 0.22072985768318176, - 0.22700227797031403, - 0.23676300048828125, - 0.24974577128887177, - 0.2655964493751526, - 0.28388267755508423, - 0.30410560965538025, - 0.32571372389793396, - 0.34811750054359436, - 0.37070587277412415, - 0.3928626775741577, - 0.4139835238456726, - 0.29578542709350586, - 0.27643072605133057, - 0.2592160105705261, - 0.24461089074611664, - 0.23301374912261963, - 0.2247409224510193, - 0.22001807391643524, - 0.2189740091562271, - 0.22163724899291992, - 0.22793513536453247, - 0.2376958429813385, - 0.2506531774997711, - 0.26645365357398987, - 0.2846662998199463, - 0.3047942817211151, - 0.326288640499115, - 0.348563015460968, - 0.37100979685783386, - 0.3930167555809021, - 0.4139835238456726, - 0.29578542709350586, - 0.27876952290534973, - 0.2638297975063324, - 0.251373827457428, - 0.2417413592338562, - 0.23519514501094818, - 0.2319137454032898, - 0.2319866567850113, - 0.2354118973016739, - 0.24209605157375336, - 0.2518567740917206, - 0.2644278109073639, - 0.27946630120277405, - 0.29656195640563965, - 0.3152485191822052, - 0.33501628041267395, - 0.35532596707344055, - 0.3756236135959625, - 0.3953555226325989, - 0.4139835238456726, - 0.29578542709350586, - 0.2830395996570587, - 0.27225351333618164, - 0.2637213468551636, - 0.2576759159564972, - 0.25428205728530884, - 0.25363239645957947, - 0.255744606256485, - 0.26056107878685, - 0.26795047521591187, - 0.2777112126350403, - 0.28957700729370117, - 0.30322423577308655, - 0.3182806074619293, - 0.33433544635772705, - 0.35095080733299255, - 0.36767348647117615, - 0.3840472996234894, - 0.39962562918663025, - 0.4139835238456726, - 0.29578542709350586, - 0.28877824544906616, - 0.2835742235183716, - 0.2803153991699219, - 0.27909061312675476, - 0.27993327379226685, - 0.2828204333782196, - 0.28767329454421997, - 0.2943595349788666, - 0.30269670486450195, - 0.312457412481308, - 0.3233754336833954, - 0.3351529538631439, - 0.34746867418289185, - 0.35998669266700745, - 0.3723655343055725, - 0.38426753878593445, - 0.3953680396080017, - 0.4053642451763153, - 0.4139835238456726, - 0.29578542709350586, - 0.29536354541778564, - 0.2965652644634247, - 0.2993577718734741, - 0.3036648631095886, - 0.30936914682388306, - 0.3163149356842041, - 0.32431280612945557, - 0.3331446051597595, - 0.34256941080093384, - 0.35233011841773987, - 0.36216050386428833, - 0.37179243564605713, - 0.38096317648887634, - 0.38942253589630127, - 0.39693978428840637, - 0.4033098816871643, - 0.4083590507507324, - 0.4119495749473572, - 0.4139835238456726, - 0.29578542709350586, - 0.3020819425582886, - 0.3098187744617462, - 0.3187848627567291, - 0.32873567938804626, - 0.3393997550010681, - 0.35048621892929077, - 0.3616926670074463, - 0.3727133870124817, - 0.3832477629184723, - 0.3930085003376007, - 0.4017292857170105, - 0.40917229652404785, - 0.415134459733963, - 0.41945314407348633, - 0.422010600566864, - 0.4227370023727417, - 0.42161256074905396, - 0.4186679720878601, - 0.4139835238456726, - 0.29578542709350586, - 0.30820533633232117, - 0.32189854979515076, - 0.33649152517318726, - 0.3515862226486206, - 0.36677086353302, - 0.3816313147544861, - 0.3957621455192566, - 0.40877795219421387, - 0.4203236699104309, - 0.4300844073295593, - 0.43779388070106506, - 0.44324177503585815, - 0.44627952575683594, - 0.44682425260543823, - 0.44486111402511597, - 0.44044363498687744, - 0.4336923360824585, - 0.4247913658618927, - 0.4139835238456726, - 0.29578542709350586, - 0.3130702078342438, - 0.33149558305740356, - 0.35055893659591675, - 0.3697402775287628, - 0.3885163962841034, - 0.40637513995170593, - 0.4228293299674988, - 0.43743017315864563, - 0.44977936148643494, - 0.45954006910324097, - 0.4664461016654968, - 0.47030895948410034, - 0.4710233509540558, - 0.468569815158844, - 0.46301519870758057, - 0.45451104640960693, - 0.4432893693447113, - 0.4296562373638153, - 0.4139835238456726, - 0.29578542709350586, - 0.31614935398101807, - 0.33756986260414124, - 0.3594626784324646, - 0.38123059272766113, - 0.4022798538208008, - 0.4220363199710846, - 0.4399610459804535, - 0.45556509494781494, - 0.46842285990715027, - 0.4781835675239563, - 0.48458102345466614, - 0.48744070529937744, - 0.48668456077575684, - 0.4823332726955414, - 0.4745055139064789, - 0.4634147882461548, - 0.449363648891449, - 0.4327353835105896, - 0.4139835238456726, - 0.29578542709350586, - 0.317109078168869, - 0.33946314454078674, - 0.3622378706932068, - 0.38481199741363525, - 0.40656980872154236, - 0.4269177317619324, - 0.4453008472919464, - 0.46121758222579956, - 0.47423383593559265, - 0.4839945435523987, - 0.49023351073265076, - 0.492780476808548, - 0.491566002368927, - 0.48662319779396057, - 0.478086918592453, - 0.466189980506897, - 0.4512569308280945, - 0.43369510769844055, - 0.4139835238456726, - 0.29578542709350586, - 0.31584540009498596, - 0.3369702696800232, - 0.35858380794525146, - 0.3800964057445526, - 0.4009213149547577, - 0.42049044370651245, - 0.4382700026035309, - 0.4537750482559204, - 0.46658259630203247, - 0.4763433039188385, - 0.4827909469604492, - 0.48574966192245483, - 0.4851386547088623, - 0.4809747040271759, - 0.47337132692337036, - 0.46253591775894165, - 0.4487640857696533, - 0.4324314296245575, - 0.4139835238456726, - 0.29578542709350586, - 0.31249529123306274, - 0.33036139607429504, - 0.34889644384384155, - 0.367594838142395, - 0.38594651222229004, - 0.4034508764743805, - 0.4196305274963379, - 0.4340440332889557, - 0.4462983012199402, - 0.4560590088367462, - 0.4630599617958069, - 0.46711015701293945, - 0.46809911727905273, - 0.46599990129470825, - 0.4608697295188904, - 0.45284855365753174, - 0.4421551823616028, - 0.4290813207626343, - 0.4139835238456726, - 0.29578542709350586, - 0.3074217140674591, - 0.3203526735305786, - 0.334225594997406, - 0.34866198897361755, - 0.3632681369781494, - 0.3776456117630005, - 0.3914022147655487, - 0.4041627049446106, - 0.41557902097702026, - 0.4253397583961487, - 0.4331786334514618, - 0.43888184428215027, - 0.44229385256767273, - 0.44332155585289, - 0.4419369101524353, - 0.4381777048110962, - 0.43214648962020874, - 0.42400774359703064, - 0.4139835238456726, - 0.29578542709350586, - 0.301174521446228, - 0.3080286979675293, - 0.31616100668907166, - 0.3253495395183563, - 0.33534374833106995, - 0.3458709418773651, - 0.35664403438568115, - 0.3673691153526306, - 0.3777536451816559, - 0.3875143527984619, - 0.3963850140571594, - 0.4041236639022827, - 0.41051918268203735, - 0.41539713740348816, - 0.4186244606971741, - 0.42011311650276184, - 0.4198225140571594, - 0.41776055097579956, - 0.4139835238456726, - 0.29578542709350586, - 0.2944307029247284, - 0.2947250008583069, - 0.29666027426719666, - 0.3001837730407715, - 0.30519935488700867, - 0.3115702271461487, - 0.3191225826740265, - 0.32765042781829834, - 0.33692118525505066, - 0.3466818928718567, - 0.35666635632514954, - 0.36660221219062805, - 0.3762184679508209, - 0.3852527439594269, - 0.39345869421958923, - 0.40061241388320923, - 0.4065187871456146, - 0.4110167324542999, - 0.4139835238456726, - 0.29578542709350586, - 0.2879210114479065, - 0.281883180141449, - 0.2778366506099701, - 0.2758917808532715, - 0.27610161900520325, - 0.27846044301986694, - 0.28290390968322754, - 0.28931084275245667, - 0.2975064516067505, - 0.3072671592235565, - 0.31832677125930786, - 0.3303835690021515, - 0.3431086838245392, - 0.35615500807762146, - 0.36916667222976685, - 0.38178879022598267, - 0.3936769962310791, - 0.404507040977478, - 0.4139835238456726, - 0.29578542709350586, - 0.28235092759132385, - 0.27089494466781616, - 0.2617299556732178, - 0.25510600209236145, - 0.2512037456035614, - 0.2501296401023865, - 0.2519129514694214, - 0.2565050423145294, - 0.26378071308135986, - 0.2735414206981659, - 0.2855209708213806, - 0.29939258098602295, - 0.31477785110473633, - 0.3312571346759796, - 0.3483808934688568, - 0.36568209528923035, - 0.3826887309551239, - 0.3989369571208954, - 0.4139835238456726 - ], - "z": [ - -0.02437451481819153, - -0.039275988936424255, - -0.0566120445728302, - -0.0759098157286644, - -0.0966428816318512, - -0.11824570596218109, - -0.14012902975082397, - -0.1616959422826767, - -0.18235814571380615, - -0.20155200362205505, - -0.21875399351119995, - -0.23349487781524658, - -0.24537254869937897, - -0.25406304001808167, - -0.25932925939559937, - -0.26102760434150696, - -0.2591117322444916, - -0.25363388657569885, - -0.2447434961795807, - -0.23268309235572815, - -0.02437451481819153, - -0.04028604179620743, - -0.05860458314418793, - -0.07883049547672272, - -0.1004120409488678, - -0.12276052683591843, - -0.1452663689851761, - -0.16731564700603485, - -0.18830692768096924, - -0.20766761898994446, - -0.22486960887908936, - -0.23944365978240967, - -0.2509922385215759, - -0.2592003643512726, - -0.2638440728187561, - -0.26479676365852356, - -0.2620323896408081, - -0.2556264400482178, - -0.24575355648994446, - -0.23268309235572815, - -0.02437451481819153, - -0.039725758135318756, - -0.057499319314956665, - -0.07721038162708282, - -0.09832126647233963, - -0.12025613337755203, - -0.14241667091846466, - -0.1641983687877655, - -0.18500711023807526, - -0.2042752504348755, - -0.22147724032402039, - -0.23614384233951569, - -0.24787497520446777, - -0.25635066628456116, - -0.2613396942615509, - -0.2627059817314148, - -0.2604122757911682, - -0.2545211613178253, - -0.2451932728290558, - -0.23268309235572815, - -0.02437451481819153, - -0.03765587508678436, - -0.05341600626707077, - -0.07122503221035004, - -0.09059713780879974, - -0.11100392043590546, - -0.131888747215271, - -0.15268191695213318, - -0.17281626164913177, - -0.19174253940582275, - -0.20894452929496765, - -0.223952978849411, - -0.23635852336883545, - -0.2458227425813675, - -0.25208747386932373, - -0.2549818754196167, - -0.2544269561767578, - -0.25043785572052, - -0.2431233823299408, - -0.23268309235572815, - -0.024374522268772125, - -0.03430068492889404, - -0.046797141432762146, - -0.06152304261922836, - -0.07807666808366776, - -0.09600649774074554, - -0.11482346057891846, - -0.13401426374912262, - -0.15305544435977936, - -0.17142759263515472, - -0.18862956762313843, - -0.2041921615600586, - -0.2176908552646637, - -0.22875744104385376, - -0.23709005117416382, - -0.2424613982439041, - -0.24472495913505554, - -0.2438189834356308, - -0.23976819217205048, - -0.23268309235572815, - -0.024374522268772125, - -0.03002377599477768, - -0.03835998475551605, - -0.04915577918291092, - -0.062116652727127075, - -0.07688907533884048, - -0.09307010471820831, - -0.110218346118927, - -0.12786604464054108, - -0.14553183317184448, - -0.16273382306098938, - -0.1790027767419815, - -0.19389495253562927, - -0.2070041000843048, - -0.21797263622283936, - -0.22650137543678284, - -0.2323576956987381, - -0.2353818267583847, - -0.23549127578735352, - -0.23268309235572815, - -0.024374522268772125, - -0.025288619101047516, - -0.029018841683864594, - -0.03546343743801117, - -0.044446609914302826, - -0.05572332441806793, - -0.06898598372936249, - -0.08387282490730286, - -0.09997774660587311, - -0.1168614849448204, - -0.1340634673833847, - -0.15111447870731354, - -0.16754941642284393, - -0.18291997909545898, - -0.1968068778514862, - -0.20883134007453918, - -0.21866536140441895, - -0.22604069113731384, - -0.23075613379478455, - -0.23268309235572815, - -0.024374522268772125, - -0.020608343183994293, - -0.01978594809770584, - -0.0219297856092453, - -0.026981353759765625, - -0.0348028764128685, - -0.045180998742580414, - -0.057832635939121246, - -0.07241266965866089, - -0.08852341771125793, - -0.10572540014982224, - -0.12354940176010132, - -0.14150923490524292, - -0.1591149866580963, - -0.17588642239570618, - -0.1913660764694214, - -0.20513170957565308, - -0.2168077826499939, - -0.22607585787773132, - -0.23268309235572815, - -0.024374522268772125, - -0.01649012416601181, - -0.011661849915981293, - -0.010021410882472992, - -0.011613525450229645, - -0.01639479398727417, - -0.02423478662967682, - -0.03491964191198349, - -0.048157915472984314, - -0.06358850002288818, - -0.08079048991203308, - -0.09929464757442474, - -0.11859624087810516, - -0.13816876709461212, - -0.15747834742069244, - -0.175998255610466, - -0.19322332739830017, - -0.20868369936943054, - -0.22195762395858765, - -0.23268309235572815, - -0.024374522268772125, - -0.013380244374275208, - -0.005526907742023468, - -0.0010287612676620483, - -0.000008463859558105469, - -0.0024938732385635376, - -0.008417189121246338, - -0.01761683076620102, - -0.029841862618923187, - -0.04475882649421692, - -0.061960816383361816, - -0.08097859472036362, - -0.10129342973232269, - -0.12235117703676224, - -0.1435774266719818, - -0.16439318656921387, - -0.18423067033290863, - -0.20254874229431152, - -0.21884775161743164, - -0.23268309235572815, - -0.024374522268772125, - -0.01161569356918335, - -0.002045944333076477, - 0.004073664546012878, - 0.006576240062713623, - 0.005393505096435547, - 0.0005577206611633301, - -0.007799223065376282, - -0.01944933831691742, - -0.034074872732162476, - -0.05127686262130737, - -0.07058607041835785, - -0.09147581458091736, - -0.11337627470493317, - -0.13569004833698273, - -0.15780848264694214, - -0.1791282445192337, - -0.19906780123710632, - -0.21708320081233978, - -0.23268309235572815, - -0.024374522268772125, - -0.011387698352336884, - -0.0015961825847625732, - 0.00473293662071228, - 0.007427036762237549, - 0.006412610411643982, - 0.0017173439264297485, - -0.0065307095646858215, - -0.01810654252767563, - -0.03269442170858383, - -0.04989641159772873, - -0.06924327462911606, - -0.0902073085308075, - -0.11221664398908615, - -0.1346709281206131, - -0.1569576859474182, - -0.1784689724445343, - -0.19861802458763123, - -0.2168552130460739, - -0.23268309235572815, - -0.024374522268772125, - -0.012720964848995209, - -0.0042263418436050415, - 0.0008776187896728516, - 0.0024517327547073364, - 0.00045302510261535645, - -0.005063965916633606, - -0.013948746025562286, - -0.02595897763967514, - -0.04076705127954483, - -0.05796904116868973, - -0.07709570974111557, - -0.09762534499168396, - -0.11899794638156891, - -0.14063051342964172, - -0.16193298995494843, - -0.18232429027557373, - -0.2012481838464737, - -0.21818847954273224, - -0.23268309235572815, - -0.024374522268772125, - -0.015471018850803375, - -0.009651422500610352, - -0.007074512541294098, - -0.007810540497303009, - -0.011839449405670166, - -0.01905135065317154, - -0.02924949675798416, - -0.042155735194683075, - -0.05741800367832184, - -0.07461999356746674, - -0.0932924672961235, - -0.11292609572410583, - -0.13298533856868744, - -0.15292300283908844, - -0.17219525575637817, - -0.19027641415596008, - -0.206673264503479, - -0.2209385335445404, - -0.23268309235572815, - -0.024374522268772125, - -0.019339829683303833, - -0.017283521592617035, - -0.018261700868606567, - -0.022247672080993652, - -0.029132716357707977, - -0.03872903436422348, - -0.05077484995126724, - -0.06494159251451492, - -0.08084283024072647, - -0.09804481267929077, - -0.11607831716537476, - -0.13445144891738892, - -0.15266302227973938, - -0.17021626234054565, - -0.18663239479064941, - -0.20146360993385315, - -0.21430537104606628, - -0.22480733692646027, - -0.23268309235572815, - -0.024374522268772125, - -0.023908160626888275, - -0.026295572519302368, - -0.03147166222333908, - -0.039295196533203125, - -0.0495527908205986, - -0.06196465343236923, - -0.0761922150850296, - -0.09184737503528595, - -0.10850310325622559, - -0.12570509314537048, - -0.14298410713672638, - -0.15986880660057068, - -0.17589864134788513, - -0.19063633680343628, - -0.2036799192428589, - -0.21467357873916626, - -0.22331741452217102, - -0.2293756604194641, - -0.23268309235572815, - -0.024374522268772125, - -0.02868098020553589, - -0.03571102023124695, - -0.04527289420366287, - -0.05710577219724655, - -0.07088688015937805, - -0.08624030649662018, - -0.10274726897478104, - -0.11995746940374374, - -0.13740147650241852, - -0.15460345149040222, - -0.17109419405460358, - -0.1864238679409027, - -0.20017430186271667, - -0.21197043359279633, - -0.2214905023574829, - -0.22847481071949005, - -0.2327328622341156, - -0.23414848744869232, - -0.23268309235572815, - -0.024374522268772125, - -0.03314105421304703, - -0.044509515166282654, - -0.05816981941461563, - -0.07374931871891022, - -0.09082305431365967, - -0.10892532020807266, - -0.12756231427192688, - -0.1462256759405136, - -0.16440629959106445, - -0.18160828948020935, - -0.19736239314079285, - -0.21123892068862915, - -0.22285930812358856, - -0.23190662264823914, - -0.23813405632972717, - -0.24137172102928162, - -0.2415313571691513, - -0.23860856890678406, - -0.23268309235572815, - -0.02437451481819153, - -0.03680507838726044, - -0.051737621426582336, - -0.0687648355960846, - -0.08742225170135498, - -0.10720094293355942, - -0.12756140530109406, - -0.1479482650756836, - -0.16780540347099304, - -0.18659117817878723, - -0.20379316806793213, - -0.21894213557243347, - -0.23162487149238586, - -0.24149540066719055, - -0.2482845038175583, - -0.25180697441101074, - -0.2519667446613312, - -0.248759463429451, - -0.24227258563041687, - -0.23268309235572815, - -0.02437451481819153, - -0.03927599638700485, - -0.0566120445728302, - -0.075909823179245, - -0.0966428816318512, - -0.11824571341276169, - -0.14012904465198517, - -0.1616959422826767, - -0.18235814571380615, - -0.20155200362205505, - -0.21875399351119995, - -0.23349487781524658, - -0.24537254869937897, - -0.25406304001808167, - -0.25932925939559937, - -0.26102763414382935, - -0.2591117322444916, - -0.25363388657569885, - -0.2447434961795807, - -0.23268309235572815 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.6454167366027832, - -0.6684134006500244, - -0.6907827854156494, - -0.7119147181510925, - -0.731232762336731, - -0.7482099533081055, - -0.762383222579956, - -0.7733659744262695, - -0.78085857629776, - -0.7846566438674927, - -0.7846566438674927, - -0.78085857629776, - -0.7733659744262695, - -0.762383222579956, - -0.7482099533081055, - -0.731232762336731, - -0.7119147181510925, - -0.6907827854156494, - -0.6684134006500244, - -0.6454167366027832, - -0.6454167366027832, - -0.6607077717781067, - -0.675581693649292, - -0.6896328330039978, - -0.7024778127670288, - -0.71376633644104, - -0.7231904864311218, - -0.7304931879043579, - -0.7354751825332642, - -0.7380006313323975, - -0.7380006313323975, - -0.7354751825332642, - -0.7304931879043579, - -0.7231904864311218, - -0.71376633644104, - -0.7024778127670288, - -0.6896328330039978, - -0.675581693649292, - -0.6607077717781067, - -0.6454167366027832, - -0.6454167366027832, - -0.6513450741767883, - -0.6571117639541626, - -0.6625593900680542, - -0.6675394177436829, - -0.6719160079956055, - -0.6755697727203369, - -0.6784010529518127, - -0.680332601070404, - -0.6813116669654846, - -0.6813116669654846, - -0.680332601070404, - -0.6784010529518127, - -0.6755697727203369, - -0.6719160079956055, - -0.6675394177436829, - -0.6625593900680542, - -0.6571117639541626, - -0.6513450741767883, - -0.6454167366027832, - -0.6454167366027832, - -0.6413400173187256, - -0.6373744606971741, - -0.6336283087730408, - -0.6302037239074707, - -0.6271940469741821, - -0.6246815323829651, - -0.622734546661377, - -0.6214063167572021, - -0.6207329630851746, - -0.6207329630851746, - -0.6214063167572021, - -0.622734546661377, - -0.6246815323829651, - -0.6271940469741821, - -0.6302037239074707, - -0.6336283087730408, - -0.6373744606971741, - -0.6413400173187256, - -0.6454167366027832, - -0.6454167366027832, - -0.6317766904830933, - -0.6185086965560913, - -0.6059746742248535, - -0.5945165157318115, - -0.5844468474388123, - -0.5760402083396912, - -0.5695260167121887, - -0.5650818943977356, - -0.5628291368484497, - -0.5628291368484497, - -0.5650818943977356, - -0.5695260167121887, - -0.5760402083396912, - -0.5844468474388123, - -0.5945165157318115, - -0.6059746742248535, - -0.6185086965560913, - -0.6317766904830933, - -0.6454167366027832, - -0.6454167366027832, - -0.6236914992332458, - -0.6025587916374207, - -0.5825952291488647, - -0.5643451809883118, - -0.5483066439628601, - -0.5349169373512268, - -0.524541437625885, - -0.5174630880355835, - -0.5138749480247498, - -0.5138749480247498, - -0.5174630880355835, - -0.524541437625885, - -0.5349169373512268, - -0.5483065843582153, - -0.5643451809883118, - -0.5825952291488647, - -0.6025587916374207, - -0.6236914992332458, - -0.6454167366027832, - -0.6454167366027832, - -0.617960512638092, - -0.5912532806396484, - -0.5660234093666077, - -0.5429592132568359, - -0.5226898193359375, - -0.5057680606842041, - -0.49265557527542114, - -0.48370999097824097, - -0.4791753590106964, - -0.4791753590106964, - -0.48370999097824097, - -0.49265557527542114, - -0.5057680606842041, - -0.5226898193359375, - -0.5429592132568359, - -0.5660234093666077, - -0.5912532806396484, - -0.617960512638092, - -0.6454167366027832, - -0.6454167366027832, - -0.615204930305481, - -0.5858171582221985, - -0.5580551624298096, - -0.532676100730896, - -0.5103723406791687, - -0.4917522668838501, - -0.4773237109184265, - -0.46748030185699463, - -0.46249058842658997, - -0.46249058842658997, - -0.46748030185699463, - -0.4773237109184265, - -0.4917522668838501, - -0.5103723406791687, - -0.532676100730896, - -0.5580551624298096, - -0.5858171582221985, - -0.615204930305481, - -0.6454167366027832, - -0.6454167366027832, - -0.615723192691803, - -0.5868396162986755, - -0.559553861618042, - -0.5346101522445679, - -0.5126890540122986, - -0.4943884015083313, - -0.4802073836326599, - -0.4705328345298767, - -0.4656286835670471, - -0.4656286835670471, - -0.4705328345298767, - -0.4802073836326599, - -0.4943883717060089, - -0.5126890540122986, - -0.5346101522445679, - -0.559553861618042, - -0.5868396162986755, - -0.615723192691803, - -0.6454167366027832, - -0.6454167366027832, - -0.6194592118263245, - -0.5942097902297974, - -0.570357084274292, - -0.5485518574714661, - -0.5293888449668884, - -0.5133907794952393, - -0.5009940266609192, - -0.4925367534160614, - -0.48824965953826904, - -0.48824965953826904, - -0.4925367534160614, - -0.5009940266609192, - -0.5133907794952393, - -0.5293888449668884, - -0.5485518574714661, - -0.570357084274292, - -0.5942097902297974, - -0.6194592118263245, - -0.6454167366027832, - -0.6454167366027832, - -0.626008152961731, - -0.6071290373802185, - -0.5892942547798157, - -0.572990357875824, - -0.5586621165275574, - -0.5467002391815186, - -0.5374311208724976, - -0.5311075448989868, - -0.5279020667076111, - -0.5279020667076111, - -0.5311075448989868, - -0.5374311208724976, - -0.5467002391815186, - -0.5586620569229126, - -0.572990357875824, - -0.5892942547798157, - -0.6071290373802185, - -0.626008152961731, - -0.6454167366027832, - -0.6454167366027832, - -0.6346603631973267, - -0.6241973638534546, - -0.6143131256103516, - -0.605277419090271, - -0.5973365306854248, - -0.5907071828842163, - -0.5855701565742493, - -0.5820655822753906, - -0.5802890658378601, - -0.5802890658378601, - -0.5820655822753906, - -0.5855701565742493, - -0.5907071828842163, - -0.5973365306854248, - -0.605277419090271, - -0.6143131256103516, - -0.6241973638534546, - -0.6346603631973267, - -0.6454167366027832, - -0.6454167366027832, - -0.6444781422615051, - -0.6435651183128357, - -0.642702579498291, - -0.6419141292572021, - -0.6412211656570435, - -0.6406427025794983, - -0.6401944160461426, - -0.6398886442184448, - -0.639733612537384, - -0.639733612537384, - -0.6398886442184448, - -0.6401944160461426, - -0.6406427025794983, - -0.6412211656570435, - -0.6419141292572021, - -0.642702579498291, - -0.6435651183128357, - -0.6444781422615051, - -0.6454167366027832, - -0.6454167366027832, - -0.6543976068496704, - -0.6631335616111755, - -0.671386182308197, - -0.6789304614067078, - -0.6855605244636536, - -0.6910956501960754, - -0.6953847408294678, - -0.6983107924461365, - -0.6997940540313721, - -0.6997940540313721, - -0.6983107924461365, - -0.6953847408294678, - -0.6910956501960754, - -0.6855605840682983, - -0.6789304614067078, - -0.671386182308197, - -0.6631335616111755, - -0.6543976068496704, - -0.6454167366027832, - -0.6454167366027832, - -0.6633439064025879, - -0.6807820796966553, - -0.697255551815033, - -0.712315022945404, - -0.7255496382713318, - -0.7365984916687012, - -0.7451601028442383, - -0.7510010004043579, - -0.7539618015289307, - -0.7539618015289307, - -0.7510010004043579, - -0.7451601028442383, - -0.7365984916687012, - -0.7255496382713318, - -0.712315022945404, - -0.697255551815033, - -0.6807820796966553, - -0.6633439064025879, - -0.6454167366027832, - -0.6454167366027832, - -0.6703475117683411, - -0.6945981979370117, - -0.7175073623657227, - -0.7384501099586487, - -0.7568551301956177, - -0.7722203731536865, - -0.7841267585754395, - -0.7922495603561401, - -0.7963670492172241, - -0.7963670492172241, - -0.7922495603561401, - -0.7841267585754395, - -0.7722203731536865, - -0.7568551301956177, - -0.7384501099586487, - -0.7175073623657227, - -0.6945981979370117, - -0.6703475117683411, - -0.6454167366027832, - -0.6454167366027832, - -0.6746494770050049, - -0.7030847668647766, - -0.7299470901489258, - -0.754503607749939, - -0.7760845422744751, - -0.7941011786460876, - -0.8080620765686035, - -0.8175864815711975, - -0.8224145174026489, - -0.8224145174026489, - -0.8175864815711975, - -0.8080620765686035, - -0.7941011786460876, - -0.7760845422744751, - -0.754503607749939, - -0.7299470901489258, - -0.7030847668647766, - -0.6746494770050049, - -0.6454167366027832, - -0.6454167366027832, - -0.6757835745811462, - -0.7053221464157104, - -0.7332265973091125, - -0.7587358355522156, - -0.7811540365219116, - -0.7998696565628052, - -0.8143722414970398, - -0.8242661952972412, - -0.8292815089225769, - -0.8292815089225769, - -0.8242661952972412, - -0.8143722414970398, - -0.7998696565628052, - -0.7811540365219116, - -0.7587358951568604, - -0.7332265973091125, - -0.7053221464157104, - -0.6757835745811462, - -0.6454167366027832, - -0.6454167366027832, - -0.6736270189285278, - -0.7010678052902222, - -0.7269905805587769, - -0.7506881952285767, - -0.7715142965316772, - -0.7889007925987244, - -0.8023734092712402, - -0.8115646839141846, - -0.8162238597869873, - -0.8162238597869873, - -0.8115646839141846, - -0.8023734092712402, - -0.7889007925987244, - -0.7715142965316772, - -0.7506881952285767, - -0.7269905805587769, - -0.7010678052902222, - -0.6736270189285278, - -0.6454167366027832, - -0.6454167366027832, - -0.6684134006500244, - -0.6907827854156494, - -0.7119147181510925, - -0.731232762336731, - -0.7482099533081055, - -0.762383222579956, - -0.7733659148216248, - -0.7808585166931152, - -0.7846566438674927, - -0.7846566438674927, - -0.7808585166931152, - -0.7733659148216248, - -0.762383222579956, - -0.7482099533081055, - -0.731232762336731, - -0.7119147181510925, - -0.6907827854156494, - -0.6684134006500244, - -0.6454167366027832 - ], - "y": [ - 0.6323751211166382, - 0.6452291011810303, - 0.6542856693267822, - 0.6592978835105896, - 0.6601289510726929, - 0.6567562222480774, - 0.6492716670036316, - 0.637879490852356, - 0.6228904128074646, - 0.6047133207321167, - 0.5838440656661987, - 0.5608518123626709, - 0.5363637804985046, - 0.511047899723053, - 0.48559483885765076, - 0.46069878339767456, - 0.4370388686656952, - 0.4152604341506958, - 0.3959576487541199, - 0.37965691089630127, - 0.6323751211166382, - 0.6498134732246399, - 0.6633294820785522, - 0.6725543141365051, - 0.6772364377975464, - 0.6772481203079224, - 0.6725890636444092, - 0.663386344909668, - 0.6498908996582031, - 0.632470965385437, - 0.6116016507148743, - 0.5878522396087646, - 0.5618705749511719, - 0.5343652963638306, - 0.5060867667198181, - 0.47780629992485046, - 0.4502952992916107, - 0.42430421710014343, - 0.4005420506000519, - 0.37965691089630127, - 0.6323751211166382, - 0.652321457862854, - 0.6682769060134888, - 0.6798063516616821, - 0.6865952610969543, - 0.6884584426879883, - 0.6853450536727905, - 0.677340030670166, - 0.664661705493927, - 0.6476559638977051, - 0.6267867088317871, - 0.6026231050491333, - 0.5758242607116699, - 0.5471212863922119, - 0.5172970294952393, - 0.48716509342193604, - 0.4575473368167877, - 0.42925167083740234, - 0.4030499756336212, - 0.37965691089630127, - 0.6323751211166382, - 0.6524811387062073, - 0.6685919761657715, - 0.6802681088447571, - 0.6871911883354187, - 0.6891722083091736, - 0.6861572265625, - 0.678228497505188, - 0.6656022071838379, - 0.6486228704452515, - 0.6277535557746887, - 0.6035636067390442, - 0.5767127871513367, - 0.5479335188865662, - 0.5180108547210693, - 0.4877610206604004, - 0.45800912380218506, - 0.42956671118736267, - 0.4032096862792969, - 0.37965691089630127, - 0.6323751211166382, - 0.6502752304077148, - 0.6642404198646545, - 0.6738895773887634, - 0.6789596080780029, - 0.6793122291564941, - 0.6749377250671387, - 0.6659554839134216, - 0.6526105403900146, - 0.6352668404579163, - 0.6143975257873535, - 0.5905718803405762, - 0.5644397735595703, - 0.5367139577865601, - 0.5081508755683899, - 0.479529470205307, - 0.451630562543869, - 0.4252151548862457, - 0.40100380778312683, - 0.37965691089630127, - 0.6323751211166382, - 0.6459428668022156, - 0.6556938290596008, - 0.6613619327545166, - 0.6627926230430603, - 0.659946858882904, - 0.6529022455215454, - 0.6418509483337402, - 0.6270944476127625, - 0.6090352535247803, - 0.5881659388542175, - 0.5650558471679688, - 0.5403352379798889, - 0.5146784782409668, - 0.4887854754924774, - 0.463362455368042, - 0.4391029179096222, - 0.4166685938835144, - 0.39667144417762756, - 0.37965691089630127, - 0.6323751211166382, - 0.6399534940719604, - 0.6438784003257751, - 0.6440427303314209, - 0.6404421329498291, - 0.6331747174263, - 0.6224387288093567, - 0.6085270047187805, - 0.5918191075325012, - 0.5727707147598267, - 0.5519014000892639, - 0.5297804474830627, - 0.5070112943649292, - 0.4842149615287781, - 0.4620133340358734, - 0.4410119652748108, - 0.4217837452888489, - 0.4048531651496887, - 0.39068204164505005, - 0.37965691089630127, - 0.6323751211166382, - 0.6329560875892639, - 0.6300745010375977, - 0.6238088607788086, - 0.6143301725387573, - 0.6018969416618347, - 0.5868483185768127, - 0.5695948600769043, - 0.5506070852279663, - 0.5304029583930969, - 0.509533703327179, - 0.48856842517852783, - 0.4680790901184082, - 0.4486245810985565, - 0.4307355582714081, - 0.414900004863739, - 0.4015498161315918, - 0.39104920625686646, - 0.3836846351623535, - 0.37965691089630127, - 0.6323751211166382, - 0.6257089972496033, - 0.6157779693603516, - 0.6028528213500977, - 0.5872863531112671, - 0.5695029497146606, - 0.5499878525733948, - 0.529273271560669, - 0.5079243183135986, - 0.486523300409317, - 0.46565401554107666, - 0.44588565826416016, - 0.4277575612068176, - 0.41176408529281616, - 0.3983415961265564, - 0.3878561854362488, - 0.38059383630752563, - 0.37675267457962036, - 0.37643754482269287, - 0.37965691089630127, - 0.6323751211166382, - 0.6189975142478943, - 0.6025380492210388, - 0.5834457278251648, - 0.5622413158416748, - 0.5395032167434692, - 0.5158516764640808, - 0.49193185567855835, - 0.46839621663093567, - 0.4458867311477661, - 0.42501741647720337, - 0.4063575565814972, - 0.39041611552238464, - 0.3776279091835022, - 0.3683418333530426, - 0.3628111481666565, - 0.361186683177948, - 0.3635128140449524, - 0.3697260618209839, - 0.37965691089630127, - 0.6323751211166382, - 0.6135489344596863, - 0.5917895436286926, - 0.5676904320716858, - 0.5419090390205383, - 0.5151485800743103, - 0.48813900351524353, - 0.46161705255508423, - 0.4363062083721161, - 0.41289687156677246, - 0.3920275568962097, - 0.374267578125, - 0.3601013422012329, - 0.3499152660369873, - 0.34398722648620605, - 0.34247887134552, - 0.34543144702911377, - 0.3527643084526062, - 0.3642774820327759, - 0.37965691089630127, - 0.6323751211166382, - 0.6099537014961243, - 0.5846971869468689, - 0.5572944283485413, - 0.5284929275512695, - 0.49907833337783813, - 0.46985292434692383, - 0.4416140019893646, - 0.4151317775249481, - 0.39112865924835205, - 0.3702593445777893, - 0.35309314727783203, - 0.3400982618331909, - 0.3316291570663452, - 0.3279169201850891, - 0.3290627598762512, - 0.33503541350364685, - 0.34567195177078247, - 0.36068227887153625, - 0.37965691089630127, - 0.6323751211166382, - 0.608601450920105, - 0.5820295810699463, - 0.5533841848373413, - 0.5234467387199402, - 0.49303382635116577, - 0.46297505497932434, - 0.4340902864933014, - 0.4071674942970276, - 0.38294100761413574, - 0.3620717227458954, - 0.3451288342475891, - 0.3325745463371277, - 0.32475125789642334, - 0.32187244296073914, - 0.3240165710449219, - 0.3311251699924469, - 0.3430043160915375, - 0.3593299984931946, - 0.37965691089630127, - 0.6323751211166382, - 0.6096386909484863, - 0.5840757489204407, - 0.556383490562439, - 0.5273173451423645, - 0.49767017364501953, - 0.46825066208839417, - 0.4398612678050995, - 0.41327640414237976, - 0.3892212510108948, - 0.36835193634033203, - 0.35123777389526367, - 0.3383455276489258, - 0.33002689480781555, - 0.3265087902545929, - 0.3278871774673462, - 0.33412444591522217, - 0.34505048394203186, - 0.3603672385215759, - 0.37965691089630127, - 0.6323751211166382, - 0.6129530072212219, - 0.5906139612197876, - 0.5659672617912292, - 0.5396853089332581, - 0.5124849081039429, - 0.48510804772377014, - 0.45830151438713074, - 0.43279650807380676, - 0.4092887341976166, - 0.3884194493293762, - 0.3707578778266907, - 0.35678577423095703, - 0.3468843102455139, - 0.34132352471351624, - 0.34025514125823975, - 0.3437082767486572, - 0.35158872604370117, - 0.3636815547943115, - 0.37965691089630127, - 0.6323751211166382, - 0.61818528175354, - 0.6009357571601868, - 0.5810970067977905, - 0.5592103004455566, - 0.5358726382255554, - 0.5117204785346985, - 0.4874127507209778, - 0.46361249685287476, - 0.4409688711166382, - 0.42009955644607544, - 0.4015738368034363, - 0.3858970105648041, - 0.37349674105644226, - 0.3647112250328064, - 0.35978013277053833, - 0.3588380217552185, - 0.36191049218177795, - 0.36891382932662964, - 0.37965691089630127, - 0.6323751211166382, - 0.6247684359550476, - 0.6139225363731384, - 0.6001332402229309, - 0.583776593208313, - 0.5652989149093628, - 0.5452041625976562, - 0.5240404009819031, - 0.5023850202560425, - 0.4808286726474762, - 0.45995938777923584, - 0.440346360206604, - 0.42252469062805176, - 0.40698039531707764, - 0.39413756132125854, - 0.38434645533561707, - 0.3778741955757141, - 0.374897301197052, - 0.3754970133304596, - 0.37965691089630127, - 0.6323751211166382, - 0.6319891810417175, - 0.6281670928001404, - 0.6210129261016846, - 0.6107220649719238, - 0.5975750088691711, - 0.5819305181503296, - 0.5642152428627014, - 0.5449124574661255, - 0.5245486497879028, - 0.5036793947219849, - 0.4828738272190094, - 0.4626995027065277, - 0.443706750869751, - 0.4264136552810669, - 0.4112918972969055, - 0.39875394105911255, - 0.38914182782173157, - 0.3827177584171295, - 0.37965691089630127, - 0.6323751211166382, - 0.6390650272369385, - 0.64212566614151, - 0.6414735913276672, - 0.637126624584198, - 0.6292032599449158, - 0.6179196834564209, - 0.6035836935043335, - 0.5865862965583801, - 0.5673911571502686, - 0.5465218424797058, - 0.5245476365089417, - 0.5020679831504822, - 0.4796959459781647, - 0.4580419063568115, - 0.4376964569091797, - 0.4192145764827728, - 0.4031004309654236, - 0.3897935450077057, - 0.37965691089630127, - 0.6323751211166382, - 0.6452291011810303, - 0.6542856693267822, - 0.6592978835105896, - 0.6601289510726929, - 0.6567562222480774, - 0.6492716670036316, - 0.637879490852356, - 0.6228904724121094, - 0.6047133207321167, - 0.5838440656661987, - 0.5608518123626709, - 0.5363637804985046, - 0.5110479593276978, - 0.48559486865997314, - 0.46069878339767456, - 0.4370388686656952, - 0.4152604639530182, - 0.3959576487541199, - 0.37965691089630127 - ], - "z": [ - -0.11893750727176666, - -0.1033172458410263, - -0.0844821184873581, - -0.06294586509466171, - -0.039295971393585205, - -0.014177549630403519, - 0.011724255979061127, - 0.03770291060209274, - 0.06304977834224701, - 0.08707345277070999, - 0.10911864787340164, - 0.12858402729034424, - 0.1449386030435562, - 0.15773630142211914, - 0.16662800312042236, - 0.171371191740036, - 0.17183643579483032, - 0.1680111289024353, - 0.1599995344877243, - 0.14802022278308868, - -0.11893750727176666, - -0.09897737205028534, - -0.07592074573040009, - -0.050396524369716644, - -0.023100975900888443, - 0.0052213361486792564, - 0.03379789739847183, - 0.06184917688369751, - 0.08861003816127777, - 0.11335048079490662, - 0.13539567589759827, - 0.154144287109375, - 0.16908487677574158, - 0.17980994284152985, - 0.1860269010066986, - 0.18756617605686188, - 0.1843857765197754, - 0.1765725016593933, - 0.16433940827846527, - 0.14802022278308868, - -0.11893750727176666, - -0.09660320729017258, - -0.07123716920614243, - -0.043531302362680435, - -0.014241378754377365, - 0.015833653509616852, - 0.04587344825267792, - 0.07505858689546585, - 0.10259297490119934, - 0.1277255415916443, - 0.14977072179317474, - 0.16812722384929657, - 0.18229427933692932, - 0.19188550114631653, - 0.19663920998573303, - 0.19642578065395355, - 0.1912510097026825, - 0.18125607073307037, - 0.16671356558799744, - 0.14802022278308868, - -0.11893750727176666, - -0.09645203500986099, - -0.07093894481658936, - -0.04309416562318802, - -0.013677243143320084, - 0.016509391367435455, - 0.04664234817028046, - 0.07589969038963318, - 0.10348333418369293, - 0.12864086031913757, - 0.15068604052066803, - 0.16901758313179016, - 0.18313539028167725, - 0.19265440106391907, - 0.19731494784355164, - 0.19698990881443024, - 0.19168813526630402, - 0.18155430257320404, - 0.16686473786830902, - 0.14802022278308868, - -0.11893750727176666, - -0.09854023158550262, - -0.07505839318037033, - -0.04913247376680374, - -0.02146972343325615, - 0.007175303064286709, - 0.03602126985788345, - 0.06428132951259613, - 0.09118461608886719, - 0.11599725484848022, - 0.13804244995117188, - 0.15671886503696442, - 0.1715170294046402, - 0.18203333020210266, - 0.18798086047172546, - 0.18919743597507477, - 0.1856498271226883, - 0.17743484675884247, - 0.16477654874324799, - 0.14802022278308868, - -0.11893750727176666, - -0.1026415154337883, - -0.08314909040927887, - -0.06099189817905426, - -0.036774370819330215, - -0.011157095432281494, - 0.015161179006099701, - 0.041462548077106476, - 0.06702957302331924, - 0.09116485714912415, - 0.1132100522518158, - 0.13256382942199707, - 0.14869824051856995, - 0.16117322444915771, - 0.16964846849441528, - 0.1738927811384201, - 0.17379041016101837, - 0.16934415698051453, - 0.1606752574443817, - 0.14802022278308868, - -0.11893750727176666, - -0.10831145197153091, - -0.09433428943157196, - -0.0773872658610344, - -0.05793268233537674, - -0.0365012064576149, - -0.013677414506673813, - 0.009916115552186966, - 0.033635806292295456, - 0.05683465301990509, - 0.07887984812259674, - 0.09917005151510239, - 0.11715181171894073, - 0.1323346197605133, - 0.14430435001850128, - 0.15273447334766388, - 0.15739503502845764, - 0.15815895795822144, - 0.1550053209066391, - 0.14802022278308868, - -0.11893750727176666, - -0.11493560671806335, - -0.10740190744400024, - -0.09654189646244049, - -0.08265183866024017, - -0.06611061096191406, - -0.04736940562725067, - -0.026939429342746735, - -0.005377965047955513, - 0.016726840287446976, - 0.038772035390138626, - 0.06015628203749657, - 0.08029627054929733, - 0.09864263981580734, - 0.11469493806362152, - 0.12801530957221985, - 0.13824041187763214, - 0.14509133994579315, - 0.14838117361068726, - 0.14802022278308868, - -0.11893750727176666, - -0.1217961460351944, - -0.12093585729598999, - -0.11638008058071136, - -0.1082531288266182, - -0.09677667170763016, - -0.08226373791694641, - -0.0651102140545845, - -0.045784007757902145, - -0.024812273681163788, - -0.0027670804411172867, - 0.019750239327549934, - 0.042125485837459564, - 0.063748300075531, - 0.08402887731790543, - 0.10241402685642242, - 0.11840222030878067, - 0.1315573751926422, - 0.1415206342935562, - 0.14802022278308868, - -0.11893750727176666, - -0.1281496286392212, - -0.13346953690052032, - -0.1347520500421524, - -0.13196225464344025, - -0.12517623603343964, - -0.11457906663417816, - -0.10045984387397766, - -0.08320368081331253, - -0.06328128278255463, - -0.041236087679862976, - -0.0176694318652153, - 0.006775854155421257, - 0.03143296390771866, - 0.05562930926680565, - 0.07870488613843918, - 0.10003025084733963, - 0.11902371048927307, - 0.13516715168952942, - 0.14802022278308868, - -0.11893750727176666, - -0.1333075761795044, - -0.14364470541477203, - -0.1496669203042984, - -0.1512099802494049, - -0.14823177456855774, - -0.14081354439258575, - -0.1291576325893402, - -0.11358198523521423, - -0.0945114716887474, - -0.07246627658605576, - -0.048047736287117004, - -0.021921932697296143, - 0.005198489874601364, - 0.03257376700639725, - 0.059457167983055115, - 0.08511538058519363, - 0.10884853452444077, - 0.13000920414924622, - 0.14802022278308868, - -0.11893750727176666, - -0.1367110013961792, - -0.15035875141620636, - -0.15950842201709747, - -0.16391049325466156, - -0.1634448617696762, - -0.15812422335147858, - -0.14809373021125793, - -0.13362696766853333, - -0.11511856317520142, - -0.09307336062192917, - -0.0680927261710167, - -0.04085803031921387, - -0.012112196534872055, - 0.01736067235469818, - 0.04675665870308876, - 0.07527388632297516, - 0.10213448852300644, - 0.1266057789325714, - 0.14802022278308868, - -0.11893750727176666, - -0.13799113035202026, - -0.1528840959072113, - -0.16321009397506714, - -0.16868752241134644, - -0.1691669374704361, - -0.16463525593280792, - -0.15521612763404846, - -0.14116644859313965, - -0.12286946177482605, - -0.1008242592215538, - -0.07563219964504242, - -0.047980427742004395, - -0.0186232291162014, - 0.01163860410451889, - 0.04197963699698448, - 0.0715722143650055, - 0.09960915148258209, - 0.12532564997673035, - 0.14802022278308868, - -0.11893750727176666, - -0.13700923323631287, - -0.15094706416130066, - -0.16037076711654663, - -0.16502335667610168, - -0.16477788984775543, - -0.15964104235172272, - -0.14975297451019287, - -0.13538338243961334, - -0.1169242262840271, - -0.09487903118133545, - -0.06984913349151611, - -0.0425172820687294, - -0.013629015535116196, - 0.016027644276618958, - 0.04564378783106804, - 0.0744115337729454, - 0.10154618322849274, - 0.12630754709243774, - 0.14802022278308868, - -0.11893750727176666, - -0.13387168943881989, - -0.14475758373737335, - -0.1512981802225113, - -0.15331512689590454, - -0.15075337886810303, - -0.1436828225851059, - -0.1322963386774063, - -0.11690448224544525, - -0.09792713820934296, - -0.0758819431066513, - -0.05137024074792862, - -0.025060638785362244, - 0.0023292116820812225, - 0.030052147805690765, - 0.05735202506184578, - 0.08348412811756134, - 0.10773566365242004, - 0.12944507598876953, - 0.14802022278308868, - -0.11893750727176666, - -0.12891854345798492, - -0.13498637080192566, - -0.1369754523038864, - -0.13483156263828278, - -0.1286131888628006, - -0.11848992109298706, - -0.10473789274692535, - -0.08773224800825119, - -0.06793684512376785, - -0.0458916500210762, - -0.02219799906015396, - 0.002497805282473564, - 0.027522124350070953, - 0.052192360162734985, - 0.07583558559417725, - 0.09780684858560562, - 0.11750686913728714, - 0.13439823687076569, - 0.14802022278308868, - -0.11893750727176666, - -0.1226864904165268, - -0.1226922869682312, - -0.11895465850830078, - -0.11157563328742981, - -0.10075647383928299, - -0.08679228276014328, - -0.07006397098302841, - -0.051027849316596985, - -0.030203163623809814, - -0.008157970383763313, - 0.014506394043564796, - 0.037171728909015656, - 0.05921975523233414, - 0.080049067735672, - 0.09909152239561081, - 0.11582764983177185, - 0.1298009753227234, - 0.14063027501106262, - 0.14802022278308868, - -0.11893750727176666, - -0.11585091054439545, - -0.10920757055282593, - -0.0991886556148529, - -0.08606749773025513, - -0.07020200043916702, - -0.05202491581439972, - -0.0320320725440979, - -0.01076882891356945, - 0.011184798553586006, - 0.03322999179363251, - 0.05476541817188263, - 0.07520362734794617, - 0.0939871296286583, - 0.11060354858636856, - 0.12459965795278549, - 0.13559365272521973, - 0.14328567683696747, - 0.14746585488319397, - 0.14802022278308868, - -0.11893750727176666, - -0.10915254056453705, - -0.0959935262799263, - -0.07981938868761063, - -0.06107135862112045, - -0.04026080295443535, - -0.017955396324396133, - 0.005236451514065266, - 0.028682105243206024, - 0.05174203962087631, - 0.07378723472356796, - 0.09421635419130325, - 0.11247214674949646, - 0.12805664539337158, - 0.14054474234580994, - 0.14959579706192017, - 0.1549629122018814, - 0.1564997136592865, - 0.15416423976421356, - 0.14802022278308868, - -0.11893750727176666, - -0.1033172458410263, - -0.0844821110367775, - -0.06294585764408112, - -0.03929596394300461, - -0.014177538454532623, - 0.01172427088022232, - 0.03770292550325394, - 0.0630498006939888, - 0.08707347512245178, - 0.10911867022514343, - 0.12858405709266663, - 0.1449386179447174, - 0.15773631632328033, - 0.16662801802158356, - 0.171371191740036, - 0.17183645069599152, - 0.1680111289024353, - 0.1599995344877243, - 0.14802022278308868 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.9965380430221558, - -1.0004018545150757, - -1.0009254217147827, - -0.9980946779251099, - -0.9919867515563965, - -0.9827682375907898, - -0.9706906080245972, - -0.9560832977294922, - -0.9393447637557983, - -0.9209315776824951, - -0.9013460278511047, - -0.881122350692749, - -0.8608121871948242, - -0.8409695625305176, - -0.8221356868743896, - -0.8048243522644043, - -0.7895077466964722, - -0.776603639125824, - -0.7664640545845032, - -0.7593655586242676, - -0.9965380430221558, - -0.9921938180923462, - -0.9847334027290344, - -0.9743602275848389, - -0.9613573551177979, - -0.9460793137550354, - -0.9289429783821106, - -0.9104157090187073, - -0.8910029530525208, - -0.8712341785430908, - -0.8516486287117004, - -0.8327805399894714, - -0.8151446580886841, - -0.799221932888031, - -0.7854467630386353, - -0.7741949558258057, - -0.7657732963562012, - -0.7604116201400757, - -0.7582560777664185, - -0.7593655586242676, - -0.9965380430221558, - -0.9842813611030579, - -0.9691243171691895, - -0.9514802694320679, - -0.9318305850028992, - -0.9107112288475037, - -0.8886982798576355, - -0.8663922548294067, - -0.844401478767395, - -0.8233258724212646, - -0.8037403225898743, - -0.7861790657043457, - -0.7711211442947388, - -0.7589772343635559, - -0.7500786781311035, - -0.744668185710907, - -0.7428933382034302, - -0.7448024749755859, - -0.7503436207771301, - -0.7593655586242676, - -0.9965380430221558, - -0.9775218367576599, - -0.9557896256446838, - -0.9319341778755188, - -0.9066062569618225, - -0.8804966807365417, - -0.8543177247047424, - -0.8287834525108337, - -0.8045903444290161, - -0.7823983430862427, - -0.7628127932548523, - -0.7463679313659668, - -0.7335123419761658, - -0.7245966792106628, - -0.7198641300201416, - -0.7194438576698303, - -0.7233471870422363, - -0.7314677834510803, - -0.7435840964317322, - -0.7593655586242676, - -0.9965380430221558, - -0.9726477265357971, - -0.9461743831634521, - -0.9178400635719299, - -0.8884177207946777, - -0.8587098717689514, - -0.8295269012451172, - -0.8016648292541504, - -0.775883674621582, - -0.7528867125511169, - -0.7333011627197266, - -0.7176613211631775, - -0.7063937783241272, - -0.6998058557510376, - -0.6980773210525513, - -0.7012553215026855, - -0.7092530727386475, - -0.7218525409698486, - -0.7387099862098694, - -0.7593655586242676, - -0.9965380430221558, - -0.970187246799469, - -0.941320538520813, - -0.9107252359390259, - -0.8792359828948975, - -0.8477117419242859, - -0.817012369632721, - -0.7879751920700073, - -0.7613924145698547, - -0.7379890084266663, - -0.7184034585952759, - -0.7031700015068054, - -0.6927040815353394, - -0.6872912645339966, - -0.6870791912078857, - -0.6920735836029053, - -0.7021383047103882, - -0.7169986963272095, - -0.7362495064735413, - -0.7593655586242676, - -0.9965380430221558, - -0.9704070091247559, - -0.9417540431022644, - -0.9113607406616211, - -0.8800560832023621, - -0.8486940860748291, - -0.8181301355361938, - -0.7891979217529297, - -0.7626867294311523, - -0.7393196821212769, - -0.7197341918945312, - -0.7044643759727478, - -0.6939268708229065, - -0.6884090900421143, - -0.688061535358429, - -0.6928936839103699, - -0.7027738094329834, - -0.7174322605133057, - -0.7364692687988281, - -0.7593655586242676, - -0.9965380430221558, - -0.9732832312583923, - -0.9474279880523682, - -0.9196776747703552, - -0.8907891511917114, - -0.861550509929657, - -0.8327592015266418, - -0.8052006363868713, - -0.7796264886856079, - -0.7567344903945923, - -0.7371489405632019, - -0.7214041352272034, - -0.7099295258522034, - -0.7030380964279175, - -0.7009179592132568, - -0.7036267518997192, - -0.7110906839370728, - -0.7231062054634094, - -0.7393454909324646, - -0.7593655586242676, - -0.9965380430221558, - -0.9785041809082031, - -0.9577274918556213, - -0.9347747564315796, - -0.9102720618247986, - -0.8848876953125, - -0.8593142032623291, - -0.8342490792274475, - -0.810375988483429, - -0.7883462905883789, - -0.7687606811523438, - -0.7521536350250244, - -0.7389779686927795, - -0.7295931577682495, - -0.7242552042007446, - -0.7231096625328064, - -0.7261878252029419, - -0.7334057092666626, - -0.7445664405822754, - -0.7593655586242676, - -0.9965380430221558, - -0.985504150390625, - -0.9715364575386047, - -0.955016016960144, - -0.9363934993743896, - -0.9161768555641174, - -0.8949175477027893, - -0.8731954097747803, - -0.8516030311584473, - -0.8307293653488159, - -0.8111438155174255, - -0.793380618095398, - -0.7779242992401123, - -0.7651965022087097, - -0.7555443048477173, - -0.7492311000823975, - -0.7464290857315063, - -0.747214674949646, - -0.7515663504600525, - -0.7593655586242676, - -0.9965380430221558, - -0.9935244917869568, - -0.9873584508895874, - -0.9782080054283142, - -0.9663228988647461, - -0.9520272612571716, - -0.9357110261917114, - -0.9178192615509033, - -0.8988400101661682, - -0.8792909979820251, - -0.8597054481506348, - -0.8406175971031189, - -0.8225481510162354, - -0.8059899806976318, - -0.7913947105407715, - -0.7791604995727539, - -0.7696210741996765, - -0.7630366086959839, - -0.759586751461029, - -0.7593655586242676, - -0.9965380430221558, - -1.0016961097717285, - -1.0034788846969604, - -1.0018374919891357, - -0.996816873550415, - -0.9885539412498474, - -0.9772740006446838, - -0.9632848501205444, - -0.9469680786132812, - -0.9287686944007874, - -0.909183144569397, - -0.8887456655502319, - -0.8680137991905212, - -0.8475529551506042, - -0.8279213905334473, - -0.8096544742584229, - -0.793250560760498, - -0.7791570425033569, - -0.7677584290504456, - -0.7593655586242676, - -0.9965380430221558, - -1.0091335773468018, - -1.018150806427002, - -1.023343801498413, - -1.0245709419250488, - -1.0217986106872559, - -1.0151026248931885, - -1.0046653747558594, - -0.9907717704772949, - -0.973800778388977, - -0.9542152285575867, - -0.9325494170188904, - -0.9093943238258362, - -0.8853815197944641, - -0.8611661195755005, - -0.8374085426330566, - -0.8147568702697754, - -0.793829083442688, - -0.775195837020874, - -0.7593655586242676, - -0.9965380430221558, - -1.015030860900879, - -1.0297844409942627, - -1.0403965711593628, - -1.0465775728225708, - -1.048158884048462, - -1.0450973510742188, - -1.0374765396118164, - -1.0255043506622314, - -1.0095072984695435, - -0.9899218082427979, - -0.9672819972038269, - -0.9422054886817932, - -0.9153763055801392, - -0.8875263333320618, - -0.8594151735305786, - -0.8318095803260803, - -0.8054627180099487, - -0.7810931205749512, - -0.7593655586242676, - -0.9965380430221558, - -1.0187488794326782, - -1.0371190309524536, - -1.051147699356079, - -1.060451865196228, - -1.0647779703140259, - -1.0640079975128174, - -1.058162808418274, - -1.047402024269104, - -1.032019019126892, - -1.0124335289001465, - -0.9891796112060547, - -0.962891697883606, - -0.9342869520187378, - -0.9041454792022705, - -0.8732895255088806, - -0.8425607085227966, - -0.8127972483634949, - -0.7848110795021057, - -0.7593655586242676, - -0.9965380430221558, - -1.019884705543518, - -1.0393598079681396, - -1.0544321537017822, - -1.0646904706954956, - -1.0698550939559937, - -1.0697851181030273, - -1.0644824504852295, - -1.0540916919708252, - -1.0388963222503662, - -1.0193108320236206, - -0.9958693385124207, - -0.9692113995552063, - -0.9400641322135925, - -0.9092226028442383, - -0.8775281310081482, - -0.8458451628684998, - -0.8150379657745361, - -0.7859469652175903, - -0.7593655586242676, - -0.9965380430221558, - -1.018315315246582, - -1.0362638235092163, - -1.0498939752578735, - -1.0588340759277344, - -1.0628401041030884, - -1.061802864074707, - -1.0557507276535034, - -1.0448485612869263, - -1.0293940305709839, - -1.0098084211349487, - -0.9866262078285217, - -0.9604796171188354, - -0.9320818185806274, - -0.902207612991333, - -0.8716716766357422, - -0.8413070440292358, - -0.8119419813156128, - -0.7843775749206543, - -0.7593655586242676, - -0.9965380430221558, - -1.0142107009887695, - -1.028166651725769, - -1.038025140762329, - -1.0435171127319336, - -1.0444930791854858, - -1.0409260988235474, - -1.0329136848449707, - -1.020674228668213, - -1.0045417547225952, - -0.9849562048912048, - -0.9624518156051636, - -0.9376425743103027, - -0.9112050533294678, - -0.8838605284690857, - -0.8563547730445862, - -0.8294381499290466, - -0.8038448095321655, - -0.7802729606628418, - -0.7593655586242676, - -0.9965380430221558, - -1.008015751838684, - -1.0159456729888916, - -1.0201115608215332, - -1.0203996896743774, - -1.016802191734314, - -1.009417176246643, - -0.9984461069107056, - -0.9841883182525635, - -0.9670326709747314, - -0.9474471211433411, - -0.9259659051895142, - -0.9031750559806824, - -0.8796961307525635, - -0.8561696410179138, - -0.8332372903823853, - -0.8115246295928955, - -0.7916239500045776, - -0.7740780115127563, - -0.7593655586242676, - -0.9965380430221558, - -1.0004018545150757, - -1.0009254217147827, - -0.9980946779251099, - -0.9919867515563965, - -0.9827682375907898, - -0.9706906080245972, - -0.9560832977294922, - -0.9393447637557983, - -0.9209315776824951, - -0.9013460278511047, - -0.881122350692749, - -0.8608121871948242, - -0.8409695625305176, - -0.8221356868743896, - -0.8048243522644043, - -0.7895077466964722, - -0.776603639125824, - -0.7664640545845032, - -0.7593655586242676 - ], - "y": [ - 0.7334399223327637, - 0.7462001442909241, - 0.7564002275466919, - 0.7637619972229004, - 0.7680845260620117, - 0.7692500352859497, - 0.7672266364097595, - 0.762069582939148, - 0.7539194822311401, - 0.7429987192153931, - 0.7296051979064941, - 0.714104175567627, - 0.6969184875488281, - 0.6785169839859009, - 0.6594015955924988, - 0.6400936841964722, - 0.6211199164390564, - 0.6029979586601257, - 0.5862219929695129, - 0.5712497234344482, - 0.7334399223327637, - 0.7554643750190735, - 0.7746759653091431, - 0.790550708770752, - 0.8026555776596069, - 0.8106603026390076, - 0.8143466114997864, - 0.8136139512062073, - 0.80848228931427, - 0.7990915775299072, - 0.7856980562210083, - 0.7686669230461121, - 0.7484629154205322, - 0.7256369590759277, - 0.7008118629455566, - 0.6746646761894226, - 0.6479086875915527, - 0.6212736964225769, - 0.5954862236976624, - 0.5712497234344482, - 0.7334399223327637, - 0.7622220516204834, - 0.7880070209503174, - 0.8100914359092712, - 0.8278729319572449, - 0.8408665060997009, - 0.8487176895141602, - 0.8512123823165894, - 0.8482824563980103, - 0.8400078415870667, - 0.826614260673523, - 0.8084670901298523, - 0.7860612869262695, - 0.7600080966949463, - 0.7310181260108948, - 0.6998820900917053, - 0.667449414730072, - 0.6346046924591064, - 0.6022439002990723, - 0.5712497234344482, - 0.7334399223327637, - 0.7657408714294434, - 0.7949486970901489, - 0.820266604423523, - 0.8410040736198425, - 0.8565953969955444, - 0.8666152954101562, - 0.8707904815673828, - 0.8690070509910583, - 0.8613135814666748, - 0.8479200601577759, - 0.8291916847229004, - 0.8056394457817078, - 0.7779057025909424, - 0.7467470169067383, - 0.713013231754303, - 0.6776245832443237, - 0.641546368598938, - 0.6057627201080322, - 0.5712497234344482, - 0.7334399223327637, - 0.7656395435333252, - 0.7947487831115723, - 0.8199735879898071, - 0.8406259417533875, - 0.8561424612998962, - 0.8660998940467834, - 0.8702266812324524, - 0.8684102296829224, - 0.8607000112533569, - 0.847306489944458, - 0.8285948634147644, - 0.8050756454467773, - 0.7773902416229248, - 0.7462940216064453, - 0.7126350998878479, - 0.6773315668106079, - 0.6413464546203613, - 0.6056613922119141, - 0.5712497234344482, - 0.7334399223327637, - 0.7619290351867676, - 0.7874289155006409, - 0.8092440962791443, - 0.8267794847488403, - 0.8395567536354065, - 0.8472273349761963, - 0.8495820760726929, - 0.8465566635131836, - 0.8382336497306824, - 0.8248400688171387, - 0.8067412972450256, - 0.784430980682373, - 0.7585176825523376, - 0.7297083139419556, - 0.6987886428833008, - 0.6666020750999451, - 0.6340266466140747, - 0.6019508838653564, - 0.5712497234344482, - 0.7334399223327637, - 0.7550114393234253, - 0.7737824320793152, - 0.7892409563064575, - 0.8009652495384216, - 0.8086355924606323, - 0.812042772769928, - 0.811093807220459, - 0.8058145642280579, - 0.796349048614502, - 0.7829554677009583, - 0.7659991979598999, - 0.7459427118301392, - 0.7233331203460693, - 0.6987872123718262, - 0.6729744076728821, - 0.6465988755226135, - 0.6203801035881042, - 0.5950332283973694, - 0.5712497234344482, - 0.7334399223327637, - 0.7456363439559937, - 0.7552880048751831, - 0.7621316313743591, - 0.76598060131073, - 0.7667298316955566, - 0.7643589973449707, - 0.7589326500892639, - 0.7505989074707031, - 0.7395850419998169, - 0.7261914610862732, - 0.7107836008071899, - 0.6937816143035889, - 0.6756493449211121, - 0.6568814516067505, - 0.6379897594451904, - 0.6194896101951599, - 0.6018856763839722, - 0.5856581926345825, - 0.5712497234344482, - 0.7334399223327637, - 0.734819769859314, - 0.7339498996734619, - 0.7308540344238281, - 0.7256166338920593, - 0.7183805704116821, - 0.7093432545661926, - 0.6987512111663818, - 0.6868932247161865, - 0.6740928888320923, - 0.6606993675231934, - 0.6470778584480286, - 0.633600115776062, - 0.620633602142334, - 0.608532190322876, - 0.5976257920265198, - 0.5882119536399841, - 0.580547571182251, - 0.5748416185379028, - 0.5712497234344482, - 0.7334399223327637, - 0.7237337827682495, - 0.7120802998542786, - 0.6987974047660828, - 0.6842474341392517, - 0.6688272356987, - 0.6529574394226074, - 0.637070894241333, - 0.6216009855270386, - 0.6069697141647339, - 0.5935761332511902, - 0.5817856788635254, - 0.5719197988510132, - 0.5642477869987488, - 0.558978796005249, - 0.5562565326690674, - 0.5561553835868835, - 0.5586780309677124, - 0.5637556314468384, - 0.5712497234344482, - 0.7334399223327637, - 0.7135797739028931, - 0.6920492649078369, - 0.6694357395172119, - 0.6463559865951538, - 0.623439610004425, - 0.6013116836547852, - 0.5805758237838745, - 0.5617976188659668, - 0.5454893112182617, - 0.5320957899093628, - 0.5219823122024536, - 0.5154247879981995, - 0.5126020312309265, - 0.5135911703109741, - 0.5183651447296143, - 0.5267936587333679, - 0.538646936416626, - 0.5536016225814819, - 0.5712497234344482, - 0.7334399223327637, - 0.7054580450057983, - 0.6760273575782776, - 0.6459506750106812, - 0.6160483956336975, - 0.5871362686157227, - 0.5600027441978455, - 0.535388171672821, - 0.5139638185501099, - 0.4963141083717346, - 0.4829205572605133, - 0.4741484522819519, - 0.4702370762825012, - 0.4712930917739868, - 0.47728776931762695, - 0.48805755376815796, - 0.5033086538314819, - 0.5226250886917114, - 0.5454798936843872, - 0.5712497234344482, - 0.7334399223327637, - 0.7002487778663635, - 0.6657508611679077, - 0.6308872699737549, - 0.5966089963912964, - 0.5638511180877686, - 0.5335070490837097, - 0.5064045786857605, - 0.4832829535007477, - 0.46477293968200684, - 0.45137935876846313, - 0.4434676170349121, - 0.4412534832954407, - 0.4447973966598511, - 0.45400264859199524, - 0.46861815452575684, - 0.48824524879455566, - 0.5123485326766968, - 0.5402705669403076, - 0.5712497234344482, - 0.7334399223327637, - 0.6985163688659668, - 0.6623333692550659, - 0.6258779168128967, - 0.5901443958282471, - 0.5561075210571289, - 0.5246957540512085, - 0.49676594138145447, - 0.4730799198150635, - 0.45428377389907837, - 0.44089022278785706, - 0.4332645833492279, - 0.43161487579345703, - 0.43598613142967224, - 0.446259081363678, - 0.46215349435806274, - 0.48323583602905273, - 0.508931040763855, - 0.5385382175445557, - 0.5712497234344482, - 0.7334399223327637, - 0.7004486322402954, - 0.6661452054977417, - 0.6314653158187866, - 0.5973550081253052, - 0.5647446513175964, - 0.5345238447189331, - 0.5075168013572693, - 0.48446032404899597, - 0.4659833312034607, - 0.452589750289917, - 0.4446449875831604, - 0.44236573576927185, - 0.4458141326904297, - 0.4548961818218231, - 0.46936410665512085, - 0.4888232946395874, - 0.5127429366111755, - 0.5404704809188843, - 0.5712497234344482, - 0.7334399223327637, - 0.7058361768722534, - 0.6767733097076416, - 0.6470441222190857, - 0.6174595355987549, - 0.5888264775276184, - 0.5619260668754578, - 0.537492036819458, - 0.5161908864974976, - 0.4986037015914917, - 0.485210120677948, - 0.4763755202293396, - 0.4723409414291382, - 0.4732164144515991, - 0.4789780378341675, - 0.48946863412857056, - 0.5044021010398865, - 0.5233710408210754, - 0.5458580255508423, - 0.5712497234344482, - 0.7334399223327637, - 0.7140951752662659, - 0.6930660009384155, - 0.6709260940551758, - 0.6482793092727661, - 0.6257434487342834, - 0.6039332151412964, - 0.5834434628486633, - 0.5648332238197327, - 0.5486100316047668, - 0.5352164506912231, - 0.5250178575515747, - 0.5182924270629883, - 0.515223503112793, - 0.5158950090408325, - 0.5202884674072266, - 0.5282840728759766, - 0.5396637320518494, - 0.5541170239448547, - 0.5712497234344482, - 0.7334399223327637, - 0.7243306040763855, - 0.7132576704025269, - 0.7005232572555542, - 0.6864745616912842, - 0.6714949607849121, - 0.6559929847717285, - 0.6403915286064148, - 0.6251161098480225, - 0.6105833649635315, - 0.5971898436546326, - 0.5853007435798645, - 0.5752404928207397, - 0.5672833323478699, - 0.5616465210914612, - 0.5584837198257446, - 0.5578811764717102, - 0.5598554015159607, - 0.5643524527549744, - 0.5712497234344482, - 0.7334399223327637, - 0.7354333400726318, - 0.7351602911949158, - 0.7326282262802124, - 0.7279062867164612, - 0.721123218536377, - 0.7124640345573425, - 0.7021649479866028, - 0.6905069351196289, - 0.6778079271316528, - 0.6644144058227539, - 0.650691568851471, - 0.6370139122009277, - 0.6237543821334839, - 0.611274778842926, - 0.5999153852462769, - 0.5899862051010132, - 0.5817579627037048, - 0.5754551887512207, - 0.5712497234344482, - 0.7334399223327637, - 0.7462001442909241, - 0.7564002275466919, - 0.7637619972229004, - 0.7680845260620117, - 0.7692500352859497, - 0.7672266960144043, - 0.762069582939148, - 0.7539195418357849, - 0.7429987788200378, - 0.7296051979064941, - 0.714104175567627, - 0.6969185471534729, - 0.6785170435905457, - 0.6594015955924988, - 0.6400936841964722, - 0.6211199760437012, - 0.6029979586601257, - 0.5862219929695129, - 0.5712497234344482 - ], - "z": [ - 0.20656833052635193, - 0.16922089457511902, - 0.13157285749912262, - 0.09465120732784271, - 0.059463031589984894, - 0.026968181133270264, - -0.001946955919265747, - -0.026493683457374573, - -0.04600238800048828, - -0.05994093418121338, - -0.06792913377285004, - -0.06974908709526062, - -0.06535114347934723, - -0.05485524237155914, - -0.03854773938655853, - -0.016873404383659363, - 0.00957651436328888, - 0.04008052498102188, - 0.07380657643079758, - 0.1098347008228302, - 0.20656833052635193, - 0.17381224036216736, - 0.1406303197145462, - 0.10792770981788635, - 0.07659641653299332, - 0.04749111831188202, - 0.021405711770057678, - -0.0009482651948928833, - -0.01896105706691742, - -0.03214131295681, - -0.040129512548446655, - -0.04270775616168976, - -0.03980572521686554, - -0.03150257468223572, - -0.018024802207946777, - 0.0002599954605102539, - 0.022853031754493713, - 0.04913797974586487, - 0.07839792221784592, - 0.1098346933722496, - 0.20656833052635193, - 0.18188172578811646, - 0.15654920041561127, - 0.13126173615455627, - 0.10670911520719528, - 0.08356108516454697, - 0.062449052929878235, - 0.04394887387752533, - 0.02856522798538208, - 0.016717731952667236, - 0.008729532361030579, - 0.004818528890609741, - 0.005091413855552673, - 0.009540751576423645, - 0.018045172095298767, - 0.030372679233551025, - 0.04618704319000244, - 0.06505686044692993, - 0.08646741509437561, - 0.1098346933722496, - 0.20656831562519073, - 0.19255492091178894, - 0.17760442197322845, - 0.16212469339370728, - 0.1465379148721695, - 0.13126932084560394, - 0.11673536151647568, - 0.10333247482776642, - 0.09142628312110901, - 0.08134155720472336, - 0.0733533576130867, - 0.06767957657575607, - 0.06447502225637436, - 0.06382706761360168, - 0.06575341522693634, - 0.07020148634910583, - 0.07705000042915344, - 0.08611208945512772, - 0.0971405953168869, - 0.109834685921669, - 0.20656831562519073, - 0.20467518270015717, - 0.2015143632888794, - 0.19717207551002502, - 0.19176679849624634, - 0.18544591963291168, - 0.17838189005851746, - 0.1707673966884613, - 0.16281014680862427, - 0.15472717583179474, - 0.14673897624015808, - 0.13906344771385193, - 0.13190993666648865, - 0.12547361850738525, - 0.11993001401424408, - 0.11543036997318268, - 0.11209739744663239, - 0.11002202332019806, - 0.10926086455583572, - 0.109834685921669, - 0.20656831562519073, - 0.2169291228055954, - 0.22568798065185547, - 0.23260599374771118, - 0.23749443888664246, - 0.24021998047828674, - 0.24070829153060913, - 0.23894600570201874, - 0.2349812388420105, - 0.22892209887504578, - 0.2209339141845703, - 0.21123453974723816, - 0.20008854568004608, - 0.18780000507831573, - 0.17470408976078033, - 0.16115802526474, - 0.14753130078315735, - 0.13419564068317413, - 0.12151480466127396, - 0.109834685921669, - 0.20656830072402954, - 0.2279888093471527, - 0.24750569462776184, - 0.26458659768104553, - 0.27876558899879456, - 0.2896559238433838, - 0.2969604730606079, - 0.3004801273345947, - 0.30011871457099915, - 0.29588618874549866, - 0.2878980040550232, - 0.2763720154762268, - 0.26162266731262207, - 0.2440522164106369, - 0.2241400182247162, - 0.2024291753768921, - 0.1795119196176529, - 0.1560133695602417, - 0.13257449865341187, - 0.10983467847108841, - 0.20656830072402954, - 0.23665578663349152, - 0.26460322737693787, - 0.28964829444885254, - 0.311107873916626, - 0.3283965587615967, - 0.34104275703430176, - 0.34870150685310364, - 0.35116392374038696, - 0.34836283326148987, - 0.3403746485710144, - 0.3274172246456146, - 0.309844046831131, - 0.28813445568084717, - 0.2628806531429291, - 0.2347714602947235, - 0.2045736163854599, - 0.17311090230941772, - 0.14124147593975067, - 0.10983467847108841, - 0.20656830072402954, - 0.2419908344745636, - 0.2751277983188629, - 0.3050752878189087, - 0.331016480922699, - 0.35224372148513794, - 0.36817800998687744, - 0.37838467955589294, - 0.382585346698761, - 0.3806653618812561, - 0.37267714738845825, - 0.35883861780166626, - 0.3395272195339203, - 0.3152697682380676, - 0.2867278456687927, - 0.2546800673007965, - 0.22000062465667725, - 0.18363545835018158, - 0.14657650887966156, - 0.10983467102050781, - 0.20656830072402954, - 0.24341580271720886, - 0.2779388725757599, - 0.3091958165168762, - 0.3363340497016907, - 0.3586132526397705, - 0.375425785779953, - 0.3863130211830139, - 0.3909779191017151, - 0.3892933130264282, - 0.38130509853363037, - 0.36723124980926514, - 0.34745556116104126, - 0.3225175142288208, - 0.2930973768234253, - 0.2599976360797882, - 0.22412113845348358, - 0.18644654750823975, - 0.14800149202346802, - 0.10983467102050781, - 0.20656830072402954, - 0.24077630043029785, - 0.27273187041282654, - 0.3015633523464203, - 0.3264842927455902, - 0.34681493043899536, - 0.36200064420700073, - 0.3716273009777069, - 0.37543225288391113, - 0.37331169843673706, - 0.3653234839439392, - 0.3516855537891388, - 0.33276984095573425, - 0.3090924024581909, - 0.28129905462265015, - 0.25014787912368774, - 0.21648865938186646, - 0.1812395304441452, - 0.145361989736557, - 0.10983467102050781, - 0.20656830072402954, - 0.23435835540294647, - 0.2600710391998291, - 0.2830049693584442, - 0.3025346100330353, - 0.31812718510627747, - 0.32935744524002075, - 0.33591899275779724, - 0.3376328945159912, - 0.334452360868454, - 0.3264641761779785, - 0.31388622522354126, - 0.2970615327358246, - 0.27644917368888855, - 0.25261130928993225, - 0.22619818150997162, - 0.19793027639389038, - 0.16857868432998657, - 0.13894402980804443, - 0.10983467847108841, - 0.20656831562519073, - 0.22485743463039398, - 0.24132835865020752, - 0.25553178787231445, - 0.26708030700683594, - 0.27565890550613403, - 0.28103354573249817, - 0.28305768966674805, - 0.2816760540008545, - 0.27692633867263794, - 0.2689381539821625, - 0.25792935490608215, - 0.2442002296447754, - 0.22812527418136597, - 0.21014301478862762, - 0.19074389338493347, - 0.17045709490776062, - 0.14983601868152618, - 0.12944312393665314, - 0.109834685921669, - 0.20656831562519073, - 0.2133031189441681, - 0.21853488683700562, - 0.22212091088294983, - 0.22396337985992432, - 0.22401204705238342, - 0.2222655713558197, - 0.21877159178256989, - 0.21362541615962982, - 0.20696742832660675, - 0.1989792287349701, - 0.18987871706485748, - 0.17991414666175842, - 0.1693572849035263, - 0.15849614143371582, - 0.14762696623802185, - 0.137046217918396, - 0.12704254686832428, - 0.11788879334926605, - 0.109834685921669, - 0.20656831562519073, - 0.20094750821590424, - 0.19416068494319916, - 0.18639299273490906, - 0.17785632610321045, - 0.1687835156917572, - 0.15942205488681793, - 0.1500273048877716, - 0.14085552096366882, - 0.1321568787097931, - 0.12416868656873703, - 0.11710880696773529, - 0.11116984486579895, - 0.10651376843452454, - 0.1032676100730896, - 0.10151989012956619, - 0.10131830722093582, - 0.10266835242509842, - 0.1055331900715828, - 0.109834685921669, - 0.20656831562519073, - 0.1891295164823532, - 0.1708470582962036, - 0.15221968293190002, - 0.13375547528266907, - 0.1159580796957016, - 0.09931298345327377, - 0.08427420258522034, - 0.07125197350978851, - 0.06060149520635605, - 0.05261329561471939, - 0.04750526696443558, - 0.04541675001382828, - 0.04640468955039978, - 0.050442174077034, - 0.057419031858444214, - 0.06714498996734619, - 0.07935472577810287, - 0.09371519833803177, - 0.109834685921669, - 0.20656833052635193, - 0.17912979423999786, - 0.1511203795671463, - 0.12330412864685059, - 0.09643977880477905, - 0.07126013934612274, - 0.04845202714204788, - 0.028637588024139404, - 0.012357324361801147, - 0.00005532801151275635, - -0.007932871580123901, - -0.011389374732971191, - -0.010219871997833252, - -0.004456251859664917, - 0.005744218826293945, - 0.020103350281715393, - 0.03822943568229675, - 0.059628039598464966, - 0.08371547609567642, - 0.1098346933722496, - 0.20656833052635193, - 0.172031968832016, - 0.1371183544397354, - 0.10277983546257019, - 0.0699530616402626, - 0.03953351080417633, - 0.012350887060165405, - -0.01085333526134491, - -0.029446154832839966, - -0.04292041063308716, - -0.050908610224723816, - -0.053192853927612305, - -0.049710795283317566, - -0.040557414293289185, - -0.025982439517974854, - -0.006383359432220459, - 0.017705142498016357, - 0.045626021921634674, - 0.07661765813827515, - 0.1098346933722496, - 0.20656833052635193, - 0.16860522329807281, - 0.13035832345485687, - 0.09287094324827194, - 0.057165585458278656, - 0.024216219782829285, - -0.005078360438346863, - -0.029919102787971497, - -0.04962839186191559, - -0.0636686384677887, - -0.07165683805942535, - -0.07337509095668793, - -0.06877656280994415, - -0.05798664689064026, - -0.041299715638160706, - -0.0191708505153656, - 0.007796257734298706, - 0.038865990936756134, - 0.07319091260433197, - 0.1098347008228302, - 0.20656833052635193, - 0.16922089457511902, - 0.13157285749912262, - 0.09465120732784271, - 0.059463031589984894, - 0.026968196034431458, - -0.001946955919265747, - -0.02649366855621338, - -0.04600238800048828, - -0.059940919280052185, - -0.06792911887168884, - -0.06974908709526062, - -0.06535112857818604, - -0.05485524237155914, - -0.03854773938655853, - -0.016873404383659363, - 0.00957651436328888, - 0.04008052498102188, - 0.07380657643079758, - 0.1098347008228302 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.1035652160644531, - -1.1084612607955933, - -1.111222505569458, - -1.1117737293243408, - -1.1100997924804688, - -1.1062463521957397, - -1.1003186702728271, - -1.0924782752990723, - -1.0829391479492188, - -1.0719614028930664, - -1.0598444938659668, - -1.0469191074371338, - -1.03353750705719, - -1.0200649499893188, - -1.006868839263916, - -0.9943091869354248, - -0.9827285408973694, - -0.9724427461624146, - -0.9637324810028076, - -0.9568352699279785, - -1.1035652160644531, - -1.0989940166473389, - -1.0925462245941162, - -1.084397792816162, - -1.0747710466384888, - -1.063928484916687, - -1.0521658658981323, - -1.0398041009902954, - -1.0271804332733154, - -1.014639139175415, - -1.0025222301483154, - -0.9911603927612305, - -0.9808633923530579, - -0.9719122052192688, - -0.9645509719848633, - -0.9589804410934448, - -0.9553526043891907, - -0.9537664651870728, - -0.9542652368545532, - -0.9568352699279785, - -1.1035652160644531, - -1.0899136066436768, - -1.074633240699768, - -1.058140754699707, - -1.0408861637115479, - -1.023340106010437, - -1.005981206893921, - -0.9892828464508057, - -0.9737006425857544, - -0.9596596360206604, - -0.9475427865982056, - -0.9376806020736694, - -0.9303420782089233, - -0.9257274866104126, - -0.9239625930786133, - -0.9250956177711487, - -0.9290956258773804, - -0.9358534812927246, - -0.9451848864555359, - -0.9568352699279785, - -1.1035652160644531, - -1.0822042226791382, - -1.059424638748169, - -1.0358480215072632, - -1.0121172666549683, - -0.9888797402381897, - -0.9667693376541138, - -0.9463891983032227, - -0.9282951354980469, - -0.912980854511261, - -0.9008640050888062, - -0.8922750949859619, - -0.8874484300613403, - -0.8865156173706055, - -0.889502227306366, - -0.8963266611099243, - -0.9068028330802917, - -0.9206449389457703, - -0.9374754428863525, - -0.9568352699279785, - -1.1035652160644531, - -1.0767011642456055, - -1.0485687255859375, - -1.0199352502822876, - -0.9915816783905029, - -0.9642815589904785, - -0.9387795925140381, - -0.9157713055610657, - -0.8958843350410461, - -0.8796611428260803, - -0.8675442934036255, - -0.8598642349243164, - -0.8568305373191833, - -0.8585258722305298, - -0.8649040460586548, - -0.8757911324501038, - -0.8908900618553162, - -0.909788966178894, - -0.9319724440574646, - -0.9568352699279785, - -1.1035652160644531, - -1.0740008354187012, - -1.0432417392730713, - -1.0121268033981323, - -0.9815049171447754, - -0.952211320400238, - -0.9250450730323792, - -0.9007471203804016, - -0.8799803853034973, - -0.8633111715316772, - -0.8511943221092224, - -0.8439602851867676, - -0.8418064117431641, - -0.8447914123535156, - -0.8528338074684143, - -0.8657143712043762, - -0.8830816745758057, - -0.9044619798660278, - -0.9292721152305603, - -0.9568352699279785, - -1.1035652160644531, - -1.0743958950042725, - -1.0440208911895752, - -1.0132689476013184, - -0.982978880405426, - -0.9539769291877747, - -0.9270541071891785, - -0.902944803237915, - -0.882306694984436, - -0.8657028079032898, - -0.853585958480835, - -0.8462866544723511, - -0.8440040349960327, - -0.8468003869056702, - -0.8545993566513062, - -0.8671883344650269, - -0.8842238187789917, - -0.9052411913871765, - -0.9296671152114868, - -0.9568352699279785, - -1.1035652160644531, - -1.0778433084487915, - -1.0508219003677368, - -1.023237943649292, - -0.9958438873291016, - -0.9693870544433594, - -0.9445889592170715, - -0.9221261143684387, - -0.9026113152503967, - -0.886576771736145, - -0.8744599223136902, - -0.866591215133667, - -0.8631854057312012, - -0.864335298538208, - -0.8700095415115356, - -0.8800533413887024, - -0.8941928148269653, - -0.9120422005653381, - -0.9331145882606506, - -0.9568352699279785, - -1.1035652160644531, - -1.0839698314666748, - -1.0629076957702637, - -1.0409533977508545, - -1.0187058448791504, - -0.9967717528343201, - -0.9757495522499084, - -0.95621258020401, - -0.9386938214302063, - -0.9236711263656616, - -0.911554217338562, - -0.9026737213134766, - -0.8972718119621277, - -0.8954958319664001, - -0.8973942399024963, - -0.9029152393341064, - -0.9119082689285278, - -0.9241279363632202, - -0.9392410516738892, - -0.9568352699279785, - -1.1035652160644531, - -1.092111349105835, - -1.0789686441421509, - -1.06449556350708, - -1.0490871667861938, - -1.0331635475158691, - -1.0171589851379395, - -1.0015102624893188, - -0.9866440892219543, - -0.9729660749435425, - -0.9608491659164429, - -0.9506240487098694, - -0.9425694942474365, - -0.9369053244590759, - -0.9337860345840454, - -0.9332965612411499, - -0.9354504346847534, - -0.9401888847351074, - -0.9473825693130493, - -0.9568352699279785, - -1.1035652160644531, - -1.1013855934143066, - -1.0972641706466675, - -1.091313362121582, - -1.083695650100708, - -1.0746186971664429, - -1.0643301010131836, - -1.0531105995178223, - -1.0412660837173462, - -1.0291197299957275, - -1.017002820968628, - -1.0052460432052612, - -0.9941698312759399, - -0.9840764403343201, - -0.9752411842346191, - -0.9679051041603088, - -0.9622682332992554, - -0.958484411239624, - -0.956656813621521, - -0.9568352699279785, - -1.1035652160644531, - -1.1107876300811768, - -1.115811824798584, - -1.1185007095336914, - -1.1187809705734253, - -1.1166449785232544, - -1.112151026725769, - -1.105421781539917, - -1.0966405868530273, - -1.0860470533370972, - -1.0739301443099976, - -1.0606204271316528, - -1.0464810132980347, - -1.0318974256515503, - -1.0172674655914307, - -1.0029903650283813, - -0.98945552110672, - -0.9770320057868958, - -0.9660588502883911, - -0.9568352699279785, - -1.1035652160644531, - -1.1192985773086548, - -1.1326014995574951, - -1.143111228942871, - -1.150541067123413, - -1.1546882390975952, - -1.1554397344589233, - -1.1527750492095947, - -1.1467669010162354, - -1.1375789642333984, - -1.1254620552062988, - -1.1107467412948608, - -1.0938342809677124, - -1.075186014175415, - -1.0553107261657715, - -1.0347504615783691, - -1.0140661001205444, - -0.9938217401504517, - -0.9745697975158691, - -0.9568352699279785, - -1.1035652160644531, - -1.1259961128234863, - -1.1458139419555664, - -1.1624782085418701, - -1.1755341291427612, - -1.1846258640289307, - -1.1895051002502441, - -1.1900391578674316, - -1.1862130165100098, - -1.178131341934204, - -1.1660144329071045, - -1.1501929759979248, - -1.1310983896255493, - -1.1092514991760254, - -1.085248351097107, - -1.0597436428070068, - -1.033432960510254, - -1.007034182548523, - -0.9812673330307007, - -0.9568352699279785, - -1.1035652160644531, - -1.1301544904708862, - -1.1540173292160034, - -1.1745027303695679, - -1.191051959991455, - -1.2032134532928467, - -1.2106558084487915, - -1.213175654411316, - -1.2107044458389282, - -1.2033095359802246, - -1.191192626953125, - -1.1746842861175537, - -1.1542348861694336, - -1.1304020881652832, - -1.1038360595703125, - -1.0752613544464111, - -1.0454576015472412, - -1.01523756980896, - -0.9854257702827454, - -0.9568352699279785, - -1.1035652160644531, - -1.1313230991363525, - -1.156322717666626, - -1.1778819561004639, - -1.1954127550125122, - -1.2084370851516724, - -1.2165995836257935, - -1.2196775674819946, - -1.2175871133804321, - -1.2103852033615112, - -1.1982682943344116, - -1.1815670728683472, - -1.1607367992401123, - -1.1363458633422852, - -1.1090595722198486, - -1.0796222686767578, - -1.0488367080688477, - -1.0175429582595825, - -0.9865943789482117, - -0.9568352699279785, - -1.1035652160644531, - -1.1293753385543823, - -1.152480125427246, - -1.1722495555877686, - -1.1881442070007324, - -1.1997305154800415, - -1.2066924571990967, - -1.208840250968933, - -1.2061151266098022, - -1.1985915899276733, - -1.1864746809005737, - -1.1700950860977173, - -1.1498994827270508, - -1.126438856124878, - -1.1003530025482178, - -1.0723536014556885, - -1.043204426765442, - -1.0137003660202026, - -0.9846465587615967, - -0.9568352699279785, - -1.1035652160644531, - -1.124522089958191, - -1.1429061889648438, - -1.158215880393982, - -1.1700336933135986, - -1.178037166595459, - -1.182008147239685, - -1.181838035583496, - -1.1775317192077637, - -1.1692066192626953, - -1.1570897102355957, - -1.1415116786956787, - -1.1228972673416138, - -1.1017544269561768, - -1.0786597728729248, - -1.0542432069778442, - -1.0291707515716553, - -1.0041264295578003, - -0.97979336977005, - -0.9568352699279785, - -1.1035652160644531, - -1.1172895431518555, - -1.1286382675170898, - -1.1373018026351929, - -1.1430439949035645, - -1.1457079648971558, - -1.1452213525772095, - -1.1415971517562866, - -1.1349343061447144, - -1.1254147291183472, - -1.1132978200912476, - -1.0989142656326294, - -1.0826563835144043, - -1.0649676322937012, - -1.0463305711746216, - -1.0272533893585205, - -1.0082566738128662, - -0.9898585081100464, - -0.9725607633590698, - -0.9568352699279785, - -1.1035652160644531, - -1.1084612607955933, - -1.111222505569458, - -1.1117736101150513, - -1.1100996732711792, - -1.1062463521957397, - -1.1003186702728271, - -1.0924782752990723, - -1.0829391479492188, - -1.0719614028930664, - -1.0598444938659668, - -1.0469189882278442, - -1.03353750705719, - -1.0200649499893188, - -1.006868839263916, - -0.9943091869354248, - -0.9827284812927246, - -0.9724427461624146, - -0.9637324810028076, - -0.9568352699279785 - ], - "y": [ - 0.7916865944862366, - 0.8066845536231995, - 0.8198972344398499, - 0.8309643268585205, - 0.8395838737487793, - 0.8455207347869873, - 0.8486130833625793, - 0.8487764596939087, - 0.8460063934326172, - 0.8403785228729248, - 0.8320463299751282, - 0.8212370872497559, - 0.8082456588745117, - 0.7934264540672302, - 0.7771835923194885, - 0.7599602341651917, - 0.7422261238098145, - 0.724465012550354, - 0.7071614861488342, - 0.6907873749732971, - 0.7916865944862366, - 0.8174159526824951, - 0.8410674333572388, - 0.8619956970214844, - 0.8796300888061523, - 0.893489420413971, - 0.9031956791877747, - 0.908484160900116, - 0.9092105627059937, - 0.9053550958633423, - 0.8970229029655457, - 0.8844412565231323, - 0.8679534196853638, - 0.8480090498924255, - 0.8251522183418274, - 0.8000064492225647, - 0.7732574939727783, - 0.7456352114677429, - 0.7178928852081299, - 0.6907873749732971, - 0.7916865944862366, - 0.8252846598625183, - 0.8565901517868042, - 0.8847491145133972, - 0.9089934825897217, - 0.9286618232727051, - 0.9432177543640137, - 0.952264130115509, - 0.9555543065071106, - 0.9529983997344971, - 0.9446661472320557, - 0.9307850003242493, - 0.9117333889007568, - 0.8880311250686646, - 0.8603246808052063, - 0.829369843006134, - 0.7960109114646912, - 0.7611579895019531, - 0.7257615923881531, - 0.6907873749732971, - 0.7916865944862366, - 0.8294379711151123, - 0.8647834062576294, - 0.8967588543891907, - 0.9244920611381531, - 0.9472265839576721, - 0.9643422365188599, - 0.9753721356391907, - 0.9800154566764832, - 0.9781454801559448, - 0.9698132872581482, - 0.9552461504936218, - 0.9348413944244385, - 0.9091556072235107, - 0.8788894414901733, - 0.8448684215545654, - 0.8080206513404846, - 0.7693511843681335, - 0.7299148440361023, - 0.6907873749732971, - 0.7916865944862366, - 0.8294256925582886, - 0.8647592663764954, - 0.8967234492301941, - 0.9244464039802551, - 0.9471718072891235, - 0.9642798900604248, - 0.9753040075302124, - 0.9799433350563049, - 0.9780713319778442, - 0.9697391390800476, - 0.9551740288734436, - 0.9347732663154602, - 0.9090933203697205, - 0.8788346648216248, - 0.8448227643966675, - 0.807985246181488, - 0.7693270444869995, - 0.7299026250839233, - 0.6907873749732971, - 0.7916865944862366, - 0.8252492547035217, - 0.8565202951431274, - 0.8846467733383179, - 0.9088613390922546, - 0.9285035729408264, - 0.9430376291275024, - 0.9520671367645264, - 0.9553457498550415, - 0.95278400182724, - 0.9444518089294434, - 0.9305764436721802, - 0.9115363955497742, - 0.8878509998321533, - 0.8601664304733276, - 0.829237699508667, - 0.7959085702896118, - 0.7610881328582764, - 0.7257261872291565, - 0.6907873749732971, - 0.7916865944862366, - 0.8173612356185913, - 0.8409594297409058, - 0.8618374466896057, - 0.8794258236885071, - 0.893244743347168, - 0.9029172658920288, - 0.9081796407699585, - 0.9088882207870483, - 0.9050236940383911, - 0.8966915011405945, - 0.884118914604187, - 0.8676488995552063, - 0.8477306365966797, - 0.8249076008796692, - 0.7998021841049194, - 0.7730992436408997, - 0.7455272078514099, - 0.7178381681442261, - 0.6907873749732971, - 0.7916865944862366, - 0.8066164255142212, - 0.8197628259658813, - 0.8307673335075378, - 0.8393296003341675, - 0.8452162146568298, - 0.8482665419578552, - 0.8483973741531372, - 0.8456051349639893, - 0.8399659991264343, - 0.8316338062286377, - 0.8208358287811279, - 0.807866632938385, - 0.7930799126625061, - 0.776879072189331, - 0.7597060203552246, - 0.7420291304588318, - 0.7243306636810303, - 0.707093358039856, - 0.6907873749732971, - 0.7916865944862366, - 0.7941791415214539, - 0.7952275276184082, - 0.794803261756897, - 0.792917788028717, - 0.7896226644515991, - 0.785007655620575, - 0.7791987061500549, - 0.772354245185852, - 0.7646610140800476, - 0.756328821182251, - 0.7475849390029907, - 0.7386679649353027, - 0.7298210263252258, - 0.7212854623794556, - 0.7132941484451294, - 0.7060650587081909, - 0.6997953653335571, - 0.6946560740470886, - 0.6907873749732971, - 0.7916865944862366, - 0.7813971638679504, - 0.7700123190879822, - 0.7578425407409668, - 0.7452198266983032, - 0.7324883937835693, - 0.7199956774711609, - 0.7080823183059692, - 0.6970734000205994, - 0.6872690916061401, - 0.6789368987083435, - 0.672304093837738, - 0.667551577091217, - 0.6648090481758118, - 0.6641512513160706, - 0.6655961275100708, - 0.6691043376922607, - 0.6745800971984863, - 0.6818740963935852, - 0.6907873749732971, - 0.7916865944862366, - 0.769655704498291, - 0.7468495965003967, - 0.7238904237747192, - 0.7014043927192688, - 0.6800049543380737, - 0.6602756977081299, - 0.642754852771759, - 0.627920389175415, - 0.6161768436431885, - 0.6078447103500366, - 0.6031510829925537, - 0.6022241115570068, - 0.6050890684127808, - 0.6116677522659302, - 0.6217807531356812, - 0.6351522207260132, - 0.6514173746109009, - 0.6701326370239258, - 0.6907873749732971, - 0.7916865944862366, - 0.7602270245552063, - 0.7282494902610779, - 0.6966261863708496, - 0.6662197113037109, - 0.637859582901001, - 0.61231929063797, - 0.5902955532073975, - 0.5723890662193298, - 0.5590883493423462, - 0.5507561564445496, - 0.5476198196411133, - 0.5497648119926453, - 0.5571326613426208, - 0.5695223808288574, - 0.5865960717201233, - 0.6078879833221436, - 0.632817268371582, - 0.6607039570808411, - 0.6907873749732971, - 0.7916865944862366, - 0.7541329264640808, - 0.7162275314331055, - 0.6790042519569397, - 0.6434785723686218, - 0.6106194853782654, - 0.5813232660293579, - 0.5563890933990479, - 0.5364971160888672, - 0.5221899151802063, - 0.5138577222824097, - 0.5117278099060059, - 0.5158583521842957, - 0.5261366367340088, - 0.5422822833061218, - 0.5638549327850342, - 0.5902660489082336, - 0.6207953095436096, - 0.6546098589897156, - 0.6907873749732971, - 0.7916865944862366, - 0.7520337700843811, - 0.7120864987373352, - 0.6729342937469482, - 0.6356452703475952, - 0.6012365221977234, - 0.5706465840339661, - 0.5447099208831787, - 0.5241339802742004, - 0.5094800591468811, - 0.5011478662490845, - 0.4993646740913391, - 0.5041791200637817, - 0.5154598951339722, - 0.5328993201255798, - 0.5560216307640076, - 0.5841960906982422, - 0.6166542768478394, - 0.6525107026100159, - 0.6907873749732971, - 0.7916865944862366, - 0.7541570663452148, - 0.716275155544281, - 0.6790741086006165, - 0.6435686945915222, - 0.6107274293899536, - 0.5814461708068848, - 0.5565235018730164, - 0.536639392375946, - 0.5223361253738403, - 0.5140039324760437, - 0.5118700861930847, - 0.5159927606582642, - 0.5262594819068909, - 0.5423902273178101, - 0.5639450550079346, - 0.5903359055519104, - 0.6208429336547852, - 0.6546339988708496, - 0.6907873749732971, - 0.7916865944862366, - 0.760272741317749, - 0.7283396124839783, - 0.6967582702636719, - 0.6663902401924133, - 0.6380637884140015, - 0.6125516891479492, - 0.5905497074127197, - 0.572658121585846, - 0.5593649744987488, - 0.5510327816009521, - 0.5478888750076294, - 0.5500189661979675, - 0.5573650002479553, - 0.5697265863418579, - 0.5867666006088257, - 0.6080200672149658, - 0.6329073905944824, - 0.6607496738433838, - 0.6907873749732971, - 0.7916865944862366, - 0.7697179913520813, - 0.7469724416732788, - 0.7240704894065857, - 0.701636791229248, - 0.6802833080291748, - 0.6605924367904663, - 0.6431013941764832, - 0.6282871961593628, - 0.6165539622306824, - 0.6082217693328857, - 0.6035178899765015, - 0.602570652961731, - 0.6054058074951172, - 0.6119461059570312, - 0.6220131516456604, - 0.6353322863578796, - 0.6515402793884277, - 0.6701949238777161, - 0.6907873749732971, - 0.7916865944862366, - 0.7814692854881287, - 0.770154595375061, - 0.7580510973930359, - 0.7454889416694641, - 0.7328107953071594, - 0.7203624844551086, - 0.7084836363792419, - 0.6974981427192688, - 0.6877057552337646, - 0.679373562335968, - 0.6727288961410522, - 0.6679528951644897, - 0.6651758551597595, - 0.6644736528396606, - 0.6658653020858765, - 0.6693128943443298, - 0.6747223734855652, - 0.6819462180137634, - 0.6907873749732971, - 0.7916865944862366, - 0.7942532896995544, - 0.7953738570213318, - 0.7950177192687988, - 0.7931945323944092, - 0.7899541258811951, - 0.7853848338127136, - 0.7796112895011902, - 0.7727910280227661, - 0.7651100158691406, - 0.756777822971344, - 0.7480217218399048, - 0.739080548286438, - 0.7301982045173645, - 0.7216169238090515, - 0.7135708928108215, - 0.7062795162200928, - 0.6999416351318359, - 0.6947302222251892, - 0.6907873749732971, - 0.7916865944862366, - 0.8066845536231995, - 0.8198972940444946, - 0.8309643268585205, - 0.8395838737487793, - 0.8455207943916321, - 0.8486130833625793, - 0.8487764596939087, - 0.846006453037262, - 0.8403785824775696, - 0.832046389579773, - 0.8212371468544006, - 0.8082457184791565, - 0.7934264540672302, - 0.7771836519241333, - 0.7599602341651917, - 0.7422261238098145, - 0.7244650721549988, - 0.7071614861488342, - 0.6907873749732971 - ], - "z": [ - 0.3077084720134735, - 0.264889121055603, - 0.222450852394104, - 0.1815512478351593, - 0.1433059573173523, - 0.10875821113586426, - 0.07885035872459412, - 0.054398223757743835, - 0.03606879711151123, - 0.02436208724975586, - 0.019597351551055908, - 0.02190461754798889, - 0.031220927834510803, - 0.047292158007621765, - 0.06967991590499878, - 0.09777356684207916, - 0.13080677390098572, - 0.16787844896316528, - 0.20797738432884216, - 0.25000977516174316, - 0.3077084720134735, - 0.27019840478897095, - 0.23292459547519684, - 0.1969037652015686, - 0.16311845183372498, - 0.13249024748802185, - 0.10585460066795349, - 0.08393806219100952, - 0.0673384815454483, - 0.0565086305141449, - 0.05174390971660614, - 0.053174301981925964, - 0.06076076626777649, - 0.07429639995098114, - 0.09341196715831757, - 0.11758607625961304, - 0.14615929126739502, - 0.17835217714309692, - 0.21328666806221008, - 0.25000977516174316, - 0.3077084720134735, - 0.2795298397541046, - 0.25133293867111206, - 0.2238868772983551, - 0.19794030487537384, - 0.17420098185539246, - 0.15331648290157318, - 0.13585644960403442, - 0.12229713797569275, - 0.11300846934318542, - 0.10824374854564667, - 0.10813295841217041, - 0.11267915368080139, - 0.12175828218460083, - 0.13512273132801056, - 0.1524079293012619, - 0.17314240336418152, - 0.19676053524017334, - 0.22261810302734375, - 0.25000977516174316, - 0.3077084422111511, - 0.2918722331523895, - 0.2756810486316681, - 0.25957655906677246, - 0.24399803578853607, - 0.22937044501304626, - 0.2160927653312683, - 0.20452716946601868, - 0.1949891895055771, - 0.18773895502090454, - 0.18297423422336578, - 0.18082499504089355, - 0.18134987354278564, - 0.18453456461429596, - 0.19029217958450317, - 0.19846566021442413, - 0.20883208513259888, - 0.22110864520072937, - 0.23496048152446747, - 0.25000977516174316, - 0.3077084422111511, - 0.3058880865573883, - 0.3033304512500763, - 0.3001052737236023, - 0.29630059003829956, - 0.29202014207839966, - 0.2873806655406952, - 0.2825087606906891, - 0.2775373160839081, - 0.2726019024848938, - 0.26783719658851624, - 0.26337310671806335, - 0.25933146476745605, - 0.25582247972488403, - 0.25294187664985657, - 0.2507682144641876, - 0.2493607997894287, - 0.24875803291797638, - 0.24897633492946625, - 0.25000977516174316, - 0.3077084422111511, - 0.32005855441093445, - 0.33128485083580017, - 0.3410811424255371, - 0.34918013215065, - 0.3553609549999237, - 0.35945501923561096, - 0.3613506555557251, - 0.3609961271286011, - 0.3584010899066925, - 0.35363638401031494, - 0.34683191776275635, - 0.33817335963249207, - 0.3278968334197998, - 0.316282719373703, - 0.3036477565765381, - 0.29033663868904114, - 0.27671244740486145, - 0.2631468176841736, - 0.25000977516174316, - 0.3077084422111511, - 0.33284807205200195, - 0.3565150201320648, - 0.37806373834609985, - 0.39690637588500977, - 0.41252899169921875, - 0.42450547218322754, - 0.43250909447669983, - 0.43632155656814575, - 0.43583881855010986, - 0.4310741126537323, - 0.422157347202301, - 0.4093317985534668, - 0.39294731616973877, - 0.37345078587532043, - 0.3513740301132202, - 0.3273192346096039, - 0.3019426167011261, - 0.2759363353252411, - 0.25000977516174316, - 0.3077084422111511, - 0.34287068247795105, - 0.3762868642807007, - 0.4070454239845276, - 0.4343074560165405, - 0.4573292136192322, - 0.4754828214645386, - 0.488273024559021, - 0.4953509569168091, - 0.49652355909347534, - 0.4917588233947754, - 0.48118677735328674, - 0.4650956988334656, - 0.44392460584640503, - 0.4182509779930115, - 0.388775110244751, - 0.356300950050354, - 0.3217144310474396, - 0.2859589457511902, - 0.2500097453594208, - 0.3077084422111511, - 0.34904026985168457, - 0.3884577453136444, - 0.42488566040992737, - 0.4573303461074829, - 0.48490679264068604, - 0.5068628191947937, - 0.522599458694458, - 0.5316875576972961, - 0.5338791012763977, - 0.5291143655776978, - 0.5175233483314514, - 0.49942219257354736, - 0.47530463337898254, - 0.44582855701446533, - 0.41179800033569336, - 0.3741411864757538, - 0.3338853418827057, - 0.2921285331249237, - 0.2500097453594208, - 0.3077084422111511, - 0.35068827867507935, - 0.3917088210582733, - 0.4296511113643646, - 0.4634801745414734, - 0.4922732710838318, - 0.5152449607849121, - 0.5317686796188354, - 0.5413937568664551, - 0.5438574552536011, - 0.5390927791595459, - 0.5272295475006104, - 0.5085914134979248, - 0.48368680477142334, - 0.4531950354576111, - 0.41794782876968384, - 0.37890663743019104, - 0.3371364176273346, - 0.2937765419483185, - 0.2500097453594208, - 0.3077084422111511, - 0.3476361334323883, - 0.38568776845932007, - 0.42082536220550537, - 0.4520905315876007, - 0.4786303639411926, - 0.4997209906578064, - 0.5147870779037476, - 0.5234176516532898, - 0.5253773331642151, - 0.5206125974655151, - 0.5092535018920898, - 0.49160975217819214, - 0.46816280484199524, - 0.4395521283149719, - 0.40655815601348877, - 0.3700808882713318, - 0.33111533522605896, - 0.29072436690330505, - 0.2500097453594208, - 0.3077084422111511, - 0.3402145504951477, - 0.3710470199584961, - 0.3993648588657379, - 0.4243956506252289, - 0.44545650482177734, - 0.46197307109832764, - 0.4734947681427002, - 0.4797073006629944, - 0.48044121265411377, - 0.4756765067577362, - 0.46554315090179443, - 0.45031747221946716, - 0.43041491508483887, - 0.40637826919555664, - 0.37886327505111694, - 0.34862038493156433, - 0.3164746165275574, - 0.28330278396606445, - 0.2500097453594208, - 0.3077084422111511, - 0.3292278051376343, - 0.3493732213973999, - 0.36759519577026367, - 0.3833966851234436, - 0.3963466286659241, - 0.4060918688774109, - 0.41236650943756104, - 0.41499942541122437, - 0.41391879320144653, - 0.4091540575027466, - 0.4008352756500244, - 0.389189213514328, - 0.37453368306159973, - 0.35726842284202576, - 0.33786430954933167, - 0.3168506920337677, - 0.2948007881641388, - 0.272316038608551, - 0.25000977516174316, - 0.3077084422111511, - 0.3158664405345917, - 0.3230149447917938, - 0.32895901799201965, - 0.3335364758968353, - 0.3366224765777588, - 0.3381328582763672, - 0.33802640438079834, - 0.33630600571632385, - 0.33301863074302673, - 0.3282538950443268, - 0.3221418261528015, - 0.3148491084575653, - 0.30657467246055603, - 0.2975442409515381, - 0.2880041003227234, - 0.2782145142555237, - 0.2684425413608551, - 0.2589546740055084, - 0.25000977516174316, - 0.3077084422111511, - 0.3015784025192261, - 0.2948286235332489, - 0.2876432538032532, - 0.2802182734012604, - 0.2727562189102173, - 0.2654606103897095, - 0.25853049755096436, - 0.2521549165248871, - 0.24650771915912628, - 0.24174299836158752, - 0.23799070715904236, - 0.23535320162773132, - 0.23390242457389832, - 0.2336779534816742, - 0.23468589782714844, - 0.2368987798690796, - 0.24025622010231018, - 0.24466665089130402, - 0.25000977516174316, - 0.3077084422111511, - 0.2879120409488678, - 0.26786866784095764, - 0.2481250911951065, - 0.22921985387802124, - 0.21166864037513733, - 0.1959502249956131, - 0.18249332904815674, - 0.17166507244110107, - 0.16376076638698578, - 0.15899604558944702, - 0.15750087797641754, - 0.1593160331249237, - 0.16439202427864075, - 0.17259037494659424, - 0.1836874783039093, - 0.19738060235977173, - 0.21329624950885773, - 0.23100027441978455, - 0.25000977516174316, - 0.3077084720134735, - 0.2763482332229614, - 0.24505650997161865, - 0.21468684077262878, - 0.1860676109790802, - 0.15997949242591858, - 0.1371341198682785, - 0.11815458536148071, - 0.10355868935585022, - 0.09374454617500305, - 0.0889798253774643, - 0.08939450979232788, - 0.09497728943824768, - 0.10557591915130615, - 0.12090122699737549, - 0.14053523540496826, - 0.1639423668384552, - 0.19048410654067993, - 0.21943649649620056, - 0.25000977516174316, - 0.3077084720134735, - 0.26814019680023193, - 0.22886431217193604, - 0.1909521520137787, - 0.1554378718137741, - 0.12329021096229553, - 0.09538604319095612, - 0.07248653471469879, - 0.05521634221076965, - 0.044046565890312195, - 0.03928184509277344, - 0.041052162647247314, - 0.04930923879146576, - 0.06382784247398376, - 0.08421191573143005, - 0.10990548133850098, - 0.1402076780796051, - 0.17429189383983612, - 0.21122844517230988, - 0.25000977516174316, - 0.3077084720134735, - 0.2641773521900177, - 0.22104670107364655, - 0.1794930398464203, - 0.14064982533454895, - 0.10557658970355988, - 0.07523004710674286, - 0.05043797194957733, - 0.031876638531684875, - 0.02005237340927124, - 0.015287637710571289, - 0.017712444067001343, - 0.027260690927505493, - 0.04367184638977051, - 0.0664982944726944, - 0.09511741995811462, - 0.1287485659122467, - 0.16647428274154663, - 0.20726558566093445, - 0.25000977516174316, - 0.3077084720134735, - 0.264889121055603, - 0.2224508672952652, - 0.1815512627363205, - 0.1433059722185135, - 0.10875822603702545, - 0.07885037362575531, - 0.054398223757743835, - 0.03606879711151123, - 0.02436208724975586, - 0.019597351551055908, - 0.02190461754798889, - 0.031220927834510803, - 0.04729217290878296, - 0.06967993080615997, - 0.09777358174324036, - 0.1308067888021469, - 0.16787844896316528, - 0.20797738432884216, - 0.25000977516174316 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.1751340627670288, - -1.1814395189285278, - -1.1862353086471558, - -1.189390778541565, - -1.1908197402954102, - -1.1904830932617188, - -1.1883902549743652, - -1.1845982074737549, - -1.1792104244232178, - -1.1723737716674805, - -1.1642749309539795, - -1.1551345586776733, - -1.1452021598815918, - -1.1347485780715942, - -1.1240589618682861, - -1.1134250164031982, - -1.103136658668518, - -1.0934746265411377, - -1.084702491760254, - -1.0770593881607056, - -1.1751340627670288, - -1.171156644821167, - -1.1659501791000366, - -1.1596565246582031, - -1.1524475812911987, - -1.1445196866989136, - -1.1360893249511719, - -1.127386450767517, - -1.1186484098434448, - -1.110113501548767, - -1.1020145416259766, - -1.0945725440979004, - -1.087990403175354, - -1.0824476480484009, - -1.078095555305481, - -1.0750528573989868, - -1.0734025239944458, - -1.0731894969940186, - -1.074419617652893, - -1.0770593881607056, - -1.1751340627670288, - -1.161232352256775, - -1.1463723182678223, - -1.130959153175354, - -1.1154133081436157, - -1.100158929824829, - -1.0856120586395264, - -1.072169542312622, - -1.0601979494094849, - -1.0500240325927734, - -1.041925072669983, - -1.0361220836639404, - -1.0327733755111694, - -1.0319703817367554, - -1.0337347984313965, - -1.0380187034606934, - -1.0447050333023071, - -1.0536116361618042, - -1.064495325088501, - -1.0770593881607056, - -1.1751340627670288, - -1.1527420282363892, - -1.1296231746673584, - -1.1064082384109497, - -1.0837302207946777, - -1.0622079372406006, - -1.0424283742904663, - -1.0249310731887817, - -1.0101932287216187, - -0.9986169338226318, - -0.9905180335044861, - -0.9861173033714294, - -0.9855349063873291, - -0.9887865781784058, - -0.995783805847168, - -1.0063356161117554, - -1.0201541185379028, - -1.0368626117706299, - -1.0560050010681152, - -1.0770593881607056, - -1.1751340627670288, - -1.1466057300567627, - -1.1175180673599243, - -1.0886644124984741, - -1.0608317852020264, - -1.0347793102264404, - -1.0112178325653076, - -0.9907900094985962, - -0.974052906036377, - -0.961463212966919, - -0.9533642530441284, - -0.9499769806861877, - -0.9513938426971436, - -0.9575760960578918, - -0.9683551788330078, - -0.9834370613098145, - -1.0024102926254272, - -1.0247573852539062, - -1.0498688220977783, - -1.0770593881607056, - -1.1751340627670288, - -1.1434885263442993, - -1.1113685369491577, - -1.0796504020690918, - -1.049199104309082, - -1.0208454132080078, - -0.9953627586364746, - -0.9734461307525635, - -0.9556933641433716, - -0.9425888061523438, - -0.934489905834198, - -0.9316174983978271, - -0.9340499639511108, - -0.9417209625244141, - -0.9544212818145752, - -0.9718044996261597, - -0.9933963418006897, - -1.0186078548431396, - -1.0467514991760254, - -1.0770593881607056, - -1.1751340627670288, - -1.1437280178070068, - -1.111841082572937, - -1.0803430080413818, - -1.0500930547714233, - -1.021916151046753, - -0.9965811371803284, - -0.9747788906097412, - -0.9571042060852051, - -0.9440392255783081, - -0.9359403252601624, - -0.9330283403396606, - -0.9353827834129333, - -0.9429394006729126, - -0.9554920196533203, - -0.9726983308792114, - -0.9940890073776245, - -1.019080400466919, - -1.0469911098480225, - -1.0770593881607056, - -1.1751340627670288, - -1.1472984552383423, - -1.118884563446045, - -1.0906673669815063, - -1.063416600227356, - -1.0378755331039429, - -1.0147409439086914, - -0.9946439266204834, - -0.9781324863433838, - -0.9656572341918945, - -0.957558274269104, - -0.9540566205978394, - -0.9552477598190308, - -0.9610992670059204, - -0.9714514017105103, - -0.9860219359397888, - -1.0044132471084595, - -1.0261238813400269, - -1.0505614280700684, - -1.0770593881607056, - -1.1751340627670288, - -1.1538127660751343, - -1.1317355632781982, - -1.1095044612884521, - -1.0877258777618408, - -1.066994071006775, - -1.0478744506835938, - -1.0308884382247925, - -1.0164995193481445, - -1.005100131034851, - -0.9970011711120605, - -0.9924236536026001, - -0.9914923310279846, - -0.994232714176178, - -1.0005699396133423, - -1.0103312730789185, - -1.0232503414154053, - -1.0389748811721802, - -1.0570757389068604, - -1.0770593881607056, - -1.1751340627670288, - -1.1625651121139526, - -1.1490014791488647, - -1.1348130702972412, - -1.1203868389129639, - -1.1061164140701294, - -1.0923908948898315, - -1.0795849561691284, - -1.0680476427078247, - -1.0580936670303345, - -1.049994707107544, - -1.0439716577529907, - -1.0401887893676758, - -1.0387492179870605, - -1.0396922826766968, - -1.042992115020752, - -1.0485589504241943, - -1.0562407970428467, - -1.0658280849456787, - -1.0770593881607056, - -1.1751340627670288, - -1.1726070642471313, - -1.168811321258545, - -1.1638505458831787, - -1.1578599214553833, - -1.1510028839111328, - -1.1434664726257324, - -1.1354562044143677, - -1.1271907091140747, - -1.1188952922821045, - -1.110796332359314, - -1.1031147241592407, - -1.096060037612915, - -1.0898246765136719, - -1.0845787525177002, - -1.080465316772461, - -1.0775965452194214, - -1.0760507583618164, - -1.0758700370788574, - -1.0770593881607056, - -1.1751340627670288, - -1.1828503608703613, - -1.1890184879302979, - -1.1934703588485718, - -1.1960844993591309, - -1.1967893838882446, - -1.195566177368164, - -1.1924479007720947, - -1.1875196695327759, - -1.1809160709381104, - -1.1728172302246094, - -1.1634438037872314, - -1.153051733970642, - -1.1419243812561035, - -1.1303653717041016, - -1.118689775466919, - -1.1072163581848145, - -1.0962578058242798, - -1.0861133337020874, - -1.0770593881607056, - -1.1751340627670288, - -1.1921849250793457, - -1.2074331045150757, - -1.220462679862976, - -1.2309181690216064, - -1.2385144233703613, - -1.243044137954712, - -1.2443839311599731, - -1.2424970865249634, - -1.237435221672058, - -1.2293362617492676, - -1.218421220779419, - -1.2049877643585205, - -1.189402461051941, - -1.1720902919769287, - -1.153523564338684, - -1.1342085599899292, - -1.1146724224090576, - -1.0954478979110718, - -1.0770593881607056, - -1.1751340627670288, - -1.1995993852615356, - -1.222059726715088, - -1.241902470588684, - -1.2585862874984741, - -1.2716562747955322, - -1.280755639076233, - -1.2856364250183105, - -1.2861652374267578, - -1.2823278903961182, - -1.2742289304733276, - -1.2620893716812134, - -1.246240258216858, - -1.227113962173462, - -1.2052321434020996, - -1.1811916828155518, - -1.1556484699249268, - -1.1292990446090698, - -1.1028623580932617, - -1.0770593881607056, - -1.1751340627670288, - -1.2042900323867798, - -1.2313132286071777, - -1.255466341972351, - -1.2760906219482422, - -1.2926234006881714, - -1.3046138286590576, - -1.3117347955703735, - -1.3137919902801514, - -1.3107292652130127, - -1.3026304244995117, - -1.2897160053253174, - -1.272338628768921, - -1.2509721517562866, - -1.2261992692947388, - -1.1986960172653198, - -1.1692123413085938, - -1.1385525465011597, - -1.1075531244277954, - -1.0770593881607056, - -1.1751340627670288, - -1.2057487964630127, - -1.2341909408569336, - -1.2596845626831055, - -1.281534194946289, - -1.29914391040802, - -1.3120334148406982, - -1.319851040840149, - -1.3223834037780762, - -1.3195617198944092, - -1.3114627599716187, - -1.2983075380325317, - -1.2804548740386963, - -1.2583916187286377, - -1.2327197790145874, - -1.2041395902633667, - -1.1734304428100586, - -1.1414302587509155, - -1.1090118885040283, - -1.0770593881607056, - -1.1751340627670288, - -1.2038174867630005, - -1.2303810119628906, - -1.2540998458862305, - -1.2743271589279175, - -1.290511131286621, - -1.3022103309631348, - -1.3091055154800415, - -1.3110086917877197, - -1.3078681230545044, - -1.2997691631317139, - -1.2869328260421753, - -1.2697093486785889, - -1.2485685348510742, - -1.2240869998931885, - -1.1969325542449951, - -1.1678458452224731, - -1.1376203298568726, - -1.1070805788040161, - -1.0770593881607056, - -1.1751340627670288, - -1.1987054347991943, - -1.2202962636947632, - -1.2393176555633545, - -1.2552505731582642, - -1.2676604986190796, - -1.2762089967727661, - -1.2806627750396729, - -1.280900478363037, - -1.276915431022644, - -1.2688164710998535, - -1.2568244934082031, - -1.2412667274475098, - -1.2225673198699951, - -1.201236367225647, - -1.1778558492660522, - -1.1530635356903076, - -1.1275355815887451, - -1.1019684076309204, - -1.0770593881607056, - -1.1751340627670288, - -1.1909664869308472, - -1.2050296068191528, - -1.2169395685195923, - -1.2263715267181396, - -1.2330682277679443, - -1.236847162246704, - -1.2376049757003784, - -1.235321283340454, - -1.2300580739974976, - -1.221959114074707, - -1.2112452983856201, - -1.1982089281082153, - -1.1832053661346436, - -1.1666442155838013, - -1.1489769220352173, - -1.1306854486465454, - -1.1122689247131348, - -1.0942295789718628, - -1.0770593881607056, - -1.1751340627670288, - -1.1814395189285278, - -1.1862353086471558, - -1.189390778541565, - -1.1908196210861206, - -1.1904830932617188, - -1.1883902549743652, - -1.1845982074737549, - -1.1792104244232178, - -1.1723737716674805, - -1.16427481174469, - -1.1551345586776733, - -1.1452020406723022, - -1.1347485780715942, - -1.1240589618682861, - -1.1134250164031982, - -1.103136658668518, - -1.0934746265411377, - -1.084702491760254, - -1.0770593881607056 - ], - "y": [ - 0.8265793323516846, - 0.8435394763946533, - 0.859123706817627, - 0.8729068636894226, - 0.8845130205154419, - 0.8936254978179932, - 0.8999958634376526, - 0.9034502506256104, - 0.9038944244384766, - 0.9013163447380066, - 0.8957862854003906, - 0.8874551057815552, - 0.8765500783920288, - 0.863368570804596, - 0.8482702970504761, - 0.8316669464111328, - 0.8140115141868591, - 0.7957855463027954, - 0.7774862051010132, - 0.7596126794815063, - 0.8265792727470398, - 0.8551357388496399, - 0.8819999694824219, - 0.9064390659332275, - 0.9277864694595337, - 0.9454598426818848, - 0.9589771628379822, - 0.9679696559906006, - 0.9721920490264893, - 0.9715291857719421, - 0.9659991264343262, - 0.9557527303695679, - 0.941069483757019, - 0.9223499298095703, - 0.9001046419143677, - 0.8749403953552246, - 0.8475436568260193, - 0.8186617493629456, - 0.7890824675559998, - 0.7596126794815063, - 0.8265792727470398, - 0.8635879755020142, - 0.8986738920211792, - 0.9308798313140869, - 0.9593274593353271, - 0.9832406640052795, - 1.001967191696167, - 1.0149964094161987, - 1.02197265625, - 1.0227056741714478, - 1.0171756744384766, - 1.0055333375930786, - 0.9880961775779724, - 0.9653400182723999, - 0.9378854632377625, - 0.9064813852310181, - 0.8719844818115234, - 0.8353356719017029, - 0.797534704208374, - 0.7596126794815063, - 0.8265792727470398, - 0.8679803013801575, - 0.9073386192321777, - 0.9435807466506958, - 0.9757180213928223, - 1.0028738975524902, - 1.0243074893951416, - 1.0394341945648193, - 1.0478415489196777, - 1.0493000745773315, - 1.0437700748443604, - 1.0314022302627563, - 1.0125341415405273, - 0.987680196762085, - 0.9575186371803284, - 0.9228719472885132, - 0.8846853971481323, - 0.8440004587173462, - 0.8019270300865173, - 0.7596126794815063, - 0.8265792727470398, - 0.8678366541862488, - 0.9070552587509155, - 0.9431654214859009, - 0.975182056427002, - 1.0022318363189697, - 1.0235768556594849, - 1.0386351346969604, - 1.0469956398010254, - 1.0484304428100586, - 1.0429003238677979, - 1.030556321144104, - 1.011734962463379, - 0.9869496822357178, - 0.9568765759468079, - 0.9223359823226929, - 0.8842700123786926, - 0.843717098236084, - 0.8017833828926086, - 0.7596126794815063, - 0.8265792727470398, - 0.8631726503372192, - 0.8978545069694519, - 0.9296787977218628, - 0.9577775001525879, - 0.9813840985298157, - 0.9998546838760376, - 1.0126854181289673, - 1.0195263624191284, - 1.020190954208374, - 1.0146608352661133, - 1.003087043762207, - 0.9857853055000305, - 0.9632274508476257, - 0.9360288977622986, - 0.9049314856529236, - 0.8707834482192993, - 0.8345163464546204, - 0.7971193790435791, - 0.7596126794815063, - 0.8265792727470398, - 0.8544937372207642, - 0.8807333707809448, - 0.9045825004577637, - 0.9253905415534973, - 0.9425899982452393, - 0.9557116031646729, - 0.9643974304199219, - 0.9684106707572937, - 0.9676417708396912, - 0.9621117115020752, - 0.9519713521003723, - 0.9374972581863403, - 0.9190843105316162, - 0.8972347378730774, - 0.872544527053833, - 0.8456870913505554, - 0.8173952102661133, - 0.788440465927124, - 0.7596126794815063, - 0.8265793323516846, - 0.8427402973175049, - 0.8575471639633179, - 0.8705959916114807, - 0.88153076171875, - 0.8900532722473145, - 0.89593106508255, - 0.899003803730011, - 0.8991876244544983, - 0.8964775800704956, - 0.8909474611282349, - 0.8827483057975769, - 0.8721036314964294, - 0.8593038320541382, - 0.8446980714797974, - 0.8286847472190857, - 0.8117005825042725, - 0.7942090034484863, - 0.7766870856285095, - 0.7596126794815063, - 0.8265793323516846, - 0.8291861414909363, - 0.8308085799217224, - 0.8314022421836853, - 0.8309510946273804, - 0.8294672966003418, - 0.8269913792610168, - 0.8235909342765808, - 0.8193586468696594, - 0.8144099712371826, - 0.8088799118995667, - 0.8029192686080933, - 0.7966907620429993, - 0.790364146232605, - 0.7841120362281799, - 0.7781050205230713, - 0.7725068926811218, - 0.7674703598022461, - 0.7631328701972961, - 0.7596126794815063, - 0.8265793323516846, - 0.8152999877929688, - 0.803415060043335, - 0.7912485599517822, - 0.7791325449943542, - 0.7673973441123962, - 0.7563631534576416, - 0.746330976486206, - 0.7375743985176086, - 0.7303323149681091, - 0.7248022556304932, - 0.7211350798606873, - 0.7194308042526245, - 0.7197359204292297, - 0.7220420837402344, - 0.7262864708900452, - 0.7323532104492188, - 0.7400768399238586, - 0.7492467164993286, - 0.7596126794815063, - 0.8265793323516846, - 0.8025866746902466, - 0.7783350944519043, - 0.7544862031936646, - 0.7316904664039612, - 0.7105697393417358, - 0.6917001008987427, - 0.675596296787262, - 0.6626974940299988, - 0.6533557176589966, - 0.6478256583213806, - 0.6462581753730774, - 0.6486960649490356, - 0.655072808265686, - 0.665214478969574, - 0.6788443922996521, - 0.6955908536911011, - 0.7149969339370728, - 0.7365334033966064, - 0.7596127390861511, - 0.8265793323516846, - 0.7924237847328186, - 0.7582865953445435, - 0.7250989079475403, - 0.6937659978866577, - 0.6651425957679749, - 0.6400094032287598, - 0.619051992893219, - 0.6028420925140381, - 0.5918217897415161, - 0.5862917304039001, - 0.5864027738571167, - 0.5921518206596375, - 0.6033821105957031, - 0.619787335395813, - 0.6409199833869934, - 0.6662035584449768, - 0.6949484348297119, - 0.7263705134391785, - 0.7596127390861511, - 0.8265793323516846, - 0.7859127521514893, - 0.7454420924186707, - 0.7062712907791138, - 0.669468879699707, - 0.6360386610031128, - 0.6068925857543945, - 0.5828256011009216, - 0.5644943118095398, - 0.552398681640625, - 0.546868622303009, - 0.5480549931526184, - 0.5559254288673401, - 0.5702652931213379, - 0.5906834006309509, - 0.616622805595398, - 0.6473759412765503, - 0.6821038722991943, - 0.7198594808578491, - 0.7596127390861511, - 0.8265793323516846, - 0.7837589979171753, - 0.741193413734436, - 0.7000435590744019, - 0.6614319682121277, - 0.6264117956161499, - 0.5959383249282837, - 0.5708428621292114, - 0.5518097877502441, - 0.5393584966659546, - 0.5338284373283386, - 0.5353704690933228, - 0.5439426898956299, - 0.5593110918998718, - 0.581056535243988, - 0.6085858941078186, - 0.6411482095718384, - 0.6778552532196045, - 0.7177057266235352, - 0.7596127390861511, - 0.8265793323516846, - 0.7861960530281067, - 0.7460010647773743, - 0.7070906162261963, - 0.6705262660980225, - 0.6373052597045898, - 0.6083337664604187, - 0.5844021439552307, - 0.566163182258606, - 0.5541143417358398, - 0.5485842227935791, - 0.5497238636016846, - 0.5575019717216492, - 0.5717065334320068, - 0.591949999332428, - 0.6176801919937134, - 0.6481952667236328, - 0.6826629042625427, - 0.7201428413391113, - 0.7596127390861511, - 0.8265793323516846, - 0.7929598093032837, - 0.7593439817428589, - 0.7266488075256348, - 0.6957662105560303, - 0.6675384640693665, - 0.6427356004714966, - 0.6220341920852661, - 0.6059988737106323, - 0.5950671434402466, - 0.5895370244979858, - 0.5895595550537109, - 0.5951340198516846, - 0.6061083078384399, - 0.6221832036972046, - 0.6429201364517212, - 0.6677534580230713, - 0.6960058212280273, - 0.7269065380096436, - 0.7596127390861511, - 0.8265793323516846, - 0.8033172488212585, - 0.7797763347625732, - 0.756598711013794, - 0.7344167232513428, - 0.7138352990150452, - 0.6954159140586853, - 0.6796610355377197, - 0.6670002937316895, - 0.6577791571617126, - 0.6522490978240967, - 0.6505609750747681, - 0.6527608633041382, - 0.6587886810302734, - 0.6684800386428833, - 0.6815706491470337, - 0.6977033615112305, - 0.7164381742477417, - 0.7372639775276184, - 0.7596127390861511, - 0.8265793323516846, - 0.8161459565162659, - 0.8050838708877563, - 0.793694794178009, - 0.7822893857955933, - 0.7711787819862366, - 0.760666012763977, - 0.7510378360748291, - 0.7425568699836731, - 0.7354544997215271, - 0.7299244403839111, - 0.7261175513267517, - 0.7241376638412476, - 0.7240387201309204, - 0.7258235216140747, - 0.729443371295929, - 0.7347994446754456, - 0.7417457103729248, - 0.7500926852226257, - 0.7596126794815063, - 0.8265793323516846, - 0.830055832862854, - 0.8325242400169373, - 0.8339171409606934, - 0.8341965079307556, - 0.8333548307418823, - 0.8314149379730225, - 0.8284298181533813, - 0.8244808912277222, - 0.819675862789154, - 0.8141458034515381, - 0.8080415725708008, - 0.8015296459197998, - 0.7947876453399658, - 0.7879995703697205, - 0.7813504934310913, - 0.7750217914581299, - 0.7691860795021057, - 0.7640026211738586, - 0.7596126794815063, - 0.8265793323516846, - 0.8435394763946533, - 0.859123706817627, - 0.8729069232940674, - 0.8845130205154419, - 0.8936255574226379, - 0.8999958634376526, - 0.9034502506256104, - 0.9038944840431213, - 0.9013164043426514, - 0.8957863450050354, - 0.8874551653862, - 0.8765500783920288, - 0.8633686304092407, - 0.8482702970504761, - 0.8316669464111328, - 0.8140115141868591, - 0.7957855463027954, - 0.777486264705658, - 0.7596126794815063 - ], - "z": [ - 0.3909462094306946, - 0.34486091136932373, - 0.2994818091392517, - 0.25604671239852905, - 0.21574044227600098, - 0.17966245114803314, - 0.14879681169986725, - 0.12398546934127808, - 0.10590526461601257, - 0.09504932165145874, - 0.0917137861251831, - 0.0959896445274353, - 0.10776025056838989, - 0.12670455873012543, - 0.1523057520389557, - 0.18386556208133698, - 0.22052311897277832, - 0.2612784802913666, - 0.30501991510391235, - 0.35055431723594666, - 0.3909462094306946, - 0.3506027162075043, - 0.31080880761146545, - 0.27264997363090515, - 0.23716701567173004, - 0.20532788336277008, - 0.1780010461807251, - 0.15593187510967255, - 0.13972243666648865, - 0.12981480360031128, - 0.12647926807403564, - 0.12980681657791138, - 0.13970665633678436, - 0.1559087634086609, - 0.17797119915485382, - 0.20529215037822723, - 0.23712638020515442, - 0.2726054787635803, - 0.3107617497444153, - 0.35055431723594666, - 0.3909461796283722, - 0.3606865406036377, - 0.33070138096809387, - 0.3018086552619934, - 0.2747964859008789, - 0.25040167570114136, - 0.22928965091705322, - 0.21203631162643433, - 0.19911226630210876, - 0.19087007641792297, - 0.18753454089164734, - 0.1891966462135315, - 0.19581109285354614, - 0.2071973830461502, - 0.2230449765920639, - 0.2429215908050537, - 0.2662850618362427, - 0.29249805212020874, - 0.3208455443382263, - 0.35055431723594666, - 0.3909461796283722, - 0.374019593000412, - 0.3570038080215454, - 0.3403629958629608, - 0.3245510756969452, - 0.30999934673309326, - 0.29710474610328674, - 0.2862189710140228, - 0.2776390314102173, - 0.2715989053249359, - 0.2682633697986603, - 0.2677233815193176, - 0.26999375224113464, - 0.27501246333122253, - 0.282642662525177, - 0.2926762104034424, - 0.3048394024372101, - 0.3188004791736603, - 0.334178626537323, - 0.35055431723594666, - 0.3909461796283722, - 0.3891570568084717, - 0.38686585426330566, - 0.38413506746292114, - 0.3810391426086426, - 0.3776625990867615, - 0.37409746646881104, - 0.3704410791397095, - 0.36679306626319885, - 0.36325305700302124, - 0.3599175214767456, - 0.3568774461746216, - 0.3542158305644989, - 0.3520052134990692, - 0.3503059148788452, - 0.34916427731513977, - 0.3486114740371704, - 0.34866252541542053, - 0.3493160903453827, - 0.35055431723594666, - 0.3909461796283722, - 0.40445858240127563, - 0.4170514643192291, - 0.42838141322135925, - 0.43813931941986084, - 0.4460590183734894, - 0.45192450284957886, - 0.45557576417922974, - 0.45691320300102234, - 0.4559003412723541, - 0.4525648057460785, - 0.44699758291244507, - 0.43935054540634155, - 0.42983224987983704, - 0.4187023639678955, - 0.40626445412635803, - 0.3928578197956085, - 0.378848135471344, - 0.36461758613586426, - 0.35055431723594666, - 0.3909461796283722, - 0.4182659387588501, - 0.4442896246910095, - 0.4683073163032532, - 0.48966389894485474, - 0.5077768564224243, - 0.5221520662307739, - 0.532397449016571, - 0.5382335186004639, - 0.5395010709762573, - 0.5361654758453369, - 0.5283178687095642, - 0.5161722302436829, - 0.5000598430633545, - 0.48042020201683044, - 0.4577890634536743, - 0.43278372287750244, - 0.406086266040802, - 0.3784249722957611, - 0.35055431723594666, - 0.3909461796283722, - 0.4290829598903656, - 0.46562856435775757, - 0.49958616495132446, - 0.5300294160842896, - 0.5561279654502869, - 0.5771698951721191, - 0.5925812721252441, - 0.6019416451454163, - 0.6049957275390625, - 0.6016601920127869, - 0.5920259952545166, - 0.576356053352356, - 0.5550776720046997, - 0.5287713408470154, - 0.49815458059310913, - 0.46406257152557373, - 0.42742523550987244, - 0.3892419636249542, - 0.35055428743362427, - 0.3909461796283722, - 0.43573740124702454, - 0.4787559509277344, - 0.5188283920288086, - 0.5548616647720337, - 0.5858728289604187, - 0.611016035079956, - 0.6296054124832153, - 0.6411339044570923, - 0.6452869772911072, - 0.6419514417648315, - 0.6312183141708374, - 0.6133801937103271, - 0.5889237523078918, - 0.5585161447525024, - 0.5229867696762085, - 0.48330479860305786, - 0.44055262207984924, - 0.39589643478393555, - 0.35055428743362427, - 0.3909461796283722, - 0.43750816583633423, - 0.4822492003440857, - 0.5239488482475281, - 0.5614696145057678, - 0.5937880277633667, - 0.6200225949287415, - 0.639457643032074, - 0.6515630483627319, - 0.6560086607933044, - 0.6526731252670288, - 0.641647458076477, - 0.6232324242591858, - 0.5979303121566772, - 0.5664314031600952, - 0.5295947790145874, - 0.48842525482177734, - 0.44404587149620056, - 0.39766719937324524, - 0.35055428743362427, - 0.3909461796283722, - 0.4342033863067627, - 0.475729763507843, - 0.514392614364624, - 0.5491372346878052, - 0.5790159106254578, - 0.6032136678695679, - 0.6210704445838928, - 0.6320991516113281, - 0.6359988451004028, - 0.632663369178772, - 0.6221835017204285, - 0.6048452258110046, - 0.5811214447021484, - 0.5516592860221863, - 0.51726233959198, - 0.4788690209388733, - 0.4375264644622803, - 0.3943624198436737, - 0.35055428743362427, - 0.3909461796283722, - 0.4261811673641205, - 0.45990416407585144, - 0.4911952614784241, - 0.5192009210586548, - 0.5431572198867798, - 0.5624107122421265, - 0.5764362812042236, - 0.5848512649536133, - 0.5874260663986206, - 0.5840904712677002, - 0.5749356150627136, - 0.5602110624313354, - 0.540318489074707, - 0.5158005952835083, - 0.48732608556747437, - 0.45567166805267334, - 0.4217008352279663, - 0.3863402009010315, - 0.35055428743362427, - 0.3909461796283722, - 0.41431084275245667, - 0.4364872872829437, - 0.45687058568000793, - 0.47490477561950684, - 0.49009788036346436, - 0.5020354986190796, - 0.5103919506072998, - 0.5149394273757935, - 0.5155537128448486, - 0.5122182369232178, - 0.5050237774848938, - 0.4941667318344116, - 0.4799432158470154, - 0.4627411961555481, - 0.44302991032600403, - 0.4213469922542572, - 0.3982839584350586, - 0.3744698762893677, - 0.35055431723594666, - 0.3909461796283722, - 0.39987874031066895, - 0.40801671147346497, - 0.4151381850242615, - 0.4210488498210907, - 0.42558753490448, - 0.42863035202026367, - 0.4300943911075592, - 0.4299396574497223, - 0.428170382976532, - 0.42483484745025635, - 0.420024037361145, - 0.413869172334671, - 0.40653809905052185, - 0.3982308506965637, - 0.3891740143299103, - 0.37961459159851074, - 0.36981338262557983, - 0.36003774404525757, - 0.35055431723594666, - 0.3909461796283722, - 0.3844487965106964, - 0.3775777518749237, - 0.3705204725265503, - 0.3634694814682007, - 0.3566170632839203, - 0.3501501679420471, - 0.34424519538879395, - 0.33906319737434387, - 0.33474552631378174, - 0.3314100205898285, - 0.3291475772857666, - 0.3280199468135834, - 0.3280578851699829, - 0.32926037907600403, - 0.3315946161746979, - 0.33499687910079956, - 0.3393744230270386, - 0.3446078300476074, - 0.35055431723594666, - 0.3909461796283722, - 0.3696931302547455, - 0.3484688997268677, - 0.32785242795944214, - 0.30840611457824707, - 0.29066041111946106, - 0.27509933710098267, - 0.26214733719825745, - 0.2521577477455139, - 0.24540309607982635, - 0.24206756055355072, - 0.24224214255809784, - 0.24592210352420807, - 0.25300705432891846, - 0.2633037269115448, - 0.27653124928474426, - 0.2923288345336914, - 0.31026557087898254, - 0.3298521339893341, - 0.35055431723594666, - 0.3909461796283722, - 0.3572106659412384, - 0.3238444924354553, - 0.2917577624320984, - 0.2618257403373718, - 0.23486490547657013, - 0.21161064505577087, - 0.19269731640815735, - 0.17864081263542175, - 0.1698245406150818, - 0.16648900508880615, - 0.16872519254684448, - 0.17647209763526917, - 0.18951839208602905, - 0.20750822126865387, - 0.22995087504386902, - 0.25623416900634766, - 0.2856411337852478, - 0.3173696994781494, - 0.35055431723594666, - 0.3909462094306946, - 0.34835416078567505, - 0.3063730001449585, - 0.2661479115486145, - 0.22877609729766846, - 0.19527697563171387, - 0.16656428575515747, - 0.1434212476015091, - 0.1264791637659073, - 0.11620020866394043, - 0.1128646731376648, - 0.11656355857849121, - 0.1271960288286209, - 0.14447201788425446, - 0.1679202765226364, - 0.19690121710300446, - 0.23062431812286377, - 0.26816967129707336, - 0.30851316452026367, - 0.35055431723594666, - 0.3909462094306946, - 0.3440832793712616, - 0.29794779419898987, - 0.25379812717437744, - 0.21283864974975586, - 0.17618657648563385, - 0.14484168589115143, - 0.11965897679328918, - 0.10132542252540588, - 0.09034103155136108, - 0.08700549602508545, - 0.09140980243682861, - 0.103433758020401, - 0.12274941802024841, - 0.1488298773765564, - 0.18096376955509186, - 0.2182745486497879, - 0.25974446535110474, - 0.3042423129081726, - 0.35055431723594666, - 0.3909462094306946, - 0.34486091136932373, - 0.2994818091392517, - 0.25604671239852905, - 0.21574045717716217, - 0.17966246604919434, - 0.14879681169986725, - 0.12398549914360046, - 0.10590529441833496, - 0.09504935145378113, - 0.0917138159275055, - 0.09598967432975769, - 0.10776028037071228, - 0.12670455873012543, - 0.15230576694011688, - 0.18386557698249817, - 0.22052313387393951, - 0.2612784802913666, - 0.30501991510391235, - 0.35055431723594666 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.225972056388855, - -1.2334225177764893, - -1.2397181987762451, - -1.244687557220459, - -1.2481948137283325, - -1.250144362449646, - -1.2504830360412598, - -1.2492015361785889, - -1.2463350296020508, - -1.2419614791870117, - -1.2362003326416016, - -1.2292085886001587, - -1.221177101135254, - -1.212324857711792, - -1.2028933763504028, - -1.193139910697937, - -1.1833305358886719, - -1.1737327575683594, - -1.1646084785461426, - -1.156206488609314, - -1.225972056388855, - -1.2225855588912964, - -1.2183400392532349, - -1.2133511304855347, - -1.2077548503875732, - -1.2017041444778442, - -1.1953638792037964, - -1.1889069080352783, - -1.1825095415115356, - -1.1763461828231812, - -1.170585036277771, - -1.1653831005096436, - -1.1608824729919434, - -1.1572057008743286, - -1.1544532775878906, - -1.1527000665664673, - -1.1519941091537476, - -1.1523544788360596, - -1.1537715196609497, - -1.156206488609314, - -1.225972056388855, - -1.2120640277862549, - -1.1975840330123901, - -1.1829266548156738, - -1.168492078781128, - -1.1546739339828491, - -1.1418490409851074, - -1.1303672790527344, - -1.1205418109893799, - -1.1126407384872437, - -1.1068795919418335, - -1.1034153699874878, - -1.1023427248001099, - -1.1036908626556396, - -1.107422947883606, - -1.113437294960022, - -1.1215697526931763, - -1.1315984725952148, - -1.1432499885559082, - -1.156206488609314, - -1.225972056388855, - -1.202998161315918, - -1.179699420928955, - -1.1567113399505615, - -1.134661078453064, - -1.114150047302246, - -1.0957375764846802, - -1.0799261331558228, - -1.067146897315979, - -1.057748556137085, - -1.0519874095916748, - -1.050020456314087, - -1.0519016981124878, - -1.0575793981552124, - -1.066899061203003, - -1.079606294631958, - -1.095354437828064, - -1.1137139797210693, - -1.1341841220855713, - -1.156206488609314, - -1.225972056388855, - -1.196370244026184, - -1.1666244268417358, - -1.1375459432601929, - -1.1099278926849365, - -1.0845237970352173, - -1.0620265007019043, - -1.043049693107605, - -1.0281111001968384, - -1.0176180601119995, - -1.0118569135665894, - -1.0109846591949463, - -1.01502525806427, - -1.0238683223724365, - -1.0372729301452637, - -1.0548731088638306, - -1.0761889219284058, - -1.10063898563385, - -1.1275562047958374, - -1.156206488609314, - -1.225972056388855, - -1.1928986310958862, - -1.1597758531570435, - -1.127507209777832, - -1.096972942352295, - -1.0690058469772339, - -1.0443689823150635, - -1.023734211921692, - -1.007664442062378, - -0.9965980052947998, - -0.9908368587493896, - -0.9905380010604858, - -0.9957096576690674, - -1.0062108039855957, - -1.0217549800872803, - -1.0419180393218994, - -1.066150188446045, - -1.0937904119491577, - -1.1240845918655396, - -1.156206488609314, - -1.225972056388855, - -1.1929594278335571, - -1.1598957777023315, - -1.1276830434799194, - -1.0971999168395996, - -1.0692777633666992, - -1.0446783304214478, - -1.024072527885437, - -1.008022665977478, - -0.9969663023948669, - -0.991205096244812, - -0.9908962249755859, - -0.996048092842102, - -1.00652015209198, - -1.022026777267456, - -1.042145013809204, - -1.0663261413574219, - -1.0939103364944458, - -1.1241453886032104, - -1.156206488609314, - -1.225972056388855, - -1.1965460777282715, - -1.1669713258743286, - -1.1380544900894165, - -1.1105842590332031, - -1.0853099822998047, - -1.0629210472106934, - -1.0440282821655273, - -1.0291469097137451, - -1.0186829566955566, - -1.0129218101501465, - -1.012020468711853, - -1.0160037279129028, - -1.0247628688812256, - -1.0380589962005615, - -1.0555293560028076, - -1.0766974687576294, - -1.1009858846664429, - -1.1277321577072144, - -1.156206488609314, - -1.225972056388855, - -1.2032700777053833, - -1.180235743522644, - -1.157497525215149, - -1.1356755495071411, - -1.1153651475906372, - -1.0971204042434692, - -1.0814387798309326, - -1.068748116493225, - -1.0593945980072021, - -1.053633451461792, - -1.051621675491333, - -1.053414225578308, - -1.0589622259140015, - -1.0681142807006836, - -1.0806207656860352, - -1.0961405038833618, - -1.1142503023147583, - -1.1344560384750366, - -1.156206488609314, - -1.225972056388855, - -1.2124024629592896, - -1.198251485824585, - -1.1839052438735962, - -1.1697548627853394, - -1.1561864614486694, - -1.1435701847076416, - -1.1322499513626099, - -1.1225348711013794, - -1.1146897077560425, - -1.1089284420013428, - -1.1054084300994873, - -1.104225516319275, - -1.1054120063781738, - -1.1089355945587158, - -1.1147000789642334, - -1.122548222541809, - -1.1322660446166992, - -1.1435884237289429, - -1.156206488609314, - -1.225972056388855, - -1.2229537963867188, - -1.2190665006637573, - -1.2144159078598022, - -1.2091290950775146, - -1.2033501863479614, - -1.1972368955612183, - -1.1909558773040771, - -1.1846784353256226, - -1.1785759925842285, - -1.1728147268295288, - -1.1675519943237305, - -1.1629313230514526, - -1.1590787172317505, - -1.1560993194580078, - -1.1540743112564087, - -1.1530590057373047, - -1.1530810594558716, - -1.154139757156372, - -1.156206488609314, - -1.225972056388855, - -1.2337807416915894, - -1.2404248714447021, - -1.2457233667373657, - -1.2495315074920654, - -1.2517454624176025, - -1.2523049116134644, - -1.2511945962905884, - -1.2484447956085205, - -1.2441303730010986, - -1.2383692264556885, - -1.2313183546066284, - -1.2231701612472534, - -1.2141468524932861, - -1.204494595527649, - -1.1944767236709595, - -1.1843663454055786, - -1.1744394302368164, - -1.1649667024612427, - -1.156206488609314, - -1.225972056388855, - -1.243709921836853, - -1.2600123882293701, - -1.2744348049163818, - -1.2865837812423706, - -1.2961279153823853, - -1.3028068542480469, - -1.3064384460449219, - -1.3069236278533936, - -1.3042491674423218, - -1.298487901687622, - -1.2897971868515015, - -1.278414011001587, - -1.264648675918579, - -1.2488770484924316, - -1.2315289974212646, - -1.2130777835845947, - -1.1940268278121948, - -1.1748958826065063, - -1.156206488609314, - -1.225972056388855, - -1.2516652345657349, - -1.275706171989441, - -1.2974389791488647, - -1.3162707090377808, - -1.3316879272460938, - -1.343269944190979, - -1.350700855255127, - -1.3537780046463013, - -1.3524174690246582, - -1.346656322479248, - -1.3366515636444092, - -1.322676420211792, - -1.3051118850708008, - -1.2844370603561401, - -1.2612159252166748, - -1.2360819578170776, - -1.2097207307815552, - -1.1828511953353882, - -1.156206488609314, - -1.225972056388855, - -1.2567849159240723, - -1.2858057022094727, - -1.312242865562439, - -1.335375428199768, - -1.354572057723999, - -1.369309425354004, - -1.3791853189468384, - -1.3839305639266968, - -1.3834154605865479, - -1.3776543140411377, - -1.3668041229248047, - -1.3511608839035034, - -1.3311512470245361, - -1.3073211908340454, - -1.2803205251693726, - -1.2508859634399414, - -1.219820261001587, - -1.1879708766937256, - -1.156206488609314, - -1.225972056388855, - -1.2585139274597168, - -1.2892165184020996, - -1.3172425031661987, - -1.341827392578125, - -1.3623005151748657, - -1.378103494644165, - -1.3888051509857178, - -1.3941136598587036, - -1.3938841819763184, - -1.3881230354309082, - -1.3769872188568115, - -1.3607805967330933, - -1.3399453163146973, - -1.315049648284912, - -1.286772608757019, - -1.2558856010437012, - -1.2232310771942139, - -1.1896998882293701, - -1.156206488609314, - -1.225972056388855, - -1.2566648721694946, - -1.2855689525604248, - -1.3118959665298462, - -1.3349276781082153, - -1.35403573513031, - -1.3686991930007935, - -1.378517746925354, - -1.3832238912582397, - -1.3826889991760254, - -1.3769278526306152, - -1.3660974502563477, - -1.350493311882019, - -1.3305410146713257, - -1.3067848682403564, - -1.2798728942871094, - -1.2505390644073486, - -1.219583511352539, - -1.187850832939148, - -1.156206488609314, - -1.225972056388855, - -1.2514382600784302, - -1.2752584218978882, - -1.2967826128005981, - -1.3154237270355225, - -1.3306734561920166, - -1.3421155214309692, - -1.3494380712509155, - -1.3524413108825684, - -1.3510432243347168, - -1.3452820777893066, - -1.3353148698806763, - -1.3214136362075806, - -1.3039573431015015, - -1.2834224700927734, - -1.2603689432144165, - -1.235425591468811, - -1.2092729806900024, - -1.1826242208480835, - -1.156206488609314, - -1.225972056388855, - -1.2434004545211792, - -1.2594020366668701, - -1.2735402584075928, - -1.2854293584823608, - -1.2947450876235962, - -1.3012334108352661, - -1.3047173023223877, - -1.3051016330718994, - -1.3023760318756104, - -1.2966148853302002, - -1.2879751920700073, - -1.2766927480697632, - -1.2630752325057983, - -1.2474942207336426, - -1.2303744554519653, - -1.2121832370758057, - -1.1934165954589844, - -1.1745864152908325, - -1.156206488609314, - -1.225972056388855, - -1.2334225177764893, - -1.2397181987762451, - -1.244687557220459, - -1.248194694519043, - -1.2501442432403564, - -1.2504829168319702, - -1.2492015361785889, - -1.2463350296020508, - -1.2419614791870117, - -1.236200213432312, - -1.2292085886001587, - -1.221177101135254, - -1.212324857711792, - -1.2028933763504028, - -1.193139910697937, - -1.1833305358886719, - -1.1737327575683594, - -1.1646084785461426, - -1.156206488609314 - ], - "y": [ - 0.849850594997406, - 0.8682718276977539, - 0.8855453729629517, - 0.9011999368667603, - 0.9148085117340088, - 0.9259999990463257, - 0.9344689846038818, - 0.9399845600128174, - 0.9423962831497192, - 0.9416382312774658, - 0.9377312660217285, - 0.9307818412780762, - 0.9209795594215393, - 0.9085917472839355, - 0.8939564228057861, - 0.8774726986885071, - 0.8595902323722839, - 0.8407968282699585, - 0.8216050863265991, - 0.8025385737419128, - 0.849850594997406, - 0.8804323673248291, - 0.9095346927642822, - 0.936363697052002, - 0.9601876139640808, - 0.9803565144538879, - 0.9963203072547913, - 1.007643461227417, - 1.0140172243118286, - 1.0152676105499268, - 1.0113606452941895, - 1.0024027824401855, - 0.9886384606361389, - 0.970443069934845, - 0.9483129382133484, - 0.9228518009185791, - 0.8947540521621704, - 0.8647861480712891, - 0.8337656259536743, - 0.8025385737419128, - 0.849850594997406, - 0.8892439603805542, - 0.9269174337387085, - 0.9618435502052307, - 0.9930694103240967, - 1.0197434425354004, - 1.041137933731079, - 1.0566693544387817, - 1.0659140348434448, - 1.068619728088379, - 1.0647127628326416, - 1.0542995929718018, - 1.0376642942428589, - 1.0152606964111328, - 0.9876998662948608, - 0.955733597278595, - 0.9202338457107544, - 0.8821688890457153, - 0.8425771594047546, - 0.8025385737419128, - 0.849850594997406, - 0.8937516212463379, - 0.9358099699020386, - 0.974878191947937, - 1.0098907947540283, - 1.039892554283142, - 1.0640652179718018, - 1.081749439239502, - 1.0924627780914307, - 1.0959129333496094, - 1.092005968093872, - 1.0808483362197876, - 1.062744379043579, - 1.0381879806518555, - 1.0078489780426025, - 0.9725549221038818, - 0.9332684874534607, - 0.8910614252090454, - 0.8470848798751831, - 0.8025385737419128, - 0.849850594997406, - 0.8934670686721802, - 0.9352484941482544, - 0.9740552306175232, - 1.0088287591934204, - 1.0386203527450562, - 1.0626176595687866, - 1.080165982246399, - 1.0907865762710571, - 1.0941897630691528, - 1.090282678604126, - 1.079172134399414, - 1.061160922050476, - 1.0367404222488403, - 1.0065767765045166, - 0.9714928865432739, - 0.9324455261230469, - 0.8904999494552612, - 0.8468002676963806, - 0.8025385737419128, - 0.849850594997406, - 0.8884209394454956, - 0.9252939224243164, - 0.9594637751579285, - 0.9899983406066895, - 1.0160647630691528, - 1.0369521379470825, - 1.0520904064178467, - 1.06106698513031, - 1.0636367797851562, - 1.059729814529419, - 1.049452543258667, - 1.0330854654312134, - 1.0110749006271362, - 0.9840212464332581, - 0.9526625275611877, - 0.9178540706634521, - 0.8805453777313232, - 0.8417541980743408, - 0.8025385737419128, - 0.849850594997406, - 0.8791602253913879, - 0.9070250988006592, - 0.9326850771903992, - 0.9554402828216553, - 0.9746700525283813, - 0.9898497462272644, - 1.0005654096603394, - 1.006524682044983, - 1.007564902305603, - 1.0036579370498657, - 0.9949102401733398, - 0.9815603494644165, - 0.9639725089073181, - 0.9426264762878418, - 0.9181044697761536, - 0.8910753726959229, - 0.8622764945030212, - 0.8324934244155884, - 0.8025385737419128, - 0.849850594997406, - 0.8666883707046509, - 0.8824215531349182, - 0.8966209888458252, - 0.9088994264602661, - 0.9189218282699585, - 0.9264149069786072, - 0.9311742782592773, - 0.9330700635910034, - 0.9320505261421204, - 0.9281435012817383, - 0.9214556217193604, - 0.9121692776679993, - 0.9005377292633057, - 0.8868783116340637, - 0.8715635538101196, - 0.8550112843513489, - 0.837673008441925, - 0.8200215697288513, - 0.8025385737419128, - 0.849850594997406, - 0.8523569107055664, - 0.854149580001831, - 0.8551796674728394, - 0.8554191589355469, - 0.8548614382743835, - 0.8535218238830566, - 0.8514367341995239, - 0.8486631512641907, - 0.8452766537666321, - 0.84136962890625, - 0.8370487093925476, - 0.8324317336082458, - 0.8276445865631104, - 0.822817862033844, - 0.8180832862854004, - 0.813569962978363, - 0.8094010353088379, - 0.8056901097297668, - 0.8025385737419128, - 0.849850594997406, - 0.8377189040184021, - 0.825272798538208, - 0.8128518462181091, - 0.8007948994636536, - 0.7894307374954224, - 0.7790694236755371, - 0.7699935436248779, - 0.7624506950378418, - 0.7566466331481934, - 0.752739667892456, - 0.7508363127708435, - 0.7509885430335999, - 0.7531921863555908, - 0.7573871612548828, - 0.7634590268135071, - 0.7712422013282776, - 0.7805242538452148, - 0.7910521030426025, - 0.8025385737419128, - 0.849850594997406, - 0.8243605494499207, - 0.7989205718040466, - 0.7742245197296143, - 0.750946044921875, - 0.7297202348709106, - 0.711125910282135, - 0.6956703662872314, - 0.6837752461433411, - 0.6757649183273315, - 0.6718578934669495, - 0.672160804271698, - 0.6766653656959534, - 0.6852486729621887, - 0.6976765990257263, - 0.7136101722717285, - 0.7326148152351379, - 0.7541720271110535, - 0.7776938080787659, - 0.8025385737419128, - 0.849850594997406, - 0.8137295246124268, - 0.7779484391212463, - 0.7434834241867065, - 0.7112745046615601, - 0.6822003722190857, - 0.6570539474487305, - 0.6365212798118591, - 0.6211624145507812, - 0.6113962531089783, - 0.607489287853241, - 0.6095479726791382, - 0.617516279220581, - 0.6311767101287842, - 0.6501567363739014, - 0.6739386320114136, - 0.7018737196922302, - 0.7331998944282532, - 0.767062783241272, - 0.8025385737419128, - 0.849850594997406, - 0.8069778084754944, - 0.7646291851997375, - 0.7239599227905273, - 0.6860793232917786, - 0.6520207524299622, - 0.6227131485939026, - 0.5989559888839722, - 0.581397294998169, - 0.570516049861908, - 0.5666090250015259, - 0.5697828531265259, - 0.5799509286880493, - 0.5968359112739563, - 0.6199771165847778, - 0.6487434506416321, - 0.682350218296051, - 0.7198806405067444, - 0.7603110671043396, - 0.8025385737419128, - 0.849850594997406, - 0.8048370480537415, - 0.7604060769081116, - 0.7177696228027344, - 0.6780907511711121, - 0.6424517631530762, - 0.6118247509002686, - 0.5870451927185059, - 0.5687891244888306, - 0.5575542449951172, - 0.5536472797393799, - 0.5571746826171875, - 0.5680401921272278, - 0.5859475135803223, - 0.6104081273078918, - 0.6407548785209656, - 0.6761599183082581, - 0.7156575322151184, - 0.7581703066825867, - 0.8025385737419128, - 0.849850594997406, - 0.8075392842292786, - 0.7657367587089539, - 0.7255834341049194, - 0.6881744861602783, - 0.6545303463935852, - 0.6255687475204468, - 0.6020797491073608, - 0.5847040414810181, - 0.5739155411720276, - 0.5700085163116455, - 0.573089599609375, - 0.5830747485160828, - 0.5996915102005005, - 0.6224867701530457, - 0.6508386135101318, - 0.6839737296104431, - 0.7209882140159607, - 0.760872483253479, - 0.8025385737419128, - 0.849850594997406, - 0.8147915601730347, - 0.7800436019897461, - 0.7465544939041138, - 0.7152377367019653, - 0.6869476437568665, - 0.6624557971954346, - 0.642430305480957, - 0.6274174451828003, - 0.6178267598152161, - 0.613919734954834, - 0.615803062915802, - 0.623425304889679, - 0.6365785598754883, - 0.6549040079116821, - 0.6779018640518188, - 0.7049447894096375, - 0.7352950572967529, - 0.7681248188018799, - 0.8025385737419128, - 0.849850594997406, - 0.8258081674575806, - 0.8017762303352356, - 0.7784103751182556, - 0.7563478946685791, - 0.7361907362937927, - 0.7184886336326599, - 0.7037244439125061, - 0.6923009157180786, - 0.6845296621322632, - 0.6806226968765259, - 0.6806864738464355, - 0.684719443321228, - 0.6926113963127136, - 0.7041471600532532, - 0.7190120816230774, - 0.7368006706237793, - 0.7570276856422424, - 0.779141366481781, - 0.8025385737419128, - 0.849850594997406, - 0.8393951058387756, - 0.8285795450210571, - 0.8176989555358887, - 0.8070500493049622, - 0.7969233989715576, - 0.7875951528549194, - 0.7793198227882385, - 0.7723231315612793, - 0.7667958736419678, - 0.7628889083862305, - 0.7607086896896362, - 0.7603148221969604, - 0.7617179155349731, - 0.7648798227310181, - 0.7697141766548157, - 0.7760892510414124, - 0.783831000328064, - 0.7927283644676208, - 0.8025385737419128, - 0.849850594997406, - 0.8540801405906677, - 0.8575490713119507, - 0.8601626753807068, - 0.8618497252464294, - 0.8625642657279968, - 0.8622866868972778, - 0.8610246181488037, - 0.8588124513626099, - 0.8557105660438538, - 0.8518035411834717, - 0.8471980094909668, - 0.8420195579528809, - 0.8364094495773315, - 0.8305206894874573, - 0.8245139122009277, - 0.8185529708862305, - 0.8128005266189575, - 0.8074133992195129, - 0.8025385737419128, - 0.849850594997406, - 0.8682718276977539, - 0.8855453729629517, - 0.9011999368667603, - 0.9148085117340088, - 0.9259999990463257, - 0.9344690442085266, - 0.9399846196174622, - 0.9423962831497192, - 0.9416382908821106, - 0.9377313256263733, - 0.930781900882721, - 0.9209795594215393, - 0.9085918068885803, - 0.8939564228057861, - 0.8774726986885071, - 0.8595902323722839, - 0.8407968282699585, - 0.8216050863265991, - 0.8025385737419128 - ], - "z": [ - 0.4558987021446228, - 0.4076727032661438, - 0.3603532910346985, - 0.31523120403289795, - 0.27353721857070923, - 0.23640865087509155, - 0.20485828816890717, - 0.17974674701690674, - 0.16175895929336548, - 0.15138569474220276, - 0.1489097774028778, - 0.15439879894256592, - 0.1677030324935913, - 0.1884596049785614, - 0.2161022573709488, - 0.24987703561782837, - 0.2888626456260681, - 0.3319956362247467, - 0.3780994713306427, - 0.42591652274131775, - 0.4558987021446228, - 0.41369977593421936, - 0.3722430467605591, - 0.3326592743396759, - 0.2960282266139984, - 0.26334914565086365, - 0.235513374209404, - 0.21328021585941315, - 0.1972561478614807, - 0.18787825107574463, - 0.18540233373641968, - 0.18989595770835876, - 0.2012365162372589, - 0.21911464631557465, - 0.2430427521467209, - 0.27236807346343994, - 0.30629074573516846, - 0.3438853621482849, - 0.38412654399871826, - 0.42591652274131775, - 0.4558987021446228, - 0.4242776036262512, - 0.39311012625694275, - 0.36324644088745117, - 0.33550113439559937, - 0.3106310963630676, - 0.2893146276473999, - 0.2721332311630249, - 0.25955551862716675, - 0.25192463397979736, - 0.2494487315416336, - 0.2521952986717224, - 0.2600895166397095, - 0.27291589975357056, - 0.29032468795776367, - 0.3118410110473633, - 0.3368779122829437, - 0.36475247144699097, - 0.39470434188842773, - 0.42591652274131775, - 0.4558986723423004, - 0.43825989961624146, - 0.4206933081150055, - 0.40367811918258667, - 0.38767847418785095, - 0.37313076853752136, - 0.36043184995651245, - 0.349928081035614, - 0.34190598130226135, - 0.3365844190120697, - 0.33410853147506714, - 0.3345457911491394, - 0.3378843665122986, - 0.3440331518650055, - 0.3528243899345398, - 0.3640183210372925, - 0.3773096203804016, - 0.3923356533050537, - 0.40868663787841797, - 0.42591652274131775, - 0.4558986723423004, - 0.45413145422935486, - 0.452003538608551, - 0.44957295060157776, - 0.4469059705734253, - 0.44407540559768677, - 0.44115838408470154, - 0.4382345676422119, - 0.4353836476802826, - 0.43268340826034546, - 0.4302074909210205, - 0.42802345752716064, - 0.4261908531188965, - 0.42475971579551697, - 0.4237690269947052, - 0.4232458472251892, - 0.4232044219970703, - 0.42364588379859924, - 0.42455822229385376, - 0.42591652274131775, - 0.4558986723423004, - 0.4701724052429199, - 0.48364782333374023, - 0.4959574341773987, - 0.5067654252052307, - 0.5157769918441772, - 0.5227463245391846, - 0.5274832844734192, - 0.5298587083816528, - 0.5298077464103699, - 0.5273318290710449, - 0.5224984884262085, - 0.5154395699501038, - 0.5063475966453552, - 0.4954706132411957, - 0.48310530185699463, - 0.46958890557289124, - 0.45529016852378845, - 0.44059914350509644, - 0.42591652274131775, - 0.4558986723423004, - 0.4846443831920624, - 0.5121970772743225, - 0.5378051400184631, - 0.5607701539993286, - 0.58046555519104, - 0.5963542461395264, - 0.6080027222633362, - 0.6150932908058167, - 0.6174324750900269, - 0.6149566173553467, - 0.6077331304550171, - 0.5959590077400208, - 0.579955518245697, - 0.5601592063903809, - 0.5371099710464478, - 0.5114366412162781, - 0.48383939266204834, - 0.4550711214542389, - 0.42591649293899536, - 0.4558986723423004, - 0.4959791600704193, - 0.5345574617385864, - 0.5705811977386475, - 0.6030678749084473, - 0.6311311721801758, - 0.6540056467056274, - 0.6710673570632935, - 0.6818509697914124, - 0.686062216758728, - 0.6835862994194031, - 0.6744908094406128, - 0.6590237021446228, - 0.6376069188117981, - 0.6108247637748718, - 0.5794076919555664, - 0.5442126989364624, - 0.506199836730957, - 0.4664059281349182, - 0.42591649293899536, - 0.4558986723423004, - 0.5029484629631042, - 0.5483059287071228, - 0.5907338857650757, - 0.6290749311447144, - 0.6622833013534546, - 0.6894530653953552, - 0.7098432183265686, - 0.7228975296020508, - 0.728259801864624, - 0.7257838845252991, - 0.7155373096466064, - 0.6977995038032532, - 0.6730543971061707, - 0.6419769525527954, - 0.6054148077964783, - 0.5643653273582458, - 0.5199483036994934, - 0.47337520122528076, - 0.42591649293899536, - 0.4558986723423004, - 0.5047970414161682, - 0.5519526600837708, - 0.5960792303085327, - 0.6359732151031494, - 0.6705461740493774, - 0.6988552808761597, - 0.7201282978057861, - 0.7337847948074341, - 0.7394524812698364, - 0.7369765043258667, - 0.7264246940612793, - 0.7080845832824707, - 0.6824566125869751, - 0.650239884853363, - 0.6123130321502686, - 0.5697107315063477, - 0.5235949754714966, - 0.4752237796783447, - 0.42591649293899536, - 0.4558986723423004, - 0.5013245344161987, - 0.5451023578643799, - 0.5860381126403809, - 0.6230149865150452, - 0.6550244688987732, - 0.6811934113502502, - 0.700808048248291, - 0.7133331298828125, - 0.718427300453186, - 0.7159513235092163, - 0.7059730291366577, - 0.6887643337249756, - 0.6647947430610657, - 0.634718120098114, - 0.5993548631668091, - 0.559669554233551, - 0.5167447328567505, - 0.47175130248069763, - 0.42591649293899536, - 0.4558986723423004, - 0.4929072856903076, - 0.5284975171089172, - 0.5616984963417053, - 0.5916045904159546, - 0.6174001097679138, - 0.6383813619613647, - 0.6539760231971741, - 0.6637587547302246, - 0.6674627065658569, - 0.664986789226532, - 0.656398594379425, - 0.6419323682785034, - 0.6219826936721802, - 0.5970937609672546, - 0.5679444670677185, - 0.5353299379348755, - 0.5001398324966431, - 0.4633340537548065, - 0.42591649293899536, - 0.4558986723423004, - 0.4804574251174927, - 0.5039373636245728, - 0.5256980657577515, - 0.5451458692550659, - 0.5617502927780151, - 0.5750584602355957, - 0.5847073793411255, - 0.5904338359832764, - 0.5920815467834473, - 0.5896055698394775, - 0.583073616027832, - 0.5726636648178101, - 0.5586597919464111, - 0.541443943977356, - 0.5214857459068298, - 0.499329537153244, - 0.47557973861694336, - 0.4508841931819916, - 0.42591649293899536, - 0.4558986723423004, - 0.4653241038322449, - 0.47408348321914673, - 0.4819379448890686, - 0.4886731803417206, - 0.4941055178642273, - 0.49808675050735474, - 0.5005082488059998, - 0.501304030418396, - 0.5004523396492004, - 0.4979764521121979, - 0.49394387006759644, - 0.4884645640850067, - 0.4816880524158478, - 0.4737991690635681, - 0.4650130569934845, - 0.45556941628456116, - 0.44572585821151733, - 0.4357508420944214, - 0.42591652274131775, - 0.4558986723423004, - 0.44914722442626953, - 0.44217100739479065, - 0.4351603388786316, - 0.4283064305782318, - 0.4217962622642517, - 0.4158073663711548, - 0.41050317883491516, - 0.4060283303260803, - 0.40250492095947266, - 0.4000290036201477, - 0.3986681401729584, - 0.3984594941139221, - 0.3994086980819702, - 0.40148988366127014, - 0.40464627742767334, - 0.40879181027412415, - 0.41381335258483887, - 0.41957396268844604, - 0.42591652274131775, - 0.4558986723423004, - 0.43367981910705566, - 0.4116581082344055, - 0.39043426513671875, - 0.37058717012405396, - 0.3526582717895508, - 0.33713656663894653, - 0.3244454562664032, - 0.31493112444877625, - 0.3088531196117401, - 0.30637720227241516, - 0.3075709342956543, - 0.31240177154541016, - 0.3207378685474396, - 0.3323518931865692, - 0.34692704677581787, - 0.3640657365322113, - 0.38330045342445374, - 0.40410658717155457, - 0.42591652274131775, - 0.4558987021446228, - 0.42059800028800964, - 0.38585132360458374, - 0.3526064157485962, - 0.3217701315879822, - 0.294183611869812, - 0.270599365234375, - 0.25166064500808716, - 0.23788408935070038, - 0.2296455353498459, - 0.22716961801052094, - 0.23052389919757843, - 0.23961693048477173, - 0.25420063734054565, - 0.27387720346450806, - 0.2981099486351013, - 0.32623788714408875, - 0.35749363899230957, - 0.39102476835250854, - 0.42591652274131775, - 0.4558987021446228, - 0.41131940484046936, - 0.3675472140312195, - 0.3257761001586914, - 0.2871454656124115, - 0.2527090907096863, - 0.22340625524520874, - 0.20003627240657806, - 0.18323662877082825, - 0.17346563935279846, - 0.1709897220134735, - 0.1758764684200287, - 0.18799257278442383, - 0.2070075273513794, - 0.23240265250205994, - 0.263485312461853, - 0.29940757155418396, - 0.3391895592212677, - 0.38174617290496826, - 0.42591652274131775, - 0.4558987021446228, - 0.4068495035171509, - 0.35872936248779297, - 0.31285080313682556, - 0.27046531438827515, - 0.23272903263568878, - 0.20067134499549866, - 0.17516663670539856, - 0.15691062808036804, - 0.14640140533447266, - 0.1439254879951477, - 0.14955046772956848, - 0.16312292218208313, - 0.1842726171016693, - 0.21242262423038483, - 0.24680514633655548, - 0.2864822745323181, - 0.3303717076778412, - 0.3772762715816498, - 0.42591652274131775, - 0.4558987021446228, - 0.4076727032661438, - 0.3603532910346985, - 0.31523120403289795, - 0.27353721857070923, - 0.23640866577625275, - 0.20485830307006836, - 0.17974674701690674, - 0.16175895929336548, - 0.15138569474220276, - 0.1489097774028778, - 0.15439879894256592, - 0.1677030324935913, - 0.1884596049785614, - 0.2161022573709488, - 0.24987703561782837, - 0.2888626456260681, - 0.3319956362247467, - 0.3780994713306427, - 0.42591652274131775 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.2637059688568115, - -1.2720813751220703, - -1.2795188426971436, - -1.2858154773712158, - -1.2907994985580444, - -1.294335126876831, - -1.29632568359375, - -1.2967169284820557, - -1.2954983711242676, - -1.2927030324935913, - -1.288407325744629, - -1.2827283143997192, - -1.2758209705352783, - -1.2678736448287964, - -1.2591030597686768, - -1.249748706817627, - -1.240065574645996, - -1.2303177118301392, - -1.2207711935043335, - -1.211686372756958, - -1.2637059688568115, - -1.2608463764190674, - -1.2573552131652832, - -1.2533278465270996, - -1.2488740682601929, - -1.2441154718399048, - -1.239181637763977, - -1.2342073917388916, - -1.2293282747268677, - -1.2246774435043335, - -1.220381736755371, - -1.2165582180023193, - -1.2133113145828247, - -1.2107295989990234, - -1.20888352394104, - -1.2078232765197754, - -1.2075779438018799, - -1.2081542015075684, - -1.2095361948013306, - -1.211686372756958, - -1.2637059688568115, - -1.2498828172683716, - -1.2357271909713745, - -1.2216252088546753, - -1.2079616785049438, - -1.195109248161316, - -1.1834183931350708, - -1.1732081174850464, - -1.1647568941116333, - -1.1582953929901123, - -1.1539995670318604, - -1.151986837387085, - -1.1523120403289795, - -1.1549663543701172, - -1.1598771810531616, - -1.1669108867645264, - -1.1758753061294556, - -1.1865260601043701, - -1.1985726356506348, - -1.211686372756958, - -1.2637059688568115, - -1.240378737449646, - -1.2169783115386963, - -1.1941429376602173, - -1.1724956035614014, - -1.152626872062683, - -1.1350785493850708, - -1.1203292608261108, - -1.1087815761566162, - -1.1007503271102905, - -1.0964546203613281, - -1.0960115194320679, - -1.0994333028793335, - -1.1066263914108276, - -1.1173948049545288, - -1.1314448118209839, - -1.1483930349349976, - -1.167777180671692, - -1.1890685558319092, - -1.211686372756958, - -1.2637059688568115, - -1.2333641052246094, - -1.203140377998352, - -1.1738592386245728, - -1.1463193893432617, - -1.1212719678878784, - -1.099400520324707, - -1.081301212310791, - -1.0674680471420288, - -1.0582783222198486, - -1.0539824962615967, - -1.0546979904174805, - -1.0604051351547241, - -1.0709483623504639, - -1.0860400199890137, - -1.1052684783935547, - -1.1281092166900635, - -1.1539392471313477, - -1.1820539236068726, - -1.211686372756958, - -1.2637059688568115, - -1.2295989990234375, - -1.195712924003601, - -1.162972092628479, - -1.1322693824768066, - -1.1044425964355469, - -1.0802505016326904, - -1.06035315990448, - -1.0452933311462402, - -1.0354816913604736, - -1.0311858654022217, - -1.032523274421692, - -1.039457082748413, - -1.0517984628677368, - -1.0692106485366821, - -1.0912185907363892, - -1.1172220706939697, - -1.1465119123458862, - -1.1782888174057007, - -1.211686372756958, - -1.2637059688568115, - -1.2294915914535522, - -1.1955009698867798, - -1.1626613140106201, - -1.1318683624267578, - -1.1039621829986572, - -1.0797039270401, - -1.0597552061080933, - -1.0446603298187256, - -1.034830927848816, - -1.0305352210998535, - -1.0318901538848877, - -1.0388591289520264, - -1.051251769065857, - -1.068730115890503, - -1.0908174514770508, - -1.1169112920761108, - -1.1462998390197754, - -1.1781814098358154, - -1.211686372756958, - -1.2637059688568115, - -1.2330533266067505, - -1.2025272846221924, - -1.1729605197906494, - -1.1451596021652222, - -1.1198828220367432, - -1.0978198051452637, - -1.079572081565857, - -1.0656375885009766, - -1.056396484375, - -1.0521007776260376, - -1.0528675317764282, - -1.05867600440979, - -1.0693676471710205, - -1.0846508741378784, - -1.1041088104248047, - -1.1272106170654297, - -1.153326153755188, - -1.1817431449890137, - -1.211686372756958, - -1.2637059688568115, - -1.2398983240127563, - -1.2160305976867676, - -1.192753791809082, - -1.1707029342651367, - -1.1504794359207153, - -1.1326349973678589, - -1.1176563501358032, - -1.1059521436691284, - -1.097841501235962, - -1.0935457944869995, - -1.09318208694458, - -1.0967602729797363, - -1.1041829586029053, - -1.1152474880218506, - -1.1296520233154297, - -1.1470038890838623, - -1.1668294668197632, - -1.1885881423950195, - -1.211686372756958, - -1.2637059688568115, - -1.2492847442626953, - -1.23454749584198, - -1.2198960781097412, - -1.2057301998138428, - -1.1924362182617188, - -1.1803768873214722, - -1.1698811054229736, - -1.161234974861145, - -1.1546746492385864, - -1.150378942489624, - -1.1484649181365967, - -1.1489850282669067, - -1.1519248485565186, - -1.157204270362854, - -1.1646794080734253, - -1.1741461753845215, - -1.1853463649749756, - -1.197974681854248, - -1.211686372756958, - -1.2637059688568115, - -1.2601956129074097, - -1.2560714483261108, - -1.2514461278915405, - -1.2464457750320435, - -1.2412066459655762, - -1.2358717918395996, - -1.2305867671966553, - -1.2254955768585205, - -1.2207372188568115, - -1.2164415121078491, - -1.2127255201339722, - -1.2096906900405884, - -1.207419753074646, - -1.2059746980667114, - -1.2053948640823364, - -1.2056962251663208, - -1.206870436668396, - -1.2088854312896729, - -1.211686372756958, - -1.2637059688568115, - -1.2714483737945557, - -1.2782701253890991, - -1.2839850187301636, - -1.2884373664855957, - -1.2915055751800537, - -1.2931060791015625, - -1.293195128440857, - -1.2917702198028564, - -1.2888703346252441, - -1.2845746278762817, - -1.279000163078308, - -1.27229905128479, - -1.2646540403366089, - -1.256273627281189, - -1.2473865747451782, - -1.2382351160049438, - -1.2290689945220947, - -1.2201381921768188, - -1.211686372756958, - -1.2637059688568115, - -1.281823754310608, - -1.2987377643585205, - -1.3139866590499878, - -1.3271546363830566, - -1.337882399559021, - -1.3458774089813232, - -1.350921392440796, - -1.3528770208358765, - -1.3516907691955566, - -1.3473949432373047, - -1.3401069641113281, - -1.330025315284729, - -1.3174253702163696, - -1.3026504516601562, - -1.2861038446426392, - -1.268236756324768, - -1.2495366334915161, - -1.230513572692871, - -1.211686372756958, - -1.2637059688568115, - -1.2901972532272339, - -1.3152564764022827, - -1.3381999731063843, - -1.3584020137786865, - -1.3753114938735962, - -1.3884671926498413, - -1.397510290145874, - -1.4021940231323242, - -1.402390718460083, - -1.3980950117111206, - -1.3894239664077759, - -1.3766143321990967, - -1.3600151538848877, - -1.3400795459747314, - -1.317351222038269, - -1.2924500703811646, - -1.2660553455352783, - -1.238887071609497, - -1.211686372756958, - -1.2637059688568115, - -1.2956615686416626, - -1.3260360956192017, - -1.3540009260177612, - -1.3787932395935059, - -1.399736762046814, - -1.4162602424621582, - -1.427912950515747, - -1.4343771934509277, - -1.435476303100586, - -1.4311805963516235, - -1.4216070175170898, - -1.4070169925689697, - -1.3878082036972046, - -1.3645048141479492, - -1.3377424478530884, - -1.3082510232925415, - -1.2768349647521973, - -1.2443513870239258, - -1.211686372756958, - -1.2637059688568115, - -1.2976247072219849, - -1.3299086093902588, - -1.3596773147583008, - -1.3861186504364014, - -1.4085114002227783, - -1.4262447357177734, - -1.4388350248336792, - -1.4459387063980103, - -1.4473620653152466, - -1.4430663585662842, - -1.433168649673462, - -1.4179389476776123, - -1.3977926969528198, - -1.3732794523239136, - -1.3450678586959839, - -1.313927412033081, - -1.280707597732544, - -1.246314525604248, - -1.211686372756958, - -1.2637059688568115, - -1.2958736419677734, - -1.3264544010162354, - -1.354614019393921, - -1.3795844316482544, - -1.4006844758987427, - -1.4173386096954346, - -1.4290926456451416, - -1.4356259107589722, - -1.4367600679397583, - -1.432464361190796, - -1.4228558540344238, - -1.4081965684890747, - -1.388886570930481, - -1.365452527999878, - -1.338533639907837, - -1.3088641166687012, - -1.277253270149231, - -1.2445634603500366, - -1.211686372756958, - -1.2637059688568115, - -1.2905982732772827, - -1.3160476684570312, - -1.3393596410751343, - -1.3598986864089966, - -1.3771041631698608, - -1.3905071020126343, - -1.399741768836975, - -1.404556155204773, - -1.404819130897522, - -1.4005234241485596, - -1.3917860984802246, - -1.3788456916809082, - -1.3620550632476807, - -1.3418723344802856, - -1.3188477754592896, - -1.2936097383499146, - -1.2668465375900269, - -1.239288091659546, - -1.211686372756958, - -1.2637059688568115, - -1.2823703289031982, - -1.2998161315917969, - -1.3155673742294312, - -1.3291945457458496, - -1.3403258323669434, - -1.3486577272415161, - -1.3539628982543945, - -1.3560965061187744, - -1.3550004959106445, - -1.3507047891616821, - -1.343326449394226, - -1.3330668210983276, - -1.3202056884765625, - -1.3050938844680786, - -1.2881437540054321, - -1.2698174715042114, - -1.2506150007247925, - -1.2310601472854614, - -1.211686372756958, - -1.2637059688568115, - -1.2720813751220703, - -1.2795188426971436, - -1.2858154773712158, - -1.2907994985580444, - -1.2943350076675415, - -1.2963255643844604, - -1.2967169284820557, - -1.2954983711242676, - -1.2927030324935913, - -1.288407325744629, - -1.2827281951904297, - -1.2758208513259888, - -1.2678735256195068, - -1.2591030597686768, - -1.249748706817627, - -1.240065574645996, - -1.2303177118301392, - -1.2207711935043335, - -1.211686372756958 - ], - "y": [ - 0.8663361072540283, - 0.8858715891838074, - 0.9043959379196167, - 0.9214038252830505, - 0.936431348323822, - 0.949068546295166, - 0.9589707851409912, - 0.9658678770065308, - 0.9695717096328735, - 0.96998131275177, - 0.9670854210853577, - 0.9609630703926086, - 0.9517812728881836, - 0.9397904872894287, - 0.9253177642822266, - 0.9087579250335693, - 0.8905625939369202, - 0.8712282180786133, - 0.8512820601463318, - 0.831268310546875, - 0.8663361072540283, - 0.8984252214431763, - 0.9291607141494751, - 0.9577041864395142, - 0.9832772016525269, - 1.0051820278167725, - 1.0228211879730225, - 1.0357136726379395, - 1.0435075759887695, - 1.0459904670715332, - 1.0430946350097656, - 1.0348989963531494, - 1.0216270685195923, - 1.00364089012146, - 0.981431245803833, - 0.9556037187576294, - 0.9268629550933838, - 0.8959929347038269, - 0.8638356328010559, - 0.831268310546875, - 0.8663361072540283, - 0.9074755311012268, - 0.9470144510269165, - 0.9838744401931763, - 1.01705002784729, - 1.0456361770629883, - 1.0688532590866089, - 1.0860679149627686, - 1.0968105792999268, - 1.1007882356643677, - 1.0978922843933105, - 1.0882019996643066, - 1.0719813108444214, - 1.0496729612350464, - 1.0218853950500488, - 0.9893765449523926, - 0.9530332088470459, - 0.9138467311859131, - 0.8728859424591064, - 0.831268310546875, - 0.8663361072540283, - 0.9120418429374695, - 0.9560225009918213, - 0.997078537940979, - 1.0340899229049683, - 1.066047191619873, - 1.0920785665512085, - 1.1114740371704102, - 1.123704433441162, - 1.1284362077713013, - 1.1255403757095337, - 1.115095853805542, - 1.097387433052063, - 1.072898268699646, - 1.0422964096069336, - 1.0064165592193604, - 0.9662373065948486, - 0.9228547811508179, - 0.8774522542953491, - 0.831268310546875, - 0.8663361072540283, - 0.911629319190979, - 0.9552087187767029, - 0.9958856701850891, - 1.032550573348999, - 1.0642032623291016, - 1.0899803638458252, - 1.1091787815093994, - 1.1212748289108276, - 1.1259384155273438, - 1.1230425834655762, - 1.112666130065918, - 1.0950921773910522, - 1.0708000659942627, - 1.040452480316162, - 1.0048770904541016, - 0.9650444388389587, - 0.9220409393310547, - 0.8770397305488586, - 0.831268310546875, - 0.8663361072540283, - 0.9062826037406921, - 0.9446612596511841, - 0.9804250597953796, - 1.0125985145568848, - 1.0403040647506714, - 1.0627859830856323, - 1.0794309377670288, - 1.0897849798202515, - 1.093565583229065, - 1.0906697511672974, - 1.0811762809753418, - 1.0653443336486816, - 1.0436056852340698, - 1.016553282737732, - 0.9849251508712769, - 0.9495838284492493, - 0.9114934802055359, - 0.8716930747032166, - 0.831268310546875, - 0.8663361072540283, - 0.89658123254776, - 0.925523042678833, - 0.952372133731842, - 0.9763961434364319, - 0.9969396591186523, - 1.0134423971176147, - 1.0254541635513306, - 1.0326473712921143, - 1.0348256826400757, - 1.031929850578308, - 1.0240387916564941, - 1.0113675594329834, - 0.9942620992660522, - 0.9731888771057129, - 0.9487227201461792, - 0.9215309023857117, - 0.8923553228378296, - 0.8619917035102844, - 0.831268310546875, - 0.8663361072540283, - 0.8835763931274414, - 0.8998681306838989, - 0.9147669076919556, - 0.9278663396835327, - 0.9388090968132019, - 0.9472967386245728, - 0.9530977010726929, - 0.9560537338256836, - 0.9560842514038086, - 0.9531883597373962, - 0.9474450945854187, - 0.9390110969543457, - 0.928116500377655, - 0.9150583744049072, - 0.90019291639328, - 0.8839256763458252, - 0.8667003512382507, - 0.8489868640899658, - 0.831268310546875, - 0.8663361072540283, - 0.8686773777008057, - 0.8704765439033508, - 0.8716844320297241, - 0.8722681403160095, - 0.8722118139266968, - 0.8715168833732605, - 0.8702024221420288, - 0.8683041334152222, - 0.8658739924430847, - 0.8629781007766724, - 0.8596954941749573, - 0.8561158180236816, - 0.8523366451263428, - 0.8484610319137573, - 0.8445947170257568, - 0.8408432006835938, - 0.8373087644577026, - 0.8340878486633301, - 0.831268310546875, - 0.8663361072540283, - 0.8534987568855286, - 0.8405332565307617, - 0.8277933597564697, - 0.8156265020370483, - 0.8043646216392517, - 0.7943148612976074, - 0.7857513427734375, - 0.7789077162742615, - 0.7739706039428711, - 0.7710747718811035, - 0.7702990770339966, - 0.7716647386550903, - 0.7751345634460449, - 0.7806137800216675, - 0.7879530787467957, - 0.7969521284103394, - 0.8073655366897583, - 0.818909227848053, - 0.831268310546875, - 0.8663361072540283, - 0.839685320854187, - 0.8132832050323486, - 0.787850022315979, - 0.7640793919563293, - 0.7426197528839111, - 0.7240565419197083, - 0.7088960409164429, - 0.6975518465042114, - 0.690333366394043, - 0.6874374747276306, - 0.6889432072639465, - 0.6948094367980957, - 0.7048762440681458, - 0.7188689708709717, - 0.7364059090614319, - 0.7570087909698486, - 0.7801154851913452, - 0.8050957918167114, - 0.831268310546875, - 0.8663361072540283, - 0.8287340402603149, - 0.791679322719574, - 0.7561827898025513, - 0.723212718963623, - 0.6936683654785156, - 0.6683556437492371, - 0.6479650139808655, - 0.6330527067184448, - 0.6240255832672119, - 0.6211296916007996, - 0.6244440674781799, - 0.6338784694671631, - 0.6491753458976746, - 0.6699175238609314, - 0.6955392360687256, - 0.7253415584564209, - 0.7585116028785706, - 0.7941445112228394, - 0.831268310546875, - 0.8663361072540283, - 0.8218315839767456, - 0.7780627012252808, - 0.7362234592437744, - 0.6974550485610962, - 0.6628149747848511, - 0.6332481503486633, - 0.6095610857009888, - 0.5923998355865479, - 0.5822327136993408, - 0.5793367624282837, - 0.5837912559509277, - 0.5954744815826416, - 0.6140678524971008, - 0.6390641331672668, - 0.6697815656661987, - 0.705382227897644, - 0.7448949813842773, - 0.78724205493927, - 0.831268310546875, - 0.8663361072540283, - 0.8197259902954102, - 0.7739089131355286, - 0.7301347851753235, - 0.6895976066589355, - 0.6534030437469482, - 0.6225385665893555, - 0.5978458523750305, - 0.5799986124038696, - 0.5694836974143982, - 0.5665878057479858, - 0.5713900327682495, - 0.5837592482566833, - 0.6033582091331482, - 0.6296522617340088, - 0.6619241237640381, - 0.6992935538291931, - 0.7407411932945251, - 0.7851364016532898, - 0.831268310546875, - 0.8663361072540283, - 0.822645366191864, - 0.7796680927276611, - 0.7385766506195068, - 0.7004918456077576, - 0.6664525270462036, - 0.6373873353004456, - 0.6140888929367065, - 0.5971928834915161, - 0.587160050868988, - 0.5842641592025757, - 0.5885841846466064, - 0.6000022888183594, - 0.6182070374488831, - 0.6427017450332642, - 0.6728183627128601, - 0.7077354192733765, - 0.7465003728866577, - 0.7880558371543884, - 0.831268310546875, - 0.8663361072540283, - 0.830273449420929, - 0.7947161793708801, - 0.760634183883667, - 0.7289572358131409, - 0.7005493640899658, - 0.6761853694915771, - 0.65652996301651, - 0.642119288444519, - 0.6333463191986084, - 0.630450427532196, - 0.6335105895996094, - 0.6424434185028076, - 0.6570051312446594, - 0.6767985820770264, - 0.7012838125228882, - 0.7297929525375366, - 0.7615483999252319, - 0.7956838607788086, - 0.831268310546875, - 0.8663361072540283, - 0.8417835235595703, - 0.8174223899841309, - 0.7939172387123108, - 0.7719091773033142, - 0.7519986033439636, - 0.7347285151481628, - 0.7205700874328613, - 0.7099094390869141, - 0.7030375003814697, - 0.7001416683197021, - 0.701300859451294, - 0.7064834833145142, - 0.7155482172966003, - 0.7282477617263794, - 0.7442357540130615, - 0.7630760073661804, - 0.7842546701431274, - 0.8071939945220947, - 0.831268310546875, - 0.8663361072540283, - 0.8559284210205078, - 0.84532630443573, - 0.834818959236145, - 0.8246930837631226, - 0.8152248859405518, - 0.8066725134849548, - 0.7992693781852722, - 0.7932173609733582, - 0.7886815667152405, - 0.7857856750488281, - 0.7846087217330933, - 0.785182774066925, - 0.7874922752380371, - 0.7914741039276123, - 0.7970196604728699, - 0.8039777278900146, - 0.8121585249900818, - 0.8213388323783875, - 0.831268310546875, - 0.8663361072540283, - 0.8711751699447632, - 0.8754039406776428, - 0.8789070844650269, - 0.8815890550613403, - 0.8833766579627991, - 0.8842211961746216, - 0.8840996026992798, - 0.8830151557922363, - 0.8809974789619446, - 0.8781015872955322, - 0.8744065165519714, - 0.8700129985809326, - 0.8650408983230591, - 0.8596258759498596, - 0.8539156317710876, - 0.8480658531188965, - 0.8422361612319946, - 0.8365856409072876, - 0.831268310546875, - 0.8663361072540283, - 0.8858716487884521, - 0.9043959975242615, - 0.9214038848876953, - 0.9364314079284668, - 0.9490686058998108, - 0.9589707851409912, - 0.9658679366111755, - 0.9695717692375183, - 0.96998131275177, - 0.9670854806900024, - 0.9609631299972534, - 0.9517813324928284, - 0.9397905468940735, - 0.9253178238868713, - 0.9087579250335693, - 0.8905626535415649, - 0.8712282180786133, - 0.8512820601463318, - 0.831268310546875 - ], - "z": [ - 0.5071384310722351, - 0.4574352502822876, - 0.40877196192741394, - 0.3624759316444397, - 0.31981000304222107, - 0.28193801641464233, - 0.2498929649591446, - 0.2245490550994873, - 0.2065974771976471, - 0.19652801752090454, - 0.19461524486541748, - 0.20091143250465393, - 0.21524477005004883, - 0.237224280834198, - 0.2662504315376282, - 0.30153149366378784, - 0.34210509061813354, - 0.38686445355415344, - 0.4345886707305908, - 0.48397591710090637, - 0.5071384310722351, - 0.4636614918708801, - 0.4210546016693115, - 0.38047993183135986, - 0.3430442810058594, - 0.30976876616477966, - 0.28156107664108276, - 0.2591906785964966, - 0.24326768517494202, - 0.2342265248298645, - 0.23231375217437744, - 0.23758164048194885, - 0.2498863786458969, - 0.268892377614975, - 0.2940812110900879, - 0.32476580142974854, - 0.3601091206073761, - 0.399147093296051, - 0.44081488251686096, - 0.48397591710090637, - 0.5071384310722351, - 0.4745820164680481, - 0.44259774684906006, - 0.4120580852031708, - 0.3837960362434387, - 0.3585825562477112, - 0.337105393409729, - 0.3199504017829895, - 0.3075854480266571, - 0.3003478944301605, - 0.29843515157699585, - 0.30189937353134155, - 0.310646116733551, - 0.3244366943836212, - 0.3428950309753418, - 0.3655175566673279, - 0.391687273979187, - 0.42069023847579956, - 0.45173540711402893, - 0.48397591710090637, - 0.5071384310722351, - 0.4890134036540985, - 0.4710668921470642, - 0.4537883996963501, - 0.4376492500305176, - 0.4230896830558777, - 0.41050684452056885, - 0.40024393796920776, - 0.39258095622062683, - 0.38772690296173096, - 0.3858141303062439, - 0.3868948817253113, - 0.3909396529197693, - 0.39783814549446106, - 0.4074021279811859, - 0.41937077045440674, - 0.43341758847236633, - 0.4491593837738037, - 0.46616679430007935, - 0.48397591710090637, - 0.5071384310722351, - 0.5053918361663818, - 0.5033769607543945, - 0.5011487603187561, - 0.49876806139945984, - 0.4962998032569885, - 0.4938112497329712, - 0.4913703501224518, - 0.48904362320899963, - 0.4868945777416229, - 0.48498183488845825, - 0.48335757851600647, - 0.4820660650730133, - 0.4811425507068634, - 0.48061224818229675, - 0.4804896116256714, - 0.48077794909477234, - 0.48146945238113403, - 0.4825451970100403, - 0.48397591710090637, - 0.5071384310722351, - 0.5219423770904541, - 0.5360265970230103, - 0.5490069389343262, - 0.5605292916297913, - 0.5702794194221497, - 0.577991247177124, - 0.5834545493125916, - 0.5865201950073242, - 0.5871046781539917, - 0.5851919054985046, - 0.580834150314331, - 0.5741502642631531, - 0.5653225779533386, - 0.5545918941497803, - 0.5422508120536804, - 0.52863609790802, - 0.5141190886497498, - 0.49909576773643494, - 0.483975887298584, - 0.5071384310722351, - 0.5368715524673462, - 0.5654777884483337, - 0.5921767354011536, - 0.6162402033805847, - 0.637011706829071, - 0.6539247035980225, - 0.6665178537368774, - 0.6744476556777954, - 0.6774977445602417, - 0.6755850315093994, - 0.6687616109848022, - 0.657213568687439, - 0.6412559747695923, - 0.6213241815567017, - 0.5979617238044739, - 0.5718059539794922, - 0.5435702800750732, - 0.5140249729156494, - 0.483975887298584, - 0.5071384310722351, - 0.5485616326332092, - 0.5885390043258667, - 0.6259800791740417, - 0.6598635911941528, - 0.6892651915550232, - 0.7133829593658447, - 0.7315590381622314, - 0.7432975769042969, - 0.7482784390449524, - 0.7463656663894653, - 0.7376115322113037, - 0.722254753112793, - 0.7007142901420593, - 0.6735776662826538, - 0.641585111618042, - 0.6056092381477356, - 0.5666314959526062, - 0.5257149934768677, - 0.483975887298584, - 0.5071384310722351, - 0.5557456612586975, - 0.6027112007141113, - 0.6467537879943848, - 0.6866722106933594, - 0.7213773727416992, - 0.7499228715896606, - 0.7715299129486084, - 0.7856091260910034, - 0.7917764186859131, - 0.7898637056350708, - 0.7799230813980103, - 0.7622256278991699, - 0.7372542023658752, - 0.7056899070739746, - 0.6683937311172485, - 0.6263829469680786, - 0.5808036923408508, - 0.5328990817070007, - 0.483975887298584, - 0.5071383714675903, - 0.557645320892334, - 0.6064586043357849, - 0.6522467732429504, - 0.693760871887207, - 0.729868471622467, - 0.7595846652984619, - 0.7820989489555359, - 0.7967970967292786, - 0.8032782077789307, - 0.8013653755187988, - 0.7911110520362854, - 0.7727946639060974, - 0.7469160556793213, - 0.7141809463500977, - 0.6754823923110962, - 0.6318759322166443, - 0.5845510959625244, - 0.5347986817359924, - 0.483975887298584, - 0.5071384310722351, - 0.5540545582771301, - 0.5993751287460327, - 0.6418637037277222, - 0.6803615093231201, - 0.7138183116912842, - 0.7413215041160583, - 0.7621209025382996, - 0.7756491303443909, - 0.7815371751785278, - 0.7796244025230408, - 0.7699630856513977, - 0.7528166174888611, - 0.728652834892273, - 0.6981307864189148, - 0.6620830297470093, - 0.6214929223060608, - 0.5774675607681274, - 0.5312079787254333, - 0.483975887298584, - 0.5071384310722351, - 0.545362651348114, - 0.5822283625602722, - 0.6167298555374146, - 0.6479260921478271, - 0.6749660968780518, - 0.6971123218536377, - 0.7137606143951416, - 0.7244569659233093, - 0.728909432888031, - 0.726996660232544, - 0.7187708616256714, - 0.7044563293457031, - 0.6844436526298523, - 0.6592785716056824, - 0.6296476125717163, - 0.5963590145111084, - 0.5603208541870117, - 0.5225160717964172, - 0.483975887298584, - 0.5071384310722351, - 0.5325114130973816, - 0.5568764209747314, - 0.5795688033103943, - 0.5999695658683777, - 0.6175221800804138, - 0.6317479610443115, - 0.6422588229179382, - 0.6487680077552795, - 0.6510980129241943, - 0.6491852402687073, - 0.6430819630622864, - 0.6329545378684998, - 0.6190792918205261, - 0.6018346548080444, - 0.5816910862922668, - 0.5591979622840881, - 0.534968912601471, - 0.5096648335456848, - 0.483975887298584, - 0.5071384310722351, - 0.5168935060501099, - 0.5260666012763977, - 0.5344074964523315, - 0.5416886210441589, - 0.5477114319801331, - 0.5523115396499634, - 0.555363655090332, - 0.5567843317985535, - 0.5565348863601685, - 0.5546221137046814, - 0.5510982275009155, - 0.5460593700408936, - 0.539642870426178, - 0.5320238471031189, - 0.5234101414680481, - 0.5140366554260254, - 0.5041590929031372, - 0.4940468966960907, - 0.483975887298584, - 0.5071384310722351, - 0.500201404094696, - 0.4931376576423645, - 0.4861399233341217, - 0.47939908504486084, - 0.4730989933013916, - 0.46741148829460144, - 0.4624917507171631, - 0.45847392082214355, - 0.4554676413536072, - 0.4535548985004425, - 0.4527878761291504, - 0.4531874656677246, - 0.45474278926849365, - 0.45741143822669983, - 0.46112060546875, - 0.46576911211013794, - 0.471230149269104, - 0.4773547649383545, - 0.48397591710090637, - 0.5071384310722351, - 0.48424386978149414, - 0.46165791153907776, - 0.4399966299533844, - 0.4198509156703949, - 0.4017702639102936, - 0.3862478733062744, - 0.3737071454524994, - 0.36449018120765686, - 0.35884836316108704, - 0.35693562030792236, - 0.3588041067123413, - 0.3644028604030609, - 0.37357914447784424, - 0.3860827088356018, - 0.40157243609428406, - 0.41962581872940063, - 0.43975040316581726, - 0.461397260427475, - 0.48397591710090637, - 0.5071384310722351, - 0.47075021266937256, - 0.43503862619400024, - 0.40097787976264954, - 0.36949700117111206, - 0.3414546847343445, - 0.31761592626571655, - 0.29863089323043823, - 0.2850174903869629, - 0.277147114276886, - 0.2752343714237213, - 0.2793314456939697, - 0.28932660818099976, - 0.3049471974372864, - 0.3257671296596527, - 0.35121849179267883, - 0.38060706853866577, - 0.41313111782073975, - 0.4479036033153534, - 0.48397591710090637, - 0.5071384310722351, - 0.4611826539039612, - 0.4161645174026489, - 0.3733120262622833, - 0.3337940275669098, - 0.2986885607242584, - 0.2689531147480011, - 0.24539881944656372, - 0.228668212890625, - 0.21921765804290771, - 0.21730488538742065, - 0.22298216819763184, - 0.23609453439712524, - 0.2562843859195709, - 0.2830009460449219, - 0.31551551818847656, - 0.35294121503829956, - 0.3942570090293884, - 0.438336044549942, - 0.48397591710090637, - 0.5071384310722351, - 0.45657801628112793, - 0.40708082914352417, - 0.35999709367752075, - 0.31661102175712585, - 0.2781061828136444, - 0.2455328106880188, - 0.21977946162223816, - 0.20154857635498047, - 0.19133755564689636, - 0.1894247829914093, - 0.1958625316619873, - 0.21047517657279968, - 0.232864111661911, - 0.26241859793663025, - 0.2983325123786926, - 0.3396262526512146, - 0.38517332077026367, - 0.43373140692710876, - 0.48397591710090637, - 0.5071384310722351, - 0.4574352502822876, - 0.40877196192741394, - 0.3624759316444397, - 0.31981000304222107, - 0.28193801641464233, - 0.24989299476146698, - 0.2245490550994873, - 0.2065974771976471, - 0.19652801752090454, - 0.19461524486541748, - 0.20091143250465393, - 0.21524477005004883, - 0.23722431063652039, - 0.2662504315376282, - 0.30153149366378784, - 0.34210512042045593, - 0.38686445355415344, - 0.4345886707305908, - 0.48397591710090637 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.215449571609497, - -1.2129192352294922, - -1.2120170593261719, - -1.212767481803894, - -1.2151501178741455, - -1.2190998792648315, - -1.2245092391967773, - -1.2312304973602295, - -1.2390804290771484, - -1.2478446960449219, - -1.25728440284729, - -1.2671420574188232, - -1.277148723602295, - -1.2870314121246338, - -1.2965205907821655, - -1.3053574562072754, - -1.3133008480072021, - -1.320134162902832, - -1.3256710767745972, - -1.3297605514526367, - -1.215449571609497, - -1.2020745277404785, - -1.1906232833862305, - -1.181408166885376, - -1.1746808290481567, - -1.1706244945526123, - -1.169350028038025, - -1.1708920001983643, - -1.175208568572998, - -1.182181715965271, - -1.1916214227676392, - -1.2032701969146729, - -1.2168102264404297, - -1.2318722009658813, - -1.2480452060699463, - -1.2648881673812866, - -1.2819416522979736, - -1.2987403869628906, - -1.3148263692855835, - -1.3297605514526367, - -1.215449571609497, - -1.1927635669708252, - -1.1722553968429565, - -1.1544843912124634, - -1.1399354934692383, - -1.1290055513381958, - -1.1219924688339233, - -1.119087815284729, - -1.120370626449585, - -1.1258060932159424, - -1.1352458000183105, - -1.1484323740005493, - -1.1650059223175049, - -1.1845146417617798, - -1.2064261436462402, - -1.2301428318023682, - -1.255017876625061, - -1.2803725004196167, - -1.3055154085159302, - -1.3297605514526367, - -1.215449571609497, - -1.1859954595565796, - -1.1589038372039795, - -1.134913682937622, - -1.1146793365478516, - -1.0987528562545776, - -1.0875685214996338, - -1.08143150806427, - -1.0805093050003052, - -1.084826946258545, - -1.094266653060913, - -1.10857093334198, - -1.1273497343063354, - -1.1500906944274902, - -1.176173448562622, - -1.2048866748809814, - -1.2354470491409302, - -1.2670210599899292, - -1.2987473011016846, - -1.3297605514526367, - -1.215449571609497, - -1.1825037002563477, - -1.1520155668258667, - -1.124816656112671, - -1.1016491651535034, - -1.0831449031829834, - -1.0698084831237793, - -1.0620039701461792, - -1.0599440336227417, - -1.0636849403381348, - -1.073124647140503, - -1.0880056619644165, - -1.107922077178955, - -1.1323306560516357, - -1.1605654954910278, - -1.1918565034866333, - -1.2253501415252686, - -1.2601327896118164, - -1.2952555418014526, - -1.3297605514526367, - -1.215449571609497, - -1.182666540145874, - -1.152336835861206, - -1.1252877712249756, - -1.1022570133209229, - -1.0838730335235596, - -1.0706369876861572, - -1.0629103183746338, - -1.0609034299850464, - -1.064671277999878, - -1.074110984802246, - -1.0889650583267212, - -1.1088284254074097, - -1.1331591606140137, - -1.161293625831604, - -1.1924643516540527, - -1.2258211374282837, - -1.2604540586471558, - -1.295418381690979, - -1.3297605514526367, - -1.215449571609497, - -1.1864665746688843, - -1.1598330736160278, - -1.1362757682800293, - -1.1164370775222778, - -1.1008583307266235, - -1.0899643898010254, - -1.084052324295044, - -1.083283543586731, - -1.0876789093017578, - -1.097118616104126, - -1.1113451719284058, - -1.1299705505371094, - -1.1524864435195923, - -1.178278923034668, - -1.2066444158554077, - -1.2368091344833374, - -1.2679502964019775, - -1.2992184162139893, - -1.3297605514526367, - -1.215449571609497, - -1.1934916973114014, - -1.173691749572754, - -1.1565898656845093, - -1.1426526308059692, - -1.1322602033615112, - -1.1256959438323975, - -1.1231390237808228, - -1.1246590614318848, - -1.130214810371399, - -1.139654517173767, - -1.1527206897735596, - -1.1690571308135986, - -1.188218116760254, - -1.2096807956695557, - -1.2328599691390991, - -1.257123351097107, - -1.2818089723587036, - -1.3062435388565063, - -1.3297605514526367, - -1.215449571609497, - -1.2029807567596436, - -1.192411184310913, - -1.18402898311615, - -1.178062915802002, - -1.174675703048706, - -1.1739598512649536, - -1.1759346723556519, - -1.1805464029312134, - -1.187669277191162, - -1.1971089839935303, - -1.2086080312728882, - -1.2218527793884277, - -1.2364819049835205, - -1.25209641456604, - -1.2682702541351318, - -1.284562349319458, - -1.3005282878875732, - -1.3157325983047485, - -1.3297605514526367, - -1.215449571609497, - -1.2139055728912354, - -1.2139626741409302, - -1.215619444847107, - -1.2188305854797363, - -1.223508596420288, - -1.2295258045196533, - -1.2367180585861206, - -1.244889259338379, - -1.2538164854049683, - -1.2632561922073364, - -1.2729510068893433, - -1.282636284828186, - -1.2920479774475098, - -1.3009291887283325, - -1.3090379238128662, - -1.316152811050415, - -1.3220798969268799, - -1.3266574144363403, - -1.3297605514526367, - -1.215449571609497, - -1.2250821590423584, - -1.236011028289795, - -1.2479380369186401, - -1.26053786277771, - -1.273466944694519, - -1.286372423171997, - -1.2989025115966797, - -1.3107150793075562, - -1.3214882612228394, - -1.3309279680252075, - -1.3387768268585205, - -1.3448206186294556, - -1.3488945960998535, - -1.3508875370025635, - -1.3507452011108398, - -1.3484714031219482, - -1.3441282510757446, - -1.3378340005874634, - -1.3297605514526367, - -1.215449571609497, - -1.2352993488311768, - -1.256166696548462, - -1.277482509613037, - -1.298665165901184, - -1.3191369771957397, - -1.3383395671844482, - -1.3557491302490234, - -1.370890736579895, - -1.3833513259887695, - -1.3927910327911377, - -1.3989523649215698, - -1.4016672372817993, - -1.4008617401123047, - -1.3965576887130737, - -1.388872504234314, - -1.3780158758163452, - -1.3642839193344116, - -1.3480511903762817, - -1.3297605514526367, - -1.215449571609497, - -1.2434500455856323, - -1.2722457647323608, - -1.301051139831543, - -1.3290807008743286, - -1.355569839477539, - -1.379795789718628, - -1.4010978937149048, - -1.4188950061798096, - -1.4327017068862915, - -1.4421415328979492, - -1.4469566345214844, - -1.4470160007476807, - -1.4423179626464844, - -1.4329904317855835, - -1.419288158416748, - -1.4015846252441406, - -1.380362868309021, - -1.3562018871307373, - -1.3297605514526367, - -1.215449571609497, - -1.2486509084701538, - -1.2825055122375488, - -1.3160902261734009, - -1.348488688468933, - -1.3788172006607056, - -1.4062485694885254, - -1.4300345182418823, - -1.449526071548462, - -1.4641917943954468, - -1.473631501197815, - -1.4775878190994263, - -1.4759526252746582, - -1.4687706232070923, - -1.45623779296875, - -1.438696026802063, - -1.416623592376709, - -1.3906227350234985, - -1.3614027500152588, - -1.3297605514526367, - -1.215449571609497, - -1.2503383159637451, - -1.2858344316482544, - -1.3209697008132935, - -1.354785680770874, - -1.3863599300384521, - -1.4148313999176025, - -1.4394230842590332, - -1.4594645500183105, - -1.4744089841842651, - -1.4838486909866333, - -1.487526297569275, - -1.4853413105010986, - -1.4773534536361694, - -1.4637806415557861, - -1.444993019104004, - -1.4215030670166016, - -1.393951654434204, - -1.36309015750885, - -1.3297605514526367, - -1.215449571609497, - -1.248329520225525, - -1.2818716764450073, - -1.3151609897613525, - -1.3472894430160522, - -1.3773808479309082, - -1.4046140909194946, - -1.4282464981079102, - -1.4476335048675537, - -1.4622461795806885, - -1.4716858863830566, - -1.4756951332092285, - -1.4741647243499756, - -1.467136263847351, - -1.4548014402389526, - -1.4374969005584717, - -1.4156943559646606, - -1.389988899230957, - -1.3610813617706299, - -1.3297605514526367, - -1.215449571609497, - -1.242842197418213, - -1.27104651927948, - -1.2992935180664062, - -1.3268123865127563, - -1.352852702140808, - -1.3767039775848389, - -1.3977158069610596, - -1.4153149127960205, - -1.4290212392807007, - -1.4384609460830688, - -1.4433765411376953, - -1.4436339139938354, - -1.4392261505126953, - -1.4302732944488525, - -1.4170197248458862, - -1.3998268842697144, - -1.3791637420654297, - -1.3555940389633179, - -1.3297605514526367, - -1.215449571609497, - -1.2344708442687988, - -1.2545322179794312, - -1.2750866413116455, - -1.295573353767395, - -1.3154336214065552, - -1.3341255187988281, - -1.3511393070220947, - -1.3660109043121338, - -1.3783347606658936, - -1.3877744674682617, - -1.3940726518630981, - -1.3970575332641602, - -1.3966476917266846, - -1.3928542137145996, - -1.385780692100525, - -1.3756201267242432, - -1.3626494407653809, - -1.3472226858139038, - -1.3297605514526367, - -1.215449571609497, - -1.2241227626800537, - -1.2341183423995972, - -1.2451637983322144, - -1.2569576501846313, - -1.2691785097122192, - -1.2814927101135254, - -1.2935645580291748, - -1.3050645589828491, - -1.3156793117523193, - -1.3251190185546875, - -1.333126187324524, - -1.3394826650619507, - -1.3440148830413818, - -1.3465991020202637, - -1.3471651077270508, - -1.3456971645355225, - -1.3422355651855469, - -1.3368746042251587, - -1.3297605514526367, - -1.215449571609497, - -1.2129192352294922, - -1.2120170593261719, - -1.2127673625946045, - -1.215149998664856, - -1.2190998792648315, - -1.2245092391967773, - -1.2312304973602295, - -1.2390803098678589, - -1.2478446960449219, - -1.25728440284729, - -1.2671419382095337, - -1.2771486043930054, - -1.2870312929153442, - -1.2965205907821655, - -1.3053573369979858, - -1.3133008480072021, - -1.320134162902832, - -1.3256710767745972, - -1.3297605514526367 - ], - "y": [ - 0.7399442195892334, - 0.739430844783783, - 0.7423444390296936, - 0.748605489730835, - 0.7580432295799255, - 0.7704002857208252, - 0.7853394746780396, - 0.8024533987045288, - 0.8212751746177673, - 0.8412914276123047, - 0.8619561195373535, - 0.882705569267273, - 0.9029738903045654, - 0.9222081303596497, - 0.9398835897445679, - 0.9555182456970215, - 0.968685507774353, - 0.9790262579917908, - 0.9862584471702576, - 0.9901847839355469, - 0.7399442195892334, - 0.7535079717636108, - 0.7701147794723511, - 0.7893115282058716, - 0.8105745911598206, - 0.8333240151405334, - 0.8569392561912537, - 0.8807761073112488, - 0.9041844010353088, - 0.9265255928039551, - 0.9471902847290039, - 0.9656148552894592, - 0.9812965989112854, - 0.993807852268219, - 1.002807378768921, - 1.0080496072769165, - 1.0093915462493896, - 1.0067965984344482, - 1.0003355741500854, - 0.9901847839355469, - 0.7399442195892334, - 0.7663002610206604, - 0.7953503131866455, - 0.8263019919395447, - 0.8583110570907593, - 0.8905042409896851, - 0.9220035672187805, - 0.9519497752189636, - 0.9795259237289429, - 1.0039799213409424, - 1.0246446132659912, - 1.0409563779830933, - 1.0524702072143555, - 1.0588722229003906, - 1.0599875450134277, - 1.0557860136032104, - 1.0463820695877075, - 1.0320321321487427, - 1.0131278038024902, - 0.9901847839355469, - 0.7399442195892334, - 0.776421308517456, - 0.8153164386749268, - 0.8555684685707092, - 0.8960795998573303, - 0.9357446432113647, - 0.9734817743301392, - 1.0082615613937378, - 1.0391353368759155, - 1.065260887145996, - 1.085925579071045, - 1.100565791130066, - 1.1087820529937744, - 1.1103503704071045, - 1.105228066444397, - 1.0935544967651367, - 1.075648546218872, - 1.051998257637024, - 1.0232489109039307, - 0.9901847839355469, - 0.7399442195892334, - 0.7827744483947754, - 0.8278493881225586, - 0.8739394545555115, - 0.9197874069213867, - 0.9641426801681519, - 1.0057953596115112, - 1.0436092615127563, - 1.0765529870986938, - 1.1037278175354004, - 1.1243925094604492, - 1.1379833221435547, - 1.144129753112793, - 1.1426639556884766, - 1.1336259841918945, - 1.117262363433838, - 1.0940194129943848, - 1.0645312070846558, - 1.02960205078125, - 0.9901847839355469, - 0.7399442195892334, - 0.7846711874008179, - 0.8315911293029785, - 0.8794241547584534, - 0.9268654584884644, - 0.972620964050293, - 1.0154426097869873, - 1.0541623830795288, - 1.0877240896224976, - 1.1152122020721436, - 1.1358768939971924, - 1.1491544246673584, - 1.1546828746795654, - 1.1523113250732422, - 1.1421043872833252, - 1.1243404150009155, - 1.0995041131973267, - 1.0682729482650757, - 1.0314987897872925, - 0.9901847839355469, - 0.7399442195892334, - 0.781906008720398, - 0.8261361718177795, - 0.8714281916618347, - 0.916546642780304, - 0.9602607488632202, - 1.0013781785964966, - 1.0387773513793945, - 1.0714380741119385, - 1.0984694957733154, - 1.1191341876983643, - 1.1328685283660889, - 1.1392978429794312, - 1.138246774673462, - 1.129744052886963, - 1.1140216588974, - 1.091508150100708, - 1.0628180503845215, - 1.0287336111068726, - 0.9901847839355469, - 0.7399442195892334, - 0.7747785449028015, - 0.8120756149291992, - 0.8508180975914001, - 0.8899492025375366, - 0.9284014701843262, - 0.9651261568069458, - 0.999121367931366, - 1.029459834098816, - 1.055314064025879, - 1.0759787559509277, - 1.0908902883529663, - 1.0996417999267578, - 1.1019947528839111, - 1.0978848934173584, - 1.0874241590499878, - 1.0708980560302734, - 1.0487574338912964, - 1.021606206893921, - 0.9901847839355469, - 0.7399442195892334, - 0.7640611529350281, - 0.7909331321716309, - 0.8198273181915283, - 0.8499553799629211, - 0.8804956078529358, - 0.9106149077415466, - 0.9394917488098145, - 0.9663383960723877, - 0.9904224872589111, - 1.01108717918396, - 1.027768850326538, - 1.040012240409851, - 1.0474835634231567, - 1.0499789714813232, - 1.047430396080017, - 1.0399073362350464, - 1.0276150703430176, - 1.0108888149261475, - 0.9901847839355469, - 0.7399442195892334, - 0.7509152293205261, - 0.7649999260902405, - 0.7818140983581543, - 0.8008991479873657, - 0.8217344284057617, - 0.8437516689300537, - 0.8663502931594849, - 0.8889138102531433, - 0.9108268022537231, - 0.931491494178772, - 0.9503442645072937, - 0.9668707847595215, - 0.9806203246116638, - 0.9912177920341492, - 0.9983741044998169, - 1.0018941164016724, - 1.0016818046569824, - 0.9977428317070007, - 0.9901847839355469, - 0.7399442195892334, - 0.7367653250694275, - 0.7370861172676086, - 0.7408978343009949, - 0.7480964660644531, - 0.7584856748580933, - 0.7717821002006531, - 0.7876230478286743, - 0.8055763244628906, - 0.8251523375511169, - 0.8458170890808105, - 0.867006778717041, - 0.8881435394287109, - 0.9086507558822632, - 0.9279689788818359, - 0.9455714225769043, - 0.9609778523445129, - 0.9737679958343506, - 0.9835929870605469, - 0.9901847839355469, - 0.7399442195892334, - 0.7231448888778687, - 0.7102167010307312, - 0.7015123963356018, - 0.6972693800926208, - 0.6976033449172974, - 0.7025052309036255, - 0.7118412852287292, - 0.7253568768501282, - 0.7426833510398865, - 0.7633480429649353, - 0.7867873311042786, - 0.8123617768287659, - 0.8393738269805908, - 0.86708664894104, - 0.894744336605072, - 0.9215924143791199, - 0.9468985795974731, - 0.9699724912643433, - 0.9901847839355469, - 0.7399442195892334, - 0.7115297913551331, - 0.687303364276886, - 0.6679258346557617, - 0.6539257168769836, - 0.6456848978996277, - 0.6434282064437866, - 0.6472171545028687, - 0.656948447227478, - 0.6723565459251404, - 0.693021297454834, - 0.7183788418769836, - 0.7477376461029053, - 0.780296802520752, - 0.8151682019233704, - 0.8514006733894348, - 0.8880058526992798, - 0.9239852428436279, - 0.9583573937416077, - 0.9901847839355469, - 0.7399442195892334, - 0.7031787633895874, - 0.670829176902771, - 0.6437777280807495, - 0.6227625012397766, - 0.6083565950393677, - 0.6009529829025269, - 0.600753664970398, - 0.6077641248703003, - 0.6217929720878601, - 0.6424576640129089, - 0.6691945195198059, - 0.7012741565704346, - 0.7378215789794922, - 0.7778398990631104, - 0.8202374577522278, - 0.8638577461242676, - 0.9075109958648682, - 0.950006365776062, - 0.9901847839355469, - 0.7399442195892334, - 0.6989967823028564, - 0.6625792980194092, - 0.6316850185394287, - 0.6071567535400391, - 0.5896635055541992, - 0.579682469367981, - 0.5774859189987183, - 0.5831338167190552, - 0.5964720249176025, - 0.6171367168426514, - 0.6445642113685608, - 0.6780064702033997, - 0.7165510654449463, - 0.7591468095779419, - 0.8046316504478455, - 0.8517650365829468, - 0.8992611169815063, - 0.9458244442939758, - 0.9901847839355469, - 0.7399442195892334, - 0.6994370222091675, - 0.6634476780891418, - 0.6329579949378967, - 0.6087995171546936, - 0.591631293296814, - 0.5819215774536133, - 0.5799353122711182, - 0.5857266187667847, - 0.599137544631958, - 0.6198022365570068, - 0.6471570134162903, - 0.6804558038711548, - 0.7187901735305786, - 0.7611145973205566, - 0.8062744736671448, - 0.8530380129814148, - 0.9001295566558838, - 0.9462646245956421, - 0.9901847839355469, - 0.7399442195892334, - 0.7044517993927002, - 0.673340380191803, - 0.6474587917327881, - 0.6275128722190857, - 0.6140467524528503, - 0.607427716255188, - 0.6078363656997681, - 0.6152615547180176, - 0.629500687122345, - 0.6501653790473938, - 0.6766919493675232, - 0.7083568572998047, - 0.7442963123321533, - 0.783530056476593, - 0.8249878287315369, - 0.8675388097763062, - 0.9100222587585449, - 0.9512794017791748, - 0.9901847839355469, - 0.7399442195892334, - 0.7134975790977478, - 0.6911852955818176, - 0.6736159920692444, - 0.6612688899040222, - 0.6544808149337769, - 0.6534368991851807, - 0.6581656336784363, - 0.6685380339622498, - 0.6842711567878723, - 0.7049359083175659, - 0.7299684882164001, - 0.7586861252784729, - 0.790305495262146, - 0.8239641189575195, - 0.8587438464164734, - 0.8936960101127625, - 0.9278671741485596, - 0.9603252410888672, - 0.9901847839355469, - 0.7399442195892334, - 0.7255942225456238, - 0.7150486707687378, - 0.7085950970649719, - 0.7064096331596375, - 0.7085518836975098, - 0.7149633169174194, - 0.725469172000885, - 0.7397828102111816, - 0.7575138211250305, - 0.7781785130500793, - 0.801213264465332, - 0.8259896636009216, - 0.8518319129943848, - 0.8780351877212524, - 0.9038845896720886, - 0.92867511510849, - 0.951730489730835, - 0.9724218845367432, - 0.9901847839355469, - 0.7399442195892334, - 0.739430844783783, - 0.7423444390296936, - 0.748605489730835, - 0.7580432891845703, - 0.7704002857208252, - 0.7853395342826843, - 0.8024533987045288, - 0.8212752342224121, - 0.8412914276123047, - 0.8619561791419983, - 0.8827056288719177, - 0.9029739499092102, - 0.9222081303596497, - 0.9398835897445679, - 0.9555182456970215, - 0.968685507774353, - 0.9790263175964355, - 0.9862584471702576, - 0.9901847839355469 - ], - "z": [ - 0.8467311859130859, - 0.841017484664917, - 0.8270674347877502, - 0.8052616119384766, - 0.7761947512626648, - 0.7406598329544067, - 0.699626088142395, - 0.6542128324508667, - 0.605658769607544, - 0.5552884340286255, - 0.5044757127761841, - 0.45460665225982666, - 0.4070415794849396, - 0.36307793855667114, - 0.32391491532325745, - 0.2906208038330078, - 0.2641037404537201, - 0.24508711695671082, - 0.23408958315849304, - 0.2314111888408661, - 0.8467311859130859, - 0.8447277545928955, - 0.8343867659568787, - 0.8159903287887573, - 0.7900402545928955, - 0.7572444081306458, - 0.7184973955154419, - 0.6748560667037964, - 0.6275108456611633, - 0.5777533054351807, - 0.5269405841827393, - 0.47645872831344604, - 0.4276847839355469, - 0.38194918632507324, - 0.34049949049949646, - 0.30446627736091614, - 0.27483248710632324, - 0.25240641832351685, - 0.23779985308647156, - 0.2314111888408661, - 0.8467311859130859, - 0.8482004404067993, - 0.8412373661994934, - 0.8260319828987122, - 0.8029990792274475, - 0.7727669477462769, - 0.736160159111023, - 0.6941772699356079, - 0.6479635238647461, - 0.5987794995307922, - 0.5479667782783508, - 0.4969114065170288, - 0.4470060467720032, - 0.3996119797229767, - 0.3560220003128052, - 0.31742510199546814, - 0.2848741412162781, - 0.2592570185661316, - 0.24127250909805298, - 0.2314111888408661, - 0.8467311859130859, - 0.8510591983795166, - 0.846876859664917, - 0.8342984318733215, - 0.8136669397354126, - 0.7855452299118042, - 0.7507003545761108, - 0.7100828289985657, - 0.6648004651069641, - 0.6160885691642761, - 0.5652758479118347, - 0.5137483477592468, - 0.46291154623031616, - 0.41415220499038696, - 0.3688003420829773, - 0.3280929923057556, - 0.29314059019088745, - 0.26489654183387756, - 0.24413126707077026, - 0.2314111888408661, - 0.8467311859130859, - 0.8529942035675049, - 0.8506941795349121, - 0.8398938179016113, - 0.8208879232406616, - 0.7941946983337402, - 0.7605423927307129, - 0.7208489775657654, - 0.6761971116065979, - 0.6278048157691956, - 0.5769920945167542, - 0.5251449942588806, - 0.47367775440216064, - 0.4239942729473114, - 0.37744981050491333, - 0.33531391620635986, - 0.298736035823822, - 0.2687138319015503, - 0.24606630206108093, - 0.2314111888408661, - 0.8467311859130859, - 0.8537958264350891, - 0.852275550365448, - 0.8422118425369263, - 0.8238793611526489, - 0.7977779507637024, - 0.7646197080612183, - 0.7253091335296631, - 0.6809184551239014, - 0.6326585412025452, - 0.5818458199501038, - 0.5298663377761841, - 0.47813791036605835, - 0.4280715584754944, - 0.3810330629348755, - 0.33830535411834717, - 0.30105406045913696, - 0.27029523253440857, - 0.24686792492866516, - 0.2314111888408661, - 0.8467311859130859, - 0.8533772230148315, - 0.851449728012085, - 0.8410013914108276, - 0.8223171234130859, - 0.7959067225456238, - 0.762490451335907, - 0.7229799628257751, - 0.6784528493881226, - 0.6301238536834717, - 0.5793110728263855, - 0.5274007320404053, - 0.475808709859848, - 0.4259423017501831, - 0.3791618049144745, - 0.33674317598342896, - 0.29984351992607117, - 0.26946938037872314, - 0.2464492917060852, - 0.2314111888408661, - 0.8467311859130859, - 0.8517836332321167, - 0.8483061194419861, - 0.836393415927887, - 0.8163706064224243, - 0.7887837290763855, - 0.7543853521347046, - 0.7141138315200806, - 0.6690675616264343, - 0.6204752922058105, - 0.5696625709533691, - 0.5180153846740723, - 0.46694254875183105, - 0.4178372025489807, - 0.3720388412475586, - 0.33079659938812256, - 0.29523560404777527, - 0.26632577180862427, - 0.24485576152801514, - 0.2314111888408661, - 0.8467311859130859, - 0.8491879105567932, - 0.8431854248046875, - 0.8288874626159668, - 0.8066840767860413, - 0.7771809101104736, - 0.7411827445030212, - 0.6996715068817139, - 0.6537795066833496, - 0.6047585606575012, - 0.5539458394050598, - 0.5027273893356323, - 0.45250028371810913, - 0.40463459491729736, - 0.36043602228164673, - 0.3211101293563843, - 0.2877296209335327, - 0.2612050771713257, - 0.24226000905036926, - 0.2314111888408661, - 0.8467311859130859, - 0.8458712100982666, - 0.8366425037384033, - 0.8192968368530273, - 0.794307291507721, - 0.762355625629425, - 0.7243133187294006, - 0.681218147277832, - 0.6342455148696899, - 0.5846767425537109, - 0.5338640213012695, - 0.4831933379173279, - 0.4340468645095825, - 0.38776516914367676, - 0.34561070799827576, - 0.30873334407806396, - 0.27813899517059326, - 0.2546621859073639, - 0.23894330859184265, - 0.2314111888408661, - 0.8467311859130859, - 0.8421930074691772, - 0.8293864727020264, - 0.8086608052253723, - 0.7805814743041992, - 0.7459143996238708, - 0.705605149269104, - 0.6607533097267151, - 0.612582266330719, - 0.562406063079834, - 0.5115933418273926, - 0.4615301191806793, - 0.4135820269584656, - 0.36905696988105774, - 0.32916945219039917, - 0.29500749707221985, - 0.26750296354293823, - 0.24740609526634216, - 0.23526513576507568, - 0.2314111888408661, - 0.8467311859130859, - 0.8385518789291382, - 0.822203516960144, - 0.7981320023536682, - 0.7669939994812012, - 0.7296388745307922, - 0.6870855093002319, - 0.6404947638511658, - 0.5911374092102051, - 0.5403598546981812, - 0.48954710364341736, - 0.4400852620601654, - 0.39332351088523865, - 0.35053735971450806, - 0.31289392709732056, - 0.2814200222492218, - 0.25697416067123413, - 0.24022316932678223, - 0.23162400722503662, - 0.2314111888408661, - 0.8467311859130859, - 0.8353424072265625, - 0.815872073173523, - 0.7888513803482056, - 0.7550172805786133, - 0.7152928113937378, - 0.6707614064216614, - 0.6226378679275513, - 0.5722348093986511, - 0.5209271311759949, - 0.47011440992355347, - 0.42118266224861145, - 0.37546658515930176, - 0.3342131972312927, - 0.2985478639602661, - 0.2694433033466339, - 0.24769353866577148, - 0.2338917851448059, - 0.22841453552246094, - 0.2314111888408661, - 0.8467311859130859, - 0.8329123854637146, - 0.8110783100128174, - 0.7818245887756348, - 0.7459492087364197, - 0.7044306993484497, - 0.6584016680717468, - 0.6091175675392151, - 0.5579227805137634, - 0.5062137842178345, - 0.45540109276771545, - 0.40687066316604614, - 0.36194634437561035, - 0.32185348868370056, - 0.2876858115196228, - 0.2603752315044403, - 0.24066677689552307, - 0.22909799218177795, - 0.22598448395729065, - 0.2314111888408661, - 0.8467311859130859, - 0.8315250873565674, - 0.8083416223526001, - 0.7778131365776062, - 0.7407724261283875, - 0.6982297897338867, - 0.6513457298278809, - 0.6013991832733154, - 0.549752414226532, - 0.49781426787376404, - 0.44700154662132263, - 0.3987002372741699, - 0.3542279005050659, - 0.314797580242157, - 0.2814848721027374, - 0.2551984488964081, - 0.2366553246974945, - 0.22636133432388306, - 0.2245972454547882, - 0.2314111888408661, - 0.8467311859130859, - 0.8313310146331787, - 0.8079586029052734, - 0.7772517204284668, - 0.7400479316711426, - 0.697361946105957, - 0.650358259677887, - 0.6003189086914062, - 0.5486088991165161, - 0.4966387450695038, - 0.4458260238170624, - 0.39755678176879883, - 0.3531476855278015, - 0.3138101100921631, - 0.2806170582771301, - 0.2544739246368408, - 0.2360939085483551, - 0.2259783148765564, - 0.22440308332443237, - 0.2314111888408661, - 0.8467311859130859, - 0.8323509693145752, - 0.8099707961082458, - 0.7802011966705322, - 0.7438541650772095, - 0.701921284198761, - 0.6555461883544922, - 0.6059939861297607, - 0.5546163320541382, - 0.5028145909309387, - 0.4520018696784973, - 0.4035641551017761, - 0.358822762966156, - 0.3189980387687683, - 0.2851763367652893, - 0.2582802176475525, - 0.23904338479042053, - 0.22799047827720642, - 0.22542306780815125, - 0.2314111888408661, - 0.8467311859130859, - 0.8344745635986328, - 0.8141601085662842, - 0.7863419055938721, - 0.7517788410186768, - 0.7114136219024658, - 0.6663473844528198, - 0.6178093552589417, - 0.5671235918998718, - 0.5156726241111755, - 0.46485987305641174, - 0.41607144474983215, - 0.3706381320953369, - 0.32979920506477356, - 0.2946687340736389, - 0.266204833984375, - 0.245184063911438, - 0.23217979073524475, - 0.22754669189453125, - 0.2314111888408661, - 0.8467311859130859, - 0.8374717235565186, - 0.8200725317001343, - 0.7950084209442139, - 0.7629629969596863, - 0.7248104214668274, - 0.6815913319587708, - 0.6344846487045288, - 0.5847753882408142, - 0.5338193774223328, - 0.48300665616989136, - 0.43372324109077454, - 0.3873134255409241, - 0.3450431823730469, - 0.3080655038356781, - 0.2773890197277069, - 0.2538506090641022, - 0.23809221386909485, - 0.23054379224777222, - 0.2314111888408661, - 0.8467311859130859, - 0.841017484664917, - 0.8270674347877502, - 0.8052616119384766, - 0.7761947512626648, - 0.7406598329544067, - 0.699626088142395, - 0.6542128324508667, - 0.6056588292121887, - 0.5552884340286255, - 0.5044757127761841, - 0.45460665225982666, - 0.40704160928726196, - 0.36307793855667114, - 0.32391494512557983, - 0.2906208038330078, - 0.2641037702560425, - 0.24508711695671082, - 0.23408958315849304, - 0.2314111888408661 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.2390143871307373, - -1.2372084856033325, - -1.2371060848236084, - -1.2387099266052246, - -1.2419763803482056, - -1.2468161582946777, - -1.253097414970398, - -1.2606487274169922, - -1.2692641019821167, - -1.2787086963653564, - -1.288724660873413, - -1.2990390062332153, - -1.3093701601028442, - -1.3194364309310913, - -1.328963279724121, - -1.3376907110214233, - -1.3453807830810547, - -1.3518236875534058, - -1.3568437099456787, - -1.3603038787841797, - -1.2390143871307373, - -1.2261260747909546, - -1.2152434587478638, - -1.2066634893417358, - -1.200620174407959, - -1.197278380393982, - -1.196729302406311, - -1.1989878416061401, - -1.203992486000061, - -1.2116066217422485, - -1.2216227054595947, - -1.2337672710418701, - -1.2477092742919922, - -1.2630683183670044, - -1.2794255018234253, - -1.2963345050811768, - -1.313334345817566, - -1.3299610614776611, - -1.3457611799240112, - -1.3603038787841797, - -1.2390143871307373, - -1.2165298461914062, - -1.1963127851486206, - -1.1789147853851318, - -1.164810299873352, - -1.1543842554092407, - -1.147920846939087, - -1.1455963850021362, - -1.1474745273590088, - -1.1535037755966187, - -1.1635197401046753, - -1.1772493124008179, - -1.1943178176879883, - -1.2142598628997803, - -1.2365312576293945, - -1.2605247497558594, - -1.285585641860962, - -1.311030387878418, - -1.3361650705337524, - -1.3603038787841797, - -1.2390143871307373, - -1.2094597816467285, - -1.1823656558990479, - -1.158470869064331, - -1.1384273767471313, - -1.1227818727493286, - -1.1119611263275146, - -1.1062601804733276, - -1.1058348417282104, - -1.1106964349746704, - -1.120712399482727, - -1.1356096267700195, - -1.1549816131591797, - -1.178300142288208, - -1.2049288749694824, - -1.2341417074203491, - -1.2651417255401611, - -1.2970832586288452, - -1.3290950059890747, - -1.3603038787841797, - -1.2390143871307373, - -1.2056821584701538, - -1.1749132871627808, - -1.1475472450256348, - -1.1243302822113037, - -1.10589599609375, - -1.0927469730377197, - -1.0852419137954712, - -1.0835857391357422, - -1.0878233909606934, - -1.09783935546875, - -1.1133605241775513, - -1.1339633464813232, - -1.159085988998413, - -1.1880429983139038, - -1.220044732093811, - -1.2542181015014648, - -1.2896308898925781, - -1.3253173828125, - -1.3603038787841797, - -1.2390143871307373, - -1.20560622215271, - -1.1747634410858154, - -1.1473275423049927, - -1.124046802520752, - -1.1055563688278198, - -1.092360496520996, - -1.0848191976547241, - -1.0831382274627686, - -1.087363362312317, - -1.0973793268203735, - -1.1129130125045776, - -1.1335406303405762, - -1.1586995124816895, - -1.1877033710479736, - -1.2197611331939697, - -1.2539983987808228, - -1.2894810438156128, - -1.3252413272857666, - -1.3603038787841797, - -1.2390143871307373, - -1.2092400789260864, - -1.1819322109222412, - -1.157835602760315, - -1.1376075744628906, - -1.1217998266220093, - -1.1108436584472656, - -1.1050379276275635, - -1.1045408248901367, - -1.1093661785125732, - -1.1193821430206299, - -1.1343156099319458, - -1.153759241104126, - -1.177182674407959, - -1.203946828842163, - -1.2333219051361084, - -1.264506459236145, - -1.2966498136520386, - -1.3288753032684326, - -1.3603038787841797, - -1.2390143871307373, - -1.216190218925476, - -1.1956428289413452, - -1.1779327392578125, - -1.1635429859161377, - -1.1528661251068115, - -1.146193504333496, - -1.1437069177627563, - -1.1454743146896362, - -1.1514475345611572, - -1.1614634990692139, - -1.1752490997314453, - -1.1924282312393188, - -1.2125325202941895, - -1.2350132465362549, - -1.2592573165893555, - -1.2846035957336426, - -1.3103604316711426, - -1.3358254432678223, - -1.3603038787841797, - -1.2390143871307373, - -1.225703239440918, - -1.2144094705581665, - -1.2054411172866821, - -1.1990426778793335, - -1.1953887939453125, - -1.1945792436599731, - -1.1966359615325928, - -1.201502799987793, - -1.2090470790863037, - -1.21906316280365, - -1.231277585029602, - -1.2453572750091553, - -1.2609182596206665, - -1.2775359153747559, - -1.2947570085525513, - -1.3121119737625122, - -1.3291270732879639, - -1.3453384637832642, - -1.3603038787841797, - -1.2390143871307373, - -1.236748456954956, - -1.2361985445022583, - -1.2373796701431274, - -1.2402596473693848, - -1.2447599172592163, - -1.2507575750350952, - -1.2580891847610474, - -1.2665547132492065, - -1.2759233713150024, - -1.285939335823059, - -1.2963296175003052, - -1.3068106174468994, - -1.3170965909957886, - -1.3269069194793701, - -1.335974097251892, - -1.3440505266189575, - -1.3509161472320557, - -1.3563836812973022, - -1.3603038787841797, - -1.2390143871307373, - -1.248128890991211, - -1.2586488723754883, - -1.2702875137329102, - -1.2827273607254028, - -1.2956291437149048, - -1.308640718460083, - -1.321407437324524, - -1.3335808515548706, - -1.3448289632797241, - -1.3548449277877808, - -1.3633556365966797, - -1.370128870010376, - -1.374979853630066, - -1.3777762651443481, - -1.3784418106079102, - -1.3769583702087402, - -1.3733664751052856, - -1.3677639961242676, - -1.3603038787841797, - -1.2390143871307373, - -1.2586110830307007, - -1.2793275117874146, - -1.3005985021591187, - -1.3218439817428589, - -1.3424841165542603, - -1.361956238746643, - -1.3797290325164795, - -1.3953176736831665, - -1.408297061920166, - -1.4183130264282227, - -1.4250924587249756, - -1.428450345993042, - -1.4282952547073364, - -1.4246312379837036, - -1.4175583124160767, - -1.4072693586349487, - -1.394045114517212, - -1.3782463073730469, - -1.3603038787841797, - -1.2390143871307373, - -1.2670594453811646, - -1.2959938049316406, - -1.3250280618667603, - -1.3533703088760376, - -1.3802474737167358, - -1.4049264192581177, - -1.4267338514328003, - -1.4450751543045044, - -1.4594497680664062, - -1.4694658517837524, - -1.4748499393463135, - -1.4754552841186523, - -1.471265435218811, - -1.4623945951461792, - -1.449084758758545, - -1.4316989183425903, - -1.410711407661438, - -1.3866946697235107, - -1.3603038787841797, - -1.2390143871307373, - -1.272558331489563, - -1.306841492652893, - -1.3409286737442017, - -1.3738901615142822, - -1.4048267602920532, - -1.4328948259353638, - -1.45732843875885, - -1.477461338043213, - -1.4927440881729126, - -1.5027601718902588, - -1.507236123085022, - -1.5060498714447021, - -1.4992338418960571, - -1.4869738817214966, - -1.4696044921875, - -1.4475995302200317, - -1.4215590953826904, - -1.3921935558319092, - -1.3603038787841797, - -1.2390143871307373, - -1.2745118141174316, - -1.3106950521469116, - -1.3465774059295654, - -1.3811798095703125, - -1.4135587215423584, - -1.4428305625915527, - -1.4681971073150635, - -1.488966464996338, - -1.5045719146728516, - -1.5145879983901978, - -1.518741250038147, - -1.5169185400009155, - -1.509169578552246, - -1.4957057237625122, - -1.4768942594528198, - -1.4532482624053955, - -1.425412654876709, - -1.3941469192504883, - -1.3603038787841797, - -1.2390143871307373, - -1.2727081775665283, - -1.307137131690979, - -1.3413621187210083, - -1.3744494915008545, - -1.4054968357086182, - -1.433657169342041, - -1.4581623077392578, - -1.4783440828323364, - -1.4936516284942627, - -1.5036675930023193, - -1.5081188678741455, - -1.5068837404251099, - -1.4999961853027344, - -1.4876439571380615, - -1.4701638221740723, - -1.4480329751968384, - -1.4218547344207764, - -1.3923434019088745, - -1.3603038787841797, - -1.2390143871307373, - -1.2673430442810059, - -1.2965530157089233, - -1.325847864151001, - -1.3544282913208008, - -1.3815147876739502, - -1.4063684940338135, - -1.4283113479614258, - -1.4467450380325317, - -1.461166501045227, - -1.4711824655532837, - -1.4765198230743408, - -1.4770327806472778, - -1.4727075099945068, - -1.4636619091033936, - -1.450142741203308, - -1.432518720626831, - -1.4112707376480103, - -1.3869781494140625, - -1.3603038787841797, - -1.2390143871307373, - -1.2589975595474243, - -1.2800898551940918, - -1.3017159700393677, - -1.3232859373092651, - -1.344211459159851, - -1.3639217615127563, - -1.3818790912628174, - -1.39759361743927, - -1.4106367826461792, - -1.4206528663635254, - -1.427368402481079, - -1.4306004047393799, - -1.4302607774734497, - -1.4263585805892944, - -1.4190003871917725, - -1.4083868265151978, - -1.3948074579238892, - -1.3786327838897705, - -1.3603038787841797, - -1.2390143871307373, - -1.248576283454895, - -1.2595316171646118, - -1.2715814113616943, - -1.2843972444534302, - -1.2976292371749878, - -1.3109166622161865, - -1.3238970041275024, - -1.3362162113189697, - -1.3475382328033447, - -1.3575541973114014, - -1.3659909963607788, - -1.3726184368133545, - -1.3772556781768799, - -1.3797763586044312, - -1.380111575126648, - -1.3782522678375244, - -1.3742492198944092, - -1.3682115077972412, - -1.3603038787841797, - -1.2390143871307373, - -1.2372084856033325, - -1.2371060848236084, - -1.2387099266052246, - -1.241976261138916, - -1.2468161582946777, - -1.253097414970398, - -1.2606487274169922, - -1.2692641019821167, - -1.2787086963653564, - -1.288724660873413, - -1.2990388870239258, - -1.3093700408935547, - -1.3194364309310913, - -1.3289631605148315, - -1.3376907110214233, - -1.3453807830810547, - -1.3518236875534058, - -1.3568437099456787, - -1.3603038787841797 - ], - "y": [ - 0.7480833530426025, - 0.7480868101119995, - 0.7516133189201355, - 0.758566677570343, - 0.7687572836875916, - 0.7819070816040039, - 0.7976574301719666, - 0.8155786395072937, - 0.8351819515228271, - 0.8559325933456421, - 0.8772645592689514, - 0.8985959887504578, - 0.9193449020385742, - 0.938945472240448, - 0.9568629264831543, - 0.9726086258888245, - 0.9857529997825623, - 0.9959375262260437, - 1.0028843879699707, - 1.006404161453247, - 0.7480833530426025, - 0.7623934149742126, - 0.7798362970352173, - 0.7999361753463745, - 0.8221448659896851, - 0.8458564281463623, - 0.870424211025238, - 0.8951780200004578, - 0.9194425940513611, - 0.9425560832023621, - 0.9638880491256714, - 0.9828565716743469, - 0.9989442825317383, - 1.0117123126983643, - 1.0208123922348022, - 1.025996208190918, - 1.0271224975585938, - 1.0241605043411255, - 1.0171910524368286, - 1.006404161453247, - 0.7480833530426025, - 0.77534019947052, - 0.8053767681121826, - 0.8373736143112183, - 0.8704580068588257, - 0.9037275314331055, - 0.9362746477127075, - 0.9672115445137024, - 0.9956943392753601, - 1.0209461450576782, - 1.0422780513763428, - 1.0591083765029907, - 1.070977807044983, - 1.077562689781189, - 1.0786833763122559, - 1.0743093490600586, - 1.0645599365234375, - 1.0497009754180908, - 1.0301377773284912, - 1.006404161453247, - 0.7480833530426025, - 0.7855241894721985, - 0.8254669308662415, - 0.8668220043182373, - 0.908461332321167, - 0.9492490887641907, - 0.9880727529525757, - 1.0238733291625977, - 1.0556741952896118, - 1.0826079845428467, - 1.1039398908615112, - 1.1190881729125977, - 1.127639651298523, - 1.1293609142303467, - 1.1242049932479858, - 1.1123126745224, - 1.0940083265304565, - 1.0697911977767944, - 1.0403218269348145, - 1.006404161453247, - 0.7480833530426025, - 0.7918418049812317, - 0.8379297852516174, - 0.8850901126861572, - 0.9320364594459534, - 0.9774881601333618, - 1.0202054977416992, - 1.059023141860962, - 1.0928823947906494, - 1.1208596229553223, - 1.1421915292739868, - 1.1562964916229248, - 1.1627894639968872, - 1.1614935398101807, - 1.1524441242218018, - 1.135887861251831, - 1.1122764348983765, - 1.0822540521621704, - 1.0466394424438477, - 1.006404161453247, - 0.7480833530426025, - 0.7936083674430847, - 0.841414749622345, - 0.8901984095573425, - 0.9386287331581116, - 0.9853846430778503, - 1.0291907787322998, - 1.0688520669937134, - 1.103286862373352, - 1.1315557956695557, - 1.1528878211975098, - 1.166700839996338, - 1.1726183891296387, - 1.1704788208007812, - 1.1603405475616455, - 1.1424801349639893, - 1.1173847913742065, - 1.0857388973236084, - 1.0484060049057007, - 1.006404161453247, - 0.7480833530426025, - 0.7906324863433838, - 0.8355441689491272, - 0.8815932869911194, - 0.9275237321853638, - 0.9720827341079712, - 1.014054775238037, - 1.0522948503494263, - 1.0857601165771484, - 1.1135375499725342, - 1.1348695755004883, - 1.1491740942001343, - 1.1560611724853516, - 1.1553428173065186, - 1.1470386981964111, - 1.1313750743865967, - 1.1087796688079834, - 1.0798684358596802, - 1.045430064201355, - 1.006404161453247, - 0.7480833530426025, - 0.7832366824150085, - 0.8209542036056519, - 0.8602072596549988, - 0.8999249339103699, - 0.9390239715576172, - 0.9764378070831299, - 1.011145830154419, - 1.0422013998031616, - 1.06875741481781, - 1.0900893211364746, - 1.1056153774261475, - 1.1149121522903442, - 1.1177258491516113, - 1.1139799356460571, - 1.1037763357162476, - 1.0873935222625732, - 1.06527841091156, - 1.0380343198776245, - 1.006404161453247, - 0.7480833530426025, - 0.7722223401069641, - 0.7992259860038757, - 0.8283577561378479, - 0.8588230609893799, - 0.8897907733917236, - 0.9204162359237671, - 0.9498641490936279, - 0.9773311018943787, - 1.0020679235458374, - 1.023399829864502, - 1.0407450199127197, - 1.0536303520202637, - 1.061704397201538, - 1.064746618270874, - 1.0626744031906128, - 1.055544137954712, - 1.0435502529144287, - 1.02701997756958, - 1.006404161453247, - 0.7480833530426025, - 0.7587830424308777, - 0.7727140188217163, - 0.7894963026046753, - 0.8086720705032349, - 0.8297183513641357, - 0.8520609140396118, - 0.875090479850769, - 0.89817875623703, - 0.920695960521698, - 0.9420279264450073, - 0.9615927934646606, - 0.9788567423820496, - 0.993349015712738, - 1.0046741962432861, - 1.0125234127044678, - 1.0166826248168945, - 1.0170382261276245, - 1.0135806798934937, - 1.006404161453247, - 0.7480833530426025, - 0.7443751692771912, - 0.7442913055419922, - 0.7478340268135071, - 0.7549067139625549, - 0.7653164267539978, - 0.7787792086601257, - 0.7949278354644775, - 0.8133218884468079, - 0.8334594964981079, - 0.8547914624214172, - 0.8767358660697937, - 0.8986940979957581, - 0.9200672507286072, - 0.9402722716331482, - 0.9587580561637878, - 0.9750203490257263, - 0.9886155128479004, - 0.9991728067398071, - 1.006404161453247, - 0.7480833530426025, - 0.7305600643157959, - 0.7170379161834717, - 0.7078857421875, - 0.7033531665802002, - 0.703563928604126, - 0.7085122466087341, - 0.7180630564689636, - 0.7319559454917908, - 0.7498118877410889, - 0.7711438536643982, - 0.7953699231147766, - 0.8218293190002441, - 0.8498002886772156, - 0.8785198330879211, - 0.9072045683860779, - 0.9350720643997192, - 0.9613621234893799, - 0.9853576421737671, - 1.006404161453247, - 0.7480833530426025, - 0.7188347578048706, - 0.6939071416854858, - 0.6739804148674011, - 0.6595982313156128, - 0.6511527895927429, - 0.6488745808601379, - 0.652825653553009, - 0.6628983020782471, - 0.6788176894187927, - 0.700149655342102, - 0.7263122797012329, - 0.7565919160842896, - 0.7901626229286194, - 0.8261086940765381, - 0.8634495735168457, - 0.9011667370796204, - 0.938231348991394, - 0.9736323356628418, - 1.006404161453247, - 0.7480833530426025, - 0.7104698419570923, - 0.6774055361747742, - 0.6497922539710999, - 0.6283832788467407, - 0.6137624979019165, - 0.6063288450241089, - 0.6062850952148438, - 0.613632321357727, - 0.6281701922416687, - 0.649502158164978, - 0.6770462989807129, - 0.7100512981414795, - 0.7476168870925903, - 0.7887183427810669, - 0.8322346210479736, - 0.8769785761833191, - 0.9217297434806824, - 0.9652674794197083, - 1.006404161453247, - 0.7480834126472473, - 0.7063719034194946, - 0.6693214178085327, - 0.6379424333572388, - 0.613090991973877, - 0.595444917678833, - 0.5854856371879578, - 0.5834847688674927, - 0.5894967913627625, - 0.6033579111099243, - 0.6246898174285889, - 0.6529108285903931, - 0.6872509717941284, - 0.7267736792564392, - 0.7704008221626282, - 0.8169423341751099, - 0.865128755569458, - 0.9136456251144409, - 0.9611695408821106, - 1.006404161453247, - 0.7480834126472473, - 0.7069848775863647, - 0.6705306768417358, - 0.6397150158882141, - 0.6153784990310669, - 0.5981850624084473, - 0.5886034965515137, - 0.5868953466415405, - 0.5931071639060974, - 0.6070694923400879, - 0.6284014582633972, - 0.656521201133728, - 0.690661609172821, - 0.7298915386199951, - 0.7731409072875977, - 0.8192298412322998, - 0.8669013381004333, - 0.914854884147644, - 0.9617825150489807, - 1.006404161453247, - 0.7480833530426025, - 0.7122424840927124, - 0.680902361869812, - 0.6549179553985596, - 0.6349979639053345, - 0.6216858625411987, - 0.6153447031974792, - 0.6161474585533142, - 0.6240721940994263, - 0.6389029026031494, - 0.660234808921814, - 0.6874862313270569, - 0.7199137210845947, - 0.7566327452659607, - 0.7966417074203491, - 0.8388493657112122, - 0.8821042776107788, - 0.925226628780365, - 0.9670400619506836, - 1.006404161453247, - 0.7480833530426025, - 0.7215748429298401, - 0.6993125677108765, - 0.6819037795066833, - 0.6698233485221863, - 0.6634008288383484, - 0.6628113389015198, - 0.6680710315704346, - 0.6790364384651184, - 0.6954084038734436, - 0.7167403697967529, - 0.7424504160881042, - 0.7718372941017151, - 0.804099440574646, - 0.8383566737174988, - 0.8736746907234192, - 0.9090901017189026, - 0.9436367750167847, - 0.976372480392456, - 1.006404161453247, - 0.7480833530426025, - 0.7339707612991333, - 0.7237662076950073, - 0.7177481651306152, - 0.7160807251930237, - 0.7188093662261963, - 0.7258597612380981, - 0.7370394468307495, - 0.7520435452461243, - 0.7704628109931946, - 0.7917947769165039, - 0.8154575824737549, - 0.84080570936203, - 0.8671478033065796, - 0.8937652707099915, - 0.9199320673942566, - 0.9449344873428345, - 0.9680904150009155, - 0.9887683391571045, - 1.006404161453247, - 0.7480833530426025, - 0.7480868101119995, - 0.7516133189201355, - 0.7585667371749878, - 0.7687572836875916, - 0.7819070816040039, - 0.7976574301719666, - 0.8155786991119385, - 0.8351820111274719, - 0.8559326529502869, - 0.8772646188735962, - 0.8985959887504578, - 0.919344961643219, - 0.9389455318450928, - 0.9568629860877991, - 0.9726086854934692, - 0.985753059387207, - 0.9959375858306885, - 1.0028843879699707, - 1.006404161453247 - ], - "z": [ - 0.8870224952697754, - 0.8815218210220337, - 0.8676443099975586, - 0.8457685708999634, - 0.8164912462234497, - 0.7806110382080078, - 0.7391065359115601, - 0.6931099891662598, - 0.6438760161399841, - 0.5927475690841675, - 0.541119396686554, - 0.49039962887763977, - 0.44197186827659607, - 0.39715707302093506, - 0.3571776747703552, - 0.3231242299079895, - 0.2959255874156952, - 0.27632367610931396, - 0.26485317945480347, - 0.2618270218372345, - 0.8870224952697754, - 0.8852829933166504, - 0.8750641942024231, - 0.8566446900367737, - 0.8305269479751587, - 0.7974234223365784, - 0.7582371234893799, - 0.7140368223190308, - 0.6660283207893372, - 0.6155210733413696, - 0.5638928413391113, - 0.5125519037246704, - 0.46289870142936707, - 0.4162876009941101, - 0.37399011850357056, - 0.3371599316596985, - 0.3068017065525055, - 0.28374356031417847, - 0.26861444115638733, - 0.2618270218372345, - 0.8870224952697754, - 0.8887707591056824, - 0.8819445371627808, - 0.8667299151420593, - 0.8435419797897339, - 0.8130132555961609, - 0.7759764790534973, - 0.7334418892860413, - 0.6865696907043457, - 0.6366385221481323, - 0.585010290145874, - 0.533093273639679, - 0.4823037385940552, - 0.4340269863605499, - 0.3895799517631531, - 0.3501749634742737, - 0.31688693165779114, - 0.29062387347221375, - 0.27210214734077454, - 0.2618270218372345, - 0.8870224952697754, - 0.8916070461273193, - 0.8875396251678467, - 0.8749313354492188, - 0.8541259765625, - 0.8256911039352417, - 0.790402352809906, - 0.7492222785949707, - 0.7032742500305176, - 0.6538114547729492, - 0.6021832227706909, - 0.5497978329658508, - 0.4980841875076294, - 0.448452889919281, - 0.4022578001022339, - 0.3607589602470398, - 0.32508838176727295, - 0.29621902108192444, - 0.2749384045600891, - 0.2618270218372345, - 0.8870224952697754, - 0.8934844732284546, - 0.8912433385848999, - 0.8803602457046509, - 0.861132025718689, - 0.8340831398963928, - 0.7999514937400818, - 0.7596680521965027, - 0.7143316864967346, - 0.6651790142059326, - 0.6135507822036743, - 0.5608552694320679, - 0.5085299015045166, - 0.4580020308494568, - 0.410649836063385, - 0.36776500940322876, - 0.3305172622203827, - 0.2999227046966553, - 0.27681586146354675, - 0.2618270218372345, - 0.8870224952697754, - 0.8941996097564697, - 0.8926541805267334, - 0.8824282884597778, - 0.8638008236885071, - 0.8372799158096313, - 0.8035891056060791, - 0.763647198677063, - 0.7185438275337219, - 0.66950923204422, - 0.6178810000419617, - 0.5650674104690552, - 0.5125090479850769, - 0.4616395831108093, - 0.41384661197662354, - 0.3704338073730469, - 0.33258530497550964, - 0.30133357644081116, - 0.2775310277938843, - 0.2618270218372345, - 0.8870224952697754, - 0.8936750888824463, - 0.8916193246841431, - 0.8809113502502441, - 0.8618432283401489, - 0.8349350690841675, - 0.8009209036827087, - 0.7607284784317017, - 0.7154542207717896, - 0.6663329601287842, - 0.6147047877311707, - 0.5619778037071228, - 0.5095903873443604, - 0.45897144079208374, - 0.41150176525115967, - 0.3684762120246887, - 0.33106839656829834, - 0.3002987205982208, - 0.27700644731521606, - 0.2618270218372345, - 0.8870224952697754, - 0.8919675350189209, - 0.8882508873939514, - 0.8759738802909851, - 0.8554713726043701, - 0.8273026943206787, - 0.7922361493110657, - 0.7512282729148865, - 0.7053976058959961, - 0.6559944152832031, - 0.6043661832809448, - 0.5519212484359741, - 0.5000901222229004, - 0.4502866566181183, - 0.4038693904876709, - 0.3621043562889099, - 0.3261309266090393, - 0.2969302833080292, - 0.27529895305633545, - 0.2618270218372345, - 0.8870224952697754, - 0.8892621994018555, - 0.8829139471054077, - 0.8681508302688599, - 0.8453757762908936, - 0.8152098059654236, - 0.7784758806228638, - 0.7361759543418884, - 0.6894639134407043, - 0.6396138668060303, - 0.587985634803772, - 0.5359874963760376, - 0.48503783345222473, - 0.43652641773223877, - 0.39177650213241577, - 0.35200875997543335, - 0.31830790638923645, - 0.2915932834148407, - 0.27259355783462524, - 0.2618270218372345, - 0.8870224952697754, - 0.8858520984649658, - 0.876186728477478, - 0.8582900762557983, - 0.8326504230499268, - 0.7999669313430786, - 0.7611312866210938, - 0.7172027826309204, - 0.6693796515464783, - 0.6189664006233215, - 0.5673381686210632, - 0.5159032344818115, - 0.4660646617412567, - 0.41918182373046875, - 0.3765336275100708, - 0.3392833471298218, - 0.30844712257385254, - 0.2848660945892334, - 0.2691834568977356, - 0.2618270218372345, - 0.8870224952697754, - 0.8821067810058594, - 0.8687983155250549, - 0.847460150718689, - 0.8186742067337036, - 0.7832258343696594, - 0.7420819401741028, - 0.6963647603988647, - 0.647321343421936, - 0.5962895750999451, - 0.5446613430976868, - 0.4938449561595917, - 0.44522660970687866, - 0.4001324474811554, - 0.3597925305366516, - 0.3253071904182434, - 0.2976171374320984, - 0.2774776816368103, - 0.26543816924095154, - 0.2618270218372345, - 0.8870224952697754, - 0.8784321546554565, - 0.8615493774414062, - 0.8368345499038696, - 0.8049618601799011, - 0.7668007016181946, - 0.7233920693397522, - 0.6759200096130371, - 0.6256793737411499, - 0.5740406513214111, - 0.5224124193191528, - 0.47220295667648315, - 0.424781858921051, - 0.3814425766468048, - 0.34336739778518677, - 0.31159481406211853, - 0.28699156641960144, - 0.2702287435531616, - 0.2617635726928711, - 0.2618270218372345, - 0.8870224952697754, - 0.8752264976501465, - 0.8552253246307373, - 0.8275647759437561, - 0.7929991483688354, - 0.7524714469909668, - 0.7070870399475098, - 0.658083975315094, - 0.6067988872528076, - 0.5546307563781738, - 0.5030025243759155, - 0.45332249999046326, - 0.4069458246231079, - 0.36513757705688477, - 0.3290380835533142, - 0.29963213205337524, - 0.2777217924594879, - 0.26390475034713745, - 0.25855785608291626, - 0.2618270218372345, - 0.8870224952697754, - 0.8728370666503906, - 0.8505116701126099, - 0.820655345916748, - 0.7840825319290161, - 0.7417908310890198, - 0.6949337720870972, - 0.6447895765304565, - 0.5927259922027588, - 0.5401631593704224, - 0.48853495717048645, - 0.43924957513809204, - 0.39365142583847046, - 0.35298430919647217, - 0.3183574974536896, - 0.2907155156135559, - 0.27081239223480225, - 0.25919103622436523, - 0.2561684250831604, - 0.2618270218372345, - 0.8870224952697754, - 0.8715227842330933, - 0.8479189872741699, - 0.8168550729751587, - 0.779178261756897, - 0.735916256904602, - 0.6882492303848267, - 0.6374773979187012, - 0.584985613822937, - 0.5322057604789734, - 0.4805775284767151, - 0.43150919675827026, - 0.3863392472267151, - 0.34629976749420166, - 0.31248295307159424, - 0.2858112156391144, - 0.2670120894908905, - 0.25659841299057007, - 0.2548541724681854, - 0.2618270218372345, - 0.8870224952697754, - 0.8714261651039124, - 0.847728431224823, - 0.8165757060050964, - 0.7788177132606506, - 0.7354844212532043, - 0.6877578496932983, - 0.6369398236274719, - 0.5844165682792664, - 0.5316207408905029, - 0.479992538690567, - 0.430940181016922, - 0.3858017027378082, - 0.34580835700035095, - 0.31205108761787415, - 0.28545069694519043, - 0.26673272252082825, - 0.25640779733657837, - 0.2547575533390045, - 0.2618270218372345, - 0.8870224952697754, - 0.8725576400756836, - 0.8499605655670166, - 0.8198475241661072, - 0.7830400466918945, - 0.7405420541763306, - 0.6935127973556519, - 0.6432351469993591, - 0.5910805463790894, - 0.5384716391563416, - 0.48684340715408325, - 0.437604159116745, - 0.39209702610969543, - 0.35156333446502686, - 0.317108690738678, - 0.28967300057411194, - 0.270004540681839, - 0.2586399018764496, - 0.25588905811309814, - 0.2618270218372345, - 0.8870224952697754, - 0.874794602394104, - 0.8543734550476074, - 0.8263159990310669, - 0.7913876175880432, - 0.7505410313606262, - 0.7048904895782471, - 0.6556811928749084, - 0.6042553782463074, - 0.5520159006118774, - 0.5003876686096191, - 0.450778990983963, - 0.40454304218292236, - 0.36294102668762207, - 0.3271077275276184, - 0.2980205714702606, - 0.2764730155467987, - 0.2630527913570404, - 0.25812599062919617, - 0.2618270218372345, - 0.8870224952697754, - 0.8778946399688721, - 0.8604888916015625, - 0.8352801203727722, - 0.8029558658599854, - 0.764397919178009, - 0.720658004283905, - 0.6729291677474976, - 0.6225134134292603, - 0.5707859396934509, - 0.5191577076911926, - 0.4690370261669159, - 0.42179104685783386, - 0.37870848178863525, - 0.3409646153450012, - 0.30958887934684753, - 0.2854371666908264, - 0.26916831731796265, - 0.26122602820396423, - 0.2618270218372345, - 0.8870224952697754, - 0.8815218210220337, - 0.8676443099975586, - 0.8457685708999634, - 0.8164912462234497, - 0.7806110382080078, - 0.7391065359115601, - 0.6931099891662598, - 0.6438760161399841, - 0.5927476286888123, - 0.541119396686554, - 0.49039962887763977, - 0.44197189807891846, - 0.39715707302093506, - 0.3571777045726776, - 0.3231242597103119, - 0.2959255874156952, - 0.27632367610931396, - 0.26485317945480347, - 0.2618270218372345 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.2575770616531372, - -1.2563015222549438, - -1.2567963600158691, - -1.2590482234954834, - -1.2629954814910889, - -1.2685306072235107, - -1.2755025625228882, - -1.2837212085723877, - -1.2929623126983643, - -1.302973747253418, - -1.3134825229644775, - -1.3242019414901733, - -1.3348397016525269, - -1.345105528831482, - -1.3547194004058838, - -1.3634190559387207, - -1.3709673881530762, - -1.3771581649780273, - -1.3818228244781494, - -1.3848339319229126, - -1.2575770616531372, - -1.245033860206604, - -1.234568476676941, - -1.2264662981033325, - -1.220948338508606, - -1.2181651592254639, - -1.2181925773620605, - -1.2210299968719482, - -1.226599931716919, - -1.234750509262085, - -1.2452592849731445, - -1.2578396797180176, - -1.2721484899520874, - -1.2877955436706543, - -1.304353952407837, - -1.3213719129562378, - -1.3383853435516357, - -1.3549302816390991, - -1.3705551624298096, - -1.3848339319229126, - -1.2575770616531372, - -1.2352194786071777, - -1.2152074575424194, - -1.1980866193771362, - -1.1843242645263672, - -1.1742956638336182, - -1.1682744026184082, - -1.1664247512817383, - -1.1687970161437988, - -1.1753265857696533, - -1.185835361480713, - -1.2000367641448975, - -1.2175432443618774, - -1.237877368927002, - -1.2604844570159912, - -1.2847479581832886, - -1.310005784034729, - -1.3355692625045776, - -1.3607407808303833, - -1.3848339319229126, - -1.2575770616531372, - -1.227921962738037, - -1.2008113861083984, - -1.1769847869873047, - -1.1570923328399658, - -1.1416763067245483, - -1.131157398223877, - -1.1258225440979004, - -1.1258171796798706, - -1.1311415433883667, - -1.1416503190994263, - -1.1570569276809692, - -1.1769410371780396, - -1.2007603645324707, - -1.2278650999069214, - -1.2575159072875977, - -1.2889039516448975, - -1.3211731910705566, - -1.3534432649612427, - -1.3848339319229126, - -1.2575770616531372, - -1.2239320278167725, - -1.192940354347229, - -1.165447473526001, - -1.1422032117843628, - -1.123841643333435, - -1.1108638048171997, - -1.103623390197754, - -1.1023180484771729, - -1.1069834232330322, - -1.1174921989440918, - -1.1335577964782715, - -1.154741883277893, - -1.180466651916504, - -1.210030436515808, - -1.2426267862319946, - -1.2773666381835938, - -1.3133021593093872, - -1.349453330039978, - -1.3848339319229126, - -1.2575770616531372, - -1.223682165145874, - -1.1924474239349365, - -1.1647248268127441, - -1.141270637512207, - -1.1227246522903442, - -1.1095926761627197, - -1.1022329330444336, - -1.1008461713790894, - -1.1054702997207642, - -1.1159790754318237, - -1.132085919380188, - -1.1533514261245728, - -1.179195523262024, - -1.2089133262634277, - -1.2416942119598389, - -1.276643991470337, - -1.3128092288970947, - -1.3492034673690796, - -1.3848339319229126, - -1.2575770616531372, - -1.2271993160247803, - -1.1993857622146606, - -1.174895167350769, - -1.154395580291748, - -1.1384460926055908, - -1.1274818181991577, - -1.121801733970642, - -1.1215609312057495, - -1.1267659664154053, - -1.1372747421264648, - -1.1528006792068481, - -1.1729202270507812, - -1.197084665298462, - -1.2246347665786743, - -1.2548191547393799, - -1.2868143320083618, - -1.3197475671768188, - -1.3527206182479858, - -1.3848339319229126, - -1.2575770616531372, - -1.2341023683547974, - -1.2130036354064941, - -1.1948564052581787, - -1.180155634880066, - -1.1693023443222046, - -1.1625926494598389, - -1.16020929813385, - -1.162217617034912, - -1.1685627698898315, - -1.1790715456008911, - -1.1934573650360107, - -1.2113279104232788, - -1.232195496559143, - -1.2554911375045776, - -1.2805792093276978, - -1.3067755699157715, - -1.3333654403686523, - -1.359623670578003, - -1.3848339319229126, - -1.2575770616531372, - -1.2436434030532837, - -1.231825351715088, - -1.2224454879760742, - -1.215759515762329, - -1.2119498252868652, - -1.2111202478408813, - -1.2132936716079712, - -1.2184104919433594, - -1.226331353187561, - -1.2368402481079102, - -1.249650239944458, - -1.2644121646881104, - -1.280723214149475, - -1.2981384992599487, - -1.316183090209961, - -1.334364652633667, - -1.352187156677246, - -1.3691647052764893, - -1.3848339319229126, - -1.2575770616531372, - -1.2547882795333862, - -1.2538113594055176, - -1.254672646522522, - -1.2573487758636475, - -1.261766791343689, - -1.2678061723709106, - -1.2753020524978638, - -1.2840501070022583, - -1.2938116788864136, - -1.3043205738067627, - -1.315289855003357, - -1.3264206647872925, - -1.3374091386795044, - -1.347955584526062, - -1.3577723503112793, - -1.3665918111801147, - -1.3741731643676758, - -1.3803095817565918, - -1.3848339319229126, - -1.2575770616531372, - -1.2663295269012451, - -1.2765789031982422, - -1.2880455255508423, - -1.3004167079925537, - -1.3133549690246582, - -1.3265074491500854, - -1.339515209197998, - -1.3520234823226929, - -1.3636912107467651, - -1.3741999864578247, - -1.3832632303237915, - -1.3906337022781372, - -1.3961102962493896, - -1.3995437622070312, - -1.400840401649475, - -1.399964690208435, - -1.3969407081604004, - -1.3918508291244507, - -1.3848339319229126, - -1.2575770616531372, - -1.277016282081604, - -1.2976609468460083, - -1.3189477920532227, - -1.3402962684631348, - -1.3611239194869995, - -1.380862832069397, - -1.3989744186401367, - -1.4149645566940308, - -1.428397297859192, - -1.4389060735702515, - -1.4462043046951294, - -1.4500929117202759, - -1.4504657983779907, - -1.4473127126693726, - -1.4407198429107666, - -1.4308669567108154, - -1.4180227518081665, - -1.4025375843048096, - -1.3848339319229126, - -1.2575770616531372, - -1.2856905460357666, - -1.3147728443145752, - -1.3440306186676025, - -1.3726657629013062, - -1.3998972177505493, - -1.4249821901321411, - -1.4472362995147705, - -1.466052770614624, - -1.480918049812317, - -1.4914268255233765, - -1.4972925186157227, - -1.4983549118041992, - -1.4945850372314453, - -1.4860860109329224, - -1.473089337348938, - -1.4559497833251953, - -1.4351346492767334, - -1.4112118482589722, - -1.3848339319229126, - -1.2575770616531372, - -1.291412353515625, - -1.3260602951049805, - -1.3605759143829346, - -1.3940175771713257, - -1.4254730939865112, - -1.4540843963623047, - -1.4790711402893066, - -1.4997518062591553, - -1.5155621767044067, - -1.5260709524154663, - -1.530991554260254, - -1.5301897525787354, - -1.5236873626708984, - -1.5116617679595947, - -1.4944411516189575, - -1.4724950790405273, - -1.4464221000671387, - -1.4169336557388306, - -1.3848339319229126, - -1.2575770616531372, - -1.293561577796936, - -1.3303000926971436, - -1.3667906522750854, - -1.4020377397537231, - -1.4350799322128296, - -1.4650158882141113, - -1.491029143333435, - -1.5124099254608154, - -1.5285751819610596, - -1.5390840768814087, - -1.543649673461914, - -1.5421476364135742, - -1.534618854522705, - -1.5212687253952026, - -1.502461314201355, - -1.4787098169326782, - -1.4506618976593018, - -1.4190828800201416, - -1.3848339319229126, - -1.2575770616531372, - -1.291905403137207, - -1.3270329236984253, - -1.3620015382766724, - -1.395857334136963, - -1.427676796913147, - -1.4565919637680054, - -1.4818142652511597, - -1.5026555061340332, - -1.5185472965240479, - -1.5290560722351074, - -1.5338952541351318, - -1.5329327583312988, - -1.5261949300765991, - -1.51386559009552, - -1.4962809085845947, - -1.4739205837249756, - -1.4473947286605835, - -1.4174267053604126, - -1.3848339319229126, - -1.2575770616531372, - -1.2866231203079224, - -1.3166126012802124, - -1.3467273712158203, - -1.3761459589004517, - -1.4040658473968506, - -1.4297256469726562, - -1.452425241470337, - -1.4715454578399658, - -1.4865647554397583, - -1.4970735311508179, - -1.5027852058410645, - -1.503543734550476, - -1.49932861328125, - -1.4902546405792236, - -1.4765695333480835, - -1.458646535873413, - -1.4369744062423706, - -1.412144422531128, - -1.3848339319229126, - -1.2575770616531372, - -1.278287410736084, - -1.300168514251709, - -1.3226234912872314, - -1.34503972530365, - -1.3668057918548584, - -1.387328028678894, - -1.4060466289520264, - -1.4224510192871094, - -1.4360936880111694, - -1.446602463722229, - -1.453690767288208, - -1.457165241241455, - -1.4569309949874878, - -1.4529945850372314, - -1.4454632997512817, - -1.4345425367355347, - -1.4205303192138672, - -1.4038087129592896, - -1.3848339319229126, - -1.2575770616531372, - -1.2678014039993286, - -1.2794826030731201, - -1.2923017740249634, - -1.3059093952178955, - -1.3199342489242554, - -1.3339937925338745, - -1.347704529762268, - -1.3606923818588257, - -1.372603178024292, - -1.3831119537353516, - -1.3919321298599243, - -1.3988230228424072, - -1.4035967588424683, - -1.4061230421066284, - -1.4063329696655273, - -1.4042209386825562, - -1.3998444080352783, - -1.3933227062225342, - -1.3848339319229126, - -1.2575770616531372, - -1.2563015222549438, - -1.2567963600158691, - -1.2590482234954834, - -1.2629954814910889, - -1.2685306072235107, - -1.2755025625228882, - -1.2837210893630981, - -1.2929621934890747, - -1.302973747253418, - -1.3134825229644775, - -1.3242019414901733, - -1.3348397016525269, - -1.345105528831482, - -1.3547194004058838, - -1.3634190559387207, - -1.3709673881530762, - -1.3771581649780273, - -1.3818228244781494, - -1.3848339319229126 - ], - "y": [ - 0.7541669607162476, - 0.7545483112335205, - 0.7585334181785583, - 0.7660135626792908, - 0.7767847180366516, - 0.790553092956543, - 0.8069429993629456, - 0.8255075216293335, - 0.8457401990890503, - 0.8670890927314758, - 0.8889719247817993, - 0.91079181432724, - 0.931953489780426, - 0.9518797397613525, - 0.9700270891189575, - 0.9859004020690918, - 0.9990668296813965, - 1.009167194366455, - 1.0159258842468262, - 1.0191586017608643, - 0.7541669011116028, - 0.7690378427505493, - 0.7871172428131104, - 0.8079119920730591, - 0.8308548927307129, - 0.8553200364112854, - 0.8806401491165161, - 0.9061245918273926, - 0.9310780763626099, - 0.9548200964927673, - 0.9767029285430908, - 0.9961296916007996, - 1.0125705003738403, - 1.0255769491195679, - 1.0347940921783447, - 1.0399706363677979, - 1.0409653186798096, - 1.0377509593963623, - 1.030415415763855, - 1.0191586017608643, - 0.7541669011116028, - 0.7821117043495178, - 0.8129083514213562, - 0.8457168340682983, - 0.8796422481536865, - 0.9137591123580933, - 0.9471368789672852, - 0.9788650870323181, - 1.0080782175064087, - 1.0339795351028442, - 1.055862307548523, - 1.0731298923492432, - 1.0853110551834106, - 1.092073678970337, - 1.0932331085205078, - 1.0887579917907715, - 1.0787701606750488, - 1.063542127609253, - 1.0434892177581787, - 1.0191586017608643, - 0.7541669011116028, - 0.7923531532287598, - 0.8331118822097778, - 0.8753313422203064, - 0.9178599119186401, - 0.9595374464988708, - 0.9992272257804871, - 1.035846471786499, - 1.0683964490890503, - 1.0959892272949219, - 1.1178719997406006, - 1.1334481239318848, - 1.1422924995422363, - 1.144163966178894, - 1.1390115022659302, - 1.1269755363464355, - 1.108384609222412, - 1.0837455987930298, - 1.0537307262420654, - 1.0191586017608643, - 0.7541669011116028, - 0.7986522912979126, - 0.8455384373664856, - 0.8935462832450867, - 0.94136643409729, - 0.9876943230628967, - 1.0312663316726685, - 1.0708940029144287, - 1.1054962873458862, - 1.1341294050216675, - 1.1560122966766357, - 1.1705479621887207, - 1.177340030670166, - 1.1762031316757202, - 1.167168378829956, - 1.150482177734375, - 1.1265995502471924, - 1.0961722135543823, - 1.0600298643112183, - 1.0191586017608643, - 0.7541669011116028, - 0.8003266453742981, - 0.8488414287567139, - 0.8983878493309021, - 0.9476144909858704, - 0.9951784014701843, - 1.0397824048995972, - 1.080209732055664, - 1.115357518196106, - 1.1442670822143555, - 1.1661499738693237, - 1.1804091930389404, - 1.1866556406021118, - 1.184719204902649, - 1.1746524572372437, - 1.1567301750183105, - 1.1314411163330078, - 1.0994751453399658, - 1.061704158782959, - 1.0191586017608643, - 0.7541669011116028, - 0.7971947193145752, - 0.8426629304885864, - 0.8893313407897949, - 0.9359269738197327, - 0.9811788201332092, - 1.0238524675369263, - 1.0627840757369995, - 1.0969114303588867, - 1.1253037452697754, - 1.147186517715454, - 1.1619629859924316, - 1.1692299842834473, - 1.168789267539978, - 1.1606528759002686, - 1.1450426578521729, - 1.1223845481872559, - 1.0932966470718384, - 1.0585722923278809, - 1.0191586017608643, - 0.7541669011116028, - 0.7895958423614502, - 0.8276724219322205, - 0.8673582077026367, - 0.907570481300354, - 0.9472125172615051, - 0.9852028489112854, - 1.0205053091049194, - 1.052156925201416, - 1.079294204711914, - 1.1011770963668823, - 1.117208480834961, - 1.1269513368606567, - 1.1301395893096924, - 1.1266865730285645, - 1.116686224937439, - 1.1004114151000977, - 1.0783061981201172, - 1.0509734153747559, - 1.0191586017608643, - 0.7541669011116028, - 0.7783535122871399, - 0.805494487285614, - 0.8348495364189148, - 0.8656179308891296, - 0.8969603180885315, - 0.9280218482017517, - 0.9579551815986633, - 0.9859439134597778, - 1.0112245082855225, - 1.0331072807312012, - 1.0509955883026123, - 1.0644011497497559, - 1.0729585886001587, - 1.0764343738555908, - 1.0747336149215698, - 1.0679028034210205, - 1.0561282634735107, - 1.0397310256958008, - 1.0191586017608643, - 0.7541669607162476, - 0.7646860480308533, - 0.7785323262214661, - 0.7953281402587891, - 0.8146153688430786, - 0.8358678221702576, - 0.8585058450698853, - 0.8819118738174438, - 0.9054475426673889, - 0.9284707903862, - 0.9503536224365234, - 0.9704991579055786, - 0.9883578419685364, - 1.0034425258636475, - 1.0153417587280273, - 1.023730993270874, - 1.0283814668655396, - 1.0291661024093628, - 1.0260635614395142, - 1.0191586017608643, - 0.7541669607162476, - 0.7500744462013245, - 0.7497077584266663, - 0.7530768513679504, - 0.7600898146629333, - 0.770555317401886, - 0.7841879725456238, - 0.8006159067153931, - 0.8193908929824829, - 0.8400009274482727, - 0.8618837594985962, - 0.8844425082206726, - 0.9070618152618408, - 0.9291247129440308, - 0.9500293135643005, - 0.9692054986953735, - 0.9861301183700562, - 1.000341534614563, - 1.011452078819275, - 1.0191586017608643, - 0.7541669607162476, - 0.7361022233963013, - 0.722144365310669, - 0.7126742005348206, - 0.7079499363899231, - 0.7081004977226257, - 0.7131218314170837, - 0.7228768467903137, - 0.7370995283126831, - 0.7554019093513489, - 0.7772847414016724, - 0.8021511435508728, - 0.8293228149414062, - 0.858058512210846, - 0.8875744938850403, - 0.9170656204223633, - 0.9457274675369263, - 0.9727780818939209, - 0.9974797964096069, - 1.0191586017608643, - 0.7541669607162476, - 0.7242833375930786, - 0.6988290548324585, - 0.678498387336731, - 0.6638458967208862, - 0.6552712917327881, - 0.6530084609985352, - 0.6571190357208252, - 0.6674909591674805, - 0.6838414072990417, - 0.7057242393493652, - 0.7325426340103149, - 0.763564944267273, - 0.7979451417922974, - 0.8347452878952026, - 0.8729615807533264, - 0.9115516543388367, - 0.9494628310203552, - 0.9856609106063843, - 1.0191586017608643, - 0.7541669607162476, - 0.7158986926078796, - 0.682288408279419, - 0.6542530059814453, - 0.6325570344924927, - 0.6177924871444702, - 0.6103620529174805, - 0.6104682683944702, - 0.6181083917617798, - 0.6330740451812744, - 0.6549568772315979, - 0.6831600666046143, - 0.7169142365455627, - 0.7552987337112427, - 0.7972664833068848, - 0.8416727185249329, - 0.887306272983551, - 0.9329221844673157, - 0.9772762656211853, - 1.0191586017608643, - 0.7541669607162476, - 0.7118568420410156, - 0.6743149161338806, - 0.6425653696060181, - 0.6174740791320801, - 0.599725604057312, - 0.5898040533065796, - 0.5879799723625183, - 0.5943032503128052, - 0.6086012721061707, - 0.6304841041564941, - 0.6593548059463501, - 0.6944259405136108, - 0.7347407341003418, - 0.7791996002197266, - 0.8265897631645203, - 0.875618577003479, - 0.9249486923217773, - 0.9732343554496765, - 1.0191586017608643, - 0.7541669607162476, - 0.7125957012176514, - 0.6757725477218628, - 0.6447019577026367, - 0.6202313899993896, - 0.603028416633606, - 0.5935622453689575, - 0.5920910239219666, - 0.5986550450325012, - 0.6130751371383667, - 0.6349579095840454, - 0.6637066602706909, - 0.6985369920730591, - 0.7384989261627197, - 0.7825023531913757, - 0.8293470740318298, - 0.8777552247047424, - 0.9264062643051147, - 0.973973274230957, - 1.0191586017608643, - 0.7541669607162476, - 0.7180353403091431, - 0.6865034103393555, - 0.6604312658309937, - 0.6405302286148071, - 0.6273429989814758, - 0.621229350566864, - 0.6223559975624084, - 0.6306922435760498, - 0.6460107564926147, - 0.6678935885429382, - 0.6957439184188843, - 0.728801965713501, - 0.7661660313606262, - 0.8068169355392456, - 0.8496459126472473, - 0.8934845328330994, - 0.9371371269226074, - 0.979412853717804, - 1.0191586017608643, - 0.7541669607162476, - 0.7275861501693726, - 0.705344557762146, - 0.6880488991737366, - 0.6761708855628967, - 0.6700345277786255, - 0.6698072552680969, - 0.6754952073097229, - 0.6869432330131531, - 0.703839123249054, - 0.7257219552993774, - 0.7519948482513428, - 0.7819411754608154, - 0.8147439360618591, - 0.84950852394104, - 0.8852865695953369, - 0.9211021661758423, - 0.9559783339500427, - 0.9889637231826782, - 1.0191586017608643, - 0.7541669607162476, - 0.7402132749557495, - 0.7302544116973877, - 0.7245619297027588, - 0.7232911586761475, - 0.7264767289161682, - 0.7340317964553833, - 0.7457501888275146, - 0.7613123059272766, - 0.7802937030792236, - 0.8021765351295471, - 0.8263639211654663, - 0.8521960973739624, - 0.8789684772491455, - 0.9059507250785828, - 0.9324068427085876, - 0.9576151967048645, - 0.9808881282806396, - 1.0015908479690552, - 1.0191586017608643, - 0.7541669607162476, - 0.7545483112335205, - 0.7585334181785583, - 0.7660136222839355, - 0.7767847776412964, - 0.790553092956543, - 0.8069430589675903, - 0.8255075812339783, - 0.8457402586936951, - 0.8670891523361206, - 0.8889719843864441, - 0.9107918739318848, - 0.9319535493850708, - 0.9518797993659973, - 0.9700270891189575, - 0.9859004616737366, - 0.9990668296813965, - 1.009167194366455, - 1.0159258842468262, - 1.0191586017608643 - ], - "z": [ - 0.9200335741043091, - 0.9146904945373535, - 0.9008634090423584, - 0.8789293169975281, - 0.8494866490364075, - 0.8133384585380554, - 0.7714707851409912, - 0.7250257134437561, - 0.6752700805664062, - 0.6235612034797668, - 0.5713093876838684, - 0.5199400782585144, - 0.47085440158843994, - 0.4253913462162018, - 0.3847910165786743, - 0.3501608669757843, - 0.32244551181793213, - 0.30240094661712646, - 0.29057401418685913, - 0.28728723526000977, - 0.9200335741043091, - 0.9184925556182861, - 0.9083636999130249, - 0.8899233937263489, - 0.863674521446228, - 0.8303332328796387, - 0.7908087968826294, - 0.746179461479187, - 0.6976625919342041, - 0.6465815901756287, - 0.594329833984375, - 0.5423325896263123, - 0.49200817942619324, - 0.4447293281555176, - 0.4017857611179352, - 0.36434876918792725, - 0.33343958854675293, - 0.30990129709243774, - 0.29437604546546936, - 0.28728723526000977, - 0.9200335741043091, - 0.9219939708709717, - 0.9152711033821106, - 0.9000482559204102, - 0.8767406940460205, - 0.8459842801094055, - 0.808617889881134, - 0.7656607627868652, - 0.7182847261428833, - 0.6677820086479187, - 0.615530252456665, - 0.5629546642303467, - 0.5114894509315491, - 0.4625384211540222, - 0.4174368381500244, - 0.3774149417877197, - 0.3435644209384918, - 0.31680864095687866, - 0.2978774607181549, - 0.28728723526000977, - 0.9200335741043091, - 0.9248154163360596, - 0.9208369255065918, - 0.9082067012786865, - 0.8872692584991455, - 0.8585957288742065, - 0.8229681849479675, - 0.781358540058136, - 0.7349017262458801, - 0.6848649978637695, - 0.6326132416725159, - 0.5795716643333435, - 0.5271872282028198, - 0.4768887460231781, - 0.43004828691482544, - 0.3879435062408447, - 0.3517228960990906, - 0.32237449288368225, - 0.3006988763809204, - 0.28728723526000977, - 0.9200335741043091, - 0.9266510009765625, - 0.9244581460952759, - 0.9135146737098694, - 0.8941192626953125, - 0.866800844669342, - 0.8323046565055847, - 0.7915716171264648, - 0.74571293592453, - 0.6959793567657471, - 0.6437275409698486, - 0.5903828740119934, - 0.5374003648757935, - 0.4862251877784729, - 0.43825340270996094, - 0.39479345083236694, - 0.35703086853027344, - 0.32599568367004395, - 0.3025344908237457, - 0.28728723526000977, - 0.9200335741043091, - 0.9273019433021545, - 0.9257422685623169, - 0.9153969287872314, - 0.896548330783844, - 0.8697105050086975, - 0.8356155157089233, - 0.7951933741569519, - 0.7495467066764832, - 0.699920654296875, - 0.6476688981056213, - 0.5942166447639465, - 0.5410220623016357, - 0.4895360469818115, - 0.4411630630493164, - 0.3972225785255432, - 0.3589131534099579, - 0.32727980613708496, - 0.30318543314933777, - 0.28728723526000977, - 0.9200335741043091, - 0.9266976714134216, - 0.9245501756668091, - 0.9136495590209961, - 0.8942933082580566, - 0.8670094013214111, - 0.8325419425964355, - 0.7918311953544617, - 0.7459876537322998, - 0.6962618231773376, - 0.644010066986084, - 0.590657651424408, - 0.5376598834991455, - 0.48646247386932373, - 0.43846195936203003, - 0.39496755599975586, - 0.35716578364372253, - 0.32608771324157715, - 0.30258116126060486, - 0.28728723526000977, - 0.9200335741043091, - 0.9249036312103271, - 0.9210110306739807, - 0.9084619283676147, - 0.8875985741615295, - 0.8589901924133301, - 0.823417067527771, - 0.7818495631217957, - 0.7354214787483215, - 0.6853993535041809, - 0.6331475377082825, - 0.5800914168357849, - 0.5276782512664795, - 0.4773375988006592, - 0.430442750453949, - 0.38827282190322876, - 0.3519780933856964, - 0.32254859805107117, - 0.3007871210575104, - 0.28728723526000977, - 0.9200335741043091, - 0.9221142530441284, - 0.9155083894729614, - 0.9003960490226746, - 0.877189576625824, - 0.8465219736099243, - 0.8092296719551086, - 0.7663300037384033, - 0.7189931273460388, - 0.6685103178024292, - 0.6162585020065308, - 0.563663125038147, - 0.5121586918830872, - 0.4631502032279968, - 0.4179745316505432, - 0.3778638243675232, - 0.3439122438430786, - 0.3170459270477295, - 0.29799774289131165, - 0.28728723526000977, - 0.9200335741043091, - 0.9186317920684814, - 0.9086384773254395, - 0.8903261423110962, - 0.8641942739486694, - 0.8309558033943176, - 0.7915171980857849, - 0.7469544410705566, - 0.6984829306602478, - 0.6474249362945557, - 0.595173180103302, - 0.5431528687477112, - 0.4927831292152405, - 0.4454377591609955, - 0.4024083614349365, - 0.36486852169036865, - 0.33384233713150024, - 0.3101760745048523, - 0.29451531171798706, - 0.28728723526000977, - 0.9200335741043091, - 0.9148337244987488, - 0.901145875453949, - 0.8793433904647827, - 0.8500209450721741, - 0.8139784932136536, - 0.7721990942955017, - 0.725822389125824, - 0.6761134266853333, - 0.6244281530380249, - 0.5721763968467712, - 0.5207834243774414, - 0.4716510772705078, - 0.4261196255683899, - 0.38543105125427246, - 0.3506951928138733, - 0.3228595554828644, - 0.30268344283103943, - 0.290717214345932, - 0.28728723526000977, - 0.9200335741043091, - 0.9111315011978149, - 0.8938424587249756, - 0.8686379194259644, - 0.8362054824829102, - 0.7974299192428589, - 0.7533687353134155, - 0.7052239179611206, - 0.6543087363243103, - 0.6020119786262512, - 0.5497602224349976, - 0.49897870421409607, - 0.45105263590812683, - 0.4072892665863037, - 0.3688824474811554, - 0.3368797302246094, - 0.312154084444046, - 0.29537996649742126, - 0.28701499104499817, - 0.28728723526000977, - 0.9200335741043091, - 0.9079263210296631, - 0.8875195980072021, - 0.8593698740005493, - 0.8242449760437012, - 0.7831032276153564, - 0.7370666861534119, - 0.6873911619186401, - 0.635431706905365, - 0.5826056599617004, - 0.530353844165802, - 0.48010170459747314, - 0.43321987986564636, - 0.39098721742630005, - 0.35455578565597534, - 0.3249192237854004, - 0.3028860092163086, - 0.2890571355819702, - 0.2838098406791687, - 0.28728723526000977, - 0.9200335741043091, - 0.905565619468689, - 0.8828625679016113, - 0.8525434732437134, - 0.8154355883598328, - 0.7725510597229004, - 0.7250595092773438, - 0.6742566227912903, - 0.6215280294418335, - 0.5683120489120483, - 0.5160602331161499, - 0.4661979675292969, - 0.4200853109359741, - 0.3789801001548767, - 0.3440035879611969, - 0.3161098062992096, - 0.2960596978664398, - 0.2844001054763794, - 0.2814491391181946, - 0.28728723526000977, - 0.9200335741043091, - 0.9043051600456238, - 0.8803759813308716, - 0.8488986492156982, - 0.8107318878173828, - 0.766916811466217, - 0.7186484336853027, - 0.6672435402870178, - 0.6141042709350586, - 0.560680091381073, - 0.5084283351898193, - 0.458774209022522, - 0.41307222843170166, - 0.3725690245628357, - 0.33836936950683594, - 0.31140613555908203, - 0.2924148440361023, - 0.28191354870796204, - 0.280188649892807, - 0.28728723526000977, - 0.9200335741043091, - 0.904281497001648, - 0.8803293108940125, - 0.8488302826881409, - 0.8106436729431152, - 0.7668111324310303, - 0.718528151512146, - 0.6671119928359985, - 0.6139649748802185, - 0.5605369210243225, - 0.5082851648330688, - 0.4586349427700043, - 0.4129406809806824, - 0.37244871258735657, - 0.3382636606693268, - 0.31131789088249207, - 0.2923464775085449, - 0.2818668782711029, - 0.28016501665115356, - 0.28728723526000977, - 0.9200335741043091, - 0.9054972529411316, - 0.8827276229858398, - 0.8523457646369934, - 0.8151804208755493, - 0.7722453474998474, - 0.7247117161750793, - 0.673876166343689, - 0.6211252808570862, - 0.5678979754447937, - 0.51564621925354, - 0.46579521894454956, - 0.4197048544883728, - 0.3786322772502899, - 0.3436979055404663, - 0.31585463881492615, - 0.29586195945739746, - 0.2842651903629303, - 0.2813807725906372, - 0.28728723526000977, - 0.9200335741043091, - 0.9078206419944763, - 0.8873110413551331, - 0.8590641617774963, - 0.8238505125045776, - 0.7826307415962219, - 0.7365290522575378, - 0.6868030428886414, - 0.634809136390686, - 0.5819656252861023, - 0.5297138094902039, - 0.4794791042804718, - 0.4326317310333252, - 0.390449583530426, - 0.3540832996368408, - 0.32452476024627686, - 0.3025803565979004, - 0.2888486087322235, - 0.28370416164398193, - 0.28728723526000977, - 0.9200335741043091, - 0.9109998941421509, - 0.893582820892334, - 0.8682574033737183, - 0.8357145190238953, - 0.7968417406082153, - 0.7526994943618774, - 0.704491913318634, - 0.6535338163375854, - 0.6012153625488281, - 0.5489636063575745, - 0.4982037842273712, - 0.45032060146331787, - 0.406620055437088, - 0.3682943284511566, - 0.3363887369632721, - 0.3117736279964447, - 0.2951204180717468, - 0.2868834137916565, - 0.28728723526000977, - 0.9200335741043091, - 0.9146904945373535, - 0.9008634090423584, - 0.8789293169975281, - 0.8494866490364075, - 0.8133384585380554, - 0.7714707851409912, - 0.7250257730484009, - 0.675270140171051, - 0.6235612034797668, - 0.5713093876838684, - 0.5199400782585144, - 0.47085443139076233, - 0.42539137601852417, - 0.3847910165786743, - 0.3501608669757843, - 0.32244551181793213, - 0.30240097641944885, - 0.29057401418685913, - 0.28728723526000977 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.272552728652954, - -1.2716777324676514, - -1.2726322412490845, - -1.275390386581421, - -1.2798768281936646, - -1.2859691381454468, - -1.2935012578964233, - -1.3022676706314087, - -1.312029242515564, - -1.3225196599960327, - -1.3334529399871826, - -1.3445305824279785, - -1.3554506301879883, - -1.3659151792526245, - -1.375638723373413, - -1.384356141090393, - -1.391829490661621, - -1.3978550434112549, - -1.4022682905197144, - -1.4049489498138428, - -1.272552728652954, - -1.2602620124816895, - -1.2501121759414673, - -1.2423803806304932, - -1.2372771501541138, - -1.2349419593811035, - -1.235438346862793, - -1.238752841949463, - -1.2447949647903442, - -1.2534000873565674, - -1.2643332481384277, - -1.2772963047027588, - -1.2919358015060425, - -1.3078522682189941, - -1.3246114253997803, - -1.3417564630508423, - -1.3588193655014038, - -1.3753349781036377, - -1.3908525705337524, - -1.4049489498138428, - -1.272552728652954, - -1.25027596950531, - -1.2304126024246216, - -1.2135045528411865, - -1.2000126838684082, - -1.1903053522109985, - -1.1846472024917603, - -1.1831926107406616, - -1.185981273651123, - -1.1929370164871216, - -1.2038702964782715, - -1.2184826135635376, - -1.2363756895065308, - -1.2570611238479614, - -1.2799749374389648, - -1.3044919967651367, - -1.3299435377120972, - -1.355635404586792, - -1.3808666467666626, - -1.4049489498138428, - -1.272552728652954, - -1.2428019046783447, - -1.2156683206558228, - -1.1918920278549194, - -1.1721217632293701, - -1.156896710395813, - -1.1466320753097534, - -1.1416079998016357, - -1.1419614553451538, - -1.1476829051971436, - -1.158616065979004, - -1.1744627952575684, - -1.1947910785675049, - -1.2190459966659546, - -1.2465662956237793, - -1.2766010761260986, - -1.3083311319351196, - -1.3408910036087036, - -1.3733924627304077, - -1.4049489498138428, - -1.272552728652954, - -1.238649606704712, - -1.2074768543243408, - -1.1798850297927856, - -1.1566267013549805, - -1.138336181640625, - -1.1255123615264893, - -1.1185052394866943, - -1.1175059080123901, - -1.1225414276123047, - -1.1334747076034546, - -1.1500072479248047, - -1.1716883182525635, - -1.1979262828826904, - -1.2280057668685913, - -1.261106014251709, - -1.2963241338729858, - -1.3326996564865112, - -1.369240164756775, - -1.4049489498138428, - -1.272552728652954, - -1.2382689714431763, - -1.2067261934280396, - -1.1787846088409424, - -1.155206561088562, - -1.1366350650787354, - -1.1235768795013428, - -1.116387963294983, - -1.115264654159546, - -1.1202373504638672, - -1.1311705112457275, - -1.1477659940719604, - -1.1695709228515625, - -1.195990800857544, - -1.2263046503067017, - -1.2596858739852905, - -1.2952237129211426, - -1.3319488763809204, - -1.3688596487045288, - -1.4049489498138428, - -1.272552728652954, - -1.2417014837265015, - -1.2134974002838135, - -1.18871009349823, - -1.1680153608322144, - -1.1519778966903687, - -1.1410351991653442, - -1.1354855298995972, - -1.1354804039001465, - -1.1410200595855713, - -1.1519533395767212, - -1.1679818630218506, - -1.1886684894561768, - -1.2134490013122559, - -1.241647481918335, - -1.2724946737289429, - -1.3051491975784302, - -1.3387202024459839, - -1.3722920417785645, - -1.4049489498138428, - -1.272552728652954, - -1.24857497215271, - -1.2270569801330566, - -1.2085857391357422, - -1.1936650276184082, - -1.1827019453048706, - -1.1759953498840332, - -1.1737284660339355, - -1.1759628057479858, - -1.1826376914978027, - -1.193570852279663, - -1.2084641456604004, - -1.2269114255905151, - -1.2484092712402344, - -1.272371530532837, - -1.2981443405151367, - -1.3250248432159424, - -1.3522796630859375, - -1.379165530204773, - -1.4049489498138428, - -1.272552728652954, - -1.2581446170806885, - -1.245935320854187, - -1.236257791519165, - -1.2293760776519775, - -1.225477695465088, - -1.224669098854065, - -1.2269724607467651, - -1.2323248386383057, - -1.2405802011489868, - -1.2515133619308472, - -1.2648261785507202, - -1.2801554203033447, - -1.2970830202102661, - -1.3151472806930542, - -1.3338552713394165, - -1.3526968955993652, - -1.3711581230163574, - -1.388735294342041, - -1.4049489498138428, - -1.272552728652954, - -1.2693735361099243, - -1.2680867910385132, - -1.2687276601791382, - -1.2712785005569458, - -1.275669813156128, - -1.281781792640686, - -1.2894477844238281, - -1.2984586954116821, - -1.3085685968399048, - -1.3195017576217651, - -1.3309600353240967, - -1.3426308631896973, - -1.3541957139968872, - -1.3653393983840942, - -1.3757578134536743, - -1.3851666450500488, - -1.393309473991394, - -1.3999640941619873, - -1.4049489498138428, - -1.272552728652954, - -1.2810447216033936, - -1.291110873222351, - -1.3024765253067017, - -1.3148316144943237, - -1.3278392553329468, - -1.3411444425582886, - -1.3543843030929565, - -1.3671977519989014, - -1.3792352676391602, - -1.39016854763031, - -1.3996992111206055, - -1.4075672626495361, - -1.4135583639144897, - -1.417508840560913, - -1.4193109273910522, - -1.4189156293869019, - -1.4163336753845215, - -1.411635398864746, - -1.4049489498138428, - -1.272552728652954, - -1.2918936014175415, - -1.3125126361846924, - -1.3338474035263062, - -1.3553158044815063, - -1.3763325214385986, - -1.3963240385055542, - -1.4147450923919678, - -1.4310932159423828, - -1.4449225664138794, - -1.4558557271957397, - -1.4635945558547974, - -1.4679280519485474, - -1.4687379598617554, - -1.466002106666565, - -1.4597951173782349, - -1.4502863883972168, - -1.4377353191375732, - -1.4224841594696045, - -1.4049489498138428, - -1.272552728652954, - -1.3007442951202393, - -1.329972743988037, - -1.359440565109253, - -1.3883440494537354, - -1.415894627571106, - -1.4413410425186157, - -1.4639891386032104, - -1.4832209348678589, - -1.4985120296478271, - -1.5094451904296875, - -1.5157222747802734, - -1.51717209815979, - -1.5137550830841064, - -1.5055642127990723, - -1.4928232431411743, - -1.4758796691894531, - -1.455195426940918, - -1.4313349723815918, - -1.4049489498138428, - -1.272552728652954, - -1.3066380023956299, - -1.3415991067886353, - -1.3764827251434326, - -1.410336971282959, - -1.4422385692596436, - -1.4713172912597656, - -1.4967800378799438, - -1.5179320573806763, - -1.5341964960098267, - -1.545129656791687, - -1.5504333972930908, - -1.5499629974365234, - -1.5437312126159668, - -1.5319081544876099, - -1.5148162841796875, - -1.4929218292236328, - -1.4668219089508057, - -1.4372285604476929, - -1.4049489498138428, - -1.272552728652954, - -1.3089357614517212, - -1.3461320400238037, - -1.383126974105835, - -1.4189115762710571, - -1.4525094032287598, - -1.4830043315887451, - -1.5095643997192383, - -1.5314650535583496, - -1.5481090545654297, - -1.55904221534729, - -1.5639665126800537, - -1.5627473592758179, - -1.5554182529449463, - -1.5421791076660156, - -1.523390769958496, - -1.4995660781860352, - -1.4713547229766846, - -1.4395263195037842, - -1.4049489498138428, - -1.272552728652954, - -1.3073886632919312, - -1.3430801630020142, - -1.3786535263061523, - -1.4131383895874023, - -1.445594310760498, - -1.4751356840133667, - -1.5009568929672241, - -1.5223535299301147, - -1.538741946220398, - -1.5496752262115479, - -1.5548548698425293, - -1.5541398525238037, - -1.5475496053695679, - -1.5352638959884644, - -1.5176177024841309, - -1.4950926303863525, - -1.468302845954895, - -1.4379792213439941, - -1.4049489498138428, - -1.272552728652954, - -1.3021644353866577, - -1.3327741622924805, - -1.3635469675064087, - -1.3936433792114258, - -1.4222424030303955, - -1.448564052581787, - -1.4718902111053467, - -1.4915847778320312, - -1.507110357284546, - -1.5180435180664062, - -1.5240861177444458, - -1.5250732898712158, - -1.5209779739379883, - -1.5119119882583618, - -1.4981225728988647, - -1.4799859523773193, - -1.4579968452453613, - -1.4327549934387207, - -1.4049489498138428, - -1.272552728652954, - -1.293829083442688, - -1.316330909729004, - -1.3394442796707153, - -1.3625386953353882, - -1.3849842548370361, - -1.4061686992645264, - -1.4255142211914062, - -1.442492961883545, - -1.4566419124603271, - -1.467575192451477, - -1.474994421005249, - -1.4786971807479858, - -1.4785826206207275, - -1.474653959274292, - -1.4670180082321167, - -1.4558833837509155, - -1.4415537118911743, - -1.4244197607040405, - -1.4049489498138428, - -1.272552728652954, - -1.2832860946655273, - -1.2955323457717896, - -1.308957576751709, - -1.323195457458496, - -1.3378576040267944, - -1.3525440692901611, - -1.3668544292449951, - -1.380398154258728, - -1.392805814743042, - -1.4037389755249023, - -1.4128994941711426, - -1.4200373888015747, - -1.4249579906463623, - -1.4275271892547607, - -1.427674651145935, - -1.4253965616226196, - -1.4207550287246704, - -1.4138766527175903, - -1.4049489498138428, - -1.272552728652954, - -1.2716777324676514, - -1.2726322412490845, - -1.275390386581421, - -1.2798768281936646, - -1.2859691381454468, - -1.2935012578964233, - -1.3022676706314087, - -1.312029242515564, - -1.3225196599960327, - -1.3334529399871826, - -1.3445305824279785, - -1.3554506301879883, - -1.3659151792526245, - -1.375638723373413, - -1.384356141090393, - -1.391829490661621, - -1.3978549242019653, - -1.4022682905197144, - -1.4049489498138428 - ], - "y": [ - 0.7588436603546143, - 0.7595102787017822, - 0.7638491988182068, - 0.7717421650886536, - 0.7829737663269043, - 0.7972376942634583, - 0.8141448497772217, - 0.8332340717315674, - 0.8539846539497375, - 0.8758305311203003, - 0.898175835609436, - 0.9204110503196716, - 0.9419296383857727, - 0.962144672870636, - 0.9805046916007996, - 0.9965088963508606, - 1.009720802307129, - 1.019779920578003, - 1.026411771774292, - 1.0294357538223267, - 0.7588436603546143, - 0.77414870262146, - 0.7927268147468567, - 0.8140712380409241, - 0.8375996947288513, - 0.862670361995697, - 0.8885994553565979, - 0.9146797060966492, - 0.9401996731758118, - 0.9644632339477539, - 0.9868085384368896, - 1.0066261291503906, - 1.0233752727508545, - 1.0365992784500122, - 1.045937418937683, - 1.0511348247528076, - 1.0520498752593994, - 1.0486574172973633, - 1.0410503149032593, - 1.0294357538223267, - 0.7588436603546143, - 0.7873286008834839, - 0.8187270760536194, - 0.8521826267242432, - 0.8867826461791992, - 0.9215832948684692, - 0.9556354284286499, - 0.988010048866272, - 1.0178241729736328, - 1.044264554977417, - 1.0666098594665527, - 1.0842506885528564, - 1.096705675125122, - 1.103635311126709, - 1.1048502922058105, - 1.1003178358078003, - 1.0901612043380737, - 1.074657678604126, - 1.0542302131652832, - 1.0294357538223267, - 0.7588436603546143, - 0.7976216673851013, - 0.8390324115753174, - 0.8819463849067688, - 0.9251929521560669, - 0.9675924181938171, - 1.0079883337020874, - 1.045278787612915, - 1.0784465074539185, - 1.1065868139266968, - 1.1289321184158325, - 1.1448729038238525, - 1.1539742946624756, - 1.1559882164001465, - 1.1508594751358032, - 1.138728141784668, - 1.1199250221252441, - 1.0949630737304688, - 1.0645232200622559, - 1.0294357538223267, - 0.7588436603546143, - 0.8039125204086304, - 0.8514424562454224, - 0.9001371264457703, - 0.9486682415008545, - 0.9957118630409241, - 1.039984941482544, - 1.0802797079086304, - 1.1154969930648804, - 1.1446763277053833, - 1.167021632194519, - 1.1819233894348145, - 1.1889753341674805, - 1.1879847049713135, - 1.1789789199829102, - 1.162203311920166, - 1.1381157636642456, - 1.1073731184005737, - 1.0708140134811401, - 1.0294357538223267, - 0.7588436603546143, - 0.8055193424224854, - 0.854612410068512, - 0.9047836661338806, - 0.9546645879745483, - 1.0028945207595825, - 1.0481579303741455, - 1.0892200469970703, - 1.1249608993530273, - 1.1544055938720703, - 1.176750898361206, - 1.191387414932251, - 1.1979155540466309, - 1.196157693862915, - 1.1861615180969238, - 1.1681997776031494, - 1.142762303352356, - 1.1105430126190186, - 1.0724209547042847, - 1.0294357538223267, - 0.7588436603546143, - 0.8022681474685669, - 0.8481987118721008, - 0.8953824043273926, - 0.9425321817398071, - 0.9883618950843811, - 1.0316215753555298, - 1.0711309909820557, - 1.105812668800354, - 1.1347203254699707, - 1.1570656299591064, - 1.172239065170288, - 1.1798266172409058, - 1.1796213388442993, - 1.1716289520263672, - 1.1560673713684082, - 1.1333609819412231, - 1.1041293144226074, - 1.0691697597503662, - 1.0294357538223267, - 0.7588436603546143, - 0.7945111989974976, - 0.8328964114189148, - 0.8729521036148071, - 0.9135857820510864, - 0.9536889791488647, - 0.9921678900718689, - 1.0279728174209595, - 1.0601271390914917, - 1.0877536535263062, - 1.110098958015442, - 1.1265535354614258, - 1.1366684436798096, - 1.1401677131652832, - 1.136955976486206, - 1.1271209716796875, - 1.1109306812286377, - 1.0888270139694214, - 1.0614128112792969, - 1.0294357538223267, - 0.7588436603546143, - 0.7830891013145447, - 0.8103637099266052, - 0.8399235010147095, - 0.8709622025489807, - 0.9026330709457397, - 0.9340723156929016, - 0.9644222259521484, - 0.9928550720214844, - 1.0185952186584473, - 1.040940523147583, - 1.0592814683914185, - 1.0731178522109985, - 1.082072138786316, - 1.085900068283081, - 1.084497332572937, - 1.07790207862854, - 1.0662943124771118, - 1.0499906539916992, - 1.0294357538223267, - 0.7588436603546143, - 0.769239604473114, - 0.7830424308776855, - 0.7998757362365723, - 0.8192803263664246, - 0.8407268524169922, - 0.8636303544044495, - 0.8873661160469055, - 0.9112865924835205, - 0.934739351272583, - 0.9570846557617188, - 0.9777129888534546, - 0.9960616827011108, - 1.0116301774978638, - 1.0239938497543335, - 1.0328154563903809, - 1.0378543138504028, - 1.038973093032837, - 1.0361411571502686, - 1.0294357538223267, - 0.7588436603546143, - 0.7544634342193604, - 0.753893256187439, - 0.7571486234664917, - 0.7641407251358032, - 0.7746788263320923, - 0.7884755730628967, - 0.8051545023918152, - 0.8242607712745667, - 0.8452731370925903, - 0.8676184415817261, - 0.8906871676445007, - 0.9138501286506653, - 0.936475396156311, - 0.9579458236694336, - 0.9776758551597595, - 0.9951272010803223, - 1.0098239183425903, - 1.0213650465011597, - 1.0294357538223267, - 0.7588436603546143, - 0.7403619885444641, - 0.7260749340057373, - 0.7163722515106201, - 0.7115185856819153, - 0.711646318435669, - 0.7167520523071289, - 0.7266964316368103, - 0.7412082552909851, - 0.7598916292190552, - 0.7822369337081909, - 0.8076346516609192, - 0.8353920578956604, - 0.8647518754005432, - 0.8949133157730103, - 0.9250537157058716, - 0.9543508291244507, - 0.9820055365562439, - 1.0072635412216187, - 1.0294357538223267, - 0.7588436603546143, - 0.7284632325172424, - 0.702601969242096, - 0.6819654107093811, - 0.6671163439750671, - 0.6584599018096924, - 0.6562322378158569, - 0.6604940295219421, - 0.671129047870636, - 0.6878472566604614, - 0.7101925611495972, - 0.7375554442405701, - 0.7691895961761475, - 0.8042320609092712, - 0.8417268991470337, - 0.8806514739990234, - 0.9199439883232117, - 0.9585326313972473, - 0.995364785194397, - 1.0294357538223267, - 0.7588436603546143, - 0.7200566530227661, - 0.6860181093215942, - 0.6576565504074097, - 0.6357457041740417, - 0.6208831667900085, - 0.6134742498397827, - 0.6137212514877319, - 0.621617317199707, - 0.6369471549987793, - 0.659292459487915, - 0.6880437731742859, - 0.722416877746582, - 0.7614741325378418, - 0.8041501045227051, - 0.849280834197998, - 0.895635187625885, - 0.9419487118721008, - 0.9869581460952759, - 1.0294357538223267, - 0.7588436603546143, - 0.7160531878471375, - 0.6781203746795654, - 0.6460800766944885, - 0.620806097984314, - 0.602988064289093, - 0.5931118130683899, - 0.5914468765258789, - 0.5980385541915894, - 0.6127071380615234, - 0.6350524425506592, - 0.6644649505615234, - 0.7001424431800842, - 0.7411116361618042, - 0.7862550020217896, - 0.834341287612915, - 0.8840586543083191, - 0.9340510368347168, - 0.982954740524292, - 1.0294357538223267, - 0.7588436603546143, - 0.7168866991996765, - 0.6797646880149841, - 0.648490309715271, - 0.6239165663719177, - 0.6067138314247131, - 0.5973513126373291, - 0.5960843563079834, - 0.6029476523399353, - 0.6177539825439453, - 0.640099287033081, - 0.6693741083145142, - 0.7047799825668335, - 0.7453511357307434, - 0.7899808287620544, - 0.837451696395874, - 0.8864688873291016, - 0.9356953501701355, - 0.983788251876831, - 1.0294357538223267, - 0.7588436603546143, - 0.7224668860435486, - 0.6907728314399719, - 0.6646261215209961, - 0.6447399854660034, - 0.6316567659378052, - 0.6257334351539612, - 0.627131462097168, - 0.6358128786087036, - 0.6515406966209412, - 0.6738860607147217, - 0.7022392749786377, - 0.7358270883560181, - 0.7737332582473755, - 0.8149237632751465, - 0.8582751154899597, - 0.9026047587394714, - 0.9467034935951233, - 0.9893684387207031, - 1.0294357538223267, - 0.7588436603546143, - 0.7321889996528625, - 0.7099519371986389, - 0.6927390098571777, - 0.6810197830200195, - 0.6751139163970947, - 0.6751825213432312, - 0.6812236309051514, - 0.6930726170539856, - 0.7104061245918274, - 0.7327514886856079, - 0.7594990134239197, - 0.7899192571640015, - 0.8231823444366455, - 0.858380913734436, - 0.8945549130439758, - 0.9307176470756531, - 0.9658825993537903, - 0.9990905523300171, - 1.0294357538223267, - 0.7588436603546143, - 0.7449995875358582, - 0.7352235913276672, - 0.7297824621200562, - 0.7288245558738708, - 0.7323760390281677, - 0.740339994430542, - 0.7524991631507874, - 0.7685219645500183, - 0.7879712581634521, - 0.8103166222572327, - 0.8349483609199524, - 0.8611947894096375, - 0.8883398175239563, - 0.915643036365509, - 0.9423596858978271, - 0.9677610993385315, - 0.9911542534828186, - 1.0119011402130127, - 1.0294357538223267, - 0.7588436603546143, - 0.7595102787017822, - 0.7638492584228516, - 0.7717421650886536, - 0.7829737663269043, - 0.797237753868103, - 0.8141449093818665, - 0.8332341313362122, - 0.8539846539497375, - 0.8758305907249451, - 0.8981758952140808, - 0.9204111099243164, - 0.9419296979904175, - 0.9621447324752808, - 0.9805047512054443, - 0.9965089559555054, - 1.009720802307129, - 1.019779920578003, - 1.026411771774292, - 1.0294357538223267 - ], - "z": [ - 0.9475398063659668, - 0.9423166513442993, - 0.928525447845459, - 0.9065424203872681, - 0.8769672513008118, - 0.840606689453125, - 0.7984523773193359, - 0.7516543865203857, - 0.7014891505241394, - 0.6493250727653503, - 0.5965849757194519, - 0.5447075963020325, - 0.4951079189777374, - 0.44913890957832336, - 0.40805453062057495, - 0.3729754090309143, - 0.34485840797424316, - 0.32447052001953125, - 0.31236785650253296, - 0.3088805675506592, - 0.9475398063659668, - 0.9461522102355957, - 0.9360920786857605, - 0.9176336526870728, - 0.8912805318832397, - 0.8577515482902527, - 0.8179612159729004, - 0.7729950547218323, - 0.7240794897079468, - 0.6725488901138306, - 0.6198088526725769, - 0.5672979354858398, - 0.5164485573768616, - 0.4686477780342102, - 0.425199419260025, - 0.3872886896133423, - 0.35594961047172546, - 0.3320371210575104, - 0.3162034749984741, - 0.3088805675506592, - 0.9475398063659668, - 0.9496662616729736, - 0.9430242776870728, - 0.9277949333190918, - 0.9043936729431152, - 0.8734589219093323, - 0.8358343839645386, - 0.7925463914871216, - 0.7447757720947266, - 0.6938255429267883, - 0.6410854458808899, - 0.5879942178726196, - 0.5359999537467957, - 0.4865208864212036, - 0.440906822681427, - 0.4004018306732178, - 0.3661108911037445, - 0.33896929025650024, - 0.31971749663352966, - 0.3088805675506592, - 0.9475398063659668, - 0.9524779319763184, - 0.9485708475112915, - 0.9359251260757446, - 0.9148857593536377, - 0.8860266804695129, - 0.8501349687576294, - 0.8081898093223572, - 0.7613352537155151, - 0.7108493447303772, - 0.6581093072891235, - 0.6045536398887634, - 0.5516433119773865, - 0.5008214712142944, - 0.45347458124160767, - 0.41089391708374023, - 0.37424108386039734, - 0.344515860080719, - 0.322529137134552, - 0.3088805675506592, - 0.9475398063659668, - 0.9542824625968933, - 0.9521306753158569, - 0.9411432147026062, - 0.9216197729110718, - 0.8940929174423218, - 0.8593133687973022, - 0.8182300329208374, - 0.771963357925415, - 0.7217755317687988, - 0.6690354347229004, - 0.6151818037033081, - 0.5616835355758667, - 0.5099998712539673, - 0.46154075860977173, - 0.4176279306411743, - 0.3794592022895813, - 0.3480757474899292, - 0.32433366775512695, - 0.3088805675506592, - 0.9475398063659668, - 0.95488440990448, - 0.9533181190490723, - 0.9428837299346924, - 0.9238659739494324, - 0.8967834711074829, - 0.8623749017715454, - 0.8215789794921875, - 0.775508463382721, - 0.7254200577735901, - 0.6726799607276917, - 0.618726909160614, - 0.5650324821472168, - 0.5130614042282104, - 0.46423131227493286, - 0.4198741316795349, - 0.38119974732398987, - 0.34926319122314453, - 0.3249356150627136, - 0.3088805675506592, - 0.9475398063659668, - 0.9542184472084045, - 0.9520044326782227, - 0.9409581422805786, - 0.9213809370994568, - 0.8938068151473999, - 0.8589878082275391, - 0.8178738951683044, - 0.7715864181518555, - 0.7213879823684692, - 0.6686478853225708, - 0.6148048043251038, - 0.5613273978233337, - 0.5096743106842041, - 0.46125465631484985, - 0.4173890948295593, - 0.3792741298675537, - 0.3479495048522949, - 0.32426968216896057, - 0.3088805675506592, - 0.9475398063659668, - 0.9523568153381348, - 0.9483319520950317, - 0.935575008392334, - 0.9144339561462402, - 0.8854854702949524, - 0.8495191931724548, - 0.8075161576271057, - 0.7606221437454224, - 0.7101162672042847, - 0.6573761701583862, - 0.6038405895233154, - 0.550969660282135, - 0.5002056956291199, - 0.4529333710670471, - 0.4104421138763428, - 0.3738909959793091, - 0.344277024269104, - 0.3224080502986908, - 0.3088805675506592, - 0.9475398063659668, - 0.9495012760162354, - 0.9426987171173096, - 0.92731773853302, - 0.9037778973579407, - 0.8727213144302368, - 0.8349950313568115, - 0.7916282415390015, - 0.743803858757019, - 0.6928263306617737, - 0.64008629322052, - 0.5870223045349121, - 0.5350817441940308, - 0.48568153381347656, - 0.44016915559768677, - 0.3997860252857208, - 0.36563369631767273, - 0.33864375948905945, - 0.319552481174469, - 0.3088805675506592, - 0.9475398063659668, - 0.9459611773490906, - 0.9357150793075562, - 0.9170811176300049, - 0.890567421913147, - 0.8568973541259766, - 0.8169893026351929, - 0.7719318866729736, - 0.7229540348052979, - 0.6713919043540955, - 0.618651807308197, - 0.5661724805831909, - 0.5153853893280029, - 0.4676758050918579, - 0.4243452548980713, - 0.3865755796432495, - 0.3553970456123352, - 0.3316601514816284, - 0.3160123825073242, - 0.3088805675506592, - 0.9475398063659668, - 0.9421201944351196, - 0.9281378984451294, - 0.9059743881225586, - 0.8762341737747192, - 0.8397285342216492, - 0.7974532246589661, - 0.7505614161491394, - 0.7003321647644043, - 0.6481356024742126, - 0.595395565032959, - 0.5435506105422974, - 0.4940149188041687, - 0.4481397271156311, - 0.4071764349937439, - 0.3722423315048218, - 0.3442903459072113, - 0.32408297061920166, - 0.31217139959335327, - 0.3088805675506592, - 0.9475398063659668, - 0.9383945465087891, - 0.9207882881164551, - 0.8952012062072754, - 0.8623313903808594, - 0.8230752944946289, - 0.7785037755966187, - 0.7298327088356018, - 0.6783895492553711, - 0.6255776882171631, - 0.5728376507759094, - 0.5216079950332642, - 0.4732862114906311, - 0.4291902780532837, - 0.39052316546440125, - 0.35833948850631714, - 0.3335171937942505, - 0.31673333048820496, - 0.3084457814693451, - 0.3088805675506592, - 0.9475398063659668, - 0.9351879954338074, - 0.9144626259803772, - 0.8859289884567261, - 0.8503655195236206, - 0.8087422251701355, - 0.7621944546699524, - 0.7119919657707214, - 0.6595041155815125, - 0.6061626672744751, - 0.5534226298332214, - 0.5027225613594055, - 0.4554454982280731, - 0.4128809869289398, - 0.37619009613990784, - 0.34637367725372314, - 0.32424500584602356, - 0.3104076683521271, - 0.3052392303943634, - 0.3088805675506592, - 0.9475398063659668, - 0.9328479766845703, - 0.9098464250564575, - 0.8791625499725342, - 0.8416333794593811, - 0.7982826232910156, - 0.7502926588058472, - 0.6989726424217224, - 0.6457223892211914, - 0.5919944643974304, - 0.539254367351532, - 0.4889408051967621, - 0.4424261450767517, - 0.4009791612625122, - 0.3657304644584656, - 0.33764153718948364, - 0.3174785375595093, - 0.3057914972305298, - 0.30289921164512634, - 0.3088805675506592, - 0.9475398063659668, - 0.9316281080245972, - 0.9074399471282959, - 0.8756351470947266, - 0.8370811939239502, - 0.7928298711776733, - 0.7440880537033081, - 0.6921854615211487, - 0.6385377645492554, - 0.5846083760261536, - 0.5318682789802551, - 0.48175621032714844, - 0.435638964176178, - 0.39477458596229553, - 0.3602777421474457, - 0.33308935165405273, - 0.3139511048793793, - 0.30338501930236816, - 0.3016793429851532, - 0.3088805675506592, - 0.9475398063659668, - 0.931660532951355, - 0.9075039625167847, - 0.875728964805603, - 0.8372023105621338, - 0.7929748892784119, - 0.7442530989646912, - 0.6923660039901733, - 0.6387288570404053, - 0.5848048329353333, - 0.5320647358894348, - 0.48194727301597595, - 0.43581950664520264, - 0.3949396014213562, - 0.3604227602481842, - 0.33321043848991394, - 0.31404492259025574, - 0.30344900488853455, - 0.301711767911911, - 0.3088805675506592, - 0.9475398063659668, - 0.9329417943954468, - 0.9100315570831299, - 0.8794338703155518, - 0.8419834971427917, - 0.7987020015716553, - 0.750769853591919, - 0.6994946002960205, - 0.6462749242782593, - 0.5925624966621399, - 0.5398224592208862, - 0.48949337005615234, - 0.4429481327533722, - 0.401456356048584, - 0.3661498427391052, - 0.3379916548728943, - 0.31774982810020447, - 0.3059765696525574, - 0.3029930293560028, - 0.3088805675506592, - 0.9475398063659668, - 0.9353330135345459, - 0.9147487282752991, - 0.8863483667373657, - 0.8509067296981812, - 0.8093904852867126, - 0.7629321217536926, - 0.7127988934516907, - 0.6603583097457886, - 0.6070408225059509, - 0.5543007254600525, - 0.5035767555236816, - 0.45625239610671997, - 0.41361862421035767, - 0.3768383860588074, - 0.3469148576259613, - 0.3246643543243408, - 0.31069377064704895, - 0.30538424849510193, - 0.3088805675506592, - 0.9475398063659668, - 0.9385750889778137, - 0.9211443662643433, - 0.8957232236862183, - 0.8630050420761108, - 0.8238822221755981, - 0.7794219851493835, - 0.7308371067047119, - 0.6794527769088745, - 0.6266707181930542, - 0.5739306807518005, - 0.5226712226867676, - 0.4742906093597412, - 0.4301084876060486, - 0.3913300931453705, - 0.3590131402015686, - 0.33403921127319336, - 0.3170894384384155, - 0.30862629413604736, - 0.3088805675506592, - 0.9475398063659668, - 0.9423166513442993, - 0.928525447845459, - 0.9065424203872681, - 0.8769673109054565, - 0.840606689453125, - 0.7984523773193359, - 0.7516543865203857, - 0.7014891505241394, - 0.6493250727653503, - 0.5965850353240967, - 0.5447075963020325, - 0.4951079487800598, - 0.44913893938064575, - 0.40805453062057495, - 0.3729754090309143, - 0.34485840797424316, - 0.32447052001953125, - 0.31236785650253296, - 0.3088805675506592 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.284870982170105, - -1.2843060493469238, - -1.2856231927871704, - -1.28878653049469, - -1.293709635734558, - -1.3002583980560303, - -1.3082540035247803, - -1.3174785375595093, - -1.327680230140686, - -1.338580846786499, - -1.3498830795288086, - -1.3612785339355469, - -1.3724565505981445, - -1.3831120729446411, - -1.3929544687271118, - -1.4017153978347778, - -1.4091556072235107, - -1.4150724411010742, - -1.419304370880127, - -1.4217358827590942, - -1.284870982170105, - -1.272769570350647, - -1.2628648281097412, - -1.2554271221160889, - -1.2506592273712158, - -1.2486910820007324, - -1.2495765686035156, - -1.2532914876937866, - -1.2597343921661377, - -1.2687296867370605, - -1.2800319194793701, - -1.293332815170288, - -1.3082695007324219, - -1.3244346380233765, - -1.341387152671814, - -1.358664870262146, - -1.3757961988449097, - -1.392314076423645, - -1.4077677726745605, - -1.4217358827590942, - -1.284870982170105, - -1.2626454830169678, - -1.2428929805755615, - -1.2261521816253662, - -1.2128796577453613, - -1.2034376859664917, - -1.198083519935608, - -1.1969634294509888, - -1.2001078128814697, - -1.2074309587478638, - -1.2187331914901733, - -1.2337061166763306, - -1.251941442489624, - -1.2729415893554688, - -1.2961337566375732, - -1.320885419845581, - -1.346521258354187, - -1.3723422288894653, - -1.397643804550171, - -1.4217358827590942, - -1.284870982170105, - -1.2550311088562012, - -1.2278718948364258, - -1.2041341066360474, - -1.1844652891159058, - -1.1694018840789795, - -1.1593549251556396, - -1.1545982360839844, - -1.1552618741989136, - -1.1613274812698364, - -1.172629714012146, - -1.1888601779937744, - -1.2095763683319092, - -1.234212875366211, - -1.262097954750061, - -1.292470932006836, - -1.3245033025741577, - -1.3573211431503296, - -1.3900294303894043, - -1.4217358827590942, - -1.284870982170105, - -1.2507514953613281, - -1.21942937374115, - -1.1917589902877808, - -1.1684950590133667, - -1.150272250175476, - -1.137587547302246, - -1.1307871341705322, - -1.130056381225586, - -1.1354150772094727, - -1.1467173099517822, - -1.1636546850204468, - -1.1857651472091675, - -1.212445616722107, - -1.2429683208465576, - -1.2765007019042969, - -1.3121280670166016, - -1.3488786220550537, - -1.3857498168945312, - -1.4217358827590942, - -1.284870982170105, - -1.2502703666687012, - -1.2184802293777466, - -1.1903676986694336, - -1.1666996479034424, - -1.1481215953826904, - -1.1351404190063477, - -1.1281101703643799, - -1.1272226572036743, - -1.1325019598007202, - -1.1438041925430298, - -1.1608209609985352, - -1.1830883026123047, - -1.2099984884262085, - -1.2408177852630615, - -1.2747052907943726, - -1.3107367753982544, - -1.3479294776916504, - -1.3852686882019043, - -1.4217358827590942, - -1.284870982170105, - -1.253639817237854, - -1.2251273393630981, - -1.2001111507415771, - -1.1792736053466797, - -1.1631830930709839, - -1.1522786617279053, - -1.1468576192855835, - -1.147067904472351, - -1.15290367603302, - -1.1642059087753296, - -1.180666208267212, - -1.2018356323242188, - -1.2271367311477661, - -1.2558791637420654, - -1.2872792482376099, - -1.320480227470398, - -1.354576587677002, - -1.3886381387710571, - -1.4217358827590942, - -1.284870982170105, - -1.2604949474334717, - -1.2386504411697388, - -1.2199333906173706, - -1.2048542499542236, - -1.1938245296478271, - -1.1871449947357178, - -1.184997797012329, - -1.1874414682388306, - -1.1944094896316528, - -1.2057117223739624, - -1.221039891242981, - -1.2399758100509644, - -1.262002944946289, - -1.2865206003189087, - -1.3128600120544434, - -1.3403024673461914, - -1.3680996894836426, - -1.3954931497573853, - -1.4217358827590942, - -1.284870982170105, - -1.2700926065444946, - -1.2575839757919312, - -1.2476863861083984, - -1.2406697273254395, - -1.2367254495620728, - -1.2359610795974731, - -1.2383975982666016, - -1.2439683675765991, - -1.2525215148925781, - -1.2638237476348877, - -1.27756667137146, - -1.2933756113052368, - -1.310819149017334, - -1.3294215202331543, - -1.3486754894256592, - -1.3680555820465088, - -1.387033224105835, - -1.4050909280776978, - -1.4217358827590942, - -1.284870982170105, - -1.2813929319381714, - -1.2798763513565063, - -1.2803627252578735, - -1.2828388214111328, - -1.2872369289398193, - -1.293437123298645, - -1.3012703657150269, - -1.3105229139328003, - -1.3209424018859863, - -1.332244634628296, - -1.3441212177276611, - -1.356248378753662, - -1.3682951927185059, - -1.3799329996109009, - -1.390844464302063, - -1.4007319211959839, - -1.4093255996704102, - -1.4163912534713745, - -1.4217358827590942, - -1.284870982170105, - -1.2931712865829468, - -1.3031117916107178, - -1.3144214153289795, - -1.3267916440963745, - -1.3398851156234741, - -1.3533445596694946, - -1.3668028116226196, - -1.3798929452896118, - -1.3922576904296875, - -1.403559923171997, - -1.4134912490844727, - -1.4217808246612549, - -1.4282026290893555, - -1.4325811862945557, - -1.4347974061965942, - -1.4347906112670898, - -1.4325610399246216, - -1.4281694889068604, - -1.4217358827590942, - -1.284870982170105, - -1.3041512966156006, - -1.3247723579406738, - -1.3461716175079346, - -1.3677655458450317, - -1.3889648914337158, - -1.4091914892196655, - -1.4278936386108398, - -1.4445611238479614, - -1.4587393999099731, - -1.4700416326522827, - -1.4781595468521118, - -1.482871651649475, - -1.4840495586395264, - -1.4816609621047974, - -1.475771188735962, - -1.466540813446045, - -1.4542216062545776, - -1.4391496181488037, - -1.4217358827590942, - -1.284870982170105, - -1.3131431341171265, - -1.34251070022583, - -1.3721728324890137, - -1.4013200998306274, - -1.4291576147079468, - -1.4549260139465332, - -1.4779225587844849, - -1.4975197315216064, - -1.5131829977035522, - -1.5244852304458618, - -1.5311180353164673, - -1.5329005718231201, - -1.529784083366394, - -1.5218538045883179, - -1.5093257427215576, - -1.4925419092178345, - -1.4719599485397339, - -1.4481414556503296, - -1.4217358827590942, - -1.284870982170105, - -1.3191723823547363, - -1.3544048070907593, - -1.3896071910858154, - -1.4238193035125732, - -1.4561078548431396, - -1.485592246055603, - -1.5114681720733643, - -1.5330297946929932, - -1.5496888160705566, - -1.5609910488128662, - -1.566628098487854, - -1.5664461851119995, - -1.5604503154754639, - -1.5488040447235107, - -1.5318249464035034, - -1.5099762678146362, - -1.483854055404663, - -1.4541707038879395, - -1.4217358827590942, - -1.284870982170105, - -1.3215856552124023, - -1.3591655492782593, - -1.3965855836868286, - -1.432824969291687, - -1.4668952226638794, - -1.4978668689727783, - -1.5248953104019165, - -1.5472432374954224, - -1.5643008947372437, - -1.5756031274795532, - -1.5808415412902832, - -1.5798733234405518, - -1.5727249383926392, - -1.559591293334961, - -1.5408306121826172, - -1.5169546604156494, - -1.488614797592163, - -1.4565839767456055, - -1.4217358827590942, - -1.284870982170105, - -1.3201215267181396, - -1.3562772274017334, - -1.392351746559143, - -1.4273611307144165, - -1.460350513458252, - -1.490419864654541, - -1.5167490243911743, - -1.538619875907898, - -1.5554356575012207, - -1.5667378902435303, - -1.5722181797027588, - -1.5717270374298096, - -1.5652779340744019, - -1.5530465841293335, - -1.5353668928146362, - -1.5127208232879639, - -1.4857264757156372, - -1.4551198482513428, - -1.4217358827590942, - -1.284870982170105, - -1.3149385452270508, - -1.346052646636963, - -1.3773645162582397, - -1.40802001953125, - -1.4371830224990845, - -1.4640580415725708, - -1.4879119396209717, - -1.508094072341919, - -1.524053931236267, - -1.5353561639785767, - -1.5416924953460693, - -1.542889952659607, - -1.5389161109924316, - -1.5298792123794556, - -1.5160256624221802, - -1.4977335929870605, - -1.4755018949508667, - -1.449936866760254, - -1.4217358827590942, - -1.284870982170105, - -1.306598424911499, - -1.3295998573303223, - -1.353247880935669, - -1.3768974542617798, - -1.399903416633606, - -1.4216382503509521, - -1.4415091276168823, - -1.4589738845825195, - -1.4735562801361084, - -1.484858512878418, - -1.49257230758667, - -1.4964871406555176, - -1.496496319770813, - -1.4925994873046875, - -1.48490309715271, - -1.4736170768737793, - -1.459049105644226, - -1.4415967464447021, - -1.4217358827590942, - -1.284870982170105, - -1.2960048913955688, - -1.3087018728256226, - -1.322615385055542, - -1.337365984916687, - -1.3525513410568237, - -1.3677572011947632, - -1.3825688362121582, - -1.3965821266174316, - -1.4094150066375732, - -1.4207172393798828, - -1.430180549621582, - -1.4375468492507935, - -1.442615270614624, - -1.4452475309371948, - -1.4453716278076172, - -1.4429844617843628, - -1.4381511211395264, - -1.431003212928772, - -1.4217358827590942, - -1.284870982170105, - -1.2843060493469238, - -1.2856231927871704, - -1.28878653049469, - -1.293709635734558, - -1.3002583980560303, - -1.3082540035247803, - -1.3174785375595093, - -1.327680230140686, - -1.338580846786499, - -1.3498830795288086, - -1.3612785339355469, - -1.3724565505981445, - -1.3831120729446411, - -1.3929544687271118, - -1.4017153978347778, - -1.4091556072235107, - -1.4150724411010742, - -1.419304370880127, - -1.4217358827590942 - ], - "y": [ - 0.762529730796814, - 0.7634170651435852, - 0.7680355906486511, - 0.7762593030929565, - 0.7878639101982117, - 0.8025328516960144, - 0.8198660016059875, - 0.8393905758857727, - 0.8605740070343018, - 0.8828383684158325, - 0.9055764675140381, - 0.9281680583953857, - 0.949996829032898, - 0.9704673290252686, - 0.9890213012695312, - 1.0051525831222534, - 1.0184210538864136, - 1.028464913368225, - 1.0350102186203003, - 1.0378782749176025, - 0.762529730796814, - 0.7781791687011719, - 0.7971570491790771, - 0.8189458250999451, - 0.8429510593414307, - 0.868518054485321, - 0.8949493169784546, - 0.921523928642273, - 0.9475170373916626, - 0.9722195267677307, - 0.9949576258659363, - 1.0151110887527466, - 1.032130241394043, - 1.0455507040023804, - 1.055006504058838, - 1.0602396726608276, - 1.0611075162887573, - 1.057586431503296, - 1.0497722625732422, - 1.0378782749176025, - 0.762529730796814, - 0.7914488315582275, - 0.8233344554901123, - 0.8573169112205505, - 0.8924691677093506, - 0.9278324842453003, - 0.9624421000480652, - 0.9953540563583374, - 1.0256705284118652, - 1.0525646209716797, - 1.0753027200698853, - 1.0932645797729492, - 1.1059602499008179, - 1.1130434274673462, - 1.1143208742141724, - 1.1097577810287476, - 1.0994787216186523, - 1.083763837814331, - 1.0630419254302979, - 1.0378782749176025, - 0.762529730796814, - 0.8017881512641907, - 0.8437311053276062, - 0.8872144818305969, - 0.9310522079467773, - 0.9740484356880188, - 1.0150303840637207, - 1.0528801679611206, - 1.086565375328064, - 1.1151671409606934, - 1.137905240058899, - 1.154159426689148, - 1.1634864807128906, - 1.1656317710876465, - 1.1605368852615356, - 1.1483408212661743, - 1.1293762922286987, - 1.1041604280471802, - 1.0733813047409058, - 1.0378782749176025, - 0.762529730796814, - 0.8080767393112183, - 0.856136679649353, - 0.9053987264633179, - 0.9545190334320068, - 1.0021578073501587, - 1.0470154285430908, - 1.087868571281433, - 1.1236026287078857, - 1.1532429456710815, - 1.175981044769287, - 1.1911966800689697, - 1.1984747648239136, - 1.1976168155670166, - 1.1886461973190308, - 1.1718077659606934, - 1.147560477256775, - 1.1165660619735718, - 1.0796698331832886, - 1.0378782749176025, - 0.762529730796814, - 0.8096330165863037, - 0.8592068552970886, - 0.9098989963531494, - 0.9603266716003418, - 1.009114384651184, - 1.0549312829971313, - 1.0965275764465332, - 1.1327687501907349, - 1.1626660823822021, - 1.1854041814804077, - 1.2003628015518188, - 1.2071337699890137, - 1.2055325508117676, - 1.1956028938293457, - 1.1776154041290283, - 1.1520607471466064, - 1.1196362972259521, - 1.081226110458374, - 1.0378782749176025, - 0.762529730796814, - 0.806288480758667, - 0.8526089787483215, - 0.9002277255058289, - 0.9478458166122437, - 0.9941643476486206, - 1.0379199981689453, - 1.0779190063476562, - 1.1130704879760742, - 1.1424154043197632, - 1.1651535034179688, - 1.1806645393371582, - 1.1885251998901367, - 1.1885212659835815, - 1.1806528568267822, - 1.1651344299316406, - 1.1423894166946411, - 1.1130383014678955, - 1.0778815746307373, - 1.0378782749176025, - 0.762529730796814, - 0.7984054088592529, - 0.837057888507843, - 0.8774328827857971, - 0.918428897857666, - 0.9589278697967529, - 0.9978249669075012, - 1.0340592861175537, - 1.0666422843933105, - 1.0946853160858154, - 1.117423415184021, - 1.1342363357543945, - 1.1446654796600342, - 1.1484262943267822, - 1.1454163789749146, - 1.1357176303863525, - 1.1195945739746094, - 1.097487211227417, - 1.0699985027313232, - 1.0378782749176025, - 0.762529730796814, - 0.786838173866272, - 0.8142389059066772, - 0.8439846038818359, - 0.8752637505531311, - 0.9072232246398926, - 0.9389912486076355, - 0.9697012901306152, - 0.9985155463218689, - 1.0246481895446777, - 1.0473862886428833, - 1.0661096572875977, - 1.0803074836730957, - 1.0895925760269165, - 1.0937117338180542, - 1.0925524234771729, - 1.086146354675293, - 1.074668288230896, - 1.0584312677383423, - 1.0378782749176025, - 0.762529730796814, - 0.7728402018547058, - 0.7866248488426208, - 0.8035076260566711, - 0.8230279684066772, - 0.8446535468101501, - 0.8677943348884583, - 0.8918192386627197, - 0.9160728454589844, - 0.9398935437202454, - 0.9626316428184509, - 0.9836668968200684, - 1.0024254322052002, - 1.0183956623077393, - 1.031141996383667, - 1.0403165817260742, - 1.0456693172454834, - 1.0470541715621948, - 1.044433355331421, - 1.0378782749176025, - 0.7625297904014587, - 0.7579284310340881, - 0.757207989692688, - 0.760388195514679, - 0.7673821449279785, - 0.7779991030693054, - 0.7919495105743408, - 0.8088528513908386, - 0.8282480239868164, - 0.849605917930603, - 0.8723440170288086, - 0.8958420753479004, - 0.9194591045379639, - 0.9425508975982666, - 0.9644875526428223, - 0.9846707582473755, - 1.0025498867034912, - 1.0176373720169067, - 1.0295215845108032, - 1.0378782749176025, - 0.7625297904014587, - 0.7437187433242798, - 0.7291762828826904, - 0.7192989587783813, - 0.7143563032150269, - 0.7144830226898193, - 0.7196757793426514, - 0.7297928333282471, - 0.7445583343505859, - 0.7635693550109863, - 0.7863074541091919, - 0.8121523857116699, - 0.8403990864753723, - 0.8702771067619324, - 0.9009714722633362, - 0.9316449165344238, - 0.9614607095718384, - 0.9896056056022644, - 1.01531183719635, - 1.0378782749176025, - 0.7625297904014587, - 0.731751024723053, - 0.7055672407150269, - 0.6846926212310791, - 0.6696966290473938, - 0.6609882712364197, - 0.6588050723075867, - 0.6632065773010254, - 0.6740727424621582, - 0.6911072731018066, - 0.7138453722000122, - 0.741666853427887, - 0.7738127708435059, - 0.8094063997268677, - 0.8474766612052917, - 0.8869852423667908, - 0.9268543720245361, - 0.9659965634346008, - 1.0033440589904785, - 1.0378782749176025, - 0.7625297904014587, - 0.7233220934867859, - 0.6889393329620361, - 0.6603193283081055, - 0.6382427215576172, - 0.6233117580413818, - 0.6159336566925049, - 0.6163097023963928, - 0.6244297027587891, - 0.6400720477104187, - 0.6628101468086243, - 0.692023754119873, - 0.7269158959388733, - 0.7665349245071411, - 0.8098001480102539, - 0.8555313348770142, - 0.9024810194969177, - 0.9493686556816101, - 0.9949151873588562, - 1.0378782749176025, - 0.7625297904014587, - 0.7193454504013062, - 0.6810944676399231, - 0.6488202810287476, - 0.6234030723571777, - 0.6055363416671753, - 0.595707356929779, - 0.5941842794418335, - 0.6010085940361023, - 0.6159942150115967, - 0.6387323141098022, - 0.6686026453971863, - 0.704790472984314, - 0.7463086843490601, - 0.7920247316360474, - 0.8406916856765747, - 0.8909819722175598, - 0.9415237903594971, - 0.9909385442733765, - 1.0378782749176025, - 0.7625297904014587, - 0.7202519178390503, - 0.6828827261924744, - 0.6514414548873901, - 0.6267857551574707, - 0.6095882654190063, - 0.6003179550170898, - 0.599227786064148, - 0.6063474416732788, - 0.621482789516449, - 0.6442208886146545, - 0.6739414930343628, - 0.7098340392112732, - 0.7509193420410156, - 0.7960766553878784, - 0.8440744280815125, - 0.8936032056808472, - 0.9433120489120483, - 0.9918450117111206, - 1.0378782749176025, - 0.7625297904014587, - 0.725943386554718, - 0.6941103339195251, - 0.6678990125656128, - 0.648024320602417, - 0.6350284814834595, - 0.6292659640312195, - 0.630893886089325, - 0.639867901802063, - 0.6559431552886963, - 0.6786812543869019, - 0.707461953163147, - 0.7415000796318054, - 0.7798672914505005, - 0.8215169310569763, - 0.8653129935264587, - 0.9100607633590698, - 0.9545396566390991, - 0.9975364804267883, - 1.0378782749176025, - 0.7625297904014587, - 0.7358030080795288, - 0.7135606408119202, - 0.6964094638824463, - 0.6848171949386597, - 0.6791001558303833, - 0.6794142723083496, - 0.6857509613037109, - 0.6979373097419739, - 0.7156410813331604, - 0.7383791208267212, - 0.7655314207077026, - 0.7963571548461914, - 0.8300155997276306, - 0.8655886054039001, - 0.9021058082580566, - 0.9385711550712585, - 0.9739899635314941, - 1.0073961019515991, - 1.0378782749176025, - 0.7625297904014587, - 0.7487623691558838, - 0.7391258478164673, - 0.7338832020759583, - 0.7331773042678833, - 0.7370274662971497, - 0.7453286647796631, - 0.7578544616699219, - 0.7742631435394287, - 0.79410719871521, - 0.8168452978134155, - 0.8418571949005127, - 0.8684606552124023, - 0.8959299921989441, - 0.9235159158706665, - 0.9504659175872803, - 0.9760449528694153, - 0.999555230140686, - 1.020355463027954, - 1.0378782749176025, - 0.762529730796814, - 0.7634170651435852, - 0.7680355906486511, - 0.7762593030929565, - 0.7878639101982117, - 0.8025329113006592, - 0.8198660612106323, - 0.8393906354904175, - 0.8605740070343018, - 0.8828384280204773, - 0.9055765271186829, - 0.9281680583953857, - 0.949996829032898, - 0.9704673886299133, - 0.9890213012695312, - 1.0051525831222534, - 1.0184210538864136, - 1.028464913368225, - 1.0350102186203003, - 1.0378782749176025 - ], - "z": [ - 0.9707943201065063, - 0.965664267539978, - 0.9518991708755493, - 0.9298745393753052, - 0.900191068649292, - 0.8636585474014282, - 0.8212734460830688, - 0.7741919159889221, - 0.7236981391906738, - 0.6711695790290833, - 0.618039071559906, - 0.5657557845115662, - 0.5157459378242493, - 0.4693736135959625, - 0.42790383100509644, - 0.3924676477909088, - 0.36403176188468933, - 0.34337177872657776, - 0.3310513198375702, - 0.3274064064025879, - 0.9707943201065063, - 0.9695278406143188, - 0.9595209360122681, - 0.9410465359687805, - 0.9146085977554321, - 0.8809283375740051, - 0.8409243822097778, - 0.7956880331039429, - 0.746453046798706, - 0.6945626139640808, - 0.6414320468902588, - 0.5885106921195984, - 0.53724205493927, - 0.4890245795249939, - 0.44517359137535095, - 0.40688517689704895, - 0.3752037584781647, - 0.3509935140609741, - 0.3349148631095886, - 0.3274064064025879, - 0.9707943201065063, - 0.9730532169342041, - 0.9664754867553711, - 0.9512405395507812, - 0.9277640581130981, - 0.8966863751411438, - 0.858855128288269, - 0.8153023719787598, - 0.7672160863876343, - 0.715907871723175, - 0.662777304649353, - 0.6092736721038818, - 0.5568563938140869, - 0.5069553256034851, - 0.46093159914016724, - 0.4200406074523926, - 0.3853977918624878, - 0.35794803500175476, - 0.3384402096271515, - 0.3274064064025879, - 0.9707943201065063, - 0.9758583307266235, - 0.9720091819763184, - 0.9593518972396851, - 0.9382318258285522, - 0.9092249870300293, - 0.8731226325035095, - 0.8309095501899719, - 0.7837371826171875, - 0.7328922152519226, - 0.6797616481781006, - 0.6257947683334351, - 0.5724635720252991, - 0.5212228298187256, - 0.4734702706336975, - 0.4305083751678467, - 0.3935091495513916, - 0.3634817600250244, - 0.3412453234195709, - 0.3274064064025879, - 0.9707943201065063, - 0.9776391983032227, - 0.9755223989486694, - 0.9645016193389893, - 0.9448776245117188, - 0.9171854853630066, - 0.8821807503700256, - 0.8408181667327881, - 0.7942259907722473, - 0.7436752319335938, - 0.6905446648597717, - 0.6362836360931396, - 0.5823721885681152, - 0.5302808880805969, - 0.4814307391643524, - 0.4371541440486908, - 0.3986588716506958, - 0.3669950067996979, - 0.3430262506008148, - 0.3274064064025879, - 0.9707943201065063, - 0.9782029390335083, - 0.9766344428062439, - 0.9661316871643066, - 0.9469811916351318, - 0.9197051525115967, - 0.8850478529930115, - 0.8439545035362244, - 0.7975459694862366, - 0.7470883131027222, - 0.6939577460289001, - 0.6396036148071289, - 0.5855085253715515, - 0.5331479907035828, - 0.4839504361152649, - 0.4392576813697815, - 0.4002888798713684, - 0.36810702085494995, - 0.3435899317264557, - 0.3274064064025879, - 0.9707943201065063, - 0.9774883389472961, - 0.9752247333526611, - 0.9640653133392334, - 0.9443145990371704, - 0.916511058807373, - 0.8814132809638977, - 0.8399786949157715, - 0.793337345123291, - 0.7427616119384766, - 0.6896311044692993, - 0.6353949904441833, - 0.5815327167510986, - 0.5295134782791138, - 0.4807562828063965, - 0.43659108877182007, - 0.39822259545326233, - 0.3666973412036896, - 0.3428753614425659, - 0.3274064064025879, - 0.9707943201065063, - 0.9755728840827942, - 0.97144615650177, - 0.958526611328125, - 0.9371668100357056, - 0.9079492092132568, - 0.8716709613800049, - 0.829321563243866, - 0.7820561528205872, - 0.7311640977859497, - 0.6780335307121277, - 0.6241137385368347, - 0.5708755850791931, - 0.5197710990905762, - 0.47219446301460266, - 0.4294432997703552, - 0.39268383383750916, - 0.3629187047481537, - 0.34095993638038635, - 0.3274064064025879, - 0.9707943201065063, - 0.9726641774177551, - 0.9657080173492432, - 0.9501156806945801, - 0.9263123869895935, - 0.8949475288391113, - 0.8568764925003052, - 0.8131380081176758, - 0.7649248838424683, - 0.7135524153709412, - 0.6604218482971191, - 0.6069824695587158, - 0.5546919703483582, - 0.5049766898155212, - 0.45919275283813477, - 0.41858893632888794, - 0.38427290320396423, - 0.3571806252002716, - 0.3380511999130249, - 0.3274064064025879, - 0.9707943201065063, - 0.9690773487091064, - 0.9586322903633118, - 0.9397439360618591, - 0.9129276275634766, - 0.8789148330688477, - 0.8386332392692566, - 0.7931817173957825, - 0.7437999844551086, - 0.6918351650238037, - 0.6387045979499817, - 0.585857629776001, - 0.5347357392311096, - 0.4867333769798279, - 0.4431600570678711, - 0.405204176902771, - 0.3739011883735657, - 0.3501048684120178, - 0.3344644010066986, - 0.3274064064025879, - 0.9707943201065063, - 0.965201199054718, - 0.9509856700897217, - 0.9285354018211365, - 0.8984630107879639, - 0.8615885972976685, - 0.818917989730835, - 0.7716153264045715, - 0.7209706902503967, - 0.6683656573295593, - 0.6152350902557373, - 0.5630282759666443, - 0.5131692886352539, - 0.467018187046051, - 0.4258338212966919, - 0.3907395005226135, - 0.362692654132843, - 0.34245821833610535, - 0.3305882215499878, - 0.3274064064025879, - 0.9707943201065063, - 0.9614556431770325, - 0.9435967206954956, - 0.917704701423645, - 0.8844858407974243, - 0.8448463082313538, - 0.7998673319816589, - 0.7507758140563965, - 0.6989108920097351, - 0.6456872224807739, - 0.5925566554069519, - 0.5409684777259827, - 0.49232983589172363, - 0.4479674994945526, - 0.4090915322303772, - 0.37676239013671875, - 0.3518619239330292, - 0.33506929874420166, - 0.32684266567230225, - 0.3274064064025879, - 0.9707943201065063, - 0.958246648311615, - 0.9372662305831909, - 0.9084254503250122, - 0.8725109100341797, - 0.8305023908615112, - 0.7835456132888794, - 0.7329215407371521, - 0.6800110340118408, - 0.6262574195861816, - 0.5731268525123596, - 0.5220686793327332, - 0.47447556257247925, - 0.4316457509994507, - 0.3947475850582123, - 0.3647874593734741, - 0.34258267283439636, - 0.32873883843421936, - 0.32363367080688477, - 0.3274064064025879, - 0.9707943201065063, - 0.9559219479560852, - 0.9326802492141724, - 0.9017032384872437, - 0.863835871219635, - 0.820111095905304, - 0.7717215418815613, - 0.7199872732162476, - 0.6663193702697754, - 0.6121817827224731, - 0.5590512156486511, - 0.508376955986023, - 0.4615412950515747, - 0.41982170939445496, - 0.384356290102005, - 0.35611239075660706, - 0.3358604311943054, - 0.3241528272628784, - 0.321308970451355, - 0.3274064064025879, - 0.9707943201065063, - 0.9547334313392639, - 0.9303356409072876, - 0.8982664346694946, - 0.859400749206543, - 0.8147985339164734, - 0.7656764984130859, - 0.7133746147155762, - 0.6593194603919983, - 0.6049855947494507, - 0.5518550276756287, - 0.5013771057128906, - 0.4549286365509033, - 0.4137766659259796, - 0.3790437579154968, - 0.3516772389411926, - 0.33242368698120117, - 0.32180821895599365, - 0.3201204538345337, - 0.3274064064025879, - 0.9707943201065063, - 0.9548099040985107, - 0.9304865598678589, - 0.8984876275062561, - 0.8596861362457275, - 0.8151403665542603, - 0.7660655379295349, - 0.7138001322746277, - 0.6597699522972107, - 0.6054486632347107, - 0.5523180961608887, - 0.5018275380134583, - 0.45535415410995483, - 0.4141656756401062, - 0.3793856203556061, - 0.3519626557826996, - 0.33264485001564026, - 0.32195910811424255, - 0.3201969265937805, - 0.3274064064025879, - 0.9707943201065063, - 0.9561431407928467, - 0.9331165552139282, - 0.9023427367210388, - 0.8646612167358398, - 0.8210996389389038, - 0.7728464603424072, - 0.7212178111076355, - 0.6676219701766968, - 0.6135208606719971, - 0.5603903532028198, - 0.5096795558929443, - 0.46277183294296265, - 0.4209466278553009, - 0.38534489274024963, - 0.3569377064704895, - 0.336499959230423, - 0.3245891332626343, - 0.32153013348579407, - 0.3274064064025879, - 0.9707943201065063, - 0.9585885405540466, - 0.9379407167434692, - 0.9094140529632568, - 0.8737867474555969, - 0.8320305347442627, - 0.7852845191955566, - 0.7348237037658691, - 0.6820245981216431, - 0.6283274292945862, - 0.5751968622207642, - 0.5240822434425354, - 0.4763777256011963, - 0.43338465690612793, - 0.39627575874328613, - 0.36606326699256897, - 0.343571275472641, - 0.3294132649898529, - 0.3239755630493164, - 0.3274064064025879, - 0.9707943201065063, - 0.961881160736084, - 0.9444361925125122, - 0.9189351797103882, - 0.886073887348175, - 0.8467484712600708, - 0.8020317554473877, - 0.7531434893608093, - 0.7014172077178955, - 0.6482638120651245, - 0.5951333045959473, - 0.5434747934341431, - 0.4946975111961365, - 0.45013195276260376, - 0.4109937250614166, - 0.3783504068851471, - 0.3530924618244171, - 0.33590880036354065, - 0.32726824283599854, - 0.3274064064025879, - 0.9707943201065063, - 0.965664267539978, - 0.9518991708755493, - 0.9298745393753052, - 0.9001911282539368, - 0.8636585474014282, - 0.8212734460830688, - 0.7741919159889221, - 0.7236981987953186, - 0.671169638633728, - 0.618039071559906, - 0.5657557845115662, - 0.5157459378242493, - 0.4693736135959625, - 0.42790383100509644, - 0.3924676477909088, - 0.36403176188468933, - 0.34337177872657776, - 0.3310513198375702, - 0.3274064064025879 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.2951728105545044, - -1.2948533296585083, - -1.2964626550674438, - -1.2999567985534668, - -1.3052403926849365, - -1.3121694326400757, - -1.3205549716949463, - -1.3301680088043213, - -1.3407466411590576, - -1.3520020246505737, - -1.3636274337768555, - -1.3753055334091187, - -1.3867177963256836, - -1.3975530862808228, - -1.4075156450271606, - -1.416333794593811, - -1.42376708984375, - -1.429612636566162, - -1.433711051940918, - -1.4359506368637085, - -1.2951728105545044, - -1.2832164764404297, - -1.2735062837600708, - -1.2663071155548096, - -1.2618154287338257, - -1.2601535320281982, - -1.2613670825958252, - -1.2654225826263428, - -1.2722097635269165, - -1.281543254852295, - -1.2931686639785767, - -1.3067686557769775, - -1.321972370147705, - -1.3383651971817017, - -1.3554997444152832, - -1.3729088306427002, - -1.3901175260543823, - -1.4066563844680786, - -1.4220741987228394, - -1.4359506368637085, - -1.2951728105545044, - -1.2729792594909668, - -1.2533111572265625, - -1.23670494556427, - -1.2236136198043823, - -1.214394211769104, - -1.2092982530593872, - -1.2084648609161377, - -1.2119165658950806, - -1.2195593118667603, - -1.2311846017837524, - -1.2464754581451416, - -1.2650145292282104, - -1.2862963676452637, - -1.3097403049468994, - -1.3347070217132568, - -1.3605152368545532, - -1.3864611387252808, - -1.4118369817733765, - -1.4359506368637085, - -1.2951728105545044, - -1.2652511596679688, - -1.2380657196044922, - -1.2143579721450806, - -1.1947746276855469, - -1.1798501014709473, - -1.169991135597229, - -1.1654667854309082, - -1.166400671005249, - -1.1727670431137085, - -1.1843923330307007, - -1.20095956325531, - -1.2220165729522705, - -1.2469892501831055, - -1.2751961946487427, - -1.3058680295944214, - -1.3381682634353638, - -1.3712157011032104, - -1.4041088819503784, - -1.4359506368637085, - -1.2951728105545044, - -1.2608695030212402, - -1.2294219732284546, - -1.2016878128051758, - -1.1784238815307617, - -1.160264492034912, - -1.147705078125, - -1.1410882472991943, - -1.140594482421875, - -1.1462371349334717, - -1.1578625440597534, - -1.175153374671936, - -1.1976380348205566, - -1.2247031927108765, - -1.2556105852127075, - -1.2895172834396362, - -1.3254982233047485, - -1.3625719547271729, - -1.39972722530365, - -1.4359506368637085, - -1.2951728105545044, - -1.2603092193603516, - -1.2283166646957397, - -1.2000676393508911, - -1.176332950592041, - -1.1577600240707397, - -1.144855260848999, - -1.1379708051681519, - -1.1372945308685303, - -1.1428446769714355, - -1.1544699668884277, - -1.1718533039093018, - -1.1945205926895142, - -1.2218533754348755, - -1.2531061172485352, - -1.2874263525009155, - -1.3238780498504639, - -1.361466646194458, - -1.3991669416427612, - -1.4359506368637085, - -1.2951728105545044, - -1.263630986213684, - -1.2348694801330566, - -1.2096729278564453, - -1.1887286901474, - -1.1726078987121582, - -1.1617504358291626, - -1.1564522981643677, - -1.1568583250045776, - -1.1629570722579956, - -1.1745824813842773, - -1.1914172172546387, - -1.21300208568573, - -1.238748550415039, - -1.2679539918899536, - -1.2998220920562744, - -1.3334832191467285, - -1.368019461631775, - -1.4024887084960938, - -1.4359506368637085, - -1.2951728105545044, - -1.2704747915267944, - -1.2483704090118408, - -1.2294628620147705, - -1.2142674922943115, - -1.2031992673873901, - -1.1965596675872803, - -1.1945301294326782, - -1.197165846824646, - -1.2043949365615845, - -1.2160203456878662, - -1.231724739074707, - -1.2510799169540405, - -1.2735577821731567, - -1.2985453605651855, - -1.325360894203186, - -1.3532731533050537, - -1.3815205097198486, - -1.409332513809204, - -1.4359506368637085, - -1.2951728105545044, - -1.2800990343093872, - -1.267356514930725, - -1.257292628288269, - -1.2501821517944336, - -1.2462189197540283, - -1.2455110549926758, - -1.2480778694152832, - -1.2538492679595947, - -1.2626678943634033, - -1.2742931842803955, - -1.2884081602096558, - -1.304627537727356, - -1.3225091695785522, - -1.3415651321411133, - -1.361275553703308, - -1.3811030387878418, - -1.4005064964294434, - -1.4189567565917969, - -1.4359506368637085, - -1.2951728105545044, - -1.2914608716964722, - -1.2897701263427734, - -1.290146827697754, - -1.2925806045532227, - -1.2970051765441895, - -1.3032997846603394, - -1.3112926483154297, - -1.3207658529281616, - -1.3314610719680786, - -1.3430863618850708, - -1.3553247451782227, - -1.367842435836792, - -1.3802978992462158, - -1.3923512697219849, - -1.4036740064620972, - -1.413957118988037, - -1.4229201078414917, - -1.4303185939788818, - -1.4359506368637085, - -1.2951728105545044, - -1.3033288717269897, - -1.3131825923919678, - -1.3244649171829224, - -1.336868405342102, - -1.350054383277893, - -1.3636635541915894, - -1.3773243427276611, - -1.3906643390655518, - -1.4033197164535522, - -1.4149450063705444, - -1.4252232313156128, - -1.4338741302490234, - -1.4406616687774658, - -1.445400595664978, - -1.4479618072509766, - -1.4482753276824951, - -1.446332573890686, - -1.4421865940093994, - -1.4359506368637085, - -1.2951728105545044, - -1.3144172430038452, - -1.3350566625595093, - -1.3565281629562378, - -1.3782460689544678, - -1.3996180295944214, - -1.4200609922409058, - -1.439017415046692, - -1.4559701681137085, - -1.4704567193984985, - -1.4820820093154907, - -1.4905290603637695, - -1.4955672025680542, - -1.4970591068267822, - -1.4949642419815063, - -1.4893395900726318, - -1.480338454246521, - -1.4682066440582275, - -1.4532749652862549, - -1.4359506368637085, - -1.2951728105545044, - -1.3235241174697876, - -1.3530219793319702, - -1.3828619718551636, - -1.4122300148010254, - -1.4403250217437744, - -1.4663807153701782, - -1.489686369895935, - -1.5096062421798706, - -1.5255968570709229, - -1.537222146987915, - -1.5441651344299316, - -1.5462361574172974, - -1.5433788299560547, - -1.5356712341308594, - -1.5233234167099, - -1.5066722631454468, - -1.4861719608306885, - -1.4623818397521973, - -1.4359506368637085, - -1.2951728105545044, - -1.3296626806259155, - -1.3651317358016968, - -1.4006125926971436, - -1.4351372718811035, - -1.467764139175415, - -1.497603178024292, - -1.5238404273986816, - -1.5457603931427002, - -1.5627648830413818, - -1.574390172958374, - -1.5803192853927612, - -1.580390214920044, - -1.5746012926101685, - -1.5631103515625, - -1.546230673789978, - -1.5244228839874268, - -1.498281717300415, - -1.4685204029083252, - -1.4359506368637085, - -1.2951728105545044, - -1.3321678638458252, - -1.370073676109314, - -1.4078564643859863, - -1.4444856643676758, - -1.4789618253707886, - -1.5103448629379272, - -1.537778615951538, - -1.5605146884918213, - -1.5779329538345337, - -1.5895582437515259, - -1.5950735807418823, - -1.5943284034729004, - -1.5873429775238037, - -1.5743080377578735, - -1.5555790662765503, - -1.5316667556762695, - -1.5032236576080322, - -1.4710255861282349, - -1.4359506368637085, - -1.2951728105545044, - -1.3307679891586304, - -1.3673123121261597, - -1.4038087129592896, - -1.43926203250885, - -1.4727048873901367, - -1.5032250881195068, - -1.529990315437317, - -1.5522702932357788, - -1.5694574117660522, - -1.5810827016830444, - -1.5868291854858398, - -1.5865401029586792, - -1.5802233219146729, - -1.5680509805679321, - -1.5503554344177246, - -1.5276191234588623, - -1.500462293624878, - -1.46962571144104, - -1.4359506368637085, - -1.2951728105545044, - -1.3256149291992188, - -1.3571467399597168, - -1.3889080286026, - -1.4200323820114136, - -1.4496710300445557, - -1.4770153760910034, - -1.5013196468353271, - -1.5219206809997559, - -1.5382566452026367, - -1.5498820543289185, - -1.556479573249817, - -1.5578694343566895, - -1.5540134906768799, - -1.5450172424316406, - -1.5311259031295776, - -1.5127183198928833, - -1.490296721458435, - -1.4644726514816284, - -1.4359506368637085, - -1.2951728105545044, - -1.3172670602798462, - -1.3406785726547241, - -1.3647688627243042, - -1.388880729675293, - -1.4123566150665283, - -1.434556007385254, - -1.4548734426498413, - -1.4727545976638794, - -1.4877119064331055, - -1.4993371963500977, - -1.5073134899139404, - -1.511423110961914, - -1.5115541219711304, - -1.5077028274536133, - -1.499974250793457, - -1.4885791540145874, - -1.4738285541534424, - -1.4561247825622559, - -1.4359506368637085, - -1.2951728105545044, - -1.306628942489624, - -1.3196924924850464, - -1.3340072631835938, - -1.3491827249526978, - -1.364804983139038, - -1.3804479837417603, - -1.395684838294983, - -1.410099983215332, - -1.4233002662658691, - -1.4349256753921509, - -1.444658875465393, - -1.4522346258163452, - -1.4574460983276367, - -1.460151195526123, - -1.4602762460708618, - -1.457817554473877, - -1.4528424739837646, - -1.4454866647720337, - -1.4359506368637085, - -1.2951728105545044, - -1.2948533296585083, - -1.2964626550674438, - -1.2999567985534668, - -1.3052403926849365, - -1.3121694326400757, - -1.3205548524856567, - -1.3301680088043213, - -1.340746521949768, - -1.3520020246505737, - -1.363627314567566, - -1.375305414199829, - -1.3867177963256836, - -1.3975529670715332, - -1.4075156450271606, - -1.416333794593811, - -1.42376708984375, - -1.429612636566162, - -1.433711051940918, - -1.4359506368637085 - ], - "y": [ - 0.7654933333396912, - 0.7665553092956543, - 0.7713994979858398, - 0.779893696308136, - 0.7918062806129456, - 0.8068122863769531, - 0.8245024085044861, - 0.8443940877914429, - 0.8659446835517883, - 0.8885664343833923, - 0.9116421937942505, - 0.9345425963401794, - 0.9566429257392883, - 0.9773403406143188, - 0.9960703253746033, - 1.012321949005127, - 1.0256518125534058, - 1.0356965065002441, - 1.0421818494796753, - 1.0449310541152954, - 0.7654933333396912, - 0.7814214825630188, - 0.8007262945175171, - 0.822881281375885, - 0.8472819924354553, - 0.873262882232666, - 0.9001153111457825, - 0.9271067380905151, - 0.9535009264945984, - 0.9785779118537903, - 1.0016536712646484, - 1.0220987796783447, - 1.0393555164337158, - 1.0529532432556152, - 1.0625208616256714, - 1.0677976608276367, - 1.0686393976211548, - 1.0650233030319214, - 1.057047963142395, - 1.0449310541152954, - 0.7654932737350464, - 0.7947680950164795, - 0.8270555138587952, - 0.8614748120307922, - 0.8970871567726135, - 0.9329211711883545, - 0.9679993391036987, - 1.001364827156067, - 1.0321074724197388, - 1.0593888759613037, - 1.082464575767517, - 1.1007053852081299, - 1.1136137247085571, - 1.1208373308181763, - 1.1221791505813599, - 1.117602825164795, - 1.107232928276062, - 1.0913524627685547, - 1.0703946352005005, - 1.0449310541152954, - 0.7654932737350464, - 0.8051488399505615, - 0.8475338220596313, - 0.8914921283721924, - 0.9358246922492981, - 0.9793221950531006, - 1.0207982063293457, - 1.0591213703155518, - 1.0932462215423584, - 1.1222419738769531, - 1.145317792892456, - 1.1618441343307495, - 1.1713701486587524, - 1.1736361980438232, - 1.1685802936553955, - 1.1563403606414795, - 1.137250304222107, - 1.1118308305740356, - 1.0807753801345825, - 1.0449309349060059, - 0.7654932737350464, - 0.811438798904419, - 0.8599421381950378, - 0.9096803665161133, - 0.959296703338623, - 1.007437825202942, - 1.0527904033660889, - 1.0941174030303955, - 1.1302917003631592, - 1.1603262424468994, - 1.1834020614624023, - 1.1988894939422607, - 1.2063663005828857, - 1.2056283950805664, - 1.1966958045959473, - 1.1798123121261597, - 1.1554385423660278, - 1.124239206314087, - 1.08706533908844, - 1.0449309349060059, - 0.7654932737350464, - 0.8129563331604004, - 0.8629358410835266, - 0.9140685796737671, - 0.9649596810340881, - 1.0142210721969604, - 1.0605089664459229, - 1.1025607585906982, - 1.139229416847229, - 1.1695146560668945, - 1.1925904750823975, - 1.2078273296356201, - 1.2148096561431885, - 1.2133469581604004, - 1.2034790515899658, - 1.1854753494262695, - 1.1598267555236816, - 1.1272327899932861, - 1.0885828733444214, - 1.0449309349060059, - 0.7654932737350464, - 0.8095369935035706, - 0.8561905026435852, - 0.904181182384491, - 0.9521999359130859, - 0.9989370107650757, - 1.0431175231933594, - 1.0835363864898682, - 1.1190910339355469, - 1.1488114595413208, - 1.1718872785568237, - 1.1876888275146484, - 1.1957852840423584, - 1.195955514907837, - 1.1881951093673706, - 1.1727155447006226, - 1.1499392986297607, - 1.1204874515533447, - 1.0851635932922363, - 1.0449309349060059, - 0.7654932737350464, - 0.8015514016151428, - 0.8404370546340942, - 0.8810896277427673, - 0.9224002361297607, - 0.9632419347763062, - 1.0025007724761963, - 1.039105772972107, - 1.0720586776733398, - 1.1004602909088135, - 1.1235359907150269, - 1.1406564712524414, - 1.1513546705245972, - 1.1553387641906738, - 1.1524999141693115, - 1.1429158449172974, - 1.126847743988037, - 1.1047340631484985, - 1.077177882194519, - 1.0449310541152954, - 0.7654932737350464, - 0.7898647785186768, - 0.8173826932907104, - 0.8472962975502014, - 0.8787897229194641, - 0.9110038876533508, - 0.9430601000785828, - 0.9740838408470154, - 1.003229022026062, - 1.029700517654419, - 1.0527763366699219, - 1.0718269348144531, - 1.0863326787948608, - 1.0958980321884155, - 1.100261926651001, - 1.0993053913116455, - 1.0930544137954712, - 1.0816797018051147, - 1.0654913187026978, - 1.0449310541152954, - 0.7654933333396912, - 0.7757437229156494, - 0.7895256280899048, - 0.8064632415771484, - 0.826094388961792, - 0.8478837013244629, - 0.8712368011474609, - 0.8955166339874268, - 0.9200609922409058, - 0.9442002177238464, - 0.9672760367393494, - 0.9886588454246521, - 1.007765531539917, - 1.0240747928619385, - 1.0371416807174683, - 1.0466099977493286, - 1.0522212982177734, - 1.053822636604309, - 1.0513702630996704, - 1.0449310541152954, - 0.7654933333396912, - 0.7607182860374451, - 0.7598847150802612, - 0.7630152702331543, - 0.7700245380401611, - 0.7807214260101318, - 0.7948141098022461, - 0.8119181394577026, - 0.8315669894218445, - 0.8532246947288513, - 0.8763004541397095, - 0.9001649022102356, - 0.9241669774055481, - 0.9476520419120789, - 0.9699794054031372, - 0.9905401468276978, - 1.0087733268737793, - 1.0241817235946655, - 1.0363448858261108, - 1.0449310541152954, - 0.7654933333396912, - 0.7464168071746826, - 0.7316718697547913, - 0.7216606736183167, - 0.7166562080383301, - 0.7167951464653015, - 0.7220735549926758, - 0.7323474884033203, - 0.747336745262146, - 0.7666324973106384, - 0.7897082567214966, - 0.8159346580505371, - 0.8445963859558105, - 0.8749114871025085, - 0.9060531258583069, - 0.9371718168258667, - 0.9674187898635864, - 0.9959688782691956, - 1.0220433473587036, - 1.0449310541152954, - 0.7654933333396912, - 0.7343891263008118, - 0.7079445123672485, - 0.686880886554718, - 0.6717727184295654, - 0.6630322337150574, - 0.6608977317810059, - 0.6654275059700012, - 0.6764979958534241, - 0.6938072443008423, - 0.7168830037117004, - 0.7450958490371704, - 0.7776763439178467, - 0.8137357234954834, - 0.8522902131080627, - 0.892288327217102, - 0.9326390027999878, - 0.9722415208816528, - 1.010015606880188, - 1.0449310541152954, - 0.7654933333396912, - 0.7259384989738464, - 0.6912738084793091, - 0.6624448299407959, - 0.6402378678321838, - 0.62525874376297, - 0.6179159879684448, - 0.6184099316596985, - 0.6267271041870117, - 0.6426405906677246, - 0.6657164096832275, - 0.6953250169754028, - 0.730658769607544, - 0.7707539200782776, - 0.8145166635513306, - 0.8607534766197205, - 0.9082029461860657, - 0.9555708169937134, - 1.0015650987625122, - 1.0449310541152954, - 0.7654933333396912, - 0.7219808101654053, - 0.6834663152694702, - 0.6510004997253418, - 0.6254689693450928, - 0.6075680255889893, - 0.5977860689163208, - 0.596389889717102, - 0.6034175753593445, - 0.6186774373054504, - 0.6417531967163086, - 0.6720154881477356, - 0.7086387872695923, - 0.7506240010261536, - 0.7968260049819946, - 0.8459845185279846, - 0.8967586755752563, - 0.9477633237838745, - 0.9976073503494263, - 1.0449310541152954, - 0.7654933333396912, - 0.7229448556900024, - 0.6853680610656738, - 0.653788149356842, - 0.6290663480758667, - 0.6118771433830261, - 0.6026893854141235, - 0.6017535924911499, - 0.6090953350067139, - 0.6245144605636597, - 0.6475902199745178, - 0.677693247795105, - 0.7140024304389954, - 0.7555272579193115, - 0.8011351227760315, - 0.8495819568634033, - 0.8995462656021118, - 0.9496650695800781, - 0.9985713362693787, - 1.0449310541152954, - 0.7654933333396912, - 0.7287261486053467, - 0.6967730522155762, - 0.6705056428909302, - 0.6506403684616089, - 0.6377191543579102, - 0.6320945024490356, - 0.6339197754859924, - 0.6431451439857483, - 0.6595190763473511, - 0.682594895362854, - 0.7117430567741394, - 0.7461686134338379, - 0.7849324345588684, - 0.8269771337509155, - 0.8711559772491455, - 0.9162637591362, - 0.9610700607299805, - 1.0043526887893677, - 1.0449310541152954, - 0.7654933333396912, - 0.7386982440948486, - 0.71644526720047, - 0.699341356754303, - 0.6878530383110046, - 0.682293713092804, - 0.6828150749206543, - 0.6894027590751648, - 0.7018771767616272, - 0.7198981046676636, - 0.7429739236831665, - 0.7704750895500183, - 0.8016515970230103, - 0.8356529474258423, - 0.8715516924858093, - 0.9083686470985413, - 0.9450994729995728, - 0.9807422757148743, - 1.0143247842788696, - 1.0449310541152954, - 0.7654933333396912, - 0.7517805099487305, - 0.7422529458999634, - 0.7371705174446106, - 0.7366718053817749, - 0.7407704591751099, - 0.7493546009063721, - 0.7621901035308838, - 0.7789269685745239, - 0.7991085052490234, - 0.8221842646598816, - 0.847524881362915, - 0.874439001083374, - 0.9021925330162048, - 0.9300284385681152, - 0.9571874141693115, - 0.9829286336898804, - 1.0065499544143677, - 1.0274070501327515, - 1.0449310541152954, - 0.7654933333396912, - 0.7665553092956543, - 0.7713994979858398, - 0.7798937559127808, - 0.7918063402175903, - 0.8068123459815979, - 0.8245024681091309, - 0.8443940877914429, - 0.8659447431564331, - 0.8885664939880371, - 0.9116422533988953, - 0.9345426559448242, - 0.9566429853439331, - 0.9773404002189636, - 0.9960703253746033, - 1.012321949005127, - 1.0256518125534058, - 1.0356965065002441, - 1.0421818494796753, - 1.0449310541152954 - ], - "z": [ - 0.9907005429267883, - 0.9856443405151367, - 0.9718985557556152, - 0.9498381614685059, - 0.9200649261474609, - 0.8833910822868347, - 0.8408167958259583, - 0.7935035228729248, - 0.7427418231964111, - 0.6899163722991943, - 0.6364679932594299, - 0.5838547348976135, - 0.5335116982460022, - 0.48681211471557617, - 0.4450298845767975, - 0.4093046188354492, - 0.3806108832359314, - 0.3597313165664673, - 0.3472355008125305, - 0.34346431493759155, - 0.9907005429267883, - 0.9895315170288086, - 0.9795669913291931, - 0.9610786437988281, - 0.934570848941803, - 0.9007666707038879, - 0.8605881929397583, - 0.815131425857544, - 0.7656362056732178, - 0.7134526968002319, - 0.6600043773651123, - 0.6067490577697754, - 0.5551395416259766, - 0.5065835118293762, - 0.4624055027961731, - 0.4238104820251465, - 0.3918513357639313, - 0.36739975214004517, - 0.35112273693084717, - 0.34346431493759155, - 0.9907005429267883, - 0.9930671453475952, - 0.986541748046875, - 0.971302330493927, - 0.9477646350860596, - 0.9165705442428589, - 0.8785711526870728, - 0.8348028659820557, - 0.7864596247673035, - 0.7348601222038269, - 0.6814117431640625, - 0.6275725364685059, - 0.5748110413551331, - 0.5245664715766907, - 0.47820940613746643, - 0.4370042681694031, - 0.40207505226135254, - 0.37437453866004944, - 0.3546583652496338, - 0.34346431493759155, - 0.9907005429267883, - 0.9958680272102356, - 0.9920670986175537, - 0.9794014096260071, - 0.9582164883613586, - 0.9290902018547058, - 0.8928170204162598, - 0.850386381149292, - 0.802955687046051, - 0.7518187165260315, - 0.6983703970909119, - 0.6440685987472534, - 0.5903944969177246, - 0.5388123393058777, - 0.49072903394699097, - 0.44745615124702454, - 0.4101741313934326, - 0.37989985942840576, - 0.3574592173099518, - 0.34346428513526917, - 0.9907005429267883, - 0.9976305961608887, - 0.9955441951751709, - 0.984498143196106, - 0.9647939205169678, - 0.9369688034057617, - 0.9017819762229919, - 0.860193133354187, - 0.8133366703987122, - 0.7624908089637756, - 0.709042489528656, - 0.6544495820999146, - 0.6002012491226196, - 0.5477772951126099, - 0.49860766530036926, - 0.4540335536003113, - 0.4152708947658539, - 0.38337695598602295, - 0.35922181606292725, - 0.34346428513526917, - 0.9907005429267883, - 0.9981639385223389, - 0.9965962767601013, - 0.9860403537750244, - 0.9667840600013733, - 0.9393527507781982, - 0.9044945240020752, - 0.8631603717803955, - 0.8164777159690857, - 0.7657199501991272, - 0.7122715711593628, - 0.6575906276702881, - 0.6031684875488281, - 0.5504898428916931, - 0.5009915232658386, - 0.4560237228870392, - 0.41681304574012756, - 0.38442903757095337, - 0.35975512862205505, - 0.34346428513526917, - 0.9907005429267883, - 0.9974101781845093, - 0.9951093196868896, - 0.9838607311248779, - 0.9639712572097778, - 0.9359834790229797, - 0.9006607532501221, - 0.8589666485786438, - 0.8120383620262146, - 0.7611560821533203, - 0.7077077627182007, - 0.653151273727417, - 0.5989747643470764, - 0.54665607213974, - 0.4976223111152649, - 0.4532109498977661, - 0.41463345289230347, - 0.3829421103000641, - 0.35900136828422546, - 0.34346428513526917, - 0.9907005429267883, - 0.9954510927200317, - 0.9912444949150085, - 0.9781956672668457, - 0.9566603899002075, - 0.9272263050079346, - 0.890696108341217, - 0.8480663299560547, - 0.8004997968673706, - 0.7492939233779907, - 0.6958456039428711, - 0.6416126489639282, - 0.5880744457244873, - 0.536691427230835, - 0.4888651371002197, - 0.4459000825881958, - 0.40896832942962646, - 0.3790772557258606, - 0.35704222321510315, - 0.34346428513526917, - 0.9907005429267883, - 0.9924988150596619, - 0.9854205846786499, - 0.9696588516235352, - 0.9456436634063721, - 0.9140300750732422, - 0.8756803870201111, - 0.8316407203674316, - 0.7831122875213623, - 0.7314188480377197, - 0.6779705286026001, - 0.6242251396179199, - 0.5716488361358643, - 0.521675705909729, - 0.47566890716552734, - 0.43488335609436035, - 0.4004315733909607, - 0.37325331568717957, - 0.35409000515937805, - 0.34346431493759155, - 0.9907005429267883, - 0.9888734221458435, - 0.9782686829566956, - 0.9591755867004395, - 0.9321149587631226, - 0.8978248834609985, - 0.8572407960891724, - 0.8114696741104126, - 0.7617600560188293, - 0.709467887878418, - 0.6560195684432983, - 0.6028729677200317, - 0.55147784948349, - 0.5032361149787903, - 0.4594637155532837, - 0.42135459184646606, - 0.3899482786655426, - 0.3661014437675476, - 0.3504646122455597, - 0.34346431493759155, - 0.9907005429267883, - 0.9849677085876465, - 0.9705638885498047, - 0.9478816986083984, - 0.9175401926040649, - 0.8803668022155762, - 0.8373755216598511, - 0.789739191532135, - 0.7387570142745972, - 0.6858198046684265, - 0.6323714256286621, - 0.5798699259757996, - 0.5297473669052124, - 0.4833708703517914, - 0.44200563430786133, - 0.40677985548973083, - 0.37865445017814636, - 0.35839658975601196, - 0.34655892848968506, - 0.34346431493759155, - 0.9907005429267883, - 0.9812049865722656, - 0.9631409645080566, - 0.9370012283325195, - 0.9034988880157471, - 0.863547682762146, - 0.8182373642921448, - 0.7688039541244507, - 0.7165958881378174, - 0.6630371809005737, - 0.6095888614654541, - 0.557708740234375, - 0.5088121294975281, - 0.4642326831817627, - 0.4251864552497864, - 0.3927385210990906, - 0.36777395009994507, - 0.3509737551212311, - 0.3427961766719818, - 0.34346431493759155, - 0.9907006025314331, - 0.9779929518699646, - 0.9568045139312744, - 0.92771315574646, - 0.8915125727653503, - 0.8491900563240051, - 0.8019001483917236, - 0.7509327530860901, - 0.6976780891418457, - 0.6435889005661011, - 0.5901405811309814, - 0.5387910008430481, - 0.4909408688545227, - 0.44789546728134155, - 0.4108288884162903, - 0.38075220584869385, - 0.3584858775138855, - 0.34463727474212646, - 0.3395841419696808, - 0.34346431493759155, - 0.9907006025314331, - 0.9756796360015869, - 0.952241063117981, - 0.9210240244865417, - 0.8828801512718201, - 0.8388499021530151, - 0.7901342511177063, - 0.7380620837211609, - 0.6840537786483765, - 0.6295825242996216, - 0.576134204864502, - 0.5251666903495789, - 0.4780702590942383, - 0.4361295700073242, - 0.4004887044429779, - 0.37211981415748596, - 0.3517967462539673, - 0.340073823928833, - 0.3372708559036255, - 0.34346431493759155, - 0.9907006025314331, - 0.9745158553123474, - 0.9499451518058777, - 0.9176586866378784, - 0.8785371780395508, - 0.8336477279663086, - 0.7842147946357727, - 0.7315868139266968, - 0.6771993041038513, - 0.6225358247756958, - 0.5690875053405762, - 0.5183121562004089, - 0.4715949296951294, - 0.43021008372306824, - 0.39528653025627136, - 0.3677768111228943, - 0.34843137860298157, - 0.33777791261672974, - 0.3361070156097412, - 0.34346431493759155, - 0.9907006025314331, - 0.9746276140213013, - 0.9501656293869019, - 0.9179818034172058, - 0.8789541721343994, - 0.8341472148895264, - 0.784783124923706, - 0.7322084903717041, - 0.6778573989868164, - 0.6232123970985413, - 0.5697640180587769, - 0.5189703106880188, - 0.4722166657447815, - 0.430778443813324, - 0.39578598737716675, - 0.3681938052177429, - 0.34875449538230896, - 0.33799833059310913, - 0.33621877431869507, - 0.34346431493759155, - 0.9907006025314331, - 0.9760028123855591, - 0.952878475189209, - 0.9219583868980408, - 0.8840859532356262, - 0.8402942419052124, - 0.7917777299880981, - 0.7398598790168762, - 0.6859568357467651, - 0.631538987159729, - 0.5780906081199646, - 0.5270697474479675, - 0.4798680543899536, - 0.43777304887771606, - 0.40193304419517517, - 0.3733256161212921, - 0.3527310788631439, - 0.34071123600006104, - 0.3375939726829529, - 0.34346431493759155, - 0.9907006025314331, - 0.9784924387931824, - 0.9577898979187012, - 0.9291574954986572, - 0.8933764696121216, - 0.8514227271080017, - 0.8044406175613403, - 0.7537117600440979, - 0.7006198763847351, - 0.6466131806373596, - 0.59316486120224, - 0.5417327880859375, - 0.4937199354171753, - 0.45043593645095825, - 0.4130615293979645, - 0.3826161324977875, - 0.35993021726608276, - 0.34562259912490845, - 0.34008362889289856, - 0.34346431493759155, - 0.9907005429267883, - 0.9818267226219177, - 0.9643675088882446, - 0.9387990236282349, - 0.9058189392089844, - 0.8663266897201538, - 0.8213995695114136, - 0.7722631096839905, - 0.720257580280304, - 0.6668015718460083, - 0.6133532524108887, - 0.5613704919815063, - 0.5122712850570679, - 0.4673948884010315, - 0.42796552181243896, - 0.39505860209465027, - 0.3695717453956604, - 0.3522002398967743, - 0.3434179127216339, - 0.34346431493759155, - 0.9907005429267883, - 0.9856443405151367, - 0.9718985557556152, - 0.9498381614685059, - 0.9200649857521057, - 0.8833910822868347, - 0.840816855430603, - 0.7935035824775696, - 0.7427418231964111, - 0.6899163722991943, - 0.6364679932594299, - 0.5838547348976135, - 0.5335116982460022, - 0.48681211471557617, - 0.4450298845767975, - 0.4093046188354492, - 0.3806108832359314, - 0.3597313165664673, - 0.3472355008125305, - 0.34346431493759155 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.3039119243621826, - -1.3037904500961304, - -1.3056392669677734, - -1.3094080686569214, - -1.3149938583374023, - -1.3222445249557495, - -1.330962061882019, - -1.3409088850021362, - -1.351813554763794, - -1.3633785247802734, - -1.375288486480713, - -1.3872184753417969, - -1.3988431692123413, - -1.4098454713821411, - -1.4199252128601074, - -1.4288073778152466, - -1.4362497329711914, - -1.4420493841171265, - -1.4460480213165283, - -1.448136568069458, - -1.3039119243621826, - -1.2920689582824707, - -1.2825158834457397, - -1.2755136489868164, - -1.271252989768982, - -1.269850254058838, - -1.2713435888290405, - -1.2756924629211426, - -1.282778024673462, - -1.2924071550369263, - -1.3043171167373657, - -1.3181830644607544, - -1.3336267471313477, - -1.3502269983291626, - -1.3675308227539062, - -1.3850663900375366, - -1.4023553133010864, - -1.4189260005950928, - -1.434326410293579, - -1.448136568069458, - -1.3039119243621826, - -1.2817373275756836, - -1.2621345520019531, - -1.2456384897232056, - -1.232698917388916, - -1.2236689329147339, - -1.218794822692871, - -1.2182093858718872, - -1.2219288349151611, - -1.2298516035079956, - -1.241761565208435, - -1.2573338747024536, - -1.2761437892913818, - -1.2976781129837036, - -1.3213495016098022, - -1.3465123176574707, - -1.3724801540374756, - -1.3985446691513062, - -1.4239948987960815, - -1.448136568069458, - -1.3039119243621826, - -1.2739152908325195, - -1.246703863143921, - -1.2230199575424194, - -1.2035096883773804, - -1.1887050867080688, - -1.179010033607483, - -1.1746890544891357, - -1.1758599281311035, - -1.1824908256530762, - -1.1944007873535156, - -1.2112650871276855, - -1.2326234579086304, - -1.2578933238983154, - -1.2863856554031372, - -1.317323088645935, - -1.349861741065979, - -1.383113980293274, - -1.4161728620529175, - -1.448136568069458, - -1.3039119243621826, - -1.2694504261016846, - -1.2378959655761719, - -1.2101092338562012, - -1.1868482828140259, - -1.1687475442886353, - -1.1563007831573486, - -1.1498475074768066, - -1.1495636701583862, - -1.1554571390151978, - -1.1673671007156372, - -1.1849687099456787, - -1.2077817916870117, - -1.2351840734481812, - -1.2664281129837036, - -1.3006616830825806, - -1.3369510173797607, - -1.374306082725525, - -1.4117079973220825, - -1.448136568069458, - -1.3039119243621826, - -1.2688266038894653, - -1.2366652488708496, - -1.2083053588867188, - -1.1845203638076782, - -1.1659590005874634, - -1.1531277894973755, - -1.146376609802246, - -1.1458895206451416, - -1.1516799926757812, - -1.1635899543762207, - -1.181294560432434, - -1.2043108940124512, - -1.2320111989974976, - -1.2636396884918213, - -1.298333764076233, - -1.3351470232009888, - -1.3730753660202026, - -1.4110841751098633, - -1.448136568069458, - -1.3039119243621826, - -1.272111415863037, - -1.243145227432251, - -1.217803716659546, - -1.1967780590057373, - -1.180641770362854, - -1.1698349714279175, - -1.1646525859832764, - -1.1652357578277588, - -1.1715686321258545, - -1.183478593826294, - -1.2006407976150513, - -1.2225868701934814, - -1.2487183809280396, - -1.278322458267212, - -1.3105915784835815, - -1.3446455001831055, - -1.379555344581604, - -1.4143688678741455, - -1.448136568069458, - -1.3039119243621826, - -1.2789489030838013, - -1.2566336393356323, - -1.2375751733779907, - -1.2222932577133179, - -1.2112046480178833, - -1.204611897468567, - -1.2026948928833008, - -1.2055057287216187, - -1.2129679918289185, - -1.224877953529358, - -1.2409107685089111, - -1.2606291770935059, - -1.283495306968689, - -1.3088852167129517, - -1.3361066579818726, - -1.3644169569015503, - -1.3930437564849854, - -1.4212063550949097, - -1.448136568069458, - -1.3039119243621826, - -1.2885980606079102, - -1.2756688594818115, - -1.2654770612716675, - -1.25830078125, - -1.254335641860962, - -1.2536898851394653, - -1.2563810348510742, - -1.2623357772827148, - -1.2713916301727295, - -1.283301591873169, - -1.2977408170700073, - -1.3143154382705688, - -1.3325732946395874, - -1.3520163297653198, - -1.3721141815185547, - -1.392318844795227, - -1.412078857421875, - -1.4308555126190186, - -1.448136568069458, - -1.3039119243621826, - -1.3000133037567139, - -1.2981879711151123, - -1.2984858751296997, - -1.300898790359497, - -1.3053609132766724, - -1.3117505311965942, - -1.3198933601379395, - -1.3295674324035645, - -1.3405085802078247, - -1.3524185419082642, - -1.364972472190857, - -1.377827763557434, - -1.3906339406967163, - -1.4030414819717407, - -1.4147121906280518, - -1.4253275394439697, - -1.4345980882644653, - -1.4422707557678223, - -1.448136568069458, - -1.3039119243621826, - -1.311957597732544, - -1.3217507600784302, - -1.333024501800537, - -1.3454710245132446, - -1.3587510585784912, - -1.3725022077560425, - -1.3863494396209717, - -1.3999149799346924, - -1.4128289222717285, - -1.424738883972168, - -1.4353200197219849, - -1.4442837238311768, - -1.451385498046875, - -1.4564316272735596, - -1.4592844247817993, - -1.4598661661148071, - -1.4581608772277832, - -1.454215168952942, - -1.448136568069458, - -1.3039119243621826, - -1.3231366872787476, - -1.343803882598877, - -1.3653501272201538, - -1.3871874809265137, - -1.4087203741073608, - -1.429361343383789, - -1.44854736328125, - -1.4657552242279053, - -1.480515480041504, - -1.4924254417419434, - -1.5011602640151978, - -1.5064817667007446, - -1.5082447528839111, - -1.5064009428024292, - -1.5010008811950684, - -1.4921917915344238, - -1.48021399974823, - -1.465394139289856, - -1.448136568069458, - -1.3039119243621826, - -1.3323389291763306, - -1.3619575500488281, - -1.3919599056243896, - -1.4215275049209595, - -1.4498538970947266, - -1.4761664867401123, - -1.499747395515442, - -1.5199534893035889, - -1.5362335443496704, - -1.5481435060501099, - -1.5553585290908813, - -1.5576817989349365, - -1.5550498962402344, - -1.5475345849990845, - -1.5353410243988037, - -1.5188015699386597, - -1.4983676671981812, - -1.4745965003967285, - -1.448136568069458, - -1.3039119243621826, - -1.3385673761367798, - -1.3742444515228271, - -1.4099701642990112, - -1.4447698593139648, - -1.4776942729949951, - -1.5078455209732056, - -1.5344010591506958, - -1.5566363334655762, - -1.5739450454711914, - -1.5858550071716309, - -1.5920413732528687, - -1.5923353433609009, - -1.5867289304733276, - -1.575374960899353, - -1.5585832595825195, - -1.5368118286132812, - -1.5106545686721802, - -1.4808248281478882, - -1.448136568069458, - -1.3039119243621826, - -1.3411468267440796, - -1.3793331384658813, - -1.4174292087554932, - -1.4543957710266113, - -1.4892245531082153, - -1.520965576171875, - -1.548753023147583, - -1.571828842163086, - -1.5895636081695557, - -1.6014735698699951, - -1.6072338819503784, - -1.606687307357788, - -1.599848985671997, - -1.5869052410125732, - -1.568209171295166, - -1.5442708730697632, - -1.5157432556152344, - -1.4834043979644775, - -1.448136568069458, - -1.3039119243621826, - -1.3397979736328125, - -1.3766721487045288, - -1.4135286808013916, - -1.4493621587753296, - -1.483195185661316, - -1.5141048431396484, - -1.541248083114624, - -1.5638844966888428, - -1.5813963413238525, - -1.5933064222335815, - -1.5992895364761353, - -1.5991824865341187, - -1.5929882526397705, - -1.5808758735656738, - -1.5631756782531738, - -1.5403704643249512, - -1.5130822658538818, - -1.4820555448532104, - -1.448136568069458, - -1.3039119243621826, - -1.3346668481826782, - -1.3665499687194824, - -1.3986914157867432, - -1.4302146434783936, - -1.4602595567703247, - -1.488006830215454, - -1.5126996040344238, - -1.5336641073226929, - -1.5503286123275757, - -1.5622386932373047, - -1.5690691471099854, - -1.570633888244629, - -1.5668902397155762, - -1.5579402446746826, - -1.5440280437469482, - -1.5255331993103027, - -1.502959966659546, - -1.4769244194030762, - -1.448136568069458, - -1.3039119243621826, - -1.3263095617294312, - -1.3500633239746094, - -1.3745251893997192, - -1.399027943611145, - -1.4229031801223755, - -1.4454996585845947, - -1.4662010669708252, - -1.4844427108764648, - -1.4997270107269287, - -1.5116369724273682, - -1.5198477506637573, - -1.5241354703903198, - -1.5243830680847168, - -1.5205838680267334, - -1.5128413438796997, - -1.5013668537139893, - -1.4864733219146729, - -1.468567132949829, - -1.448136568069458, - -1.3039119243621826, - -1.3156317472457886, - -1.3289988040924072, - -1.3436486721038818, - -1.3591816425323486, - -1.3751740455627441, - -1.3911895751953125, - -1.4067915678024292, - -1.4215542078018188, - -1.4350749254226685, - -1.446984887123108, - -1.4569592475891113, - -1.4647258520126343, - -1.4700729846954346, - -1.4728546142578125, - -1.4729950428009033, - -1.4704903364181519, - -1.4654089212417603, - -1.457889199256897, - -1.448136568069458, - -1.3039119243621826, - -1.3037904500961304, - -1.3056392669677734, - -1.3094080686569214, - -1.3149938583374023, - -1.3222445249557495, - -1.330962061882019, - -1.3409088850021362, - -1.3518134355545044, - -1.3633785247802734, - -1.375288486480713, - -1.3872184753417969, - -1.3988431692123413, - -1.4098454713821411, - -1.4199250936508179, - -1.4288073778152466, - -1.4362497329711914, - -1.4420493841171265, - -1.4460480213165283, - -1.448136568069458 - ], - "y": [ - 0.7679146528244019, - 0.7691175937652588, - 0.7741473317146301, - 0.7828667759895325, - 0.7950380444526672, - 0.8103290796279907, - 0.8283228874206543, - 0.8485285639762878, - 0.8703949451446533, - 0.8933256268501282, - 0.9166951179504395, - 0.9398658871650696, - 0.9622060060501099, - 0.9831060171127319, - 1.0019958019256592, - 1.0183601379394531, - 1.0317527055740356, - 1.0418081283569336, - 1.0482521057128906, - 1.0509088039398193, - 0.7679146528244019, - 0.7840725183486938, - 0.803649365901947, - 0.8261110782623291, - 0.8508450388908386, - 0.8771765232086182, - 0.904387354850769, - 0.9317352175712585, - 0.9584741592407227, - 0.9838747382164001, - 1.0072442293167114, - 1.0279450416564941, - 1.0454126596450806, - 1.0591704845428467, - 1.0688432455062866, - 1.074167251586914, - 1.0749969482421875, - 1.071310043334961, - 1.0632070302963257, - 1.0509088039398193, - 0.7679146528244019, - 0.7974857091903687, - 0.8301097750663757, - 0.8648970127105713, - 0.9008984565734863, - 0.9371321797370911, - 0.9726097583770752, - 1.0063633918762207, - 1.0374724864959717, - 1.0650885105133057, - 1.0884579420089722, - 1.1069434881210327, - 1.1200408935546875, - 1.1273928880691528, - 1.1287989616394043, - 1.124220609664917, - 1.1137828826904297, - 1.0977704524993896, - 1.076620101928711, - 1.0509088039398193, - 0.7679146528244019, - 0.8079034686088562, - 0.8506611585617065, - 0.8950214385986328, - 0.9397742748260498, - 0.983698844909668, - 1.025597095489502, - 1.0643260478973389, - 1.0988293886184692, - 1.1281659603118896, - 1.1515353918075562, - 1.1683003902435303, - 1.1780035495758057, - 1.1803802251815796, - 1.1753655672073364, - 1.1630964279174805, - 1.1439073085784912, - 1.1183218955993652, - 1.0870379209518433, - 1.0509088039398193, - 0.7679146528244019, - 0.8141970038414001, - 0.8630765080451965, - 0.9132199883460999, - 0.9632595777511597, - 1.0118303298950195, - 1.0576072931289673, - 1.0993419885635376, - 1.135895848274231, - 1.166271686553955, - 1.1896412372589111, - 1.2053667306900024, - 1.2130193710327148, - 1.212390422821045, - 1.203497052192688, - 1.1865817308425903, - 1.162105917930603, - 1.1307373046875, - 1.0933314561843872, - 1.0509088039398193, - 0.7679146528244019, - 0.8156841993331909, - 0.8660104274749756, - 0.9175205230712891, - 0.9688094258308411, - 1.0184780359268188, - 1.065171718597412, - 1.107616662979126, - 1.1446549892425537, - 1.175276517868042, - 1.198646068572998, - 1.2141259908676147, - 1.2212940454483032, - 1.2199548482894897, - 1.2101447582244873, - 1.192131519317627, - 1.1664063930511475, - 1.1336711645126343, - 1.0948187112808228, - 1.0509088039398193, - 0.7679146528244019, - 0.8122040033340454, - 0.859144926071167, - 0.9074569940567017, - 0.9558224081993103, - 1.0029218196868896, - 1.0474705696105957, - 1.088253378868103, - 1.1241579055786133, - 1.1542046070098877, - 1.1775740385055542, - 1.1936287879943848, - 1.2019307613372803, - 1.2022535800933838, - 1.194588541984558, - 1.1791445016860962, - 1.15634286403656, - 1.1268056631088257, - 1.0913383960723877, - 1.0509088039398193, - 0.7679146528244019, - 0.8041334748268127, - 0.8432239890098572, - 0.884119987487793, - 0.9257058501243591, - 0.9668471813201904, - 1.0064219236373901, - 1.0433504581451416, - 1.0766254663467407, - 1.1053392887115479, - 1.128708839416504, - 1.1460964679718018, - 1.1570279598236084, - 1.1612050533294678, - 1.1585140228271484, - 1.1490280628204346, - 1.1330058574676514, - 1.1108847856521606, - 1.0832679271697998, - 1.0509088039398193, - 0.7679146528244019, - 0.7923471927642822, - 0.8199729919433594, - 0.8500384092330933, - 0.8817233443260193, - 0.9141635894775391, - 0.9464741945266724, - 0.9777738451957703, - 1.0072088241577148, - 1.0339760780334473, - 1.0573455095291138, - 1.0766797065734863, - 1.0914512872695923, - 1.10125732421875, - 1.1058303117752075, - 1.1050455570220947, - 1.0989242792129517, - 1.087633728981018, - 1.071481704711914, - 1.0509088039398193, - 0.7679146528244019, - 0.7781224250793457, - 0.7919114232063293, - 0.8089054822921753, - 0.8286411166191101, - 0.8505799770355225, - 0.8741236329078674, - 0.8986297845840454, - 0.9234300851821899, - 0.9478480219841003, - 0.9712175130844116, - 0.992901086807251, - 1.0123072862625122, - 1.0289067029953003, - 1.042246699333191, - 1.0519633293151855, - 1.0577914714813232, - 1.0595721006393433, - 1.0572569370269775, - 1.0509088039398193, - 0.7679146528244019, - 0.7630006074905396, - 0.762080192565918, - 0.7651786804199219, - 0.7722114324569702, - 0.7829867005348206, - 0.7972104549407959, - 0.814494788646698, - 0.8343682289123535, - 0.8562886118888855, - 0.8796581029891968, - 0.9038391709327698, - 0.92817223072052, - 0.9519935846328735, - 0.9746533632278442, - 0.9955335855484009, - 1.0140645503997803, - 1.0297409296035767, - 1.0421350002288818, - 1.0509088039398193, - 0.7679146528244019, - 0.7486203908920288, - 0.7337120771408081, - 0.723596453666687, - 0.718549370765686, - 0.7187084555625916, - 0.7240694761276245, - 0.7344861030578613, - 0.7496743202209473, - 0.769219696521759, - 0.7925891876220703, - 0.8191452622413635, - 0.8481636047363281, - 0.8788526058197021, - 0.91037517786026, - 0.9418714642524719, - 0.9724823832511902, - 1.0013728141784668, - 1.0277549028396606, - 1.0509088039398193, - 0.7679146528244019, - 0.7365401983261108, - 0.7098811864852905, - 0.6886648535728455, - 0.6734699010848999, - 0.6647108793258667, - 0.6626266241073608, - 0.667273998260498, - 0.6785262823104858, - 0.6960765719413757, - 0.719446063041687, - 0.7479972839355469, - 0.7809514999389648, - 0.8174097537994385, - 0.8563775420188904, - 0.8967920541763306, - 0.9375507831573486, - 0.9775419235229492, - 1.0156745910644531, - 1.0509088039398193, - 0.7679146528244019, - 0.728069007396698, - 0.6931698322296143, - 0.6641693115234375, - 0.6418582201004028, - 0.6268453598022461, - 0.6195401549339294, - 0.620141863822937, - 0.6286342144012451, - 0.6447853446006775, - 0.6681548357009888, - 0.6981050968170166, - 0.7338193655014038, - 0.7743232846260071, - 0.8185120820999146, - 0.8651803731918335, - 0.9130551815032959, - 0.9608306288719177, - 1.007203459739685, - 1.0509088039398193, - 0.7679146528244019, - 0.7241248488426208, - 0.6853891611099243, - 0.6527642011642456, - 0.6271399259567261, - 0.609215259552002, - 0.5994792580604553, - 0.598197340965271, - 0.6054045557975769, - 0.6209043264389038, - 0.6442737579345703, - 0.6748754978179932, - 0.7118748426437378, - 0.754262387752533, - 0.8008819818496704, - 0.8504620790481567, - 0.9016501307487488, - 0.953049898147583, - 1.003259301185608, - 1.0509088039398193, - 0.7679146528244019, - 0.725135087966919, - 0.6873821020126343, - 0.655685544013977, - 0.6309099197387695, - 0.6137311458587646, - 0.604617714881897, - 0.6038182973861694, - 0.611354649066925, - 0.627021312713623, - 0.6503907442092896, - 0.6808255910873413, - 0.7174957394599915, - 0.7594008445739746, - 0.8053978085517883, - 0.8542320132255554, - 0.9045714735984802, - 0.955042839050293, - 1.0042695999145508, - 1.0509088039398193, - 0.7679146528244019, - 0.7309903502464294, - 0.6989328861236572, - 0.672616720199585, - 0.6527597308158875, - 0.6399035453796387, - 0.6343988180160522, - 0.6363956928253174, - 0.6458398103713989, - 0.6624734401702881, - 0.6858429312705994, - 0.7153107523918152, - 0.7500731945037842, - 0.7891819477081299, - 0.8315702080726624, - 0.8760818839073181, - 0.9215026497840881, - 0.9665936231613159, - 1.0101248025894165, - 1.0509088039398193, - 0.7679146528244019, - 0.7410560250282288, - 0.7187896966934204, - 0.701723039150238, - 0.6903215646743774, - 0.6848963499069214, - 0.6855952739715576, - 0.692399263381958, - 0.7051229476928711, - 0.7234190106391907, - 0.746788501739502, - 0.7745938897132874, - 0.8060767650604248, - 0.8403783440589905, - 0.8765630125999451, - 0.9136436581611633, - 0.9506089091300964, - 0.9864504337310791, - 1.0201904773712158, - 1.0509088039398193, - 0.7679146528244019, - 0.754241406917572, - 0.7448007464408875, - 0.7398502826690674, - 0.7395250201225281, - 0.7438337802886963, - 0.7526591420173645, - 0.7657602429389954, - 0.7827798128128052, - 0.8032535314559937, - 0.8266230225563049, - 0.8522507548332214, - 0.8794376850128174, - 0.9074422717094421, - 0.9355005025863647, - 0.9628471732139587, - 0.9887362122535706, - 1.012461543083191, - 1.033375859260559, - 1.0509088039398193, - 0.7679146528244019, - 0.7691175937652588, - 0.7741473317146301, - 0.7828668355941772, - 0.7950380444526672, - 0.8103291392326355, - 0.8283228874206543, - 0.8485285639762878, - 0.8703950047492981, - 0.893325686454773, - 0.9166951775550842, - 0.9398659467697144, - 0.9622060060501099, - 0.9831060171127319, - 1.0019958019256592, - 1.0183601379394531, - 1.0317527055740356, - 1.0418081283569336, - 1.0482521057128906, - 1.0509088039398193 - ], - "z": [ - 1.0079257488250732, - 1.0029289722442627, - 0.9891977906227112, - 0.9671065807342529, - 0.9372580051422119, - 0.9004662036895752, - 0.8577347993850708, - 0.8102294206619263, - 0.7592458724975586, - 0.7061747908592224, - 0.6524639129638672, - 0.5995782613754272, - 0.5489604473114014, - 0.5019912123680115, - 0.4599517583847046, - 0.4239887297153473, - 0.39508315920829773, - 0.37402352690696716, - 0.3613843023777008, - 0.35751020908355713, - 1.0079257488250732, - 1.0068367719650269, - 0.9969066381454468, - 0.9784061908721924, - 0.9518402814865112, - 0.9179333448410034, - 0.8776103258132935, - 0.8319711685180664, - 0.7822607755661011, - 0.7298351526260376, - 0.6761242747306824, - 0.6225932240486145, - 0.5707022547721863, - 0.5218667387962341, - 0.4774188995361328, - 0.4385710060596466, - 0.40638285875320435, - 0.38173234462738037, - 0.3652920126914978, - 0.35751020908355713, - 1.0079257488250732, - 1.010381817817688, - 1.0039000511169434, - 0.9886572957038879, - 0.9650692939758301, - 0.9337795376777649, - 0.8956414461135864, - 0.8516953587532043, - 0.8031399846076965, - 0.7512997984886169, - 0.6975889205932617, - 0.64347243309021, - 0.5904263854026794, - 0.5398978590965271, - 0.4932650923728943, - 0.45180004835128784, - 0.4166339039802551, - 0.38872581720352173, - 0.3688370883464813, - 0.35751020908355713, - 1.0079257488250732, - 1.0131800174713135, - 1.0094202756881714, - 0.9967489242553711, - 0.9755115509033203, - 0.9462876319885254, - 0.9098740816116333, - 0.867264449596405, - 0.8196207880973816, - 0.7682427763938904, - 0.7145318984985352, - 0.659953236579895, - 0.6059954762458801, - 0.5541305541992188, - 0.5057731866836548, - 0.4622423052787781, - 0.4247255027294159, - 0.39424604177474976, - 0.371635377407074, - 0.35751020908355713, - 1.0079257488250732, - 1.0149283409118652, - 1.012869119644165, - 1.0018041133880615, - 0.9820353984832764, - 0.954102098941803, - 0.9187660813331604, - 0.876991331577301, - 0.829917311668396, - 0.7788280248641968, - 0.7251171469688416, - 0.6702497005462646, - 0.6157224178314209, - 0.5630224943161011, - 0.5135876536369324, - 0.4687661826610565, - 0.4297807812690735, - 0.39769482612609863, - 0.37338361144065857, - 0.35751020908355713, - 1.0079257488250732, - 1.015437126159668, - 1.013872742652893, - 1.0032752752304077, - 0.9839339256286621, - 0.9563761949539185, - 0.9213537573814392, - 0.8798219561576843, - 0.8329136967658997, - 0.7819084525108337, - 0.7281975746154785, - 0.6732461452484131, - 0.6185530424118042, - 0.5656101703643799, - 0.5158617496490479, - 0.47066470980644226, - 0.4312519431114197, - 0.39869847893714905, - 0.3738923668861389, - 0.35751020908355713, - 1.0079257488250732, - 1.0146512985229492, - 1.0123224258422852, - 1.0010029077529907, - 0.9810013771057129, - 0.9528635144233704, - 0.9173567295074463, - 0.8754495978355408, - 0.828285276889801, - 0.7771502733230591, - 0.7234393954277039, - 0.6686177253723145, - 0.6141806840896606, - 0.561613142490387, - 0.5123490691184998, - 0.46773213148117065, - 0.4289795160293579, - 0.3971481919288635, - 0.3731065094470978, - 0.35751020908355713, - 1.0079257488250732, - 1.0126559734344482, - 1.008386254310608, - 0.9952331781387329, - 0.9735555648803711, - 0.9439445734024048, - 0.9072080850601196, - 0.8643480539321899, - 0.816533625125885, - 0.7650690674781799, - 0.7113581895828247, - 0.6568660736083984, - 0.6030791401863098, - 0.5514644980430603, - 0.503430187702179, - 0.46028631925582886, - 0.4232098162174225, - 0.3932119905948639, - 0.3711112141609192, - 0.35751020908355713, - 1.0079257488250732, - 1.0096673965454102, - 1.002490758895874, - 0.9865913987159729, - 0.9624032974243164, - 0.9305860996246338, - 0.8920076489448547, - 0.8477203845977783, - 0.7989321947097778, - 0.7469740509986877, - 0.6932631731033325, - 0.6392646431922913, - 0.5864514112472534, - 0.5362640619277954, - 0.4900715947151184, - 0.4491340219974518, - 0.4145680367946625, - 0.38731643557548523, - 0.3681226670742035, - 0.35751020908355713, - 1.0079257488250732, - 1.0060094594955444, - 0.9952746629714966, - 0.9760140180587769, - 0.9487531185150146, - 0.9142354726791382, - 0.8734025955200195, - 0.8273683786392212, - 0.7773884534835815, - 0.7248261570930481, - 0.6711152195930481, - 0.6177208423614502, - 0.5660994052886963, - 0.5176590085029602, - 0.4737209975719452, - 0.4354838728904724, - 0.40399065613746643, - 0.3801003694534302, - 0.36446473002433777, - 0.35751020908355713, - 1.0079257488250732, - 1.0020785331726074, - 0.9875200390815735, - 0.9646472930908203, - 0.9340842366218567, - 0.8966646194458008, - 0.8534090518951416, - 0.8054975271224976, - 0.7542368173599243, - 0.7010253071784973, - 0.6473144292831421, - 0.5945692658424377, - 0.5442285537719727, - 0.4976654648780823, - 0.4561501741409302, - 0.42081499099731445, - 0.3926239013671875, - 0.37234577536582947, - 0.36053383350372314, - 0.35751020908355713, - 1.0079257488250732, - 0.9983006119728088, - 0.980067253112793, - 0.9537229537963867, - 0.9199863076210022, - 0.8797776699066162, - 0.8341937065124512, - 0.7844778895378113, - 0.7319862842559814, - 0.6781508326530457, - 0.6244399547576904, - 0.5723187327384949, - 0.5232089161872864, - 0.47845008969306946, - 0.43926316499710083, - 0.40671706199645996, - 0.3816995322704315, - 0.36489298939704895, - 0.35675591230392456, - 0.35751020908355713, - 1.0079257488250732, - 0.9950851202011108, - 0.9737238883972168, - 0.9444247484207153, - 0.9079869985580444, - 0.865404486656189, - 0.817838728427887, - 0.7665872573852539, - 0.7130480408668518, - 0.6586815118789673, - 0.6049705743789673, - 0.5533804893493652, - 0.505318284034729, - 0.46209514141082764, - 0.42489001154899597, - 0.3947177231311798, - 0.3724013864994049, - 0.3585496246814728, - 0.3535403609275818, - 0.35751020908355713, - 1.0079257488250732, - 0.9927803874015808, - 0.9691773653030396, - 0.9377604126930237, - 0.8993866443634033, - 0.8551026582717896, - 0.80611652135849, - 0.7537643313407898, - 0.6994742155075073, - 0.6447270512580872, - 0.5910161733627319, - 0.5398066639900208, - 0.49249541759490967, - 0.45037293434143066, - 0.41458821296691895, - 0.3861173689365387, - 0.36573705077171326, - 0.35400310158729553, - 0.35123568773269653, - 0.35751020908355713, - 1.0079257488250732, - 0.9916362762451172, - 0.9669203758239746, - 0.9344520568847656, - 0.8951171636581421, - 0.8499886393547058, - 0.8002973198890686, - 0.7473987936973572, - 0.6927359104156494, - 0.6377997398376465, - 0.5840888619422913, - 0.5330682992935181, - 0.4861298203468323, - 0.4445537328720093, - 0.4094741642475128, - 0.38184794783592224, - 0.3624287247657776, - 0.3517461121082306, - 0.3500915765762329, - 0.35751020908355713, - 1.0079257488250732, - 0.9917767643928528, - 0.9671974182128906, - 0.9348582625389099, - 0.8956413865089417, - 0.8506165146827698, - 0.8010117411613464, - 0.7481802701950073, - 0.6935631632804871, - 0.6386502385139465, - 0.5849393606185913, - 0.5338956117630005, - 0.4869113266468048, - 0.4452681541442871, - 0.4101020097732544, - 0.382372111082077, - 0.3628348708152771, - 0.352023184299469, - 0.3502320349216461, - 0.35751020908355713, - 1.0079257488250732, - 0.9931865930557251, - 0.9699786305427551, - 0.9389349222183228, - 0.9009023308753967, - 0.856918215751648, - 0.8081823587417603, - 0.7560242414474487, - 0.7018664479255676, - 0.6471863389015198, - 0.5934754610061646, - 0.542198896408081, - 0.49475526809692383, - 0.4524388015270233, - 0.41640377044677734, - 0.3876330852508545, - 0.36691156029701233, - 0.3548043668270111, - 0.35164186358451843, - 0.35751020908355713, - 1.0079257488250732, - 0.9957129955291748, - 0.9749624729156494, - 0.9462403059005737, - 0.9103299379348755, - 0.8682109713554382, - 0.8210321664810181, - 0.77008056640625, - 0.716745913028717, - 0.6624830961227417, - 0.6087721586227417, - 0.5570783615112305, - 0.5088115930557251, - 0.46528860926628113, - 0.4276965260505676, - 0.39706072211265564, - 0.3742169439792633, - 0.3597882390022278, - 0.35416823625564575, - 0.35751020908355713, - 1.0079257488250732, - 0.9990821480751038, - 0.9816089868545532, - 0.9559828042984009, - 0.9229027032852173, - 0.8832709789276123, - 0.8381686806678772, - 0.7888261079788208, - 0.7365891933441162, - 0.6828827857971191, - 0.6291719079017639, - 0.5769215822219849, - 0.5275571346282959, - 0.48242509365081787, - 0.4427565336227417, - 0.40963342785835266, - 0.38395941257476807, - 0.3664346933364868, - 0.3575374186038971, - 0.35751020908355713, - 1.0079257488250732, - 1.0029289722442627, - 0.9891977906227112, - 0.9671065807342529, - 0.9372580051422119, - 0.9004662036895752, - 0.8577347993850708, - 0.8102294206619263, - 0.7592458724975586, - 0.7061747908592224, - 0.6524639129638672, - 0.5995782613754272, - 0.5489605069160461, - 0.5019912123680115, - 0.4599517583847046, - 0.4239887297153473, - 0.3950831890106201, - 0.37402352690696716, - 0.3613843023777008, - 0.35751020908355713 - ] - }, - { - "marker": { - "color": "black", - "size": 2 - }, - "mode": "markers", - "name": "Means", - "type": "scatter3d", - "x": [ - -0.18377050757408142, - -0.0864175409078598, - 0.017598956823349, - 0.12333059310913086, - 0.2297331690788269, - 0.324081152677536, - 0.3865566551685333, - 0.42982277274131775, - 0.46137920022010803, - 0.48534801602363586, - 0.504144549369812, - 0.519266664981842, - 0.5316892862319946, - 0.542072057723999, - 0.5508771538734436 - ], - "y": [ - -0.3563395142555237, - -0.23127293586730957, - -0.09764590859413147, - 0.038184523582458496, - 0.17487680912017822, - 0.3005090653896332, - 0.3917557895183563, - 0.4582732021808624, - 0.5083385705947876, - 0.5471863746643066, - 0.5781256556510925, - 0.6033104062080383, - 0.6241904497146606, - 0.6417719721794128, - 0.6567733883857727 - ], - "z": [ - -0.18800273537635803, - 0.062225341796875, - 0.32958078384399414, - 0.6013447046279907, - 0.8748331069946289, - 1.1068719625473022, - 1.2414764165878296, - 1.3268290758132935, - 1.385414958000183, - 1.4279744625091553, - 1.4602278470993042, - 1.4854822158813477, - 1.505776047706604, - 1.522430181503296, - 1.5363377332687378 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.23518574237823486, - -0.24089595675468445, - -0.245047926902771, - -0.24752841889858246, - -0.24826976656913757, - -0.2472517341375351, - -0.24450209736824036, - -0.24009586870670319, - -0.23415322601795197, - -0.22683627903461456, - -0.21834459900856018, - -0.20890983939170837, - -0.1987893432378769, - -0.18825916945934296, - -0.17760656774044037, - -0.16712208092212677, - -0.15709173679351807, - -0.1477891057729721, - -0.13946795463562012, - -0.13235527276992798, - -0.23518574237823486, - -0.23801350593566895, - -0.23936167359352112, - -0.23919345438480377, - -0.2375134527683258, - -0.2343674749135971, - -0.22984133660793304, - -0.22405850887298584, - -0.21717673540115356, - -0.20938372611999512, - -0.20089206099510193, - -0.19193334877490997, - -0.18275198340415955, - -0.17359840869903564, - -0.1647222936153412, - -0.156365767121315, - -0.14875677227973938, - -0.14210285246372223, - -0.1365855187177658, - -0.13235527276992798, - -0.23518574237823486, - -0.23474864661693573, - -0.23292100429534912, - -0.22975265979766846, - -0.22533005475997925, - -0.2197738140821457, - -0.21323548257350922, - -0.20589342713356018, - -0.1979479193687439, - -0.18961569666862488, - -0.1811240166425705, - -0.1727045327425003, - -0.1645869016647339, - -0.15699255466461182, - -0.15012863278388977, - -0.14418238401412964, - -0.13931597769260406, - -0.13566218316555023, - -0.1333206593990326, - -0.13235527276992798, - -0.23518574237823486, - -0.23145516216754913, - -0.22642387449741364, - -0.2202291041612625, - -0.2130398452281952, - -0.2050521969795227, - -0.1964840441942215, - -0.18756909668445587, - -0.17855052649974823, - -0.169674351811409, - -0.16118267178535461, - -0.15330713987350464, - -0.14626257121562958, - -0.1402411162853241, - -0.13540703058242798, - -0.13189217448234558, - -0.12979242205619812, - -0.12916505336761475, - -0.130027174949646, - -0.13235527276992798, - -0.23518574237823486, - -0.228489950299263, - -0.22057433426380157, - -0.21165479719638824, - -0.20197466015815735, - -0.19179795682430267, - -0.1814022809267044, - -0.17107121646404266, - -0.1610865443944931, - -0.15172064304351807, - -0.14322896301746368, - -0.1358431577682495, - -0.12976469099521637, - -0.125159353017807, - -0.12215277552604675, - -0.12082697451114655, - -0.12121810764074326, - -0.12331550568342209, - -0.12706196308135986, - -0.13235527276992798, - -0.23518574237823486, - -0.22617433965206146, - -0.21600627899169922, - -0.20495890080928802, - -0.19333356618881226, - -0.18144738674163818, - -0.16962456703186035, - -0.158187597990036, - -0.14744848012924194, - -0.1377001255750656, - -0.12920846045017242, - -0.12220509350299835, - -0.11688107997179031, - -0.11338163167238235, - -0.11180220544338226, - -0.11218588799238205, - -0.11452221870422363, - -0.11874745786190033, - -0.12474635243415833, - -0.13235527276992798, - -0.23518574237823486, - -0.2247592657804489, - -0.2132147252559662, - -0.20086702704429626, - -0.1880529820919037, - -0.17512212693691254, - -0.1624271720647812, - -0.15031439065933228, - -0.13911423087120056, - -0.12913216650485992, - -0.12064049392938614, - -0.11387083679437637, - -0.10900787264108658, - -0.10618423670530319, - -0.10547693818807602, - -0.10690529644489288, - -0.11043034493923187, - -0.1159559041261673, - -0.12333127856254578, - -0.13235527276992798, - -0.23518574237823486, - -0.22439807653427124, - -0.21250219643115997, - -0.1998225897550583, - -0.18670512735843658, - -0.17350761592388153, - -0.1605900526046753, - -0.1483047902584076, - -0.13698692619800568, - -0.12694521248340607, - -0.11845353990793228, - -0.11174353957176208, - -0.1069982573390007, - -0.1043471172451973, - -0.10386243462562561, - -0.10555744916200638, - -0.1093859001994133, - -0.11524337530136108, - -0.1229700893163681, - -0.13235527276992798, - -0.23518574237823486, - -0.2251299023628235, - -0.2139458954334259, - -0.20193876326084137, - -0.18943606317043304, - -0.17677882313728333, - -0.16431230306625366, - -0.15237653255462646, - -0.1412971168756485, - -0.1313762664794922, - -0.122884601354599, - -0.11605373024940491, - -0.11107000708580017, - -0.10806936025619507, - -0.1071336418390274, - -0.10828838497400284, - -0.11150208115577698, - -0.11668706685304642, - -0.12370191514492035, - -0.13235527276992798, - -0.23518574237823486, - -0.2268754541873932, - -0.21738936007022858, - -0.2069862335920334, - -0.19594985246658325, - -0.18458126485347748, - -0.17319053411483765, - -0.16208840906620026, - -0.15157771110534668, - -0.14194515347480774, - -0.13345348834991455, - -0.1263343244791031, - -0.12078188359737396, - -0.11694760620594025, - -0.11493607610464096, - -0.11480217427015305, - -0.116549551486969, - -0.12013053894042969, - -0.12544745206832886, - -0.13235527276992798, - -0.23518574237823486, - -0.22944554686546326, - -0.22245946526527405, - -0.21441803872585297, - -0.20554062724113464, - -0.1960694044828415, - -0.18626268208026886, - -0.1763879805803299, - -0.1667146533727646, - -0.1575065702199936, - -0.1490149050951004, - -0.141471266746521, - -0.1350814551115036, - -0.13001975417137146, - -0.12642422318458557, - -0.12439295649528503, - -0.12398135662078857, - -0.12520062923431396, - -0.12801755964756012, - -0.13235527276992798, - -0.23518574237823486, - -0.23256170749664307, - -0.22860676050186157, - -0.22342881560325623, - -0.21716907620429993, - -0.20999833941459656, - -0.20211215317249298, - -0.19372566044330597, - -0.18506762385368347, - -0.17637419700622559, - -0.1678825169801712, - -0.15982423722743988, - -0.15241913497447968, - -0.14586922526359558, - -0.14035315811634064, - -0.13602140545845032, - -0.13299211859703064, - -0.13134793937206268, - -0.13113370537757874, - -0.13235527276992798, - -0.23518574237823486, - -0.23588621616363525, - -0.23516511917114258, - -0.23304209113121033, - -0.22957508265972137, - -0.22485864162445068, - -0.21902142465114594, - -0.2122226506471634, - -0.20464777946472168, - -0.1965034306049347, - -0.1880117505788803, - -0.1794043928384781, - -0.1709161251783371, - -0.16277849674224854, - -0.15521347522735596, - -0.14842739701271057, - -0.14260540902614594, - -0.1379062831401825, - -0.13445822894573212, - -0.13235527276992798, - -0.23518574237823486, - -0.23905883729457855, - -0.2414238154888153, - -0.24221615493297577, - -0.24141426384449005, - -0.23903998732566833, - -0.23515811562538147, - -0.22987452149391174, - -0.22333332896232605, - -0.21571296453475952, - -0.20722128450870514, - -0.19808994233608246, - -0.18856799602508545, - -0.17891518771648407, - -0.1693948209285736, - -0.16026657819747925, - -0.15177947282791138, - -0.14416499435901642, - -0.13763085007667542, - -0.13235527276992798, - -0.23518574237823486, - -0.24173575639724731, - -0.24670463800430298, - -0.24995681643486023, - -0.2514036297798157, - -0.2510055899620056, - -0.24877354502677917, - -0.24476838111877441, - -0.23909935355186462, - -0.23192110657691956, - -0.22342944145202637, - -0.21385598182678223, - -0.20346185564994812, - -0.19253061711788177, - -0.1813604235649109, - -0.17025595903396606, - -0.15952013432979584, - -0.1494458019733429, - -0.14030776917934418, - -0.13235527276992798, - -0.23518574237823486, - -0.2436268925666809, - -0.25043532252311707, - -0.25542527437210083, - -0.25846073031425476, - -0.2594587802886963, - -0.2583922743797302, - -0.25529029965400696, - -0.25023743510246277, - -0.24337151646614075, - -0.23487985134124756, - -0.22499403357505798, - -0.21398377418518066, - -0.20214936137199402, - -0.18981361389160156, - -0.17731304466724396, - -0.16498860716819763, - -0.15317648649215698, - -0.14219889044761658, - -0.13235527276992798, - -0.23518574237823486, - -0.24452731013298035, - -0.2522115707397461, - -0.25802895426750183, - -0.2618207633495331, - -0.26348358392715454, - -0.26297199726104736, - -0.26030004024505615, - -0.25554054975509644, - -0.24882332980632782, - -0.24033164978027344, - -0.23029714822769165, - -0.21899351477622986, - -0.20672908425331116, - -0.19383840262889862, - -0.18067309260368347, - -0.16759227216243744, - -0.1549527645111084, - -0.14309930801391602, - -0.13235527276992798, - -0.23518574237823486, - -0.24433942139148712, - -0.2518409490585327, - -0.25748568773269653, - -0.26111966371536255, - -0.2626437544822693, - -0.2620164155960083, - -0.25925469398498535, - -0.2544339895248413, - -0.2476857602596283, - -0.2391940951347351, - -0.22919060289859772, - -0.21794818341732025, - -0.2057734727859497, - -0.19299860298633575, - -0.17997199296951294, - -0.16704899072647095, - -0.15458211302757263, - -0.14291143417358398, - -0.13235527276992798, - -0.23518574237823486, - -0.24308361113071442, - -0.24936357140541077, - -0.25385433435440063, - -0.256433367729187, - -0.2570303678512573, - -0.2556290328502655, - -0.25226759910583496, - -0.24703770875930786, - -0.24008207023143768, - -0.2315904051065445, - -0.22179433703422546, - -0.21096105873584747, - -0.1993861198425293, - -0.1873852163553238, - -0.1752857118844986, - -0.16341763734817505, - -0.15210475027561188, - -0.14165562391281128, - -0.13235527276992798, - -0.23518574237823486, - -0.24089595675468445, - -0.245047926902771, - -0.24752840399742126, - -0.24826976656913757, - -0.2472517192363739, - -0.24450209736824036, - -0.24009586870670319, - -0.23415322601795197, - -0.22683626413345337, - -0.21834459900856018, - -0.20890983939170837, - -0.1987893432378769, - -0.18825916945934296, - -0.17760655283927917, - -0.16712208092212677, - -0.15709172189235687, - -0.1477891057729721, - -0.13946795463562012, - -0.13235527276992798 - ], - "y": [ - -0.42239123582839966, - -0.41309836506843567, - -0.4022572636604309, - -0.3901636302471161, - -0.377147376537323, - -0.36356353759765625, - -0.34978264570236206, - -0.33618059754371643, - -0.32312846183776855, - -0.31098219752311707, - -0.30007320642471313, - -0.29069897532463074, - -0.2831152677536011, - -0.27752891182899475, - -0.27409231662750244, - -0.27289918065071106, - -0.27398210763931274, - -0.2773115336894989, - -0.28279662132263184, - -0.2902877926826477, - -0.42239123582839966, - -0.41197580099105835, - -0.40004274249076843, - -0.3869175910949707, - -0.37295830249786377, - -0.3585457503795624, - -0.34407299757003784, - -0.32993483543395996, - -0.3165169358253479, - -0.30418527126312256, - -0.29327625036239624, - -0.2840874493122101, - -0.2768694758415222, - -0.27181923389434814, - -0.2690744996070862, - -0.2687101364135742, - -0.27073603868484497, - -0.2750970125198364, - -0.2816740572452545, - -0.2902877926826477, - -0.42239123582839966, - -0.41188427805900574, - -0.3998622000217438, - -0.38665294647216797, - -0.37261679768562317, - -0.3581366539001465, - -0.34360751509666443, - -0.3294256329536438, - -0.31597793102264404, - -0.30363115668296814, - -0.2927221357822418, - -0.28354841470718384, - -0.27636027336120605, - -0.27135375142097473, - -0.2686654329299927, - -0.26836860179901123, - -0.2704714238643646, - -0.27491647005081177, - -0.2815825343132019, - -0.2902877926826477, - -0.42239123582839966, - -0.4128337502479553, - -0.40173521637916565, - -0.38939839601516724, - -0.3761598467826843, - -0.36238062381744385, - -0.3484366536140442, - -0.33470821380615234, - -0.3215698301792145, - -0.3093798756599426, - -0.2984708547592163, - -0.28914034366607666, - -0.2816428542137146, - -0.2761828899383545, - -0.27290940284729004, - -0.2719116508960724, - -0.2732168734073639, - -0.27678948640823364, - -0.2825319766998291, - -0.2902877926826477, - -0.42239123582839966, - -0.41472128033638, - -0.40545880794525146, - -0.39485645294189453, - -0.38320350646972656, - -0.37081775069236755, - -0.3580370843410492, - -0.34521010518074036, - -0.3326866924762726, - -0.3208085000514984, - -0.3098994791507721, - -0.30025720596313477, - -0.2921447455883026, - -0.2857833504676819, - -0.28134649991989136, - -0.2789553105831146, - -0.2786749303340912, - -0.28051304817199707, - -0.28441953659057617, - -0.2902877926826477, - -0.42239123582839966, - -0.41734233498573303, - -0.4106294512748718, - -0.40243566036224365, - -0.3929844796657562, - -0.3825337290763855, - -0.3713684678077698, - -0.3597932457923889, - -0.34812384843826294, - -0.33667853474617004, - -0.3257695138454437, - -0.3156943619251251, - -0.30672791600227356, - -0.29911473393440247, - -0.2930625081062317, - -0.2887362837791443, - -0.2862541079521179, - -0.28568369150161743, - -0.2870405912399292, - -0.2902877926826477, - -0.42239123582839966, - -0.42041292786598206, - -0.4166868329048157, - -0.41131463646888733, - -0.4044428765773773, - -0.3962589502334595, - -0.3869861364364624, - -0.3768773674964905, - -0.36620840430259705, - -0.3552702069282532, - -0.34436118602752686, - -0.33377891778945923, - -0.32381200790405273, - -0.3147324025630951, - -0.30678772926330566, - -0.3001946806907654, - -0.295133113861084, - -0.29174110293388367, - -0.2901111841201782, - -0.2902877926826477, - -0.42239123582839966, - -0.4236002564430237, - -0.4229745864868164, - -0.4205312728881836, - -0.41633695363998413, - -0.41050609946250916, - -0.403197705745697, - -0.394611120223999, - -0.38498061895370483, - -0.3745688498020172, - -0.3636598289012909, - -0.352551132440567, - -0.3415457606315613, - -0.3309439420700073, - -0.32103484869003296, - -0.3120887577533722, - -0.30434972047805786, - -0.298028826713562, - -0.29329851269721985, - -0.2902877926826477, - -0.42239123582839966, - -0.4265589714050293, - -0.42881128191947937, - -0.42908674478530884, - -0.427377849817276, - -0.4237312376499176, - -0.418246328830719, - -0.4110727906227112, - -0.402406245470047, - -0.3924831449985504, - -0.3815741240978241, - -0.3699767589569092, - -0.35800743103027344, - -0.3459925949573517, - -0.3342599868774414, - -0.32312965393066406, - -0.3129052221775055, - -0.303865522146225, - -0.2962571978569031, - -0.2902877926826477, - -0.42239123582839966, - -0.4289683997631073, - -0.4335644245147705, - -0.43605396151542664, - -0.4363690912723541, - -0.4345012307167053, - -0.4305013120174408, - -0.4244784712791443, - -0.4165969789028168, - -0.4070717990398407, - -0.3961627781391144, - -0.38416749238967896, - -0.37141311168670654, - -0.3582475781440735, - -0.3450300097465515, - -0.3321209251880646, - -0.3198724389076233, - -0.3086186945438385, - -0.29866665601730347, - -0.2902877926826477, - -0.42239123582839966, - -0.43056750297546387, - -0.43671897053718567, - -0.4406779408454895, - -0.4423363506793976, - -0.4416489899158478, - -0.43863463401794434, - -0.4333754777908325, - -0.4260149598121643, - -0.416753888130188, - -0.40584486722946167, - -0.3935854732990265, - -0.3803101181983948, - -0.366380900144577, - -0.35217776894569397, - -0.33808815479278564, - -0.32449638843536377, - -0.31177324056625366, - -0.30026572942733765, - -0.2902877926826477, - -0.42239123582839966, - -0.4311829209327698, - -0.437933087348938, - -0.44245755672454834, - -0.44463294744491577, - -0.44439995288848877, - -0.4417648911476135, - -0.43679964542388916, - -0.42963966727256775, - -0.42048025131225586, - -0.40957123041152954, - -0.39721018075942993, - -0.3837342858314514, - -0.3695111572742462, - -0.35492873191833496, - -0.3403847813606262, - -0.326276034116745, - -0.3129873275756836, - -0.30088117718696594, - -0.2902877926826477, - -0.42239123582839966, - -0.43074801564216614, - -0.437075138092041, - -0.44119998812675476, - -0.4430100619792938, - -0.4424560070037842, - -0.439552903175354, - -0.4343799650669098, - -0.4270782768726349, - -0.41784703731536865, - -0.40693801641464233, - -0.39464879035949707, - -0.38131460547447205, - -0.3672991693019867, - -0.352984756231308, - -0.3387618660926819, - -0.3250184655189514, - -0.312129408121109, - -0.3004462718963623, - -0.2902877926826477, - -0.42239123582839966, - -0.4293099045753479, - -0.43423813581466675, - -0.4370414912700653, - -0.43764352798461914, - -0.43602776527404785, - -0.4322383403778076, - -0.42637860774993896, - -0.4186083674430847, - -0.40913960337638855, - -0.39823058247566223, - -0.3861788809299469, - -0.3733132481575012, - -0.3599846065044403, - -0.34655654430389404, - -0.3333953320980072, - -0.32085996866226196, - -0.30929240584373474, - -0.29900816082954407, - -0.2902877926826477, - -0.42239123582839966, - -0.4270244538784027, - -0.42972955107688904, - -0.4304327368736267, - -0.4291148781776428, - -0.42581191658973694, - -0.4206138849258423, - -0.4136626422405243, - -0.4051477909088135, - -0.39530155062675476, - -0.38439252972602844, - -0.37271830439567566, - -0.36059728264808655, - -0.348360151052475, - -0.33634066581726074, - -0.32486671209335327, - -0.31425121426582336, - -0.30478382110595703, - -0.2967227101325989, - -0.2902877926826477, - -0.42239123582839966, - -0.42413926124572754, - -0.424037903547287, - -0.4220898747444153, - -0.41834837198257446, - -0.41291543841362, - -0.4059392213821411, - -0.3976100981235504, - -0.3881551921367645, - -0.37783244252204895, - -0.36692342162132263, - -0.3557257056236267, - -0.34454473853111267, - -0.3336854875087738, - -0.3234441876411438, - -0.3141001760959625, - -0.30590835213661194, - -0.299092173576355, - -0.2938375174999237, - -0.2902877926826477, - -0.42239123582839966, - -0.4209670424461365, - -0.41777998208999634, - -0.41291695833206177, - -0.40651068091392517, - -0.3987358510494232, - -0.38980454206466675, - -0.37996041774749756, - -0.3694719672203064, - -0.3586253225803375, - -0.3477163016796112, - -0.3370424807071686, - -0.3268950581550598, - -0.31755080819129944, - -0.309264600276947, - -0.30226248502731323, - -0.2967354357242584, - -0.29283422231674194, - -0.29066529870033264, - -0.2902877926826477, - -0.42239123582839966, - -0.4178515374660492, - -0.4116339385509491, - -0.40390804409980774, - -0.3948846161365509, - -0.3848097622394562, - -0.3739583194255829, - -0.3626262843608856, - -0.35112276673316956, - -0.33976155519485474, - -0.3288525342941284, - -0.31869328022003174, - -0.30956095457077026, - -0.3017045855522156, - -0.29533851146698, - -0.29063642024993896, - -0.2877265214920044, - -0.2866882085800171, - -0.28754979372024536, - -0.2902877926826477, - -0.42239123582839966, - -0.4151303470134735, - -0.4062657952308655, - -0.39603936672210693, - -0.3847300410270691, - -0.372646301984787, - -0.36011773347854614, - -0.34748610854148865, - -0.33509600162506104, - -0.32328537106513977, - -0.31237635016441345, - -0.3026665151119232, - -0.2944207787513733, - -0.28786399960517883, - -0.2831750512123108, - -0.28048184514045715, - -0.2798578441143036, - -0.2813200354576111, - -0.2848286032676697, - -0.2902877926826477, - -0.42239123582839966, - -0.41309836506843567, - -0.4022572636604309, - -0.3901636302471161, - -0.377147376537323, - -0.36356353759765625, - -0.34978264570236206, - -0.33618059754371643, - -0.32312846183776855, - -0.31098219752311707, - -0.30007317662239075, - -0.29069897532463074, - -0.2831152379512787, - -0.27752888202667236, - -0.27409228682518005, - -0.27289918065071106, - -0.27398210763931274, - -0.2773115336894989, - -0.28279662132263184, - -0.2902877926826477 - ], - "z": [ - -0.3201562762260437, - -0.3200538754463196, - -0.31634944677352905, - -0.3091440498828888, - -0.29863426089286804, - -0.28510671854019165, - -0.26893043518066406, - -0.2505466639995575, - -0.2304568588733673, - -0.20920901000499725, - -0.18738271296024323, - -0.16557331383228302, - -0.144375741481781, - -0.12436819821596146, - -0.10609644651412964, - -0.09005887061357498, - -0.07669295370578766, - -0.06636327505111694, - -0.0593516081571579, - -0.05584920942783356, - -0.3201562762260437, - -0.3217363655567169, - -0.31966856122016907, - -0.31400924921035767, - -0.304912805557251, - -0.29262739419937134, - -0.2774880826473236, - -0.2599078118801117, - -0.24036619067192078, - -0.2193962186574936, - -0.19756992161273956, - -0.1754826456308365, - -0.1537368893623352, - -0.1329258233308792, - -0.11361710727214813, - -0.09633743017911911, - -0.08155814558267593, - -0.06968238949775696, - -0.06103411316871643, - -0.05584920942783356, - -0.3201562762260437, - -0.3230523467063904, - -0.32226458191871643, - -0.31781452894210815, - -0.30982354283332825, - -0.2985096275806427, - -0.2841813564300537, - -0.2672295570373535, - -0.24811670184135437, - -0.22736406326293945, - -0.20553776621818542, - -0.18323315680027008, - -0.16105863451957703, - -0.13961909711360931, - -0.1194993332028389, - -0.10124816000461578, - -0.08536341786384583, - -0.07227841019630432, - -0.062350064516067505, - -0.05584920942783356, - -0.3201562762260437, - -0.3238591253757477, - -0.3238561749458313, - -0.3201475143432617, - -0.3128342926502228, - -0.3021159768104553, - -0.28828495740890503, - -0.27171850204467773, - -0.25286850333213806, - -0.23224911093711853, - -0.2104228138923645, - -0.18798495829105377, - -0.16554756462574005, - -0.14372271299362183, - -0.12310569733381271, - -0.10425890237092972, - -0.08769641816616058, - -0.07387001812458038, - -0.06315688043832779, - -0.05584920942783356, - -0.3201562762260437, - -0.32406938076019287, - -0.32427090406417847, - -0.3207554221153259, - -0.3136187791824341, - -0.30305567383766174, - -0.28935420513153076, - -0.2728881537914276, - -0.25410664081573486, - -0.23352199792861938, - -0.21169568598270416, - -0.18922311067581177, - -0.16671723127365112, - -0.14479196071624756, - -0.12404539436101913, - -0.10504339635372162, - -0.0883043110370636, - -0.07428473979234695, - -0.06336710602045059, - -0.05584920942783356, - -0.3201562762260437, - -0.3236602246761322, - -0.3234637975692749, - -0.3195723295211792, - -0.31209200620651245, - -0.3012268841266632, - -0.28727325797080994, - -0.27061179280281067, - -0.25169700384140015, - -0.23104475438594818, - -0.20921845734119415, - -0.18681344389915466, - -0.16444087028503418, - -0.14271101355552673, - -0.1222165897488594, - -0.10351663827896118, - -0.08712124079465866, - -0.07347762584686279, - -0.06295797228813171, - -0.05584920942783356, - -0.3201562762260437, - -0.32267606258392334, - -0.3215223252773285, - -0.3167265057563782, - -0.30841946601867676, - -0.2968277335166931, - -0.28226757049560547, - -0.26513612270355225, - -0.24590063095092773, - -0.22508586943149567, - -0.20325955748558044, - -0.18101710081100464, - -0.15896517038345337, - -0.13770532608032227, - -0.1178174614906311, - -0.0998440608382225, - -0.08427540212869644, - -0.07153614610433578, - -0.06197381019592285, - -0.05584920942783356, - -0.3201562762260437, - -0.32122352719306946, - -0.318656861782074, - -0.31252628564834595, - -0.3029990494251251, - -0.2903349995613098, - -0.2748796343803406, - -0.2570544481277466, - -0.23734572529792786, - -0.21629105508327484, - -0.19446474313735962, - -0.17246218025684357, - -0.1508835107088089, - -0.13031736016273499, - -0.1113247275352478, - -0.09442365914583206, - -0.08007518947124481, - -0.06867069005966187, - -0.060521259903907776, - -0.05584920942783356, - -0.3201562762260437, - -0.3194600045681, - -0.31517794728279114, - -0.3074268698692322, - -0.2964181900024414, - -0.2824522852897644, - -0.26590996980667114, - -0.24724259972572327, - -0.22695930302143097, - -0.205613374710083, - -0.18378706276416779, - -0.16207575798034668, - -0.14107166230678558, - -0.12134773284196854, - -0.10344198346138, - -0.08784281462430954, - -0.07497575134038925, - -0.06519176810979843, - -0.05875775218009949, - -0.05584920942783356, - -0.3201562762260437, - -0.31757664680480957, - -0.31146255135536194, - -0.30198079347610474, - -0.28939005732536316, - -0.27403372526168823, - -0.256330668926239, - -0.2367638200521469, - -0.21586689352989197, - -0.19420990347862244, - -0.1723836064338684, - -0.15098334848880768, - -0.13059288263320923, - -0.11176841706037521, - -0.09502343088388443, - -0.0808146595954895, - -0.0695297047495842, - -0.06147637963294983, - -0.05687437951564789, - -0.05584920942783356, - -0.3201562762260437, - -0.3157774806022644, - -0.30791330337524414, - -0.2967783212661743, - -0.28267619013786316, - -0.2659916579723358, - -0.24717974662780762, - -0.22675366699695587, - -0.20527055859565735, - -0.1833164095878601, - -0.16149011254310608, - -0.14038699865341187, - -0.12058272957801819, - -0.10261749476194382, - -0.08698135614395142, - -0.0741008073091507, - -0.06432721018791199, - -0.057927146553993225, - -0.05507521331310272, - -0.05584920942783356, - -0.3201562762260437, - -0.31425750255584717, - -0.3049148619174957, - -0.2923831343650818, - -0.2770041823387146, - -0.25919753313064575, - -0.23944887518882751, - -0.2182968705892563, - -0.19631853699684143, - -0.17411337792873383, - -0.1522870659828186, - -0.13143499195575714, - -0.1121259406208992, - -0.09488660842180252, - -0.08018725365400314, - -0.06842880696058273, - -0.05993203818798065, - -0.05492869019508362, - -0.05355525016784668, - -0.05584920942783356, - -0.3201562762260437, - -0.31318145990371704, - -0.3027920722961426, - -0.2892715632915497, - -0.2729887068271637, - -0.25438764691352844, - -0.23397578299045563, - -0.21230988204479218, - -0.18998095393180847, - -0.16759806871414185, - -0.14577175676822662, - -0.12509740889072418, - -0.10613895207643509, - -0.08941352367401123, - -0.07537735253572464, - -0.06441330909729004, - -0.05682046711444855, - -0.05280591547489166, - -0.05247919261455536, - -0.05584920942783356, - -0.3201562762260437, - -0.3126659095287323, - -0.3017750382423401, - -0.2877807915210724, - -0.2710648477077484, - -0.2520831823348999, - -0.23135358095169067, - -0.20944146811962128, - -0.18694455921649933, - -0.16447652876377106, - -0.14265021681785583, - -0.12206102162599564, - -0.1032705307006836, - -0.08679132163524628, - -0.0730728954076767, - -0.062489449977874756, - -0.05532968044281006, - -0.05178888142108917, - -0.05196364223957062, - -0.05584920942783356, - -0.3201562762260437, - -0.3127667307853699, - -0.30197396874427795, - -0.2880723476409912, - -0.27144110202789307, - -0.252533882856369, - -0.23186641931533813, - -0.21000246703624725, - -0.18753841519355774, - -0.165087029337883, - -0.14326073229312897, - -0.12265487760305405, - -0.10383153706789017, - -0.08730416744947433, - -0.07352359592914581, - -0.0628657191991806, - -0.055621251463890076, - -0.051987797021865845, - -0.052064478397369385, - -0.05584920942783356, - -0.3201562762260437, - -0.31347301602363586, - -0.3033672571182251, - -0.2901146411895752, - -0.2740767002105713, - -0.25569090247154236, - -0.23545873165130615, - -0.2139320820569992, - -0.19169814884662628, - -0.16936340928077698, - -0.14753711223602295, - -0.126814603805542, - -0.10776115208864212, - -0.09089647978544235, - -0.07668061554431915, - -0.06550132483243942, - -0.057663559913635254, - -0.05338108539581299, - -0.052770763635635376, - -0.05584920942783356, - -0.3201562762260437, - -0.31470823287963867, - -0.30580395460128784, - -0.2936863899230957, - -0.2786860764026642, - -0.26121214032173157, - -0.24174124002456665, - -0.22080449759960175, - -0.19897300004959106, - -0.17684227228164673, - -0.1550159752368927, - -0.13408946990966797, - -0.11463356763124466, - -0.09717898815870285, - -0.08220185339450836, - -0.07011067867279053, - -0.06123529374599457, - -0.055817797780036926, - -0.05400596559047699, - -0.05584920942783356, - -0.3201562762260437, - -0.3163384795188904, - -0.3090200126171112, - -0.29840052127838135, - -0.2847696542739868, - -0.2684992849826813, - -0.2500331401824951, - -0.22987496852874756, - -0.20857463777065277, - -0.18671315908432007, - -0.16488686203956604, - -0.14369109272956848, - -0.12370403856039047, - -0.10547088086605072, - -0.08948898315429688, - -0.07619427889585495, - -0.06594941765069962, - -0.0590338408946991, - -0.05563622713088989, - -0.05584920942783356, - -0.3201562762260437, - -0.3181871175765991, - -0.3126669228076935, - -0.30374616384506226, - -0.29166826605796814, - -0.27676263451576233, - -0.25943586230278015, - -0.24016056954860687, - -0.2194625586271286, - -0.19790638983249664, - -0.17608009278774261, - -0.1545790135860443, - -0.1339896321296692, - -0.11487360298633575, - -0.09775234013795853, - -0.08309287577867508, - -0.07129506766796112, - -0.06268073618412018, - -0.05748488008975983, - -0.05584920942783356, - -0.3201562762260437, - -0.3200538754463196, - -0.31634944677352905, - -0.3091440498828888, - -0.29863426089286804, - -0.28510674834251404, - -0.26893046498298645, - -0.2505466938018799, - -0.2304568737745285, - -0.20920901000499725, - -0.18738271296024323, - -0.1655733287334442, - -0.144375741481781, - -0.12436820566654205, - -0.10609645396471024, - -0.09005887806415558, - -0.07669296115636826, - -0.06636327505111694, - -0.0593516081571579, - -0.05584920942783356 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.14596432447433472, - -0.1275637000799179, - -0.1080407053232193, - -0.08792790025472641, - -0.06777388602495193, - -0.04812842980027199, - -0.02952739968895912, - -0.012478180229663849, - 0.002554163336753845, - 0.01515958458185196, - 0.024994254112243652, - 0.031789906322956085, - 0.0353611558675766, - 0.035610608756542206, - 0.03253144025802612, - 0.026207663118839264, - 0.016811758279800415, - 0.004600033164024353, - -0.010094419121742249, - -0.026870768517255783, - -0.14596432447433472, - -0.1261676847934723, - -0.10528676211833954, - -0.0838911309838295, - -0.0625644102692604, - -0.04188835993409157, - -0.022426940500736237, - -0.0047110095620155334, - 0.01077616959810257, - 0.023612163960933685, - 0.03344683349132538, - 0.04001191258430481, - 0.043128326535224915, - 0.04271106421947479, - 0.03877151012420654, - 0.031417131423950195, - 0.020848527550697327, - 0.007353983819484711, - -0.00869840383529663, - -0.026870768517255783, - -0.14596432447433472, - -0.12682893872261047, - -0.10659120976924896, - -0.08580321818590164, - -0.0650319755077362, - -0.04484408721327782, - -0.025790203362703323, - -0.008390076458454132, - 0.0068816691637039185, - 0.019608445465564728, - 0.02944311499595642, - 0.03611741214990616, - 0.039449259638786316, - 0.03934779763221741, - 0.03581579029560089, - 0.028949573636054993, - 0.018936432898044586, - 0.00604952871799469, - -0.009359650313854218, - -0.026870768517255783, - -0.14596432447433472, - -0.12947578728199005, - -0.11181273311376572, - -0.09345696121454239, - -0.07490917295217514, - -0.05667531117796898, - -0.03925273194909096, - -0.023116685450077057, - -0.008707329630851746, - 0.003582298755645752, - 0.013416968286037445, - 0.020528413355350494, - 0.02472265064716339, - 0.025885269045829773, - 0.02398456633090973, - 0.01907237619161606, - 0.011282697319984436, - 0.0008280053734779358, - -0.012006506323814392, - -0.026870768517255783, - -0.14596432447433472, - -0.13382142782211304, - -0.12038546800613403, - -0.10602296143770218, - -0.09112565964460373, - -0.0760999470949173, - -0.06135566905140877, - -0.04729500412940979, - -0.034301500767469406, - -0.022729597985744476, - -0.012894928455352783, - -0.005065761506557465, - 0.000544331967830658, - 0.00378233939409256, - 0.004559919238090515, - 0.0028558820486068726, - -0.001283302903175354, - -0.007744729518890381, - -0.016352146863937378, - -0.026870768517255783, - -0.14596432447433472, - -0.13939492404460907, - -0.13138043880462646, - -0.12213948369026184, - -0.11192414164543152, - -0.10101302713155746, - -0.08970379829406738, - -0.07830493152141571, - -0.06712733954191208, - -0.05647594481706619, - -0.0466412752866745, - -0.03789160028100014, - -0.030465591698884964, - -0.024565797299146652, - -0.020353160798549652, - -0.01794259250164032, - -0.017399832606315613, - -0.018739700317382812, - -0.021925650537014008, - -0.026870764791965485, - -0.14596432447433472, - -0.1455923169851303, - -0.14360617101192474, - -0.14006006717681885, - -0.13505074381828308, - -0.12871482968330383, - -0.12122516334056854, - -0.11278603971004486, - -0.10362763702869415, - -0.09399979561567307, - -0.08416512608528137, - -0.07439189404249191, - -0.06494669616222382, - -0.05608716607093811, - -0.04805497080087662, - -0.04106920212507248, - -0.03532041981816292, - -0.03096543252468109, - -0.02812303602695465, - -0.026870764791965485, - -0.14596432447433472, - -0.15174201130867004, - -0.15573781728744507, - -0.1578427404165268, - -0.15799938142299652, - -0.15620344877243042, - -0.15250395238399506, - -0.14700177311897278, - -0.1398470252752304, - -0.13123485445976257, - -0.12140019237995148, - -0.11061128973960876, - -0.09916244447231293, - -0.08736594766378403, - -0.0755435898900032, - -0.06401783972978592, - -0.053103089332580566, - -0.04309707134962082, - -0.034272730350494385, - -0.026870764791965485, - -0.14596430957317352, - -0.15717759728431702, - -0.16646072268486023, - -0.1735604703426361, - -0.1782831847667694, - -0.18050004541873932, - -0.1801505982875824, - -0.17724433541297913, - -0.17186057567596436, - -0.16414615511894226, - -0.15431147813796997, - -0.1426248401403427, - -0.12940500676631927, - -0.11501260101795197, - -0.0998401939868927, - -0.08430164307355881, - -0.06882081180810928, - -0.05381997302174568, - -0.03970831260085106, - -0.026870761066675186, - -0.14596430957317352, - -0.16131003201007843, - -0.1746128797531128, - -0.18550997972488403, - -0.19370409846305847, - -0.1989717185497284, - -0.20116916298866272, - -0.2002364993095398, - -0.19619911909103394, - -0.18916720151901245, - -0.17933252453804016, - -0.1669633835554123, - -0.15239715576171875, - -0.13603118062019348, - -0.11831186711788177, - -0.09972257167100906, - -0.0807703286409378, - -0.06197213754057884, - -0.04384075477719307, - -0.026870761066675186, - -0.14596430957317352, - -0.16369152069091797, - -0.1793108880519867, - -0.1923963725566864, - -0.20259103178977966, - -0.2096167802810669, - -0.21328197419643402, - -0.2134866565465927, - -0.2102251946926117, - -0.203586608171463, - -0.19375193119049072, - -0.18098945915699005, - -0.16564732789993286, - -0.1481439769268036, - -0.12895692884922028, - -0.10860950499773026, - -0.08765672147274017, - -0.06667015701532364, - -0.04622224345803261, - -0.026870761066675186, - -0.14596430957317352, - -0.16406399011611938, - -0.18004566431045532, - -0.19347339868545532, - -0.203980952501297, - -0.2112816572189331, - -0.21517641842365265, - -0.2155589759349823, - -0.21241886913776398, - -0.2058417797088623, - -0.1960071176290512, - -0.18318313360214233, - -0.16771963238716125, - -0.15003842115402222, - -0.1306218057870865, - -0.1099994108080864, - -0.08873375505208969, - -0.06740492582321167, - -0.046594709157943726, - -0.026870761066675186, - -0.14596430957317352, - -0.16238707304000854, - -0.17673756182193756, - -0.18862435221672058, - -0.19772322475910187, - -0.2037859559059143, - -0.20664718747138977, - -0.20622888207435608, - -0.20254242420196533, - -0.1956883817911148, - -0.1858537197113037, - -0.1733066886663437, - -0.15838955342769623, - -0.14150920510292053, - -0.12312610447406769, - -0.10374169051647186, - -0.08388470113277435, - -0.06409682333469391, - -0.04491778463125229, - -0.026870761066675186, - -0.14596430957317352, - -0.15884247422218323, - -0.1697450578212738, - -0.17837467789649963, - -0.1844959557056427, - -0.18794192373752594, - -0.18861857056617737, - -0.1865074336528778, - -0.18166609108448029, - -0.17422661185264587, - -0.16439194977283478, - -0.15243035554885864, - -0.13866809010505676, - -0.12348056584596634, - -0.10728206485509872, - -0.09051442891359329, - -0.073635034263134, - -0.05710431933403015, - -0.04137318953871727, - -0.026870761066675186, - -0.14596430957317352, - -0.15381431579589844, - -0.15982592105865479, - -0.16383513808250427, - -0.16573259234428406, - -0.1654665470123291, - -0.16304424405097961, - -0.1585317701101303, - -0.15205220878124237, - -0.14378230273723602, - -0.13394764065742493, - -0.12281646579504013, - -0.11069243401288986, - -0.09790624678134918, - -0.08480668812990189, - -0.07175105065107346, - -0.05909547954797745, - -0.04718518257141113, - -0.036345046013593674, - -0.026870761066675186, - -0.14596432447433472, - -0.1478475034236908, - -0.1480550467967987, - -0.1465812623500824, - -0.14346638321876526, - -0.13879536092281342, - -0.13269560039043427, - -0.1253335028886795, - -0.11690987646579742, - -0.10765449702739716, - -0.09781982749700546, - -0.08767413347959518, - -0.07749416679143906, - -0.06755760312080383, - -0.0581354983150959, - -0.049484845250844955, - -0.04184161126613617, - -0.035414304584264755, - -0.030378229916095734, - -0.026870764791965485, - -0.14596432447433472, - -0.14158859848976135, - -0.13570794463157654, - -0.12848278880119324, - -0.12011019885540009, - -0.11081855744123459, - -0.1008613258600235, - -0.09051010012626648, - -0.08004724234342575, - -0.06975815445184708, - -0.05992348492145538, - -0.05081150308251381, - -0.04267076402902603, - -0.03572332486510277, - -0.030158694833517075, - -0.026128653436899185, - -0.023743130266666412, - -0.023067206144332886, - -0.024119321256875992, - -0.026870764791965485, - -0.14596432447433472, - -0.13571585714817047, - -0.12412266433238983, - -0.11150097101926804, - -0.09819506853818893, - -0.08456791192293167, - -0.07099120318889618, - -0.05783528462052345, - -0.04545901343226433, - -0.03419999033212662, - -0.024365320801734924, - -0.016223274171352386, - -0.009995944797992706, - -0.005853205919265747, - -0.003908038139343262, - -0.0042135268449783325, - -0.006761319935321808, - -0.01148192584514618, - -0.018246576189994812, - -0.026870768517255783, - -0.14596432447433472, - -0.1308656930923462, - -0.11455462872982025, - -0.097476065158844, - -0.08009584993124008, - -0.06288808584213257, - -0.04632212594151497, - -0.030849866569042206, - -0.016893357038497925, - -0.004833288490772247, - 0.005001381039619446, - 0.012342385947704315, - 0.016989469528198242, - 0.01881588250398636, - 0.017771795392036438, - 0.013885699212551117, - 0.007263593375682831, - -0.0019138902425765991, - -0.013396412134170532, - -0.026870768517255783, - -0.14596432447433472, - -0.1275637000799179, - -0.1080407053232193, - -0.08792789280414581, - -0.06777388602495193, - -0.04812842980027199, - -0.029527392238378525, - -0.012478172779083252, - 0.002554170787334442, - 0.015159592032432556, - 0.02499426156282425, - 0.03178991377353668, - 0.035361163318157196, - 0.035610608756542206, - 0.03253144025802612, - 0.026207663118839264, - 0.016811758279800415, - 0.004600033164024353, - -0.010094419121742249, - -0.026870768517255783 - ], - "y": [ - -0.30777084827423096, - -0.3026122450828552, - -0.2955076992511749, - -0.28665098547935486, - -0.27628371119499207, - -0.2646886706352234, - -0.25218212604522705, - -0.239105224609375, - -0.22581468522548676, - -0.21267303824424744, - -0.20003874599933624, - -0.18825644254684448, - -0.17764750123023987, - -0.1685013473033905, - -0.1610674262046814, - -0.15554851293563843, - -0.15209518373012543, - -0.1508016139268875, - -0.1517030894756317, - -0.15477502346038818, - -0.30777084827423096, - -0.30860963463783264, - -0.3073388934135437, - -0.30399325489997864, - -0.29866400361061096, - -0.29149651527404785, - -0.2826862633228302, - -0.27247360348701477, - -0.26113706827163696, - -0.24898594617843628, - -0.23635165393352509, - -0.2235788255929947, - -0.21101588010787964, - -0.19900548458099365, - -0.18787527084350586, - -0.17792882025241852, - -0.1694374531507492, - -0.1626327931880951, - -0.15770047903060913, - -0.15477502346038818, - -0.30777084827423096, - -0.31440305709838867, - -0.3187677264213562, - -0.3207457661628723, - -0.3202831745147705, - -0.3173926770687103, - -0.31215301156044006, - -0.3047071695327759, - -0.29525822401046753, - -0.2840639352798462, - -0.2714296281337738, - -0.25769999623298645, - -0.24324946105480194, - -0.22847223281860352, - -0.21377143263816833, - -0.19954800605773926, - -0.1861899495124817, - -0.1740616410970688, - -0.16349391639232635, - -0.15477502346038818, - -0.30777084827423096, - -0.3193647265434265, - -0.32855573296546936, - -0.33509308099746704, - -0.33879852294921875, - -0.33957090973854065, - -0.3373892307281494, - -0.3323129713535309, - -0.3244805932044983, - -0.3141057789325714, - -0.301471471786499, - -0.2869223356246948, - -0.27085524797439575, - -0.25370845198631287, - -0.23594966530799866, - -0.21806330978870392, - -0.2005372792482376, - -0.18384963274002075, - -0.1684555858373642, - -0.15477502346038818, - -0.30777084827423096, - -0.32295697927474976, - -0.3356421887874603, - -0.3454805016517639, - -0.35220351815223694, - -0.3556278645992279, - -0.3556601405143738, - -0.35229945182800293, - -0.3456374704837799, - -0.3358559310436249, - -0.3232216238975525, - -0.30807924270629883, - -0.2908417284488678, - -0.27197936177253723, - -0.2520066201686859, - -0.2314683347940445, - -0.2109246850013733, - -0.1909361183643341, - -0.17204780876636505, - -0.15477502346038818, - -0.30777084827423096, - -0.32479047775268555, - -0.33925920724868774, - -0.3507823646068573, - -0.3590455949306488, - -0.3638235330581665, - -0.3649858236312866, - -0.36250078678131104, - -0.35643619298934937, - -0.3469574749469757, - -0.3343231678009033, - -0.3188779354095459, - -0.3010430634021759, - -0.2813050448894501, - -0.2602022886276245, - -0.23831039667129517, - -0.21622654795646667, - -0.19455312192440033, - -0.17388132214546204, - -0.15477502346038818, - -0.30777084827423096, - -0.3246665894985199, - -0.33901482820510864, - -0.3504241108894348, - -0.3585832715034485, - -0.36326974630355835, - -0.3643556833267212, - -0.36181148886680603, - -0.35570651292800903, - -0.3462073504924774, - -0.33357304334640503, - -0.31814828515052795, - -0.3003537654876709, - -0.28067493438720703, - -0.25964853167533875, - -0.23784810304641724, - -0.21586830914020538, - -0.19430872797966003, - -0.1737574338912964, - -0.15477502346038818, - -0.30777084827423096, - -0.32259872555732727, - -0.3349354863166809, - -0.34444460272789, - -0.3508666753768921, - -0.35402655601501465, - -0.3538380563259125, - -0.35030627250671387, - -0.34352758526802063, - -0.333686888217926, - -0.32105258107185364, - -0.30596932768821716, - -0.28884854912757874, - -0.2701572775840759, - -0.25040534138679504, - -0.23013150691986084, - -0.2098887860774994, - -0.1902294009923935, - -0.17168956995010376, - -0.15477502346038818, - -0.30777084827423096, - -0.31881096959114075, - -0.327463299036026, - -0.33349180221557617, - -0.33673202991485596, - -0.33709561824798584, - -0.33457261323928833, - -0.3292319178581238, - -0.3212190866470337, - -0.310752809047699, - -0.298118531703949, - -0.2836608588695526, - -0.26777416467666626, - -0.2508918344974518, - -0.23347437381744385, - -0.21599683165550232, - -0.19893598556518555, - -0.1827571988105774, - -0.16790181398391724, - -0.15477502346038818, - -0.30777084827423096, - -0.31371378898620605, - -0.3174079656600952, - -0.31875258684158325, - -0.3177109956741333, - -0.31431159377098083, - -0.30864712595939636, - -0.3008720874786377, - -0.29119858145713806, - -0.2798904478549957, - -0.26725614070892334, - -0.2536403238773346, - -0.23941437900066376, - -0.22496634721755981, - -0.21069036424160004, - -0.19697579741477966, - -0.18419677019119263, - -0.1727018654346466, - -0.16280463337898254, - -0.15477502346038818, - -0.30777084827423096, - -0.30785953998565674, - -0.30585911870002747, - -0.3018242120742798, - -0.2958648204803467, - -0.2881435453891754, - -0.27887099981307983, - -0.2683000862598419, - -0.256719172000885, - -0.24444416165351868, - -0.23180986940860748, - -0.21916092932224274, - -0.20684237778186798, - -0.1951902210712433, - -0.18452230095863342, - -0.17512963712215424, - -0.16726839542388916, - -0.16115303337574005, - -0.15695035457611084, - -0.15477502346038818, - -0.30777084827423096, - -0.3018825948238373, - -0.29406827688217163, - -0.2845411002635956, - -0.27356088161468506, - -0.2614271640777588, - -0.24847093224525452, - -0.23504556715488434, - -0.22151730954647064, - -0.20825514197349548, - -0.1956208497285843, - -0.18395905196666718, - -0.1735878586769104, - -0.16479015350341797, - -0.1578059196472168, - -0.15282569825649261, - -0.14998528361320496, - -0.1493622064590454, - -0.15097343921661377, - -0.15477502346038818, - -0.30777084827423096, - -0.29643070697784424, - -0.28331318497657776, - -0.26877617835998535, - -0.2532161772251129, - -0.2370576113462448, - -0.22074125707149506, - -0.2047121822834015, - -0.189407616853714, - -0.1752450168132782, - -0.162610724568367, - -0.15184935927391052, - -0.14325445890426636, - -0.13706046342849731, - -0.13343635201454163, - -0.13248097896575928, - -0.13422036170959473, - -0.13860711455345154, - -0.14552152156829834, - -0.15477502346038818, - -0.30777084827423096, - -0.2920945882797241, - -0.27475929260253906, - -0.25623777508735657, - -0.23703530430793762, - -0.21767565608024597, - -0.1986868977546692, - -0.18058699369430542, - -0.1638696789741516, - -0.1489909440279007, - -0.1363566517829895, - -0.12631142139434814, - -0.11912927031517029, - -0.11500610411167145, - -0.11405440419912338, - -0.11630010604858398, - -0.12168198078870773, - -0.13005320727825165, - -0.1411854326725006, - -0.15477502346038818, - -0.30777084827423096, - -0.2893442213535309, - -0.26933354139328003, - -0.24828468263149261, - -0.22677180171012878, - -0.20538167655467987, - -0.18469780683517456, - -0.1652843952178955, - -0.1476709544658661, - -0.13233798742294312, - -0.11970368027687073, - -0.11011270433664322, - -0.10382667183876038, - -0.10101702809333801, - -0.10176041722297668, - -0.10603658854961395, - -0.11372888088226318, - -0.12462746351957321, - -0.13843506574630737, - -0.15477502346038818, - -0.30777084827423096, - -0.2884775996208191, - -0.2676239311695099, - -0.24577870965003967, - -0.22353780269622803, - -0.20150789618492126, - -0.18028990924358368, - -0.16046260297298431, - -0.14256680011749268, - -0.1270906925201416, - -0.11445640027523041, - -0.1050085574388504, - -0.09900487959384918, - -0.09660911560058594, - -0.09788663685321808, - -0.1028025895357132, - -0.11122290045022964, - -0.12291783094406128, - -0.1375684142112732, - -0.15477502346038818, - -0.30777084827423096, - -0.2895886301994324, - -0.26981568336486816, - -0.24899138510227203, - -0.22768379747867584, - -0.20647411048412323, - -0.18594086170196533, - -0.1666441708803177, - -0.149110347032547, - -0.13381773233413696, - -0.12118344008922577, - -0.11155210435390472, - -0.10518644750118256, - -0.10226008296012878, - -0.10285285115242004, - -0.1069486066699028, - -0.1144355833530426, - -0.12510958313941956, - -0.13867944478988647, - -0.15477502346038818, - -0.30777084827423096, - -0.29255691170692444, - -0.2756713032722473, - -0.2575746178627014, - -0.23876050114631653, - -0.21974214911460876, - -0.20103833079338074, - -0.1831592172384262, - -0.16659250855445862, - -0.15179014205932617, - -0.13915583491325378, - -0.12903426587581635, - -0.12170149385929108, - -0.117357537150383, - -0.11612089723348618, - -0.11802531033754349, - -0.12301882356405258, - -0.1309652179479599, - -0.14164775609970093, - -0.15477502346038818, - -0.30777084827423096, - -0.2970608174800873, - -0.2845562696456909, - -0.27059829235076904, - -0.25556761026382446, - -0.2398742288351059, - -0.2239462435245514, - -0.20821809768676758, - -0.1931188404560089, - -0.17906031012535095, - -0.16642603278160095, - -0.15556058287620544, - -0.14676037430763245, - -0.14026546478271484, - -0.1362529844045639, - -0.13483241200447083, - -0.13604247570037842, - -0.1398501694202423, - -0.14615166187286377, - -0.15477502346038818, - -0.30777084827423096, - -0.3026122450828552, - -0.2955076992511749, - -0.28665101528167725, - -0.27628374099731445, - -0.2646886706352234, - -0.25218212604522705, - -0.2391052544116974, - -0.22581471502780914, - -0.21267306804656982, - -0.20003876090049744, - -0.18825645744800568, - -0.17764753103256226, - -0.1685013473033905, - -0.1610674262046814, - -0.15554854273796082, - -0.15209519863128662, - -0.1508016288280487, - -0.1517030894756317, - -0.15477502346038818 - ], - "z": [ - -0.09082870185375214, - -0.09764103591442108, - -0.10009261965751648, - -0.09811657667160034, - -0.0917668491601944, - -0.08121660351753235, - -0.06675364077091217, - -0.04877246916294098, - -0.02776356041431427, - -0.004299983382225037, - 0.02097821980714798, - 0.04738153517246246, - 0.07418975979089737, - 0.10067161917686462, - 0.12610477209091187, - 0.14979544281959534, - 0.17109745740890503, - 0.18942971527576447, - 0.2042921632528305, - 0.21527940034866333, - -0.09082871675491333, - -0.09518660604953766, - -0.09525071084499359, - -0.09101927280426025, - -0.08260773122310638, - -0.07024551928043365, - -0.05426985025405884, - -0.035116493701934814, - -0.013307899236679077, - 0.010561034083366394, - 0.03583924099802971, - 0.061837196350097656, - 0.08784573525190353, - 0.11315540969371796, - 0.13707584142684937, - 0.15895456075668335, - 0.17819476127624512, - 0.19427162408828735, - 0.20674659311771393, - 0.21527940034866333, - -0.09082871675491333, - -0.09203372895717621, - -0.08903095126152039, - -0.08190229535102844, - -0.07084222137928009, - -0.05615241080522537, - -0.03823356330394745, - -0.017574459314346313, - 0.005261380225419998, - 0.029651042073965073, - 0.05492924898862839, - 0.08040647953748703, - 0.10538776963949203, - 0.12919169664382935, - 0.15116895735263824, - 0.17072007060050964, - 0.18731175363063812, - 0.20049138367176056, - 0.20989947021007538, - 0.21527940034866333, - -0.09082871675491333, - -0.08852405846118927, - -0.08210735023021698, - -0.0717536062002182, - -0.05774528533220291, - -0.040464483201503754, - -0.020382560789585114, - 0.0019526854157447815, - 0.02593202516436577, - 0.05090134218335152, - 0.07617954909801483, - 0.1010771244764328, - 0.12491491436958313, - 0.14704270660877228, - 0.16685688495635986, - 0.18381699919700623, - 0.19746042788028717, - 0.20741498470306396, - 0.21340914070606232, - 0.21527940034866333, - -0.09082871675491333, - -0.08503793179988861, - -0.07523016631603241, - -0.061672985553741455, - -0.04473618417978287, - -0.024881750345230103, - -0.0026512667536735535, - 0.021348878741264343, - 0.04646404832601547, - 0.0720091238617897, - 0.09728732705116272, - 0.12160913646221161, - 0.1443111002445221, - 0.16477400064468384, - 0.1824396252632141, - 0.19682611525058746, - 0.2075410634279251, - 0.21429216861724854, - 0.21689528226852417, - 0.21527940034866333, - -0.09082871675491333, - -0.08195310831069946, - -0.06914468109607697, - -0.052752815186977386, - -0.03322465717792511, - -0.01109287142753601, - 0.013038843870162964, - 0.03851223737001419, - 0.06463247537612915, - 0.09068703651428223, - 0.11596524715423584, - 0.13977757096290588, - 0.16147446632385254, - 0.18046411871910095, - 0.1962285041809082, - 0.20833764970302582, - 0.21646122634410858, - 0.22037765383720398, - 0.21998010575771332, - 0.21527940034866333, - -0.09082871675491333, - -0.0796038955450058, - -0.06451033055782318, - -0.04595974087715149, - -0.024458147585392, - -0.0005920678377151489, - 0.024987511336803436, - 0.05158284679055214, - 0.07846848666667938, - 0.10491104423999786, - 0.13018923997879028, - 0.15361356735229492, - 0.1745450794696808, - 0.19241277873516083, - 0.20672932267189026, - 0.21710415184497833, - 0.22325430810451508, - 0.22501201927661896, - 0.22232931852340698, - 0.21527938544750214, - -0.09082871675491333, - -0.07824485003948212, - -0.06182931363582611, - -0.042029887437820435, - -0.019386649131774902, - 0.005482733249664307, - 0.03189992159605026, - 0.05914429947733879, - 0.08647273480892181, - 0.11313974857330322, - 0.13841795921325684, - 0.16161783039569855, - 0.18210652470588684, - 0.19932518899440765, - 0.21280410885810852, - 0.22217564284801483, - 0.22718416154384613, - 0.22769302129745483, - 0.22368836402893066, - 0.21527938544750214, - -0.09082871675491333, - -0.07802325487136841, - -0.061392173171043396, - -0.04138912260532379, - -0.01855974644422531, - 0.006473232060670853, - 0.033026985824108124, - 0.06037719547748566, - 0.08777783066034317, - 0.11448144167661667, - 0.13975965976715088, - 0.1629229187965393, - 0.1833394169807434, - 0.20045225322246552, - 0.21379461884498596, - 0.22300255298614502, - 0.22782492637634277, - 0.22813016176223755, - 0.22390994429588318, - 0.21527938544750214, - -0.09082871675491333, - -0.07896313071250916, - -0.06324627995491028, - -0.04410688579082489, - -0.022067032754421234, - 0.002272091805934906, - 0.02824658900499344, - 0.055147938430309296, - 0.08224233984947205, - 0.10879073292016983, - 0.13406893610954285, - 0.15738743543624878, - 0.17811016738414764, - 0.19567185640335083, - 0.20959347486495972, - 0.2194952666759491, - 0.22510716319084167, - 0.22627605497837067, - 0.22297008335590363, - 0.21527938544750214, - -0.09082871675491333, - -0.08096261322498322, - -0.06719070672988892, - -0.04988865554332733, - -0.02952844649553299, - -0.006665430963039398, - 0.01807675138115883, - 0.044023189693689346, - 0.07046613842248917, - 0.0966842919588089, - 0.12196250259876251, - 0.1456112265586853, - 0.166985422372818, - 0.18550202250480652, - 0.2006559520959854, - 0.21203385293483734, - 0.21932539343833923, - 0.22233162820339203, - 0.22097060084342957, - 0.21527938544750214, - -0.09082871675491333, - -0.08380502462387085, - -0.07279801368713379, - -0.0581078976392746, - -0.040135420858860016, - -0.019370809197425842, - 0.003619533032178879, - 0.02820849046111107, - 0.05372535064816475, - 0.0794740542769432, - 0.10475225746631622, - 0.12887044250965118, - 0.1511707305908203, - 0.17104479670524597, - 0.18795056641101837, - 0.20142687857151031, - 0.21110615134239197, - 0.21672432124614716, - 0.21812817454338074, - 0.21527940034866333, - -0.09082871675491333, - -0.08718237280845642, - -0.07946056127548218, - -0.06787392497062683, - -0.052738532423973083, - -0.034467220306396484, - -0.013558395206928253, - 0.009417619556188583, - 0.03383409231901169, - 0.05902500078082085, - 0.08430320769548416, - 0.10897918790578842, - 0.13237985968589783, - 0.15386687219142914, - 0.17285415530204773, - 0.18882375955581665, - 0.20134012401103973, - 0.21006177365779877, - 0.21475084125995636, - 0.21527940034866333, - -0.09082871675491333, - -0.09072864055633545, - -0.08645637333393097, - -0.07812844216823578, - -0.06597204506397247, - -0.05031875520944595, - -0.03159555792808533, - -0.010313168168067932, - 0.012947887182235718, - 0.037553101778030396, - 0.06283130496740341, - 0.08809298276901245, - 0.11264906078577042, - 0.13582971692085266, - 0.15700261294841766, - 0.17559024691581726, - 0.1910856068134308, - 0.20306596159934998, - 0.21120457351207733, - 0.21527940034866333, - -0.09082871675491333, - -0.0940595418214798, - -0.09302732348442078, - -0.08776021003723145, - -0.07840187847614288, - -0.06520761549472809, - -0.04853731393814087, - -0.028845690190792084, - -0.006669886410236359, - 0.017385199666023254, - 0.04266340658068657, - 0.06847520917654037, - 0.09411653876304626, - 0.11888796091079712, - 0.14211374521255493, - 0.16316041350364685, - 0.1814538538455963, - 0.19649502635002136, - 0.20787367224693298, - 0.21527940034866333, - -0.09082870185375214, - -0.0968141257762909, - -0.0984613448381424, - -0.09572546184062958, - -0.08868108689785004, - -0.07752038538455963, - -0.06254778057336807, - -0.044171690940856934, - -0.022893361747264862, - 0.0007067769765853882, - 0.025984983891248703, - 0.05225173383951187, - 0.07879053801298141, - 0.10487748682498932, - 0.1298009753227234, - 0.1528812050819397, - 0.173488587141037, - 0.19106099009513855, - 0.2051190882921219, - 0.21527940034866333, - -0.09082870185375214, - -0.09869389235973358, - -0.10216961801052094, - -0.10116106271743774, - -0.09569576382637024, - -0.08592279255390167, - -0.07210871577262878, - -0.054630376398563385, - -0.033964499831199646, - -0.010674811899662018, - 0.014603391289710999, - 0.04118059575557709, - 0.06833185255527496, - 0.09531654417514801, - 0.12139856815338135, - 0.1458665430545807, - 0.16805297136306763, - 0.18735271692276, - 0.203239306807518, - 0.21527940034866333, - -0.09082870185375214, - -0.09949514269828796, - -0.10375024378299713, - -0.10347796976566315, - -0.09868575632572174, - -0.08950428664684296, - -0.07618403434753418, - -0.05908835679292679, - -0.038683533668518066, - -0.015526182949543, - 0.009752023965120316, - 0.03646156191825867, - 0.06387387216091156, - 0.09124122560024261, - 0.11781707406044006, - 0.142876535654068, - 0.16573607921600342, - 0.1857720911502838, - 0.20243807137012482, - 0.21527940034866333, - -0.09082870185375214, - -0.0991310328245163, - -0.10303196310997009, - -0.10242511332035065, - -0.09732702374458313, - -0.08787676692008972, - -0.07433211803436279, - -0.0570625364780426, - -0.03653908520936966, - -0.01332160085439682, - 0.011956606060266495, - 0.03860601410269737, - 0.06589969247579575, - 0.0930931493639946, - 0.1194445937871933, - 0.1442352682352066, - 0.16678893566131592, - 0.18649037182331085, - 0.2028021663427353, - 0.21527940034866333, - -0.09082870185375214, - -0.09764103591442108, - -0.10009261965751648, - -0.09811657667160034, - -0.0917668491601944, - -0.08121660351753235, - -0.06675364077091217, - -0.04877246171236038, - -0.027763552963733673, - -0.004299983382225037, - 0.020978223532438278, - 0.04738154262304306, - 0.07418976724147797, - 0.10067162662744522, - 0.12610477209091187, - 0.14979545772075653, - 0.17109745740890503, - 0.18942973017692566, - 0.2042921781539917, - 0.21527940034866333 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.07855400443077087, - 0.0509016178548336, - 0.02234083041548729, - -0.006349308416247368, - -0.03438620641827583, - -0.061005063354969025, - -0.08547982573509216, - -0.1071428656578064, - -0.1254032701253891, - -0.13976293802261353, - -0.1498301923274994, - -0.15533041954040527, - -0.15611357986927032, - -0.15215833485126495, - -0.14357252418994904, - -0.13059037923812866, - -0.11356601119041443, - -0.09296382963657379, - -0.06934575736522675, - -0.043356072157621384, - 0.07855399698019028, - 0.05555269122123718, - 0.03151611611247063, - 0.0070999059826135635, - -0.01702992245554924, - -0.040215153247117996, - -0.06182335317134857, - -0.08126513659954071, - -0.09801016747951508, - -0.11160168051719666, - -0.12166893482208252, - -0.12793731689453125, - -0.13023585081100464, - -0.12850186228752136, - -0.12278258800506592, - -0.11323408782482147, - -0.1001167967915535, - -0.08378854393959045, - -0.06469468027353287, - -0.043356072157621384, - 0.07855399698019028, - 0.06260623037815094, - 0.045430783182382584, - 0.027496149763464928, - 0.009291557595133781, - -0.00868644192814827, - -0.02594742923974991, - -0.04202060028910637, - -0.05646749585866928, - -0.06889405846595764, - -0.07896130532026291, - -0.08639465272426605, - -0.0909913182258606, - -0.0926259309053421, - -0.09125388413667679, - -0.0869126245379448, - -0.07972055673599243, - -0.0698738768696785, - -0.05764114856719971, - -0.04335607588291168, - 0.07855398952960968, - 0.07129786163568497, - 0.06257697194814682, - 0.05262918025255203, - 0.04172586649656296, - 0.030164431780576706, - 0.018260251730680466, - 0.006338020786643028, - -0.005277032032608986, - -0.016268081963062286, - -0.02633533626794815, - -0.03520418703556061, - -0.04263269901275635, - -0.04841823875904083, - -0.05240301042795181, - -0.05447831004858017, - -0.05458752065896988, - -0.05272768437862396, - -0.04894951730966568, - -0.04335607588291168, - 0.07855398952960968, - 0.08068571984767914, - 0.08109661191701889, - 0.07977543771266937, - 0.07675826549530029, - 0.07212738692760468, - 0.06600910425186157, - 0.058570314198732376, - 0.0500139445066452, - 0.040573373436927795, - 0.030506117269396782, - 0.02008679322898388, - 0.009599598124623299, - -0.0006693881005048752, - -0.010440060868859291, - -0.019445903599262238, - -0.02744125947356224, - -0.03420804440975189, - -0.03956165537238121, - -0.04335607960820198, - 0.07855398952960968, - 0.08975248038768768, - 0.09898281842470169, - 0.10599321126937866, - 0.11059243977069855, - 0.11265505105257034, - 0.11212477833032608, - 0.10901609063148499, - 0.10341378301382065, - 0.09547065943479538, - 0.08540341258049011, - 0.07348662614822388, - 0.06004536896944046, - 0.04544629901647568, - 0.03008762001991272, - 0.014388272538781166, - -0.0012234952300786972, - -0.016321837902069092, - -0.030494891107082367, - -0.04335608333349228, - 0.07855398952960968, - 0.09751562774181366, - 0.11429735273122787, - 0.12844139337539673, - 0.13956193625926971, - 0.14735564589500427, - 0.15160994231700897, - 0.15220876038074493, - 0.1491357833147049, - 0.14247480034828186, - 0.1324075609445572, - 0.11920863389968872, - 0.103238046169281, - 0.08493145555257797, - 0.06478822231292725, - 0.04335777461528778, - 0.021224679425358772, - -0.0010073035955429077, - -0.02273174747824669, - -0.04335608333349228, - 0.07855398952960968, - 0.10313389450311661, - 0.12538063526153564, - 0.14468736946582794, - 0.16052745282649994, - 0.17246884107589722, - 0.18018576502799988, - 0.18346776068210602, - 0.1822252869606018, - 0.17649221420288086, - 0.166424959897995, - 0.15229813754558563, - 0.1344970464706421, - 0.11350727081298828, - 0.0899014100432396, - 0.0643233060836792, - 0.03747066110372543, - 0.010075978003442287, - -0.01711348071694374, - -0.04335608705878258, - 0.07855398952960968, - 0.1059984564781189, - 0.13103163242340088, - 0.15297064185142517, - 0.17121706902980804, - 0.1852731853723526, - 0.19475559890270233, - 0.19940565526485443, - 0.19909648597240448, - 0.1938365250825882, - 0.18376927077770233, - 0.1691693365573883, - 0.1504349410533905, - 0.12807711958885193, - 0.10270576924085617, - 0.07501290738582611, - 0.04575393348932266, - 0.015726972371339798, - -0.014248918741941452, - -0.04335608705878258, - 0.07855398952960968, - 0.10579890012741089, - 0.13063794374465942, - 0.15239357948303223, - 0.17047236859798431, - 0.1843811720609665, - 0.1937406063079834, - 0.19829535484313965, - 0.19792115688323975, - 0.19262824952602386, - 0.182560995221138, - 0.16799400746822357, - 0.14932464063167572, - 0.1270621120929718, - 0.10181375592947006, - 0.07426822185516357, - 0.045176878571510315, - 0.015333293937146664, - -0.01444847509264946, - -0.04335608705878258, - 0.07855398952960968, - 0.10255683958530426, - 0.12424226850271225, - 0.14301873743534088, - 0.15837408602237701, - 0.1698894500732422, - 0.17725074291229248, - 0.1802571564912796, - 0.17882665991783142, - 0.17299829423427582, - 0.16293103992938995, - 0.14889951050281525, - 0.13128644227981567, - 0.11057224869728088, - 0.08732203394174576, - 0.06216992810368538, - 0.03580203652381897, - 0.008937611244618893, - -0.017690535634756088, - -0.04335608333349228, - 0.07855398952960968, - 0.09662361443042755, - 0.11253765970468521, - 0.1258620023727417, - 0.13623324036598206, - 0.1433684229850769, - 0.1470729410648346, - 0.14724577963352203, - 0.143882155418396, - 0.13707387447357178, - 0.1270066201686859, - 0.11395500600337982, - 0.09827505797147751, - 0.08039446920156479, - 0.06080099195241928, - 0.04002906382083893, - 0.018645303323864937, - -0.0027669966220855713, - -0.023623760789632797, - -0.04335608333349228, - 0.07855398952960968, - 0.0886421725153923, - 0.09679248929023743, - 0.10278259962797165, - 0.10644913464784622, - 0.10769205540418625, - 0.10647748410701752, - 0.10283853858709335, - 0.09687447547912598, - 0.08874797821044922, - 0.07868072390556335, - 0.0669473186135292, - 0.05386782065033913, - 0.03979899734258652, - 0.025124628096818924, - 0.010244959965348244, - -0.00443410687148571, - -0.018512167036533356, - -0.031605202704668045, - -0.04335608333349228, - 0.07855398952960968, - 0.07947742938995361, - 0.07871298491954803, - 0.07628148794174194, - 0.07224930822849274, - 0.06672640144824982, - 0.05986342951655388, - 0.05184759199619293, - 0.0428975373506546, - 0.03325740620493889, - 0.023190153762698174, - 0.012970385141670704, - 0.002876873128116131, - -0.006815062835812569, - -0.015841040760278702, - -0.023954864591360092, - -0.030935212969779968, - -0.036591675132513046, - -0.040769949555397034, - -0.04335607960820198, - 0.07855398952960968, - 0.07012253254652023, - 0.060258373618125916, - 0.049230560660362244, - 0.03733992576599121, - 0.024910815060138702, - 0.012282255105674267, - -0.00020127929747104645, - -0.012199277058243752, - -0.023384451866149902, - -0.03345170617103577, - -0.042126432061195374, - -0.04917199909687042, - -0.054396241903305054, - -0.057656630873680115, - -0.058864250779151917, - -0.05798614025115967, - -0.05504628270864487, - -0.05012483894824982, - -0.04335607588291168, - 0.07855399698019028, - 0.06159123033285141, - 0.04342847317457199, - 0.024561146274209023, - 0.005503909662365913, - -0.013223391026258469, - -0.031109951436519623, - -0.047667860984802246, - -0.06244545429944992, - -0.07503965497016907, - -0.08510690182447433, - -0.09237261116504669, - -0.09663858264684677, - -0.09778845310211182, - -0.09579084813594818, - -0.09070026874542236, - -0.08265555649995804, - -0.07187618315219879, - -0.05865614116191864, - -0.04335607588291168, - 0.07855399698019028, - 0.05480800196528435, - 0.03004704788327217, - 0.004946531727910042, - -0.01980886235833168, - -0.04354384168982506, - -0.06561101973056793, - -0.08540846407413483, - -0.10239611566066742, - -0.11611062288284302, - -0.12617787718772888, - -0.1323232650756836, - -0.13437917828559875, - -0.13228952884674072, - -0.12611129879951477, - -0.11601303517818451, - -0.10227017104625702, - -0.08525761216878891, - -0.065439373254776, - -0.043356072157621384, - 0.07855400443077087, - 0.050507936626672745, - 0.021564215421676636, - -0.0074876826256513596, - -0.03585528954863548, - -0.06276477128267288, - -0.08748215436935425, - -0.10933321714401245, - -0.1277218908071518, - -0.14214658737182617, - -0.15221384167671204, - -0.15764904022216797, - -0.15830393135547638, - -0.15416066348552704, - -0.1453322321176529, - -0.13205945491790771, - -0.11470438539981842, - -0.09374044090509415, - -0.0697394385933876, - -0.043356072157621384, - 0.07855400443077087, - 0.04915701225399971, - 0.018899213522672653, - -0.011394066736102104, - -0.04089648649096489, - -0.06880329549312592, - -0.09435328841209412, - -0.11684951186180115, - -0.13567833602428436, - -0.15032614767551422, - -0.16039340198040009, - -0.16560548543930054, - -0.16582022607326508, - -0.1610317975282669, - -0.15137074887752533, - -0.13710066676139832, - -0.11861076951026917, - -0.09640544652938843, - -0.07109036296606064, - -0.043356072157621384, - 0.07855400443077087, - 0.0509016178548336, - 0.022340834140777588, - -0.006349308416247368, - -0.034386198967695236, - -0.06100505590438843, - -0.08547981083393097, - -0.1071428507566452, - -0.1254032552242279, - -0.13976293802261353, - -0.1498301923274994, - -0.15533040463924408, - -0.15611356496810913, - -0.15215831995010376, - -0.14357252418994904, - -0.13059037923812866, - -0.11356601119041443, - -0.0929638221859932, - -0.06934575736522675, - -0.043356072157621384 - ], - "y": [ - -0.01933959126472473, - -0.02556236833333969, - -0.033751390874385834, - -0.04368330165743828, - -0.055087167769670486, - -0.06765192002058029, - -0.0810348317027092, - -0.09487085044384003, - -0.1087825670838356, - -0.1223905086517334, - -0.13532346487045288, - -0.14722870290279388, - -0.1577814370393753, - -0.16669383645057678, - -0.1737227737903595, - -0.1786765456199646, - -0.1814199984073639, - -0.18187832832336426, - -0.18003901839256287, - -0.1759522259235382, - -0.019339583814144135, - -0.034028828144073486, - -0.050453368574380875, - -0.06816521286964417, - -0.08668120950460434, - -0.10549628734588623, - -0.12409722805023193, - -0.14197665452957153, - -0.1586468368768692, - -0.17365309596061707, - -0.18658605217933655, - -0.1970929652452469, - -0.2048872411251068, - -0.20975622534751892, - -0.21156713366508484, - -0.21027058362960815, - -0.20590192079544067, - -0.1985803246498108, - -0.18850547075271606, - -0.1759522259235382, - -0.019339583814144135, - -0.04101920872926712, - -0.06424346566200256, - -0.08837886154651642, - -0.11276702582836151, - -0.1367427259683609, - -0.1596519649028778, - -0.18086984753608704, - -0.19981759786605835, - -0.21597838401794434, - -0.22891134023666382, - -0.23826374113559723, - -0.24378043413162231, - -0.245310977101326, - -0.2428135871887207, - -0.23635640740394592, - -0.22611555457115173, - -0.21237041056156158, - -0.1954958438873291, - -0.1759522259235382, - -0.019339583814144135, - -0.04577600955963135, - -0.07362730801105499, - -0.10213377326726913, - -0.130517840385437, - -0.15800520777702332, - -0.18384616076946259, - -0.20733578503131866, - -0.2278333604335785, - -0.24477975070476532, - -0.257712721824646, - -0.2662794888019562, - -0.27024635672569275, - -0.2695051431655884, - -0.2640760838985443, - -0.25410720705986023, - -0.23987047374248505, - -0.221754252910614, - -0.20025265216827393, - -0.1759522259235382, - -0.019339583814144135, - -0.0477837435901165, - -0.07758801430463791, - -0.10793942213058472, - -0.13801003992557526, - -0.1669796109199524, - -0.19405795633792877, - -0.21850645542144775, - -0.2396581768989563, - -0.25693613290786743, - -0.2698690891265869, - -0.278104305267334, - -0.28141701221466064, - -0.27971696853637695, - -0.2730504870414734, - -0.26159942150115967, - -0.24567611515522003, - -0.22571496665477753, - -0.20226038992404938, - -0.1759522259235382, - -0.019339583814144135, - -0.04682484641671181, - -0.07569636404514313, - -0.10516662895679474, - -0.13443174958229065, - -0.16269344091415405, - -0.18918079137802124, - -0.2131713181734085, - -0.23401060700416565, - -0.25113022327423096, - -0.2640632092952728, - -0.27245673537254333, - -0.2760818898677826, - -0.2748398184776306, - -0.26876431703567505, - -0.25802111625671387, - -0.24290333688259125, - -0.22382330894470215, - -0.2013014853000641, - -0.1759522259235382, - -0.019339583814144135, - -0.043003231287002563, - -0.0681573823094368, - -0.09411590546369553, - -0.1201707273721695, - -0.14561112225055695, - -0.169743150472641, - -0.1919085681438446, - -0.21150273084640503, - -0.22799116373062134, - -0.24092413485050201, - -0.24994885921478271, - -0.2548191547393799, - -0.255402147769928, - -0.25168198347091675, - -0.2437601238489151, - -0.23185260593891144, - -0.21628433465957642, - -0.19747987389564514, - -0.1759522259235382, - -0.019339583814144135, - -0.03673302382230759, - -0.05578800290822983, - -0.07598476856946945, - -0.09677238762378693, - -0.11758381873369217, - -0.13785140216350555, - -0.15702231228351593, - -0.17457357048988342, - -0.1900264322757721, - -0.20295938849449158, - -0.2130196988582611, - -0.21993288397789001, - -0.22351041436195374, - -0.22365468740463257, - -0.22036176919937134, - -0.21372146904468536, - -0.20391494035720825, - -0.19120967388153076, - -0.1759522259235382, - -0.019339583814144135, - -0.028693705797195435, - -0.03992864862084389, - -0.05273798853158951, - -0.06677228957414627, - -0.08164873719215393, - -0.09696154296398163, - -0.11229303479194641, - -0.12722498178482056, - -0.14135007560253143, - -0.1542830467224121, - -0.16567111015319824, - -0.1752036213874817, - -0.18262054026126862, - -0.18771959841251373, - -0.19036167860031128, - -0.19047468900680542, - -0.1880556046962738, - -0.183170348405838, - -0.1759522259235382, - -0.01933959126472473, - -0.019756458699703217, - -0.0222979336977005, - -0.02689472585916519, - -0.03342141956090927, - -0.041699979454278946, - -0.051504604518413544, - -0.06256784498691559, - -0.07458791881799698, - -0.08723695576190948, - -0.10016992688179016, - -0.11303405463695526, - -0.12547841668128967, - -0.13716360926628113, - -0.14777082204818726, - -0.15701079368591309, - -0.1646314263343811, - -0.17042487859725952, - -0.1742331087589264, - -0.1759522259235382, - -0.01933959126472473, - -0.010889768600463867, - -0.004806414246559143, - -0.0012554973363876343, - -0.0003338456153869629, - -0.0020666196942329407, - -0.006406545639038086, - -0.013235233724117279, - -0.022366441786289215, - -0.03355106711387634, - -0.04648403450846672, - -0.0608125701546669, - -0.07614581286907196, - -0.09206553548574448, - -0.10813745856285095, - -0.12392321974039078, - -0.13899219036102295, - -0.15293335914611816, - -0.16536641120910645, - -0.1759522259235382, - -0.01933959126472473, - -0.003054477274417877, - 0.01065044105052948, - 0.021401293575763702, - 0.028904855251312256, - 0.032956451177597046, - 0.03344555199146271, - 0.030358821153640747, - 0.023780465126037598, - 0.013889886438846588, - 0.0009569227695465088, - -0.014665663242340088, - -0.032551757991313934, - -0.05221344158053398, - -0.07311438769102097, - -0.09468451142311096, - -0.11633540689945221, - -0.13747650384902954, - -0.15753112733364105, - -0.1759522259235382, - -0.01933959871530533, - 0.002900324761867523, - 0.02239762246608734, - 0.03862041234970093, - 0.05112624168395996, - 0.059573933482170105, - 0.06373310089111328, - 0.06349027156829834, - 0.058852046728134155, - 0.049944981932640076, - 0.0370120108127594, - 0.020405925810337067, - 0.0005796924233436584, - -0.021925896406173706, - -0.04649689048528671, - -0.07246312499046326, - -0.09911628812551498, - -0.12572932243347168, - -0.15157631039619446, - -0.1759522259235382, - -0.01933959871530533, - 0.006329365074634552, - 0.029162153601646423, - 0.048535943031311035, - 0.06392227113246918, - 0.07490144670009613, - 0.08117397129535675, - 0.08256877958774567, - 0.0790477842092514, - 0.0707070380449295, - 0.05777406692504883, - 0.04060165584087372, - 0.019658200442790985, - -0.004485011100769043, - -0.031169384717941284, - -0.05966709181666374, - -0.08920076489448547, - -0.1189647912979126, - -0.14814728498458862, - -0.1759522259235382, - -0.01933959871530533, - 0.0068610310554504395, - 0.030210986733436584, - 0.050073325634002686, - 0.06590628623962402, - 0.07727797329425812, - 0.08387815952301025, - 0.08552686870098114, - 0.08217909932136536, - 0.07392619550228119, - 0.06099322438240051, - 0.04373297095298767, - 0.02261628955602646, - -0.0017808079719543457, - -0.028792865574359894, - -0.057683076709508896, - -0.08766336739063263, - -0.11791595816612244, - -0.14761561155319214, - -0.1759522259235382, - -0.01933959871530533, - 0.004437729716300964, - 0.025430485606193542, - 0.04306602478027344, - 0.05686330795288086, - 0.06644599139690399, - 0.07155267894268036, - 0.07204407453536987, - 0.06790675222873688, - 0.05925358831882477, - 0.04632061719894409, - 0.029460623860359192, - 0.009133495390415192, - -0.014106303453445435, - -0.039624832570552826, - -0.06672604382038116, - -0.09467067569494247, - -0.12269646674394608, - -0.1500389128923416, - -0.1759522259235382, - -0.01933959126472473, - -0.0006779581308364868, - 0.015338651835918427, - 0.0282733291387558, - 0.037773266434669495, - 0.04357929527759552, - 0.04553310573101044, - 0.04358135163784027, - 0.03777727484703064, - 0.028279229998588562, - 0.015346258878707886, - -0.000668846070766449, - -0.01932922750711441, - -0.04012588784098625, - -0.062491536140441895, - -0.08581611514091492, - -0.10946337878704071, - -0.1327883005142212, - -0.15515460073947906, - -0.1759522259235382, - -0.01933959126472473, - -0.007931657135486603, - 0.0010291114449501038, - 0.007298275828361511, - 0.01070483773946762, - 0.011155880987644196, - 0.00863908976316452, - 0.003223128616809845, - -0.004944279789924622, - -0.01564035564661026, - -0.02857331931591034, - -0.043390411883592606, - -0.059687450528144836, - -0.07701990008354187, - -0.09491496533155441, - -0.1128845289349556, - -0.1304384171962738, - -0.14709782600402832, - -0.16240829229354858, - -0.1759522259235382, - -0.01933959126472473, - -0.016537316143512726, - -0.01594746857881546, - -0.017586156725883484, - -0.02140866219997406, - -0.02731071412563324, - -0.03513132780790329, - -0.04465716704726219, - -0.05562841519713402, - -0.06774578243494034, - -0.08067875355482101, - -0.094074547290802, - -0.10756774991750717, - -0.12079031765460968, - -0.13338156044483185, - -0.14499802887439728, - -0.1553228497505188, - -0.16407442092895508, - -0.1710139662027359, - -0.1759522259235382, - -0.01933959126472473, - -0.025562375783920288, - -0.03375139832496643, - -0.04368331655859947, - -0.05508718639612198, - -0.06765194237232208, - -0.08103485405445099, - -0.09487088024616241, - -0.10878259688615799, - -0.12239053845405579, - -0.13532349467277527, - -0.14722871780395508, - -0.1577814519405365, - -0.16669385135173798, - -0.17372280359268188, - -0.1786765605211258, - -0.18142002820968628, - -0.18187834322452545, - -0.18003901839256287, - -0.1759522259235382 - ], - "z": [ - 0.4862542748451233, - 0.49712878465652466, - 0.5034329891204834, - 0.5049949884414673, - 0.5017721652984619, - 0.4938523471355438, - 0.48145169019699097, - 0.4649083614349365, - 0.44467365741729736, - 0.4212994873523712, - 0.3954235017299652, - 0.36775150895118713, - 0.33903831243515015, - 0.3100671172142029, - 0.28162822127342224, - 0.25449734926223755, - 0.22941455245018005, - 0.20706400275230408, - 0.18805542588233948, - 0.172907292842865, - 0.4862542748451233, - 0.49955081939697266, - 0.5082110166549683, - 0.5119986534118652, - 0.5108104348182678, - 0.5046787261962891, - 0.4937707781791687, - 0.47838419675827026, - 0.4589385986328125, - 0.4359644651412964, - 0.4100884795188904, - 0.38201647996902466, - 0.3525141179561615, - 0.322386234998703, - 0.2924545705318451, - 0.26353561878204346, - 0.236418217420578, - 0.21184203028678894, - 0.19047747552394867, - 0.172907292842865, - 0.4862542748451233, - 0.500300407409668, - 0.5096898078918457, - 0.5141662359237671, - 0.5136076807975769, - 0.5080293416976929, - 0.49758344888687134, - 0.4825548529624939, - 0.4633535146713257, - 0.44050318002700806, - 0.41462719440460205, - 0.38643136620521545, - 0.3566848039627075, - 0.32619887590408325, - 0.2958052456378937, - 0.2663329243659973, - 0.23858579993247986, - 0.213320791721344, - 0.19122707843780518, - 0.172907292842865, - 0.4862542748451233, - 0.4992963671684265, - 0.5077090263366699, - 0.511262834072113, - 0.5098608136177063, - 0.5035412311553955, - 0.4924764931201935, - 0.476968377828598, - 0.4574398994445801, - 0.4344237446784973, - 0.4085477590560913, - 0.38051775097846985, - 0.35109832882881165, - 0.3210919499397278, - 0.2913171350955963, - 0.2625860571861267, - 0.2356823980808258, - 0.2113400399684906, - 0.19022300839424133, - 0.172907292842865, - 0.4862542748451233, - 0.4966474175453186, - 0.5024834275245667, - 0.5036031007766724, - 0.49997586011886597, - 0.4917007088661194, - 0.479003369808197, - 0.4622301459312439, - 0.4418386220932007, - 0.41838496923446655, - 0.39250898361206055, - 0.36491647362709045, - 0.3363600969314575, - 0.30761879682540894, - 0.2794765830039978, - 0.252701073884964, - 0.22802263498306274, - 0.20611441135406494, - 0.18757407367229462, - 0.172907292842865, - 0.4862542748451233, - 0.4926406443119049, - 0.4945791959762573, - 0.4920169711112976, - 0.48502397537231445, - 0.47379085421562195, - 0.45862406492233276, - 0.4399372935295105, - 0.4182403087615967, - 0.39412492513656616, - 0.36824893951416016, - 0.34131819009780884, - 0.3140672743320465, - 0.2872394919395447, - 0.26156672835350037, - 0.23774917423725128, - 0.21643655002117157, - 0.1982101947069168, - 0.18356731534004211, - 0.172907292842865, - 0.4862542748451233, - 0.48771026730537415, - 0.48485293984413147, - 0.4777601361274719, - 0.4666253924369812, - 0.4517524838447571, - 0.4335470199584961, - 0.4125056266784668, - 0.3892022371292114, - 0.3642725646495819, - 0.3383965790271759, - 0.3122801184654236, - 0.2866355776786804, - 0.262162446975708, - 0.2395283579826355, - 0.21935062110424042, - 0.2021797001361847, - 0.18848392367362976, - 0.17863693833351135, - 0.172907292842865, - 0.4862542748451233, - 0.48239055275917053, - 0.47435861825942993, - 0.4623774588108063, - 0.4467739760875702, - 0.42797380685806274, - 0.40648967027664185, - 0.3829077184200287, - 0.3578711152076721, - 0.33206281065940857, - 0.30618682503700256, - 0.2809489667415619, - 0.2570376694202423, - 0.23510512709617615, - 0.21574966609477997, - 0.1994991898536682, - 0.18679702281951904, - 0.17798960208892822, - 0.17331722378730774, - 0.172907292842865, - 0.4862542748451233, - 0.47725796699523926, - 0.4642334580421448, - 0.4475359320640564, - 0.42762088775634766, - 0.40503159165382385, - 0.3803841769695282, - 0.3543510138988495, - 0.32764214277267456, - 0.3009861707687378, - 0.2751101851463318, - 0.2507200241088867, - 0.22848094999790192, - 0.2089996337890625, - 0.19280746579170227, - 0.18034610152244568, - 0.17195548117160797, - 0.16786444187164307, - 0.16818463802337646, - 0.172907292842865, - 0.4862542748451233, - 0.47286874055862427, - 0.4555746912956238, - 0.4348438084125519, - 0.41124165058135986, - 0.3854120075702667, - 0.35805943608283997, - 0.32993003726005554, - 0.30179110169410706, - 0.274410218000412, - 0.2485342174768448, - 0.22486896812915802, - 0.20405998826026917, - 0.18667487800121307, - 0.17318788170814514, - 0.16396686434745789, - 0.15926337242126465, - 0.15920567512512207, - 0.16379539668560028, - 0.172907292842865, - 0.4862542748451233, - 0.4696984589099884, - 0.44932061433792114, - 0.42567652463912964, - 0.39941123127937317, - 0.37124115228652954, - 0.3419346809387207, - 0.3122912049293518, - 0.2831193804740906, - 0.2552148699760437, - 0.2293388843536377, - 0.20619723200798035, - 0.18642115592956543, - 0.17055010795593262, - 0.15901701152324677, - 0.15213643014431, - 0.1500960886478424, - 0.15295159816741943, - 0.16062511503696442, - 0.172907292842865, - 0.4862542748451233, - 0.4680907130241394, - 0.44614893198013306, - 0.4210274815559387, - 0.39341163635253906, - 0.3640546202659607, - 0.3337572515010834, - 0.3033459782600403, - 0.27365028858184814, - 0.2454802691936493, - 0.2196042835712433, - 0.1967281699180603, - 0.1774759292602539, - 0.16237269341945648, - 0.15183047950267792, - 0.1461368352174759, - 0.1454470455646515, - 0.14977994561195374, - 0.15901736915111542, - 0.172907292842865, - 0.4862542748451233, - 0.46821969747543335, - 0.4464034140110016, - 0.4214004874229431, - 0.39389297366142273, - 0.36463120579719543, - 0.3344133496284485, - 0.3040636479854584, - 0.2744100093841553, - 0.24626129865646362, - 0.22038531303405762, - 0.19748787581920624, - 0.1781936138868332, - 0.1630287915468216, - 0.15240706503391266, - 0.14661818742752075, - 0.14582005143165588, - 0.15003441274166107, - 0.15914635360240936, - 0.172907292842865, - 0.4862542748451233, - 0.4700714349746704, - 0.45005643367767334, - 0.4267551302909851, - 0.4008031487464905, - 0.37290844321250916, - 0.343831866979599, - 0.31436651945114136, - 0.28531622886657715, - 0.25747331976890564, - 0.23159733414649963, - 0.20839408040046692, - 0.18849648535251617, - 0.1724472939968109, - 0.16068430244922638, - 0.1535283625125885, - 0.15117467939853668, - 0.15368743240833282, - 0.1609981209039688, - 0.172907292842865, - 0.4862542748451233, - 0.4734452962875366, - 0.45671212673187256, - 0.4365110993385315, - 0.4133932888507843, - 0.3879893124103546, - 0.36099210381507874, - 0.3331380784511566, - 0.3051869869232178, - 0.2779013216495514, - 0.2520253360271454, - 0.22826486825942993, - 0.20726802945137024, - 0.18960753083229065, - 0.17576518654823303, - 0.16611850261688232, - 0.16093064844608307, - 0.16034312546253204, - 0.16437198221683502, - 0.172907292842865, - 0.4862542748451233, - 0.47797566652297974, - 0.46564924716949463, - 0.44961121678352356, - 0.4302990734577179, - 0.40823960304260254, - 0.38403451442718506, - 0.35834407806396484, - 0.33186906576156616, - 0.30533161759376526, - 0.27945563197135925, - 0.2549469470977783, - 0.23247404396533966, - 0.21264997124671936, - 0.19601547718048096, - 0.18302427232265472, - 0.17403076589107513, - 0.1692802459001541, - 0.16890233755111694, - 0.172907292842865, - 0.4862542748451233, - 0.48317158222198486, - 0.475899338722229, - 0.4646359086036682, - 0.44968852400779724, - 0.43146491050720215, - 0.4104621708393097, - 0.38725319504737854, - 0.3624710738658905, - 0.3367917537689209, - 0.3109157681465149, - 0.2855489253997803, - 0.26138314604759216, - 0.2390775978565216, - 0.21924078464508057, - 0.20241372287273407, - 0.1890554577112198, - 0.17953035235404968, - 0.17409825325012207, - 0.172907292842865, - 0.4862542748451233, - 0.48847001791000366, - 0.4863516688346863, - 0.4799569845199585, - 0.46946045756340027, - 0.4551483988761902, - 0.4374111294746399, - 0.4167325794696808, - 0.3936767578125, - 0.3688725233078003, - 0.3429965376853943, - 0.31675460934638977, - 0.2908625304698944, - 0.2660265862941742, - 0.2429242581129074, - 0.2221856713294983, - 0.20437654852867126, - 0.18998265266418457, - 0.17939665913581848, - 0.172907292842865, - 0.4862542748451233, - 0.49329674243927, - 0.49587351083755493, - 0.4939141869544983, - 0.4874722957611084, - 0.4767235517501831, - 0.46196112036705017, - 0.4435877203941345, - 0.42210447788238525, - 0.3980974555015564, - 0.3722214698791504, - 0.3451823592185974, - 0.31771764159202576, - 0.2905765771865845, - 0.2644994258880615, - 0.24019750952720642, - 0.21833373606204987, - 0.19950449466705322, - 0.18422341346740723, - 0.172907292842865, - 0.4862542748451233, - 0.49712878465652466, - 0.5034329891204834, - 0.5049949884414673, - 0.5017721652984619, - 0.4938523769378662, - 0.48145169019699097, - 0.4649083614349365, - 0.44467365741729736, - 0.4212995171546936, - 0.3954235315322876, - 0.36775150895118713, - 0.33903831243515015, - 0.3100671172142029, - 0.28162825107574463, - 0.25449734926223755, - 0.22941455245018005, - 0.20706400275230408, - 0.18805544078350067, - 0.172907292842865 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.06190788745880127, - 0.095632404088974, - 0.1301124542951584, - 0.16440752148628235, - 0.19758212566375732, - 0.22873130440711975, - 0.2570054531097412, - 0.28163331747055054, - 0.3019430637359619, - 0.31738072633743286, - 0.32752519845962524, - 0.3320998549461365, - 0.33097973465919495, - 0.32419553399086, - 0.3119322657585144, - 0.2945244014263153, - 0.27244681119918823, - 0.24630175530910492, - 0.21680235862731934, - 0.18475328385829926, - 0.06190788745880127, - 0.10023177415132523, - 0.13918574154376984, - 0.1777072250843048, - 0.21474546194076538, - 0.2492901235818863, - 0.2803989350795746, - 0.3072233498096466, - 0.32903164625167847, - 0.3452289402484894, - 0.35537344217300415, - 0.35918840765953064, - 0.356569766998291, - 0.34758901596069336, - 0.33249107003211975, - 0.31168773770332336, - 0.2857465147972107, - 0.2553750276565552, - 0.22140172123908997, - 0.18475328385829926, - 0.06190788745880127, - 0.10076893866062164, - 0.14024542272090912, - 0.1792605072259903, - 0.21674998104572296, - 0.25169122219085693, - 0.28313106298446655, - 0.31021201610565186, - 0.33219534158706665, - 0.34848135709762573, - 0.3586258590221405, - 0.3623521327972412, - 0.35955846309661865, - 0.3503211736679077, - 0.3348921537399292, - 0.31369227170944214, - 0.2872998118400574, - 0.25643473863601685, - 0.22193889319896698, - 0.18475328385829926, - 0.06190788745880127, - 0.09718568623065948, - 0.13317666947841644, - 0.1688990592956543, - 0.20337848365306854, - 0.23567436635494232, - 0.26490581035614014, - 0.290275514125824, - 0.3110913634300232, - 0.3267855644226074, - 0.3369300365447998, - 0.341248095035553, - 0.33962196111679077, - 0.3320959210395813, - 0.3188753128051758, - 0.30032074451446533, - 0.27693837881088257, - 0.24936595559120178, - 0.21835564076900482, - 0.18475328385829926, - 0.06190788745880127, - 0.08987031877040863, - 0.11874546855688095, - 0.14774568378925323, - 0.17607992887496948, - 0.20297527313232422, - 0.22769814729690552, - 0.24957415461540222, - 0.2680065631866455, - 0.28249257802963257, - 0.29263705015182495, - 0.2981633245944977, - 0.29892057180404663, - 0.2948882281780243, - 0.2861762046813965, - 0.27302220463752747, - 0.2557849884033203, - 0.2349347621202469, - 0.21104027330875397, - 0.18475328385829926, - 0.06190789118409157, - 0.07961557060480118, - 0.09851568937301636, - 0.11809269338846207, - 0.1378125697374344, - 0.1571374088525772, - 0.17554008960723877, - 0.19251863658428192, - 0.20760990679264069, - 0.22040227055549622, - 0.230546772480011, - 0.23776668310165405, - 0.24186506867408752, - 0.24273017048835754, - 0.24033834040164948, - 0.23475486040115356, - 0.22613197565078735, - 0.2147049903869629, - 0.20078551769256592, - 0.18475328385829926, - 0.061907894909381866, - 0.06753270328044891, - 0.07467953860759735, - 0.08315344154834747, - 0.09272326529026031, - 0.10312798619270325, - 0.11408378928899765, - 0.12529180943965912, - 0.13644632697105408, - 0.14724309742450714, - 0.15738758444786072, - 0.16660308837890625, - 0.17463824152946472, - 0.18127384781837463, - 0.1863289177417755, - 0.1896655410528183, - 0.19119274616241455, - 0.1908688247203827, - 0.18870264291763306, - 0.18475328385829926, - 0.061907898634672165, - 0.054931074380874634, - 0.04982002079486847, - 0.04671413451433182, - 0.0456981435418129, - 0.04679977148771286, - 0.04998895525932312, - 0.05517870932817459, - 0.062227457761764526, - 0.0709429681301117, - 0.08108745515346527, - 0.0923842191696167, - 0.10452514886856079, - 0.1171790286898613, - 0.13000069558620453, - 0.14264041185379028, - 0.1547534316778183, - 0.1660093069076538, - 0.17610102891921997, - 0.18475329875946045, - 0.06190790235996246, - 0.043176278471946716, - 0.026631057262420654, - 0.012723550200462341, - 0.001833103597164154, - -0.00574319064617157, - -0.009798705577850342, - -0.010222792625427246, - -0.007003903388977051, - -0.00022981315851211548, - 0.009914681315422058, - 0.023152858018875122, - 0.039123646914958954, - 0.05739135295152664, - 0.0774577185511589, - 0.09877538681030273, - 0.12076284736394882, - 0.1428203582763672, - 0.16434621810913086, - 0.18475329875946045, - 0.06190790235996246, - 0.03354211896657944, - 0.0076255351305007935, - -0.015134915709495544, - -0.034118399024009705, - -0.04880706965923309, - -0.05880029499530792, - -0.06382545828819275, - -0.06374548375606537, - -0.05856256186962128, - -0.0484180748462677, - -0.033588722348213196, - -0.014479026198387146, - 0.008389778435230255, - 0.03439383953809738, - 0.06282386183738708, - 0.09290437400341034, - 0.12381482869386673, - 0.15471206605434418, - 0.18475329875946045, - 0.06190790608525276, - 0.027072615921497345, - -0.005137011408805847, - -0.03384236991405487, - -0.05826045572757721, - -0.07772520184516907, - -0.09170570969581604, - -0.0998205840587616, - -0.10184843838214874, - -0.09773401916027069, - -0.08758953213691711, - -0.07169167697429657, - -0.050474151968955994, - -0.024515658617019653, - 0.005475692451000214, - 0.03868180513381958, - 0.07419693470001221, - 0.11105228960514069, - 0.14824256300926208, - 0.18475329875946045, - 0.06190790608525276, - 0.024468831717967987, - -0.010273545980453491, - -0.04137153923511505, - -0.0679769217967987, - -0.08936388790607452, - -0.10494914650917053, - -0.11430750787258148, - -0.11718373000621796, - -0.11349934339523315, - -0.10335485637187958, - -0.08702696859836578, - -0.06496107578277588, - -0.037759095430374146, - -0.006162986159324646, - 0.028965353965759277, - 0.06666775047779083, - 0.10591575503349304, - 0.14563877880573273, - 0.18475329875946045, - 0.06190790608525276, - 0.026012934744358063, - -0.007227465510368347, - -0.03690657019615173, - -0.06221483647823334, - -0.082461878657341, - -0.09709547460079193, - -0.10571642220020294, - -0.10808955132961273, - -0.10415013134479523, - -0.09400564432144165, - -0.07793278992176056, - -0.05636999011039734, - -0.029905423521995544, - 0.0007390007376670837, - 0.03472742438316345, - 0.07113273441791534, - 0.10896183550357819, - 0.1471828818321228, - 0.18475329875946045, - 0.06190790608525276, - 0.03153759986162186, - 0.0036711692810058594, - -0.02093125879764557, - -0.0415986031293869, - -0.0577671080827713, - -0.06899574398994446, - -0.07497823238372803, - -0.0755513459444046, - -0.07069948315620422, - -0.06055499613285065, - -0.04539458453655243, - -0.025631800293922424, - -0.0018056929111480713, - 0.025433801114559174, - 0.055343665182590485, - 0.08710804581642151, - 0.1198604628443718, - 0.1527075469493866, - 0.18475329875946045, - 0.06190790235996246, - 0.04044412821531296, - 0.02124127745628357, - 0.004823170602321625, - -0.008362382650375366, - -0.017955675721168518, - -0.023695066571235657, - -0.025423958897590637, - -0.02309522032737732, - -0.01677238941192627, - -0.006627902388572693, - 0.0070615410804748535, - 0.023922473192214966, - 0.043494999408721924, - 0.06524523347616196, - 0.08857989311218262, - 0.11286246031522751, - 0.1374305784702301, - 0.1616140753030777, - 0.18475329875946045, - 0.061907898634672165, - 0.051767364144325256, - 0.04357888549566269, - 0.03756583482027054, - 0.03389221429824829, - 0.03265824168920517, - 0.03389757126569748, - 0.03757640719413757, - 0.04359438270330429, - 0.051787368953228, - 0.06193186342716217, - 0.07375115156173706, - 0.08692283928394318, - 0.10108763724565506, - 0.11585915833711624, - 0.13083449006080627, - 0.14560513198375702, - 0.15976817905902863, - 0.1729373037815094, - 0.18475329875946045, - 0.061907894909381866, - 0.06428027898073196, - 0.06826340407133102, - 0.0737486332654953, - 0.08058629930019379, - 0.08858993649482727, - 0.0975412130355835, - 0.10719594359397888, - 0.11729079484939575, - 0.1275503784418106, - 0.13769486546516418, - 0.14744755625724792, - 0.15654237568378448, - 0.16473126411437988, - 0.17179085314273834, - 0.17752857506275177, - 0.18178792297840118, - 0.18445269763469696, - 0.1854502260684967, - 0.18475329875946045, - 0.06190789118409157, - 0.07662688940763474, - 0.09261985123157501, - 0.10945051908493042, - 0.1266597956418991, - 0.1437782645225525, - 0.16033896803855896, - 0.17589019238948822, - 0.19000771641731262, - 0.20230644941329956, - 0.21245095133781433, - 0.2201644778251648, - 0.22523662447929382, - 0.22752903401851654, - 0.22697919607162476, - 0.2236020863056183, - 0.2174898087978363, - 0.20880913734436035, - 0.19779685139656067, - 0.18475328385829926, - 0.06190789118409157, - 0.08746924996376038, - 0.1140088215470314, - 0.14080266654491425, - 0.16711992025375366, - 0.19224271178245544, - 0.21548575162887573, - 0.2362150400876999, - 0.25386518239974976, - 0.26795458793640137, - 0.27809908986091614, - 0.28402191400527954, - 0.2855614721775055, - 0.2826758027076721, - 0.2754436433315277, - 0.26406219601631165, - 0.24884195625782013, - 0.23019811511039734, - 0.2086392045021057, - 0.18475328385829926, - 0.06190788745880127, - 0.095632404088974, - 0.13011246919631958, - 0.16440753638744354, - 0.19758212566375732, - 0.22873131930828094, - 0.2570054531097412, - 0.28163331747055054, - 0.3019430935382843, - 0.31738072633743286, - 0.32752522826194763, - 0.3320998549461365, - 0.33097976446151733, - 0.3241955637931824, - 0.3119322657585144, - 0.2945244312286377, - 0.27244681119918823, - 0.2463017702102661, - 0.21680235862731934, - 0.18475328385829926 - ], - "y": [ - -0.04072345793247223, - -0.02615053951740265, - -0.009822722524404526, - 0.00781460665166378, - 0.026280343532562256, - 0.045070793479681015, - 0.06367340683937073, - 0.0815807580947876, - 0.09830436110496521, - 0.1133880540728569, - 0.12642039358615875, - 0.13704589009284973, - 0.1449747085571289, - 0.14999055862426758, - 0.15195664763450623, - 0.1508193016052246, - 0.1466095894575119, - 0.1394423246383667, - 0.12951302528381348, - 0.11709249764680862, - -0.04072345793247223, - -0.03798826038837433, - -0.0331752672791481, - -0.026415765285491943, - -0.017894137650728226, - -0.007842831313610077, - 0.0034639835357666016, - 0.015717875212430954, - 0.028584610670804977, - 0.041713207960128784, - 0.054745547473430634, - 0.0673261359333992, - 0.07911182194948196, - 0.08978112787008286, - 0.09904301166534424, - 0.10664481669664383, - 0.11237921565771103, - 0.11608978360891342, - 0.1176752969622612, - 0.11709249764680862, - -0.04072345048189163, - -0.05000575631856918, - -0.05688246339559555, - -0.061165980994701385, - -0.06273948401212692, - -0.06156004220247269, - -0.057659827172756195, - -0.05114523321390152, - -0.042193956673145294, - -0.031050167977809906, - -0.018017828464508057, - -0.003452431410551071, - 0.012248711660504341, - 0.02865730971097946, - 0.045325785875320435, - 0.061799466609954834, - 0.07762899994850159, - 0.09238259494304657, - 0.10565780103206635, - 0.11709250509738922, - -0.04072345048189163, - -0.06090075522661209, - -0.07837527245283127, - -0.09267033636569977, - -0.10339602828025818, - -0.1102597564458847, - -0.11307433247566223, - -0.11176295578479767, - -0.10636140406131744, - -0.09701701998710632, - -0.08398468047380447, - -0.06761988252401352, - -0.04836900532245636, - -0.02675718069076538, - -0.003373950719833374, - 0.021142933517694473, - 0.0461246520280838, - 0.07088978588581085, - 0.09476280212402344, - 0.11709250509738922, - -0.040723443031311035, - -0.06949260085821152, - -0.09532460570335388, - -0.11751481890678406, - -0.13545797765254974, - -0.14866460859775543, - -0.15677447617053986, - -0.15956638753414154, - -0.15696418285369873, - -0.14903879165649414, - -0.1360064595937729, - -0.11822265386581421, - -0.09617243707180023, - -0.0704573392868042, - -0.04177876561880112, - -0.010919023305177689, - 0.021280160173773766, - 0.05394044518470764, - 0.08617095649242401, - 0.11709251254796982, - -0.040723443031311035, - -0.07485024631023407, - -0.10589374601840973, - -0.13300715386867523, - -0.1554509401321411, - -0.17261281609535217, - -0.18402470648288727, - -0.18937531113624573, - -0.18851865828037262, - -0.18147815763950348, - -0.16844582557678223, - -0.1497771292924881, - -0.12598136067390442, - -0.09770756959915161, - -0.06572700291872025, - -0.03091198205947876, - 0.0057878270745277405, - 0.04337131232023239, - 0.08081331849098206, - 0.11709251254796982, - -0.040723443031311035, - -0.07639309763908386, - -0.10893736779689789, - -0.13746853172779083, - -0.1612083464860916, - -0.1795092225074768, - -0.1918720006942749, - -0.19795945286750793, - -0.19760549068450928, - -0.19081978499889374, - -0.17778745293617249, - -0.15886396169662476, - -0.13456550240516663, - -0.10555486381053925, - -0.07262342423200607, - -0.03666938841342926, - 0.0013264566659927368, - 0.040327683091163635, - 0.07927046716213226, - 0.11709251254796982, - -0.040723443031311035, - -0.07395396381616592, - -0.10412563383579254, - -0.13041545450687408, - -0.15210631489753723, - -0.16860651969909668, - -0.17946602404117584, - -0.18438857793807983, - -0.1832399219274521, - -0.17605137825012207, - -0.16301904618740082, - -0.14449839293956757, - -0.12099462747573853, - -0.09314888715744019, - -0.06172070652246475, - -0.027567356824874878, - 0.008379532024264336, - 0.04513941705226898, - 0.0817095935344696, - 0.11709251254796982, - -0.040723443031311035, - -0.06779716908931732, - -0.0919799953699112, - -0.11261224746704102, - -0.12913118302822113, - -0.1410861611366272, - -0.14815111458301544, - -0.15013332664966583, - -0.1469787061214447, - -0.13877332210540771, - -0.12574099004268646, - -0.10823717713356018, - -0.08673938363790512, - -0.061833977699279785, - -0.03420034795999527, - -0.004592236131429672, - 0.026182739064097404, - 0.057285062968730927, - 0.0878663882613182, - 0.11709250509738922, - -0.04072345048189163, - -0.05858989804983139, - -0.07381658256053925, - -0.08598817139863968, - -0.09477266669273376, - -0.09993042051792145, - -0.1013207733631134, - -0.0989057868719101, - -0.09275132417678833, - -0.083025261759758, - -0.06999292224645615, - -0.05400979518890381, - -0.03551183640956879, - -0.015003625303506851, - 0.006955405697226524, - 0.02976628765463829, - 0.05280680954456329, - 0.07544846832752228, - 0.09707365930080414, - 0.11709250509738922, - -0.04072345048189163, - -0.047329895198345184, - -0.05160371959209442, - -0.05342835187911987, - -0.052754029631614685, - -0.049599140882492065, - -0.04404974728822708, - -0.03625721484422684, - -0.02643410861492157, - -0.014848370105028152, - -0.001816030591726303, - 0.012307418510317802, - 0.027136730030179024, - 0.04226739704608917, - 0.05728669464588165, - 0.07178492099046707, - 0.0853666365146637, - 0.0976613312959671, - 0.10833366960287094, - 0.11709250509738922, - -0.04072345793247223, - -0.03523735702037811, - -0.02774849534034729, - -0.01846114918589592, - -0.0076286643743515015, - 0.004453487694263458, - 0.017455728724598885, - 0.031023405492305756, - 0.04478640854358673, - 0.058369338512420654, - 0.0714016705751419, - 0.08352793753147125, - 0.09441734850406647, - 0.10377287864685059, - 0.11133932322263718, - 0.11691029369831085, - 0.12033383548259735, - 0.12151656299829483, - 0.12042620033025742, - 0.11709249764680862, - -0.04072345793247223, - -0.023622702807188034, - -0.004836000502109528, - 0.015124192461371422, - 0.035713400691747665, - 0.05637001618742943, - 0.0765305832028389, - 0.09564515948295593, - 0.1131923645734787, - 0.1286935657262802, - 0.14172589778900146, - 0.15193389356136322, - 0.15903910994529724, - 0.16284774243831635, - 0.16325587034225464, - 0.16025236248970032, - 0.15391917526721954, - 0.1444290578365326, - 0.1320408582687378, - 0.11709249764680862, - -0.04072345793247223, - -0.013744547963142395, - 0.01465086080133915, - 0.043688200414180756, - 0.07257542014122009, - 0.10052451491355896, - 0.1267731785774231, - 0.15060538053512573, - 0.17137101292610168, - 0.18850363790988922, - 0.20153596997261047, - 0.2101125419139862, - 0.21399933099746704, - 0.21309034526348114, - 0.20741038024425507, - 0.19711437821388245, - 0.18248318135738373, - 0.16391591727733612, - 0.14191901683807373, - 0.11709249764680862, - -0.040723465383052826, - -0.0066733695566654205, - 0.028600340709090233, - 0.06413547694683075, - 0.09896275401115417, - 0.13213211297988892, - 0.1627388745546341, - 0.18994811177253723, - 0.21301761269569397, - 0.2313181310892105, - 0.24435046315193176, - 0.2517591416835785, - 0.25334206223487854, - 0.24905604124069214, - 0.23901797831058502, - 0.22350171208381653, - 0.20293046534061432, - 0.1778654009103775, - 0.1489901840686798, - 0.11709249019622803, - -0.040723465383052826, - -0.0031754150986671448, - 0.03550083935260773, - 0.07425028085708618, - 0.11201594769954681, - 0.14776766300201416, - 0.18053027987480164, - 0.20941007137298584, - 0.23361927270889282, - 0.25249746441841125, - 0.2655298113822937, - 0.27236080169677734, - 0.27280402183532715, - 0.2668474316596985, - 0.2546535134315491, - 0.23655492067337036, - 0.21304526925086975, - 0.18476589024066925, - 0.15248814225196838, - 0.11709249019622803, - -0.040723465383052826, - -0.0036297477781772614, - 0.03460455685853958, - 0.0729365199804306, - 0.11032053828239441, - 0.14573684334754944, - 0.17821943759918213, - 0.20688222348690033, - 0.23094339668750763, - 0.24974659085273743, - 0.2627789378166199, - 0.26968491077423096, - 0.27027618885040283, - 0.264536589384079, - 0.25262272357940674, - 0.23485949635505676, - 0.21173150837421417, - 0.1838696151971817, - 0.15203380584716797, - 0.11709249019622803, - -0.040723465383052826, - -0.007987141609191895, - 0.02600862644612789, - 0.06033652275800705, - 0.09406016767024994, - 0.12625963985919952, - 0.15605668723583221, - 0.1826384961605072, - 0.20527996122837067, - 0.2233635038137436, - 0.23639583587646484, - 0.2440214902162552, - 0.2460324466228485, - 0.24237386882305145, - 0.23314550518989563, - 0.2185991257429123, - 0.19913150370121002, - 0.17527368664741516, - 0.14767640829086304, - 0.11709249019622803, - -0.04072345793247223, - -0.0157754085958004, - 0.010644538328051567, - 0.037815697491168976, - 0.06499691307544708, - 0.09144677221775055, - 0.11644375324249268, - 0.13930605351924896, - 0.1594099998474121, - 0.17620724439620972, - 0.18923957645893097, - 0.19815154373645782, - 0.20270000398159027, - 0.20276090502738953, - 0.19833262264728546, - 0.18953588604927063, - 0.17661067843437195, - 0.15990959107875824, - 0.13988815248012543, - 0.11709249764680862, - -0.04072345793247223, - -0.026150546967983246, - -0.009822733700275421, - 0.007814591750502586, - 0.026280321180820465, - 0.045070767402648926, - 0.06367337703704834, - 0.08158071339130402, - 0.09830433130264282, - 0.11338801681995392, - 0.12642034888267517, - 0.13704586029052734, - 0.14497466385364532, - 0.1499905288219452, - 0.15195661783218384, - 0.15081928670406342, - 0.1466095745563507, - 0.1394423246383667, - 0.12951301038265228, - 0.11709249764680862 - ], - "z": [ - 0.44346883893013, - 0.42608141899108887, - 0.4134747385978699, - 0.40599265694618225, - 0.40383926033973694, - 0.40707331895828247, - 0.4156065583229065, - 0.4292062819004059, - 0.4475014805793762, - 0.46999311447143555, - 0.49606770277023315, - 0.5250139236450195, - 0.5560423135757446, - 0.5883064270019531, - 0.6209261417388916, - 0.6530117392539978, - 0.6836880445480347, - 0.7121182084083557, - 0.7375267744064331, - 0.7592206001281738, - 0.44346883893013, - 0.43020862340927124, - 0.4216165542602539, - 0.4179270267486572, - 0.4192405939102173, - 0.4255215525627136, - 0.4365984797477722, - 0.4521692395210266, - 0.47180911898612976, - 0.49498242139816284, - 0.5210570096969604, - 0.5493215918540955, - 0.579005241394043, - 0.6092982888221741, - 0.6393743753433228, - 0.6684131026268005, - 0.6956223845481873, - 0.7202600240707397, - 0.7416539192199707, - 0.7592206001281738, - 0.44346883893013, - 0.436006098985672, - 0.4330533742904663, - 0.4346911907196045, - 0.4408748745918274, - 0.45143580436706543, - 0.4660857915878296, - 0.4844253361225128, - 0.5059540867805481, - 0.5300849080085754, - 0.556159496307373, - 0.5834665894508362, - 0.6112613677978516, - 0.6387856602668762, - 0.6652886271476746, - 0.6900473833084106, - 0.7123865485191345, - 0.7316968441009521, - 0.7474514245986938, - 0.7592206001281738, - 0.44346883893013, - 0.4428456127643585, - 0.4465458393096924, - 0.45446860790252686, - 0.4663977324962616, - 0.48200786113739014, - 0.5008732080459595, - 0.5224791169166565, - 0.5462363362312317, - 0.5714967250823975, - 0.5975713133811951, - 0.623748779296875, - 0.6493151783943176, - 0.6735730171203613, - 0.6958606839179993, - 0.7155702114105225, - 0.7321639657020569, - 0.7451893091201782, - 0.7542909383773804, - 0.7592206001281738, - 0.44346883893013, - 0.44998598098754883, - 0.4606318473815918, - 0.4751160144805908, - 0.49304330348968506, - 0.513924777507782, - 0.5371909141540527, - 0.5622069239616394, - 0.5882905125617981, - 0.6147302389144897, - 0.6408047676086426, - 0.6658030152320862, - 0.6890429258346558, - 0.7098907232284546, - 0.7277776002883911, - 0.7422157526016235, - 0.7528113722801208, - 0.7592753171920776, - 0.7614313364028931, - 0.7592206001281738, - 0.4434688091278076, - 0.4566534757614136, - 0.4737849533557892, - 0.494395911693573, - 0.5179241895675659, - 0.5437278747558594, - 0.5711032748222351, - 0.5993035435676575, - 0.6275594830513, - 0.655100405216217, - 0.6811749935150146, - 0.7050719857215881, - 0.7261396050453186, - 0.7438031435012817, - 0.7575807571411133, - 0.7670966386795044, - 0.772091269493103, - 0.7724283933639526, - 0.7680988311767578, - 0.7592206001281738, - 0.4434688091278076, - 0.4621255397796631, - 0.48457980155944824, - 0.5102190971374512, - 0.5383440852165222, - 0.5681875348091125, - 0.5989354252815247, - 0.629749059677124, - 0.6597878932952881, - 0.6882325410842896, - 0.7143071293830872, - 0.7373003363609314, - 0.7565851211547852, - 0.7716352939605713, - 0.7820403575897217, - 0.7875165939331055, - 0.787914514541626, - 0.7832232713699341, - 0.7735708951950073, - 0.7592206001281738, - 0.4434688091278076, - 0.4658091962337494, - 0.49184662103652954, - 0.5208708643913269, - 0.5520902276039124, - 0.5846531391143799, - 0.6176713109016418, - 0.6502441763877869, - 0.6814832091331482, - 0.7105362415313721, - 0.7366107702255249, - 0.7589956521987915, - 0.777080237865448, - 0.7903711795806885, - 0.7985060214996338, - 0.8012627363204956, - 0.7985662221908569, - 0.7904900908470154, - 0.7772545218467712, - 0.7592206001281738, - 0.4434688091278076, - 0.4673052430152893, - 0.494797945022583, - 0.52519690990448, - 0.5576730370521545, - 0.5913403630256653, - 0.6252806186676025, - 0.6585679650306702, - 0.6902943849563599, - 0.7195945382118225, - 0.7456691265106201, - 0.767806887626648, - 0.7854039669036865, - 0.7979804873466492, - 0.8051932454109192, - 0.8068455457687378, - 0.8028923273086548, - 0.7934414148330688, - 0.7787505388259888, - 0.7592206001281738, - 0.4434688091278076, - 0.46645158529281616, - 0.4931139051914215, - 0.522728443145752, - 0.5544874668121338, - 0.5875245928764343, - 0.6209387183189392, - 0.6538184285163879, - 0.6852667331695557, - 0.714425802230835, - 0.7405003905296326, - 0.762779176235199, - 0.7806544303894043, - 0.7936385869979858, - 0.8013774752616882, - 0.803659975528717, - 0.8004238605499268, - 0.791757345199585, - 0.7778968811035156, - 0.7592206001281738, - 0.4434688091278076, - 0.46334072947502136, - 0.4869770407676697, - 0.5137330293655396, - 0.5428787469863892, - 0.5736193060874939, - 0.6051161885261536, - 0.6365101337432861, - 0.6669449210166931, - 0.6955902576446533, - 0.7216648459434509, - 0.7444573640823364, - 0.7633461952209473, - 0.7778160572052002, - 0.7874721884727478, - 0.7920512557029724, - 0.7914283871650696, - 0.7856205105781555, - 0.7747860550880432, - 0.7592206001281738, - 0.4434688091278076, - 0.45830976963043213, - 0.47705236077308655, - 0.49918532371520996, - 0.52410489320755, - 0.5511313676834106, - 0.5795275568962097, - 0.6085188388824463, - 0.63731449842453, - 0.6651288866996765, - 0.6912034749984741, - 0.7148269414901733, - 0.7353549003601074, - 0.7522274255752563, - 0.7649842500686646, - 0.7732774019241333, - 0.77688068151474, - 0.77569580078125, - 0.7697551250457764, - 0.7592206001281738, - 0.4434688091278076, - 0.45190390944480896, - 0.46441537141799927, - 0.48066189885139465, - 0.5002003312110901, - 0.5224977135658264, - 0.5469458103179932, - 0.572877824306488, - 0.5995863080024719, - 0.6263427734375, - 0.6524173617362976, - 0.67709881067276, - 0.6997138261795044, - 0.7196456789970398, - 0.7363505363464355, - 0.7493728399276733, - 0.7583572864532471, - 0.7630587816238403, - 0.7633492350578308, - 0.7592206001281738, - 0.44346883893013, - 0.44481730461120605, - 0.45043545961380005, - 0.4601700007915497, - 0.473755419254303, - 0.49082115292549133, - 0.510901689529419, - 0.5334492325782776, - 0.5578488111495972, - 0.5834348797798157, - 0.6095094680786133, - 0.6353613138198853, - 0.6602852940559387, - 0.6836014986038208, - 0.7046740055084229, - 0.7229279279708862, - 0.7378653287887573, - 0.7490788698196411, - 0.7562626004219055, - 0.7592206001281738, - 0.44346883893013, - 0.43781793117523193, - 0.4366275668144226, - 0.4399303197860718, - 0.4476360082626343, - 0.4595344662666321, - 0.4753011167049408, - 0.49450594186782837, - 0.5166250467300415, - 0.5410550832748413, - 0.5671296119689941, - 0.5941374897956848, - 0.6213419437408447, - 0.648000955581665, - 0.6733872890472412, - 0.6968084573745728, - 0.7176256775856018, - 0.7352710366249084, - 0.7492632269859314, - 0.7592206001281738, - 0.44346883893013, - 0.43166422843933105, - 0.42448803782463074, - 0.4221360683441162, - 0.4246724247932434, - 0.4320279359817505, - 0.4440019726753235, - 0.46026790142059326, - 0.4803820550441742, - 0.5037957429885864, - 0.529870331287384, - 0.5578945279121399, - 0.5871039628982544, - 0.6167018413543701, - 0.6458807587623596, - 0.6738448739051819, - 0.6998314261436462, - 0.7231314778327942, - 0.7431095242500305, - 0.7592206001281738, - 0.44346883893013, - 0.4270230531692505, - 0.4153323173522949, - 0.40871554613113403, - 0.40735316276550293, - 0.41128236055374146, - 0.42039597034454346, - 0.4344453811645508, - 0.45304739475250244, - 0.47569453716278076, - 0.5017691254615784, - 0.5305598378181458, - 0.5612813830375671, - 0.5930957794189453, - 0.6251351833343506, - 0.6565256118774414, - 0.6864109039306641, - 0.7139757871627808, - 0.7384684085845947, - 0.7592206001281738, - 0.44346883893013, - 0.42439740896224976, - 0.4101526141166687, - 0.4011230766773224, - 0.39755505323410034, - 0.3995458483695984, - 0.4070412516593933, - 0.4198366701602936, - 0.43758320808410645, - 0.4597967267036438, - 0.485871285200119, - 0.5150956511497498, - 0.5466727018356323, - 0.5797410607337952, - 0.6133986711502075, - 0.6467275023460388, - 0.6788184642791748, - 0.7087960839271545, - 0.7358427047729492, - 0.7592206001281738, - 0.44346883893013, - 0.424071729183197, - 0.40951022505760193, - 0.40018144249916077, - 0.39633986353874207, - 0.39809027314186096, - 0.40538495779037476, - 0.41802486777305603, - 0.4356653094291687, - 0.45782503485679626, - 0.4838995933532715, - 0.513177752494812, - 0.5448608994483948, - 0.5780847668647766, - 0.6119430661201477, - 0.6455123424530029, - 0.6778768301010132, - 0.7081536650657654, - 0.7355170845985413, - 0.7592206001281738, - 0.44346883893013, - 0.42608141899108887, - 0.4134747385978699, - 0.40599268674850464, - 0.4038392901420593, - 0.40707331895828247, - 0.4156065881252289, - 0.4292062819004059, - 0.4475014805793762, - 0.46999314427375793, - 0.49606770277023315, - 0.5250139832496643, - 0.5560423135757446, - 0.5883064270019531, - 0.6209261417388916, - 0.6530117392539978, - 0.6836880445480347, - 0.7121182084083557, - 0.7375267744064331, - 0.7592206001281738 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.16810062527656555, - 0.12081519514322281, - 0.07650075852870941, - 0.03636611998081207, - 0.0015060007572174072, - -0.027128636837005615, - -0.04875677824020386, - -0.0627884566783905, - -0.0688408613204956, - -0.0667489767074585, - -0.056569814682006836, - -0.03858107328414917, - -0.01327340304851532, - 0.018662825226783752, - 0.0563565194606781, - 0.09877948462963104, - 0.14477455615997314, - 0.19308704137802124, - 0.24239912629127502, - 0.29136574268341064, - 0.16810062527656555, - 0.12342279404401779, - 0.08164483308792114, - 0.04390634596347809, - 0.011236697435379028, - -0.015472888946533203, - -0.035493940114974976, - -0.048280268907547, - -0.05348306894302368, - -0.05096051096916199, - -0.04078134894371033, - -0.023223280906677246, - 0.001234784722328186, - 0.03192567825317383, - 0.0680122822523117, - 0.10851018875837326, - 0.15231478214263916, - 0.19823110103607178, - 0.2450067400932312, - 0.29136574268341064, - 0.16810062527656555, - 0.1309630274772644, - 0.0965196043252945, - 0.0657099187374115, - 0.039374351501464844, - 0.018231287598609924, - 0.0028574317693710327, - -0.006327837705612183, - -0.009074017405509949, - -0.0053060948848724365, - 0.00487305223941803, - 0.02118578553199768, - 0.04318720102310181, - 0.07027703523635864, - 0.10171644389629364, - 0.13664782047271729, - 0.17411835491657257, - 0.21310587227344513, - 0.2525469660758972, - 0.29136574268341064, - 0.16810062527656555, - 0.14261877536773682, - 0.11951316893100739, - 0.09941409528255463, - 0.0828697681427002, - 0.07033149898052216, - 0.06214131414890289, - 0.0585225373506546, - 0.059573978185653687, - 0.06526695191860199, - 0.07544609904289246, - 0.08983378112316132, - 0.108037568628788, - 0.1295609176158905, - 0.15381667017936707, - 0.18014325201511383, - 0.2078225165605545, - 0.2360994517803192, - 0.26420271396636963, - 0.29136574268341064, - 0.16810062527656555, - 0.15712696313858032, - 0.14813381433486938, - 0.14136649668216705, - 0.13700959086418152, - 0.13518193364143372, - 0.13593336939811707, - 0.1392434537410736, - 0.14502184092998505, - 0.15311093628406525, - 0.1632900834083557, - 0.17528164386749268, - 0.1887584775686264, - 0.20335300266742706, - 0.21866710484027863, - 0.23428307473659515, - 0.24977493286132812, - 0.26472008228302, - 0.27871090173721313, - 0.29136574268341064, - 0.16810061037540436, - 0.17291541397571564, - 0.17928004264831543, - 0.1870209276676178, - 0.19592687487602234, - 0.20575496554374695, - 0.2162371277809143, - 0.22708742320537567, - 0.23800989985466003, - 0.24870659410953522, - 0.2588857412338257, - 0.26826968789100647, - 0.27660244703292847, - 0.2836567759513855, - 0.28924015164375305, - 0.29320037364959717, - 0.2954293489456177, - 0.29586631059646606, - 0.29449933767318726, - 0.29136571288108826, - 0.16810061037540436, - 0.18827319145202637, - 0.20957669615745544, - 0.2314300239086151, - 0.2532370686531067, - 0.2744029760360718, - 0.29435038566589355, - 0.31253525614738464, - 0.3284614682197571, - 0.3416946530342102, - 0.3518737852573395, - 0.3587212860584259, - 0.36205029487609863, - 0.36177003383636475, - 0.3578881621360779, - 0.3505105674266815, - 0.339838445186615, - 0.32616299390792847, - 0.3098571300506592, - 0.29136571288108826, - 0.16810059547424316, - 0.20153605937957764, - 0.23574064671993256, - 0.2697813808917999, - 0.30272969603538513, - 0.33368682861328125, - 0.3618084192276001, - 0.38632732629776, - 0.4065747857093811, - 0.42199838161468506, - 0.4321775436401367, - 0.43683457374572754, - 0.4358423948287964, - 0.4292280673980713, - 0.41717207431793213, - 0.40000319480895996, - 0.3781898021697998, - 0.3523269295692444, - 0.32311999797821045, - 0.29136571288108826, - 0.16810059547424316, - 0.21126675605773926, - 0.2549366354942322, - 0.29791900515556335, - 0.33904147148132324, - 0.3771822452545166, - 0.41130104660987854, - 0.44046714901924133, - 0.46388494968414307, - 0.48091572523117065, - 0.4910948872566223, - 0.4941447675228119, - 0.4899821877479553, - 0.47872069478034973, - 0.4606674909591675, - 0.43631500005722046, - 0.40632742643356323, - 0.3715229034423828, - 0.33285069465637207, - 0.29136571288108826, - 0.16810059547424316, - 0.216410830616951, - 0.265084445476532, - 0.3127937912940979, - 0.35823744535446167, - 0.4001758396625519, - 0.43746501207351685, - 0.4690878391265869, - 0.49418163299560547, - 0.5120619535446167, - 0.5222411155700684, - 0.5244414210319519, - 0.5186028480529785, - 0.5048846006393433, - 0.48366105556488037, - 0.4555109739303589, - 0.4212022125720978, - 0.3816707134246826, - 0.3379947543144226, - 0.29136571288108826, - 0.16810059547424316, - 0.216410830616951, - 0.265084445476532, - 0.3127937912940979, - 0.35823744535446167, - 0.4001758396625519, - 0.43746501207351685, - 0.4690878391265869, - 0.49418163299560547, - 0.5120619535446167, - 0.5222411155700684, - 0.5244414210319519, - 0.5186028480529785, - 0.5048846006393433, - 0.48366105556488037, - 0.4555109739303589, - 0.4212022125720978, - 0.3816707134246826, - 0.3379947543144226, - 0.29136571288108826, - 0.16810059547424316, - 0.21126675605773926, - 0.2549366354942322, - 0.29791900515556335, - 0.33904147148132324, - 0.3771822452545166, - 0.41130104660987854, - 0.44046714901924133, - 0.46388494968414307, - 0.48091572523117065, - 0.4910948872566223, - 0.4941447675228119, - 0.4899821877479553, - 0.47872069478034973, - 0.4606674909591675, - 0.43631500005722046, - 0.40632742643356323, - 0.3715229034423828, - 0.33285069465637207, - 0.29136571288108826, - 0.16810059547424316, - 0.20153605937957764, - 0.23574064671993256, - 0.2697813808917999, - 0.30272969603538513, - 0.33368685841560364, - 0.3618084192276001, - 0.3863273561000824, - 0.4065747857093811, - 0.42199844121932983, - 0.4321775734424591, - 0.43683457374572754, - 0.4358423948287964, - 0.4292280673980713, - 0.41717207431793213, - 0.40000319480895996, - 0.3781898021697998, - 0.3523269295692444, - 0.32311999797821045, - 0.29136571288108826, - 0.16810061037540436, - 0.18827319145202637, - 0.20957668125629425, - 0.23143000900745392, - 0.2532370388507843, - 0.2744029462337494, - 0.29435035586357117, - 0.31253522634506226, - 0.3284614384174347, - 0.34169459342956543, - 0.3518737554550171, - 0.3587212562561035, - 0.36205023527145386, - 0.36177000403404236, - 0.3578881323337555, - 0.35051053762435913, - 0.339838445186615, - 0.3261629641056061, - 0.3098571300506592, - 0.29136571288108826, - 0.16810061037540436, - 0.17291541397571564, - 0.17928005754947662, - 0.1870209276676178, - 0.19592688977718353, - 0.20575498044490814, - 0.2162371426820755, - 0.22708743810653687, - 0.23800991475582123, - 0.2487066090106964, - 0.25888577103614807, - 0.26826971769332886, - 0.27660247683525085, - 0.2836567759513855, - 0.28924018144607544, - 0.29320037364959717, - 0.2954293489456177, - 0.29586634039878845, - 0.29449933767318726, - 0.29136571288108826, - 0.16810062527656555, - 0.15712697803974152, - 0.14813384413719177, - 0.14136654138565063, - 0.1370096355676651, - 0.1351819932460785, - 0.13593345880508423, - 0.13924352824687958, - 0.14502191543579102, - 0.1531110256910324, - 0.16329017281532288, - 0.17528171837329865, - 0.18875855207443237, - 0.20335307717323303, - 0.2186671644449234, - 0.23428311944007874, - 0.2497749626636505, - 0.2647201120853424, - 0.27871090173721313, - 0.29136574268341064, - 0.16810062527656555, - 0.14261877536773682, - 0.11951317638158798, - 0.09941409528255463, - 0.08286978304386139, - 0.07033152878284454, - 0.06214132905006409, - 0.05852256715297699, - 0.059574007987976074, - 0.06526696681976318, - 0.07544611394405365, - 0.0898338109254837, - 0.10803759843111038, - 0.1295609325170517, - 0.15381668508052826, - 0.18014326691627502, - 0.2078225314617157, - 0.2360994517803192, - 0.26420271396636963, - 0.29136574268341064, - 0.16810062527656555, - 0.1309630125761032, - 0.0965195894241333, - 0.0657099038362503, - 0.039374321699142456, - 0.018231257796287537, - 0.002857416868209839, - -0.006327882409095764, - -0.009074047207832336, - -0.005306139588356018, - 0.004873007535934448, - 0.021185755729675293, - 0.043187156319618225, - 0.07027702033519745, - 0.10171641409397125, - 0.13664782047271729, - 0.17411832511425018, - 0.21310587227344513, - 0.2525469660758972, - 0.29136574268341064, - 0.16810062527656555, - 0.1234227865934372, - 0.08164481818675995, - 0.0439063161611557, - 0.011236697435379028, - -0.01547291874885559, - -0.035493940114974976, - -0.04828032851219177, - -0.05348312854766846, - -0.05096057057380676, - -0.0407814085483551, - -0.02322334051132202, - 0.0012347251176834106, - 0.031925663352012634, - 0.06801222264766693, - 0.10851017385721207, - 0.15231475234031677, - 0.19823108613491058, - 0.24500672519207, - 0.29136574268341064, - 0.16810062527656555, - 0.12081519514322281, - 0.07650075852870941, - 0.03636611998081207, - 0.0015060007572174072, - -0.027128636837005615, - -0.04875677824020386, - -0.0627884566783905, - -0.0688408613204956, - -0.0667489767074585, - -0.056569814682006836, - -0.03858107328414917, - -0.01327340304851532, - 0.018662825226783752, - 0.0563565194606781, - 0.09877948462963104, - 0.14477455615997314, - 0.19308704137802124, - 0.24239912629127502, - 0.29136574268341064 - ], - "y": [ - 0.09569922089576721, - 0.10426690429449081, - 0.1147606298327446, - 0.12689417600631714, - 0.14033657312393188, - 0.15472111105918884, - 0.1696554720401764, - 0.18473224341869354, - 0.1995401829481125, - 0.2136753797531128, - 0.22675223648548126, - 0.23841407895088196, - 0.24834278225898743, - 0.2562675476074219, - 0.2619721591472626, - 0.26530104875564575, - 0.2661634087562561, - 0.26453569531440735, - 0.26046231389045715, - 0.25405439734458923, - 0.09569922834634781, - 0.08906112611293793, - 0.08476385474205017, - 0.08292463421821594, - 0.08359362185001373, - 0.08675257861614227, - 0.09231533855199814, - 0.10013014823198318, - 0.10998386144638062, - 0.1216076910495758, - 0.13468456268310547, - 0.14885775744915009, - 0.16374069452285767, - 0.17892740666866302, - 0.1940036118030548, - 0.2085580974817276, - 0.22219383716583252, - 0.23453891277313232, - 0.24525654315948486, - 0.25405439734458923, - 0.09569922834634781, - 0.07469171285629272, - 0.056416988372802734, - 0.04137353599071503, - 0.02997170388698578, - 0.02252250909805298, - 0.019229158759117126, - 0.020181432366371155, - 0.02535340189933777, - 0.034604012966156006, - 0.047680869698524475, - 0.06422729790210724, - 0.08379197865724564, - 0.10584121197462082, - 0.12977352738380432, - 0.15493617951869965, - 0.1806427538394928, - 0.2061920464038849, - 0.23088712990283966, - 0.25405439734458923, - 0.0956992357969284, - 0.06271582096815109, - 0.032791852951049805, - 0.006743595004081726, - -0.014718413352966309, - -0.0310087651014328, - -0.04168310761451721, - -0.04645024240016937, - -0.045180171728134155, - -0.03790748119354248, - -0.02483062446117401, - -0.006306275725364685, - 0.017160311341285706, - 0.04492896795272827, - 0.07624225318431854, - 0.11024605482816696, - 0.1460128128528595, - 0.18256691098213196, - 0.21891123056411743, - 0.25405439734458923, - 0.0956992357969284, - 0.05443120002746582, - 0.016448602080345154, - -0.017212465405464172, - -0.045633867383003235, - -0.06804031133651733, - -0.08382058143615723, - -0.0925443172454834, - -0.09397342801094055, - -0.08806905150413513, - -0.07499217987060547, - -0.05509953200817108, - -0.028933748602867126, - 0.002791464328765869, - 0.03921070694923401, - 0.07933058589696884, - 0.1220567375421524, - 0.1662236601114273, - 0.21062661707401276, - 0.25405439734458923, - 0.0956992357969284, - 0.05073563754558563, - 0.009158298373222351, - -0.027898699045181274, - -0.05942448973655701, - -0.08455914258956909, - -0.10261708498001099, - -0.11310571432113647, - -0.11573892831802368, - -0.11044487357139587, - -0.09736800193786621, - -0.07686501741409302, - -0.049495160579681396, - -0.016005009412765503, - 0.022691845893859863, - 0.06553996354341507, - 0.1113705113530159, - 0.1589333415031433, - 0.20693105459213257, - 0.25405439734458923, - 0.0956992357969284, - 0.05202959477901459, - 0.011710911989212036, - -0.024157017469406128, - -0.05459584295749664, - -0.07877525687217712, - -0.0960356593132019, - -0.10590633749961853, - -0.1081179678440094, - -0.10261023044586182, - -0.08953335881233215, - -0.06924407184123993, - -0.04229578375816345, - -0.009423613548278809, - 0.028475746512413025, - 0.07036859542131424, - 0.11511218547821045, - 0.1614859700202942, - 0.20822501182556152, - 0.25405439734458923, - 0.0956992357969284, - 0.05817286670207977, - 0.023829862475395203, - -0.006392940878868103, - -0.031671226024627686, - -0.051315367221832275, - -0.06478960812091827, - -0.07172638177871704, - -0.0719364583492279, - -0.06541408598423004, - -0.05233722925186157, - -0.033062562346458435, - -0.008115828037261963, - 0.02182246744632721, - 0.05593562126159668, - 0.09329324215650558, - 0.13287626206874847, - 0.17360492050647736, - 0.2143682837486267, - 0.25405439734458923, - 0.0956992357969284, - 0.06849971413612366, - 0.04420188069343567, - 0.023468539118766785, - 0.006865188479423523, - -0.005155220627784729, - -0.012264832854270935, - -0.014269709587097168, - -0.0111151784658432, - -0.002887234091758728, - 0.010189622640609741, - 0.02775871753692627, - 0.04934084415435791, - 0.07434722036123276, - 0.10209578275680542, - 0.1318296492099762, - 0.16273774206638336, - 0.19397693872451782, - 0.2246951162815094, - 0.25405439734458923, - 0.09569922834634781, - 0.08189107477664948, - 0.07061932235956192, - 0.062191449105739594, - 0.05683733522891998, - 0.054703034460544586, - 0.05584675818681717, - 0.06023731082677841, - 0.06775493174791336, - 0.07819456607103348, - 0.09127143025398254, - 0.10662882775068283, - 0.1238478571176529, - 0.14245882630348206, - 0.16195406019687653, - 0.18180181086063385, - 0.20146065950393677, - 0.22039437294006348, - 0.2380864918231964, - 0.25405439734458923, - 0.09569922834634781, - 0.09689578413963318, - 0.10021945834159851, - 0.10557959973812103, - 0.11282998323440552, - 0.12177283316850662, - 0.13216422498226166, - 0.14372070133686066, - 0.15612705051898956, - 0.1690448373556137, - 0.18212170898914337, - 0.19500094652175903, - 0.20733125507831573, - 0.21877630054950714, - 0.22902387380599976, - 0.23779445886611938, - 0.2448488175868988, - 0.24999451637268066, - 0.2530911862850189, - 0.25405439734458923, - 0.09569922089576721, - 0.1118878498673439, - 0.129794642329216, - 0.14893117547035217, - 0.16877543926239014, - 0.1887861043214798, - 0.2084173858165741, - 0.22713376581668854, - 0.2444247007369995, - 0.25981855392456055, - 0.2728954255580902, - 0.2832985818386078, - 0.2907443046569824, - 0.2950294613838196, - 0.29603713750839233, - 0.293739914894104, - 0.28820037841796875, - 0.27956968545913696, - 0.26808327436447144, - 0.25405439734458923, - 0.09569922089576721, - 0.12524265050888062, - 0.15613995492458344, - 0.18754836916923523, - 0.21861113607883453, - 0.2484809309244156, - 0.2763430178165436, - 0.3014373779296875, - 0.3230794668197632, - 0.34067898988723755, - 0.3537558317184448, - 0.36195334792137146, - 0.3650479316711426, - 0.36295509338378906, - 0.3557319939136505, - 0.3435756266117096, - 0.3268175721168518, - 0.3059149980545044, - 0.28143805265426636, - 0.25405436754226685, - 0.09569921344518661, - 0.13551297783851624, - 0.17640048265457153, - 0.21724645793437958, - 0.2569366693496704, - 0.29438847303390503, - 0.3285803496837616, - 0.3585796058177948, - 0.3835679292678833, - 0.40286362171173096, - 0.4159404933452606, - 0.42244184017181396, - 0.4221901595592499, - 0.41519245505332947, - 0.40163952112197876, - 0.3819011449813843, - 0.35651564598083496, - 0.3261755406856537, - 0.29170840978622437, - 0.25405436754226685, - 0.09569921344518661, - 0.14158588647842407, - 0.1883806586265564, - 0.2348071038722992, - 0.27959877252578735, - 0.3215339183807373, - 0.35946860909461975, - 0.3923681378364563, - 0.4193350672721863, - 0.4396337866783142, - 0.45271065831184387, - 0.45820897817611694, - 0.4559786915779114, - 0.44608068466186523, - 0.42878496646881104, - 0.4045632481575012, - 0.37407630681991577, - 0.33815568685531616, - 0.2977812886238098, - 0.25405436754226685, - 0.09569921344518661, - 0.14280331134796143, - 0.19078226387500763, - 0.23832738399505615, - 0.2841417193412781, - 0.32697558403015137, - 0.3656606078147888, - 0.3991415798664093, - 0.4265051484107971, - 0.44700491428375244, - 0.4600817859172821, - 0.4653790593147278, - 0.4627521336078644, - 0.4522726833820343, - 0.4342266619205475, - 0.40910619497299194, - 0.37759658694267273, - 0.340557336807251, - 0.29899871349334717, - 0.25405436754226685, - 0.09569921344518661, - 0.1390332579612732, - 0.18334504961967468, - 0.22742582857608795, - 0.27007320523262024, - 0.31012386083602905, - 0.34648534655570984, - 0.3781657814979553, - 0.4043010473251343, - 0.42417818307876587, - 0.43725505471229553, - 0.44317495822906494, - 0.4417763352394104, - 0.4330974221229553, - 0.4173749089241028, - 0.3950376808643341, - 0.3666950464248657, - 0.33312010765075684, - 0.29522866010665894, - 0.25405436754226685, - 0.09569921344518661, - 0.13068433105945587, - 0.16687491536140442, - 0.20328375697135925, - 0.2389177531003952, - 0.2728048264980316, - 0.3040207028388977, - 0.3317139148712158, - 0.3551290035247803, - 0.373627245426178, - 0.38670408725738525, - 0.39400288462638855, - 0.3953244686126709, - 0.3906328082084656, - 0.38005590438842773, - 0.36388224363327026, - 0.34255295991897583, - 0.3166499733924866, - 0.2868797481060028, - 0.25405436754226685, - 0.09569922089576721, - 0.11866123974323273, - 0.14315667748451233, - 0.1685173511505127, - 0.19405150413513184, - 0.21906261146068573, - 0.24286843836307526, - 0.2648196518421173, - 0.2843174338340759, - 0.30083000659942627, - 0.31390684843063354, - 0.3231913447380066, - 0.3284302055835724, - 0.32948052883148193, - 0.32631367444992065, - 0.3190159797668457, - 0.30778658390045166, - 0.2929317355155945, - 0.27485665678977966, - 0.25405439734458923, - 0.09569922089576721, - 0.10426689684391022, - 0.1147606149315834, - 0.12689416110515594, - 0.1403365433216095, - 0.15472108125686646, - 0.1696554273366928, - 0.18473219871520996, - 0.1995401382446289, - 0.21367532014846802, - 0.22675219178199768, - 0.23841401934623718, - 0.24834275245666504, - 0.2562674880027771, - 0.2619721293449402, - 0.26530101895332336, - 0.2661633789539337, - 0.26453566551208496, - 0.26046231389045715, - 0.25405439734458923 - ], - "z": [ - 0.7164178490638733, - 0.7335597276687622, - 0.7545551061630249, - 0.778831422328949, - 0.8057264089584351, - 0.8345064520835876, - 0.8643864393234253, - 0.8945514559745789, - 0.9241786003112793, - 0.9524596929550171, - 0.9786233305931091, - 1.0019558668136597, - 1.0218207836151123, - 1.0376763343811035, - 1.0490899085998535, - 1.0557502508163452, - 1.0574755668640137, - 1.0542188882827759, - 1.0460690259933472, - 1.0332484245300293, - 0.7164178490638733, - 0.740145206451416, - 0.7675464749336243, - 0.7978742718696594, - 0.8303012847900391, - 0.8639430403709412, - 0.8978818655014038, - 0.9311919212341309, - 0.962964653968811, - 0.9923334121704102, - 1.018497109413147, - 1.0407419204711914, - 1.058461308479309, - 1.071171760559082, - 1.078526496887207, - 1.0803251266479492, - 1.0765184164047241, - 1.06721031665802, - 1.0526546239852905, - 1.0332484245300293, - 0.7164178490638733, - 0.7443935871124268, - 0.7759274244308472, - 0.8101590871810913, - 0.8461549282073975, - 0.8829330205917358, - 0.9194902181625366, - 0.954829216003418, - 0.9879862070083618, - 1.0180566310882568, - 1.044220209121704, - 1.0657634735107422, - 1.0820986032485962, - 1.0927801132202148, - 1.0975165367126465, - 1.0961787700653076, - 1.0888032913208008, - 1.0755912065505981, - 1.0569030046463013, - 1.0332484245300293, - 0.7164178490638733, - 0.7458444833755493, - 0.7787896990776062, - 0.814354658126831, - 0.8515692949295044, - 0.8894185423851013, - 0.9268699884414673, - 0.9629018902778625, - 0.99653160572052, - 1.026841640472412, - 1.053005337715149, - 1.0743088722229004, - 1.0901713371276855, - 1.1001598834991455, - 1.1040019989013672, - 1.1015931367874146, - 1.092998743057251, - 1.078453540802002, - 1.0583539009094238, - 1.0332484245300293, - 0.7164178490638733, - 0.7443407773971558, - 0.7758231163024902, - 0.8100062608718872, - 0.8459576964378357, - 0.882696807384491, - 0.9192214012145996, - 0.954535186290741, - 0.9876748919487, - 1.017736554145813, - 1.0439002513885498, - 1.065452218055725, - 1.0818045139312744, - 1.0925112962722778, - 1.0972802639007568, - 1.095981478691101, - 1.0886504650115967, - 1.0754868984222412, - 1.0568500757217407, - 1.0332484245300293, - 0.7164178490638733, - 0.7400451898574829, - 0.7673492431640625, - 0.7975851893424988, - 0.8299282193183899, - 0.8634961247444153, - 0.8973733186721802, - 0.9306356310844421, - 0.9623758792877197, - 0.9917280673980713, - 1.017891764640808, - 1.0401531457901, - 1.0579050779342651, - 1.0706632137298584, - 1.0780795812606812, - 1.0799520015716553, - 1.0762293338775635, - 1.0670130252838135, - 1.0525546073913574, - 1.0332484245300293, - 0.7164178490638733, - 0.7334234118461609, - 0.7542862892150879, - 0.7784373760223389, - 0.8052178621292114, - 0.8338972926139832, - 0.863693356513977, - 0.8937932848930359, - 0.9233760237693787, - 0.9516345858573914, - 0.9777982234954834, - 1.0011532306671143, - 1.0210626125335693, - 1.0369832515716553, - 1.048480749130249, - 1.0552417039871216, - 1.0570814609527588, - 1.0539500713348389, - 1.0459327697753906, - 1.0332484245300293, - 0.7164178490638733, - 0.7251929640769958, - 0.7380498647689819, - 0.7546378374099731, - 0.7745044827461243, - 0.7971077561378479, - 0.821831226348877, - 0.8480004668235779, - 0.8749015927314758, - 0.9018008708953857, - 0.9279645085334778, - 0.9526788592338562, - 0.9752697944641113, - 0.9951211214065552, - 1.0116912126541138, - 1.0245282649993896, - 1.0332820415496826, - 1.037713646888733, - 1.0377023220062256, - 1.0332484245300293, - 0.7164178490638733, - 0.716245710849762, - 0.7203993797302246, - 0.7287656664848328, - 0.7411162257194519, - 0.7571142911911011, - 0.7763233780860901, - 0.7982195615768433, - 0.8222055435180664, - 0.8476271033287048, - 0.8737908005714417, - 0.8999828696250916, - 0.9254889488220215, - 0.9496132135391235, - 0.9716977477073669, - 0.9911400079727173, - 1.0074098110198975, - 1.0200631618499756, - 1.0287550687789917, - 1.0332484245300293, - 0.7164178490638733, - 0.7075512409210205, - 0.703247606754303, - 0.7036243677139282, - 0.7086713314056396, - 0.7182506918907166, - 0.7321012020111084, - 0.7498451471328735, - 0.7709983587265015, - 0.7949839234352112, - 0.821147620677948, - 0.8487756252288818, - 0.877114474773407, - 0.9053910970687866, - 0.9328341484069824, - 0.958695113658905, - 0.9822685122489929, - 1.0029113292694092, - 1.0200605392456055, - 1.0332484245300293, - 0.7164178490638733, - 0.7000517249107361, - 0.6884531378746033, - 0.6819385886192322, - 0.6806856393814087, - 0.6847285032272339, - 0.6939569711685181, - 0.70811927318573, - 0.7268290519714355, - 0.7495760321617126, - 0.7757397294044495, - 0.8046063780784607, - 0.8353886604309082, - 0.8672468662261963, - 0.8993119597434998, - 0.9307094216346741, - 0.9605827331542969, - 0.988116979598999, - 1.0125610828399658, - 1.0332484245300293, - 0.7164178490638733, - 0.6945598721504211, - 0.677619218826294, - 0.6660581231117249, - 0.6601918339729309, - 0.6601804494857788, - 0.6660241484642029, - 0.6775636672973633, - 0.6944841146469116, - 0.7163240909576416, - 0.7424877285957336, - 0.7722614407539368, - 0.8048330545425415, - 0.8393140435218811, - 0.8747638463973999, - 0.9102156162261963, - 0.9447022676467896, - 0.9772830605506897, - 1.0070692300796509, - 1.0332484245300293, - 0.7164178490638733, - 0.6916707754135132, - 0.6719199419021606, - 0.6577039957046509, - 0.6494108438491821, - 0.6472665071487427, - 0.6513296961784363, - 0.6614894270896912, - 0.6774685978889465, - 0.6988314390182495, - 0.7249950766563416, - 0.7552459239959717, - 0.7887587547302246, - 0.8246195316314697, - 0.8618499636650085, - 0.8994345664978027, - 0.9363481402397156, - 0.9715837240219116, - 1.0041801929473877, - 1.0332484245300293, - 0.7164178490638733, - 0.6916975975036621, - 0.6719727516174316, - 0.6577814817428589, - 0.6495108008384705, - 0.6473863124847412, - 0.6514659523963928, - 0.6616384983062744, - 0.677626371383667, - 0.6989936232566833, - 0.7251572608947754, - 0.7554036974906921, - 0.7889078855514526, - 0.824755847454071, - 0.8619697690010071, - 0.8995345830917358, - 0.9364256262779236, - 0.9716365933418274, - 1.0042070150375366, - 1.0332484245300293, - 0.7164178490638733, - 0.6946372985839844, - 0.677772045135498, - 0.6662821769714355, - 0.6604809761047363, - 0.660526692867279, - 0.666418194770813, - 0.6779946684837341, - 0.6949403882026672, - 0.7167931795120239, - 0.742956817150116, - 0.7727177143096924, - 0.8052640557289124, - 0.8397080898284912, - 0.8751101493835449, - 0.9105047583580017, - 0.9449262619018555, - 0.9774358868598938, - 1.0071467161178589, - 1.0332484245300293, - 0.7164178490638733, - 0.7001714706420898, - 0.6886893510818481, - 0.6822848320007324, - 0.6811324954032898, - 0.6852638125419617, - 0.6945660710334778, - 0.7087855339050293, - 0.7275343537330627, - 0.7503011226654053, - 0.7764647603034973, - 0.8053116798400879, - 0.8360549211502075, - 0.867855966091156, - 0.8998472690582275, - 0.9311562776565552, - 0.9609289765357971, - 0.9883531928062439, - 1.0126808881759644, - 1.0332484245300293, - 0.7164178490638733, - 0.707700252532959, - 0.70354163646698, - 0.7040554285049438, - 0.7092275619506836, - 0.7189170122146606, - 0.7328594326972961, - 0.7506744861602783, - 0.7718762755393982, - 0.7958865165710449, - 0.822050154209137, - 0.8496536016464233, - 0.8779438734054565, - 0.9061492681503296, - 0.9335004687309265, - 0.9592514038085938, - 0.9826995730400085, - 1.003205418586731, - 1.0202096700668335, - 1.0332484245300293, - 0.7164178490638733, - 0.7164078950881958, - 0.7207193970680237, - 0.7292347550392151, - 0.7417216300964355, - 0.7578393816947937, - 0.7771484851837158, - 0.799122154712677, - 0.8231610059738159, - 0.8486093282699585, - 0.8747730255126953, - 0.9009383320808411, - 0.9263915419578552, - 0.950438380241394, - 0.9724228382110596, - 0.9917454123497009, - 1.0078788995742798, - 1.0203832387924194, - 1.0289173126220703, - 1.0332484245300293, - 0.7164178490638733, - 0.7253507375717163, - 0.7383611798286438, - 0.7550941705703735, - 0.7750933766365051, - 0.7978131771087646, - 0.8226338624954224, - 0.8488784432411194, - 0.8758310079574585, - 0.9027563333511353, - 0.9289199709892273, - 0.9536082744598389, - 0.9761478304862976, - 0.9959237575531006, - 1.0123965740203857, - 1.0251171588897705, - 1.033738374710083, - 1.03802490234375, - 1.0378601551055908, - 1.0332484245300293, - 0.7164178490638733, - 0.7335597276687622, - 0.7545551061630249, - 0.778831422328949, - 0.8057264089584351, - 0.8345064520835876, - 0.8643864989280701, - 0.8945514559745789, - 0.9241786003112793, - 0.9524596929550171, - 0.9786233901977539, - 1.0019558668136597, - 1.0218209028244019, - 1.0376763343811035, - 1.0490899085998535, - 1.0557502508163452, - 1.0574755668640137, - 1.0542188882827759, - 1.0460691452026367, - 1.0332484245300293 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.2861931622028351, - 0.27017688751220703, - 0.2556309700012207, - 0.24295222759246826, - 0.23248645663261414, - 0.22451913356781006, - 0.21926762163639069, - 0.2168751358985901, - 0.2174069583415985, - 0.22084859013557434, - 0.22710612416267395, - 0.236008882522583, - 0.24731400609016418, - 0.2607131600379944, - 0.2758408188819885, - 0.2922843396663666, - 0.3095952272415161, - 0.3273012340068817, - 0.3449194133281708, - 0.3619691729545593, - 0.2861931324005127, - 0.28852948546409607, - 0.29183560609817505, - 0.2960212826728821, - 0.3009723424911499, - 0.30655378103256226, - 0.312613308429718, - 0.31898564100265503, - 0.32549697160720825, - 0.331969678401947, - 0.33822718262672424, - 0.34409886598587036, - 0.3494245111942291, - 0.3540588319301605, - 0.3578754663467407, - 0.36077025532722473, - 0.36266428232192993, - 0.36350584030151367, - 0.3632720112800598, - 0.36196914315223694, - 0.2861931324005127, - 0.3066849112510681, - 0.3276512026786804, - 0.3485201597213745, - 0.36872243881225586, - 0.387706995010376, - 0.40495604276657104, - 0.41999903321266174, - 0.4324256479740143, - 0.44189688563346863, - 0.44815441966056824, - 0.4510275721549988, - 0.45043790340423584, - 0.4464016258716583, - 0.43902871012687683, - 0.4285203516483307, - 0.41516315937042236, - 0.39932146668434143, - 0.38142743706703186, - 0.36196914315223694, - 0.2861931324005127, - 0.3226757347583771, - 0.3591966927051544, - 0.39475977420806885, - 0.42839494347572327, - 0.4591846466064453, - 0.4862891435623169, - 0.5089690089225769, - 0.5266056060791016, - 0.5387178659439087, - 0.5449753999710083, - 0.5452075004577637, - 0.5394078493118286, - 0.5277346968650818, - 0.5105063915252686, - 0.4881928563117981, - 0.4614027738571167, - 0.43086695671081543, - 0.3974182605743408, - 0.36196914315223694, - 0.2861931324005127, - 0.3347690999507904, - 0.3830535411834717, - 0.4297293722629547, - 0.47352340817451477, - 0.5132410526275635, - 0.5477988719940186, - 0.5762542486190796, - 0.5978310108184814, - 0.6119406223297119, - 0.6181981563568115, - 0.6164329051971436, - 0.6066931486129761, - 0.5892443656921387, - 0.5645627379417419, - 0.5333213806152344, - 0.49637237191200256, - 0.4547238051891327, - 0.40951162576675415, - 0.36196914315223694, - 0.2861931324005127, - 0.341654509305954, - 0.3966365456581116, - 0.4496394395828247, - 0.4992174506187439, - 0.5440181493759155, - 0.5828195810317993, - 0.6145633459091187, - 0.6383835077285767, - 0.653630256652832, - 0.6598877906799316, - 0.6569854021072388, - 0.6450022459030151, - 0.624265193939209, - 0.5953398942947388, - 0.5590153932571411, - 0.5162824392318726, - 0.4683067798614502, - 0.4163970351219177, - 0.36196914315223694, - 0.2861931324005127, - 0.34258580207824707, - 0.39847373962402344, - 0.45233243703842163, - 0.5026927590370178, - 0.5481809973716736, - 0.5875564217567444, - 0.6197448968887329, - 0.6438684463500977, - 0.6592690348625183, - 0.6655265688896179, - 0.6624703407287598, - 0.6501837968826294, - 0.6290019750595093, - 0.5995028018951416, - 0.562490701675415, - 0.5189754366874695, - 0.47014400362968445, - 0.4173283278942108, - 0.36196914315223694, - 0.2861931324005127, - 0.33746209740638733, - 0.38836604356765747, - 0.4375164806842804, - 0.48357272148132324, - 0.5252783894538879, - 0.5614959597587585, - 0.591237485408783, - 0.6136916875839233, - 0.6282460689544678, - 0.6345036029815674, - 0.6322935819625854, - 0.6216763854026794, - 0.6029415130615234, - 0.5766001343727112, - 0.5433706641197205, - 0.5041594505310059, - 0.46003633737564087, - 0.4122046232223511, - 0.36196914315223694, - 0.2861931324005127, - 0.32683858275413513, - 0.367408812046051, - 0.4067971706390381, - 0.4439292550086975, - 0.4777922034263611, - 0.5074622631072998, - 0.532130241394043, - 0.5511231422424316, - 0.5639229416847229, - 0.5701804757118225, - 0.5697250366210938, - 0.5625691413879395, - 0.5489078760147095, - 0.5291139483451843, - 0.5037271976470947, - 0.47344017028808594, - 0.43907907605171204, - 0.4015811085700989, - 0.36196914315223694, - 0.2861931324005127, - 0.31186652183532715, - 0.33787304162979126, - 0.3635033965110779, - 0.3880583941936493, - 0.41086825728416443, - 0.43131083250045776, - 0.44882842898368835, - 0.46294325590133667, - 0.4732702672481537, - 0.4795278012752533, - 0.4815451502799988, - 0.47926729917526245, - 0.47275638580322266, - 0.4621899724006653, - 0.4478563368320465, - 0.43014639616012573, - 0.40954330563545227, - 0.3866090178489685, - 0.36196914315223694, - 0.2861931324005127, - 0.2941683232784271, - 0.3029594421386719, - 0.31232669949531555, - 0.32201460003852844, - 0.33175885677337646, - 0.34129369258880615, - 0.3503590226173401, - 0.3587075471878052, - 0.3661115765571594, - 0.37236911058425903, - 0.3773094713687897, - 0.3807978928089142, - 0.38273924589157104, - 0.38308054208755493, - 0.38181251287460327, - 0.3789696991443634, - 0.3746297061443329, - 0.36891084909439087, - 0.36196914315223694, - 0.2861931622028351, - 0.2756618857383728, - 0.2664513885974884, - 0.25881287455558777, - 0.25295472145080566, - 0.24903669953346252, - 0.24716567993164062, - 0.24739274382591248, - 0.24971164762973785, - 0.25405916571617126, - 0.2603166997432709, - 0.26831355690956116, - 0.2778316140174866, - 0.2886112332344055, - 0.300358384847641, - 0.3127526342868805, - 0.325455904006958, - 0.3381216526031494, - 0.35040441155433655, - 0.3619691729545593, - 0.2861931622028351, - 0.25835269689559937, - 0.2323051393032074, - 0.20876099169254303, - 0.1883624792098999, - 0.17166602611541748, - 0.15912704169750214, - 0.15108758211135864, - 0.14776693284511566, - 0.1492556929588318, - 0.1555132269859314, - 0.16636884212493896, - 0.18152645230293274, - 0.20057259500026703, - 0.22298769652843475, - 0.24816039204597473, - 0.2754040062427521, - 0.3039754033088684, - 0.3330952227115631, - 0.3619691729545593, - 0.2861931622028351, - 0.2441164255142212, - 0.20422092080116272, - 0.16759489476680756, - 0.1352374255657196, - 0.10803110897541046, - 0.08671806752681732, - 0.07187962532043457, - 0.06392064690589905, - 0.06305819749832153, - 0.06931573152542114, - 0.08252254128456116, - 0.10231849551200867, - 0.12816359102725983, - 0.15935274958610535, - 0.19503532350063324, - 0.2342379093170166, - 0.27589118480682373, - 0.31885895133018494, - 0.3619691729545593, - 0.2861931622028351, - 0.2344958484172821, - 0.1852421760559082, - 0.13977567851543427, - 0.09933651983737946, - 0.0650278627872467, - 0.03778544068336487, - 0.018352478742599487, - 0.007258981466293335, - 0.004807561635971069, - 0.011065095663070679, - 0.025860875844955444, - 0.04879137873649597, - 0.07923099398612976, - 0.11634951829910278, - 0.15913443267345428, - 0.2064186930656433, - 0.2569124400615692, - 0.30923837423324585, - 0.3619691729545593, - 0.2861931622028351, - 0.2305334508419037, - 0.17742545902729034, - 0.12831787765026093, - 0.08455018699169159, - 0.047316282987594604, - 0.017631828784942627, - -0.0036935508251190186, - -0.016078054904937744, - -0.019183874130249023, - -0.012926340103149414, - 0.0025238394737243652, - 0.026745349168777466, - 0.05907735228538513, - 0.09863793849945068, - 0.14434807002544403, - 0.19496087729930878, - 0.24909570813179016, - 0.30527597665786743, - 0.3619691729545593, - 0.2861931622028351, - 0.23265863955020905, - 0.181617870926857, - 0.13446316123008728, - 0.09248068928718567, - 0.0568157434463501, - 0.028441041707992554, - 0.008130639791488647, - -0.0035614371299743652, - -0.006316274404525757, - -0.00005874037742614746, - 0.015040457248687744, - 0.03856953978538513, - 0.06988656520843506, - 0.10813738405704498, - 0.1522786021232605, - 0.20110616087913513, - 0.2532881498336792, - 0.3074011504650116, - 0.3619691729545593, - 0.2861931622028351, - 0.24064113199710846, - 0.19736513495445251, - 0.15754561126232147, - 0.12226873636245728, - 0.09249681234359741, - 0.06904187798500061, - 0.05254372954368591, - 0.043452441692352295, - 0.04201596975326538, - 0.04827350378036499, - 0.062054336071014404, - 0.0829826146364212, - 0.11048741638660431, - 0.1438184678554535, - 0.1820666342973709, - 0.22418862581253052, - 0.2690353989601135, - 0.315383642911911, - 0.3619691729545593, - 0.2861931622028351, - 0.2536159157752991, - 0.22296074032783508, - 0.19506390392780304, - 0.17068630456924438, - 0.15049293637275696, - 0.13503457605838776, - 0.12473291158676147, - 0.11986896395683289, - 0.12057538330554962, - 0.12683291733264923, - 0.1384708732366562, - 0.15517178177833557, - 0.17648011445999146, - 0.20181459188461304, - 0.2304842174053192, - 0.2617069184780121, - 0.2946310043334961, - 0.32835841178894043, - 0.3619691729545593, - 0.2861931622028351, - 0.27017688751220703, - 0.2556309998035431, - 0.24295225739479065, - 0.23248648643493652, - 0.22451917827129364, - 0.21926766633987427, - 0.21687519550323486, - 0.2174070179462433, - 0.22084864974021912, - 0.22710618376731873, - 0.2360089272260666, - 0.24731406569480896, - 0.26071321964263916, - 0.2758408784866333, - 0.29228439927101135, - 0.3095952570438385, - 0.3273012638092041, - 0.3449194133281708, - 0.3619691729545593 - ], - "y": [ - 0.25696665048599243, - 0.20751486718654633, - 0.1605997383594513, - 0.11750097572803497, - 0.07939419150352478, - 0.047318845987319946, - 0.022149860858917236, - 0.0045737624168396, - -0.004929959774017334, - -0.006102085113525391, - 0.001089334487915039, - 0.016448110342025757, - 0.039555370807647705, - 0.06978076696395874, - 0.10629978775978088, - 0.1481163501739502, - 0.1940898299217224, - 0.24296611547470093, - 0.2934120297431946, - 0.3440515100955963, - 0.25696665048599243, - 0.2028660774230957, - 0.1514289379119873, - 0.10405832529067993, - 0.06204637885093689, - 0.02653905749320984, - -0.0014950335025787354, - -0.021291285753250122, - -0.032309651374816895, - -0.034249573945999146, - -0.027058154344558716, - -0.010931581258773804, - 0.013690322637557983, - 0.04613584280014038, - 0.08552002906799316, - 0.1307685673236847, - 0.18064719438552856, - 0.23379531502723694, - 0.28876322507858276, - 0.3440515100955963, - 0.25696665048599243, - 0.20414425432682037, - 0.15395043790340424, - 0.10775437951087952, - 0.06681616604328156, - 0.03225246071815491, - 0.0050061047077178955, - -0.014179706573486328, - -0.024781644344329834, - -0.026510417461395264, - -0.019318997859954834, - -0.003403574228286743, - 0.020801901817321777, - 0.0526370108127594, - 0.09123341739177704, - 0.13553832471370697, - 0.18434324860572815, - 0.23631682991981506, - 0.29004141688346863, - 0.3440515100955963, - 0.25696665048599243, - 0.2112109214067459, - 0.1678910106420517, - 0.1281885802745819, - 0.09318660199642181, - 0.063839852809906, - 0.04094880819320679, - 0.025137871503829956, - 0.016838371753692627, - 0.016276687383651733, - 0.023468106985092163, - 0.03821644186973572, - 0.06011946499347687, - 0.08857971429824829, - 0.12282079458236694, - 0.16190877556800842, - 0.20477744936943054, - 0.25025737285614014, - 0.29710808396339417, - 0.3440515100955963, - 0.25696665048599243, - 0.2233002781867981, - 0.1917399764060974, - 0.16314660012722015, - 0.1383001208305359, - 0.1178782731294632, - 0.10243813693523407, - 0.09240083396434784, - 0.08804018795490265, - 0.08947515487670898, - 0.09666657447814941, - 0.10941825807094574, - 0.12738242745399475, - 0.15006904304027557, - 0.17685922980308533, - 0.2070223093032837, - 0.2397354692220688, - 0.27410635352134705, - 0.30919742584228516, - 0.3440515100955963, - 0.25696662068367004, - 0.23910225927829742, - 0.22291290760040283, - 0.20884019136428833, - 0.19726791977882385, - 0.18851184844970703, - 0.1828107386827469, - 0.180320143699646, - 0.18110796809196472, - 0.18515276908874512, - 0.19234417378902435, - 0.202486053109169, - 0.2153017222881317, - 0.2304416298866272, - 0.24749282002449036, - 0.26599010825157166, - 0.2854290306568146, - 0.30527928471565247, - 0.3249994218349457, - 0.3440515100955963, - 0.25696662068367004, - 0.2569044828414917, - 0.2580317556858063, - 0.26031771302223206, - 0.2636999487876892, - 0.2680862545967102, - 0.27335700392723083, - 0.2793683707714081, - 0.28595638275146484, - 0.2929413616657257, - 0.30013278126716614, - 0.30733445286750793, - 0.3143499493598938, - 0.32098791003227234, - 0.3270672559738159, - 0.3324221670627594, - 0.3369065523147583, - 0.3403981328010559, - 0.34280163049697876, - 0.3440515100955963, - 0.25696662068367004, - 0.2747777998447418, - 0.2932908236980438, - 0.3120007812976837, - 0.33039727807044983, - 0.34797847270965576, - 0.3642648458480835, - 0.37881213426589966, - 0.3912234902381897, - 0.40116041898727417, - 0.4083518087863922, - 0.4126015603542328, - 0.4137937128543854, - 0.411895751953125, - 0.4069594740867615, - 0.39911949634552, - 0.38858965039253235, - 0.37565720081329346, - 0.3606749475002289, - 0.3440515100955963, - 0.25696662068367004, - 0.2907853424549103, - 0.324869304895401, - 0.3582887649536133, - 0.3901321589946747, - 0.41953086853027344, - 0.44568300247192383, - 0.4678751230239868, - 0.4855019450187683, - 0.49808263778686523, - 0.5052740573883057, - 0.5068800449371338, - 0.5028567314147949, - 0.49331390857696533, - 0.47851186990737915, - 0.4588543772697449, - 0.4348776340484619, - 0.40723568201065063, - 0.37668249011039734, - 0.3440514802932739, - 0.25696662068367004, - 0.30319246649742126, - 0.3493450880050659, - 0.39416563510894775, - 0.4364314675331116, - 0.474989652633667, - 0.5087884664535522, - 0.5369060039520264, - 0.5585752725601196, - 0.5732051134109497, - 0.5803965330123901, - 0.5799533128738403, - 0.5718876123428345, - 0.5564194321632385, - 0.5339706540107727, - 0.5051536560058594, - 0.4707545042037964, - 0.43171149492263794, - 0.3890896141529083, - 0.3440514802932739, - 0.25696662068367004, - 0.3106546401977539, - 0.364065945148468, - 0.41574355959892273, - 0.46427786350250244, - 0.5083450078964233, - 0.5467429161071777, - 0.5784242153167725, - 0.6025247573852539, - 0.6183870434761047, - 0.6255784630775452, - 0.6239027976989746, - 0.6134058237075806, - 0.5943738222122192, - 0.5673260688781738, - 0.533000111579895, - 0.492332398891449, - 0.44643229246139526, - 0.39655178785324097, - 0.3440514802932739, - 0.25696662068367004, - 0.31236326694488525, - 0.36743655800819397, - 0.42068424820899963, - 0.47065386176109314, - 0.5159823298454285, - 0.5554333329200745, - 0.5879305601119995, - 0.6125878095626831, - 0.6287323236465454, - 0.6359237432479858, - 0.6339658498764038, - 0.6229121685028076, - 0.603064239025116, - 0.574963390827179, - 0.5393760204315186, - 0.4972730875015259, - 0.4498029351234436, - 0.3982604146003723, - 0.3440514802932739, - 0.25696662068367004, - 0.3081331253051758, - 0.35909169912338257, - 0.40845227241516113, - 0.45486846566200256, - 0.49707406759262085, - 0.5339179039001465, - 0.5643950700759888, - 0.5876740217208862, - 0.6031198501586914, - 0.6103112697601318, - 0.6090520620346069, - 0.5993766784667969, - 0.5815489292144775, - 0.5560550689697266, - 0.5235906839370728, - 0.48504114151000977, - 0.4414581060409546, - 0.39403027296066284, - 0.3440514802932739, - 0.25696662068367004, - 0.2984226942062378, - 0.33993566036224365, - 0.38037317991256714, - 0.4186322093009949, - 0.45366913080215454, - 0.4845283031463623, - 0.5103678703308105, - 0.530483067035675, - 0.5443251132965088, - 0.5515165328979492, - 0.5518611073493958, - 0.5453494787216187, - 0.5321592092514038, - 0.5126501321792603, - 0.4873543977737427, - 0.45696204900741577, - 0.4223020374774933, - 0.38431984186172485, - 0.3440514802932739, - 0.25696662068367004, - 0.28428417444229126, - 0.31204432249069214, - 0.33948981761932373, - 0.36587202548980713, - 0.39047127962112427, - 0.4126165807247162, - 0.43170392513275146, - 0.4472126066684723, - 0.4587196111679077, - 0.46591103076934814, - 0.4685906767845154, - 0.46668553352355957, - 0.4602475166320801, - 0.44945228099823, - 0.43459421396255493, - 0.41607868671417236, - 0.3944106996059418, - 0.3701813220977783, - 0.3440514802932739, - 0.25696662068367004, - 0.2672497630119324, - 0.2784401476383209, - 0.29023250937461853, - 0.3023051619529724, - 0.3143288493156433, - 0.32597553730010986, - 0.3369276225566864, - 0.3468862771987915, - 0.35557985305786133, - 0.36277127265930176, - 0.3682643473148346, - 0.3719092011451721, - 0.37360647320747375, - 0.373309850692749, - 0.3710273802280426, - 0.3668213486671448, - 0.36080652475357056, - 0.35314691066741943, - 0.3440515100955963, - 0.25696662068367004, - 0.249165341258049, - 0.24276457726955414, - 0.23793894052505493, - 0.23482005298137665, - 0.23349297046661377, - 0.23399393260478973, - 0.2363092303276062, - 0.24037575721740723, - 0.24608257412910461, - 0.25327399373054504, - 0.2617538273334503, - 0.2712908387184143, - 0.28162485361099243, - 0.2924739420413971, - 0.30354222655296326, - 0.31452780961990356, - 0.32513096928596497, - 0.33506250381469727, - 0.3440515100955963, - 0.25696665048599243, - 0.23199066519737244, - 0.20888370275497437, - 0.1882760375738144, - 0.17072978615760803, - 0.15672358870506287, - 0.14663951098918915, - 0.14075253903865814, - 0.13922333717346191, - 0.14209356904029846, - 0.1492849886417389, - 0.160601407289505, - 0.17573413252830505, - 0.19427038729190826, - 0.2157045602798462, - 0.23945198953151703, - 0.26486489176750183, - 0.291250079870224, - 0.3178878128528595, - 0.3440515100955963, - 0.25696665048599243, - 0.21758687496185303, - 0.18046900629997253, - 0.14662553369998932, - 0.11697961390018463, - 0.09233985841274261, - 0.07337845861911774, - 0.06061252951622009, - 0.054390400648117065, - 0.054881736636161804, - 0.062073156237602234, - 0.07576847076416016, - 0.095594123005867, - 0.12100933492183685, - 0.15132080018520355, - 0.18570178747177124, - 0.22321438789367676, - 0.26283538341522217, - 0.3034840226173401, - 0.3440515100955963, - 0.25696665048599243, - 0.20751486718654633, - 0.1605997234582901, - 0.11750096082687378, - 0.07939417660236359, - 0.04731881618499756, - 0.022149860858917236, - 0.004573732614517212, - -0.004929959774017334, - -0.006102085113525391, - 0.001089334487915039, - 0.016448110342025757, - 0.03955534100532532, - 0.06978073716163635, - 0.10629977285861969, - 0.148116335272789, - 0.1940898299217224, - 0.24296611547470093, - 0.2934120297431946, - 0.3440515100955963 - ], - "z": [ - 0.9973548650741577, - 1.024465560913086, - 1.0538241863250732, - 1.084629774093628, - 1.116042137145996, - 1.1472042798995972, - 1.1772663593292236, - 1.2054080963134766, - 1.2308621406555176, - 1.2529340982437134, - 1.2710217237472534, - 1.2846319675445557, - 1.2933932542800903, - 1.2970666885375977, - 1.295552134513855, - 1.2888909578323364, - 1.2772647142410278, - 1.2609906196594238, - 1.240512490272522, - 1.2163890600204468, - 0.9973548650741577, - 1.0199646949768066, - 1.044945240020752, - 1.0716148614883423, - 1.0992462635040283, - 1.1270856857299805, - 1.1543737649917603, - 1.180366039276123, - 1.2043536901474, - 1.225682258605957, - 1.243769884109497, - 1.2581233978271484, - 1.2683510780334473, - 1.2741742134094238, - 1.2754335403442383, - 1.2720950841903687, - 1.2642498016357422, - 1.252111554145813, - 1.2360116243362427, - 1.2163890600204468, - 0.9973548650741577, - 1.0131756067276, - 1.0315520763397217, - 1.051983118057251, - 1.073911428451538, - 1.0967388153076172, - 1.119842529296875, - 1.1425925493240356, - 1.1643681526184082, - 1.1845753192901611, - 1.2026630640029907, - 1.2181378602981567, - 1.2305775880813599, - 1.2396429777145386, - 1.245086669921875, - 1.2467602491378784, - 1.2446180582046509, - 1.2387185096740723, - 1.2292225360870361, - 1.2163890600204468, - 0.9973548650741577, - 1.0048338174819946, - 1.0150961875915527, - 1.0278619527816772, - 1.0427829027175903, - 1.0594520568847656, - 1.077414631843567, - 1.09618079662323, - 1.1152385473251343, - 1.1340681314468384, - 1.152155876159668, - 1.1690082550048828, - 1.1841658353805542, - 1.1972150802612305, - 1.2077999114990234, - 1.2156317234039307, - 1.2204968929290771, - 1.2222626209259033, - 1.2208807468414307, - 1.2163890600204468, - 0.9973548650741577, - 0.9958435297012329, - 0.9973608255386353, - 1.001865267753601, - 1.009234070777893, - 1.019266128540039, - 1.03168785572052, - 1.046160340309143, - 1.0622889995574951, - 1.0796337127685547, - 1.0977214574813843, - 1.1160587072372437, - 1.1341453790664673, - 1.151488184928894, - 1.1676139831542969, - 1.1820827722549438, - 1.1945000886917114, - 1.2045271396636963, - 1.211890459060669, - 1.2163890600204468, - 0.9973548650741577, - 0.9871788620948792, - 0.9802678227424622, - 0.9768101572990417, - 0.9769002795219421, - 0.9805356860160828, - 0.9876172542572021, - 0.9979516863822937, - 1.011257290840149, - 1.0271708965301514, - 1.045258641242981, - 1.0650269985198975, - 1.0859367847442627, - 1.1074175834655762, - 1.1288836002349854, - 1.1497490406036377, - 1.1694450378417969, - 1.187434196472168, - 1.2032257318496704, - 1.2163890600204468, - 0.9973548650741577, - 0.9797787666320801, - 0.9656694531440735, - 0.9554117918014526, - 0.9492855668067932, - 0.9474579095840454, - 0.9499785900115967, - 0.9567790031433105, - 0.9676734805107117, - 0.9823649525642395, - 1.0004526376724243, - 1.021443247795105, - 1.0447640419006348, - 1.0697790384292603, - 1.0958057641983032, - 1.1221343278884888, - 1.1480467319488525, - 1.1728358268737793, - 1.1958256959915161, - 1.2163890600204468, - 0.9973548650741577, - 0.9744451642036438, - 0.9551477432250977, - 0.9399890303611755, - 0.9293823838233948, - 0.9236171841621399, - 0.9228507280349731, - 0.9271038770675659, - 0.9362605810165405, - 0.9500712156295776, - 0.9681589007377625, - 0.9900303483009338, - 1.0150889158248901, - 1.0426510572433472, - 1.071964979171753, - 1.1022311449050903, - 1.1326239109039307, - 1.1623141765594482, - 1.190492033958435, - 1.2163890600204468, - 0.9973548650741577, - 0.971756100654602, - 0.9498429298400879, - 0.9322130680084229, - 0.9193474650382996, - 0.9115970730781555, - 0.9091732501983643, - 0.9121421575546265, - 0.9204227328300476, - 0.9337891936302185, - 0.9518768787384033, - 0.9741925001144409, - 1.0001271963119507, - 1.0289735794067383, - 1.0599448680877686, - 1.0921962261199951, - 1.1248478889465332, - 1.157009243965149, - 1.187803030014038, - 1.2163890600204468, - 0.9973548650741577, - 0.9720028638839722, - 0.9503297209739685, - 0.9329266548156738, - 0.9202683568000793, - 0.9127001166343689, - 0.9104284048080444, - 0.9135151505470276, - 0.9218761324882507, - 0.935283362865448, - 0.9533710479736328, - 0.975645899772644, - 1.001500129699707, - 1.0302287340164185, - 1.061047911643982, - 1.093117117881775, - 1.1255614757537842, - 1.1574960947036743, - 1.1880497932434082, - 1.2163890600204468, - 0.9973548650741577, - 0.9751587510108948, - 0.9565554857254028, - 0.94205242395401, - 0.9320452213287354, - 0.9268068075180054, - 0.9264801740646362, - 0.9310740828514099, - 0.9404633045196533, - 0.9543917775154114, - 0.9724794626235962, - 0.9942330121994019, - 1.019059181213379, - 1.0462805032730103, - 1.0751546621322632, - 1.1048940420150757, - 1.1346873044967651, - 1.1637217998504639, - 1.191205620765686, - 1.2163890600204468, - 0.9973548650741577, - 0.9808818101882935, - 0.9678454995155334, - 0.9586014747619629, - 0.9534018039703369, - 0.9523884654045105, - 0.9555890560150146, - 0.9629161953926086, - 0.9741700887680054, - 0.9890437126159668, - 1.0071314573287964, - 1.027939796447754, - 1.0509012937545776, - 1.0753893852233887, - 1.100736379623413, - 1.1262506246566772, - 1.1512362957000732, - 1.1750118732452393, - 1.1969287395477295, - 1.2163890600204468, - 0.9973548650741577, - 0.9885518550872803, - 0.9829763770103455, - 0.9807804226875305, - 0.9820238947868347, - 0.9866728782653809, - 0.9946006536483765, - 1.005590796470642, - 1.0193437337875366, - 1.0354841947555542, - 1.0535718202590942, - 1.0731134414672852, - 1.0935758352279663, - 1.1144009828567505, - 1.1350207328796387, - 1.1548726558685303, - 1.1734153032302856, - 1.1901427507400513, - 1.2045987844467163, - 1.2163890600204468, - 0.9973548650741577, - 0.9973376989364624, - 1.0003083944320679, - 1.0061858892440796, - 1.0148097276687622, - 1.0259449481964111, - 1.0392875671386719, - 1.054473638534546, - 1.0710890293121338, - 1.088680624961853, - 1.106768250465393, - 1.1248588562011719, - 1.1424586772918701, - 1.159087896347046, - 1.174292802810669, - 1.1876585483551025, - 1.19882071018219, - 1.2074748277664185, - 1.2133846282958984, - 1.2163890600204468, - 0.9973548650741577, - 1.0062872171401978, - 1.0179634094238281, - 1.03206467628479, - 1.0482065677642822, - 1.0659486055374146, - 1.08480703830719, - 1.1042672395706177, - 1.1237986087799072, - 1.142868161201477, - 1.1609559059143066, - 1.1775683164596558, - 1.1922523975372314, - 1.204607367515564, - 1.2142964601516724, - 1.2210553884506226, - 1.22469961643219, - 1.2251297235488892, - 1.2223341464996338, - 1.2163890600204468, - 0.9973548650741577, - 1.0144307613372803, - 1.034028172492981, - 1.055612564086914, - 1.0785952806472778, - 1.1023491621017456, - 1.126226544380188, - 1.14957594871521, - 1.1717604398727417, - 1.192175030708313, - 1.210262656211853, - 1.2255301475524902, - 1.2375609874725342, - 1.246026873588562, - 1.2506970167160034, - 1.2514439821243286, - 1.2482473850250244, - 1.241194486618042, - 1.2304775714874268, - 1.2163890600204468, - 0.9973548650741577, - 1.0208855867385864, - 1.0467618703842163, - 1.0742777585983276, - 1.1026827096939087, - 1.131201982498169, - 1.1590576171875, - 1.1854896545410156, - 1.2097773551940918, - 1.2312579154968262, - 1.2493456602096558, - 1.2635470628738403, - 1.2734746932983398, - 1.278857946395874, - 1.2795498371124268, - 1.275531530380249, - 1.266912579536438, - 1.2539281845092773, - 1.2369325160980225, - 1.2163890600204468, - 0.9973548650741577, - 1.0249524116516113, - 1.0547845363616943, - 1.086037516593933, - 1.1178587675094604, - 1.1493803262710571, - 1.1797423362731934, - 1.2081167697906494, - 1.233729362487793, - 1.255881667137146, - 1.2739694118499756, - 1.2874990701675415, - 1.2961018085479736, - 1.299542784690857, - 1.297728180885315, - 1.2907075881958008, - 1.2786723375320435, - 1.261950969696045, - 1.2409993410110474, - 1.2163890600204468, - 0.9973548650741577, - 1.0261905193328857, - 1.0572268962860107, - 1.0896174907684326, - 1.122478723526001, - 1.154914379119873, - 1.1860394477844238, - 1.2150050401687622, - 1.2410210371017456, - 1.2633777856826782, - 1.2814655303955078, - 1.2947907447814941, - 1.3029900789260864, - 1.3058397769927979, - 1.3032622337341309, - 1.2953275442123413, - 1.282252311706543, - 1.2643933296203613, - 1.2422373294830322, - 1.2163890600204468, - 0.9973548650741577, - 1.024465560913086, - 1.0538241863250732, - 1.084629774093628, - 1.116042137145996, - 1.1472042798995972, - 1.177266240119934, - 1.2054080963134766, - 1.2308621406555176, - 1.2529340982437134, - 1.2710217237472534, - 1.2846318483352661, - 1.2933931350708008, - 1.2970666885375977, - 1.295552134513855, - 1.2888909578323364, - 1.2772647142410278, - 1.2609906196594238, - 1.240512490272522, - 1.2163890600204468 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.36285400390625, - 0.3454667031764984, - 0.32920020818710327, - 0.31449827551841736, - 0.3017618656158447, - 0.2913384735584259, - 0.2835123538970947, - 0.27849704027175903, - 0.27642929553985596, - 0.2773655652999878, - 0.2812802493572235, - 0.2880666255950928, - 0.29753953218460083, - 0.30944061279296875, - 0.323445200920105, - 0.33917129039764404, - 0.3561899662017822, - 0.374036967754364, - 0.392225444316864, - 0.41025930643081665, - 0.36285400390625, - 0.3649180233478546, - 0.36757227778434753, - 0.37074440717697144, - 0.3743478059768677, - 0.3782842457294464, - 0.3824463486671448, - 0.38672056794166565, - 0.39099031686782837, - 0.3951391279697418, - 0.39905381202697754, - 0.4026276469230652, - 0.40576305985450745, - 0.4083746075630188, - 0.4103910028934479, - 0.4117572605609894, - 0.4124360978603363, - 0.4124090373516083, - 0.4116767644882202, - 0.41025930643081665, - 0.36285400390625, - 0.3841807246208191, - 0.40557223558425903, - 0.4264450669288635, - 0.44622981548309326, - 0.46438685059547424, - 0.48042088747024536, - 0.4938945770263672, - 0.5044403672218323, - 0.5117705464363098, - 0.5156852006912231, - 0.5160776376724243, - 0.512937068939209, - 0.5063491463661194, - 0.4964936077594757, - 0.48363927006721497, - 0.4681367576122284, - 0.4504089653491974, - 0.4309394657611847, - 0.41025930643081665, - 0.36285400390625, - 0.4011673629283905, - 0.43908217549324036, - 0.47556421160697937, - 0.5096184015274048, - 0.5403157472610474, - 0.5668189525604248, - 0.5884050726890564, - 0.6044853329658508, - 0.6146209836006165, - 0.6185356974601746, - 0.6161226034164429, - 0.6074475646018982, - 0.5927472114562988, - 0.5724225044250488, - 0.5470278263092041, - 0.5172559022903442, - 0.4839189052581787, - 0.4479261040687561, - 0.41025927662849426, - 0.36285400390625, - 0.41403716802597046, - 0.464470773935318, - 0.5127790570259094, - 0.5576443672180176, - 0.597842812538147, - 0.6322779059410095, - 0.6600103378295898, - 0.6802837252616882, - 0.6925449967384338, - 0.6964597105979919, - 0.691921055316925, - 0.6790528297424316, - 0.6582061648368835, - 0.6299495697021484, - 0.5950537919998169, - 0.5544707775115967, - 0.5093075037002563, - 0.46079593896865845, - 0.41025927662849426, - 0.36285400390625, - 0.42139554023742676, - 0.4789867699146271, - 0.5340567827224731, - 0.5851033329963684, - 0.6307340860366821, - 0.669704258441925, - 0.7009509205818176, - 0.7236217260360718, - 0.7370983362197876, - 0.7410130500793457, - 0.7352590560913086, - 0.7199934124946594, - 0.6956325173377991, - 0.6628408432006836, - 0.6225128173828125, - 0.5757485032081604, - 0.5238234996795654, - 0.46815428137779236, - 0.41025927662849426, - 0.36285400390625, - 0.42244505882263184, - 0.48105719685554504, - 0.5370916128158569, - 0.589019775390625, - 0.635425329208374, - 0.6750423312187195, - 0.7067902684211731, - 0.7298030257225037, - 0.7434529066085815, - 0.7473676204681396, - 0.7414403557777405, - 0.7258327603340149, - 0.7009706497192383, - 0.6675320863723755, - 0.6264292597770691, - 0.5787832736968994, - 0.5258939266204834, - 0.46920379996299744, - 0.41025927662849426, - 0.36285400390625, - 0.41707199811935425, - 0.47045761346817017, - 0.5215546488761902, - 0.5689692497253418, - 0.6114081144332886, - 0.6477136611938477, - 0.6768954992294312, - 0.6981576681137085, - 0.7109201550483704, - 0.7148348689079285, - 0.7097949981689453, - 0.695937991142273, - 0.6736419200897217, - 0.64351487159729, - 0.6063787341117859, - 0.5632463693618774, - 0.5152943730354309, - 0.46383073925971985, - 0.41025927662849426, - 0.36285400390625, - 0.4058586061000824, - 0.4483366906642914, - 0.48912957310676575, - 0.5271245837211609, - 0.5612851977348328, - 0.5906797051429749, - 0.6145062446594238, - 0.6321150064468384, - 0.6430254578590393, - 0.6469401717185974, - 0.6437523365020752, - 0.6335487365722656, - 0.6166079640388489, - 0.5933919548988342, - 0.5645340085029602, - 0.5308213233947754, - 0.49317342042922974, - 0.452617347240448, - 0.41025927662849426, - 0.36285400390625, - 0.3900200128555298, - 0.41709157824516296, - 0.44333019852638245, - 0.4680202007293701, - 0.49048808217048645, - 0.5101209878921509, - 0.5263833999633789, - 0.5388317108154297, - 0.547126293182373, - 0.5510410070419312, - 0.5504689812660217, - 0.5454258918762207, - 0.5360492467880249, - 0.5225948095321655, - 0.5054296255111694, - 0.4850218892097473, - 0.4619283080101013, - 0.4367787539958954, - 0.41025930643081665, - 0.36285400390625, - 0.37127262353897095, - 0.380108118057251, - 0.38911953568458557, - 0.39806103706359863, - 0.40668874979019165, - 0.4147672951221466, - 0.4220763146877289, - 0.4284164607524872, - 0.4336147904396057, - 0.4375295042991638, - 0.440053790807724, - 0.4411188066005707, - 0.44069552421569824, - 0.4387954771518707, - 0.43547049164772034, - 0.4308112561702728, - 0.4249448776245117, - 0.41803136467933655, - 0.41025930643081665, - 0.36285400390625, - 0.3516479432582855, - 0.3413941264152527, - 0.33237218856811523, - 0.32482826709747314, - 0.31896814703941345, - 0.31495165824890137, - 0.31288838386535645, - 0.31283456087112427, - 0.3147917091846466, - 0.3187063932418823, - 0.3244718909263611, - 0.33193084597587585, - 0.3408799171447754, - 0.35107487440109253, - 0.36223769187927246, - 0.3740639090538025, - 0.38623085618019104, - 0.3984066843986511, - 0.41025930643081665, - 0.36285400390625, - 0.33327269554138184, - 0.3051447868347168, - 0.2792375981807709, - 0.2562578022480011, - 0.23683220148086548, - 0.22149071097373962, - 0.21065177023410797, - 0.20461106300354004, - 0.2035333514213562, - 0.2074480503797531, - 0.21624836325645447, - 0.22969426214694977, - 0.24741894006729126, - 0.26893889904022217, - 0.293667197227478, - 0.32092928886413574, - 0.34998151659965515, - 0.38003143668174744, - 0.41025930643081665, - 0.3628540337085724, - 0.3181380033493042, - 0.27528828382492065, - 0.2354736626148224, - 0.19978022575378418, - 0.16918155550956726, - 0.14451226592063904, - 0.12644532322883606, - 0.11547356843948364, - 0.11189627647399902, - 0.11581099033355713, - 0.12711089849472046, - 0.14548781514167786, - 0.1704404652118683, - 0.20128825306892395, - 0.2371896356344223, - 0.27716538310050964, - 0.3201250433921814, - 0.3648967742919922, - 0.41025930643081665, - 0.3628540337085724, - 0.3078840672969818, - 0.2550601363182068, - 0.20582301914691925, - 0.16151589155197144, - 0.12334725260734558, - 0.09235832095146179, - 0.06939435005187988, - 0.055081695318222046, - 0.04981085658073425, - 0.05372557044029236, - 0.06671902537345886, - 0.08843684196472168, - 0.11828657984733582, - 0.15545396506786346, - 0.19892530143260956, - 0.2475147396326065, - 0.29989686608314514, - 0.3546428084373474, - 0.41025930643081665, - 0.3628540337085724, - 0.3036220073699951, - 0.24665221571922302, - 0.1934986710548401, - 0.1456112414598465, - 0.10429617762565613, - 0.0706804096698761, - 0.04568096995353699, - 0.029979705810546875, - 0.02400493621826172, - 0.027919650077819824, - 0.04161703586578369, - 0.06472346186637878, - 0.09660866856575012, - 0.13640284538269043, - 0.18302065134048462, - 0.23519039154052734, - 0.2914889454841614, - 0.3503807485103607, - 0.41025930643081665, - 0.3628540337085724, - 0.30581367015838623, - 0.2509757876396179, - 0.19983616471290588, - 0.15378981828689575, - 0.11409276723861694, - 0.08182775974273682, - 0.057874977588653564, - 0.04288777709007263, - 0.03727501630783081, - 0.041189730167388916, - 0.05452510714530945, - 0.07691746950149536, - 0.10775598883628845, - 0.14619944989681244, - 0.19119924306869507, - 0.24152788519859314, - 0.2958125174045563, - 0.35257241129875183, - 0.41025930643081665, - 0.3628540337085724, - 0.31422159075737, - 0.26756227016448975, - 0.22414878010749817, - 0.1851653754711151, - 0.15167541801929474, - 0.12459239363670349, - 0.10465505719184875, - 0.0924072265625, - 0.08818310499191284, - 0.09209781885147095, - 0.10404455661773682, - 0.12369754910469055, - 0.15052060782909393, - 0.18378211557865143, - 0.22257478535175323, - 0.2658405005931854, - 0.3123989999294281, - 0.3609803318977356, - 0.41025930643081665, - 0.3628540337085724, - 0.3279346227645874, - 0.2946142554283142, - 0.2638018727302551, - 0.23633790016174316, - 0.2129715085029602, - 0.1943400651216507, - 0.1809517741203308, - 0.17317187786102295, - 0.17121253907680511, - 0.17512723803520203, - 0.18480917811393738, - 0.1999942660331726, - 0.22026827931404114, - 0.2450782060623169, - 0.2737473249435425, - 0.30549356341362, - 0.33945101499557495, - 0.374693363904953, - 0.41025930643081665, - 0.36285400390625, - 0.3454667031764984, - 0.32920023798942566, - 0.31449830532073975, - 0.3017619252204895, - 0.2913385033607483, - 0.2835124135017395, - 0.2784970998764038, - 0.27642935514450073, - 0.27736562490463257, - 0.2812803089618683, - 0.28806668519973755, - 0.2975395917892456, - 0.30944064259529114, - 0.32344523072242737, - 0.3391713500022888, - 0.3561899960041046, - 0.374036967754364, - 0.392225444316864, - 0.41025930643081665 - ], - "y": [ - 0.364915668964386, - 0.31201785802841187, - 0.26129505038261414, - 0.21413090825080872, - 0.17181187868118286, - 0.13549235463142395, - 0.10616305470466614, - 0.08462393283843994, - 0.07146257162094116, - 0.06703805923461914, - 0.07147091627120972, - 0.08464029431343079, - 0.10618704557418823, - 0.13552331924438477, - 0.17184896767139435, - 0.2141731083393097, - 0.26134127378463745, - 0.3120667636394501, - 0.3649659752845764, - 0.41859593987464905, - 0.364915668964386, - 0.3071069121360779, - 0.25160717964172363, - 0.1999303102493286, - 0.15348590910434723, - 0.11354094743728638, - 0.08118495345115662, - 0.05730047821998596, - 0.0425390899181366, - 0.03730344772338867, - 0.04173630475997925, - 0.05571681261062622, - 0.07886359095573425, - 0.11054521799087524, - 0.14989754557609558, - 0.19584716856479645, - 0.24714067578315735, - 0.3023788630962372, - 0.36005502939224243, - 0.41859593987464905, - 0.364915668964386, - 0.30850014090538025, - 0.25435560941696167, - 0.20395897328853607, - 0.15868495404720306, - 0.11976853013038635, - 0.08827117085456848, - 0.0650520920753479, - 0.050744593143463135, - 0.04573908448219299, - 0.05017194151878357, - 0.06392231583595276, - 0.08661520481109619, - 0.11763143539428711, - 0.15612509846687317, - 0.2010461837053299, - 0.2511693239212036, - 0.3051272928714752, - 0.3614482581615448, - 0.41859593987464905, - 0.364915668964386, - 0.3160465359687805, - 0.269242525100708, - 0.22578036785125732, - 0.1868455708026886, - 0.15350021421909332, - 0.12665385007858276, - 0.10703873634338379, - 0.09518998861312866, - 0.09143084287643433, - 0.0958636999130249, - 0.10836771130561829, - 0.12860184907913208, - 0.15601412951946259, - 0.18985681235790253, - 0.22920681536197662, - 0.27299073338508606, - 0.32001423835754395, - 0.36899465322494507, - 0.41859593987464905, - 0.364915668964386, - 0.32892829179763794, - 0.2946547269821167, - 0.2630297839641571, - 0.23491615056991577, - 0.21108070015907288, - 0.19217360019683838, - 0.17871057987213135, - 0.17105887830257416, - 0.16942721605300903, - 0.173860102891922, - 0.18423660099506378, - 0.20027369260787964, - 0.22153392434120178, - 0.24743732810020447, - 0.277277410030365, - 0.31024014949798584, - 0.34542641043663025, - 0.3818764388561249, - 0.41859591007232666, - 0.364915668964386, - 0.34574955701828003, - 0.32783836126327515, - 0.3116706609725952, - 0.29768750071525574, - 0.28627026081085205, - 0.27773037552833557, - 0.2723008394241333, - 0.2701297104358673, - 0.27127620577812195, - 0.2757090926170349, - 0.28330743312835693, - 0.2938639521598816, - 0.307090699672699, - 0.32262688875198364, - 0.34004873037338257, - 0.35888102650642395, - 0.3786100745201111, - 0.3986976742744446, - 0.41859591007232666, - 0.364915668964386, - 0.36468741297721863, - 0.36519747972488403, - 0.3664320409297943, - 0.3683573305606842, - 0.370920866727829, - 0.3740527629852295, - 0.37766751646995544, - 0.3816665709018707, - 0.3859408497810364, - 0.39037370681762695, - 0.39484429359436035, - 0.39923062920570374, - 0.4034130573272705, - 0.40727752447128296, - 0.4107185900211334, - 0.41364240646362305, - 0.41596919298171997, - 0.4176355302333832, - 0.41859591007232666, - 0.364915668964386, - 0.38368967175483704, - 0.40268370509147644, - 0.42137962579727173, - 0.43926751613616943, - 0.45585939288139343, - 0.4707027077674866, - 0.48339253664016724, - 0.4935827851295471, - 0.500995397567749, - 0.5054283142089844, - 0.5067604780197144, - 0.5049556493759155, - 0.5000630021095276, - 0.4922160506248474, - 0.48162877559661865, - 0.46858999133110046, - 0.45345538854599, - 0.4366377890110016, - 0.41859591007232666, - 0.364915668964386, - 0.40069714188575745, - 0.436234712600708, - 0.4705590307712555, - 0.5027338266372681, - 0.5318813323974609, - 0.5572066903114319, - 0.5780189037322998, - 0.5937504768371582, - 0.6039720177650452, - 0.6084048748016357, - 0.6069281697273254, - 0.5995820760726929, - 0.5865670442581177, - 0.5682380199432373, - 0.5450950860977173, - 0.5177693963050842, - 0.48700642585754395, - 0.453645259141922, - 0.41859591007232666, - 0.364915668964386, - 0.4138668179512024, - 0.4622148275375366, - 0.5086408853530884, - 0.5518786907196045, - 0.59074866771698, - 0.6241906881332397, - 0.6512925624847412, - 0.6713148355484009, - 0.6837115287780762, - 0.6881443858146667, - 0.6844925880432129, - 0.6728556156158447, - 0.6535510420799255, - 0.6271053552627563, - 0.5942399501800537, - 0.5558512806892395, - 0.5129865407943726, - 0.46681493520736694, - 0.41859591007232666, - 0.3649156391620636, - 0.4217715263366699, - 0.4778086543083191, - 0.5314984321594238, - 0.5813764929771423, - 0.6260820627212524, - 0.6643959283828735, - 0.6952729225158691, - 0.7178706526756287, - 0.7315728664398193, - 0.7360057234764099, - 0.7310483455657959, - 0.7168359756469727, - 0.6937562823295593, - 0.6624387502670288, - 0.6237377524375916, - 0.578708827495575, - 0.5285803079605103, - 0.4747196435928345, - 0.41859591007232666, - 0.3649156391620636, - 0.4235546886920929, - 0.4813263416290283, - 0.5366547107696533, - 0.5880306959152222, - 0.6340527534484863, - 0.6734656095504761, - 0.7051941156387329, - 0.7283728718757629, - 0.7423695921897888, - 0.7468024492263794, - 0.7415505647659302, - 0.7267572283744812, - 0.7028259038925171, - 0.6704094409942627, - 0.6303919553756714, - 0.5838651061058044, - 0.5320980548858643, - 0.47650280594825745, - 0.41859591007232666, - 0.3649156391620636, - 0.4190230965614319, - 0.47238674759864807, - 0.5235509872436523, - 0.5711202621459961, - 0.6137968301773071, - 0.6504167318344116, - 0.6799811124801636, - 0.7016834020614624, - 0.7149317264556885, - 0.7193645238876343, - 0.7148611545562744, - 0.7015442848205566, - 0.6797770857810974, - 0.6501535177230835, - 0.6134815216064453, - 0.5707613825798035, - 0.5231584310531616, - 0.47197121381759644, - 0.41859591007232666, - 0.364915668964386, - 0.40866777300834656, - 0.451958566904068, - 0.49360716342926025, - 0.5324775576591492, - 0.5675094127655029, - 0.5977471470832825, - 0.6223660111427307, - 0.6406944394111633, - 0.6522324085235596, - 0.6566652655601501, - 0.6538721323013306, - 0.643929123878479, - 0.6271075010299683, - 0.6038660407066345, - 0.5748388171195984, - 0.5408175587654114, - 0.5027302503585815, - 0.4616158902645111, - 0.41859591007232666, - 0.364915668964386, - 0.3936108946800232, - 0.4222555458545685, - 0.45006823539733887, - 0.4762903153896332, - 0.5002065300941467, - 0.5211644172668457, - 0.5385924577713013, - 0.5520151853561401, - 0.5610663890838623, - 0.5654993057250977, - 0.5651928782463074, - 0.5601555705070496, - 0.5505247712135315, - 0.5365631580352783, - 0.5186516046524048, - 0.4972786009311676, - 0.4730272591114044, - 0.44655901193618774, - 0.41859591007232666, - 0.364915668964386, - 0.3754841387271881, - 0.38649648427963257, - 0.397652268409729, - 0.40864720940589905, - 0.4191814064979553, - 0.42896750569343567, - 0.4377385675907135, - 0.4452553391456604, - 0.451312780380249, - 0.455745667219162, - 0.45843306183815, - 0.4593016803264618, - 0.4583278298377991, - 0.4555380642414093, - 0.45100849866867065, - 0.44486263394355774, - 0.4372681975364685, - 0.42843225598335266, - 0.41859591007232666, - 0.364915668964386, - 0.3562517762184143, - 0.3485563397407532, - 0.3420392572879791, - 0.33687832951545715, - 0.33321428298950195, - 0.33114713430404663, - 0.33073320984840393, - 0.3319838345050812, - 0.33486488461494446, - 0.3392977714538574, - 0.3451615571975708, - 0.3522963225841522, - 0.36050745844841003, - 0.36957094073295593, - 0.379239559173584, - 0.38924962282180786, - 0.3993280231952667, - 0.40919989347457886, - 0.41859591007232666, - 0.364915668964386, - 0.3379979431629181, - 0.31254658102989197, - 0.289255827665329, - 0.26876100897789, - 0.25162118673324585, - 0.23830384016036987, - 0.22917227447032928, - 0.22447556257247925, - 0.22434183955192566, - 0.22877472639083862, - 0.23765328526496887, - 0.25073540210723877, - 0.2676641643047333, - 0.28797778487205505, - 0.31112223863601685, - 0.3364661931991577, - 0.3633182644844055, - 0.39094606041908264, - 0.41859591007232666, - 0.364915668964386, - 0.32270070910453796, - 0.2823694050312042, - 0.24502186477184296, - 0.21167686581611633, - 0.18324391543865204, - 0.16049863398075104, - 0.14406144618988037, - 0.13438072800636292, - 0.13172054290771484, - 0.13615339994430542, - 0.14755846560001373, - 0.16562455892562866, - 0.18985894322395325, - 0.21960051357746124, - 0.25403809547424316, - 0.2922322452068329, - 0.33314111828804016, - 0.3756488263607025, - 0.41859591007232666, - 0.364915668964386, - 0.31201785802841187, - 0.26129505038261414, - 0.21413089334964752, - 0.17181186378002167, - 0.13549235463142395, - 0.10616302490234375, - 0.08462390303611755, - 0.07146254181861877, - 0.06703802943229675, - 0.07147088646888733, - 0.0846402645111084, - 0.10618701577186584, - 0.13552328944206238, - 0.17184895277023315, - 0.2141730934381485, - 0.26134127378463745, - 0.3120667338371277, - 0.3649659752845764, - 0.41859593987464905 - ], - "z": [ - 1.1720170974731445, - 1.1995900869369507, - 1.2283055782318115, - 1.2573803663253784, - 1.28602135181427, - 1.3134472370147705, - 1.3389099836349487, - 1.3617149591445923, - 1.3812401294708252, - 1.3969528675079346, - 1.408424735069275, - 1.4153425693511963, - 1.417517900466919, - 1.414891242980957, - 1.4075342416763306, - 1.395647644996643, - 1.379555583000183, - 1.3596971035003662, - 1.3366140127182007, - 1.3109357357025146, - 1.1720170974731445, - 1.1948500871658325, - 1.2189549207687378, - 1.2436740398406982, - 1.2683331966400146, - 1.2922598123550415, - 1.3148010969161987, - 1.3353424072265625, - 1.353323221206665, - 1.3682531118392944, - 1.3797249794006348, - 1.3874256610870361, - 1.3911453485488892, - 1.390782356262207, - 1.386346697807312, - 1.3779594898223877, - 1.365849256515503, - 1.3503464460372925, - 1.3318740129470825, - 1.3109357357025146, - 1.1720170974731445, - 1.1877384185791016, - 1.204925537109375, - 1.2231097221374512, - 1.2417948246002197, - 1.260471224784851, - 1.2786295413970947, - 1.2957744598388672, - 1.3114382028579712, - 1.3251935243606567, - 1.336665391921997, - 1.3455406427383423, - 1.3515772819519043, - 1.354610800743103, - 1.3545582294464111, - 1.3514209985733032, - 1.3452848196029663, - 1.3363170623779297, - 1.3247623443603516, - 1.3109357357025146, - 1.1720170974731445, - 1.1790257692337036, - 1.1877379417419434, - 1.1979159116744995, - 1.2092820405960083, - 1.2215263843536377, - 1.2343149185180664, - 1.2472988367080688, - 1.2601239681243896, - 1.2724403142929077, - 1.283912181854248, - 1.2942264080047607, - 1.3031017780303955, - 1.3102961778640747, - 1.3156133890151978, - 1.3189083337783813, - 1.3200911283493042, - 1.319129467010498, - 1.3160496950149536, - 1.3109357357025146, - 1.1720170974731445, - 1.1696562767028809, - 1.1692545413970947, - 1.1708227396011353, - 1.1743181943893433, - 1.1796456575393677, - 1.186659574508667, - 1.1951688528060913, - 1.2049411535263062, - 1.215710163116455, - 1.2271819114685059, - 1.2390437126159668, - 1.250971794128418, - 1.2626408338546753, - 1.2737325429916382, - 1.2839444875717163, - 1.29299795627594, - 1.3006460666656494, - 1.3066802024841309, - 1.3109357357025146, - 1.1720170974731445, - 1.1606452465057373, - 1.1514782905578613, - 1.1447662115097046, - 1.1406922340393066, - 1.1393672227859497, - 1.1408275365829468, - 1.145033359527588, - 1.151869773864746, - 1.161150574684143, - 1.1726223230361938, - 1.1859723329544067, - 1.2008363008499146, - 1.216808795928955, - 1.2334542274475098, - 1.2503184080123901, - 1.2669414281845093, - 1.282869815826416, - 1.2976691722869873, - 1.3109357357025146, - 1.1720170974731445, - 1.152969241142273, - 1.1363356113433838, - 1.1225700378417969, - 1.112047791481018, - 1.1050560474395752, - 1.1017855405807495, - 1.102325439453125, - 1.1066609621047974, - 1.1146739721298218, - 1.1261457204818726, - 1.1407634019851685, - 1.1581283807754517, - 1.1777667999267578, - 1.1991430521011353, - 1.2216740846633911, - 1.2447452545166016, - 1.267727255821228, - 1.289993166923523, - 1.3109357357025146, - 1.1720170974731445, - 1.1474601030349731, - 1.1254675388336182, - 1.1066393852233887, - 1.0914891958236694, - 1.080430269241333, - 1.0737643241882324, - 1.0716731548309326, - 1.0742136240005493, - 1.0813167095184326, - 1.092788577079773, - 1.10831618309021, - 1.1274760961532593, - 1.1497455835342407, - 1.174517273902893, - 1.201115369796753, - 1.2288144826889038, - 1.2568590641021729, - 1.2844839096069336, - 1.3109357357025146, - 1.1720170974731445, - 1.144714593887329, - 1.1200515031814575, - 1.0987005233764648, - 1.0812441110610962, - 1.068158507347107, - 1.059800386428833, - 1.0563980340957642, - 1.0580440759658813, - 1.064693808555603, - 1.0761655569076538, - 1.092146635055542, - 1.1122009754180908, - 1.1357816457748413, - 1.1622453927993774, - 1.1908704042434692, - 1.2208757400512695, - 1.2514430284500122, - 1.281738519668579, - 1.3109357357025146, - 1.1720170974731445, - 1.1450304985046387, - 1.1206746101379395, - 1.0996140241622925, - 1.0824229717254639, - 1.0695704221725464, - 1.0614070892333984, - 1.0581555366516113, - 1.0599045753479004, - 1.0666064023971558, - 1.0780781507492065, - 1.0940070152282715, - 1.113958477973938, - 1.1373883485794067, - 1.1636574268341064, - 1.1920491456985474, - 1.2217891216278076, - 1.2520662546157837, - 1.2820544242858887, - 1.3109357357025146, - 1.1720170974731445, - 1.1483734846115112, - 1.1272693872451782, - 1.1092805862426758, - 1.094897747039795, - 1.0845131874084473, - 1.0784101486206055, - 1.076755166053772, - 1.079593300819397, - 1.0868473052978516, - 1.0983190536499023, - 1.1136958599090576, - 1.1325581073760986, - 1.1543914079666138, - 1.1786001920700073, - 1.204524040222168, - 1.2314558029174805, - 1.258660912513733, - 1.2853972911834717, - 1.3109357357025146, - 1.1720170974731445, - 1.154381275177002, - 1.1391210556030273, - 1.1266529560089111, - 1.1173168420791626, - 1.1113674640655518, - 1.1089671850204468, - 1.1101813316345215, - 1.1149768829345703, - 1.123223066329956, - 1.1346948146820068, - 1.1490793228149414, - 1.1659842729568481, - 1.1849483251571655, - 1.2054543495178223, - 1.226943016052246, - 1.2488280534744263, - 1.270512580871582, - 1.2914050817489624, - 1.3109357357025146, - 1.1720170974731445, - 1.162402868270874, - 1.1549453735351562, - 1.1498483419418335, - 1.1472506523132324, - 1.1472231149673462, - 1.1497666835784912, - 1.1548117399215698, - 1.16222083568573, - 1.171791911125183, - 1.1832636594772339, - 1.1963233947753906, - 1.2106146812438965, - 1.2257479429244995, - 1.2413101196289062, - 1.256876826286316, - 1.2720235586166382, - 1.286336898803711, - 1.2994266748428345, - 1.3109357357025146, - 1.1720170974731445, - 1.1715688705444336, - 1.173027515411377, - 1.1763533353805542, - 1.1814554929733276, - 1.188194751739502, - 1.196387529373169, - 1.2058101892471313, - 1.2162057161331177, - 1.2272905111312866, - 1.238762378692627, - 1.2503081560134888, - 1.261613130569458, - 1.2723687887191772, - 1.282281756401062, - 1.2910816669464111, - 1.2985285520553589, - 1.3044190406799316, - 1.3085927963256836, - 1.3109357357025146, - 1.1720170974731445, - 1.180886149406433, - 1.1914080381393433, - 1.2032955884933472, - 1.2162245512008667, - 1.2298424243927002, - 1.2437775135040283, - 1.2576498985290527, - 1.2710812091827393, - 1.2837048768997192, - 1.29517662525177, - 1.3051836490631104, - 1.3134528398513794, - 1.3197587728500366, - 1.3239293098449707, - 1.3258508443832397, - 1.3254708051681519, - 1.322799563407898, - 1.317910075187683, - 1.3109357357025146, - 1.1720170974731445, - 1.189345121383667, - 1.2080949544906616, - 1.2277555465698242, - 1.2477902173995972, - 1.2676527500152588, - 1.2868013381958008, - 1.304713487625122, - 1.3209006786346436, - 1.3349214792251587, - 1.3463932275772095, - 1.3550032377243042, - 1.3605164289474487, - 1.362782597541809, - 1.3617397546768188, - 1.3574165105819702, - 1.349930763244629, - 1.3394865989685059, - 1.3263689279556274, - 1.3109357357025146, - 1.1720170974731445, - 1.1960288286209106, - 1.2212802171707153, - 1.2470825910568237, - 1.272731900215149, - 1.2975287437438965, - 1.3207966089248657, - 1.3419008255004883, - 1.3602657318115234, - 1.3753902912139893, - 1.3868621587753296, - 1.3943681716918945, - 1.397703766822815, - 1.396777868270874, - 1.3916157484054565, - 1.382358193397522, - 1.3692578077316284, - 1.3526718616485596, - 1.3330527544021606, - 1.3109357357025146, - 1.1720170974731445, - 1.2002133131027222, - 1.2295349836349487, - 1.259182333946228, - 1.288346767425537, - 1.316232681274414, - 1.3420794010162354, - 1.3651820421218872, - 1.384910225868225, - 1.4007259607315063, - 1.4121977090835571, - 1.4190127849578857, - 1.4209849834442139, - 1.4180606603622437, - 1.4103196859359741, - 1.3979730606079102, - 1.3813575506210327, - 1.3609265089035034, - 1.3372371196746826, - 1.3109357357025146, - 1.1720170974731445, - 1.2014448642730713, - 1.2319644689559937, - 1.262743592262268, - 1.2929425239562988, - 1.3217376470565796, - 1.3483434915542603, - 1.3720343112945557, - 1.3921637535095215, - 1.4081828594207764, - 1.4196546077728271, - 1.4262661933898926, - 1.4278371334075928, - 1.4243247509002686, - 1.4158246517181396, - 1.4025688171386719, - 1.3849188089370728, - 1.3633559942245483, - 1.3384686708450317, - 1.3109357357025146, - 1.1720170974731445, - 1.1995900869369507, - 1.2283055782318115, - 1.2573803663253784, - 1.28602135181427, - 1.3134472370147705, - 1.3389099836349487, - 1.3617149591445923, - 1.3812401294708252, - 1.3969528675079346, - 1.408424735069275, - 1.4153425693511963, - 1.417517900466919, - 1.414891242980957, - 1.4075342416763306, - 1.395647644996643, - 1.379555583000183, - 1.3596971035003662, - 1.3366140127182007, - 1.3109357357025146 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.4134904444217682, - 0.3956063389778137, - 0.3786555528640747, - 0.36310049891471863, - 0.3493654131889343, - 0.3378250300884247, - 0.32879409193992615, - 0.3225189447402954, - 0.3191707730293274, - 0.3188409209251404, - 0.32153835892677307, - 0.32718950510025024, - 0.33564019203186035, - 0.34665995836257935, - 0.35994818806648254, - 0.3751424252986908, - 0.3918282091617584, - 0.40955033898353577, - 0.4278254806995392, - 0.4461551010608673, - 0.4134904444217682, - 0.4155638515949249, - 0.41802623867988586, - 0.42081037163734436, - 0.42384037375450134, - 0.42703351378440857, - 0.43030276894569397, - 0.43355894088745117, - 0.43671318888664246, - 0.43967944383621216, - 0.44237688183784485, - 0.4447318911552429, - 0.4466801881790161, - 0.44816866517066956, - 0.4491567015647888, - 0.4496173560619354, - 0.44953808188438416, - 0.4489210247993469, - 0.4477830231189728, - 0.4461551010608673, - 0.4134904444217682, - 0.4353208541870117, - 0.45700129866600037, - 0.4779403507709503, - 0.49756690859794617, - 0.515345573425293, - 0.5307914018630981, - 0.5434830784797668, - 0.5530744194984436, - 0.5593037605285645, - 0.5620011687278748, - 0.5610930919647217, - 0.5566043257713318, - 0.5486572980880737, - 0.5374687910079956, - 0.5233439207077026, - 0.5066680908203125, - 0.4878960847854614, - 0.4675399959087372, - 0.4461551010608673, - 0.4134904444217682, - 0.4527363181114197, - 0.49135714769363403, - 0.5282995104789734, - 0.5625556707382202, - 0.5931912064552307, - 0.6193705201148987, - 0.6403794288635254, - 0.6556448936462402, - 0.6647505760192871, - 0.6674480438232422, - 0.6636636257171631, - 0.6535006761550903, - 0.6372364163398743, - 0.6153144240379333, - 0.5883326530456543, - 0.5570272207260132, - 0.5222519636154175, - 0.48495545983314514, - 0.4461551010608673, - 0.4134904146194458, - 0.465923011302948, - 0.5173708200454712, - 0.5664306282997131, - 0.6117640733718872, - 0.6521346569061279, - 0.68644118309021, - 0.7137477397918701, - 0.7333096265792847, - 0.7445932030677795, - 0.7472906112670898, - 0.7413283586502075, - 0.7268689870834351, - 0.7043070793151855, - 0.6742578148841858, - 0.6375411748886108, - 0.5951583385467529, - 0.5482656359672546, - 0.49814215302467346, - 0.4461551010608673, - 0.4134904146194458, - 0.4734519422054291, - 0.5322234034538269, - 0.588201642036438, - 0.639859676361084, - 0.6857884526252747, - 0.7247351408004761, - 0.7556374669075012, - 0.777652382850647, - 0.7901793718338013, - 0.7928768396377563, - 0.785671055316925, - 0.7687587141990662, - 0.7426010966300964, - 0.7079116702079773, - 0.6656367182731628, - 0.616929292678833, - 0.5631182193756104, - 0.5056711435317993, - 0.4461550712585449, - 0.4134904146194458, - 0.47450730204582214, - 0.5343052744865417, - 0.5912532806396484, - 0.6437978148460388, - 0.6905057430267334, - 0.7301027774810791, - 0.7615091800689697, - 0.7838678956031799, - 0.7965692281723022, - 0.7992665767669678, - 0.791886568069458, - 0.7746304273605347, - 0.7479687333106995, - 0.712628960609436, - 0.6695748567581177, - 0.6199809312820435, - 0.5652000904083252, - 0.5067264437675476, - 0.4461550712585449, - 0.4134904146194458, - 0.46897464990615845, - 0.5233908891677856, - 0.5752548575401306, - 0.6231517791748047, - 0.6657751798629761, - 0.7019624710083008, - 0.7307264804840088, - 0.7512826919555664, - 0.7630702257156372, - 0.7657676339149475, - 0.7593013048171997, - 0.7438477277755737, - 0.7198283672332764, - 0.6878984570503235, - 0.6489288210868835, - 0.6039825677871704, - 0.5542857050895691, - 0.5011938214302063, - 0.4461551010608673, - 0.4134904444217682, - 0.45745354890823364, - 0.5006629824638367, - 0.5419400930404663, - 0.5801589488983154, - 0.6142769455909729, - 0.6433635950088501, - 0.6666253805160522, - 0.6834278106689453, - 0.6933125257492065, - 0.6960099339485168, - 0.6914464235305786, - 0.6797466278076172, - 0.6612294316291809, - 0.6364001631736755, - 0.6059359312057495, - 0.5706678032875061, - 0.5315577983856201, - 0.4896727204322815, - 0.4461551010608673, - 0.4134904444217682, - 0.44119253754615784, - 0.46858447790145874, - 0.4949191212654114, - 0.5194780826568604, - 0.5415915250778198, - 0.5606561303138733, - 0.5761520266532898, - 0.5876563787460327, - 0.5948554873466492, - 0.5975528955459595, - 0.5956751108169556, - 0.5892732739448547, - 0.5785220265388489, - 0.5637146830558777, - 0.5452551245689392, - 0.5236468315124512, - 0.4994792938232422, - 0.4734116792678833, - 0.4461551010608673, - 0.4134904444217682, - 0.4219536781311035, - 0.4306315779685974, - 0.439287394285202, - 0.4476850628852844, - 0.455595463514328, - 0.4628028869628906, - 0.4691106677055359, - 0.4743468165397644, - 0.4783684313297272, - 0.48106586933135986, - 0.4823654890060425, - 0.48223191499710083, - 0.4806687533855438, - 0.47771865129470825, - 0.4734620451927185, - 0.4680151045322418, - 0.46152636408805847, - 0.45417284965515137, - 0.4461551010608673, - 0.4134904444217682, - 0.4018218517303467, - 0.3909170627593994, - 0.3810735046863556, - 0.37255969643592834, - 0.365607887506485, - 0.36040768027305603, - 0.3571009635925293, - 0.3557778596878052, - 0.35647454857826233, - 0.359171986579895, - 0.363796591758728, - 0.37022218108177185, - 0.37827354669570923, - 0.38773104548454285, - 0.3983367085456848, - 0.4098012149333954, - 0.4218118488788605, - 0.43404102325439453, - 0.4461551010608673, - 0.4134904444217682, - 0.3829786479473114, - 0.35374462604522705, - 0.3265857994556427, - 0.30224302411079407, - 0.281380295753479, - 0.26456668972969055, - 0.25226080417633057, - 0.24479839205741882, - 0.2423829436302185, - 0.2450803816318512, - 0.2528170943260193, - 0.2653820514678955, - 0.28243255615234375, - 0.3035034239292145, - 0.32802000641822815, - 0.3553135097026825, - 0.3846394121646881, - 0.41519778966903687, - 0.4461551010608673, - 0.4134904444217682, - 0.3674659729003906, - 0.3231424391269684, - 0.2817288637161255, - 0.24435487389564514, - 0.212039977312088, - 0.18566566705703735, - 0.16595128178596497, - 0.1534346342086792, - 0.1484571397304535, - 0.1511545479297638, - 0.16145330667495728, - 0.1790725290775299, - 0.20353151857852936, - 0.23416313529014587, - 0.2701318860054016, - 0.3104565739631653, - 0.35403722524642944, - 0.3996851444244385, - 0.4461551010608673, - 0.4134904444217682, - 0.35696494579315186, - 0.302426815032959, - 0.2513636648654938, - 0.2051684409379959, - 0.16510123014450073, - 0.13225486874580383, - 0.10752546787261963, - 0.09158745408058167, - 0.08487561345100403, - 0.08757302165031433, - 0.09960612654685974, - 0.12064671516418457, - 0.15012076497077942, - 0.18722432851791382, - 0.2309454381465912, - 0.28009137511253357, - 0.33332160115242004, - 0.3891840875148773, - 0.4461551308631897, - 0.4134904742240906, - 0.3526134490966797, - 0.29384249448776245, - 0.23878073692321777, - 0.18893010914325714, - 0.1456504464149475, - 0.1101222038269043, - 0.08331456780433655, - 0.06595876812934875, - 0.058528244495391846, - 0.06122565269470215, - 0.07397744059562683, - 0.09643581509590149, - 0.1279880702495575, - 0.1677735447883606, - 0.21470709145069122, - 0.26750844717025757, - 0.3247373104095459, - 0.38483259081840515, - 0.4461551308631897, - 0.4134904742240906, - 0.354883074760437, - 0.29831981658935547, - 0.2453436255455017, - 0.1973995417356491, - 0.15579542517662048, - 0.12166595458984375, - 0.09594225883483887, - 0.07932594418525696, - 0.07227024435997009, - 0.0749676525592804, - 0.08734461665153503, - 0.10906350612640381, - 0.13953182101249695, - 0.17791849374771118, - 0.22317655384540558, - 0.2740713357925415, - 0.32921460270881653, - 0.3871022164821625, - 0.4461551308631897, - 0.4134904444217682, - 0.3635278344154358, - 0.31537356972694397, - 0.270341157913208, - 0.22965900599956512, - 0.19443681836128235, - 0.165635347366333, - 0.14404016733169556, - 0.13024044036865234, - 0.12461254000663757, - 0.12730994820594788, - 0.13825911283493042, - 0.1571614146232605, - 0.183501198887825, - 0.21655993163585663, - 0.2554360032081604, - 0.2990688681602478, - 0.34626835584640503, - 0.39574697613716125, - 0.4461551308631897, - 0.4134904444217682, - 0.377610981464386, - 0.34315571188926697, - 0.3110645115375519, - 0.28221267461776733, - 0.25738731026649475, - 0.23726554214954376, - 0.22239618003368378, - 0.2131849080324173, - 0.2098829299211502, - 0.2125803679227829, - 0.22120361030101776, - 0.23551742732524872, - 0.2551313638687134, - 0.2795104384422302, - 0.3079896867275238, - 0.3397922217845917, - 0.374050498008728, - 0.40983015298843384, - 0.4461551010608673, - 0.4134904444217682, - 0.3956063389778137, - 0.3786555826663971, - 0.363100528717041, - 0.3493654727935791, - 0.33782508969306946, - 0.3287941515445709, - 0.3225190043449402, - 0.31917083263397217, - 0.31884098052978516, - 0.32153841853141785, - 0.327189564704895, - 0.3356402516365051, - 0.3466600179672241, - 0.3599482476711273, - 0.3751424551010132, - 0.3918282389640808, - 0.40955036878585815, - 0.4278255105018616, - 0.4461551010608673 - ], - "y": [ - 0.43963325023651123, - 0.3852454721927643, - 0.3328496813774109, - 0.28387516736984253, - 0.23965772986412048, - 0.20140355825424194, - 0.17015615105628967, - 0.1467677652835846, - 0.13187646865844727, - 0.12588843703269958, - 0.12896698713302612, - 0.14102816581726074, - 0.1617429554462433, - 0.19054633378982544, - 0.22665253281593323, - 0.26907679438591003, - 0.31666189432144165, - 0.36810970306396484, - 0.4220169484615326, - 0.476913183927536, - 0.43963325023651123, - 0.380204975605011, - 0.3229062259197235, - 0.2692999243736267, - 0.22084829211235046, - 0.17887303233146667, - 0.14451906085014343, - 0.11872345209121704, - 0.10218992829322815, - 0.09536939859390259, - 0.09844794869422913, - 0.11134162545204163, - 0.13369864225387573, - 0.1649092435836792, - 0.20412200689315796, - 0.2502673864364624, - 0.30208665132522583, - 0.3581662178039551, - 0.4169764816761017, - 0.476913183927536, - 0.43963325023651123, - 0.3816320300102234, - 0.3257213830947876, - 0.2734263837337494, - 0.2261735498905182, - 0.18525177240371704, - 0.15177729725837708, - 0.12666326761245728, - 0.11059463024139404, - 0.10400980710983276, - 0.1070883572101593, - 0.11974632740020752, - 0.14163845777511597, - 0.17216747999191284, - 0.21050074696540833, - 0.25559258460998535, - 0.3062131106853485, - 0.36098137497901917, - 0.4184035062789917, - 0.476913183927536, - 0.43963325023651123, - 0.38937193155288696, - 0.3409900665283203, - 0.2958073914051056, - 0.25505635142326355, - 0.21984855830669403, - 0.19114431738853455, - 0.1697266697883606, - 0.15617984533309937, - 0.1508733332157135, - 0.15395188331604004, - 0.16533154249191284, - 0.1847018599510193, - 0.2115345150232315, - 0.24509751796722412, - 0.2844754457473755, - 0.3285941183567047, - 0.37625008821487427, - 0.42614343762397766, - 0.476913183927536, - 0.43963325023651123, - 0.4025859832763672, - 0.367057740688324, - 0.33401763439178467, - 0.3043668866157532, - 0.27891427278518677, - 0.258354127407074, - 0.24324725568294525, - 0.23400571942329407, - 0.23088164627552032, - 0.23396019637584686, - 0.24315740168094635, - 0.25822246074676514, - 0.27874433994293213, - 0.30416327714920044, - 0.3337859511375427, - 0.3668043613433838, - 0.40231776237487793, - 0.4393574893474579, - 0.476913183927536, - 0.43963325023651123, - 0.4198422431945801, - 0.4010995626449585, - 0.3839164078235626, - 0.3687615394592285, - 0.3560482859611511, - 0.34612348675727844, - 0.3392578363418579, - 0.3356385827064514, - 0.33536452054977417, - 0.3384430706501007, - 0.3447902798652649, - 0.3542329967021942, - 0.3665136694908142, - 0.3812972903251648, - 0.39818063378334045, - 0.41670313477516174, - 0.43635955452919006, - 0.4566137492656708, - 0.476913183927536, - 0.43963325023651123, - 0.4392707049846649, - 0.4394265115261078, - 0.4400964379310608, - 0.4412621557712555, - 0.4428918659687042, - 0.4449411630630493, - 0.44735413789749146, - 0.4500649571418762, - 0.45299965143203735, - 0.4560782015323639, - 0.4592166244983673, - 0.46232929825782776, - 0.46533137559890747, - 0.4681409001350403, - 0.47068125009536743, - 0.4728831648826599, - 0.47468653321266174, - 0.4760421812534332, - 0.4769131541252136, - 0.43963322043418884, - 0.45876601338386536, - 0.47788533568382263, - 0.4964697062969208, - 0.5140121579170227, - 0.5300341844558716, - 0.5440987944602966, - 0.5558223128318787, - 0.5648849606513977, - 0.5710394382476807, - 0.5741180181503296, - 0.5740365982055664, - 0.5707975029945374, - 0.5644890069961548, - 0.55528324842453, - 0.543431282043457, - 0.5292564034461975, - 0.5131453275680542, - 0.49553748965263367, - 0.4769131541252136, - 0.43963322043418884, - 0.47621551156044006, - 0.5123084187507629, - 0.5469273328781128, - 0.5791280269622803, - 0.6080320477485657, - 0.6328511238098145, - 0.6529081463813782, - 0.6676560044288635, - 0.6766924858093262, - 0.6797710061073303, - 0.676807701587677, - 0.6678833365440369, - 0.6532413363456726, - 0.6332811117172241, - 0.6085470914840698, - 0.5797140598297119, - 0.5475683808326721, - 0.5129870176315308, - 0.4769131541252136, - 0.43963322043418884, - 0.48972833156585693, - 0.5389654040336609, - 0.5860013961791992, - 0.6295533180236816, - 0.6684331893920898, - 0.7015804052352905, - 0.7280908823013306, - 0.7472413778305054, - 0.7585095763206482, - 0.7615880966186523, - 0.7563930749893188, - 0.7430660724639893, - 0.7219705581665039, - 0.6936821937561035, - 0.658972442150116, - 0.6187881231307983, - 0.5742254257202148, - 0.5264998078346252, - 0.4769131541252136, - 0.43963322043418884, - 0.49784010648727417, - 0.5549677014350891, - 0.6094576716423035, - 0.6598237752914429, - 0.7046921253204346, - 0.7428387403488159, - 0.7732232213020325, - 0.7950166463851929, - 0.8076245784759521, - 0.8107031583786011, - 0.8041683435440063, - 0.7881984114646912, - 0.7632290124893188, - 0.7299411296844482, - 0.6892428994178772, - 0.6422443985939026, - 0.5902276635169983, - 0.5346115827560425, - 0.4769131541252136, - 0.43963322043418884, - 0.4996717870235443, - 0.5585811138153076, - 0.614754319190979, - 0.6666591167449951, - 0.7128796577453613, - 0.7521551847457886, - 0.7834144830703735, - 0.8058047294616699, - 0.8187151551246643, - 0.8217936754226685, - 0.8149564266204834, - 0.7983896732330322, - 0.7725454568862915, - 0.7381287217140198, - 0.6960782408714294, - 0.6475410461425781, - 0.5938411355018616, - 0.536443293094635, - 0.4769131541252136, - 0.43963322043418884, - 0.4950249493122101, - 0.5494141578674316, - 0.601317286491394, - 0.6493185758590698, - 0.6921086311340332, - 0.7285202145576477, - 0.7575602531433105, - 0.778436541557312, - 0.7905794382095337, - 0.7936580181121826, - 0.7875882387161255, - 0.7725354433059692, - 0.7489104270935059, - 0.7173576354980469, - 0.6787376999855042, - 0.6341040134429932, - 0.5846741795539856, - 0.5317964553833008, - 0.4769131541252136, - 0.43963322043418884, - 0.4844030737876892, - 0.5284601449966431, - 0.5706027746200562, - 0.609681248664856, - 0.6446297764778137, - 0.6744949817657471, - 0.698462188243866, - 0.7158776521682739, - 0.7262663245201111, - 0.7293448448181152, - 0.7250293493270874, - 0.7134373188018799, - 0.6948851346969604, - 0.6698787808418274, - 0.6391003727912903, - 0.6033895015716553, - 0.563720166683197, - 0.5211745500564575, - 0.4769131541252136, - 0.43963322043418884, - 0.4689572751522064, - 0.4979898929595947, - 0.5259391069412231, - 0.5520426034927368, - 0.5755882859230042, - 0.5959339737892151, - 0.6125246286392212, - 0.6249076128005981, - 0.6327453255653381, - 0.6358239054679871, - 0.6340593099594116, - 0.6274998188018799, - 0.6163241863250732, - 0.6008373498916626, - 0.5814617276191711, - 0.5587258338928223, - 0.5332498550415039, - 0.5057287216186523, - 0.4769131541252136, - 0.43963322043418884, - 0.45036131143569946, - 0.4613052010536194, - 0.47216638922691345, - 0.4826485812664032, - 0.49246591329574585, - 0.5013505220413208, - 0.5090601444244385, - 0.5153843760490417, - 0.5201507806777954, - 0.5232293605804443, - 0.5245360732078552, - 0.5240353345870972, - 0.521740734577179, - 0.5177149176597595, - 0.5120676755905151, - 0.5049530863761902, - 0.49656519293785095, - 0.4871327877044678, - 0.4769131541252136, - 0.43963325023651123, - 0.43063029646873474, - 0.4223814010620117, - 0.4151115417480469, - 0.40901902318000793, - 0.4042699933052063, - 0.40099406242370605, - 0.39928051829338074, - 0.3991761803627014, - 0.4006838798522949, - 0.40376242995262146, - 0.4083278775215149, - 0.41425570845603943, - 0.4213842451572418, - 0.42951899766921997, - 0.4384381175041199, - 0.4478982388973236, - 0.4576413929462433, - 0.46740180253982544, - 0.4769131541252136, - 0.43963325023651123, - 0.41190245747566223, - 0.3854365646839142, - 0.36095747351646423, - 0.3391328752040863, - 0.3205581307411194, - 0.3057398796081543, - 0.29508233070373535, - 0.2888762354850769, - 0.28729087114334106, - 0.2903693914413452, - 0.2980279326438904, - 0.31005752086639404, - 0.32613006234169006, - 0.34580710530281067, - 0.36855196952819824, - 0.39374417066574097, - 0.42069655656814575, - 0.44867396354675293, - 0.476913183927536, - 0.43963325023651123, - 0.3962072432041168, - 0.3544742465019226, - 0.315572589635849, - 0.28056347370147705, - 0.2504017949104309, - 0.22591029107570648, - 0.20775705575942993, - 0.19643723964691162, - 0.19225960969924927, - 0.1953381597995758, - 0.2055889368057251, - 0.22273223102092743, - 0.24630045890808105, - 0.2756507396697998, - 0.3099825382232666, - 0.3483593165874481, - 0.3897342383861542, - 0.43297871947288513, - 0.476913183927536, - 0.43963325023651123, - 0.3852454721927643, - 0.3328496813774109, - 0.28387513756752014, - 0.2396577149629593, - 0.20140355825424194, - 0.17015612125396729, - 0.1467677354812622, - 0.13187643885612488, - 0.12588843703269958, - 0.12896698713302612, - 0.14102813601493835, - 0.1617429256439209, - 0.19054630398750305, - 0.22665251791477203, - 0.26907676458358765, - 0.31666186451911926, - 0.36810970306396484, - 0.4220169484615326, - 0.476913183927536 - ], - "z": [ - 1.2793127298355103, - 1.3076196908950806, - 1.3364508152008057, - 1.3650193214416504, - 1.3925461769104004, - 1.4182803630828857, - 1.4415199756622314, - 1.4616312980651855, - 1.4780653715133667, - 1.490374207496643, - 1.4982218742370605, - 1.501394510269165, - 1.4998054504394531, - 1.4934979677200317, - 1.4826442003250122, - 1.4675402641296387, - 1.448598027229309, - 1.426334261894226, - 1.4013563394546509, - 1.3743454217910767, - 1.2793127298355103, - 1.3027372360229492, - 1.3268189430236816, - 1.3509008884429932, - 1.374326229095459, - 1.396456003189087, - 1.4166865348815918, - 1.4344658851623535, - 1.449309229850769, - 1.460811734199524, - 1.4686594009399414, - 1.4726383686065674, - 1.472640037536621, - 1.4686644077301025, - 1.4608198404312134, - 1.4493203163146973, - 1.4344795942306519, - 1.4167025089263916, - 1.39647376537323, - 1.3743454217910767, - 1.2793127298355103, - 1.295386552810669, - 1.3123180866241455, - 1.3296453952789307, - 1.3468959331512451, - 1.3635990619659424, - 1.3792991638183594, - 1.3935680389404297, - 1.40601646900177, - 1.4163049459457397, - 1.4241526126861572, - 1.4293456077575684, - 1.4317423105239868, - 1.4312771558761597, - 1.4279628992080688, - 1.4218900203704834, - 1.4132241010665894, - 1.4022016525268555, - 1.3891230821609497, - 1.3743454217910767, - 1.2793127298355103, - 1.2863643169403076, - 1.2945195436477661, - 1.303556203842163, - 1.313227653503418, - 1.3232700824737549, - 1.3334096670150757, - 1.343369722366333, - 1.3528785705566406, - 1.361676812171936, - 1.369524598121643, - 1.376207709312439, - 1.3815438747406006, - 1.3853875398635864, - 1.3876339197158813, - 1.3882217407226562, - 1.3871349096298218, - 1.384403109550476, - 1.3801008462905884, - 1.3743454217910767, - 1.2793127298355103, - 1.2766480445861816, - 1.275352120399475, - 1.2754604816436768, - 1.2769699096679688, - 1.2798393964767456, - 1.2839906215667725, - 1.2893104553222656, - 1.2956535816192627, - 1.302847146987915, - 1.310694932937622, - 1.318982720375061, - 1.3274846076965332, - 1.3359686136245728, - 1.344203233718872, - 1.351963996887207, - 1.3590391874313354, - 1.365235686302185, - 1.3703845739364624, - 1.3743454217910767, - 1.2793127298355103, - 1.2672908306121826, - 1.2568929195404053, - 1.248402714729309, - 1.2420518398284912, - 1.2380133867263794, - 1.236397624015808, - 1.2372485399246216, - 1.240543007850647, - 1.246191143989563, - 1.25403892993927, - 1.2638721466064453, - 1.2754226922988892, - 1.2883754968643188, - 1.3023772239685059, - 1.3170459270477295, - 1.3319814205169678, - 1.3467764854431152, - 1.3610273599624634, - 1.3743454217910767, - 1.2793127298355103, - 1.25930655002594, - 1.2411422729492188, - 1.2253152132034302, - 1.2122572660446167, - 1.2023245096206665, - 1.1957879066467285, - 1.1928256750106812, - 1.193518877029419, - 1.1978483200073242, - 1.2056961059570312, - 1.2168480157852173, - 1.2309999465942383, - 1.2477657794952393, - 1.266688346862793, - 1.287251353263855, - 1.3088939189910889, - 1.3310258388519287, - 1.3530430793762207, - 1.3743454217910767, - 1.2793127298355103, - 1.2535605430603027, - 1.229806900024414, - 1.2086998224258423, - 1.1908149719238281, - 1.1766401529312134, - 1.1665621995925903, - 1.1608558893203735, - 1.1596767902374268, - 1.1630573272705078, - 1.1709049940109253, - 1.183005928993225, - 1.1990300416946411, - 1.218540072441101, - 1.2410039901733398, - 1.2658090591430664, - 1.292278528213501, - 1.319690465927124, - 1.3472970724105835, - 1.3743454217910767, - 1.2793127298355103, - 1.2506754398345947, - 1.224115252494812, - 1.2003569602966309, - 1.1800484657287598, - 1.1637437343597412, - 1.1518875360488892, - 1.1448034048080444, - 1.1426843404769897, - 1.1455882787704468, - 1.1534360647201538, - 1.166013479232788, - 1.182977557182312, - 1.2038655281066895, - 1.2281075716018677, - 1.255042552947998, - 1.2839356660842896, - 1.313998818397522, - 1.3444119691848755, - 1.3743454217910767, - 1.2793127298355103, - 1.2509636878967285, - 1.2246841192245483, - 1.2011908292770386, - 1.1811245679855347, - 1.1650327444076538, - 1.153354287147522, - 1.1464078426361084, - 1.1443827152252197, - 1.147334337234497, - 1.155182123184204, - 1.167711853981018, - 1.184581995010376, - 1.2053322792053223, - 1.2293965816497803, - 1.256118655204773, - 1.2847695350646973, - 1.3145676851272583, - 1.3447003364562988, - 1.3743454217910767, - 1.2793127298355103, - 1.2543944120407104, - 1.2314518690109253, - 1.211111068725586, - 1.1939265727996826, - 1.1803674697875977, - 1.170803427696228, - 1.1654952764511108, - 1.1645879745483398, - 1.168106198310852, - 1.1759538650512695, - 1.1879171133041382, - 1.203669548034668, - 1.2227814197540283, - 1.2447313070297241, - 1.2689207792282104, - 1.2946897745132446, - 1.3213354349136353, - 1.3481309413909912, - 1.3743454217910767, - 1.2793127298355103, - 1.2605955600738525, - 1.2436851263046265, - 1.2290425300598145, - 1.2170673608779907, - 1.2080862522125244, - 1.2023440599441528, - 1.1999974250793457, - 1.201110601425171, - 1.2056529521942139, - 1.2135006189346313, - 1.2244397401809692, - 1.2381716966629028, - 1.2543219327926636, - 1.2724500894546509, - 1.292061448097229, - 1.3126212358474731, - 1.3335685729980469, - 1.3543320894241333, - 1.3743454217910767, - 1.2793127298355103, - 1.2688952684402466, - 1.260058045387268, - 1.253042221069336, - 1.2480390071868896, - 1.245185136795044, - 1.2445582151412964, - 1.2461754083633423, - 1.2499926090240479, - 1.2559057474136353, - 1.2637535333633423, - 1.2733217477798462, - 1.2843495607376099, - 1.2965360879898071, - 1.3095489740371704, - 1.3230332136154175, - 1.3366209268569946, - 1.349941611289978, - 1.3626317977905273, - 1.3743454217910767, - 1.2793127298355103, - 1.278394103050232, - 1.2787965536117554, - 1.280509352684021, - 1.2834855318069458, - 1.2876440286636353, - 1.292871356010437, - 1.299025058746338, - 1.3059371709823608, - 1.3134191036224365, - 1.321266770362854, - 1.3292663097381592, - 1.3371992111206055, - 1.3448493480682373, - 1.3520078659057617, - 1.358479619026184, - 1.3640880584716797, - 1.3686801195144653, - 1.3721306324005127, - 1.3743454217910767, - 1.2793127298355103, - 1.2880626916885376, - 1.2978700399398804, - 1.3084673881530762, - 1.3195655345916748, - 1.3308618068695068, - 1.3420480489730835, - 1.3528192043304443, - 1.3628814220428467, - 1.3719602823257446, - 1.379807949066162, - 1.386210560798645, - 1.3909934759140015, - 1.3940260410308838, - 1.3952256441116333, - 1.394559621810913, - 1.3920460939407349, - 1.3877536058425903, - 1.3817992210388184, - 1.3743454217910767, - 1.2793127298355103, - 1.2968533039093018, - 1.315211534500122, - 1.3338866233825684, - 1.3523691892623901, - 1.3701550960540771, - 1.3867592811584473, - 1.401728630065918, - 1.4146549701690674, - 1.4251855611801147, - 1.4330333471298218, - 1.4379841089248657, - 1.4399027824401855, - 1.4387372732162476, - 1.4345190525054932, - 1.427363395690918, - 1.417465329170227, - 1.405095100402832, - 1.3905898332595825, - 1.3743454217910767, - 1.2793127298355103, - 1.3038133382797241, - 1.328941822052002, - 1.3540126085281372, - 1.3783419132232666, - 1.401266098022461, - 1.4221597909927368, - 1.4404531717300415, - 1.4556472301483154, - 1.467327356338501, - 1.4751750230789185, - 1.4789762496948242, - 1.478627324104309, - 1.474137783050537, - 1.465630054473877, - 1.4533360004425049, - 1.437591314315796, - 1.418825387954712, - 1.3975498676300049, - 1.3743454217910767, - 1.2793127298355103, - 1.3081886768341064, - 1.3375730514526367, - 1.3666642904281616, - 1.3946690559387207, - 1.4208232164382935, - 1.444413423538208, - 1.4647964239120483, - 1.481415867805481, - 1.4938186407089233, - 1.5016664266586304, - 1.5047450065612793, - 1.502970576286316, - 1.4963914155960083, - 1.48518705368042, - 1.469663143157959, - 1.4502429962158203, - 1.4274564981460571, - 1.4019252061843872, - 1.3743454217910767, - 1.2793127298355103, - 1.3095049858093262, - 1.3401697874069214, - 1.370470643043518, - 1.3995811939239502, - 1.426707148551941, - 1.451108694076538, - 1.4721202850341797, - 1.489168643951416, - 1.501788854598999, - 1.5096365213394165, - 1.5124977827072144, - 1.5102944374084473, - 1.5030866861343384, - 1.4910709857940674, - 1.4745752811431885, - 1.4540494680404663, - 1.4300533533096313, - 1.403241515159607, - 1.3743454217910767, - 1.2793127298355103, - 1.3076196908950806, - 1.3364506959915161, - 1.3650193214416504, - 1.3925461769104004, - 1.4182803630828857, - 1.4415199756622314, - 1.461631178855896, - 1.4780653715133667, - 1.490374207496643, - 1.4982218742370605, - 1.501394510269165, - 1.4998054504394531, - 1.4934979677200317, - 1.4826442003250122, - 1.4675402641296387, - 1.448598027229309, - 1.426334261894226, - 1.4013563394546509, - 1.3743454217910767 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.449423611164093, - 0.4313608407974243, - 0.41411685943603516, - 0.3981620967388153, - 0.3839317262172699, - 0.37181392312049866, - 0.3621392250061035, - 0.3551715016365051, - 0.351100891828537, - 0.3500383794307709, - 0.3520129323005676, - 0.35697072744369507, - 0.36477652192115784, - 0.37521737813949585, - 0.3880085051059723, - 0.402800977230072, - 0.4191913604736328, - 0.4367324709892273, - 0.4549458920955658, - 0.47333478927612305, - 0.449423611164093, - 0.4515702724456787, - 0.45398449897766113, - 0.4566004276275635, - 0.4593466818332672, - 0.46214842796325684, - 0.46492916345596313, - 0.4676130712032318, - 0.4701269268989563, - 0.4724021553993225, - 0.47437673807144165, - 0.4759967625141144, - 0.4772180914878845, - 0.47800731658935547, - 0.47834300994873047, - 0.4782159626483917, - 0.4776296615600586, - 0.4766000807285309, - 0.4751553237438202, - 0.47333478927612305, - 0.449423611164093, - 0.47156473994255066, - 0.4934280514717102, - 0.5144171714782715, - 0.5339595079421997, - 0.5515220761299133, - 0.5666257739067078, - 0.5788586735725403, - 0.5878869295120239, - 0.5934644937515259, - 0.5954390168190002, - 0.5937567949295044, - 0.5884636640548706, - 0.5797039866447449, - 0.5677167177200317, - 0.5528287887573242, - 0.5354464054107666, - 0.5160436630249023, - 0.4951498210430145, - 0.47333478927612305, - 0.449423611164093, - 0.4891775846481323, - 0.5281732678413391, - 0.5653470158576965, - 0.5996847748756409, - 0.6302499175071716, - 0.6562087535858154, - 0.6768530607223511, - 0.691619873046875, - 0.7001062631607056, - 0.7020808458328247, - 0.6974897384643555, - 0.6864581108093262, - 0.6692869663238525, - 0.64644455909729, - 0.6185540556907654, - 0.5863762497901917, - 0.5507888793945312, - 0.5127626061439514, - 0.47333478927612305, - 0.449423611164093, - 0.5025001168251038, - 0.5544549226760864, - 0.6038708686828613, - 0.6494001150131226, - 0.689800500869751, - 0.7239702939987183, - 0.7509771585464478, - 0.7700846195220947, - 0.7807713150978088, - 0.782745897769928, - 0.7759544849395752, - 0.7605822086334229, - 0.7370483875274658, - 0.7059951424598694, - 0.6682693958282471, - 0.6249001622200012, - 0.5770705342292786, - 0.5260851383209229, - 0.47333475947380066, - 0.449423611164093, - 0.5100886225700378, - 0.5694249868392944, - 0.6258141994476318, - 0.6777180433273315, - 0.7237206697463989, - 0.7625672817230225, - 0.7931983470916748, - 0.814778208732605, - 0.826718270778656, - 0.8286928534507751, - 0.8206480741500854, - 0.8028033375740051, - 0.7756454944610596, - 0.7399152517318726, - 0.696587324142456, - 0.646843433380127, - 0.5920405983924866, - 0.5336737036705017, - 0.47333475947380066, - 0.449423611164093, - 0.5111208558082581, - 0.5714613199234009, - 0.6287989616394043, - 0.6815698742866516, - 0.7283345460891724, - 0.7678173780441284, - 0.7989413738250732, - 0.820857584476471, - 0.8329681158065796, - 0.8349426984786987, - 0.8267274498939514, - 0.8085464239120483, - 0.7808955907821655, - 0.7445291876792908, - 0.7004392147064209, - 0.6498281955718994, - 0.5940768718719482, - 0.5347058773040771, - 0.47333475947380066, - 0.449423611164093, - 0.5054848790168762, - 0.5603430867195129, - 0.6125018000602722, - 0.6605383157730103, - 0.7031422257423401, - 0.7391514778137207, - 0.7675839066505432, - 0.7876638174057007, - 0.798843502998352, - 0.8008180856704712, - 0.7935336828231812, - 0.7771888971328735, - 0.7522296905517578, - 0.7193368673324585, - 0.6794075965881348, - 0.6335310339927673, - 0.5829586982727051, - 0.5290699601173401, - 0.47333475947380066, - 0.449423611164093, - 0.49379146099090576, - 0.5372751951217651, - 0.5786887407302856, - 0.6169023513793945, - 0.6508736610412598, - 0.6796760559082031, - 0.702523946762085, - 0.7187939882278442, - 0.728042483329773, - 0.7300170660018921, - 0.7246638536453247, - 0.7121289968490601, - 0.6927542686462402, - 0.6670682430267334, - 0.635771632194519, - 0.5997179746627808, - 0.5598908066749573, - 0.5173765420913696, - 0.47333478927612305, - 0.449423611164093, - 0.4773077964782715, - 0.5047574639320374, - 0.5310239195823669, - 0.5553906559944153, - 0.5771929621696472, - 0.5958362221717834, - 0.6108118295669556, - 0.621711254119873, - 0.6282373070716858, - 0.6302118301391602, - 0.6275811195373535, - 0.6204168200492859, - 0.6089143753051758, - 0.5933876037597656, - 0.5742599368095398, - 0.5520531535148621, - 0.5273730754852295, - 0.5008928179740906, - 0.47333478927612305, - 0.449423611164093, - 0.4578200876712799, - 0.4663136601448059, - 0.4746726155281067, - 0.4826689660549164, - 0.49008458852767944, - 0.4967172145843506, - 0.5023859143257141, - 0.5069360136985779, - 0.5102434754371643, - 0.5122180581092834, - 0.5128058791160583, - 0.5119909048080444, - 0.5097953677177429, - 0.5062791705131531, - 0.5015382170677185, - 0.4957018494606018, - 0.48892924189567566, - 0.4814051389694214, - 0.47333478927612305, - 0.449423611164093, - 0.4374401569366455, - 0.4261097311973572, - 0.41574132442474365, - 0.40661782026290894, - 0.3989880681037903, - 0.3930601477622986, - 0.38899582624435425, - 0.3869059383869171, - 0.38684746623039246, - 0.3888220489025116, - 0.3927757740020752, - 0.39860084652900696, - 0.4061383306980133, - 0.4151826500892639, - 0.42548710107803345, - 0.43677058815956116, - 0.44872531294822693, - 0.4610252380371094, - 0.47333478927612305, - 0.449423611164093, - 0.41837650537490845, - 0.38850241899490356, - 0.36061620712280273, - 0.3354785442352295, - 0.31377512216567993, - 0.2960979640483856, - 0.2829292118549347, - 0.2746281623840332, - 0.2714211940765381, - 0.27339574694633484, - 0.2804979979991913, - 0.2925342321395874, - 0.30917611718177795, - 0.32996970415115356, - 0.354347825050354, - 0.38164544105529785, - 0.4111180305480957, - 0.4419615864753723, - 0.47333478927612305, - 0.449423611164093, - 0.4026949405670166, - 0.35756704211235046, - 0.3152708411216736, - 0.2769601047039032, - 0.24367985129356384, - 0.21633785963058472, - 0.19567996263504028, - 0.1822696030139923, - 0.17647269368171692, - 0.17844727635383606, - 0.18813946843147278, - 0.2052849531173706, - 0.22941601276397705, - 0.2598744034767151, - 0.2958293855190277, - 0.3363001048564911, - 0.3801826238632202, - 0.42628002166748047, - 0.47333478927612305, - 0.4494236409664154, - 0.39209485054016113, - 0.33665597438812256, - 0.28461921215057373, - 0.2374040186405182, - 0.19629833102226257, - 0.1624232828617096, - 0.1367030143737793, - 0.11983901262283325, - 0.11229139566421509, - 0.11426597833633423, - 0.12570887804031372, - 0.14630800485610962, - 0.17550140619277954, - 0.21249285340309143, - 0.2562732696533203, - 0.3056485056877136, - 0.3592715859413147, - 0.415679931640625, - 0.47333478927612305, - 0.4494236409664154, - 0.3877248764038086, - 0.32803523540496826, - 0.2719828486442566, - 0.2210967242717743, - 0.17676490545272827, - 0.1401965618133545, - 0.11238923668861389, - 0.09410148859024048, - 0.08583211898803711, - 0.08780670166015625, - 0.09997135400772095, - 0.12199422717094421, - 0.15327471494674683, - 0.19295942783355713, - 0.23996597528457642, - 0.2930121123790741, - 0.350650817155838, - 0.4113099277019501, - 0.47333478927612305, - 0.4494236409664154, - 0.39005857706069946, - 0.3326389789581299, - 0.2787310779094696, - 0.2298053354024887, - 0.18719637393951416, - 0.15206634998321533, - 0.12537357211112976, - 0.10784614086151123, - 0.09996220469474792, - 0.10193678736686707, - 0.1137160062789917, - 0.13497856259346008, - 0.16514447331428528, - 0.20339089632034302, - 0.24867461621761322, - 0.2997603416442871, - 0.355254590511322, - 0.41364365816116333, - 0.47333478927612305, - 0.449423611164093, - 0.39884310960769653, - 0.3499683737754822, - 0.3041326701641083, - 0.26258623600006104, - 0.22646234929561615, - 0.19674643874168396, - 0.17424890398979187, - 0.15958359837532043, - 0.1531504988670349, - 0.15512508153915405, - 0.1654534637928009, - 0.1838538944721222, - 0.20982453227043152, - 0.2426569163799286, - 0.28145551681518555, - 0.3251619338989258, - 0.3725839853286743, - 0.422428160905838, - 0.47333478927612305, - 0.449423611164093, - 0.41312646865844727, - 0.3781455159187317, - 0.3454349637031555, - 0.31588706374168396, - 0.29030781984329224, - 0.26939496397972107, - 0.25371891260147095, - 0.2437073141336441, - 0.2396332174539566, - 0.24160778522491455, - 0.24957714974880219, - 0.26332390308380127, - 0.2824731171131134, - 0.30650240182876587, - 0.3347563147544861, - 0.366464227437973, - 0.40076112747192383, - 0.43671151995658875, - 0.47333478927612305, - 0.449423611164093, - 0.4313608407974243, - 0.41411688923835754, - 0.3981621265411377, - 0.3839317560195923, - 0.37181395292282104, - 0.3621392846107483, - 0.3551715612411499, - 0.35110095143318176, - 0.35003843903541565, - 0.3520130217075348, - 0.35697078704833984, - 0.3647765815258026, - 0.3752174377441406, - 0.3880085349082947, - 0.4028010368347168, - 0.4191913604736328, - 0.4367325007915497, - 0.4549458920955658, - 0.47333478927612305 - ], - "y": [ - 0.49454647302627563, - 0.4394703507423401, - 0.3862727880477905, - 0.33640483021736145, - 0.2912268042564392, - 0.2519710063934326, - 0.21970826387405396, - 0.1953185498714447, - 0.17946726083755493, - 0.17258670926094055, - 0.17486461997032166, - 0.18623876571655273, - 0.20639899373054504, - 0.23479536175727844, - 0.27065324783325195, - 0.3129945993423462, - 0.360664427280426, - 0.41236239671707153, - 0.46667835116386414, - 0.5221306681632996, - 0.49454647302627563, - 0.4343600869178772, - 0.376191645860672, - 0.32162782549858093, - 0.2721569538116455, - 0.22912856936454773, - 0.19371625781059265, - 0.16688603162765503, - 0.1493697464466095, - 0.14164519309997559, - 0.1439231038093567, - 0.1561412513256073, - 0.17796647548675537, - 0.20880338549613953, - 0.24781084060668945, - 0.29392480850219727, - 0.3458874225616455, - 0.4022812843322754, - 0.46156808733940125, - 0.5221306681632996, - 0.49454647302627563, - 0.43579235672950745, - 0.37901705503463745, - 0.3257693648338318, - 0.2775016725063324, - 0.23553058505058289, - 0.20100101828575134, - 0.17485478520393372, - 0.15780514478683472, - 0.15031713247299194, - 0.15259504318237305, - 0.16457664966583252, - 0.18593522906303406, - 0.21608811616897583, - 0.2542128562927246, - 0.299269437789917, - 0.35002896189689636, - 0.40510669350624084, - 0.4630003571510315, - 0.5221306681632996, - 0.49454647302627563, - 0.44361189007759094, - 0.3944428861141205, - 0.3483806550502777, - 0.30668163299560547, - 0.2704833447933197, - 0.24077308177947998, - 0.21836131811141968, - 0.2038593888282776, - 0.1976628303527832, - 0.1999407410621643, - 0.2106308937072754, - 0.22944176197052002, - 0.25586020946502686, - 0.28916555643081665, - 0.32844945788383484, - 0.3726402521133423, - 0.4205324947834015, - 0.470819890499115, - 0.5221306681632996, - 0.49454647302627563, - 0.4569713771343231, - 0.4207974672317505, - 0.38701143860816956, - 0.356534868478775, - 0.33019915223121643, - 0.308722585439682, - 0.29269102215766907, - 0.28254178166389465, - 0.27855169773101807, - 0.2808295488357544, - 0.28931331634521484, - 0.3037714660167694, - 0.3238097131252289, - 0.34888139367103577, - 0.3783026933670044, - 0.41127100586891174, - 0.4468870759010315, - 0.48417937755584717, - 0.5221306681632996, - 0.49454647302627563, - 0.4744231104850769, - 0.455224871635437, - 0.43747541308403015, - 0.4216589331626892, - 0.40820688009262085, - 0.3974861204624176, - 0.3897891342639923, - 0.3853258490562439, - 0.3842180669307709, - 0.3864959478378296, - 0.3920973837375641, - 0.40086957812309265, - 0.4125732183456421, - 0.4268891215324402, - 0.4434267282485962, - 0.4617350101470947, - 0.481314480304718, - 0.5016310811042786, - 0.5221306681632996, - 0.49454647302627563, - 0.4940758943557739, - 0.4939943552017212, - 0.4943040907382965, - 0.4949966371059418, - 0.49605312943458557, - 0.497444748878479, - 0.49913349747657776, - 0.5010733604431152, - 0.5032113790512085, - 0.5054892897605896, - 0.507844865322113, - 0.5102139711380005, - 0.5125318765640259, - 0.5147354006767273, - 0.5167644619941711, - 0.5185636878013611, - 0.5200839638710022, - 0.5212838649749756, - 0.5221306681632996, - 0.49454647302627563, - 0.5138000249862671, - 0.5329046249389648, - 0.5513391494750977, - 0.5686007142066956, - 0.5842185020446777, - 0.5977664589881897, - 0.608875036239624, - 0.6172412633895874, - 0.6226369142532349, - 0.624914824962616, - 0.62401282787323, - 0.6199554800987244, - 0.6128535866737366, - 0.6029007434844971, - 0.5903685092926025, - 0.5755987167358398, - 0.5589942932128906, - 0.5410080552101135, - 0.5221306681632996, - 0.49454647302627563, - 0.5314581394195557, - 0.5677392482757568, - 0.602400004863739, - 0.6344950199127197, - 0.6631487607955933, - 0.6875797510147095, - 0.7071214914321899, - 0.7212409973144531, - 0.7295530438423157, - 0.731830894947052, - 0.7280125617980957, - 0.7182019948959351, - 0.7026668787002563, - 0.6818310618400574, - 0.6562628149986267, - 0.6266595721244812, - 0.5938288569450378, - 0.5586661696434021, - 0.5221306681632996, - 0.49454644322395325, - 0.5451366901397705, - 0.5947232246398926, - 0.6419533491134644, - 0.6855388283729553, - 0.7242907881736755, - 0.7571520805358887, - 0.7832264304161072, - 0.8018025159835815, - 0.812373697757721, - 0.814651608467102, - 0.8085740804672241, - 0.7943068742752075, - 0.7722392082214355, - 0.7429730892181396, - 0.7073066830635071, - 0.6662129163742065, - 0.6208128333091736, - 0.5723447203636169, - 0.5221306681632996, - 0.49454644322395325, - 0.5533534288406372, - 0.610932469367981, - 0.6657130122184753, - 0.7162008285522461, - 0.761018693447113, - 0.7989441156387329, - 0.828942596912384, - 0.8501958250999451, - 0.8621240258216858, - 0.8644019365310669, - 0.8569673299789429, - 0.8400230407714844, - 0.8140312433242798, - 0.7797009944915771, - 0.7379686832427979, - 0.6899726390838623, - 0.637022078037262, - 0.5805613994598389, - 0.5221306681632996, - 0.49454644322395325, - 0.5552178621292114, - 0.614610493183136, - 0.6711043119430542, - 0.7231582999229431, - 0.7693525552749634, - 0.808427095413208, - 0.8393158912658691, - 0.861176609992981, - 0.8734127283096313, - 0.8756906986236572, - 0.8679481148719788, - 0.8503963947296143, - 0.8235142230987549, - 0.7880349159240723, - 0.7449260950088501, - 0.6953638792037964, - 0.640700101852417, - 0.5824258327484131, - 0.5221306681632996, - 0.49454644322395325, - 0.5505279898643494, - 0.6053586602210999, - 0.6575429439544678, - 0.7056572437286377, - 0.7483892440795898, - 0.7845733165740967, - 0.8132224082946777, - 0.8335551023483276, - 0.845016598701477, - 0.8472945690155029, - 0.8403266072273254, - 0.8243029117584229, - 0.7996604442596436, - 0.7670716047286987, - 0.7274250984191895, - 0.68180251121521, - 0.6314482688903809, - 0.577735960483551, - 0.5221306681632996, - 0.49454644322395325, - 0.539792001247406, - 0.5841796398162842, - 0.6264984607696533, - 0.665594220161438, - 0.7004004716873169, - 0.7299677133560181, - 0.75348961353302, - 0.7703243494033813, - 0.7800127267837524, - 0.7822906374931335, - 0.7770957946777344, - 0.7645699977874756, - 0.7450549006462097, - 0.7190827131271362, - 0.6873620748519897, - 0.6507580280303955, - 0.6102692484855652, - 0.5670000314712524, - 0.5221306681632996, - 0.49454647302627563, - 0.5241734385490417, - 0.5533684492111206, - 0.581335186958313, - 0.6073107123374939, - 0.630586564540863, - 0.650527834892273, - 0.6665905117988586, - 0.678336501121521, - 0.6854454278945923, - 0.6877233386039734, - 0.6851080656051636, - 0.677670955657959, - 0.6656149625778198, - 0.6492688655853271, - 0.6290785074234009, - 0.6055947542190552, - 0.5794580578804016, - 0.5513814091682434, - 0.5221306681632996, - 0.49454647302627563, - 0.5053646564483643, - 0.5162639617919922, - 0.5269470810890198, - 0.5371226072311401, - 0.5465129613876343, - 0.5548620820045471, - 0.5619421005249023, - 0.5675599575042725, - 0.5715624690055847, - 0.573840320110321, - 0.574331521987915, - 0.5730225443840027, - 0.569949209690094, - 0.5651952624320984, - 0.5588904023170471, - 0.551206648349762, - 0.5423535704612732, - 0.5325726270675659, - 0.5221306681632996, - 0.49454647302627563, - 0.4854039251804352, - 0.4768869876861572, - 0.46922796964645386, - 0.46263575553894043, - 0.4572902321815491, - 0.453337162733078, - 0.4508843719959259, - 0.44999879598617554, - 0.45070457458496094, - 0.45298248529434204, - 0.45677030086517334, - 0.46196481585502625, - 0.4684242904186249, - 0.4759725034236908, - 0.4844035804271698, - 0.49348753690719604, - 0.5029765963554382, - 0.5126119256019592, - 0.5221306681632996, - 0.49454647302627563, - 0.46645432710647583, - 0.4395046830177307, - 0.4144326448440552, - 0.39192208647727966, - 0.37258708477020264, - 0.35695505142211914, - 0.34545233845710754, - 0.3383927345275879, - 0.33596885204315186, - 0.3382467031478882, - 0.3451642692089081, - 0.3565327823162079, - 0.372042179107666, - 0.391269326210022, - 0.41368991136550903, - 0.43869221210479736, - 0.4655942916870117, - 0.4936623275279999, - 0.5221306681632996, - 0.49454647302627563, - 0.4505693316459656, - 0.4081679880619049, - 0.3684990406036377, - 0.332644522190094, - 0.3015825152397156, - 0.27616026997566223, - 0.25707119703292847, - 0.24483609199523926, - 0.23978862166404724, - 0.24206653237342834, - 0.25160759687423706, - 0.2681516408920288, - 0.2912473678588867, - 0.3202647566795349, - 0.35441234707832336, - 0.3927586078643799, - 0.4342576265335083, - 0.4777773320674896, - 0.5221306681632996, - 0.49454647302627563, - 0.4394703507423401, - 0.38627275824546814, - 0.33640480041503906, - 0.2912267744541168, - 0.2519710063934326, - 0.21970823407173157, - 0.19531852006912231, - 0.17946726083755493, - 0.17258667945861816, - 0.17486459016799927, - 0.18623876571655273, - 0.20639896392822266, - 0.23479536175727844, - 0.27065321803092957, - 0.3129945993423462, - 0.360664427280426, - 0.41236239671707153, - 0.46667835116386414, - 0.5221306681632996 - ], - "z": [ - 1.350980281829834, - 1.3799128532409668, - 1.408995509147644, - 1.4374350309371948, - 1.464455485343933, - 1.489319920539856, - 1.5113500356674194, - 1.5299451351165771, - 1.5445977449417114, - 1.554908275604248, - 1.5605953931808472, - 1.5615041255950928, - 1.5576095581054688, - 1.5490180253982544, - 1.535963773727417, - 1.5188030004501343, - 1.4980037212371826, - 1.4741332530975342, - 1.4478428363800049, - 1.4198496341705322, - 1.350980281829834, - 1.3749430179595947, - 1.3991913795471191, - 1.4230639934539795, - 1.4459096193313599, - 1.4671051502227783, - 1.486072301864624, - 1.5022938251495361, - 1.5153272151947021, - 1.5248169898986816, - 1.5305041074752808, - 1.532233715057373, - 1.5299583673477173, - 1.523740291595459, - 1.513749122619629, - 1.5002572536468506, - 1.4836328029632568, - 1.4643292427062988, - 1.4428730010986328, - 1.4198496341705322, - 1.350980281829834, - 1.3674273490905762, - 1.3843650817871094, - 1.4013314247131348, - 1.4178636074066162, - 1.4335107803344727, - 1.4478459358215332, - 1.4604780673980713, - 1.4710627794265747, - 1.479311227798462, - 1.484998345375061, - 1.487969160079956, - 1.488142490386963, - 1.4855138063430786, - 1.4801546335220337, - 1.472211241722107, - 1.461900234222412, - 1.4495028257369995, - 1.4353573322296143, - 1.4198496341705322, - 1.350980281829834, - 1.358180284500122, - 1.3661231994628906, - 1.3745923042297363, - 1.3833565711975098, - 1.3921771049499512, - 1.400813102722168, - 1.4090291261672974, - 1.4166009426116943, - 1.423322081565857, - 1.4290093183517456, - 1.4335073232650757, - 1.436693549156189, - 1.4384809732437134, - 1.4388209581375122, - 1.4377042055130005, - 1.4351609945297241, - 1.4312609434127808, - 1.4261102676391602, - 1.4198496341705322, - 1.350980281829834, - 1.3482038974761963, - 1.346442461013794, - 1.3457441329956055, - 1.3461278676986694, - 1.347583293914795, - 1.3500707149505615, - 1.3535221815109253, - 1.3578436374664307, - 1.3629170656204224, - 1.368604302406311, - 1.374750018119812, - 1.3811867237091064, - 1.3877387046813965, - 1.3942272663116455, - 1.4004755020141602, - 1.4063128232955933, - 1.411580204963684, - 1.4161338806152344, - 1.4198496341705322, - 1.350980281829834, - 1.3385792970657349, - 1.327455759048462, - 1.3179131746292114, - 1.3102118968963623, - 1.304561972618103, - 1.3011175394058228, - 1.299972414970398, - 1.30115807056427, - 1.3046419620513916, - 1.3103290796279907, - 1.3180644512176514, - 1.327636957168579, - 1.3387854099273682, - 1.351205825805664, - 1.3645594120025635, - 1.3784818649291992, - 1.392593502998352, - 1.406509280204773, - 1.4198496341705322, - 1.350980281829834, - 1.330349326133728, - 1.311220407485962, - 1.2941153049468994, - 1.2795006036758423, - 1.2677749395370483, - 1.2592582702636719, - 1.2541828155517578, - 1.2526869773864746, - 1.2548116445541382, - 1.2604987621307373, - 1.269593358039856, - 1.2818472385406494, - 1.2969261407852173, - 1.3144187927246094, - 1.3338481187820435, - 1.3546839952468872, - 1.376358151435852, - 1.3982793092727661, - 1.4198496341705322, - 1.350980281829834, - 1.3244060277938843, - 1.299495816230774, - 1.2769293785095215, - 1.257322072982788, - 1.241208791732788, - 1.2290290594100952, - 1.221115231513977, - 1.217682957649231, - 1.2188260555267334, - 1.224513292312622, - 1.2345893383026123, - 1.2487796545028687, - 1.2666970491409302, - 1.2878526449203491, - 1.3116695880889893, - 1.3374980688095093, - 1.364633560180664, - 1.3923360109329224, - 1.4198496341705322, - 1.350980281829834, - 1.3213932514190674, - 1.2935526371002197, - 1.2682178020477295, - 1.246079683303833, - 1.227742314338684, - 1.2137057781219482, - 1.2043530941009521, - 1.1999393701553345, - 1.200584888458252, - 1.206272006034851, - 1.2168457508087158, - 1.2320176362991333, - 1.2513737678527832, - 1.2743861675262451, - 1.3004271984100342, - 1.3287864923477173, - 1.3586903810501099, - 1.389323353767395, - 1.4198496341705322, - 1.350980281829834, - 1.321637749671936, - 1.2940348386764526, - 1.2689244747161865, - 1.246991753578186, - 1.2288347482681274, - 1.2149488925933838, - 1.2057130336761475, - 1.2013788223266602, - 1.2020646333694458, - 1.2077518701553345, - 1.2182852029800415, - 1.233377456665039, - 1.2526168823242188, - 1.275478720664978, - 1.3013392686843872, - 1.3294931650161743, - 1.3591725826263428, - 1.3895677328109741, - 1.4198496341705322, - 1.350980281829834, - 1.3251127004623413, - 1.3008900880813599, - 1.2789729833602905, - 1.25995934009552, - 1.2443678379058838, - 1.232623815536499, - 1.2250473499298096, - 1.2218453884124756, - 1.2231051921844482, - 1.228792428970337, - 1.2387518882751465, - 1.2527118921279907, - 1.2702916860580444, - 1.2910118103027344, - 1.3143068552017212, - 1.3395416736602783, - 1.36602783203125, - 1.3930426836013794, - 1.4198496341705322, - 1.350980281829834, - 1.331441879272461, - 1.3133755922317505, - 1.2972743511199951, - 1.2835774421691895, - 1.272658348083496, - 1.264814853668213, - 1.2602611780166626, - 1.259121298789978, - 1.2614264488220215, - 1.2671135663986206, - 1.2760276794433594, - 1.2879256010055542, - 1.3024828433990479, - 1.3193022012710571, - 1.3379249572753906, - 1.357843041419983, - 1.3785133361816406, - 1.399371862411499, - 1.4198496341705322, - 1.350980281829834, - 1.3399391174316406, - 1.3301383256912231, - 1.321845293045044, - 1.31528639793396, - 1.3106403350830078, - 1.3080339431762695, - 1.307538390159607, - 1.3091670274734497, - 1.312875509262085, - 1.3185627460479736, - 1.326073408126831, - 1.3352028131484985, - 1.3457019329071045, - 1.3572843074798584, - 1.3696339130401611, - 1.3824141025543213, - 1.3952760696411133, - 1.4078691005706787, - 1.4198496341705322, - 1.350980281829834, - 1.3496837615966797, - 1.349361777305603, - 1.3500233888626099, - 1.3516502380371094, - 1.3541982173919678, - 1.3575975894927979, - 1.3617558479309082, - 1.366559386253357, - 1.3718773126602173, - 1.3775644302368164, - 1.3834657669067383, - 1.3894202709197998, - 1.3952655792236328, - 1.4008420705795288, - 1.4059977531433105, - 1.4105920791625977, - 1.4144995212554932, - 1.4176137447357178, - 1.4198496341705322, - 1.350980281829834, - 1.3596197366714478, - 1.3689628839492798, - 1.378754734992981, - 1.3887282609939575, - 1.3986114263534546, - 1.4081345796585083, - 1.417038083076477, - 1.4250789880752563, - 1.4320378303527832, - 1.4377250671386719, - 1.4419853687286377, - 1.4447025060653687, - 1.4458025693893433, - 1.4452552795410156, - 1.4430757761001587, - 1.4393234252929688, - 1.43410062789917, - 1.4275497198104858, - 1.4198496341705322, - 1.350980281829834, - 1.3686704635620117, - 1.386817455291748, - 1.404926061630249, - 1.4225025177001953, - 1.4390673637390137, - 1.454168677330017, - 1.4673945903778076, - 1.478384256362915, - 1.4868379831314087, - 1.4925251007080078, - 1.4952906370162964, - 1.4950590133666992, - 1.4918365478515625, - 1.4857112169265747, - 1.4768500328063965, - 1.4654948711395264, - 1.4519551992416382, - 1.4366004467010498, - 1.4198496341705322, - 1.350980281829834, - 1.3758550882339478, - 1.4009907245635986, - 1.425701379776001, - 1.4493131637573242, - 1.4711819887161255, - 1.4907112121582031, - 1.5073683261871338, - 1.52069890499115, - 1.530339241027832, - 1.5360264778137207, - 1.5376052856445312, - 1.535032868385315, - 1.528379201889038, - 1.5178258419036865, - 1.5036606788635254, - 1.4862700700759888, - 1.4661284685134888, - 1.4437850713729858, - 1.4198496341705322, - 1.350980281829834, - 1.3803950548171997, - 1.4099466800689697, - 1.4388291835784912, - 1.466254711151123, - 1.4914751052856445, - 1.513802409172058, - 1.5326277017593384, - 1.5474374294281006, - 1.5578275918960571, - 1.5635147094726562, - 1.564343810081482, - 1.5602922439575195, - 1.551470398902893, - 1.5381189584732056, - 1.5206022262573242, - 1.499397873878479, - 1.4750844240188599, - 1.4483250379562378, - 1.4198496341705322, - 1.350980281829834, - 1.381798267364502, - 1.412714958190918, - 1.4428869485855103, - 1.4714912176132202, - 1.4977476596832275, - 1.520939826965332, - 1.5404353141784668, - 1.5557022094726562, - 1.5663241147994995, - 1.5720113515853882, - 1.5726085901260376, - 1.5680997371673584, - 1.558607816696167, - 1.5443915128707886, - 1.525838851928711, - 1.503455638885498, - 1.477852702140808, - 1.44972825050354, - 1.4198496341705322, - 1.350980281829834, - 1.3799128532409668, - 1.408995509147644, - 1.4374349117279053, - 1.464455485343933, - 1.489319920539856, - 1.5113500356674194, - 1.5299451351165771, - 1.5445977449417114, - 1.554908275604248, - 1.5605953931808472, - 1.5615041255950928, - 1.5576095581054688, - 1.5490180253982544, - 1.535963773727417, - 1.5188030004501343, - 1.4980037212371826, - 1.4741332530975342, - 1.4478428363800049, - 1.4198496341705322 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.47621285915374756, - 0.45810750126838684, - 0.44074517488479614, - 0.4245994985103607, - 0.4101108908653259, - 0.397674560546875, - 0.38762974739074707, - 0.38025039434432983, - 0.37573784589767456, - 0.37421518564224243, - 0.3757239282131195, - 0.38022294640541077, - 0.3875895142555237, - 0.39762264490127563, - 0.4100486934185028, - 0.42452874779701233, - 0.4406677782535553, - 0.4580255448818207, - 0.47612863779067993, - 0.49448317289352417, - 0.47621285915374756, - 0.47844651341438293, - 0.480868399143219, - 0.483412504196167, - 0.4860093593597412, - 0.48858824372291565, - 0.4910786747932434, - 0.4934128522872925, - 0.4955269992351532, - 0.49736350774765015, - 0.4988722503185272, - 0.5000120997428894, - 0.5007519125938416, - 0.501071572303772, - 0.5009623765945435, - 0.50042724609375, - 0.4994807541370392, - 0.49814876914024353, - 0.49646762013435364, - 0.49448317289352417, - 0.47621285915374756, - 0.4985569417476654, - 0.5205407738685608, - 0.5415645837783813, - 0.5610550045967102, - 0.5784803032875061, - 0.5933651924133301, - 0.6053037047386169, - 0.6139700412750244, - 0.6191279888153076, - 0.6206367015838623, - 0.618455171585083, - 0.612642765045166, - 0.6033580899238586, - 0.5908544659614563, - 0.5754728317260742, - 0.5576328635215759, - 0.5378211736679077, - 0.5165780782699585, - 0.49448317289352417, - 0.47621285915374756, - 0.5162596106529236, - 0.5554631352424622, - 0.5927541851997375, - 0.6271153688430786, - 0.6576095819473267, - 0.6834049224853516, - 0.7037978172302246, - 0.7182319164276123, - 0.726313591003418, - 0.7278223633766174, - 0.7227170467376709, - 0.7111368775367737, - 0.6933978796005249, - 0.6699837446212769, - 0.6415332555770874, - 0.6088224053382874, - 0.5727435350418091, - 0.5342807173728943, - 0.49448317289352417, - 0.47621282935142517, - 0.529636025428772, - 0.5818511843681335, - 0.6314339637756348, - 0.6770318746566772, - 0.7174012064933777, - 0.751440703868866, - 0.778221845626831, - 0.7970142364501953, - 0.807305097579956, - 0.8088138699531555, - 0.8014992475509644, - 0.7855609655380249, - 0.7614336013793945, - 0.7297753691673279, - 0.691449761390686, - 0.6475021839141846, - 0.5991315841674805, - 0.5476571917533875, - 0.49448317289352417, - 0.47621282935142517, - 0.537236750125885, - 0.596845269203186, - 0.6534124612808228, - 0.7053952813148499, - 0.7513757348060608, - 0.7900997400283813, - 0.8205108046531677, - 0.8417795896530151, - 0.8533257842063904, - 0.8548345565795898, - 0.846264660358429, - 0.8278499245643616, - 0.8000926375389099, - 0.7637499570846558, - 0.7198131084442139, - 0.6694807410240173, - 0.614125669002533, - 0.5552579164505005, - 0.49448317289352417, - 0.47621282935142517, - 0.5382381081581116, - 0.5988206267356873, - 0.6563079357147217, - 0.7091318964958191, - 0.7558516263961792, - 0.7951927185058594, - 0.8260820508003235, - 0.8476771116256714, - 0.8593886494636536, - 0.860897421836853, - 0.8521621823310852, - 0.8334211707115173, - 0.8051856160163879, - 0.7682257890701294, - 0.7235497832298279, - 0.6723762154579163, - 0.6161010265350342, - 0.5562592148780823, - 0.49448317289352417, - 0.47621282935142517, - 0.5325314998626709, - 0.587563157081604, - 0.6398066282272339, - 0.6878368854522705, - 0.730343759059906, - 0.7661678194999695, - 0.7943317890167236, - 0.8140676021575928, - 0.8248366117477417, - 0.8263454437255859, - 0.8185526132583618, - 0.8016709089279175, - 0.776160717010498, - 0.742717981338501, - 0.7022547721862793, - 0.6558749079704285, - 0.6048435568809509, - 0.5505526661872864, - 0.49448317289352417, - 0.47621285915374756, - 0.5207354426383972, - 0.5642927885055542, - 0.6056967377662659, - 0.6438179016113281, - 0.6776163578033447, - 0.7061702609062195, - 0.7287007570266724, - 0.7445931434631348, - 0.7534140348434448, - 0.7549228072166443, - 0.7490782737731934, - 0.7360398769378662, - 0.7161632180213928, - 0.6899905204772949, - 0.6582357287406921, - 0.6217650175094604, - 0.5815731883049011, - 0.5387566089630127, - 0.49448317289352417, - 0.47621285915374756, - 0.5041282176971436, - 0.5315312743186951, - 0.5576745867729187, - 0.5818449854850769, - 0.6033832430839539, - 0.6217017769813538, - 0.6363009810447693, - 0.6467825174331665, - 0.6528605818748474, - 0.6543693542480469, - 0.6512676477432251, - 0.6436400413513184, - 0.6316946744918823, - 0.615757405757904, - 0.5962628722190857, - 0.5737428069114685, - 0.5488116145133972, - 0.5221493244171143, - 0.49448317289352417, - 0.47621285915374756, - 0.48450934886932373, - 0.49282872676849365, - 0.5009440779685974, - 0.5086339712142944, - 0.5156886577606201, - 0.5219157934188843, - 0.5271454453468323, - 0.5312349796295166, - 0.534072756767273, - 0.5355815291404724, - 0.5357200503349304, - 0.5344845652580261, - 0.5319086909294128, - 0.5280628204345703, - 0.5230517983436584, - 0.5170122981071472, - 0.5101091265678406, - 0.5025305151939392, - 0.49448317289352417, - 0.47621285915374756, - 0.4640049636363983, - 0.4523792564868927, - 0.4416528642177582, - 0.43211832642555237, - 0.42403578758239746, - 0.41762566566467285, - 0.4130628705024719, - 0.4104717969894409, - 0.40992313623428345, - 0.4114319086074829, - 0.4149568974971771, - 0.4204019606113434, - 0.4276185929775238, - 0.43640992045402527, - 0.44653618335723877, - 0.45772111415863037, - 0.4696596562862396, - 0.4820261001586914, - 0.49448317289352417, - 0.47621285915374756, - 0.4448370039463043, - 0.41456615924835205, - 0.386226087808609, - 0.36058980226516724, - 0.33835655450820923, - 0.32013291120529175, - 0.306415855884552, - 0.2975795865058899, - 0.29386523365974426, - 0.29537397623062134, - 0.3020647168159485, - 0.31375494599342346, - 0.3301258087158203, - 0.3507307171821594, - 0.37500762939453125, - 0.4022943377494812, - 0.431846559047699, - 0.4628581404685974, - 0.49448317289352417, - 0.47621285915374756, - 0.42908257246017456, - 0.3834870755672455, - 0.34067004919052124, - 0.301799476146698, - 0.2679356336593628, - 0.24000224471092224, - 0.21876117587089539, - 0.20479199290275574, - 0.19847562909126282, - 0.19998440146446228, - 0.20927706360816956, - 0.22610029578208923, - 0.2499951422214508, - 0.2803097665309906, - 0.316217303276062, - 0.3567383289337158, - 0.40076744556427, - 0.44710370898246765, - 0.49448317289352417, - 0.47621285915374756, - 0.4184489846229553, - 0.36250990629196167, - 0.3099215626716614, - 0.2621183395385742, - 0.22040432691574097, - 0.1859172284603119, - 0.15959784388542175, - 0.14216405153274536, - 0.13409143686294556, - 0.13560020923614502, - 0.14664912223815918, - 0.1669369637966156, - 0.19591009616851807, - 0.23277845978736877, - 0.2765361964702606, - 0.32598984241485596, - 0.3797903060913086, - 0.4364701211452484, - 0.49448320269584656, - 0.47621285915374756, - 0.41408848762512207, - 0.35390785336494446, - 0.29731258749961853, - 0.2458464354276657, - 0.20091325044631958, - 0.16373875737190247, - 0.13533681631088257, - 0.11648234724998474, - 0.10768958926200867, - 0.10919836163520813, - 0.12096741795539856, - 0.14267593622207642, - 0.17373159527778625, - 0.2132873833179474, - 0.2602642774581909, - 0.3133808672428131, - 0.371188223361969, - 0.43210962414741516, - 0.49448320269584656, - 0.47621285915374756, - 0.4164736270904541, - 0.3586130738258362, - 0.30420953035354614, - 0.2547470033168793, - 0.21157467365264893, - 0.1758701503276825, - 0.14860734343528748, - 0.1305299699306488, - 0.12213107943534851, - 0.12363985180854797, - 0.13501504063606262, - 0.15594646334648132, - 0.18586301803588867, - 0.22394877672195435, - 0.2691648602485657, - 0.3202778100967407, - 0.3758934736251831, - 0.4344947636127472, - 0.49448320269584656, - 0.47621285915374756, - 0.4253459572792053, - 0.37611573934555054, - 0.32986506819725037, - 0.2878555655479431, - 0.25123319029808044, - 0.22099685668945312, - 0.19797128438949585, - 0.18278464674949646, - 0.17585110664367676, - 0.17735987901687622, - 0.18726971745491028, - 0.2053104043006897, - 0.2309897541999817, - 0.26360732316970825, - 0.3022734224796295, - 0.34593334794044495, - 0.3933961093425751, - 0.4433670938014984, - 0.49448320269584656, - 0.47621285915374756, - 0.4397439956665039, - 0.40451908111572266, - 0.3714990019798279, - 0.34158438444137573, - 0.3155912756919861, - 0.294228732585907, - 0.27807939052581787, - 0.26758378744125366, - 0.26302823424339294, - 0.26453697681427, - 0.2720688581466675, - 0.28541845083236694, - 0.30422163009643555, - 0.3279654383659363, - 0.35600224137306213, - 0.38756728172302246, - 0.4217994809150696, - 0.457765132188797, - 0.49448317289352417, - 0.47621285915374756, - 0.45810750126838684, - 0.44074520468711853, - 0.4245995283126831, - 0.4101109504699707, - 0.3976746201515198, - 0.38762980699539185, - 0.3802504539489746, - 0.37573790550231934, - 0.3742152452468872, - 0.37572401762008667, - 0.38022300601005554, - 0.38758957386016846, - 0.3976227045059204, - 0.4100487530231476, - 0.4245287775993347, - 0.4406678080558777, - 0.45802557468414307, - 0.47612863779067993, - 0.49448317289352417 - ], - "y": [ - 0.5365409851074219, - 0.4811519980430603, - 0.4275642931461334, - 0.3772395849227905, - 0.3315505385398865, - 0.29174351692199707, - 0.2589043080806732, - 0.2339286506175995, - 0.2174978256225586, - 0.21006011962890625, - 0.21181827783584595, - 0.22272443771362305, - 0.2424810826778412, - 0.2705492377281189, - 0.30616337060928345, - 0.34835201501846313, - 0.3959643244743347, - 0.4477015435695648, - 0.5021525025367737, - 0.5578318238258362, - 0.5365409851074219, - 0.4760018587112427, - 0.4174044728279114, - 0.36234718561172485, - 0.31233179569244385, - 0.2687227129936218, - 0.2327093482017517, - 0.2052740752696991, - 0.1871652901172638, - 0.17887696623802185, - 0.18063512444496155, - 0.19239190220832825, - 0.2138265073299408, - 0.2443542778491974, - 0.2831425964832306, - 0.3291332721710205, - 0.38107192516326904, - 0.4375416934490204, - 0.4970023036003113, - 0.5578318238258362, - 0.5365409851074219, - 0.47742778062820435, - 0.4202173948287964, - 0.3664703965187073, - 0.3176528811454773, - 0.27509641647338867, - 0.2399618923664093, - 0.21320763230323792, - 0.19556337594985962, - 0.18751057982444763, - 0.18926873803138733, - 0.20078998804092407, - 0.22176006436347961, - 0.251606822013855, - 0.28951629996299744, - 0.33445432782173157, - 0.38519513607025146, - 0.4403546452522278, - 0.49842822551727295, - 0.5578318238258362, - 0.5365409851074219, - 0.4852752387523651, - 0.4356983006000519, - 0.38916245102882385, - 0.34693706035614014, - 0.31017401814460754, - 0.2798760235309601, - 0.25686952471733093, - 0.24178212881088257, - 0.23502540588378906, - 0.23678356409072876, - 0.24700874090194702, - 0.26542195677757263, - 0.29152095317840576, - 0.32459384202957153, - 0.3637385368347168, - 0.40788719058036804, - 0.4558355510234833, - 0.5062757134437561, - 0.5578318238258362, - 0.5365409851074219, - 0.49869388341903687, - 0.4621695876121521, - 0.42796429991722107, - 0.39701107144355774, - 0.3701542615890503, - 0.3481264114379883, - 0.3315283954143524, - 0.32081300020217896, - 0.31627243757247925, - 0.31803059577941895, - 0.32603955268859863, - 0.3400808274745941, - 0.35977140069007874, - 0.38457411527633667, - 0.413812518119812, - 0.44668903946876526, - 0.4823068380355835, - 0.5196943283081055, - 0.5578318238258362, - 0.5365409851074219, - 0.5162295699119568, - 0.4967626631259918, - 0.478671133518219, - 0.4624485373497009, - 0.4485373795032501, - 0.4373171031475067, - 0.42909374833106995, - 0.4240916669368744, - 0.4224473237991333, - 0.4242055118083954, - 0.42931827902793884, - 0.43764618039131165, - 0.44896209239959717, - 0.4629572629928589, - 0.4792500138282776, - 0.4973958730697632, - 0.5168998837471008, - 0.5372300744056702, - 0.5578318238258362, - 0.5365409255027771, - 0.535982072353363, - 0.5357288122177124, - 0.5357881188392639, - 0.5361583232879639, - 0.5368293523788452, - 0.5377828478813171, - 0.5389928817749023, - 0.5404264330863953, - 0.5420443415641785, - 0.5438024997711182, - 0.5456529855728149, - 0.547545313835144, - 0.54942786693573, - 0.5512492060661316, - 0.5529597997665405, - 0.5545128583908081, - 0.5558660626411438, - 0.5569825172424316, - 0.5578318238258362, - 0.5365409255027771, - 0.5558108687400818, - 0.5748454928398132, - 0.5931257009506226, - 0.6101527810096741, - 0.6254622936248779, - 0.6386367082595825, - 0.6493165493011475, - 0.6572105288505554, - 0.6621033549308777, - 0.6638615131378174, - 0.6624371409416199, - 0.6578689813613892, - 0.6502816677093506, - 0.6398822069168091, - 0.6269542574882507, - 0.6118504405021667, - 0.5949827432632446, - 0.5768113136291504, - 0.5578317642211914, - 0.5365409255027771, - 0.5735672116279602, - 0.6098738312721252, - 0.6444705128669739, - 0.6764135360717773, - 0.704831600189209, - 0.7289494872093201, - 0.7481093406677246, - 0.7617886066436768, - 0.769614040851593, - 0.7713721990585327, - 0.7670152187347412, - 0.7566617727279663, - 0.7405945062637329, - 0.7192515134811401, - 0.693215012550354, - 0.6631952524185181, - 0.6300110816955566, - 0.5945676565170288, - 0.5578317642211914, - 0.5365409255027771, - 0.5873268842697144, - 0.6370178461074829, - 0.6842584609985352, - 0.7277601957321167, - 0.76633620262146, - 0.7989344596862793, - 0.8246657252311707, - 0.8428280353546143, - 0.8529260158538818, - 0.8546841144561768, - 0.8480546474456787, - 0.8332181572914124, - 0.8105794191360474, - 0.7807561755180359, - 0.7445616722106934, - 0.7029832601547241, - 0.6571550965309143, - 0.608327329158783, - 0.5578317642211914, - 0.5365409255027771, - 0.5955988764762878, - 0.6533361673355103, - 0.7081780433654785, - 0.7586284875869751, - 0.8033112287521362, - 0.8410077095031738, - 0.8706894516944885, - 0.8915468454360962, - 0.9030110239982605, - 0.9047691822052002, - 0.8967734575271606, - 0.8792418837547302, - 0.8526526689529419, - 0.8177312612533569, - 0.7754299640655518, - 0.7269027829170227, - 0.6734734177589417, - 0.6165993213653564, - 0.5578317642211914, - 0.5365409255027771, - 0.5974867343902588, - 0.657060444355011, - 0.7136370539665222, - 0.7656733989715576, - 0.8117498755455017, - 0.8506098985671997, - 0.881193220615387, - 0.9026657342910767, - 0.914441704750061, - 0.916199803352356, - 0.9078923463821411, - 0.8897456526756287, - 0.8622548580169678, - 0.8261698484420776, - 0.7824748754501343, - 0.7323617935180664, - 0.6771976947784424, - 0.6184871792793274, - 0.5578317642211914, - 0.5365409255027771, - 0.5927858948707581, - 0.6477870345115662, - 0.7000440359115601, - 0.748131513595581, - 0.7907376885414124, - 0.8267004489898682, - 0.8550387620925903, - 0.8749797344207764, - 0.8859792947769165, - 0.8877373933792114, - 0.8802063465118408, - 0.863591194152832, - 0.8383454084396362, - 0.8051576614379883, - 0.7649329900741577, - 0.7187687754631042, - 0.6679242849349976, - 0.6137863397598267, - 0.5578317642211914, - 0.5365409255027771, - 0.5820057988166809, - 0.6265208721160889, - 0.6688719391822815, - 0.7079036831855774, - 0.7425515055656433, - 0.7718703150749207, - 0.7950602769851685, - 0.811488926410675, - 0.8207080364227295, - 0.822466254234314, - 0.8167155385017395, - 0.8036127090454102, - 0.7835153341293335, - 0.7569714784622192, - 0.7247052192687988, - 0.6875966787338257, - 0.6466581225395203, - 0.6030062437057495, - 0.5578317642211914, - 0.5365409255027771, - 0.5663146376609802, - 0.5955665707588196, - 0.623498797416687, - 0.6493494510650635, - 0.6724132895469666, - 0.6920613050460815, - 0.7077575922012329, - 0.7190737724304199, - 0.7257013916969299, - 0.7274596095085144, - 0.7243003845214844, - 0.7163100242614746, - 0.7037063241004944, - 0.6868332028388977, - 0.6661509275436401, - 0.6422235369682312, - 0.615703821182251, - 0.5873150825500488, - 0.5578317642211914, - 0.5365409255027771, - 0.5474127531051636, - 0.5582783818244934, - 0.5688414573669434, - 0.5788138508796692, - 0.587923526763916, - 0.5959219932556152, - 0.6025910377502441, - 0.6077488660812378, - 0.6112546324729919, - 0.6130127906799316, - 0.6129754185676575, - 0.6111434698104858, - 0.6075669527053833, - 0.6023433804512024, - 0.5956153273582458, - 0.5875661969184875, - 0.5784156322479248, - 0.5684131979942322, - 0.5578317642211914, - 0.5365409851074219, - 0.5273484587669373, - 0.5186970829963684, - 0.5108228325843811, - 0.5039405226707458, - 0.4982377588748932, - 0.49387025833129883, - 0.49095702171325684, - 0.48957762122154236, - 0.4897696375846863, - 0.49152782559394836, - 0.4948042035102844, - 0.49950945377349854, - 0.5055152177810669, - 0.512657642364502, - 0.5207419395446777, - 0.5295475721359253, - 0.5388343334197998, - 0.5483489036560059, - 0.5578318238258362, - 0.5365409851074219, - 0.5082960724830627, - 0.48111197352409363, - 0.4557301998138428, - 0.4328431487083435, - 0.4130750894546509, - 0.3969652056694031, - 0.38495296239852905, - 0.3773660659790039, - 0.374411404132843, - 0.3761695623397827, - 0.3825926184654236, - 0.39350539445877075, - 0.4086102247238159, - 0.42749494314193726, - 0.44964462518692017, - 0.47445493936538696, - 0.5012491941452026, - 0.5292965173721313, - 0.5578318238258362, - 0.5365409851074219, - 0.49232015013694763, - 0.44959592819213867, - 0.4095337390899658, - 0.3732263445854187, - 0.3416641354560852, - 0.3157080411911011, - 0.2960660457611084, - 0.28327396512031555, - 0.27768075466156006, - 0.27943891286849976, - 0.28850057721138, - 0.3046184778213501, - 0.32735300064086914, - 0.3560839891433716, - 0.39002782106399536, - 0.42825847864151, - 0.46973317861557007, - 0.5133206248283386, - 0.5578318238258362, - 0.5365409851074219, - 0.4811519980430603, - 0.4275642931461334, - 0.3772395849227905, - 0.3315505385398865, - 0.29174351692199707, - 0.2589043080806732, - 0.2339286208152771, - 0.2174977958202362, - 0.21006008982658386, - 0.21181824803352356, - 0.22272440791130066, - 0.2424810528755188, - 0.2705492377281189, - 0.30616334080696106, - 0.34835198521614075, - 0.3959643244743347, - 0.4477015435695648, - 0.5021524429321289, - 0.5578318238258362 - ], - "z": [ - 1.401916265487671, - 1.431349515914917, - 1.4606907367706299, - 1.4891395568847656, - 1.5159200429916382, - 1.5403014421463013, - 1.5616189241409302, - 1.5792909860610962, - 1.5928354263305664, - 1.6018829345703125, - 1.6061866283416748, - 1.6056292057037354, - 1.6002259254455566, - 1.5901238918304443, - 1.575598955154419, - 1.5570471286773682, - 1.5349745750427246, - 1.5099834203720093, - 1.482755184173584, - 1.4540326595306396, - 1.401916265487671, - 1.4263232946395874, - 1.450775384902954, - 1.4746055603027344, - 1.4971637725830078, - 1.5178346633911133, - 1.5360543727874756, - 1.551326036453247, - 1.5632328987121582, - 1.5714502334594727, - 1.575753927230835, - 1.5760266780853271, - 1.572260856628418, - 1.5645593404769897, - 1.553132176399231, - 1.5382909774780273, - 1.5204405784606934, - 1.5000680685043335, - 1.4777289628982544, - 1.4540326595306396, - 1.401916265487671, - 1.4186906814575195, - 1.4357184171676636, - 1.4525349140167236, - 1.4686814546585083, - 1.4837175607681274, - 1.497233271598816, - 1.508859634399414, - 1.518279790878296, - 1.5252364873886108, - 1.5295403003692627, - 1.5310735702514648, - 1.5297945737838745, - 1.52573823928833, - 1.5190150737762451, - 1.5098086595535278, - 1.4983699321746826, - 1.485011100769043, - 1.4700963497161865, - 1.4540326595306396, - 1.401916265487671, - 1.4092788696289062, - 1.4171514511108398, - 1.4253193140029907, - 1.433559536933899, - 1.4416474103927612, - 1.4493622779846191, - 1.456493854522705, - 1.4628474712371826, - 1.468249797821045, - 1.4725534915924072, - 1.4756412506103516, - 1.4774287939071655, - 1.4778672456741333, - 1.476944923400879, - 1.474686622619629, - 1.4711543321609497, - 1.4664440155029297, - 1.4606845378875732, - 1.4540326595306396, - 1.401916265487671, - 1.3991076946258545, - 1.397086501121521, - 1.3959078788757324, - 1.395603895187378, - 1.3961830139160156, - 1.3976292610168457, - 1.3999031782150269, - 1.4029428958892822, - 1.406665325164795, - 1.4109691381454468, - 1.4157366752624512, - 1.4208381175994873, - 1.4261342287063599, - 1.4314805269241333, - 1.4367311000823975, - 1.4417428970336914, - 1.4463790655136108, - 1.450513243675232, - 1.4540326595306396, - 1.401916265487671, - 1.3892793655395508, - 1.3776979446411133, - 1.367487907409668, - 1.358927845954895, - 1.3522511720657349, - 1.347640037536621, - 1.3452202081680298, - 1.345057725906372, - 1.3471570014953613, - 1.3514606952667236, - 1.357851505279541, - 1.3661551475524902, - 1.3761450052261353, - 1.3875486850738525, - 1.4000550508499146, - 1.413322925567627, - 1.4269905090332031, - 1.4406849145889282, - 1.4540326595306396, - 1.401916265487671, - 1.3808588981628418, - 1.3610868453979492, - 1.3431391716003418, - 1.3275055885314941, - 1.314612627029419, - 1.3048118352890015, - 1.298370599746704, - 1.2954646348953247, - 1.2961732149124146, - 1.3004769086837769, - 1.3082584142684937, - 1.3193055391311646, - 1.3333168029785156, - 1.3499101400375366, - 1.3686327934265137, - 1.3889741897583008, - 1.410379409790039, - 1.4322645664215088, - 1.4540326595306396, - 1.401916265487671, - 1.3747589588165283, - 1.349053144454956, - 1.3255001306533813, - 1.304742455482483, - 1.2873461246490479, - 1.2737858295440674, - 1.2644312381744385, - 1.2595378160476685, - 1.2592389583587646, - 1.263542652130127, - 1.272331714630127, - 1.285366177558899, - 1.302290678024292, - 1.322643518447876, - 1.345869541168213, - 1.3713351488113403, - 1.398345708847046, - 1.4261645078659058, - 1.4540326595306396, - 1.401916265487671, - 1.3716403245925903, - 1.3429011106491089, - 1.316482424736023, - 1.293104887008667, - 1.2734062671661377, - 1.25792396068573, - 1.2470800876617432, - 1.2411705255508423, - 1.2403565645217896, - 1.2446603775024414, - 1.2539644241333008, - 1.2680150270462036, - 1.2864289283752441, - 1.3087037801742554, - 1.3342320919036865, - 1.362317442893982, - 1.3921936750411987, - 1.4230459928512573, - 1.4540326595306396, - 1.401916265487671, - 1.3718411922454834, - 1.3432972431182861, - 1.3170629739761353, - 1.2938542366027832, - 1.274303913116455, - 1.2589452266693115, - 1.248197317123413, - 1.2423532009124756, - 1.241572380065918, - 1.2458760738372803, - 1.2551469802856445, - 1.2691322565078735, - 1.2874501943588257, - 1.3096013069152832, - 1.3349813222885132, - 1.3628979921340942, - 1.392589807510376, - 1.4232467412948608, - 1.4540326595306396, - 1.401916265487671, - 1.3753395080566406, - 1.3501986265182495, - 1.327179193496704, - 1.306909203529358, - 1.2899415493011475, - 1.2767390012741089, - 1.2676618099212646, - 1.2629575729370117, - 1.2627545595169067, - 1.267058253288269, - 1.2757513523101807, - 1.288596749305725, - 1.305243968963623, - 1.3252389430999756, - 1.348036289215088, - 1.373014211654663, - 1.3994911909103394, - 1.4267451763153076, - 1.4540326595306396, - 1.401916265487671, - 1.3817565441131592, - 1.362857460975647, - 1.3457345962524414, - 1.3308550119400024, - 1.3186246156692505, - 1.3093769550323486, - 1.3033643960952759, - 1.3007508516311646, - 1.301607608795166, - 1.3059114217758179, - 1.313544750213623, - 1.3242993354797363, - 1.3378820419311523, - 1.3539221286773682, - 1.371982216835022, - 1.3915696144104004, - 1.4121500253677368, - 1.4331620931625366, - 1.4540326595306396, - 1.401916265487671, - 1.3903965950012207, - 1.3799018859863281, - 1.3707184791564941, - 1.363096833229065, - 1.3572449684143066, - 1.3533223867416382, - 1.3514361381530762, - 1.351637601852417, - 1.3539214134216309, - 1.3582251071929932, - 1.364431381225586, - 1.3723710775375366, - 1.3818273544311523, - 1.3925424814224243, - 1.4042240381240845, - 1.4165534973144531, - 1.429194450378418, - 1.4418021440505981, - 1.4540326595306396, - 1.401916265487671, - 1.400323510169983, - 1.3994849920272827, - 1.3994234800338745, - 1.4001408815383911, - 1.4016175270080566, - 1.4038130044937134, - 1.406667709350586, - 1.410103440284729, - 1.4140267372131348, - 1.4183305501937866, - 1.4228973388671875, - 1.4276026487350464, - 1.432318091392517, - 1.4369150400161743, - 1.4412680864334106, - 1.4452584981918335, - 1.4487775564193726, - 1.4517290592193604, - 1.4540326595306396, - 1.401916265487671, - 1.4104615449905396, - 1.4194844961166382, - 1.4287389516830444, - 1.4379726648330688, - 1.446933627128601, - 1.455377459526062, - 1.46307373046875, - 1.4698126316070557, - 1.4754103422164917, - 1.479714035987854, - 1.4826065301895142, - 1.4840086698532104, - 1.4838824272155762, - 1.4822311401367188, - 1.4790998697280884, - 1.4745739698410034, - 1.468777060508728, - 1.461867094039917, - 1.4540326595306396, - 1.401916265487671, - 1.4197120666503906, - 1.4377331733703613, - 1.4554882049560547, - 1.4724925756454468, - 1.4882826805114746, - 1.5024278163909912, - 1.5145419836044312, - 1.5242948532104492, - 1.5314202308654785, - 1.5357240438461304, - 1.5370886325836182, - 1.5354769229888916, - 1.5309327840805054, - 1.5235801935195923, - 1.5136197805404663, - 1.5013232231140137, - 1.4870257377624512, - 1.471117615699768, - 1.4540326595306396, - 1.401916265487671, - 1.4270726442337036, - 1.4522535800933838, - 1.4767723083496094, - 1.499959945678711, - 1.521183967590332, - 1.5398656129837036, - 1.555495023727417, - 1.5676460266113281, - 1.5759872198104858, - 1.5802909135818481, - 1.580439805984497, - 1.5764299631118774, - 1.5683705806732178, - 1.5564815998077393, - 1.5410871505737305, - 1.5226073265075684, - 1.5015462636947632, - 1.478478193283081, - 1.4540326595306396, - 1.401916265487671, - 1.4317456483840942, - 1.4614722728729248, - 1.490285038948059, - 1.5173982381820679, - 1.542072057723999, - 1.563633680343628, - 1.581494927406311, - 1.5951684713363647, - 1.6042814254760742, - 1.6085851192474365, - 1.6079622507095337, - 1.6024298667907715, - 1.592138648033142, - 1.5773695707321167, - 1.5585253238677979, - 1.536120057106018, - 1.5107648372650146, - 1.4831513166427612, - 1.4540326595306396, - 1.401916265487671, - 1.4332246780395508, - 1.4643900394439697, - 1.4945619106292725, - 1.5229175090789795, - 1.5486834049224854, - 1.5711565017700195, - 1.589724063873291, - 1.6038795709609985, - 1.6132367849349976, - 1.6175404787063599, - 1.6166733503341675, - 1.6106590032577515, - 1.5996615886688232, - 1.583980917930603, - 1.564044713973999, - 1.5403969287872314, - 1.5136826038360596, - 1.4846303462982178, - 1.4540326595306396, - 1.401916265487671, - 1.431349515914917, - 1.4606907367706299, - 1.4891395568847656, - 1.5159200429916382, - 1.5403014421463013, - 1.5616189241409302, - 1.5792908668518066, - 1.5928354263305664, - 1.6018829345703125, - 1.6061866283416748, - 1.6056292057037354, - 1.600225806236267, - 1.5901238918304443, - 1.575598955154419, - 1.5570471286773682, - 1.5349745750427246, - 1.5099834203720093, - 1.482755184173584, - 1.4540326595306396 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.5113535523414612, - 0.5294399857521057, - 0.5468363761901855, - 0.5630682706832886, - 0.5776928663253784, - 0.5903112888336182, - 0.6005792617797852, - 0.6082167625427246, - 0.6130154728889465, - 0.6148444414138794, - 0.613653838634491, - 0.6094760894775391, - 0.6024250984191895, - 0.5926933288574219, - 0.5805462002754211, - 0.5663150548934937, - 0.550387978553772, - 0.5331995487213135, - 0.5152185559272766, - 0.49693551659584045, - 0.5113535523414612, - 0.5478743314743042, - 0.5832022428512573, - 0.6163736581802368, - 0.6464837789535522, - 0.6727112531661987, - 0.694340705871582, - 0.7107820510864258, - 0.7215868830680847, - 0.7264604568481445, - 0.7252697944641113, - 0.7180474996566772, - 0.7049903869628906, - 0.6864547729492188, - 0.6629462242126465, - 0.6351059675216675, - 0.6036933660507202, - 0.5695654153823853, - 0.5336529016494751, - 0.49693551659584045, - 0.5113535523414612, - 0.5623404383659363, - 0.6117398738861084, - 0.6582043766975403, - 0.700466513633728, - 0.7373735308647156, - 0.7679187059402466, - 0.7912687063217163, - 0.806786835193634, - 0.8140496015548706, - 0.8128589391708374, - 0.8032473921775818, - 0.7854770421981812, - 0.7600327730178833, - 0.7276084423065186, - 0.6890887022018433, - 0.6455240845680237, - 0.5981030464172363, - 0.5481190085411072, - 0.49693551659584045, - 0.5113535523414612, - 0.5712706446647644, - 0.6293567419052124, - 0.6840273141860962, - 0.7337912321090698, - 0.777290940284729, - 0.8133399486541748, - 0.8409548997879028, - 0.8593825101852417, - 0.8681201934814453, - 0.8669295310974121, - 0.8558430671691895, - 0.8351632356643677, - 0.8054540157318115, - 0.7675259113311768, - 0.7224133610725403, - 0.6713470220565796, - 0.6157199144363403, - 0.5570492744445801, - 0.49693551659584045, - 0.5113535523414612, - 0.5736972689628601, - 0.6341438293457031, - 0.691044270992279, - 0.7428466081619263, - 0.7881377935409546, - 0.8256822824478149, - 0.8544561862945557, - 0.8736745119094849, - 0.8828129172325134, - 0.8816222548484802, - 0.8701350688934326, - 0.8486645221710205, - 0.8177964091300964, - 0.7783727049827576, - 0.7314687967300415, - 0.6783639788627625, - 0.6205069422721863, - 0.5594758987426758, - 0.49693551659584045, - 0.5113535523414612, - 0.5693573355674744, - 0.6255822777748108, - 0.6784947514533997, - 0.7266514301300049, - 0.7687386274337769, - 0.8036084175109863, - 0.8303096294403076, - 0.8481138944625854, - 0.8565355539321899, - 0.8553448915481567, - 0.8445744514465332, - 0.8245179653167725, - 0.795722484588623, - 0.7589735984802246, - 0.7152735590934753, - 0.6658144593238831, - 0.6119454503059387, - 0.55513596534729, - 0.49693551659584045, - 0.5113535523414612, - 0.5587211847305298, - 0.6046000719070435, - 0.6477387547492981, - 0.6869606375694275, - 0.7211956977844238, - 0.7495102286338806, - 0.7711318731307983, - 0.785470724105835, - 0.7921357154846191, - 0.7909450531005859, - 0.7819312810897827, - 0.7653402090072632, - 0.7416243553161621, - 0.7114306688308716, - 0.675582766532898, - 0.6350584626197815, - 0.5909631848335266, - 0.5444997549057007, - 0.49693551659584045, - 0.5113535523414612, - 0.5429412722587585, - 0.5734707713127136, - 0.6021091938018799, - 0.628075361251831, - 0.650661051273346, - 0.6692501306533813, - 0.6833356022834778, - 0.6925331950187683, - 0.6965919733047485, - 0.6954013705253601, - 0.6889937520027161, - 0.6775439381599426, - 0.6613641977310181, - 0.6408959627151489, - 0.6166974902153015, - 0.5894288420677185, - 0.5598338842391968, - 0.5287199020385742, - 0.49693551659584045, - 0.5113535523414612, - 0.5237277746200562, - 0.5355677604675293, - 0.5465506315231323, - 0.5563767552375793, - 0.5647781491279602, - 0.5715255737304688, - 0.5764350891113281, - 0.5793726444244385, - 0.5802581906318665, - 0.5790675282478333, - 0.5758332014083862, - 0.570643424987793, - 0.5636396408081055, - 0.5550130605697632, - 0.5449988842010498, - 0.5338703393936157, - 0.5219309329986572, - 0.509506344795227, - 0.49693551659584045, - 0.5113535523414612, - 0.5031626224517822, - 0.4949984550476074, - 0.4870837926864624, - 0.47963446378707886, - 0.47285374999046326, - 0.4669265151023865, - 0.4620145261287689, - 0.4582517147064209, - 0.4557407796382904, - 0.4545501470565796, - 0.45471230149269104, - 0.45622286200523376, - 0.4590405821800232, - 0.46308866143226624, - 0.4682565927505493, - 0.4744035005569458, - 0.48136162757873535, - 0.4889412224292755, - 0.49693551659584045, - 0.511353611946106, - 0.483474463224411, - 0.45615917444229126, - 0.4301528036594391, - 0.4061647057533264, - 0.38484930992126465, - 0.3667879104614258, - 0.35247325897216797, - 0.3422957956790924, - 0.33653318881988525, - 0.33534252643585205, - 0.33875638246536255, - 0.3466815948486328, - 0.3589019775390625, - 0.37508416175842285, - 0.3947868347167969, - 0.4174724817276001, - 0.4425223171710968, - 0.4692530632019043, - 0.49693551659584045, - 0.511353611946106, - 0.46679678559303284, - 0.4232587218284607, - 0.3819270133972168, - 0.34392908215522766, - 0.31030142307281494, - 0.2819612920284271, - 0.25968173146247864, - 0.24407050013542175, - 0.23555341362953186, - 0.23436275124549866, - 0.2405310571193695, - 0.2538900673389435, - 0.27407532930374146, - 0.3005363345146179, - 0.3325512111186981, - 0.3692467212677002, - 0.4096218943595886, - 0.45257535576820374, - 0.49693554639816284, - 0.511353611946106, - 0.4549368619918823, - 0.3998623788356781, - 0.3476324677467346, - 0.2996717691421509, - 0.2572886049747467, - 0.2216389775276184, - 0.19369536638259888, - 0.17421996593475342, - 0.16374415159225464, - 0.16255348920822144, - 0.17068052291870117, - 0.18790370225906372, - 0.21375301480293274, - 0.2475234568119049, - 0.28829386830329895, - 0.334952175617218, - 0.38622555136680603, - 0.4407154619693756, - 0.49693554639816284, - 0.511353611946106, - 0.44917991757392883, - 0.3885055184364319, - 0.3309854567050934, - 0.2781887352466583, - 0.2315555214881897, - 0.19235774874687195, - 0.16166475415229797, - 0.14031371474266052, - 0.12888705730438232, - 0.12769639492034912, - 0.13677427172660828, - 0.15587309002876282, - 0.18447181582450867, - 0.2217903733253479, - 0.2668108344078064, - 0.3183051645755768, - 0.3748686909675598, - 0.43495848774909973, - 0.49693554639816284, - 0.511353611946106, - 0.450149804353714, - 0.3904188275337219, - 0.33379000425338745, - 0.28180795907974243, - 0.23589077591896057, - 0.19729077816009521, - 0.1670610010623932, - 0.14602595567703247, - 0.13475945591926575, - 0.13356879353523254, - 0.14248651266098022, - 0.16126933693885803, - 0.18940484523773193, - 0.22612562775611877, - 0.2704300880432129, - 0.32110971212387085, - 0.37678200006484985, - 0.4359283745288849, - 0.49693554639816284, - 0.511353611946106, - 0.457741379737854, - 0.40539491176605225, - 0.35574209690093994, - 0.3101373314857483, - 0.2698245644569397, - 0.23590341210365295, - 0.2092992067337036, - 0.19073757529258728, - 0.18072494864463806, - 0.17953428626060486, - 0.18719813227653503, - 0.20350754261016846, - 0.22801747918128967, - 0.2600594162940979, - 0.29875946044921875, - 0.34306180477142334, - 0.3917580842971802, - 0.4435199797153473, - 0.49693554639816284, - 0.511353611946106, - 0.4711320400238037, - 0.43181100487709045, - 0.39446303248405457, - 0.360106885433197, - 0.3296797275543213, - 0.3040114939212799, - 0.2838023900985718, - 0.2696036100387573, - 0.2618025541305542, - 0.260611891746521, - 0.26606422662734985, - 0.2780107259750366, - 0.29612553119659424, - 0.31991463899612427, - 0.3487290143966675, - 0.38178274035453796, - 0.4181741774082184, - 0.456910640001297, - 0.49693554639816284, - 0.511353611946106, - 0.48887068033218384, - 0.4668044447898865, - 0.445756733417511, - 0.42630165815353394, - 0.4089699983596802, - 0.39423441886901855, - 0.3824968934059143, - 0.37407758831977844, - 0.36920619010925293, - 0.3680155873298645, - 0.3705381751060486, - 0.37670522928237915, - 0.3863484859466553, - 0.39920490980148315, - 0.4149238169193268, - 0.4330764412879944, - 0.453167587518692, - 0.4746492803096771, - 0.49693551659584045, - 0.5113535523414612, - 0.509035050868988, - 0.5065831542015076, - 0.5040647387504578, - 0.5015484690666199, - 0.49910300970077515, - 0.49679508805274963, - 0.49468764662742615, - 0.49283817410469055, - 0.49129706621170044, - 0.4901064336299896, - 0.4892987310886383, - 0.488895982503891, - 0.48890915513038635, - 0.4893379211425781, - 0.49017059803009033, - 0.4913844168186188, - 0.4929462969303131, - 0.4948136508464813, - 0.49693551659584045, - 0.5113535523414612, - 0.5294399857521057, - 0.5468364357948303, - 0.5630683302879333, - 0.5776929259300232, - 0.5903113484382629, - 0.6005793213844299, - 0.6082168817520142, - 0.6130155324935913, - 0.6148445010185242, - 0.6136538982391357, - 0.6094760894775391, - 0.602425217628479, - 0.5926933884620667, - 0.5805462598800659, - 0.5663150548934937, - 0.5503880381584167, - 0.5331995487213135, - 0.5152185559272766, - 0.49693551659584045 - ], - "y": [ - 0.5866010189056396, - 0.642113208770752, - 0.6958799362182617, - 0.7464346289634705, - 0.7923983335494995, - 0.832517147064209, - 0.865696907043457, - 0.8910324573516846, - 0.9078327417373657, - 0.9156394004821777, - 0.9142396450042725, - 0.9036715626716614, - 0.8842234015464783, - 0.8564257025718689, - 0.8210367560386658, - 0.7790217399597168, - 0.7315268516540527, - 0.6798475384712219, - 0.6253935694694519, - 0.5696502327919006, - 0.5866010189056396, - 0.6309109926223755, - 0.6737810969352722, - 0.7140420079231262, - 0.7505954504013062, - 0.7824443578720093, - 0.8087199926376343, - 0.8287056684494019, - 0.841856062412262, - 0.8478126525878906, - 0.8464128971099854, - 0.8376948833465576, - 0.8218965530395508, - 0.7994487881660461, - 0.7709639072418213, - 0.7372188568115234, - 0.6991342306137085, - 0.6577487587928772, - 0.6141914129257202, - 0.5696502327919006, - 0.5866010189056396, - 0.6148946285247803, - 0.6421852707862854, - 0.6677284836769104, - 0.6908276081085205, - 0.7108525037765503, - 0.7272569537162781, - 0.739593505859375, - 0.7475255727767944, - 0.750836968421936, - 0.749437153339386, - 0.7433644533157349, - 0.7327843904495239, - 0.7179857492446899, - 0.6993720531463623, - 0.6774510741233826, - 0.6528207063674927, - 0.6261528730392456, - 0.5981749892234802, - 0.5696502327919006, - 0.5866010785102844, - 0.5957996845245361, - 0.6045162081718445, - 0.6125128865242004, - 0.6195715665817261, - 0.6254996657371521, - 0.6301355361938477, - 0.6333527565002441, - 0.6350635290145874, - 0.6352211236953735, - 0.6338213086128235, - 0.6309023499488831, - 0.6265437006950378, - 0.6208643317222595, - 0.6140192151069641, - 0.6061949729919434, - 0.5976051092147827, - 0.5884838700294495, - 0.5790800452232361, - 0.5696502327919006, - 0.5866010785102844, - 0.5756953954696655, - 0.5648559927940369, - 0.5543785691261292, - 0.5445489287376404, - 0.5356351733207703, - 0.5278804302215576, - 0.5214962363243103, - 0.516656756401062, - 0.5134940147399902, - 0.5120941996574402, - 0.5124955773353577, - 0.514687180519104, - 0.5186092257499695, - 0.5241547226905823, - 0.5311723947525024, - 0.5394707918167114, - 0.5488236546516418, - 0.5589757561683655, - 0.5696502327919006, - 0.5866010785102844, - 0.5567603707313538, - 0.5275024771690369, - 0.49962541460990906, - 0.47388967871665955, - 0.4509972333908081, - 0.43157246708869934, - 0.41614532470703125, - 0.4051365852355957, - 0.39884650707244873, - 0.39744675159454346, - 0.40097540616989136, - 0.40933626890182495, - 0.4223012626171112, - 0.43951672315597534, - 0.4605131149291992, - 0.48471763730049133, - 0.5114701390266418, - 0.5400407314300537, - 0.5696502923965454, - 0.5866010785102844, - 0.5410465002059937, - 0.49650341272354126, - 0.45418673753738403, - 0.4152507781982422, - 0.3807576298713684, - 0.351648211479187, - 0.3287164270877838, - 0.3125879168510437, - 0.30370262265205383, - 0.30230283737182617, - 0.30842673778533936, - 0.3219073712825775, - 0.3423769474029541, - 0.3692771792411804, - 0.4018741846084595, - 0.4392789602279663, - 0.48047104477882385, - 0.5243269205093384, - 0.5696502923965454, - 0.5866010785102844, - 0.5302566885948181, - 0.4752180576324463, - 0.4229864776134491, - 0.3749866783618927, - 0.3325279951095581, - 0.29676857590675354, - 0.2686838209629059, - 0.24903985857963562, - 0.23837250471115112, - 0.23697271943092346, - 0.24487867951393127, - 0.2618747651576996, - 0.2874973714351654, - 0.32104751467704773, - 0.3616101145744324, - 0.40807870030403137, - 0.45918571949005127, - 0.5135371088981628, - 0.5696502923965454, - 0.5866010785102844, - 0.5255601406097412, - 0.4659530222415924, - 0.4094057083129883, - 0.357460618019104, - 0.31153473258018494, - 0.2728807330131531, - 0.2425529956817627, - 0.22137880325317383, - 0.20993578433990479, - 0.20853599905967712, - 0.21721762418746948, - 0.2357439398765564, - 0.26360949873924255, - 0.3000542223453522, - 0.3440840542316437, - 0.39449793100357056, - 0.449920654296875, - 0.5088405013084412, - 0.5696502923965454, - 0.5866010785102844, - 0.5274657607078552, - 0.4697123169898987, - 0.41491609811782837, - 0.36457180976867676, - 0.32005274295806885, - 0.28257322311401367, - 0.25315555930137634, - 0.23260226845741272, - 0.22147399187088013, - 0.22007420659065247, - 0.22844108939170837, - 0.24634650349617004, - 0.27330198884010315, - 0.30857226252555847, - 0.35119524598121643, - 0.40000832080841064, - 0.4536799490451813, - 0.5107461214065552, - 0.5696502923965454, - 0.5866010785102844, - 0.5357670783996582, - 0.4860885441303253, - 0.4389205574989319, - 0.3955496847629547, - 0.3571590185165405, - 0.32479575276374817, - 0.29934266209602356, - 0.28149402141571045, - 0.2717367708683014, - 0.27033698558807373, - 0.2773328423500061, - 0.29253360629081726, - 0.31552451848983765, - 0.34567853808403015, - 0.3821731209754944, - 0.42401278018951416, - 0.4700561761856079, - 0.5190474987030029, - 0.5696502923965454, - 0.5866010785102844, - 0.5495645403862, - 0.5133070945739746, - 0.47881776094436646, - 0.4470372498035431, - 0.4188324809074402, - 0.39497286081314087, - 0.37610912322998047, - 0.3627558946609497, - 0.355277419090271, - 0.35387760400772095, - 0.35859471559524536, - 0.36930006742477417, - 0.38570165634155273, - 0.4073520302772522, - 0.43366068601608276, - 0.46390998363494873, - 0.4972747564315796, - 0.5328449606895447, - 0.5696502923965454, - 0.5866010785102844, - 0.5673629641532898, - 0.548418402671814, - 0.5302842259407043, - 0.5134550333023071, - 0.4983898997306824, - 0.4854997396469116, - 0.4751361310482025, - 0.4675818681716919, - 0.4630429148674011, - 0.46164312958717346, - 0.46342068910598755, - 0.4683270752429962, - 0.4762285053730011, - 0.486909419298172, - 0.5000784993171692, - 0.5153764486312866, - 0.532386064529419, - 0.5506433248519897, - 0.5696502923965454, - 0.5866010785102844, - 0.5872336030006409, - 0.5876176953315735, - 0.5877429246902466, - 0.5876057744026184, - 0.5872099995613098, - 0.5865665078163147, - 0.5856927037239075, - 0.5846125483512878, - 0.5833554267883301, - 0.58195561170578, - 0.5804513692855835, - 0.5788836479187012, - 0.5772953033447266, - 0.5757295489311218, - 0.5742291808128357, - 0.5728351473808289, - 0.5715853571891785, - 0.5705140233039856, - 0.5696502327919006, - 0.5866010189056396, - 0.6070231199264526, - 0.6266570091247559, - 0.6449670791625977, - 0.6614538431167603, - 0.6756676435470581, - 0.6872207522392273, - 0.6957980394363403, - 0.7011655569076538, - 0.7031768560409546, - 0.7017770409584045, - 0.6970043778419495, - 0.688988983631134, - 0.6779495477676392, - 0.6641871929168701, - 0.6480772495269775, - 0.6300592422485352, - 0.6106246709823608, - 0.5903035402297974, - 0.5696502327919006, - 0.5866010189056396, - 0.6245871186256409, - 0.661305844783783, - 0.6957556009292603, - 0.7269967794418335, - 0.7541770935058594, - 0.7765552401542664, - 0.7935206890106201, - 0.8046107292175293, - 0.8095228672027588, - 0.8081231117248535, - 0.8004496097564697, - 0.7867116332054138, - 0.7672840356826782, - 0.7426966428756714, - 0.7136202454566956, - 0.6808478832244873, - 0.6452735066413879, - 0.6078675389289856, - 0.5696502327919006, - 0.5866010189056396, - 0.6380221843719482, - 0.6878095269203186, - 0.7346050143241882, - 0.7771320939064026, - 0.8142307996749878, - 0.8448891639709473, - 0.868270993232727, - 0.8837383985519409, - 0.8908694386482239, - 0.8894696235656738, - 0.8795772194862366, - 0.8614619970321655, - 0.8356180191040039, - 0.8027504086494446, - 0.7637555599212646, - 0.7196972370147705, - 0.6717771887779236, - 0.621302604675293, - 0.5696502327919006, - 0.5866010189056396, - 0.6458724737167358, - 0.7032959461212158, - 0.7573051452636719, - 0.8064267635345459, - 0.8493208885192871, - 0.8848175406455994, - 0.9119484424591064, - 0.9299736022949219, - 0.9384011030197144, - 0.9370013475418091, - 0.9258123636245728, - 0.9051394462585449, - 0.8755463361740112, - 0.8378404378890991, - 0.7930501699447632, - 0.7423973679542542, - 0.6872636079788208, - 0.6291528940200806, - 0.5696502327919006, - 0.5866010189056396, - 0.6472872495651245, - 0.7060868740081787, - 0.761396050453186, - 0.8117061853408813, - 0.855644702911377, - 0.8920133113861084, - 0.9198199510574341, - 0.9383059740066528, - 0.9469672441482544, - 0.9455674290657043, - 0.9341447353363037, - 0.913010835647583, - 0.882742166519165, - 0.8441643118858337, - 0.7983295917510986, - 0.7464883327484131, - 0.6900545358657837, - 0.6305676102638245, - 0.5696502327919006, - 0.5866010189056396, - 0.6421131491661072, - 0.6958799362182617, - 0.7464346289634705, - 0.7923982739448547, - 0.832517147064209, - 0.8656968474388123, - 0.8910324573516846, - 0.9078327417373657, - 0.9156394004821777, - 0.9142396450042725, - 0.9036715030670166, - 0.8842233419418335, - 0.8564256429672241, - 0.821036696434021, - 0.7790217399597168, - 0.7315268516540527, - 0.6798475384712219, - 0.6253935694694519, - 0.5696502327919006 - ], - "z": [ - 1.480615496635437, - 1.4507821798324585, - 1.4212064743041992, - 1.3926951885223389, - 1.3660260438919067, - 1.3419264554977417, - 1.3210538625717163, - 1.3039774894714355, - 1.2911632061004639, - 1.2829606533050537, - 1.2795934677124023, - 1.2811535596847534, - 1.2875982522964478, - 1.2987518310546875, - 1.314310073852539, - 1.3338485956192017, - 1.3568344116210938, - 1.3826406002044678, - 1.4105629920959473, - 1.4398401975631714, - 1.480615496635437, - 1.448920726776123, - 1.417534351348877, - 1.3873125314712524, - 1.3590795993804932, - 1.3336058855056763, - 1.3115860223770142, - 1.2936207056045532, - 1.2802000045776367, - 1.2716898918151855, - 1.2683227062225342, - 1.2701902389526367, - 1.2772414684295654, - 1.2892839908599854, - 1.3059895038604736, - 1.3269022703170776, - 1.3514517545700073, - 1.378968358039856, - 1.4087015390396118, - 1.4398401975631714, - 1.480615496635437, - 1.4504636526107788, - 1.4205782413482666, - 1.3917744159698486, - 1.3648377656936646, - 1.3405030965805054, - 1.3194341659545898, - 1.3022058010101318, - 1.289287805557251, - 1.281032681465149, - 1.2776654958724976, - 1.279278039932251, - 1.285826563835144, - 1.2971322536468506, - 1.3128867149353027, - 1.3326603174209595, - 1.3559136390686035, - 1.3820123672485352, - 1.4102445840835571, - 1.4398401975631714, - 1.480615496635437, - 1.4552440643310547, - 1.4300085306167603, - 1.4055973291397095, - 1.3826762437820435, - 1.3618706464767456, - 1.3437479734420776, - 1.3288025856018066, - 1.3174420595169067, - 1.30997633934021, - 1.3066091537475586, - 1.3074322938919067, - 1.3124233484268188, - 1.3214459419250488, - 1.334254264831543, - 1.350498914718628, - 1.3697365522384644, - 1.3914425373077393, - 1.4150248765945435, - 1.4398401975631714, - 1.480615496635437, - 1.4627435207366943, - 1.4448031187057495, - 1.4272832870483398, - 1.4106621742248535, - 1.3953931331634521, - 1.381892442703247, - 1.3705286979675293, - 1.3616116046905518, - 1.3553845882415771, - 1.3520174026489258, - 1.3516019582748413, - 1.3541494607925415, - 1.3595905303955078, - 1.3677767515182495, - 1.378484845161438, - 1.3914225101470947, - 1.4062371253967285, - 1.4225244522094727, - 1.4398401975631714, - 1.480615496635437, - 1.4721497297286987, - 1.463358759880066, - 1.4544824361801147, - 1.4457627534866333, - 1.437437653541565, - 1.429734230041504, - 1.4228626489639282, - 1.4170103073120117, - 1.4123367071151733, - 1.408969521522522, - 1.4070005416870117, - 1.4064834117889404, - 1.4074323177337646, - 1.4098213911056519, - 1.4135854244232178, - 1.4186216592788696, - 1.4247928857803345, - 1.4319305419921875, - 1.4398401975631714, - 1.480615496635437, - 1.48244309425354, - 1.4836647510528564, - 1.484247088432312, - 1.4841742515563965, - 1.4834482669830322, - 1.4820889234542847, - 1.4801331758499146, - 1.4776344299316406, - 1.4746609926223755, - 1.4712938070297241, - 1.4676247835159302, - 1.4637539386749268, - 1.4597868919372559, - 1.4558320045471191, - 1.451996922492981, - 1.4483864307403564, - 1.445098876953125, - 1.4422240257263184, - 1.4398401975631714, - 1.480615496635437, - 1.4925082921981812, - 1.5035206079483032, - 1.5133520364761353, - 1.521734356880188, - 1.528438925743103, - 1.5332828760147095, - 1.536134123802185, - 1.5369148254394531, - 1.535603642463684, - 1.5322364568710327, - 1.5269050598144531, - 1.5197548866271973, - 1.5109809637069702, - 1.50082266330719, - 1.4895570278167725, - 1.4774912595748901, - 1.4649547338485718, - 1.4522892236709595, - 1.4398401975631714, - 1.480615496635437, - 1.5012545585632324, - 1.5207746028900146, - 1.5386431217193604, - 1.5543726682662964, - 1.5675342082977295, - 1.5777685642242432, - 1.5847969055175781, - 1.5884273052215576, - 1.5885605812072754, - 1.585193395614624, - 1.5784175395965576, - 1.5684176683425903, - 1.555466651916504, - 1.5399178266525269, - 1.5221953392028809, - 1.5027823448181152, - 1.4822087287902832, - 1.4610354900360107, - 1.4398401975631714, - 1.480615496635437, - 1.5077341794967651, - 1.5335570573806763, - 1.5573797225952148, - 1.5785523653030396, - 1.5964974164962769, - 1.6107254028320312, - 1.6208481788635254, - 1.6265896558761597, - 1.6277931928634644, - 1.624426007270813, - 1.6165798902511597, - 1.6044689416885376, - 1.588423490524292, - 1.5688811540603638, - 1.546375036239624, - 1.5215190649032593, - 1.4949911832809448, - 1.4675151109695435, - 1.4398401975631714, - 1.480615496635437, - 1.5112448930740356, - 1.540482759475708, - 1.5675314664840698, - 1.5916533470153809, - 1.6121901273727417, - 1.6285817623138428, - 1.6403812170028687, - 1.6472665071487427, - 1.6490498781204224, - 1.645682692527771, - 1.6372567415237427, - 1.6240019798278809, - 1.6062798500061035, - 1.5845738649368286, - 1.5594758987426758, - 1.5316708087921143, - 1.5019168853759766, - 1.471025824546814, - 1.4398401975631714, - 1.480615496635437, - 1.5114063024520874, - 1.5408012866973877, - 1.5679982900619507, - 1.5922555923461914, - 1.612911581993103, - 1.629402756690979, - 1.6412793397903442, - 1.6482172012329102, - 1.6500272750854492, - 1.6466600894927979, - 1.6382074356079102, - 1.6249001026153564, - 1.6071008443832397, - 1.58529531955719, - 1.5600782632827759, - 1.5321375131607056, - 1.5022352933883667, - 1.4711872339248657, - 1.4398401975631714, - 1.480615496635437, - 1.508201003074646, - 1.534477949142456, - 1.5587295293807983, - 1.5802942514419556, - 1.5985838174819946, - 1.613099455833435, - 1.6234451532363892, - 1.6293387413024902, - 1.6306192874908447, - 1.6272521018981934, - 1.6193289756774902, - 1.6070659160614014, - 1.5907975435256958, - 1.5709675550460815, - 1.5481168031692505, - 1.5228687524795532, - 1.495911955833435, - 1.4679818153381348, - 1.4398401975631714, - 1.480615496635437, - 1.5019761323928833, - 1.522197961807251, - 1.5407295227050781, - 1.5570651292800903, - 1.5707592964172363, - 1.581438422203064, - 1.5888112783432007, - 1.5926767587661743, - 1.5929292440414429, - 1.5895620584487915, - 1.5826669931411743, - 1.572432041168213, - 1.5591365098953247, - 1.5431430339813232, - 1.5248878002166748, - 1.504868745803833, - 1.4836320877075195, - 1.4617570638656616, - 1.4398401975631714, - 1.480615496635437, - 1.4934064149856567, - 1.505292296409607, - 1.515949010848999, - 1.5250858068466187, - 1.5324532985687256, - 1.5378508567810059, - 1.5411309003829956, - 1.5422042608261108, - 1.5410414934158325, - 1.5376743078231812, - 1.5321944952011108, - 1.5247517824172974, - 1.5155489444732666, - 1.5048370361328125, - 1.4929083585739136, - 1.480088233947754, - 1.4667264223098755, - 1.453187346458435, - 1.4398401975631714, - 1.480615496635437, - 1.483420491218567, - 1.4855928421020508, - 1.487073302268982, - 1.4878214597702026, - 1.4878170490264893, - 1.4870599508285522, - 1.485571026802063, - 1.4833908081054688, - 1.4805786609649658, - 1.4772114753723145, - 1.4733810424804688, - 1.4691917896270752, - 1.464758038520813, - 1.4602006673812866, - 1.455644130706787, - 1.4512125253677368, - 1.4470269680023193, - 1.4432013034820557, - 1.4398401975631714, - 1.480615496635437, - 1.4731004238128662, - 1.4652341604232788, - 1.4572314023971558, - 1.4493104219436646, - 1.4416872262954712, - 1.4345697164535522, - 1.428152084350586, - 1.4226094484329224, - 1.418092966079712, - 1.4147257804870605, - 1.4125996828079224, - 1.4117728471755981, - 1.412267804145813, - 1.4140708446502686, - 1.417133092880249, - 1.4213707447052002, - 1.4266682863235474, - 1.432881236076355, - 1.4398401975631714, - 1.480615496635437, - 1.4635646343231201, - 1.4464226961135864, - 1.4296573400497437, - 1.4137258529663086, - 1.3990628719329834, - 1.386068344116211, - 1.3750965595245361, - 1.3664470911026, - 1.3603556156158447, - 1.3569884300231934, - 1.3564373254776, - 1.358717441558838, - 1.3637664318084717, - 1.3714466094970703, - 1.381548523902893, - 1.3937965631484985, - 1.407856822013855, - 1.4233454465866089, - 1.4398401975631714, - 1.480615496635437, - 1.4558463096618652, - 1.4311968088150024, - 1.407339096069336, - 1.384924054145813, - 1.3645631074905396, - 1.3468116521835327, - 1.3321539163589478, - 1.3209896087646484, - 1.3136234283447266, - 1.3102562427520752, - 1.3109798431396484, - 1.31577467918396, - 1.3245097398757935, - 1.336946725845337, - 1.352746605873108, - 1.3714783191680908, - 1.3926308155059814, - 1.4156272411346436, - 1.4398401975631714, - 1.480615496635437, - 1.4507821798324585, - 1.4212064743041992, - 1.3926951885223389, - 1.3660260438919067, - 1.3419264554977417, - 1.3210538625717163, - 1.3039774894714355, - 1.2911632061004639, - 1.2829606533050537, - 1.2795934677124023, - 1.2811535596847534, - 1.2875982522964478, - 1.2987518310546875, - 1.314310073852539, - 1.3338485956192017, - 1.3568344116210938, - 1.3826406002044678, - 1.4105629920959473, - 1.4398401975631714 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.5251011252403259, - 0.5431395769119263, - 0.5605268478393555, - 0.576788604259491, - 0.5914813280105591, - 0.6042042374610901, - 0.6146102547645569, - 0.6224155426025391, - 0.6274072527885437, - 0.6294491291046143, - 0.6284855008125305, - 0.6245427131652832, - 0.6177282333374023, - 0.6082279682159424, - 0.5963010787963867, - 0.5822728872299194, - 0.5665260553359985, - 0.5494900941848755, - 0.531629741191864, - 0.5134322047233582, - 0.5251011252403259, - 0.5616121888160706, - 0.5969682335853577, - 0.6302047371864319, - 0.6604151129722595, - 0.6867753863334656, - 0.708566427230835, - 0.7251938581466675, - 0.7362041473388672, - 0.7412968873977661, - 0.7403333187103271, - 0.7333395481109619, - 0.720506489276886, - 0.7021840810775757, - 0.6788722276687622, - 0.6512066721916199, - 0.6199421882629395, - 0.5859315395355225, - 0.5501024127006531, - 0.5134321451187134, - 0.5251011252403259, - 0.5761196613311768, - 0.6255874633789062, - 0.6721550226211548, - 0.7145522236824036, - 0.7516225576400757, - 0.7823548316955566, - 0.8059107065200806, - 0.8216476440429688, - 0.8291364908218384, - 0.8281729221343994, - 0.818783164024353, - 0.8012232780456543, - 0.7759724855422974, - 0.7437193989753723, - 0.7053437829017639, - 0.6618924736976624, - 0.6145507097244263, - 0.5646098852157593, - 0.5134321451187134, - 0.5251011252403259, - 0.5850898623466492, - 0.6432831287384033, - 0.6980935335159302, - 0.7480260133743286, - 0.7917185425758362, - 0.827979326248169, - 0.8558192253112793, - 0.874478816986084, - 0.8834490776062012, - 0.8824855089187622, - 0.8716142177581787, - 0.851131796836853, - 0.8215969800949097, - 0.7838154435157776, - 0.7388176321983337, - 0.6878310441970825, - 0.6322464346885681, - 0.5735800862312317, - 0.5134321451187134, - 0.5251011252403259, - 0.5875507593154907, - 0.6481377482414246, - 0.705209493637085, - 0.7572091817855835, - 0.8027184009552002, - 0.8404958248138428, - 0.8695109486579895, - 0.8889723420143127, - 0.8983491063117981, - 0.8973854780197144, - 0.8861078023910522, - 0.864823579788208, - 0.8341134786605835, - 0.7948153018951416, - 0.7480007410049438, - 0.6949468851089478, - 0.6371010541915894, - 0.5760409235954285, - 0.5134321451187134, - 0.5251011252403259, - 0.5832356214523315, - 0.6396251320838928, - 0.6927316188812256, - 0.7411065101623535, - 0.7834300994873047, - 0.8185480237007141, - 0.8455023169517517, - 0.863557755947113, - 0.872221827507019, - 0.8712581992149353, - 0.8606932163238525, - 0.8408149480819702, - 0.8121656775474548, - 0.7755269408226013, - 0.7318980693817139, - 0.6824691295623779, - 0.6285884380340576, - 0.5717257857322693, - 0.5134321451187134, - 0.5251011252403259, - 0.5726120471954346, - 0.6186678409576416, - 0.6620122790336609, - 0.7014629244804382, - 0.7359437942504883, - 0.7645142078399658, - 0.7863949537277222, - 0.8009890913963318, - 0.8078986406326294, - 0.8069349527359009, - 0.7981245517730713, - 0.7817075848579407, - 0.7581318616867065, - 0.7280405759811401, - 0.6922545433044434, - 0.6517497301101685, - 0.6076311469078064, - 0.5611022710800171, - 0.5134321451187134, - 0.5251011252403259, - 0.5568313598632812, - 0.5875369310379028, - 0.6163802146911621, - 0.6425745487213135, - 0.6654053330421448, - 0.6842498183250427, - 0.6985940933227539, - 0.7080467343330383, - 0.7123498916625977, - 0.7113862633705139, - 0.7051821351051331, - 0.6939067244529724, - 0.6778675317764282, - 0.6575021743774414, - 0.6333661079406738, - 0.6061176657676697, - 0.5765001773834229, - 0.545321524143219, - 0.5134321451187134, - 0.5251011252403259, - 0.5376035571098328, - 0.5496057868003845, - 0.5607804656028748, - 0.5708227753639221, - 0.5794587135314941, - 0.586452841758728, - 0.5916142463684082, - 0.59480220079422, - 0.595929741859436, - 0.5949661731719971, - 0.5919376611709595, - 0.5869268774986267, - 0.5800704956054688, - 0.5715555548667908, - 0.5616143345832825, - 0.5505179166793823, - 0.5385690927505493, - 0.5260937809944153, - 0.5134322047233582, - 0.5251011252403259, - 0.5170122981071472, - 0.5089849829673767, - 0.5012381076812744, - 0.49398303031921387, - 0.487417608499527, - 0.4817209243774414, - 0.477048397064209, - 0.4735274910926819, - 0.47125422954559326, - 0.4702906012535095, - 0.470662921667099, - 0.4723610281944275, - 0.4753386080265045, - 0.4795144200325012, - 0.4847745895385742, - 0.49097558856010437, - 0.4979482889175415, - 0.5055025219917297, - 0.5134322047233582, - 0.5251011252403259, - 0.4972890019416809, - 0.4700763523578644, - 0.44420549273490906, - 0.4203821122646332, - 0.39925602078437805, - 0.38140353560447693, - 0.3673115372657776, - 0.3573645353317261, - 0.3518338203430176, - 0.35087019205093384, - 0.3544999957084656, - 0.3626241683959961, - 0.37502121925354004, - 0.3913528323173523, - 0.41117364168167114, - 0.4339429438114166, - 0.4590396583080292, - 0.48577919602394104, - 0.5134322047233582, - 0.5251011848449707, - 0.4805709421634674, - 0.4370962679386139, - 0.39586296677589417, - 0.35799577832221985, - 0.32452771067619324, - 0.2963715195655823, - 0.2742953896522522, - 0.2589014172554016, - 0.25060954689979553, - 0.2496459186077118, - 0.2560368776321411, - 0.2696080207824707, - 0.2899892032146454, - 0.3166244626045227, - 0.3487873375415802, - 0.38560041785240173, - 0.4260595440864563, - 0.46906113624572754, - 0.5134322047233582, - 0.5251011848449707, - 0.4686698019504547, - 0.4136185944080353, - 0.3614491820335388, - 0.3135846257209778, - 0.2713305950164795, - 0.23583954572677612, - 0.20807960629463196, - 0.18880808353424072, - 0.17855066061019897, - 0.17758703231811523, - 0.18594354391098022, - 0.20339223742485046, - 0.22945716977119446, - 0.26342734694480896, - 0.30437615513801575, - 0.3511866331100464, - 0.4025818705558777, - 0.45715999603271484, - 0.5134322047233582, - 0.5251011848449707, - 0.46287524700164795, - 0.4021875262260437, - 0.3446934223175049, - 0.2919612526893616, - 0.24542933702468872, - 0.20636704564094543, - 0.17583975195884705, - 0.1546803116798401, - 0.14346587657928467, - 0.14250224828720093, - 0.1518157720565796, - 0.17115238308906555, - 0.19998466968536377, - 0.23752614855766296, - 0.28275275230407715, - 0.33443087339401245, - 0.3911508321762085, - 0.4513654112815857, - 0.5134322047233582, - 0.5251011848449707, - 0.46381521224975586, - 0.4040418267250061, - 0.34741145372390747, - 0.29546883702278137, - 0.2496308982372284, - 0.21114787459373474, - 0.1810695230960846, - 0.1602163314819336, - 0.1491571068763733, - 0.14819347858428955, - 0.1573517918586731, - 0.1763821542263031, - 0.20476552844047546, - 0.24172770977020264, - 0.2862603962421417, - 0.33714890480041504, - 0.3930051028728485, - 0.4523053765296936, - 0.5134322047233582, - 0.5251011848449707, - 0.4713878035545349, - 0.4189804792404175, - 0.3693086802959442, - 0.3237273395061493, - 0.28347980976104736, - 0.24966394901275635, - 0.22320210933685303, - 0.20481616258621216, - 0.19500765204429626, - 0.19404402375221252, - 0.20195162296295166, - 0.21851474046707153, - 0.24328160285949707, - 0.2755765914916992, - 0.31451886892318726, - 0.3590461313724518, - 0.4079437553882599, - 0.45987799763679504, - 0.5134322047233582, - 0.5251011848449707, - 0.4847725033760071, - 0.4453847408294678, - 0.4080122709274292, - 0.37367454171180725, - 0.3433082103729248, - 0.3177415728569031, - 0.29767197370529175, - 0.28364691138267517, - 0.2760489583015442, - 0.27508533000946045, - 0.2807823419570923, - 0.29298460483551025, - 0.3113592267036438, - 0.33540499210357666, - 0.3644661009311676, - 0.39774972200393677, - 0.43434804677963257, - 0.4732626676559448, - 0.5134322047233582, - 0.5251011252403259, - 0.5025187730789185, - 0.48039326071739197, - 0.4593280851840973, - 0.43989789485931396, - 0.4226326644420624, - 0.40800338983535767, - 0.3964090347290039, - 0.3881659507751465, - 0.3834989368915558, - 0.38253530859947205, - 0.3853013515472412, - 0.3917216658592224, - 0.4016210436820984, - 0.4147294759750366, - 0.43068942427635193, - 0.44906553626060486, - 0.4693565368652344, - 0.4910089671611786, - 0.5134322047233582, - 0.5251011252403259, - 0.5227035880088806, - 0.5202123522758484, - 0.5176952481269836, - 0.5152209997177124, - 0.5128571391105652, - 0.5106680989265442, - 0.5087136626243591, - 0.5070469975471497, - 0.505713701248169, - 0.5047500729560852, - 0.5041824579238892, - 0.5040262937545776, - 0.5042858123779297, - 0.5049539804458618, - 0.5060125589370728, - 0.5074326992034912, - 0.5091755986213684, - 0.5111938118934631, - 0.5134322047233582, - 0.5251011252403259, - 0.5431395769119263, - 0.5605268478393555, - 0.5767886638641357, - 0.5914813876152039, - 0.6042042970657349, - 0.6146103143692017, - 0.6224156618118286, - 0.6274073123931885, - 0.629449188709259, - 0.6284855604171753, - 0.624542772769928, - 0.6177282333374023, - 0.6082280278205872, - 0.5963011384010315, - 0.5822729468345642, - 0.5665261149406433, - 0.5494901537895203, - 0.5316298007965088, - 0.5134322047233582 - ], - "y": [ - 0.6102220416069031, - 0.6657577753067017, - 0.7195901274681091, - 0.770250678062439, - 0.8163574934005737, - 0.8566529750823975, - 0.8900378942489624, - 0.9156017303466797, - 0.9326469898223877, - 0.9407088160514832, - 0.9395672678947449, - 0.9292535781860352, - 0.9100489616394043, - 0.882477343082428, - 0.8472907543182373, - 0.8054490089416504, - 0.7580934166908264, - 0.7065157890319824, - 0.6521230340003967, - 0.5963987112045288, - 0.6102220416069031, - 0.6545409560203552, - 0.6974624395370483, - 0.7378156781196594, - 0.7745000123977661, - 0.8065146803855896, - 0.8329865336418152, - 0.8531934022903442, - 0.866584062576294, - 0.8727933168411255, - 0.8716517686843872, - 0.8631906509399414, - 0.8476406335830688, - 0.8254258632659912, - 0.7971524000167847, - 0.763591468334198, - 0.7256584763526917, - 0.6843881011009216, - 0.6409062147140503, - 0.5963987112045288, - 0.6102220416069031, - 0.6385113000869751, - 0.6658403277397156, - 0.6914637088775635, - 0.7146824598312378, - 0.7348633408546448, - 0.7514557838439941, - 0.7640072107315063, - 0.7721751928329468, - 0.7757370471954346, - 0.7745954990386963, - 0.7687817811965942, - 0.758454442024231, - 0.7438951730728149, - 0.7255011200904846, - 0.7037739753723145, - 0.6793064475059509, - 0.6527659893035889, - 0.6248764991760254, - 0.5963987708091736, - 0.6102220416069031, - 0.6194058060646057, - 0.6281505227088928, - 0.6362176537513733, - 0.6433871388435364, - 0.6494634747505188, - 0.6542808413505554, - 0.657707929611206, - 0.6596511006355286, - 0.6600574851036072, - 0.6589159965515137, - 0.656257688999176, - 0.6521551609039307, - 0.6467202305793762, - 0.6401011943817139, - 0.632478654384613, - 0.6240603923797607, - 0.6150761842727661, - 0.605771005153656, - 0.5963987708091736, - 0.6102220416069031, - 0.599294900894165, - 0.5884773135185242, - 0.5780642628669739, - 0.5683398842811584, - 0.5595694780349731, - 0.5519921183586121, - 0.5458146333694458, - 0.5412054657936096, - 0.5382903814315796, - 0.5371488928794861, - 0.5378120541572571, - 0.5402618646621704, - 0.5444315075874329, - 0.5502071976661682, - 0.5574313998222351, - 0.5659070611000061, - 0.5754029750823975, - 0.5856601595878601, - 0.5963987708091736, - 0.6102220416069031, - 0.5803579092025757, - 0.551119863986969, - 0.5233054161071777, - 0.4976733326911926, - 0.4749227464199066, - 0.4556742310523987, - 0.44045281410217285, - 0.4296737611293793, - 0.42363107204437256, - 0.4224895238876343, - 0.42628034949302673, - 0.43490004539489746, - 0.4481135606765747, - 0.4655604362487793, - 0.4867647886276245, - 0.51114821434021, - 0.5380455255508423, - 0.5667231678962708, - 0.5963987708091736, - 0.6102221012115479, - 0.5646469593048096, - 0.5201265215873718, - 0.47787511348724365, - 0.439045250415802, - 0.40469610691070557, - 0.3757646381855011, - 0.35304000973701477, - 0.33714210987091064, - 0.32850462198257446, - 0.3273630738258362, - 0.3337486982345581, - 0.3474872410297394, - 0.3682039976119995, - 0.39533376693725586, - 0.4281366467475891, - 0.4657178521156311, - 0.5070521831512451, - 0.5510122179985046, - 0.5963987708091736, - 0.6102221012115479, - 0.553864598274231, - 0.4988558292388916, - 0.44669634103775024, - 0.3988088369369507, - 0.35649964213371277, - 0.3209227919578552, - 0.2930487394332886, - 0.2736378014087677, - 0.2632195055484772, - 0.2620779573917389, - 0.27024438977241516, - 0.2874959707260132, - 0.31336215138435364, - 0.34713733196258545, - 0.38790029287338257, - 0.4345390796661377, - 0.4857814908027649, - 0.5402297973632812, - 0.5963987708091736, - 0.6102221012115479, - 0.549179196357727, - 0.4896128177642822, - 0.4331478476524353, - 0.38132444024086, - 0.335556298494339, - 0.29709169268608093, - 0.26697999238967896, - 0.24604249000549316, - 0.23485037684440613, - 0.23370882868766785, - 0.24264907836914062, - 0.26142722368240356, - 0.28953105211257935, - 0.3261939585208893, - 0.37041589617729187, - 0.42099058628082275, - 0.4765384793281555, - 0.5355443954467773, - 0.5963987708091736, - 0.6102221012115479, - 0.5510984659194946, - 0.49339908361434937, - 0.43869781494140625, - 0.38848671317100525, - 0.34413546323776245, - 0.3068538308143616, - 0.27765870094299316, - 0.2573465406894684, - 0.24647143483161926, - 0.24532988667488098, - 0.25395312905311584, - 0.2721059322357178, - 0.29929319024086, - 0.33477315306663513, - 0.37757813930511475, - 0.4265405833721161, - 0.48032477498054504, - 0.5374637246131897, - 0.5963987708091736, - 0.6102221012115479, - 0.5594145655632019, - 0.509804368019104, - 0.4627448320388794, - 0.4195195436477661, - 0.38130757212638855, - 0.34915125370025635, - 0.32392773032188416, - 0.3063250482082367, - 0.2968234121799469, - 0.2956818640232086, - 0.30293163657188416, - 0.31837496161460876, - 0.34159064292907715, - 0.37194526195526123, - 0.4086109697818756, - 0.45058760046958923, - 0.4967300593852997, - 0.5457797646522522, - 0.5963987708091736, - 0.6102220416069031, - 0.5732261538505554, - 0.5370509028434753, - 0.5026830434799194, - 0.47105997800827026, - 0.44304442405700684, - 0.4194004535675049, - 0.4007731080055237, - 0.3876703977584839, - 0.3804498314857483, - 0.3793083131313324, - 0.38427698612213135, - 0.3952203392982483, - 0.4118397831916809, - 0.43368208408355713, - 0.46015143394470215, - 0.4905257821083069, - 0.5239765644073486, - 0.5595914125442505, - 0.5963987708091736, - 0.6102220416069031, - 0.5910366773605347, - 0.5721860527992249, - 0.5541844367980957, - 0.5375228524208069, - 0.5226557850837708, - 0.5099887847900391, - 0.49986732006073, - 0.4925675392150879, - 0.4882884919643402, - 0.4871469736099243, - 0.48917409777641296, - 0.4943145513534546, - 0.5024281740188599, - 0.5132935047149658, - 0.5266143083572388, - 0.5420272350311279, - 0.5591117143630981, - 0.577401876449585, - 0.5963987708091736, - 0.6102220416069031, - 0.610916018486023, - 0.6114024519920349, - 0.6116682291030884, - 0.6117059588432312, - 0.6115147471427917, - 0.6110997200012207, - 0.6104722023010254, - 0.6096493005752563, - 0.6086535453796387, - 0.6075119972229004, - 0.6062558889389038, - 0.60491943359375, - 0.6035390496253967, - 0.6021524667739868, - 0.6007974147796631, - 0.5995109677314758, - 0.5983281135559082, - 0.5972812175750732, - 0.5963987708091736, - 0.6102220416069031, - 0.6307098865509033, - 0.6504502892494202, - 0.6689049005508423, - 0.685570240020752, - 0.699991762638092, - 0.7117760181427002, - 0.7206016778945923, - 0.726227879524231, - 0.7285012602806091, - 0.7273597121238708, - 0.7228344678878784, - 0.7150489091873169, - 0.704215407371521, - 0.6906294822692871, - 0.6746616959571838, - 0.6567476391792297, - 0.6373760104179382, - 0.6170750856399536, - 0.5963987708091736, - 0.6102220416069031, - 0.6482734084129333, - 0.6850982308387756, - 0.7196921110153198, - 0.7511114478111267, - 0.7784991264343262, - 0.8011081218719482, - 0.818321704864502, - 0.8296703100204468, - 0.8348444700241089, - 0.8337029218673706, - 0.8262768983840942, - 0.8127689361572266, - 0.793547511100769, - 0.7691368460655212, - 0.7402029037475586, - 0.707534909248352, - 0.6720238924026489, - 0.6346386075019836, - 0.5963987708091736, - 0.6102220416069031, - 0.6617032289505005, - 0.7115916013717651, - 0.7585263848304749, - 0.8012272715568542, - 0.8385294675827026, - 0.8694154620170593, - 0.8930429220199585, - 0.9087671637535095, - 0.9161593914031982, - 0.91501784324646, - 0.905373752117157, - 0.8874901533126831, - 0.8618549108505249, - 0.8291672468185425, - 0.7903187274932861, - 0.7463691234588623, - 0.6985173225402832, - 0.6480684280395508, - 0.5963987112045288, - 0.6102220416069031, - 0.6695441007614136, - 0.7270594239234924, - 0.7811992168426514, - 0.8304867148399353, - 0.873577356338501, - 0.9092958569526672, - 0.9366679191589355, - 0.9549468159675598, - 0.9636340141296387, - 0.9624924659729004, - 0.9515534043312073, - 0.9311151504516602, - 0.9017353057861328, - 0.8642151355743408, - 0.8195781707763672, - 0.7690420150756836, - 0.7139850854873657, - 0.6559092998504639, - 0.5963987112045288, - 0.6102220416069031, - 0.6709462404251099, - 0.729825496673584, - 0.7852537631988525, - 0.835719108581543, - 0.8798449039459229, - 0.9164276123046875, - 0.9444693326950073, - 0.9632049798965454, - 0.9721238017082214, - 0.9709822535514832, - 0.9598115682601929, - 0.9389165639877319, - 0.9088670015335083, - 0.8704826831817627, - 0.8248106241226196, - 0.7730965614318848, - 0.716751217842102, - 0.6573114991188049, - 0.5963987112045288, - 0.6102220416069031, - 0.6657577753067017, - 0.7195901274681091, - 0.770250678062439, - 0.8163574934005737, - 0.8566529750823975, - 0.8900378942489624, - 0.9156017303466797, - 0.9326469898223877, - 0.9407087564468384, - 0.9395672082901001, - 0.9292535781860352, - 0.9100489616394043, - 0.8824772834777832, - 0.8472907543182373, - 0.8054490089416504, - 0.7580934166908264, - 0.7065157890319824, - 0.6521230340003967, - 0.5963987112045288 - ], - "z": [ - 1.5018589496612549, - 1.4717026948928833, - 1.4419221878051758, - 1.4133299589157104, - 1.386705756187439, - 1.3627760410308838, - 1.342193365097046, - 1.325519323348999, - 1.3132085800170898, - 1.305596947669983, - 1.3028922080993652, - 1.3051680326461792, - 1.3123623132705688, - 1.3242789506912231, - 1.3405927419662476, - 1.360858678817749, - 1.3845241069793701, - 1.4109433889389038, - 1.4393959045410156, - 1.4691054821014404, - 1.5018589496612549, - 1.4698554277420044, - 1.4382781982421875, - 1.407988429069519, - 1.3798125982284546, - 1.3545191287994385, - 1.3327980041503906, - 1.3152416944503784, - 1.3023290634155273, - 1.2944124937057495, - 1.2917077541351318, - 1.2942886352539062, - 1.3020848035812378, - 1.3148835897445679, - 1.3323358297348022, - 1.3539655208587646, - 1.3791825771331787, - 1.407299280166626, - 1.4375486373901367, - 1.4691054821014404, - 1.5018589496612549, - 1.4714521169662476, - 1.4414279460906982, - 1.4126054048538208, - 1.3857707977294922, - 1.3616560697555542, - 1.340919017791748, - 1.3241251707077026, - 1.3117327690124512, - 1.3040798902511597, - 1.301375150680542, - 1.30369234085083, - 1.310968279838562, - 1.3230044841766357, - 1.3394726514816284, - 1.3599237203598022, - 1.3837995529174805, - 1.4104490280151367, - 1.4391453266143799, - 1.4691054821014404, - 1.5018589496612549, - 1.4763195514678955, - 1.4510301351547241, - 1.4266804456710815, - 1.4039347171783447, - 1.3834134340286255, - 1.3656762838363647, - 1.3512071371078491, - 1.3404005765914917, - 1.3335516452789307, - 1.3308467864990234, - 1.3323601484298706, - 1.338050127029419, - 1.347761869430542, - 1.3612300157546997, - 1.3780876398086548, - 1.3978745937347412, - 1.4200513362884521, - 1.4440127611160278, - 1.4691054821014404, - 1.5018589496612549, - 1.4839304685592651, - 1.466044306755066, - 1.4486883878707886, - 1.4323360919952393, - 1.417433500289917, - 1.4043869972229004, - 1.3935526609420776, - 1.3852258920669556, - 1.379633903503418, - 1.3769291639328003, - 1.3771854639053345, - 1.380395770072937, - 1.3864725828170776, - 1.3952500820159912, - 1.4064890146255493, - 1.4198825359344482, - 1.435065507888794, - 1.4516236782073975, - 1.4691054821014404, - 1.5018589496612549, - 1.493459939956665, - 1.484843373298645, - 1.4762442111968994, - 1.4678970575332642, - 1.4600296020507812, - 1.452856421470642, - 1.4465731382369995, - 1.4413511753082275, - 1.437333106994629, - 1.4346283674240112, - 1.4333107471466064, - 1.4334162473678589, - 1.4349420070648193, - 1.437846302986145, - 1.4420499801635742, - 1.4474384784698486, - 1.453864574432373, - 1.461153268814087, - 1.4691054821014404, - 1.5018589496612549, - 1.503875494003296, - 1.5053902864456177, - 1.506361961364746, - 1.5067641735076904, - 1.5065858364105225, - 1.5058319568634033, - 1.5045229196548462, - 1.5026944875717163, - 1.500396490097046, - 1.4976917505264282, - 1.4946539402008057, - 1.491365909576416, - 1.487917423248291, - 1.4844025373458862, - 1.4809170961380005, - 1.4775562286376953, - 1.4744114875793457, - 1.4715687036514282, - 1.4691054821014404, - 1.5018589496612549, - 1.5140482187271118, - 1.5254582166671753, - 1.5357779264450073, - 1.5447255373001099, - 1.5520572662353516, - 1.5575729608535767, - 1.561122179031372, - 1.5626081228256226, - 1.5619902610778809, - 1.5592855215072632, - 1.554567575454712, - 1.547965168952942, - 1.5396584272384644, - 1.5298738479614258, - 1.51887845993042, - 1.506972074508667, - 1.4944794178009033, - 1.4817414283752441, - 1.4691054821014404, - 1.5018589496612549, - 1.5228759050369263, - 1.5428727865219116, - 1.5613042116165161, - 1.577667474746704, - 1.5915160179138184, - 1.6024724245071411, - 1.6102374792099, - 1.6145997047424316, - 1.615439772605896, - 1.6127350330352783, - 1.606559157371521, - 1.5970805883407593, - 1.5845578908920288, - 1.5693327188491821, - 1.5518202781677246, - 1.5324983596801758, - 1.5118939876556396, - 1.4905691146850586, - 1.4691054821014404, - 1.5018589496612549, - 1.5294017791748047, - 1.5557466745376587, - 1.5801748037338257, - 1.602020025253296, - 1.620686411857605, - 1.6356648206710815, - 1.6465466022491455, - 1.6530349254608154, - 1.654952883720398, - 1.6522481441497803, - 1.6449944972991943, - 1.6333897113800049, - 1.6177504062652588, - 1.5985031127929688, - 1.576172947883606, - 1.5513689517974854, - 1.5247678756713867, - 1.497094988822937, - 1.4691054821014404, - 1.5018589496612549, - 1.5329188108444214, - 1.5626847743988037, - 1.590344786643982, - 1.6151444911956787, - 1.6364073753356934, - 1.6535532474517822, - 1.6661148071289062, - 1.6737489700317383, - 1.6762478351593018, - 1.673543095588684, - 1.6657085418701172, - 1.652957797050476, - 1.6356388330459595, - 1.6142239570617676, - 1.5892974138259888, - 1.5615389347076416, - 1.5317059755325317, - 1.5006120204925537, - 1.4691054821014404, - 1.5018589496612549, - 1.5330458879470825, - 1.5629353523254395, - 1.590712070465088, - 1.6156184673309326, - 1.6369750499725342, - 1.6541993618011475, - 1.6668214797973633, - 1.674497127532959, - 1.6770168542861938, - 1.6743121147155762, - 1.6664565801620483, - 1.653664469718933, - 1.6362848281860352, - 1.614791750907898, - 1.5897713899612427, - 1.5619062185287476, - 1.5319565534591675, - 1.5007390975952148, - 1.4691054821014404, - 1.5018589496612549, - 1.5297690629959106, - 1.5564711093902588, - 1.5812368392944336, - 1.6033906936645508, - 1.6223281621932983, - 1.6375329494476318, - 1.648590087890625, - 1.655198097229004, - 1.6571767330169678, - 1.65447199344635, - 1.6471575498580933, - 1.6354331970214844, - 1.6196184158325195, - 1.600144863128662, - 1.5775434970855713, - 1.5524309873580933, - 1.5254923105239868, - 1.497462272644043, - 1.4691054821014404, - 1.5018589496612549, - 1.523443579673767, - 1.5439927577972412, - 1.56294584274292, - 1.5797860622406006, - 1.5940537452697754, - 1.6053600311279297, - 1.6133962869644165, - 1.6179434061050415, - 1.6188772916793823, - 1.6161725521087646, - 1.6099028587341309, - 1.6002393960952759, - 1.587445616722107, - 1.5718704462051392, - 1.553938865661621, - 1.5341401100158691, - 1.5130139589309692, - 1.4911367893218994, - 1.4691054821014404, - 1.5018589496612549, - 1.5147548913955688, - 1.5268523693084717, - 1.5378212928771973, - 1.5473626852035522, - 1.5552160739898682, - 1.5611672401428223, - 1.565053939819336, - 1.5667701959609985, - 1.566269040107727, - 1.5635643005371094, - 1.558729648590088, - 1.5518970489501953, - 1.5432528257369995, - 1.5330326557159424, - 1.5215156078338623, - 1.5090155601501465, - 1.4958735704421997, - 1.4824481010437012, - 1.4691054821014404, - 1.5018589496612549, - 1.504644513130188, - 1.506907343864441, - 1.508585810661316, - 1.509634017944336, - 1.5100234746932983, - 1.5097434520721436, - 1.5088016986846924, - 1.5072238445281982, - 1.505052924156189, - 1.5023481845855713, - 1.4991832971572876, - 1.4956448078155518, - 1.4918290376663208, - 1.487840175628662, - 1.483786940574646, - 1.4797799587249756, - 1.475928544998169, - 1.4723377227783203, - 1.4691054821014404, - 1.5018589496612549, - 1.4942080974578857, - 1.4863191843032837, - 1.478407382965088, - 1.4706885814666748, - 1.4633734226226807, - 1.4566612243652344, - 1.4507352113723755, - 1.4457570314407349, - 1.4418624639511108, - 1.4391577243804932, - 1.4377164840698242, - 1.4375783205032349, - 1.4387468099594116, - 1.4411900043487549, - 1.4448415040969849, - 1.4496015310287476, - 1.4553402662277222, - 1.461901307106018, - 1.4691054821014404, - 1.5018589496612549, - 1.4845764636993408, - 1.4673187732696533, - 1.4505563974380493, - 1.4347467422485352, - 1.4203211069107056, - 1.4076728820800781, - 1.3971469402313232, - 1.3890306949615479, - 1.3835453987121582, - 1.3808406591415405, - 1.3809902667999268, - 1.3839900493621826, - 1.3897583484649658, - 1.3981378078460693, - 1.4088996648788452, - 1.421750545501709, - 1.4363399744033813, - 1.4522696733474731, - 1.4691054821014404, - 1.5018589496612549, - 1.4767935276031494, - 1.451965093612671, - 1.4280509948730469, - 1.4057034254074097, - 1.385532021522522, - 1.3680869340896606, - 1.353844165802002, - 1.3431921005249023, - 1.3364213705062866, - 1.333716630935669, - 1.3351515531539917, - 1.3406872749328613, - 1.350172519683838, - 1.3633486032485962, - 1.3798563480377197, - 1.3992451429367065, - 1.420986294746399, - 1.4444867372512817, - 1.4691054821014404, - 1.5018589496612549, - 1.4717026948928833, - 1.4419221878051758, - 1.4133299589157104, - 1.386705756187439, - 1.3627760410308838, - 1.342193365097046, - 1.325519323348999, - 1.3132085800170898, - 1.305596947669983, - 1.3028922080993652, - 1.3051680326461792, - 1.3123623132705688, - 1.3242789506912231, - 1.340592622756958, - 1.360858678817749, - 1.3845241069793701, - 1.4109433889389038, - 1.4393959045410156, - 1.4691054821014404 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.5365083813667297, - 0.5544865131378174, - 0.5718428492546082, - 0.5881038308143616, - 0.6028259992599487, - 0.615607738494873, - 0.6261004209518433, - 0.634017825126648, - 0.6391439437866211, - 0.6413389444351196, - 0.6405430436134338, - 0.6367778778076172, - 0.6301462054252625, - 0.6208288073539734, - 0.6090799570083618, - 0.595220148563385, - 0.579627275466919, - 0.5627268552780151, - 0.5449797511100769, - 0.5268701910972595, - 0.5365083813667297, - 0.5729783773422241, - 0.6083221435546875, - 0.6415755748748779, - 0.6718316078186035, - 0.6982648372650146, - 0.7201544046401978, - 0.7369031310081482, - 0.7480540871620178, - 0.7533032298088074, - 0.7525073289871216, - 0.7456880807876587, - 0.7330315113067627, - 0.7148828506469727, - 0.6917371153831482, - 0.664225697517395, - 0.6330990195274353, - 0.5992062091827393, - 0.5634716749191284, - 0.5268701910972595, - 0.5365083813667297, - 0.5875110626220703, - 0.636991024017334, - 0.6835986971855164, - 0.7260626554489136, - 0.7632246017456055, - 0.794070839881897, - 0.8177601099014282, - 0.8336460590362549, - 0.8412953019142151, - 0.8404994010925293, - 0.831279993057251, - 0.813888430595398, - 0.7887992858886719, - 0.756696879863739, - 0.7184567451477051, - 0.6751221418380737, - 0.6278750896453857, - 0.5780043005943298, - 0.5268701910972595, - 0.5365083813667297, - 0.5965096354484558, - 0.6547428369522095, - 0.709619402885437, - 0.759642481803894, - 0.8034476041793823, - 0.8398398756980896, - 0.8678265810012817, - 0.8866444230079651, - 0.8957799077033997, - 0.8949840068817139, - 0.8842783570289612, - 0.863955020904541, - 0.8345682621002197, - 0.7969198226928711, - 0.7520365715026855, - 0.7011428475379944, - 0.6456268429756165, - 0.5870028734207153, - 0.5268701910972595, - 0.5365083813667297, - 0.5989990830421448, - 0.6596537232398987, - 0.7168178558349609, - 0.7689321637153625, - 0.8145750761032104, - 0.852501630783081, - 0.8816772103309631, - 0.90130615234375, - 0.9108527898788452, - 0.9100568294525146, - 0.8989400863647461, - 0.8778055906295776, - 0.8472300171852112, - 0.8080472946166992, - 0.7613263130187988, - 0.7083413004875183, - 0.6505377292633057, - 0.5894923210144043, - 0.5268701910972595, - 0.5365083813667297, - 0.5947095155715942, - 0.6511916518211365, - 0.7044140696525574, - 0.7529249787330627, - 0.7954011559486389, - 0.8306839466094971, - 0.8578109741210938, - 0.8760423064231873, - 0.8848804831504822, - 0.8840845823287964, - 0.8736762404441833, - 0.853939414024353, - 0.825412392616272, - 0.7888734340667725, - 0.7453190684318542, - 0.6959375143051147, - 0.6420756578445435, - 0.5852027535438538, - 0.5268701910972595, - 0.5365083813667297, - 0.5841058492660522, - 0.6302735805511475, - 0.6737521290779114, - 0.7133556008338928, - 0.7480037212371826, - 0.7767512798309326, - 0.7988142371177673, - 0.8135906457901001, - 0.8206775784492493, - 0.8198816776275635, - 0.8112245798110962, - 0.7949426174163818, - 0.7714796662330627, - 0.7414759397506714, - 0.7057497501373291, - 0.6652755737304688, - 0.6211575865745544, - 0.5745990872383118, - 0.5268701910972595, - 0.5365083813667297, - 0.5683371424674988, - 0.5991662740707397, - 0.6281547546386719, - 0.6545119285583496, - 0.6775188446044922, - 0.6965478658676147, - 0.7110800743103027, - 0.7207188606262207, - 0.7252014875411987, - 0.7244055271148682, - 0.7183528542518616, - 0.7072084546089172, - 0.6912763118743896, - 0.670991063117981, - 0.6469060778617859, - 0.6196781992912292, - 0.5900502800941467, - 0.5588303804397583, - 0.5268701910972595, - 0.5365083813667297, - 0.5491122007369995, - 0.5612407326698303, - 0.5725631713867188, - 0.5827707052230835, - 0.5915848016738892, - 0.5987651944160461, - 0.604115903377533, - 0.6074910163879395, - 0.6087983846664429, - 0.6080024838447571, - 0.6051249504089355, - 0.6002442836761475, - 0.5934935808181763, - 0.5850570797920227, - 0.575164794921875, - 0.5640866160392761, - 0.5521247386932373, - 0.539605438709259, - 0.5268701910972595, - 0.5365083813667297, - 0.5285142660140991, - 0.5206067562103271, - 0.5130015015602112, - 0.5059060454368591, - 0.4995138943195343, - 0.4939993917942047, - 0.48951297998428345, - 0.486176997423172, - 0.48408249020576477, - 0.483286589384079, - 0.4838109612464905, - 0.48564133048057556, - 0.48872777819633484, - 0.49298611283302307, - 0.498300164937973, - 0.5045250058174133, - 0.5114907622337341, - 0.5190075039863586, - 0.5268701910972595, - 0.5365083813667297, - 0.508775532245636, - 0.4816676676273346, - 0.45592427253723145, - 0.4322475492954254, - 0.41128337383270264, - 0.39360350370407104, - 0.3796902894973755, - 0.3699231743812561, - 0.36456865072250366, - 0.36377274990081787, - 0.3675571382045746, - 0.37581866979599, - 0.38833189010620117, - 0.404755562543869, - 0.4246416687965393, - 0.4474477171897888, - 0.47255170345306396, - 0.4992687702178955, - 0.5268701910972595, - 0.5365083813667297, - 0.4920349419116974, - 0.44864314794540405, - 0.4075166583061218, - 0.36977720260620117, - 0.3364543914794922, - 0.30845701694488525, - 0.28654882311820984, - 0.2713274359703064, - 0.2632080316543579, - 0.2624121308326721, - 0.2689613699913025, - 0.28267720341682434, - 0.3031854033470154, - 0.3299265503883362, - 0.3621712923049927, - 0.3990401029586792, - 0.43952715396881104, - 0.4825281798839569, - 0.5268701910972595, - 0.5365083813667297, - 0.4801066219806671, - 0.42511188983917236, - 0.3730243146419525, - 0.32526469230651855, - 0.2831358015537262, - 0.24778681993484497, - 0.2201818823814392, - 0.20107412338256836, - 0.19098466634750366, - 0.19018876552581787, - 0.19870805740356445, - 0.2163102626800537, - 0.2425151765346527, - 0.2766079902648926, - 0.31765875220298767, - 0.3645477592945099, - 0.41599589586257935, - 0.47059985995292664, - 0.5268701910972595, - 0.5365083813667297, - 0.4742831885814667, - 0.4136238694190979, - 0.35618507862091064, - 0.30353355407714844, - 0.2571055293083191, - 0.2181674838066101, - 0.18778136372566223, - 0.16677629947662354, - 0.15572506189346313, - 0.15492916107177734, - 0.16441023349761963, - 0.18390974402427673, - 0.21289584040641785, - 0.25057774782180786, - 0.29592761397361755, - 0.347708523273468, - 0.4045078754425049, - 0.4647764265537262, - 0.5268701910972595, - 0.5365083813667297, - 0.4751957058906555, - 0.41542401909828186, - 0.3588237166404724, - 0.3069387674331665, - 0.2611843943595886, - 0.22280868887901306, - 0.19285845756530762, - 0.1721506416797638, - 0.16125011444091797, - 0.16045421361923218, - 0.1697845757007599, - 0.18898683786392212, - 0.2175370752811432, - 0.2546565532684326, - 0.29933279752731323, - 0.3503471612930298, - 0.40630802512168884, - 0.46568894386291504, - 0.5268701910972595, - 0.5365083813667297, - 0.4827452600002289, - 0.4303171932697296, - 0.3806542754173279, - 0.33511120080947876, - 0.2949303090572357, - 0.26120755076408386, - 0.2348628044128418, - 0.2166147530078888, - 0.20696109533309937, - 0.20616519451141357, - 0.2142486870288849, - 0.2309911847114563, - 0.2559359073638916, - 0.2884024679660797, - 0.32750529050827026, - 0.37217772006988525, - 0.4212011992931366, - 0.4732385277748108, - 0.5268701910972595, - 0.5365083813667297, - 0.49611377716064453, - 0.45668959617614746, - 0.41931116580963135, - 0.3849981427192688, - 0.3546864986419678, - 0.3292030096054077, - 0.3092428147792816, - 0.2953503429889679, - 0.28790462017059326, - 0.28710871934890747, - 0.2929843068122864, - 0.3053711950778961, - 0.32393139600753784, - 0.34815868735313416, - 0.3773922324180603, - 0.4108346104621887, - 0.44757360219955444, - 0.48660704493522644, - 0.5268701910972595, - 0.5365083813667297, - 0.513852596282959, - 0.49168330430984497, - 0.4706052839756012, - 0.4511934518814087, - 0.4339773952960968, - 0.4194266200065613, - 0.4079380929470062, - 0.39982515573501587, - 0.3953091502189636, - 0.39451321959495544, - 0.39745911955833435, - 0.4040664732456207, - 0.4141550064086914, - 0.4274495840072632, - 0.4435875713825226, - 0.46212872862815857, - 0.48256731033325195, - 0.5043458342552185, - 0.5268701910972595, - 0.5365083813667297, - 0.5340393781661987, - 0.5315062403678894, - 0.5289780497550964, - 0.5265238881111145, - 0.5242105722427368, - 0.5221012830734253, - 0.5202535390853882, - 0.5187177062034607, - 0.5175357460975647, - 0.5167398452758789, - 0.5163516998291016, - 0.5163819193840027, - 0.5168297290802002, - 0.5176828503608704, - 0.518917977809906, - 0.5205015540122986, - 0.5223902463912964, - 0.5245326161384583, - 0.5268701910972595, - 0.5365083813667297, - 0.5544865131378174, - 0.5718428492546082, - 0.5881038904190063, - 0.6028260588645935, - 0.6156077980995178, - 0.626100480556488, - 0.6340178847312927, - 0.6391440033912659, - 0.6413390636444092, - 0.6405431032180786, - 0.636777937412262, - 0.6301462650299072, - 0.6208288669586182, - 0.6090800166130066, - 0.595220148563385, - 0.5796273350715637, - 0.5627268552780151, - 0.5449798107147217, - 0.5268701910972595 - ], - "y": [ - 0.6299365162849426, - 0.6854422688484192, - 0.7392771244049072, - 0.7899727821350098, - 0.836146354675293, - 0.8765382766723633, - 0.9100468158721924, - 0.9357578754425049, - 0.9529702663421631, - 0.9612144231796265, - 0.9602653980255127, - 0.9501491189002991, - 0.9311414957046509, - 0.9037611484527588, - 0.8687548041343689, - 0.8270773887634277, - 0.7798656821250916, - 0.728407621383667, - 0.674106776714325, - 0.6184443235397339, - 0.6299365162849426, - 0.6742216348648071, - 0.7171419858932495, - 0.7575268149375916, - 0.794274628162384, - 0.8263829946517944, - 0.8529760241508484, - 0.873328447341919, - 0.8868849277496338, - 0.8932759165763855, - 0.8923268914222717, - 0.8840638399124146, - 0.8687120676040649, - 0.8466904163360596, - 0.8185995221138, - 0.7852056622505188, - 0.7474197149276733, - 0.7062724232673645, - 0.6628861427307129, - 0.6184443235397339, - 0.6299365758895874, - 0.6581935286521912, - 0.6855229735374451, - 0.7111794352531433, - 0.734463095664978, - 0.7547387480735779, - 0.7714534401893616, - 0.7841511368751526, - 0.7924855351448059, - 0.7962293028831482, - 0.7952802777290344, - 0.7896643877029419, - 0.7795347571372986, - 0.765167772769928, - 0.7469552755355835, - 0.7253941297531128, - 0.7010723352432251, - 0.6746534705162048, - 0.6468580365180969, - 0.6184443235397339, - 0.6299365758895874, - 0.6390948295593262, - 0.6478465795516968, - 0.655953049659729, - 0.6631931066513062, - 0.6693693399429321, - 0.6743131279945374, - 0.6778897643089294, - 0.6800015568733215, - 0.6805909872055054, - 0.6796419620513916, - 0.6771804094314575, - 0.6732733845710754, - 0.6680275201797485, - 0.6615858674049377, - 0.6541242003440857, - 0.6458459496498108, - 0.6369770765304565, - 0.6277593970298767, - 0.6184443235397339, - 0.6299365758895874, - 0.6189952492713928, - 0.6081956624984741, - 0.5978323817253113, - 0.5881880521774292, - 0.5795257687568665, - 0.5720818638801575, - 0.5660592913627625, - 0.5616224408149719, - 0.5588922500610352, - 0.5579432249069214, - 0.5588012337684631, - 0.5614429712295532, - 0.5657961964607239, - 0.5717422962188721, - 0.579119086265564, - 0.5877252817153931, - 0.5973260998725891, - 0.6076597571372986, - 0.6184443235397339, - 0.6299365758895874, - 0.6000728011131287, - 0.5708669424057007, - 0.5431156158447266, - 0.517575740814209, - 0.49494409561157227, - 0.47583791613578796, - 0.4607784152030945, - 0.4501763582229614, - 0.44432100653648376, - 0.44337198138237, - 0.4473552107810974, - 0.4561620354652405, - 0.46955227851867676, - 0.4871605932712555, - 0.5085067749023438, - 0.5330085158348083, - 0.5599974393844604, - 0.5887373685836792, - 0.6184443235397339, - 0.6299365758895874, - 0.5843781232833862, - 0.5399056077003479, - 0.49773216247558594, - 0.45900818705558777, - 0.4247899651527405, - 0.3960108757019043, - 0.37345588207244873, - 0.3577403128147125, - 0.3492928147315979, - 0.34834378957748413, - 0.3549191653728485, - 0.3688395023345947, - 0.3897252082824707, - 0.4170064926147461, - 0.44993919134140015, - 0.4876250624656677, - 0.5290360450744629, - 0.573042631149292, - 0.6184443831443787, - 0.6299365758895874, - 0.573611855506897, - 0.5186667442321777, - 0.46660012006759644, - 0.41883206367492676, - 0.37666571140289307, - 0.3412511944770813, - 0.31355446577072144, - 0.29433107376098633, - 0.28410547971725464, - 0.28315645456314087, - 0.2915099263191223, - 0.30893808603286743, - 0.3349654972553253, - 0.3688822090625763, - 0.4097630977630615, - 0.4564930200576782, - 0.5077972412109375, - 0.5622763633728027, - 0.6184443831443787, - 0.6299365758895874, - 0.5689407587051392, - 0.5094519853591919, - 0.453093022108078, - 0.4014011025428772, - 0.35578635334968567, - 0.31749293208122253, - 0.2875654101371765, - 0.26682013273239136, - 0.255823016166687, - 0.25487399101257324, - 0.26399898529052734, - 0.2829490303993225, - 0.31120726466178894, - 0.3480028212070465, - 0.39233213663101196, - 0.4429859220981598, - 0.4985824525356293, - 0.5576052665710449, - 0.6184443831443787, - 0.6299365758895874, - 0.5708709955215454, - 0.5132598876953125, - 0.4586746096611023, - 0.4086042046546936, - 0.3644144535064697, - 0.327310711145401, - 0.2983050048351288, - 0.2781886160373688, - 0.267510324716568, - 0.2665612995624542, - 0.27536746859550476, - 0.2936886250972748, - 0.321025013923645, - 0.35663092136383057, - 0.399535208940506, - 0.4485675096511841, - 0.5023903250694275, - 0.5595355033874512, - 0.6184443831443787, - 0.6299365758895874, - 0.5791934728622437, - 0.5296777486801147, - 0.4827400743961334, - 0.43966078758239746, - 0.40161505341529846, - 0.3696405589580536, - 0.34460946917533875, - 0.3272046744823456, - 0.3179008960723877, - 0.3169518709182739, - 0.32438352704048157, - 0.33999308943748474, - 0.3633548617362976, - 0.3938315510749817, - 0.4305918216705322, - 0.4726329743862152, - 0.5188081860542297, - 0.5678579807281494, - 0.6184443831443787, - 0.6299365758895874, - 0.5930061936378479, - 0.556926429271698, - 0.522681474685669, - 0.4912054240703583, - 0.4633568525314331, - 0.4398953914642334, - 0.4214610457420349, - 0.40855658054351807, - 0.4015340805053711, - 0.4005850553512573, - 0.40573543310165405, - 0.4168446660041809, - 0.4336097836494446, - 0.4555733799934387, - 0.48213645815849304, - 0.5125744342803955, - 0.5460569262504578, - 0.5816707015037537, - 0.6184443235397339, - 0.6299365758895874, - 0.6108124256134033, - 0.5920531749725342, - 0.5741705894470215, - 0.5576524138450623, - 0.5429491996765137, - 0.5304620862007141, - 0.5205315947532654, - 0.5134286284446716, - 0.5093469619750977, - 0.5083979368209839, - 0.5106074213981628, - 0.5159152150154114, - 0.5241764187812805, - 0.5351657271385193, - 0.548583447933197, - 0.5640634894371033, - 0.581183671951294, - 0.5994769334793091, - 0.6184443235397339, - 0.6299365758895874, - 0.6306825876235962, - 0.6312515139579773, - 0.6316278576850891, - 0.6318012475967407, - 0.6317671537399292, - 0.6315262913703918, - 0.6310853958129883, - 0.6304563879966736, - 0.6296564340591431, - 0.6287074089050293, - 0.6276351809501648, - 0.6264690160751343, - 0.625240683555603, - 0.6239836812019348, - 0.6227322816848755, - 0.6215207576751709, - 0.6203819513320923, - 0.619347095489502, - 0.6184443235397339, - 0.6299365758895874, - 0.650463342666626, - 0.6702735424041748, - 0.6888266801834106, - 0.7056166529655457, - 0.7201855778694153, - 0.7321360111236572, - 0.7411419749259949, - 0.7469577789306641, - 0.7494248151779175, - 0.7484757900238037, - 0.7441366314888, - 0.7365255951881409, - 0.7258503437042236, - 0.7124021649360657, - 0.6965476870536804, - 0.6787195205688477, - 0.6594039797782898, - 0.6391279101371765, - 0.6184443235397339, - 0.6299365758895874, - 0.6680112481117249, - 0.7048906683921814, - 0.7395687699317932, - 0.7710996866226196, - 0.7986232042312622, - 0.8213887214660645, - 0.8387752175331116, - 0.850308358669281, - 0.855673611164093, - 0.8547245860099792, - 0.847487211227417, - 0.8341588377952576, - 0.8151031136512756, - 0.7908397912979126, - 0.7620307207107544, - 0.729461669921875, - 0.6940211057662964, - 0.6566758155822754, - 0.6184443235397339, - 0.6299365162849426, - 0.6814247369766235, - 0.7313516736030579, - 0.7783555388450623, - 0.8211542367935181, - 0.8585802316665649, - 0.8896126747131348, - 0.913405179977417, - 0.9293085336685181, - 0.936889111995697, - 0.9359400868415833, - 0.926487386226654, - 0.908788800239563, - 0.8833270072937012, - 0.8507967591285706, - 0.8120852708816528, - 0.768248438835144, - 0.7204821109771729, - 0.6700892448425293, - 0.6184443235397339, - 0.6299365162849426, - 0.689250111579895, - 0.7467890381813049, - 0.8009837865829468, - 0.8503560423851013, - 0.8935590982437134, - 0.9294145107269287, - 0.9569442272186279, - 0.9753972291946411, - 0.9842702150344849, - 0.9833211898803711, - 0.9725760817527771, - 0.9523278474807739, - 0.9231288433074951, - 0.8857756853103638, - 0.8412871360778809, - 0.7908766269683838, - 0.7359194755554199, - 0.6779146194458008, - 0.6184443235397339, - 0.6299365162849426, - 0.6906394958496094, - 0.7495298385620117, - 0.8050012588500977, - 0.8555406332015991, - 0.8997694253921509, - 0.9364811182022095, - 0.9646743535995483, - 0.9835799932479858, - 0.9926825165748596, - 0.9917334914207458, - 0.9807589054107666, - 0.9600579738616943, - 0.9301954507827759, - 0.8919860124588013, - 0.8464717268943787, - 0.7948941588401794, - 0.7386603355407715, - 0.6793040037155151, - 0.6184443235397339, - 0.6299365162849426, - 0.6854422092437744, - 0.7392771244049072, - 0.7899727821350098, - 0.8361462950706482, - 0.8765382170677185, - 0.9100467562675476, - 0.9357578754425049, - 0.9529702663421631, - 0.9612143635749817, - 0.9602653384208679, - 0.9501490592956543, - 0.9311414957046509, - 0.9037611484527588, - 0.8687547445297241, - 0.8270773887634277, - 0.7798656821250916, - 0.728407621383667, - 0.674106776714325, - 0.6184443235397339 - ], - "z": [ - 1.5192145109176636, - 1.4887937307357788, - 1.4588360786437988, - 1.4301588535308838, - 1.403544306755066, - 1.37971830368042, - 1.3593308925628662, - 1.3429380655288696, - 1.3309870958328247, - 1.3238039016723633, - 1.3215844631195068, - 1.3243892192840576, - 1.3321417570114136, - 1.3446305990219116, - 1.3615150451660156, - 1.382334589958191, - 1.4065213203430176, - 1.433415412902832, - 1.4622832536697388, - 1.4923375844955444, - 1.5192145109176636, - 1.4869601726531982, - 1.4552191495895386, - 1.4248571395874023, - 1.3967022895812988, - 1.3715227842330933, - 1.3500053882598877, - 1.3327369689941406, - 1.3201885223388672, - 1.3127025365829468, - 1.3104830980300903, - 1.3135906457901, - 1.321940541267395, - 1.335305094718933, - 1.353319525718689, - 1.3754925727844238, - 1.4012194871902466, - 1.4297983646392822, - 1.4604498147964478, - 1.4923375844955444, - 1.5192145109176636, - 1.4886021614074707, - 1.4584581851959229, - 1.4296048879623413, - 1.4028294086456299, - 1.3788620233535767, - 1.3583564758300781, - 1.341872215270996, - 1.3298587799072266, - 1.3226439952850342, - 1.3204245567321777, - 1.3232609033584595, - 1.33107590675354, - 1.3436561822891235, - 1.3606587648391724, - 1.3816196918487549, - 1.405967354774475, - 1.4330374002456665, - 1.4620916843414307, - 1.4923375844955444, - 1.5192145109176636, - 1.4935414791107178, - 1.4682022333145142, - 1.4438878297805786, - 1.4212615489959717, - 1.4009406566619873, - 1.383479356765747, - 1.369354009628296, - 1.358949899673462, - 1.3525508642196655, - 1.350331425666809, - 1.3523520231246948, - 1.3585577011108398, - 1.3687790632247925, - 1.382737398147583, - 1.4000518321990967, - 1.4202501773834229, - 1.4427814483642578, - 1.4670311212539673, - 1.4923375844955444, - 1.5192145109176636, - 1.5012431144714355, - 1.4833953380584717, - 1.4661580324172974, - 1.4500013589859009, - 1.435366153717041, - 1.4226514101028442, - 1.4122042655944824, - 1.4043093919754028, - 1.3991823196411133, - 1.3969628810882568, - 1.3977115154266357, - 1.4014078378677368, - 1.4079511165618896, - 1.4171627759933472, - 1.4287916421890259, - 1.4425203800201416, - 1.4579745531082153, - 1.4747326374053955, - 1.4923375844955444, - 1.5192145109176636, - 1.5108723640441895, - 1.5023910999298096, - 1.494002103805542, - 1.4859343767166138, - 1.478407859802246, - 1.471627950668335, - 1.465779423713684, - 1.461021900177002, - 1.4574850797653198, - 1.4552656412124634, - 1.4544239044189453, - 1.4549829959869385, - 1.4569275379180908, - 1.4602046012878418, - 1.4647246599197388, - 1.4703645706176758, - 1.4769703149795532, - 1.4843618869781494, - 1.4923375844955444, - 1.5192145109176636, - 1.521385669708252, - 1.523131012916565, - 1.5244029760360718, - 1.5251667499542236, - 1.5254017114639282, - 1.5251013040542603, - 1.5242737531661987, - 1.5229415893554688, - 1.5211412906646729, - 1.5189217329025269, - 1.5163437128067017, - 1.5134773254394531, - 1.5104010105133057, - 1.507198452949524, - 1.5039570331573486, - 1.500765323638916, - 1.4977103471755981, - 1.494875192642212, - 1.4923375844955444, - 1.5192145109176636, - 1.5316438674926758, - 1.543367624282837, - 1.5540659427642822, - 1.563447117805481, - 1.571255087852478, - 1.5772770643234253, - 1.5813485383987427, - 1.5833587646484375, - 1.5832525491714478, - 1.5810331106185913, - 1.5767607688903809, - 1.5705522298812866, - 1.5625767707824707, - 1.5530518293380737, - 1.542237401008606, - 1.530428409576416, - 1.5179469585418701, - 1.5051335096359253, - 1.4923375844955444, - 1.5192145109176636, - 1.5405353307724, - 1.5609079599380493, - 1.5797767639160156, - 1.596627116203308, - 1.6109991073608398, - 1.622501015663147, - 1.6308189630508423, - 1.635725975036621, - 1.637088418006897, - 1.634868860244751, - 1.629128098487854, - 1.6200225353240967, - 1.6078007221221924, - 1.5927958488464355, - 1.575417399406433, - 1.5561392307281494, - 1.5354872941970825, - 1.5140249729156494, - 1.4923375844955444, - 1.5192145109176636, - 1.5470964908599854, - 1.5738513469696045, - 1.5987492799758911, - 1.6211111545562744, - 1.640326976776123, - 1.6558725833892822, - 1.6673239469528198, - 1.6743687391281128, - 1.6768147945404053, - 1.6745952367782593, - 1.6677708625793457, - 1.6565276384353638, - 1.6411722898483276, - 1.6221237182617188, - 1.5999014377593994, - 1.5751116275787354, - 1.5484305620193481, - 1.5205860137939453, - 1.4923375844955444, - 1.5192145109176636, - 1.5506163835525513, - 1.5807950496673584, - 1.6089273691177368, - 1.6342459917068481, - 1.6560603380203247, - 1.673775315284729, - 1.6869077682495117, - 1.6950993537902832, - 1.6981266736984253, - 1.6959071159362793, - 1.6885013580322266, - 1.6761113405227661, - 1.6590750217437744, - 1.6378570795059204, - 1.6130362749099731, - 1.585289716720581, - 1.555374264717102, - 1.5241059064865112, - 1.4923375844955444, - 1.5192145109176636, - 1.5507134199142456, - 1.5809866189956665, - 1.609208106994629, - 1.6346083879470825, - 1.656494379043579, - 1.674269199371338, - 1.6874480247497559, - 1.6956712007522583, - 1.6987146139144897, - 1.6964951753616333, - 1.6890733242034912, - 1.6766515970230103, - 1.6595689058303833, - 1.6382911205291748, - 1.6133986711502075, - 1.5855705738067627, - 1.5555658340454102, - 1.5242030620574951, - 1.4923375844955444, - 1.5192145109176636, - 1.547377347946167, - 1.574405312538147, - 1.5995612144470215, - 1.6221590042114258, - 1.6415821313858032, - 1.6573008298873901, - 1.6688863039016724, - 1.6760225296020508, - 1.6785149574279785, - 1.676295518875122, - 1.6694246530532837, - 1.6580899953842163, - 1.6426005363464355, - 1.623378872871399, - 1.6009492874145508, - 1.5759236812591553, - 1.5489845275878906, - 1.520866870880127, - 1.4923375844955444, - 1.5192145109176636, - 1.5409693717956543, - 1.5617643594741821, - 1.5810320377349854, - 1.5982469320297241, - 1.6129393577575684, - 1.6247087717056274, - 1.6332340240478516, - 1.6382825374603271, - 1.639716625213623, - 1.6374971866607666, - 1.63168466091156, - 1.6224377155303955, - 1.6100084781646729, - 1.594736099243164, - 1.5770372152328491, - 1.5573943853378296, - 1.5363435745239258, - 1.5144590139389038, - 1.4923375844955444, - 1.5192145109176636, - 1.5321842432022095, - 1.5444334745407104, - 1.5556284189224243, - 1.5654634237289429, - 1.5736702680587769, - 1.5800251960754395, - 1.5843547582626343, - 1.586540937423706, - 1.5865240097045898, - 1.5843045711517334, - 1.579943060874939, - 1.5735583305358887, - 1.5653247833251953, - 1.5554670095443726, - 1.5442535877227783, - 1.5319907665252686, - 1.5190128087997437, - 1.5056737661361694, - 1.4923375844955444, - 1.5192145109176636, - 1.5219736099243164, - 1.524290919303894, - 1.5261032581329346, - 1.5273610353469849, - 1.5280300378799438, - 1.5280920267105103, - 1.5275452136993408, - 1.526404619216919, - 1.524701476097107, - 1.522481918334961, - 1.5198067426681519, - 1.5167489051818848, - 1.5133916139602661, - 1.50982666015625, - 1.5061513185501099, - 1.5024656057357788, - 1.4988702535629272, - 1.495463252067566, - 1.4923375844955444, - 1.5192145109176636, - 1.5114442110061646, - 1.5035194158554077, - 1.4956560134887695, - 1.488068699836731, - 1.4809644222259521, - 1.4745368957519531, - 1.4689615964889526, - 1.4643903970718384, - 1.46094810962677, - 1.4587286710739136, - 1.4577925205230713, - 1.458165168762207, - 1.4598366022109985, - 1.4627611637115479, - 1.466858983039856, - 1.4720183610916138, - 1.4780986309051514, - 1.484933853149414, - 1.4923375844955444, - 1.5192145109176636, - 1.5017369985580444, - 1.4843696355819702, - 1.4675862789154053, - 1.4518444538116455, - 1.4375739097595215, - 1.4251636266708374, - 1.414952278137207, - 1.4072184562683105, - 1.4021729230880737, - 1.3999533653259277, - 1.400620460510254, - 1.404155969619751, - 1.4104633331298828, - 1.4193706512451172, - 1.4306347370147705, - 1.4439486265182495, - 1.4589489698410034, - 1.475226640701294, - 1.4923375844955444, - 1.5192145109176636, - 1.4939038753509521, - 1.4689170122146606, - 1.44493567943573, - 1.4226138591766357, - 1.4025604724884033, - 1.3853224515914917, - 1.3713701963424683, - 1.361084222793579, - 1.3547449111938477, - 1.3525254726409912, - 1.3544862270355225, - 1.3605738878250122, - 1.370622158050537, - 1.3843570947647095, - 1.4014041423797607, - 1.4212980270385742, - 1.4434963464736938, - 1.467393398284912, - 1.4923375844955444, - 1.5192145109176636, - 1.4887937307357788, - 1.4588360786437988, - 1.4301588535308838, - 1.403544306755066, - 1.37971830368042, - 1.3593308925628662, - 1.3429380655288696, - 1.3309870958328247, - 1.3238039016723633, - 1.3215844631195068, - 1.3243892192840576, - 1.3321417570114136, - 1.3446305990219116, - 1.3615150451660156, - 1.382334589958191, - 1.4065213203430176, - 1.433415412902832, - 1.4622832536697388, - 1.4923375844955444 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.5461198091506958, - 0.5640347599983215, - 0.5813506245613098, - 0.5975950956344604, - 0.6123250126838684, - 0.6251386404037476, - 0.6356863975524902, - 0.6436806321144104, - 0.6489032506942749, - 0.6512117385864258, - 0.650543212890625, - 0.6469159126281738, - 0.6404287219047546, - 0.6312586069107056, - 0.6196557283401489, - 0.6059365272521973, - 0.59047532081604, - 0.5736937522888184, - 0.556049644947052, - 0.5380243062973022, - 0.5461198091506958, - 0.5825341939926147, - 0.6178449392318726, - 0.6510887145996094, - 0.6813588738441467, - 0.7078295946121216, - 0.7297789454460144, - 0.7466080784797668, - 0.7578580379486084, - 0.7632218599319458, - 0.762553334236145, - 0.7558706998825073, - 0.7433561086654663, - 0.725351095199585, - 0.702346682548523, - 0.6749703884124756, - 0.643968939781189, - 0.6101880073547363, - 0.5745490789413452, - 0.5380243062973022, - 0.5461198091506958, - 0.5970816016197205, - 0.6465429067611694, - 0.693154513835907, - 0.7356449365615845, - 0.7728552222251892, - 0.8037704229354858, - 0.8275470733642578, - 0.8435367345809937, - 0.851303219795227, - 0.8506346940994263, - 0.8415493965148926, - 0.824295163154602, - 0.7993425130844116, - 0.7673723101615906, - 0.7292564511299133, - 0.6860346794128418, - 0.638886034488678, - 0.5890964865684509, - 0.5380243062973022, - 0.5461198091506958, - 0.6061005592346191, - 0.6643347144126892, - 0.7192339301109314, - 0.7693005800247192, - 0.8131690621376038, - 0.8496426939964294, - 0.8777266144752502, - 0.8966547846794128, - 0.905910849571228, - 0.9052423238754272, - 0.8946674466133118, - 0.8744747042655945, - 0.84521484375, - 0.8076860904693604, - 0.7629120945930481, - 0.7121140956878662, - 0.6566778421401978, - 0.5981153845787048, - 0.5380243062973022, - 0.5461198091506958, - 0.6086136102676392, - 0.6692923307418823, - 0.7265008687973022, - 0.7786785960197449, - 0.8244023323059082, - 0.8624248504638672, - 0.8917089700698853, - 0.9114559292793274, - 0.9211270213127136, - 0.9204584956169128, - 0.9094685912132263, - 0.8884570598602295, - 0.8579970598220825, - 0.8189194202423096, - 0.7722901105880737, - 0.7193810343742371, - 0.6616354584693909, - 0.6006284952163696, - 0.5380242466926575, - 0.5461198091506958, - 0.6043485403060913, - 0.6608785390853882, - 0.7141678333282471, - 0.7627627849578857, - 0.8053378462791443, - 0.8407317399978638, - 0.8679789304733276, - 0.8863363265991211, - 0.8953030109405518, - 0.894634485244751, - 0.88434898853302, - 0.8647270202636719, - 0.8363038897514343, - 0.7998549342155457, - 0.7563742995262146, - 0.7070479989051819, - 0.6532216668128967, - 0.5963634252548218, - 0.5380243062973022, - 0.5461198091506958, - 0.593767523765564, - 0.6400051116943359, - 0.6835713386535645, - 0.7232778072357178, - 0.758041501045227, - 0.7869141101837158, - 0.8091080188751221, - 0.8240179419517517, - 0.8312370777130127, - 0.8305685520172119, - 0.8220306038856506, - 0.8058561086654663, - 0.7824863195419312, - 0.7525585889816284, - 0.7168893814086914, - 0.676451563835144, - 0.6323482394218445, - 0.5857824087142944, - 0.5380243062973022, - 0.5461198091506958, - 0.5780171155929565, - 0.6089339852333069, - 0.6380269527435303, - 0.6645026206970215, - 0.6876386404037476, - 0.7068039774894714, - 0.7214758992195129, - 0.7312541007995605, - 0.7358719110488892, - 0.7352033853530884, - 0.7292667627334595, - 0.7182239294052124, - 0.702376127243042, - 0.6821557283401489, - 0.6581140756607056, - 0.6309071779251099, - 0.6012770533561707, - 0.570032000541687, - 0.5380243062973022, - 0.5461198091506958, - 0.5588042140007019, - 0.5710321664810181, - 0.582470178604126, - 0.5928062200546265, - 0.6017584204673767, - 0.6090825200080872, - 0.6145787239074707, - 0.6180971264839172, - 0.6195417642593384, - 0.6188732385635376, - 0.6161097884178162, - 0.6113267540931702, - 0.6046546697616577, - 0.5962755084037781, - 0.5864177346229553, - 0.5753504037857056, - 0.5633752942085266, - 0.5508190989494324, - 0.5380243062973022, - 0.5461198091506958, - 0.5382107496261597, - 0.5304069519042969, - 0.5229213833808899, - 0.5159582495689392, - 0.5097073316574097, - 0.5043392777442932, - 0.5000004768371582, - 0.49680930376052856, - 0.494852751493454, - 0.4941842257976532, - 0.4948219656944275, - 0.49674856662750244, - 0.49991145730018616, - 0.504224419593811, - 0.5095697045326233, - 0.5158016085624695, - 0.5227500796318054, - 0.5302256345748901, - 0.5380243062973022, - 0.5461198091506958, - 0.5184683799743652, - 0.49146074056625366, - 0.4658336639404297, - 0.4422861635684967, - 0.4214605689048767, - 0.40392497181892395, - 0.3901576101779938, - 0.3805341124534607, - 0.37531691789627075, - 0.37464839220046997, - 0.3785467743873596, - 0.3869056701660156, - 0.3994971215724945, - 0.4159775972366333, - 0.4358976483345032, - 0.4587138593196869, - 0.4838038384914398, - 0.5104832649230957, - 0.5380243062973022, - 0.5461198091506958, - 0.5017164945602417, - 0.45841389894485474, - 0.4173933267593384, - 0.3797736167907715, - 0.34658101201057434, - 0.31872090697288513, - 0.2969532012939453, - 0.2818717360496521, - 0.27388784289360046, - 0.2732193171977997, - 0.279884397983551, - 0.29370129108428955, - 0.3142930269241333, - 0.3410980701446533, - 0.37338510155677795, - 0.4102734923362732, - 0.4507569968700409, - 0.4937313497066498, - 0.5380243062973022, - 0.5461198091506958, - 0.48977038264274597, - 0.4348475933074951, - 0.3828495740890503, - 0.33519476652145386, - 0.29318302869796753, - 0.25796034932136536, - 0.23048743605613708, - 0.21151375770568848, - 0.20155689120292664, - 0.20088836550712585, - 0.2095264196395874, - 0.22723552584648132, - 0.2535324692726135, - 0.28770002722740173, - 0.32880622148513794, - 0.3757297992706299, - 0.4271906912326813, - 0.48178526759147644, - 0.5380243062973022, - 0.5461198687553406, - 0.48392465710639954, - 0.4233155846595764, - 0.36594587564468384, - 0.3133804202079773, - 0.26705312728881836, - 0.22822758555412292, - 0.19796288013458252, - 0.17708459496498108, - 0.16616225242614746, - 0.16549372673034668, - 0.17509725689888, - 0.19471096992492676, - 0.2237997055053711, - 0.2615700960159302, - 0.3069918751716614, - 0.35882604122161865, - 0.4156586825847626, - 0.47593954205513, - 0.5380243062973022, - 0.5461198091506958, - 0.48481276631355286, - 0.4250675439834595, - 0.36851394176483154, - 0.3166944980621338, - 0.27102285623550415, - 0.23274466395378113, - 0.2029041051864624, - 0.1823151707649231, - 0.1715395152568817, - 0.17087098956108093, - 0.18032783269882202, - 0.19965219497680664, - 0.2283167839050293, - 0.26553982496261597, - 0.31030598282814026, - 0.36139410734176636, - 0.417410671710968, - 0.47682762145996094, - 0.5380243062973022, - 0.5461198091506958, - 0.4923384189605713, - 0.43991363048553467, - 0.3902754485607147, - 0.3447778820991516, - 0.30466198921203613, - 0.2710220217704773, - 0.24477556347846985, - 0.22663861513137817, - 0.21710586547851562, - 0.21643733978271484, - 0.2246512770652771, - 0.2415236532688141, - 0.26659417152404785, - 0.2991790175437927, - 0.3383893370628357, - 0.3831556439399719, - 0.4322567284107208, - 0.48435330390930176, - 0.5380243062973022, - 0.5461198091506958, - 0.5056862235069275, - 0.46624505519866943, - 0.428872287273407, - 0.39458733797073364, - 0.3643253445625305, - 0.33891189098358154, - 0.31904006004333496, - 0.30525195598602295, - 0.2979236841201782, - 0.29725515842437744, - 0.3032646179199219, - 0.3157881200313568, - 0.3344840407371521, - 0.3588424026966095, - 0.3881988227367401, - 0.4217524826526642, - 0.458588182926178, - 0.49770107865333557, - 0.5380243062973022, - 0.5461198091506958, - 0.5234096050262451, - 0.5012084245681763, - 0.480121910572052, - 0.46072521805763245, - 0.44354748725891113, - 0.42905721068382263, - 0.41764968633651733, - 0.40963611006736755, - 0.40523505210876465, - 0.40456652641296387, - 0.4076487720012665, - 0.4143977761268616, - 0.4246293604373932, - 0.4380645155906677, - 0.4543367028236389, - 0.4730020761489868, - 0.4935515224933624, - 0.5154244899749756, - 0.5380243062973022, - 0.5461198091506958, - 0.5435880422592163, - 0.5410148501396179, - 0.5384705066680908, - 0.5360244512557983, - 0.5337433218955994, - 0.5316894054412842, - 0.5299186706542969, - 0.5284794569015503, - 0.5274110436439514, - 0.5267425179481506, - 0.5264921188354492, - 0.5266667604446411, - 0.5272615551948547, - 0.528260350227356, - 0.5296359658241272, - 0.5313507318496704, - 0.5333579778671265, - 0.535602867603302, - 0.5380243062973022, - 0.5461198091506958, - 0.5640347599983215, - 0.5813506841659546, - 0.5975951552391052, - 0.6123250722885132, - 0.6251387000083923, - 0.635686457157135, - 0.6436806917190552, - 0.6489033102989197, - 0.6512118577957153, - 0.6505433320999146, - 0.6469159722328186, - 0.6404287815093994, - 0.6312586069107056, - 0.6196557283401489, - 0.605936586856842, - 0.59047532081604, - 0.5736937522888184, - 0.556049644947052, - 0.5380243062973022 - ], - "y": [ - 0.6466255187988281, - 0.7020718455314636, - 0.7558733820915222, - 0.8065625429153442, - 0.8527566194534302, - 0.893195629119873, - 0.9267764091491699, - 0.9525829553604126, - 0.9699114561080933, - 0.9782892465591431, - 0.9774875640869141, - 0.9675285816192627, - 0.9486837387084961, - 0.9214670658111572, - 0.8866211771965027, - 0.8450963497161865, - 0.798025369644165, - 0.7466922402381897, - 0.6924971342086792, - 0.6369184255599976, - 0.6466255187988281, - 0.6908532977104187, - 0.7337422966957092, - 0.7741225957870483, - 0.8108927011489868, - 0.8430495858192444, - 0.8697161674499512, - 0.8901650905609131, - 0.9038383960723877, - 0.9103633165359497, - 0.9095616340637207, - 0.9014554619789124, - 0.886265754699707, - 0.864406943321228, - 0.836475133895874, - 0.8032324314117432, - 0.7655854225158691, - 0.7245611548423767, - 0.6812785863876343, - 0.6369184255599976, - 0.6466255187988281, - 0.6748348474502563, - 0.7021422386169434, - 0.7278029322624207, - 0.751116931438446, - 0.7714482545852661, - 0.7882423400878906, - 0.8010411262512207, - 0.8094955086708069, - 0.8133747577667236, - 0.8125731348991394, - 0.8071125149726868, - 0.7971418499946594, - 0.7829331159591675, - 0.7648738622665405, - 0.7434566617012024, - 0.7192657589912415, - 0.6929610967636108, - 0.6652600765228271, - 0.6369184255599976, - 0.6466255187988281, - 0.6557522416114807, - 0.6644976139068604, - 0.6726230382919312, - 0.6799070239067078, - 0.6861507296562195, - 0.691183865070343, - 0.6948692202568054, - 0.6971062421798706, - 0.6978338360786438, - 0.6970322132110596, - 0.6947232484817505, - 0.6909699440002441, - 0.6858745813369751, - 0.6795762777328491, - 0.6722467541694641, - 0.6640859246253967, - 0.6553164720535278, - 0.6461775302886963, - 0.6369184255599976, - 0.6466255187988281, - 0.635673463344574, - 0.6248877644538879, - 0.6145625710487366, - 0.6049796342849731, - 0.596400260925293, - 0.589058518409729, - 0.5831546783447266, - 0.578849732875824, - 0.5762611627578735, - 0.5754595398902893, - 0.5764667987823486, - 0.5792553424835205, - 0.5837492346763611, - 0.5898258090019226, - 0.5973193049430847, - 0.6060253977775574, - 0.6157065629959106, - 0.6260987520217896, - 0.6369184255599976, - 0.6466255187988281, - 0.616774320602417, - 0.5876049995422363, - 0.5599132180213928, - 0.5344542860984802, - 0.5119227766990662, - 0.49293315410614014, - 0.47800350189208984, - 0.467540979385376, - 0.46183106303215027, - 0.4610294699668884, - 0.46515804529190063, - 0.4741041660308838, - 0.4876238703727722, - 0.505348265171051, - 0.5267940163612366, - 0.5513760447502136, - 0.5784238576889038, - 0.6071996092796326, - 0.6369184255599976, - 0.6466255187988281, - 0.601102888584137, - 0.5566895604133606, - 0.5145970582962036, - 0.47597360610961914, - 0.44187265634536743, - 0.413224458694458, - 0.39081040024757385, - 0.3752419352531433, - 0.3669437766075134, - 0.3661421537399292, - 0.37285900115966797, - 0.3869111239910126, - 0.4079151749610901, - 0.4352981746196747, - 0.4683133065700531, - 0.5060599446296692, - 0.5475084185600281, - 0.5915281772613525, - 0.6369184255599976, - 0.6466255187988281, - 0.5903573632240295, - 0.5354915857315063, - 0.483524888753891, - 0.4358747601509094, - 0.3938409686088562, - 0.3585700988769531, - 0.331024169921875, - 0.31195467710494995, - 0.3018817901611328, - 0.3010801672935486, - 0.3095717430114746, - 0.3271248936653137, - 0.3532607853412628, - 0.38726648688316345, - 0.42821449041366577, - 0.4749877452850342, - 0.5263104438781738, - 0.5807825922966003, - 0.6369184255599976, - 0.6466255187988281, - 0.5857021808624268, - 0.5263081789016724, - 0.47006380558013916, - 0.4185031056404114, - 0.37303268909454346, - 0.33489271998405457, - 0.30512359738349915, - 0.2845374047756195, - 0.2736956775188446, - 0.2728940546512604, - 0.28215447068214417, - 0.30122432112693787, - 0.32958340644836426, - 0.3664581775665283, - 0.4108428359031677, - 0.46152663230895996, - 0.5171270370483398, - 0.5761274099349976, - 0.6369184255599976, - 0.6466255187988281, - 0.5876417756080627, - 0.5301345586776733, - 0.47567248344421387, - 0.42574119567871094, - 0.3817026913166046, - 0.34475818276405334, - 0.3159153461456299, - 0.2959611117839813, - 0.28543969988822937, - 0.28463807702064514, - 0.293578177690506, - 0.3120160698890686, - 0.33944886922836304, - 0.37512820959091187, - 0.4180809259414673, - 0.46713536977767944, - 0.5209534168243408, - 0.5780670642852783, - 0.6369184255599976, - 0.6466255187988281, - 0.5959660410881042, - 0.5465559959411621, - 0.4997432231903076, - 0.45680463314056396, - 0.4189114570617676, - 0.3870973289012909, - 0.36223000288009644, - 0.3449878990650177, - 0.3358413279056549, - 0.3350397050380707, - 0.34260496497154236, - 0.35833072662353516, - 0.3817880153656006, - 0.41233697533607483, - 0.4491443336009979, - 0.4912061095237732, - 0.5373748540878296, - 0.5863913297653198, - 0.6369184255599976, - 0.6466255187988281, - 0.6097728610038757, - 0.5737930536270142, - 0.539667546749115, - 0.5083271861076355, - 0.48062682151794434, - 0.4573221206665039, - 0.4390486776828766, - 0.42630499601364136, - 0.41943874955177307, - 0.41863715648651123, - 0.423922061920166, - 0.4351493716239929, - 0.4520128071308136, - 0.474052369594574, - 0.5006669163703918, - 0.5311304330825806, - 0.5646119117736816, - 0.6001981496810913, - 0.6369184255599976, - 0.6466255187988281, - 0.6275660991668701, - 0.6088941693305969, - 0.5911190509796143, - 0.5747255682945251, - 0.5601609945297241, - 0.5478225350379944, - 0.5380467772483826, - 0.5311003923416138, - 0.5271728038787842, - 0.5263711810112, - 0.5287173986434937, - 0.5341475009918213, - 0.5425132513046265, - 0.5535865426063538, - 0.5670652985572815, - 0.5825818777084351, - 0.5997129678726196, - 0.6179913878440857, - 0.6369184255599976, - 0.6466255187988281, - 0.6474175453186035, - 0.6480555534362793, - 0.648522138595581, - 0.6488046050071716, - 0.648895263671875, - 0.6487916111946106, - 0.6484965085983276, - 0.648017942905426, - 0.6473690271377563, - 0.6465674042701721, - 0.6456349492073059, - 0.6445971727371216, - 0.6434823274612427, - 0.6423208117485046, - 0.641144335269928, - 0.6399850249290466, - 0.6388744115829468, - 0.6378428339958191, - 0.6369184255599976, - 0.6466255187988281, - 0.6671759486198425, - 0.6870334148406982, - 0.7056562900543213, - 0.722536563873291, - 0.7372137308120728, - 0.7492875456809998, - 0.7584286332130432, - 0.7643876075744629, - 0.7670019268989563, - 0.7662003040313721, - 0.7620046138763428, - 0.7545292973518372, - 0.7439782619476318, - 0.7306393384933472, - 0.7148762941360474, - 0.6971191167831421, - 0.6778522729873657, - 0.6576012372970581, - 0.6369184255599976, - 0.6466255187988281, - 0.6847002506256104, - 0.7216039896011353, - 0.756330132484436, - 0.7879313826560974, - 0.8155458569526672, - 0.8384201526641846, - 0.8559304475784302, - 0.8675991296768188, - 0.8731077313423157, - 0.8723061084747314, - 0.8652161359786987, - 0.8520311713218689, - 0.8331109285354614, - 0.8089714050292969, - 0.7802711725234985, - 0.7477929592132568, - 0.7124228477478027, - 0.6751255393028259, - 0.6369184255599976, - 0.6466255187988281, - 0.6980913877487183, - 0.7480210065841675, - 0.7950524091720581, - 0.8379027843475342, - 0.8754031658172607, - 0.9065307378768921, - 0.930436372756958, - 0.946467936038971, - 0.9541882276535034, - 0.953386664390564, - 0.9440850019454956, - 0.926537036895752, - 0.9012213945388794, - 0.8688287734985352, - 0.8302425146102905, - 0.7865152955055237, - 0.738839864730835, - 0.6885166764259338, - 0.6369184255599976, - 0.6466255187988281, - 0.7058982253074646, - 0.7634217739105225, - 0.817626953125, - 0.8670353293418884, - 0.9102991223335266, - 0.9462381601333618, - 0.973872184753418, - 0.9924473762512207, - 1.0014569759368896, - 1.0006554126739502, - 0.9900644421577454, - 0.9699728488922119, - 0.9409289360046387, - 0.9037246704101562, - 0.8593751192092896, - 0.8090898394584656, - 0.7542405724525452, - 0.6963235139846802, - 0.6369184255599976, - 0.6466255187988281, - 0.7072747945785522, - 0.7661373019218445, - 0.8216074705123901, - 0.8721721768379211, - 0.916452169418335, - 0.9532395601272583, - 0.981531023979187, - 1.0005546808242798, - 1.0097917318344116, - 1.0089900493621826, - 0.9981717467308044, - 0.977631688117981, - 0.9479303359985352, - 0.9098777770996094, - 0.8645119071006775, - 0.8130702972412109, - 0.756956160068512, - 0.6977000832557678, - 0.6369184255599976, - 0.6466255187988281, - 0.7020718455314636, - 0.7558733820915222, - 0.8065625429153442, - 0.8527566194534302, - 0.8931955695152283, - 0.9267763495445251, - 0.9525829553604126, - 0.9699114561080933, - 0.9782891869544983, - 0.9774875640869141, - 0.9675285816192627, - 0.9486836791038513, - 0.9214670658111572, - 0.8866211175918579, - 0.8450963497161865, - 0.798025369644165, - 0.7466922402381897, - 0.6924971342086792, - 0.6369184255599976 - ], - "z": [ - 1.5336534976959229, - 1.503012776374817, - 1.4729018211364746, - 1.4441417455673218, - 1.4175171852111816, - 1.393754482269287, - 1.3735015392303467, - 1.3573111295700073, - 1.3456246852874756, - 1.3387610912322998, - 1.3369073867797852, - 1.3401143550872803, - 1.3482943773269653, - 1.3612244129180908, - 1.378551721572876, - 1.399803638458252, - 1.4244004487991333, - 1.4516713619232178, - 1.4808722734451294, - 1.511206865310669, - 1.5336534976959229, - 1.501192331314087, - 1.4693105220794678, - 1.4388777017593384, - 1.4107239246368408, - 1.3856171369552612, - 1.3642423152923584, - 1.3471825122833252, - 1.3349030017852783, - 1.327738642692566, - 1.3258850574493408, - 1.329392671585083, - 1.3381657600402832, - 1.3519651889801025, - 1.3704144954681396, - 1.3930103778839111, - 1.41913640499115, - 1.448080062866211, - 1.4790518283843994, - 1.511206865310669, - 1.5336534976959229, - 1.5028729438781738, - 1.472625970840454, - 1.443737506866455, - 1.4169955253601074, - 1.3931294679641724, - 1.3727904558181763, - 1.3565332889556885, - 1.3448011875152588, - 1.3379144668579102, - 1.336060881614685, - 1.3392908573150635, - 1.3475165367126465, - 1.3605133295059204, - 1.3779268264770508, - 1.3992818593978882, - 1.4239962100982666, - 1.4513955116271973, - 1.4807324409484863, - 1.511206865310669, - 1.5336534976959229, - 1.5078725814819336, - 1.482488751411438, - 1.4581944942474365, - 1.435652256011963, - 1.4154772758483887, - 1.3982195854187012, - 1.384350061416626, - 1.3742469549179077, - 1.3681859970092773, - 1.3663322925567627, - 1.3687366247177124, - 1.375333309173584, - 1.3859424591064453, - 1.4002745151519775, - 1.4179387092590332, - 1.438453197479248, - 1.4612582921981812, - 1.485732078552246, - 1.511206865310669, - 1.5336534976959229, - 1.5156493186950684, - 1.4978301525115967, - 1.4806820154190063, - 1.4646726846694946, - 1.4502387046813965, - 1.4377740621566772, - 1.4276185035705566, - 1.4200491905212402, - 1.41527259349823, - 1.4134190082550049, - 1.414538860321045, - 1.4186017513275146, - 1.4254968166351318, - 1.435036063194275, - 1.4469590187072754, - 1.4609407186508179, - 1.4765996932983398, - 1.4935088157653809, - 1.511206865310669, - 1.5336534976959229, - 1.5253605842590332, - 1.516987681388855, - 1.508763313293457, - 1.5009117126464844, - 1.4936469793319702, - 1.487167477607727, - 1.4816498756408691, - 1.4772446155548096, - 1.4740718603134155, - 1.4722182750701904, - 1.4717342853546143, - 1.4726331233978271, - 1.4748903512954712, - 1.4784443378448486, - 1.4831980466842651, - 1.4890220165252686, - 1.4957572221755981, - 1.5032200813293457, - 1.511206865310669, - 1.5336534976959229, - 1.5359538793563843, - 1.537885308265686, - 1.5393952131271362, - 1.5404423475265503, - 1.540998101234436, - 1.54104745388031, - 1.5405888557434082, - 1.5396350622177124, - 1.5382119417190552, - 1.53635835647583, - 1.534124732017517, - 1.5315722227096558, - 1.5287703275680542, - 1.5257954597473145, - 1.5227288007736206, - 1.5196539163589478, - 1.5166548490524292, - 1.5138133764266968, - 1.511206865310669, - 1.5336534976959229, - 1.5462812185287476, - 1.5582584142684937, - 1.5692583322525024, - 1.578980803489685, - 1.5871608257293701, - 1.593575119972229, - 1.5980488061904907, - 1.6004596948623657, - 1.600742220878601, - 1.598888635635376, - 1.5949493646621704, - 1.5890320539474487, - 1.5812979936599731, - 1.571958065032959, - 1.5612672567367554, - 1.549517035484314, - 1.5370280742645264, - 1.52414071559906, - 1.511206865310669, - 1.5336534976959229, - 1.5552237033843994, - 1.575899362564087, - 1.5951164960861206, - 1.6123510599136353, - 1.6271326541900635, - 1.6390583515167236, - 1.647802710533142, - 1.6531271934509277, - 1.6548867225646973, - 1.6530330181121826, - 1.6476168632507324, - 1.6387859582901, - 1.6267812252044678, - 1.611930012702942, - 1.5946375131607056, - 1.5753753185272217, - 1.55466890335083, - 1.533083200454712, - 1.511206865310669, - 1.5336534976959229, - 1.5618120431900024, - 1.58889639377594, - 1.6141676902770996, - 1.6369366645812988, - 1.6565821170806885, - 1.6725683212280273, - 1.6844592094421387, - 1.6919302940368652, - 1.6947778463363647, - 1.69292414188385, - 1.68641996383667, - 1.6754424571990967, - 1.6602911949157715, - 1.641379475593567, - 1.6192231178283691, - 1.5944263935089111, - 1.567665934562683, - 1.539671540260315, - 1.511206865310669, - 1.5336534976959229, - 1.5653324127197266, - 1.5958410501480103, - 1.6243473291397095, - 1.6500734090805054, - 1.6723178625106812, - 1.6904736757278442, - 1.7040457725524902, - 1.7126638889312744, - 1.716092824935913, - 1.714239239692688, - 1.707153558731079, - 1.6950290203094482, - 1.6781965494155884, - 1.6571152210235596, - 1.6323598623275757, - 1.604606032371521, - 1.574610710144043, - 1.543191909790039, - 1.511206865310669, - 1.5336534976959229, - 1.5654033422470093, - 1.5959808826446533, - 1.6245522499084473, - 1.6503379344940186, - 1.6726346015930176, - 1.6908341646194458, - 1.7044401168823242, - 1.7130812406539917, - 1.716521978378296, - 1.7146682739257812, - 1.7075709104537964, - 1.6954233646392822, - 1.67855703830719, - 1.657431960105896, - 1.6326243877410889, - 1.6048109531402588, - 1.5747504234313965, - 1.5432628393173218, - 1.511206865310669, - 1.5336534976959229, - 1.5620169639587402, - 1.5893006324768066, - 1.6147602796554565, - 1.637701392173767, - 1.6574981212615967, - 1.6736106872558594, - 1.6855993270874023, - 1.693137288093567, - 1.6960186958312988, - 1.6941649913787842, - 1.6876269578933716, - 1.67658269405365, - 1.6613335609436035, - 1.642295479774475, - 1.6199878454208374, - 1.5950191020965576, - 1.5680702924728394, - 1.5398764610290527, - 1.511206865310669, - 1.5336534976959229, - 1.5555404424667358, - 1.576524257659912, - 1.5960326194763184, - 1.6135331392288208, - 1.6285487413406372, - 1.640669584274292, - 1.6495652198791504, - 1.654992938041687, - 1.6568048000335693, - 1.6549510955810547, - 1.6494826078414917, - 1.640548586845398, - 1.6283924579620361, - 1.613345980644226, - 1.5958195924758911, - 1.5762913227081299, - 1.5552939176559448, - 1.5333999395370483, - 1.511206865310669, - 1.5336534976959229, - 1.5466755628585815, - 1.559036374092102, - 1.5703985691070557, - 1.5804523229599, - 1.588923454284668, - 1.5955806970596313, - 1.6002427339553833, - 1.602782130241394, - 1.6031297445297241, - 1.601276159286499, - 1.5972718000411987, - 1.5912259817123413, - 1.5833035707473755, - 1.5737206935882568, - 1.5627387762069702, - 1.5506572723388672, - 1.5378059148788452, - 1.524535059928894, - 1.511206865310669, - 1.5336534976959229, - 1.536383032798767, - 1.5387318134307861, - 1.5406360626220703, - 1.542043685913086, - 1.5429162979125977, - 1.5432300567626953, - 1.5429764986038208, - 1.5421624183654785, - 1.540810227394104, - 1.5389565229415894, - 1.5366520881652832, - 1.5339597463607788, - 1.5309529304504395, - 1.5277135372161865, - 1.5243301391601562, - 1.5208948850631714, - 1.5175014734268188, - 1.5142425298690796, - 1.511206865310669, - 1.5336534976959229, - 1.5257779359817505, - 1.5178111791610718, - 1.5099703073501587, - 1.5024693012237549, - 1.495512843132019, - 1.4892905950546265, - 1.483972191810608, - 1.4797029495239258, - 1.4765992164611816, - 1.474745512008667, - 1.4741926193237305, - 1.4749555587768555, - 1.477013349533081, - 1.480310082435608, - 1.4847557544708252, - 1.4902290105819702, - 1.496580719947815, - 1.503637433052063, - 1.511206865310669, - 1.5336534976959229, - 1.51600980758667, - 1.498541235923767, - 1.4817243814468384, - 1.466017723083496, - 1.4518499374389648, - 1.4396073818206787, - 1.429624080657959, - 1.42217218875885, - 1.4174551963806152, - 1.4156014919281006, - 1.4166618585586548, - 1.420607328414917, - 1.4273302555084229, - 1.4366472959518433, - 1.4483041763305664, - 1.46198308467865, - 1.4773108959197998, - 1.4938693046569824, - 1.511206865310669, - 1.5336534976959229, - 1.5081371068954468, - 1.4830105304718018, - 1.4589592218399048, - 1.4366391897201538, - 1.4166593551635742, - 1.3995647430419922, - 1.3858214616775513, - 1.3758045434951782, - 1.3697872161865234, - 1.3679336309432983, - 1.370294213294983, - 1.3768047094345093, - 1.3872874975204468, - 1.401456594467163, - 1.4189256429672241, - 1.4392179250717163, - 1.461780071258545, - 1.4859966039657593, - 1.511206865310669, - 1.5336534976959229, - 1.503012776374817, - 1.4729018211364746, - 1.4441417455673218, - 1.4175171852111816, - 1.3937543630599976, - 1.3735015392303467, - 1.3573111295700073, - 1.3456246852874756, - 1.3387610912322998, - 1.3369073867797852, - 1.3401143550872803, - 1.3482943773269653, - 1.3612244129180908, - 1.378551721572876, - 1.399803638458252, - 1.4244004487991333, - 1.4516713619232178, - 1.4808722734451294, - 1.511206865310669 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.5543254017829895, - 0.5721755623817444, - 0.5894447565078735, - 0.605661928653717, - 0.620384693145752, - 0.6332114934921265, - 0.6437923908233643, - 0.6518388390541077, - 0.6571313142776489, - 0.659525454044342, - 0.6589559316635132, - 0.6554383039474487, - 0.6490685343742371, - 0.6400203704833984, - 0.628540575504303, - 0.6149423718452454, - 0.5995966196060181, - 0.5829219222068787, - 0.5653731226921082, - 0.5474289059638977, - 0.5543254017829895, - 0.5906758308410645, - 0.6259405612945557, - 0.6591578722000122, - 0.6894214749336243, - 0.715906023979187, - 0.7378889322280884, - 0.7547707557678223, - 0.7660908102989197, - 0.7715404033660889, - 0.77097088098526, - 0.7643977999687195, - 0.7520004510879517, - 0.7341169118881226, - 0.7112351655960083, - 0.6839791536331177, - 0.6530925631523132, - 0.6194177269935608, - 0.5838733315467834, - 0.5474289059638977, - 0.5543254017829895, - 0.6052318215370178, - 0.6546555757522583, - 0.7012485265731812, - 0.7437397241592407, - 0.7809701561927795, - 0.8119242191314697, - 0.8357576727867126, - 0.8518202900886536, - 0.8596739172935486, - 0.8591043949127197, - 0.8501272797584534, - 0.832987368106842, - 0.8081522583961487, - 0.7762992978096008, - 0.7382974624633789, - 0.6951832175254822, - 0.6481327414512634, - 0.5984293222427368, - 0.5474289059638977, - 0.5543254017829895, - 0.6142662167549133, - 0.6724779605865479, - 0.7273727655410767, - 0.7774532437324524, - 0.8213533163070679, - 0.857875406742096, - 0.8860235214233398, - 0.9050296545028687, - 0.9143754243850708, - 0.9138059020042419, - 0.9033366441726685, - 0.8832532167434692, - 0.8541034460067749, - 0.8166824579238892, - 0.7720109224319458, - 0.7213074564933777, - 0.665955126285553, - 0.6074637770652771, - 0.5474288463592529, - 0.5543254017829895, - 0.61680006980896, - 0.6774764657020569, - 0.7346996068954468, - 0.7869085669517517, - 0.8326792120933533, - 0.8707629442214966, - 0.9001211524009705, - 0.9199527502059937, - 0.9297170639038086, - 0.929147481918335, - 0.9182597398757935, - 0.8973508477210999, - 0.8669909238815308, - 0.8280082941055298, - 0.7814662456512451, - 0.7286342978477478, - 0.670953631401062, - 0.609997570514679, - 0.5474288463592529, - 0.5543254017829895, - 0.6125586628913879, - 0.6691094040870667, - 0.7224350571632385, - 0.7710810899734497, - 0.8137205243110657, - 0.8491902351379395, - 0.8765228390693665, - 0.8949726223945618, - 0.9040363430976868, - 0.9034668207168579, - 0.8932796120643616, - 0.8737525343894958, - 0.8454182744026184, - 0.809049665927887, - 0.7656388282775879, - 0.7163697481155396, - 0.6625865697860718, - 0.6057561635971069, - 0.5474288463592529, - 0.5543254017829895, - 0.6020017266273499, - 0.6482834219932556, - 0.6919081807136536, - 0.731685996055603, - 0.7665318250656128, - 0.7954951524734497, - 0.8177858591079712, - 0.8327960968017578, - 0.8401162624359131, - 0.839546799659729, - 0.8311030864715576, - 0.8150155544281006, - 0.7917230725288391, - 0.7618609666824341, - 0.7262437343597412, - 0.6858428716659546, - 0.6417605876922607, - 0.5951992273330688, - 0.5474289059638977, - 0.5543254017829895, - 0.586273193359375, - 0.617255449295044, - 0.6464270949363708, - 0.6729923486709595, - 0.6962266564369202, - 0.7154961824417114, - 0.7302753925323486, - 0.7401610016822815, - 0.7448834776878357, - 0.7443139553070068, - 0.7384679913520813, - 0.727505087852478, - 0.7117241621017456, - 0.6915557980537415, - 0.6675500273704529, - 0.6403617858886719, - 0.6107326149940491, - 0.579470694065094, - 0.5474289059638977, - 0.5543254017829895, - 0.5670775175094604, - 0.5793877243995667, - 0.5909202694892883, - 0.6013604998588562, - 0.6104236841201782, - 0.6178625822067261, - 0.6234743595123291, - 0.6271058320999146, - 0.6286579370498657, - 0.6280884742736816, - 0.6254128217697144, - 0.6207040548324585, - 0.6140905618667603, - 0.6057528257369995, - 0.5959181785583496, - 0.5848549604415894, - 0.5728648900985718, - 0.5602750778198242, - 0.5474289059638977, - 0.5543254017829895, - 0.5464949011802673, - 0.5387839078903198, - 0.5314027667045593, - 0.5245528817176819, - 0.5184210538864136, - 0.5131745338439941, - 0.5089563727378845, - 0.5058817863464355, - 0.5040345191955566, - 0.5034649968147278, - 0.5041887760162354, - 0.5061860680580139, - 0.5094024538993835, - 0.5137501358985901, - 0.5191105604171753, - 0.5253374576568604, - 0.532261073589325, - 0.5396924018859863, - 0.5474289059638977, - 0.5543254017829895, - 0.526755690574646, - 0.4998439848423004, - 0.4743242859840393, - 0.45089277625083923, - 0.4301885962486267, - 0.4127764403820038, - 0.39913129806518555, - 0.3896254301071167, - 0.3845180869102478, - 0.38394856452941895, - 0.3879324197769165, - 0.39636099338531494, - 0.4090043902397156, - 0.4255176782608032, - 0.44545045495033264, - 0.46825897693634033, - 0.49332112073898315, - 0.5199532508850098, - 0.5474289059638977, - 0.5543254017829895, - 0.5099990367889404, - 0.466787725687027, - 0.4258701205253601, - 0.38836240768432617, - 0.35528767108917236, - 0.3275481164455414, - 0.3059003949165344, - 0.2909349501132965, - 0.28306010365486145, - 0.2824905812740326, - 0.2892419397830963, - 0.3031300902366638, - 0.3237760663032532, - 0.3506167531013489, - 0.3829200863838196, - 0.41980481147766113, - 0.4602648615837097, - 0.5031965970993042, - 0.5474289059638977, - 0.5543254613876343, - 0.49804073572158813, - 0.4431972801685333, - 0.391291081905365, - 0.343737930059433, - 0.3018350601196289, - 0.2667253315448761, - 0.2393665611743927, - 0.22050493955612183, - 0.2106551229953766, - 0.21008560061454773, - 0.21881192922592163, - 0.2365962564945221, - 0.2629532814025879, - 0.29716408252716064, - 0.338295578956604, - 0.385225772857666, - 0.43667444586753845, - 0.4912382662296295, - 0.5474289059638977, - 0.5543254613876343, - 0.4921766519546509, - 0.4316290616989136, - 0.3743342459201813, - 0.3218550682067871, - 0.27562305331230164, - 0.23689916729927063, - 0.20673984289169312, - 0.18596765398979187, - 0.17514929175376892, - 0.17457976937294006, - 0.18427464365959167, - 0.2039695382118225, - 0.23312711715698242, - 0.2709520757198334, - 0.3164127469062805, - 0.3682689368724823, - 0.4251062273979187, - 0.48537418246269226, - 0.5474289059638977, - 0.5543254613876343, - 0.4930422604084015, - 0.43333664536476135, - 0.37683725357055664, - 0.32508519291877747, - 0.27949219942092896, - 0.24130180478096008, - 0.2115558385848999, - 0.1910656988620758, - 0.18039029836654663, - 0.17982077598571777, - 0.1893726885318756, - 0.2087855339050293, - 0.23752975463867188, - 0.2748212218284607, - 0.3196428418159485, - 0.37077194452285767, - 0.4268137812614441, - 0.48623979091644287, - 0.5474289059638977, - 0.5543254017829895, - 0.5005437135696411, - 0.4481349587440491, - 0.3985287547111511, - 0.3530781865119934, - 0.31302309036254883, - 0.2794560194015503, - 0.25329264998435974, - 0.23524656891822815, - 0.22581011056900024, - 0.2252405881881714, - 0.23355355858802795, - 0.25052234530448914, - 0.2756839990615845, - 0.30835217237472534, - 0.3476358652114868, - 0.39246344566345215, - 0.4416121244430542, - 0.4937412440776825, - 0.5474289059638977, - 0.5543254017829895, - 0.5138682126998901, - 0.4744204580783844, - 0.4370582699775696, - 0.4028007388114929, - 0.37258240580558777, - 0.34722745418548584, - 0.32742753624916077, - 0.31372272968292236, - 0.30648690462112427, - 0.3059173822402954, - 0.31202971935272217, - 0.32465723156929016, - 0.34345537424087524, - 0.3679114878177643, - 0.3973584473133087, - 0.4309929609298706, - 0.46789759397506714, - 0.5070657134056091, - 0.5474289059638977, - 0.5543254017829895, - 0.5315717458724976, - 0.5093446969985962, - 0.4882504642009735, - 0.4688645899295807, - 0.4517157971858978, - 0.4372718632221222, - 0.4259267747402191, - 0.4179900288581848, - 0.41367805004119873, - 0.4131085276603699, - 0.4162970185279846, - 0.4231564700603485, - 0.433499813079834, - 0.44704490900039673, - 0.4634222388267517, - 0.48218515515327454, - 0.5028218030929565, - 0.5247693061828613, - 0.5474289059638977, - 0.5543254017829895, - 0.5517359375953674, - 0.5491229891777039, - 0.5465579032897949, - 0.5441106557846069, - 0.5418479442596436, - 0.5398315787315369, - 0.538116455078125, - 0.5367494225502014, - 0.5357677936553955, - 0.5351982712745667, - 0.535056471824646, - 0.5353461503982544, - 0.5360594987869263, - 0.5371770858764648, - 0.5386683344841003, - 0.540492594242096, - 0.542600154876709, - 0.5449334383010864, - 0.5474289059638977, - 0.5543254017829895, - 0.5721755623817444, - 0.5894447565078735, - 0.605661928653717, - 0.6203847527503967, - 0.6332115530967712, - 0.643792450428009, - 0.6518388986587524, - 0.6571313738822937, - 0.6595255136489868, - 0.658955991268158, - 0.6554384231567383, - 0.6490685939788818, - 0.6400204300880432, - 0.6285406351089478, - 0.6149424314498901, - 0.5995966196060181, - 0.5829219222068787, - 0.5653731226921082, - 0.5474289059638977 - ], - "y": [ - 0.6609282493591309, - 0.7163012027740479, - 0.7700503468513489, - 0.8207095861434937, - 0.8668971061706543, - 0.9073529243469238, - 0.9409736394882202, - 0.9668421745300293, - 0.9842527508735657, - 0.9927306175231934, - 0.9920443296432495, - 0.9822128415107727, - 0.9635041952133179, - 0.9364286661148071, - 0.9017249345779419, - 0.8603395223617554, - 0.8134013414382935, - 0.7621908187866211, - 0.7081047296524048, - 0.6526184678077698, - 0.6609282493591309, - 0.70508873462677, - 0.7479312419891357, - 0.7882872223854065, - 0.8250558376312256, - 0.8572341203689575, - 0.8839443922042847, - 0.9044580459594727, - 0.9182155132293701, - 0.9248415231704712, - 0.9241552352905273, - 0.9161756038665771, - 0.9011200666427612, - 0.8793994188308716, - 0.8516060709953308, - 0.8184982538223267, - 0.7809789776802063, - 0.740071713924408, - 0.696892261505127, - 0.6526184678077698, - 0.6609282493591309, - 0.6890846490859985, - 0.7163596153259277, - 0.7420092821121216, - 0.765333890914917, - 0.7856972813606262, - 0.8025438785552979, - 0.815414309501648, - 0.8239574432373047, - 0.8279402256011963, - 0.8272539973258972, - 0.8219175338745117, - 0.8120763301849365, - 0.7979989051818848, - 0.7800691723823547, - 0.7587763071060181, - 0.7347010374069214, - 0.7085000872612, - 0.6808881759643555, - 0.6526184678077698, - 0.6609283089637756, - 0.6700232028961182, - 0.6787567734718323, - 0.6868906617164612, - 0.6942030191421509, - 0.7004944086074829, - 0.7055931687355042, - 0.7093603014945984, - 0.7116929888725281, - 0.7125275731086731, - 0.711841344833374, - 0.7096530199050903, - 0.706022322177887, - 0.7010481357574463, - 0.6948663592338562, - 0.687645435333252, - 0.679582417011261, - 0.6708972454071045, - 0.6618267893791199, - 0.6526184678077698, - 0.6609283089637756, - 0.6499701142311096, - 0.6391975283622742, - 0.6289043426513672, - 0.6193713545799255, - 0.6108586192131042, - 0.6035982966423035, - 0.5977884531021118, - 0.5935876369476318, - 0.5911102294921875, - 0.5904240608215332, - 0.5915476679801941, - 0.5944504737854004, - 0.5990532636642456, - 0.6052305698394775, - 0.6128137707710266, - 0.621596097946167, - 0.6313380002975464, - 0.6417736411094666, - 0.6526184678077698, - 0.6609283089637756, - 0.6310983300209045, - 0.6019687652587891, - 0.5743340849876404, - 0.5489481687545776, - 0.5265033841133118, - 0.5076120495796204, - 0.49278947710990906, - 0.48243993520736694, - 0.47684577107429504, - 0.47615954279899597, - 0.4803999960422516, - 0.48945146799087524, - 0.5030670166015625, - 0.5208752751350403, - 0.5423905253410339, - 0.5670258402824402, - 0.5941091775894165, - 0.6229019165039062, - 0.6526185274124146, - 0.6609283089637756, - 0.6154530048370361, - 0.5711047649383545, - 0.5290933847427368, - 0.4905647337436676, - 0.4565698802471161, - 0.42803603410720825, - 0.40574151277542114, - 0.39029452204704285, - 0.3821164071559906, - 0.38143017888069153, - 0.3882546126842499, - 0.4024035334587097, - 0.4234910011291504, - 0.4509417414665222, - 0.4840071201324463, - 0.5217851400375366, - 0.5632452368736267, - 0.6072565317153931, - 0.6526185274124146, - 0.6609283089637756, - 0.604729413986206, - 0.549950122833252, - 0.4980847239494324, - 0.4505479335784912, - 0.4086364507675171, - 0.373493492603302, - 0.3460776209831238, - 0.327136754989624, - 0.3171875476837158, - 0.31650131940841675, - 0.32509684562683105, - 0.34273964166641235, - 0.36894842982292175, - 0.4030083417892456, - 0.4439903497695923, - 0.4907764792442322, - 0.5420905947685242, - 0.596532940864563, - 0.6526185274124146, - 0.6609283089637756, - 0.6000897288322449, - 0.5407973527908325, - 0.484668493270874, - 0.43323415517807007, - 0.38789746165275574, - 0.34989500045776367, - 0.3202632963657379, - 0.2998107671737671, - 0.28909528255462646, - 0.2884090542793274, - 0.2977708578109741, - 0.3169253170490265, - 0.3453499376773834, - 0.38226938247680664, - 0.42667657136917114, - 0.47736024856567383, - 0.53293776512146, - 0.5918932557106018, - 0.6526185274124146, - 0.6609283089637756, - 0.602036714553833, - 0.5446381568908691, - 0.49029844999313354, - 0.4404996633529663, - 0.39660030603408813, - 0.35979777574539185, - 0.3310959041118622, - 0.31127774715423584, - 0.30088379979133606, - 0.300197571516037, - 0.30923783779144287, - 0.32775792479515076, - 0.355252742767334, - 0.39097219705581665, - 0.4339420795440674, - 0.48299020528793335, - 0.5367786288261414, - 0.5938402414321899, - 0.6526185274124146, - 0.6609283089637756, - 0.6103593707084656, - 0.5610564947128296, - 0.51436448097229, - 0.471557080745697, - 0.43380188941955566, - 0.40212875604629517, - 0.3774016201496124, - 0.36029505729675293, - 0.3512756824493408, - 0.35058945417404175, - 0.35825514793395996, - 0.374063640832901, - 0.3975837230682373, - 0.4281737804412842, - 0.4649994969367981, - 0.5070562362670898, - 0.553196907043457, - 0.6021628975868225, - 0.6526185274124146, - 0.6609283089637756, - 0.6241558194160461, - 0.5882730484008789, - 0.5542588233947754, - 0.5230408310890198, - 0.4954708218574524, - 0.4723007082939148, - 0.45416247844696045, - 0.44155097007751465, - 0.43481019139289856, - 0.4341239631175995, - 0.4395110011100769, - 0.45082443952560425, - 0.46775564551353455, - 0.4898427128791809, - 0.5164832472801208, - 0.5469505786895752, - 0.5804135203361511, - 0.6159593462944031, - 0.6526185274124146, - 0.6609283089637756, - 0.6419309377670288, - 0.623338520526886, - 0.6056580543518066, - 0.589371919631958, - 0.5749242901802063, - 0.5627093315124512, - 0.5530601739883423, - 0.5462400317192078, - 0.5424349308013916, - 0.5417487621307373, - 0.5442001223564148, - 0.5497221350669861, - 0.5581642985343933, - 0.5692962408065796, - 0.5828143358230591, - 0.5983498096466064, - 0.6154789924621582, - 0.6337345242500305, - 0.6526185274124146, - 0.6609283089637756, - 0.6617586612701416, - 0.6624530553817749, - 0.662992537021637, - 0.6633623838424683, - 0.663552463054657, - 0.6635576486587524, - 0.6633777618408203, - 0.663017749786377, - 0.6624873876571655, - 0.6618012189865112, - 0.660977840423584, - 0.6600397825241089, - 0.6590126156806946, - 0.6579244136810303, - 0.6568048000335693, - 0.6556842923164368, - 0.6545935273170471, - 0.6535621881484985, - 0.6526184678077698, - 0.6609282493591309, - 0.6814901828765869, - 0.7013779282569885, - 0.7200489640235901, - 0.7369940280914307, - 0.7517508268356323, - 0.7639169096946716, - 0.7731603980064392, - 0.7792291641235352, - 0.7819576263427734, - 0.7812713980674744, - 0.7771892547607422, - 0.7698224186897278, - 0.7593718767166138, - 0.7461227774620056, - 0.7304364442825317, - 0.7127407193183899, - 0.6935184001922607, - 0.6732937693595886, - 0.6526184678077698, - 0.6609282493591309, - 0.6989874243736267, - 0.735895037651062, - 0.77064448595047, - 0.8022878170013428, - 0.8299618363380432, - 0.8529117703437805, - 0.870511531829834, - 0.8822811245918274, - 0.8878993988037109, - 0.8872132301330566, - 0.8802411556243896, - 0.8671735525131226, - 0.8483667373657227, - 0.8243337869644165, - 0.7957302331924438, - 0.7633362412452698, - 0.7280355095863342, - 0.6907909512519836, - 0.6526184678077698, - 0.6609282493591309, - 0.7123541831970215, - 0.7622640132904053, - 0.8092963695526123, - 0.8521682024002075, - 0.8897102475166321, - 0.9208983778953552, - 0.9448818564414978, - 0.9610065221786499, - 0.9688324332237244, - 0.9681462049484253, - 0.9589666128158569, - 0.9415438771247864, - 0.9163533449172974, - 0.8840821981430054, - 0.8456106781959534, - 0.8019881248474121, - 0.7544044852256775, - 0.7041577100753784, - 0.6526184678077698, - 0.6609282493591309, - 0.7201420068740845, - 0.7776272892951965, - 0.8318159580230713, - 0.8812298774719238, - 0.9245212078094482, - 0.960509181022644, - 0.9882119297981262, - 1.0068739652633667, - 1.0159860849380493, - 1.015299916267395, - 1.0048340559005737, - 0.9848739504814148, - 0.9559641480445862, - 0.9188932180404663, - 0.8746722936630249, - 0.8245077133178711, - 0.7697677612304688, - 0.7119455933570862, - 0.6526184678077698, - 0.6609282493591309, - 0.7215070128440857, - 0.7803199887275696, - 0.8357629179954529, - 0.8863234519958496, - 0.9306225180625916, - 0.9674516916275024, - 0.9958063364028931, - 1.0149130821228027, - 1.0242507457733154, - 1.0235644578933716, - 1.0128731727600098, - 0.9924683570861816, - 0.9629067182540894, - 0.9249944686889648, - 0.8797659277915955, - 0.8284546732902527, - 0.7724604606628418, - 0.7133105397224426, - 0.6526184678077698, - 0.6609282493591309, - 0.7163012027740479, - 0.7700503468513489, - 0.8207095861434937, - 0.8668971061706543, - 0.9073529243469238, - 0.9409736394882202, - 0.9668421149253845, - 0.9842526912689209, - 0.9927305579185486, - 0.9920443296432495, - 0.9822127819061279, - 0.9635041356086731, - 0.9364286661148071, - 0.9017248749732971, - 0.8603395223617554, - 0.8134013414382935, - 0.7621908187866211, - 0.7081047296524048, - 0.6526184678077698 - ], - "z": [ - 1.5458511114120483, - 1.5150257349014282, - 1.4847816228866577, - 1.4559439420700073, - 1.4292991161346436, - 1.405574083328247, - 1.3854159116744995, - 1.3693745136260986, - 1.3578873872756958, - 1.35126793384552, - 1.3496967554092407, - 1.3532166481018066, - 1.3617315292358398, - 1.375009298324585, - 1.3926876783370972, - 1.414284348487854, - 1.4392104148864746, - 1.4667859077453613, - 1.4962584972381592, - 1.5268243551254272, - 1.5458511114120483, - 1.5132169723510742, - 1.4812135696411133, - 1.4507137537002563, - 1.4225496053695679, - 1.3974891901016235, - 1.3762162923812866, - 1.3593111038208008, - 1.3472347259521484, - 1.3403165340423584, - 1.338745355606079, - 1.3425638675689697, - 1.351668119430542, - 1.365809679031372, - 1.3846027851104736, - 1.4075348377227783, - 1.4339802265167236, - 1.4632177352905273, - 1.4944497346878052, - 1.5268243551254272, - 1.5458511114120483, - 1.5149306058883667, - 1.4845941066741943, - 1.4556689262390137, - 1.4289442300796509, - 1.405148983001709, - 1.3849321603775024, - 1.3688453435897827, - 1.3573272228240967, - 1.3506921529769897, - 1.3491209745407104, - 1.3526564836502075, - 1.3612024784088135, - 1.374525547027588, - 1.392262578010559, - 1.4139294624328613, - 1.4389355182647705, - 1.4665982723236084, - 1.4961633682250977, - 1.5268243551254272, - 1.5458511114120483, - 1.5199809074401855, - 1.4945569038391113, - 1.4702725410461426, - 1.447790265083313, - 1.4277232885360718, - 1.4106191396713257, - 1.3969441652297974, - 1.3870714902877808, - 1.3812705278396606, - 1.3796992301940918, - 1.3824007511138916, - 1.3893011808395386, - 1.4002125263214111, - 1.4148368835449219, - 1.4327754974365234, - 1.4535390138626099, - 1.4765610694885254, - 1.5012136697769165, - 1.5268243551254272, - 1.5458511114120483, - 1.5278205871582031, - 1.5100222826004028, - 1.4929418563842773, - 1.4770451784133911, - 1.4627659320831299, - 1.4504934549331665, - 1.4405624866485596, - 1.4332441091537476, - 1.4287378787994385, - 1.4271667003631592, - 1.4285733699798584, - 1.4329196214675903, - 1.440086841583252, - 1.4498794078826904, - 1.4620305299758911, - 1.4762084484100342, - 1.4920265674591064, - 1.509053349494934, - 1.5268243551254272, - 1.5458511114120483, - 1.537600040435791, - 1.5293145179748535, - 1.5212205648422241, - 1.5135390758514404, - 1.5064793825149536, - 1.5002341270446777, - 1.4949737787246704, - 1.4908416271209717, - 1.4879505634307861, - 1.4863793849945068, - 1.4861708879470825, - 1.4873307943344116, - 1.4898275136947632, - 1.4935929775238037, - 1.4985243082046509, - 1.504487156867981, - 1.5113188028335571, - 1.518832802772522, - 1.5268243551254272, - 1.5458511114120483, - 1.5482596158981323, - 1.5503429174423218, - 1.552044153213501, - 1.5533169507980347, - 1.5541267395019531, - 1.5544511079788208, - 1.55428147315979, - 1.5536223649978638, - 1.5524919033050537, - 1.5509206056594849, - 1.5489516258239746, - 1.5466386079788208, - 1.5440444946289062, - 1.5412402153015137, - 1.5383023023605347, - 1.5353106260299683, - 1.5323470830917358, - 1.5294923782348633, - 1.5268243551254272, - 1.5458511114120483, - 1.5586440563201904, - 1.5708285570144653, - 1.5820722579956055, - 1.5920685529708862, - 1.6005444526672363, - 1.6072691679000854, - 1.6120588779449463, - 1.6147831678390503, - 1.6153677701950073, - 1.6137964725494385, - 1.6101124286651611, - 1.604416012763977, - 1.5968624353408813, - 1.5876580476760864, - 1.5770537853240967, - 1.5653388500213623, - 1.552832841873169, - 1.5398768186569214, - 1.5268243551254272, - 1.5458511114120483, - 1.5676281452178955, - 1.5885517597198486, - 1.608051061630249, - 1.6255942583084106, - 1.640702724456787, - 1.652964472770691, - 1.662044882774353, - 1.667696237564087, - 1.6697646379470825, - 1.6681933403015137, - 1.6630254983901978, - 1.6544018983840942, - 1.6425578594207764, - 1.6278163194656372, - 1.610579490661621, - 1.5913176536560059, - 1.5705560445785522, - 1.548861026763916, - 1.5268243551254272, - 1.5458511114120483, - 1.5742383003234863, - 1.6015918254852295, - 1.6271653175354004, - 1.6502612829208374, - 1.6702497005462646, - 1.6865853071212769, - 1.6988226175308228, - 1.7066277265548706, - 1.7097877264022827, - 1.7082165479660034, - 1.7019569873809814, - 1.691179633140564, - 1.6761786937713623, - 1.6573631763458252, - 1.6352465152740479, - 1.6104317903518677, - 1.5835959911346436, - 1.5554711818695068, - 1.5268243551254272, - 1.5458511114120483, - 1.5777583122253418, - 1.608535647392273, - 1.6373435258865356, - 1.6633963584899902, - 1.6859833002090454, - 1.7044883966445923, - 1.7184066772460938, - 1.7273585796356201, - 1.731100082397461, - 1.729528784751892, - 1.722687840461731, - 1.7107638120651245, - 1.6940817832946777, - 1.6730968952178955, - 1.6483815908432007, - 1.6206101179122925, - 1.590539813041687, - 1.5589910745620728, - 1.5268243551254272, - 1.5458511114120483, - 1.5778064727783203, - 1.608630657196045, - 1.63748300075531, - 1.6635762453079224, - 1.6861988306045532, - 1.7047336101531982, - 1.718674898147583, - 1.72764253616333, - 1.7313919067382812, - 1.729820728302002, - 1.722971796989441, - 1.7110319137573242, - 1.6943269968032837, - 1.6733124256134033, - 1.6485614776611328, - 1.6207494735717773, - 1.5906349420547485, - 1.5590392351150513, - 1.5268243551254272, - 1.5458511114120483, - 1.5743777751922607, - 1.6018668413162231, - 1.6275683641433716, - 1.6507813930511475, - 1.6708728075027466, - 1.6872942447662354, - 1.6995981931686401, - 1.7074487209320068, - 1.7106318473815918, - 1.709060549736023, - 1.7027779817581177, - 1.6919552087783813, - 1.6768877506256104, - 1.6579864025115967, - 1.6357667446136475, - 1.6108348369598389, - 1.5838710069656372, - 1.5556105375289917, - 1.5268243551254272, - 1.5458511114120483, - 1.5678436756134033, - 1.5889768600463867, - 1.608674168586731, - 1.6263983249664307, - 1.6416659355163574, - 1.6540603637695312, - 1.6632437705993652, - 1.6689653396606445, - 1.6710692644119263, - 1.669498085975647, - 1.6642946004867554, - 1.6556007862091064, - 1.6436538696289062, - 1.6287795305252075, - 1.6113836765289307, - 1.5919407606124878, - 1.5709810256958008, - 1.5490764379501343, - 1.5268243551254272, - 1.5458511114120483, - 1.5589122772216797, - 1.5713577270507812, - 1.5828479528427124, - 1.5930694341659546, - 1.601743459701538, - 1.6086333990097046, - 1.6135512590408325, - 1.6163629293441772, - 1.6169917583465576, - 1.6154205799102783, - 1.611692190170288, - 1.6059082746505737, - 1.59822678565979, - 1.5888570547103882, - 1.578054666519165, - 1.5661144256591797, - 1.5533618927001953, - 1.5401450395584106, - 1.5268243551254272, - 1.5458511114120483, - 1.5485514402389526, - 1.550918698310852, - 1.5528881549835205, - 1.5544062852859497, - 1.5554314851760864, - 1.5559358596801758, - 1.5559055805206299, - 1.5553416013717651, - 1.554259181022644, - 1.5526880025863647, - 1.550670862197876, - 1.548262596130371, - 1.5455291271209717, - 1.542544960975647, - 1.5393915176391602, - 1.5361547470092773, - 1.5329229831695557, - 1.5297843217849731, - 1.5268243551254272, - 1.5458511114120483, - 1.537883996963501, - 1.5298746824264526, - 1.52204167842865, - 1.5145986080169678, - 1.5077484846115112, - 1.501678228378296, - 1.4965534210205078, - 1.49251389503479, - 1.489669680595398, - 1.4880985021591187, - 1.4878431558609009, - 1.4889105558395386, - 1.4912716150283813, - 1.4948620796203613, - 1.4995838403701782, - 1.5053081512451172, - 1.5118788480758667, - 1.519116759300232, - 1.5268243551254272, - 1.5458511114120483, - 1.5280656814575195, - 1.5105060338974, - 1.4936509132385254, - 1.477960228919983, - 1.4638619422912598, - 1.4517405033111572, - 1.4419267177581787, - 1.4346882104873657, - 1.430222511291504, - 1.4286513328552246, - 1.4300174713134766, - 1.43428373336792, - 1.4413338899612427, - 1.4509754180908203, - 1.4629454612731934, - 1.4769173860549927, - 1.492510199546814, - 1.50929856300354, - 1.5268243551254272, - 1.5458511114120483, - 1.5201607942581177, - 1.4949116706848145, - 1.4707926511764526, - 1.4484615325927734, - 1.4285273551940918, - 1.411534070968628, - 1.3979450464248657, - 1.388131022453308, - 1.3823596239089966, - 1.3807884454727173, - 1.383460283279419, - 1.390302062034607, - 1.4011274576187134, - 1.415640950202942, - 1.4334467649459839, - 1.45405912399292, - 1.476915955543518, - 1.5013935565948486, - 1.5268243551254272, - 1.5458511114120483, - 1.5150257349014282, - 1.4847816228866577, - 1.4559439420700073, - 1.4292991161346436, - 1.405574083328247, - 1.3854159116744995, - 1.3693745136260986, - 1.3578873872756958, - 1.35126793384552, - 1.3496967554092407, - 1.3532166481018066, - 1.3617315292358398, - 1.375009298324585, - 1.3926875591278076, - 1.414284348487854, - 1.4392104148864746, - 1.4667859077453613, - 1.4962584972381592, - 1.5268243551254272 - ] - }, - { - "marker": { - "color": "black", - "size": 2 - }, - "mode": "markers", - "name": "Means", - "type": "scatter3d", - "x": [ - 0.46296361088752747, - 0.4355328679084778, - 0.4060497283935547, - 0.3576173782348633, - 0.3000487983226776, - 0.24716532230377197, - 0.2019001692533493, - 0.16386692225933075, - 0.13192622363567352, - 0.10493733733892441, - 0.08194025605916977, - 0.0621693953871727, - 0.04502444341778755, - 0.030035346746444702, - 0.016832435503602028 - ], - "y": [ - 0.43206942081451416, - 0.4494422376155853, - 0.4678027629852295, - 0.46253645420074463, - 0.4381055533885956, - 0.4100736975669861, - 0.3836842477321625, - 0.3603002429008484, - 0.339982271194458, - 0.3224027156829834, - 0.3071594834327698, - 0.29387781023979187, - 0.2822372317314148, - 0.271972119808197, - 0.26286542415618896 - ], - "z": [ - -0.2026686668395996, - -0.4970816969871521, - -0.8112972378730774, - -1.074846625328064, - -1.258541464805603, - -1.3874329328536987, - -1.480672836303711, - -1.5503826141357422, - -1.6040781736373901, - -1.646514654159546, - -1.6807940006256104, - -1.70900297164917, - -1.7325884103775024, - -1.7525793313980103, - -1.76972496509552 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.4774506688117981, - 0.4878585636615753, - 0.4975874125957489, - 0.506371796131134, - 0.5139721035957336, - 0.5201810598373413, - 0.5248292088508606, - 0.5277898907661438, - 0.5289822816848755, - 0.5283738374710083, - 0.5259811878204346, - 0.5218695402145386, - 0.5161511301994324, - 0.5089818835258484, - 0.5005574226379395, - 0.49110743403434753, - 0.48088979721069336, - 0.4701831638813019, - 0.4592795968055725, - 0.44847652316093445, - 0.4774506688117981, - 0.48696497082710266, - 0.4958246052265167, - 0.5037878155708313, - 0.5106375217437744, - 0.5161867737770081, - 0.5202842354774475, - 0.5228181481361389, - 0.5237193703651428, - 0.522963285446167, - 0.5205706357955933, - 0.5166066288948059, - 0.5111793279647827, - 0.5044368505477905, - 0.4965631067752838, - 0.4877728521823883, - 0.478305846452713, - 0.4684203565120697, - 0.45838600397109985, - 0.44847652316093445, - 0.4774506688117981, - 0.4850189685821533, - 0.49198561906814575, - 0.4981606602668762, - 0.5033755898475647, - 0.5074881911277771, - 0.5103862881660461, - 0.5119907855987549, - 0.512257993221283, - 0.511180579662323, - 0.5087878704071045, - 0.505145251750946, - 0.5003520250320435, - 0.49453893303871155, - 0.48786455392837524, - 0.4805109202861786, - 0.47267866134643555, - 0.46458137035369873, - 0.4564399719238281, - 0.44847652316093445, - 0.4774506688117981, - 0.48223137855529785, - 0.4864864945411682, - 0.4900999963283539, - 0.492973268032074, - 0.49502795934677124, - 0.4962080121040344, - 0.4964812397956848, - 0.4958402216434479, - 0.4943023920059204, - 0.4919097125530243, - 0.48872748017311096, - 0.4848424792289734, - 0.48036065697669983, - 0.475404292345047, - 0.47010859847068787, - 0.4646179974079132, - 0.4590822756290436, - 0.45365241169929504, - 0.44847655296325684, - 0.4774506688117981, - 0.4789043366909027, - 0.47992315888404846, - 0.48047935962677, - 0.48055779933929443, - 0.4801563024520874, - 0.4792858362197876, - 0.477970153093338, - 0.47624513506889343, - 0.47415781021118164, - 0.4717651307582855, - 0.4691323935985565, - 0.4663313627243042, - 0.463438481092453, - 0.46053266525268555, - 0.4576931297779083, - 0.45499736070632935, - 0.45251891016960144, - 0.4503253698348999, - 0.44847655296325684, - 0.4774506688117981, - 0.47539833188056946, - 0.47300681471824646, - 0.4703413248062134, - 0.4674746096134186, - 0.464484840631485, - 0.46145355701446533, - 0.45846349000930786, - 0.4555961787700653, - 0.4529297947883606, - 0.45053714513778687, - 0.4484834372997284, - 0.44682469964027405, - 0.44560620188713074, - 0.44486117362976074, - 0.44460994005203247, - 0.4448593258857727, - 0.44560256600379944, - 0.44681936502456665, - 0.44847655296325684, - 0.4774506688117981, - 0.4720933437347412, - 0.46648696064949036, - 0.4607844948768616, - 0.45514145493507385, - 0.44971176981925964, - 0.4446435868740082, - 0.4400750994682312, - 0.43613097071647644, - 0.4329187572002411, - 0.43052610754966736, - 0.4290182590484619, - 0.4284363389015198, - 0.4287962317466736, - 0.4300881326198578, - 0.43227678537368774, - 0.4353024959564209, - 0.4390827417373657, - 0.4435143768787384, - 0.44847655296325684, - 0.4774506986141205, - 0.4693474769592285, - 0.46107015013694763, - 0.4528444707393646, - 0.44489482045173645, - 0.437438040971756, - 0.43067750334739685, - 0.4247976839542389, - 0.4199588894844055, - 0.416293203830719, - 0.4139005243778229, - 0.412846177816391, - 0.4131588935852051, - 0.41483014822006226, - 0.41781437397003174, - 0.42203015089035034, - 0.42736247181892395, - 0.4336659014225006, - 0.4407685101032257, - 0.44847655296325684, - 0.4774506986141205, - 0.4674583375453949, - 0.45734336972236633, - 0.4473817050457001, - 0.4378450810909271, - 0.4289936423301697, - 0.42106878757476807, - 0.414286732673645, - 0.4088324308395386, - 0.4048547148704529, - 0.40246206521987915, - 0.40171971917152405, - 0.4026479423046112, - 0.40522143244743347, - 0.40936997532844543, - 0.414980411529541, - 0.4218997061252594, - 0.4299391210079193, - 0.4388793408870697, - 0.44847655296325684, - 0.4774506986141205, - 0.46663057804107666, - 0.45571044087409973, - 0.4449881613254547, - 0.43475621938705444, - 0.4252936840057373, - 0.4168586730957031, - 0.4096812903881073, - 0.403957337141037, - 0.39984288811683655, - 0.3974502384662628, - 0.3968445956707001, - 0.3980425000190735, - 0.40101131796836853, - 0.40567001700401306, - 0.41189152002334595, - 0.41950616240501404, - 0.4283061921596527, - 0.43805161118507385, - 0.44847655296325684, - 0.4774506986141205, - 0.46695396304130554, - 0.45634835958480835, - 0.44592323899269104, - 0.4359629154205322, - 0.4267390966415405, - 0.41850340366363525, - 0.41148045659065247, - 0.40586185455322266, - 0.40180081129074097, - 0.39940816164016724, - 0.39874911308288574, - 0.39984166622161865, - 0.40265604853630066, - 0.40711545944213867, - 0.4130982458591461, - 0.42044124007225037, - 0.42894411087036133, - 0.43837496638298035, - 0.44847655296325684, - 0.4774506986141205, - 0.46839338541030884, - 0.45918798446655273, - 0.4500855803489685, - 0.44133442640304565, - 0.4331732988357544, - 0.42582473158836365, - 0.4194892346858978, - 0.4143396019935608, - 0.41051632165908813, - 0.408123642206192, - 0.40722689032554626, - 0.4078504741191864, - 0.40997737646102905, - 0.41354963183403015, - 0.41846975684165955, - 0.42460358142852783, - 0.4317837357521057, - 0.43981441855430603, - 0.44847655296325684, - 0.4774506688117981, - 0.4707929193973541, - 0.46392157673835754, - 0.45702412724494934, - 0.45028868317604065, - 0.4438989758491516, - 0.43802928924560547, - 0.4328397512435913, - 0.4284719228744507, - 0.4250449538230896, - 0.4226522743701935, - 0.42135918140411377, - 0.4212009906768799, - 0.4221819341182709, - 0.42427530884742737, - 0.42742401361465454, - 0.43154212832450867, - 0.4365173280239105, - 0.4422139525413513, - 0.44847655296325684, - 0.4774506688117981, - 0.4738925099372864, - 0.47003620862960815, - 0.4659869968891144, - 0.46185532212257385, - 0.45775386691093445, - 0.45379453897476196, - 0.450085312128067, - 0.44672736525535583, - 0.4438123106956482, - 0.4414196312427521, - 0.4396146237850189, - 0.4384465217590332, - 0.43794718384742737, - 0.4381302297115326, - 0.43899065256118774, - 0.4405049979686737, - 0.44263195991516113, - 0.44531354308128357, - 0.44847655296325684, - 0.4774506688117981, - 0.4773562550544739, - 0.47686925530433655, - 0.47600293159484863, - 0.47478094696998596, - 0.4732365906238556, - 0.4714120328426361, - 0.4693570137023926, - 0.46712759137153625, - 0.4647845923900604, - 0.4623919427394867, - 0.46001487970352173, - 0.45771822333335876, - 0.4555646777153015, - 0.45361292362213135, - 0.45191627740859985, - 0.45052093267440796, - 0.4494650065898895, - 0.44877728819847107, - 0.44847655296325684, - 0.4774506688117981, - 0.4808088541030884, - 0.48368024826049805, - 0.48598653078079224, - 0.4876648187637329, - 0.48866933584213257, - 0.48897263407707214, - 0.488566517829895, - 0.48746198415756226, - 0.4856892228126526, - 0.48329654335975647, - 0.48034927248954773, - 0.4769277274608612, - 0.47312527894973755, - 0.4690456688404083, - 0.4648001492023468, - 0.46050453186035156, - 0.456275999546051, - 0.4522298574447632, - 0.44847655296325684, - 0.4774506688117981, - 0.48387610912323, - 0.489731103181839, - 0.49485594034194946, - 0.4991108477115631, - 0.5023797154426575, - 0.5045734643936157, - 0.5056321620941162, - 0.5055270195007324, - 0.5042608380317688, - 0.5018681883811951, - 0.4984142780303955, - 0.4939934015274048, - 0.48872610926628113, - 0.4827560782432556, - 0.476246178150177, - 0.4693739414215088, - 0.46232685446739197, - 0.4552971422672272, - 0.44847652316093445, - 0.4774506688117981, - 0.4862256646156311, - 0.4943661093711853, - 0.5016499757766724, - 0.5078786015510559, - 0.5128820538520813, - 0.5165238380432129, - 0.5187046527862549, - 0.5193650126457214, - 0.5184868574142456, - 0.5160942077636719, - 0.5122523307800293, - 0.5070658922195435, - 0.5006765127182007, - 0.49325841665267944, - 0.4850139319896698, - 0.4761680066585541, - 0.4669618606567383, - 0.4576466977596283, - 0.44847652316093445, - 0.4774506688117981, - 0.4876028895378113, - 0.49708303809165955, - 0.5056324601173401, - 0.513018012046814, - 0.519038200378418, - 0.5235288143157959, - 0.5263673663139343, - 0.52747642993927, - 0.5268257856369019, - 0.5244331359863281, - 0.5203636884689331, - 0.5147286057472229, - 0.5076814889907837, - 0.4994145631790161, - 0.49015334248542786, - 0.4801504611968994, - 0.4696787893772125, - 0.45902392268180847, - 0.44847652316093445, - 0.4774506688117981, - 0.4878585636615753, - 0.4975874125957489, - 0.506371796131134, - 0.5139721035957336, - 0.5201810598373413, - 0.5248292088508606, - 0.5277898907661438, - 0.5289822816848755, - 0.5283738374710083, - 0.5259811282157898, - 0.5218695402145386, - 0.5161511301994324, - 0.5089818835258484, - 0.5005574226379395, - 0.49110743403434753, - 0.48088979721069336, - 0.4701831638813019, - 0.4592795968055725, - 0.44847652316093445 - ], - "y": [ - 0.42289426922798157, - 0.4240623414516449, - 0.42544886469841003, - 0.42701593041419983, - 0.4287208616733551, - 0.43051713705062866, - 0.43235576152801514, - 0.43418657779693604, - 0.4359596371650696, - 0.43762657046318054, - 0.4391419291496277, - 0.4404643774032593, - 0.44155779480934143, - 0.4423924386501312, - 0.4429454803466797, - 0.44320183992385864, - 0.44315454363822937, - 0.44280487298965454, - 0.4421623945236206, - 0.44124457240104675, - 0.42289426922798157, - 0.4274565577507019, - 0.4321446418762207, - 0.43683069944381714, - 0.441386878490448, - 0.4456889033317566, - 0.44961944222450256, - 0.4530712366104126, - 0.45595017075538635, - 0.45817768573760986, - 0.459693044424057, - 0.46045488119125366, - 0.460442453622818, - 0.45965608954429626, - 0.4581172466278076, - 0.45586785674095154, - 0.4529693126678467, - 0.4495006799697876, - 0.4455565810203552, - 0.44124457240104675, - 0.42289426922798157, - 0.43036991357803345, - 0.4378919005393982, - 0.4452551007270813, - 0.4522585868835449, - 0.4587113857269287, - 0.46443745493888855, - 0.4692806303501129, - 0.47310876846313477, - 0.4758174419403076, - 0.47733280062675476, - 0.47761350870132446, - 0.4766518473625183, - 0.47447413206100464, - 0.47113972902297974, - 0.46673956513404846, - 0.46139371395111084, - 0.4552479386329651, - 0.44846993684768677, - 0.44124457240104675, - 0.42289426922798157, - 0.43248671293258667, - 0.44206780195236206, - 0.45137616991996765, - 0.4601578712463379, - 0.46817338466644287, - 0.47520411014556885, - 0.4810582101345062, - 0.4855760335922241, - 0.4886343479156494, - 0.49014970660209656, - 0.4900807738304138, - 0.488429456949234, - 0.48524078726768494, - 0.4806017279624939, - 0.47463884949684143, - 0.4675147533416748, - 0.45942384004592896, - 0.4505867660045624, - 0.44124457240104675, - 0.42289426922798157, - 0.43357762694358826, - 0.44421982765197754, - 0.45453059673309326, - 0.46422868967056274, - 0.4730495810508728, - 0.4807526171207428, - 0.48712772130966187, - 0.4920009672641754, - 0.4952394366264343, - 0.49675479531288147, - 0.4965056777000427, - 0.49449893832206726, - 0.4907892942428589, - 0.48547789454460144, - 0.4787096679210663, - 0.4706692099571228, - 0.46157586574554443, - 0.4516776502132416, - 0.44124457240104675, - 0.42289426922798157, - 0.43352437019348145, - 0.4441147744655609, - 0.45437660813331604, - 0.4640299677848816, - 0.4728115200996399, - 0.48048174381256104, - 0.486831396818161, - 0.4916872978210449, - 0.49491697549819946, - 0.4964323341846466, - 0.4961920380592346, - 0.4942026436328888, - 0.4905184209346771, - 0.4852398633956909, - 0.47851094603538513, - 0.4705152213573456, - 0.4614708125591278, - 0.45162439346313477, - 0.44124457240104675, - 0.42289426922798157, - 0.43233272433280945, - 0.4417639970779419, - 0.4509308338165283, - 0.45958319306373596, - 0.4674850106239319, - 0.47442081570625305, - 0.4802013635635376, - 0.484669029712677, - 0.4877018928527832, - 0.48921725153923035, - 0.4891737699508667, - 0.4875726103782654, - 0.48445749282836914, - 0.4799133539199829, - 0.4740641713142395, - 0.46706944704055786, - 0.4591200351715088, - 0.45043274760246277, - 0.44124457240104675, - 0.42289426922798157, - 0.43013185262680054, - 0.4374222755432129, - 0.4445666968822479, - 0.4513702392578125, - 0.45764729380607605, - 0.46322664618492126, - 0.4679561257362366, - 0.47170668840408325, - 0.47437605261802673, - 0.4758914113044739, - 0.47621142864227295, - 0.47532737255096436, - 0.47326332330703735, - 0.4700756072998047, - 0.46585121750831604, - 0.46070531010627747, - 0.4547783136367798, - 0.44823187589645386, - 0.44124457240104675, - 0.42289426922798157, - 0.42716023325920105, - 0.43156009912490845, - 0.4359738826751709, - 0.4402811527252197, - 0.44436439871788025, - 0.4481123089790344, - 0.4514226019382477, - 0.4542049765586853, - 0.4563835561275482, - 0.45789891481399536, - 0.458709716796875, - 0.4587938189506531, - 0.4581489562988281, - 0.4567927420139313, - 0.4547621011734009, - 0.45211249589920044, - 0.44891613721847534, - 0.44526025652885437, - 0.44124457240104675, - 0.42289426922798157, - 0.42373988032341003, - 0.4248127341270447, - 0.426083505153656, - 0.4275175631046295, - 0.42907577753067017, - 0.4307156503200531, - 0.4323924481868744, - 0.4340604543685913, - 0.43567413091659546, - 0.4371894896030426, - 0.4385651648044586, - 0.4397636950016022, - 0.4407522976398468, - 0.4415040910243988, - 0.44199851155281067, - 0.44222211837768555, - 0.4421687722206116, - 0.44183993339538574, - 0.44124457240104675, - 0.42289426922798157, - 0.42024147510528564, - 0.4179113209247589, - 0.41596734523773193, - 0.4144625961780548, - 0.4134381413459778, - 0.41292187571525574, - 0.41292789578437805, - 0.4134560823440552, - 0.4144919514656067, - 0.41600731015205383, - 0.4179607927799225, - 0.42029914259910583, - 0.4229585528373718, - 0.4258664548397064, - 0.42894357442855835, - 0.4321059584617615, - 0.4352673590183258, - 0.43834149837493896, - 0.44124457240104675, - 0.42289426922798157, - 0.417044073343277, - 0.41160374879837036, - 0.40672168135643005, - 0.4025310277938843, - 0.39914608001708984, - 0.3966592252254486, - 0.3951382637023926, - 0.3946246802806854, - 0.39513248205184937, - 0.3966478407382965, - 0.39912939071655273, - 0.402509480714798, - 0.4066958725452423, - 0.41157442331314087, - 0.41701197624206543, - 0.4228602945804596, - 0.42895978689193726, - 0.4351441264152527, - 0.44124457240104675, - 0.42289426922798157, - 0.41449421644210815, - 0.4065735638141632, - 0.3993483781814575, - 0.3930157423019409, - 0.3877483904361725, - 0.3836899995803833, - 0.38095125555992126, - 0.3796069025993347, - 0.3796935975551605, - 0.38120895624160767, - 0.3841116428375244, - 0.38832250237464905, - 0.3937266767024994, - 0.4001767039299011, - 0.40749672055244446, - 0.41548699140548706, - 0.4239296019077301, - 0.4325942397117615, - 0.44124457240104675, - 0.42289426922798157, - 0.4128682017326355, - 0.4033658802509308, - 0.3946464955806732, - 0.3869479298591614, - 0.38048017024993896, - 0.37541961669921875, - 0.37190431356430054, - 0.3700301945209503, - 0.3698483109474182, - 0.37136366963386536, - 0.37453493475914, - 0.3792755603790283, - 0.38545629382133484, - 0.3929084837436676, - 0.4014289081096649, - 0.41078510880470276, - 0.4207219183444977, - 0.4309682250022888, - 0.44124457240104675, - 0.42289426922798157, - 0.4123421907424927, - 0.402328222990036, - 0.3931255340576172, - 0.3849851191043854, - 0.3781290352344513, - 0.3727443218231201, - 0.3689778447151184, - 0.36693233251571655, - 0.3666635751724243, - 0.36817893385887146, - 0.37143704295158386, - 0.3763490617275238, - 0.3827809989452362, - 0.39055734872817993, - 0.3994660973548889, - 0.40926414728164673, - 0.4196842610836029, - 0.4304422438144684, - 0.44124457240104675, - 0.42289426922798157, - 0.4129732549190521, - 0.4035731256008148, - 0.3949503004550934, - 0.3873400092124939, - 0.38094979524612427, - 0.3759540021419525, - 0.3724888861179352, - 0.37064898014068604, - 0.37048444151878357, - 0.3719998002052307, - 0.37515369057655334, - 0.3798601031303406, - 0.3859906494617462, - 0.3933781087398529, - 0.40182095766067505, - 0.4110889136791229, - 0.4209291636943817, - 0.43107327818870544, - 0.44124457240104675, - 0.42289426922798157, - 0.4146929681301117, - 0.4069656431674957, - 0.39992308616638184, - 0.3937573730945587, - 0.3886367380619049, - 0.38470083475112915, - 0.3820570111274719, - 0.38077741861343384, - 0.3808969259262085, - 0.38241228461265564, - 0.38528215885162354, - 0.3894282579421997, - 0.39473751187324524, - 0.40106505155563354, - 0.40823835134506226, - 0.4160616993904114, - 0.4243216812610626, - 0.432792991399765, - 0.44124457240104675, - 0.42289426922798157, - 0.41731497645378113, - 0.4121381342411041, - 0.40750497579574585, - 0.4035418629646301, - 0.4003569185733795, - 0.39803698658943176, - 0.3966453969478607, - 0.39622005820274353, - 0.3967726230621338, - 0.39828798174858093, - 0.4007247984409332, - 0.4040166139602661, - 0.40807366371154785, - 0.41278523206710815, - 0.41802284121513367, - 0.4236435890197754, - 0.429494172334671, - 0.43541499972343445, - 0.44124457240104675, - 0.42289426922798157, - 0.42055514454841614, - 0.41853010654449463, - 0.41687437891960144, - 0.41563311219215393, - 0.4148402214050293, - 0.41451728343963623, - 0.4146731197834015, - 0.41530346870422363, - 0.41639116406440735, - 0.4179065227508545, - 0.41980820894241333, - 0.4220443367958069, - 0.42455393075942993, - 0.42726853489875793, - 0.43011409044265747, - 0.433012992143631, - 0.4358861446380615, - 0.43865516781806946, - 0.44124457240104675, - 0.42289426922798157, - 0.4240623414516449, - 0.42544886469841003, - 0.4270159602165222, - 0.4287208914756775, - 0.43051716685295105, - 0.4323557913303375, - 0.43418657779693604, - 0.4359596371650696, - 0.43762657046318054, - 0.4391419291496277, - 0.4404643774032593, - 0.4415578246116638, - 0.4423924386501312, - 0.4429454803466797, - 0.44320183992385864, - 0.44315457344055176, - 0.44280490279197693, - 0.4421623945236206, - 0.44124457240104675 - ], - "z": [ - -0.047179609537124634, - -0.0502268522977829, - -0.057432323694229126, - -0.06859946250915527, - -0.08342364430427551, - -0.10150052607059479, - -0.12233702093362808, - -0.14536473155021667, - -0.1699555665254593, - -0.1954387128353119, - -0.22111909091472626, - -0.24629616737365723, - -0.27028322219848633, - -0.2924259305000305, - -0.312120258808136, - -0.3288290500640869, - -0.3420965373516083, - -0.3515607714653015, - -0.3569636344909668, - -0.3581577241420746, - -0.047179609537124634, - -0.049943313002586365, - -0.05687296390533447, - -0.06777957081794739, - -0.08236555755138397, - -0.10023311525583267, - -0.12089485675096512, - -0.14378716051578522, - -0.16828560829162598, - -0.1937219351530075, - -0.21940229833126068, - -0.2446262240409851, - -0.2687056362628937, - -0.29098373651504517, - -0.31085285544395447, - -0.32777097821235657, - -0.3412766456604004, - -0.35100144147872925, - -0.35668009519577026, - -0.3581577241420746, - -0.047179609537124634, - -0.049590080976486206, - -0.05617615580558777, - -0.0667581707239151, - -0.0810474380850792, - -0.09865422546863556, - -0.11909826844930649, - -0.14182187616825104, - -0.16620522737503052, - -0.19158321619033813, - -0.2172635942697525, - -0.24254584312438965, - -0.2667403519153595, - -0.28918716311454773, - -0.30927395820617676, - -0.3264528512954712, - -0.3402552306652069, - -0.35030460357666016, - -0.3563268780708313, - -0.3581577241420746, - -0.047179609537124634, - -0.04920545220375061, - -0.055417388677597046, - -0.06564594805240631, - -0.0796121209859848, - -0.0969349592924118, - -0.11714193969964981, - -0.1396818459033966, - -0.16393989324569702, - -0.18925435841083527, - -0.21493473649024963, - -0.24028050899505615, - -0.26460033655166626, - -0.28723084926605225, - -0.307554692029953, - -0.3250175416469574, - -0.3391430377960205, - -0.34954583644866943, - -0.3559422492980957, - -0.3581577241420746, - -0.047179609537124634, - -0.04883110523223877, - -0.054678887128829956, - -0.06456345319747925, - -0.07821514457464218, - -0.09526161849498749, - -0.11523787677288055, - -0.13759900629520416, - -0.16173508763313293, - -0.1869877129793167, - -0.21266809105873108, - -0.23807570338249207, - -0.2625174820423126, - -0.2853267788887024, - -0.3058813512325287, - -0.3236205577850342, - -0.33806049823760986, - -0.34880733489990234, - -0.3555678725242615, - -0.3581577241420746, - -0.047179609537124634, - -0.04850758612155914, - -0.054040685296058655, - -0.06362795829772949, - -0.07700788974761963, - -0.09381553530693054, - -0.11359240859746933, - -0.13579903542995453, - -0.15982970595359802, - -0.18502891063690186, - -0.21070927381515503, - -0.23617032170295715, - -0.260717511177063, - -0.28368130326271057, - -0.30443525314331055, - -0.3224133253097534, - -0.3371250331401825, - -0.34816914796829224, - -0.35524436831474304, - -0.3581577241420746, - -0.047179609537124634, - -0.04826997220516205, - -0.05357193946838379, - -0.06294086575508118, - -0.07612119615077972, - -0.09275342524051666, - -0.11238384991884232, - -0.13447698950767517, - -0.15843024849891663, - -0.18359020352363586, - -0.20927058160305023, - -0.23477086424827576, - -0.2593954801559448, - -0.28247275948524475, - -0.30337315797805786, - -0.3215266168117523, - -0.3364379405975342, - -0.34770041704177856, - -0.35500675439834595, - -0.3581577241420746, - -0.047179609537124634, - -0.048144012689590454, - -0.053323447704315186, - -0.06257663667201996, - -0.0756511390209198, - -0.09219037741422653, - -0.11174316704273224, - -0.13377615809440613, - -0.15768836438655853, - -0.18282753229141235, - -0.20850789546966553, - -0.23402898013591766, - -0.2586946487426758, - -0.2818320691585541, - -0.30281010270118713, - -0.3210565447807312, - -0.33607369661331177, - -0.34745192527770996, - -0.35488080978393555, - -0.3581577241420746, - -0.047179609537124634, - -0.04814334213733673, - -0.05332213640213013, - -0.06257471442222595, - -0.07564866542816162, - -0.09218740463256836, - -0.11173978447914124, - -0.13377246260643005, - -0.15768444538116455, - -0.18282349407672882, - -0.2085038721561432, - -0.23402506113052368, - -0.2586909532546997, - -0.28182870149612427, - -0.30280715227127075, - -0.321054071187973, - -0.33607178926467896, - -0.3474505841732025, - -0.35488012433052063, - -0.3581577241420746, - -0.047179609537124634, - -0.04826804995536804, - -0.05356813967227936, - -0.06293530762195587, - -0.07611402869224548, - -0.09274483472108841, - -0.11237407475709915, - -0.13446630537509918, - -0.1584189236164093, - -0.18357856571674347, - -0.20925894379615784, - -0.23475953936576843, - -0.25938478112220764, - -0.2824629545211792, - -0.3033645749092102, - -0.3215194344520569, - -0.33643239736557007, - -0.34769660234451294, - -0.35500484704971313, - -0.3581577241420746, - -0.047179609537124634, - -0.04850462079048157, - -0.05403481423854828, - -0.06361937522888184, - -0.0769968032836914, - -0.09380225837230682, - -0.11357729882001877, - -0.13578251004219055, - -0.15981221199035645, - -0.18501092493534088, - -0.21069128811359406, - -0.23615282773971558, - -0.2607010006904602, - -0.28366619348526, - -0.304421991109848, - -0.3224022388458252, - -0.33711642026901245, - -0.34816327691078186, - -0.35524141788482666, - -0.3581577241420746, - -0.047179609537124634, - -0.0488273948431015, - -0.05467158555984497, - -0.06455275416374207, - -0.07820133864879608, - -0.09524508565664291, - -0.11521906405687332, - -0.13757842779159546, - -0.16171330213546753, - -0.18696531653404236, - -0.21264569461345673, - -0.23805391788482666, - -0.2624969184398651, - -0.28530797362327576, - -0.3058648109436035, - -0.3236067593097687, - -0.33804982900619507, - -0.34880006313323975, - -0.3555641770362854, - -0.3581577241420746, - -0.047179609537124634, - -0.04920142889022827, - -0.055409446358680725, - -0.06563431024551392, - -0.0795971006155014, - -0.09691696614027023, - -0.11712146550416946, - -0.13965946435928345, - -0.1639162003993988, - -0.18922999501228333, - -0.2149103581905365, - -0.24025681614875793, - -0.2645779550075531, - -0.2872103750705719, - -0.30753669142723083, - -0.325002521276474, - -0.3391313850879669, - -0.3495379090309143, - -0.355938196182251, - -0.3581577241420746, - -0.047179609537124634, - -0.04958617687225342, - -0.056168437004089355, - -0.06674684584140778, - -0.08103282749652863, - -0.09863673150539398, - -0.11907835304737091, - -0.14180009067058563, - -0.16618217527866364, - -0.19155952334403992, - -0.2172398865222931, - -0.24252279102802277, - -0.2667185664176941, - -0.28916725516319275, - -0.3092564642429352, - -0.3264382481575012, - -0.3402439057826996, - -0.35029691457748413, - -0.3563229441642761, - -0.3581577241420746, - -0.047179609537124634, - -0.04993993043899536, - -0.05686630308628082, - -0.06776978075504303, - -0.08235294371843338, - -0.10021800547838211, - -0.12087766081094742, - -0.1437683403491974, - -0.1682656854391098, - -0.19370146095752716, - -0.21938182413578033, - -0.24460630118846893, - -0.26868683099746704, - -0.29096657037734985, - -0.3108377456665039, - -0.3277583718299866, - -0.3412668704986572, - -0.3509947657585144, - -0.35667669773101807, - -0.3581577241420746, - -0.047179609537124634, - -0.05022437870502472, - -0.05742742121219635, - -0.06859229505062103, - -0.08341439068317413, - -0.10148943960666656, - -0.1223243996500969, - -0.14535093307495117, - -0.16994094848632812, - -0.1954236924648285, - -0.22110407054424286, - -0.24628156423568726, - -0.2702694237232208, - -0.29241329431533813, - -0.31210917234420776, - -0.32881981134414673, - -0.34208935499191284, - -0.35155588388442993, - -0.3569611608982086, - -0.3581577241420746, - -0.047179609537124634, - -0.05040867626667023, - -0.05779100954532623, - -0.069125235080719, - -0.08410214632749557, - -0.10231325775384903, - -0.12326180934906006, - -0.1463763564825058, - -0.17102642357349396, - -0.19653961062431335, - -0.22221997380256653, - -0.2473670393228531, - -0.27129483222961426, - -0.2933506965637207, - -0.3129329979419708, - -0.3295075595378876, - -0.3426222801208496, - -0.3519194722175598, - -0.3571454584598541, - -0.3581577241420746, - -0.047179609537124634, - -0.05047287046909332, - -0.05791763961315155, - -0.06931084394454956, - -0.08434168249368668, - -0.10260017961263657, - -0.12358829379081726, - -0.14673349261283875, - -0.17140448093414307, - -0.1969282627105713, - -0.22260864078998566, - -0.2477450966835022, - -0.2716519832611084, - -0.2936772108078003, - -0.31321990489959717, - -0.3297470808029175, - -0.3428078889846802, - -0.35204610228538513, - -0.3572096526622772, - -0.3581577241420746, - -0.047179609537124634, - -0.050409987568855286, - -0.05779358744621277, - -0.06912901997566223, - -0.08410704135894775, - -0.10231912136077881, - -0.1232684776186943, - -0.1463836431503296, - -0.17103415727615356, - -0.19654755294322968, - -0.22222791612148285, - -0.2473747581243515, - -0.27130213379859924, - -0.29335737228393555, - -0.3129388689994812, - -0.32951244711875916, - -0.34262609481811523, - -0.35192203521728516, - -0.3571467697620392, - -0.3581577241420746, - -0.047179609537124634, - -0.0502268522977829, - -0.057432323694229126, - -0.06859946250915527, - -0.08342364430427551, - -0.10150052607059479, - -0.12233702093362808, - -0.14536473155021667, - -0.1699555665254593, - -0.1954387128353119, - -0.22111909091472626, - -0.24629616737365723, - -0.27028322219848633, - -0.2924259305000305, - -0.312120258808136, - -0.3288290500640869, - -0.3420965373516083, - -0.3515607714653015, - -0.3569636344909668, - -0.3581577241420746 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.45231112837791443, - 0.47188621759414673, - 0.49046969413757324, - 0.5075546503067017, - 0.5226750373840332, - 0.5354183912277222, - 0.5454371571540833, - 0.5524579882621765, - 0.5562894344329834, - 0.5568269491195679, - 0.5540558695793152, - 0.5480517745018005, - 0.5389784574508667, - 0.5270834565162659, - 0.5126911997795105, - 0.4961942136287689, - 0.4780425727367401, - 0.45873138308525085, - 0.4387873709201813, - 0.41875460743904114, - 0.45231112837791443, - 0.4718308448791504, - 0.49036043882369995, - 0.5073944926261902, - 0.5224683284759521, - 0.5351707935333252, - 0.54515540599823, - 0.5521498322486877, - 0.5559632182121277, - 0.5564916133880615, - 0.5537205338478088, - 0.5477255582809448, - 0.5386703610420227, - 0.5268017649650574, - 0.5124436020851135, - 0.49598753452301025, - 0.47788241505622864, - 0.4586220979690552, - 0.43873199820518494, - 0.41875460743904114, - 0.45231112837791443, - 0.46963539719581604, - 0.4860294461250305, - 0.5010460615158081, - 0.5142756700515747, - 0.5253573656082153, - 0.533988893032074, - 0.5399347543716431, - 0.5430328845977783, - 0.5431986451148987, - 0.540427565574646, - 0.5347952246665955, - 0.526455283164978, - 0.5156351923942566, - 0.5026301741600037, - 0.4877948760986328, - 0.47153398394584656, - 0.45429110527038574, - 0.4365365505218506, - 0.41875460743904114, - 0.45231112837791443, - 0.46553778648376465, - 0.477946013212204, - 0.489197313785553, - 0.49898478388786316, - 0.5070414543151855, - 0.5131475329399109, - 0.5171365141868591, - 0.5188995599746704, - 0.518388569355011, - 0.5156174898147583, - 0.5106619596481323, - 0.5036570429801941, - 0.4947938919067383, - 0.4843142628669739, - 0.47250398993492126, - 0.45968523621559143, - 0.4462076723575592, - 0.4324389398097992, - 0.41875460743904114, - 0.45231112837791443, - 0.45998209714889526, - 0.46698611974716187, - 0.4731322228908539, - 0.47825270891189575, - 0.48220789432525635, - 0.4848898947238922, - 0.48622560501098633, - 0.48617851734161377, - 0.4847499430179596, - 0.4819788634777069, - 0.4779408574104309, - 0.4727461040019989, - 0.4665362238883972, - 0.4594806730747223, - 0.45177191495895386, - 0.44362014532089233, - 0.4352478086948395, - 0.4268832504749298, - 0.41875460743904114, - 0.45231112837791443, - 0.45357030630111694, - 0.454337477684021, - 0.4545917212963104, - 0.4543260633945465, - 0.45354777574539185, - 0.45227810740470886, - 0.45055168867111206, - 0.4484155476093292, - 0.44592803716659546, - 0.4431569576263428, - 0.44017791748046875, - 0.43707218766212463, - 0.43392443656921387, - 0.4308205842971802, - 0.4278452694416046, - 0.4250796437263489, - 0.4225991666316986, - 0.4204714596271515, - 0.41875460743904114, - 0.45231112837791443, - 0.4469972848892212, - 0.44137072563171387, - 0.4355849325656891, - 0.4297977089881897, - 0.4241669178009033, - 0.4188461899757385, - 0.4139806032180786, - 0.4097028970718384, - 0.4061298072338104, - 0.40335872769355774, - 0.4014652669429779, - 0.4005011022090912, - 0.40049248933792114, - 0.40143972635269165, - 0.4033169150352478, - 0.40607285499572754, - 0.4096323847770691, - 0.41389843821525574, - 0.41875460743904114, - 0.45231112837791443, - 0.4409753084182739, - 0.4294910132884979, - 0.4181715250015259, - 0.4073256254196167, - 0.39724916219711304, - 0.38821694254875183, - 0.38047540187835693, - 0.3742356598377228, - 0.36966797709465027, - 0.3668968975543976, - 0.3659980297088623, - 0.3669959008693695, - 0.36986327171325684, - 0.374521940946579, - 0.3808448314666748, - 0.3886594772338867, - 0.39775270223617554, - 0.40787646174430847, - 0.41875460743904114, - 0.45231112837791443, - 0.4361569285392761, - 0.41998571157455444, - 0.40423858165740967, - 0.38934504985809326, - 0.37571144104003906, - 0.36370956897735596, - 0.35366690158843994, - 0.34585726261138916, - 0.3404937982559204, - 0.3377227187156677, - 0.3376196324825287, - 0.3401873707771301, - 0.34535589814186096, - 0.352984219789505, - 0.36286425590515137, - 0.3747265040874481, - 0.38824737071990967, - 0.40305808186531067, - 0.41875460743904114, - 0.45231112837791443, - 0.4330643117427826, - 0.41388484835624695, - 0.3952958583831787, - 0.3778044581413269, - 0.36188772320747375, - 0.3479798436164856, - 0.3364601731300354, - 0.32764294743537903, - 0.32176870107650757, - 0.3189976215362549, - 0.31940531730651855, - 0.322980672121048, - 0.3296261727809906, - 0.3391605019569397, - 0.351323664188385, - 0.36578381061553955, - 0.3821465075016022, - 0.39996546506881714, - 0.41875460743904114, - 0.45231112837791443, - 0.43203258514404297, - 0.4118495583534241, - 0.39231252670288086, - 0.3739544451236725, - 0.3572760224342346, - 0.3427322804927826, - 0.33071988821029663, - 0.32156652212142944, - 0.31552186608314514, - 0.31275078654289246, - 0.31332889199256897, - 0.3172403872013092, - 0.3243786096572876, - 0.33454883098602295, - 0.3474736213684082, - 0.3628004491329193, - 0.3801112174987793, - 0.3989337682723999, - 0.41875460743904114, - 0.45231112837791443, - 0.4331735670566559, - 0.41410037875175476, - 0.39561182260513306, - 0.37821218371391296, - 0.3623761236667633, - 0.34853556752204895, - 0.3370680809020996, - 0.32828643918037415, - 0.32243025302886963, - 0.31965917348861694, - 0.32004880905151367, - 0.3235885798931122, - 0.33018189668655396, - 0.33964890241622925, - 0.3517313599586487, - 0.3660997450351715, - 0.3823620676994324, - 0.40007472038269043, - 0.41875460743904114, - 0.45231112837791443, - 0.4363636076450348, - 0.4203934073448181, - 0.4048362076282501, - 0.39011630415916443, - 0.37663525342941284, - 0.36476078629493713, - 0.3548167943954468, - 0.3470745086669922, - 0.34174516797065735, - 0.33897408843040466, - 0.3388368785381317, - 0.34133729338645935, - 0.34640711545944214, - 0.35390806198120117, - 0.36363551020622253, - 0.3753241300582886, - 0.3886550962924957, - 0.40326476097106934, - 0.41875460743904114, - 0.45231112837791443, - 0.4412569999694824, - 0.4300467371940613, - 0.41898611187934875, - 0.40837687253952026, - 0.39850834012031555, - 0.38964974880218506, - 0.3820427358150482, - 0.37589478492736816, - 0.37137362360954285, - 0.36860254406929016, - 0.3676571547985077, - 0.3685632348060608, - 0.37129607796669006, - 0.3757811486721039, - 0.381896048784256, - 0.3894740641117096, - 0.3983084261417389, - 0.40815815329551697, - 0.41875460743904114, - 0.45231112837791443, - 0.4473234713077545, - 0.442014217376709, - 0.43652814626693726, - 0.4310149550437927, - 0.4256249964237213, - 0.4205052852630615, - 0.4157954752445221, - 0.41162407398223877, - 0.4081048369407654, - 0.4053337574005127, - 0.4033864438533783, - 0.40231597423553467, - 0.40215161442756653, - 0.40289777517318726, - 0.40453416109085083, - 0.4070160984992981, - 0.4102758765220642, - 0.41422462463378906, - 0.41875460743904114, - 0.45231112837791443, - 0.4539056420326233, - 0.45499899983406067, - 0.4555613696575165, - 0.45557743310928345, - 0.45504671335220337, - 0.45398372411727905, - 0.45241743326187134, - 0.4503905773162842, - 0.44795843958854675, - 0.44518736004829407, - 0.4421529471874237, - 0.4389379322528839, - 0.43563005328178406, - 0.4323195219039917, - 0.42909663915634155, - 0.4260493218898773, - 0.4232606887817383, - 0.42080679535865784, - 0.41875460743904114, - 0.45231112837791443, - 0.46029022336006165, - 0.4675940275192261, - 0.4740232825279236, - 0.4794026017189026, - 0.48358529806137085, - 0.4864572286605835, - 0.48794007301330566, - 0.48799341917037964, - 0.48661574721336365, - 0.48384466767311096, - 0.4797557592391968, - 0.4744606018066406, - 0.4681035578250885, - 0.4608581066131592, - 0.4529218077659607, - 0.44451120495796204, - 0.4358557164669037, - 0.4271913766860962, - 0.41875460743904114, - 0.45231112837791443, - 0.46578535437583923, - 0.47843438386917114, - 0.4899131655693054, - 0.4999086260795593, - 0.5081480741500854, - 0.5144067406654358, - 0.5185139179229736, - 0.5203576683998108, - 0.5198875665664673, - 0.5171164870262146, - 0.5121200084686279, - 0.5050344467163086, - 0.4960530698299408, - 0.4854208528995514, - 0.47342783212661743, - 0.46040111780166626, - 0.44669607281684875, - 0.4326865077018738, - 0.41875460743904114, - 0.45231112837791443, - 0.4697955548763275, - 0.4863453805446625, - 0.5015091896057129, - 0.5148733258247375, - 0.5260732173919678, - 0.5348035097122192, - 0.5408258438110352, - 0.5439761281013489, - 0.5441683530807495, - 0.5413972735404968, - 0.5357385277748108, - 0.5273463726043701, - 0.5164498090744019, - 0.5033460855484009, - 0.48839250206947327, - 0.47199711203575134, - 0.4546070694923401, - 0.43669670820236206, - 0.41875460743904114, - 0.45231112837791443, - 0.47188621759414673, - 0.49046969413757324, - 0.5075546503067017, - 0.5226750373840332, - 0.5354183912277222, - 0.5454371571540833, - 0.5524579882621765, - 0.5562894344329834, - 0.5568269491195679, - 0.5540558695793152, - 0.5480517745018005, - 0.5389784574508667, - 0.5270834565162659, - 0.5126911997795105, - 0.4961942434310913, - 0.4780425727367401, - 0.45873138308525085, - 0.4387873709201813, - 0.41875460743904114 - ], - "y": [ - 0.4388159513473511, - 0.43592721223831177, - 0.43340709805488586, - 0.43132442235946655, - 0.42973592877388, - 0.42868494987487793, - 0.42820021510124207, - 0.4282948970794678, - 0.4289664030075073, - 0.43019646406173706, - 0.43195149302482605, - 0.43418359756469727, - 0.4368319511413574, - 0.43982425332069397, - 0.4430789351463318, - 0.44650718569755554, - 0.45001548528671265, - 0.4535081684589386, - 0.45688992738723755, - 0.4600685238838196, - 0.4388159513473511, - 0.44254401326179504, - 0.4464602470397949, - 0.4504578113555908, - 0.45442768931388855, - 0.4582615792751312, - 0.46185487508773804, - 0.46510961651802063, - 0.4679369628429413, - 0.4702598452568054, - 0.4720148742198944, - 0.4731541574001312, - 0.4736466705799103, - 0.47347894310951233, - 0.4726555347442627, - 0.4711989462375641, - 0.4691489040851593, - 0.46656128764152527, - 0.4635067284107208, - 0.4600685238838196, - 0.4388159513473511, - 0.4487725496292114, - 0.45874741673469543, - 0.46846845746040344, - 0.47767049074172974, - 0.48610255122184753, - 0.4935346245765686, - 0.49976396560668945, - 0.5046206712722778, - 0.507972240447998, - 0.5097272396087646, - 0.5098378658294678, - 0.5083010196685791, - 0.5051586627960205, - 0.500496506690979, - 0.49444177746772766, - 0.48715952038764954, - 0.4788484573364258, - 0.4697352647781372, - 0.4600685238838196, - 0.4388159513473511, - 0.453937828540802, - 0.46893706917762756, - 0.4834045469760895, - 0.4969456195831299, - 0.5091909170150757, - 0.519806444644928, - 0.5285026431083679, - 0.5350422263145447, - 0.5392468571662903, - 0.5410019159317017, - 0.5402594208717346, - 0.5370396971702576, - 0.5314305424690247, - 0.5235849022865295, - 0.5137168765068054, - 0.502095639705658, - 0.4890381097793579, - 0.4749005436897278, - 0.4600685238838196, - 0.4388159513473511, - 0.45748013257980347, - 0.4759250283241272, - 0.49364757537841797, - 0.5101643204689026, - 0.5250247120857239, - 0.5378233790397644, - 0.5482112765312195, - 0.5559050440788269, - 0.560694694519043, - 0.5624497532844543, - 0.5611222386360168, - 0.5567483305931091, - 0.5494474768638611, - 0.5394186973571777, - 0.5269355773925781, - 0.5123386383056641, - 0.49602609872817993, - 0.47844284772872925, - 0.4600685238838196, - 0.4388159513473511, - 0.4590155780315399, - 0.4789540469646454, - 0.4980875253677368, - 0.5158941149711609, - 0.5318880081176758, - 0.54563307762146, - 0.5567542314529419, - 0.5649482607841492, - 0.5699915289878845, - 0.5717465877532959, - 0.5701654553413391, - 0.5652912855148315, - 0.5572571158409119, - 0.5462819933891296, - 0.5326653718948364, - 0.5167785882949829, - 0.49905508756637573, - 0.4799782931804657, - 0.4600685238838196, - 0.4388159513473511, - 0.45837777853012085, - 0.47769588232040405, - 0.49624329805374146, - 0.5135141015052795, - 0.5290371775627136, - 0.5423890948295593, - 0.5532057285308838, - 0.5611919164657593, - 0.5661298632621765, - 0.5678849220275879, - 0.5664091110229492, - 0.5617427825927734, - 0.554013192653656, - 0.5434311628341675, - 0.5302853584289551, - 0.5149343609809875, - 0.4977969229221344, - 0.47934049367904663, - 0.4600685238838196, - 0.4388159513473511, - 0.4556358754634857, - 0.4722868502140045, - 0.488314688205719, - 0.5032821893692017, - 0.5167810916900635, - 0.5284430980682373, - 0.5379502177238464, - 0.5450431108474731, - 0.549528181552887, - 0.5512832403182983, - 0.5502603054046631, - 0.5464872717857361, - 0.540067195892334, - 0.5311750173568726, - 0.5200534462928772, - 0.5070057511329651, - 0.49238789081573486, - 0.4765985906124115, - 0.4600685238838196, - 0.4388159513473511, - 0.45108696818351746, - 0.46331313252449036, - 0.4751609265804291, - 0.48630717396736145, - 0.4964478313922882, - 0.5053063035011292, - 0.5126410126686096, - 0.5182517766952515, - 0.5219855904579163, - 0.5237405896186829, - 0.5234689712524414, - 0.5211780667304993, - 0.5169304013252258, - 0.5108418464660645, - 0.5030784606933594, - 0.49385198950767517, - 0.4834141731262207, - 0.47204968333244324, - 0.4600685238838196, - 0.4388159513473511, - 0.44522401690483093, - 0.4517471492290497, - 0.4582073986530304, - 0.464428573846817, - 0.47024092078208923, - 0.47548598051071167, - 0.4800206124782562, - 0.48372113704681396, - 0.48648664355278015, - 0.48824167251586914, - 0.4889383316040039, - 0.4885576665401459, - 0.4871100187301636, - 0.4846349060535431, - 0.48119983077049255, - 0.4768984615802765, - 0.47184818983078003, - 0.4661867320537567, - 0.4600685238838196, - 0.4388159513473511, - 0.43868234753608704, - 0.4388422667980194, - 0.4392912983894348, - 0.4400172233581543, - 0.4410002529621124, - 0.4422135651111603, - 0.44362401962280273, - 0.44519320130348206, - 0.4468783140182495, - 0.4486333131790161, - 0.4504104256629944, - 0.45216110348701477, - 0.4538376033306122, - 0.4553942382335663, - 0.45678848028182983, - 0.4579823613166809, - 0.45894330739974976, - 0.4596450626850128, - 0.4600685238838196, - 0.4388159513473511, - 0.4321708679199219, - 0.42599689960479736, - 0.4204624891281128, - 0.41571852564811707, - 0.4118945002555847, - 0.4090946316719055, - 0.4073953926563263, - 0.40684303641319275, - 0.40745270252227783, - 0.4092077314853668, - 0.4120602309703827, - 0.41593244671821594, - 0.4207186996936798, - 0.4262884557247162, - 0.432489812374115, - 0.4391535520553589, - 0.4460979700088501, - 0.45313358306884766, - 0.4600685238838196, - 0.4388159513473511, - 0.4263952076435089, - 0.4146031141281128, - 0.4037613272666931, - 0.39416563510894775, - 0.3860777020454407, - 0.37971821427345276, - 0.375260591506958, - 0.372826486825943, - 0.3724822402000427, - 0.3742372691631317, - 0.37804368138313293, - 0.38379764556884766, - 0.39134225249290466, - 0.40047165751457214, - 0.4109368920326233, - 0.4224524199962616, - 0.43470415472984314, - 0.4473579227924347, - 0.4600685238838196, - 0.4388159513473511, - 0.42198121547698975, - 0.40589553117752075, - 0.39099767804145813, - 0.3776940703392029, - 0.3663475513458252, - 0.3572676181793213, - 0.3507019877433777, - 0.34682971239089966, - 0.345756471157074, - 0.34751150012016296, - 0.3520469069480896, - 0.35923904180526733, - 0.3688916563987732, - 0.38074150681495667, - 0.3944653272628784, - 0.4096887707710266, - 0.4259965717792511, - 0.4429439306259155, - 0.4600685238838196, - 0.4388159513473511, - 0.4194072484970093, - 0.40081778168678284, - 0.38355469703674316, - 0.36808881163597107, - 0.35484206676483154, - 0.3441757559776306, - 0.33638083934783936, - 0.33166995644569397, - 0.3301715850830078, - 0.3319266140460968, - 0.3368871510028839, - 0.344917893409729, - 0.3557998239994049, - 0.369236022233963, - 0.3848600685596466, - 0.40224575996398926, - 0.4209188222885132, - 0.44036993384361267, - 0.4600685238838196, - 0.4388159513473511, - 0.41895219683647156, - 0.39992010593414307, - 0.38223886489868164, - 0.36639076471328735, - 0.3528080880641937, - 0.3418613374233246, - 0.33384910225868225, - 0.3289899528026581, - 0.32741641998291016, - 0.32917147874832153, - 0.334207147359848, - 0.3423861563205719, - 0.3534853756427765, - 0.3672020435333252, - 0.3831620216369629, - 0.4009299576282501, - 0.4200211763381958, - 0.43991491198539734, - 0.4600685238838196, - 0.4388159513473511, - 0.4206654131412506, - 0.40329980850219727, - 0.38719287514686584, - 0.37278392910957336, - 0.36046603322029114, - 0.35057514905929565, - 0.3433811068534851, - 0.33908015489578247, - 0.3377895951271057, - 0.3395446240901947, - 0.3442973494529724, - 0.35191816091537476, - 0.36219918727874756, - 0.3748599886894226, - 0.3895551860332489, - 0.40588393807411194, - 0.42340087890625, - 0.4416281282901764, - 0.4600685238838196, - 0.4388159513473511, - 0.4243612289428711, - 0.41059064865112305, - 0.39787980914115906, - 0.38657549023628235, - 0.376986026763916, - 0.3693729341030121, - 0.3639439344406128, - 0.3608471155166626, - 0.3601669669151306, - 0.3619219660758972, - 0.36606431007385254, - 0.37248098850250244, - 0.380996972322464, - 0.3913799524307251, - 0.4033467471599579, - 0.41657090187072754, - 0.4306916892528534, - 0.4453239440917969, - 0.4600685238838196, - 0.4388159513473511, - 0.42963913083076477, - 0.42100250720977783, - 0.4131416380405426, - 0.40627095103263855, - 0.4005778431892395, - 0.3962176740169525, - 0.3933092951774597, - 0.39193210005760193, - 0.39212360978126526, - 0.39387863874435425, - 0.39714929461479187, - 0.40184634923934937, - 0.4078417122364044, - 0.41497182846069336, - 0.4230422079563141, - 0.4318327009677887, - 0.4411035478115082, - 0.45060184597969055, - 0.4600685238838196, - 0.4388159513473511, - 0.43592721223831177, - 0.43340712785720825, - 0.43132442235946655, - 0.42973592877388, - 0.4286849796772003, - 0.42820024490356445, - 0.4282948970794678, - 0.4289664328098297, - 0.43019649386405945, - 0.43195149302482605, - 0.43418362736701965, - 0.4368319809436798, - 0.43982428312301636, - 0.4430789649486542, - 0.44650718569755554, - 0.45001548528671265, - 0.4535081684589386, - 0.45688992738723755, - 0.4600685238838196 - ], - "z": [ - -0.3170015215873718, - -0.32148170471191406, - -0.33075183629989624, - -0.34455904364585876, - -0.36252665519714355, - -0.3841645419597626, - -0.4088825285434723, - -0.4360063672065735, - -0.46479618549346924, - -0.4944666624069214, - -0.5242084860801697, - -0.5532103180885315, - -0.5806811451911926, - -0.6058716177940369, - -0.6280945539474487, - -0.6467437744140625, - -0.6613106727600098, - -0.6713978052139282, - -0.6767300367355347, - -0.6771618723869324, - -0.3170015215873718, - -0.3210861086845398, - -0.32997143268585205, - -0.3434150815010071, - -0.3610503673553467, - -0.38239622116088867, - -0.40687036514282227, - -0.43380528688430786, - -0.46246621012687683, - -0.49207133054733276, - -0.521813154220581, - -0.5508803725242615, - -0.578480064868927, - -0.6038594245910645, - -0.6263262033462524, - -0.6452674865722656, - -0.6601666808128357, - -0.6706173419952393, - -0.6763343811035156, - -0.6771618723869324, - -0.3170015215873718, - -0.3205140233039856, - -0.3288428783416748, - -0.3417608141899109, - -0.3589155077934265, - -0.3798390328884125, - -0.40396061539649963, - -0.43062227964401245, - -0.4590968191623688, - -0.4886074662208557, - -0.518349289894104, - -0.5475109815597534, - -0.5752970576286316, - -0.6009496450424194, - -0.6237690448760986, - -0.6431326866149902, - -0.6585124135017395, - -0.669488787651062, - -0.6757622957229614, - -0.6771618723869324, - -0.3170015215873718, - -0.31982743740081787, - -0.32748842239379883, - -0.3397755026817322, - -0.3563534617424011, - -0.37677010893821716, - -0.40046852827072144, - -0.4268023371696472, - -0.4550531804561615, - -0.48445042967796326, - -0.5141922235488892, - -0.5434673428535461, - -0.5714771151542664, - -0.5974575877189636, - -0.6207000613212585, - -0.6405705809593201, - -0.6565271019935608, - -0.668134331703186, - -0.6750757694244385, - -0.6771618723869324, - -0.3170015215873718, - -0.3191007971763611, - -0.3260549306869507, - -0.33767426013946533, - -0.3536418080329895, - -0.373522013425827, - -0.3967725932598114, - -0.42275935411453247, - -0.4507734179496765, - -0.4800506830215454, - -0.5097925066947937, - -0.5391875505447388, - -0.5674341320991516, - -0.593761682510376, - -0.6174520254135132, - -0.6378589868545532, - -0.654425859451294, - -0.6667008399963379, - -0.6743490695953369, - -0.6771618723869324, - -0.3170015215873718, - -0.31841278076171875, - -0.32469773292541504, - -0.3356848359107971, - -0.3510744273662567, - -0.37044674158096313, - -0.3932732939720154, - -0.4189314842224121, - -0.4467214047908783, - -0.4758850038051605, - -0.5056267976760864, - -0.5351355671882629, - -0.5636062622070312, - -0.5902623534202576, - -0.6143767237663269, - -0.635291576385498, - -0.6524364352226257, - -0.6653436422348022, - -0.6736611127853394, - -0.6771618723869324, - -0.3170015215873718, - -0.31783801317214966, - -0.3235638439655304, - -0.33402279019355774, - -0.3489295244216919, - -0.3678774833679199, - -0.390349805355072, - -0.4157334864139557, - -0.44333615899086, - -0.4724048376083374, - -0.5021466612815857, - -0.5317503213882446, - -0.5604082942008972, - -0.5873388648033142, - -0.6118074655532837, - -0.6331467032432556, - -0.650774359703064, - -0.6642097234725952, - -0.6730862855911255, - -0.6771618723869324, - -0.3170015215873718, - -0.3174387216567993, - -0.3227761685848236, - -0.33286821842193604, - -0.34743955731391907, - -0.3660927414894104, - -0.3883189857006073, - -0.4135119915008545, - -0.4409845471382141, - -0.46998730301856995, - -0.49972909688949585, - -0.5293986797332764, - -0.5581867694854736, - -0.5853080749511719, - -0.6100227236747742, - -0.6316567063331604, - -0.6496198177337646, - -0.6634221076965332, - -0.6726870536804199, - -0.6771618723869324, - -0.3170015215873718, - -0.31725823879241943, - -0.32242006063461304, - -0.33234626054763794, - -0.3467659652233124, - -0.3652859032154083, - -0.38740086555480957, - -0.41250765323638916, - -0.43992140889167786, - -0.468894362449646, - -0.4986361563205719, - -0.5283355712890625, - -0.5571824312210083, - -0.5843899250030518, - -0.6092158555984497, - -0.6309831142425537, - -0.6490978598594666, - -0.663066029548645, - -0.6725065112113953, - -0.6771618723869324, - -0.3170015215873718, - -0.31731605529785156, - -0.32253414392471313, - -0.3325134515762329, - -0.3469817340373993, - -0.3655443787574768, - -0.38769498467445374, - -0.41282936930656433, - -0.44026196002960205, - -0.46924445033073425, - -0.49898624420166016, - -0.5286760926246643, - -0.5575041770935059, - -0.5846840143203735, - -0.6094743609428406, - -0.6311988830566406, - -0.6492650508880615, - -0.6631800532341003, - -0.6725643277168274, - -0.6771618723869324, - -0.3170015215873718, - -0.3176059424877167, - -0.3231060206890106, - -0.3333517014980316, - -0.34806349873542786, - -0.366840124130249, - -0.3891693949699402, - -0.414442241191864, - -0.4419693052768707, - -0.47099965810775757, - -0.5007414817810059, - -0.5303834676742554, - -0.5591170191764832, - -0.5861584544181824, - -0.6107701063156128, - -0.6322806477546692, - -0.6501033306121826, - -0.6637519598007202, - -0.6728542447090149, - -0.6771618723869324, - -0.3170015215873718, - -0.31809645891189575, - -0.3240737318992615, - -0.334770143032074, - -0.34989404678344727, - -0.3690328001976013, - -0.39166438579559326, - -0.41717150807380676, - -0.4448583722114563, - -0.4739697575569153, - -0.5037115812301636, - -0.5332725048065186, - -0.5618463158607483, - -0.5886534452438354, - -0.6129627823829651, - -0.6341111660003662, - -0.6515218019485474, - -0.6647196412086487, - -0.6733447313308716, - -0.6771618723869324, - -0.3170015215873718, - -0.3187345266342163, - -0.325332373380661, - -0.33661511540412903, - -0.35227495431900024, - -0.3718847632408142, - -0.3949095904827118, - -0.4207214117050171, - -0.4486161470413208, - -0.4778329133987427, - -0.507574737071991, - -0.5370302796363831, - -0.5653961896896362, - -0.5918986797332764, - -0.615814745426178, - -0.636492133140564, - -0.6533666849136353, - -0.6659783124923706, - -0.6739827990531921, - -0.6771618723869324, - -0.3170015215873718, - -0.31945091485977173, - -0.3267455995082855, - -0.33868664503097534, - -0.3549482822418213, - -0.3750869333744049, - -0.3985532820224762, - -0.42470723390579224, - -0.4528353810310364, - -0.4821704626083374, - -0.5119122862815857, - -0.5412495136260986, - -0.5693820118904114, - -0.5955423712730408, - -0.6190168857574463, - -0.6391654014587402, - -0.655438244342804, - -0.6673915386199951, - -0.6746991872787476, - -0.6771618723869324, - -0.3170015215873718, - -0.32016801834106445, - -0.32816025614738464, - -0.3407602310180664, - -0.3576242923736572, - -0.3782923221588135, - -0.4022006690502167, - -0.4286970794200897, - -0.4570588767528534, - -0.4865123927593231, - -0.516254186630249, - -0.545473039150238, - -0.5733718872070312, - -0.5991896986961365, - -0.6222223043441772, - -0.6418414115905762, - -0.657511830329895, - -0.6688061952590942, - -0.6754162907600403, - -0.6771618723869324, - -0.3170015215873718, - -0.3208081126213074, - -0.3294230103492737, - -0.34261125326156616, - -0.3600129783153534, - -0.3811536133289337, - -0.40545645356178284, - -0.43225860595703125, - -0.4608289301395416, - -0.4903881549835205, - -0.5201299786567688, - -0.5492430925369263, - -0.5769333839416504, - -0.6024454832077026, - -0.6250835657119751, - -0.6442301273345947, - -0.6593628525733948, - -0.6700689792633057, - -0.6760563850402832, - -0.6771618723869324, - -0.3170015215873718, - -0.3213018774986267, - -0.3303970694541931, - -0.34403902292251587, - -0.36185556650161743, - -0.38336068391799927, - -0.40796786546707153, - -0.4350058138370514, - -0.46373704075813293, - -0.49337780475616455, - -0.5231196284294128, - -0.5521512031555176, - -0.5796805620193481, - -0.6049569249153137, - -0.627290666103363, - -0.6460726857185364, - -0.6607906222343445, - -0.6710430383682251, - -0.6765501499176025, - -0.6771618723869324, - -0.3170015215873718, - -0.32159578800201416, - -0.3309768736362457, - -0.3448888659477234, - -0.3629522919654846, - -0.38467442989349365, - -0.40946269035339355, - -0.43664100766181946, - -0.46546798944473267, - -0.4951573312282562, - -0.5248991250991821, - -0.5538821220397949, - -0.581315815448761, - -0.6064517498016357, - -0.6286044120788574, - -0.6471694707870483, - -0.6616405248641968, - -0.6716228127479553, - -0.67684406042099, - -0.6771618723869324, - -0.3170015215873718, - -0.3216579556465149, - -0.33109956979751587, - -0.34506869316101074, - -0.36318439245224, - -0.3849523961544037, - -0.40977901220321655, - -0.436987042427063, - -0.46583428978919983, - -0.49553388357162476, - -0.525275707244873, - -0.5542484521865845, - -0.5816618204116821, - -0.6067680716514587, - -0.6288824081420898, - -0.6474015116691589, - -0.6618202924728394, - -0.6717454791069031, - -0.6769062280654907, - -0.6771618723869324, - -0.3170015215873718, - -0.32148170471191406, - -0.33075183629989624, - -0.34455904364585876, - -0.36252665519714355, - -0.3841645419597626, - -0.4088825285434723, - -0.4360063672065735, - -0.46479618549346924, - -0.4944666624069214, - -0.5242084860801697, - -0.5532103180885315, - -0.5806811451911926, - -0.6058716177940369, - -0.6280945539474487, - -0.6467437744140625, - -0.6613106727600098, - -0.6713978052139282, - -0.6767300367355347, - -0.6771618723869324 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.29593899846076965, - 0.3110083043575287, - 0.32867008447647095, - 0.34844255447387695, - 0.36978644132614136, - 0.39211946725845337, - 0.4148324728012085, - 0.43730592727661133, - 0.4589267671108246, - 0.47910529375076294, - 0.49729102849960327, - 0.5129879713058472, - 0.5257678627967834, - 0.5352821946144104, - 0.5412713885307312, - 0.5435720682144165, - 0.5421215295791626, - 0.5369592905044556, - 0.5282261967658997, - 0.5161604285240173, - 0.29593899846076965, - 0.3038562536239624, - 0.31456106901168823, - 0.3277614712715149, - 0.34309735894203186, - 0.36015042662620544, - 0.3784554898738861, - 0.3975132703781128, - 0.41680389642715454, - 0.4358011782169342, - 0.4539869427680969, - 0.47086507081985474, - 0.4859752058982849, - 0.498905211687088, - 0.5093023180961609, - 0.5168830156326294, - 0.5214404463768005, - 0.5228503346443176, - 0.5210741758346558, - 0.5161604285240173, - 0.29593899846076965, - 0.29600900411605835, - 0.29908061027526855, - 0.30507004261016846, - 0.3138139545917511, - 0.32507380843162537, - 0.33854249119758606, - 0.3538525700569153, - 0.37058645486831665, - 0.3882877230644226, - 0.40647345781326294, - 0.42464762926101685, - 0.4423145055770874, - 0.4589921832084656, - 0.4742257297039032, - 0.48759961128234863, - 0.4987490177154541, - 0.5073698163032532, - 0.5132268667221069, - 0.5161604285240173, - 0.29593902826309204, - 0.28831687569618225, - 0.2839061915874481, - 0.2828272879123688, - 0.2851095497608185, - 0.29069074988365173, - 0.2994186282157898, - 0.31105512380599976, - 0.32528284192085266, - 0.34171366691589355, - 0.3598994016647339, - 0.37934401631355286, - 0.39951708912849426, - 0.4198683500289917, - 0.4398426413536072, - 0.458895206451416, - 0.47650623321533203, - 0.4921954572200775, - 0.5055347681045532, - 0.5161604285240173, - 0.29593902826309204, - 0.2816134989261627, - 0.27068227529525757, - 0.2634435296058655, - 0.26009470224380493, - 0.2607271373271942, - 0.2653236389160156, - 0.2737587094306946, - 0.28580236434936523, - 0.301126092672348, - 0.31931182742118835, - 0.33986353874206543, - 0.3622206449508667, - 0.38577333092689514, - 0.40987905859947205, - 0.4338803291320801, - 0.4571225047111511, - 0.4789715111255646, - 0.4988313913345337, - 0.5161604285240173, - 0.29593902826309204, - 0.27662521600723267, - 0.26084181666374207, - 0.2490192949771881, - 0.24148015677928925, - 0.23843003809452057, - 0.23995216190814972, - 0.24600498378276825, - 0.2564234137535095, - 0.2709232568740845, - 0.2891089916229248, - 0.3104845881462097, - 0.33446693420410156, - 0.36040186882019043, - 0.3875819444656372, - 0.4152657985687256, - 0.44269827008247375, - 0.4691310524940491, - 0.493843138217926, - 0.5161604285240173, - 0.29593902826309204, - 0.2738926410675049, - 0.2554512023925781, - 0.2411177009344101, - 0.23128309845924377, - 0.2262156754732132, - 0.2260536551475525, - 0.23080144822597504, - 0.2403295636177063, - 0.2543781101703644, - 0.2725638747215271, - 0.2943907380104065, - 0.31926339864730835, - 0.346503347158432, - 0.37536755204200745, - 0.4050687253475189, - 0.43479666113853455, - 0.46374043822288513, - 0.49111056327819824, - 0.5161604285240173, - 0.29593902826309204, - 0.2737118899822235, - 0.25509458780288696, - 0.2405949831008911, - 0.2306085228919983, - 0.2254076451063156, - 0.2251342087984085, - 0.2297956645488739, - 0.23926490545272827, - 0.2532835900783539, - 0.2714693546295166, - 0.29332607984542847, - 0.3182576298713684, - 0.3455839157104492, - 0.37455955147743225, - 0.40439414978027344, - 0.43427395820617676, - 0.46338385343551636, - 0.4909297823905945, - 0.5161604285240173, - 0.29593902826309204, - 0.2761025130748749, - 0.2598106265068054, - 0.24750779569149017, - 0.2395295351743698, - 0.23609353601932526, - 0.23729348182678223, - 0.24309666454792023, - 0.2533447742462158, - 0.267758309841156, - 0.28594404458999634, - 0.307405948638916, - 0.33155861496925354, - 0.35774320363998413, - 0.3852454125881195, - 0.41331517696380615, - 0.4411867558956146, - 0.4680998921394348, - 0.49332040548324585, - 0.5161604285240173, - 0.29593902826309204, - 0.28080546855926514, - 0.2690882682800293, - 0.26110702753067017, - 0.25707942247390747, - 0.25711536407470703, - 0.2612138092517853, - 0.26926302909851074, - 0.2810434103012085, - 0.2962336540222168, - 0.3144194185733795, - 0.3351045846939087, - 0.35772496461868286, - 0.3816635310649872, - 0.4062672555446625, - 0.430865079164505, - 0.4547859728336334, - 0.4773775041103363, - 0.4980233907699585, - 0.5161604285240173, - 0.29593902826309204, - 0.2873111069202423, - 0.2819221019744873, - 0.27991896867752075, - 0.2813563644886017, - 0.2861950397491455, - 0.2943030595779419, - 0.30545923113822937, - 0.3193592429161072, - 0.33562394976615906, - 0.3538097143173218, - 0.3734204173088074, - 0.3939211666584015, - 0.4147527813911438, - 0.43534696102142334, - 0.4551420211791992, - 0.4735979437828064, - 0.4902113378047943, - 0.5045289993286133, - 0.5161604285240173, - 0.29593902826309204, - 0.29491448402404785, - 0.29692140221595764, - 0.30190509557724, - 0.30972957611083984, - 0.32018139958381653, - 0.33297550678253174, - 0.3477628827095032, - 0.3641401529312134, - 0.3816606402397156, - 0.3998463749885559, - 0.4182013273239136, - 0.4362248182296753, - 0.45342522859573364, - 0.46933332085609436, - 0.483515202999115, - 0.49558407068252563, - 0.5052106380462646, - 0.5121324062347412, - 0.5161604285240173, - 0.29593899846076965, - 0.3027915954589844, - 0.3124607801437378, - 0.3246828317642212, - 0.3391243815422058, - 0.3553914427757263, - 0.3730403482913971, - 0.3915896713733673, - 0.41053342819213867, - 0.42935487627983093, - 0.44754061102867126, - 0.46459460258483887, - 0.48005160689353943, - 0.493490070104599, - 0.5045433640480042, - 0.512910008430481, - 0.5183618068695068, - 0.5207500457763672, - 0.5200095176696777, - 0.5161604285240173, - 0.29593899846076965, - 0.3100888729095459, - 0.3268562853336334, - 0.34578391909599304, - 0.36635541915893555, - 0.3880096673965454, - 0.4101560413837433, - 0.4321903884410858, - 0.45351165533065796, - 0.473538339138031, - 0.49172407388687134, - 0.5075728297233582, - 0.5206523537635803, - 0.5306057333946228, - 0.5371615886688232, - 0.5401411056518555, - 0.5394628643989563, - 0.5351455211639404, - 0.5273067951202393, - 0.5161604285240173, - 0.29593899846076965, - 0.3160155117511749, - 0.338547945022583, - 0.3629216253757477, - 0.3884717524051666, - 0.4145013093948364, - 0.4403003752231598, - 0.4651651680469513, - 0.48841744661331177, - 0.5094228982925415, - 0.5276086926460266, - 0.5424785614013672, - 0.5536271333694458, - 0.5607501268386841, - 0.5636532306671143, - 0.5622574090957642, - 0.5566005706787109, - 0.5468372106552124, - 0.5332334041595459, - 0.5161604285240173, - 0.29593899846076965, - 0.319929301738739, - 0.34626877307891846, - 0.37423887848854065, - 0.40307673811912537, - 0.4319956600666046, - 0.4602068364620209, - 0.48694077134132385, - 0.511468231678009, - 0.5331200957298279, - 0.5513058304786682, - 0.5655293464660645, - 0.5754027366638184, - 0.5806565880775452, - 0.5811475515365601, - 0.5768623948097229, - 0.5679178237915039, - 0.5545580387115479, - 0.5371472239494324, - 0.5161604285240173, - 0.29593899846076965, - 0.32140612602233887, - 0.3491820991039276, - 0.3785093128681183, - 0.4085877239704132, - 0.4385969042778015, - 0.4677182734012604, - 0.49515751004219055, - 0.5201660990715027, - 0.5420619249343872, - 0.5602476596832275, - 0.5742272734642029, - 0.5836194753646851, - 0.5881680250167847, - 0.5877488255500793, - 0.5823733806610107, - 0.5721882581710815, - 0.5574713349342346, - 0.5386240482330322, - 0.5161604285240173, - 0.29593899846076965, - 0.3202859163284302, - 0.34697225689888, - 0.3752700686454773, - 0.40440747141838074, - 0.4335896670818329, - 0.4620206356048584, - 0.48892489075660706, - 0.5135685205459595, - 0.5352792739868164, - 0.5534650087356567, - 0.5676296949386597, - 0.5773868560791016, - 0.5824703574180603, - 0.5827416181564331, - 0.5781931281089783, - 0.5689490437507629, - 0.555261492729187, - 0.5375038385391235, - 0.5161604285240173, - 0.29593899846076965, - 0.3166900873184204, - 0.3398786783218384, - 0.3648722171783447, - 0.3909890055656433, - 0.4175165891647339, - 0.4437313675880432, - 0.4689183235168457, - 0.49239039421081543, - 0.5135073065757751, - 0.5316930413246155, - 0.5464515686035156, - 0.5573802590370178, - 0.5641810894012451, - 0.5666685104370117, - 0.5647746324539185, - 0.5585511922836304, - 0.5481679439544678, - 0.5339080095291138, - 0.5161604285240173, - 0.29593899846076965, - 0.3110083043575287, - 0.32867005467414856, - 0.34844255447387695, - 0.36978641152381897, - 0.392119437456131, - 0.4148324429988861, - 0.43730589747428894, - 0.4589267671108246, - 0.47910526394844055, - 0.4972909986972809, - 0.5129879117012024, - 0.5257678627967834, - 0.5352821946144104, - 0.5412713885307312, - 0.5435720682144165, - 0.5421215295791626, - 0.5369592905044556, - 0.5282261967658997, - 0.5161604285240173 - ], - "y": [ - 0.38940122723579407, - 0.40526503324508667, - 0.42283469438552856, - 0.441631019115448, - 0.4611411988735199, - 0.4808330833911896, - 0.5001695156097412, - 0.5186231136322021, - 0.535690426826477, - 0.5509060025215149, - 0.5638546943664551, - 0.5741833448410034, - 0.5816102027893066, - 0.5859326720237732, - 0.5870329141616821, - 0.5848808288574219, - 0.579535186290741, - 0.57114177942276, - 0.5599294900894165, - 0.5462042689323425, - 0.38940122723579407, - 0.4118233025074005, - 0.4357723593711853, - 0.46059510111808777, - 0.48561447858810425, - 0.5101479887962341, - 0.5335264205932617, - 0.5551120638847351, - 0.574316143989563, - 0.5906148552894592, - 0.6035635471343994, - 0.6128090620040894, - 0.6180991530418396, - 0.6192895174026489, - 0.6163477897644043, - 0.6093541383743286, - 0.5984992980957031, - 0.584079384803772, - 0.5664877891540527, - 0.5462042689323425, - 0.38940122723579407, - 0.4160676598548889, - 0.4441452920436859, - 0.4728682339191437, - 0.5014530420303345, - 0.5291199088096619, - 0.555114209651947, - 0.5787268877029419, - 0.5993138551712036, - 0.6163135170936584, - 0.6292622089385986, - 0.6378067135810852, - 0.6417139768600464, - 0.640877366065979, - 0.635319709777832, - 0.6251926422119141, - 0.6107723712921143, - 0.592452347278595, - 0.5707321166992188, - 0.5462042689323425, - 0.38940122723579407, - 0.4175381660461426, - 0.4470461905002594, - 0.47712042927742004, - 0.506940484046936, - 0.5356929302215576, - 0.5625935792922974, - 0.5869085788726807, - 0.607974648475647, - 0.6252171993255615, - 0.6381658315658569, - 0.6464675068855286, - 0.6498956084251404, - 0.6483567357063293, - 0.6418927907943726, - 0.6306801438331604, - 0.6150245666503906, - 0.5953532457351685, - 0.5722026228904724, - 0.5462042689323425, - 0.38940122723579407, - 0.4160754978656769, - 0.44416072964668274, - 0.4728908836841583, - 0.5014821887016296, - 0.5291548371315002, - 0.5551539659500122, - 0.5787703990936279, - 0.599359929561615, - 0.6163609027862549, - 0.6293095946311951, - 0.6378527879714966, - 0.6417574882507324, - 0.640917181968689, - 0.6353546977043152, - 0.625221848487854, - 0.6107950210571289, - 0.5924677848815918, - 0.5707399845123291, - 0.5462042689323425, - 0.38940122723579407, - 0.4118381142616272, - 0.43580153584480286, - 0.4606378972530365, - 0.48566970229148865, - 0.5102141499519348, - 0.533601701259613, - 0.5551944375038147, - 0.5744033455848694, - 0.5907044410705566, - 0.6036531925201416, - 0.612896203994751, - 0.6181814670562744, - 0.619364857673645, - 0.616413950920105, - 0.6094093322753906, - 0.5985420942306519, - 0.5841085910797119, - 0.566502571105957, - 0.5462042689323425, - 0.38940122723579407, - 0.40528520941734314, - 0.4228745102882385, - 0.4416893422603607, - 0.4612164795398712, - 0.48092326521873474, - 0.5002721548080444, - 0.5187353491783142, - 0.5358092784881592, - 0.5510281324386597, - 0.5639768242835999, - 0.5743021368980408, - 0.5817224383354187, - 0.5860353112220764, - 0.5871230959892273, - 0.5849561095237732, - 0.5795934796333313, - 0.5711815357208252, - 0.5599496960639954, - 0.5462042689323425, - 0.38940122723579407, - 0.3971269130706787, - 0.4067804515361786, - 0.4180985391139984, - 0.43077242374420166, - 0.4444563686847687, - 0.45877715945243835, - 0.4733441472053528, - 0.4877600073814392, - 0.5016314387321472, - 0.5145801305770874, - 0.5262528657913208, - 0.5363312363624573, - 0.544540286064148, - 0.5506561994552612, - 0.554512083530426, - 0.5560027360916138, - 0.5550875067710876, - 0.5517913699150085, - 0.5462042689323425, - 0.38940122723579407, - 0.3882473111152649, - 0.38926345109939575, - 0.3924219310283661, - 0.39763662219047546, - 0.404765248298645, - 0.41361337900161743, - 0.42393964529037476, - 0.4354623854160309, - 0.4478672742843628, - 0.46081599593162537, - 0.4739552438259125, - 0.48692670464515686, - 0.499376505613327, - 0.5109650492668152, - 0.5213762521743774, - 0.5303261280059814, - 0.5375704765319824, - 0.5429117679595947, - 0.5462042689323425, - 0.38940125703811646, - 0.3796086311340332, - 0.3722217082977295, - 0.36744198203086853, - 0.3653998374938965, - 0.36615100502967834, - 0.369674950838089, - 0.3758755624294281, - 0.3845837116241455, - 0.3955618739128113, - 0.40851056575775146, - 0.4230765998363495, - 0.4388626217842102, - 0.4554380774497986, - 0.4723508059978485, - 0.48913949728012085, - 0.5053461790084839, - 0.5205287337303162, - 0.534273087978363, - 0.5462042689323425, - 0.38940125703811646, - 0.37214696407318115, - 0.35750195384025574, - 0.3458656668663025, - 0.337555468082428, - 0.3327981233596802, - 0.33172333240509033, - 0.33436042070388794, - 0.3406374454498291, - 0.3503832519054413, - 0.36333194375038147, - 0.3791303336620331, - 0.39734748005867004, - 0.4174864590167999, - 0.43899792432785034, - 0.46129512786865234, - 0.48376983404159546, - 0.5058090090751648, - 0.526811420917511, - 0.5462043285369873, - 0.38940125703811646, - 0.36667096614837646, - 0.3466993272304535, - 0.3300310969352722, - 0.31712085008621216, - 0.30832087993621826, - 0.30387112498283386, - 0.30389297008514404, - 0.3083859086036682, - 0.317227303981781, - 0.3301759958267212, - 0.3468787670135498, - 0.36688005924224854, - 0.38963425159454346, - 0.4145206809043884, - 0.4408605098724365, - 0.4679352343082428, - 0.49500638246536255, - 0.5213354229927063, - 0.5462043285369873, - 0.38940125703811646, - 0.36377403140068054, - 0.3409844636917114, - 0.32165417075157166, - 0.30631041526794434, - 0.29537177085876465, - 0.2891365885734558, - 0.287774920463562, - 0.2913239598274231, - 0.29968690872192383, - 0.312635600566864, - 0.3298168480396271, - 0.3507620096206665, - 0.3748997151851654, - 0.4015715718269348, - 0.4300500452518463, - 0.4595583379268646, - 0.4892915189266205, - 0.5184385180473328, - 0.5462043285369873, - 0.38940125703811646, - 0.363770067691803, - 0.34097665548324585, - 0.3216426968574524, - 0.30629563331604004, - 0.29535403847694397, - 0.28911638259887695, - 0.2877528667449951, - 0.29130062460899353, - 0.29966291785240173, - 0.3126116096973419, - 0.3297935128211975, - 0.3507399260997772, - 0.37487953901290894, - 0.40155383944511414, - 0.430035263299942, - 0.45954686403274536, - 0.4892836809158325, - 0.5184345245361328, - 0.5462043285369873, - 0.38940125703811646, - 0.3666595220565796, - 0.34667670726776123, - 0.3299978971481323, - 0.3170780539512634, - 0.30826959013938904, - 0.30381280183792114, - 0.303829163312912, - 0.3083183467388153, - 0.3171578645706177, - 0.33010655641555786, - 0.3468112349510193, - 0.3668162226676941, - 0.38957589864730835, - 0.4144693911075592, - 0.4408176839351654, - 0.4679020643234253, - 0.4949837625026703, - 0.5213239789009094, - 0.5462043285369873, - 0.38940125703811646, - 0.37212926149368286, - 0.3574669659137726, - 0.34581437706947327, - 0.3374893069267273, - 0.3327188491821289, - 0.3316330909729004, - 0.3342617154121399, - 0.3405330181121826, - 0.3502758741378784, - 0.3632245659828186, - 0.3790258765220642, - 0.3972488045692444, - 0.4173962473869324, - 0.4389186501502991, - 0.4612289369106293, - 0.48371854424476624, - 0.5057740211486816, - 0.5267937183380127, - 0.5462043285369873, - 0.38940125703811646, - 0.3795865476131439, - 0.3721781373023987, - 0.3673781752586365, - 0.3653174936771393, - 0.3660523593425751, - 0.36956268548965454, - 0.3757527768611908, - 0.3844537138938904, - 0.39542824029922485, - 0.40837693214416504, - 0.42294660210609436, - 0.4387398362159729, - 0.4553258419036865, - 0.47225216031074524, - 0.48905715346336365, - 0.5052823424339294, - 0.5204852223396301, - 0.5342510342597961, - 0.5462042689323425, - 0.38940122723579407, - 0.3882232904434204, - 0.3892160654067993, - 0.39235252141952515, - 0.39754700660705566, - 0.40465793013572693, - 0.41349124908447266, - 0.4238060414791107, - 0.43532097339630127, - 0.4477218985557556, - 0.4606705904006958, - 0.47381386160850525, - 0.4867931008338928, - 0.49925440549850464, - 0.5108577609062195, - 0.52128666639328, - 0.5302566885948181, - 0.5375231504440308, - 0.5428877472877502, - 0.5462042689323425, - 0.38940122723579407, - 0.39710357785224915, - 0.4067344069480896, - 0.4180310368537903, - 0.43068528175354004, - 0.44435200095176697, - 0.4586583971977234, - 0.4732142388820648, - 0.48762246966362, - 0.50149005651474, - 0.5144387483596802, - 0.526115357875824, - 0.5362012982368469, - 0.5444215536117554, - 0.5505518317222595, - 0.5544249415397644, - 0.5559352040290833, - 0.5550414323806763, - 0.5517680644989014, - 0.5462042689323425, - 0.38940122723579407, - 0.40526503324508667, - 0.42283472418785095, - 0.441631019115448, - 0.4611411988735199, - 0.4808330833911896, - 0.500169575214386, - 0.5186231136322021, - 0.5356904864311218, - 0.5509060025215149, - 0.5638546943664551, - 0.5741833448410034, - 0.5816102027893066, - 0.585932731628418, - 0.5870329141616821, - 0.5848808288574219, - 0.579535186290741, - 0.57114177942276, - 0.5599294900894165, - 0.5462042689323425 - ], - "z": [ - -0.9368086457252502, - -0.9562410712242126, - -0.9717198014259338, - -0.982822597026825, - -0.989246666431427, - -0.9908167123794556, - -0.9874899387359619, - -0.979357123374939, - -0.966640055179596, - -0.9496856331825256, - -0.9289563298225403, - -0.905017614364624, - -0.8785223960876465, - -0.8501935005187988, - -0.8208036422729492, - -0.7911544442176819, - -0.7620546221733093, - -0.7342981100082397, - -0.7086418867111206, - -0.6857858300209045, - -0.9368086457252502, - -0.9540632367134094, - -0.9674236178398132, - -0.9765251874923706, - -0.9811198711395264, - -0.9810821413993835, - -0.9764131903648376, - -0.9672402739524841, - -0.9538136124610901, - -0.9364995360374451, - -0.9157702326774597, - -0.8921911716461182, - -0.8664055466651917, - -0.8391166925430298, - -0.8110690116882324, - -0.7830275893211365, - -0.755757212638855, - -0.7300018668174744, - -0.7064640522003174, - -0.6857858300209045, - -0.9368086457252502, - -0.949830174446106, - -0.9590728282928467, - -0.9642845988273621, - -0.965323269367218, - -0.9621605277061462, - -0.9548826217651367, - -0.9436880350112915, - -0.9288821816444397, - -0.9108689427375793, - -0.890139639377594, - -0.8672597408294678, - -0.842853307723999, - -0.8175861239433289, - -0.7921473979949951, - -0.7672309875488281, - -0.7435166239738464, - -0.7216511368751526, - -0.7022309303283691, - -0.6857858300209045, - -0.9368086457252502, - -0.9440004825592041, - -0.9475724697113037, - -0.9474272727966309, - -0.943568766117096, - -0.9361022710800171, - -0.925231397151947, - -0.9112527370452881, - -0.8945475220680237, - -0.8755714297294617, - -0.8548421263694763, - -0.8329250812530518, - -0.8104180097579956, - -0.7879349589347839, - -0.766089141368866, - -0.7454765439033508, - -0.7266592979431152, - -0.7101507782936096, - -0.6964012384414673, - -0.6857858300209045, - -0.9368086457252502, - -0.9372059106826782, - -0.9341687560081482, - -0.9277799129486084, - -0.9182137846946716, - -0.9057312607765198, - -0.8906728029251099, - -0.8734492063522339, - -0.8545302152633667, - -0.8344320058822632, - -0.8137027025222778, - -0.7929077744483948, - -0.7726144790649414, - -0.753376305103302, - -0.7357181310653687, - -0.7201215028762817, - -0.7070119380950928, - -0.6967470049858093, - -0.6896067261695862, - -0.6857858300209045, - -0.9368086457252502, - -0.9301828145980835, - -0.9203141331672668, - -0.9074717164039612, - -0.8920059204101562, - -0.8743386268615723, - -0.8549517393112183, - -0.8343740105628967, - -0.8131668567657471, - -0.7919086813926697, - -0.7711793780326843, - -0.7515444159507751, - -0.7335392832756042, - -0.7176552414894104, - -0.7043254971504211, - -0.6939136981964111, - -0.6867037415504456, - -0.6828924417495728, - -0.6825836300849915, - -0.6857858300209045, - -0.9368086457252502, - -0.9236922264099121, - -0.9075100421905518, - -0.8887033462524414, - -0.8677852153778076, - -0.84532630443573, - -0.8219391107559204, - -0.7982616424560547, - -0.774939775466919, - -0.7526096105575562, - -0.7318803071975708, - -0.7133172750473022, - -0.6974269151687622, - -0.6846426129341125, - -0.6753131151199341, - -0.6696929335594177, - -0.6679353713989258, - -0.6700882911682129, - -0.6760930418968201, - -0.6857858300209045, - -0.9368086457252502, - -0.9184375405311584, - -0.8971439003944397, - -0.8735085725784302, - -0.8481763601303101, - -0.8218381404876709, - -0.7952123880386353, - -0.7690253257751465, - -0.7439914345741272, - -0.7207934260368347, - -0.7000641226768494, - -0.6823689937591553, - -0.6681906580924988, - -0.6579158902168274, - -0.6518250107765198, - -0.6500840783119202, - -0.6527406573295593, - -0.6597222089767456, - -0.6708383560180664, - -0.6857858300209045, - -0.9368086457252502, - -0.914988100528717, - -0.8903391361236572, - -0.863534152507782, - -0.8353042006492615, - -0.8064194917678833, - -0.777667760848999, - -0.7498334050178528, - -0.7236756086349487, - -0.6999078989028931, - -0.6791785955429077, - -0.662053108215332, - -0.6489986777305603, - -0.6403713226318359, - -0.6364063620567322, - -0.6372119188308716, - -0.6427661776542664, - -0.6529174447059631, - -0.667388916015625, - -0.6857858300209045, - -0.9368086457252502, - -0.9137177467346191, - -0.8878331184387207, - -0.8598607778549194, - -0.8305637836456299, - -0.8007411956787109, - -0.7712065577507019, - -0.742765486240387, - -0.7161937952041626, - -0.6922162771224976, - -0.6714869737625122, - -0.6545713543891907, - -0.6419308185577393, - -0.6339101195335388, - -0.6307280659675598, - -0.63247150182724, - -0.6390928030014038, - -0.6504114270210266, - -0.6661186218261719, - -0.6857858300209045, - -0.9368086457252502, - -0.9147641658782959, - -0.8898974657058716, - -0.8628866672515869, - -0.8344686627388, - -0.8054186105728149, - -0.7765288949012756, - -0.7485876083374023, - -0.7223568558692932, - -0.698552131652832, - -0.6778228282928467, - -0.6607344150543213, - -0.6477528810501099, - -0.6392324566841125, - -0.6354054808616638, - -0.6363763809204102, - -0.6421186923980713, - -0.6524757146835327, - -0.6671650409698486, - -0.6857858300209045, - -0.9368086457252502, - -0.9180139899253845, - -0.8963083624839783, - -0.8722838163375854, - -0.8465957641601562, - -0.8199448585510254, - -0.7930580377578735, - -0.7666687369346619, - -0.7414968013763428, - -0.7182288765907288, - -0.6974995732307434, - -0.6798743605613708, - -0.6658340692520142, - -0.6557615995407104, - -0.6499317288398743, - -0.6485034823417664, - -0.6515158414840698, - -0.6588866114616394, - -0.6704148054122925, - -0.6857858300209045, - -0.9368086457252502, - -0.9231149554252625, - -0.9063711166381836, - -0.8870339393615723, - -0.8656308650970459, - -0.8427457809448242, - -0.8190027475357056, - -0.7950496077537537, - -0.7715396285057068, - -0.7491141557693481, - -0.7283848524093628, - -0.7099171876907349, - -0.6942148804664612, - -0.6817063093185425, - -0.6727325916290283, - -0.6675386428833008, - -0.6662660241127014, - -0.6689494252204895, - -0.6755157709121704, - -0.6857858300209045, - -0.9368086457252502, - -0.9295143485069275, - -0.9189953804016113, - -0.9055386781692505, - -0.8895113468170166, - -0.8713505268096924, - -0.8515515923500061, - -0.8306546807289124, - -0.8092296719551086, - -0.7878611087799072, - -0.7671318054199219, - -0.7476072311401367, - -0.7298199534416199, - -0.714255154132843, - -0.7013373970985413, - -0.6914190649986267, - -0.6847707033157349, - -0.6815736889839172, - -0.6819151639938354, - -0.6857858300209045, - -0.9368086457252502, - -0.936518669128418, - -0.9328129887580872, - -0.9257926940917969, - -0.9156492352485657, - -0.9026593565940857, - -0.8871773481369019, - -0.8696255087852478, - -0.8504826426506042, - -0.8302708864212036, - -0.8095415830612183, - -0.7888601422309875, - -0.7687907814979553, - -0.749880850315094, - -0.7326462268829346, - -0.7175569534301758, - -0.7050247192382812, - -0.6953912973403931, - -0.6889194846153259, - -0.6857858300209045, - -0.9368086457252502, - -0.9433689117431641, - -0.9463266730308533, - -0.9456011056900024, - -0.9412121772766113, - -0.9332794547080994, - -0.922019362449646, - -0.9077390432357788, - -0.8908280730247498, - -0.8717477321624756, - -0.8510184288024902, - -0.8292056322097778, - -0.8069043755531311, - -0.7847228646278381, - -0.7632663249969482, - -0.7431198954582214, - -0.7248331904411316, - -0.7089049816131592, - -0.695769727230072, - -0.6857858300209045, - -0.9368086457252502, - -0.9493228197097778, - -0.9580720067024231, - -0.9628175497055054, - -0.9634299874305725, - -0.9598926901817322, - -0.952302098274231, - -0.9408652186393738, - -0.9258940815925598, - -0.9077970385551453, - -0.8870677351951599, - -0.8642716407775879, - -0.8400304913520813, - -0.8150056004524231, - -0.789879560470581, - -0.7653377056121826, - -0.7420495748519897, - -0.7206502556800842, - -0.7017236351966858, - -0.6857858300209045, - -0.9368086457252502, - -0.9537350535392761, - -0.9667761325836182, - -0.9755761623382568, - -0.9798950552940369, - -0.9796150922775269, - -0.9747438430786133, - -0.9654141664505005, - -0.9518805742263794, - -0.9345122575759888, - -0.9137829542160034, - -0.8902581334114075, - -0.864579439163208, - -0.8374473452568054, - -0.8096019625663757, - -0.7818028330802917, - -0.7548081874847412, - -0.7293543815612793, - -0.7061358690261841, - -0.6857858300209045, - -0.9368086457252502, - -0.9561275243759155, - -0.9714958667755127, - -0.9824944138526917, - -0.9888231158256531, - -0.9903094172477722, - -0.9869126677513123, - -0.9787256717681885, - -0.9659715890884399, - -0.9489983916282654, - -0.92826908826828, - -0.904349148273468, - -0.877890944480896, - -0.8496162295341492, - -0.8202962875366211, - -0.7907308340072632, - -0.761726438999176, - -0.7340741753578186, - -0.7085283994674683, - -0.6857858300209045, - -0.9368086457252502, - -0.9562410712242126, - -0.9717198014259338, - -0.982822597026825, - -0.989246666431427, - -0.9908167123794556, - -0.9874899387359619, - -0.979357123374939, - -0.966640055179596, - -0.9496856331825256, - -0.9289563298225403, - -0.905017614364624, - -0.8785223960876465, - -0.8501935005187988, - -0.8208036422729492, - -0.7911543846130371, - -0.7620546221733093, - -0.7342981100082397, - -0.7086418867111206, - -0.6857858300209045 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.3383842706680298, - 0.3134611248970032, - 0.28974243998527527, - 0.26787522435188293, - 0.2484559416770935, - 0.23201428353786469, - 0.2189987599849701, - 0.20976437628269196, - 0.20456306636333466, - 0.20353665947914124, - 0.20671316981315613, - 0.2140059620141983, - 0.2252160906791687, - 0.24003779888153076, - 0.25806674361228943, - 0.2788112163543701, - 0.3017052710056305, - 0.32612448930740356, - 0.35140272974967957, - 0.37685051560401917, - 0.3383842706680298, - 0.30597296357154846, - 0.2749703824520111, - 0.24622222781181335, - 0.22051261365413666, - 0.19854286313056946, - 0.18091225624084473, - 0.16810168325901031, - 0.16046063601970673, - 0.15819750726222992, - 0.1613740175962448, - 0.16990353167057037, - 0.18355339765548706, - 0.2019512802362442, - 0.2245953232049942, - 0.2508678734302521, - 0.2800522744655609, - 0.3113524317741394, - 0.34391459822654724, - 0.37685051560401917, - 0.3383842706680298, - 0.3020254969596863, - 0.2671831250190735, - 0.2348075956106186, - 0.2057819813489914, - 0.1808980405330658, - 0.16083455085754395, - 0.1461387425661087, - 0.13721156120300293, - 0.1342964917421341, - 0.137473002076149, - 0.14665445685386658, - 0.16159045696258545, - 0.18187357485294342, - 0.20695051550865173, - 0.2361372411251068, - 0.26863765716552734, - 0.3035651743412018, - 0.33996713161468506, - 0.37685051560401917, - 0.3383842706680298, - 0.3020465075969696, - 0.2672245502471924, - 0.23486831784248352, - 0.20586033165454865, - 0.18099190294742584, - 0.16094133257865906, - 0.14625556766986847, - 0.13733524084091187, - 0.1344236135482788, - 0.1376001238822937, - 0.1467781364917755, - 0.16170728206634521, - 0.18198037147521973, - 0.2070443481206894, - 0.23621560633182526, - 0.2686983644962311, - 0.3036065995693207, - 0.339988112449646, - 0.37685051560401917, - 0.3383842706680298, - 0.3060337007045746, - 0.27509015798568726, - 0.24639779329299927, - 0.2207392007112503, - 0.1988142728805542, - 0.1812210977077484, - 0.16843952238559723, - 0.16081826388835907, - 0.15856517851352692, - 0.1617416888475418, - 0.17026115953922272, - 0.18389123678207397, - 0.20226013660430908, - 0.22486674785614014, - 0.2510944604873657, - 0.2802278697490692, - 0.31147220730781555, - 0.343975305557251, - 0.37685051560401917, - 0.3383842706680298, - 0.313554972410202, - 0.28992760181427, - 0.2681466341018677, - 0.2488062083721161, - 0.23243385553359985, - 0.21947617828845978, - 0.21028661727905273, - 0.2051158994436264, - 0.2041049748659134, - 0.20728148519992828, - 0.21455879509449005, - 0.22573833167552948, - 0.24051520228385925, - 0.2584863007068634, - 0.2791614532470703, - 0.30197668075561523, - 0.3263096511363983, - 0.3514966070652008, - 0.37685051560401917, - 0.3383842706680298, - 0.323795348405838, - 0.31012898683547974, - 0.297758013010025, - 0.28701984882354736, - 0.278207391500473, - 0.27156102657318115, - 0.2672620713710785, - 0.26542773842811584, - 0.2661081552505493, - 0.2692846655845642, - 0.2748706638813019, - 0.28271377086639404, - 0.2926000654697418, - 0.30425986647605896, - 0.317375123500824, - 0.33158808946609497, - 0.34651103615760803, - 0.3617369532585144, - 0.37685051560401917, - 0.3383842706680298, - 0.33564504981040955, - 0.33350521326065063, - 0.33202308416366577, - 0.33123910427093506, - 0.3311746418476105, - 0.3318314850330353, - 0.3331916928291321, - 0.3352181613445282, - 0.33785563707351685, - 0.34103214740753174, - 0.34466105699539185, - 0.34864339232444763, - 0.35287052392959595, - 0.3572271168231964, - 0.36159437894821167, - 0.36585313081741333, - 0.36988726258277893, - 0.3735866844654083, - 0.37685051560401917, - 0.3383842408657074, - 0.3478200435638428, - 0.3575230836868286, - 0.3672286868095398, - 0.3766721189022064, - 0.38559576869010925, - 0.39375627040863037, - 0.4009310007095337, - 0.40692421793937683, - 0.41157251596450806, - 0.41474902629852295, - 0.41636714339256287, - 0.41638270020484924, - 0.4147953391075134, - 0.4116482734680176, - 0.40702739357948303, - 0.40105873346328735, - 0.3939051330089569, - 0.38576164841651917, - 0.3768504858016968, - 0.3383842408657074, - 0.35900092124938965, - 0.3795798718929291, - 0.39955973625183105, - 0.4183955192565918, - 0.43557342886924744, - 0.45062491297721863, - 0.4631393849849701, - 0.47277548909187317, - 0.47927039861679077, - 0.48244690895080566, - 0.4822184145450592, - 0.47859111428260803, - 0.4716639518737793, - 0.46162593364715576, - 0.4487507939338684, - 0.4333897829055786, - 0.4159619212150574, - 0.3969425559043884, - 0.3768504858016968, - 0.3383842408657074, - 0.3679760992527008, - 0.3972854018211365, - 0.4255126714706421, - 0.45188793540000916, - 0.4756917357444763, - 0.49627476930618286, - 0.513075590133667, - 0.5256359577178955, - 0.5336132049560547, - 0.5367896556854248, - 0.5350788831710815, - 0.5285273194313049, - 0.5173138380050659, - 0.501744270324707, - 0.48224321007728577, - 0.45934274792671204, - 0.43366745114326477, - 0.4059177339076996, - 0.3768504858016968, - 0.3383842408657074, - 0.3737729787826538, - 0.40872102975845337, - 0.44227510690689087, - 0.4735199511051178, - 0.5016032457351685, - 0.5257589817047119, - 0.5453283190727234, - 0.5597773194313049, - 0.5687119960784912, - 0.5718884468078613, - 0.569220244884491, - 0.5607800483703613, - 0.5467981100082397, - 0.5276557207107544, - 0.5038752555847168, - 0.4761051535606384, - 0.44510307908058167, - 0.4117146134376526, - 0.3768504858016968, - 0.3383842408657074, - 0.3757633566856384, - 0.4126474857330322, - 0.4480305314064026, - 0.4809473752975464, - 0.5105000734329224, - 0.5358825325965881, - 0.5564023852348328, - 0.5714999437332153, - 0.5807632803916931, - 0.583939790725708, - 0.5809428691864014, - 0.5718541145324707, - 0.5569216012954712, - 0.5365525484085083, - 0.511302649974823, - 0.48186060786247253, - 0.4490295350551605, - 0.4137049913406372, - 0.3768504858016968, - 0.3383842408657074, - 0.3737315535545349, - 0.4086393117904663, - 0.44215530157089233, - 0.4733653664588928, - 0.5014181137084961, - 0.5255483388900757, - 0.545097827911377, - 0.5595333576202393, - 0.5684611201286316, - 0.5716376304626465, - 0.5689762830734253, - 0.5605494976043701, - 0.546587347984314, - 0.527470588684082, - 0.5037206411361694, - 0.4759853780269623, - 0.4450213611125946, - 0.4116731882095337, - 0.3768504858016968, - 0.3383842408657074, - 0.36789774894714355, - 0.3971308469772339, - 0.42528608441352844, - 0.4515955150127411, - 0.47534146904945374, - 0.4958762228488922, - 0.5126396417617798, - 0.5251744389533997, - 0.5331387519836426, - 0.5363152027130127, - 0.5346173048019409, - 0.528091311454773, - 0.5169152617454529, - 0.5013939738273621, - 0.4819508194923401, - 0.4591161608695984, - 0.4335128664970398, - 0.40583938360214233, - 0.3768504858016968, - 0.3383842408657074, - 0.35889413952827454, - 0.37936919927597046, - 0.39925092458724976, - 0.41799700260162354, - 0.4350960850715637, - 0.4500817060470581, - 0.4625451862812042, - 0.47214651107788086, - 0.47862374782562256, - 0.48180025815963745, - 0.4815894365310669, - 0.47799691557884216, - 0.47112077474594116, - 0.46114856004714966, - 0.44835227727890015, - 0.4330809712409973, - 0.41575124859809875, - 0.3968357443809509, - 0.3768504858016968, - 0.3383842408657074, - 0.34769636392593384, - 0.35727909207344055, - 0.36687105894088745, - 0.37621060013771057, - 0.3850429654121399, - 0.3931272327899933, - 0.4002428948879242, - 0.40619581937789917, - 0.41082367300987244, - 0.4140002131462097, - 0.4156387448310852, - 0.41569462418556213, - 0.41416630148887634, - 0.4110954701900482, - 0.4065658748149872, - 0.400701105594635, - 0.39366114139556885, - 0.38563796877861023, - 0.3768504858016968, - 0.3383842706680298, - 0.33551791310310364, - 0.3332543671131134, - 0.3316554129123688, - 0.33076462149620056, - 0.33060628175735474, - 0.3311847746372223, - 0.33248424530029297, - 0.3344692885875702, - 0.3370857536792755, - 0.3402622938156128, - 0.3439122140407562, - 0.3479359745979309, - 0.35222381353378296, - 0.3566587567329407, - 0.3611198961734772, - 0.36548545956611633, - 0.3696364164352417, - 0.37345951795578003, - 0.37685051560401917, - 0.3383842706680298, - 0.32367849349975586, - 0.3098984956741333, - 0.2974201440811157, - 0.286583811044693, - 0.27768510580062866, - 0.27096670866012573, - 0.2666119337081909, - 0.2647395730018616, - 0.26540064811706543, - 0.2685771584510803, - 0.2741824686527252, - 0.28206366300582886, - 0.2920057475566864, - 0.3037375509738922, - 0.3169390857219696, - 0.3312501907348633, - 0.3462805449962616, - 0.36162009835243225, - 0.37685051560401917, - 0.3383842706680298, - 0.3134611248970032, - 0.28974243998527527, - 0.26787519454956055, - 0.24845591187477112, - 0.2320142686367035, - 0.2189987450838089, - 0.20976434648036957, - 0.20456303656101227, - 0.20353662967681885, - 0.20671314001083374, - 0.21400593221187592, - 0.2252160608768463, - 0.24003776907920837, - 0.25806671380996704, - 0.27881118655204773, - 0.3017052710056305, - 0.32612448930740356, - 0.35140272974967957, - 0.37685051560401917 - ], - "y": [ - 0.4301319420337677, - 0.45946043729782104, - 0.48887279629707336, - 0.5175668001174927, - 0.5447596907615662, - 0.5697097778320312, - 0.5917364358901978, - 0.6102388501167297, - 0.624712347984314, - 0.6347620487213135, - 0.6401139497756958, - 0.6406220197677612, - 0.6362723112106323, - 0.6271835565567017, - 0.6136037111282349, - 0.5959030985832214, - 0.5745645761489868, - 0.5501702427864075, - 0.5233855247497559, - 0.49494093656539917, - 0.4301319420337677, - 0.4506848454475403, - 0.4715609848499298, - 0.49219098687171936, - 0.5120121240615845, - 0.530483603477478, - 0.5471017360687256, - 0.5614131093025208, - 0.5730274319648743, - 0.5816277861595154, - 0.5869796872138977, - 0.5889370441436768, - 0.5874465703964233, - 0.5825489163398743, - 0.5743775367736816, - 0.563155472278595, - 0.5491887927055359, - 0.5328584909439087, - 0.5146099328994751, - 0.49494093656539917, - 0.4301319718360901, - 0.4397299289703369, - 0.4499499797821045, - 0.4605133533477783, - 0.47113195061683655, - 0.4815160632133484, - 0.4913824498653412, - 0.500461995601654, - 0.5085070729255676, - 0.5152981281280518, - 0.5206500291824341, - 0.5244166851043701, - 0.5264954566955566, - 0.5268296003341675, - 0.525409996509552, - 0.5222753286361694, - 0.5175111889839172, - 0.511247456073761, - 0.5036550164222717, - 0.49494093656539917, - 0.4301319718360901, - 0.42778280377388, - 0.4263816177845001, - 0.42596668004989624, - 0.4265492260456085, - 0.4281134605407715, - 0.4306166172027588, - 0.433990478515625, - 0.4381430149078369, - 0.4429609179496765, - 0.44831278920173645, - 0.4540526866912842, - 0.46002396941185, - 0.4660637676715851, - 0.4720073640346527, - 0.4776926338672638, - 0.48296448588371277, - 0.4876790940761566, - 0.4917078912258148, - 0.49494093656539917, - 0.4301319718360901, - 0.4161381423473358, - 0.4034099578857422, - 0.39229458570480347, - 0.3830952048301697, - 0.37606281042099, - 0.3713891804218292, - 0.36920180916786194, - 0.3695603609085083, - 0.37245506048202515, - 0.37780696153640747, - 0.38547003269195557, - 0.3952352702617645, - 0.4068363308906555, - 0.4199567437171936, - 0.43423861265182495, - 0.44929239153862, - 0.4647074043750763, - 0.48006322979927063, - 0.49494093656539917, - 0.4301319718360901, - 0.40605783462524414, - 0.3835242986679077, - 0.36314600706100464, - 0.3454788327217102, - 0.33100464940071106, - 0.32011833786964417, - 0.31311681866645813, - 0.3101910948753357, - 0.31142091751098633, - 0.31677281856536865, - 0.32610076665878296, - 0.3391503095626831, - 0.35556548833847046, - 0.3748985826969147, - 0.3966221809387207, - 0.4201437830924988, - 0.4448217451572418, - 0.46998292207717896, - 0.49494096636772156, - 0.4301319718360901, - 0.3986342251300812, - 0.3688795566558838, - 0.3416796028614044, - 0.31777632236480713, - 0.29782170057296753, - 0.28236010670661926, - 0.27181321382522583, - 0.26646876335144043, - 0.2664725184440613, - 0.2718244194984436, - 0.2823784351348877, - 0.2978466749191284, - 0.31780722737312317, - 0.34171563386917114, - 0.36891970038414, - 0.39867740869522095, - 0.4301770031452179, - 0.4625592827796936, - 0.49494096636772156, - 0.4301319718360901, - 0.394671767950058, - 0.3610627353191376, - 0.33022165298461914, - 0.3029897212982178, - 0.28010988235473633, - 0.26220613718032837, - 0.24976682662963867, - 0.2431313693523407, - 0.24248071014881134, - 0.24783259630203247, - 0.25904104113578796, - 0.27580028772354126, - 0.2976532578468323, - 0.32400375604629517, - 0.35413312911987305, - 0.3872194290161133, - 0.4223601818084717, - 0.4585968255996704, - 0.49494096636772156, - 0.4301319718360901, - 0.3945998549461365, - 0.36092087626457214, - 0.3300137519836426, - 0.30272144079208374, - 0.2797884941101074, - 0.2618404030799866, - 0.24936680495738983, - 0.24270790815353394, - 0.24204537272453308, - 0.2473972588777542, - 0.2586175799369812, - 0.2754002809524536, - 0.29728755354881287, - 0.32368239760398865, - 0.3538648188114166, - 0.3870115280151367, - 0.42221835255622864, - 0.4585249423980713, - 0.49494096636772156, - 0.4301319718360901, - 0.3984262943267822, - 0.3684694170951843, - 0.34107840061187744, - 0.31700047850608826, - 0.2968924045562744, - 0.28130263090133667, - 0.27065643668174744, - 0.2652442455291748, - 0.26521366834640503, - 0.27056556940078735, - 0.28115391731262207, - 0.2966899275779724, - 0.3167497515678406, - 0.34078627824783325, - 0.36814385652542114, - 0.39807623624801636, - 0.42976686358451843, - 0.46235138177871704, - 0.49494096636772156, - 0.4301319718360901, - 0.40573644638061523, - 0.3828902840614319, - 0.36221665143966675, - 0.34427952766418457, - 0.329568088054657, - 0.31848371028900146, - 0.3113286793231964, - 0.3082982301712036, - 0.30947500467300415, - 0.3148268759250641, - 0.3242079019546509, - 0.3373621702194214, - 0.35393086075782776, - 0.3734620213508606, - 0.39542290568351746, - 0.41921448707580566, - 0.4441877603530884, - 0.46966153383255005, - 0.49494096636772156, - 0.4301319718360901, - 0.4157381057739258, - 0.402620792388916, - 0.39113783836364746, - 0.38160240650177, - 0.37427470088005066, - 0.3693544864654541, - 0.3669760823249817, - 0.36720430850982666, - 0.3700329065322876, - 0.3753848075866699, - 0.3831139802932739, - 0.39300957322120667, - 0.4048016667366028, - 0.4181686043739319, - 0.4327458143234253, - 0.448135644197464, - 0.4639182686805725, - 0.4796631932258606, - 0.49494093656539917, - 0.4301319718360901, - 0.42734745144844055, - 0.4255228340625763, - 0.42470782995224, - 0.42492470145225525, - 0.4261675179004669, - 0.4284023940563202, - 0.43156835436820984, - 0.4355790317058563, - 0.4403250515460968, - 0.44567692279815674, - 0.4514887034893036, - 0.4576018154621124, - 0.4638495445251465, - 0.47006145119667053, - 0.4760681092739105, - 0.4817056357860565, - 0.4868202805519104, - 0.49127253890037537, - 0.49494093656539917, - 0.4301319718360901, - 0.43930646777153015, - 0.4491146206855774, - 0.45928889513015747, - 0.4695517420768738, - 0.4796232283115387, - 0.48922866582870483, - 0.4981059730052948, - 0.506013035774231, - 0.5127341747283936, - 0.5180860757827759, - 0.5219227075576782, - 0.5241394639015198, - 0.5246758460998535, - 0.5235171914100647, - 0.520695149898529, - 0.5162866711616516, - 0.5104120969772339, - 0.5032315254211426, - 0.49494093656539917, - 0.4301319420337677, - 0.4503191411495209, - 0.47083956003189087, - 0.49113351106643677, - 0.5106474161148071, - 0.5288490056991577, - 0.5452417135238647, - 0.559378445148468, - 0.5708735585212708, - 0.5794135928153992, - 0.5847654342651367, - 0.586783230304718, - 0.5854119062423706, - 0.5806888341903687, - 0.5727429389953613, - 0.5617908239364624, - 0.5481313467025757, - 0.5321370363235474, - 0.5142441987991333, - 0.49494093656539917, - 0.4301319420337677, - 0.4591921269893646, - 0.4883435070514679, - 0.5167909264564514, - 0.5437584519386292, - 0.5685104131698608, - 0.5903717279434204, - 0.6087460517883301, - 0.6231321096420288, - 0.6331375241279602, - 0.6384894251823425, - 0.6390417814254761, - 0.6347795128822327, - 0.6258189082145691, - 0.6124044060707092, - 0.5949018597602844, - 0.5737887620925903, - 0.549640953540802, - 0.523117184638977, - 0.49494093656539917, - 0.4301319420337677, - 0.4649638831615448, - 0.49972957372665405, - 0.5334807634353638, - 0.5652967691421509, - 0.5943097472190857, - 0.6197282671928406, - 0.6408590078353882, - 0.6571255922317505, - 0.6680842638015747, - 0.673436164855957, - 0.6730352640151978, - 0.6668925285339355, - 0.6551754474639893, - 0.6382036805152893, - 0.6164401769638062, - 0.5904785394668579, - 0.5610270500183105, - 0.5288889408111572, - 0.49494093656539917, - 0.4301319420337677, - 0.46700894832611084, - 0.5037639141082764, - 0.5393943786621094, - 0.5729283094406128, - 0.6034510135650635, - 0.6301299333572388, - 0.6522374153137207, - 0.6691703200340271, - 0.6804667711257935, - 0.685818612575531, - 0.6850799918174744, - 0.6782708764076233, - 0.6655771136283875, - 0.6473449468612671, - 0.6240717172622681, - 0.5963921546936035, - 0.5650613903999329, - 0.5309340357780457, - 0.49494093656539917, - 0.4301319420337677, - 0.46510571241378784, - 0.5000093579292297, - 0.5338909029960632, - 0.5658260583877563, - 0.5949437022209167, - 0.6204496622085571, - 0.6416481733322144, - 0.6579609513282776, - 0.6689430475234985, - 0.6742949485778809, - 0.6738706231117249, - 0.6676816344261169, - 0.6558968424797058, - 0.6388376951217651, - 0.6169694662094116, - 0.5908886790275574, - 0.5613068342208862, - 0.5290307998657227, - 0.49494093656539917, - 0.4301319420337677, - 0.45946040749549866, - 0.48887279629707336, - 0.5175668001174927, - 0.5447596907615662, - 0.5697097778320312, - 0.5917364358901978, - 0.6102388501167297, - 0.624712347984314, - 0.6347620487213135, - 0.6401139497756958, - 0.6406220197677612, - 0.6362723112106323, - 0.6271835565567017, - 0.6136037111282349, - 0.5959030985832214, - 0.5745645761489868, - 0.5501702427864075, - 0.5233855247497559, - 0.49494093656539917 - ], - "z": [ - -0.9633563160896301, - -0.9608258008956909, - -0.9614055156707764, - -0.9650795459747314, - -0.9717477560043335, - -0.981228232383728, - -0.9932624101638794, - -1.0075219869613647, - -1.0236179828643799, - -1.0411113500595093, - -1.0595248937606812, - -1.078356385231018, - -1.0970922708511353, - -1.1152212619781494, - -1.132248878479004, - -1.1477108001708984, - -1.1611851453781128, - -1.172304391860962, - -1.1807652711868286, - -1.186336874961853, - -0.9633563160896301, - -0.9646682143211365, - -0.9689854383468628, - -0.9761903285980225, - -0.9860863089561462, - -0.9984034299850464, - -1.012805700302124, - -1.0289002656936646, - -1.046248197555542, - -1.0643761157989502, - -1.0827897787094116, - -1.1009867191314697, - -1.118470549583435, - -1.134764552116394, - -1.1494240760803223, - -1.1620492935180664, - -1.1722959280014038, - -1.1798843145370483, - -1.1846076250076294, - -1.186336874961853, - -0.9633563160896301, - -0.9685332179069519, - -0.9766100645065308, - -0.9873665571212769, - -1.000509262084961, - -1.0156795978546143, - -1.0324640274047852, - -1.05040442943573, - -1.0690115690231323, - -1.0877779722213745, - -1.1061915159225464, - -1.12375009059906, - -1.1399747133255005, - -1.1544228792190552, - -1.1667002439498901, - -1.1764721870422363, - -1.1834721565246582, - -1.1875089406967163, - -1.1884726285934448, - -1.186336874961853, - -0.9633563160896301, - -0.9720020294189453, - -0.9834530353546143, - -0.9973970055580139, - -1.0134536027908325, - -1.0311849117279053, - -1.0501071214675903, - -1.0697041749954224, - -1.0894415378570557, - -1.1087807416915894, - -1.1271942853927612, - -1.1441799402236938, - -1.1592744588851929, - -1.1720658540725708, - -1.1822054386138916, - -1.1894166469573975, - -1.1935025453567505, - -1.1943519115447998, - -1.1919413805007935, - -1.186336874961853, - -0.9633563160896301, - -0.9746986627578735, - -0.9887728095054626, - -1.0051947832107544, - -1.0235166549682617, - -1.0432387590408325, - -1.0638229846954346, - -1.0847079753875732, - -1.1053239107131958, - -1.1251084804534912, - -1.143522024154663, - -1.1600624322891235, - -1.1742782592773438, - -1.1857818365097046, - -1.1942594051361084, - -1.1994796991348267, - -1.2013003826141357, - -1.199671745300293, - -1.1946381330490112, - -1.186336874961853, - -0.9633563160896301, - -0.9763309955596924, - -0.9919929504394531, - -1.0099148750305176, - -1.0296080112457275, - -1.0505352020263672, - -1.0721254348754883, - -1.0937899351119995, - -1.1149377822875977, - -1.1349918842315674, - -1.1534055471420288, - -1.1696761846542358, - -1.18336021900177, - -1.1940842866897583, - -1.2015557289123535, - -1.2055710554122925, - -1.206020474433899, - -1.2028918266296387, - -1.19627046585083, - -1.186336874961853, - -0.9633563160896301, - -0.9767221212387085, - -0.9927644729614258, - -1.0110458135604858, - -1.0310674905776978, - -1.0522834062576294, - -1.0741146802902222, - -1.0959659814834595, - -1.1172411441802979, - -1.1373599767684937, - -1.1557735204696655, - -1.1719796657562256, - -1.18553626537323, - -1.1960735321044922, - -1.2033040523529053, - -1.2070305347442627, - -1.2071514129638672, - -1.2036633491516113, - -1.1966614723205566, - -1.186336874961853, - -0.9633563160896301, - -0.9758296012878418, - -0.9910038113594055, - -1.008465051651001, - -1.027737021446228, - -1.048293948173523, - -1.0695751905441284, - -1.0910001993179321, - -1.1119846105575562, - -1.1319559812545776, - -1.150369644165039, - -1.1667231321334839, - -1.1805704832077026, - -1.1915340423583984, - -1.1993145942687988, - -1.2036999464035034, - -1.2045706510543823, - -1.2019027471542358, - -1.1957690715789795, - -1.186336874961853, - -0.9633563160896301, - -0.9737502336502075, - -0.9869017601013184, - -1.0024521350860596, - -1.019977331161499, - -1.0389991998672485, - -1.0589988231658936, - -1.0794308185577393, - -1.0997377634048462, - -1.1193656921386719, - -1.1377793550491333, - -1.154476284980774, - -1.1690011024475098, - -1.1809576749801636, - -1.1900198459625244, - -1.195940375328064, - -1.198557734489441, - -1.197800636291504, - -1.1936895847320557, - -1.186336874961853, - -0.9633563160896301, - -0.9707092642784119, - -0.9809027910232544, - -0.9936588406562805, - -1.0086294412612915, - -1.0254063606262207, - -1.043531894683838, - -1.0625114440917969, - -1.0818276405334473, - -1.1009533405303955, - -1.1193668842315674, - -1.136566162109375, - -1.1520817279815674, - -1.1654906272888184, - -1.1764270067214966, - -1.1845924854278564, - -1.189764380455017, - -1.19180166721344, - -1.1906486749649048, - -1.186336874961853, - -0.9633563160896301, - -0.967036247253418, - -0.9736570119857788, - -0.9830378890037537, - -0.9949231147766113, - -1.008988380432129, - -1.0248501300811768, - -1.042075753211975, - -1.0601950883865356, - -1.0787142515182495, - -1.0971277952194214, - -1.1149336099624634, - -1.1316460371017456, - -1.1468089818954468, - -1.1600090265274048, - -1.1708861589431763, - -1.1791434288024902, - -1.1845558881759644, - -1.1869757175445557, - -1.186336874961853, - -0.9633563160896301, - -0.9631292819976807, - -0.9659495949745178, - -0.9717403054237366, - -0.9803435206413269, - -0.9915245175361633, - -1.0049782991409302, - -1.0203379392623901, - -1.037184476852417, - -1.055058240890503, - -1.0734719038009644, - -1.0919229984283447, - -1.1099082231521606, - -1.1269371509552002, - -1.142545223236084, - -1.156306505203247, - -1.1678458452224731, - -1.1768484115600586, - -1.1830687522888184, - -1.186336874961853, - -0.9633563160896301, - -0.9594116806983948, - -0.958615779876709, - -0.9609903693199158, - -0.9664706587791443, - -0.9749071598052979, - -0.9860697388648987, - -0.9996539354324341, - -1.0152891874313354, - -1.0325490236282349, - -1.0509625673294067, - -1.0700277090072632, - -1.0892242193222046, - -1.108028531074524, - -1.1259278059005737, - -1.1424336433410645, - -1.1570959091186523, - -1.1695146560668945, - -1.1793510913848877, - -1.186336874961853, - -0.9633563160896301, - -0.9562863111495972, - -0.9524503350257874, - -0.9519529938697815, - -0.9548078775405884, - -0.9609370827674866, - -0.9701734781265259, - -0.9822649955749512, - -0.9968820214271545, - -1.0136256217956543, - -1.0320392847061157, - -1.0516204833984375, - -1.0718352794647217, - -1.0921322107315063, - -1.1119576692581177, - -1.1307708024978638, - -1.148058533668518, - -1.1633491516113281, - -1.1762257814407349, - -1.186336874961853, - -0.9633563160896301, - -0.9540919065475464, - -0.9481213092803955, - -0.9456074833869934, - -0.9466189742088318, - -0.9511281251907349, - -0.9590120315551758, - -0.9700556397438049, - -0.9839576482772827, - -1.0003387928009033, - -1.0187524557113647, - -1.0386961698532104, - -1.0596258640289307, - -1.0809708833694458, - -1.1021487712860107, - -1.122581958770752, - -1.14171302318573, - -1.159020185470581, - -1.1740312576293945, - -1.186336874961853, - -0.9633563160896301, - -0.9530661702156067, - -0.9460978507995605, - -0.9426414966583252, - -0.9427913427352905, - -0.9465433359146118, - -0.9537950754165649, - -0.9643487930297852, - -0.9779165983200073, - -0.994128406047821, - -1.0125420093536377, - -1.032655119895935, - -1.0539190769195557, - -1.0757538080215454, - -1.0975639820098877, - -1.1187543869018555, - -1.1387470960617065, - -1.156996726989746, - -1.1730055809020996, - -1.186336874961853, - -0.9633563160896301, - -0.9533203840255737, - -0.9465992450714111, - -0.9433764815330505, - -0.9437398314476013, - -0.9476794004440308, - -0.9550877809524536, - -0.9657629132270813, - -0.9794135093688965, - -0.9956673383712769, - -1.0140808820724487, - -1.0341520309448242, - -1.055333137512207, - -1.0770466327667236, - -1.0987000465393066, - -1.1197028160095215, - -1.139482021331787, - -1.1574981212615967, - -1.1732597351074219, - -1.186336874961853, - -0.9633563160896301, - -0.954826831817627, - -0.9495711922645569, - -0.94773268699646, - -0.9493615627288818, - -0.9544133543968201, - -0.962750256061554, - -0.9741448163986206, - -0.9882862567901611, - -1.004788875579834, - -1.0232024192810059, - -1.0430247783660889, - -1.0637151002883911, - -1.0847090482711792, - -1.1054339408874512, - -1.1253246068954468, - -1.1438382863998413, - -1.1604701280593872, - -1.1747663021087646, - -1.186336874961853, - -0.9633563160896301, - -0.9574224352836609, - -0.9546915292739868, - -0.9552382230758667, - -0.9590474367141724, - -0.9660153985023499, - -0.9759519696235657, - -0.9885861277580261, - -1.0035732984542847, - -1.0205045938491821, - -1.038918137550354, - -1.0583118200302124, - -1.0781564712524414, - -1.097910761833191, - -1.117035984992981, - -1.1350104808807373, - -1.151343822479248, - -1.1655904054641724, - -1.1773618459701538, - -1.186336874961853, - -0.9633563160896301, - -0.9608258008956909, - -0.9614055156707764, - -0.9650795459747314, - -0.9717477560043335, - -0.981228232383728, - -0.9932624101638794, - -1.0075219869613647, - -1.0236179828643799, - -1.0411113500595093, - -1.0595248937606812, - -1.0783565044403076, - -1.0970922708511353, - -1.1152212619781494, - -1.132248878479004, - -1.1477108001708984, - -1.1611851453781128, - -1.172304391860962, - -1.1807652711868286, - -1.186336874961853 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.29047930240631104, - 0.26176828145980835, - 0.23410145938396454, - 0.2082335352897644, - 0.18487006425857544, - 0.1646483689546585, - 0.14812006056308746, - 0.13573595881462097, - 0.12783388793468475, - 0.12462940812110901, - 0.12620988488197327, - 0.1325322538614273, - 0.14342403411865234, - 0.15858812630176544, - 0.1776108741760254, - 0.1999734342098236, - 0.22506579756736755, - 0.25220349431037903, - 0.28064629435539246, - 0.3096183240413666, - 0.29047930240631104, - 0.2531137764453888, - 0.21702855825424194, - 0.1832078993320465, - 0.1525743305683136, - 0.12596352398395538, - 0.1041012853384018, - 0.087583988904953, - 0.07686217129230499, - 0.0722283273935318, - 0.07380880415439606, - 0.08156053721904755, - 0.09527206420898438, - 0.11456933617591858, - 0.13892602920532227, - 0.16767773032188416, - 0.20004017651081085, - 0.23513057827949524, - 0.2719917893409729, - 0.3096183240413666, - 0.29047930240631104, - 0.2485225796699524, - 0.20797134935855865, - 0.16993176937103271, - 0.13544142246246338, - 0.10544116795063019, - 0.08074928820133209, - 0.06203930079936981, - 0.04982161521911621, - 0.044429510831832886, - 0.046009987592697144, - 0.054519981145858765, - 0.06972737610340118, - 0.09121732413768768, - 0.11840365827083588, - 0.15054480731487274, - 0.18676404654979706, - 0.22607338428497314, - 0.2674005627632141, - 0.3096183240413666, - 0.29047930240631104, - 0.24849215149879456, - 0.20791134238243103, - 0.16984380781650543, - 0.13532792031764984, - 0.10530520975589752, - 0.08059458434581757, - 0.06187008321285248, - 0.04964250326156616, - 0.04424533247947693, - 0.045825809240341187, - 0.05434085428714752, - 0.06955815851688385, - 0.09106263518333435, - 0.11826770007610321, - 0.1504313200712204, - 0.18667608499526978, - 0.2260133922100067, - 0.26737016439437866, - 0.3096183240413666, - 0.29047930240631104, - 0.2530258297920227, - 0.21685504913330078, - 0.1829535961151123, - 0.1522461473941803, - 0.1255704015493393, - 0.10365396738052368, - 0.08709466457366943, - 0.07634420692920685, - 0.07169583439826965, - 0.07327631115913391, - 0.0810425728559494, - 0.0947827398777008, - 0.11412203311920166, - 0.13853290677070618, - 0.16734954714775085, - 0.19978585839271545, - 0.23495709896087646, - 0.2719038426876068, - 0.3096183240413666, - 0.29047930240631104, - 0.2616323232650757, - 0.23383328318595886, - 0.20784041285514832, - 0.1843627542257309, - 0.1640407145023346, - 0.14742860198020935, - 0.13497959077358246, - 0.12703321874141693, - 0.12380629777908325, - 0.1253867745399475, - 0.13173158466815948, - 0.14266766607761383, - 0.15789665281772614, - 0.17700321972370148, - 0.19946612417697906, - 0.22467270493507385, - 0.25193530321121216, - 0.2805103361606598, - 0.3096183240413666, - 0.29047927260398865, - 0.27337896823883057, - 0.2570061683654785, - 0.24180743098258972, - 0.228197380900383, - 0.21654723584651947, - 0.20717480778694153, - 0.20033574104309082, - 0.19621658325195312, - 0.19492968916893005, - 0.1965101957321167, - 0.20091493427753448, - 0.208023801445961, - 0.2176428735256195, - 0.22950974106788635, - 0.24330076575279236, - 0.25863972306251526, - 0.2751081883907318, - 0.2922569811344147, - 0.3096183240413666, - 0.29047927260398865, - 0.2869928479194641, - 0.28386256098747253, - 0.28117379546165466, - 0.27899986505508423, - 0.2774001359939575, - 0.27641814947128296, - 0.27608078718185425, - 0.2763971984386444, - 0.2773587703704834, - 0.27893924713134766, - 0.2810955345630646, - 0.2837688624858856, - 0.28688621520996094, - 0.2903626263141632, - 0.2941032648086548, - 0.2980060577392578, - 0.30196458101272583, - 0.3058708608150482, - 0.3096183240413666, - 0.29047927260398865, - 0.3009986877441406, - 0.3114921748638153, - 0.32167351245880127, - 0.33126500248908997, - 0.34000498056411743, - 0.3476550877094269, - 0.3540065884590149, - 0.3588862717151642, - 0.3621610403060913, - 0.36374151706695557, - 0.36358463764190674, - 0.3616946339607239, - 0.35812315344810486, - 0.3529675006866455, - 0.3463684022426605, - 0.3385058045387268, - 0.3295941948890686, - 0.31987670063972473, - 0.3096183240413666, - 0.29047927260398865, - 0.31387871503829956, - 0.33690088987350464, - 0.35891786217689514, - 0.37932902574539185, - 0.3975776433944702, - 0.4131658971309662, - 0.4256686568260193, - 0.43474483489990234, - 0.4401468336582184, - 0.44172731041908264, - 0.4394431710243225, - 0.43335673213005066, - 0.42363399267196655, - 0.4105401635169983, - 0.3944324254989624, - 0.3757501542568207, - 0.3550029397010803, - 0.33275672793388367, - 0.3096183240413666, - 0.29047927260398865, - 0.324237197637558, - 0.35733529925346375, - 0.38887080550193787, - 0.4179834723472595, - 0.4438791871070862, - 0.4658515453338623, - 0.4833013117313385, - 0.49575239419937134, - 0.502865195274353, - 0.5044456720352173, - 0.5004507303237915, - 0.4909893870353699, - 0.47631964087486267, - 0.45684170722961426, - 0.4330868721008301, - 0.4057030975818634, - 0.37543734908103943, - 0.3431152105331421, - 0.3096182942390442, - 0.29047927260398865, - 0.33095163106918335, - 0.3705810308456421, - 0.4082864820957184, - 0.44303950667381287, - 0.47389209270477295, - 0.5000027418136597, - 0.5206591486930847, - 0.5352978706359863, - 0.5435196161270142, - 0.5451000928878784, - 0.5399962663650513, - 0.5283471941947937, - 0.5104708075523376, - 0.4868546724319458, - 0.4581429064273834, - 0.42511874437332153, - 0.3886830508708954, - 0.34982961416244507, - 0.3096182942390442, - 0.29047927260398865, - 0.3332943916320801, - 0.37520265579223633, - 0.41506093740463257, - 0.4517819583415985, - 0.4843640923500061, - 0.5119186043739319, - 0.5336938500404358, - 0.5490959286689758, - 0.5577045679092407, - 0.559285044670105, - 0.553794264793396, - 0.5413819551467896, - 0.5223866701126099, - 0.49732667207717896, - 0.46688535809516907, - 0.4318931996822357, - 0.3933046758174896, - 0.3521724045276642, - 0.3096182942390442, - 0.29047927260398865, - 0.3310116231441498, - 0.37069937586784363, - 0.40845996141433716, - 0.44326338171958923, - 0.4741602838039398, - 0.5003079175949097, - 0.5209929347038269, - 0.5356512069702148, - 0.5438828468322754, - 0.5454633235931396, - 0.5403496026992798, - 0.5286810398101807, - 0.5107759237289429, - 0.4871228337287903, - 0.4583668112754822, - 0.4252922534942627, - 0.3888013958930969, - 0.3498896360397339, - 0.3096182942390442, - 0.29047927260398865, - 0.3243506848812103, - 0.3575592041015625, - 0.38919898867607117, - 0.41840699315071106, - 0.44438648223876953, - 0.46642881631851196, - 0.483932763338089, - 0.49642080068588257, - 0.5035523176193237, - 0.505132794380188, - 0.5011191964149475, - 0.49162083864212036, - 0.47689691185951233, - 0.45734903216362, - 0.433510422706604, - 0.4060312807559967, - 0.3756612539291382, - 0.34322869777679443, - 0.3096182942390442, - 0.29047927260398865, - 0.3140334188938141, - 0.337206095457077, - 0.35936519503593445, - 0.3799063265323639, - 0.3982691466808319, - 0.4139527678489685, - 0.4265294075012207, - 0.43565595149993896, - 0.44108349084854126, - 0.4426639676094055, - 0.44035428762435913, - 0.4342174530029297, - 0.4244208335876465, - 0.41123166680336, - 0.39500972628593445, - 0.3761974573135376, - 0.3553081154823303, - 0.3329114317893982, - 0.3096183240413666, - 0.29047927260398865, - 0.3011777997016907, - 0.3118455410003662, - 0.3221914768218994, - 0.3319334387779236, - 0.34080564975738525, - 0.3485661447048187, - 0.3550032079219818, - 0.3599412441253662, - 0.36324557662010193, - 0.3648260831832886, - 0.3646395802497864, - 0.3626912832260132, - 0.3590342104434967, - 0.3537681996822357, - 0.34703683853149414, - 0.33902376890182495, - 0.3299475610256195, - 0.3200558125972748, - 0.3096183240413666, - 0.29047927260398865, - 0.2871769964694977, - 0.28422582149505615, - 0.2817062437534332, - 0.2796870172023773, - 0.2782232165336609, - 0.27735474705696106, - 0.27710530161857605, - 0.27748170495033264, - 0.2784736752510071, - 0.2800541818141937, - 0.2821800708770752, - 0.2847933769226074, - 0.28782281279563904, - 0.2911857068538666, - 0.2947904169559479, - 0.29853853583335876, - 0.30232784152030945, - 0.3060550093650818, - 0.3096183240413666, - 0.29047927260398865, - 0.2735481858253479, - 0.2573399543762207, - 0.24229669570922852, - 0.2288287729024887, - 0.2173035442829132, - 0.2080353945493698, - 0.20127713680267334, - 0.1972130835056305, - 0.19595414400100708, - 0.19753463566303253, - 0.20191143453121185, - 0.20896518230438232, - 0.2185034453868866, - 0.2302660346031189, - 0.24393215775489807, - 0.25912898778915405, - 0.275441974401474, - 0.292426198720932, - 0.3096183240413666, - 0.29047930240631104, - 0.26176828145980835, - 0.23410144448280334, - 0.20823350548744202, - 0.18487003445625305, - 0.16464835405349731, - 0.14812003076076508, - 0.1357359141111374, - 0.12783385813236237, - 0.12462937831878662, - 0.12620985507965088, - 0.13253222405910492, - 0.14342398941516876, - 0.15858809649944305, - 0.1776108592748642, - 0.19997341930866241, - 0.22506579756736755, - 0.25220349431037903, - 0.28064629435539246, - 0.3096183240413666 - ], - "y": [ - 0.4190944731235504, - 0.4524335265159607, - 0.48538172245025635, - 0.5170403718948364, - 0.5465458631515503, - 0.5730934143066406, - 0.5959588289260864, - 0.614518404006958, - 0.628265917301178, - 0.6368263363838196, - 0.6399661898612976, - 0.6375998258590698, - 0.6297917366027832, - 0.616754949092865, - 0.5988451242446899, - 0.5765506625175476, - 0.5504798293113708, - 0.5213437080383301, - 0.48993706703186035, - 0.45711660385131836, - 0.4190944731235504, - 0.44220882654190063, - 0.46521124243736267, - 0.4874742925167084, - 0.5083907246589661, - 0.5273898839950562, - 0.5439536571502686, - 0.557630181312561, - 0.5680463314056396, - 0.5749180316925049, - 0.5780578851699829, - 0.5773801803588867, - 0.5729034543037415, - 0.5647497773170471, - 0.5531415939331055, - 0.5383955240249634, - 0.5209137797355652, - 0.5011732578277588, - 0.4797123968601227, - 0.45711660385131836, - 0.4190945029258728, - 0.42950743436813354, - 0.44015493988990784, - 0.4507465362548828, - 0.46099331974983215, - 0.47061577439308167, - 0.4793514311313629, - 0.4869620203971863, - 0.4932399392127991, - 0.4980139136314392, - 0.5011537671089172, - 0.5025738477706909, - 0.5022353529930115, - 0.5001475811004639, - 0.4963674545288086, - 0.49099811911582947, - 0.48418599367141724, - 0.47611692547798157, - 0.4670110046863556, - 0.45711660385131836, - 0.4190945029258728, - 0.41570574045181274, - 0.4129280149936676, - 0.4108370840549469, - 0.4094899296760559, - 0.40892335772514343, - 0.4091527760028839, - 0.4101719856262207, - 0.4119531214237213, - 0.4144476354122162, - 0.4175874888896942, - 0.42128700017929077, - 0.4254452884197235, - 0.42994892597198486, - 0.43467503786087036, - 0.4394947290420532, - 0.4442765414714813, - 0.44889000058174133, - 0.4532093107700348, - 0.45711660385131836, - 0.4190945029258728, - 0.4022993743419647, - 0.3864809572696686, - 0.3720707297325134, - 0.3594617545604706, - 0.34899795055389404, - 0.34096482396125793, - 0.3355814218521118, - 0.33299461007118225, - 0.3332749307155609, - 0.33641475439071655, - 0.3423284888267517, - 0.350854754447937, - 0.3617609441280365, - 0.37474966049194336, - 0.3894665241241455, - 0.40551018714904785, - 0.4224429428577423, - 0.43980294466018677, - 0.45711663365364075, - 0.4190945029258728, - 0.39074110984802246, - 0.3636797070503235, - 0.3386484384536743, - 0.31633010506629944, - 0.2973335087299347, - 0.28217679262161255, - 0.2712734043598175, - 0.26492074131965637, - 0.263292133808136, - 0.266431987285614, - 0.27425462007522583, - 0.2865467071533203, - 0.3029729127883911, - 0.3230851888656616, - 0.34633490443229675, - 0.37208789587020874, - 0.3996416926383972, - 0.4282446801662445, - 0.45711663365364075, - 0.4190945029258728, - 0.382283478975296, - 0.34699511528015137, - 0.3141920566558838, - 0.2847689986228943, - 0.25952857732772827, - 0.2391592562198639, - 0.22421666979789734, - 0.21510842442512512, - 0.21208295226097107, - 0.2152228057384491, - 0.22444230318069458, - 0.23948997259140015, - 0.25995534658432007, - 0.2852802276611328, - 0.3147737979888916, - 0.3476315140724182, - 0.3829571008682251, - 0.4197870194911957, - 0.45711663365364075, - 0.4190945029258728, - 0.3778429627418518, - 0.3382352590560913, - 0.30135172605514526, - 0.26819849014282227, - 0.23967990279197693, - 0.21657384932041168, - 0.19951055943965912, - 0.18895553052425385, - 0.18519669771194458, - 0.1883365511894226, - 0.1982894092798233, - 0.21478386223316193, - 0.23736995458602905, - 0.26543158292770386, - 0.2982032895088196, - 0.3347912132740021, - 0.37419724464416504, - 0.41534653306007385, - 0.45711663365364075, - 0.4190945029258728, - 0.3779008090496063, - 0.3383493721485138, - 0.3015190064907074, - 0.26841437816619873, - 0.23993846774101257, - 0.21686804294586182, - 0.19983239471912384, - 0.1892962008714676, - 0.1855469048023224, - 0.18868675827980042, - 0.19863007962703705, - 0.21510569751262665, - 0.2376641482114792, - 0.2656901180744171, - 0.29841914772987366, - 0.3349584639072418, - 0.3743113577365875, - 0.41540437936782837, - 0.45711663365364075, - 0.4190945029258728, - 0.38245072960853577, - 0.34732508659362793, - 0.3146756887435913, - 0.2853931188583374, - 0.260276198387146, - 0.24000996351242065, - 0.22514724731445312, - 0.21609348058700562, - 0.21309563517570496, - 0.21623548865318298, - 0.22542735934257507, - 0.24042055010795593, - 0.2608060836791992, - 0.28602784872055054, - 0.3153979182243347, - 0.34811514616012573, - 0.38328707218170166, - 0.4199542999267578, - 0.45711663365364075, - 0.4190945029258728, - 0.3909996747970581, - 0.3641897439956665, - 0.33939605951309204, - 0.3172949254512787, - 0.29848921298980713, - 0.283491849899292, - 0.2727119028568268, - 0.26644349098205566, - 0.26485756039619446, - 0.2679974138736725, - 0.2757773697376251, - 0.2879852056503296, - 0.30428794026374817, - 0.32424086332321167, - 0.347299724817276, - 0.37283551692962646, - 0.40015172958374023, - 0.42850321531295776, - 0.45711663365364075, - 0.4190945029258728, - 0.40262120962142944, - 0.38711583614349365, - 0.3730013370513916, - 0.36066269874572754, - 0.3504365086555481, - 0.3426016867160797, - 0.33737197518348694, - 0.3348900079727173, - 0.3352234959602356, - 0.3383633494377136, - 0.34422385692596436, - 0.35264527797698975, - 0.36339783668518066, - 0.376188188791275, - 0.39066749811172485, - 0.406440794467926, - 0.4230778217315674, - 0.4401247501373291, - 0.45711663365364075, - 0.4190945029258728, - 0.41605597734451294, - 0.41361889243125916, - 0.4118497669696808, - 0.4107968211174011, - 0.4104888141155243, - 0.41093409061431885, - 0.412120521068573, - 0.4140157699584961, - 0.4165681302547455, - 0.4197079837322235, - 0.42334967851638794, - 0.4273938536643982, - 0.4317302107810974, - 0.4362404942512512, - 0.44080162048339844, - 0.4452892541885376, - 0.4495808780193329, - 0.4535595178604126, - 0.45711660385131836, - 0.4190945029258728, - 0.4298481345176697, - 0.44082701206207275, - 0.4517316520214081, - 0.4622645974159241, - 0.47213855385780334, - 0.4810841977596283, - 0.4888574779033661, - 0.49524638056755066, - 0.5000766515731812, - 0.5032164454460144, - 0.5045802593231201, - 0.5041307806968689, - 0.5018803477287292, - 0.49789026379585266, - 0.4922693967819214, - 0.4851711094379425, - 0.4767889976501465, - 0.46735167503356934, - 0.45711660385131836, - 0.4190944731235504, - 0.44250303506851196, - 0.46579161286354065, - 0.4883250296115875, - 0.509488582611084, - 0.5287049412727356, - 0.5454500317573547, - 0.5592670440673828, - 0.5697790384292603, - 0.5766993761062622, - 0.5798392295837402, - 0.5791129469871521, - 0.5745403170585632, - 0.5662461519241333, - 0.5544566512107849, - 0.5394933819770813, - 0.5217644572257996, - 0.5017536282539368, - 0.4800065755844116, - 0.45711660385131836, - 0.4190944731235504, - 0.4526493549346924, - 0.48580753803253174, - 0.5176644921302795, - 0.5473513007164001, - 0.5740581750869751, - 0.5970566272735596, - 0.6157193183898926, - 0.6295371055603027, - 0.63813316822052, - 0.641273021697998, - 0.6388710141181946, - 0.6309926509857178, - 0.6178528070449829, - 0.5998098850250244, - 0.5773561000823975, - 0.551103949546814, - 0.5217695236206055, - 0.49015292525291443, - 0.45711660385131836, - 0.4190944731235504, - 0.4591875970363617, - 0.4987056851387024, - 0.5365707278251648, - 0.5717499256134033, - 0.6032836437225342, - 0.6303117275238037, - 0.6520969271659851, - 0.6680449843406677, - 0.6777209043502808, - 0.6808607578277588, - 0.6773788928985596, - 0.6673702001571655, - 0.6511077880859375, - 0.6290352940559387, - 0.6017547249794006, - 0.5700101852416992, - 0.5346676707267761, - 0.49669116735458374, - 0.45711660385131836, - 0.4190944731235504, - 0.46140924096107483, - 0.5030883550643921, - 0.5429948568344116, - 0.5800402760505676, - 0.6132140755653381, - 0.6416113972663879, - 0.6644576191902161, - 0.6811295747756958, - 0.6911723613739014, - 0.6943122148513794, - 0.6904634237289429, - 0.6797309517860413, - 0.6624075174331665, - 0.6389658451080322, - 0.6100450754165649, - 0.576434314250946, - 0.5390503406524658, - 0.4989127814769745, - 0.45711660385131836, - 0.4190944731235504, - 0.4590734839439392, - 0.49848055839538574, - 0.5362407565116882, - 0.5713241100311279, - 0.6027735471725464, - 0.629731297492981, - 0.6514620184898376, - 0.6673728823661804, - 0.6770299673080444, - 0.6801698207855225, - 0.6767067909240723, - 0.6667352914810181, - 0.6505274176597595, - 0.6285252571105957, - 0.6013289093971252, - 0.5696802139282227, - 0.5344425439834595, - 0.49657705426216125, - 0.45711660385131836, - 0.4190944731235504, - 0.4524335265159607, - 0.48538172245025635, - 0.5170403718948364, - 0.5465458631515503, - 0.5730933547019958, - 0.5959587693214417, - 0.614518404006958, - 0.6282658576965332, - 0.6368262767791748, - 0.6399661302566528, - 0.637599766254425, - 0.6297916769981384, - 0.6167548894882202, - 0.5988450646400452, - 0.5765506625175476, - 0.5504798293113708, - 0.5213437080383301, - 0.48993706703186035, - 0.45711660385131836 - ], - "z": [ - -1.1824754476547241, - -1.1788737773895264, - -1.1774451732635498, - -1.178228735923767, - -1.1812028884887695, - -1.1862866878509521, - -1.1933414936065674, - -1.2021746635437012, - -1.2125455141067505, - -1.2241709232330322, - -1.2367337942123413, - -1.2498916387557983, - -1.2632853984832764, - -1.2765498161315918, - -1.289322853088379, - -1.3012564182281494, - -1.312024712562561, - -1.3213342428207397, - -1.3289308547973633, - -1.334607481956482, - -1.1824754476547241, - -1.1825180053710938, - -1.1846342086791992, - -1.1887664794921875, - -1.194801926612854, - -1.2025761604309082, - -1.2118768692016602, - -1.2224504947662354, - -1.234008550643921, - -1.2462358474731445, - -1.2587988376617432, - -1.2713547945022583, - -1.2835612297058105, - -1.2950851917266846, - -1.305612325668335, - -1.3148554563522339, - -1.3225624561309814, - -1.3285232782363892, - -1.3325750827789307, - -1.334607481956482, - -1.1824754476547241, - -1.186269998550415, - -1.1920359134674072, - -1.1996159553527832, - -1.2088032960891724, - -1.2193474769592285, - -1.2309606075286865, - -1.243326187133789, - -1.2561067342758179, - -1.2689536809921265, - -1.281516671180725, - -1.2934528589248657, - -1.3044368028640747, - -1.314168930053711, - -1.3223836421966553, - -1.3288568258285522, - -1.3334120512008667, - -1.3359249830245972, - -1.336327075958252, - -1.334607481956482, - -1.1824754476547241, - -1.189723253250122, - -1.1988482475280762, - -1.2096015214920044, - -1.2216898202896118, - -1.2347832918167114, - -1.248524785041809, - -1.2625395059585571, - -1.2764451503753662, - -1.2898625135421753, - -1.3024253845214844, - -1.3137913942337036, - -1.3236502408981323, - -1.331732988357544, - -1.3378194570541382, - -1.3417432308197021, - -1.343397617340088, - -1.3427373170852661, - -1.339780330657959, - -1.334607481956482, - -1.1824754476547241, - -1.192503571510315, - -1.2043330669403076, - -1.2176411151885986, - -1.2320648431777954, - -1.2472108602523804, - -1.262665867805481, - -1.2780084609985352, - -1.2928199768066406, - -1.3066964149475098, - -1.3192594051361084, - -1.3301661014556885, - -1.3391190767288208, - -1.3458741903305054, - -1.3502470254898071, - -1.3521183729171753, - -1.3514372110366821, - -1.348222017288208, - -1.3425606489181519, - -1.334607481956482, - -1.1824754476547241, - -1.1943095922470093, - -1.2078957557678223, - -1.2228634357452393, - -1.2388042211532593, - -1.2552834749221802, - -1.271851658821106, - -1.2880566120147705, - -1.3034565448760986, - -1.3176313638687134, - -1.330194354057312, - -1.340802788734436, - -1.3491673469543457, - -1.3550598621368408, - -1.358319640159607, - -1.3588577508926392, - -1.3566594123840332, - -1.3517848253250122, - -1.3443666696548462, - -1.334607481956482, - -1.1824754476547241, - -1.1949455738067627, - -1.2091504335403442, - -1.2247024774551392, - -1.2411776781082153, - -1.2581263780593872, - -1.275086522102356, - -1.2915953397750854, - -1.3072024583816528, - -1.3214823007583618, - -1.3340452909469604, - -1.3445487022399902, - -1.3527060747146606, - -1.3582948446273804, - -1.3611626625061035, - -1.3612310886383057, - -1.3584985733032227, - -1.3530395030975342, - -1.3450026512145996, - -1.334607481956482, - -1.1824754476547241, - -1.1943427324295044, - -1.207961082458496, - -1.2229591608047485, - -1.2389278411865234, - -1.2554315328598022, - -1.2720201015472412, - -1.288240909576416, - -1.3036516904830933, - -1.3178318738937378, - -1.3303948640823364, - -1.3409978151321411, - -1.3493516445159912, - -1.3552284240722656, - -1.358467698097229, - -1.3589813709259033, - -1.356755256652832, - -1.351850152015686, - -1.3443998098373413, - -1.334607481956482, - -1.1824754476547241, - -1.1925662755966187, - -1.2044565677642822, - -1.2178223133087158, - -1.232298731803894, - -1.2474908828735352, - -1.2629845142364502, - -1.2783570289611816, - -1.2931889295578003, - -1.3070757389068604, - -1.319638729095459, - -1.3305351734161377, - -1.3394677639007568, - -1.3461928367614746, - -1.350527048110962, - -1.3523521423339844, - -1.3516182899475098, - -1.3483456373214722, - -1.3426233530044556, - -1.334607481956482, - -1.1824754476547241, - -1.18980872631073, - -1.199016809463501, - -1.2098485231399536, - -1.222008466720581, - -1.235164999961853, - -1.2489590644836426, - -1.2630146741867065, - -1.276948094367981, - -1.290379524230957, - -1.3029425144195557, - -1.3142943382263184, - -1.3241252899169922, - -1.332167387008667, - -1.3382011651992798, - -1.342061996459961, - -1.343644618988037, - -1.3429057598114014, - -1.339865803718567, - -1.334607481956482, - -1.1824754476547241, - -1.1863689422607422, - -1.1922310590744019, - -1.1999019384384155, - -1.2091723680496216, - -1.2197893857955933, - -1.2314635515213013, - -1.243876338005066, - -1.2566890716552734, - -1.26955246925354, - -1.2821153402328491, - -1.2940353155136108, - -1.3049870729446411, - -1.3146718740463257, - -1.3228256702423096, - -1.3292258977890015, - -1.333698034286499, - -1.3361201286315918, - -1.336426019668579, - -1.334607481956482, - -1.1824754476547241, - -1.1826196908950806, - -1.1848347187042236, - -1.1890604496002197, - -1.1951813697814941, - -1.2030304670333862, - -1.212393879890442, - -1.2230161428451538, - -1.2346073389053345, - -1.2468514442443848, - -1.2594143152236938, - -1.2719534635543823, - -1.2841267585754395, - -1.2956022024154663, - -1.306066632270813, - -1.3152347803115845, - -1.3228564262390137, - -1.3287237882614136, - -1.3326767683029175, - -1.334607481956482, - -1.1824754476547241, - -1.1789672374725342, - -1.1776294708251953, - -1.1784988641738892, - -1.181551456451416, - -1.1867042779922485, - -1.1938166618347168, - -1.2026944160461426, - -1.2130956649780273, - -1.2247364521026611, - -1.2372994422912598, - -1.2504417896270752, - -1.2638051509857178, - -1.2770248651504517, - -1.2897404432296753, - -1.301604986190796, - -1.312294840812683, - -1.3215185403823853, - -1.329024314880371, - -1.334607481956482, - -1.1824754476547241, - -1.1758073568344116, - -1.1713958978652954, - -1.1693615913391113, - -1.1697598695755005, - -1.1725800037384033, - -1.177744746208191, - -1.185113549232483, - -1.1944851875305176, - -1.2056041955947876, - -1.2181671857833862, - -1.231831431388855, - -1.246224284172058, - -1.2609530687332153, - -1.2756160497665405, - -1.2898133993148804, - -1.3031576871871948, - -1.3152849674224854, - -1.3258644342422485, - -1.334607481956482, - -1.1824754476547241, - -1.1734824180603027, - -1.1668096780776978, - -1.1626390218734741, - -1.1610844135284424, - -1.1621880531311035, - -1.1659201383590698, - -1.1721785068511963, - -1.1807928085327148, - -1.1915277242660522, - -1.2040907144546509, - -1.2181389331817627, - -1.2332892417907715, - -1.2491283416748047, - -1.2652242183685303, - -1.2811378240585327, - -1.2964351177215576, - -1.3106986284255981, - -1.3235394954681396, - -1.334607481956482, - -1.1824754476547241, - -1.1722445487976074, - -1.16436767578125, - -1.1590595245361328, - -1.15646493434906, - -1.1566548347473145, - -1.1596238613128662, - -1.1652911901474, - -1.1735020875930786, - -1.1840325593948364, - -1.196595549583435, - -1.2108482122421265, - -1.2264018058776855, - -1.2428321838378906, - -1.2596909999847412, - -1.27651846408844, - -1.2928556203842163, - -1.3082566261291504, - -1.3223016262054443, - -1.334607481956482, - -1.1824754476547241, - -1.1722277402877808, - -1.1643345355987549, - -1.159010887145996, - -1.156402349472046, - -1.1565797328948975, - -1.1595385074615479, - -1.165197730064392, - -1.1734031438827515, - -1.1839309930801392, - -1.1964938640594482, - -1.2107493877410889, - -1.2263084650039673, - -1.2427468299865723, - -1.2596158981323242, - -1.2764557600021362, - -1.2928069829940796, - -1.3082234859466553, - -1.3222848176956177, - -1.334607481956482, - -1.1824754476547241, - -1.1734338998794556, - -1.166713833808899, - -1.1624985933303833, - -1.1609032154083252, - -1.161971092224121, - -1.1656731367111206, - -1.1719083786010742, - -1.1805068254470825, - -1.19123375415802, - -1.2037967443466187, - -1.2178529500961304, - -1.2330191135406494, - -1.248881459236145, - -1.2650072574615479, - -1.2809566259384155, - -1.2962946891784668, - -1.3106029033660889, - -1.3234909772872925, - -1.334607481956482, - -1.1824754476547241, - -1.1757322549819946, - -1.1712478399276733, - -1.169144630432129, - -1.1694798469543457, - -1.1722445487976074, - -1.1773630380630493, - -1.1846959590911865, - -1.1940432786941528, - -1.20514976978302, - -1.2177127599716187, - -1.2313894033432007, - -1.2458066940307617, - -1.2605713605880737, - -1.2752807140350342, - -1.2895333766937256, - -1.3029407262802124, - -1.3151369094848633, - -1.3257893323898315, - -1.334607481956482, - -1.1824754476547241, - -1.1788737773895264, - -1.1774451732635498, - -1.178228735923767, - -1.1812028884887695, - -1.1862866878509521, - -1.1933414936065674, - -1.2021746635437012, - -1.2125455141067505, - -1.2241709232330322, - -1.2367339134216309, - -1.2498916387557983, - -1.2632853984832764, - -1.2765498161315918, - -1.289322853088379, - -1.3012564182281494, - -1.312024712562561, - -1.3213342428207397, - -1.3289308547973633, - -1.334607481956482 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.24189217388629913, - 0.2106218934059143, - 0.18034841120243073, - 0.15189751982688904, - 0.12604528665542603, - 0.10349690914154053, - 0.08486741781234741, - 0.07066497206687927, - 0.06127701699733734, - 0.0569596141576767, - 0.05783052742481232, - 0.06386597454547882, - 0.07490137219429016, - 0.09063567221164703, - 0.11063969135284424, - 0.13436779379844666, - 0.16117271780967712, - 0.19032329320907593, - 0.22102436423301697, - 0.252438485622406, - 0.24189217388629913, - 0.201091006398201, - 0.16154663264751434, - 0.12433771044015884, - 0.09047919511795044, - 0.0608946830034256, - 0.03639113903045654, - 0.01763695478439331, - 0.0051437318325042725, - -0.0007477849721908569, - 0.00012312829494476318, - 0.007732689380645752, - 0.0218733549118042, - 0.042159393429756165, - 0.0680374801158905, - 0.09880168735980988, - 0.13361290097236633, - 0.17152151465415955, - 0.21149347722530365, - 0.252438485622406, - 0.24189217388629913, - 0.19598937034606934, - 0.151482492685318, - 0.10958559811115265, - 0.07144154608249664, - 0.03809075057506561, - 0.010442972183227539, - -0.010747641324996948, - -0.024903088808059692, - -0.03163713216781616, - -0.03076624870300293, - -0.022314101457595825, - -0.00651124119758606, - 0.01621122658252716, - 0.045233532786369324, - 0.07976402342319489, - 0.11886079609394073, - 0.1614573746919632, - 0.206391841173172, - 0.252438485622406, - 0.24189217388629913, - 0.1958698034286499, - 0.15124660730361938, - 0.1092398464679718, - 0.07099531590938568, - 0.03755626082420349, - 0.00983479619026184, - -0.011412948369979858, - -0.025607317686080933, - -0.032361119985580444, - -0.03149023652076721, - -0.023018330335617065, - -0.00717654824256897, - 0.015603050589561462, - 0.0446990430355072, - 0.07931782305240631, - 0.11851504445075989, - 0.1612214893102646, - 0.20627227425575256, - 0.252438485622406, - 0.24189217388629913, - 0.20074525475502014, - 0.16086453199386597, - 0.12333789467811584, - 0.08918894827365875, - 0.0593491792678833, - 0.034632548689842224, - 0.015713229775428772, - 0.0031073540449142456, - -0.002841264009475708, - -0.001970350742340088, - 0.005696311593055725, - 0.01994962990283966, - 0.04040078818798065, - 0.06649196147918701, - 0.097511425614357, - 0.13261309266090393, - 0.17083942890167236, - 0.2111477255821228, - 0.252438485622406, - 0.24189217388629913, - 0.21008741855621338, - 0.17929404973983765, - 0.15035201609134674, - 0.1240508109331131, - 0.10110785067081451, - 0.0821489691734314, - 0.06769126653671265, - 0.058129191398620605, - 0.053723499178886414, - 0.054594412446022034, - 0.060718148946762085, - 0.07192766666412354, - 0.08791722357273102, - 0.10825064778327942, - 0.13237333297729492, - 0.15962721407413483, - 0.18926893174648285, - 0.22048988938331604, - 0.252438485622406, - 0.24189217388629913, - 0.2228839099407196, - 0.20453797280788422, - 0.18735480308532715, - 0.17180310189723969, - 0.15830710530281067, - 0.14723491668701172, - 0.13888856768608093, - 0.1334957331418991, - 0.13120348751544952, - 0.13207440078258514, - 0.13608470559120178, - 0.14312496781349182, - 0.15300318598747253, - 0.16544988751411438, - 0.1801256239414215, - 0.19663000106811523, - 0.21451285481452942, - 0.23328638076782227, - 0.252438485622406, - 0.24189217388629913, - 0.23774804174900055, - 0.2338607758283615, - 0.23033642768859863, - 0.22727113962173462, - 0.22474850714206696, - 0.22283734381198883, - 0.22158977389335632, - 0.22103986144065857, - 0.2212025672197342, - 0.2220734804868698, - 0.22362881898880005, - 0.2258261889219284, - 0.22860562801361084, - 0.23189130425453186, - 0.23559366166591644, - 0.2396116405725479, - 0.2438356578350067, - 0.2481505125761032, - 0.252438485622406, - 0.24189215898513794, - 0.25306904315948486, - 0.2640848755836487, - 0.27463915944099426, - 0.28444406390190125, - 0.2932320833206177, - 0.3007635474205017, - 0.3068329691886902, - 0.31127482652664185, - 0.31396791338920593, - 0.31483882665634155, - 0.3138637840747833, - 0.3110693693161011, - 0.3065318465232849, - 0.30037492513656616, - 0.2927665710449219, - 0.28391438722610474, - 0.2740597426891327, - 0.2634715139865875, - 0.252438485622406, - 0.24189215898513794, - 0.26718664169311523, - 0.291934996843338, - 0.3154621422290802, - 0.33712631464004517, - 0.3563366234302521, - 0.3725690245628357, - 0.38538068532943726, - 0.3944222331047058, - 0.3994470238685608, - 0.400317907333374, - 0.3970112204551697, - 0.38961708545684814, - 0.3783372938632965, - 0.3634794354438782, - 0.3454488515853882, - 0.3247373402118683, - 0.301909863948822, - 0.2775891125202179, - 0.2524384558200836, - 0.24189215898513794, - 0.2785710096359253, - 0.31439316272735596, - 0.34838151931762695, - 0.37960898876190186, - 0.40722373127937317, - 0.4304724931716919, - 0.44872111082077026, - 0.461471825838089, - 0.4683768153190613, - 0.4692476987838745, - 0.46406078338623047, - 0.45295751094818115, - 0.4362407922744751, - 0.41436654329299927, - 0.3879315257072449, - 0.35765671730041504, - 0.32436805963516235, - 0.28897345066070557, - 0.2524384558200836, - 0.24189215898513794, - 0.2859884202480316, - 0.3290256857872009, - 0.36983001232147217, - 0.40728840231895447, - 0.44037899374961853, - 0.4681992530822754, - 0.4899902939796448, - 0.5051577091217041, - 0.5132877230644226, - 0.5141586065292358, - 0.507746696472168, - 0.49422669410705566, - 0.4739675521850586, - 0.447521835565567, - 0.4156109094619751, - 0.37910521030426025, - 0.3390005826950073, - 0.2963908910751343, - 0.2524384558200836, - 0.24189215898513794, - 0.28863513469696045, - 0.3342469036579132, - 0.3774833083152771, - 0.41716504096984863, - 0.4522095322608948, - 0.48166102170944214, - 0.5047160387039185, - 0.5207458138465881, - 0.5293129682540894, - 0.5301838517189026, - 0.523334801197052, - 0.5089524984359741, - 0.48742932081222534, - 0.45935240387916565, - 0.42548757791519165, - 0.3867585062980652, - 0.3442218005657196, - 0.2990376055240631, - 0.2524384558200836, - 0.24189215898513794, - 0.2862243056297302, - 0.3294910192489624, - 0.37051209807395935, - 0.40816861391067505, - 0.4414333701133728, - 0.46939897537231445, - 0.4913026690483093, - 0.5065469145774841, - 0.5147159099578857, - 0.515586793422699, - 0.509135901927948, - 0.4955390691757202, - 0.47516727447509766, - 0.4485762119293213, - 0.41649115085601807, - 0.37978729605674744, - 0.3394658863544464, - 0.2966267764568329, - 0.2524384558200836, - 0.24189215898513794, - 0.27901721000671387, - 0.3152734041213989, - 0.34967178106307983, - 0.3812740743160248, - 0.4092182219028473, - 0.43274199962615967, - 0.45120370388031006, - 0.4640997648239136, - 0.47107845544815063, - 0.47194936871528625, - 0.46668875217437744, - 0.45544010400772095, - 0.4385102689266205, - 0.4163610339164734, - 0.3895965814590454, - 0.3589469790458679, - 0.32524827122688293, - 0.28941968083381653, - 0.2524384558200836, - 0.24189215898513794, - 0.26779481768608093, - 0.29313477873802185, - 0.3172207772731781, - 0.3393958508968353, - 0.35905513167381287, - 0.37566235661506653, - 0.38876450061798096, - 0.3980042040348053, - 0.40312936902046204, - 0.40400028228759766, - 0.4005931615829468, - 0.39300090074539185, - 0.38143062591552734, - 0.36619797348976135, - 0.34771838784217834, - 0.3264959752559662, - 0.30310964584350586, - 0.2781972885131836, - 0.2524384558200836, - 0.24189215898513794, - 0.2537732720375061, - 0.2654741108417511, - 0.2766755521297455, - 0.2870720326900482, - 0.296379953622818, - 0.30434542894363403, - 0.31075119972229004, - 0.3154224753379822, - 0.31823188066482544, - 0.31910282373428345, - 0.31801146268844604, - 0.3149875998497009, - 0.31011372804641724, - 0.3035227954387665, - 0.29539453983306885, - 0.28595075011253357, - 0.2754490077495575, - 0.26417574286460876, - 0.252438485622406, - 0.24189217388629913, - 0.23847199976444244, - 0.23528896272182465, - 0.2324298918247223, - 0.2299727499485016, - 0.22798457741737366, - 0.2265196144580841, - 0.22561782598495483, - 0.2253037840127945, - 0.22558605670928955, - 0.22645696997642517, - 0.22789274156093597, - 0.22985422611236572, - 0.23228789865970612, - 0.23512740433216095, - 0.2382952719926834, - 0.24170508980751038, - 0.24526384472846985, - 0.2488744705915451, - 0.252438485622406, - 0.24189217388629913, - 0.22354915738105774, - 0.20585033297538757, - 0.1892784833908081, - 0.1742856204509735, - 0.16128072142601013, - 0.1506185531616211, - 0.14258989691734314, - 0.13741381466388702, - 0.13523146510124207, - 0.13610237836837769, - 0.1400027871131897, - 0.14682629704475403, - 0.1563868224620819, - 0.16842353343963623, - 0.18260812759399414, - 0.1985536813735962, - 0.21582521498203278, - 0.2339516282081604, - 0.252438485622406, - 0.24189217388629913, - 0.2106218785047531, - 0.18034839630126953, - 0.15189750492572784, - 0.12604525685310364, - 0.10349689424037933, - 0.08486738801002502, - 0.07066494226455688, - 0.06127697229385376, - 0.056959569454193115, - 0.057830482721328735, - 0.06386592984199524, - 0.07490134239196777, - 0.09063564240932465, - 0.11063967645168304, - 0.13436776399612427, - 0.16117270290851593, - 0.19032327830791473, - 0.22102434933185577, - 0.252438485622406 - ], - "y": [ - 0.39792871475219727, - 0.43404245376586914, - 0.46950241923332214, - 0.5033413171768188, - 0.5346361398696899, - 0.5625331401824951, - 0.5862715244293213, - 0.6052036881446838, - 0.618813157081604, - 0.6267287731170654, - 0.6287346482276917, - 0.6247760057449341, - 0.6149608492851257, - 0.5995568633079529, - 0.5789843201637268, - 0.5538042783737183, - 0.5247036814689636, - 0.49247628450393677, - 0.45800113677978516, - 0.4222186505794525, - 0.39792871475219727, - 0.42275428771972656, - 0.4472339153289795, - 0.4706999659538269, - 0.4925122857093811, - 0.5120758414268494, - 0.5288571119308472, - 0.54239821434021, - 0.5523298978805542, - 0.558381199836731, - 0.5603870153427124, - 0.5582927465438843, - 0.5521553754806519, - 0.5421424508094788, - 0.528527021408081, - 0.5116804838180542, - 0.4920623302459717, - 0.4702077805995941, - 0.4467129409313202, - 0.4222186803817749, - 0.39792871475219727, - 0.40879377722740173, - 0.4196937680244446, - 0.43033134937286377, - 0.4404163360595703, - 0.44967368245124817, - 0.4578508138656616, - 0.46472471952438354, - 0.47010791301727295, - 0.4738534986972809, - 0.4758593440055847, - 0.47607073187828064, - 0.47448188066482544, - 0.4711361527442932, - 0.4661248028278351, - 0.4595845341682434, - 0.45169371366500854, - 0.4426676332950592, - 0.43275246024131775, - 0.4222186803817749, - 0.39792871475219727, - 0.3936738669872284, - 0.38986635208129883, - 0.3866100311279297, - 0.3839937448501587, - 0.382088840007782, - 0.3809472918510437, - 0.380600243806839, - 0.38105717301368713, - 0.3823055624961853, - 0.38431140780448914, - 0.3870199918746948, - 0.3903574049472809, - 0.3942326307296753, - 0.3985399603843689, - 0.4031619131565094, - 0.40797239542007446, - 0.41284018754959106, - 0.417632520198822, - 0.4222186803817749, - 0.39792871475219727, - 0.3790329694747925, - 0.3609839081764221, - 0.3442738652229309, - 0.32935869693756104, - 0.31664523482322693, - 0.3064802587032318, - 0.2991410195827484, - 0.29482772946357727, - 0.2936580777168274, - 0.2956639230251312, - 0.30079054832458496, - 0.3088981807231903, - 0.319765567779541, - 0.33309635519981384, - 0.34852686524391174, - 0.36563625931739807, - 0.38395774364471436, - 0.4029916226863861, - 0.4222186803817749, - 0.39792874455451965, - 0.36645764112472534, - 0.336176335811615, - 0.307910680770874, - 0.28243181109428406, - 0.26043468713760376, - 0.2425193339586258, - 0.2291743904352188, - 0.2207639366388321, - 0.21751734614372253, - 0.21952319145202637, - 0.22672675549983978, - 0.2389315515756607, - 0.2558046579360962, - 0.2768858075141907, - 0.30159997940063477, - 0.3292730748653412, - 0.3591501712799072, - 0.39041632413864136, - 0.4222186803817749, - 0.39792874455451965, - 0.3573106825351715, - 0.31813186407089233, - 0.2814610004425049, - 0.24829831719398499, - 0.21954847872257233, - 0.19599567353725433, - 0.17828232049942017, - 0.1668916791677475, - 0.16213437914848328, - 0.1641402244567871, - 0.1728544980287552, - 0.18803948163986206, - 0.20928099751472473, - 0.23599958419799805, - 0.2674664855003357, - 0.30282336473464966, - 0.34110569953918457, - 0.38126933574676514, - 0.4222186803817749, - 0.39792874455451965, - 0.35258325934410095, - 0.3088059723377228, - 0.2677910029888153, - 0.23065710067749023, - 0.1984172761440277, - 0.17195086181163788, - 0.15197980403900146, - 0.13904884457588196, - 0.1335107982158661, - 0.1355166733264923, - 0.14501169323921204, - 0.16173696517944336, - 0.18523618578910828, - 0.21486836671829224, - 0.24982528388500214, - 0.2891533672809601, - 0.331779807806015, - 0.3765419125556946, - 0.4222186803817749, - 0.39792874455451965, - 0.35278767347335815, - 0.3092091977596283, - 0.26838207244873047, - 0.2314198762178421, - 0.19933094084262848, - 0.17299053072929382, - 0.1531170904636383, - 0.1402527391910553, - 0.1347484290599823, - 0.13675430417060852, - 0.14621558785438538, - 0.1628742516040802, - 0.18627583980560303, - 0.2157820463180542, - 0.250588059425354, - 0.28974443674087524, - 0.3321830630302429, - 0.3767463266849518, - 0.4222186803817749, - 0.39792874455451965, - 0.35790175199508667, - 0.3192978799343109, - 0.2831701636314392, - 0.2505039870738983, - 0.2221904993057251, - 0.1990019828081131, - 0.18157091736793518, - 0.1703728288412094, - 0.16571316123008728, - 0.1677190065383911, - 0.1763356477022171, - 0.19132807850837708, - 0.2122873067855835, - 0.23864160478115082, - 0.269672155380249, - 0.304532527923584, - 0.34227174520492554, - 0.3818604052066803, - 0.4222186803817749, - 0.39792874455451965, - 0.3673713207244873, - 0.3379787504673004, - 0.310552716255188, - 0.2858413755893707, - 0.26451873779296875, - 0.2471664994955063, - 0.23425792157649994, - 0.22614513337612152, - 0.22304944694042206, - 0.2250552922487259, - 0.2321079522371292, - 0.24401508271694183, - 0.2604518234729767, - 0.28096985816955566, - 0.30500954389572144, - 0.33191511034965515, - 0.36095261573791504, - 0.3913300037384033, - 0.4222186803817749, - 0.39792871475219727, - 0.38017022609710693, - 0.3632274270057678, - 0.3475624918937683, - 0.3336026668548584, - 0.32172876596450806, - 0.31226471066474915, - 0.3054686188697815, - 0.30152586102485657, - 0.30054405331611633, - 0.30254989862442017, - 0.30748867988586426, - 0.3152257800102234, - 0.32555001974105835, - 0.33817988634109497, - 0.3527708351612091, - 0.3689248561859131, - 0.38620129227638245, - 0.40412890911102295, - 0.4222186803817749, - 0.39792871475219727, - 0.3949114978313446, - 0.392307847738266, - 0.3901888132095337, - 0.38861215114593506, - 0.3876209557056427, - 0.3872421979904175, - 0.38748618960380554, - 0.3883463442325592, - 0.38979917764663696, - 0.3918050229549408, - 0.3943091630935669, - 0.39724335074424744, - 0.4005275368690491, - 0.4040720760822296, - 0.40778034925460815, - 0.41155117750167847, - 0.4152816832065582, - 0.41887015104293823, - 0.4222186803817749, - 0.39792871475219727, - 0.4099976718425751, - 0.42206871509552, - 0.43381252884864807, - 0.44490882754325867, - 0.4550549387931824, - 0.4639740586280823, - 0.4714229106903076, - 0.4771983325481415, - 0.48114272952079773, - 0.48314857482910156, - 0.48316115140914917, - 0.4811800718307495, - 0.47725939750671387, - 0.4715060889720917, - 0.46407702565193176, - 0.45517492294311523, - 0.44504255056381226, - 0.4339563548564911, - 0.4222186803817749, - 0.39792871475219727, - 0.4237939417362213, - 0.4492848813533783, - 0.47370627522468567, - 0.4963919222354889, - 0.5167230367660522, - 0.5341449975967407, - 0.5481827259063721, - 0.5584530830383301, - 0.5646761059761047, - 0.5666819214820862, - 0.5644159317016602, - 0.557939887046814, - 0.5474303960800171, - 0.5331741571426392, - 0.5155600905418396, - 0.49506866931915283, - 0.4722587466239929, - 0.44775259494781494, - 0.4222186803817749, - 0.39792871475219727, - 0.4348052442073822, - 0.47100716829299927, - 0.5055469274520874, - 0.537482500076294, - 0.565942645072937, - 0.5901511311531067, - 0.6094475984573364, - 0.62330561876297, - 0.6313471794128418, - 0.633353054523468, - 0.6292684078216553, - 0.6192047595977783, - 0.6034364700317383, - 0.5823938250541687, - 0.556650698184967, - 0.526909351348877, - 0.4939810037612915, - 0.45876389741897583, - 0.4222186505794525, - 0.39792871475219727, - 0.4418383836746216, - 0.48488157987594604, - 0.525884211063385, - 0.563727855682373, - 0.5973801612854004, - 0.6259232759475708, - 0.6485786437988281, - 0.6647281050682068, - 0.6739313006401062, - 0.6759371757507324, - 0.6706909537315369, - 0.65833580493927, - 0.6392086744308472, - 0.6138313412666321, - 0.5828959941864014, - 0.5472465753555298, - 0.5078554153442383, - 0.4657970368862152, - 0.4222186505794525, - 0.39792871475219727, - 0.44413116574287415, - 0.4894046187400818, - 0.5325140953063965, - 0.5722837448120117, - 0.6076287031173706, - 0.637584924697876, - 0.6613352298736572, - 0.6782317161560059, - 0.6878135800361633, - 0.6898194551467896, - 0.6841945648193359, - 0.6710923910140991, - 0.6508702635765076, - 0.6240798830986023, - 0.5914519429206848, - 0.5538764595985413, - 0.512378454208374, - 0.4680898189544678, - 0.4222186505794525, - 0.39792871475219727, - 0.4414351284503937, - 0.4840860962867737, - 0.524718165397644, - 0.5622230768203735, - 0.5955777168273926, - 0.6238722801208496, - 0.6463350653648376, - 0.6623531579971313, - 0.6714897155761719, - 0.6734956502914429, - 0.6683160066604614, - 0.6560922265052795, - 0.637157678604126, - 0.6120288968086243, - 0.5813912749290466, - 0.5460805296897888, - 0.5070599317550659, - 0.4653937816619873, - 0.4222186505794525, - 0.39792871475219727, - 0.43404245376586914, - 0.46950241923332214, - 0.5033413171768188, - 0.5346360802650452, - 0.5625331401824951, - 0.5862715244293213, - 0.6052036285400391, - 0.618813157081604, - 0.6267287731170654, - 0.6287345886230469, - 0.6247760057449341, - 0.614960789680481, - 0.5995568633079529, - 0.578984260559082, - 0.5538042783737183, - 0.5247036814689636, - 0.49247628450393677, - 0.45800113677978516, - 0.4222186505794525 - ], - "z": [ - -1.3336156606674194, - -1.3293081521987915, - -1.3265862464904785, - -1.325524091720581, - -1.3261505365371704, - -1.3284486532211304, - -1.3323557376861572, - -1.3377652168273926, - -1.344529390335083, - -1.352463960647583, - -1.3613523244857788, - -1.3709521293640137, - -1.381001591682434, - -1.3912262916564941, - -1.4013476371765137, - -1.4110894203186035, - -1.420185923576355, - -1.4283889532089233, - -1.4354748725891113, - -1.441250205039978, - -1.3336156606674194, - -1.332789421081543, - -1.3334537744522095, - -1.3355906009674072, - -1.3391414880752563, - -1.3440096378326416, - -1.3500622510910034, - -1.3571343421936035, - -1.3650327920913696, - -1.373542308807373, - -1.3824306726455688, - -1.3914555311203003, - -1.400370717048645, - -1.4089329242706299, - -1.416908621788025, - -1.4240803718566895, - -1.4302524328231812, - -1.4352564811706543, - -1.4389561414718628, - -1.441250205039978, - -1.3336156606674194, - -1.3364397287368774, - -1.340654969215393, - -1.3461459875106812, - -1.352763295173645, - -1.3603264093399048, - -1.368628740310669, - -1.3774441480636597, - -1.386531949043274, - -1.3956443071365356, - -1.4045326709747314, - -1.4129546880722046, - -1.4206804037094116, - -1.4274992942810059, - -1.4332252740859985, - -1.4377021789550781, - -1.4408079385757446, - -1.442457675933838, - -1.4426064491271973, - -1.441250205039978, - -1.3336156606674194, - -1.339863657951355, - -1.3474092483520508, - -1.3560465574264526, - -1.3655400276184082, - -1.3756306171417236, - -1.3860431909561157, - -1.396493673324585, - -1.4066970348358154, - -1.416374921798706, - -1.4252632856369019, - -1.433119773864746, - -1.4397300481796265, - -1.4449137449264526, - -1.448529601097107, - -1.4504787921905518, - -1.4507083892822266, - -1.4492119550704956, - -1.4460302591323853, - -1.441250205039978, - -1.3336156606674194, - -1.342689871788025, - -1.3529846668243408, - -1.3642191886901855, - -1.3760868310928345, - -1.3882639408111572, - -1.4004184007644653, - -1.412218689918518, - -1.4233429431915283, - -1.4334875345230103, - -1.442375898361206, - -1.449765682220459, - -1.4554550647735596, - -1.4592890739440918, - -1.4611629247665405, - -1.4610257148742676, - -1.4588810205459595, - -1.4547873735427856, - -1.4488565921783447, - -1.441250205039978, - -1.3336156606674194, - -1.3446123600006104, - -1.356777310371399, - -1.3697782754898071, - -1.38326096534729, - -1.3968573808670044, - -1.4101967811584473, - -1.4229151010513306, - -1.4346656799316406, - -1.4451278448104858, - -1.4540162086486816, - -1.4610884189605713, - -1.466151475906372, - -1.4690673351287842, - -1.4697563648223877, - -1.4681998491287231, - -1.4644402265548706, - -1.4585800170898438, - -1.4507790803909302, - -1.441250205039978, - -1.3336156606674194, - -1.3454227447509766, - -1.358375906944275, - -1.3721215724945068, - -1.3862849473953247, - -1.4004796743392944, - -1.4143184423446655, - -1.4274238348007202, - -1.4394384622573853, - -1.450034499168396, - -1.4589228630065918, - -1.465861201286316, - -1.4706602096557617, - -1.4731889963150024, - -1.4733786582946777, - -1.4712238311767578, - -1.4667835235595703, - -1.4601786136627197, - -1.4515894651412964, - -1.441250205039978, - -1.3336156606674194, - -1.3450331687927246, - -1.357607364654541, - -1.370995044708252, - -1.384831190109253, - -1.3987382650375366, - -1.4123369455337524, - -1.4252562522888184, - -1.4371439218521118, - -1.4476755857467651, - -1.4565640687942505, - -1.4635666608810425, - -1.4684926271438599, - -1.4712074995040894, - -1.47163724899292, - -1.469770073890686, - -1.4656568765640259, - -1.4594100713729858, - -1.4511998891830444, - -1.441250205039978, - -1.3336156606674194, - -1.3434858322143555, - -1.3545548915863037, - -1.3665207624435425, - -1.3790570497512817, - -1.3918218612670898, - -1.4044668674468994, - -1.4166473150253296, - -1.4280308485031128, - -1.4383069276809692, - -1.447195291519165, - -1.4544535875320435, - -1.459883689880371, - -1.4633375406265259, - -1.4647208452224731, - -1.4639959335327148, - -1.4611825942993164, - -1.4563575983047485, - -1.4496525526046753, - -1.441250205039978, - -1.3336156606674194, - -1.340948462486267, - -1.349549412727356, - -1.359183669090271, - -1.3695884943008423, - -1.3804800510406494, - -1.3915612697601318, - -1.4025298357009888, - -1.4130866527557373, - -1.4229437112808228, - -1.4318320751190186, - -1.439509391784668, - -1.4457662105560303, - -1.4504318237304688, - -1.4533789157867432, - -1.4545272588729858, - -1.453845500946045, - -1.4513521194458008, - -1.447115182876587, - -1.441250205039978, - -1.3336156606674194, - -1.3376960754394531, - -1.3431332111358643, - -1.349778652191162, - -1.357451319694519, - -1.3659417629241943, - -1.3750183582305908, - -1.3844337463378906, - -1.3939307928085327, - -1.4032506942749023, - -1.4121390581130981, - -1.4203535318374634, - -1.4276700019836426, - -1.4338890314102173, - -1.4388407468795776, - -1.4423902034759521, - -1.444440484046936, - -1.444935917854309, - -1.4438626766204834, - -1.441250205039978, - -1.3336156606674194, - -1.3340809345245361, - -1.3360015153884888, - -1.3393250703811646, - -1.3439608812332153, - -1.3497824668884277, - -1.3566311597824097, - -1.364319920539856, - -1.3726391792297363, - -1.381361961364746, - -1.390250325202942, - -1.399061918258667, - -1.4075562953948975, - -1.4155017137527466, - -1.422681450843811, - -1.4288997650146484, - -1.4339869022369385, - -1.4378042221069336, - -1.4402475357055664, - -1.441250205039978, - -1.3336156606674194, - -1.3304948806762695, - -1.3289273977279663, - -1.3289557695388794, - -1.330579161643982, - -1.3337534666061401, - -1.338391900062561, - -1.3443681001663208, - -1.351518988609314, - -1.3596495389938354, - -1.3685380220413208, - -1.3779417276382446, - -1.3876044750213623, - -1.397262454032898, - -1.4066523313522339, - -1.415518045425415, - -1.4236176013946533, - -1.4307301044464111, - -1.4366616010665894, - -1.441250205039978, - -1.3336156606674194, - -1.3273266553878784, - -1.3226772546768188, - -1.3197941780090332, - -1.3187562227249146, - -1.3195915222167969, - -1.322277307510376, - -1.3267403841018677, - -1.3328590393066406, - -1.3404662609100342, - -1.3493547439575195, - -1.3592817783355713, - -1.3699767589569092, - -1.381147861480713, - -1.3924903869628906, - -1.403694987297058, - -1.4144560098648071, - -1.4244799613952637, - -1.4334933757781982, - -1.441250205039978, - -1.3336156606674194, - -1.3249194622039795, - -1.317928433418274, - -1.312833309173584, - -1.3097732067108154, - -1.3088313341140747, - -1.3100335597991943, - -1.3133469820022583, - -1.3186813592910767, - -1.3258910179138184, - -1.3347793817520142, - -1.3451040983200073, - -1.3565833568572998, - -1.3689041137695312, - -1.381730318069458, - -1.394711971282959, - -1.4074952602386475, - -1.4197311401367188, - -1.4310860633850098, - -1.441250205039978, - -1.3336156606674194, - -1.3235341310501099, - -1.3151955604553223, - -1.308827519416809, - -1.3046035766601562, - -1.3026390075683594, - -1.3029874563217163, - -1.3056392669677734, - -1.310522198677063, - -1.3175032138824463, - -1.326391577720642, - -1.3369450569152832, - -1.348875641822815, - -1.3618580102920532, - -1.3755379915237427, - -1.3895424604415894, - -1.403489351272583, - -1.416998267173767, - -1.4297007322311401, - -1.441250205039978, - -1.3336156606674194, - -1.323320746421814, - -1.314774751663208, - -1.3082107305526733, - -1.3038076162338257, - -1.3016855716705322, - -1.3019025325775146, - -1.3044525384902954, - -1.3092659711837769, - -1.3162117004394531, - -1.325100064277649, - -1.3356887102127075, - -1.347688913345337, - -1.3607730865478516, - -1.3745845556259155, - -1.3887465000152588, - -1.4028725624084473, - -1.4165774583816528, - -1.4294874668121338, - -1.441250205039978, - -1.3336156606674194, - -1.3243026733398438, - -1.316711664199829, - -1.3110498189926147, - -1.307471513748169, - -1.3060743808746338, - -1.306896448135376, - -1.30991530418396, - -1.3150486946105957, - -1.322156548500061, - -1.3310449123382568, - -1.3414714336395264, - -1.3531516790390015, - -1.365767002105713, - -1.3789732456207275, - -1.392410397529602, - -1.4057116508483887, - -1.418514370918274, - -1.430469274520874, - -1.441250205039978, - -1.3336156606674194, - -1.3263732194900513, - -1.3207963705062866, - -1.3170372247695923, - -1.315198302268982, - -1.315329670906067, - -1.3174278736114502, - -1.3214356899261475, - -1.327243685722351, - -1.334693431854248, - -1.3435819149017334, - -1.3536664247512817, - -1.364672064781189, - -1.3762985467910767, - -1.3882286548614502, - -1.400137186050415, - -1.4116990566253662, - -1.4225990772247314, - -1.432539939880371, - -1.441250205039978, - -1.3336156606674194, - -1.3293081521987915, - -1.3265862464904785, - -1.325524091720581, - -1.3261505365371704, - -1.3284486532211304, - -1.3323557376861572, - -1.3377652168273926, - -1.344529390335083, - -1.352463960647583, - -1.3613523244857788, - -1.3709521293640137, - -1.381001591682434, - -1.3912262916564941, - -1.4013476371765137, - -1.4110894203186035, - -1.420185923576355, - -1.4283889532089233, - -1.4354748725891113, - -1.441250205039978 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.19882740080356598, - 0.16575400531291962, - 0.13366657495498657, - 0.10344038158655167, - 0.07589991390705109, - 0.05179642140865326, - 0.031787335872650146, - 0.016418486833572388, - 0.006109103560447693, - 0.001140400767326355, - 0.0016479045152664185, - 0.007617756724357605, - 0.01888713240623474, - 0.03514862060546875, - 0.055958643555641174, - 0.08074959367513657, - 0.10884522646665573, - 0.1394791305065155, - 0.17181572318077087, - 0.20497295260429382, - 0.19882741570472717, - 0.1555635929107666, - 0.11356370896100998, - 0.07397343218326569, - 0.03787262737751007, - 0.006246104836463928, - -0.0200435072183609, - -0.040279075503349304, - -0.05390863120555878, - -0.060560330748558044, - -0.06005285680294037, - -0.052399978041648865, - -0.03781042993068695, - -0.01668223738670349, - 0.010408341884613037, - 0.04272232949733734, - 0.07937826961278915, - 0.11937626451253891, - 0.16162531077861786, - 0.20497295260429382, - 0.19882741570472717, - 0.15006601810455322, - 0.1027185320854187, - 0.05807647109031677, - 0.017357513308525085, - -0.018327564001083374, - -0.04800543189048767, - -0.07086651027202606, - -0.0862872451543808, - -0.09384693205356598, - -0.0933394581079483, - -0.08477859199047089, - -0.06839786469936371, - -0.04464416205883026, - -0.014165341854095459, - 0.022207200527191162, - 0.06348130106925964, - 0.10853108763694763, - 0.15612775087356567, - 0.20497295260429382, - 0.19882741570472717, - 0.1498570442199707, - 0.10230627655982971, - 0.05747218430042267, - 0.016577675938606262, - -0.019261673092842102, - -0.04906834661960602, - -0.0720292180776596, - -0.08751805126667023, - -0.09511224925518036, - -0.09460477530956268, - -0.08600939810276031, - -0.06956057250499725, - -0.045707061886787415, - -0.015099450945854187, - 0.02142736315727234, - 0.06287701427936554, - 0.10811883211135864, - 0.15591877698898315, - 0.20497295260429382, - 0.19882741570472717, - 0.1549593061208725, - 0.11237163841724396, - 0.07222606241703033, - 0.0356176495552063, - 0.003545030951499939, - -0.023117005825042725, - -0.04364119470119476, - -0.05746759474277496, - -0.06421910226345062, - -0.06371162831783295, - -0.05595894157886505, - -0.04117254912853241, - -0.01975575089454651, - 0.007707253098487854, - 0.040467336773872375, - 0.0776308998465538, - 0.11818419396877289, - 0.16102102398872375, - 0.20497295260429382, - 0.19882740080356598, - 0.1648198962211609, - 0.13182386755943298, - 0.10073930025100708, - 0.07241414487361908, - 0.047621071338653564, - 0.027036279439926147, - 0.011221319437026978, - 0.0006076246500015259, - -0.0045153796672821045, - -0.004007875919342041, - 0.002116277813911438, - 0.013689965009689331, - 0.030397549271583557, - 0.05178329348564148, - 0.07726384699344635, - 0.10614414513111115, - 0.13763642311096191, - 0.17088162899017334, - 0.20497295260429382, - 0.19882740080356598, - 0.17837028205394745, - 0.15855498611927032, - 0.13992203772068024, - 0.12297968566417694, - 0.10819007456302643, - 0.09595665335655212, - 0.08661306649446487, - 0.08041423559188843, - 0.07752921432256699, - 0.07803670316934586, - 0.08192287385463715, - 0.08908169716596603, - 0.09931794553995132, - 0.11235234141349792, - 0.12782937288284302, - 0.1453268826007843, - 0.16436754167079926, - 0.1844319999217987, - 0.20497295260429382, - 0.19882740080356598, - 0.19414204359054565, - 0.18966829776763916, - 0.1855282187461853, - 0.18183471262454987, - 0.17868855595588684, - 0.1761755496263504, - 0.17436422407627106, - 0.17330402135849, - 0.17302383482456207, - 0.17353132367134094, - 0.1748126596212387, - 0.17683285474777222, - 0.1795368194580078, - 0.18285079300403595, - 0.18668441474437714, - 0.19093306362628937, - 0.1954808533191681, - 0.2002037614583969, - 0.20497293770313263, - 0.19882740080356598, - 0.21042607724666595, - 0.22179219126701355, - 0.23261569440364838, - 0.24260137975215912, - 0.25147682428359985, - 0.25899994373321533, - 0.26496556401252747, - 0.26921090483665466, - 0.27162015438079834, - 0.2721276581287384, - 0.2707195281982422, - 0.26743417978286743, - 0.2623612582683563, - 0.25563907623291016, - 0.2474510669708252, - 0.23802053928375244, - 0.22760474681854248, - 0.2164877951145172, - 0.20497293770313263, - 0.19882738590240479, - 0.22545775771141052, - 0.2514455318450928, - 0.2760818302631378, - 0.2986946702003479, - 0.3186671733856201, - 0.3354545831680298, - 0.34859901666641235, - 0.3577418327331543, - 0.36263373494148254, - 0.3631412386894226, - 0.3592504858970642, - 0.3510676622390747, - 0.3388158679008484, - 0.3228294551372528, - 0.3035443425178528, - 0.2814866900444031, - 0.2572580873966217, - 0.23151947557926178, - 0.20497293770313263, - 0.19882738590240479, - 0.2376081645488739, - 0.27541491389274597, - 0.3112163841724396, - 0.3440359830856323, - 0.3729785084724426, - 0.39725440740585327, - 0.4162016212940216, - 0.42930322885513306, - 0.4362018406391144, - 0.43670934438705444, - 0.43081188201904297, - 0.41867026686668396, - 0.40061572194099426, - 0.37714076042175293, - 0.348885715007782, - 0.31662121415138245, - 0.2812274694442749, - 0.24366989731788635, - 0.20497292280197144, - 0.19882738590240479, - 0.24556061625480652, - 0.29110291600227356, - 0.33421194553375244, - 0.3737119138240814, - 0.408525288105011, - 0.437702476978302, - 0.4604475498199463, - 0.47614020109176636, - 0.4843522310256958, - 0.4848597049713135, - 0.47764885425567627, - 0.46291619539260864, - 0.4410637617111206, - 0.4126875698566437, - 0.3785616159439087, - 0.3396167755126953, - 0.2969154715538025, - 0.25162234902381897, - 0.20497292280197144, - 0.19882738590240479, - 0.24845334887504578, - 0.29680943489074707, - 0.34257668256759644, - 0.38450661301612854, - 0.4214555025100708, - 0.4524155259132385, - 0.4765421748161316, - 0.49317723512649536, - 0.5018670558929443, - 0.502374529838562, - 0.4946858882904053, - 0.47901082038879395, - 0.45577681064605713, - 0.4256178140640259, - 0.3893563151359558, - 0.3479815125465393, - 0.3026220202445984, - 0.25451505184173584, - 0.20497292280197144, - 0.19882738590240479, - 0.24597285687923431, - 0.291916161775589, - 0.33540403842926025, - 0.37525027990341187, - 0.41036802530288696, - 0.4397992491722107, - 0.46274125576019287, - 0.4785681366920471, - 0.48684829473495483, - 0.4873557686805725, - 0.48007678985595703, - 0.4652099013328552, - 0.4431605339050293, - 0.41453027725219727, - 0.3801000118255615, - 0.3408088684082031, - 0.2977287173271179, - 0.25203457474708557, - 0.20497292280197144, - 0.19882738590240479, - 0.23838798701763153, - 0.2769532799720764, - 0.31347134709358215, - 0.3469460606575012, - 0.37646424770355225, - 0.40122079849243164, - 0.420540452003479, - 0.4338960647583008, - 0.4409235119819641, - 0.44143104553222656, - 0.4354047179222107, - 0.42300909757614136, - 0.40458211302757263, - 0.38062652945518494, - 0.3517957329750061, - 0.3188762068748474, - 0.28276586532592773, - 0.24444971978664398, - 0.20497292280197144, - 0.19882738590240479, - 0.22652065753936768, - 0.25354236364364624, - 0.2791553735733032, - 0.30266106128692627, - 0.3234182596206665, - 0.3408608138561249, - 0.3545128107070923, - 0.364001989364624, - 0.3690693974494934, - 0.36957693099975586, - 0.36551064252853394, - 0.35698145627975464, - 0.3442220985889435, - 0.3275805711746216, - 0.3075107932090759, - 0.2845602035522461, - 0.25935491919517517, - 0.23258239030838013, - 0.20497293770313263, - 0.19882740080356598, - 0.211656853556633, - 0.2242201864719391, - 0.23617468774318695, - 0.24719427525997162, - 0.2569783329963684, - 0.2652600109577179, - 0.27181339263916016, - 0.2764597535133362, - 0.2790723145008087, - 0.2795798182487488, - 0.2779684066772461, - 0.2742820382118225, - 0.2686213254928589, - 0.2611406147480011, - 0.2520439624786377, - 0.24157953262329102, - 0.2300327569246292, - 0.21771858632564545, - 0.20497293770313263, - 0.19882740080356598, - 0.19540733098983765, - 0.1921643614768982, - 0.1891869753599167, - 0.1865563690662384, - 0.18434429168701172, - 0.18261109292507172, - 0.18140405416488647, - 0.1807560920715332, - 0.180684894323349, - 0.18119238317012787, - 0.18226474523544312, - 0.18387269973754883, - 0.1859723925590515, - 0.18850654363632202, - 0.19140605628490448, - 0.19459182024002075, - 0.19797693192958832, - 0.2014690488576889, - 0.20497293770313263, - 0.19882740080356598, - 0.1795329600572586, - 0.16084863245487213, - 0.14328408241271973, - 0.12731841206550598, - 0.11338716000318527, - 0.10187030583620071, - 0.0930820107460022, - 0.08726197481155396, - 0.08456898480653763, - 0.0850764736533165, - 0.08877061307430267, - 0.09555064141750336, - 0.10523160547018051, - 0.11754941195249557, - 0.13216811418533325, - 0.1486889123916626, - 0.16666118800640106, - 0.18559467792510986, - 0.20497295260429382, - 0.19882740080356598, - 0.16575399041175842, - 0.13366657495498657, - 0.10344035923480988, - 0.0758998841047287, - 0.05179639160633087, - 0.03178730607032776, - 0.016418442130088806, - 0.006109073758125305, - 0.0011403560638427734, - 0.001647859811782837, - 0.007617726922035217, - 0.01888708770275116, - 0.03514859080314636, - 0.05595861375331879, - 0.08074957132339478, - 0.10884520411491394, - 0.1394791305065155, - 0.17181572318077087, - 0.20497295260429382 - ], - "y": [ - 0.3754415214061737, - 0.4135356545448303, - 0.45081549882888794, - 0.486264169216156, - 0.5189147591590881, - 0.5478765964508057, - 0.5723596811294556, - 0.5916962623596191, - 0.6053587198257446, - 0.6129745244979858, - 0.6143358945846558, - 0.6094056367874146, - 0.598318338394165, - 0.5813763737678528, - 0.5590419173240662, - 0.5319241285324097, - 0.5007627010345459, - 0.4664077162742615, - 0.4297962188720703, - 0.39192694425582886, - 0.3754415214061737, - 0.40145087242126465, - 0.4269756078720093, - 0.45131945610046387, - 0.47381842136383057, - 0.4938587248325348, - 0.5108937621116638, - 0.5244588851928711, - 0.5341839790344238, - 0.5398038625717163, - 0.5411652326583862, - 0.5382309556007385, - 0.531080961227417, - 0.519910454750061, - 0.5050240159034729, - 0.4868277311325073, - 0.46581795811653137, - 0.4425678253173828, - 0.417711466550827, - 0.39192694425582886, - 0.3754415214061737, - 0.38655978441238403, - 0.39759960770606995, - 0.4082598388195038, - 0.4182497262954712, - 0.42729678750038147, - 0.43515416979789734, - 0.44160759449005127, - 0.44648101925849915, - 0.44964152574539185, - 0.4510028660297394, - 0.45052796602249146, - 0.44822970032691956, - 0.44417083263397217, - 0.4384620487689972, - 0.43125906586647034, - 0.4227583408355713, - 0.4131918251514435, - 0.4028203785419464, - 0.39192694425582886, - 0.3754415214061737, - 0.37047603726387024, - 0.3658708333969116, - 0.361751526594162, - 0.35823047161102295, - 0.35540375113487244, - 0.35334843397140503, - 0.35212063789367676, - 0.35175377130508423, - 0.3522578775882721, - 0.353619247674942, - 0.35580068826675415, - 0.35874274373054504, - 0.36236512660980225, - 0.36656901240348816, - 0.3712398111820221, - 0.3762500286102295, - 0.38146302103996277, - 0.3867366313934326, - 0.39192697405815125, - 0.3754415512084961, - 0.35494256019592285, - 0.3352275788784027, - 0.31683436036109924, - 0.3002646267414093, - 0.28597038984298706, - 0.27434152364730835, - 0.2656952142715454, - 0.26026737689971924, - 0.25820600986480713, - 0.25956737995147705, - 0.26431432366371155, - 0.2723173499107361, - 0.2833581864833832, - 0.2971356511116028, - 0.31327396631240845, - 0.33133286237716675, - 0.35081976652145386, - 0.37120315432548523, - 0.39192697405815125, - 0.3754415512084961, - 0.3416426479816437, - 0.3089905381202698, - 0.27837586402893066, - 0.25063374638557434, - 0.22652089595794678, - 0.2066950500011444, - 0.19169698655605316, - 0.1819358617067337, - 0.1776779145002365, - 0.17903926968574524, - 0.185982808470726, - 0.19831910729408264, - 0.21571171283721924, - 0.2376861572265625, - 0.2636430561542511, - 0.29287436604499817, - 0.3245827555656433, - 0.35790324211120605, - 0.39192697405815125, - 0.3754415512084961, - 0.33201754093170166, - 0.29000288248062134, - 0.25054359436035156, - 0.21471604704856873, - 0.18349750339984894, - 0.1577395647764206, - 0.13814474642276764, - 0.12524762749671936, - 0.11939999461174011, - 0.12076136469841003, - 0.12929454445838928, - 0.14476686716079712, - 0.16675621271133423, - 0.19466276466846466, - 0.2277253419160843, - 0.26504212617874146, - 0.3055950999259949, - 0.34827813506126404, - 0.39192697405815125, - 0.3754415512084961, - 0.32711029052734375, - 0.28032222390174866, - 0.23635362088680267, - 0.19640380144119263, - 0.1615625023841858, - 0.13278010487556458, - 0.11084172129631042, - 0.09634575247764587, - 0.08968764543533325, - 0.09104901552200317, - 0.1003926694393158, - 0.1174638569355011, - 0.1417967677116394, - 0.1727277636528015, - 0.2094130963087082, - 0.250852108001709, - 0.2959144413471222, - 0.34337088465690613, - 0.39192697405815125, - 0.3754415512084961, - 0.3274526596069336, - 0.280997633934021, - 0.23734362423419952, - 0.19768139719963074, - 0.16309286653995514, - 0.134521484375, - 0.11274659633636475, - 0.09836217761039734, - 0.09176063537597656, - 0.09312200546264648, - 0.10240909457206726, - 0.11936873197555542, - 0.14353813230991364, - 0.17425811290740967, - 0.2106907069683075, - 0.2518421411514282, - 0.29658982157707214, - 0.34371325373649597, - 0.39192697405815125, - 0.3754415512084961, - 0.3330075442790985, - 0.2919558882713318, - 0.2534063458442688, - 0.2184104323387146, - 0.18792276084423065, - 0.1627749502658844, - 0.14365294575691223, - 0.13107842206954956, - 0.1253942847251892, - 0.12675565481185913, - 0.13512535393238068, - 0.1502750664949417, - 0.17179161310195923, - 0.19908802211284637, - 0.23141972720623016, - 0.2679048478603363, - 0.3075481057167053, - 0.3492681384086609, - 0.39192697405815125, - 0.3754415512084961, - 0.34317299723625183, - 0.3120095133781433, - 0.2828011214733124, - 0.2563445568084717, - 0.23336148262023926, - 0.21447883546352386, - 0.20021162927150726, - 0.19094912707805634, - 0.186943918466568, - 0.18830527365207672, - 0.19499607384204865, - 0.20683375000953674, - 0.2234954982995987, - 0.24452674388885498, - 0.26935386657714844, - 0.2972996234893799, - 0.32760173082351685, - 0.3594335913658142, - 0.39192697405815125, - 0.3754415512084961, - 0.3568474352359772, - 0.3389853835105896, - 0.32234257459640503, - 0.3073730170726776, - 0.29448506236076355, - 0.2840301990509033, - 0.27629363536834717, - 0.27148640155792236, - 0.26973965764045715, - 0.2711009979248047, - 0.2755333185195923, - 0.28291574120521545, - 0.29304686188697815, - 0.3056503236293793, - 0.32038235664367676, - 0.3368411064147949, - 0.35457757115364075, - 0.37310802936553955, - 0.39192697405815125, - 0.3754415214061737, - 0.37254899740219116, - 0.369960218667984, - 0.3677457869052887, - 0.3659661114215851, - 0.3646697402000427, - 0.3638920485973358, - 0.3636542558670044, - 0.3639627695083618, - 0.3648092746734619, - 0.36617061495780945, - 0.3680097162723541, - 0.3702763617038727, - 0.37290871143341064, - 0.37583503127098083, - 0.37897542119026184, - 0.3822442889213562, - 0.38555243611335754, - 0.38880959153175354, - 0.39192697405815125, - 0.3754415214061737, - 0.3885762095451355, - 0.4015774726867676, - 0.41409066319465637, - 0.4257744252681732, - 0.4363100528717041, - 0.44541022181510925, - 0.45282667875289917, - 0.4583570957183838, - 0.4618506133556366, - 0.46321195363998413, - 0.4624040126800537, - 0.45944881439208984, - 0.45442691445350647, - 0.4474753439426422, - 0.43878373503685, - 0.4285891652107239, - 0.4171696901321411, - 0.4048368036746979, - 0.39192694425582886, - 0.3754415214061737, - 0.4031922519207001, - 0.43041086196899414, - 0.45635485649108887, - 0.4803166389465332, - 0.5016424655914307, - 0.5197507739067078, - 0.5341475009918213, - 0.5444400310516357, - 0.5503475069999695, - 0.5517088770866394, - 0.5484869480133057, - 0.540769636631012, - 0.528767466545105, - 0.5128077864646912, - 0.49332594871520996, - 0.47085338830947876, - 0.4460030496120453, - 0.41945284605026245, - 0.39192694425582886, - 0.3754415214061737, - 0.41481325030326843, - 0.45333585143089294, - 0.4899585545063019, - 0.5236823558807373, - 0.5535873770713806, - 0.5788578987121582, - 0.5988045930862427, - 0.6128833293914795, - 0.6207101345062256, - 0.6220715045928955, - 0.6169302463531494, - 0.6054266691207886, - 0.5878745317459106, - 0.5647526979446411, - 0.5366916656494141, - 0.5044570565223694, - 0.4689280688762665, - 0.4310738444328308, - 0.39192694425582886, - 0.3754415214061737, - 0.4221799075603485, - 0.46786820888519287, - 0.5112602114677429, - 0.5511723160743713, - 0.5865156650543213, - 0.6163264513015747, - 0.6397912502288818, - 0.6562701463699341, - 0.6653136014938354, - 0.6666749715805054, - 0.660317063331604, - 0.6464133858680725, - 0.6253430843353271, - 0.5976810455322266, - 0.5641816258430481, - 0.5257587432861328, - 0.4834604263305664, - 0.4384405016899109, - 0.39192694425582886, - 0.3754415214061737, - 0.4244939088821411, - 0.4724331200122833, - 0.517951488494873, - 0.5598074197769165, - 0.5968590974807739, - 0.6280959844589233, - 0.6526659727096558, - 0.6698988080024719, - 0.6793243885040283, - 0.6806857585906982, - 0.6739457249641418, - 0.6592880487442017, - 0.6371126174926758, - 0.6080244183540344, - 0.5728167295455933, - 0.5324499607086182, - 0.4880253076553345, - 0.4407545030117035, - 0.39192694425582886, - 0.3754415214061737, - 0.42150449752807617, - 0.4665358364582062, - 0.5093072056770325, - 0.548651933670044, - 0.5834966897964478, - 0.6128911375999451, - 0.6360334157943726, - 0.6522922515869141, - 0.6612242460250854, - 0.6625856161117554, - 0.656339168548584, - 0.6426555514335632, - 0.6219078302383423, - 0.5946620106697083, - 0.5616612434387207, - 0.5238056778907776, - 0.4821280241012573, - 0.43776509165763855, - 0.39192694425582886, - 0.3754415214061737, - 0.41353562474250793, - 0.45081549882888794, - 0.486264169216156, - 0.5189147591590881, - 0.5478765964508057, - 0.5723596811294556, - 0.5916962027549744, - 0.6053587198257446, - 0.6129745244979858, - 0.614335834980011, - 0.6094056367874146, - 0.598318338394165, - 0.581376314163208, - 0.5590418577194214, - 0.5319240689277649, - 0.5007627010345459, - 0.4664076864719391, - 0.4297962188720703, - 0.39192694425582886 - ], - "z": [ - -1.441001057624817, - -1.4362155199050903, - -1.4326426982879639, - -1.430379867553711, - -1.429489016532898, - -1.4299943447113037, - -1.4318819046020508, - -1.4351005554199219, - -1.439562201499939, - -1.4451451301574707, - -1.4516973495483398, - -1.4590398073196411, - -1.4669724702835083, - -1.4752787351608276, - -1.4837322235107422, - -1.4921021461486816, - -1.5001604557037354, - -1.5076870918273926, - -1.5144768953323364, - -1.520344614982605, - -1.441001057624817, - -1.4395157098770142, - -1.4391529560089111, - -1.43992280960083, - -1.4418041706085205, - -1.4447458982467651, - -1.4486675262451172, - -1.4534621238708496, - -1.4589990377426147, - -1.4651271104812622, - -1.4716792106628418, - -1.478476643562317, - -1.485334038734436, - -1.4920642375946045, - -1.4984837770462036, - -1.5044174194335938, - -1.5097033977508545, - -1.5141974687576294, - -1.5177770853042603, - -1.520344614982605, - -1.441001057624817, - -1.4430354833602905, - -1.4460965394973755, - -1.4501007795333862, - -1.4549388885498047, - -1.4604790210723877, - -1.4665699005126953, - -1.4730455875396729, - -1.479729175567627, - -1.4864386320114136, - -1.4929907321929932, - -1.4992069005966187, - -1.5049175024032593, - -1.5099667310714722, - -1.5142168998718262, - -1.517552137374878, - -1.519881248474121, - -1.5211410522460938, - -1.5212968587875366, - -1.520344614982605, - -1.441001057624817, - -1.4463934898376465, - -1.4527208805084229, - -1.459810733795166, - -1.4674696922302246, - -1.4754887819290161, - -1.4836492538452148, - -1.4917285442352295, - -1.4995063543319702, - -1.5067702531814575, - -1.5133224725723267, - -1.5189839601516724, - -1.523600459098816, - -1.5270460844039917, - -1.5292266607284546, - -1.5300828218460083, - -1.5295913219451904, - -1.5277652740478516, - -1.5246548652648926, - -1.520344614982605, - -1.441001057624817, - -1.449225664138794, - -1.4583081007003784, - -1.4680005311965942, - -1.4780386686325073, - -1.4881486892700195, - -1.4980547428131104, - -1.5074865818023682, - -1.5161871910095215, - -1.523918867111206, - -1.5304710865020752, - -1.5356647968292236, - -1.5393586158752441, - -1.5414514541625977, - -1.541886568069458, - -1.5406519174575806, - -1.5377811193466187, - -1.5333526134490967, - -1.52748703956604, - -1.520344614982605, - -1.441001057624817, - -1.4512252807617188, - -1.4622527360916138, - -1.4737826585769653, - -1.4855005741119385, - -1.497086763381958, - -1.5082252025604248, - -1.5186121463775635, - -1.5279641151428223, - -1.536026120185852, - -1.5425782203674316, - -1.547441840171814, - -1.55048406124115, - -1.5516220331192017, - -1.5508246421813965, - -1.5481137037277222, - -1.5435632467269897, - -1.537297248840332, - -1.5294866561889648, - -1.520344614982605, - -1.441001057624817, - -1.4521756172180176, - -1.4641274213790894, - -1.4765305519104004, - -1.4890466928482056, - -1.5013344287872314, - -1.5130586624145508, - -1.5238993167877197, - -1.5335609912872314, - -1.5417799949645996, - -1.5483320951461792, - -1.5530387163162231, - -1.5557712316513062, - -1.556455373764038, - -1.5550724267959595, - -1.5516599416732788, - -1.5463111400604248, - -1.5391719341278076, - -1.5304369926452637, - -1.520344614982605, - -1.441001057624817, - -1.451973557472229, - -1.463728904724121, - -1.4759464263916016, - -1.488292932510376, - -1.5004315376281738, - -1.5120311975479126, - -1.522775411605835, - -1.5323712825775146, - -1.5405569076538086, - -1.5471090078353882, - -1.5518488883972168, - -1.5546473264694214, - -1.5554279088974, - -1.5541694164276123, - -1.5509061813354492, - -1.545727014541626, - -1.5387734174728394, - -1.530234932899475, - -1.520344614982605, - -1.441001057624817, - -1.45064115524292, - -1.461100459098816, - -1.4720935821533203, - -1.4833208322525024, - -1.4944757223129272, - -1.5052541494369507, - -1.5153621435165405, - -1.5245238542556763, - -1.5324894189834595, - -1.539041519165039, - -1.5440014600753784, - -1.547234058380127, - -1.5486509799957275, - -1.5482137203216553, - -1.5459339618682861, - -1.5418741703033447, - -1.5361449718475342, - -1.528902530670166, - -1.520344614982605, - -1.441001057624817, - -1.4483227729797363, - -1.4565268754959106, - -1.4653894901275635, - -1.4746692180633545, - -1.4841125011444092, - -1.493462085723877, - -1.5024627447128296, - -1.5108691453933716, - -1.5184518098831177, - -1.5250039100646973, - -1.5303467512130737, - -1.5343347787857056, - -1.5368589162826538, - -1.5378504991531372, - -1.5372823476791382, - -1.535170078277588, - -1.5315712690353394, - -1.5265841484069824, - -1.520344614982605, - -1.441001057624817, - -1.4452694654464722, - -1.4505037069320679, - -1.456560730934143, - -1.4632755517959595, - -1.4704649448394775, - -1.4779326915740967, - -1.4854753017425537, - -1.4928867816925049, - -1.4999651908874512, - -1.5065172910690308, - -1.5123645067214966, - -1.5173472166061401, - -1.5213295221328735, - -1.524202823638916, - -1.5258888006210327, - -1.5263413190841675, - -1.5255481004714966, - -1.5235309600830078, - -1.520344614982605, - -1.441001057624817, - -1.4418123960494995, - -1.4436837434768677, - -1.446563959121704, - -1.450374722480774, - -1.4550118446350098, - -1.4603489637374878, - -1.466240406036377, - -1.4725255966186523, - -1.4790329933166504, - -1.48558509349823, - -1.492003321647644, - -1.4981123208999634, - -1.503745675086975, - -1.5087497234344482, - -1.5129878520965576, - -1.5163445472717285, - -1.5187281370162964, - -1.5200737714767456, - -1.520344614982605, - -1.441001057624817, - -1.4383260011672974, - -1.4368059635162354, - -1.436482548713684, - -1.4373645782470703, - -1.4394278526306152, - -1.4426162242889404, - -1.4468426704406738, - -1.4519919157028198, - -1.4579235315322876, - -1.4644756317138672, - -1.471469521522522, - -1.4787145853042603, - -1.4860129356384277, - -1.4931657314300537, - -1.499977707862854, - -1.5062631368637085, - -1.5118504762649536, - -1.5165873765945435, - -1.520344614982605, - -1.441001057624817, - -1.4351880550384521, - -1.430615782737732, - -1.4274089336395264, - -1.4256548881530762, - -1.4254016876220703, - -1.4266561269760132, - -1.4293839931488037, - -1.4335108995437622, - -1.4389241933822632, - -1.4454762935638428, - -1.4529885053634644, - -1.4612559080123901, - -1.4700528383255005, - -1.4791395664215088, - -1.4882681369781494, - -1.4971894025802612, - -1.5056602954864502, - -1.5134494304656982, - -1.520344614982605, - -1.441001057624817, - -1.4327387809753418, - -1.4257838726043701, - -1.4203263521194458, - -1.4165148735046387, - -1.414453387260437, - -1.4141982793807983, - -1.415756344795227, - -1.4190852642059326, - -1.4240939617156982, - -1.4306461811065674, - -1.4385628700256348, - -1.4476282596588135, - -1.4575949907302856, - -1.4681912660598755, - -1.4791280031204224, - -1.4901068210601807, - -1.5008283853530884, - -1.511000156402588, - -1.520344614982605, - -1.441001057624817, - -1.4312434196472168, - -1.422834038734436, - -1.4160022735595703, - -1.4109346866607666, - -1.4077693223953247, - -1.406592607498169, - -1.407436490058899, - -1.4102782011032104, - -1.4150400161743164, - -1.421592116355896, - -1.4297558069229126, - -1.4393084049224854, - -1.4499893188476562, - -1.4615072011947632, - -1.4735478162765503, - -1.4857828617095947, - -1.4978784322738647, - -1.509504795074463, - -1.520344614982605, - -1.441001057624817, - -1.4308640956878662, - -1.4220857620239258, - -1.4149054288864136, - -1.4095191955566406, - -1.406073808670044, - -1.4046632051467896, - -1.405326008796692, - -1.4080440998077393, - -1.412743330001831, - -1.4192954301834106, - -1.427521824836731, - -1.4371980428695679, - -1.4480600357055664, - -1.4598116874694824, - -1.4721323251724243, - -1.484686017036438, - -1.4971301555633545, - -1.5091254711151123, - -1.520344614982605, - -1.441001057624817, - -1.431641936302185, - -1.4236201047897339, - -1.4171546697616577, - -1.412421703338623, - -1.4095505475997925, - -1.4086194038391113, - -1.409653663635254, - -1.4126251935958862, - -1.4174528121948242, - -1.4240050315856934, - -1.432102918624878, - -1.4415255784988403, - -1.4520162343978882, - -1.463288426399231, - -1.4750349521636963, - -1.4869351387023926, - -1.4986646175384521, - -1.5099033117294312, - -1.520344614982605, - -1.441001057624817, - -1.4334925413131714, - -1.4272710084915161, - -1.4225060939788818, - -1.4193278551101685, - -1.4178228378295898, - -1.4180324077606201, - -1.4199504852294922, - -1.4235249757766724, - -1.4286582469940186, - -1.4352103471755981, - -1.4430025815963745, - -1.4518224000930786, - -1.4614291191101074, - -1.4715608358383179, - -1.4819409847259521, - -1.4922866821289062, - -1.5023155212402344, - -1.5117539167404175, - -1.520344614982605, - -1.441001057624817, - -1.4362155199050903, - -1.4326426982879639, - -1.430379867553711, - -1.429489016532898, - -1.4299943447113037, - -1.4318820238113403, - -1.4351005554199219, - -1.439562201499939, - -1.4451451301574707, - -1.4516973495483398, - -1.4590398073196411, - -1.4669724702835083, - -1.4752787351608276, - -1.4837322235107422, - -1.4921022653579712, - -1.5001604557037354, - -1.5076870918273926, - -1.5144768953323364, - -1.520344614982605 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.16201789677143097, - 0.12762358784675598, - 0.09421791136264801, - 0.06271208077669144, - 0.03396548330783844, - 0.008762270212173462, - -0.012210115790367126, - -0.02837955951690674, - -0.03930504620075226, - -0.044688478112220764, - -0.04438309371471405, - -0.038397207856178284, - -0.026894062757492065, - -0.010187461972236633, - 0.011266887187957764, - 0.036883771419525146, - 0.06596443802118301, - 0.09771561622619629, - 0.13127122819423676, - 0.16571597754955292, - 0.16201789677143097, - 0.11693206429481506, - 0.07312650233507156, - 0.03179611265659332, - -0.005931749939918518, - -0.03902794420719147, - -0.06658969819545746, - -0.08786521852016449, - -0.1022741049528122, - -0.10942335426807404, - -0.10911794006824493, - -0.10136626660823822, - -0.08637969195842743, - -0.06456704437732697, - -0.03652331233024597, - -0.0030134618282318115, - 0.0350484699010849, - 0.07662420719861984, - 0.12057970464229584, - 0.16571597754955292, - 0.16201789677143097, - 0.111129030585289, - 0.06167870759963989, - 0.015015825629234314, - -0.027586787939071655, - -0.06496705114841461, - -0.09610532224178314, - -0.12015222012996674, - -0.1364518254995346, - -0.14455951750278473, - -0.14425410330295563, - -0.13554398715496063, - -0.11866669356822968, - -0.09408266842365265, - -0.06246243417263031, - -0.02466849982738495, - 0.01826818287372589, - 0.06517641246318817, - 0.11477667093276978, - 0.16571597754955292, - 0.16201789677143097, - 0.11084331572055817, - 0.0611150786280632, - 0.014189645648002625, - -0.028652995824813843, - -0.06624415516853333, - -0.09755851328372955, - -0.12174190580844879, - -0.13813458383083344, - -0.14628945291042328, - -0.14598403871059418, - -0.13722674548625946, - -0.12025637924671173, - -0.09553585946559906, - -0.06373955309391022, - -0.025734692811965942, - 0.0174420028924942, - 0.06461278349161148, - 0.11449095606803894, - 0.16571597754955292, - 0.16201789677143097, - 0.11610589921474457, - 0.07149669528007507, - 0.029407113790512085, - -0.00901477038860321, - -0.042720869183540344, - -0.07079178094863892, - -0.09246189892292023, - -0.10713993012905121, - -0.1144256442785263, - -0.1141202300786972, - -0.10623209178447723, - -0.09097637236118317, - -0.06876915693283081, - -0.04021625220775604, - -0.006096482276916504, - 0.03265947103500366, - 0.07499440014362335, - 0.11975353956222534, - 0.16571597754955292, - 0.16201789677143097, - 0.12634648382663727, - 0.0916985422372818, - 0.05901916325092316, - 0.029199734330177307, - 0.003053724765777588, - -0.018705755472183228, - -0.03548511862754822, - -0.04682667553424835, - -0.05242107808589935, - -0.05211569368839264, - -0.04591883718967438, - -0.033999621868133545, - -0.016683116555213928, - 0.00555834174156189, - 0.03211803734302521, - 0.062271520495414734, - 0.09519624710083008, - 0.12999412417411804, - 0.16571597754955292, - 0.16201788187026978, - 0.14045536518096924, - 0.11953142285346985, - 0.09981685876846313, - 0.08184941112995148, - 0.06611917912960052, - 0.05305527150630951, - 0.04301396757364273, - 0.03626924753189087, - 0.03300510346889496, - 0.03331048786640167, - 0.037177085876464844, - 0.044499464333057404, - 0.05507790297269821, - 0.06862380355596542, - 0.08476770669221878, - 0.10306922346353531, - 0.12302912771701813, - 0.14410299062728882, - 0.16571596264839172, - 0.16201788187026978, - 0.15690359473228455, - 0.1519792377948761, - 0.14737915992736816, - 0.14322882890701294, - 0.13964144885540009, - 0.1367148607969284, - 0.13452892005443573, - 0.13314323127269745, - 0.13259562849998474, - 0.13290101289749146, - 0.13405105471611023, - 0.1360144168138504, - 0.1387375146150589, - 0.1421460658311844, - 0.14614713191986084, - 0.15063153207302094, - 0.15547695755958557, - 0.16055123507976532, - 0.16571596264839172, - 0.16201788187026978, - 0.1739087849855423, - 0.18552576005458832, - 0.19655194878578186, - 0.2066865712404251, - 0.2156531810760498, - 0.22320720553398132, - 0.22914257645606995, - 0.2332974076271057, - 0.23555833101272583, - 0.23586371541023254, - 0.2342052459716797, - 0.23062807321548462, - 0.225229874253273, - 0.2181578278541565, - 0.20960485935211182, - 0.19980430603027344, - 0.1890234649181366, - 0.17755642533302307, - 0.16571596264839172, - 0.16201788187026978, - 0.18962813913822174, - 0.21653568744659424, - 0.2420065701007843, - 0.2653460204601288, - 0.28591737151145935, - 0.30315953493118286, - 0.3166021406650543, - 0.3258785009384155, - 0.33073562383651733, - 0.33104103803634644, - 0.3267863392829895, - 0.318087637424469, - 0.30518215894699097, - 0.2884220480918884, - 0.2682643532752991, - 0.24525892734527588, - 0.22003339231014252, - 0.19327577948570251, - 0.16571594774723053, - 0.16201786696910858, - 0.202358216047287, - 0.2416486144065857, - 0.278817355632782, - 0.3128505051136017, - 0.34281978011131287, - 0.36790773272514343, - 0.38742995262145996, - 0.4008539319038391, - 0.40781354904174805, - 0.40811896324157715, - 0.4017617702484131, - 0.388915479183197, - 0.3699303865432739, - 0.34532445669174194, - 0.315768837928772, - 0.28206971287727356, - 0.24514633417129517, - 0.20600585639476776, - 0.16571594774723053, - 0.16201786696910858, - 0.2107195407152176, - 0.25814318656921387, - 0.3029952049255371, - 0.34405219554901123, - 0.38019418716430664, - 0.41043534874916077, - 0.4339507222175598, - 0.45009899139404297, - 0.45843952894210815, - 0.45874494314193726, - 0.45100682973861694, - 0.4354362487792969, - 0.41245800256729126, - 0.3826988637447357, - 0.34697049856185913, - 0.3062475919723511, - 0.26164090633392334, - 0.21436718106269836, - 0.16571594774723053, - 0.16201786696910858, - 0.21380600333213806, - 0.26423195004463196, - 0.311920166015625, - 0.35556989908218384, - 0.3939904570579529, - 0.42613381147384644, - 0.45112329721450806, - 0.4682771563529968, - 0.47712743282318115, - 0.47743284702301025, - 0.4691849946975708, - 0.4526088237762451, - 0.4281565546989441, - 0.39649516344070435, - 0.35848820209503174, - 0.3151725232601166, - 0.26772964000701904, - 0.21745365858078003, - 0.16571594774723053, - 0.16201786696910858, - 0.21128316223621368, - 0.259255051612854, - 0.3046250343322754, - 0.34615546464920044, - 0.38271355628967285, - 0.41330209374427795, - 0.43708670139312744, - 0.4534185528755188, - 0.46185213327407837, - 0.46215754747390747, - 0.4543263912200928, - 0.4385722279548645, - 0.41532474756240845, - 0.38521823287010193, - 0.34907376766204834, - 0.3078773617744446, - 0.2627527713775635, - 0.21493080258369446, - 0.16571594774723053, - 0.16201786696910858, - 0.2034243941307068, - 0.2437518984079361, - 0.2819003462791443, - 0.3168291747570038, - 0.347585529088974, - 0.37333059310913086, - 0.39336198568344116, - 0.4071333408355713, - 0.41426903009414673, - 0.41457444429397583, - 0.40804117918014526, - 0.39484745264053345, - 0.37535324692726135, - 0.3500902056694031, - 0.3197474777698517, - 0.28515270352363586, - 0.24724960327148438, - 0.20707203447818756, - 0.16571594774723053, - 0.16201788187026978, - 0.19108133018016815, - 0.2194024622440338, - 0.24620871245861053, - 0.2707689106464386, - 0.2924130856990814, - 0.31055086851119995, - 0.32468748092651367, - 0.3344373404979706, - 0.3395344614982605, - 0.3398398756980896, - 0.33534517884254456, - 0.32617300748825073, - 0.31257355213165283, - 0.2949177622795105, - 0.2736872136592865, - 0.2494610697031021, - 0.2229001820087433, - 0.19472897052764893, - 0.16571594774723053, - 0.16201788187026978, - 0.17559151351451874, - 0.18884533643722534, - 0.20141780376434326, - 0.2129659801721573, - 0.22317485511302948, - 0.2317659854888916, - 0.23850500583648682, - 0.24320806562900543, - 0.2457469403743744, - 0.2460523247718811, - 0.2441158890724182, - 0.2399905025959015, - 0.2337886393070221, - 0.22567950189113617, - 0.2158842831850052, - 0.20467016100883484, - 0.19234304130077362, - 0.1792391538619995, - 0.16571596264839172, - 0.16201788187026978, - 0.1586335003376007, - 0.1553918868303299, - 0.15238143503665924, - 0.14968428015708923, - 0.1473739743232727, - 0.14551357924938202, - 0.14415381848812103, - 0.14333175122737885, - 0.14306984841823578, - 0.1433752328157425, - 0.14423957467079163, - 0.1456393152475357, - 0.1475362330675125, - 0.1498786211013794, - 0.15260256826877594, - 0.15563379228115082, - 0.15888959169387817, - 0.16228114068508148, - 0.16571596264839172, - 0.16201788187026978, - 0.14204497635364532, - 0.12266731262207031, - 0.1044134646654129, - 0.08778136223554611, - 0.07322465628385544, - 0.061140455305576324, - 0.05185834318399429, - 0.045631542801856995, - 0.0426299124956131, - 0.04293529689311981, - 0.046539366245269775, - 0.053343839943408966, - 0.06316310167312622, - 0.07572928816080093, - 0.09069965779781342, - 0.10766583681106567, - 0.1261650174856186, - 0.1456926167011261, - 0.16571596264839172, - 0.16201789677143097, - 0.12762358784675598, - 0.09421789646148682, - 0.06271206587553024, - 0.03396545350551605, - 0.008762240409851074, - -0.012210145592689514, - -0.028379589319229126, - -0.039305076003074646, - -0.044688522815704346, - -0.04438313841819763, - -0.03839723765850067, - -0.026894092559814453, - -0.010187491774559021, - 0.011266857385635376, - 0.03688374161720276, - 0.06596442312002182, - 0.0977156013250351, - 0.13127122819423676, - 0.16571597754955292 - ], - "y": [ - 0.3544377088546753, - 0.39399510622024536, - 0.4326334297657013, - 0.46929866075515747, - 0.50299072265625, - 0.5327905416488647, - 0.5578852891921997, - 0.5775904655456543, - 0.5913684368133545, - 0.598843514919281, - 0.5998117923736572, - 0.5942468047142029, - 0.5823003053665161, - 0.5642982721328735, - 0.5407317280769348, - 0.5122434496879578, - 0.4796105623245239, - 0.443723201751709, - 0.4055602550506592, - 0.3661627769470215, - 0.3544377088546753, - 0.381302148103714, - 0.4075937271118164, - 0.43259525299072266, - 0.4556247591972351, - 0.4760540723800659, - 0.4933258891105652, - 0.506969153881073, - 0.516611635684967, - 0.5219903588294983, - 0.5229586362838745, - 0.5194900035858154, - 0.5116790533065796, - 0.4997389018535614, - 0.4839952290058136, - 0.46487748622894287, - 0.4429071247577667, - 0.4186834990978241, - 0.3928672969341278, - 0.3661627769470215, - 0.3544377088546753, - 0.3657066822052002, - 0.3768281638622284, - 0.38749879598617554, - 0.3974275588989258, - 0.406343549489975, - 0.4140036106109619, - 0.42019879817962646, - 0.424760103225708, - 0.4275631010532379, - 0.42853134870529175, - 0.4276384711265564, - 0.42490869760513306, - 0.4204166531562805, - 0.41428473591804504, - 0.40668028593063354, - 0.397810697555542, - 0.3879179358482361, - 0.377271831035614, - 0.3661627769470215, - 0.3544377088546753, - 0.34889867901802063, - 0.34367066621780396, - 0.3388962745666504, - 0.3347057104110718, - 0.3312132954597473, - 0.3285142779350281, - 0.32668235898017883, - 0.3257673978805542, - 0.32579439878463745, - 0.3267626464366913, - 0.3286457061767578, - 0.3313922584056854, - 0.3349272906780243, - 0.339154452085495, - 0.34395843744277954, - 0.34920814633369446, - 0.35476043820381165, - 0.36046382784843445, - 0.3661627769470215, - 0.3544377088546753, - 0.33269959688186646, - 0.31171438097953796, - 0.2920544445514679, - 0.27425605058670044, - 0.2588047683238983, - 0.24612200260162354, - 0.23655369877815247, - 0.23036089539527893, - 0.2277124971151352, - 0.22868074476718903, - 0.23323923349380493, - 0.24126359820365906, - 0.25253498554229736, - 0.266745924949646, - 0.2835087776184082, - 0.30236631631851196, - 0.32280415296554565, - 0.3442647457122803, - 0.3661627769470215, - 0.3544377088546753, - 0.3188648521900177, - 0.28442224860191345, - 0.25204938650131226, - 0.22262932360172272, - 0.1969645768404007, - 0.17575518786907196, - 0.15957973897457123, - 0.14887937903404236, - 0.14394605159759521, - 0.14491429924964905, - 0.15175771713256836, - 0.16428963840007782, - 0.18216818571090698, - 0.20490571856498718, - 0.2318820357322693, - 0.2623612880706787, - 0.29551202058792114, - 0.3304300010204315, - 0.3661627769470215, - 0.3544377088546753, - 0.3088936507701874, - 0.2647517919540405, - 0.223216250538826, - 0.18542002141475677, - 0.15239405632019043, - 0.1250392496585846, - 0.10410171747207642, - 0.09015265107154846, - 0.08357247710227966, - 0.0845407247543335, - 0.09303095936775208, - 0.10881161689758301, - 0.13145224750041962, - 0.16033519804477692, - 0.19467273354530334, - 0.23352815210819244, - 0.2758415639400482, - 0.3204587996006012, - 0.3661627769470215, - 0.3544377088546753, - 0.30386650562286377, - 0.2548346221446991, - 0.20867958664894104, - 0.1666603535413742, - 0.12992313504219055, - 0.09947001934051514, - 0.07613161206245422, - 0.060544610023498535, - 0.05313417315483093, - 0.054102420806884766, - 0.06342291831970215, - 0.08084151148796082, - 0.10588297247886658, - 0.13786427676677704, - 0.17591308057308197, - 0.2189914882183075, - 0.2659243941307068, - 0.3154316544532776, - 0.3661627769470215, - 0.3544377088546753, - 0.30432817339897156, - 0.25574541091918945, - 0.21001464128494263, - 0.16838325560092926, - 0.13198688626289368, - 0.10181829333305359, - 0.07870039343833923, - 0.06326383352279663, - 0.05592963099479675, - 0.056897878646850586, - 0.06614214181900024, - 0.08341029286384583, - 0.10823124647140503, - 0.13992801308631897, - 0.17763596773147583, - 0.22032654285430908, - 0.26683518290519714, - 0.31589335203170776, - 0.3661627769470215, - 0.3544377088546753, - 0.3102286756038666, - 0.26738548278808594, - 0.22707673907279968, - 0.19040200114250183, - 0.15836164355278015, - 0.1318296194076538, - 0.11152967810630798, - 0.09801557660102844, - 0.0916559100151062, - 0.09262415766716003, - 0.10089388489723206, - 0.11623957753181458, - 0.13824263215065002, - 0.16630277037620544, - 0.1996546983718872, - 0.23738864064216614, - 0.27847525477409363, - 0.3217938542366028, - 0.3661627769470215, - 0.3544377088546753, - 0.32092857360839844, - 0.28849342465400696, - 0.2580169439315796, - 0.23033051192760468, - 0.20618928968906403, - 0.18625181913375854, - 0.1710619330406189, - 0.1610339879989624, - 0.15644150972366333, - 0.15740975737571716, - 0.1639123260974884, - 0.1757718324661255, - 0.19266483187675476, - 0.2141304463148117, - 0.23958320915699005, - 0.26832884550094604, - 0.29958319664001465, - 0.33249375224113464, - 0.3661627769470215, - 0.3544377088546753, - 0.33526837825775146, - 0.3167818784713745, - 0.29948240518569946, - 0.28384190797805786, - 0.27028700709342957, - 0.25918740034103394, - 0.25084590911865234, - 0.24549002945423126, - 0.24326589703559875, - 0.2442341446876526, - 0.24836836755275726, - 0.25555580854415894, - 0.26560038328170776, - 0.27822816371917725, - 0.2930946350097656, - 0.3097943067550659, - 0.3278716504573822, - 0.3468335270881653, - 0.3661627769470215, - 0.3544377088546753, - 0.35169413685798645, - 0.3491853177547455, - 0.34697970747947693, - 0.34513741731643677, - 0.34370872378349304, - 0.34273263812065125, - 0.3422357439994812, - 0.3422315716743469, - 0.34272027015686035, - 0.3436885178089142, - 0.3451099097728729, - 0.3469456434249878, - 0.34914565086364746, - 0.3516499102115631, - 0.35439014434814453, - 0.357291579246521, - 0.3602750897407532, - 0.36325928568840027, - 0.3661627769470215, - 0.3544377088546753, - 0.3684258759021759, - 0.3821924030780792, - 0.3953617811203003, - 0.40757477283477783, - 0.4184982180595398, - 0.4278342127799988, - 0.43532800674438477, - 0.4407752752304077, - 0.4440273642539978, - 0.44499561190605164, - 0.44365358352661133, - 0.44003790616989136, - 0.4342471957206726, - 0.42643940448760986, - 0.4168274998664856, - 0.40567368268966675, - 0.3932821750640869, - 0.3799910247325897, - 0.3661627769470215, - 0.3544377088546753, - 0.38365042209625244, - 0.41222622990608215, - 0.43938562273979187, - 0.46438777446746826, - 0.4865506589412689, - 0.5052698254585266, - 0.5200345516204834, - 0.5304421186447144, - 0.5362087488174438, - 0.5371769666671753, - 0.5333204865455627, - 0.52474445104599, - 0.5116828680038452, - 0.4944918751716614, - 0.473640501499176, - 0.44969749450683594, - 0.42331600189208984, - 0.39521557092666626, - 0.3661627769470215, - 0.3544377088546753, - 0.3957180082798004, - 0.43603217601776123, - 0.47428059577941895, - 0.5094199180603027, - 0.5404917001724243, - 0.5666482448577881, - 0.5871762037277222, - 0.6015155911445618, - 0.609275221824646, - 0.6102434396743774, - 0.6043939590454102, - 0.5918861031532288, - 0.5730612874031067, - 0.5484328866004944, - 0.5186727046966553, - 0.4845924973487854, - 0.4471219778060913, - 0.40728315711021423, - 0.3661627769470215, - 0.3544377088546753, - 0.40332087874412537, - 0.45103058218955994, - 0.49626535177230835, - 0.5377914309501648, - 0.574475884437561, - 0.6053183078765869, - 0.6294772624969482, - 0.6462937593460083, - 0.6553090214729309, - 0.6562772989273071, - 0.6491720676422119, - 0.6341871619224548, - 0.6117313504219055, - 0.5824171304702759, - 0.5470441579818726, - 0.5065772533416748, - 0.4621203541755676, - 0.4148860275745392, - 0.3661627769470215, - 0.3544377088546753, - 0.40563517808914185, - 0.45559602975845337, - 0.5029574632644653, - 0.5464276075363159, - 0.5848206281661987, - 0.6170893311500549, - 0.6423535346984863, - 0.6599240303039551, - 0.6693215370178223, - 0.6702897548675537, - 0.6628023386001587, - 0.6470634341239929, - 0.6235023736953735, - 0.5927618145942688, - 0.5556803345680237, - 0.5132693648338318, - 0.46668580174446106, - 0.41720032691955566, - 0.3661627769470215, - 0.3544377088546753, - 0.402410089969635, - 0.4492338299751282, - 0.49363166093826294, - 0.5343925952911377, - 0.5704047083854675, - 0.6006857752799988, - 0.6244097352027893, - 0.6409294605255127, - 0.649794340133667, - 0.6507625579833984, - 0.6438077688217163, - 0.6291196346282959, - 0.6070988178253174, - 0.5783459544181824, - 0.5436453223228455, - 0.5039435625076294, - 0.4603235721588135, - 0.41397523880004883, - 0.3661627769470215, - 0.3544377088546753, - 0.39399510622024536, - 0.4326333999633789, - 0.46929866075515747, - 0.50299072265625, - 0.5327905416488647, - 0.5578852891921997, - 0.5775904059410095, - 0.5913684368133545, - 0.598843514919281, - 0.5998117327690125, - 0.5942467451095581, - 0.5823003053665161, - 0.5642982721328735, - 0.5407317280769348, - 0.5122434496879578, - 0.47961053252220154, - 0.4437231719493866, - 0.4055602550506592, - 0.3661627769470215 - ], - "z": [ - -1.5200749635696411, - -1.5149519443511963, - -1.5107953548431396, - -1.5077186822891235, - -1.5058056116104126, - -1.5051085948944092, - -1.5056464672088623, - -1.5074046850204468, - -1.5103352069854736, - -1.5143581628799438, - -1.5193637609481812, - -1.5252153873443604, - -1.5317535400390625, - -1.5387998819351196, - -1.5461621284484863, - -1.553639531135559, - -1.5610281229019165, - -1.5681263208389282, - -1.5747405290603638, - -1.5806902647018433, - -1.5200749635696411, - -1.518059492111206, - -1.5169256925582886, - -1.5167044401168823, - -1.517401933670044, - -1.5189989805221558, - -1.5214521884918213, - -1.5246944427490234, - -1.5286375284194946, - -1.5331735610961914, - -1.5381791591644287, - -1.5435175895690918, - -1.5490432977676392, - -1.5546056032180786, - -1.5600526332855225, - -1.5652358531951904, - -1.5700139999389648, - -1.5742566585540771, - -1.5778480768203735, - -1.5806902647018433, - -1.5200749635696411, - -1.521430253982544, - -1.5235751867294312, - -1.5264514684677124, - -1.5299804210662842, - -1.5340659618377686, - -1.538596510887146, - -1.5434486865997314, - -1.5484898090362549, - -1.5535826683044434, - -1.5585882663726807, - -1.5633699893951416, - -1.5677975416183472, - -1.5717499256134033, - -1.5751194953918457, - -1.5778143405914307, - -1.5797609090805054, - -1.5809061527252197, - -1.5812187194824219, - -1.5806902647018433, - -1.5200749635696411, - -1.5246988534927368, - -1.530023455619812, - -1.5359032154083252, - -1.5421780347824097, - -1.548676609992981, - -1.5552217960357666, - -1.56163489818573, - -1.5677411556243896, - -1.573373794555664, - -1.5783793926239014, - -1.5826213359832764, - -1.5859837532043457, - -1.588375210762024, - -1.5897302627563477, - -1.5900119543075562, - -1.5892127752304077, - -1.587354302406311, - -1.5844874382019043, - -1.5806902647018433, - -1.5200749635696411, - -1.5275113582611084, - -1.5355714559555054, - -1.5440356731414795, - -1.5526729822158813, - -1.5612478256225586, - -1.5695263147354126, - -1.5772825479507446, - -1.5843050479888916, - -1.5904022455215454, - -1.5954078435897827, - -1.5991852283477783, - -1.6016314029693604, - -1.60267972946167, - -1.6023013591766357, - -1.6005069017410278, - -1.5973451137542725, - -1.592902421951294, - -1.5872998237609863, - -1.5806902647018433, - -1.5200749635696411, - -1.5295625925064087, - -1.5396182537078857, - -1.5499674081802368, - -1.5603278875350952, - -1.5704171657562256, - -1.5799598693847656, - -1.5886958837509155, - -1.5963867902755737, - -1.6028227806091309, - -1.6078282594680786, - -1.611266851425171, - -1.6130447387695312, - -1.613113284111023, - -1.6114706993103027, - -1.6081619262695312, - -1.6032769680023193, - -1.5969491004943848, - -1.5893511772155762, - -1.5806902647018433, - -1.5200749635696411, - -1.5306307077407837, - -1.5417250394821167, - -1.5530556440353394, - -1.5643134117126465, - -1.5751910209655762, - -1.5853919982910156, - -1.5946381092071533, - -1.6026768684387207, - -1.609289288520813, - -1.6142948865890503, - -1.6175570487976074, - -1.618986964225769, - -1.618545413017273, - -1.6162446737289429, - -1.612147331237793, - -1.6063652038574219, - -1.5990560054779053, - -1.5904191732406616, - -1.5806902647018433, - -1.5200749635696411, - -1.530599594116211, - -1.5416637659072876, - -1.5529658794403076, - -1.5641974210739136, - -1.5750521421432495, - -1.5852340459823608, - -1.5944652557373047, - -1.6024938821792603, - -1.6091011762619019, - -1.6141067743301392, - -1.617374062538147, - -1.6188141107559204, - -1.6183874607086182, - -1.6161057949066162, - -1.61203134059906, - -1.6062753200531006, - -1.5989947319030762, - -1.5903880596160889, - -1.5806902647018433, - -1.5200749635696411, - -1.529472827911377, - -1.5394409894943237, - -1.5497076511383057, - -1.5599926710128784, - -1.570015549659729, - -1.5795029401779175, - -1.588196039199829, - -1.5958576202392578, - -1.6022788286209106, - -1.6072843074798584, - -1.6107378005981445, - -1.6125448942184448, - -1.6126563549041748, - -1.6110692024230957, - -1.607826590538025, - -1.6030170917510986, - -1.5967719554901123, - -1.5892612934112549, - -1.5806902647018433, - -1.5200749635696411, - -1.5273724794387817, - -1.5352975130081177, - -1.543634057044983, - -1.552154779434204, - -1.5606271028518677, - -1.5688198804855347, - -1.5765098333358765, - -1.5834871530532837, - -1.5895614624023438, - -1.5945669412612915, - -1.5983673334121704, - -1.6008588075637817, - -1.601973295211792, - -1.6016806364059448, - -1.5999886989593506, - -1.5969436168670654, - -1.5926284790039062, - -1.5871609449386597, - -1.5806902647018433, - -1.5200749635696411, - -1.5245260000228882, - -1.5296823978424072, - -1.5354033708572388, - -1.5415329933166504, - -1.5479040145874023, - -1.5543426275253296, - -1.5606731176376343, - -1.5667229890823364, - -1.5723271369934082, - -1.5773327350616455, - -1.5816031694412231, - -1.58502197265625, - -1.5874959230422974, - -1.5889575481414795, - -1.5893669128417969, - -1.5887129306793213, - -1.5870133638381958, - -1.5843145847320557, - -1.5806902647018433, - -1.5200749635696411, - -1.5212421417236328, - -1.5232040882110596, - -1.5259075164794922, - -1.5292785167694092, - -1.5332250595092773, - -1.5376397371292114, - -1.5424020290374756, - -1.5473819971084595, - -1.5524437427520752, - -1.5574493408203125, - -1.5622620582580566, - -1.5667508840560913, - -1.5707931518554688, - -1.574278712272644, - -1.5771124362945557, - -1.5792169570922852, - -1.5805350542068481, - -1.5810306072235107, - -1.5806902647018433, - -1.5200749635696411, - -1.5178765058517456, - -1.5165647268295288, - -1.516175389289856, - -1.516719102859497, - -1.5181810855865479, - -1.5205215215682983, - -1.5236763954162598, - -1.527559757232666, - -1.532065749168396, - -1.5370712280273438, - -1.5424399375915527, - -1.5480252504348755, - -1.5536749362945557, - -1.5592347383499146, - -1.5645530223846436, - -1.569484829902649, - -1.5738956928253174, - -1.577665090560913, - -1.5806902647018433, - -1.5200749635696411, - -1.514793872833252, - -1.5104836225509644, - -1.5072616338729858, - -1.5052160024642944, - -1.5044022798538208, - -1.504842758178711, - -1.5065255165100098, - -1.5094045400619507, - -1.5134013891220093, - -1.518406867980957, - -1.5242847204208374, - -1.5308743715286255, - -1.5379961729049683, - -1.545455813407898, - -1.553049921989441, - -1.5605711936950684, - -1.567814588546753, - -1.5745824575424194, - -1.5806902647018433, - -1.5200749635696411, - -1.5123283863067627, - -1.5056198835372925, - -1.5001323223114014, - -1.4960155487060547, - -1.4933817386627197, - -1.492302656173706, - -1.4928079843521118, - -1.49488365650177, - -1.4984732866287231, - -1.5034788846969604, - -1.5097638368606567, - -1.5171568393707275, - -1.5254560708999634, - -1.5344352722167969, - -1.5438494682312012, - -1.5534418821334839, - -1.562950849533081, - -1.5721169710159302, - -1.5806902647018433, - -1.5200749635696411, - -1.5107471942901611, - -1.5025005340576172, - -1.4955599308013916, - -1.4901148080825806, - -1.4863137006759644, - -1.484260082244873, - -1.4840102195739746, - -1.4855707883834839, - -1.4888992309570312, - -1.4939048290252686, - -1.5004509687423706, - -1.5083590745925903, - -1.5174134969711304, - -1.5273672342300415, - -1.5379488468170166, - -1.5488694906234741, - -1.5598315000534058, - -1.5705357789993286, - -1.5806902647018433, - -1.5200749635696411, - -1.5102216005325317, - -1.5014636516571045, - -1.4940400123596191, - -1.488153338432312, - -1.4839640855789185, - -1.4815865755081177, - -1.4810856580734253, - -1.48247492313385, - -1.4857165813446045, - -1.4907221794128418, - -1.4973551034927368, - -1.505434513092041, - -1.514739990234375, - -1.5250177383422852, - -1.5359872579574585, - -1.5473495721817017, - -1.5587944984436035, - -1.5700100660324097, - -1.5806902647018433, - -1.5200749635696411, - -1.5108084678649902, - -1.5026214122772217, - -1.4957371950149536, - -1.4903435707092285, - -1.486587643623352, - -1.4845718145370483, - -1.4843511581420898, - -1.4859317541122437, - -1.4892703294754028, - -1.4942759275436401, - -1.5008119344711304, - -1.5087001323699951, - -1.5177252292633057, - -1.5276411771774292, - -1.538177490234375, - -1.5490467548370361, - -1.5599523782730103, - -1.5705970525741577, - -1.5806902647018433, - -1.5200749635696411, - -1.5124443769454956, - -1.5058486461639404, - -1.5004676580429077, - -1.4964481592178345, - -1.493899941444397, - -1.4928923845291138, - -1.493453025817871, - -1.4955666065216064, - -1.4991753101348877, - -1.504180908203125, - -1.5104466676712036, - -1.5178018808364868, - -1.526045799255371, - -1.5349534749984741, - -1.544282078742981, - -1.5537770986557007, - -1.563179612159729, - -1.572232961654663, - -1.5806902647018433, - -1.5200749635696411, - -1.5149519443511963, - -1.5107953548431396, - -1.5077186822891235, - -1.5058056116104126, - -1.5051085948944092, - -1.5056465864181519, - -1.5074046850204468, - -1.5103352069854736, - -1.5143581628799438, - -1.5193637609481812, - -1.5252153873443604, - -1.5317535400390625, - -1.5387998819351196, - -1.5461622476577759, - -1.553639531135559, - -1.5610281229019165, - -1.5681263208389282, - -1.5747405290603638, - -1.5806902647018433 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.1307966262102127, - 0.09540136158466339, - 0.061002396047115326, - 0.028538048267364502, - -0.0011061429977416992, - -0.027121543884277344, - -0.04879853129386902, - -0.06554585695266724, - -0.07690663635730743, - -0.08257098495960236, - -0.08238442242145538, - -0.07635204493999481, - -0.06463834643363953, - -0.04756289720535278, - -0.025591447949409485, - 0.0006766766309738159, - 0.03052496910095215, - 0.06313919275999069, - 0.09762975573539734, - 0.13305583596229553, - 0.1307966262102127, - 0.08432327210903168, - 0.03914839029312134, - -0.003495737910270691, - -0.04244592785835266, - -0.07663968205451965, - -0.10514432191848755, - -0.12718228995800018, - -0.14215244352817535, - -0.14964644610881805, - -0.14945988357067108, - -0.14159782230854034, - -0.12627474963665009, - -0.10390865802764893, - -0.0751095861196518, - -0.04066309332847595, - -0.0015088170766830444, - 0.041285187005996704, - 0.08655166625976562, - 0.13305583596229553, - 0.1307966262102127, - 0.07828296720981598, - 0.027232535183429718, - -0.02096213400363922, - -0.06498637795448303, - -0.10363936424255371, - -0.13586674630641937, - -0.16078947484493256, - -0.17772765457630157, - -0.1862192004919052, - -0.18603263795375824, - -0.17717303335666656, - -0.15988193452358246, - -0.13463111221790314, - -0.10210928320884705, - -0.06320355832576752, - -0.018975213170051575, - 0.029369331896305084, - 0.08051136136054993, - 0.13305583596229553, - 0.1307966262102127, - 0.07793498784303665, - 0.02654607594013214, - -0.021968349814414978, - -0.0662849098443985, - -0.10519477725028992, - -0.13763661682605743, - -0.1627255231142044, - -0.17977704107761383, - -0.1883261352777481, - -0.18813957273960114, - -0.17922241985797882, - -0.1618179827928543, - -0.1364009827375412, - -0.10366471111774445, - -0.06450209021568298, - -0.01998142898082733, - 0.028682872653007507, - 0.0801633819937706, - 0.13305583596229553, - 0.1307966262102127, - 0.08331706374883652, - 0.037163421511650085, - -0.006405338644981384, - -0.04620078206062317, - -0.08113735914230347, - -0.11026212573051453, - -0.13278065621852875, - -0.14807866513729095, - -0.15573881566524506, - -0.15555225312709808, - -0.14752404391765594, - -0.13187311589717865, - -0.1090264767408371, - -0.07960726320743561, - -0.044417962431907654, - -0.004418417811393738, - 0.03930021822452545, - 0.08554545789957047, - 0.13305583596229553, - 0.1307966262102127, - 0.09384595602750778, - 0.05793400853872299, - 0.02404037117958069, - -0.006910413503646851, - -0.0340740829706192, - -0.05670970678329468, - -0.0741998553276062, - -0.08606739342212677, - -0.09198865294456482, - -0.09180209040641785, - -0.08551280200481415, - -0.07329234480857849, - -0.05547405779361725, - -0.03254400193691254, - -0.005127608776092529, - 0.026027292013168335, - 0.06007080525159836, - 0.09607435017824173, - 0.13305583596229553, - 0.1307966262102127, - 0.10838069021701813, - 0.08660700917243958, - 0.06606953591108322, - 0.047328442335128784, - 0.030894972383975983, - 0.017217375338077545, - 0.006668701767921448, - -0.0004632323980331421, - -0.003983944654464722, - -0.003797382116317749, - 0.00009135901927947998, - 0.007576219737529755, - 0.01845303177833557, - 0.03242507576942444, - 0.049111269414424896, - 0.06805645674467087, - 0.08874380588531494, - 0.11060908436775208, - 0.13305583596229553, - 0.1307966262102127, - 0.12534621357917786, - 0.1200752854347229, - 0.11512763798236847, - 0.11063820123672485, - 0.10672944784164429, - 0.10350799560546875, - 0.10106170922517776, - 0.09945733845233917, - 0.09873863309621811, - 0.09892519563436508, - 0.10001194477081299, - 0.10196922719478607, - 0.10474365204572678, - 0.10825954377651215, - 0.11242102831602097, - 0.11711455136537552, - 0.12221208959817886, - 0.1275746077299118, - 0.13305583596229553, - 0.1307966113090515, - 0.14290404319763184, - 0.1547120213508606, - 0.16589847207069397, - 0.17615821957588196, - 0.1852114498615265, - 0.19281120598316193, - 0.19875016808509827, - 0.20286637544631958, - 0.20504750311374664, - 0.20523406565189362, - 0.2034209668636322, - 0.19965767860412598, - 0.19404688477516174, - 0.18674159049987793, - 0.17794105410575867, - 0.16788537800312042, - 0.15684881806373596, - 0.14513243734836578, - 0.13305582106113434, - 0.1307966113090515, - 0.15915150940418243, - 0.18676377832889557, - 0.2128802239894867, - 0.23678843677043915, - 0.2578362822532654, - 0.27544966340065, - 0.28914809226989746, - 0.2985578775405884, - 0.30342239141464233, - 0.3036089539527893, - 0.2991124987602234, - 0.2900555729866028, - 0.27668532729148865, - 0.2593664228916168, - 0.23857128620147705, - 0.21486714482307434, - 0.18890057504177094, - 0.16137990355491638, - 0.13305582106113434, - 0.1307966113090515, - 0.17232796549797058, - 0.21275725960731506, - 0.2509816884994507, - 0.28595858812332153, - 0.3167338967323303, - 0.34246814250946045, - 0.36245936155319214, - 0.37616223096847534, - 0.3832029700279236, - 0.38338953256607056, - 0.37671682238578796, - 0.36336690187454224, - 0.3437038064002991, - 0.31826406717300415, - 0.28774145245552063, - 0.25296860933303833, - 0.21489405632019043, - 0.17455635964870453, - 0.13305582106113434, - 0.1307966113090515, - 0.18100550770759583, - 0.22987565398216248, - 0.27607399225234985, - 0.31834036111831665, - 0.3555218279361725, - 0.3866041898727417, - 0.41073960065841675, - 0.42726975679397583, - 0.43574368953704834, - 0.4359302520751953, - 0.42782437801361084, - 0.41164714097976685, - 0.3878399133682251, - 0.3570519685745239, - 0.32012319564819336, - 0.2780609130859375, - 0.23201245069503784, - 0.18323390185832977, - 0.13305582106113434, - 0.1307966113090515, - 0.1842438131570816, - 0.2362639456987381, - 0.28543800115585327, - 0.3304246664047241, - 0.3699967861175537, - 0.4030749797821045, - 0.4287569522857666, - 0.4463421702384949, - 0.45535093545913696, - 0.45553749799728394, - 0.4468967914581299, - 0.4296644926071167, - 0.4043107032775879, - 0.37152695655822754, - 0.3322075307369232, - 0.2874249219894409, - 0.23840074241161346, - 0.18647220730781555, - 0.13305582106113434, - 0.1307966113090515, - 0.1816919595003128, - 0.23122984170913696, - 0.2780589461326599, - 0.3209019899368286, - 0.3585902154445648, - 0.39009565114974976, - 0.41455888748168945, - 0.4313126802444458, - 0.4398999810218811, - 0.4400865435600281, - 0.4318673014640808, - 0.41546642780303955, - 0.3913313150405884, - 0.36012035608291626, - 0.3226848244667053, - 0.28004586696624756, - 0.23336663842201233, - 0.18392035365104675, - 0.13305582106113434, - 0.1307966113090515, - 0.17362648248672485, - 0.21531887352466583, - 0.2547365427017212, - 0.29080426692962646, - 0.32253819704055786, - 0.34907272458076477, - 0.369684100151062, - 0.38380998373031616, - 0.39106523990631104, - 0.391251802444458, - 0.38436460494995117, - 0.37059158086776733, - 0.3503084182739258, - 0.3240683376789093, - 0.2925871014595032, - 0.25672346353530884, - 0.2174556702375412, - 0.1758548766374588, - 0.13305582106113434, - 0.1307966113090515, - 0.1609213948249817, - 0.190255269408226, - 0.21799805760383606, - 0.24339306354522705, - 0.2657475471496582, - 0.2844516634941101, - 0.29899537563323975, - 0.30898183584213257, - 0.3141386806964874, - 0.3143252432346344, - 0.3095364272594452, - 0.29990288615226746, - 0.2856873869895935, - 0.26727765798568726, - 0.24517589807510376, - 0.2199849784374237, - 0.19239206612110138, - 0.16314978897571564, - 0.13305582106113434, - 0.1307966113090515, - 0.14495347440242767, - 0.15875497460365295, - 0.17182466387748718, - 0.18380603194236755, - 0.1943722367286682, - 0.20323510468006134, - 0.21015280485153198, - 0.2149367332458496, - 0.21745634078979492, - 0.2176429033279419, - 0.21549132466316223, - 0.2110603153705597, - 0.20447075366973877, - 0.19590237736701965, - 0.18558885157108307, - 0.17381158471107483, - 0.16089177131652832, - 0.14718186855316162, - 0.13305582106113434, - 0.1307966262102127, - 0.12745310366153717, - 0.12423159927129745, - 0.12121998518705368, - 0.11850041151046753, - 0.11614704877138138, - 0.11422412097454071, - 0.11278404295444489, - 0.11186610907316208, - 0.11149539053440094, - 0.11168195307254791, - 0.1124207153916359, - 0.1136915534734726, - 0.11545978486537933, - 0.11767716705799103, - 0.12028323858976364, - 0.12320690602064133, - 0.12636840343475342, - 0.12968149781227112, - 0.13305583596229553, - 0.1307966262102127, - 0.11031672358512878, - 0.09042627364397049, - 0.07166783511638641, - 0.0545530840754509, - 0.03954887390136719, - 0.027064479887485504, - 0.017440438270568848, - 0.010939262807369232, - 0.0077383071184158325, - 0.007924869656562805, - 0.011493869125843048, - 0.018347948789596558, - 0.02830013632774353, - 0.04107897728681564, - 0.05633591115474701, - 0.07365475594997406, - 0.09256307035684586, - 0.11254511773586273, - 0.13305583596229553, - 0.1307966262102127, - 0.0954013541340828, - 0.06100238114595413, - 0.02853802591562271, - -0.001106172800064087, - -0.02712157368659973, - -0.0487985759973526, - -0.06554588675498962, - -0.07690668106079102, - -0.08257102966308594, - -0.08238446712493896, - -0.0763520896434784, - -0.06463837623596191, - -0.04756292700767517, - -0.025591492652893066, - 0.0006766468286514282, - 0.030524946749210358, - 0.0631391778588295, - 0.09762974828481674, - 0.13305583596229553 - ], - "y": [ - 0.3356529474258423, - 0.3763260841369629, - 0.4160078465938568, - 0.45361584424972534, - 0.48812419176101685, - 0.5185916423797607, - 0.544187068939209, - 0.5642123222351074, - 0.5781211853027344, - 0.5855342149734497, - 0.5862492322921753, - 0.5802467465400696, - 0.5676904320716858, - 0.5489228963851929, - 0.5244559645652771, - 0.4949570894241333, - 0.4612308442592621, - 0.42419731616973877, - 0.3848665952682495, - 0.34431156516075134, - 0.3356529474258423, - 0.3631594181060791, - 0.39003366231918335, - 0.4155426323413849, - 0.4389905333518982, - 0.45973771810531616, - 0.4772183299064636, - 0.4909554123878479, - 0.5005744099617004, - 0.5058128833770752, - 0.5065279006958008, - 0.5026999711990356, - 0.49443352222442627, - 0.48195409774780273, - 0.4656020402908325, - 0.4458233714103699, - 0.42315763235092163, - 0.3982231318950653, - 0.3716999292373657, - 0.34431156516075134, - 0.3356529772281647, - 0.34701839089393616, - 0.35819190740585327, - 0.3688686788082123, - 0.3787575364112854, - 0.3875887095928192, - 0.3951212763786316, - 0.40114980936050415, - 0.4055098593235016, - 0.4080824553966522, - 0.4087974727153778, - 0.4076354205608368, - 0.4046279191970825, - 0.3998571038246155, - 0.3934530019760132, - 0.38559040427207947, - 0.3764837086200714, - 0.36638134717941284, - 0.3555589020252228, - 0.34431156516075134, - 0.3356529772281647, - 0.32965216040611267, - 0.32393312454223633, - 0.31865185499191284, - 0.3139524459838867, - 0.30996304750442505, - 0.3067924976348877, - 0.30452728271484375, - 0.3032291829586029, - 0.30293360352516174, - 0.30364862084388733, - 0.3053547441959381, - 0.3080054223537445, - 0.3115282952785492, - 0.315827339887619, - 0.3207853138446808, - 0.326266884803772, - 0.3321225643157959, - 0.3381926715373993, - 0.34431156516075134, - 0.3356529772281647, - 0.31294259428977966, - 0.2909697890281677, - 0.2703338861465454, - 0.2515978217124939, - 0.23527267575263977, - 0.2218037247657776, - 0.21155840158462524, - 0.20481610298156738, - 0.20176081359386444, - 0.20247583091259003, - 0.2069416642189026, - 0.2150365114212036, - 0.22653955221176147, - 0.24113699793815613, - 0.25843068957328796, - 0.27794891595840454, - 0.2991592288017273, - 0.3214831054210663, - 0.34431159496307373, - 0.3356529772281647, - 0.2987004518508911, - 0.26287397742271423, - 0.22915083169937134, - 0.19845084846019745, - 0.171611487865448, - 0.1493648737668991, - 0.13231776654720306, - 0.12093523144721985, - 0.11552770435810089, - 0.11624272167682648, - 0.12306079268455505, - 0.13579587638378143, - 0.15410064160823822, - 0.17747579514980316, - 0.20528370141983032, - 0.23676583170890808, - 0.2710634469985962, - 0.30724096298217773, - 0.34431159496307373, - 0.3356529772281647, - 0.2884690761566162, - 0.2426903247833252, - 0.19956544041633606, - 0.16027075052261353, - 0.12587815523147583, - 0.09732575714588165, - 0.07539236545562744, - 0.06067630648612976, - 0.05357900261878967, - 0.05429401993751526, - 0.06280186772346497, - 0.07887047529220581, - 0.10206153988838196, - 0.1317424476146698, - 0.1671036034822464, - 0.2071804702281952, - 0.25087979435920715, - 0.29700958728790283, - 0.34431159496307373, - 0.3356529772281647, - 0.2833572030067444, - 0.23260603845119476, - 0.18478380143642426, - 0.14119498431682587, - 0.1030285656452179, - 0.0713256299495697, - 0.04695090651512146, - 0.030569344758987427, - 0.02262777090072632, - 0.023342788219451904, - 0.03269490599632263, - 0.05042901635169983, - 0.0760614275932312, - 0.10889284312725067, - 0.14802783727645874, - 0.1923988312482834, - 0.24079550802707672, - 0.2918977439403534, - 0.34431159496307373, - 0.3356529772281647, - 0.2839187979698181, - 0.23371389508247375, - 0.18640772998332977, - 0.1432906538248062, - 0.10553884506225586, - 0.07418200373649597, - 0.050075531005859375, - 0.0338769257068634, - 0.026028096675872803, - 0.02674311399459839, - 0.03600248694419861, - 0.053553640842437744, - 0.07891780138015747, - 0.11140312254428864, - 0.15012352168560028, - 0.1940227597951889, - 0.2419033646583557, - 0.2924593389034271, - 0.34431159496307373, - 0.3356529772281647, - 0.29009300470352173, - 0.24589386582374573, - 0.20426122844219208, - 0.1663307100534439, - 0.13313695788383484, - 0.10558539628982544, - 0.08442753553390503, - 0.07024058699607849, - 0.06341150403022766, - 0.06412652134895325, - 0.0723661482334137, - 0.0879056453704834, - 0.11032119393348694, - 0.1390012502670288, - 0.17316356301307678, - 0.2118762582540512, - 0.2540833353996277, - 0.29863351583480835, - 0.34431159496307373, - 0.3356529772281647, - 0.3012107312679291, - 0.26782605051994324, - 0.23640961945056915, - 0.20781837403774261, - 0.18283222615718842, - 0.16213271021842957, - 0.14628446102142334, - 0.13571979105472565, - 0.1307268887758255, - 0.1314419060945511, - 0.13784535229206085, - 0.1497625708580017, - 0.16686850786209106, - 0.18869653344154358, - 0.2146512269973755, - 0.2440246343612671, - 0.2760155200958252, - 0.3097512423992157, - 0.34431159496307373, - 0.3356529772281647, - 0.3160671889781952, - 0.29713374376296997, - 0.2793691158294678, - 0.26325783133506775, - 0.24923940002918243, - 0.23769620060920715, - 0.2289430797100067, - 0.22321882843971252, - 0.22067958116531372, - 0.2213945984840393, - 0.22534438967704773, - 0.23242121934890747, - 0.24243199825286865, - 0.2551037073135376, - 0.2700906991958618, - 0.2869841158390045, - 0.30532321333885193, - 0.3246077001094818, - 0.34431159496307373, - 0.3356529772281647, - 0.33305248618125916, - 0.3306410014629364, - 0.32848435640335083, - 0.326641321182251, - 0.32516220211982727, - 0.32408735156059265, - 0.32344603538513184, - 0.3232558071613312, - 0.32352185249328613, - 0.3242368698120117, - 0.3253813683986664, - 0.3269241750240326, - 0.32882314920425415, - 0.33102652430534363, - 0.33347418904304504, - 0.33609938621520996, - 0.33883047103881836, - 0.3415929973125458, - 0.34431156516075134, - 0.3356529474258423, - 0.35032597184181213, - 0.36471685767173767, - 0.3784330189228058, - 0.39110034704208374, - 0.4023733139038086, - 0.4119444191455841, - 0.41955259442329407, - 0.42499029636383057, - 0.42810919880867004, - 0.42882421612739563, - 0.42711585760116577, - 0.42303070425987244, - 0.416680246591568, - 0.40823766589164734, - 0.3979332149028778, - 0.3860480487346649, - 0.37290629744529724, - 0.35886651277542114, - 0.34431156516075134, - 0.3356529474258423, - 0.36601582169532776, - 0.39566853642463684, - 0.42380228638648987, - 0.4496496319770813, - 0.4725055694580078, - 0.49174660444259644, - 0.5068478584289551, - 0.5173975229263306, - 0.5231077671051025, - 0.5238227844238281, - 0.5195230841636658, - 0.5103260278701782, - 0.4964824318885803, - 0.47836989164352417, - 0.45648252964019775, - 0.4314172863960266, - 0.4038580060005188, - 0.3745563328266144, - 0.34431156516075134, - 0.3356529474258423, - 0.37842175364494324, - 0.4201420247554779, - 0.45967575907707214, - 0.4959445595741272, - 0.5279591083526611, - 0.5548461675643921, - 0.5758723020553589, - 0.5904638767242432, - 0.598223090171814, - 0.5989381074905396, - 0.5925894975662231, - 0.5793504118919373, - 0.559581995010376, - 0.5338234901428223, - 0.5027774572372437, - 0.4672907590866089, - 0.42833149433135986, - 0.38696229457855225, - 0.34431156516075134, - 0.3356529474258423, - 0.3861994445323944, - 0.43548527359962463, - 0.48216602206230164, - 0.5249683856964111, - 0.562724769115448, - 0.5944052934646606, - 0.619145929813385, - 0.6362716555595398, - 0.6453153491020203, - 0.6460303664207458, - 0.638397216796875, - 0.6226240396499634, - 0.5991411805152893, - 0.5685890913009644, - 0.5318012237548828, - 0.48978105187416077, - 0.4436747431755066, - 0.3947399854660034, - 0.34431156516075134, - 0.3356529474258423, - 0.38850605487823486, - 0.44003555178642273, - 0.4888358414173126, - 0.5335758328437805, - 0.5730350017547607, - 0.606137216091156, - 0.6319793462753296, - 0.6498566269874573, - 0.6592812538146973, - 0.6599962711334229, - 0.6519821882247925, - 0.6354575157165527, - 0.6108730435371399, - 0.5788993835449219, - 0.540408730506897, - 0.49645087122917175, - 0.4482250213623047, - 0.3970465660095215, - 0.34431156516075134, - 0.3356529474258423, - 0.3850915729999542, - 0.4332997500896454, - 0.4789624512195587, - 0.5208341479301453, - 0.5577726364135742, - 0.5887704491615295, - 0.612981915473938, - 0.629746675491333, - 0.638607382774353, - 0.6393224000930786, - 0.6318722367286682, - 0.6164600849151611, - 0.5935062766075134, - 0.5636370182037354, - 0.5276670455932617, - 0.48657748103141785, - 0.44148921966552734, - 0.39363211393356323, - 0.34431156516075134, - 0.3356529474258423, - 0.3763260841369629, - 0.4160078465938568, - 0.45361581444740295, - 0.48812419176101685, - 0.518591582775116, - 0.5441870093345642, - 0.5642123222351074, - 0.5781211256980896, - 0.5855341553688049, - 0.5862491726875305, - 0.5802466869354248, - 0.567690372467041, - 0.5489228367805481, - 0.5244559049606323, - 0.4949570298194885, - 0.4612308144569397, - 0.42419731616973877, - 0.3848665952682495, - 0.34431156516075134 - ], - "z": [ - -1.5802305936813354, - -1.5748600959777832, - -1.570286512374878, - -1.5666347742080688, - -1.5640043020248413, - -1.5624669790267944, - -1.5620646476745605, - -1.5628083944320679, - -1.5646778345108032, - -1.5676220655441284, - -1.5715607404708862, - -1.5763863325119019, - -1.5819673538208008, - -1.588151454925537, - -1.5947699546813965, - -1.601642370223999, - -1.608581304550171, - -1.615397334098816, - -1.621904730796814, - -1.6279257535934448, - -1.5802305936813354, - -1.5777751207351685, - -1.576037049293518, - -1.575063943862915, - -1.5748822689056396, - -1.5754969120025635, - -1.5768911838531494, - -1.5790270566940308, - -1.5818463563919067, - -1.585271954536438, - -1.5892106294631958, - -1.5935547351837158, - -1.5981860160827637, - -1.602977991104126, - -1.6077998876571655, - -1.6125203371047974, - -1.617010474205017, - -1.621147871017456, - -1.6248197555541992, - -1.6279257535934448, - -1.5802305936813354, - -1.580991506576538, - -1.582382082939148, - -1.5843645334243774, - -1.5868847370147705, - -1.5898737907409668, - -1.5932503938674927, - -1.5969223976135254, - -1.6007895469665527, - -1.6047464609146118, - -1.60868501663208, - -1.6124980449676514, - -1.6160813570022583, - -1.6193372011184692, - -1.6221768856048584, - -1.6245228052139282, - -1.6263110637664795, - -1.627492904663086, - -1.6280360221862793, - -1.6279257535934448, - -1.5802305936813354, - -1.5841606855392456, - -1.5886340141296387, - -1.5935286283493042, - -1.5987110137939453, - -1.6040397882461548, - -1.6093695163726807, - -1.61455500125885, - -1.6194547414779663, - -1.6239349842071533, - -1.6278736591339111, - -1.631163239479065, - -1.633713960647583, - -1.6354563236236572, - -1.6363427639007568, - -1.636349081993103, - -1.6354751586914062, - -1.6337448358535767, - -1.6312052011489868, - -1.6279257535934448, - -1.5802305936813354, - -1.5869392156600952, - -1.5941152572631836, - -1.6015630960464478, - -1.6090795993804932, - -1.616459608078003, - -1.6235018968582153, - -1.6300143003463745, - -1.6358193159103394, - -1.6407585144042969, - -1.6446970701217651, - -1.6475276947021484, - -1.6491731405258179, - -1.6495885848999023, - -1.648762583732605, - -1.6467176675796509, - -1.6435096263885498, - -1.6392260789871216, - -1.6339837312698364, - -1.6279257535934448, - -1.5802305936813354, - -1.5890259742736816, - -1.5982319116592407, - -1.6075973510742188, - -1.6168668270111084, - -1.625787377357483, - -1.6341158151626587, - -1.641624927520752, - -1.648109793663025, - -1.6533936262130737, - -1.657332181930542, - -1.659818172454834, - -1.6607837677001953, - -1.6602025032043457, - -1.658090353012085, - -1.6545048952102661, - -1.6495440006256104, - -1.6433427333831787, - -1.6360706090927124, - -1.6279257535934448, - -1.5802305936813354, - -1.5901949405670166, - -1.600537896156311, - -1.6109775304794312, - -1.6212289333343506, - -1.6310124397277832, - -1.6400612592697144, - -1.648128628730774, - -1.6549943685531616, - -1.6604712009429932, - -1.664409875869751, - -1.6667027473449707, - -1.6672874689102173, - -1.666148066520691, - -1.6633154153823853, - -1.6588670015335083, - -1.6529240608215332, - -1.645648717880249, - -1.6372394561767578, - -1.6279257535934448, - -1.5802305936813354, - -1.590319275856018, - -1.600783348083496, - -1.6113371849060059, - -1.6216930150985718, - -1.631568431854248, - -1.6406939029693604, - -1.6488206386566162, - -1.6557269096374512, - -1.661224365234375, - -1.6651630401611328, - -1.6674354076385498, - -1.6679795980453491, - -1.666780710220337, - -1.66387140750885, - -1.659331202507019, - -1.653283715248108, - -1.645894169807434, - -1.6373639106750488, - -1.6279257535934448, - -1.5802305936813354, - -1.589385747909546, - -1.5989415645599365, - -1.6086374521255493, - -1.6182091236114502, - -1.6273951530456543, - -1.6359453201293945, - -1.6436262130737305, - -1.6502282619476318, - -1.655571460723877, - -1.6595101356506348, - -1.6619367599487305, - -1.6627850532531738, - -1.6620320081710815, - -1.659698247909546, - -1.655847191810608, - -1.650584101676941, - -1.6440523862838745, - -1.636430263519287, - -1.6279257535934448, - -1.5802305936813354, - -1.58749520778656, - -1.5952121019363403, - -1.6031708717346191, - -1.6111544370651245, - -1.6189448833465576, - -1.6263298988342285, - -1.6331079006195068, - -1.6390941143035889, - -1.6441251039505005, - -1.6480636596679688, - -1.650802493095398, - -1.6522668600082397, - -1.652416706085205, - -1.6512479782104492, - -1.6487925052642822, - -1.6451175212860107, - -1.6403229236602783, - -1.6345398426055908, - -1.6279257535934448, - -1.5802305936813354, - -1.5848528146743774, - -1.5899993181228638, - -1.5955299139022827, - -1.601293683052063, - -1.607133388519287, - -1.6128897666931152, - -1.6184056997299194, - -1.6235309839248657, - -1.628125548362732, - -1.6320641040802002, - -1.6352393627166748, - -1.6375646591186523, - -1.6389764547348022, - -1.6394363641738892, - -1.6389317512512207, - -1.6374764442443848, - -1.6351101398468018, - -1.6318973302841187, - -1.6279257535934448, - -1.5802305936813354, - -1.58174467086792, - -1.5838679075241089, - -1.5865423679351807, - -1.5896952152252197, - -1.5932403802871704, - -1.597081184387207, - -1.6011128425598145, - -1.6052254438400269, - -1.6093066930770874, - -1.6132453680038452, - -1.6169339418411255, - -1.6202718019485474, - -1.6231679916381836, - -1.625543475151062, - -1.627333402633667, - -1.6284890174865723, - -1.6289787292480469, - -1.6287893056869507, - -1.6279257535934448, - -1.5802305936813354, - -1.5785077810287476, - -1.5774823427200317, - -1.577182412147522, - -1.5776162147521973, - -1.578771710395813, - -1.5806175470352173, - -1.5831032991409302, - -1.5861612558364868, - -1.589707851409912, - -1.59364652633667, - -1.597869634628296, - -1.6022621393203735, - -1.6067042350769043, - -1.611074686050415, - -1.615254282951355, - -1.6191290616989136, - -1.6225931644439697, - -1.6255522966384888, - -1.6279257535934448, - -1.5802305936813354, - -1.5754927396774292, - -1.5715346336364746, - -1.5684642791748047, - -1.5663652420043945, - -1.5652949810028076, - -1.5652827024459839, - -1.566328525543213, - -1.568404197692871, - -1.5714528560638428, - -1.5753915309906006, - -1.5801125764846802, - -1.5854874849319458, - -1.591369390487671, - -1.5975979566574097, - -1.6040034294128418, - -1.6104108095169067, - -1.6166454553604126, - -1.62253737449646, - -1.6279257535934448, - -1.5802305936813354, - -1.573026418685913, - -1.5666693449020386, - -1.5613325834274292, - -1.557161808013916, - -1.55427086353302, - -1.5527384281158447, - -1.552606463432312, - -1.5538785457611084, - -1.556519865989685, - -1.5604585409164429, - -1.565587043762207, - -1.571765422821045, - -1.5788252353668213, - -1.586573839187622, - -1.5947999954223633, - -1.6032791137695312, - -1.6117801666259766, - -1.6200710535049438, - -1.6279257535934448, - -1.5802305936813354, - -1.571376085281372, - -1.5634136199951172, - -1.5565602779388428, - -1.5510032176971436, - -1.546893835067749, - -1.5443443059921265, - -1.543424129486084, - -1.5441584587097168, - -1.5465272665023804, - -1.5504658222198486, - -1.5558669567108154, - -1.5625829696655273, - -1.5704309940338135, - -1.579196810722351, - -1.5886412858963013, - -1.5985069274902344, - -1.6085244417190552, - -1.6184207201004028, - -1.6279257535934448, - -1.5802305936813354, - -1.5707204341888428, - -1.5621203184127808, - -1.5546644926071167, - -1.5485566854476929, - -1.5439633131027222, - -1.5410096645355225, - -1.5397764444351196, - -1.5402971506118774, - -1.542557716369629, - -1.5464963912963867, - -1.552005648612976, - -1.5589354038238525, - -1.567096471786499, - -1.5762662887573242, - -1.5861947536468506, - -1.5966111421585083, - -1.6072311401367188, - -1.6177650690078735, - -1.6279257535934448, - -1.5802305936813354, - -1.5711307525634766, - -1.5629295110702515, - -1.5558507442474365, - -1.5500874519348145, - -1.5457968711853027, - -1.5430961847305298, - -1.5420588254928589, - -1.5427131652832031, - -1.5450414419174194, - -1.5489801168441772, - -1.5544216632843018, - -1.5612176656723022, - -1.5691828727722168, - -1.5780999660491943, - -1.5877255201339722, - -1.5977972745895386, - -1.6080403327941895, - -1.6181752681732178, - -1.6279257535934448, - -1.5802305936813354, - -1.572562336921692, - -1.5657535791397095, - -1.5599902868270874, - -1.5554296970367432, - -1.5521959066390991, - -1.5503774881362915, - -1.5500237941741943, - -1.5511445999145508, - -1.5537093877792358, - -1.557647943496704, - -1.5628530979156494, - -1.5691827535629272, - -1.5764641761779785, - -1.5844990015029907, - -1.5930677652359009, - -1.601936936378479, - -1.6108644008636475, - -1.619606852531433, - -1.6279257535934448, - -1.5802305936813354, - -1.5748600959777832, - -1.570286512374878, - -1.5666347742080688, - -1.5640043020248413, - -1.5624669790267944, - -1.5620646476745605, - -1.5628083944320679, - -1.5646778345108032, - -1.5676220655441284, - -1.5715607404708862, - -1.5763863325119019, - -1.5819673538208008, - -1.588151454925537, - -1.5947699546813965, - -1.601642370223999, - -1.608581304550171, - -1.615397334098816, - -1.621904730796814, - -1.6279257535934448 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.10424824804067612, - 0.06807266175746918, - 0.03290265053510666, - -0.00030243396759033203, - -0.030636869370937347, - -0.057273171842098236, - -0.07948481291532516, - -0.0966658964753151, - -0.10834775120019913, - -0.11421176046133041, - -0.1140979453921318, - -0.10800943523645401, - -0.09611228853464127, - -0.078731007874012, - -0.05633976310491562, - -0.02954927831888199, - 0.000909656286239624, - 0.034206174314022064, - 0.06943206489086151, - 0.10562644898891449, - 0.10424824804067612, - 0.05669115483760834, - 0.010450094938278198, - -0.03321360796689987, - -0.07310891896486282, - -0.10814756900072098, - -0.13737383484840393, - -0.15999045968055725, - -0.17538058757781982, - -0.18312430381774902, - -0.1830105185508728, - -0.1750422716140747, - -0.15943685173988342, - -0.13662004470825195, - -0.10721414536237717, - -0.07202131301164627, - -0.032001517713069916, - 0.011753618717193604, - 0.05805055797100067, - 0.10562644898891449, - 0.10424824804067612, - 0.050464216619729996, - -0.0018339455127716064, - -0.051219649612903595, - -0.09634581953287125, - -0.1359814703464508, - -0.16904550790786743, - -0.1946360170841217, - -0.21205493807792664, - -0.2208271026611328, - -0.2207133173942566, - -0.21171662211418152, - -0.19408240914344788, - -0.16829171776771545, - -0.13504809141159058, - -0.09525822848081589, - -0.05000755935907364, - -0.0005304217338562012, - 0.05182361975312233, - 0.10562645643949509, - 0.10424824804067612, - 0.05006662383675575, - -0.0026182755827903748, - -0.05236934870481491, - -0.09782951325178146, - -0.13775867223739624, - -0.1710677444934845, - -0.19684815406799316, - -0.2143966257572174, - -0.22323444485664368, - -0.22312065958976746, - -0.2140583097934723, - -0.19629454612731934, - -0.17031395435333252, - -0.13682526350021362, - -0.09674190729856491, - -0.051157258450984955, - -0.0013147518038749695, - 0.05142602697014809, - 0.10562645643949509, - 0.10424824804067612, - 0.055541470646858215, - 0.008182071149349213, - -0.03653807193040848, - -0.07739917188882828, - -0.1132865771651268, - -0.1432214081287384, - -0.16638711094856262, - -0.18215179443359375, - -0.19008541107177734, - -0.18997162580490112, - -0.18181347846984863, - -0.1658335030078888, - -0.14246761798858643, - -0.11235316842794418, - -0.07631158083677292, - -0.03532598167657852, - 0.009485594928264618, - 0.05690087378025055, - 0.10562644898891449, - 0.10424824804067612, - 0.06629547476768494, - 0.029396742582321167, - -0.005441442131996155, - -0.037268780171871185, - -0.06521708518266678, - -0.08852405101060867, - -0.10655387490987778, - -0.11881475895643234, - -0.12497229129076004, - -0.12485847622156143, - -0.11847644299268723, - -0.10600026696920395, - -0.0877702459692955, - -0.06428367644548416, - -0.03618120402097702, - -0.004229351878166199, - 0.030700266361236572, - 0.06765487790107727, - 0.10562644898891449, - 0.10424824059009552, - 0.08116325736045837, - 0.058726757764816284, - 0.037550777196884155, - 0.01821291446685791, - 0.001240663230419159, - -0.012902982532978058, - -0.023832298815250397, - -0.031249068677425385, - -0.034951068460941315, - -0.034837253391742706, - -0.030910752713680267, - -0.02327869087457657, - -0.012149199843406677, - 0.00217408686876297, - 0.019300498068332672, - 0.03876286745071411, - 0.060030288994312286, - 0.08252266049385071, - 0.10562644153833389, - 0.10424824059009552, - 0.09853368252515793, - 0.09299378842115402, - 0.087779700756073, - 0.08303362876176834, - 0.0788850337266922, - 0.07544707506895065, - 0.07281352579593658, - 0.07105621695518494, - 0.0702231228351593, - 0.07033693045377731, - 0.07139454782009125, - 0.07336713373661041, - 0.07620086520910263, - 0.07981844246387482, - 0.0841212198138237, - 0.08899179846048355, - 0.09429731965065002, - 0.09989308565855026, - 0.10562644153833389, - 0.10424823313951492, - 0.11652438342571259, - 0.12848447263240814, - 0.1398022472858429, - 0.1501690000295639, - 0.15930193662643433, - 0.166951984167099, - 0.1729104071855545, - 0.17701473832130432, - 0.1791529357433319, - 0.17926675081253052, - 0.17735305428504944, - 0.17346403002738953, - 0.16770580410957336, - 0.16023539006710052, - 0.15125659108161926, - 0.14101433753967285, - 0.12978799641132355, - 0.11788378655910492, - 0.1056264340877533, - 0.10424822568893433, - 0.13318578898906708, - 0.16135281324386597, - 0.18798094987869263, - 0.21234390139579773, - 0.23377707600593567, - 0.25169581174850464, - 0.2656114101409912, - 0.27514421939849854, - 0.2800341844558716, - 0.2801479995250702, - 0.27548253536224365, - 0.26616501808166504, - 0.252449631690979, - 0.23471051454544067, - 0.21343150734901428, - 0.18919304013252258, - 0.16265633702278137, - 0.1345452070236206, - 0.1056264340877533, - 0.10424822568893433, - 0.14671239256858826, - 0.18803703784942627, - 0.22709493339061737, - 0.26282069087028503, - 0.2942398190498352, - 0.32049521803855896, - 0.34087085723876953, - 0.35481080412864685, - 0.3619348108768463, - 0.36204859614372253, - 0.35514912009239197, - 0.34142446517944336, - 0.3212490677833557, - 0.2951732575893402, - 0.263908326625824, - 0.22830702364444733, - 0.18934056162834167, - 0.1480717957019806, - 0.1056264266371727, - 0.10424822568893433, - 0.15563835203647614, - 0.20564548671245575, - 0.25290554761886597, - 0.2961294651031494, - 0.33413809537887573, - 0.36589479446411133, - 0.3905332386493683, - 0.4073813855648041, - 0.4159795939922333, - 0.4160933792591095, - 0.4077197015285492, - 0.3910868465900421, - 0.3666486442089081, - 0.3350715935230255, - 0.29721707105636597, - 0.2541176378726959, - 0.20694901049137115, - 0.15699775516986847, - 0.1056264266371727, - 0.10424821823835373, - 0.15899641811847687, - 0.21227002143859863, - 0.2626158595085144, - 0.3086606562137604, - 0.34914839267730713, - 0.38297468423843384, - 0.40921691060066223, - 0.4271591305732727, - 0.4363119602203369, - 0.43642574548721313, - 0.4274974465370178, - 0.40977051854133606, - 0.3837285339832306, - 0.3500818610191345, - 0.30974826216697693, - 0.26382794976234436, - 0.21357354521751404, - 0.1603558212518692, - 0.1056264266371727, - 0.10424822568893433, - 0.1564226895570755, - 0.20719274878501892, - 0.25517356395721436, - 0.2990563213825226, - 0.3376440107822418, - 0.36988410353660583, - 0.39489713311195374, - 0.4120008051395416, - 0.42072856426239014, - 0.42084234952926636, - 0.41233912110328674, - 0.39545074105262756, - 0.3706379234790802, - 0.3385775089263916, - 0.3001439571380615, - 0.2563856542110443, - 0.20849627256393433, - 0.15778209269046783, - 0.1056264266371727, - 0.10424822568893433, - 0.14819607138633728, - 0.19096392393112183, - 0.23138520121574402, - 0.2683573067188263, - 0.30087172985076904, - 0.32804158329963684, - 0.34912577271461487, - 0.3635490834712982, - 0.3709181547164917, - 0.3710319399833679, - 0.36388739943504333, - 0.3496793806552887, - 0.3287954330444336, - 0.30180519819259644, - 0.26944494247436523, - 0.23259729146957397, - 0.19226744771003723, - 0.14955547451972961, - 0.1056264266371727, - 0.10424822568893433, - 0.13520804047584534, - 0.16534215211868286, - 0.19382858276367188, - 0.2198902666568756, - 0.24281635880470276, - 0.26198145747184753, - 0.27686282992362976, - 0.28705450892448425, - 0.2922784686088562, - 0.2923922836780548, - 0.28739282488822937, - 0.2774164378643036, - 0.2627352774143219, - 0.24374982714653015, - 0.22097787261009216, - 0.19504067301750183, - 0.16664569079875946, - 0.13656744360923767, - 0.1056264340877533, - 0.10424823313951492, - 0.11886604130268097, - 0.13310390710830688, - 0.1465734839439392, - 0.15890732407569885, - 0.16976895928382874, - 0.17886221408843994, - 0.1859389841556549, - 0.19080621004104614, - 0.19333119690418243, - 0.19344501197338104, - 0.19114455580711365, - 0.18649259209632874, - 0.1796160340309143, - 0.17070242762565613, - 0.15999490022659302, - 0.14778557419776917, - 0.1344074308872223, - 0.1202254444360733, - 0.1056264340877533, - 0.10424824059009552, - 0.1009409949183464, - 0.09774275869131088, - 0.09474077820777893, - 0.09201692044734955, - 0.08964550495147705, - 0.08769121766090393, - 0.08620735257863998, - 0.0852343887090683, - 0.0847988873720169, - 0.08491269499063492, - 0.08557271957397461, - 0.08676096796989441, - 0.0884450152516365, - 0.09057892858982086, - 0.0931045264005661, - 0.09595286846160889, - 0.09904628992080688, - 0.10230039805173874, - 0.10562644153833389, - 0.10424824059009552, - 0.08337534964084625, - 0.06309061497449875, - 0.04394735023379326, - 0.026467740535736084, - 0.011128559708595276, - -0.0016517490148544312, - -0.011524595320224762, - -0.01822066307067871, - -0.0215572789311409, - -0.02144346386194229, - -0.0178823322057724, - -0.01097097247838974, - -0.0008979365229606628, - 0.012061983346939087, - 0.02755531668663025, - 0.045159440487623215, - 0.06439414620399475, - 0.08473475277423859, - 0.10562644153833389, - 0.10424824804067612, - 0.06807266175746918, - 0.032902635633945465, - -0.0003024563193321228, - -0.030636899173259735, - -0.057273201644420624, - -0.07948484271764755, - -0.09666592627763748, - -0.10834779590368271, - -0.114211805164814, - -0.11409799009561539, - -0.10800947993993759, - -0.09611231833696365, - -0.07873105257749557, - -0.05633979290723801, - -0.029549308121204376, - 0.0009096339344978333, - 0.03420615941286087, - 0.06943206489086151, - 0.10562644898891449 - ], - "y": [ - 0.31910568475723267, - 0.36065295338630676, - 0.40115684270858765, - 0.43951255083084106, - 0.4746738076210022, - 0.5056815147399902, - 0.5316897630691528, - 0.5519893169403076, - 0.5660263299942017, - 0.5734179019927979, - 0.5739624500274658, - 0.5676450729370117, - 0.554638147354126, - 0.5352964401245117, - 0.5101475715637207, - 0.4798774719238281, - 0.44531184434890747, - 0.4073936343193054, - 0.36715707182884216, - 0.32569974660873413, - 0.31910568475723267, - 0.34711024165153503, - 0.3744408190250397, - 0.40035194158554077, - 0.42413684725761414, - 0.4451466500759125, - 0.46280837059020996, - 0.47664016485214233, - 0.48626476526260376, - 0.49141961336135864, - 0.4919641613960266, - 0.4878835082054138, - 0.4792889654636383, - 0.4664149880409241, - 0.44961270689964294, - 0.4293404817581177, - 0.4061512351036072, - 0.38067758083343506, - 0.35361436009407043, - 0.32569974660873413, - 0.31910568475723267, - 0.3305376470088959, - 0.3417477309703827, - 0.3524301052093506, - 0.36229345202445984, - 0.37106865644454956, - 0.37851637601852417, - 0.38443344831466675, - 0.3886585235595703, - 0.39107629656791687, - 0.39162081480026245, - 0.39027726650238037, - 0.3870822787284851, - 0.3821229934692383, - 0.37553468346595764, - 0.3674970865249634, - 0.3582294285297394, - 0.3479844927787781, - 0.33704179525375366, - 0.32569974660873413, - 0.31910568475723267, - 0.3127311170101166, - 0.30662035942077637, - 0.3009401261806488, - 0.2958453297615051, - 0.29147493839263916, - 0.2879481911659241, - 0.28536126017570496, - 0.2837847173213959, - 0.28326156735420227, - 0.28380611538887024, - 0.28540346026420593, - 0.2880100607872009, - 0.2915548086166382, - 0.29594096541404724, - 0.30104896426200867, - 0.3067394495010376, - 0.31285715103149414, - 0.31923526525497437, - 0.32569974660873413, - 0.31910568475723267, - 0.29562026262283325, - 0.272865355014801, - 0.2514617145061493, - 0.231993168592453, - 0.2149907350540161, - 0.2009182572364807, - 0.19015954434871674, - 0.183008074760437, - 0.1796589344739914, - 0.18020346760749817, - 0.18462681770324707, - 0.1928083449602127, - 0.20452484488487244, - 0.21945679187774658, - 0.23719680309295654, - 0.2572610378265381, - 0.2791021466255188, - 0.30212438106536865, - 0.32569974660873413, - 0.31910568475723267, - 0.28105926513671875, - 0.24414056539535522, - 0.2093566507101059, - 0.177656352519989, - 0.14990435540676117, - 0.12685763835906982, - 0.1091448962688446, - 0.09724929928779602, - 0.09149526059627533, - 0.0920397937297821, - 0.09886804223060608, - 0.11179369688034058, - 0.13046424090862274, - 0.15437035262584686, - 0.18285997211933136, - 0.2151559591293335, - 0.250377357006073, - 0.28756338357925415, - 0.32569974660873413, - 0.31910568475723267, - 0.2706260681152344, - 0.22355875372886658, - 0.17918765544891357, - 0.13872309029102325, - 0.10326884686946869, - 0.0737919807434082, - 0.05109652876853943, - 0.03580164909362793, - 0.028324514627456665, - 0.028869062662124634, - 0.03742039203643799, - 0.05374535918235779, - 0.07739855349063873, - 0.10773482918739319, - 0.1439267098903656, - 0.18498694896697998, - 0.22979553043842316, - 0.2771301865577698, - 0.32569974660873413, - 0.31910568475723267, - 0.26545125246047974, - 0.2133502960205078, - 0.16422401368618011, - 0.11941242218017578, - 0.08013787865638733, - 0.047471702098846436, - 0.02230486273765564, - 0.005323976278305054, - -0.003007829189300537, - -0.0024632811546325684, - 0.006942719221115112, - 0.024953693151474, - 0.05107828974723816, - 0.08460387587547302, - 0.12461602687835693, - 0.17002330720424652, - 0.2195870727300644, - 0.27195537090301514, - 0.32569974660873413, - 0.31910568475723267, - 0.2660956084728241, - 0.214621439576149, - 0.16608726978302002, - 0.12181694805622101, - 0.08301812410354614, - 0.0507490336894989, - 0.025889992713928223, - 0.009119004011154175, - 0.0008936226367950439, - 0.0014381706714630127, - 0.010737746953964233, - 0.028538823127746582, - 0.05435565114021301, - 0.08748410642147064, - 0.12702056765556335, - 0.17188656330108643, - 0.22085821628570557, - 0.2725997269153595, - 0.32569974660873413, - 0.31910568475723267, - 0.2724893093109131, - 0.22723442316055298, - 0.18457549810409546, - 0.1456761211156845, - 0.11159738898277283, - 0.08326888084411621, - 0.06146329641342163, - 0.0467754602432251, - 0.039606064558029175, - 0.040150612592697144, - 0.048394203186035156, - 0.06411212682723999, - 0.08687546849250793, - 0.11606340110301971, - 0.15087974071502686, - 0.19037479162216187, - 0.23347119987010956, - 0.2789934277534485, - 0.32569974660873413, - 0.31910568475723267, - 0.2839394807815552, - 0.2498224377632141, - 0.21768522262573242, - 0.1884044110774994, - 0.16277872025966644, - 0.14150716364383698, - 0.12516994774341583, - 0.11421272158622742, - 0.10893440246582031, - 0.10947893559932709, - 0.11583146452903748, - 0.1278187483549118, - 0.1451137512922287, - 0.16724473237991333, - 0.19360803067684174, - 0.22348453104496002, - 0.2560592293739319, - 0.2904435992240906, - 0.32569974660873413, - 0.31910568475723267, - 0.29920533299446106, - 0.279937744140625, - 0.2618284821510315, - 0.24537153542041779, - 0.23101580142974854, - 0.21915283799171448, - 0.21010631322860718, - 0.2041228860616684, - 0.2013658583164215, - 0.20191040635108948, - 0.20574162900447845, - 0.21275511384010315, - 0.2227594554424286, - 0.23548182845115662, - 0.2505751848220825, - 0.2676278054714203, - 0.2861745357513428, - 0.30570945143699646, - 0.32569974660873413, - 0.31910568475723267, - 0.31663256883621216, - 0.31431683897972107, - 0.3122216761112213, - 0.3104042410850525, - 0.30891406536102295, - 0.3077918589115143, - 0.3070681691169739, - 0.30676278471946716, - 0.3068839907646179, - 0.3074285387992859, - 0.3083815276622772, - 0.30971696972846985, - 0.311398446559906, - 0.3133801221847534, - 0.31560787558555603, - 0.3180209994316101, - 0.32055363059043884, - 0.32313668727874756, - 0.32569974660873413, - 0.31910568475723267, - 0.3343327045440674, - 0.34923428297042847, - 0.36340397596359253, - 0.37645524740219116, - 0.38803213834762573, - 0.39781883358955383, - 0.4055483341217041, - 0.41100987792015076, - 0.41405442357063293, - 0.4145989418029785, - 0.4126286208629608, - 0.4081971347332001, - 0.40142542123794556, - 0.3924981951713562, - 0.3816589117050171, - 0.36920326948165894, - 0.35547107458114624, - 0.3408368229866028, - 0.32569974660873413, - 0.31910568475723267, - 0.3503875732421875, - 0.3809061348438263, - 0.40982887148857117, - 0.43636685609817505, - 0.45979616045951843, - 0.47947776317596436, - 0.4948747754096985, - 0.5055671334266663, - 0.5112633109092712, - 0.5118078589439392, - 0.5071858763694763, - 0.49752354621887207, - 0.48308438062667847, - 0.4642622172832489, - 0.4415704905986786, - 0.4156281650066376, - 0.3871428966522217, - 0.3568916916847229, - 0.32569974660873413, - 0.31910568475723267, - 0.3630574643611908, - 0.4059002995491028, - 0.44646555185317993, - 0.4836466908454895, - 0.5164294838905334, - 0.5439198017120361, - 0.5653676390647888, - 0.5801880359649658, - 0.5879767537117004, - 0.5885213017463684, - 0.5818067789077759, - 0.5680164694786072, - 0.5475264191627502, - 0.5208956003189087, - 0.48885035514831543, - 0.45226484537124634, - 0.41213709115982056, - 0.3695616126060486, - 0.32569974660873413, - 0.31910568475723267, - 0.37096938490867615, - 0.4215083420276642, - 0.4693439304828644, - 0.513171374797821, - 0.5517951250076294, - 0.584161639213562, - 0.6093881130218506, - 0.6267863512039185, - 0.6358816623687744, - 0.6364262104034424, - 0.6284050941467285, - 0.612036943435669, - 0.5877682566642761, - 0.5562611818313599, - 0.518375039100647, - 0.4751432240009308, - 0.42774510383605957, - 0.37747350335121155, - 0.32569974660873413, - 0.31910568475723267, - 0.37326592206954956, - 0.42603880167007446, - 0.47598469257354736, - 0.5217413306236267, - 0.5620604753494263, - 0.5958423614501953, - 0.6221656203269958, - 0.6403120756149292, - 0.6497868299484253, - 0.6503313779830933, - 0.6419308185577393, - 0.6248144507408142, - 0.5994490385055542, - 0.5665265321731567, - 0.5269449949264526, - 0.48178398609161377, - 0.43227556347846985, - 0.37977007031440735, - 0.32569974660873413, - 0.31910568475723267, - 0.3696982264518738, - 0.4190007150173187, - 0.465668261051178, - 0.5084278583526611, - 0.5461131930351257, - 0.5776963233947754, - 0.6023156642913818, - 0.6192997694015503, - 0.6281851530075073, - 0.6287297010421753, - 0.6209185123443604, - 0.6049644947052002, - 0.5813028812408447, - 0.5505792498588562, - 0.5136315226554871, - 0.4714675545692444, - 0.4252374768257141, - 0.37620237469673157, - 0.32569974660873413, - 0.31910568475723267, - 0.3606529235839844, - 0.40115684270858765, - 0.4395125210285187, - 0.4746737778186798, - 0.5056814551353455, - 0.5316897630691528, - 0.5519893169403076, - 0.5660262703895569, - 0.5734178423881531, - 0.573962390422821, - 0.5676450133323669, - 0.5546380877494812, - 0.5352963805198669, - 0.5101475119590759, - 0.47987741231918335, - 0.44531184434890747, - 0.4073936343193054, - 0.36715707182884216, - 0.32569974660873413 - ], - "z": [ - -1.6272891759872437, - -1.6217310428619385, - -1.6168489456176758, - -1.6127760410308838, - -1.6096234321594238, - -1.607477068901062, - -1.6063956022262573, - -1.6064084768295288, - -1.6075153350830078, - -1.609686017036438, - -1.6128612756729126, - -1.6169545650482178, - -1.6218540668487549, - -1.627426266670227, - -1.633519172668457, - -1.639966607093811, - -1.646592617034912, - -1.6532164812088013, - -1.659657597541809, - -1.6657401323318481, - -1.6272891759872437, - -1.6244614124298096, - -1.6222352981567383, - -1.6206713914871216, - -1.6198124885559082, - -1.6196818351745605, - -1.6202832460403442, - -1.6216000318527222, - -1.6235965490341187, - -1.6262181997299194, - -1.629393458366394, - -1.633035659790039, - -1.6370456218719482, - -1.641313910484314, - -1.6457240581512451, - -1.6501556634902954, - -1.6544880867004395, - -1.6586028337478638, - -1.6623879671096802, - -1.6657401323318481, - -1.6272891759872437, - -1.6275267601013184, - -1.6282821893692017, - -1.6295349597930908, - -1.6312509775161743, - -1.6333833932876587, - -1.6358739137649536, - -1.6386545896530151, - -1.641649842262268, - -1.6447776556015015, - -1.647952914237976, - -1.6510889530181885, - -1.6541001796722412, - -1.6569045782089233, - -1.6594254970550537, - -1.661594271659851, - -1.6633516550064087, - -1.6646498441696167, - -1.665453314781189, - -1.6657401323318481, - -1.6272891759872437, - -1.6305946111679077, - -1.6343344449996948, - -1.6384063959121704, - -1.6426995992660522, - -1.6470967531204224, - -1.6514781713485718, - -1.655724048614502, - -1.6597188711166382, - -1.663353443145752, - -1.6665287017822266, - -1.6691579818725586, - -1.671169638633728, - -1.6725088357925415, - -1.673138976097107, - -1.6730427742004395, - -1.6722229719161987, - -1.6707019805908203, - -1.6685211658477783, - -1.6657401323318481, - -1.6272891759872437, - -1.6333328485488892, - -1.6397360563278198, - -1.6463241577148438, - -1.6529173851013184, - -1.6593360900878906, - -1.665405035018921, - -1.6709586381912231, - -1.6758455038070679, - -1.6799323558807373, - -1.683107614517212, - -1.6852847337722778, - -1.6864042282104492, - -1.6864356994628906, - -1.6853781938552856, - -1.6832606792449951, - -1.680140733718872, - -1.6761035919189453, - -1.6712594032287598, - -1.6657401323318481, - -1.6272891759872437, - -1.6354444026947021, - -1.6439017057418823, - -1.6524301767349243, - -1.660797357559204, - -1.668774962425232, - -1.676145315170288, - -1.68270742893219, - -1.6882823705673218, - -1.6927179098129272, - -1.6958931684494019, - -1.6977214813232422, - -1.698153018951416, - -1.6971760988235474, - -1.6948171854019165, - -1.6911406517028809, - -1.6862468719482422, - -1.6802693605422974, - -1.6733710765838623, - -1.6657401323318481, - -1.6272891759872437, - -1.6367007493972778, - -1.646380066871643, - -1.6560629606246948, - -1.6654855012893677, - -1.6743905544281006, - -1.682535171508789, - -1.6896973848342896, - -1.6956815719604492, - -1.700324535369873, - -1.7034997940063477, - -1.7051206827163696, - -1.7051429748535156, - -1.7035659551620483, - -1.7004327774047852, - -1.6958287954330444, - -1.6898796558380127, - -1.682747721672058, - -1.6746273040771484, - -1.6657401323318481, - -1.6272891759872437, - -1.6369656324386597, - -1.6469024419784546, - -1.656828761100769, - -1.6664737462997437, - -1.6755743026733398, - -1.683882236480713, - -1.6911708116531372, - -1.6972413063049316, - -1.7019281387329102, - -1.7051033973693848, - -1.706680417060852, - -1.7066164016723633, - -1.7049129009246826, - -1.7016165256500244, - -1.6968170404434204, - -1.690645456314087, - -1.6832700967788696, - -1.6748921871185303, - -1.6657401323318481, - -1.6272891759872437, - -1.6362102031707764, - -1.6454124450683594, - -1.6546446084976196, - -1.6636550426483154, - -1.6721980571746826, - -1.6800403594970703, - -1.686968207359314, - -1.692792534828186, - -1.6973546743392944, - -1.700529932975769, - -1.702231764793396, - -1.70241379737854, - -1.70107102394104, - -1.6982401609420776, - -1.6939983367919922, - -1.6884613037109375, - -1.6817799806594849, - -1.674136757850647, - -1.6657401323318481, - -1.6272891759872437, - -1.6345165967941284, - -1.64207124710083, - -1.6497471332550049, - -1.6573349237442017, - -1.6646274328231812, - -1.6714259386062622, - -1.6775449514389038, - -1.6828174591064453, - -1.687099814414978, - -1.6902750730514526, - -1.6922566890716553, - -1.6929905414581299, - -1.692456603050232, - -1.6906696557998657, - -1.6876780986785889, - -1.6835638284683228, - -1.6784389019012451, - -1.672443151473999, - -1.6657401323318481, - -1.6272891759872437, - -1.632068157196045, - -1.6372411251068115, - -1.6426670551300049, - -1.6481980085372925, - -1.653683066368103, - -1.6589725017547607, - -1.6639221906661987, - -1.668397068977356, - -1.6722749471664429, - -1.6754502058029175, - -1.6778361797332764, - -1.6793677806854248, - -1.68000328540802, - -1.679725170135498, - -1.6785413026809692, - -1.6764837503433228, - -1.6736087799072266, - -1.6699947118759155, - -1.6657401323318481, - -1.6272891759872437, - -1.629130244255066, - -1.6314454078674316, - -1.634171724319458, - -1.6372346878051758, - -1.6405508518218994, - -1.6440296173095703, - -1.6475762128829956, - -1.65109384059906, - -1.6544865369796753, - -1.65766179561615, - -1.6605329513549805, - -1.6630218029022217, - -1.66506028175354, - -1.6665929555892944, - -1.6675779819488525, - -1.6679884195327759, - -1.6678130626678467, - -1.6670567989349365, - -1.6657401323318481, - -1.6272891759872437, - -1.626021146774292, - -1.6253122091293335, - -1.6251816749572754, - -1.625632882118225, - -1.626653790473938, - -1.6282165050506592, - -1.63027822971344, - -1.6327829360961914, - -1.6356620788574219, - -1.6388373374938965, - -1.6422220468521118, - -1.645723819732666, - -1.649247169494629, - -1.6526960134506226, - -1.6559761762619019, - -1.6589982509613037, - -1.6616798639297485, - -1.6639478206634521, - -1.6657401323318481, - -1.6272891759872437, - -1.6230779886245728, - -1.6195061206817627, - -1.6166709661483765, - -1.6146498918533325, - -1.6134979724884033, - -1.6132466793060303, - -1.6139029264450073, - -1.6154485940933228, - -1.6178417205810547, - -1.6210169792175293, - -1.6248878240585327, - -1.6293485164642334, - -1.6342774629592896, - -1.639540195465088, - -1.6449931859970093, - -1.6504876613616943, - -1.6558737754821777, - -1.6610045433044434, - -1.6657401323318481, - -1.6272891759872437, - -1.620619535446167, - -1.6146563291549683, - -1.6095621585845947, - -1.605475902557373, - -1.6025090217590332, - -1.6007425785064697, - -1.6002246141433716, - -1.6009694337844849, - -1.6029565334320068, - -1.6061317920684814, - -1.6104085445404053, - -1.6156702041625977, - -1.6217732429504395, - -1.6285511255264282, - -1.6358190774917603, - -1.643378734588623, - -1.6510239839553833, - -1.6585460901260376, - -1.6657401323318481, - -1.6272891759872437, - -1.6189123392105103, - -1.6112884283065796, - -1.6046253442764282, - -1.599104881286621, - -1.5948777198791504, - -1.5920590162277222, - -1.5907257795333862, - -1.590914249420166, - -1.5926194190979004, - -1.595794677734375, - -1.600353479385376, - -1.6061713695526123, - -1.613089680671692, - -1.6209198236465454, - -1.6294481754302979, - -1.6384419202804565, - -1.647655963897705, - -1.6568388938903809, - -1.6657401323318481, - -1.6272891759872437, - -1.6181411743164062, - -1.609767198562622, - -1.6023956537246704, - -1.5962275266647339, - -1.5914310216903687, - -1.588137149810791, - -1.5864355564117432, - -1.5863728523254395, - -1.587950587272644, - -1.5911258459091187, - -1.5958119630813599, - -1.6018811464309692, - -1.6091678142547607, - -1.6174731254577637, - -1.626570701599121, - -1.6362122297286987, - -1.646134853363037, - -1.6560678482055664, - -1.6657401323318481, - -1.6272891759872437, - -1.6183898448944092, - -1.6102577447891235, - -1.6031146049499512, - -1.5971553325653076, - -1.5925424098968506, - -1.5894018411636353, - -1.58781898021698, - -1.5878373384475708, - -1.5894562005996704, - -1.592631459236145, - -1.5972764492034912, - -1.603264570236206, - -1.610432505607605, - -1.6185846328735352, - -1.6274986267089844, - -1.636931300163269, - -1.6466253995895386, - -1.6563163995742798, - -1.6657401323318481, - -1.6272891759872437, - -1.619631290435791, - -1.6127067804336548, - -1.6067044734954834, - -1.60178804397583, - -1.5980916023254395, - -1.5957159996032715, - -1.5947262048721313, - -1.5951489210128784, - -1.5969728231430054, - -1.60014808177948, - -1.6045880317687988, - -1.6101717948913574, - -1.6167467832565308, - -1.6241337060928345, - -1.6321312189102173, - -1.6405210494995117, - -1.6490744352340698, - -1.6575578451156616, - -1.6657401323318481, - -1.6272891759872437, - -1.6217310428619385, - -1.6168489456176758, - -1.6127760410308838, - -1.6096234321594238, - -1.607477068901062, - -1.6063956022262573, - -1.6064084768295288, - -1.6075153350830078, - -1.609686017036438, - -1.6128612756729126, - -1.6169545650482178, - -1.6218540668487549, - -1.627426266670227, - -1.633519172668457, - -1.639966607093811, - -1.646592617034912, - -1.6532164812088013, - -1.659657597541809, - -1.6657401323318481 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.08152935653924942, - 0.04473044350743294, - 0.008946515619754791, - -0.024846330285072327, - -0.05572632700204849, - -0.0828511044383049, - -0.10548082739114761, - -0.12299821525812149, - -0.13492539525032043, - -0.14093703031539917, - -0.1408691704273224, - -0.13472366333007812, - -0.12266809493303299, - -0.10503136366605759, - -0.08229454606771469, - -0.055077798664569855, - -0.02412356436252594, - 0.009723804891109467, - 0.045541051775217056, - 0.08235117048025131, - 0.08152936398983002, - 0.03310679644346237, - -0.013983726501464844, - -0.05845768004655838, - -0.0991019681096077, - -0.13480785489082336, - -0.16460144519805908, - -0.1876700222492218, - -0.20338433980941772, - -0.21131572127342224, - -0.21124783158302307, - -0.20318257808685303, - -0.1873399317264557, - -0.16415199637413025, - -0.13425129652023315, - -0.09845343977212906, - -0.05773491412401199, - -0.013206437230110168, - 0.03391740471124649, - 0.08235117793083191, - 0.08152936398983002, - 0.026731092482805252, - -0.026561222970485687, - -0.0768938884139061, - -0.12289398163557053, - -0.16330671310424805, - -0.19702976942062378, - -0.22314324975013733, - -0.24093487858772278, - -0.24991926550865173, - -0.24985137581825256, - -0.24073311686515808, - -0.22281315922737122, - -0.19658032059669495, - -0.16275015473365784, - -0.12224546819925308, - -0.07617112249135971, - -0.025783933699131012, - 0.02754170075058937, - 0.08235117793083191, - 0.08152936398983002, - 0.026294231414794922, - -0.02742302417755127, - -0.07815713435411453, - -0.12452421337366104, - -0.165259450674057, - -0.19925174117088318, - -0.2255738377571106, - -0.2435077726840973, - -0.25256434082984924, - -0.2524964511394501, - -0.2433060109615326, - -0.22524374723434448, - -0.19880226254463196, - -0.1647028923034668, - -0.1238756850361824, - -0.07743436843156815, - -0.026645734906196594, - 0.02710483968257904, - 0.08235117793083191, - 0.08152936398983002, - 0.03184356540441513, - -0.016475722193717957, - -0.062110476195812225, - -0.10381593555212021, - -0.14045441150665283, - -0.17102652788162231, - -0.19469839334487915, - -0.21082431077957153, - -0.21896430850028992, - -0.21889641880989075, - -0.21062254905700684, - -0.19436830282211304, - -0.1705770492553711, - -0.13989782333374023, - -0.10316740721464157, - -0.06138771027326584, - -0.01569843292236328, - 0.03265417367219925, - 0.08235117793083191, - 0.08152935653924942, - 0.04277773201465607, - 0.005094356834888458, - -0.030492864549160004, - -0.0630132183432579, - -0.09157959371805191, - -0.11541280895471573, - -0.13386276364326477, - -0.14642614126205444, - -0.1527603268623352, - -0.15269246697425842, - -0.14622440934181213, - -0.13353264331817627, - -0.11496333032846451, - -0.0910230204463005, - -0.06236470490694046, - -0.029770098626613617, - 0.0058716461062431335, - 0.043588340282440186, - 0.08235117048025131, - 0.08152935653924942, - 0.057911839336156845, - 0.034949757158756256, - 0.01326945424079895, - -0.006537698209285736, - -0.023931391537189484, - -0.03843717277050018, - -0.049659378826618195, - -0.0572919026017189, - -0.06112652271986008, - -0.061058662831783295, - -0.05709017068147659, - -0.049329258501529694, - -0.037987686693668365, - -0.023374803364276886, - -0.005889177322387695, - 0.013992220163345337, - 0.03572704643011093, - 0.058722443878650665, - 0.08235117048025131, - 0.08152934908866882, - 0.07560588419437408, - 0.06985519826412201, - 0.06443417072296143, - 0.05949065834283829, - 0.05515951290726662, - 0.05155887454748154, - 0.0487869568169117, - 0.046919383108615875, - 0.04600708186626434, - 0.04607494920492172, - 0.04712112993001938, - 0.0491170771420002, - 0.05200834572315216, - 0.05571608990430832, - 0.06013917922973633, - 0.06515692919492722, - 0.07063248753547668, - 0.0764164924621582, - 0.08235116302967072, - 0.08152934908866882, - 0.09394243359565735, - 0.10602812469005585, - 0.11745677143335342, - 0.1279166340827942, - 0.13712233304977417, - 0.1448228657245636, - 0.15080809593200684, - 0.15491479635238647, - 0.15703094005584717, - 0.15709879994392395, - 0.15511652827262878, - 0.15113821625709534, - 0.145272359251976, - 0.13767895102500916, - 0.12856514751911163, - 0.11817953735589981, - 0.10680541396141052, - 0.09475304186344147, - 0.08235116302967072, - 0.08152934163808823, - 0.11093443632125854, - 0.1395486444234848, - 0.16659145057201385, - 0.19132518768310547, - 0.213075190782547, - 0.2312481701374054, - 0.24534842371940613, - 0.254991352558136, - 0.2599138617515564, - 0.2599817216396332, - 0.2551930844783783, - 0.24567854404449463, - 0.231697678565979, - 0.21363180875778198, - 0.1919737309217453, - 0.16731421649456024, - 0.14032593369483948, - 0.11174504458904266, - 0.08235115557909012, - 0.08152933418750763, - 0.12474055588245392, - 0.16678428649902344, - 0.20651370286941528, - 0.2428450584411621, - 0.27478736639022827, - 0.3014692962169647, - 0.32216307520866394, - 0.3363042175769806, - 0.34350690245628357, - 0.34357479214668274, - 0.3365059792995453, - 0.32249319553375244, - 0.30191880464553833, - 0.27534398436546326, - 0.24349361658096313, - 0.20723646879196167, - 0.1675615757703781, - 0.12555116415023804, - 0.08235114812850952, - 0.08152933418750763, - 0.13386467099189758, - 0.18478363752365112, - 0.2328973114490509, - 0.27689328789711, - 0.3155713975429535, - 0.34787672758102417, - 0.3729279935359955, - 0.3900418281555176, - 0.39875146746635437, - 0.39881935715675354, - 0.3902435898780823, - 0.3732580840587616, - 0.3483262360095978, - 0.31612804532051086, - 0.2775418162345886, - 0.2336200773715973, - 0.185560941696167, - 0.1346752792596817, - 0.08235114812850952, - 0.08152933418750763, - 0.13731804490089417, - 0.19159621000289917, - 0.24288323521614075, - 0.2897801697254181, - 0.3310077488422394, - 0.3654414117336273, - 0.3921419680118561, - 0.4103809893131256, - 0.4196609556674957, - 0.4197288453578949, - 0.4105827510356903, - 0.3924720585346222, - 0.3658909499645233, - 0.33156436681747437, - 0.29042869806289673, - 0.24360600113868713, - 0.19237349927425385, - 0.13812865316867828, - 0.08235114812850952, - 0.08152933418750763, - 0.13472646474838257, - 0.1864837110042572, - 0.2353893220424652, - 0.2801092267036438, - 0.3194235563278198, - 0.352260023355484, - 0.3777228593826294, - 0.39511749148368835, - 0.4039694368839264, - 0.40403732657432556, - 0.39531925320625305, - 0.3780529499053955, - 0.3527095317840576, - 0.3199802041053772, - 0.28075775504112244, - 0.2361120879650116, - 0.18726101517677307, - 0.1355370730161667, - 0.08235114812850952, - 0.08152933418750763, - 0.12637075781822205, - 0.17000022530555725, - 0.2112276554107666, - 0.2489284873008728, - 0.2820742726325989, - 0.3097609579563141, - 0.33123326301574707, - 0.34590548276901245, - 0.35337749123573303, - 0.3534453809261322, - 0.34610724449157715, - 0.33156338334083557, - 0.3102104365825653, - 0.28263089060783386, - 0.24957701563835144, - 0.211950421333313, - 0.17077752947807312, - 0.12718136608600616, - 0.08235114812850952, - 0.08152934163808823, - 0.11315641552209854, - 0.14393198490142822, - 0.17301657795906067, - 0.19961686432361603, - 0.2230072319507599, - 0.24254965782165527, - 0.2577110826969147, - 0.26807790994644165, - 0.27336743474006653, - 0.2734352946281433, - 0.26827964186668396, - 0.2580412030220032, - 0.2429991364479065, - 0.22356382012367249, - 0.20026539266109467, - 0.17373934388160706, - 0.1447092741727829, - 0.11396701633930206, - 0.08235115557909012, - 0.08152934163808823, - 0.09651535749435425, - 0.11110379546880722, - 0.12489673495292664, - 0.13751792907714844, - 0.14862310886383057, - 0.1579093635082245, - 0.1651233732700348, - 0.17006835341453552, - 0.17260944843292236, - 0.17267730832099915, - 0.17027010023593903, - 0.1654534935951233, - 0.1583588421344757, - 0.14917972683906555, - 0.13816645741462708, - 0.12561950087547302, - 0.1118810772895813, - 0.09732596576213837, - 0.08235115557909012, - 0.08152934908866882, - 0.0782509446144104, - 0.07507318258285522, - 0.07208272814750671, - 0.06936116516590118, - 0.06698272377252579, - 0.06501229107379913, - 0.06350360810756683, - 0.062497809529304504, - 0.062022387981414795, - 0.062090251594781876, - 0.06269955635070801, - 0.06383372843265533, - 0.06546178460121155, - 0.06753931939601898, - 0.07000970095396042, - 0.0728054940700531, - 0.0758504644036293, - 0.07906155288219452, - 0.08235116302967072, - 0.08152935653924942, - 0.06034240871667862, - 0.03974459692835808, - 0.020297769457101822, - 0.0025324001908302307, - -0.01306694746017456, - -0.026074722409248352, - -0.03613617271184921, - -0.04297677427530289, - -0.046409957110881805, - -0.04634209722280502, - -0.042775027453899384, - -0.03580605238676071, - -0.02562524378299713, - -0.01251036673784256, - 0.0031809210777282715, - 0.02102053537964821, - 0.04052188619971275, - 0.06115300953388214, - 0.08235117048025131, - 0.08152935653924942, - 0.04473043605685234, - 0.008946500718593597, - -0.024846352636814117, - -0.05572635680437088, - -0.08285114914178848, - -0.10548085719347, - -0.12299825996160507, - -0.1349254548549652, - -0.14093706011772156, - -0.14086920022964478, - -0.1347237229347229, - -0.12266813963651657, - -0.10503140836954117, - -0.08229457587003708, - -0.05507782846689224, - -0.02412358671426773, - 0.009723789989948273, - 0.04554104432463646, - 0.08235117048025131 - ], - "y": [ - 0.30458346009254456, - 0.3468312919139862, - 0.38799694180488586, - 0.4269575774669647, - 0.4626504182815552, - 0.494101881980896, - 0.5204540491104126, - 0.5409880876541138, - 0.5551438927650452, - 0.562535285949707, - 0.5629607439041138, - 0.5564086437225342, - 0.5430576205253601, - 0.523271918296814, - 0.4975912570953369, - 0.46671611070632935, - 0.43148863315582275, - 0.3928698003292084, - 0.3519130051136017, - 0.3097354769706726, - 0.30458348989486694, - 0.3329846262931824, - 0.36068135499954224, - 0.3869181275367737, - 0.41097933053970337, - 0.4322085678577423, - 0.45002681016921997, - 0.46394795179367065, - 0.4735923409461975, - 0.47869691252708435, - 0.4791223704814911, - 0.4748570919036865, - 0.466017484664917, - 0.45284467935562134, - 0.43569791316986084, - 0.41504496335983276, - 0.3914491832256317, - 0.36555421352386475, - 0.33806636929512024, - 0.3097354769706726, - 0.30458348989486694, - 0.31606408953666687, - 0.32730183005332947, - 0.3379901051521301, - 0.3478374481201172, - 0.3565751612186432, - 0.3639649450778961, - 0.369805246591568, - 0.3739367127418518, - 0.37624669075012207, - 0.3766721487045288, - 0.3752014636993408, - 0.37187477946281433, - 0.3667828440666199, - 0.3600645065307617, - 0.3519030809402466, - 0.34252116084098816, - 0.3321746587753296, - 0.32114583253860474, - 0.3097354769706726, - 0.30458348989486694, - 0.29790326952934265, - 0.2914755344390869, - 0.28547561168670654, - 0.2800671458244324, - 0.27539774775505066, - 0.27159467339515686, - 0.2687617540359497, - 0.26697617769241333, - 0.2662867307662964, - 0.2667121887207031, - 0.26824092864990234, - 0.27083128690719604, - 0.2744125723838806, - 0.2788870930671692, - 0.28413280844688416, - 0.2900066673755646, - 0.29634836316108704, - 0.30298498272895813, - 0.3097354769706726, - 0.30458348989486694, - 0.2804701328277588, - 0.25708478689193726, - 0.23506537079811096, - 0.21501247584819794, - 0.19747310876846313, - 0.1829257309436798, - 0.17176708579063416, - 0.16430160403251648, - 0.1607329398393631, - 0.16115839779376984, - 0.1655663549900055, - 0.1738366186618805, - 0.18574360013008118, - 0.20096248388290405, - 0.21907810866832733, - 0.239596426486969, - 0.26195764541625977, - 0.28555187582969666, - 0.3097354769706726, - 0.30458348989486694, - 0.2656538784503937, - 0.22785642743110657, - 0.19222214818000793, - 0.15972307324409485, - 0.1312456876039505, - 0.10756674408912659, - 0.08933217823505402, - 0.07703939080238342, - 0.07102365791797638, - 0.07144911587238312, - 0.07830414175987244, - 0.09140171110630035, - 0.11038461327552795, - 0.13473500311374664, - 0.16378872096538544, - 0.19675320386886597, - 0.23272928595542908, - 0.27073562145233154, - 0.309735506772995, - 0.30458348989486694, - 0.2550600469112396, - 0.20695772767066956, - 0.1615886688232422, - 0.12019039690494537, - 0.08389216661453247, - 0.053684085607528687, - 0.030390113592147827, - 0.014645695686340332, - 0.006880313158035278, - 0.007305771112442017, - 0.015910446643829346, - 0.032459646463394165, - 0.056501924991607666, - 0.08738146722316742, - 0.12425602972507477, - 0.16611972451210022, - 0.21183058619499207, - 0.2601417899131775, - 0.309735506772995, - 0.30458348989486694, - 0.24983665347099304, - 0.19665344059467316, - 0.14648453891277313, - 0.10069842636585236, - 0.06054405868053436, - 0.027116715908050537, - 0.0013281404972076416, - -0.016118109226226807, - -0.024746179580688477, - -0.02432072162628174, - -0.014853358268737793, - 0.0033976733684539795, - 0.029934555292129517, - 0.0640333741903305, - 0.10476407408714294, - 0.15101559460163116, - 0.20152629911899567, - 0.2549183964729309, - 0.309735506772995, - 0.30458348989486694, - 0.2505497336387634, - 0.19806015491485596, - 0.14854653179645538, - 0.1033594161272049, - 0.06373150646686554, - 0.03074362874031067, - 0.005295664072036743, - -0.011918306350708008, - -0.020428568124771118, - -0.02000311017036438, - -0.010653555393218994, - 0.007365196943283081, - 0.03356146812438965, - 0.06722080707550049, - 0.10742507874965668, - 0.15307758748531342, - 0.20293301343917847, - 0.2556314766407013, - 0.309735506772995, - 0.30458348989486694, - 0.2571220397949219, - 0.21102546155452728, - 0.1675511747598648, - 0.12788505852222443, - 0.09310907125473022, - 0.06417183578014374, - 0.0418626070022583, - 0.02679002285003662, - 0.01936519145965576, - 0.0197906494140625, - 0.028054773807525635, - 0.04393213987350464, - 0.06698967516422272, - 0.09659838676452637, - 0.13195069134235382, - 0.17208223044872284, - 0.2158983200788498, - 0.26220375299453735, - 0.309735506772995, - 0.30458348989486694, - 0.26884132623672485, - 0.23414435982704163, - 0.2014390528202057, - 0.1716175526380539, - 0.1454932689666748, - 0.12377883493900299, - 0.10706649720668793, - 0.09581218659877777, - 0.09032291173934937, - 0.0907483696937561, - 0.09707693755626678, - 0.10913603007793427, - 0.12659667432308197, - 0.14898259937763214, - 0.1756831854581833, - 0.20597010850906372, - 0.23901721835136414, - 0.27392303943634033, - 0.309735506772995, - 0.30458348989486694, - 0.2844376266002655, - 0.2649115324020386, - 0.24653789401054382, - 0.22981780767440796, - 0.21520745754241943, - 0.20310527086257935, - 0.19384142756462097, - 0.1876685917377472, - 0.18475519120693207, - 0.1851806342601776, - 0.188933327794075, - 0.1959109604358673, - 0.2059231400489807, - 0.21869678795337677, - 0.23388347029685974, - 0.25106894969940186, - 0.2697843909263611, - 0.28951936960220337, - 0.3097354769706726, - 0.30458348989486694, - 0.3022208511829376, - 0.2999929189682007, - 0.297960489988327, - 0.2961789667606354, - 0.29469698667526245, - 0.2935549318790436, - 0.2927839756011963, - 0.2924051582813263, - 0.29242879152297974, - 0.2928542196750641, - 0.2936698794364929, - 0.2948535084724426, - 0.29637280106544495, - 0.298186331987381, - 0.30024462938308716, - 0.30249154567718506, - 0.3048657774925232, - 0.3073025941848755, - 0.3097354769706726, - 0.30458348989486694, - 0.32026392221450806, - 0.33558690547943115, - 0.3501344919204712, - 0.36350980401039124, - 0.3753480315208435, - 0.38532623648643494, - 0.3931722939014435, - 0.3986721336841583, - 0.4016757309436798, - 0.40210115909576416, - 0.39993685483932495, - 0.3952418267726898, - 0.3881441354751587, - 0.3788374066352844, - 0.367575466632843, - 0.35466551780700684, - 0.34045976400375366, - 0.3253456652164459, - 0.3097354769706726, - 0.30458346009254456, - 0.3366115689277649, - 0.36783626675605774, - 0.3974058926105499, - 0.4245138168334961, - 0.44842061400413513, - 0.46847420930862427, - 0.4841275215148926, - 0.49495357275009155, - 0.5006572008132935, - 0.5010826587677002, - 0.49621832370758057, - 0.4861970543861389, - 0.47129207849502563, - 0.45190998911857605, - 0.4285794794559479, - 0.40193694829940796, - 0.37270912528038025, - 0.34169331192970276, - 0.3097354769706726, - 0.30458346009254456, - 0.34949228167533875, - 0.3932463526725769, - 0.4346522092819214, - 0.4725803732872009, - 0.5059963464736938, - 0.5339885354042053, - 0.5557934045791626, - 0.570816159248352, - 0.5786471366882324, - 0.5790725946426392, - 0.5720809698104858, - 0.5578629374504089, - 0.5368064045906067, - 0.5094857215881348, - 0.4766460657119751, - 0.4391832649707794, - 0.3981192111968994, - 0.3545740246772766, - 0.3097354769706726, - 0.30458346009254456, - 0.3575102388858795, - 0.40906357765197754, - 0.4578372538089752, - 0.5025008320808411, - 0.5418359637260437, - 0.5747697949409485, - 0.600403904914856, - 0.6180390119552612, - 0.6271941661834717, - 0.6276196241378784, - 0.619303822517395, - 0.6024733781814575, - 0.5775876641273499, - 0.5453253984451294, - 0.5065665245056152, - 0.46236830949783325, - 0.41393643617630005, - 0.3625919818878174, - 0.3097354769706726, - 0.30458346009254456, - 0.35979658365249634, - 0.41357389092445374, - 0.4644485116004944, - 0.5110327005386353, - 0.5520557165145874, - 0.5863986015319824, - 0.6131246089935303, - 0.6315046548843384, - 0.6410374641418457, - 0.6414629220962524, - 0.6327694654464722, - 0.6151941418647766, - 0.5892164707183838, - 0.5555450916290283, - 0.5150983333587646, - 0.46897953748703003, - 0.41844674944877625, - 0.3648783266544342, - 0.3097354769706726, - 0.30458346009254456, - 0.3561035096645355, - 0.4062885046005249, - 0.4537695050239563, - 0.49725136160850525, - 0.5355480313301086, - 0.5676147937774658, - 0.5925770998001099, - 0.6097539067268372, - 0.6186767816543579, - 0.6191022396087646, - 0.6110186576843262, - 0.5946466326713562, - 0.570432722568512, - 0.5390374064445496, - 0.501317024230957, - 0.45830056071281433, - 0.4111613631248474, - 0.3611852526664734, - 0.3097354769706726, - 0.30458346009254456, - 0.3468312621116638, - 0.3879969120025635, - 0.42695754766464233, - 0.4626504182815552, - 0.494101881980896, - 0.5204539895057678, - 0.5409880876541138, - 0.5551438927650452, - 0.562535285949707, - 0.5629607439041138, - 0.5564086437225342, - 0.5430575609207153, - 0.523271918296814, - 0.4975912272930145, - 0.46671608090400696, - 0.43148860335350037, - 0.392869770526886, - 0.3519130051136017, - 0.3097354769706726 - ], - "z": [ - -1.6649802923202515, - -1.659276008605957, - -1.6541587114334106, - -1.6497678756713867, - -1.6462233066558838, - -1.6436219215393066, - -1.6420342922210693, - -1.6415040493011475, - -1.642045497894287, - -1.6436439752578735, - -1.6462557315826416, - -1.6498095989227295, - -1.6542086601257324, - -1.6593328714370728, - -1.665042519569397, - -1.6711817979812622, - -1.6775833368301392, - -1.6840723752975464, - -1.6904720067977905, - -1.6966077089309692, - -1.6649802923202515, - -1.661833643913269, - -1.659204125404358, - -1.6571635007858276, - -1.655767560005188, - -1.6550542116165161, - -1.6550428867340088, - -1.6557340621948242, - -1.6571089029312134, - -1.6591297388076782, - -1.6617414951324463, - -1.6648728847503662, - -1.6684386730194092, - -1.6723414659500122, - -1.6764748096466064, - -1.6807259321212769, - -1.68497896194458, - -1.6891177892684937, - -1.6930296421051025, - -1.6966077089309692, - -1.6649802923202515, - -1.6647555828094482, - -1.6649683713912964, - -1.665612816810608, - -1.6666713953018188, - -1.6681151390075684, - -1.6699048280715942, - -1.6719914674758911, - -1.6743181943893433, - -1.6768215894699097, - -1.6794333457946777, - -1.6820822954177856, - -1.6846959590911865, - -1.687203288078308, - -1.6895357370376587, - -1.6916297674179077, - -1.6934282779693604, - -1.6948820352554321, - -1.6959515810012817, - -1.6966077089309692, - -1.6649802923202515, - -1.6677253246307373, - -1.67082679271698, - -1.6742000579833984, - -1.6777533292770386, - -1.6813894510269165, - -1.6850093603134155, - -1.688514232635498, - -1.6918085813522339, - -1.6948025226593018, - -1.6974142789840698, - -1.6995726823806763, - -1.701218843460083, - -1.702307939529419, - -1.7028100490570068, - -1.7027117013931274, - -1.7020155191421509, - -1.7007404565811157, - -1.6989213228225708, - -1.6966077089309692, - -1.6649802923202515, - -1.6704208850860596, - -1.6761444807052612, - -1.6819947957992554, - -1.6878124475479126, - -1.6934386491775513, - -1.69871985912323, - -1.703512191772461, - -1.7076847553253174, - -1.7111238241195679, - -1.713735580444336, - -1.7154488563537598, - -1.7162166833877563, - -1.7160184383392334, - -1.7148592472076416, - -1.712770938873291, - -1.7098102569580078, - -1.706058144569397, - -1.701616883277893, - -1.6966077089309692, - -1.6649802923202515, - -1.6725503206253052, - -1.6803451776504517, - -1.6881523132324219, - -1.6957587003707886, - -1.7029569149017334, - -1.7095504999160767, - -1.7153598070144653, - -1.7202261686325073, - -1.7240169048309326, - -1.7266286611557007, - -1.7279902696609497, - -1.7280642986297607, - -1.72684907913208, - -1.7243775129318237, - -1.720717191696167, - -1.7159677743911743, - -1.7102588415145874, - -1.7037463188171387, - -1.6966077089309692, - -1.6649802923202515, - -1.6738827228546143, - -1.6829737424850464, - -1.6920052766799927, - -1.7007309198379517, - -1.7089128494262695, - -1.7163276672363281, - -1.7227733135223389, - -1.7280738353729248, - -1.7320846319198608, - -1.734696388244629, - -1.7358379364013672, - -1.7354779243469238, - -1.7336262464523315, - -1.7303334474563599, - -1.72568941116333, - -1.7198207378387451, - -1.7128874063491821, - -1.7050788402557373, - -1.6966077089309692, - -1.6649802923202515, - -1.6742738485336304, - -1.683745265007019, - -1.693136215209961, - -1.7021903991699219, - -1.7106610536575317, - -1.718316912651062, - -1.7249493598937988, - -1.7303773164749146, - -1.734452724456787, - -1.7370644807815552, - -1.738141417503357, - -1.7376539707183838, - -1.7356154918670654, - -1.732081651687622, - -1.7271488904953003, - -1.7209516763687134, - -1.7136590480804443, - -1.7054698467254639, - -1.6966077089309692, - -1.6649802923202515, - -1.6736812591552734, - -1.6825761795043945, - -1.6914225816726685, - -1.6999789476394653, - -1.7080121040344238, - -1.7153027057647705, - -1.7216521501541138, - -1.7268869876861572, - -1.7308645248413086, - -1.7334762811660767, - -1.7346510887145996, - -1.7343566417694092, - -1.732601284980774, - -1.7294327020645142, - -1.7249374389648438, - -1.719238042831421, - -1.7124899625778198, - -1.704877257347107, - -1.6966077089309692, - -1.6649802923202515, - -1.6721690893173218, - -1.6795932054519653, - -1.6870499849319458, - -1.694336175918579, - -1.7012529373168945, - -1.7076116800308228, - -1.7132389545440674, - -1.7179811000823975, - -1.72170889377594, - -1.724320650100708, - -1.7257452011108398, - -1.7259434461593628, - -1.7249102592468262, - -1.7226736545562744, - -1.7192946672439575, - -1.7148654460906982, - -1.709506869316101, - -1.7033650875091553, - -1.6966077089309692, - -1.6649802923202515, - -1.6699013710021973, - -1.6751195192337036, - -1.6804924011230469, - -1.6858736276626587, - -1.691116213798523, - -1.6960772275924683, - -1.7006213665008545, - -1.7046247720718384, - -1.7079780101776123, - -1.7105897665023804, - -1.7123887538909912, - -1.7133259773254395, - -1.7133758068084717, - -1.7125368118286133, - -1.7108319997787476, - -1.7083078622817993, - -1.7050331830978394, - -1.7010973691940308, - -1.6966077089309692, - -1.6649802923202515, - -1.6671236753463745, - -1.6696399450302124, - -1.6724604368209839, - -1.6755082607269287, - -1.6787002086639404, - -1.6819493770599365, - -1.6851669549942017, - -1.6882652044296265, - -1.691159725189209, - -1.693771481513977, - -1.6960293054580688, - -1.697871446609497, - -1.6992478370666504, - -1.7001208066940308, - -1.7004666328430176, - -1.7002758979797363, - -1.6995536088943481, - -1.698319673538208, - -1.6966077089309692, - -1.6649802923202515, - -1.6641371250152588, - -1.6637482643127441, - -1.6638243198394775, - -1.6643633842468262, - -1.6653505563735962, - -1.6667588949203491, - -1.6685502529144287, - -1.67067551612854, - -1.6730767488479614, - -1.6756885051727295, - -1.6784394979476929, - -1.6812547445297241, - -1.6840574741363525, - -1.6867711544036865, - -1.689321756362915, - -1.69163978099823, - -1.6936619281768799, - -1.6953331232070923, - -1.6966077089309692, - -1.6649802923202515, - -1.661265254020691, - -1.6580829620361328, - -1.6555200815200806, - -1.6536465883255005, - -1.6525137424468994, - -1.652152180671692, - -1.6525719165802002, - -1.6537615060806274, - -1.6556884050369263, - -1.6583002805709839, - -1.6615256071090698, - -1.6652765274047852, - -1.6694507598876953, - -1.6739343404769897, - -1.678605079650879, - -1.683335542678833, - -1.6879966259002686, - -1.6924612522125244, - -1.6966077089309692, - -1.6649802923202515, - -1.6588194370269775, - -1.6532578468322754, - -1.6484475135803223, - -1.6445194482803345, - -1.6415808200836182, - -1.6397119760513306, - -1.6389635801315308, - -1.639356255531311, - -1.6408792734146118, - -1.6434910297393799, - -1.6471203565597534, - -1.6516681909561157, - -1.6570104360580444, - -1.663001537322998, - -1.669477939605713, - -1.6762629747390747, - -1.6831716299057007, - -1.690015435218811, - -1.6966077089309692, - -1.6649802923202515, - -1.6570645570755005, - -1.6497960090637207, - -1.6433731317520142, - -1.6379709243774414, - -1.6337367296218872, - -1.6307862997055054, - -1.6291998624801636, - -1.6290208101272583, - -1.6302539110183716, - -1.6328656673431396, - -1.6367847919464111, - -1.6419044733047485, - -1.6480847597122192, - -1.655157446861267, - -1.6629292964935303, - -1.6711885929107666, - -1.679709792137146, - -1.688260555267334, - -1.6966077089309692, - -1.6649802923202515, - -1.6561908721923828, - -1.6480724811553955, - -1.6408467292785645, - -1.6347105503082275, - -1.6298314332962036, - -1.6263424158096313, - -1.6243387460708618, - -1.6238750219345093, - -1.6249638795852661, - -1.6275756359100342, - -1.6316391229629517, - -1.6370433568954468, - -1.6436409950256348, - -1.651252031326294, - -1.6596689224243164, - -1.6686620712280273, - -1.6779861450195312, - -1.6873868703842163, - -1.6966077089309692, - -1.6649802923202515, - -1.6562930345535278, - -1.6482739448547363, - -1.6411420106887817, - -1.635091781616211, - -1.630288004875183, - -1.6268620491027832, - -1.62490713596344, - -1.624476671218872, - -1.6255823373794556, - -1.6281942129135132, - -1.6322407722473145, - -1.6376116275787354, - -1.644160509109497, - -1.651708722114563, - -1.6600501537322998, - -1.6689574718475342, - -1.6781877279281616, - -1.6874890327453613, - -1.6966077089309692, - -1.6649802923202515, - -1.6573599576950073, - -1.650378704071045, - -1.6442272663116455, - -1.639073133468628, - -1.6350570917129517, - -1.6322886943817139, - -1.6308432817459106, - -1.6307604312896729, - -1.632042407989502, - -1.63465416431427, - -1.6385245323181152, - -1.6435478925704956, - -1.6495871543884277, - -1.6564778089523315, - -1.6640316247940063, - -1.672042727470398, - -1.6802924871444702, - -1.6885559558868408, - -1.6966077089309692, - -1.6649802923202515, - -1.659276008605957, - -1.6541587114334106, - -1.6497678756713867, - -1.6462233066558838, - -1.6436219215393066, - -1.6420342922210693, - -1.6415040493011475, - -1.642045497894287, - -1.6436439752578735, - -1.6462557315826416, - -1.6498095989227295, - -1.6542086601257324, - -1.6593328714370728, - -1.665042519569397, - -1.6711817979812622, - -1.6775833368301392, - -1.6840723752975464, - -1.6904720067977905, - -1.6966077089309692 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.06193837150931358, - 0.024631746113300323, - -0.011650964617729187, - -0.045920029282569885, - -0.0772407129406929, - -0.10475864261388779, - -0.12772321701049805, - -0.1455080211162567, - -0.1576279103755951, - -0.16375228762626648, - -0.16371414065361023, - -0.15751448273658752, - -0.14532241225242615, - -0.1274704933166504, - -0.10444571822881699, - -0.07687609642744064, - -0.045513659715652466, - -0.011213928461074829, - 0.02508750557899475, - 0.06240043789148331, - 0.06193837523460388, - 0.012811627238988876, - -0.034968771040439606, - -0.08009948581457138, - -0.12134949117898941, - -0.15759357810020447, - -0.18784308433532715, - -0.21127289533615112, - -0.22724395990371704, - -0.23532050848007202, - -0.23528236150741577, - -0.22713053226470947, - -0.21108728647232056, - -0.18759039044380188, - -0.15728062391281128, - -0.12098485976457596, - -0.07969310134649277, - -0.03453173488378525, - 0.013267386704683304, - 0.062400441616773605, - 0.06193837895989418, - 0.006315503269433975, - -0.04778384417295456, - -0.09888393431901932, - -0.1455909013748169, - -0.1866307258605957, - -0.22088390588760376, - -0.2474161684513092, - -0.26550373435020447, - -0.27465319633483887, - -0.2746150493621826, - -0.2653903067111969, - -0.24723055958747864, - -0.2206312119960785, - -0.1863178014755249, - -0.14522629976272583, - -0.0984775498509407, - -0.0473468080163002, - 0.006771262735128403, - 0.062400441616773605, - 0.06193837895989418, - 0.005847316235303879, - -0.048707447946071625, - -0.10023776441812515, - -0.14733803272247314, - -0.18872344493865967, - -0.22326523065567017, - -0.2500210702419281, - -0.268261194229126, - -0.27748796343803406, - -0.2774498164653778, - -0.2681477665901184, - -0.24983546137809753, - -0.2230125069618225, - -0.18841055035591125, - -0.14697343111038208, - -0.09983137995004654, - -0.04827041178941727, - 0.006303075700998306, - 0.062400441616773605, - 0.06193837523460388, - 0.011457804590463638, - -0.03763950616121292, - -0.08401427417993546, - -0.12640154361724854, - -0.16364505887031555, - -0.19472894072532654, - -0.21880537271499634, - -0.23521748185157776, - -0.24351763725280762, - -0.24347949028015137, - -0.2351040542125702, - -0.21861976385116577, - -0.19447624683380127, - -0.16333210468292236, - -0.12603691220283508, - -0.08360788971185684, - -0.03720247000455856, - 0.011913564056158066, - 0.062400441616773605, - 0.06193837523460388, - 0.022538989782333374, - -0.015779390931129456, - -0.051971517503261566, - -0.08505020290613174, - -0.11411308497190475, - -0.1383674442768097, - -0.1571516990661621, - -0.16995343565940857, - -0.17642349004745483, - -0.17638534307479858, - -0.169840008020401, - -0.15696609020233154, - -0.13811472058296204, - -0.11380016058683395, - -0.08468558639287949, - -0.05156514793634415, - -0.015342354774475098, - 0.0229947492480278, - 0.06240043789148331, - 0.061938367784023285, - 0.03789004683494568, - 0.01450398936867714, - -0.007581852376461029, - -0.027765095233917236, - -0.04549515247344971, - -0.06028836965560913, - -0.07174130529165268, - -0.07954148203134537, - -0.08347613364458084, - -0.08343798667192459, - -0.0794280543923378, - -0.07155569642782211, - -0.06003565341234207, - -0.04518219828605652, - -0.027400478720664978, - -0.00717548280954361, - 0.0149410180747509, - 0.038345806300640106, - 0.06240043416619301, - 0.061938364058732986, - 0.05584745481610298, - 0.04992898181080818, - 0.04434441030025482, - 0.039246052503585815, - 0.03477299585938454, - 0.03104722872376442, - 0.028170380741357803, - 0.026220954954624176, - 0.0252520889043808, - 0.025290243327617645, - 0.026334382593631744, - 0.02835598960518837, - 0.03129992261528969, - 0.03508591651916504, - 0.03961068391799927, - 0.04475078731775284, - 0.05036601051688194, - 0.05630321800708771, - 0.06240043044090271, - 0.06193836033344269, - 0.07446525245904922, - 0.08665673434734344, - 0.09818027913570404, - 0.1087215393781662, - 0.11799295991659164, - 0.12574169039726257, - 0.13175630569458008, - 0.13587278127670288, - 0.13797882199287415, - 0.1380169689655304, - 0.13598620891571045, - 0.13194191455841064, - 0.12599441409111023, - 0.11830591410398483, - 0.10908615589141846, - 0.09858664870262146, - 0.0870937705039978, - 0.07492101192474365, - 0.06240042299032211, - 0.06193835660815239, - 0.0917259007692337, - 0.12070722132921219, - 0.14809179306030273, - 0.17313261330127716, - 0.1951466202735901, - 0.2135334014892578, - 0.22779136896133423, - 0.23753157258033752, - 0.24248835444450378, - 0.24252650141716003, - 0.2376450002193451, - 0.2279769778251648, - 0.21378615498542786, - 0.19545960426330566, - 0.1734972596168518, - 0.14849814772605896, - 0.12114425003528595, - 0.09218166768550873, - 0.062400419265031815, - 0.06193835288286209, - 0.10575895756483078, - 0.148390531539917, - 0.18867024779319763, - 0.22549936175346375, - 0.25787320733070374, - 0.28490880131721497, - 0.30586865544319153, - 0.3201810121536255, - 0.3274554908275604, - 0.3274936378002167, - 0.32029443979263306, - 0.3060542643070221, - 0.285161554813385, - 0.2581861913204193, - 0.2258639931678772, - 0.18907663226127625, - 0.14882758259773254, - 0.10621471703052521, - 0.062400415539741516, - 0.06193834915757179, - 0.11504371464252472, - 0.16670678555965424, - 0.21551835536956787, - 0.26014700531959534, - 0.2993752658367157, - 0.3321332335472107, - 0.3575272858142853, - 0.37486472725868225, - 0.38367265462875366, - 0.3837108016014099, - 0.3749781548976898, - 0.35771289467811584, - 0.33238598704338074, - 0.2996882498264313, - 0.2605116367340088, - 0.21592473983764648, - 0.1671438217163086, - 0.11549946665763855, - 0.06240041181445122, - 0.06193834915757179, - 0.11857401579618454, - 0.17367111146450043, - 0.22572672367095947, - 0.2733209431171417, - 0.3151554763317108, - 0.3500891923904419, - 0.37716928124427795, - 0.395656943321228, - 0.4050479233264923, - 0.40508607029914856, - 0.3957703709602356, - 0.3773548901081085, - 0.35034194588661194, - 0.3154684603214264, - 0.2736855745315552, - 0.22613310813903809, - 0.17410814762115479, - 0.11902977526187897, - 0.06240041181445122, - 0.06193834915757179, - 0.11596731096506119, - 0.16852879524230957, - 0.2181890904903412, - 0.26359355449676514, - 0.30350369215011597, - 0.33683088421821594, - 0.3626660406589508, - 0.38030439615249634, - 0.389264851808548, - 0.3893029987812042, - 0.3804178237915039, - 0.36285164952278137, - 0.337083637714386, - 0.30381667613983154, - 0.263958215713501, - 0.2185954749584198, - 0.16896584630012512, - 0.11642307043075562, - 0.06240041181445122, - 0.06193834915757179, - 0.10750608146190643, - 0.15183714032173157, - 0.19372227787971497, - 0.23201903700828552, - 0.2656826972961426, - 0.29379504919052124, - 0.3155893087387085, - 0.33047088980674744, - 0.3380339443683624, - 0.3380720913410187, - 0.330584317445755, - 0.31577491760253906, - 0.2940478026866913, - 0.26599568128585815, - 0.23238369822502136, - 0.19412866234779358, - 0.15227416157722473, - 0.10796183347702026, - 0.062400415539741516, - 0.06193835288286209, - 0.09410722553730011, - 0.12540490925312042, - 0.1549777090549469, - 0.1820189356803894, - 0.20579096674919128, - 0.22564539313316345, - 0.24104058742523193, - 0.2515566647052765, - 0.25690677762031555, - 0.2569449245929718, - 0.25167009234428406, - 0.2412261962890625, - 0.2258981168270111, - 0.20610392093658447, - 0.18238356709480286, - 0.15538406372070312, - 0.12584194540977478, - 0.09456298500299454, - 0.062400419265031815, - 0.06193836033344269, - 0.07722268998622894, - 0.09209641814231873, - 0.10615380853414536, - 0.11901143193244934, - 0.1303185075521469, - 0.13976670801639557, - 0.14709821343421936, - 0.15211312472820282, - 0.15467455983161926, - 0.1547127366065979, - 0.1522265523672104, - 0.14728382229804993, - 0.14001943171024323, - 0.1306314766407013, - 0.11937606334686279, - 0.10656018555164337, - 0.09253344684839249, - 0.07767845690250397, - 0.06240042299032211, - 0.061938364058732986, - 0.05868221074342728, - 0.05552118644118309, - 0.05254150182008743, - 0.04982444643974304, - 0.04744412377476692, - 0.045465461909770966, - 0.04394245147705078, - 0.04291661083698273, - 0.04241596534848213, - 0.04245412349700928, - 0.043030038475990295, - 0.04412806034088135, - 0.045718200504779816, - 0.047757066786289215, - 0.05018908530473709, - 0.05294787511229515, - 0.05595821514725685, - 0.059137973934412, - 0.06240043044090271, - 0.061938367784023285, - 0.040494922548532486, - 0.019642706960439682, - -0.00004949793219566345, - -0.018044523894786835, - -0.03385153412818909, - -0.04703933000564575, - -0.05724821984767914, - -0.06419970840215683, - -0.06770413368940353, - -0.06766598671674728, - -0.06408628076314926, - -0.05706261098384857, - -0.04678662121295929, - -0.03353860229253769, - -0.017679907381534576, - 0.0003568790853023529, - 0.020079735666513443, - 0.04095068573951721, - 0.06240043416619301, - 0.06193837150931358, - 0.024631738662719727, - -0.01165097951889038, - -0.045920051634311676, - -0.07724074274301529, - -0.10475868731737137, - -0.12772324681282043, - -0.1455080509185791, - -0.15762796998023987, - -0.16375234723091125, - -0.163714200258255, - -0.1575145423412323, - -0.14532244205474854, - -0.12747052311897278, - -0.10444574803113937, - -0.07687612622976303, - -0.04551368206739426, - -0.011213943362236023, - 0.025087498128414154, - 0.06240043789148331 - ], - "y": [ - 0.29182127118110657, - 0.33464187383651733, - 0.3763505816459656, - 0.4158095717430115, - 0.4519426226615906, - 0.48376408219337463, - 0.5104058980941772, - 0.531141459941864, - 0.5454050302505493, - 0.552807629108429, - 0.5531472563743591, - 0.5464147329330444, - 0.5327936410903931, - 0.5126555562019348, - 0.4865497946739197, - 0.4551883935928345, - 0.41942688822746277, - 0.3802407383918762, - 0.3386988341808319, - 0.2959343194961548, - 0.29182127118110657, - 0.3205457627773285, - 0.34854280948638916, - 0.3750487267971039, - 0.39934054017066956, - 0.4207555651664734, - 0.43870970606803894, - 0.4527132511138916, - 0.4623841345310211, - 0.4674586057662964, - 0.46779826283454895, - 0.46339383721351624, - 0.45436543226242065, - 0.4409593343734741, - 0.42354124784469604, - 0.40258628129959106, - 0.3786660432815552, - 0.3524329662322998, - 0.3246026933193207, - 0.2959343194961548, - 0.29182130098342896, - 0.3033399283885956, - 0.31460046768188477, - 0.32529574632644653, - 0.33513402938842773, - 0.3438469469547272, - 0.35119685530662537, - 0.3569832146167755, - 0.36104825139045715, - 0.3632810413837433, - 0.36362069845199585, - 0.3620579242706299, - 0.35863539576530457, - 0.35344645380973816, - 0.34663262963294983, - 0.33837980031967163, - 0.3289130628108978, - 0.3184906542301178, - 0.30739685893058777, - 0.2959343194961548, - 0.29182130098342896, - 0.2848889231681824, - 0.27820172905921936, - 0.271942138671875, - 0.2662809193134308, - 0.26137247681617737, - 0.2573506534099579, - 0.2543252110481262, - 0.2523786723613739, - 0.2515641152858734, - 0.251903772354126, - 0.25338834524154663, - 0.2559773921966553, - 0.25960028171539307, - 0.26415812969207764, - 0.2695266902446747, - 0.2755594551563263, - 0.2820919156074524, - 0.28894585371017456, - 0.2959343194961548, - 0.29182130098342896, - 0.26719218492507935, - 0.2432909607887268, - 0.22076961398124695, - 0.20024247467517853, - 0.18226948380470276, - 0.16734085977077484, - 0.15586382150650024, - 0.1481514424085617, - 0.14441414177417755, - 0.14475379884243011, - 0.14916114509105682, - 0.1575160026550293, - 0.16959047317504883, - 0.18505516648292542, - 0.20348823070526123, - 0.22438693046569824, - 0.24718113243579865, - 0.27124911546707153, - 0.2959343194961548, - 0.29182130098342896, - 0.25216740369796753, - 0.21365128457546234, - 0.17732352018356323, - 0.14417503774166107, - 0.11511006951332092, - 0.09092143177986145, - 0.07226890325546265, - 0.059661269187927246, - 0.05344246327877045, - 0.05378212034702301, - 0.06067097187042236, - 0.0739210844039917, - 0.09317104518413544, - 0.11789572238922119, - 0.14742079377174377, - 0.18094080686569214, - 0.21754145622253418, - 0.2562243640422821, - 0.2959343492984772, - 0.29182130098342896, - 0.24144281446933746, - 0.19249460101127625, - 0.14631186425685883, - 0.10415433347225189, - 0.06717199087142944, - 0.03637361526489258, - 0.012599170207977295, - -0.00350266695022583, - -0.011492669582366943, - -0.011153042316436768, - -0.002492964267730713, - 0.014251351356506348, - 0.038623154163360596, - 0.06995764374732971, - 0.1074000895023346, - 0.14992918074131012, - 0.19638477265834808, - 0.24549974501132965, - 0.2959343492984772, - 0.29182130098342896, - 0.23618054389953613, - 0.18211360275745392, - 0.131095290184021, - 0.08451725542545319, - 0.04365009069442749, - 0.009608447551727295, - -0.016679108142852783, - -0.03449547290802002, - -0.04335463047027588, - -0.0430150032043457, - -0.0334857702255249, - -0.01502692699432373, - 0.0118580162525177, - 0.04643569886684418, - 0.0877629965543747, - 0.1347126066684723, - 0.18600377440452576, - 0.24023747444152832, - 0.2959343492984772, - 0.29182130098342896, - 0.2369508445262909, - 0.18363319337368011, - 0.13332273066043854, - 0.08739177882671356, - 0.04709325730800629, - 0.013526380062103271, - -0.012393295764923096, - -0.029958665370941162, - -0.03869059681892395, - -0.038350969552993774, - -0.028948962688446045, - -0.010741114616394043, - 0.015775948762893677, - 0.049878910183906555, - 0.09063753485679626, - 0.13694004714488983, - 0.18752336502075195, - 0.24100777506828308, - 0.2959343492984772, - 0.29182130098342896, - 0.2436702400445938, - 0.19688871502876282, - 0.1527528017759323, - 0.11246639490127563, - 0.07712845504283905, - 0.04770283401012421, - 0.02499222755432129, - 0.009616106748580933, - 0.0019939541816711426, - 0.0023335814476013184, - 0.01062580943107605, - 0.026644408702850342, - 0.04995244741439819, - 0.07991409301757812, - 0.11571215093135834, - 0.1563701182603836, - 0.20077890157699585, - 0.2477271854877472, - 0.2959343492984772, - 0.29182130098342896, - 0.2556106150150299, - 0.2204437553882599, - 0.18727996945381165, - 0.15702389180660248, - 0.13050086796283722, - 0.10843430459499359, - 0.09142616391181946, - 0.07994037866592407, - 0.07429026067256927, - 0.07462991774082184, - 0.08095008134841919, - 0.09307834506034851, - 0.11068391799926758, - 0.1332865208387375, - 0.16026966273784637, - 0.19089727103710175, - 0.22433391213417053, - 0.2596675455570221, - 0.2959343492984772, - 0.29182130098342896, - 0.27147799730300903, - 0.25174570083618164, - 0.23316267132759094, - 0.21623578667640686, - 0.20142677426338196, - 0.18913957476615906, - 0.17970937490463257, - 0.1733933836221695, - 0.1703638881444931, - 0.17070354521274567, - 0.17440307140350342, - 0.18136155605316162, - 0.19138917326927185, - 0.20421244204044342, - 0.21948152780532837, - 0.23677997291088104, - 0.2556358873844147, - 0.2755349278450012, - 0.2959343194961548, - 0.29182130098342896, - 0.2895529270172119, - 0.28740254044532776, - 0.2854287922382355, - 0.28368550539016724, - 0.2822202146053314, - 0.2810729444026947, - 0.2802749574184418, - 0.27984800934791565, - 0.2798037528991699, - 0.2801433801651001, - 0.2808576822280884, - 0.2819271385669708, - 0.2833225429058075, - 0.28500592708587646, - 0.28693127632141113, - 0.28904610872268677, - 0.2912927269935608, - 0.2936098873615265, - 0.2959343194961548, - 0.29182130098342896, - 0.30787673592567444, - 0.32355034351348877, - 0.3384145498275757, - 0.3520638942718506, - 0.3641261160373688, - 0.37427210807800293, - 0.3822251558303833, - 0.38776835799217224, - 0.3907504081726074, - 0.3910900950431824, - 0.38877803087234497, - 0.38387733697891235, - 0.3765217363834381, - 0.36691179871559143, - 0.3553096652030945, - 0.342031866312027, - 0.3274405300617218, - 0.311933696269989, - 0.2959343194961548, - 0.29182127118110657, - 0.32446369528770447, - 0.3562718331813812, - 0.3863779902458191, - 0.4139609932899475, - 0.4382684528827667, - 0.4586372971534729, - 0.47451192140579224, - 0.4854593276977539, - 0.4911809265613556, - 0.49152058362960815, - 0.486469030380249, - 0.4761641025543213, - 0.4608869254589081, - 0.44105416536331177, - 0.4172067642211914, - 0.389995276927948, - 0.36016198992729187, - 0.32852065563201904, - 0.2959343194961548, - 0.29182127118110657, - 0.3375163972377777, - 0.3820211887359619, - 0.424121618270874, - 0.46266937255859375, - 0.49661290645599365, - 0.5250263810157776, - 0.5471346974372864, - 0.5623348355293274, - 0.570212185382843, - 0.5705518126487732, - 0.5633445382118225, - 0.5487868785858154, - 0.5272760391235352, - 0.4993986189365387, - 0.46591514348983765, - 0.4277389347553253, - 0.38591134548187256, - 0.3415733277797699, - 0.2959343194961548, - 0.29182127118110657, - 0.34562036395072937, - 0.3980080783367157, - 0.4475553631782532, - 0.4929107427597046, - 0.5328369736671448, - 0.5662450790405273, - 0.5922237634658813, - 0.6100642681121826, - 0.6192799806594849, - 0.619619607925415, - 0.6110739707946777, - 0.5938758850097656, - 0.5684946775436401, - 0.5356227159500122, - 0.4961565136909485, - 0.45117267966270447, - 0.40189826488494873, - 0.34967732429504395, - 0.2959343194961548, - 0.29182127118110657, - 0.34789741039276123, - 0.40250006318092346, - 0.45413973927497864, - 0.5014079213142395, - 0.54301518201828, - 0.5778266191482544, - 0.6048927307128906, - 0.623475193977356, - 0.6330670118331909, - 0.6334066390991211, - 0.6244848966598511, - 0.6065449714660645, - 0.580076277256012, - 0.5458009243011475, - 0.5046536922454834, - 0.45775705575942993, - 0.4063902199268341, - 0.3519543707370758, - 0.2959343194961548, - 0.29182127118110657, - 0.3441007733345032, - 0.3950103223323822, - 0.4431612193584442, - 0.4872400760650635, - 0.526044487953186, - 0.5585160255432129, - 0.5837689638137817, - 0.6011143326759338, - 0.6100791692733765, - 0.6104187965393066, - 0.602124035358429, - 0.585421085357666, - 0.5607656240463257, - 0.5288302302360535, - 0.4904858469963074, - 0.4467785358428955, - 0.39890050888061523, - 0.34815770387649536, - 0.2959343194961548, - 0.29182127118110657, - 0.33464187383651733, - 0.3763505518436432, - 0.4158095717430115, - 0.4519426226615906, - 0.48376405239105225, - 0.5104058980941772, - 0.5311414003372192, - 0.5454050302505493, - 0.5528075695037842, - 0.5531471967697144, - 0.5464147329330444, - 0.5327935814857483, - 0.51265549659729, - 0.4865497648715973, - 0.4551883935928345, - 0.4194268584251404, - 0.3802407383918762, - 0.3386988043785095, - 0.2959343194961548 - ], - "z": [ - -1.6957752704620361, - -1.6899542808532715, - -1.6846530437469482, - -1.6800159215927124, - -1.676169514656067, - -1.6732187271118164, - -1.6712440252304077, - -1.6702992916107178, - -1.6704102754592896, - -1.6715739965438843, - -1.673758625984192, - -1.6769046783447266, - -1.6809263229370117, - -1.685713768005371, - -1.6911364793777466, - -1.6970466375350952, - -1.7032828330993652, - -1.7096750736236572, - -1.7160489559173584, - -1.7222306728363037, - -1.6957752704620361, - -1.692352294921875, - -1.6893835067749023, - -1.6869499683380127, - -1.6851179599761963, - -1.683937430381775, - -1.6834406852722168, - -1.6836411952972412, - -1.6845334768295288, - -1.6860932111740112, - -1.6882778406143188, - -1.6910278797149658, - -1.6942682266235352, - -1.6979104280471802, - -1.7018553018569946, - -1.7059950828552246, - -1.7102168798446655, - -1.7144056558609009, - -1.718446969985962, - -1.7222306728363037, - -1.6957752704620361, - -1.6951407194137573, - -1.6948844194412231, - -1.695013165473938, - -1.6955235004425049, - -1.696401596069336, - -1.697623372077942, - -1.699155569076538, - -1.7009563446044922, - -1.7029767036437988, - -1.7051613330841064, - -1.7074507474899292, - -1.709782600402832, - -1.7120931148529053, - -1.7143193483352661, - -1.7164006233215332, - -1.7182800769805908, - -1.7199064493179321, - -1.7212353944778442, - -1.7222306728363037, - -1.6957752704620361, - -1.6980174779891968, - -1.700559377670288, - -1.703331708908081, - -1.7062586545944214, - -1.7092604637145996, - -1.7122552394866943, - -1.7151613235473633, - -1.7178993225097656, - -1.7203947305679321, - -1.7225794792175293, - -1.7243938446044922, - -1.7257883548736572, - -1.7267249822616577, - -1.7271782159805298, - -1.7271357774734497, - -1.7265986204147339, - -1.7255815267562866, - -1.7241121530532837, - -1.7222306728363037, - -1.6957752704620361, - -1.700670838356018, - -1.7057937383651733, - -1.7110041379928589, - -1.7161599397659302, - -1.7211204767227173, - -1.7257505655288696, - -1.7299238443374634, - -1.7335264682769775, - -1.7364600896835327, - -1.7386447191238403, - -1.7400208711624146, - -1.7405508756637573, - -1.7402204275131226, - -1.739038348197937, - -1.7370370626449585, - -1.7342710494995117, - -1.7308157682418823, - -1.726765513420105, - -1.7222306728363037, - -1.6957752704620361, - -1.7028131484985352, - -1.7100199460983276, - -1.7171989679336548, - -1.7241544723510742, - -1.730696678161621, - -1.736647129058838, - -1.7418434619903564, - -1.7461440563201904, - -1.7494316101074219, - -1.7516162395477295, - -1.752638578414917, - -1.75247061252594, - -1.7511168718338013, - -1.7486145496368408, - -1.7450315952301025, - -1.7404658794403076, - -1.7350419759750366, - -1.728907823562622, - -1.7222306728363037, - -1.6957752704620361, - -1.7042124271392822, - -1.712780237197876, - -1.7212450504302979, - -1.729375958442688, - -1.7369511127471924, - -1.7437639236450195, - -1.7496285438537598, - -1.7543851137161255, - -1.7579035758972168, - -1.760088324546814, - -1.7608795166015625, - -1.7602556943893433, - -1.7582337856292725, - -1.754868984222412, - -1.7502530813217163, - -1.7445119619369507, - -1.7378023862838745, - -1.7303071022033691, - -1.7222306728363037, - -1.6957752704620361, - -1.7047169208526611, - -1.7137755155563354, - -1.7227039337158203, - -1.731258511543274, - -1.7392061948776245, - -1.7463299036026, - -1.7524354457855225, - -1.7573562860488892, - -1.760958194732666, - -1.7631428241729736, - -1.7638506889343262, - -1.7630624771118164, - -1.7607996463775635, - -1.7571239471435547, - -1.7521356344223022, - -1.7459708452224731, - -1.7387975454330444, - -1.730811595916748, - -1.7222306728363037, - -1.6957752704620361, - -1.704271912574768, - -1.712897777557373, - -1.7214173078536987, - -1.7295981645584106, - -1.7372173070907593, - -1.744066834449768, - -1.749959945678711, - -1.7547358274459839, - -1.758264183998108, - -1.760448932647705, - -1.761230230331421, - -1.7605869770050049, - -1.758536696434021, - -1.755135178565979, - -1.750475287437439, - -1.7446842193603516, - -1.737919807434082, - -1.730366587638855, - -1.7222306728363037, - -1.6957752704620361, - -1.7029258012771606, - -1.7102421522140503, - -1.717524766921997, - -1.7245749235153198, - -1.7312002182006836, - -1.737220048904419, - -1.7424702644348145, - -1.74680757522583, - -1.750113606452942, - -1.752298355102539, - -1.753301978111267, - -1.7530972957611084, - -1.7516899108886719, - -1.7491180896759033, - -1.7454520463943481, - -1.74079167842865, - -1.7352643013000488, - -1.7290204763412476, - -1.7222306728363037, - -1.6957752704620361, - -1.7008243799209595, - -1.7060965299606323, - -1.711448073387146, - -1.7167328596115112, - -1.7218068838119507, - -1.7265315055847168, - -1.7307780981063843, - -1.7344307899475098, - -1.7373896837234497, - -1.7395744323730469, - -1.7409251928329468, - -1.7414052486419678, - -1.7410013675689697, - -1.7397246360778809, - -1.7376099824905396, - -1.7347149848937988, - -1.7311186790466309, - -1.7269190549850464, - -1.7222306728363037, - -1.6957752704620361, - -1.6981953382492065, - -1.700910210609436, - -1.703845739364624, - -1.7069220542907715, - -1.7100551128387451, - -1.7131595611572266, - -1.7161505222320557, - -1.7189464569091797, - -1.7214713096618652, - -1.7236559391021729, - -1.7254409790039062, - -1.7267775535583496, - -1.72762930393219, - -1.7279729843139648, - -1.7277991771697998, - -1.7271127700805664, - -1.725932240486145, - -1.7242900133132935, - -1.7222306728363037, - -1.6957752704620361, - -1.6953234672546387, - -1.6952449083328247, - -1.6955417394638062, - -1.6962056159973145, - -1.6972185373306274, - -1.6985530853271484, - -1.7001725435256958, - -1.7020329236984253, - -1.7040833234786987, - -1.706268072128296, - -1.7085273265838623, - -1.7107995748519897, - -1.7130228281021118, - -1.7151364088058472, - -1.7170827388763428, - -1.718808650970459, - -1.7202670574188232, - -1.7214182615280151, - -1.7222306728363037, - -1.6957752704620361, - -1.692520260810852, - -1.6897149085998535, - -1.6874356269836426, - -1.6857447624206543, - -1.6846882104873657, - -1.6842949390411377, - -1.6845756769180298, - -1.6855226755142212, - -1.687110185623169, - -1.6892948150634766, - -1.6920170783996582, - -1.6952027082443237, - -1.698764681816101, - -1.7026060819625854, - -1.706621766090393, - -1.7107025384902954, - -1.7147369384765625, - -1.718614935874939, - -1.7222306728363037, - -1.6957752704620361, - -1.690089225769043, - -1.6849192380905151, - -1.680406093597412, - -1.6766730546951294, - -1.6738219261169434, - -1.6719303131103516, - -1.6710500717163086, - -1.6712050437927246, - -1.6723910570144653, - -1.674575686454773, - -1.6776994466781616, - -1.6816771030426025, - -1.6864001750946045, - -1.6917396783828735, - -1.6975501775741577, - -1.703673005104065, - -1.7099412679672241, - -1.7161839008331299, - -1.7222306728363037, - -1.6957752704620361, - -1.6882939338684082, - -1.681377649307251, - -1.6752147674560547, - -1.669973611831665, - -1.6657971143722534, - -1.6627991199493408, - -1.661061406135559, - -1.660631537437439, - -1.6615209579467773, - -1.6637057065963745, - -1.667125940322876, - -1.6716885566711426, - -1.6772688627243042, - -1.6837149858474731, - -1.6908507347106934, - -1.698481798171997, - -1.70639967918396, - -1.7143886089324951, - -1.7222306728363037, - -1.6957752704620361, - -1.6873289346694946, - -1.679473876953125, - -1.67242431640625, - -1.666372537612915, - -1.6614835262298584, - -1.657890796661377, - -1.655692219734192, - -1.6549478769302368, - -1.6556780338287354, - -1.657862663269043, - -1.6614422798156738, - -1.6663192510604858, - -1.6723605394363403, - -1.6794013977050781, - -1.6872496604919434, - -1.6956912279129028, - -1.7044960260391235, - -1.7134236097335815, - -1.7222306728363037, - -1.6957752704620361, - -1.6872987747192383, - -1.6794143915176392, - -1.6723370552062988, - -1.6662598848342896, - -1.661348581314087, - -1.6577372550964355, - -1.6555242538452148, - -1.654770016670227, - -1.6554951667785645, - -1.6576799154281616, - -1.6612645387649536, - -1.6661512851715088, - -1.672206997871399, - -1.6792664527893066, - -1.6871370077133179, - -1.6956039667129517, - -1.7044364213943481, - -1.7133934497833252, - -1.7222306728363037, - -1.6957752704620361, - -1.688206672668457, - -1.68120539188385, - -1.6749624013900757, - -1.6696479320526123, - -1.6654069423675537, - -1.6623551845550537, - -1.6605757474899292, - -1.6601173877716064, - -1.6609925031661987, - -1.6631771326065063, - -1.6666117906570435, - -1.6712027788162231, - -1.676824927330017, - -1.6833246946334839, - -1.6905250549316406, - -1.6982293128967285, - -1.7062275409698486, - -1.714301347732544, - -1.7222306728363037, - -1.6957752704620361, - -1.6899542808532715, - -1.6846530437469482, - -1.6800159215927124, - -1.676169514656067, - -1.6732187271118164, - -1.6712440252304077, - -1.6702992916107178, - -1.6704102754592896, - -1.6715739965438843, - -1.673758625984192, - -1.6769046783447266, - -1.6809263229370117, - -1.685713768005371, - -1.6911364793777466, - -1.6970466375350952, - -1.7032828330993652, - -1.7096750736236572, - -1.7160489559173584, - -1.7222306728363037 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.045137129724025726, - 0.08286502212285995, - 0.11956073343753815, - 0.1542232781648636, - 0.18590715527534485, - 0.21374812722206116, - 0.23698675632476807, - 0.2549891769886017, - 0.26726430654525757, - 0.2734772861003876, - 0.27345865964889526, - 0.2672089636325836, - 0.25489863753318787, - 0.23686350882053375, - 0.21359549462795258, - 0.18572930991649628, - 0.15402504801750183, - 0.11934755742549896, - 0.08264270424842834, - 0.044911738485097885, - 0.045137133449316025, - 0.06679477542638779, - 0.08785857260227203, - 0.10775397717952728, - 0.125938281416893, - 0.1419154554605484, - 0.1552496999502182, - 0.16557729244232178, - 0.17261651158332825, - 0.17617535591125488, - 0.17615672945976257, - 0.1725611686706543, - 0.16548675298690796, - 0.1551264375448227, - 0.14176282286643982, - 0.12576042115688324, - 0.10755574703216553, - 0.08764539659023285, - 0.06657245755195618, - 0.044911742210388184, - 0.04513713717460632, - 0.04837741330265999, - 0.051526233553886414, - 0.05449768900871277, - 0.05721075460314751, - 0.05959141254425049, - 0.06157471984624863, - 0.06310655176639557, - 0.06414517760276794, - 0.06466222554445267, - 0.06464361399412155, - 0.06408984214067459, - 0.06301601231098175, - 0.06145142763853073, - 0.05943874642252922, - 0.05703289434313774, - 0.05429946631193161, - 0.05131305381655693, - 0.04815509915351868, - 0.04491174593567848, - 0.04513714462518692, - 0.02960875630378723, - 0.014500867575407028, - 0.0002255849540233612, - -0.012827709317207336, - -0.024302925914525986, - -0.0338870994746685, - -0.04131874814629555, - -0.0463952012360096, - -0.04897795245051384, - -0.048996564000844955, - -0.046450529247522354, - -0.041409287601709366, - -0.03401036933064461, - -0.024455595761537552, - -0.0130055733025074, - 0.00002736225724220276, - 0.014287687838077545, - 0.02938644029200077, - 0.04491175338625908, - 0.04513714835047722, - 0.012522667646408081, - -0.0192052461206913, - -0.04918113723397255, - -0.07658736407756805, - -0.10067632794380188, - -0.12079092860221863, - -0.1363825500011444, - -0.14702583849430084, - -0.15243053436279297, - -0.15244916081428528, - -0.1470811814069748, - -0.13647308945655823, - -0.12091420590877533, - -0.10082896053791046, - -0.07676522433757782, - -0.049379367381334305, - -0.019418422132730484, - 0.012300349771976471, - 0.04491175711154938, - 0.04513715207576752, - -0.0010292939841747284, - -0.04593951627612114, - -0.0883684903383255, - -0.12715885043144226, - -0.1612524688243866, - -0.18971942365169525, - -0.21178315579891205, - -0.22684188187122345, - -0.23448477685451508, - -0.234503373503685, - -0.226897194981575, - -0.21187369525432587, - -0.18984268605709076, - -0.16140516102313995, - -0.12733672559261322, - -0.08856670558452606, - -0.046152692288160324, - -0.0012516118586063385, - 0.044911760836839676, - 0.04513715207576752, - -0.009578578174114227, - -0.06280489265918732, - -0.11308988928794861, - -0.1590619534254074, - -0.19946704804897308, - -0.23320306837558746, - -0.2593497931957245, - -0.27719393372535706, - -0.2862488329410553, - -0.2862674295902252, - -0.2772492468357086, - -0.2594403326511383, - -0.23332636058330536, - -0.19961974024772644, - -0.15923984348773956, - -0.11328810453414917, - -0.0630180686712265, - -0.009800896048545837, - 0.044911764562129974, - 0.04513715207576752, - -0.012198731303215027, - -0.06797373294830322, - -0.12066642940044403, - -0.16883951425552368, - -0.21117891371250153, - -0.24652980268001556, - -0.27392783761024475, - -0.29262566566467285, - -0.30211329460144043, - -0.30213189125061035, - -0.2926809787750244, - -0.27401837706565857, - -0.24665306508541107, - -0.21133162081241608, - -0.16901738941669464, - -0.12086464464664459, - -0.06818690896034241, - -0.012421049177646637, - 0.044911764562129974, - 0.04513715207576752, - -0.008605822920799255, - -0.06088590994477272, - -0.11027702689170837, - -0.15543195605278015, - -0.19511890411376953, - -0.22825540602207184, - -0.2539375424385071, - -0.2714647650718689, - -0.2803589999675751, - -0.280377596616745, - -0.27152007818222046, - -0.2540280818939209, - -0.22837869822978973, - -0.1952715963125229, - -0.1556098312139511, - -0.11047524213790894, - -0.061099085956811905, - -0.008828140795230865, - 0.044911760836839676, - 0.04513715207576752, - 0.0008108057081699371, - -0.042309511452913284, - -0.08304758369922638, - -0.12029218673706055, - -0.15302735567092896, - -0.18036022782325745, - -0.20154519379138947, - -0.2160043865442276, - -0.2233433574438095, - -0.22336195409297943, - -0.21605969965457916, - -0.20163573324680328, - -0.18048350512981415, - -0.1531800627708435, - -0.1204700618982315, - -0.08324579894542694, - -0.04252268746495247, - 0.000588487833738327, - 0.044911760836839676, - 0.04513714835047722, - 0.015030711889266968, - -0.014257576316595078, - -0.04192878678441048, - -0.06722816824913025, - -0.08946555852890015, - -0.10803444683551788, - -0.1224282830953598, - -0.13225442171096802, - -0.13724488019943237, - -0.13726350665092468, - -0.13230976462364197, - -0.12251882255077362, - -0.10815772414207458, - -0.0896182507276535, - -0.06740602850914001, - -0.04212701693177223, - -0.014470752328634262, - 0.014808394014835358, - 0.04491175711154938, - 0.04513714089989662, - 0.03251295164227486, - 0.020230039954185486, - 0.008623465895652771, - -0.0019902028143405914, - -0.011321410536766052, - -0.019115660339593887, - -0.025160353630781174, - -0.029290568083524704, - -0.03139368072152138, - -0.03141229227185249, - -0.02934589609503746, - -0.025250893086194992, - -0.019238952547311783, - -0.011474084109067917, - -0.002168070524930954, - 0.008425243198871613, - 0.020016860216856003, - 0.032290633767843246, - 0.04491174966096878, - 0.04513713717460632, - 0.05136305093765259, - 0.05741605907678604, - 0.06313106417655945, - 0.06835215538740158, - 0.07293693721294403, - 0.07676033675670624, - 0.07971805334091187, - 0.08172944188117981, - 0.08273960649967194, - 0.08272099494934082, - 0.08167411386966705, - 0.07962751388549805, - 0.07663706690073013, - 0.07278429716825485, - 0.06817430257797241, - 0.06293283402919769, - 0.05720287933945656, - 0.05114073306322098, - 0.04491174593567848, - 0.045137133449316025, - 0.06953832507133484, - 0.09327083826065063, - 0.11568732559680939, - 0.13617628812789917, - 0.15417887270450592, - 0.16920402646064758, - 0.18084187805652618, - 0.18877500295639038, - 0.19278694689273834, - 0.19276832044124603, - 0.18871966004371643, - 0.18075133860111237, - 0.16908076405525208, - 0.15402624011039734, - 0.1359984427690506, - 0.11548909544944763, - 0.09305766224861145, - 0.06931599974632263, - 0.044911742210388184, - 0.045137129724025726, - 0.08506915718317032, - 0.1239088624715805, - 0.1605968177318573, - 0.1941322684288025, - 0.22360041737556458, - 0.2481974959373474, - 0.2672525644302368, - 0.280245840549469, - 0.2868228256702423, - 0.28680419921875, - 0.28019049763679504, - 0.267162024974823, - 0.2480742335319519, - 0.2234477996826172, - 0.19395442306995392, - 0.16039858758449554, - 0.12369568645954132, - 0.08484683930873871, - 0.044911738485097885, - 0.04513712599873543, - 0.09627257287502289, - 0.1460101157426834, - 0.19299301505088806, - 0.23593974113464355, - 0.2736787796020508, - 0.30518072843551636, - 0.32958632707595825, - 0.34622976183891296, - 0.3546571135520935, - 0.3546385169029236, - 0.3461744487285614, - 0.32949578762054443, - 0.30505749583244324, - 0.2735261619091034, - 0.2357618808746338, - 0.1927947998046875, - 0.14579693973064423, - 0.09605026245117188, - 0.04491173475980759, - 0.04513712227344513, - 0.1019345223903656, - 0.1571795642375946, - 0.20936530828475952, - 0.2570682764053345, - 0.2989872097969055, - 0.33397871255874634, - 0.3610883355140686, - 0.37957650423049927, - 0.3889389634132385, - 0.3889203667640686, - 0.3795211911201477, - 0.3609977960586548, - 0.33385545015335083, - 0.29883459210395813, - 0.2568904161453247, - 0.20916709303855896, - 0.15696638822555542, - 0.10171220451593399, - 0.04491173475980759, - 0.04513712227344513, - 0.10144142806529999, - 0.15620680153369904, - 0.20793943107128143, - 0.2552281618118286, - 0.29678305983543396, - 0.33147063851356506, - 0.35834476351737976, - 0.37667229771614075, - 0.3859533369541168, - 0.3859347403049469, - 0.3766169846057892, - 0.35825422406196594, - 0.33134743571281433, - 0.29663047194480896, - 0.25505033135414124, - 0.20774121582508087, - 0.15599362552165985, - 0.10121910274028778, - 0.04491173475980759, - 0.04513712599873543, - 0.0948466956615448, - 0.14319725334644318, - 0.1888698786497116, - 0.23061880469322205, - 0.2673051953315735, - 0.2979283630847931, - 0.32165297865867615, - 0.33783185482025146, - 0.3460237383842468, - 0.3460051417350769, - 0.3377765417098999, - 0.32156243920326233, - 0.29780513048171997, - 0.2671526074409485, - 0.23044097423553467, - 0.18867166340351105, - 0.142984077334404, - 0.09462438523769379, - 0.04491173475980759, - 0.045137129724025726, - 0.08286501467227936, - 0.11956071853637695, - 0.1542232632637024, - 0.18590712547302246, - 0.21374809741973877, - 0.23698671162128448, - 0.2549891471862793, - 0.2672642469406128, - 0.2734772264957428, - 0.2734586000442505, - 0.26720890402793884, - 0.2548986077308655, - 0.23686347901821136, - 0.2135954648256302, - 0.1857292801141739, - 0.15402503311634064, - 0.11934754252433777, - 0.08264269679784775, - 0.044911738485097885 - ], - "y": [ - 0.28390946984291077, - 0.24061310291290283, - 0.19845212996006012, - 0.1585765928030014, - 0.12207421660423279, - 0.08994065225124359, - 0.06305243074893951, - 0.04214300215244293, - 0.027782708406448364, - 0.020363330841064453, - 0.020087122917175293, - 0.026961714029312134, - 0.040799543261528015, - 0.06122317910194397, - 0.08767548203468323, - 0.11943492293357849, - 0.15563522279262543, - 0.19528888165950775, - 0.23731425404548645, - 0.2805650234222412, - 0.28390946984291077, - 0.2309984564781189, - 0.17948508262634277, - 0.13077452778816223, - 0.08619546890258789, - 0.04696394503116608, - 0.014150053262710571, - -0.011351168155670166, - -0.02884402871131897, - -0.03785133361816406, - -0.03812754154205322, - -0.0296650230884552, - -0.012694597244262695, - 0.012320756912231445, - 0.04469875991344452, - 0.08355619013309479, - 0.12783315777778625, - 0.1763218343257904, - 0.22769960761070251, - 0.2805650234222412, - 0.28390946984291077, - 0.22711504995822906, - 0.17182420194149017, - 0.11954514682292938, - 0.07170391082763672, - 0.029605448246002197, - -0.005601823329925537, - -0.03295770287513733, - -0.05171582102775574, - -0.06136453151702881, - -0.06164073944091797, - -0.05253681540489197, - -0.03430113196372986, - -0.007431149482727051, - 0.027340292930603027, - 0.06906461715698242, - 0.1166037768125534, - 0.1686609536409378, - 0.22381620109081268, - 0.2805650234222412, - 0.28390946984291077, - 0.22938373684883118, - 0.17629969120025635, - 0.12610533833503723, - 0.08016985654830933, - 0.039746299386024475, - 0.0059371888637542725, - -0.02033516764640808, - -0.03835409879684448, - -0.04762810468673706, - -0.04790431261062622, - -0.03917509317398071, - -0.02167859673500061, - 0.004107922315597534, - 0.037481099367141724, - 0.07753059267997742, - 0.12316396832466125, - 0.17313644289970398, - 0.2260848879814148, - 0.2805650234222412, - 0.28390946984291077, - 0.23755864799022675, - 0.19242654740810394, - 0.14974424242973328, - 0.11067599058151245, - 0.07628750801086426, - 0.04751679301261902, - 0.025148600339889526, - 0.009793132543563843, - 0.0018692612648010254, - 0.0015930533409118652, - 0.008972138166427612, - 0.023805171251296997, - 0.045687511563301086, - 0.0740223377943039, - 0.10803672671318054, - 0.1468028724193573, - 0.18926329910755157, - 0.23425979912281036, - 0.2805650234222412, - 0.28390946984291077, - 0.2507539391517639, - 0.2184571772813797, - 0.18790018558502197, - 0.15991643071174622, - 0.13526932895183563, - 0.1146310567855835, - 0.09856468439102173, - 0.08750841021537781, - 0.0817638486623764, - 0.08148767054080963, - 0.08668738603591919, - 0.09722122550010681, - 0.11280182003974915, - 0.13300412893295288, - 0.1572771817445755, - 0.184958815574646, - 0.21529392898082733, - 0.24745509028434753, - 0.2805650234222412, - 0.28390946984291077, - 0.2675396502017975, - 0.25157076120376587, - 0.23643836379051208, - 0.2225552201271057, - 0.21030008792877197, - 0.20000720024108887, - 0.1919572949409485, - 0.18637005984783173, - 0.18339776992797852, - 0.18312159180641174, - 0.1855490356683731, - 0.19061383605003357, - 0.19817793369293213, - 0.2080349326133728, - 0.2199159860610962, - 0.2334969937801361, - 0.2484074980020523, - 0.2642408013343811, - 0.2805649936199188, - 0.28390946984291077, - 0.28609684109687805, - 0.2881789207458496, - 0.2900989353656769, - 0.2918045222759247, - 0.29324910044670105, - 0.2943933606147766, - 0.2952059507369995, - 0.29566484689712524, - 0.2957574725151062, - 0.29548129439353943, - 0.294843852519989, - 0.293862521648407, - 0.2925640642642975, - 0.29098397493362427, - 0.2891652584075928, - 0.2871575653553009, - 0.28501567244529724, - 0.28279799222946167, - 0.2805649936199188, - 0.28390946984291077, - 0.3044145107269287, - 0.32431459426879883, - 0.3430669605731964, - 0.3601600229740143, - 0.37512755393981934, - 0.38756129145622253, - 0.3971220552921295, - 0.40354907512664795, - 0.40666699409484863, - 0.40639081597328186, - 0.40272805094718933, - 0.3957785964012146, - 0.3857320547103882, - 0.37286242842674255, - 0.3575207591056824, - 0.34012559056282043, - 0.32115137577056885, - 0.30111566185951233, - 0.2805649936199188, - 0.2839094400405884, - 0.32050764560699463, - 0.3560619354248047, - 0.3896024823188782, - 0.4202144145965576, - 0.447062611579895, - 0.4694148302078247, - 0.4866613745689392, - 0.498331755399704, - 0.5041075944900513, - 0.5038314461708069, - 0.49751073122024536, - 0.4853179454803467, - 0.46758562326431274, - 0.4447975158691406, - 0.4175751209259033, - 0.3866611123085022, - 0.3528987169265747, - 0.31720882654190063, - 0.2805649936199188, - 0.2839094400405884, - 0.3326323628425598, - 0.3799806237220764, - 0.424662709236145, - 0.46545979380607605, - 0.5012590289115906, - 0.5310839414596558, - 0.5541209578514099, - 0.5697417259216309, - 0.5775201320648193, - 0.5772439241409302, - 0.5689207315444946, - 0.5527775287628174, - 0.529254674911499, - 0.4989939332008362, - 0.46282052993774414, - 0.42172133922576904, - 0.37681737542152405, - 0.32933351397514343, - 0.2805649936199188, - 0.2839094400405884, - 0.33947470784187317, - 0.3934786915779114, - 0.4444482922554016, - 0.4909932017326355, - 0.5318437814712524, - 0.5658857822418213, - 0.5921905040740967, - 0.610040545463562, - 0.6189490556716919, - 0.6186728477478027, - 0.6092195510864258, - 0.5908470749855042, - 0.5640565156936646, - 0.5295786261558533, - 0.4883539378643036, - 0.44150692224502563, - 0.390315443277359, - 0.3361758589744568, - 0.2805649936199188, - 0.2839094400405884, - 0.3402932286262512, - 0.3950934112071991, - 0.4468151330947876, - 0.4940476417541504, - 0.5355024933815002, - 0.5700489282608032, - 0.5967446565628052, - 0.6148613691329956, - 0.6239050030708313, - 0.6236287951469421, - 0.6140403747558594, - 0.5954011678695679, - 0.5682196617126465, - 0.5332373976707458, - 0.49140840768814087, - 0.4438737630844116, - 0.39193016290664673, - 0.33699437975883484, - 0.2805649936199188, - 0.2839094400405884, - 0.3349992334842682, - 0.38464978337287903, - 0.43150681257247925, - 0.47429215908050537, - 0.5118386745452881, - 0.5431223511695862, - 0.5672897100448608, - 0.583681583404541, - 0.5918508768081665, - 0.5915746688842773, - 0.5828605890274048, - 0.5659463405609131, - 0.5412931442260742, - 0.5095735788345337, - 0.47165289521217346, - 0.42856544256210327, - 0.38148653507232666, - 0.3317003846168518, - 0.2805649936199188, - 0.2839094400405884, - 0.3241663873195648, - 0.3632795810699463, - 0.40018218755722046, - 0.43386757373809814, - 0.46341681480407715, - 0.4880239963531494, - 0.5070178508758545, - 0.5198802351951599, - 0.5262603759765625, - 0.5259841680526733, - 0.5190592408180237, - 0.5056743621826172, - 0.4861947298049927, - 0.46115171909332275, - 0.43122828006744385, - 0.3972408175468445, - 0.3601163327693939, - 0.32086753845214844, - 0.2805649936199188, - 0.28390946984291077, - 0.30896860361099243, - 0.33329862356185913, - 0.3562358021736145, - 0.37715446949005127, - 0.395484060049057, - 0.41072458028793335, - 0.42246028780937195, - 0.43037110567092896, - 0.4342411756515503, - 0.43396496772766113, - 0.42955008149147034, - 0.42111682891845703, - 0.4088953733444214, - 0.3932189345359802, - 0.37451523542404175, - 0.3532944321632385, - 0.33013537526130676, - 0.30566975474357605, - 0.2805649936199188, - 0.28390946984291077, - 0.29105278849601746, - 0.2979556918144226, - 0.3044297993183136, - 0.3102985620498657, - 0.3154018521308899, - 0.31960058212280273, - 0.322780042886734, - 0.32485365867614746, - 0.32576480507850647, - 0.3254886269569397, - 0.32403266429901123, - 0.3214365839958191, - 0.317771315574646, - 0.3131367564201355, - 0.3076593279838562, - 0.3014884293079376, - 0.29479244351387024, - 0.2877539396286011, - 0.2805649936199188, - 0.28390946984291077, - 0.2723604440689087, - 0.261080801486969, - 0.250378280878067, - 0.24054478108882904, - 0.23184853792190552, - 0.2245267629623413, - 0.21877920627593994, - 0.2147625982761383, - 0.21258652210235596, - 0.21231034398078918, - 0.2139415740966797, - 0.21743574738502502, - 0.22269752621650696, - 0.22958338260650635, - 0.23790553212165833, - 0.24743691086769104, - 0.2579175531864166, - 0.2690615952014923, - 0.2805649936199188, - 0.28390946984291077, - 0.25491711497306824, - 0.22666995227336884, - 0.19993853569030762, - 0.17545202374458313, - 0.153878316283226, - 0.1358059197664261, - 0.12172776460647583, - 0.11202792823314667, - 0.1069709062576294, - 0.10669472813606262, - 0.11120690405368805, - 0.12038430571556091, - 0.13397666811943054, - 0.15161314606666565, - 0.17281275987625122, - 0.19699716567993164, - 0.22350670397281647, - 0.25161826610565186, - 0.2805649936199188, - 0.28390946984291077, - 0.24061310291290283, - 0.19845211505889893, - 0.1585765779018402, - 0.1220741868019104, - 0.0899406224489212, - 0.06305240094661713, - 0.04214295744895935, - 0.027782678604125977, - 0.020363271236419678, - 0.020087063312530518, - 0.026961684226989746, - 0.040799498558044434, - 0.06122313439846039, - 0.08767545223236084, - 0.1194349080324173, - 0.15563520789146423, - 0.19528886675834656, - 0.23731425404548645, - 0.2805650234222412 - ], - "z": [ - -1.7438117265701294, - -1.7497273683547974, - -1.7551755905151367, - -1.760007619857788, - -1.7640917301177979, - -1.7673165798187256, - -1.7695940732955933, - -1.7708622217178345, - -1.77108633518219, - -1.7702603340148926, - -1.768406629562378, - -1.7655760049819946, - -1.761845588684082, - -1.757317066192627, - -1.752113938331604, - -1.7463783025741577, - -1.7402664422988892, - -1.7339452505111694, - -1.7275869846343994, - -1.7213650941848755, - -1.7438117265701294, - -1.7513213157653809, - -1.7583199739456177, - -1.7646167278289795, - -1.7700397968292236, - -1.7744412422180176, - -1.7777011394500732, - -1.7797304391860962, - -1.7804738283157349, - -1.7799110412597656, - -1.7780574560165405, - -1.774963617324829, - -1.7707138061523438, - -1.7654240131378174, - -1.759238600730896, - -1.752326250076294, - -1.7448755502700806, - -1.7370896339416504, - -1.729180932044983, - -1.7213650941848755, - -1.7438117265701294, - -1.7520848512649536, - -1.7598261833190918, - -1.7668246030807495, - -1.7728890180587769, - -1.7778542041778564, - -1.7815847396850586, - -1.7839787006378174, - -1.7849708795547485, - -1.784534215927124, - -1.782680630683899, - -1.7794605493545532, - -1.774962067604065, - -1.7693076133728027, - -1.7626515626907349, - -1.7551755905151367, - -1.7470834255218506, - -1.7385958433151245, - -1.7299444675445557, - -1.7213650941848755, - -1.7438117265701294, - -1.7519352436065674, - -1.7595311403274536, - -1.7663921117782593, - -1.7723308801651, - -1.7771856784820557, - -1.7808239459991455, - -1.7831465005874634, - -1.7840900421142578, - -1.7836285829544067, - -1.7817749977111816, - -1.7785797119140625, - -1.774129867553711, - -1.7685469388961792, - -1.761983036994934, - -1.75461745262146, - -1.7466509342193604, - -1.7383008003234863, - -1.7297948598861694, - -1.7213650941848755, - -1.7438117265701294, - -1.7508888244628906, - -1.7574667930603027, - -1.7633661031723022, - -1.7684258222579956, - -1.7725080251693726, - -1.7755013704299927, - -1.7773241996765137, - -1.7779266834259033, - -1.7772924900054932, - -1.7754387855529785, - -1.772416353225708, - -1.7683074474334717, - -1.7632242441177368, - -1.757305383682251, - -1.7507123947143555, - -1.7436249256134033, - -1.736236333847046, - -1.7287484407424927, - -1.7213650941848755, - -1.7438117265701294, - -1.7490588426589966, - -1.7538566589355469, - -1.758074402809143, - -1.7615970373153687, - -1.7643282413482666, - -1.7661937475204468, - -1.7671425342559814, - -1.7671488523483276, - -1.7662123441696167, - -1.7643587589263916, - -1.7616385221481323, - -1.758125901222229, - -1.753916621208191, - -1.749125599861145, - -1.743883490562439, - -1.7383332252502441, - -1.7326263189315796, - -1.7269184589385986, - -1.7213650941848755, - -1.7438117265701294, - -1.7466436624526978, - -1.7490922212600708, - -1.7510906457901, - -1.7525843381881714, - -1.7535326480865479, - -1.7539095878601074, - -1.7537050247192383, - -1.7529243230819702, - -1.751589059829712, - -1.7497353553771973, - -1.747413992881775, - -1.7446882724761963, - -1.7416324615478516, - -1.7383300065994263, - -1.7348709106445312, - -1.7313494682312012, - -1.7278618812561035, - -1.7245032787322998, - -1.7213650941848755, - -1.7438117265701294, - -1.7439050674438477, - -1.7436896562576294, - -1.7431714534759521, - -1.7423646450042725, - -1.7412911653518677, - -1.7399802207946777, - -1.7384676933288574, - -1.7367947101593018, - -1.7350070476531982, - -1.7331534624099731, - -1.731284499168396, - -1.7294509410858154, - -1.7277030944824219, - -1.7260884046554565, - -1.7246510982513428, - -1.7234302759170532, - -1.722459316253662, - -1.7217645645141602, - -1.7213650941848755, - -1.7438117265701294, - -1.7411396503448486, - -1.7382344007492065, - -1.7351751327514648, - -1.732045292854309, - -1.7289302349090576, - -1.7259149551391602, - -1.7230818271636963, - -1.7205078601837158, - -1.7182635068893433, - -1.7164099216461182, - -1.7149975299835205, - -1.7140650749206543, - -1.7136378288269043, - -1.713727593421936, - -1.7143317461013794, - -1.715433955192566, - -1.7170040607452393, - -1.7189992666244507, - -1.7213650941848755, - -1.7438117265701294, - -1.7386473417282104, - -1.7333176136016846, - -1.7279680967330933, - -1.7227444648742676, - -1.7177895307540894, - -1.7132381200790405, - -1.709214687347412, - -1.7058286666870117, - -1.7031726837158203, - -1.7013190984725952, - -1.7003183364868164, - -1.7001979351043701, - -1.7009609937667847, - -1.7025868892669678, - -1.7050310373306274, - -1.7082269191741943, - -1.7120872735977173, - -1.716506838798523, - -1.7213650941848755, - -1.7438117265701294, - -1.7366979122161865, - -1.7294721603393555, - -1.7223312854766846, - -1.715470314025879, - -1.709076166152954, - -1.703323483467102, - -1.6983689069747925, - -1.694347858428955, - -1.691369891166687, - -1.689516305923462, - -1.6888376474380493, - -1.68935227394104, - -1.6910463571548462, - -1.6938735246658325, - -1.6977567672729492, - -1.7025901079177856, - -1.7082418203353882, - -1.7145575284957886, - -1.7213650941848755, - -1.7438117265701294, - -1.7355029582977295, - -1.7271146774291992, - -1.718875765800476, - -1.7110108137130737, - -1.7037345170974731, - -1.6972452402114868, - -1.6917200088500977, - -1.6873096227645874, - -1.6841342449188232, - -1.6822806596755981, - -1.681799292564392, - -1.6827033758163452, - -1.684968113899231, - -1.6885318756103516, - -1.693297266960144, - -1.6991345882415771, - -1.705884337425232, - -1.713362455368042, - -1.7213650941848755, - -1.7438117265701294, - -1.7351917028427124, - -1.7265007495880127, - -1.7179757356643677, - -1.7098493576049805, - -1.7023433446884155, - -1.695662260055542, - -1.689988374710083, - -1.685476541519165, - -1.6822497844696045, - -1.6803961992263794, - -1.6799662113189697, - -1.6809717416763306, - -1.6833851337432861, - -1.687140703201294, - -1.6921359300613403, - -1.6982345581054688, - -1.7052702903747559, - -1.7130513191223145, - -1.7213650941848755, - -1.7438117265701294, - -1.7357980012893677, - -1.7276967763900757, - -1.719728946685791, - -1.7121118307113647, - -1.7050533294677734, - -1.6987459659576416, - -1.6933616399765015, - -1.6890473365783691, - -1.6859208345413208, - -1.6840671300888062, - -1.6835371255874634, - -1.684345006942749, - -1.6864688396453857, - -1.6898506879806519, - -1.6943984031677246, - -1.699987769126892, - -1.7064664363861084, - -1.7136576175689697, - -1.7213650941848755, - -1.7438117265701294, - -1.7372560501098633, - -1.7305731773376465, - -1.7239452600479126, - -1.7175530195236206, - -1.7115709781646729, - -1.7061622142791748, - -1.7014743089675903, - -1.6976350545883179, - -1.694749355316162, - -1.6928956508636475, - -1.692124843597412, - -1.692457675933838, - -1.693885087966919, - -1.6963683366775513, - -1.6998395919799805, - -1.7042040824890137, - -1.7093428373336792, - -1.7151156663894653, - -1.7213650941848755, - -1.7438117265701294, - -1.739408016204834, - -1.7348183393478394, - -1.7301677465438843, - -1.7255833148956299, - -1.7211898565292358, - -1.7171074151992798, - -1.7134472131729126, - -1.7103091478347778, - -1.7077786922454834, - -1.7059251070022583, - -1.7047988176345825, - -1.7044304609298706, - -1.704830288887024, - -1.7059872150421143, - -1.7078697681427002, - -1.7104265689849854, - -1.713587999343872, - -1.717267632484436, - -1.7213650941848755, - -1.7438117265701294, - -1.742020606994629, - -1.7399721145629883, - -1.7377222776412964, - -1.7353324890136719, - -1.73286771774292, - -1.7303954362869263, - -1.7279828786849976, - -1.7256959676742554, - -1.7235971689224243, - -1.7217434644699097, - -1.72018563747406, - -1.7189662456512451, - -1.7181183099746704, - -1.7176650762557983, - -1.7176189422607422, - -1.7179811000823975, - -1.718741774559021, - -1.7198801040649414, - -1.7213650941848755, - -1.7438117265701294, - -1.7448105812072754, - -1.7454761266708374, - -1.7457901239395142, - -1.745743989944458, - -1.745339035987854, - -1.7445862293243408, - -1.7435061931610107, - -1.7421283721923828, - -1.7404903173446655, - -1.7386366128921509, - -1.7366180419921875, - -1.7344895601272583, - -1.732309103012085, - -1.7301363945007324, - -1.7280305624008179, - -1.7260489463806152, - -1.7242457866668701, - -1.7226701974868774, - -1.7213650941848755, - -1.7438117265701294, - -1.7474758625030518, - -1.7507338523864746, - -1.7534970045089722, - -1.7556897401809692, - -1.7572523355484009, - -1.758142113685608, - -1.758334994316101, - -1.757825493812561, - -1.7566275596618652, - -1.7547739744186401, - -1.7523151636123657, - -1.749318242073059, - -1.7458651065826416, - -1.7420496940612793, - -1.7379761934280396, - -1.7337558269500732, - -1.7295035123825073, - -1.7253353595733643, - -1.7213650941848755, - -1.7438117265701294, - -1.7497273683547974, - -1.7551755905151367, - -1.760007619857788, - -1.7640918493270874, - -1.7673165798187256, - -1.7695940732955933, - -1.7708622217178345, - -1.77108633518219, - -1.7702603340148926, - -1.768406629562378, - -1.7655760049819946, - -1.761845588684082, - -1.757317066192627, - -1.752113938331604, - -1.7463783025741577, - -1.7402664422988892, - -1.7339452505111694, - -1.7275869846343994, - -1.7213650941848755 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.030069265514612198, - 0.06815174221992493, - 0.10519448667764664, - 0.1401870995759964, - 0.1721750646829605, - 0.20028580725193024, - 0.22375257313251495, - 0.24193525314331055, - 0.2543378472328186, - 0.2606220245361328, - 0.2606164216995239, - 0.2543211877346039, - 0.2419079840183258, - 0.22371546924114227, - 0.2002398669719696, - 0.17212152481079102, - 0.14012742042541504, - 0.10513030737638474, - 0.06808480620384216, - 0.030001407489180565, - 0.030069271102547646, - 0.05190851539373398, - 0.0731511116027832, - 0.0932176262140274, - 0.11156070232391357, - 0.1276799738407135, - 0.14113575220108032, - 0.15156099200248718, - 0.1586713343858719, - 0.16227282583713531, - 0.16226722300052643, - 0.15865467488765717, - 0.15153375267982483, - 0.14109861850738525, - 0.12763401865959167, - 0.11150714755058289, - 0.09315794706344604, - 0.0730869323015213, - 0.05184158310294151, - 0.030001411214470863, - 0.030069274827837944, - 0.03329862281680107, - 0.0364389605820179, - 0.03940460830926895, - 0.04211469739675522, - 0.04449531435966492, - 0.04648146778345108, - 0.04801902547478676, - 0.04906604439020157, - 0.04959394410252571, - 0.049588341265916824, - 0.04904938489198685, - 0.04799176752567291, - 0.0464443564414978, - 0.0444493405520916, - 0.04206116497516632, - 0.03934492543339729, - 0.0363747775554657, - 0.03323168680071831, - 0.03000141680240631, - 0.03006928041577339, - 0.014338728040456772, - -0.0009636562317609787, - -0.01542048528790474, - -0.02863738313317299, - -0.040253832936286926, - -0.049952998757362366, - -0.057470276951789856, - -0.06260061264038086, - -0.06520412862300873, - -0.06520973145961761, - -0.06261727213859558, - -0.0574975311756134, - -0.049990102648735046, - -0.040299803018569946, - -0.028690923005342484, - -0.0154801644384861, - -0.001027839258313179, - 0.014271795749664307, - 0.03000142052769661, - 0.03006928600370884, - -0.0029165633022785187, - -0.035003580152988434, - -0.06531648337841034, - -0.0930284634232521, - -0.11738355457782745, - -0.13771747052669525, - -0.15347552299499512, - -0.16422785818576813, - -0.16968120634555817, - -0.16968680918216705, - -0.16424451768398285, - -0.15350279211997986, - -0.13775457441806793, - -0.11742953956127167, - -0.09308203309774399, - -0.0653761625289917, - -0.035067759454250336, - -0.0029834993183612823, - 0.030001426115632057, - 0.030069289728999138, - -0.016597378998994827, - -0.06199203431606293, - -0.10487641394138336, - -0.1440807580947876, - -0.17853567004203796, - -0.2073013037443161, - -0.22959300875663757, - -0.24480274319648743, - -0.252515584230423, - -0.25252118706703186, - -0.24481937289237976, - -0.22962024807929993, - -0.20733842253684998, - -0.17858166992664337, - -0.14413432776927948, - -0.10493610799312592, - -0.06205621361732483, - -0.01666431501507759, - 0.030001429840922356, - 0.030069291591644287, - -0.025221187621355057, - -0.07900442183017731, - -0.1298133134841919, - -0.17626197636127472, - -0.21708336472511292, - -0.2511639893054962, - -0.2775743007659912, - -0.295593798160553, - -0.3047308921813965, - -0.30473649501800537, - -0.2956104278564453, - -0.27760154008865356, - -0.25120115280151367, - -0.21712937951087952, - -0.176315575838089, - -0.12987300753593445, - -0.07906860113143921, - -0.02528812363743782, - 0.030001431703567505, - 0.030069291591644287, - -0.02785347029566765, - -0.08419717848300934, - -0.13742491602897644, - -0.1860847771167755, - -0.22884947061538696, - -0.26455241441726685, - -0.2922198176383972, - -0.3110969364643097, - -0.3206688165664673, - -0.32067441940307617, - -0.311113566160202, - -0.29224705696105957, - -0.2645895481109619, - -0.2288954257965088, - -0.1861383616924286, - -0.137484610080719, - -0.08426135778427124, - -0.027920406311750412, - 0.030001431703567505, - 0.030069291591644287, - -0.024208974093198776, - -0.07700759917497635, - -0.12688635289669037, - -0.17248472571372986, - -0.2125588357448578, - -0.24601563811302185, - -0.27194252610206604, - -0.2896322011947632, - -0.2986021339893341, - -0.298607736825943, - -0.2896488308906555, - -0.2719697654247284, - -0.2460528016090393, - -0.2126048356294632, - -0.17253829538822174, - -0.12694604694843292, - -0.07707177847623825, - -0.02427591010928154, - 0.030001431703567505, - 0.03006928786635399, - -0.014682639390230179, - -0.05821476876735687, - -0.09933966398239136, - -0.13693556189537048, - -0.16997690498828888, - -0.19756245613098145, - -0.21893973648548126, - -0.23352563381195068, - -0.2409222424030304, - -0.24092784523963928, - -0.23354226350784302, - -0.218967005610466, - -0.19759957492351532, - -0.1700228899717331, - -0.13698913156986237, - -0.09939935803413391, - -0.058278948068618774, - -0.014749575406312943, - 0.030001429840922356, - 0.03006928414106369, - -0.0003067869693040848, - -0.029855195432901382, - -0.05776994675397873, - -0.08328960090875626, - -0.10571804642677307, - -0.12444350123405457, - -0.13895517587661743, - -0.1488572359085083, - -0.1538795530796051, - -0.153885155916214, - -0.14887389540672302, - -0.13898244500160217, - -0.12448062002658844, - -0.10576401650905609, - -0.08334317803382874, - -0.05782962590456009, - -0.029919374734163284, - -0.00037371926009655, - 0.030001424252986908, - 0.03006928041577339, - 0.017360735684633255, - 0.004997920244932175, - -0.0066819339990615845, - -0.01736024022102356, - -0.026745710521936417, - -0.03458235412836075, - -0.04065638780593872, - -0.04480215907096863, - -0.04690650850534439, - -0.04691211134195328, - -0.04481881856918335, - -0.04068364202976227, - -0.03461947292089462, - -0.026791688054800034, - -0.01741378754377365, - -0.006741613149642944, - 0.004933737218379974, - 0.01729380339384079, - 0.03000142052769661, - 0.030069274827837944, - 0.03640536591410637, - 0.04256770759820938, - 0.048388198018074036, - 0.053708069026470184, - 0.05838219076395035, - 0.06228311359882355, - 0.06530439108610153, - 0.06736361980438232, - 0.06840462982654572, - 0.06839902698993683, - 0.0673469603061676, - 0.06527712941169739, - 0.06224600225687027, - 0.05833625793457031, - 0.053654514253139496, - 0.048328518867492676, - 0.04250352829694748, - 0.036338433623313904, - 0.030001414939761162, - 0.030069269239902496, - 0.05476335436105728, - 0.07878292351961136, - 0.10147279500961304, - 0.12221402674913406, - 0.14044085144996643, - 0.1556561440229416, - 0.16744479537010193, - 0.175485298037529, - 0.17955827713012695, - 0.17955267429351807, - 0.17546863853931427, - 0.1674175262451172, - 0.15561902523040771, - 0.140394926071167, - 0.12216048687696457, - 0.10141311585903168, - 0.07871874421834946, - 0.054696425795555115, - 0.030001411214470863, - 0.030069265514612198, - 0.07044528424739838, - 0.10971901565790176, - 0.14681920409202576, - 0.1807338148355484, - 0.21053776144981384, - 0.23541808128356934, - 0.2546961009502411, - 0.2678459584712982, - 0.2745089530944824, - 0.27450335025787354, - 0.2678292989730835, - 0.25466883182525635, - 0.23538099229335785, - 0.2104918509721756, - 0.1806802749633789, - 0.1467595249414444, - 0.10965483635663986, - 0.07037834823131561, - 0.030001405626535416, - 0.0300692617893219, - 0.08175179362297058, - 0.1320236325263977, - 0.17951351404190063, - 0.22292600572109222, - 0.2610769271850586, - 0.2929256558418274, - 0.3176034390926361, - 0.3344371020793915, - 0.3429674208164215, - 0.3429618179798126, - 0.33442047238349915, - 0.31757619976997375, - 0.2928885519504547, - 0.26103103160858154, - 0.22287246584892273, - 0.17945381999015808, - 0.131959468126297, - 0.08168485760688782, - 0.030001403763890266, - 0.0300692617893219, - 0.08745767176151276, - 0.14327973127365112, - 0.19601282477378845, - 0.24421845376491547, - 0.28658169507980347, - 0.3219470679759979, - 0.34934985637664795, - 0.368042528629303, - 0.3775152862071991, - 0.3775096833705902, - 0.36802589893341064, - 0.3493226170539856, - 0.32190993428230286, - 0.2865357995033264, - 0.24416489899158478, - 0.1959531307220459, - 0.14321556687355042, - 0.08739073574542999, - 0.030001401901245117, - 0.0300692617893219, - 0.0869445651769638, - 0.14226752519607544, - 0.19452910125255585, - 0.24230369925498962, - 0.2842881381511688, - 0.31933727860450745, - 0.34649503231048584, - 0.3650205433368683, - 0.3744085133075714, - 0.3744029104709625, - 0.36500391364097595, - 0.3464677929878235, - 0.31930017471313477, - 0.2842422425746918, - 0.24225015938282013, - 0.1944694072008133, - 0.14220333099365234, - 0.08687762916088104, - 0.030001401901245117, - 0.03006926365196705, - 0.08026807755231857, - 0.12909665703773499, - 0.17522312700748444, - 0.21738924086093903, - 0.25444483757019043, - 0.2853791117668152, - 0.30934828519821167, - 0.32569849491119385, - 0.333983838558197, - 0.33397823572158813, - 0.3256818652153015, - 0.3093210458755493, - 0.2853420078754425, - 0.2543988823890686, - 0.21733570098876953, - 0.17516343295574188, - 0.12903249263763428, - 0.08020114153623581, - 0.030001403763890266, - 0.030069265514612198, - 0.06815172731876373, - 0.10519447177648544, - 0.1401870846748352, - 0.17217503488063812, - 0.20028577744960785, - 0.22375254333019257, - 0.24193520843982697, - 0.25433778762817383, - 0.2606219947338104, - 0.26061639189720154, - 0.2543211579322815, - 0.24190793931484222, - 0.22371543943881989, - 0.20023983716964722, - 0.17212149500846863, - 0.14012739062309265, - 0.10513029247522354, - 0.06808479130268097, - 0.030001407489180565 - ], - "y": [ - 0.273353636264801, - 0.22965632379055023, - 0.18711328506469727, - 0.1468849778175354, - 0.11006870865821838, - 0.07766875624656677, - 0.05056889355182648, - 0.029508322477340698, - 0.015061557292938232, - 0.0076225996017456055, - 0.00739443302154541, - 0.014383256435394287, - 0.02839842438697815, - 0.04905767738819122, - 0.0757974237203598, - 0.10788829624652863, - 0.1444549858570099, - 0.18449999392032623, - 0.22693100571632385, - 0.2705906331539154, - 0.273353636264801, - 0.2199101448059082, - 0.16788676381111145, - 0.11870259046554565, - 0.07369916141033173, - 0.03410413861274719, - 0.0009975135326385498, - -0.024717628955841064, - -0.04233980178833008, - -0.05138841271400452, - -0.05161657929420471, - -0.04301810264587402, - -0.025827527046203613, - -0.0005137026309967041, - 0.03223279118537903, - 0.07151876389980316, - 0.11627259850502014, - 0.1652734875679016, - 0.21718482673168182, - 0.2705906331539154, - 0.273353636264801, - 0.21595335006713867, - 0.16008111834526062, - 0.10726097226142883, - 0.058933719992637634, - 0.016417622566223145, - -0.019127637147903442, - -0.04673245549201965, - -0.06564387679100037, - -0.0753459632396698, - -0.07557412981987, - -0.06632217764854431, - -0.0478423535823822, - -0.02063891291618347, - 0.014546215534210205, - 0.05675329267978668, - 0.10483098030090332, - 0.1574678122997284, - 0.2132280319929123, - 0.2705906331539154, - 0.273353636264801, - 0.2182147204875946, - 0.16454216837882996, - 0.1138000339269638, - 0.0673723965883255, - 0.026525750756263733, - -0.007625788450241089, - -0.034150660037994385, - -0.05232521891593933, - -0.061653852462768555, - -0.06188201904296875, - -0.053003519773483276, - -0.035260558128356934, - -0.00913703441619873, - 0.024654388427734375, - 0.06519198417663574, - 0.1113700419664383, - 0.16192887723445892, - 0.21548940241336823, - 0.2705906331539154, - 0.273353636264801, - 0.22644922137260437, - 0.18078652024269104, - 0.13761116564273834, - 0.09810079634189606, - 0.06333321332931519, - 0.034256741404533386, - 0.011664509773254395, - -0.0038271844387054443, - -0.01179581880569458, - -0.012023985385894775, - -0.00450548529624939, - 0.010554611682891846, - 0.03274552524089813, - 0.06146186590194702, - 0.0959203839302063, - 0.13518117368221283, - 0.1781732439994812, - 0.2237238883972168, - 0.2705906331539154, - 0.273353636264801, - 0.2397644817829132, - 0.20705386996269226, - 0.1761140525341034, - 0.14778900146484375, - 0.12285134196281433, - 0.10198131203651428, - 0.08574818074703217, - 0.07459473609924316, - 0.06882525980472565, - 0.06859709322452545, - 0.0739164650440216, - 0.08463828265666962, - 0.10047006607055664, - 0.12097999453544617, - 0.145608589053154, - 0.17368406057357788, - 0.20444057881832123, - 0.23703916370868683, - 0.2705906331539154, - 0.273353636264801, - 0.25671759247779846, - 0.2404976785182953, - 0.22513630986213684, - 0.21105249226093292, - 0.19863039255142212, - 0.18820889294147491, - 0.18007221817970276, - 0.174442321062088, - 0.17147281765937805, - 0.17124465107917786, - 0.17376405000686646, - 0.1789623349905014, - 0.18669766187667847, - 0.19675904512405396, - 0.20887207984924316, - 0.22270633280277252, - 0.23788438737392426, - 0.2539922893047333, - 0.2705906331539154, - 0.27335360646247864, - 0.27547144889831543, - 0.27749383449554443, - 0.2793656289577484, - 0.28103572130203247, - 0.2824585735797882, - 0.28359541296958923, - 0.2844151556491852, - 0.28489553928375244, - 0.28502336144447327, - 0.28479519486427307, - 0.2842172682285309, - 0.283305287361145, - 0.282084196805954, - 0.28058725595474243, - 0.2788553237915039, - 0.2769356369972229, - 0.2748805582523346, - 0.27274614572525024, - 0.2705906331539154, - 0.27335360646247864, - 0.2939937710762024, - 0.31403324007987976, - 0.33292537927627563, - 0.35015490651130676, - 0.3652517795562744, - 0.3778042197227478, - 0.3874698579311371, - 0.3939850330352783, - 0.3971719741821289, - 0.3969438076019287, - 0.39330676198005676, - 0.38635995984077454, - 0.37629303336143494, - 0.36338046193122864, - 0.3479744791984558, - 0.3304954171180725, - 0.3114199638366699, - 0.2912684679031372, - 0.270590603351593, - 0.27335360646247864, - 0.31027737259864807, - 0.3461562395095825, - 0.38001158833503723, - 0.4109199047088623, - 0.43803805112838745, - 0.46062636375427246, - 0.4780687391757965, - 0.4898892939090729, - 0.4957656264305115, - 0.4955374598503113, - 0.4892110228538513, - 0.47695884108543396, - 0.459115207195282, - 0.43616676330566406, - 0.40873950719833374, - 0.3775815963745117, - 0.3435429632663727, - 0.3075520396232605, - 0.270590603351593, - 0.27335360646247864, - 0.322557657957077, - 0.3703818619251251, - 0.4155217111110687, - 0.4567458927631378, - 0.49292993545532227, - 0.5230867862701416, - 0.5463939905166626, - 0.5622155666351318, - 0.570120096206665, - 0.5698919296264648, - 0.5615372657775879, - 0.5452840328216553, - 0.5215755701065063, - 0.4910586178302765, - 0.45456552505493164, - 0.4130917191505432, - 0.3677685856819153, - 0.31983232498168945, - 0.270590603351593, - 0.27335360646247864, - 0.3295038938522339, - 0.3840848505496979, - 0.4356076717376709, - 0.48266690969467163, - 0.5239789485931396, - 0.5584169626235962, - 0.5850414633750916, - 0.6031262874603271, - 0.6121779680252075, - 0.6119498014450073, - 0.6024479866027832, - 0.583931565284729, - 0.5569057464599609, - 0.5221076607704163, - 0.48048651218414307, - 0.433177649974823, - 0.38147154450416565, - 0.3267785608768463, - 0.270590603351593, - 0.27335360646247864, - 0.33036330342292786, - 0.3857802748680115, - 0.43809282779693604, - 0.4858740568161011, - 0.5278205871582031, - 0.5627882480621338, - 0.5898231863975525, - 0.6081880331039429, - 0.6173816919326782, - 0.617153525352478, - 0.6075097322463989, - 0.5887132883071899, - 0.5612770318984985, - 0.525949239730835, - 0.4836936593055725, - 0.43566280603408813, - 0.38316696882247925, - 0.32763800024986267, - 0.270590603351593, - 0.27335360646247864, - 0.32504281401634216, - 0.3752843737602234, - 0.42270785570144653, - 0.4660196900367737, - 0.5040383338928223, - 0.5357269048690796, - 0.5602209568023682, - 0.5768522024154663, - 0.5851671695709229, - 0.5849390029907227, - 0.5761739015579224, - 0.5591109991073608, - 0.5342156887054443, - 0.5021671056747437, - 0.4638392925262451, - 0.4202778935432434, - 0.37267109751701355, - 0.322317510843277, - 0.270590603351593, - 0.27335360646247864, - 0.3141189515590668, - 0.3537346422672272, - 0.3911200761795044, - 0.4252554476261139, - 0.4552096426486969, - 0.48016560077667236, - 0.4994426369667053, - 0.5125148296356201, - 0.5190256237983704, - 0.5187974572181702, - 0.5118365287780762, - 0.4983327388763428, - 0.4786544442176819, - 0.4533383846282959, - 0.4230750799179077, - 0.3886900842189789, - 0.35112136602401733, - 0.3113936483860016, - 0.270590603351593, - 0.27335360646247864, - 0.29877549409866333, - 0.3234662711620331, - 0.34675243496894836, - 0.36799874901771545, - 0.3866257071495056, - 0.4021252393722534, - 0.41407454013824463, - 0.42214763164520264, - 0.42612433433532715, - 0.42589616775512695, - 0.42146939039230347, - 0.4129646420478821, - 0.40061402320861816, - 0.3847544193267822, - 0.3658183813095093, - 0.34432244300842285, - 0.32085299491882324, - 0.29605019092559814, - 0.270590603351593, - 0.27335360646247864, - 0.28067514300346375, - 0.28775927424430847, - 0.294412761926651, - 0.30045413970947266, - 0.3057185709476471, - 0.3100625276565552, - 0.31336745619773865, - 0.31554320454597473, - 0.3165304958820343, - 0.3163023293018341, - 0.3148649334907532, - 0.3122575581073761, - 0.3085513114929199, - 0.3038472533226013, - 0.2982737421989441, - 0.2919827699661255, - 0.28514596819877625, - 0.27794981002807617, - 0.270590603351593, - 0.273353636264801, - 0.2617793083190918, - 0.25048306584358215, - 0.2397729456424713, - 0.22994115948677063, - 0.22125588357448578, - 0.21395398676395416, - 0.20823466777801514, - 0.2042539417743683, - 0.20212045311927795, - 0.20189228653907776, - 0.20357567071914673, - 0.20712479948997498, - 0.2124427855014801, - 0.21938452124595642, - 0.22776077687740326, - 0.237342968583107, - 0.24786975979804993, - 0.2590540051460266, - 0.2705906331539154, - 0.273353636264801, - 0.24413572251796722, - 0.21567712724208832, - 0.1887541115283966, - 0.16410106420516968, - 0.1423904448747635, - 0.12421451508998871, - 0.11006899178028107, - 0.10033977031707764, - 0.09529225528240204, - 0.09506408870220184, - 0.09966149926185608, - 0.10895909368991852, - 0.12270326912403107, - 0.14051911234855652, - 0.1619206666946411, - 0.1863241195678711, - 0.21306383609771729, - 0.24141040444374084, - 0.2705906331539154, - 0.273353636264801, - 0.22965632379055023, - 0.18711328506469727, - 0.1468849629163742, - 0.11006869375705719, - 0.07766872644424438, - 0.05056886374950409, - 0.02950829267501831, - 0.015061497688293457, - 0.007622569799423218, - 0.0073944032192230225, - 0.014383196830749512, - 0.02839839458465576, - 0.049057647585868835, - 0.07579739391803741, - 0.10788828134536743, - 0.1444549709558487, - 0.18449997901916504, - 0.22693100571632385, - 0.2705906331539154 - ], - "z": [ - -1.7622191905975342, - -1.7682132720947266, - -1.7737809419631958, - -1.7787702083587646, - -1.7830450534820557, - -1.7864890098571777, - -1.7890079021453857, - -1.7905330657958984, - -1.7910230159759521, - -1.7904642820358276, - -1.7888721227645874, - -1.7862900495529175, - -1.7827883958816528, - -1.7784627676010132, - -1.7734310626983643, - -1.7678306102752686, - -1.7618141174316406, - -1.755545735359192, - -1.7491964101791382, - -1.7429394721984863, - -1.7622191905975342, - -1.7696672677993774, - -1.7766491174697876, - -1.782974362373352, - -1.7884706258773804, - -1.7929878234863281, - -1.7964026927947998, - -1.7986223697662354, - -1.7995859384536743, - -1.799267292022705, - -1.7976752519607544, - -1.7948529720306396, - -1.7908776998519897, - -1.7858576774597168, - -1.7799298763275146, - -1.7732560634613037, - -1.766018271446228, - -1.7584139108657837, - -1.750650405883789, - -1.7429394721984863, - -1.7622191905975342, - -1.7702997922897339, - -1.7778968811035156, - -1.7848035097122192, - -1.7908310890197754, - -1.7958152294158936, - -1.7996200323104858, - -1.8021416664123535, - -1.8033114671707153, - -1.8030973672866821, - -1.801505208015442, - -1.7985785007476807, - -1.7943971157073975, - -1.7890750169754028, - -1.7827574014663696, - -1.7756166458129883, - -1.7678474187850952, - -1.7596617937088013, - -1.7512829303741455, - -1.7429394721984863, - -1.7622191905975342, - -1.7700424194335938, - -1.7773892879486084, - -1.7840594053268433, - -1.7898707389831543, - -1.794664978981018, - -1.7983111143112183, - -1.800709843635559, - -1.8017957210540771, - -1.8015391826629639, - -1.7999470233917236, - -1.797062873840332, - -1.792965292930603, - -1.7877660989761353, - -1.7816070318222046, - -1.7746562957763672, - -1.7671033143997192, - -1.7591540813446045, - -1.7510255575180054, - -1.7429394721984863, - -1.7622191905975342, - -1.768923044204712, - -1.7751810550689697, - -1.7808226346969604, - -1.785693645477295, - -1.7896615266799927, - -1.7926177978515625, - -1.7944819927215576, - -1.7952032089233398, - -1.7947616577148438, - -1.793169617652893, - -1.7904702425003052, - -1.7867374420166016, - -1.7820727825164795, - -1.7766036987304688, - -1.7704792022705078, - -1.7638665437698364, - -1.7569458484649658, - -1.7499061822891235, - -1.7429394721984863, - -1.7622191905975342, - -1.767063021659851, - -1.7715116739273071, - -1.7754439115524292, - -1.7787525653839111, - -1.7813471555709839, - -1.7831571102142334, - -1.784132957458496, - -1.7842481136322021, - -1.7834993600845337, - -1.7819072008132935, - -1.7795151472091675, - -1.7763882875442505, - -1.7726119756698608, - -1.76828932762146, - -1.7635380029678345, - -1.7584878206253052, - -1.7532764673233032, - -1.7480461597442627, - -1.7429394721984863, - -1.7622191905975342, - -1.764663815498352, - -1.7667787075042725, - -1.7685062885284424, - -1.7697994709014893, - -1.7706228494644165, - -1.7709541320800781, - -1.7707841396331787, - -1.7701176404953003, - -1.768972635269165, - -1.7673805952072144, - -1.7653846740722656, - -1.7630395889282227, - -1.7604091167449951, - -1.7575650215148926, - -1.7545850276947021, - -1.7515501976013184, - -1.7485435009002686, - -1.7456469535827637, - -1.7429394721984863, - -1.7622191905975342, - -1.761985421180725, - -1.7614949941635132, - -1.7607614994049072, - -1.7598047256469727, - -1.758650779724121, - -1.757331371307373, - -1.7558822631835938, - -1.754343032836914, - -1.7527557611465454, - -1.7511636018753052, - -1.749610185623169, - -1.7481375932693481, - -1.7467862367630005, - -1.7455929517745972, - -1.744590163230896, - -1.7438054084777832, - -1.7432599067687988, - -1.7429685592651367, - -1.7429394721984863, - -1.7622191905975342, - -1.7593181133270264, - -1.7562332153320312, - -1.7530486583709717, - -1.7498512268066406, - -1.7467283010482788, - -1.7437649965286255, - -1.7410420179367065, - -1.7386337518692017, - -1.7366060018539429, - -1.7350138425827026, - -1.7339009046554565, - -1.7332974672317505, - -1.733219861984253, - -1.7336704730987549, - -1.7346367835998535, - -1.7360925674438477, - -1.7379980087280273, - -1.740301251411438, - -1.7429394721984863, - -1.7622191905975342, - -1.7569509744644165, - -1.751563549041748, - -1.7462037801742554, - -1.7410179376602173, - -1.736147403717041, - -1.7317250967025757, - -1.7278716564178467, - -1.7246922254562378, - -1.7222734689712524, - -1.7206813097000122, - -1.7199592590332031, - -1.7201271057128906, - -1.7211800813674927, - -1.723089575767517, - -1.7258033752441406, - -1.7292476892471313, - -1.7333283424377441, - -1.7379341125488281, - -1.7429394721984863, - -1.7622191905975342, - -1.7551405429840088, - -1.747991919517517, - -1.7409684658050537, - -1.7342617511749268, - -1.7280546426773071, - -1.7225165367126465, - -1.7177984714508057, - -1.71402907371521, - -1.7113112211227417, - -1.709719181060791, - -1.7092961072921753, - -1.71005380153656, - -1.711971402168274, - -1.7149966955184937, - -1.71904718875885, - -1.7240123748779297, - -1.7297567129135132, - -1.7361236810684204, - -1.7429394721984863, - -1.7622191905975342, - -1.7540827989578247, - -1.7459053993225098, - -1.7379101514816284, - -1.73031485080719, - -1.7233270406723022, - -1.7171369791030884, - -1.711913824081421, - -1.7077999114990234, - -1.7049074172973633, - -1.703315258026123, - -1.7030669450759888, - -1.7041692733764648, - -1.7065919637680054, - -1.7102690935134888, - -1.7151004076004028, - -1.7209540605545044, - -1.7276703119277954, - -1.7350659370422363, - -1.7429394721984863, - -1.7622191905975342, - -1.7538926601409912, - -1.7455302476882935, - -1.7373601198196411, - -1.7296051979064941, - -1.722476840019226, - -1.7161695957183838, - -1.7108556032180786, - -1.7066797018051147, - -1.7037558555603027, - -1.7021636962890625, - -1.70194673538208, - -1.703110933303833, - -1.7056245803833008, - -1.7094190120697021, - -1.7143906354904175, - -1.720404028892517, - -1.7272950410842896, - -1.7348757982254028, - -1.7429394721984863, - -1.7622191905975342, - -1.7545905113220215, - -1.7469069957733154, - -1.7393780946731567, - -1.732209324836731, - -1.725596308708191, - -1.7197191715240479, - -1.714738368988037, - -1.7107899188995361, - -1.7079812288284302, - -1.7063891887664795, - -1.7060569524765015, - -1.706993818283081, - -1.7091741561889648, - -1.7125383615493774, - -1.7169948816299438, - -1.7224220037460327, - -1.7286717891693115, - -1.735573649406433, - -1.7429394721984863, - -1.7622191905975342, - -1.7561008930206299, - -1.749886393547058, - -1.7437453269958496, - -1.7378453016281128, - -1.7323472499847412, - -1.7274010181427002, - -1.7231415510177612, - -1.7196850776672363, - -1.7171258926391602, - -1.71553373336792, - -1.7149521112442017, - -1.7153968811035156, - -1.7168558835983276, - -1.7192893028259277, - -1.7226308584213257, - -1.7267892360687256, - -1.7316511869430542, - -1.7370840311050415, - -1.7429394721984863, - -1.7622191905975342, - -1.758259892463684, - -1.754145622253418, - -1.7499886751174927, - -1.7459022998809814, - -1.7419981956481934, - -1.7383825778961182, - -1.7351542711257935, - -1.7324012517929077, - -1.730198621749878, - -1.7286065816879272, - -1.727668285369873, - -1.7274096012115479, - -1.7278375625610352, - -1.7289402484893799, - -1.7306878566741943, - -1.7330325841903687, - -1.735910415649414, - -1.7392430305480957, - -1.7429394721984863, - -1.7622191905975342, - -1.7608338594436646, - -1.759223222732544, - -1.7574313879013062, - -1.755507230758667, - -1.7535032033920288, - -1.7514740228652954, - -1.7494748830795288, - -1.7475605010986328, - -1.7457829713821411, - -1.7441909313201904, - -1.7428276538848877, - -1.7417303323745728, - -1.7409288883209229, - -1.7404453754425049, - -1.7402927875518799, - -1.7404752969741821, - -1.74098801612854, - -1.7418169975280762, - -1.7429394721984863, - -1.7622191905975342, - -1.7635436058044434, - -1.7645689249038696, - -1.7652671337127686, - -1.7656192779541016, - -1.765615701675415, - -1.7652565240859985, - -1.7645516395568848, - -1.7635201215744019, - -1.7621901035308838, - -1.760598063468933, - -1.7587871551513672, - -1.7568069696426392, - -1.7547115087509155, - -1.7525578737258911, - -1.7504048347473145, - -1.7483110427856445, - -1.7463337182998657, - -1.744526743888855, - -1.7429394721984863, - -1.7622191905975342, - -1.7660956382751465, - -1.7696032524108887, - -1.7726466655731201, - -1.7751425504684448, - -1.7770230770111084, - -1.778236746788025, - -1.7787505388259888, - -1.7785505056381226, - -1.777642011642456, - -1.7760499715805054, - -1.7738176584243774, - -1.7710059881210327, - -1.767691731452942, - -1.763965129852295, - -1.7599281072616577, - -1.755690574645996, - -1.7513681650161743, - -1.747078776359558, - -1.7429394721984863, - -1.7622191905975342, - -1.7682132720947266, - -1.7737809419631958, - -1.7787702083587646, - -1.7830451726913452, - -1.7864890098571777, - -1.7890079021453857, - -1.7905330657958984, - -1.7910230159759521, - -1.7904642820358276, - -1.7888721227645874, - -1.7862900495529175, - -1.7827883958816528, - -1.7784627676010132, - -1.7734310626983643, - -1.7678306102752686, - -1.7618141174316406, - -1.755545735359192, - -1.7491964101791382, - -1.7429394721984863 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.0168136078864336, - 0.05519728362560272, - 0.09253446757793427, - 0.12780670821666718, - 0.1600518524646759, - 0.1883903294801712, - 0.21204915642738342, - 0.2303830236196518, - 0.24289174377918243, - 0.2492341697216034, - 0.2492372691631317, - 0.24290098249912262, - 0.23039813339710236, - 0.21206976473331451, - 0.18841584026813507, - 0.16008156538009644, - 0.1278398036956787, - 0.09257006645202637, - 0.055234409868717194, - 0.016851242631673813, - 0.0168136116117239, - 0.03880756348371506, - 0.06020207703113556, - 0.0804135873913765, - 0.09889078140258789, - 0.11512961238622665, - 0.12868718802928925, - 0.13919362425804138, - 0.14636237919330597, - 0.14999791979789734, - 0.15000101923942566, - 0.14637161791324615, - 0.13920874893665314, - 0.12870776653289795, - 0.11515511572360992, - 0.09892047941684723, - 0.08044668287038803, - 0.06023767590522766, - 0.03884468227624893, - 0.01685124821960926, - 0.016813617199659348, - 0.02003447338938713, - 0.023167993873357773, - 0.026128685101866722, - 0.028835803270339966, - 0.031215528026223183, - 0.0332028865814209, - 0.03474370390176773, - 0.03579596430063248, - 0.0363309308886528, - 0.03633403778076172, - 0.03580520302057266, - 0.03475882112979889, - 0.0332234650850296, - 0.031241005286574364, - 0.028865523636341095, - 0.026161784306168556, - 0.023203592747449875, - 0.020071595907211304, - 0.01685125194489956, - 0.016813620924949646, - 0.0009123906493186951, - -0.014554580673575401, - -0.02916540391743183, - -0.04252152144908905, - -0.05425861477851868, - -0.06405653059482574, - -0.071648009121418, - -0.07682595402002335, - -0.07944918423891068, - -0.07944606989622116, - -0.07681671530008316, - -0.07163288444280624, - -0.06403595954179764, - -0.0542331263422966, - -0.042491815984249115, - -0.0291323009878397, - -0.0145189817994833, - 0.000949513167142868, - 0.016851257532835007, - 0.016813626512885094, - -0.016486523672938347, - -0.04887782782316208, - -0.07947671413421631, - -0.10744854062795639, - -0.13203029334545135, - -0.15255147218704224, - -0.16845229268074036, - -0.17929905652999878, - -0.1847958266735077, - -0.18479272723197937, - -0.1792898178100586, - -0.1684371829032898, - -0.15253087878227234, - -0.13200484216213226, - -0.10741887241601944, - -0.07944361865520477, - -0.04884222894906998, - -0.016449397429823875, - 0.016851263120770454, - 0.016813630238175392, - -0.030276818200945854, - -0.0760822519659996, - -0.11935321241617203, - -0.1589093953371048, - -0.19367176294326782, - -0.22269217669963837, - -0.2451789677143097, - -0.26051872968673706, - -0.2682931125164032, - -0.2682900130748749, - -0.2605094909667969, - -0.24516382813453674, - -0.22267158329486847, - -0.19364632666110992, - -0.15887969732284546, - -0.1193201020359993, - -0.0760466530919075, - -0.030239691957831383, - 0.016851266846060753, - 0.01681363210082054, - -0.03896411508321762, - -0.09321987628936768, - -0.14447368681430817, - -0.1913275122642517, - -0.2325032353401184, - -0.2668777108192444, - -0.2935134172439575, - -0.31168362498283386, - -0.3208927810192108, - -0.3208896815776825, - -0.3116743862628937, - -0.29349827766418457, - -0.26685717701911926, - -0.2324777990579605, - -0.19129782915115356, - -0.14444057643413544, - -0.09318427741527557, - -0.03892698884010315, - 0.016851268708705902, - 0.01681363396346569, - -0.04160699248313904, - -0.09843354672193527, - -0.15211592614650726, - -0.20118987560272217, - -0.2443166971206665, - -0.28032004833221436, - -0.30821794271469116, - -0.3272492289543152, - -0.33689484000205994, - -0.3368917405605316, - -0.327239990234375, - -0.3082028031349182, - -0.28029948472976685, - -0.24429121613502502, - -0.20116016268730164, - -0.15208281576633453, - -0.09839794784784317, - -0.04156986624002457, - 0.016851268708705902, - 0.01681363210082054, - -0.0379190668463707, - -0.09115829318761826, - -0.14145180583000183, - -0.18742774426937103, - -0.22783195972442627, - -0.26156240701675415, - -0.28769898414611816, - -0.3055287301540375, - -0.3145652711391449, - -0.3145621716976166, - -0.3055194914340973, - -0.2876838445663452, - -0.26154184341430664, - -0.22780652344226837, - -0.1873980462551117, - -0.1414186954498291, - -0.09112269431352615, - -0.037881940603256226, - 0.016851268708705902, - 0.016813630238175392, - -0.028299978002905846, - -0.07218249142169952, - -0.11363690346479416, - -0.15153245627880096, - -0.18483543395996094, - -0.21263746917247772, - -0.23418018221855164, - -0.24887588620185852, - -0.25632375478744507, - -0.25632065534591675, - -0.24886664748191833, - -0.2341650426387787, - -0.21261689066886902, - -0.18480998277664185, - -0.15150275826454163, - -0.11360379308462143, - -0.07214689254760742, - -0.028262851759791374, - 0.016851264983415604, - 0.016813626512885094, - -0.013792101293802261, - -0.043562471866607666, - -0.07168541848659515, - -0.09739384055137634, - -0.11998645216226578, - -0.1388470083475113, - -0.1534610390663147, - -0.16342991590499878, - -0.16848169267177582, - -0.1684785932302475, - -0.1634206771850586, - -0.15344592928886414, - -0.1388264298439026, - -0.11996098607778549, - -0.0973641499876976, - -0.07165232300758362, - -0.043526872992515564, - -0.013754978775978088, - 0.016851261258125305, - 0.016813620924949646, - 0.004032407887279987, - -0.008399656042456627, - -0.020143454894423485, - -0.030878642573952675, - -0.04031238704919815, - -0.04818739742040634, - -0.0542888268828392, - -0.05845024436712265, - -0.06055815517902374, - -0.06055504083633423, - -0.058441005647182465, - -0.05427370220422745, - -0.048166804015636444, - -0.04028691351413727, - -0.030848944559693336, - -0.020110351964831352, - -0.008364060893654823, - 0.00406953040510416, - 0.016851257532835007, - 0.0168136153370142, - 0.023241983726620674, - 0.029495511204004288, - 0.03540363535284996, - 0.04080516844987869, - 0.04555279761552811, - 0.04951700568199158, - 0.05258967727422714, - 0.05468697100877762, - 0.05575169622898102, - 0.055754803121089935, - 0.054696209728717804, - 0.0526047945022583, - 0.04953760653734207, - 0.04557829350233078, - 0.04083487391471863, - 0.035436734557151794, - 0.02953110821545124, - 0.023279106244444847, - 0.01685125194489956, - 0.0168136116117239, - 0.04175499081611633, - 0.0660165399312973, - 0.08893648535013199, - 0.10988961905241013, - 0.1283043771982193, - 0.14367850124835968, - 0.15559259057044983, - 0.16372165083885193, - 0.16784395277500153, - 0.16784705221652985, - 0.16373088955879211, - 0.1556077003479004, - 0.14369909465312958, - 0.12832990288734436, - 0.10991932451725006, - 0.08896958082914352, - 0.0660521388053894, - 0.041792113333940506, - 0.01685124635696411, - 0.016813606023788452, - 0.05756521224975586, - 0.09720572829246521, - 0.13465388119220734, - 0.1688881814479828, - 0.19897477328777313, - 0.2240930199623108, - 0.24355773627758026, - 0.2568379342556, - 0.26357144117355347, - 0.2635745406150818, - 0.25684717297554016, - 0.24357284605503082, - 0.2241136133670807, - 0.1990002989768982, - 0.16891790926456451, - 0.13468697667121887, - 0.09724132716655731, - 0.05760233849287033, - 0.016851242631673813, - 0.016813604161143303, - 0.06895940005779266, - 0.11968331784009933, - 0.16760171949863434, - 0.21140754222869873, - 0.24990585446357727, - 0.28204652667045593, - 0.3069528639316559, - 0.3239454925060272, - 0.33256083726882935, - 0.33256393671035767, - 0.3239547312259674, - 0.30696800351142883, - 0.28206712007522583, - 0.24993136525154114, - 0.21143728494644165, - 0.16763482987880707, - 0.11971891671419144, - 0.06899652630090714, - 0.016851238906383514, - 0.016813602298498154, - 0.07470282912254333, - 0.13101349771022797, - 0.18420961499214172, - 0.23284012079238892, - 0.27557846903800964, - 0.3112589418888092, - 0.33890819549560547, - 0.3577720820903778, - 0.3673360347747803, - 0.3673391342163086, - 0.357781320810318, - 0.3389233350753784, - 0.3112795352935791, - 0.2756040096282959, - 0.23286983370780945, - 0.18424272537231445, - 0.13104909658432007, - 0.0747399553656578, - 0.016851238906383514, - 0.016813602298498154, - 0.07417307794094086, - 0.12996844947338104, - 0.18267777562141418, - 0.2308632731437683, - 0.2732105255126953, - 0.30856451392173767, - 0.3359608054161072, - 0.3546521067619324, - 0.3641285300254822, - 0.3641316294670105, - 0.35466134548187256, - 0.3359759449958801, - 0.30858510732650757, - 0.27323609590530396, - 0.23089300096035004, - 0.18271088600158691, - 0.13000404834747314, - 0.07421020418405533, - 0.016851238906383514, - 0.016813604161143303, - 0.06742756068706512, - 0.11666141450405121, - 0.16317218542099, - 0.20569120347499847, - 0.24305865168571472, - 0.2742552161216736, - 0.2984299957752228, - 0.314923495054245, - 0.32328587770462036, - 0.3232889771461487, - 0.3149327337741852, - 0.2984451353549957, - 0.2742758095264435, - 0.2430841624736786, - 0.2057209461927414, - 0.16320529580116272, - 0.11669701337814331, - 0.0674646869301796, - 0.016851240769028664, - 0.0168136078864336, - 0.055197276175022125, - 0.09253445267677307, - 0.1278066784143448, - 0.16005182266235352, - 0.18839028477668762, - 0.21204911172389984, - 0.2303829789161682, - 0.24289169907569885, - 0.2492341250181198, - 0.24923722445964813, - 0.24290093779563904, - 0.23039808869361877, - 0.21206973493099213, - 0.18841581046581268, - 0.16008153557777405, - 0.12783977389335632, - 0.09257005155086517, - 0.0552344024181366, - 0.016851242631673813 - ], - "y": [ - 0.26402249932289124, - 0.2199821025133133, - 0.1771114468574524, - 0.1365799605846405, - 0.09949319064617157, - 0.06686282157897949, - 0.0395788699388504, - 0.01838555932044983, - 0.003861069679260254, - -0.0035984814167022705, - -0.003789573907852173, - 0.003292977809906006, - 0.017455995082855225, - 0.038313135504722595, - 0.06529547274112701, - 0.09766700863838196, - 0.1345447599887848, - 0.17492273449897766, - 0.2176995575428009, - 0.2617083787918091, - 0.26402249932289124, - 0.21012403070926666, - 0.1576642096042633, - 0.10807400941848755, - 0.0627061128616333, - 0.022798046469688416, - -0.010561615228652954, - -0.03646290302276611, - -0.054199278354644775, - -0.06328696012496948, - -0.06347805261611938, - -0.05476737022399902, - -0.037392497062683105, - -0.011827349662780762, - 0.02123071253299713, - 0.06087994575500488, - 0.10603880882263184, - 0.15547549724578857, - 0.20784148573875427, - 0.2617083787918091, - 0.26402249932289124, - 0.20610497891902924, - 0.1497357338666916, - 0.09645238518714905, - 0.04770834743976593, - 0.004833221435546875, - -0.031003445386886597, - -0.058824121952056885, - -0.07786998152732849, - -0.08762145042419434, - -0.08781254291534424, - -0.07843807339668274, - -0.05975371599197388, - -0.032269179821014404, - 0.003265887498855591, - 0.04588216543197632, - 0.09441718459129333, - 0.14754700660705566, - 0.20382243394851685, - 0.2617083787918091, - 0.26402249932289124, - 0.2083604782819748, - 0.1541852056980133, - 0.10297445952892303, - 0.056125104427337646, - 0.014915123581886292, - -0.019531428813934326, - -0.04627496004104614, - -0.06458595395088196, - -0.07396489381790161, - -0.07415598630905151, - -0.0651540458202362, - -0.047204554080963135, - -0.02079719305038452, - 0.013347789645195007, - 0.05429893732070923, - 0.10093925893306732, - 0.15199649333953857, - 0.2060779333114624, - 0.2617083787918091, - 0.26402249932289124, - 0.21664610505104065, - 0.17053046822547913, - 0.1269334852695465, - 0.0870443731546402, - 0.051951199769973755, - 0.02261124551296234, - -0.00017523765563964844, - -0.01578664779663086, - -0.023797154426574707, - -0.02398824691772461, - -0.016354739665985107, - -0.0011048316955566406, - 0.021345511078834534, - 0.050383880734443665, - 0.08521819114685059, - 0.1248982846736908, - 0.1683417409658432, - 0.21436356008052826, - 0.2617083787918091, - 0.26402249932289124, - 0.2300640046596527, - 0.19700025022029877, - 0.16573312878608704, - 0.1371155083179474, - 0.1119280457496643, - 0.09085774421691895, - 0.0744793564081192, - 0.0632396787405014, - 0.057445228099823, - 0.057254135608673096, - 0.06267158687114716, - 0.0735497921705246, - 0.08959203958511353, - 0.11036069691181183, - 0.13528932631015778, - 0.16369792819023132, - 0.19481152296066284, - 0.22778144478797913, - 0.2617083787918091, - 0.26402246952056885, - 0.24716010689735413, - 0.23072612285614014, - 0.2151688039302826, - 0.20091253519058228, - 0.18834617733955383, - 0.17781253159046173, - 0.16959887742996216, - 0.1639293134212494, - 0.16095846891403198, - 0.16076737642288208, - 0.16336125135421753, - 0.16866931319236755, - 0.1765468418598175, - 0.18677887320518494, - 0.19908638298511505, - 0.21313361823558807, - 0.2285373955965042, - 0.24487754702568054, - 0.2617083787918091, - 0.26402246952056885, - 0.2660817801952362, - 0.2680533826351166, - 0.2698834538459778, - 0.2715221047401428, - 0.27292460203170776, - 0.2740527093410492, - 0.274875670671463, - 0.2753710150718689, - 0.2755252420902252, - 0.2753341495990753, - 0.27480292320251465, - 0.273946076631546, - 0.2727870047092438, - 0.2713572680950165, - 0.2696959376335144, - 0.26784825325012207, - 0.26586464047431946, - 0.263799250125885, - 0.2617083787918091, - 0.26402246952056885, - 0.2847786247730255, - 0.3049370348453522, - 0.32394784688949585, - 0.34129250049591064, - 0.3564978241920471, - 0.3691491484642029, - 0.37890130281448364, - 0.3854883313179016, - 0.3887304663658142, - 0.3885393738746643, - 0.38492023944854736, - 0.37797173857688904, - 0.36788344383239746, - 0.3549305200576782, - 0.3394663333892822, - 0.32191264629364014, - 0.30274832248687744, - 0.28249606490135193, - 0.2617083787918091, - 0.26402246952056885, - 0.3012244701385498, - 0.33738017082214355, - 0.3715032935142517, - 0.40266305208206177, - 0.43000948429107666, - 0.45279666781425476, - 0.4704030156135559, - 0.48234832286834717, - 0.4883066713809967, - 0.4881155788898468, - 0.4817802309989929, - 0.4694734811782837, - 0.45153099298477173, - 0.42844218015670776, - 0.40083688497543335, - 0.369468092918396, - 0.33519142866134644, - 0.2989419400691986, - 0.2617083489894867, - 0.26402246952056885, - 0.31363722681999207, - 0.3618670701980591, - 0.4073963761329651, - 0.4489833116531372, - 0.48549339175224304, - 0.5159307718276978, - 0.5394651889801025, - 0.5554547309875488, - 0.5634630918502808, - 0.5632719993591309, - 0.5548865795135498, - 0.5385355949401855, - 0.5146651268005371, - 0.48392611742019653, - 0.4471571445465088, - 0.4053611755371094, - 0.35967832803726196, - 0.31135469675064087, - 0.2617083489894867, - 0.26402246952056885, - 0.3206717371940613, - 0.37574419379234314, - 0.42773759365081787, - 0.4752337634563446, - 0.5169370174407959, - 0.5517098903656006, - 0.5786038637161255, - 0.5968853235244751, - 0.606055498123169, - 0.605864405632019, - 0.5963171720504761, - 0.5776742696762085, - 0.5504442453384399, - 0.5153697729110718, - 0.4734075963497162, - 0.42570239305496216, - 0.3735554814338684, - 0.3183891773223877, - 0.2617083489894867, - 0.26402246952056885, - 0.3215656876564026, - 0.377507746219635, - 0.43032264709472656, - 0.47856974601745605, - 0.5209329724311829, - 0.5562568306922913, - 0.5835777521133423, - 0.6021504402160645, - 0.6114683151245117, - 0.6112772226333618, - 0.6015823483467102, - 0.5826481580734253, - 0.5549911260604858, - 0.5193657279014587, - 0.47674357891082764, - 0.42828744649887085, - 0.3753190040588379, - 0.3192831575870514, - 0.2617083489894867, - 0.26402246952056885, - 0.31622225046157837, - 0.3669666051864624, - 0.41487133502960205, - 0.4586297273635864, - 0.49704819917678833, - 0.5290787816047668, - 0.5538477897644043, - 0.5706795454025269, - 0.5791147947311401, - 0.5789237022399902, - 0.5701113939285278, - 0.5529181957244873, - 0.5278130769729614, - 0.4954809546470642, - 0.4568036198616028, - 0.41283613443374634, - 0.3647778630256653, - 0.3139396905899048, - 0.2617083489894867, - 0.26402246952056885, - 0.30522045493125916, - 0.3452630937099457, - 0.3830581307411194, - 0.4175746440887451, - 0.4478710889816284, - 0.4731210470199585, - 0.4926357865333557, - 0.505882978439331, - 0.5125013589859009, - 0.512310266494751, - 0.5053149461746216, - 0.4917062222957611, - 0.4718553423881531, - 0.4463038146495819, - 0.4157485067844391, - 0.38102293014526367, - 0.34307435154914856, - 0.30293789505958557, - 0.2617083489894867, - 0.26402246952056885, - 0.2897524833679199, - 0.3147491216659546, - 0.33833047747612, - 0.3598533570766449, - 0.3787306547164917, - 0.3944474458694458, - 0.4065750241279602, - 0.4147825837135315, - 0.4188462495803833, - 0.4186551570892334, - 0.41421449184417725, - 0.405645489692688, - 0.39318177103996277, - 0.3771633505821228, - 0.35802721977233887, - 0.3362952768802643, - 0.31256040930747986, - 0.2874699532985687, - 0.2617083787918091, - 0.26402246952056885, - 0.2714945673942566, - 0.2787312865257263, - 0.28553521633148193, - 0.29172080755233765, - 0.29711925983428955, - 0.30158334970474243, - 0.30499133467674255, - 0.3072502613067627, - 0.3082984387874603, - 0.3081073462963104, - 0.30668216943740845, - 0.30406177043914795, - 0.3003176748752594, - 0.29555195569992065, - 0.28989464044570923, - 0.2835000455379486, - 0.2765425741672516, - 0.2692120373249054, - 0.2617083787918091, - 0.26402246952056885, - 0.2524252235889435, - 0.24111273884773254, - 0.23039361834526062, - 0.2205602377653122, - 0.21188083291053772, - 0.20459216833114624, - 0.19889304041862488, - 0.19493889808654785, - 0.19283762574195862, - 0.19264653325080872, - 0.194370836019516, - 0.19796347618103027, - 0.20332646369934082, - 0.21031352877616882, - 0.21873408555984497, - 0.2283584177494049, - 0.2389240264892578, - 0.2501426637172699, - 0.2617083787918091, - 0.26402246952056885, - 0.2346109002828598, - 0.20597001910209656, - 0.17888110876083374, - 0.15408307313919067, - 0.13225232064723969, - 0.1139843612909317, - 0.0997774749994278, - 0.09001922607421875, - 0.08497574925422668, - 0.08478465676307678, - 0.0894511342048645, - 0.09884791076183319, - 0.11271864175796509, - 0.1306849867105484, - 0.15225689113140106, - 0.17684590816497803, - 0.20378130674362183, - 0.2323283553123474, - 0.2617083787918091, - 0.26402249932289124, - 0.2199820876121521, - 0.1771114468574524, - 0.1365799456834793, - 0.09949316084384918, - 0.0668627917766571, - 0.039578840136528015, - 0.01838552951812744, - 0.003861039876937866, - -0.003598511219024658, - -0.0037896037101745605, - 0.003292948007583618, - 0.017455965280532837, - 0.03831310570240021, - 0.06529544293880463, - 0.09766699373722076, - 0.1345447450876236, - 0.17492270469665527, - 0.2176995575428009, - 0.2617083787918091 - ], - "z": [ - -1.778092384338379, - -1.7841523885726929, - -1.7898187637329102, - -1.7949371337890625, - -1.7993676662445068, - -1.8029897212982178, - -1.8057043552398682, - -1.8074376583099365, - -1.8081421852111816, - -1.8077987432479858, - -1.8064167499542236, - -1.8040339946746826, - -1.8007153272628784, - -1.7965513467788696, - -1.7916555404663086, - -1.7861616611480713, - -1.780219316482544, - -1.7739907503128052, - -1.7676458358764648, - -1.7613575458526611, - -1.778092384338379, - -1.7854787111282349, - -1.7924352884292603, - -1.7987723350524902, - -1.8043171167373657, - -1.8089182376861572, - -1.8124504089355469, - -1.8148170709609985, - -1.8159537315368652, - -1.8158293962478638, - -1.8144474029541016, - -1.8118455410003662, - -1.8080947399139404, - -1.8032972812652588, - -1.7975841760635376, - -1.7911109924316406, - -1.7840545177459717, - -1.7766071557998657, - -1.7689721584320068, - -1.7613575458526611, - -1.778092384338379, - -1.78599214553833, - -1.7934483289718628, - -1.8002573251724243, - -1.806233525276184, - -1.811213731765747, - -1.815062403678894, - -1.8176742792129517, - -1.8189783096313477, - -1.8189387321472168, - -1.8175567388534546, - -1.8148701190948486, - -1.8109519481658936, - -1.805909276008606, - -1.7998796701431274, - -1.793027400970459, - -1.7855395078659058, - -1.7776203155517578, - -1.7694857120513916, - -1.7613575458526611, - -1.778092384338379, - -1.7856372594833374, - -1.792748212814331, - -1.7992310523986816, - -1.804909110069275, - -1.8096274137496948, - -1.8132573366165161, - -1.8156996965408325, - -1.8168880939483643, - -1.8167898654937744, - -1.8154079914093018, - -1.8127799034118652, - -1.8089773654937744, - -1.804104208946228, - -1.7982932329177856, - -1.7917029857635498, - -1.784513235092163, - -1.776920199394226, - -1.7691307067871094, - -1.7613575458526611, - -1.778092384338379, - -1.7844524383544922, - -1.7904107570648193, - -1.7958048582077026, - -1.8004875183105469, - -1.8043310642242432, - -1.8072307109832764, - -1.8091073036193848, - -1.8099095821380615, - -1.8096157312393188, - -1.8082337379455566, - -1.8058013916015625, - -1.8023849725723267, - -1.7980777025222778, - -1.7929970026016235, - -1.7872813940048218, - -1.781087040901184, - -1.7745827436447144, - -1.7679458856582642, - -1.7613575458526611, - -1.778092384338379, - -1.782565951347351, - -1.786689281463623, - -1.7903499603271484, - -1.7934479713439941, - -1.7958987951278687, - -1.797635793685913, - -1.7986114025115967, - -1.7987990379333496, - -1.7981936931610107, - -1.7968116998672485, - -1.7946909666061401, - -1.7918890714645386, - -1.788482666015625, - -1.7845646142959595, - -1.780241847038269, - -1.7756321430206299, - -1.770861268043518, - -1.766059398651123, - -1.7613575458526611, - -1.778092384338379, - -1.7801823616027832, - -1.7819870710372925, - -1.7834573984146118, - -1.784553050994873, - -1.785244345664978, - -1.7855122089385986, - -1.7853494882583618, - -1.7847604751586914, - -1.7837613821029663, - -1.7823795080184937, - -1.780652403831482, - -1.7786271572113037, - -1.7763590812683105, - -1.7739101648330688, - -1.7713470458984375, - -1.7687395811080933, - -1.7661590576171875, - -1.7636758089065552, - -1.7613575458526611, - -1.778092384338379, - -1.7775598764419556, - -1.7768137454986572, - -1.7758742570877075, - -1.7747669219970703, - -1.773522138595581, - -1.7721737623214722, - -1.7707586288452148, - -1.769315242767334, - -1.767883062362671, - -1.7665010690689087, - -1.765207052230835, - -1.7640362977981567, - -1.7630207538604736, - -1.7621879577636719, - -1.7615607976913452, - -1.761156439781189, - -1.7609857320785522, - -1.7610533237457275, - -1.7613575458526611, - -1.778092384338379, - -1.7749828100204468, - -1.771729826927185, - -1.7684221267700195, - -1.7651499509811401, - -1.7620025873184204, - -1.759065866470337, - -1.7564198970794678, - -1.7541369199752808, - -1.7522790431976318, - -1.7508971691131592, - -1.7500287294387817, - -1.7496976852416992, - -1.7499128580093384, - -1.7506684064865112, - -1.751943826675415, - -1.753704309463501, - -1.7559016942977905, - -1.7584762573242188, - -1.7613575458526611, - -1.778092384338379, - -1.7727302312850952, - -1.7672861814498901, - -1.7619086503982544, - -1.7567442655563354, - -1.7519340515136719, - -1.74760901927948, - -1.7438873052597046, - -1.7408703565597534, - -1.738640546798706, - -1.7372586727142334, - -1.736762285232544, - -1.737165093421936, - -1.7384560108184814, - -1.7405998706817627, - -1.7435381412506104, - -1.7471908330917358, - -1.7514581680297852, - -1.7562236785888672, - -1.7613575458526611, - -1.778092384338379, - -1.7710464000701904, - -1.7639644145965576, - -1.7570396661758423, - -1.7504608631134033, - -1.7444075345993042, - -1.7390447854995728, - -1.7345188856124878, - -1.730953335762024, - -1.7284454107284546, - -1.7270634174346924, - -1.726845145225525, - -1.7277965545654297, - -1.7298916578292847, - -1.733073353767395, - -1.7372547388076782, - -1.7423218488693237, - -1.7481364011764526, - -1.7545398473739624, - -1.7613575458526611, - -1.778092384338379, - -1.7701138257980347, - -1.7621246576309204, - -1.754342794418335, - -1.7469804286956787, - -1.7402386665344238, - -1.7343010902404785, - -1.7293298244476318, - -1.725460410118103, - -1.7227983474731445, - -1.7214164733886719, - -1.721352219581604, - -1.7226074934005737, - -1.7251479625701904, - -1.7289044857025146, - -1.7337744235992432, - -1.7396249771118164, - -1.7462965250015259, - -1.7536072731018066, - -1.7613575458526611, - -1.778092384338379, - -1.770033359527588, - -1.7619659900665283, - -1.7541102170944214, - -1.7466803789138794, - -1.7398791313171387, - -1.7338920831680298, - -1.7288823127746582, - -1.7249867916107178, - -1.7223114967346191, - -1.720929503440857, - -1.7208786010742188, - -1.7221601009368896, - -1.7247389554977417, - -1.7285449504852295, - -1.7334742546081543, - -1.7393923997879028, - -1.7461379766464233, - -1.7535268068313599, - -1.7613575458526611, - -1.778092384338379, - -1.7708139419555664, - -1.7635056972503662, - -1.7563672065734863, - -1.7495930194854736, - -1.7433680295944214, - -1.73786199092865, - -1.7332251071929932, - -1.729583740234375, - -1.7270374298095703, - -1.725655436515808, - -1.7254756689071655, - -1.726502776145935, - -1.7287089824676514, - -1.7320338487625122, - -1.736387014389038, - -1.7416493892669678, - -1.7476776838302612, - -1.7543073892593384, - -1.7613575458526611, - -1.778092384338379, - -1.7723708152770996, - -1.766577124595642, - -1.7608692646026611, - -1.75540292263031, - -1.750327229499817, - -1.7457807064056396, - -1.7418873310089111, - -1.738753318786621, - -1.7364641427993774, - -1.7350821495056152, - -1.734645128250122, - -1.7351651191711426, - -1.7366276979446411, - -1.7389931678771973, - -1.742196798324585, - -1.7461514472961426, - -1.7507489919662476, - -1.7558642625808716, - -1.7613575458526611, - -1.778092384338379, - -1.7745352983474731, - -1.7708470821380615, - -1.767128348350525, - -1.763480305671692, - -1.760002613067627, - -1.7567901611328125, - -1.7539305686950684, - -1.7515016794204712, - -1.7495700120925903, - -1.7481880187988281, - -1.7473936080932617, - -1.7472082376480103, - -1.747637152671814, - -1.7486684322357178, - -1.7502741813659668, - -1.7524105310440063, - -1.7550190687179565, - -1.7580288648605347, - -1.7613575458526611, - -1.778092384338379, - -1.7770730257034302, - -1.775853157043457, - -1.7744662761688232, - -1.7729499340057373, - -1.7713457345962524, - -1.7696971893310547, - -1.7680494785308838, - -1.7664475440979004, - -1.7649348974227905, - -1.7635529041290283, - -1.7623393535614014, - -1.7613272666931152, - -1.7605441808700562, - -1.7600115537643433, - -1.7597438097000122, - -1.7597484588623047, - -1.760025143623352, - -1.7605664730072021, - -1.7613575458526611, - -1.778092384338379, - -1.779708743095398, - -1.781052827835083, - -1.782087802886963, - -1.7827856540679932, - -1.7831271886825562, - -1.7831032276153564, - -1.7827142477035522, - -1.7819709777832031, - -1.7808936834335327, - -1.77951180934906, - -1.7778629064559937, - -1.7759920358657837, - -1.7739500999450684, - -1.7717931270599365, - -1.769579529762268, - -1.7673699855804443, - -1.7652246952056885, - -1.76320219039917, - -1.7613575458526611, - -1.778092384338379, - -1.7821569442749023, - -1.7858824729919434, - -1.7891671657562256, - -1.791921615600586, - -1.7940704822540283, - -1.7955553531646729, - -1.7963356971740723, - -1.7963900566101074, - -1.7957171201705933, - -1.7943352460861206, - -1.792281985282898, - -1.7896133661270142, - -1.7864023447036743, - -1.7827364206314087, - -1.7787154912948608, - -1.774449348449707, - -1.7700543403625488, - -1.7656503915786743, - -1.7613575458526611, - -1.778092384338379, - -1.7841523885726929, - -1.7898187637329102, - -1.7949371337890625, - -1.7993676662445068, - -1.8029897212982178, - -1.8057043552398682, - -1.8074376583099365, - -1.8081421852111816, - -1.8077987432479858, - -1.8064167499542236, - -1.8040339946746826, - -1.8007153272628784, - -1.7965513467788696, - -1.7916555404663086, - -1.7861616611480713, - -1.780219316482544, - -1.7739907503128052, - -1.7676458358764648, - -1.7613575458526611 - ] - }, - { - "marker": { - "color": "black", - "size": 2 - }, - "mode": "markers", - "name": "Means", - "type": "scatter3d", - "x": [ - 0.41768988966941833, - 0.3657273054122925, - 0.31012240052223206, - 0.24059200286865234, - 0.1697518676519394, - 0.10865850746631622, - 0.05806989222764969, - 0.016391828656196594, - -0.01816883124411106, - -0.04711945727467537, - -0.07163569331169128, - -0.09261595457792282, - -0.11074595898389816, - -0.1265527904033661, - -0.1404455602169037 - ], - "y": [ - -0.44257861375808716, - -0.6822264194488525, - -0.9380183815956116, - -1.1362961530685425, - -1.2585935592651367, - -1.3373247385025024, - -1.3906916379928589, - -1.4285783767700195, - -1.456542730331421, - -1.4778602123260498, - -1.4945528507232666, - -1.507921814918518, - -1.5188349485397339, - -1.5278888940811157, - -1.5355067253112793 - ], - "z": [ - -0.1038898378610611, - 0.06224912405014038, - 0.23969367146492004, - 0.39837199449539185, - 0.5185961723327637, - 0.6083773374557495, - 0.6765723824501038, - 0.7295947670936584, - 0.7717674374580383, - 0.8059988021850586, - 0.8342801928520203, - 0.8580062389373779, - 0.8781763315200806, - 0.89552241563797, - 0.9105914831161499 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.382763534784317, - 0.387756884098053, - 0.39356669783592224, - 0.4000345468521118, - 0.40698400139808655, - 0.4142254590988159, - 0.42156144976615906, - 0.4287918210029602, - 0.4357193410396576, - 0.44215506315231323, - 0.4479234516620636, - 0.45286715030670166, - 0.4568513035774231, - 0.45976725220680237, - 0.46153542399406433, - 0.4621075987815857, - 0.4614681601524353, - 0.45963460206985474, - 0.45665687322616577, - 0.45261624455451965, - 0.382763534784317, - 0.3846471607685089, - 0.3874320983886719, - 0.3910423815250397, - 0.39537954330444336, - 0.40032529830932617, - 0.40574467182159424, - 0.41148990392684937, - 0.41740426421165466, - 0.42332640290260315, - 0.4290947914123535, - 0.43455207347869873, - 0.43954941630363464, - 0.44395050406455994, - 0.4476352334022522, - 0.4505031406879425, - 0.45247599482536316, - 0.453499972820282, - 0.4535471498966217, - 0.45261624455451965, - 0.382763534784317, - 0.381384938955307, - 0.3809966444969177, - 0.3816092610359192, - 0.3832060396671295, - 0.3857434391975403, - 0.38915228843688965, - 0.3933395445346832, - 0.39819103479385376, - 0.4035743772983551, - 0.40934276580810547, - 0.4153388440608978, - 0.4213990569114685, - 0.42735809087753296, - 0.4330534040927887, - 0.43832963705062866, - 0.4430428743362427, - 0.4470645487308502, - 0.4502849280834198, - 0.45261624455451965, - 0.382763534784317, - 0.3783237338066101, - 0.37495774030685425, - 0.3727573752403259, - 0.3717826306819916, - 0.3720601201057434, - 0.37358227372169495, - 0.37630757689476013, - 0.38016167283058167, - 0.38503944873809814, - 0.3908078372478485, - 0.39730948209762573, - 0.4043670892715454, - 0.41178807616233826, - 0.41937005519866943, - 0.4269062280654907, - 0.434190958738327, - 0.44102561473846436, - 0.4472237229347229, - 0.45261624455451965, - 0.382763534784317, - 0.37579527497291565, - 0.36996978521347046, - 0.36544597148895264, - 0.36234721541404724, - 0.36075809597969055, - 0.3607219159603119, - 0.36223965883255005, - 0.3652699589729309, - 0.369730144739151, - 0.37549853324890137, - 0.38241779804229736, - 0.3902991712093353, - 0.3989277184009552, - 0.4080680310726166, - 0.4174708127975464, - 0.4268795847892761, - 0.43603765964508057, - 0.44469526410102844, - 0.45261624455451965, - 0.382763534784317, - 0.3740735650062561, - 0.366573303937912, - 0.3604673743247986, - 0.35592231154441833, - 0.35306215286254883, - 0.3519648313522339, - 0.35266032814979553, - 0.3551296591758728, - 0.3593054711818695, - 0.3650738596916199, - 0.37227746844291687, - 0.3807198405265808, - 0.3901706337928772, - 0.40037208795547485, - 0.4110459089279175, - 0.42190098762512207, - 0.4326411783695221, - 0.4429735541343689, - 0.45261624455451965, - 0.382763534784317, - 0.37334513664245605, - 0.36513635516166687, - 0.35836106538772583, - 0.3532041311264038, - 0.3498062193393707, - 0.34825998544692993, - 0.34860759973526, - 0.35083961486816406, - 0.35489511489868164, - 0.360663503408432, - 0.36798742413520813, - 0.3766671121120453, - 0.38646578788757324, - 0.39711615443229675, - 0.40832772850990295, - 0.4197946786880493, - 0.431204229593277, - 0.44224512577056885, - 0.45261624455451965, - 0.382763534784317, - 0.3736889958381653, - 0.3658146560192108, - 0.3593553304672241, - 0.35448724031448364, - 0.35134315490722656, - 0.35000884532928467, - 0.35052067041397095, - 0.35286468267440796, - 0.3569769859313965, - 0.36274540424346924, - 0.3700125217437744, - 0.37858015298843384, - 0.3882146179676056, - 0.3986530900001526, - 0.4096108376979828, - 0.4207889437675476, - 0.4318825304508209, - 0.4425889849662781, - 0.45261624455451965, - 0.382763534784317, - 0.375067800283432, - 0.3685346841812134, - 0.36334240436553955, - 0.35963258147239685, - 0.3575063943862915, - 0.35702186822891235, - 0.35819220542907715, - 0.36098548769950867, - 0.3653255105018616, - 0.37109389901161194, - 0.3781333267688751, - 0.3862517178058624, - 0.39522767066955566, - 0.4048163592815399, - 0.414756178855896, - 0.42477601766586304, - 0.4346025884151459, - 0.4439678192138672, - 0.45261624455451965, - 0.382763534784317, - 0.3773322105407715, - 0.37300172448158264, - 0.3698902428150177, - 0.36808258295059204, - 0.3676280975341797, - 0.36853915452957153, - 0.37079092860221863, - 0.37432196736335754, - 0.37903597950935364, - 0.384804368019104, - 0.391469806432724, - 0.3988504409790039, - 0.40674495697021484, - 0.4149380326271057, - 0.4232061803340912, - 0.4313238561153412, - 0.43906962871551514, - 0.4462321996688843, - 0.45261624455451965, - 0.382763534784317, - 0.38023680448532104, - 0.37873169779777527, - 0.37828925251960754, - 0.3789215683937073, - 0.3806113600730896, - 0.3833125829696655, - 0.3869515061378479, - 0.3914289176464081, - 0.3966226577758789, - 0.4023910462856293, - 0.40857672691345215, - 0.4150110185146332, - 0.42151838541030884, - 0.427921324968338, - 0.4340451657772064, - 0.43972286581993103, - 0.4447995722293854, - 0.44913679361343384, - 0.45261624455451965, - 0.382763534784317, - 0.38346683979034424, - 0.38510361313819885, - 0.38762930035591125, - 0.3909749388694763, - 0.3950493037700653, - 0.3997412323951721, - 0.404922753572464, - 0.41045254468917847, - 0.41617974638938904, - 0.4219481348991394, - 0.42760035395622253, - 0.43298226594924927, - 0.43794703483581543, - 0.44235923886299133, - 0.44609853625297546, - 0.44906291365623474, - 0.45117151737213135, - 0.45236682891845703, - 0.45261624455451965, - 0.382763534784317, - 0.3866722583770752, - 0.39142704010009766, - 0.3968982398509979, - 0.40293654799461365, - 0.4093772768974304, - 0.41604480147361755, - 0.42275717854499817, - 0.42933130264282227, - 0.43558791279792786, - 0.4413563013076782, - 0.4464791417121887, - 0.45081669092178345, - 0.45425060391426086, - 0.45668724179267883, - 0.4580601453781128, - 0.458331823348999, - 0.45749494433403015, - 0.455572247505188, - 0.45261624455451965, - 0.382763534784317, - 0.3895057439804077, - 0.397016704082489, - 0.40509161353111267, - 0.41351017355918884, - 0.42204272747039795, - 0.4304565489292145, - 0.4385221302509308, - 0.4460194706916809, - 0.4527440369129181, - 0.45851242542266846, - 0.463167279958725, - 0.46658164262771606, - 0.4686623513698578, - 0.469352662563324, - 0.468633770942688, - 0.46652522683143616, - 0.4630846083164215, - 0.4584057331085205, - 0.45261624455451965, - 0.382763534784317, - 0.391660213470459, - 0.4012669026851654, - 0.41132158041000366, - 0.4215499758720398, - 0.4316730499267578, - 0.4414147138595581, - 0.4505092203617096, - 0.4587085247039795, - 0.46578893065452576, - 0.4715573191642761, - 0.47585633397102356, - 0.4785687327384949, - 0.4796205163002014, - 0.47898298501968384, - 0.47667354345321655, - 0.47275519371032715, - 0.4673348069190979, - 0.4605602025985718, - 0.45261624455451965, - 0.382763534784317, - 0.3929022252559662, - 0.403717041015625, - 0.41491299867630005, - 0.4261847138404846, - 0.43722471594810486, - 0.4477318525314331, - 0.4574195146560669, - 0.4660234749317169, - 0.4733089804649353, - 0.47907739877700806, - 0.483171284198761, - 0.4854790270328522, - 0.4859376549720764, - 0.4845346510410309, - 0.48130831122398376, - 0.47634661197662354, - 0.4697849154472351, - 0.461802214384079, - 0.45261624455451965, - 0.382763534784317, - 0.3930971622467041, - 0.4041016101837158, - 0.4154767096042633, - 0.42691218852996826, - 0.4380960762500763, - 0.44872337579727173, - 0.4585041403770447, - 0.4671716094017029, - 0.47448933124542236, - 0.48025771975517273, - 0.48431941866874695, - 0.48656365275382996, - 0.48692917823791504, - 0.4854060411453247, - 0.4820357859134674, - 0.4769103229045868, - 0.4701694846153259, - 0.4619971513748169, - 0.45261624455451965, - 0.382763534784317, - 0.39222392439842224, - 0.40237894654273987, - 0.41295158863067627, - 0.4236535131931305, - 0.4341927468776703, - 0.44428184628486633, - 0.4536455571651459, - 0.46202850341796875, - 0.4692020118236542, - 0.47497040033340454, - 0.4791763424873352, - 0.48170506954193115, - 0.48248764872550964, - 0.4815027117729187, - 0.47877711057662964, - 0.47438520193099976, - 0.46844682097435, - 0.46112391352653503, - 0.45261624455451965, - 0.382763534784317, - 0.39037710428237915, - 0.3987357020378113, - 0.40761131048202515, - 0.4167618453502655, - 0.425937682390213, - 0.4348885416984558, - 0.4433702826499939, - 0.4511515200138092, - 0.45802000164985657, - 0.46378839015960693, - 0.46829932928085327, - 0.4714297950267792, - 0.4730943441390991, - 0.47324761748313904, - 0.47188544273376465, - 0.46904492378234863, - 0.4648035764694214, - 0.45927709341049194, - 0.45261624455451965, - 0.382763534784317, - 0.387756884098053, - 0.39356669783592224, - 0.4000345468521118, - 0.40698400139808655, - 0.4142254590988159, - 0.42156144976615906, - 0.4287917912006378, - 0.4357193410396576, - 0.44215506315231323, - 0.4479234516620636, - 0.45286715030670166, - 0.4568513035774231, - 0.45976722240448, - 0.46153542399406433, - 0.4621075987815857, - 0.4614681601524353, - 0.45963460206985474, - 0.45665687322616577, - 0.45261624455451965 - ], - "y": [ - -0.4064404368400574, - -0.38610130548477173, - -0.36730268597602844, - -0.350557416677475, - -0.33632224798202515, - -0.32498547434806824, - -0.316856324672699, - -0.3121565580368042, - -0.3110143542289734, - -0.31346091628074646, - -0.3194294571876526, - -0.3287571668624878, - -0.3411896228790283, - -0.356387734413147, - -0.37393689155578613, - -0.39335840940475464, - -0.4141225814819336, - -0.4356628954410553, - -0.4573918879032135, - -0.47871679067611694, - -0.4064404368400574, - -0.38789069652557373, - -0.3708326816558838, - -0.355731725692749, - -0.3429996967315674, - -0.33298394083976746, - -0.32595765590667725, - -0.32211247086524963, - -0.3215532898902893, - -0.3242953419685364, - -0.3302638828754425, - -0.3392960727214813, - -0.35114553570747375, - -0.36548906564712524, - -0.38193535804748535, - -0.40003588795661926, - -0.41929686069488525, - -0.43919289112091064, - -0.4591812789440155, - -0.47871679067611694, - -0.4064404368400574, - -0.39174365997314453, - -0.3784335255622864, - -0.3668730854988098, - -0.35737770795822144, - -0.3502063751220703, - -0.34555473923683167, - -0.3435496389865875, - -0.3442457914352417, - -0.3476242423057556, - -0.35359275341033936, - -0.3619886040687561, - -0.37258273363113403, - -0.38508614897727966, - -0.3991578221321106, - -0.4144138991832733, - -0.43043825030326843, - -0.44679373502731323, - -0.4630342423915863, - -0.47871679067611694, - -0.4064404368400574, - -0.3972426652908325, - -0.3892815113067627, - -0.3827742040157318, - -0.3778981566429138, - -0.37478646636009216, - -0.3735239505767822, - -0.3741450607776642, - -0.3766328692436218, - -0.38091951608657837, - -0.3868880271911621, - -0.39437565207481384, - -0.4031781256198883, - -0.4130553603172302, - -0.42373788356781006, - -0.4349343478679657, - -0.44633933901786804, - -0.45764175057411194, - -0.4685332477092743, - -0.47871679067611694, - -0.4064404368400574, - -0.40379178524017334, - -0.4022011458873749, - -0.40171191096305847, - -0.40233737230300903, - -0.4040605425834656, - -0.4068343937397003, - -0.4105832278728485, - -0.41520482301712036, - -0.4205731153488159, - -0.42654162645339966, - -0.4329476058483124, - -0.43961629271507263, - -0.4463658034801483, - -0.45301198959350586, - -0.4593735933303833, - -0.4652770459651947, - -0.4705613851547241, - -0.4750823974609375, - -0.47871679067611694, - -0.4064404368400574, - -0.4106813669204712, - -0.4157923460006714, - -0.4216340184211731, - -0.42804697155952454, - -0.4348563253879547, - -0.4418763518333435, - -0.4489154815673828, - -0.4557817876338959, - -0.46228793263435364, - -0.46825647354125977, - -0.4735246002674103, - -0.4779485762119293, - -0.4814077615737915, - -0.483807772397995, - -0.4850831627845764, - -0.4851991534233093, - -0.48415258526802063, - -0.48197194933891296, - -0.47871679067611694, - -0.4064404368400574, - -0.41716477274894714, - -0.4285823106765747, - -0.4403816759586334, - -0.4522409439086914, - -0.4638366401195526, - -0.47485247254371643, - -0.4849879741668701, - -0.49396663904190063, - -0.5015435814857483, - -0.507512092590332, - -0.511709451675415, - -0.5140210390090942, - -0.5143839120864868, - -0.5127880573272705, - -0.5092771053314209, - -0.503946840763092, - -0.49694254994392395, - -0.4884553551673889, - -0.47871679067611694, - -0.4064404368400574, - -0.42253944277763367, - -0.4391850531101227, - -0.45592325925827026, - -0.47229743003845215, - -0.4878609776496887, - -0.5021893382072449, - -0.5148916244506836, - -0.5256214737892151, - -0.5340860486030579, - -0.5400546193122864, - -0.5433642268180847, - -0.5439247488975525, - -0.5417207479476929, - -0.536812424659729, - -0.5293336510658264, - -0.5194883942604065, - -0.5075452923774719, - -0.49383002519607544, - -0.47871679067611694, - -0.4064404368400574, - -0.42622295022010803, - -0.4464516043663025, - -0.46657460927963257, - -0.4860430955886841, - -0.5043259263038635, - -0.5209245085716248, - -0.5353859663009644, - -0.5473159551620483, - -0.5563889145851135, - -0.5623574256896973, - -0.565058708190918, - -0.5644190311431885, - -0.5604559183120728, - -0.5532773733139038, - -0.5430792570114136, - -0.5301397442817688, - -0.5148118138313293, - -0.4975135326385498, - -0.47871679067611694, - -0.4064404368400574, - -0.42781612277030945, - -0.44959449768066406, - -0.4711814820766449, - -0.49198827147483826, - -0.5114473104476929, - -0.5290277600288391, - -0.5442501306533813, - -0.5566991567611694, - -0.566035270690918, - -0.5720037817955017, - -0.5744419097900391, - -0.5732831954956055, - -0.5685591697692871, - -0.5603987574577332, - -0.5490244626998901, - -0.5347466468811035, - -0.5179547071456909, - -0.4991067051887512, - -0.47871679067611694, - -0.4064404368400574, - -0.427146315574646, - -0.4482731521129608, - -0.46924465894699097, - -0.489488810300827, - -0.5084533095359802, - -0.5256209969520569, - -0.5405234694480896, - -0.552754282951355, - -0.5619797706604004, - -0.5679482817649841, - -0.5704970359802246, - -0.5695565342903137, - -0.5651524066925049, - -0.5574047565460205, - -0.5465250015258789, - -0.532809853553772, - -0.5166333913803101, - -0.49843692779541016, - -0.47871679067611694, - -0.4064404368400574, - -0.4242861270904541, - -0.442630797624588, - -0.4609740376472473, - -0.478815495967865, - -0.49566850066185, - -0.5110733509063721, - -0.5246098637580872, - -0.5359087586402893, - -0.5446618795394897, - -0.5506303906440735, - -0.5536515712738037, - -0.5536429286003113, - -0.5506048202514648, - -0.5446199774742126, - -0.5358517169952393, - -0.5245391726493835, - -0.5109910368919373, - -0.4955767095088959, - -0.47871679067611694, - -0.4064404368400574, - -0.4195455014705658, - -0.4332788288593292, - -0.4472658336162567, - -0.461124986410141, - -0.47447824478149414, - -0.48696136474609375, - -0.4982338547706604, - -0.5079882144927979, - -0.515958309173584, - -0.5219268798828125, - -0.5257309675216675, - -0.5272669196128845, - -0.5264927744865417, - -0.5234296917915344, - -0.5181611776351929, - -0.5108309984207153, - -0.5016390681266785, - -0.49083608388900757, - -0.47871679067611694, - -0.4064404368400574, - -0.4134381115436554, - -0.421230673789978, - -0.42960554361343384, - -0.43833431601524353, - -0.44717881083488464, - -0.45589786767959595, - -0.46425357460975647, - -0.4720180630683899, - -0.47897952795028687, - -0.484948068857193, - -0.4897608757019043, - -0.493286669254303, - -0.49542927742004395, - -0.4961302578449249, - -0.4953705072402954, - -0.49317070841789246, - -0.4895908832550049, - -0.48472872376441956, - -0.47871679067611694, - -0.4064404368400574, - -0.4066258668899536, - -0.40779197216033936, - -0.4099069833755493, - -0.4129132032394409, - -0.4167286157608032, - -0.421249121427536, - -0.4263514578342438, - -0.4318964183330536, - -0.4377327859401703, - -0.4437013268470764, - -0.449639230966568, - -0.4553845524787903, - -0.460780531167984, - -0.4656800329685211, - -0.4699493944644928, - -0.47347214818000793, - -0.4761522114276886, - -0.4779164493083954, - -0.47871679067611694, - -0.4064404368400574, - -0.3998469114303589, - -0.39441901445388794, - -0.3903047740459442, - -0.38761642575263977, - -0.3864273130893707, - -0.3867698609828949, - -0.38863471150398254, - -0.39197102189064026, - -0.396687775850296, - -0.40265628695487976, - -0.4097138047218323, - -0.41766777634620667, - -0.4263012707233429, - -0.4353787302970886, - -0.44465261697769165, - -0.45386993885040283, - -0.4627792239189148, - -0.47113752365112305, - -0.47871679067611694, - -0.4064404368400574, - -0.3938359022140503, - -0.3825609087944031, - -0.3729230761528015, - -0.3651852607727051, - -0.3595585227012634, - -0.3561963438987732, - -0.3551904559135437, - -0.356568306684494, - -0.3602922856807709, - -0.366260826587677, - -0.37431108951568604, - -0.3842235505580902, - -0.3957277536392212, - -0.4085099399089813, - -0.42222145199775696, - -0.43648821115493774, - -0.4509211480617523, - -0.46512648463249207, - -0.47871679067611694, - -0.4064404368400574, - -0.3892441689968109, - -0.3735027313232422, - -0.3596455156803131, - -0.34805047512054443, - -0.33903393149375916, - -0.33284181356430054, - -0.32964301109313965, - -0.32952481508255005, - -0.3324904441833496, - -0.33845895528793335, - -0.34726759791374207, - -0.35867610573768616, - -0.37237322330474854, - -0.38798534870147705, - -0.4050866663455963, - -0.42321065068244934, - -0.44186297059059143, - -0.4605347812175751, - -0.47871679067611694, - -0.4064404368400574, - -0.3865693509578705, - -0.3682260513305664, - -0.35191088914871216, - -0.3380689322948456, - -0.3270776867866516, - -0.3192370533943176, - -0.31476080417633057, - -0.31377112865448, - -0.31629496812820435, - -0.3222634792327881, - -0.331513911485672, - -0.3437938690185547, - -0.35876843333244324, - -0.3760291337966919, - -0.39510512351989746, - -0.4154760539531708, - -0.43658626079559326, - -0.45785996317863464, - -0.47871679067611694, - -0.4064404368400574, - -0.38610130548477173, - -0.36730268597602844, - -0.350557416677475, - -0.33632224798202515, - -0.32498547434806824, - -0.316856324672699, - -0.3121565580368042, - -0.3110143542289734, - -0.31346091628074646, - -0.3194294571876526, - -0.3287571668624878, - -0.3411896228790283, - -0.356387734413147, - -0.37393689155578613, - -0.39335840940475464, - -0.4141225814819336, - -0.4356628954410553, - -0.4573918879032135, - -0.47871679067611694 - ], - "z": [ - -0.06268595159053802, - -0.0776900053024292, - -0.09340871870517731, - -0.10941333323717117, - -0.12526726722717285, - -0.1405380815267563, - -0.15480925142765045, - -0.1676914393901825, - -0.17883330583572388, - -0.1879309117794037, - -0.19473609328269958, - -0.19906321167945862, - -0.2007942646741867, - -0.19988201558589935, - -0.19635134935379028, - -0.19029857218265533, - -0.18188878893852234, - -0.17135140299797058, - -0.158973827958107, - -0.14509370923042297, - -0.06268595159053802, - -0.07875654101371765, - -0.09551269561052322, - -0.11249735206365585, - -0.12924723327159882, - -0.14530541002750397, - -0.16023388504981995, - -0.17362543940544128, - -0.1851148009300232, - -0.19438853859901428, - -0.20119372010231018, - -0.20534470677375793, - -0.2067282646894455, - -0.20530666410923004, - -0.20111867785453796, - -0.1942785233259201, - -0.18497280776500702, - -0.1734553724527359, - -0.16004036366939545, - -0.14509370923042297, - -0.06268595159053802, - -0.07814247906208038, - -0.09430131316184998, - -0.11072170734405518, - -0.12695574760437012, - -0.14256058633327484, - -0.15711061656475067, - -0.1702089011669159, - -0.1814981997013092, - -0.19067052006721497, - -0.19747570157051086, - -0.20172810554504395, - -0.2033117264509201, - -0.20218339562416077, - -0.19837385416030884, - -0.1919870376586914, - -0.18319717049598694, - -0.17224398255348206, - -0.15942630171775818, - -0.14509370923042297, - -0.06268595904111862, - -0.07591435313224792, - -0.08990585058927536, - -0.1042788028717041, - -0.11864113807678223, - -0.1326010823249817, - -0.1457778811454773, - -0.15781207382678986, - -0.1683754026889801, - -0.1771797388792038, - -0.1839849054813385, - -0.18860530853271484, - -0.19091489911079407, - -0.1908506453037262, - -0.1884143352508545, - -0.18367242813110352, - -0.17675425112247467, - -0.16784852743148804, - -0.15719817578792572, - -0.14509370923042297, - -0.06268595904111862, - -0.07231363654136658, - -0.08280262351036072, - -0.09386681765317917, - -0.10520441830158234, - -0.11650615185499191, - -0.12746375799179077, - -0.13777831196784973, - -0.14716848731040955, - -0.15537813305854797, - -0.16218331456184387, - -0.1673983931541443, - -0.17088113725185394, - -0.17253652215003967, - -0.1723194122314453, - -0.17023572325706482, - -0.16634227335453033, - -0.1607452929019928, - -0.15359744429588318, - -0.14509370923042297, - -0.06268595904111862, - -0.06773050129413605, - -0.07376136630773544, - -0.08061406761407852, - -0.08810167014598846, - -0.0960199236869812, - -0.1041528582572937, - -0.11227861791849136, - -0.12017554044723511, - -0.12762825191020966, - -0.13443341851234436, - -0.14040544629096985, - -0.14538143575191498, - -0.1492256224155426, - -0.151833176612854, - -0.15313297510147095, - -0.1530895233154297, - -0.15170404314994812, - -0.14901432394981384, - -0.14509370923042297, - -0.06268596649169922, - -0.06266161054372787, - -0.06376185268163681, - -0.06595669686794281, - -0.0691862404346466, - -0.07336241751909256, - -0.07837130129337311, - -0.08407626301050186, - -0.09032168984413147, - -0.09693721681833267, - -0.10374239832162857, - -0.11055159568786621, - -0.11717908084392548, - -0.12344406545162201, - -0.12917566299438477, - -0.1342175304889679, - -0.13843214511871338, - -0.1417045295238495, - -0.14394542574882507, - -0.14509370923042297, - -0.06268596649169922, - -0.05765625834465027, - -0.05388768017292023, - -0.05148303881287575, - -0.050507910549640656, - -0.050988905131816864, - -0.05291289836168289, - -0.05622740834951401, - -0.06084202602505684, - -0.06663088500499725, - -0.07343605905771255, - -0.08107193559408188, - -0.08933022618293762, - -0.09798566997051239, - -0.10680215805768967, - -0.11553920805454254, - -0.12395849823951721, - -0.1318303644657135, - -0.13894008100032806, - -0.14509370923042297, - -0.06268596649169922, - -0.05325684696435928, - -0.04520886763930321, - -0.03876155614852905, - -0.034090764820575714, - -0.03132392466068268, - -0.030536480247974396, - -0.03174992650747299, - -0.034931160509586334, - -0.03999341279268265, - -0.04679859057068825, - -0.055161066353321075, - -0.0648527443408966, - -0.0756092369556427, - -0.08713716268539429, - -0.0991220623254776, - -0.11123701184988022, - -0.12315154820680618, - -0.13454066216945648, - -0.14509370923042297, - -0.06268596649169922, - -0.04994012787938118, - -0.03866589814424515, - -0.02917081117630005, - -0.02171386033296585, - -0.016498461365699768, - -0.013666868209838867, - -0.01329631358385086, - -0.01539691537618637, - -0.01991138607263565, - -0.026716560125350952, - -0.03562682121992111, - -0.046399135142564774, - -0.05873963236808777, - -0.07231169939041138, - -0.08674515038728714, - -0.10164626687765121, - -0.11660857498645782, - -0.13122394680976868, - -0.14509370923042297, - -0.06268596649169922, - -0.048065513372421265, - -0.034967802464962006, - -0.02375011146068573, - -0.014718420803546906, - -0.008119098842144012, - -0.0041321441531181335, - -0.002866312861442566, - -0.0043561458587646484, - -0.008561007678508759, - -0.01536618173122406, - -0.02458605170249939, - -0.03596913069486618, - -0.049204908311367035, - -0.06393232941627502, - -0.0797497108578682, - -0.0962255671620369, - -0.11291048675775528, - -0.12934933602809906, - -0.14509372413158417, - -0.06268596649169922, - -0.04783615097403526, - -0.03451533615589142, - -0.02308688312768936, - -0.01386251300573349, - -0.007093861699104309, - -0.0029655545949935913, - -0.0015901848673820496, - -0.003005288541316986, - -0.0071722641587257385, - -0.01397743821144104, - -0.023235194385051727, - -0.034693002700805664, - -0.0480383038520813, - -0.06290709972381592, - -0.07889380306005478, - -0.09556233882904053, - -0.1124580129981041, - -0.12911997735500336, - -0.14509372413158417, - -0.06268596649169922, - -0.049276892095804214, - -0.03735751658678055, - -0.027252979576587677, - -0.01923888921737671, - -0.013533852994441986, - -0.01029350608587265, - -0.009606190025806427, - -0.01149071753025055, - -0.015895642340183258, - -0.02270081639289856, - -0.03172062337398529, - -0.04270901158452034, - -0.055366262793540955, - -0.0693470910191536, - -0.0842701718211174, - -0.09972843527793884, - -0.11530019342899323, - -0.1305607110261917, - -0.14509372413158417, - -0.06268596649169922, - -0.05223161727190018, - -0.04318636655807495, - -0.035796962678432465, - -0.030264943838119507, - -0.026741214096546173, - -0.02532190829515457, - -0.026045717298984528, - -0.02889292687177658, - -0.0337858572602272, - -0.040591031312942505, - -0.049122828990221024, - -0.05914853885769844, - -0.07039467245340347, - -0.08255445957183838, - -0.0952962264418602, - -0.10827241092920303, - -0.12112905085086823, - -0.13351543247699738, - -0.14509370923042297, - -0.06268596649169922, - -0.056380122900009155, - -0.05137022212147713, - -0.04779292270541191, - -0.04574579745531082, - -0.0452846921980381, - -0.04642218351364136, - -0.049127236008644104, - -0.0533260777592659, - -0.05890416353940964, - -0.06570933759212494, - -0.07355598360300064, - -0.08223005384206772, - -0.09149494767189026, - -0.1010979413986206, - -0.11077708750963211, - -0.12026837468147278, - -0.1293129026889801, - -0.13766394555568695, - -0.14509370923042297, - -0.06268596649169922, - -0.06127285957336426, - -0.061022236943244934, - -0.061940934509038925, - -0.06400388479232788, - -0.06715482473373413, - -0.07130779325962067, - -0.07634951174259186, - -0.08214247226715088, - -0.08852863311767578, - -0.09533381462097168, - -0.10237237811088562, - -0.10945233702659607, - -0.11638056486845016, - -0.12296807765960693, - -0.12903517484664917, - -0.1344163864850998, - -0.1389649212360382, - -0.14255668222904205, - -0.14509370923042297, - -0.06268595904111862, - -0.06637963652610779, - -0.07109648734331131, - -0.0767078623175621, - -0.08306068927049637, - -0.08998168259859085, - -0.0972820520401001, - -0.10476266592741013, - -0.11221946775913239, - -0.11944905668497086, - -0.12625423073768616, - -0.13244937360286713, - -0.13786548376083374, - -0.142354816198349, - -0.14579492807388306, - -0.14809198677539825, - -0.14918331801891327, - -0.149039164185524, - -0.14766345918178558, - -0.14509370923042297, - -0.06268595904111862, - -0.07114703953266144, - -0.0805012583732605, - -0.09049346297979355, - -0.10085108131170273, - -0.11129157990217209, - -0.1215301901102066, - -0.1312876045703888, - -0.14029769599437714, - -0.1483146697282791, - -0.15511983633041382, - -0.16052760183811188, - -0.164390429854393, - -0.1666029542684555, - -0.1671048402786255, - -0.16588237881660461, - -0.16296891868114471, - -0.15844394266605377, - -0.15243086218833923, - -0.14509370923042297, - -0.06268595904111862, - -0.0750584527850151, - -0.08821739256381989, - -0.10180383920669556, - -0.11544717848300934, - -0.12877526879310608, - -0.14142455160617828, - -0.15304997563362122, - -0.1633344441652298, - -0.17199742794036865, - -0.17880260944366455, - -0.18356436491012573, - -0.18615280091762543, - -0.18649733066558838, - -0.18458852171897888, - -0.18047848343849182, - -0.17427928745746613, - -0.16616007685661316, - -0.1563422679901123, - -0.14509370923042297, - -0.06268595159053802, - -0.0776900053024292, - -0.09340871870517731, - -0.10941333323717117, - -0.12526726722717285, - -0.14053809642791748, - -0.15480925142765045, - -0.1676914542913437, - -0.17883332073688507, - -0.1879309117794037, - -0.19473609328269958, - -0.1990632265806198, - -0.2007942795753479, - -0.19988201558589935, - -0.19635134935379028, - -0.19029858708381653, - -0.18188878893852234, - -0.17135140299797058, - -0.158973827958107, - -0.14509370923042297 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.486172616481781, - 0.47929853200912476, - 0.4693264961242676, - 0.45652857422828674, - 0.4412538409233093, - 0.4239189326763153, - 0.40499669313430786, - 0.38500329852104187, - 0.36448410153388977, - 0.34399881958961487, - 0.32410621643066406, - 0.3053489327430725, - 0.28823864459991455, - 0.2732420265674591, - 0.2607681453227997, - 0.25115731358528137, - 0.24467162787914276, - 0.2414880245923996, - 0.24169334769248962, - 0.24528200924396515, - 0.486172616481781, - 0.47958195209503174, - 0.4698856770992279, - 0.4573482275009155, - 0.4423115849494934, - 0.4251859188079834, - 0.4064383804798126, - 0.38658034801483154, - 0.3661535084247589, - 0.3457150459289551, - 0.3258224427700043, - 0.30701836943626404, - 0.2898156940937042, - 0.27468371391296387, - 0.26203516125679016, - 0.25221505761146545, - 0.24549126625061035, - 0.24204719066619873, - 0.241976797580719, - 0.24528200924396515, - 0.486172616481781, - 0.4804016053676605, - 0.4715026021003723, - 0.4597182869911194, - 0.4453701674938202, - 0.42884960770606995, - 0.4106072187423706, - 0.3911406397819519, - 0.370980829000473, - 0.3506777286529541, - 0.3307851552963257, - 0.31184569001197815, - 0.2943759858608246, - 0.27885255217552185, - 0.2656988501548767, - 0.25527364015579224, - 0.2478613406419754, - 0.24366410076618195, - 0.24279645085334778, - 0.24528200924396515, - 0.486172616481781, - 0.4816685914993286, - 0.47400203347206116, - 0.46338197588920593, - 0.4500981867313385, - 0.4345129728317261, - 0.4170514643192291, - 0.3981899619102478, - 0.3784429728984833, - 0.35834914445877075, - 0.33845654129981995, - 0.3193078339099884, - 0.30142533779144287, - 0.28529679775238037, - 0.27136221528053284, - 0.26000165939331055, - 0.25152504444122314, - 0.2461635321378708, - 0.24406343698501587, - 0.24528200924396515, - 0.486172616481781, - 0.4832456707954407, - 0.47711312770843506, - 0.4679422676563263, - 0.4559832811355591, - 0.44156232476234436, - 0.4250727891921997, - 0.4069644510746002, - 0.38773128390312195, - 0.3678978979587555, - 0.3480053246021271, - 0.3285961449146271, - 0.3101997971534729, - 0.29331809282302856, - 0.2784115672111511, - 0.26588672399520874, - 0.2560853362083435, - 0.24927464127540588, - 0.24564050137996674, - 0.24528200924396515, - 0.486172616481781, - 0.4849618971347809, - 0.4804987907409668, - 0.4729049801826477, - 0.46238768100738525, - 0.4492337107658386, - 0.43380191922187805, - 0.41651320457458496, - 0.397839218378067, - 0.37828928232192993, - 0.3583967089653015, - 0.33870407938957214, - 0.31974858045578003, - 0.3020472526550293, - 0.2860829532146454, - 0.2722911238670349, - 0.26104801893234253, - 0.25266027450561523, - 0.24735672771930695, - 0.24528200924396515, - 0.486172616481781, - 0.48663130402565, - 0.4837920665740967, - 0.4777323007583618, - 0.46861737966537476, - 0.4566958546638489, - 0.4422929286956787, - 0.42580151557922363, - 0.4076714515686035, - 0.388397216796875, - 0.3685046434402466, - 0.34853628277778625, - 0.3290368616580963, - 0.31053826212882996, - 0.29354509711265564, - 0.2785208225250244, - 0.26587533950805664, - 0.2559535801410675, - 0.24902614951133728, - 0.24528200924396515, - 0.486172616481781, - 0.4880729913711548, - 0.48663613200187683, - 0.4819011688232422, - 0.4739972949028015, - 0.4631401002407074, - 0.44962573051452637, - 0.4338228404521942, - 0.4161624610424042, - 0.39712637662887573, - 0.3772337734699249, - 0.3570273220539093, - 0.3370581865310669, - 0.3178710639476776, - 0.29998934268951416, - 0.28390076756477356, - 0.270044207572937, - 0.25879764556884766, - 0.25046783685684204, - 0.24528200924396515, - 0.486172616481781, - 0.48913073539733887, - 0.4887227416038513, - 0.48495975136756897, - 0.47794443368911743, - 0.4678680896759033, - 0.4550056457519531, - 0.4397079050540924, - 0.4223921597003937, - 0.4035307765007019, - 0.3836381733417511, - 0.3632570207118988, - 0.3429432511329651, - 0.32325097918510437, - 0.30471736192703247, - 0.2878479063510895, - 0.2731028199195862, - 0.26088425517082214, - 0.2515255808830261, - 0.24528200924396515, - 0.486172616481781, - 0.4896898865699768, - 0.4898258447647095, - 0.4865766763687134, - 0.4800310730934143, - 0.47036755084991455, - 0.4578497111797333, - 0.4428189992904663, - 0.42568546533584595, - 0.40691640973091125, - 0.38702380657196045, - 0.3665503263473511, - 0.3460543751716614, - 0.3260950446128845, - 0.3072167932987213, - 0.28993454575538635, - 0.2747197151184082, - 0.2619873285293579, - 0.25208473205566406, - 0.24528200924396515, - 0.486172616481781, - 0.4896898865699768, - 0.4898258447647095, - 0.4865766763687134, - 0.4800310730934143, - 0.47036755084991455, - 0.4578497111797333, - 0.4428189992904663, - 0.42568546533584595, - 0.40691640973091125, - 0.38702380657196045, - 0.3665503263473511, - 0.3460543751716614, - 0.3260950446128845, - 0.3072167932987213, - 0.28993454575538635, - 0.2747197151184082, - 0.2619873285293579, - 0.25208473205566406, - 0.24528200924396515, - 0.486172616481781, - 0.48913073539733887, - 0.4887227416038513, - 0.48495975136756897, - 0.47794443368911743, - 0.4678680896759033, - 0.4550056457519531, - 0.4397079050540924, - 0.4223921597003937, - 0.4035307765007019, - 0.3836381733417511, - 0.3632570207118988, - 0.3429432511329651, - 0.32325097918510437, - 0.30471736192703247, - 0.2878479063510895, - 0.2731028199195862, - 0.26088425517082214, - 0.2515255808830261, - 0.24528200924396515, - 0.486172616481781, - 0.4880729913711548, - 0.48663613200187683, - 0.4819011688232422, - 0.4739972949028015, - 0.4631401002407074, - 0.44962573051452637, - 0.4338228404521942, - 0.4161624610424042, - 0.39712637662887573, - 0.3772337734699249, - 0.3570273220539093, - 0.3370581865310669, - 0.3178710639476776, - 0.29998934268951416, - 0.28390076756477356, - 0.270044207572937, - 0.25879764556884766, - 0.25046783685684204, - 0.24528200924396515, - 0.486172616481781, - 0.48663130402565, - 0.4837920665740967, - 0.4777323007583618, - 0.46861737966537476, - 0.4566958546638489, - 0.4422929286956787, - 0.42580151557922363, - 0.40767142176628113, - 0.388397216796875, - 0.3685046434402466, - 0.34853628277778625, - 0.3290368616580963, - 0.31053826212882996, - 0.29354506731033325, - 0.2785208225250244, - 0.26587533950805664, - 0.2559535801410675, - 0.24902614951133728, - 0.24528200924396515, - 0.486172616481781, - 0.4849618971347809, - 0.4804987907409668, - 0.4729049801826477, - 0.46238768100738525, - 0.4492337107658386, - 0.43380191922187805, - 0.41651323437690735, - 0.397839218378067, - 0.37828928232192993, - 0.3583967089653015, - 0.33870407938957214, - 0.31974858045578003, - 0.3020472526550293, - 0.2860829532146454, - 0.2722911238670349, - 0.26104801893234253, - 0.25266027450561523, - 0.24735672771930695, - 0.24528200924396515, - 0.486172616481781, - 0.4832456707954407, - 0.47711312770843506, - 0.4679422676563263, - 0.4559832811355591, - 0.44156232476234436, - 0.4250727891921997, - 0.4069644510746002, - 0.38773128390312195, - 0.3678978979587555, - 0.3480053246021271, - 0.3285961449146271, - 0.3101997971534729, - 0.29331812262535095, - 0.2784115672111511, - 0.26588675379753113, - 0.2560853362083435, - 0.24927464127540588, - 0.24564050137996674, - 0.24528200924396515, - 0.486172616481781, - 0.4816685914993286, - 0.47400203347206116, - 0.46338197588920593, - 0.4500981867313385, - 0.4345129728317261, - 0.4170514643192291, - 0.3981899619102478, - 0.3784429728984833, - 0.35834914445877075, - 0.33845654129981995, - 0.3193078339099884, - 0.30142533779144287, - 0.28529679775238037, - 0.27136221528053284, - 0.26000165939331055, - 0.25152504444122314, - 0.2461635321378708, - 0.24406343698501587, - 0.24528200924396515, - 0.486172616481781, - 0.4804016053676605, - 0.4715026021003723, - 0.4597182869911194, - 0.4453701674938202, - 0.42884960770606995, - 0.4106072187423706, - 0.3911406397819519, - 0.370980829000473, - 0.3506777286529541, - 0.3307851552963257, - 0.31184569001197815, - 0.2943759858608246, - 0.27885255217552185, - 0.2656988501548767, - 0.25527364015579224, - 0.2478613406419754, - 0.24366410076618195, - 0.24279645085334778, - 0.24528200924396515, - 0.486172616481781, - 0.47958195209503174, - 0.4698856770992279, - 0.4573482275009155, - 0.4423115849494934, - 0.4251859188079834, - 0.4064383804798126, - 0.38658034801483154, - 0.3661535084247589, - 0.3457150459289551, - 0.3258224427700043, - 0.30701833963394165, - 0.2898156940937042, - 0.27468371391296387, - 0.26203516125679016, - 0.25221502780914307, - 0.24549126625061035, - 0.24204719066619873, - 0.241976797580719, - 0.24528200924396515, - 0.486172616481781, - 0.47929853200912476, - 0.4693264961242676, - 0.45652857422828674, - 0.4412538409233093, - 0.4239189326763153, - 0.40499669313430786, - 0.38500329852104187, - 0.36448410153388977, - 0.34399881958961487, - 0.32410621643066406, - 0.3053489327430725, - 0.28823864459991455, - 0.2732420265674591, - 0.2607681453227997, - 0.25115731358528137, - 0.24467162787914276, - 0.2414880245923996, - 0.24169334769248962, - 0.24528200924396515 - ], - "y": [ - -0.6998650431632996, - -0.7237511873245239, - -0.7465046048164368, - -0.7675046920776367, - -0.7861786484718323, - -0.8020169734954834, - -0.8145878314971924, - -0.8235481381416321, - -0.8286535739898682, - -0.8297648429870605, - -0.8268516659736633, - -0.8199934959411621, - -0.8093773722648621, - -0.7952929735183716, - -0.7781243324279785, - -0.7583398818969727, - -0.7364792227745056, - -0.7131386995315552, - -0.6889550089836121, - -0.6645877361297607, - -0.6998650431632996, - -0.7187187075614929, - -0.7365769743919373, - -0.7529526352882385, - -0.7673990726470947, - -0.7795222997665405, - -0.7889914512634277, - -0.7955483794212341, - -0.7990142107009888, - -0.7992943525314331, - -0.7963811159133911, - -0.7903541326522827, - -0.7813776731491089, - -0.7696965932846069, - -0.7556295990943909, - -0.7395603656768799, - -0.7219271659851074, - -0.7032110691070557, - -0.683922529220581, - -0.6645877361297607, - -0.6998651027679443, - -0.711617112159729, - -0.7225674390792847, - -0.7324173450469971, - -0.7408981919288635, - -0.747778594493866, - -0.7528709173202515, - -0.7560362815856934, - -0.7571882605552673, - -0.7562955021858215, - -0.7533823251724243, - -0.748528242111206, - -0.7418655753135681, - -0.7335760593414307, - -0.7238859534263611, - -0.7130594253540039, - -0.701391875743866, - -0.6892015337944031, - -0.6768209338188171, - -0.6645877361297607, - -0.6998651027679443, - -0.7032158970832825, - -0.7059941291809082, - -0.7081241011619568, - -0.7095476388931274, - -0.7102259397506714, - -0.7101404070854187, - -0.70929354429245, - -0.7077082991600037, - -0.7054280042648315, - -0.7025148272514343, - -0.6990482807159424, - -0.6951227784156799, - -0.6908455491065979, - -0.6863332390785217, - -0.6817088723182678, - -0.6770986318588257, - -0.6726282835006714, - -0.6684197187423706, - -0.6645877361297607, - -0.6998651027679443, - -0.6944255232810974, - -0.6886531710624695, - -0.6827055215835571, - -0.6767447590827942, - -0.6709336042404175, - -0.6654304265975952, - -0.6603854298591614, - -0.6559361815452576, - -0.6522040963172913, - -0.649290919303894, - -0.6472761631011963, - -0.6462147235870361, - -0.6461355686187744, - -0.6470409035682678, - -0.6489060521125793, - -0.651680052280426, - -0.6552872657775879, - -0.6596293449401855, - -0.6645877361297607, - -0.6998651027679443, - -0.6861984729766846, - -0.6724236011505127, - -0.6589160561561584, - -0.6460443735122681, - -0.6341596245765686, - -0.6235859990119934, - -0.6146119832992554, - -0.6074823141098022, - -0.6023914217948914, - -0.5994782447814941, - -0.5988222360610962, - -0.6004412174224854, - -0.6042911410331726, - -0.610266923904419, - -0.6182056069374084, - -0.6278905868530273, - -0.6390576958656311, - -0.6514022946357727, - -0.6645877361297607, - -0.6998651027679443, - -0.6794264316558838, - -0.6590641140937805, - -0.6393336653709412, - -0.620773196220398, - -0.603888988494873, - -0.5891416668891907, - -0.5769333839416504, - -0.5675972700119019, - -0.5613879561424255, - -0.5584747791290283, - -0.5589371919631958, - -0.5627626776695251, - -0.5698467493057251, - -0.5799962878227234, - -0.5929344296455383, - -0.6083081960678101, - -0.6256982684135437, - -0.6446302533149719, - -0.6645877957344055, - -0.6998651027679443, - -0.6748431324958801, - -0.650022566318512, - -0.6260803937911987, - -0.6036698222160339, - -0.5834020376205444, - -0.565829873085022, - -0.551432728767395, - -0.5406033396720886, - -0.5336370468139648, - -0.5307238698005676, - -0.5319432616233826, - -0.5372620224952698, - -0.5465350151062012, - -0.5595093369483948, - -0.5758310556411743, - -0.5950549244880676, - -0.6166566610336304, - -0.6400469541549683, - -0.6645877957344055, - -0.6998651027679443, - -0.6729452610015869, - -0.6462786197662354, - -0.6205925345420837, - -0.5965876579284668, - -0.5749187469482422, - -0.5561769604682922, - -0.5408734083175659, - -0.5294256806373596, - -0.5221459269523621, - -0.5192327499389648, - -0.5207656025886536, - -0.5267027020454407, - -0.5368821024894714, - -0.5510260462760925, - -0.5687488913536072, - -0.5895670652389526, - -0.6129127144813538, - -0.638149082660675, - -0.6645877957344055, - -0.6998651027679443, - -0.673938512802124, - -0.6482380032539368, - -0.6234646439552307, - -0.6002941131591797, - -0.5793585181236267, - -0.56122887134552, - -0.546399712562561, - -0.5352755784988403, - -0.5281598567962646, - -0.5252466797828674, - -0.5266155004501343, - -0.5322290062904358, - -0.5419340133666992, - -0.555465817451477, - -0.5724553465843201, - -0.5924391746520996, - -0.6148720979690552, - -0.6391423344612122, - -0.6645877957344055, - -0.6998651027679443, - -0.6777152419090271, - -0.655688464641571, - -0.6343855857849121, - -0.6143876314163208, - -0.596240222454071, - -0.5804382562637329, - -0.5674127340316772, - -0.5575191378593445, - -0.5510271787643433, - -0.548114001750946, - -0.5488590598106384, - -0.553242027759552, - -0.5611433386802673, - -0.5723475217819214, - -0.586548924446106, - -0.603360116481781, - -0.6223225593566895, - -0.6429190635681152, - -0.6645877957344055, - -0.6998651027679443, - -0.6838662028312683, - -0.6678225994110107, - -0.6521718502044678, - -0.6373409032821655, - -0.6237344145774841, - -0.6117233633995056, - -0.6016354560852051, - -0.5937458276748657, - -0.5882697701454163, - -0.585356593132019, - -0.5850857496261597, - -0.5874646902084351, - -0.5924285054206848, - -0.5998417139053345, - -0.6095021963119507, - -0.6211463809013367, - -0.6344566941261292, - -0.6490700244903564, - -0.6645877361297607, - -0.6998651027679443, - -0.6917247772216797, - -0.6833254098892212, - -0.6748960614204407, - -0.6666666269302368, - -0.6588616371154785, - -0.6516939997673035, - -0.645359218120575, - -0.640030026435852, - -0.6358519196510315, - -0.6329387426376343, - -0.631369948387146, - -0.6311884522438049, - -0.6323991417884827, - -0.6349689960479736, - -0.6388278603553772, - -0.6438705921173096, - -0.6499595046043396, - -0.6569285988807678, - -0.6645877361297607, - -0.6998651027679443, - -0.700439453125, - -0.7005169987678528, - -0.7000956535339355, - -0.6991868615150452, - -0.697815477848053, - -0.6960188150405884, - -0.6938459873199463, - -0.6913561224937439, - -0.6886172890663147, - -0.6857041120529175, - -0.6826960444450378, - -0.6796752214431763, - -0.6767239570617676, - -0.6739227771759033, - -0.6713480949401855, - -0.6690701842308044, - -0.6671510934829712, - -0.6656432747840881, - -0.6645877361297607, - -0.6998651027679443, - -0.7090657949447632, - -0.7175343632698059, - -0.7250398993492126, - -0.7313775420188904, - -0.7363744974136353, - -0.7398943901062012, - -0.7418413162231445, - -0.7421620488166809, - -0.7408478856086731, - -0.7379347085952759, - -0.7335019707679749, - -0.7276705503463745, - -0.7205995321273804, - -0.7124817967414856, - -0.7035387754440308, - -0.6940144300460815, - -0.6841685175895691, - -0.6742696166038513, - -0.6645877361297607, - -0.6998651027679443, - -0.7166690230369568, - -0.7325334548950195, - -0.7470256686210632, - -0.7597503066062927, - -0.7703602910041809, - -0.7785661816596985, - -0.7841442227363586, - -0.7869422435760498, - -0.7868838310241699, - -0.7839706540107727, - -0.7782821655273438, - -0.7699735164642334, - -0.7592713832855225, - -0.7464675903320312, - -0.7319115400314331, - -0.7160001993179321, - -0.6991675496101379, - -0.6818728446960449, - -0.6645877361297607, - -0.6998650431632996, - -0.7224252223968506, - -0.7438888549804688, - -0.7636705040931702, - -0.7812305688858032, - -0.7960900068283081, - -0.8078436255455017, - -0.8161706924438477, - -0.8208441138267517, - -0.8217363953590393, - -0.8188232183456421, - -0.8121840357780457, - -0.8019999265670776, - -0.7885487675666809, - -0.7721973657608032, - -0.7533918023109436, - -0.7326450347900391, - -0.7105229496955872, - -0.6876290440559387, - -0.6645877361297607, - -0.6998650431632996, - -0.7257106304168701, - -0.7503700256347656, - -0.7731706500053406, - -0.7934905290603638, - -0.8107754588127136, - -0.8245538473129272, - -0.8344500064849854, - -0.8401938676834106, - -0.8416287302970886, - -0.8387155532836914, - -0.8315337896347046, - -0.8202792406082153, - -0.8052589893341064, - -0.786882758140564, - -0.7656518220901489, - -0.7421451807022095, - -0.717004120349884, - -0.6909144520759583, - -0.6645877361297607, - -0.6998650431632996, - -0.7261691689491272, - -0.751274585723877, - -0.7744966149330139, - -0.7952017188072205, - -0.8128251433372498, - -0.8268861770629883, - -0.8370012640953064, - -0.8428945541381836, - -0.8444051742553711, - -0.8414919376373291, - -0.8342344760894775, - -0.8228305578231812, - -0.8075913190841675, - -0.7889324426651001, - -0.7673629522323608, - -0.7434711456298828, - -0.7179087400436401, - -0.6913729906082153, - -0.6645877361297607, - -0.6998650431632996, - -0.7237511873245239, - -0.7465046048164368, - -0.7675046920776367, - -0.7861785888671875, - -0.8020169734954834, - -0.8145877718925476, - -0.8235481381416321, - -0.8286535739898682, - -0.8297648429870605, - -0.8268516659736633, - -0.8199934959411621, - -0.8093773722648621, - -0.7952929735183716, - -0.7781243324279785, - -0.7583398818969727, - -0.7364792227745056, - -0.7131386995315552, - -0.6889550089836121, - -0.6645877361297607 - ], - "z": [ - 0.07447735220193863, - 0.09103672206401825, - 0.10681083798408508, - 0.12136942893266678, - 0.1343153715133667, - 0.14529553055763245, - 0.15401040017604828, - 0.16022227704524994, - 0.1637616902589798, - 0.16453209519386292, - 0.16251249611377716, - 0.1577579826116562, - 0.15039822459220886, - 0.14063400030136108, - 0.1287316381931305, - 0.11501578986644745, - 0.09986060857772827, - 0.08367949724197388, - 0.06691380590200424, - 0.050020888447761536, - 0.07447735220193863, - 0.09550391137599945, - 0.1156233698129654, - 0.13428691029548645, - 0.150985449552536, - 0.16526350378990173, - 0.17673158645629883, - 0.18507689237594604, - 0.19007177650928497, - 0.19157998263835907, - 0.18956038355827332, - 0.18406805396080017, - 0.17525283992290497, - 0.16335517168045044, - 0.14869961142539978, - 0.13168588280677795, - 0.11277809739112854, - 0.09249202162027359, - 0.07138100266456604, - 0.05002088472247124, - 0.07447735220193863, - 0.09767447412014008, - 0.11990529298782349, - 0.14056339859962463, - 0.15908528864383698, - 0.1749657392501831, - 0.18777160346508026, - 0.1971535086631775, - 0.20285558700561523, - 0.2047223001718521, - 0.20270270109176636, - 0.19685187935829163, - 0.1873294711112976, - 0.17439518868923187, - 0.15840184688568115, - 0.13978572189807892, - 0.11905458569526672, - 0.09677394479513168, - 0.07355156540870667, - 0.05002088472247124, - 0.07447735220193863, - 0.09731320291757584, - 0.11919260025024414, - 0.13951872289180756, - 0.157737135887146, - 0.17335087060928345, - 0.18593406677246094, - 0.1951434463262558, - 0.20072782039642334, - 0.20253485441207886, - 0.2005152553319931, - 0.19472411274909973, - 0.18531939387321472, - 0.17255765199661255, - 0.1567869931459427, - 0.13843756914138794, - 0.11800990998744965, - 0.09606125205755234, - 0.07319029420614243, - 0.05002088472247124, - 0.07447735220193863, - 0.09445923566818237, - 0.11356251686811447, - 0.13126608729362488, - 0.14708706736564636, - 0.1605938971042633, - 0.17141811549663544, - 0.17926451563835144, - 0.1839190274477005, - 0.18525469303131104, - 0.18323509395122528, - 0.1779153198003769, - 0.16944044828414917, - 0.15804171562194824, - 0.14402997493743896, - 0.1277875006198883, - 0.10975727438926697, - 0.09043116867542267, - 0.07033632695674896, - 0.050020888447761536, - 0.07447735220193863, - 0.089421845972538, - 0.10362514853477478, - 0.11669981479644775, - 0.12828919291496277, - 0.13807719945907593, - 0.1457967907190323, - 0.15123742818832397, - 0.15425071120262146, - 0.1547544002532959, - 0.15273480117321014, - 0.14824700355529785, - 0.1414133757352829, - 0.1324203908443451, - 0.12151329219341278, - 0.10898962616920471, - 0.09519098699092865, - 0.08049380034208298, - 0.06529893726110458, - 0.050020888447761536, - 0.07447735220193863, - 0.08274692296981812, - 0.09045736491680145, - 0.09739835560321808, - 0.10338057577610016, - 0.10824083536863327, - 0.11184655129909515, - 0.1140993982553482, - 0.11493787914514542, - 0.11433915793895721, - 0.11231955885887146, - 0.10893417149782181, - 0.10427534580230713, - 0.09847013652324677, - 0.09167692065238953, - 0.08408098667860031, - 0.07588954269886017, - 0.06732602417469025, - 0.058624014258384705, - 0.050020888447761536, - 0.07447735965251923, - 0.0751577839255333, - 0.07548610866069794, - 0.07545334845781326, - 0.0750604197382927, - 0.07431802898645401, - 0.07324642688035965, - 0.07187484949827194, - 0.07024070620536804, - 0.06838858872652054, - 0.06636898964643478, - 0.06423699855804443, - 0.062050800770521164, - 0.05987001582980156, - 0.05775412172079086, - 0.05576082691550255, - 0.053944531828165054, - 0.052354756742715836, - 0.051034875214099884, - 0.050020892173051834, - 0.07447735965251923, - 0.06747684627771378, - 0.0603337287902832, - 0.053242865949869156, - 0.04639766365289688, - 0.03998485952615738, - 0.03417935222387314, - 0.029139522463083267, - 0.025002826005220413, - 0.02188212424516678, - 0.019862525165081024, - 0.018999118357896805, - 0.01931547373533249, - 0.02080293372273445, - 0.023420941084623337, - 0.027098078280687332, - 0.03173404932022095, - 0.0372023805975914, - 0.04335393011569977, - 0.050020892173051834, - 0.07447735965251923, - 0.06053644046187401, - 0.0466422401368618, - 0.033173754811286926, - 0.020498372614383698, - 0.008961841464042664, - -0.0011211633682250977, - -0.00947558879852295, - -0.015873543918132782, - -0.02014051377773285, - -0.022160112857818604, - -0.02187725156545639, - -0.019299641251564026, - -0.014497585594654083, - -0.007602088153362274, - 0.0011987760663032532, - 0.011664938181638718, - 0.023510891944169998, - 0.0364135317504406, - 0.05002089589834213, - 0.07447735965251923, - 0.05508868023753166, - 0.035895317792892456, - 0.017420820891857147, - 0.00016912445425987244, - -0.015389196574687958, - -0.028829745948314667, - -0.03978590667247772, - -0.04795881360769272, - -0.0531255304813385, - -0.055145129561424255, - -0.05396252125501633, - -0.0496099591255188, - -0.04220616817474365, - -0.0319531187415123, - -0.01913047581911087, - -0.00408799946308136, - 0.012763969600200653, - 0.03096577152609825, - 0.05002089589834213, - 0.07447735965251923, - 0.051723912358284, - 0.02925756201148033, - 0.007691141217947006, - -0.012387096881866455, - -0.03042943775653839, - -0.045943744480609894, - -0.05850685387849808, - -0.06777603924274445, - -0.07349847257137299, - -0.07551807165145874, - -0.07377974689006805, - -0.06833089888095856, - -0.059320174157619476, - -0.04699335992336273, - -0.031686678528785706, - -0.013817675411701202, - 0.0061262138187885284, - 0.027600999921560287, - 0.05002089589834213, - 0.07447735965251923, - 0.05080675706267357, - 0.027448270469903946, - 0.005039062350988388, - -0.01580961048603058, - -0.03452903777360916, - -0.05060860514640808, - -0.06360973417758942, - -0.07317773997783661, - -0.07905164361000061, - -0.08107124269008636, - -0.07918144762516022, - -0.0734337717294693, - -0.06398503482341766, - -0.0510929599404335, - -0.03510920703411102, - -0.01646975427865982, - 0.004316922277212143, - 0.026683848351240158, - 0.05002089589834213, - 0.07447735965251923, - 0.05243660882115364, - 0.030663516372442245, - 0.009751994162797928, - -0.009727537631988525, - -0.027243733406066895, - -0.04231880605220795, - -0.054541535675525665, - -0.0635785162448883, - -0.06918323040008545, - -0.0712028294801712, - -0.06958222389221191, - -0.06436558067798615, - -0.05569522827863693, - -0.043807655572891235, - -0.029027126729488373, - -0.01175682246685028, - 0.0075321681797504425, - 0.02831370010972023, - 0.05002089589834213, - 0.07447735965251923, - 0.05643684044480324, - 0.03855486586689949, - 0.021319210529327393, - 0.005200009793043137, - -0.009363040328025818, - -0.021972686052322388, - -0.03228498250246048, - -0.04001864790916443, - -0.044962696731090546, - -0.0469822958111763, - -0.04602235555648804, - -0.042109034955501556, - -0.03534911572933197, - -0.025926955044269562, - -0.01409958302974701, - -0.0001896098256111145, - 0.015423517674207687, - 0.03231393173336983, - 0.05002089589834213, - 0.07447735965251923, - 0.062373969703912735, - 0.05026716738939285, - 0.038487210869789124, - 0.027355417609214783, - 0.017175424844026566, - 0.008224930614233017, - 0.00074806809425354, - -0.0050511956214904785, - -0.009014680981636047, - -0.011034280061721802, - -0.011054903268814087, - -0.009075984358787537, - -0.005151495337486267, - 0.0006115101277828217, - 0.008055821061134338, - 0.016978390514850616, - 0.02713581919670105, - 0.038251057267189026, - 0.05002089589834213, - 0.07447735965251923, - 0.06960462033748627, - 0.06453124433755875, - 0.05939561501145363, - 0.05433782935142517, - 0.04949583858251572, - 0.04500172287225723, - 0.0409780777990818, - 0.037534646689891815, - 0.03476535156369209, - 0.03274575248360634, - 0.03153093904256821, - 0.031154027208685875, - 0.03162530064582825, - 0.032931920140981674, - 0.03503824397921562, - 0.03788679838180542, - 0.04139989987015724, - 0.045481711626052856, - 0.050020892173051834, - 0.07447735965251923, - 0.07734523713588715, - 0.07980133593082428, - 0.08177865296602249, - 0.08322326093912125, - 0.08409574627876282, - 0.08437231183052063, - 0.0840454250574112, - 0.08312398195266724, - 0.08163312077522278, - 0.07961352169513702, - 0.07712027430534363, - 0.07422137260437012, - 0.07099589705467224, - 0.06753183901309967, - 0.0639236718416214, - 0.06026983633637428, - 0.05666998773813248, - 0.053222328424453735, - 0.050020892173051834, - 0.07447735220193863, - 0.084757000207901, - 0.09442269802093506, - 0.10321076959371567, - 0.11088152229785919, - 0.11722571402788162, - 0.12207028269767761, - 0.12528309226036072, - 0.12677650153636932, - 0.12650975584983826, - 0.1244901493191719, - 0.12077279388904572, - 0.11545903980731964, - 0.10869386792182922, - 0.10066181421279907, - 0.09158194065093994, - 0.08170194923877716, - 0.07129134982824326, - 0.06063409149646759, - 0.050020888447761536, - 0.07447735220193863, - 0.09103672206401825, - 0.10681084543466568, - 0.12136943638324738, - 0.1343153715133667, - 0.14529553055763245, - 0.15401041507720947, - 0.16022229194641113, - 0.163761705160141, - 0.1645321249961853, - 0.16251251101493835, - 0.15775799751281738, - 0.15039823949337006, - 0.14063401520252228, - 0.1287316530942917, - 0.11501580476760864, - 0.09986061602830887, - 0.08367949724197388, - 0.06691381335258484, - 0.050020888447761536 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.20379963517189026, - 0.1933465600013733, - 0.18607883155345917, - 0.18219469487667084, - 0.18180008232593536, - 0.1849057674407959, - 0.1914270520210266, - 0.20118601620197296, - 0.21391648054122925, - 0.22927120327949524, - 0.24683134257793427, - 0.2661178708076477, - 0.28660476207733154, - 0.3077331483364105, - 0.328926682472229, - 0.34960728883743286, - 0.3692108690738678, - 0.3872026801109314, - 0.4030919075012207, - 0.41644519567489624, - 0.20379963517189026, - 0.20096968114376068, - 0.201117143034935, - 0.20423799753189087, - 0.21024708449840546, - 0.21898050606250763, - 0.23020005226135254, - 0.24359966814517975, - 0.25881385803222656, - 0.27542760968208313, - 0.29298773407936096, - 0.311015248298645, - 0.32901841402053833, - 0.34650614857673645, - 0.36300140619277954, - 0.37805432081222534, - 0.391254186630249, - 0.4022409915924072, - 0.4107150435447693, - 0.41644519567489624, - 0.20379962027072906, - 0.20905661582946777, - 0.21707043051719666, - 0.22762244939804077, - 0.24042487144470215, - 0.2551284432411194, - 0.2713320851325989, - 0.2885938584804535, - 0.30644285678863525, - 0.32439225912094116, - 0.341952383518219, - 0.3586442768573761, - 0.37401261925697327, - 0.3876382112503052, - 0.3991493582725525, - 0.40823209285736084, - 0.4146386384963989, - 0.4181942641735077, - 0.4188019633293152, - 0.41644516587257385, - 0.20379962027072906, - 0.2167310118675232, - 0.23220989108085632, - 0.2498140186071396, - 0.26906320452690125, - 0.2894323468208313, - 0.3103658854961395, - 0.3312927782535553, - 0.3516422212123871, - 0.3708590865135193, - 0.3884192109107971, - 0.40384364128112793, - 0.4167115092277527, - 0.42667198181152344, - 0.4334532618522644, - 0.43687042593955994, - 0.43683022260665894, - 0.43333372473716736, - 0.4264763593673706, - 0.41644516587257385, - 0.20379962027072906, - 0.2231612354516983, - 0.24489495158195496, - 0.2684078812599182, - 0.29305869340896606, - 0.31817492842674255, - 0.34307152032852173, - 0.3670693635940552, - 0.3895138204097748, - 0.4097926914691925, - 0.4273528456687927, - 0.4417152404785156, - 0.45248812437057495, - 0.459377646446228, - 0.46219584345817566, - 0.46086591482162476, - 0.45542407035827637, - 0.446018785238266, - 0.4329065978527069, - 0.41644516587257385, - 0.20379962027072906, - 0.2276504635810852, - 0.2537509500980377, - 0.28138911724090576, - 0.3098110258579254, - 0.3382413983345032, - 0.3659048080444336, - 0.39204660058021545, - 0.41595372557640076, - 0.43697401881217957, - 0.4545341730117798, - 0.4681551158428192, - 0.47746533155441284, - 0.4822109341621399, - 0.48226234316825867, - 0.4776182472705841, - 0.4684053063392639, - 0.45487478375434875, - 0.4373958110809326, - 0.41644516587257385, - 0.20379962027072906, - 0.22971223294734955, - 0.2578182518482208, - 0.28735098242759705, - 0.3175048530101776, - 0.34745731949806213, - 0.3763914108276367, - 0.40351787209510803, - 0.428096741437912, - 0.4494575560092926, - 0.4670177102088928, - 0.48029816150665283, - 0.4889366030693054, - 0.492697536945343, - 0.4914782643318176, - 0.4853120744228363, - 0.4743671417236328, - 0.45894208550453186, - 0.43945759534835815, - 0.41644516587257385, - 0.20379962027072906, - 0.22912311553955078, - 0.25665605068206787, - 0.2856474220752716, - 0.3153063952922821, - 0.344823956489563, - 0.3733949661254883, - 0.40024006366729736, - 0.42462700605392456, - 0.44589051604270935, - 0.46345067024230957, - 0.476828396320343, - 0.48565882444381714, - 0.4897010922431946, - 0.4888449013233185, - 0.4831136465072632, - 0.47266361117362976, - 0.4577798843383789, - 0.4388684630393982, - 0.41644516587257385, - 0.20379962027072906, - 0.22594693303108215, - 0.25039032101631165, - 0.2764630615711212, - 0.3034539520740509, - 0.3306266963481903, - 0.3572401702404022, - 0.3825683891773224, - 0.40592047572135925, - 0.4266594350337982, - 0.44421958923339844, - 0.4581218957901001, - 0.46798714995384216, - 0.47354626655578613, - 0.4746476411819458, - 0.4712611734867096, - 0.46347925066947937, - 0.45151418447494507, - 0.43569228053092957, - 0.41644516587257385, - 0.20379962027072906, - 0.22052788734436035, - 0.239700049161911, - 0.26079317927360535, - 0.28323185443878174, - 0.3064040243625641, - 0.32967764139175415, - 0.35241785645484924, - 0.3740043640136719, - 0.3938482999801636, - 0.4114084243774414, - 0.42620575428009033, - 0.43783658742904663, - 0.44598376750946045, - 0.4504249691963196, - 0.45103907585144043, - 0.4478093385696411, - 0.44082391262054443, - 0.43027323484420776, - 0.41644516587257385, - 0.20379962027072906, - 0.21345320343971252, - 0.22574369609355927, - 0.24033580720424652, - 0.2568315267562866, - 0.27478083968162537, - 0.29369422793388367, - 0.31305572390556335, - 0.3323372006416321, - 0.3510127067565918, - 0.36857283115386963, - 0.38453859090805054, - 0.39847445487976074, - 0.4100003242492676, - 0.41880178451538086, - 0.4246387481689453, - 0.42735201120376587, - 0.4268675446510315, - 0.4231985807418823, - 0.41644516587257385, - 0.20379962027072906, - 0.20548957586288452, - 0.2100336253643036, - 0.21730785071849823, - 0.22711381316184998, - 0.23918402194976807, - 0.2531892657279968, - 0.268747478723526, - 0.2854343056678772, - 0.30279454588890076, - 0.3203546702861786, - 0.33763569593429565, - 0.3541662096977234, - 0.36949536204338074, - 0.38320493698120117, - 0.39492103457450867, - 0.4043240547180176, - 0.411157488822937, - 0.41523492336273193, - 0.41644519567489624, - 0.20379963517189026, - 0.19749993085861206, - 0.19427229464054108, - 0.19420474767684937, - 0.19729912281036377, - 0.20347103476524353, - 0.21255210041999817, - 0.22429463267326355, - 0.23837833106517792, - 0.2544190287590027, - 0.2719791531562805, - 0.29057973623275757, - 0.3097133934497833, - 0.3288581967353821, - 0.34749191999435425, - 0.36510634422302246, - 0.3812209367752075, - 0.3953961431980133, - 0.4072452783584595, - 0.41644519567489624, - 0.20379963517189026, - 0.19035010039806366, - 0.18016766011714935, - 0.17353004217147827, - 0.17061831057071686, - 0.17151188850402832, - 0.17618639767169952, - 0.18451429903507233, - 0.19626851379871368, - 0.2111283391714096, - 0.22868847846984863, - 0.24846990406513214, - 0.2699330449104309, - 0.29249247908592224, - 0.3155328035354614, - 0.33842551708221436, - 0.3605462312698364, - 0.3812915086746216, - 0.40009546279907227, - 0.41644519567489624, - 0.20379963517189026, - 0.18481488525867462, - 0.16924820840358734, - 0.1575242131948471, - 0.14996270835399628, - 0.1467699259519577, - 0.14803297817707062, - 0.15371739864349365, - 0.16366815567016602, - 0.17761380970478058, - 0.1951739490032196, - 0.21586954593658447, - 0.23913615942001343, - 0.26433905959129333, - 0.2907908260822296, - 0.3177699148654938, - 0.34454041719436646, - 0.37037205696105957, - 0.3945602476596832, - 0.41644519567489624, - 0.20379963517189026, - 0.1814941018819809, - 0.1626972109079361, - 0.14792171120643616, - 0.13757061958312988, - 0.1319262683391571, - 0.13114266097545624, - 0.13524115085601807, - 0.14410994946956635, - 0.15750713646411896, - 0.17506727576255798, - 0.196311354637146, - 0.22065989673137665, - 0.24744877219200134, - 0.2759471833705902, - 0.3053778111934662, - 0.3349379003047943, - 0.3638210594654083, - 0.3912394642829895, - 0.41644519567489624, - 0.20379963517189026, - 0.1807475984096527, - 0.1612245738506317, - 0.145763099193573, - 0.13478492200374603, - 0.1285894811153412, - 0.12734580039978027, - 0.1310877799987793, - 0.1397133320569992, - 0.15298722684383392, - 0.17054736614227295, - 0.19191473722457886, - 0.21650652587413788, - 0.24365189671516418, - 0.2726103663444519, - 0.30259212851524353, - 0.33277928829193115, - 0.36234840750694275, - 0.3904929459095001, - 0.41644519567489624, - 0.20379963517189026, - 0.18265628814697266, - 0.1649898886680603, - 0.15128234028816223, - 0.14190751314163208, - 0.13712117075920105, - 0.13705384731292725, - 0.14170734584331512, - 0.15095479786396027, - 0.16454392671585083, - 0.18210406601428986, - 0.20315620303153992, - 0.2271260917186737, - 0.25335991382598877, - 0.28114205598831177, - 0.30971473455429077, - 0.3382985293865204, - 0.36611372232437134, - 0.39240163564682007, - 0.41644519567489624, - 0.20379963517189026, - 0.18701332807540894, - 0.17358513176441193, - 0.1638813018798828, - 0.1581665724515915, - 0.15659676492214203, - 0.15921476483345032, - 0.16594910621643066, - 0.1766161471605301, - 0.19092488288879395, - 0.20848502218723297, - 0.22881755232810974, - 0.25136786699295044, - 0.27552086114883423, - 0.30061766505241394, - 0.325973778963089, - 0.35089749097824097, - 0.37470895051956177, - 0.39675867557525635, - 0.41644519567489624, - 0.20379963517189026, - 0.1933465600013733, - 0.18607884645462036, - 0.18219469487667084, - 0.18180009722709656, - 0.1849057823419571, - 0.1914270669221878, - 0.20118603110313416, - 0.21391651034355164, - 0.22927123308181763, - 0.24683135747909546, - 0.2661179006099701, - 0.28660479187965393, - 0.3077331483364105, - 0.328926682472229, - 0.34960731863975525, - 0.3692108988761902, - 0.3872026801109314, - 0.4030919075012207, - 0.41644519567489624 - ], - "y": [ - -1.0071483850479126, - -0.9796473979949951, - -0.9510108232498169, - -0.9220198392868042, - -0.8934652805328369, - -0.8661260008811951, - -0.8407477140426636, - -0.8180227875709534, - -0.798570990562439, - -0.7829229831695557, - -0.7715055346488953, - -0.764630138874054, - -0.7624843120574951, - -0.765126645565033, - -0.7724849581718445, - -0.7843586206436157, - -0.8004237413406372, - -0.8202420473098755, - -0.8432729840278625, - -0.8688883781433105, - -1.0071483850479126, - -0.9790325164794922, - -0.9497978091239929, - -0.9202418327331543, - -0.8911707401275635, - -0.863377571105957, - -0.8376203179359436, - -0.814601719379425, - -0.7949495911598206, - -0.77920001745224, - -0.7677826285362244, - -0.7610087394714355, - -0.7590633034706116, - -0.761999249458313, - -0.7697365283966064, - -0.7820641398429871, - -0.7986457347869873, - -0.8190290927886963, - -0.8426581025123596, - -0.8688883781433105, - -1.0071483850479126, - -0.9813622236251831, - -0.954393744468689, - -0.9269786477088928, - -0.8998646140098572, - -0.8737913370132446, - -0.8494699597358704, - -0.827564001083374, - -0.8086709380149841, - -0.7933061718940735, - -0.7818887233734131, - -0.7747300863265991, - -0.7720255851745605, - -0.7738488912582397, - -0.780150294303894, - -0.7907580137252808, - -0.8053825497627258, - -0.8236250281333923, - -0.8449878692626953, - -0.8688883781433105, - -1.0071483850479126, - -0.9863841533660889, - -0.9643006324768066, - -0.9415001273155212, - -0.9186046719551086, - -0.8962388038635254, - -0.8750125765800476, - -0.8555049896240234, - -0.8382481336593628, - -0.8237127065658569, - -0.8122953176498413, - -0.8043072819709778, - -0.7999665141105652, - -0.799391508102417, - -0.8025978207588196, - -0.8094980716705322, - -0.8199040293693542, - -0.8335318565368652, - -0.8500097990036011, - -0.8688883781433105, - -1.0071483850479126, - -0.9935539960861206, - -0.9784447550773621, - -0.962232768535614, - -0.9453603029251099, - -0.9282875061035156, - -0.911480188369751, - -0.8953967690467834, - -0.8804759383201599, - -0.8671247363090515, - -0.8557072877883911, - -0.8465350866317749, - -0.8398582935333252, - -0.8358591198921204, - -0.8346465229988098, - -0.8362536430358887, - -0.840636670589447, - -0.8476760387420654, - -0.8571796417236328, - -0.8688883781433105, - -1.0071483850479126, - -1.0020948648452759, - -0.9952934980392456, - -0.9869298338890076, - -0.9772319197654724, - -0.9664644598960876, - -0.9549210071563721, - -0.9429165124893188, - -0.9307783842086792, - -0.9188377857208252, - -0.9074203372001648, - -0.8968375325202942, - -0.8873780369758606, - -0.8792998790740967, - -0.8728234767913818, - -0.868125319480896, - -0.8653337359428406, - -0.864524781703949, - -0.8657205104827881, - -0.8688883781433105, - -1.0071483850479126, - -1.0110812187194824, - -1.0130209922790527, - -1.0129148960113525, - -1.0107659101486206, - -1.0066325664520264, - -1.0006275177001953, - -0.9929146766662598, - -0.9837043881416321, - -0.9732479453086853, - -0.9618304967880249, - -0.9497635960578918, - -0.9373762011528015, - -0.9250063896179199, - -0.9129915237426758, - -0.9016593098640442, - -0.8913188576698303, - -0.8822522759437561, - -0.8747068047523499, - -0.8688883781433105, - -1.0071483850479126, - -1.0195391178131104, - -1.0297062397003174, - -1.037372350692749, - -1.0423282384872437, - -1.0444389581680298, - -1.0436466932296753, - -1.039973258972168, - -1.033518671989441, - -1.0244591236114502, - -1.0130417346954346, - -0.9995778203010559, - -0.9844347834587097, - -0.9680256247520447, - -0.9507979154586792, - -0.9332216382026672, - -0.9157761931419373, - -0.898937463760376, - -0.8831647634506226, - -0.8688883781433105, - -1.0071483850479126, - -1.0265522003173828, - -1.0435410737991333, - -1.0576515197753906, - -1.0684987306594849, - -1.0757867097854614, - -1.0793167352676392, - -1.0789926052093506, - -1.0748229026794434, - -1.0669217109680176, - -1.055504322052002, - -1.0408821105957031, - -1.023454189300537, - -1.0036957263946533, - -0.9821457266807556, - -0.9593920707702637, - -0.9360554218292236, - -0.9127722978591919, - -0.890177845954895, - -0.8688883781433105, - -1.0071483850479126, - -1.031360387802124, - -1.0530263185501099, - -1.0715550184249878, - -1.0864412784576416, - -1.0972788333892822, - -1.1037722826004028, - -1.105744481086731, - -1.1031414270401, - -1.0960341691970825, - -1.084616780281067, - -1.0692005157470703, - -1.050205945968628, - -1.028151273727417, - -1.0036379098892212, - -0.9773346781730652, - -0.9499589204788208, - -0.9222575426101685, - -0.8949860334396362, - -0.8688883781433105, - -1.0071483850479126, - -1.033442735671997, - -1.0571340322494507, - -1.0775761604309082, - -1.0942115783691406, - -1.1065864562988281, - -1.114363193511963, - -1.1173298358917236, - -1.1154052019119263, - -1.1086418628692627, - -1.097224473953247, - -1.0814642906188965, - -1.0617914199829102, - -1.038742184638977, - -1.012945532798767, - -0.985105037689209, - -0.955980122089386, - -0.9263652563095093, - -0.8970683217048645, - -0.8688883781433105, - -1.0071483850479126, - -1.0325733423233032, - -1.0554192066192627, - -1.0750625133514404, - -1.0909676551818848, - -1.1027008295059204, - -1.109941840171814, - -1.1124931573867798, - -1.1102854013442993, - -1.1033785343170166, - -1.091961145401001, - -1.0763444900512695, - -1.0569547414779663, - -1.0343207120895386, - -1.0090597867965698, - -0.9818611145019531, - -0.9534664154052734, - -0.9246504306793213, - -0.8961989879608154, - -0.8688883781433105, - -1.0071483850479126, - -1.0288467407226562, - -1.0480674505233765, - -1.0642863512039185, - -1.0770610570907593, - -1.0860430002212524, - -1.090987205505371, - -1.0917588472366333, - -1.0883368253707886, - -1.0808144807815552, - -1.06939697265625, - -1.0543959140777588, - -1.0362203121185303, - -1.0153660774230957, - -0.9924020171165466, - -0.9679544568061829, - -0.9426903128623962, - -0.9172987341880798, - -0.8924723863601685, - -0.8688883781433105, - -1.0071483850479126, - -1.022666573524475, - -1.035875678062439, - -1.0464155673980713, - -1.053998589515686, - -1.0584180355072021, - -1.0595532655715942, - -1.0573734045028687, - -1.0519378185272217, - -1.0433948040008545, - -1.0319772958755493, - -1.0179970264434814, - -1.0018349885940552, - -0.9839322566986084, - -0.9647771120071411, - -0.9448920488357544, - -0.9248194694519043, - -0.9051069617271423, - -0.8862921595573425, - -0.8688883781433105, - -1.0071483850479126, - -1.014702558517456, - -1.020164966583252, - -1.0233867168426514, - -1.0242797136306763, - -1.0228197574615479, - -1.019046664237976, - -1.0130633115768433, - -1.005033016204834, - -0.9951746463775635, - -0.9837571978569031, - -0.971092164516449, - -0.9575248956680298, - -0.9434255957603455, - -0.9291788339614868, - -0.9151731133460999, - -0.9017905592918396, - -0.8893962502479553, - -0.8783282041549683, - -0.8688883781433105, - -1.0071483850479126, - -1.0058177709579468, - -1.0026378631591797, - -0.9976952075958252, - -0.9911247491836548, - -0.9831056594848633, - -0.9738567471504211, - -0.9636302590370178, - -0.9527050852775574, - -0.9413793683052063, - -0.9299619197845459, - -0.9187642931938171, - -0.9080917835235596, - -0.8982356786727905, - -0.8894646763801575, - -0.8820181488990784, - -0.8760991096496582, - -0.8718690872192383, - -0.869443416595459, - -0.8688883781433105, - -1.0071483850479126, - -0.9969750642776489, - -0.9851935505867004, - -0.9721251726150513, - -0.9581264853477478, - -0.9435793161392212, - -0.9288804531097412, - -0.9144308567047119, - -0.9006246328353882, - -0.8878384232521057, - -0.8764209747314453, - -0.8666837811470032, - -0.8588923811912537, - -0.8532593846321106, - -0.8499383330345154, - -0.8490198850631714, - -0.8505290746688843, - -0.854424774646759, - -0.8606007099151611, - -0.8688883781433105, - -1.0071483850479126, - -0.9891325831413269, - -0.9697225093841553, - -0.9494476318359375, - -0.9288609623908997, - -0.9085240960121155, - -0.8889917731285095, - -0.8707967400550842, - -0.854435384273529, - -0.8403539061546326, - -0.8289364576339722, - -0.820494532585144, - -0.8152583241462708, - -0.8133707046508789, - -0.8148831129074097, - -0.8197543621063232, - -0.8278515338897705, - -0.8389537334442139, - -0.8527582287788391, - -0.8688883781433105, - -1.0071483850479126, - -0.983140230178833, - -0.9579012393951416, - -0.9321199059486389, - -0.906499445438385, - -0.8817387819290161, - -0.8585132360458374, - -0.8374564051628113, - -0.8191426396369934, - -0.8040714859962463, - -0.7926540374755859, - -0.7852017879486084, - -0.781917929649353, - -0.7828921675682068, - -0.7880977392196655, - -0.7973928451538086, - -0.8105238080024719, - -0.827132523059845, - -0.8467658758163452, - -0.8688883781433105, - -1.0071483850479126, - -0.9796473979949951, - -0.9510108232498169, - -0.9220198392868042, - -0.8934652209281921, - -0.8661259412765503, - -0.8407477140426636, - -0.8180227875709534, - -0.798570990562439, - -0.7829229831695557, - -0.7715055346488953, - -0.764630138874054, - -0.7624843120574951, - -0.765126645565033, - -0.7724849581718445, - -0.7843586206436157, - -0.8004237413406372, - -0.8202420473098755, - -0.8432729840278625, - -0.8688883781433105 - ], - "z": [ - 0.10672344267368317, - 0.10424736142158508, - 0.10546590387821198, - 0.11034584045410156, - 0.11875405162572861, - 0.13046115636825562, - 0.14514786005020142, - 0.16241350769996643, - 0.1817871779203415, - 0.2027403861284256, - 0.22470156848430634, - 0.24707169830799103, - 0.2692405879497528, - 0.29060351848602295, - 0.31057775020599365, - 0.32861843705177307, - 0.34423351287841797, - 0.356997013092041, - 0.36656075716018677, - 0.3726639151573181, - 0.10672344267368317, - 0.09783224761486053, - 0.09281067550182343, - 0.09179569780826569, - 0.09481498599052429, - 0.10178616642951965, - 0.11251913011074066, - 0.12672105431556702, - 0.14400461316108704, - 0.1638982892036438, - 0.18585948646068573, - 0.20928913354873657, - 0.2335481345653534, - 0.257974773645401, - 0.2819027304649353, - 0.30467936396598816, - 0.3256833553314209, - 0.3443417549133301, - 0.3601456582546234, - 0.3726639151573181, - 0.10672344267368317, - 0.09257717430591583, - 0.08244386315345764, - 0.07659991085529327, - 0.0752047449350357, - 0.07829639315605164, - 0.08579054474830627, - 0.09748275578022003, - 0.11305412650108337, - 0.13207989931106567, - 0.1540410816669464, - 0.1783386468887329, - 0.20430982112884521, - 0.2312461882829666, - 0.2584129571914673, - 0.28506913781166077, - 0.3104875683784485, - 0.3339749574661255, - 0.3548905551433563, - 0.3726639151573181, - 0.10672344267368317, - 0.08905157446861267, - 0.07548883557319641, - 0.06640517711639404, - 0.06204839050769806, - 0.062537282705307, - 0.06785856187343597, - 0.07786701619625092, - 0.09228970110416412, - 0.11073319613933563, - 0.13269437849521637, - 0.15757423639297485, - 0.1846940964460373, - 0.2133142054080963, - 0.24265384674072266, - 0.2719127833843231, - 0.30029284954071045, - 0.32701992988586426, - 0.35136497020721436, - 0.3726639151573181, - 0.10672344267368317, - 0.0876375287771225, - 0.07269932329654694, - 0.06231628358364105, - 0.05677163600921631, - 0.056216612458229065, - 0.06066638231277466, - 0.06999953091144562, - 0.08396150171756744, - 0.10217145085334778, - 0.12413264065980911, - 0.14924603700637817, - 0.1768265962600708, - 0.2061220109462738, - 0.23633317649364471, - 0.2666360139846802, - 0.29620394110679626, - 0.3242304027080536, - 0.349950909614563, - 0.3726639151573181, - 0.10672344267368317, - 0.08848826587200165, - 0.07437758147716522, - 0.06477628648281097, - 0.05994628369808197, - 0.06001932919025421, - 0.06499341130256653, - 0.07473285496234894, - 0.08897200226783752, - 0.10732245445251465, - 0.12928363680839539, - 0.15425652265548706, - 0.18155992031097412, - 0.21044905483722687, - 0.24013587832450867, - 0.26981067657470703, - 0.2986639440059662, - 0.3259086608886719, - 0.35080164670944214, - 0.3726639151573181, - 0.10672344267368317, - 0.09151159226894379, - 0.08034175634384155, - 0.07351863384246826, - 0.07122832536697388, - 0.0735333114862442, - 0.08037072420120239, - 0.09155404567718506, - 0.10677821934223175, - 0.1256280094385147, - 0.14758920669555664, - 0.17206275463104248, - 0.19838111102581024, - 0.22582638263702393, - 0.25364986062049866, - 0.28109270334243774, - 0.30740630626678467, - 0.331872820854187, - 0.3538249731063843, - 0.3726639151573181, - 0.10672344267368317, - 0.09637987613677979, - 0.08994552493095398, - 0.08759593963623047, - 0.08939516544342041, - 0.09529414772987366, - 0.10513196885585785, - 0.11864027380943298, - 0.13545061647891998, - 0.15510442852973938, - 0.17706561088562012, - 0.20073513686656952, - 0.22546735405921936, - 0.2505876123905182, - 0.2754107117652893, - 0.2992595434188843, - 0.3214836120605469, - 0.3414766192436218, - 0.35869327187538147, - 0.3726639151573181, - 0.10672344267368317, - 0.10256557166576385, - 0.10214820504188538, - 0.10548271238803864, - 0.11247815191745758, - 0.1229436919093132, - 0.13659387826919556, - 0.153056338429451, - 0.17188206315040588, - 0.19255749881267548, - 0.2145186811685562, - 0.23716658353805542, - 0.25988340377807617, - 0.2820495367050171, - 0.30306026339530945, - 0.32234254479408264, - 0.33937036991119385, - 0.3536792993545532, - 0.36487895250320435, - 0.3726639151573181, - 0.10672344267368317, - 0.10939836502075195, - 0.11562740057706833, - 0.12524065375328064, - 0.13797587156295776, - 0.15348568558692932, - 0.17134705185890198, - 0.1910727173089981, - 0.21212463080883026, - 0.23392857611179352, - 0.25588977336883545, - 0.277409166097641, - 0.2978997826576233, - 0.3168027102947235, - 0.33360227942466736, - 0.347840279340744, - 0.35912829637527466, - 0.3671584725379944, - 0.37171176075935364, - 0.3726639151573181, - 0.10672344267368317, - 0.11613781005144119, - 0.1289224624633789, - 0.1447286754846573, - 0.16312527656555176, - 0.1836104542016983, - 0.20562545955181122, - 0.22856974601745605, - 0.2518174648284912, - 0.2747344672679901, - 0.29669564962387085, - 0.31710198521614075, - 0.33539682626724243, - 0.35108110308647156, - 0.36372703313827515, - 0.3729896545410156, - 0.3786163330078125, - 0.38045355677604675, - 0.3784511983394623, - 0.3726639151573181, - 0.10672344267368317, - 0.1220535859465599, - 0.14059266448020935, - 0.1618349552154541, - 0.1852010190486908, - 0.210053488612175, - 0.23571449518203735, - 0.2614840269088745, - 0.2866591811180115, - 0.3105532228946686, - 0.3325144052505493, - 0.351943701505661, - 0.3683111071586609, - 0.3811701536178589, - 0.3901700973510742, - 0.39506542682647705, - 0.3957226276397705, - 0.3921237587928772, - 0.3843669891357422, - 0.3726639151573181, - 0.10672342777252197, - 0.12650462985038757, - 0.14937332272529602, - 0.17470574378967285, - 0.20181085169315338, - 0.22994929552078247, - 0.2583535313606262, - 0.2862488031387329, - 0.3128741681575775, - 0.3375033438205719, - 0.35946452617645264, - 0.37815868854522705, - 0.3930758833885193, - 0.40380918979644775, - 0.4100658893585205, - 0.41167524456977844, - 0.40859341621398926, - 0.40090441703796387, - 0.38881802558898926, - 0.3726639151573181, - 0.10672342777252197, - 0.12900859117507935, - 0.15431296825408936, - 0.1819463074207306, - 0.21115484833717346, - 0.24114184081554413, - 0.2710893154144287, - 0.30018043518066406, - 0.32762160897254944, - 0.35266435146331787, - 0.374625563621521, - 0.392906129360199, - 0.40700751543045044, - 0.41654497385025024, - 0.42125841975212097, - 0.4210192561149597, - 0.415833979845047, - 0.4058440625667572, - 0.3913220167160034, - 0.3726639151573181, - 0.10672342777252197, - 0.12929415702819824, - 0.15487629175186157, - 0.18277202546596527, - 0.2122204303741455, - 0.24241822957992554, - 0.27254170179367065, - 0.3017691671848297, - 0.32930341362953186, - 0.3543933033943176, - 0.37635448575019836, - 0.3945879340171814, - 0.4085962474346161, - 0.4179973602294922, - 0.4225348234176636, - 0.4220848083496094, - 0.4166596829891205, - 0.40640735626220703, - 0.3916075527667999, - 0.3726639151573181, - 0.10672342777252197, - 0.12733034789562225, - 0.15100224316120148, - 0.17709340155124664, - 0.2048921436071396, - 0.2336401641368866, - 0.262553334236145, - 0.2908429205417633, - 0.31773731112480164, - 0.3425028622150421, - 0.36446404457092285, - 0.38302183151245117, - 0.3976700007915497, - 0.40800899267196655, - 0.41375675797462463, - 0.41475653648376465, - 0.41098105907440186, - 0.40253332257270813, - 0.38964372873306274, - 0.3726639151573181, - 0.10672344267368317, - 0.12332997471094131, - 0.14311063289642334, - 0.16552580893039703, - 0.18996410071849823, - 0.21575886011123657, - 0.24220652878284454, - 0.2685856223106384, - 0.2941766679286957, - 0.31828153133392334, - 0.3402427136898041, - 0.3594611883163452, - 0.3754127025604248, - 0.3876621723175049, - 0.3958754539489746, - 0.3998284935951233, - 0.39941346645355225, - 0.3946416974067688, - 0.3856433629989624, - 0.3726639151573181, - 0.10672344267368317, - 0.11772655695676804, - 0.13205662369728088, - 0.1493227779865265, - 0.16905398666858673, - 0.19071204960346222, - 0.21370622515678406, - 0.23740926384925842, - 0.26117461919784546, - 0.284354031085968, - 0.30631521344184875, - 0.326459139585495, - 0.3442363142967224, - 0.3591618835926056, - 0.37082862854003906, - 0.3789183795452118, - 0.3832104206085205, - 0.38358771800994873, - 0.3800399601459503, - 0.3726639151573181, - 0.10672344267368317, - 0.11112730205059052, - 0.11903813481330872, - 0.13024012744426727, - 0.14442774653434753, - 0.1612139344215393, - 0.18014086782932281, - 0.20069223642349243, - 0.2223074734210968, - 0.24439695477485657, - 0.2663581371307373, - 0.28759199380874634, - 0.3075193166732788, - 0.32559651136398315, - 0.34133052825927734, - 0.3542921245098114, - 0.3641277849674225, - 0.37056922912597656, - 0.373440682888031, - 0.3726639151573181, - 0.10672344267368317, - 0.10424736142158508, - 0.10546590387821198, - 0.11034584045410156, - 0.11875403672456741, - 0.13046114146709442, - 0.14514784514904022, - 0.16241349279880524, - 0.1817871630191803, - 0.2027403563261032, - 0.22470155358314514, - 0.24707168340682983, - 0.2692405581474304, - 0.29060348868370056, - 0.31057772040367126, - 0.3286184072494507, - 0.3442334830760956, - 0.35699698328971863, - 0.36656075716018677, - 0.3726639151573181 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.3757888376712799, - 0.37527525424957275, - 0.3710878789424896, - 0.36334091424942017, - 0.35224565863609314, - 0.33810481429100037, - 0.321304053068161, - 0.30230167508125305, - 0.2816160321235657, - 0.2598113417625427, - 0.23748241364955902, - 0.2152383029460907, - 0.19368577003479004, - 0.17341271042823792, - 0.1549721658229828, - 0.13886705040931702, - 0.12553676962852478, - 0.11534486711025238, - 0.10856939852237701, - 0.10539516806602478, - 0.3757888674736023, - 0.3654009699821472, - 0.3516085743904114, - 0.3347879648208618, - 0.3153979778289795, - 0.29396742582321167, - 0.27108094096183777, - 0.24736280739307404, - 0.22345998883247375, - 0.20002448558807373, - 0.17769554257392883, - 0.15708225965499878, - 0.13874690234661102, - 0.12318961322307587, - 0.11083477735519409, - 0.10201935470104218, - 0.09698383510112762, - 0.09586557745933533, - 0.09869508445262909, - 0.10539516806602478, - 0.3757888674736023, - 0.3564525246620178, - 0.3339557945728302, - 0.30891233682632446, - 0.28200531005859375, - 0.25396862626075745, - 0.2255670726299286, - 0.19757534563541412, - 0.170756995677948, - 0.14584358036518097, - 0.12351465225219727, - 0.10437926650047302, - 0.08895942568778992, - 0.0776757299900055, - 0.07083597779273987, - 0.06862670183181763, - 0.07110820710659027, - 0.07821276783943176, - 0.0897466391324997, - 0.10539516806602478, - 0.3757888674736023, - 0.3493996262550354, - 0.3200424313545227, - 0.2885180115699768, - 0.25568631291389465, - 0.2224428951740265, - 0.18969452381134033, - 0.15833449363708496, - 0.12921825051307678, - 0.1031399816274643, - 0.08081105351448059, - 0.0628405213356018, - 0.049718573689460754, - 0.041803181171417236, - 0.03931021690368652, - 0.04230770468711853, - 0.050713881850242615, - 0.06429941952228546, - 0.08269377052783966, - 0.10539516806602478, - 0.3757888674736023, - 0.34500664472579956, - 0.3113762438297272, - 0.27581503987312317, - 0.23929306864738464, - 0.2028065323829651, - 0.1673506796360016, - 0.13389265537261963, - 0.10334506630897522, - 0.07654128968715668, - 0.054212361574172974, - 0.03696735203266144, - 0.025276735424995422, - 0.01945933699607849, - 0.01967388391494751, - 0.02591446042060852, - 0.03801091015338898, - 0.05563323199748993, - 0.07830075919628143, - 0.10539516806602478, - 0.3757888674736023, - 0.3437495529651642, - 0.30889636278152466, - 0.2721800208091736, - 0.23460203409194946, - 0.19718745350837708, - 0.16095681488513947, - 0.12689843773841858, - 0.09594130516052246, - 0.06892986595630646, - 0.046600937843322754, - 0.02956359088420868, - 0.018282517790794373, - 0.013065487146377563, - 0.014054790139198303, - 0.021223410964012146, - 0.0343758761882782, - 0.053153350949287415, - 0.07704366743564606, - 0.10539516806602478, - 0.3757888674736023, - 0.3457645773887634, - 0.3128714859485626, - 0.27800679206848145, - 0.24212153255939484, - 0.20619454979896545, - 0.17120584845542908, - 0.13810977339744568, - 0.10780918598175049, - 0.08113056421279907, - 0.05880163609981537, - 0.04143147170543671, - 0.029493868350982666, - 0.02331450581550598, - 0.023061886429786682, - 0.02874290943145752, - 0.04020266234874725, - 0.05712847411632538, - 0.07905872166156769, - 0.10539516806602478, - 0.3757888674736023, - 0.3508334159851074, - 0.3228708803653717, - 0.2926639914512634, - 0.2610367238521576, - 0.228851780295372, - 0.1969870775938034, - 0.16631180047988892, - 0.13766267895698547, - 0.11182120442390442, - 0.08949227631092072, - 0.07128496468067169, - 0.05769588053226471, - 0.04909573495388031, - 0.04571911692619324, - 0.04765811562538147, - 0.054859861731529236, - 0.06712786853313446, - 0.08412754535675049, - 0.10539516806602478, - 0.3757888674736023, - 0.3584067225456238, - 0.3378109335899353, - 0.3145632743835449, - 0.289297878742218, - 0.26270389556884766, - 0.23550675809383392, - 0.20844833552837372, - 0.1822666972875595, - 0.15767604112625122, - 0.13534709811210632, - 0.11588896811008453, - 0.09983241558074951, - 0.08761541545391083, - 0.07957123219966888, - 0.0759192556142807, - 0.07675912976264954, - 0.08206793665885925, - 0.09170086681842804, - 0.10539516806602478, - 0.3757888376712799, - 0.3676638603210449, - 0.35607269406318665, - 0.34133148193359375, - 0.3238424062728882, - 0.304082453250885, - 0.2825906574726105, - 0.25995323061943054, - 0.23678769171237946, - 0.21372592449188232, - 0.19139698147773743, - 0.17040996253490448, - 0.15133732557296753, - 0.13469931483268738, - 0.12094979733228683, - 0.11046379804611206, - 0.10352735221385956, - 0.10032966732978821, - 0.10095798969268799, - 0.10539516806602478, - 0.3757888376712799, - 0.37760162353515625, - 0.3756771683692932, - 0.37006789445877075, - 0.36092692613601685, - 0.3485034704208374, - 0.33313649892807007, - 0.3152451515197754, - 0.29531747102737427, - 0.2738969922065735, - 0.251568078994751, - 0.2289397418498993, - 0.20662924647331238, - 0.18524517118930817, - 0.16537083685398102, - 0.14754830300807953, - 0.13226377964019775, - 0.11993414908647537, - 0.11089576780796051, - 0.10539516806602478, - 0.3757888376712799, - 0.3871431350708008, - 0.39449992775917053, - 0.39765849709510803, - 0.39653271436691284, - 0.3911532759666443, - 0.381666898727417, - 0.3683323860168457, - 0.35151341557502747, - 0.33166882395744324, - 0.30933988094329834, - 0.2851356863975525, - 0.2597164511680603, - 0.2337755560874939, - 0.20802061259746552, - 0.18315410614013672, - 0.15985435247421265, - 0.1387569159269333, - 0.12043727934360504, - 0.10539515316486359, - 0.3757888376712799, - 0.3952544331550598, - 0.41050124168395996, - 0.42111337184906006, - 0.4268013536930084, - 0.4274100065231323, - 0.4229227900505066, - 0.4134620428085327, - 0.39928585290908813, - 0.3807808756828308, - 0.3584519624710083, - 0.33290812373161316, - 0.3048461377620697, - 0.2750314474105835, - 0.24427738785743713, - 0.2134227454662323, - 0.18330922722816467, - 0.15475822985172272, - 0.12854856252670288, - 0.10539515316486359, - 0.3757888376712799, - 0.40105652809143066, - 0.4219471216201782, - 0.43789082765579224, - 0.44845277070999146, - 0.45334476232528687, - 0.4524334669113159, - 0.4457436800003052, - 0.4334578514099121, - 0.4159111976623535, - 0.3935822546482086, - 0.3670801520347595, - 0.33712777495384216, - 0.3045421540737152, - 0.2702121436595917, - 0.23507417738437653, - 0.20008669793605804, - 0.16620412468910217, - 0.13435064256191254, - 0.10539515316486359, - 0.3757888376712799, - 0.40392062067985535, - 0.4275972247123718, - 0.4461727738380432, - 0.4591406583786011, - 0.46614712476730347, - 0.4670010209083557, - 0.46167904138565063, - 0.4503263831138611, - 0.43325275182724, - 0.4109238088130951, - 0.3839486837387085, - 0.3530631363391876, - 0.3191096782684326, - 0.2830144762992859, - 0.24576207995414734, - 0.20836865901947021, - 0.1718541979789734, - 0.1372147500514984, - 0.10539515316486359, - 0.3757888376712799, - 0.4035363793373108, - 0.42683926224708557, - 0.4450617730617523, - 0.45770689845085144, - 0.46442967653274536, - 0.465046763420105, - 0.45954132080078125, - 0.4480634927749634, - 0.4309263825416565, - 0.408597469329834, - 0.3816857933998108, - 0.35092541575431824, - 0.3171554505825043, - 0.28129705786705017, - 0.2443283051252365, - 0.20725764334201813, - 0.17109625041484833, - 0.13683052361011505, - 0.10539515316486359, - 0.3757888376712799, - 0.3999454975128174, - 0.41975539922714233, - 0.4346781373023987, - 0.44430679082870483, - 0.44837862253189087, - 0.44678252935409546, - 0.4395621418952942, - 0.4269143342971802, - 0.40918415784835815, - 0.38685524463653564, - 0.3605366349220276, - 0.3309462368488312, - 0.29889121651649475, - 0.2652459740638733, - 0.2309281826019287, - 0.19687402248382568, - 0.1640123724937439, - 0.13323961198329926, - 0.10539515316486359, - 0.3757888376712799, - 0.3935369849205017, - 0.4071132242679596, - 0.4161471724510193, - 0.4203924536705017, - 0.4197332262992859, - 0.414187490940094, - 0.40390655398368835, - 0.3891708254814148, - 0.3703821897506714, - 0.3480532765388489, - 0.32279306650161743, - 0.29529064893722534, - 0.2662961781024933, - 0.2366005927324295, - 0.20701384544372559, - 0.1783430278301239, - 0.15137021243572235, - 0.12683112919330597, - 0.10539515316486359, - 0.3757888376712799, - 0.3850054144859314, - 0.3902827501296997, - 0.39147692918777466, - 0.3885553479194641, - 0.38159775733947754, - 0.3707938492298126, - 0.35643839836120605, - 0.3389229476451874, - 0.3187252879142761, - 0.2963963449001312, - 0.2725452184677124, - 0.24782247841358185, - 0.22290252149105072, - 0.19846510887145996, - 0.17517676949501038, - 0.15367278456687927, - 0.13453975319862366, - 0.11829954385757446, - 0.10539515316486359, - 0.3757888376712799, - 0.37527525424957275, - 0.3710878789424896, - 0.3633408844470978, - 0.35224565863609314, - 0.338104784488678, - 0.3213040232658386, - 0.30230164527893066, - 0.2816160023212433, - 0.25981131196022034, - 0.23748238384723663, - 0.2152382731437683, - 0.19368574023246765, - 0.17341268062591553, - 0.1549721360206604, - 0.13886705040931702, - 0.1255367398262024, - 0.11534486711025238, - 0.10856939852237701, - 0.10539516806602478 - ], - "y": [ - -1.0483919382095337, - -1.066805362701416, - -1.0871143341064453, - -1.1087647676467896, - -1.1311662197113037, - -1.1537076234817505, - -1.175774097442627, - -1.1967637538909912, - -1.2161039113998413, - -1.2332671880722046, - -1.2477853298187256, - -1.2592623233795166, - -1.2673851251602173, - -1.2719321250915527, - -1.2727794647216797, - -1.2699037790298462, - -1.2633836269378662, - -1.2533968687057495, - -1.2402158975601196, - -1.2242003679275513, - -1.0483919382095337, - -1.063584566116333, - -1.0807605981826782, - -1.0994515419006348, - -1.1191474199295044, - -1.1393110752105713, - -1.1593925952911377, - -1.1788439750671387, - -1.1971348524093628, - -1.2137662172317505, - -1.2282843589782715, - -1.240293264389038, - -1.2494654655456543, - -1.2555506229400635, - -1.2583829164505005, - -1.2578849792480469, - -1.2540704011917114, - -1.247043251991272, - -1.2369952201843262, - -1.2242003679275513, - -1.0483919382095337, - -1.058847427368164, - -1.0714154243469238, - -1.085753321647644, - -1.1014697551727295, - -1.1181362867355347, - -1.1352981328964233, - -1.1524871587753296, - -1.1692346334457397, - -1.1850835084915161, - -1.199601650238037, - -1.212393045425415, - -1.2231085300445557, - -1.2314561605453491, - -1.2372080087661743, - -1.240207314491272, - -1.2403721809387207, - -1.2376980781555176, - -1.2322579622268677, - -1.2242003679275513, - -1.0483919382095337, - -1.0531071424484253, - -1.060091495513916, - -1.0691545009613037, - -1.08004891872406, - -1.0924776792526245, - -1.106101632118225, - -1.1205493211746216, - -1.13542640209198, - -1.1503273248672485, - -1.1648454666137695, - -1.1785848140716553, - -1.1911706924438477, - -1.2022597789764404, - -1.2115495204925537, - -1.2187864780426025, - -1.2237733602523804, - -1.2263740301132202, - -1.226517677307129, - -1.2242003679275513, - -1.0483919382095337, - -1.0469857454299927, - -1.048015832901001, - -1.0514538288116455, - -1.057206153869629, - -1.0651158094406128, - -1.0749671459197998, - -1.086491346359253, - -1.0993741750717163, - -1.1132639646530151, - -1.1277821063995361, - -1.142532467842102, - -1.1571128368377686, - -1.1711252927780151, - -1.184187650680542, - -1.1959437131881714, - -1.2060726881027222, - -1.2142983675003052, - -1.2203963994979858, - -1.2242003679275513, - -1.0483919382095337, - -1.0411467552185059, - -1.0364969968795776, - -1.034569501876831, - -1.035416841506958, - -1.0390158891677856, - -1.0452685356140137, - -1.0540040731430054, - -1.0649844408035278, - -1.0779099464416504, - -1.0924280881881714, - -1.1081428527832031, - -1.124625563621521, - -1.1414265632629395, - -1.1580876111984253, - -1.1741544008255005, - -1.1891883611679077, - -1.2027796506881714, - -1.214557409286499, - -1.2242003679275513, - -1.0483919382095337, - -1.0362228155136108, - -1.0267833471298218, - -1.0203311443328857, - -1.0170421600341797, - -1.0170061588287354, - -1.0202239751815796, - -1.0266079902648926, - -1.0359840393066406, - -1.0480962991714478, - -1.0626144409179688, - -1.079142451286316, - -1.0972294807434082, - -1.116382122039795, - -1.136077880859375, - -1.1557797193527222, - -1.1749500036239624, - -1.1930660009384155, - -1.2096333503723145, - -1.2242003679275513, - -1.0483919382095337, - -1.0327473878860474, - -1.0199275016784668, - -1.0102816820144653, - -1.0040733814239502, - -1.0014716386795044, - -1.0025476217269897, - -1.0072718858718872, - -1.0155155658721924, - -1.0270538330078125, - -1.0415719747543335, - -1.0586739778518677, - -1.0778932571411133, - -1.0987056493759155, - -1.120543360710144, - -1.1428108215332031, - -1.164900541305542, - -1.186210036277771, - -1.2061580419540405, - -1.2242003679275513, - -1.0483919382095337, - -1.0310972929000854, - -1.0166722536087036, - -1.0055102109909058, - -0.9979156851768494, - -0.9940958023071289, - -0.9941548109054565, - -0.9980909824371338, - -1.0057971477508545, - -1.0170629024505615, - -1.0315810441970825, - -1.0489555597305298, - -1.0687124729156494, - -1.0903128385543823, - -1.113167643547058, - -1.136653184890747, - -1.1601290702819824, - -1.1829549074172974, - -1.2045079469680786, - -1.2242003679275513, - -1.0483919382095337, - -1.0314513444900513, - -1.017370581626892, - -1.0065337419509888, - -0.9992365837097168, - -0.9956780076026917, - -0.9959551095962524, - -1.0000603199005127, - -1.007881760597229, - -1.0192060470581055, - -1.0337241888046265, - -1.0510401725769043, - -1.0706818103790283, - -1.0921132564544678, - -1.114749789237976, - -1.1379741430282593, - -1.1611526012420654, - -1.1836531162261963, - -1.2048618793487549, - -1.2242003679275513, - -1.0483919382095337, - -1.0337709188461304, - -1.0219465494155884, - -1.0132414102554321, - -1.0078928470611572, - -1.0060466527938843, - -1.0077534914016724, - -1.012966513633728, - -1.0215437412261963, - -1.0332510471343994, - -1.0477691888809204, - -1.0647021532058716, - -1.0835880041122437, - -1.1039115190505981, - -1.1251184940338135, - -1.1466302871704102, - -1.1678602695465088, - -1.1882292032241821, - -1.2071815729141235, - -1.2242003679275513, - -1.0483919382095337, - -1.0378049612045288, - -1.0299046039581299, - -1.0249061584472656, - -1.0229463577270508, - -1.024078369140625, - -1.0282713174819946, - -1.0354108810424805, - -1.045302391052246, - -1.057676076889038, - -1.072194218635559, - -1.0884608030319214, - -1.106032371520996, - -1.1244293451309204, - -1.1431500911712646, - -1.1616837978363037, - -1.1795251369476318, - -1.196187138557434, - -1.2112154960632324, - -1.2242003679275513, - -1.0483919382095337, - -1.0431160926818848, - -1.0403820276260376, - -1.0402642488479614, - -1.0427658557891846, - -1.0478187799453735, - -1.0552852153778076, - -1.064961314201355, - -1.0765832662582397, - -1.0898340940475464, - -1.1043522357940674, - -1.119741678237915, - -1.1355828046798706, - -1.1514432430267334, - -1.1668906211853027, - -1.181503415107727, - -1.194883108139038, - -1.2066646814346313, - -1.216526746749878, - -1.2242003679275513, - -1.0483919382095337, - -1.0491290092468262, - -1.0522435903549194, - -1.0576510429382324, - -1.0652036666870117, - -1.0746955871582031, - -1.0858677625656128, - -1.098415493965149, - -1.1119965314865112, - -1.1262403726577759, - -1.1407585144042969, - -1.1551549434661865, - -1.1690369844436646, - -1.1820259094238281, - -1.1937674283981323, - -1.2039412260055542, - -1.212269902229309, - -1.2185262441635132, - -1.2225395441055298, - -1.2242003679275513, - -1.0483919382095337, - -1.0551917552947998, - -1.0642039775848389, - -1.0751826763153076, - -1.0878283977508545, - -1.1017961502075195, - -1.1167049407958984, - -1.1321481466293335, - -1.1477044820785522, - -1.1629496812820435, - -1.1774678230285645, - -1.1908628940582275, - -1.2027695178985596, - -1.2128629684448242, - -1.2208678722381592, - -1.2265658378601074, - -1.2298015356063843, - -1.2304866313934326, - -1.228602409362793, - -1.2242003679275513, - -1.0483919382095337, - -1.06064772605896, - -1.0749670267105103, - -1.0909591913223267, - -1.1081880331039429, - -1.1261835098266602, - -1.1444549560546875, - -1.1625038385391235, - -1.1798378229141235, - -1.195984125137329, - -1.2105021476745605, - -1.2229962348937988, - -1.2331252098083496, - -1.2406131029129028, - -1.2452553510665894, - -1.2469255924224854, - -1.2455780506134033, - -1.2412495613098145, - -1.2340583801269531, - -1.2242003679275513, - -1.0483919382095337, - -1.0649054050445557, - -1.0833662748336792, - -1.1032710075378418, - -1.12407648563385, - -1.1452152729034424, - -1.1661107540130615, - -1.1861931085586548, - -1.2049142122268677, - -1.2217637300491333, - -1.2362818717956543, - -1.248072624206543, - -1.2568144798278809, - -1.2622689008712769, - -1.2642871141433716, - -1.2628140449523926, - -1.2578898668289185, - -1.249648928642273, - -1.2383160591125488, - -1.2242003679275513, - -1.0483919382095337, - -1.067503571510315, - -1.0884917974472046, - -1.1107839345932007, - -1.1337718963623047, - -1.1568288803100586, - -1.1793255805969238, - -1.2006486654281616, - -1.2202163934707642, - -1.2374950647354126, - -1.2520132064819336, - -1.2633748054504395, - -1.2712701559066772, - -1.2754837274551392, - -1.2759006023406982, - -1.2725094556808472, - -1.2654027938842773, - -1.2547743320465088, - -1.240914225578308, - -1.2242003679275513, - -1.0483919382095337, - -1.0681606531143188, - -1.0897879600524902, - -1.1126837730407715, - -1.1362237930297852, - -1.1597657203674316, - -1.1826674938201904, - -1.2043043375015259, - -1.224086046218872, - -1.2414731979370117, - -1.2559913396835327, - -1.2672444581985474, - -1.274925708770752, - -1.2788255214691162, - -1.2788374423980713, - -1.274961233139038, - -1.2673026323318481, - -1.2560704946517944, - -1.2415711879730225, - -1.2242003679275513, - -1.0483919382095337, - -1.066805362701416, - -1.0871143341064453, - -1.1087647676467896, - -1.1311662197113037, - -1.1537076234817505, - -1.175774097442627, - -1.1967636346817017, - -1.2161039113998413, - -1.2332671880722046, - -1.2477853298187256, - -1.2592623233795166, - -1.2673851251602173, - -1.2719321250915527, - -1.2727794647216797, - -1.2699037790298462, - -1.2633836269378662, - -1.2533968687057495, - -1.2402158975601196, - -1.2242003679275513 - ], - "z": [ - 0.5674548149108887, - 0.5730346441268921, - 0.573850154876709, - 0.5698790550231934, - 0.5612297058105469, - 0.5481379628181458, - 0.5309610366821289, - 0.5101674795150757, - 0.48632436990737915, - 0.46008217334747314, - 0.43215668201446533, - 0.4033096134662628, - 0.3743278682231903, - 0.3460019826889038, - 0.3191046714782715, - 0.29436948895454407, - 0.27247124910354614, - 0.2540072500705719, - 0.2394811511039734, - 0.2292891889810562, - 0.5674548149108887, - 0.5792555809020996, - 0.5861223936080933, - 0.587867796421051, - 0.5844442844390869, - 0.5759451985359192, - 0.5626024007797241, - 0.5447797775268555, - 0.5229635238647461, - 0.49774879217147827, - 0.46982330083847046, - 0.43994879722595215, - 0.4089401960372925, - 0.37764331698417664, - 0.34691187739372253, - 0.3175840973854065, - 0.2904600203037262, - 0.2662794888019562, - 0.2457021176815033, - 0.2292891889810562, - 0.5674548149108887, - 0.5839478969573975, - 0.5953789353370667, - 0.6014361381530762, - 0.6019542813301086, - 0.5969192385673523, - 0.5864683389663696, - 0.5708867311477661, - 0.5505992770195007, - 0.5261594653129578, - 0.49823397397994995, - 0.4675845205783844, - 0.43504711985588074, - 0.40150928497314453, - 0.367885947227478, - 0.3350941240787506, - 0.30402836203575134, - 0.27553606033325195, - 0.25039440393447876, - 0.22928917407989502, - 0.5674548149108887, - 0.5866029858589172, - 0.6006166934967041, - 0.6091136932373047, - 0.6118622422218323, - 0.6087872982025146, - 0.5999727845191956, - 0.5856591463088989, - 0.5662367939949036, - 0.5422354936599731, - 0.5143100023269653, - 0.48322203755378723, - 0.44981956481933594, - 0.41501373052597046, - 0.3797540068626404, - 0.34500205516815186, - 0.31170591711997986, - 0.2807738184928894, - 0.25304949283599854, - 0.22928917407989502, - 0.5674548149108887, - 0.5869331359863281, - 0.6012680530548096, - 0.6100685000419617, - 0.6130943894386292, - 0.6102632284164429, - 0.6016522645950317, - 0.587496280670166, - 0.5681815147399902, - 0.5442347526550293, - 0.5163092613220215, - 0.4851667582988739, - 0.451656699180603, - 0.41669318079948425, - 0.3812299370765686, - 0.3462342321872711, - 0.31266072392463684, - 0.2814251780509949, - 0.2533796727657318, - 0.22928917407989502, - 0.5674548149108887, - 0.5849026441574097, - 0.5972625017166138, - 0.604197084903717, - 0.6055172681808472, - 0.6011871099472046, - 0.5913246870040894, - 0.5761990547180176, - 0.556222677230835, - 0.5319405794143677, - 0.5040150880813599, - 0.473207950592041, - 0.4403594434261322, - 0.40636563301086426, - 0.3721538186073303, - 0.33865711092948914, - 0.3067892789840698, - 0.2774195969104767, - 0.25134921073913574, - 0.22928917407989502, - 0.5674548149108887, - 0.5807315111160278, - 0.5890339612960815, - 0.5921356678009033, - 0.5899519920349121, - 0.5825425386428833, - 0.5701093673706055, - 0.5529916286468506, - 0.5316562652587891, - 0.5066853165626526, - 0.4787597954273224, - 0.4486415386199951, - 0.4171520471572876, - 0.385150283575058, - 0.35350918769836426, - 0.3230918347835541, - 0.2947278916835785, - 0.26919111609458923, - 0.2471780627965927, - 0.2292891889810562, - 0.5674548149108887, - 0.5748717784881592, - 0.5774742960929871, - 0.5751913785934448, - 0.568085253238678, - 0.5563498139381409, - 0.5403051376342773, - 0.5203889608383179, - 0.4971444308757782, - 0.4712056517601013, - 0.4432801306247711, - 0.41412967443466187, - 0.3845493793487549, - 0.35534611344337463, - 0.3273165225982666, - 0.30122506618499756, - 0.2777835726737976, - 0.25763142108917236, - 0.24131828546524048, - 0.2292891889810562, - 0.5674548149108887, - 0.5679583549499512, - 0.5638360381126404, - 0.5552002787590027, - 0.5422866940498352, - 0.525447428226471, - 0.5051419138908386, - 0.48192402720451355, - 0.4564270079135895, - 0.4293464124202728, - 0.401420921087265, - 0.37341225147247314, - 0.3460844159126282, - 0.3201828598976135, - 0.2964141368865967, - 0.2754265069961548, - 0.25779253244400024, - 0.24399316310882568, - 0.23440487682819366, - 0.2292891889810562, - 0.5674548149108887, - 0.5607404708862305, - 0.5495971441268921, - 0.534328818321228, - 0.5153519511222839, - 0.4931841492652893, - 0.4684301018714905, - 0.44176506996154785, - 0.4139164090156555, - 0.38564372062683105, - 0.35771819949150085, - 0.3309016525745392, - 0.30592548847198486, - 0.2834710478782654, - 0.26415079832077026, - 0.24849174916744232, - 0.2369210422039032, - 0.2297542840242386, - 0.22718699276447296, - 0.2292891889810562, - 0.5674548149108887, - 0.5540003180503845, - 0.5363006591796875, - 0.514838695526123, - 0.4901998043060303, - 0.46305611729621887, - 0.43414798378944397, - 0.40426400303840637, - 0.37421926856040955, - 0.3448334038257599, - 0.3169078826904297, - 0.2912045419216156, - 0.268424391746521, - 0.24918891489505768, - 0.23402276635169983, - 0.22333961725234985, - 0.21743090450763702, - 0.2164577841758728, - 0.22044681012630463, - 0.2292891889810562, - 0.5674548149108887, - 0.5484682321548462, - 0.5253874063491821, - 0.49884194135665894, - 0.46955594420433044, - 0.43832820653915405, - 0.40601056814193726, - 0.3734845817089081, - 0.3416374623775482, - 0.3113378882408142, - 0.2834123969078064, - 0.2586227059364319, - 0.2376450151205063, - 0.22105149924755096, - 0.2092948853969574, - 0.20269575715065002, - 0.2014341801404953, - 0.20554454624652863, - 0.21491475403308868, - 0.2292891889810562, - 0.5674548149108887, - 0.5447437763214111, - 0.5180400609970093, - 0.48807212710380554, - 0.455657422542572, - 0.4216800928115845, - 0.3870670199394226, - 0.35276228189468384, - 0.3197016716003418, - 0.28878697752952576, - 0.26086148619651794, - 0.23668691515922546, - 0.21692270040512085, - 0.20210793614387512, - 0.19264677166938782, - 0.1887972205877304, - 0.1906643509864807, - 0.1981971710920334, - 0.21119026839733124, - 0.2292891889810562, - 0.5674548149108887, - 0.5432304739952087, - 0.5150547623634338, - 0.48369625210762024, - 0.4500103294849396, - 0.41491585969924927, - 0.3793700933456421, - 0.3443426489830017, - 0.31078898906707764, - 0.27962440252304077, - 0.25169891119003296, - 0.2277742475271225, - 0.20850306749343872, - 0.1944110244512558, - 0.18588250875473022, - 0.18315014243125916, - 0.1862884908914566, - 0.19521188735961914, - 0.20967698097229004, - 0.2292891889810562, - 0.5674548149108887, - 0.5440923571586609, - 0.5167550444602966, - 0.4861885607242584, - 0.4532266855239868, - 0.4187684655189514, - 0.3837539255619049, - 0.3491381108760834, - 0.31586527824401855, - 0.28484299778938293, - 0.2569175064563751, - 0.23285052180290222, - 0.21329852938652039, - 0.19879484176635742, - 0.18973514437675476, - 0.186366468667984, - 0.1887807846069336, - 0.19691218435764313, - 0.21053887903690338, - 0.2292891889810562, - 0.5674548149108887, - 0.5472360849380493, - 0.5229566693305969, - 0.4952789545059204, - 0.4649578630924225, - 0.43282049894332886, - 0.3997434377670288, - 0.3666289746761322, - 0.3343803882598877, - 0.3038773238658905, - 0.2759518325328827, - 0.251365602016449, - 0.2307893931865692, - 0.21478435397148132, - 0.20378713309764862, - 0.19809766113758087, - 0.1978711634874344, - 0.20311379432678223, - 0.21368256211280823, - 0.2292891889810562, - 0.5674548149108887, - 0.5523208379745483, - 0.5329875946044922, - 0.5099823474884033, - 0.4839326739311218, - 0.45554912090301514, - 0.4256059527397156, - 0.39491987228393555, - 0.36432796716690063, - 0.3346647024154663, - 0.3067392110824585, - 0.2813132405281067, - 0.25908029079437256, - 0.2406468689441681, - 0.2265157848596573, - 0.2170724868774414, - 0.2125745713710785, - 0.2131447046995163, - 0.21876737475395203, - 0.2292891889810562, - 0.5674548149108887, - 0.5587957501411438, - 0.5457607507705688, - 0.5287054181098938, - 0.5080949068069458, - 0.48449140787124634, - 0.45853883028030396, - 0.4309450387954712, - 0.40246275067329407, - 0.3738688826560974, - 0.3459433913230896, - 0.31944799423217773, - 0.2951054573059082, - 0.27357977628707886, - 0.2554580867290497, - 0.2412347048521042, - 0.23129762709140778, - 0.22591790556907654, - 0.2252422720193863, - 0.2292891889810562, - 0.5674548149108887, - 0.565959095954895, - 0.5598920583724976, - 0.5494192242622375, - 0.5348261594772339, - 0.5165109634399414, - 0.4949733018875122, - 0.47080057859420776, - 0.4446521997451782, - 0.4172414243221283, - 0.3893159329891205, - 0.3616374731063843, - 0.3349609971046448, - 0.3100142478942871, - 0.28747767210006714, - 0.26796597242355347, - 0.25201141834259033, - 0.24004921317100525, - 0.2324056327342987, - 0.2292891889810562, - 0.5674548149108887, - 0.5730346441268921, - 0.573850154876709, - 0.5698790550231934, - 0.5612297058105469, - 0.5481380224227905, - 0.5309610962867737, - 0.5101674795150757, - 0.48632439970970154, - 0.46008217334747314, - 0.43215668201446533, - 0.4033096432685852, - 0.3743278980255127, - 0.3460020124912262, - 0.3191046714782715, - 0.29436948895454407, - 0.27247124910354614, - 0.2540072500705719, - 0.2394811511039734, - 0.2292891889810562 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.32412517070770264, - 0.3223903775215149, - 0.3164919912815094, - 0.3065909147262573, - 0.29295727610588074, - 0.2759628891944885, - 0.2560713291168213, - 0.2338252067565918, - 0.2098313271999359, - 0.184744194149971, - 0.15924809873104095, - 0.1340385377407074, - 0.10980312526226044, - 0.08720295876264572, - 0.06685452163219452, - 0.04931284487247467, - 0.03505644202232361, - 0.02447417378425598, - 0.017854690551757812, - 0.015378579497337341, - 0.32412517070770264, - 0.31116873025894165, - 0.29435479640960693, - 0.2741420269012451, - 0.25108176469802856, - 0.22580306231975555, - 0.1989954113960266, - 0.17139007151126862, - 0.14374004304409027, - 0.11679956316947937, - 0.09130347520112991, - 0.06794724613428116, - 0.047367990016937256, - 0.03012704849243164, - 0.016694694757461548, - 0.007437363266944885, - 0.0026075392961502075, - 0.0023369789123535156, - 0.00663304328918457, - 0.015378594398498535, - 0.32412517070770264, - 0.3011229634284973, - 0.27453726530075073, - 0.24509331583976746, - 0.2135942578315735, - 0.18089930713176727, - 0.14790025353431702, - 0.11549727618694305, - 0.08457420766353607, - 0.055974580347537994, - 0.030478492379188538, - 0.008781403303146362, - -0.008524805307388306, - -0.020968124270439148, - -0.028209075331687927, - -0.030050158500671387, - -0.026441171765327454, - -0.017480552196502686, - -0.0034127235412597656, - 0.015378594398498535, - 0.32412517070770264, - 0.29334166646003723, - 0.2591869533061981, - 0.22259268164634705, - 0.18455706536769867, - 0.14611761271953583, - 0.10832281410694122, - 0.07220364362001419, - 0.038745343685150146, - 0.008860558271408081, - -0.01663552224636078, - -0.03704746067523956, - -0.051818445324897766, - -0.06054556369781494, - -0.06299076974391937, - -0.059087350964546204, - -0.048941805958747864, - -0.0328308641910553, - -0.011194005608558655, - 0.015378594398498535, - 0.32412517070770264, - 0.28866809606552124, - 0.2499672770500183, - 0.20907841622829437, - 0.16711682081222534, - 0.12522712349891663, - 0.08455191552639008, - 0.04620077461004257, - 0.01121973991394043, - -0.01943691074848175, - -0.04493299126625061, - -0.06457306444644928, - -0.07782131433486938, - -0.0843164473772049, - -0.08388124406337738, - -0.07652761042118073, - -0.06245607137680054, - -0.04205054044723511, - -0.01586759090423584, - 0.015378594398498535, - 0.32412517070770264, - 0.28760868310928345, - 0.24787737429141998, - 0.2060149908065796, - 0.1631634682416916, - 0.12049165368080139, - 0.07916352152824402, - 0.040306419134140015, - 0.004980236291885376, - -0.025851398706436157, - -0.05134747922420502, - -0.07081256806850433, - -0.08371566236019135, - -0.08970485627651215, - -0.08861671388149261, - -0.08048094809055328, - -0.06551949679851532, - -0.044140443205833435, - -0.01692698895931244, - 0.015378594398498535, - 0.32412517070770264, - 0.29027825593948364, - 0.25314366817474365, - 0.21373438835144043, - 0.17312537133693695, - 0.13242435455322266, - 0.09274151921272278, - 0.05515933781862259, - 0.020702943205833435, - -0.009687796235084534, - -0.035183876752853394, - -0.055089861154556274, - -0.06886275112628937, - -0.07612685859203339, - -0.07668404281139374, - -0.07051905989646912, - -0.057800114154815674, - -0.038874149322509766, - -0.014257431030273438, - 0.015378594398498535, - 0.32412517070770264, - 0.2963874936103821, - 0.26519548892974854, - 0.23140008747577667, - 0.1959230601787567, - 0.1597321629524231, - 0.12381455302238464, - 0.08915000408887863, - 0.056684061884880066, - 0.027302324771881104, - 0.0018062442541122437, - -0.019108742475509644, - -0.034872084856033325, - -0.04505382478237152, - -0.049376219511032104, - -0.04772137105464935, - -0.04013441503047943, - -0.02682231366634369, - -0.008148193359375, - 0.015378594398498535, - 0.32412517070770264, - 0.3052743673324585, - 0.28272688388824463, - 0.2570977210998535, - 0.2290859967470169, - 0.19945579767227173, - 0.16901534795761108, - 0.13859499990940094, - 0.10902450978755951, - 0.08111052215099335, - 0.05561443418264389, - 0.0332317054271698, - 0.01457291841506958, - 0.00014698505401611328, - -0.009652569890022278, - -0.01455843448638916, - -0.014436781406402588, - -0.009290948510169983, - 0.0007386952638626099, - 0.015378594398498535, - 0.32412517070770264, - 0.3159758746623993, - 0.30383795499801636, - 0.2880425453186035, - 0.2690204977989197, - 0.24729064106941223, - 0.22344571352005005, - 0.19813618063926697, - 0.17205238342285156, - 0.14590583741664886, - 0.12040974199771881, - 0.09625957906246185, - 0.07411409169435501, - 0.05457735061645508, - 0.038182273507118225, - 0.02537606656551361, - 0.0165080726146698, - 0.011820152401924133, - 0.011440202593803406, - 0.015378594398498535, - 0.32412514090538025, - 0.3273323178291321, - 0.3262411057949066, - 0.3208812475204468, - 0.31139904260635376, - 0.2980530261993408, - 0.28120726346969604, - 0.2613213360309601, - 0.2389376163482666, - 0.2146666795015335, - 0.18917058408260345, - 0.1631448119878769, - 0.13729925453662872, - 0.11233891546726227, - 0.08894465863704681, - 0.0677546039223671, - 0.04934677481651306, - 0.034223273396492004, - 0.022796645760536194, - 0.015378579497337341, - 0.32412514090538025, - 0.33811306953430176, - 0.3475085198879242, - 0.35205525159835815, - 0.35162919759750366, - 0.3462420105934143, - 0.3360406756401062, - 0.3213033676147461, - 0.3024321496486664, - 0.27994173765182495, - 0.2544456720352173, - 0.22663936018943787, - 0.19728130102157593, - 0.16717229783535004, - 0.13713368773460388, - 0.10798479616641998, - 0.08052074909210205, - 0.055490702390670776, - 0.03357738256454468, - 0.015378579497337341, - 0.32412514090538025, - 0.3471498489379883, - 0.3653355836868286, - 0.37818628549575806, - 0.3853514790534973, - 0.3866356611251831, - 0.3820038437843323, - 0.3715823292732239, - 0.35565540194511414, - 0.3346574902534485, - 0.3091614246368408, - 0.2798626124858856, - 0.24756024777889252, - 0.2131354808807373, - 0.17752733826637268, - 0.14170707762241364, - 0.10665181279182434, - 0.073317751288414, - 0.0426141619682312, - 0.015378579497337341, - 0.32412514090538025, - 0.35346338152885437, - 0.3777904510498047, - 0.3964427709579468, - 0.4089115262031555, - 0.4148566722869873, - 0.4141159653663635, - 0.4067096710205078, - 0.39283978939056396, - 0.372884601354599, - 0.34738850593566895, - 0.31704699993133545, - 0.28268760442733765, - 0.24524763226509094, - 0.20574834942817688, - 0.16526713967323303, - 0.12490826845169067, - 0.08577261865139008, - 0.048927709460258484, - 0.015378579497337341, - 0.32412514090538025, - 0.3563694953918457, - 0.3835234045982361, - 0.40484619140625, - 0.4197562336921692, - 0.4278467893600464, - 0.4288972020149231, - 0.42287880182266235, - 0.409955769777298, - 0.39048057794570923, - 0.36498451232910156, - 0.33416295051574707, - 0.2988567352294922, - 0.2600288689136505, - 0.21873846650123596, - 0.1761118471622467, - 0.13331171870231628, - 0.09150560200214386, - 0.051833830773830414, - 0.015378579497337341, - 0.32412514090538025, - 0.3555532991886139, - 0.38191330432891846, - 0.40248605608940125, - 0.41671043634414673, - 0.4241984486579895, - 0.4247457981109619, - 0.4183376133441925, - 0.40514862537384033, - 0.38553863763809204, - 0.3600425720214844, - 0.3293558359146118, - 0.29431551694869995, - 0.25587746500968933, - 0.21509011089801788, - 0.17306603491306305, - 0.13095155358314514, - 0.08989546447992325, - 0.051017627120018005, - 0.015378579497337341, - 0.32412514090538025, - 0.3511032164096832, - 0.3731344938278198, - 0.3896179795265198, - 0.4001041650772095, - 0.40430688858032227, - 0.40211158990859985, - 0.39357811212539673, - 0.3789392411708832, - 0.35859426856040955, - 0.3330981731414795, - 0.3031464219093323, - 0.26955604553222656, - 0.23324322700500488, - 0.19519855082035065, - 0.1564597487449646, - 0.11808350682258606, - 0.08111665397882462, - 0.04656752943992615, - 0.015378579497337341, - 0.32412514090538025, - 0.3435014486312866, - 0.3581383228302002, - 0.367636501789093, - 0.37173694372177124, - 0.3703277111053467, - 0.36344730854034424, - 0.3512834310531616, - 0.3341677784919739, - 0.3125673234462738, - 0.28707122802734375, - 0.25837498903274536, - 0.22726133465766907, - 0.19457894563674927, - 0.16121937334537506, - 0.12809252738952637, - 0.0961020290851593, - 0.06612051278352737, - 0.03896579146385193, - 0.015378579497337341, - 0.32412514090538025, - 0.3335718512535095, - 0.3385499119758606, - 0.3389236330986023, - 0.334682822227478, - 0.32594311237335205, - 0.31294286251068115, - 0.2960367798805237, - 0.27568596601486206, - 0.2524455487728119, - 0.22694945335388184, - 0.19989317655563354, - 0.17201471328735352, - 0.14407451450824738, - 0.11683472990989685, - 0.09103839099407196, - 0.06738914549350739, - 0.046532101929187775, - 0.029036149382591248, - 0.015378579497337341, - 0.32412517070770264, - 0.3223903775215149, - 0.316491961479187, - 0.3065909147262573, - 0.29295724630355835, - 0.27596285939216614, - 0.2560712993144989, - 0.2338251769542694, - 0.20983129739761353, - 0.18474414944648743, - 0.15924806892871857, - 0.13403849303722382, - 0.10980309545993805, - 0.08720292896032333, - 0.06685449182987213, - 0.04931282252073288, - 0.03505641222000122, - 0.024474158883094788, - 0.017854690551757812, - 0.015378579497337341 - ], - "y": [ - -1.1582207679748535, - -1.1709163188934326, - -1.186003565788269, - -1.203070878982544, - -1.2216527462005615, - -1.2412421703338623, - -1.2613049745559692, - -1.2812938690185547, - -1.3006634712219238, - -1.3188854455947876, - -1.3354629278182983, - -1.3499435186386108, - -1.361932396888733, - -1.3711024522781372, - -1.3772035837173462, - -1.3800692558288574, - -1.3796215057373047, - -1.3758723735809326, - -1.3689241409301758, - -1.35896635055542, - -1.1582207679748535, - -1.167075514793396, - -1.1784266233444214, - -1.1919645071029663, - -1.2073198556900024, - -1.2240737676620483, - -1.2417694330215454, - -1.2599238157272339, - -1.2780420780181885, - -1.2956297397613525, - -1.3122072219848633, - -1.327322244644165, - -1.3405624628067017, - -1.3515667915344238, - -1.3600351810455322, - -1.3657363653182983, - -1.3685150146484375, - -1.3682953119277954, - -1.3650832176208496, - -1.35896635055542, - -1.1582207679748535, - -1.1624233722686768, - -1.1692492961883545, - -1.1785123348236084, - -1.1899597644805908, - -1.2032793760299683, - -1.21810781955719, - -1.2340404987335205, - -1.250643014907837, - -1.2674623727798462, - -1.284039855003357, - -1.2999231815338135, - -1.3146791458129883, - -1.327905297279358, - -1.3392406702041626, - -1.3483763933181763, - -1.3550629615783691, - -1.359118103981018, - -1.36043119430542, - -1.35896635055542, - -1.1582207679748535, - -1.1574642658233643, - -1.15946626663208, - -1.1641722917556763, - -1.171453833580017, - -1.181112289428711, - -1.1928843259811401, - -1.2064486742019653, - -1.2214354276657104, - -1.2374356985092163, - -1.254013180732727, - -1.270715594291687, - -1.287087321281433, - -1.302681803703308, - -1.3170737028121948, - -1.329870343208313, - -1.3407227993011475, - -1.349334955215454, - -1.3554719686508179, - -1.35896635055542, - -1.1582207679748535, - -1.1527353525161743, - -1.1501375436782837, - -1.1504981517791748, - -1.1538074016571045, - -1.1599748134613037, - -1.1688323020935059, - -1.180138349533081, - -1.1935843229293823, - -1.208803653717041, - -1.2253811359405518, - -1.2428644895553589, - -1.2607768774032593, - -1.2786297798156738, - -1.295936107635498, - -1.3122239112854004, - -1.3270487785339355, - -1.3400063514709473, - -1.3507431745529175, - -1.35896635055542, - -1.1582207679748535, - -1.1487493515014648, - -1.1422741413116455, - -1.1389719247817993, - -1.138932704925537, - -1.1421574354171753, - -1.148558259010315, - -1.1579605340957642, - -1.1701078414916992, - -1.184668779373169, - -1.2012462615966797, - -1.2193880081176758, - -1.238599181175232, - -1.258355736732483, - -1.2781187295913696, - -1.297349214553833, - -1.3155224323272705, - -1.332142949104309, - -1.3467570543289185, - -1.35896635055542, - -1.1582207679748535, - -1.1459379196166992, - -1.1367281675338745, - -1.1308425664901733, - -1.128441572189331, - -1.1295908689498901, - -1.1342591047286987, - -1.1423187255859375, - -1.1535500288009644, - -1.1676467657089233, - -1.1842241287231445, - -1.202830195426941, - -1.2229573726654053, - -1.2440565824508667, - -1.265552282333374, - -1.2868582010269165, - -1.3073930740356445, - -1.3265968561172485, - -1.3439457416534424, - -1.35896635055542, - -1.1582207679748535, - -1.1446059942245483, - -1.1341005563735962, - -1.1269909143447876, - -1.1234711408615112, - -1.123637080192566, - -1.1274843215942383, - -1.134907841682434, - -1.145705223083496, - -1.1595818996429443, - -1.176159381866455, - -1.1949853897094727, - -1.2155464887619019, - -1.2372817993164062, - -1.2595983743667603, - -1.2818876504898071, - -1.3035415410995483, - -1.3239692449569702, - -1.3426138162612915, - -1.35896635055542, - -1.1582207679748535, - -1.144897699356079, - -1.1346760988235474, - -1.1278345584869385, - -1.124559760093689, - -1.124941110610962, - -1.1289681196212769, - -1.1365309953689575, - -1.1474233865737915, - -1.1613483428955078, - -1.177925705909729, - -1.196703553199768, - -1.2171696424484253, - -1.2387655973434448, - -1.2609025239944458, - -1.2829763889312744, - -1.3043850660324097, - -1.3245447874069214, - -1.3429055213928223, - -1.35896635055542, - -1.1582207679748535, - -1.14678156375885, - -1.1383923292160034, - -1.133281946182251, - -1.131589651107788, - -1.1333616971969604, - -1.1385498046875, - -1.1470123529434204, - -1.1585185527801514, - -1.1727545261383057, - -1.1893320083618164, - -1.207798719406128, - -1.2276510000228882, - -1.248347282409668, - -1.2693231105804443, - -1.290006160736084, - -1.3098324537277222, - -1.328261137008667, - -1.3447893857955933, - -1.35896635055542, - -1.1582207679748535, - -1.1500533819198608, - -1.1448466777801514, - -1.1427427530288696, - -1.1437989473342896, - -1.1479864120483398, - -1.1551909446716309, - -1.1652159690856934, - -1.1777881383895874, - -1.1925644874572754, - -1.2091419696807861, - -1.227068305015564, - -1.2458546161651611, - -1.2649884223937988, - -1.2839477062225342, - -1.3022154569625854, - -1.3192932605743408, - -1.3347153663635254, - -1.3480610847473145, - -1.35896635055542, - -1.1582207679748535, - -1.1543586254119873, - -1.1533396244049072, - -1.1551917791366577, - -1.1598645448684692, - -1.167230248451233, - -1.1770881414413452, - -1.1891692876815796, - -1.2031441926956177, - -1.218631625175476, - -1.2352089881896973, - -1.2524243593215942, - -1.2698079347610474, - -1.2868856191635132, - -1.3031916618347168, - -1.3182810544967651, - -1.3317424058914185, - -1.3432084321975708, - -1.352366328239441, - -1.35896635055542, - -1.1582207679748535, - -1.1592305898666382, - -1.162950873374939, - -1.1692800521850586, - -1.1780455112457275, - -1.1890079975128174, - -1.2018686532974243, - -1.2162766456604004, - -1.2318389415740967, - -1.2481309175491333, - -1.264708399772644, - -1.2811189889907837, - -1.2969152927398682, - -1.3116661310195923, - -1.3249694108963013, - -1.3364620208740234, - -1.3458306789398193, - -1.3528196811676025, - -1.3572384119033813, - -1.35896635055542, - -1.1582207679748535, - -1.1641416549682617, - -1.1726388931274414, - -1.1834808588027954, - -1.1963716745376587, - -1.2109596729278564, - -1.2268470525741577, - -1.2436004877090454, - -1.2607626914978027, - -1.2778658866882324, - -1.2944433689117432, - -1.3100428581237793, - -1.3242390155792236, - -1.3366445302963257, - -1.3469210863113403, - -1.3547881841659546, - -1.3600313663482666, - -1.362507700920105, - -1.3621493577957153, - -1.35896635055542, - -1.1582207679748535, - -1.1685593128204346, - -1.1813538074493408, - -1.1962552070617676, - -1.2128570079803467, - -1.2307064533233643, - -1.2493165731430054, - -1.2681796550750732, - -1.2867813110351562, - -1.3046141862869263, - -1.3211915493011475, - -1.3360614776611328, - -1.348818302154541, - -1.3591140508651733, - -1.3666678667068481, - -1.3712736368179321, - -1.3728058338165283, - -1.3712224960327148, - -1.3665671348571777, - -1.35896635055542, - -1.1582207679748535, - -1.1720050573349, - -1.188151240348816, - -1.206218957901001, - -1.2257152795791626, - -1.2461085319519043, - -1.266842246055603, - -1.2873510122299194, - -1.3070752620697021, - -1.325477123260498, - -1.3420546054840088, - -1.3563554286956787, - -1.3679895401000977, - -1.376639723777771, - -1.3820698261260986, - -1.384131908416748, - -1.3827694654464722, - -1.37801992893219, - -1.3700127601623535, - -1.35896635055542, - -1.1582207679748535, - -1.1741052865982056, - -1.1922945976257324, - -1.2122923135757446, - -1.2335529327392578, - -1.2554967403411865, - -1.2775249481201172, - -1.2990367412567139, - -1.3194453716278076, - -1.3381940126419067, - -1.3547714948654175, - -1.3687254190444946, - -1.379675269126892, - -1.3873224258422852, - -1.3914580345153809, - -1.3919695615768433, - -1.3888428211212158, - -1.3821632862091064, - -1.3721131086349487, - -1.35896635055542, - -1.1582207679748535, - -1.1746326684951782, - -1.1933348178863525, - -1.2138171195983887, - -1.2355207204818726, - -1.2578537464141846, - -1.2802069187164307, - -1.3019706010818481, - -1.3225510120391846, - -1.3413867950439453, - -1.357964277267456, - -1.3718311786651611, - -1.3826091289520264, - -1.3900043964385986, - -1.393815040588379, - -1.3939372301101685, - -1.3903676271438599, - -1.3832035064697266, - -1.3726403713226318, - -1.35896635055542, - -1.1582207679748535, - -1.173529863357544, - -1.1911592483520508, - -1.2106281518936157, - -1.2314053773880005, - -1.2529242038726807, - -1.2745976448059082, - -1.2958346605300903, - -1.3160557746887207, - -1.3347094058990479, - -1.3512868881225586, - -1.3653358221054077, - -1.3764731884002686, - -1.3843951225280762, - -1.388885498046875, - -1.3898218870162964, - -1.387178659439087, - -1.3810279369354248, - -1.3715375661849976, - -1.35896635055542, - -1.1582207679748535, - -1.1709163188934326, - -1.186003565788269, - -1.203070878982544, - -1.2216527462005615, - -1.2412421703338623, - -1.2613049745559692, - -1.2812937498092651, - -1.3006634712219238, - -1.3188854455947876, - -1.3354629278182983, - -1.3499435186386108, - -1.361932396888733, - -1.3711024522781372, - -1.3772035837173462, - -1.3800692558288574, - -1.3796215057373047, - -1.3758723735809326, - -1.3689241409301758, - -1.35896635055542 - ], - "z": [ - 0.7116622924804688, - 0.714621365070343, - 0.7122333645820618, - 0.7045634388923645, - 0.6918208599090576, - 0.6743531227111816, - 0.6526367664337158, - 0.627264142036438, - 0.5989272594451904, - 0.5683992505073547, - 0.5365126729011536, - 0.5041374564170837, - 0.4721565842628479, - 0.44144245982170105, - 0.41283291578292847, - 0.3871082663536072, - 0.364970326423645, - 0.3470228612422943, - 0.3337554633617401, - 0.3255300521850586, - 0.7116622924804688, - 0.7215971946716309, - 0.7259948253631592, - 0.7247350811958313, - 0.7178524732589722, - 0.7055346369743347, - 0.6881176233291626, - 0.6660765409469604, - 0.6400125026702881, - 0.6106365919113159, - 0.5787500143051147, - 0.5452226400375366, - 0.5109689831733704, - 0.4769233167171478, - 0.44401443004608154, - 0.4131399095058441, - 0.3851419687271118, - 0.36078429222106934, - 0.34073132276535034, - 0.3255300521850586, - 0.7116622924804688, - 0.7272111177444458, - 0.7370694875717163, - 0.7409684658050537, - 0.7388017177581787, - 0.7306283712387085, - 0.7166712880134583, - 0.697311282157898, - 0.6730763912200928, - 0.6446276307106018, - 0.6127410531044006, - 0.5782865285873413, - 0.5422037243843079, - 0.5054770112037659, - 0.4691081643104553, - 0.43408918380737305, - 0.40137535333633423, - 0.37185901403427124, - 0.3463452458381653, - 0.3255300521850586, - 0.7116622924804688, - 0.7308547496795654, - 0.7442573308944702, - 0.7515044808387756, - 0.7523984909057617, - 0.7469149827957153, - 0.7352035641670227, - 0.7175836563110352, - 0.6945358514785767, - 0.6666889190673828, - 0.6348023414611816, - 0.5997459888458252, - 0.5624760985374451, - 0.5240092873573303, - 0.48539477586746216, - 0.44768595695495605, - 0.41191133856773376, - 0.37904682755470276, - 0.3499888479709625, - 0.3255300521850586, - 0.7116622924804688, - 0.7321332097053528, - 0.7467793822288513, - 0.7552013397216797, - 0.7571693062782288, - 0.7526296377182007, - 0.741706132888794, - 0.7246967554092407, - 0.7020655274391174, - 0.674429714679718, - 0.6425431966781616, - 0.607275664806366, - 0.5695892572402954, - 0.5305118560791016, - 0.4911094307899475, - 0.4524567723274231, - 0.4156081974506378, - 0.38156887888908386, - 0.35126733779907227, - 0.3255300521850586, - 0.7116622924804688, - 0.7309079766273499, - 0.7443623542785645, - 0.7516584396362305, - 0.7525972127914429, - 0.7471529841423035, - 0.7354743480682373, - 0.7178798913955688, - 0.69484943151474, - 0.6670112609863281, - 0.6351247429847717, - 0.6000595688819885, - 0.5627723336219788, - 0.5242800712585449, - 0.4856327772140503, - 0.44788461923599243, - 0.4120652973651886, - 0.3791518807411194, - 0.35004210472106934, - 0.3255300521850586, - 0.7116622924804688, - 0.7273118495941162, - 0.7372682094573975, - 0.7412596940994263, - 0.7391775846481323, - 0.731078565120697, - 0.7171835899353027, - 0.6978716850280762, - 0.6736695766448975, - 0.6452374458312988, - 0.6133509278297424, - 0.578879714012146, - 0.5427641272544861, - 0.5059893131256104, - 0.46955835819244385, - 0.43446505069732666, - 0.4016665816307068, - 0.3720576763153076, - 0.3464459776878357, - 0.3255300521850586, - 0.7116622924804688, - 0.7217345237731934, - 0.7262656092643738, - 0.7251320481300354, - 0.7183647155761719, - 0.7061482667922974, - 0.6888158321380615, - 0.6668403148651123, - 0.6408210396766663, - 0.6114677786827087, - 0.5795812606811523, - 0.5460311770439148, - 0.5117327570915222, - 0.47762155532836914, - 0.4446280598640442, - 0.4136521816253662, - 0.3855389356613159, - 0.3610551357269287, - 0.34086859226226807, - 0.3255300521850586, - 0.7116622924804688, - 0.714780330657959, - 0.7125469446182251, - 0.7050231099128723, - 0.6924140453338623, - 0.6750636696815491, - 0.6534452438354492, - 0.6281485557556152, - 0.5998635292053223, - 0.5693617463111877, - 0.5374751687049866, - 0.5050736665725708, - 0.47304102778434753, - 0.44225096702575684, - 0.4135434627532959, - 0.38770148158073425, - 0.36542999744415283, - 0.34733647108078003, - 0.3339144289493561, - 0.3255300521850586, - 0.7116622924804688, - 0.7072029113769531, - 0.6975988149642944, - 0.6831120252609253, - 0.6641376614570618, - 0.6411932706832886, - 0.6149048209190369, - 0.585989236831665, - 0.5552354454994202, - 0.5234821438789368, - 0.491595596075058, - 0.4604455828666687, - 0.4308817386627197, - 0.4037104845046997, - 0.3796730637550354, - 0.35942506790161133, - 0.3435188829898834, - 0.332388311624527, - 0.3263370394706726, - 0.3255300521850586, - 0.7116622924804688, - 0.6998233795166016, - 0.6830410957336426, - 0.661773145198822, - 0.6365997195243835, - 0.6082075238227844, - 0.5773708820343018, - 0.5449310541152954, - 0.511772871017456, - 0.47880080342292786, - 0.4469142556190491, - 0.4169830083847046, - 0.3898234963417053, - 0.366176575422287, - 0.3466872572898865, - 0.3318871855735779, - 0.32218003273010254, - 0.3178305923938751, - 0.31895750761032104, - 0.3255300521850586, - 0.7116622924804688, - 0.6934414505958557, - 0.670451283454895, - 0.6433189511299133, - 0.6127845048904419, - 0.5796808004379272, - 0.5449109077453613, - 0.5094231963157654, - 0.4741857051849365, - 0.4401595890522003, - 0.40827304124832153, - 0.37939584255218506, - 0.3543156385421753, - 0.33371657133102417, - 0.3181605637073517, - 0.30807191133499146, - 0.30372583866119385, - 0.30524080991744995, - 0.3125755786895752, - 0.3255300521850586, - 0.7116622924804688, - 0.6887487173080444, - 0.6611937880516052, - 0.6297491788864136, - 0.5952726602554321, - 0.5587045550346375, - 0.5210424065589905, - 0.48331350088119507, - 0.4465470612049103, - 0.41174590587615967, - 0.37985938787460327, - 0.3517571985721588, - 0.32820597290992737, - 0.3098480701446533, - 0.2971842885017395, - 0.2905600666999817, - 0.2901560664176941, - 0.29598328471183777, - 0.30788281559944153, - 0.3255300521850586, - 0.7116622924804688, - 0.6862536668777466, - 0.6562716960906982, - 0.6225343346595764, - 0.5859618782997131, - 0.5475518107414246, - 0.5083518624305725, - 0.46943143010139465, - 0.4318520426750183, - 0.39663881063461304, - 0.36475229263305664, - 0.33706218004226685, - 0.31432387232780457, - 0.2971575856208801, - 0.2860315442085266, - 0.2812492847442627, - 0.28294122219085693, - 0.2910612225532532, - 0.3053877353668213, - 0.325530081987381, - 0.7116622924804688, - 0.6862266063690186, - 0.6562184691429138, - 0.6224563121795654, - 0.5858611464500427, - 0.5474311709403992, - 0.5082145929336548, - 0.46928125619888306, - 0.43169307708740234, - 0.3964754045009613, - 0.3645888566970825, - 0.3369032144546509, - 0.31417369842529297, - 0.2970203161239624, - 0.2859109044075012, - 0.2811485528945923, - 0.28286316990852356, - 0.29100796580314636, - 0.3053607642650604, - 0.325530081987381, - 0.7116622924804688, - 0.6886706352233887, - 0.6610398292541504, - 0.629523515701294, - 0.5949813723564148, - 0.5583556890487671, - 0.5206453800201416, - 0.48287928104400635, - 0.4460873603820801, - 0.41127336025238037, - 0.3793868124485016, - 0.351297527551651, - 0.32777172327041626, - 0.3094511032104492, - 0.29683542251586914, - 0.29026877880096436, - 0.2899303436279297, - 0.29582929611206055, - 0.30780476331710815, - 0.3255300521850586, - 0.7116622924804688, - 0.6933208107948303, - 0.6702133417129517, - 0.642970085144043, - 0.6123342514038086, - 0.5791415572166443, - 0.5442972183227539, - 0.5087519288063049, - 0.4734751284122467, - 0.4394291043281555, - 0.4075425863265991, - 0.3786852955818176, - 0.35364437103271484, - 0.3331029415130615, - 0.31762129068374634, - 0.30762171745300293, - 0.3033769428730011, - 0.3050028085708618, - 0.3124549388885498, - 0.3255300521850586, - 0.7116622924804688, - 0.6996732354164124, - 0.6827448606491089, - 0.6613389253616333, - 0.6360393762588501, - 0.607536256313324, - 0.5766071081161499, - 0.544095516204834, - 0.5108884572982788, - 0.47789156436920166, - 0.44600504636764526, - 0.41609859466552734, - 0.38898801803588867, - 0.36541280150413513, - 0.3460160493850708, - 0.33132678270339966, - 0.3217458128929138, - 0.31753435730934143, - 0.31880736351013184, - 0.3255300521850586, - 0.7116622924804688, - 0.707039475440979, - 0.6972764730453491, - 0.682639479637146, - 0.6635278463363647, - 0.6404628753662109, - 0.614073634147644, - 0.585080087184906, - 0.5542730093002319, - 0.5224927067756653, - 0.4906061887741089, - 0.45948314666748047, - 0.4299725294113159, - 0.40287935733795166, - 0.378942608833313, - 0.3588152825832367, - 0.3430463671684265, - 0.3320659399032593, - 0.3261736035346985, - 0.3255300521850586, - 0.7116622924804688, - 0.714621365070343, - 0.7122333645820618, - 0.7045634388923645, - 0.6918208599090576, - 0.6743531227111816, - 0.6526367664337158, - 0.627264142036438, - 0.5989273190498352, - 0.5683992505073547, - 0.5365127325057983, - 0.5041374564170837, - 0.4721565842628479, - 0.44144248962402344, - 0.41283291578292847, - 0.38710829615592957, - 0.364970326423645, - 0.3470228612422943, - 0.3337554931640625, - 0.3255300521850586 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.2761380076408386, - 0.27388983964920044, - 0.2671346664428711, - 0.25605660676956177, - 0.24095793068408966, - 0.22225049138069153, - 0.2004445344209671, - 0.17613491415977478, - 0.1499846875667572, - 0.12270721793174744, - 0.0950465202331543, - 0.06775712966918945, - 0.04158341884613037, - 0.017239339649677277, - -0.004611052572727203, - -0.023371756076812744, - -0.038531020283699036, - -0.049675360321998596, - -0.056500717997550964, - -0.05882097780704498, - 0.2761380076408386, - 0.2616669237613678, - 0.24302218854427338, - 0.2207123339176178, - 0.19534596800804138, - 0.16761499643325806, - 0.13827581703662872, - 0.10812877863645554, - 0.07799618691205978, - 0.048699989914894104, - 0.02103929966688156, - -0.004231378436088562, - -0.026422709226608276, - -0.044929370284080505, - -0.05924655497074127, - -0.06898373365402222, - -0.073875293135643, - -0.07378782331943512, - -0.0687236487865448, - -0.05882097780704498, - 0.2761380076408386, - 0.2507646083831787, - 0.2215149700641632, - 0.18918685615062714, - 0.15466217696666718, - 0.11888264119625092, - 0.08282417804002762, - 0.04747042432427406, - 0.013785719871520996, - -0.017311066389083862, - -0.044971764087677, - -0.06844185292720795, - -0.08708105981349945, - -0.10038101673126221, - -0.1079789251089096, - -0.10966752469539642, - -0.10540075600147247, - -0.0952950268983841, - -0.07962594926357269, - -0.05882097780704498, - 0.2761380076408386, - 0.24236439168453217, - 0.20494365692138672, - 0.16489645838737488, - 0.12331527471542358, - 0.08133430778980255, - 0.0400986447930336, - 0.0007331296801567078, - -0.03568847477436066, - -0.0681726485490799, - -0.09583334624767303, - -0.1179160475730896, - -0.1338183581829071, - -0.14310656487941742, - -0.14552725851535797, - -0.14101441204547882, - -0.12969115376472473, - -0.11186635494232178, - -0.08802618086338043, - -0.05882097780704498, - 0.2761380076408386, - 0.23737652599811554, - 0.1951039731502533, - 0.15047338604927063, - 0.10470220446586609, - 0.05903896689414978, - 0.014729209244251251, - -0.027018427848815918, - -0.06506511569023132, - -0.09837308526039124, - -0.12603378295898438, - -0.14729268848896027, - -0.16156990826129913, - -0.16847600042819977, - -0.16782258450984955, - -0.1596275120973587, - -0.14411424100399017, - -0.121706023812294, - -0.09301404654979706, - -0.05882097780704498, - 0.2761380076408386, - 0.23634155094623566, - 0.19306224584579468, - 0.1474805772304535, - 0.10083998739719391, - 0.05441267788410187, - 0.009465016424655914, - -0.03277687728404999, - -0.07116079330444336, - -0.10463970899581909, - -0.13230040669441223, - -0.1533883661031723, - -0.1673283725976944, - -0.1737401932477951, - -0.17244888842105865, - -0.1634897142648697, - -0.14710702002048492, - -0.12374776601791382, - -0.09404902160167694, - -0.05882097780704498, - 0.2761380076408386, - 0.23937159776687622, - 0.19903968274593353, - 0.15624237060546875, - 0.11214712262153625, - 0.06795674562454224, - 0.024876557290554047, - -0.015918277204036713, - -0.053314968943595886, - -0.08629339933395386, - -0.113954097032547, - -0.13554254174232483, - -0.15046976506710052, - -0.15832863748073578, - -0.15890483558177948, - -0.15218256413936615, - -0.13834524154663086, - -0.11777032911777496, - -0.09101897478103638, - -0.05882097780704498, - 0.2761380076408386, - 0.2461383193731308, - 0.21238857507705688, - 0.17580929398536682, - 0.13739833235740662, - 0.09820345789194107, - 0.0592937245965004, - 0.02173054963350296, - -0.013461455702781677, - -0.04532232880592346, - -0.0729830265045166, - -0.09568902850151062, - -0.11282093822956085, - -0.12391147017478943, - -0.12865811586380005, - -0.1269313544034958, - -0.11877831816673279, - -0.10442143678665161, - -0.0842522531747818, - -0.05882097780704498, - 0.2761380076408386, - 0.25590845942497253, - 0.2316623330116272, - 0.20406094193458557, - 0.17385724186897278, - 0.14187511801719666, - 0.10898689925670624, - 0.07608972489833832, - 0.044080957770347595, - 0.013833694159984589, - -0.013826996088027954, - -0.03814661502838135, - -0.0584617555141449, - -0.07421830296516418, - -0.08498643338680267, - -0.09047244489192963, - -0.09052667021751404, - -0.0851476788520813, - -0.07448212802410126, - -0.05882097780704498, - 0.2761380076408386, - 0.26762324571609497, - 0.2547723650932312, - 0.23793582618236542, - 0.21757298707962036, - 0.19423922896385193, - 0.16857105493545532, - 0.14126861095428467, - 0.11307667195796967, - 0.08476419746875763, - 0.05710350722074509, - 0.03084910660982132, - 0.006717130541801453, - -0.0146341472864151, - -0.032622307538986206, - -0.04675671458244324, - -0.05665178596973419, - -0.062037646770477295, - -0.06276732683181763, - -0.05882097780704498, - 0.2761380076408386, - 0.28001320362091064, - 0.2792143225669861, - 0.2737630605697632, - 0.2638082504272461, - 0.24962133169174194, - 0.23158931732177734, - 0.21020406484603882, - 0.18604892492294312, - 0.1597827672958374, - 0.13212206959724426, - 0.10382135212421417, - 0.0756525844335556, - 0.04838411882519722, - 0.022759802639484406, - -0.000521443784236908, - -0.020824536681175232, - -0.03759568929672241, - -0.05037736892700195, - -0.05882097780704498, - 0.2761380076408386, - 0.2917357087135315, - 0.3023395538330078, - 0.3076602518558502, - 0.3075527548789978, - 0.3020199239253998, - 0.29121267795562744, - 0.27542585134506226, - 0.25509002804756165, - 0.23075994849205017, - 0.20309925079345703, - 0.1728624701499939, - 0.14087435603141785, - 0.10800748318433762, - 0.07515838742256165, - 0.0432230606675148, - 0.01307263970375061, - -0.014470450580120087, - -0.0386548787355423, - -0.05882099270820618, - 0.2761380076408386, - 0.3015204071998596, - 0.32164210081100464, - 0.33595407009124756, - 0.3440660834312439, - 0.34575676918029785, - 0.34097999334335327, - 0.3298661708831787, - 0.31271833181381226, - 0.29000431299209595, - 0.2623435854911804, - 0.2304907739162445, - 0.1953146755695343, - 0.15777483582496643, - 0.11889524757862091, - 0.07973639667034149, - 0.04136647284030914, - 0.004832081496715546, - -0.02887016534805298, - -0.05882099270820618, - 0.2761380076408386, - 0.308307021856308, - 0.335030198097229, - 0.3555784821510315, - 0.36939144134521484, - 0.3760923743247986, - 0.37549829483032227, - 0.3676255941390991, - 0.35268890857696533, - 0.33109575510025024, - 0.3034350275993347, - 0.2704613506793976, - 0.2330741137266159, - 0.19229312241077423, - 0.14923083782196045, - 0.10506177693605423, - 0.060990869998931885, - 0.018220171332359314, - -0.022083550691604614, - -0.05882099270820618, - 0.2761380076408386, - 0.31136009097099304, - 0.3410530090332031, - 0.3644068241119385, - 0.3807845115661621, - 0.3897392749786377, - 0.39102691411972046, - 0.3846122622489929, - 0.3706703186035156, - 0.34958139061927795, - 0.3219206929206848, - 0.2884427309036255, - 0.2500607669353485, - 0.20782171189785004, - 0.16287776827812195, - 0.1164548248052597, - 0.06981920450925827, - 0.024243012070655823, - -0.019030481576919556, - -0.05882099270820618, - 0.2761380076408386, - 0.3103487491607666, - 0.339057981967926, - 0.3614824414253235, - 0.3770105838775635, - 0.3852187991142273, - 0.385883092880249, - 0.3789854645729065, - 0.36471402645111084, - 0.34345805644989014, - 0.3157973289489746, - 0.2824864387512207, - 0.24443398416042328, - 0.2026779055595398, - 0.15835724771022797, - 0.11268091201782227, - 0.06689483672380447, - 0.02224797010421753, - -0.020041808485984802, - -0.05882099270820618, - 0.2761380076408386, - 0.305382639169693, - 0.3292611837387085, - 0.3471222519874573, - 0.3584786653518677, - 0.3630205988883972, - 0.3606242537498474, - 0.3513548970222473, - 0.3354654312133789, - 0.31338924169540405, - 0.2857285737991333, - 0.25323784351348877, - 0.2168034017086029, - 0.177419051527977, - 0.13615909218788147, - 0.09414896368980408, - 0.05253462493419647, - 0.012451186776161194, - -0.025007933378219604, - -0.05882099270820618, - 0.2761380076408386, - 0.29699987173080444, - 0.3127243220806122, - 0.32288235425949097, - 0.3271969258785248, - 0.3255503475666046, - 0.31798750162124634, - 0.30471473932266235, - 0.286094069480896, - 0.26263341307640076, - 0.23497271537780762, - 0.20386651158332825, - 0.17016325891017914, - 0.1347823292016983, - 0.09868882596492767, - 0.06286723911762238, - 0.028294719755649567, - -0.0040856897830963135, - -0.033390700817108154, - -0.05882099270820618, - 0.2761380076408386, - 0.2861088514328003, - 0.2912393808364868, - 0.291389524936676, - 0.2865552604198456, - 0.27686846256256104, - 0.26259326934814453, - 0.24411921203136444, - 0.22195011377334595, - 0.19669070839881897, - 0.16903001070022583, - 0.139722540974617, - 0.10956772416830063, - 0.0793881043791771, - 0.0500069186091423, - 0.022225573658943176, - -0.003198102116584778, - -0.02557063102722168, - -0.04428170621395111, - -0.05882097780704498, - 0.2761380076408386, - 0.27388983964920044, - 0.2671346366405487, - 0.2560565769672394, - 0.24095790088176727, - 0.22225046157836914, - 0.20044448971748352, - 0.1761348694562912, - 0.14998465776443481, - 0.12270717322826385, - 0.09504648298025131, - 0.06775709241628647, - 0.041583381593227386, - 0.01723930984735489, - -0.004611082375049591, - -0.023371785879135132, - -0.03853103518486023, - -0.049675360321998596, - -0.056500717997550964, - -0.05882097780704498 - ], - "y": [ - -1.2284305095672607, - -1.2377867698669434, - -1.2498582601547241, - -1.2643154859542847, - -1.2807642221450806, - -1.2987558841705322, - -1.31779944896698, - -1.3373757600784302, - -1.3569505214691162, - -1.3759900331497192, - -1.3939749002456665, - -1.410414457321167, - -1.4248603582382202, - -1.4369184970855713, - -1.44625985622406, - -1.4526299238204956, - -1.4558546543121338, - -1.4558461904525757, - -1.45260488986969, - -1.4462189674377441, - -1.2284305095672607, - -1.2334274053573608, - -1.2412582635879517, - -1.2517096996307373, - -1.2644963264465332, - -1.2792696952819824, - -1.2956265211105347, - -1.3131208419799805, - -1.3312753438949585, - -1.3495948314666748, - -1.367579698562622, - -1.3847391605377197, - -1.4006054401397705, - -1.4147454500198364, - -1.4267736673355103, - -1.4363620281219482, - -1.4432488679885864, - -1.4472463130950928, - -1.4482454061508179, - -1.4462189674377441, - -1.2284305095672607, - -1.2286874055862427, - -1.2319077253341675, - -1.2380034923553467, - -1.246808409690857, - -1.2580825090408325, - -1.2715179920196533, - -1.2867486476898193, - -1.303358793258667, - -1.3208954334259033, - -1.3388803005218506, - -1.3568226099014282, - -1.3742332458496094, - -1.390636920928955, - -1.4055864810943604, - -1.418674111366272, - -1.4295426607131958, - -1.4378957748413086, - -1.4435055255889893, - -1.4462189674377441, - -1.2284305095672607, - -1.2240805625915527, - -1.2228196859359741, - -1.224682092666626, - -1.2296172380447388, - -1.237490177154541, - -1.2480864524841309, - -1.2611169815063477, - -1.2762261629104614, - -1.2930018901824951, - -1.3109867572784424, - -1.3296899795532227, - -1.3486015796661377, - -1.3672053813934326, - -1.3849942684173584, - -1.4014828205108643, - -1.416221261024475, - -1.4288077354431152, - -1.4388986825942993, - -1.4462189674377441, - -1.2284305095672607, - -1.2201061248779297, - -1.2149790525436401, - -1.2131892442703247, - -1.2147855758666992, - -1.219724416732788, - -1.2278711795806885, - -1.2390034198760986, - -1.2528176307678223, - -1.268937110900879, - -1.2869218587875366, - -1.306281566619873, - -1.3264880180358887, - -1.3469901084899902, - -1.3672285079956055, - -1.3866511583328247, - -1.4047284126281738, - -1.4209671020507812, - -1.4349241256713867, - -1.4462189674377441, - -1.2284305095672607, - -1.2171945571899414, - -1.209235429763794, - -1.2047703266143799, - -1.203920841217041, - -1.2067103385925293, - -1.2130625247955322, - -1.2228044271469116, - -1.2356700897216797, - -1.251308560371399, - -1.2692934274673462, - -1.289133906364441, - -1.3102890253067017, - -1.3321815729141235, - -1.3542143106460571, - -1.3757864236831665, - -1.3963093757629395, - -1.415223479270935, - -1.4320125579833984, - -1.4462189674377441, - -1.2284305095672607, - -1.215661644935608, - -1.2062113285064697, - -1.200337529182434, - -1.1982002258300781, - -1.1998580694198608, - -1.2052655220031738, - -1.2142752408981323, - -1.2266414165496826, - -1.2420268058776855, - -1.2600116729736328, - -1.2801053524017334, - -1.3017598390579224, - -1.3243844509124756, - -1.3473620414733887, - -1.3700659275054932, - -1.3918766975402832, - -1.4121993780136108, - -1.430479645729065, - -1.4462189674377441, - -1.2284305095672607, - -1.2156733274459839, - -1.206234335899353, - -1.200371265411377, - -1.1982438564300537, - -1.199910283088684, - -1.2053250074386597, - -1.214340329170227, - -1.226710319519043, - -1.2420976161956787, - -1.2600823640823364, - -1.2801741361618042, - -1.301824927330017, - -1.3244439363479614, - -1.3474143743515015, - -1.3701095581054688, - -1.391910433769226, - -1.4122223854064941, - -1.430491328239441, - -1.4462189674377441, - -1.2284305095672607, - -1.2172284126281738, - -1.2093020677566528, - -1.204867959022522, - -1.2040469646453857, - -1.2068613767623901, - -1.2132344245910645, - -1.2229924201965332, - -1.23586905002594, - -1.2515132427215576, - -1.2694979906082153, - -1.2893329858779907, - -1.3104770183563232, - -1.3323534727096558, - -1.354365348815918, - -1.3759125471115112, - -1.396407127380371, - -1.415290117263794, - -1.4320464134216309, - -1.4462189674377441, - -1.2284305095672607, - -1.220158338546753, - -1.215082049369812, - -1.2133402824401855, - -1.2149804830551147, - -1.219957947731018, - -1.2281368970870972, - -1.2392940521240234, - -1.2531254291534424, - -1.2692533731460571, - -1.2872382402420044, - -1.3065892457962036, - -1.3267786502838135, - -1.347255825996399, - -1.3674620389938354, - -1.3868461847305298, - -1.4048794507980347, - -1.4210700988769531, - -1.43497633934021, - -1.4462189674377441, - -1.2284305095672607, - -1.2241456508636475, - -1.2229479551315308, - -1.224870204925537, - -1.2298598289489746, - -1.2377809286117554, - -1.2484172582626343, - -1.2614787817001343, - -1.276609182357788, - -1.2933956384658813, - -1.3113805055618286, - -1.3300729990005493, - -1.3489633798599243, - -1.367536187171936, - -1.3852849006652832, - -1.4017255306243896, - -1.4164093732833862, - -1.4289360046386719, - -1.4389636516571045, - -1.4462189674377441, - -1.2284305095672607, - -1.2287582159042358, - -1.2320473194122314, - -1.2382080554962158, - -1.2470725774765015, - -1.2583987712860107, - -1.2718780040740967, - -1.287142276763916, - -1.3037755489349365, - -1.3213238716125488, - -1.339308738708496, - -1.3572394847869873, - -1.374626874923706, - -1.3909969329833984, - -1.4059028625488281, - -1.418938159942627, - -1.429747223854065, - -1.4380353689193726, - -1.4435762166976929, - -1.4462189674377441, - -1.2284305095672607, - -1.2334961891174316, - -1.24139404296875, - -1.251908779144287, - -1.2647532224655151, - -1.279577374458313, - -1.2959766387939453, - -1.3135037422180176, - -1.3316807746887207, - -1.3500115871429443, - -1.3679964542388916, - -1.385144591331482, - -1.4009883403778076, - -1.415095567703247, - -1.4270813465118408, - -1.4366189241409302, - -1.4434478282928467, - -1.4473820924758911, - -1.4483143091201782, - -1.4462189674377441, - -1.2284305095672607, - -1.2378462553024292, - -1.2499754428863525, - -1.264487385749817, - -1.2809860706329346, - -1.299021601676941, - -1.3181018829345703, - -1.337706446647644, - -1.3573007583618164, - -1.3763500452041626, - -1.3943349123001099, - -1.4107645750045776, - -1.425191044807434, - -1.437220811843872, - -1.4465255737304688, - -1.4528517723083496, - -1.456026554107666, - -1.4559634923934937, - -1.4526642560958862, - -1.4462189674377441, - -1.2284305095672607, - -1.2413368225097656, - -1.2568614482879639, - -1.274580955505371, - -1.2940119504928589, - -1.314624309539795, - -1.3358559608459473, - -1.3571276664733887, - -1.377859115600586, - -1.3974850177764893, - -1.415469765663147, - -1.4313230514526367, - -1.4446122646331787, - -1.454974889755249, - -1.4621284008026123, - -1.4658775329589844, - -1.4661201238632202, - -1.462849497795105, - -1.4561549425125122, - -1.4462189674377441, - -1.2284305095672607, - -1.2435898780822754, - -1.2613059282302856, - -1.2810957431793213, - -1.3024191856384277, - -1.3246948719024658, - -1.3473150730133057, - -1.3696626424789429, - -1.3911281824111938, - -1.4111261367797852, - -1.4291110038757324, - -1.4445921182632446, - -1.457147240638733, - -1.4664340019226074, - -1.4721989631652832, - -1.4742848873138428, - -1.4726349115371704, - -1.4672939777374268, - -1.4584078788757324, - -1.4462189674377441, - -1.2284305095672607, - -1.2443610429763794, - -1.2628272771835327, - -1.2833256721496582, - -1.3052968978881836, - -1.3281419277191162, - -1.3512372970581055, - -1.3739532232284546, - -1.3956700563430786, - -1.4157953262329102, - -1.4337801933288574, - -1.4491339921951294, - -1.4614378213882446, - -1.4703562259674072, - -1.475645899772644, - -1.4771625995635986, - -1.4748647212982178, - -1.4688153266906738, - -1.4591790437698364, - -1.4462189674377441, - -1.2284305095672607, - -1.2435667514801025, - -1.2612605094909668, - -1.2810291051864624, - -1.3023332357406616, - -1.3245917558670044, - -1.3471977710723877, - -1.3695343732833862, - -1.3909924030303955, - -1.4109865427017212, - -1.4289714097976685, - -1.4444563388824463, - -1.4570189714431763, - -1.4663166999816895, - -1.4720958471298218, - -1.474198818206787, - -1.472568154335022, - -1.467248558998108, - -1.4583848714828491, - -1.4462189674377441, - -1.2284305095672607, - -1.2412933111190796, - -1.2567754983901978, - -1.2744548320770264, - -1.2938491106033325, - -1.3144294023513794, - -1.3356341123580933, - -1.3568849563598633, - -1.377602219581604, - -1.3972208499908447, - -1.415205717086792, - -1.4310661554336548, - -1.4443695545196533, - -1.454753041267395, - -1.4619333744049072, - -1.4657148122787476, - -1.4659940004348755, - -1.4627635478973389, - -1.4561113119125366, - -1.4462189674377441, - -1.2284305095672607, - -1.2377867698669434, - -1.2498582601547241, - -1.2643154859542847, - -1.2807642221450806, - -1.2987557649612427, - -1.31779944896698, - -1.3373757600784302, - -1.3569505214691162, - -1.3759900331497192, - -1.3939749002456665, - -1.410414457321167, - -1.4248603582382202, - -1.4369183778762817, - -1.44625985622406, - -1.4526299238204956, - -1.4558546543121338, - -1.4558461904525757, - -1.45260488986969, - -1.4462189674377441 - ], - "z": [ - 0.8178340196609497, - 0.8190405368804932, - 0.8145008087158203, - 0.8043384552001953, - 0.7888308167457581, - 0.7684009075164795, - 0.7436059713363647, - 0.7151223421096802, - 0.683726966381073, - 0.6502763032913208, - 0.6156827211380005, - 0.5808898210525513, - 0.5468467473983765, - 0.5144820809364319, - 0.48467862606048584, - 0.4582493305206299, - 0.43591514229774475, - 0.4182852506637573, - 0.4058406352996826, - 0.3989206552505493, - 0.8178340196609497, - 0.8265475034713745, - 0.82930988073349, - 0.8260457515716553, - 0.8168442249298096, - 0.801956295967102, - 0.7817879915237427, - 0.7568895220756531, - 0.727940022945404, - 0.69572913646698, - 0.6611355543136597, - 0.6251028776168823, - 0.5886139273643494, - 0.5526641011238098, - 0.5182340145111084, - 0.4862627387046814, - 0.4576224684715271, - 0.4330943822860718, - 0.4133475720882416, - 0.3989206552505493, - 0.8178340196609497, - 0.8328006267547607, - 0.8416455984115601, - 0.8441275358200073, - 0.8401788473129272, - 0.829907238483429, - 0.8135928511619568, - 0.7916807532310486, - 0.7647686004638672, - 0.7335904836654663, - 0.698996901512146, - 0.6619314551353455, - 0.6234051585197449, - 0.5844689607620239, - 0.5461849570274353, - 0.5095973610877991, - 0.47570422291755676, - 0.44543004035949707, - 0.4196006953716278, - 0.3989206552505493, - 0.8178340196609497, - 0.8371223211288452, - 0.8501710891723633, - 0.8566242456436157, - 0.8563059568405151, - 0.849224865436554, - 0.8355740308761597, - 0.8157258033752441, - 0.7902217507362366, - 0.759757399559021, - 0.7251638174057007, - 0.6873846054077148, - 0.6474502682685852, - 0.6064501404762268, - 0.5655025839805603, - 0.5257245302200317, - 0.48820099234580994, - 0.4539555311203003, - 0.4239223897457123, - 0.3989206552505493, - 0.8178340196609497, - 0.8390442132949829, - 0.8539625406265259, - 0.8621817827224731, - 0.8634780049324036, - 0.8578157424926758, - 0.8453494310379028, - 0.8264191150665283, - 0.8015412092208862, - 0.7713943123817444, - 0.7368007302284241, - 0.6987040638923645, - 0.6581435799598694, - 0.61622554063797, - 0.5740934610366821, - 0.5328965187072754, - 0.49375852942466736, - 0.4577469825744629, - 0.42584431171417236, - 0.3989206552505493, - 0.8178340196609497, - 0.8383581638336182, - 0.8526090383529663, - 0.860197901725769, - 0.8609177470207214, - 0.8547489643096924, - 0.8418598175048828, - 0.822601854801178, - 0.7975004315376282, - 0.7672401666641235, - 0.7326465845108032, - 0.6946632862091064, - 0.6543262600898743, - 0.61273592710495, - 0.5710266828536987, - 0.5303362607955933, - 0.49177461862564087, - 0.4563935399055481, - 0.42515823245048523, - 0.3989206552505493, - 0.8178340196609497, - 0.8351383805274963, - 0.8462573289871216, - 0.8508874773979187, - 0.8489026427268982, - 0.8403568863868713, - 0.8254833221435547, - 0.8046876788139343, - 0.7785372138023376, - 0.747745156288147, - 0.7131515741348267, - 0.6757000684738159, - 0.6364120841026306, - 0.5963594317436218, - 0.5566346049308777, - 0.51832115650177, - 0.4824641942977905, - 0.45004183053970337, - 0.4219384789466858, - 0.3989206552505493, - 0.8178340196609497, - 0.8297338485717773, - 0.8355956673622131, - 0.8352595567703247, - 0.8287346959114075, - 0.8161990642547607, - 0.7979945540428162, - 0.7746178507804871, - 0.746706485748291, - 0.7150219082832336, - 0.6804283261299133, - 0.6438693404197693, - 0.6063422560691833, - 0.5688706636428833, - 0.5324767827987671, - 0.4981532096862793, - 0.46683627367019653, - 0.4393801689147949, - 0.4165339469909668, - 0.3989206552505493, - 0.8178340196609497, - 0.8227301836013794, - 0.8217794299125671, - 0.8150075674057007, - 0.8025994300842285, - 0.7848933935165405, - 0.7623724341392517, - 0.735650897026062, - 0.7054576873779297, - 0.6726163625717163, - 0.638022780418396, - 0.602620542049408, - 0.5673753619194031, - 0.5332485437393188, - 0.5011711120605469, - 0.47201794385910034, - 0.4465842843055725, - 0.4255639314651489, - 0.40953028202056885, - 0.3989206552505493, - 0.8178340196609497, - 0.8148864507675171, - 0.8063058257102966, - 0.7923262119293213, - 0.7733290195465088, - 0.7498323321342468, - 0.7224770784378052, - 0.6920095682144165, - 0.6592607498168945, - 0.6251239776611328, - 0.5905303359031677, - 0.5564236044883728, - 0.5237339735031128, - 0.4933532178401947, - 0.4661100506782532, - 0.4427475035190582, - 0.4239029288291931, - 0.4100903272628784, - 0.40168648958206177, - 0.3989206552505493, - 0.8178340196609497, - 0.807052493095398, - 0.7908516526222229, - 0.7696733474731445, - 0.7440953254699707, - 0.7148152589797974, - 0.6826318502426147, - 0.6484230160713196, - 0.613121747970581, - 0.5776911377906799, - 0.5430975556373596, - 0.5102846026420593, - 0.48014742136001587, - 0.4535079598426819, - 0.4310929775238037, - 0.41351383924484253, - 0.40125006437301636, - 0.3946361243724823, - 0.393852561712265, - 0.3989206552505493, - 0.8178340196609497, - 0.8000773191452026, - 0.7770915627479553, - 0.7495037317276001, - 0.7180662751197815, - 0.6836369037628174, - 0.6471545696258545, - 0.6096144914627075, - 0.5720406770706177, - 0.5354580283164978, - 0.5008644461631775, - 0.46920353174209595, - 0.4413388967514038, - 0.41803067922592163, - 0.39991456270217896, - 0.3874848186969757, - 0.38108041882514954, - 0.3808760643005371, - 0.3868774175643921, - 0.3989206552505493, - 0.8178340196609497, - 0.7947168350219727, - 0.7665167450904846, - 0.7340030670166016, - 0.6980625987052917, - 0.6596758365631104, - 0.6198896765708923, - 0.5797895789146423, - 0.540469229221344, - 0.5030012726783752, - 0.46840766072273254, - 0.43763208389282227, - 0.4115139842033386, - 0.3907657861709595, - 0.3759534955024719, - 0.3674811124801636, - 0.365579754114151, - 0.3703012466430664, - 0.38151687383651733, - 0.3989206552505493, - 0.8178340196609497, - 0.7915518283843994, - 0.7602730989456177, - 0.7248510718345642, - 0.6862519383430481, - 0.6455286145210266, - 0.6037918329238892, - 0.5621801614761353, - 0.5218286514282227, - 0.48383796215057373, - 0.4492443799972534, - 0.4189915060997009, - 0.39390459656715393, - 0.3746679425239563, - 0.3618062734603882, - 0.3556704521179199, - 0.35642778873443604, - 0.36405760049819946, - 0.3783518970012665, - 0.3989206552505493, - 0.8178340196609497, - 0.7909253835678101, - 0.7590372562408447, - 0.7230395674705505, - 0.6839141845703125, - 0.642728328704834, - 0.6006054878234863, - 0.5586946606636047, - 0.5181390047073364, - 0.4800448417663574, - 0.4454512596130371, - 0.4153018593788147, - 0.390419065952301, - 0.37148159742355347, - 0.35900604724884033, - 0.35333266854286194, - 0.3546162545681, - 0.3628217577934265, - 0.37772542238235474, - 0.3989206552505493, - 0.8178340196609497, - 0.7929052710533142, - 0.7629431486129761, - 0.7287647724151611, - 0.6913025975227356, - 0.6515784859657288, - 0.6106758713722229, - 0.5697106122970581, - 0.5298000574111938, - 0.49203288555145264, - 0.4574393033981323, - 0.4269629120826721, - 0.4014350175857544, - 0.38155198097229004, - 0.36785614490509033, - 0.3607211112976074, - 0.36034148931503296, - 0.3667276203632355, - 0.37970536947250366, - 0.3989206552505493, - 0.8178340196609497, - 0.7972770929336548, - 0.7715674638748169, - 0.7414063811302185, - 0.7076166272163391, - 0.6711199283599854, - 0.632911741733551, - 0.5940343737602234, - 0.5555481910705566, - 0.5185030698776245, - 0.4839094877243042, - 0.4527110457420349, - 0.4257587790489197, - 0.40378788113594055, - 0.3873976469039917, - 0.3770351707935333, - 0.37298309803009033, - 0.3753519356250763, - 0.38407713174819946, - 0.3989206552505493, - 0.8178340196609497, - 0.8035669326782227, - 0.7839756011962891, - 0.7595944404602051, - 0.731088399887085, - 0.699235200881958, - 0.6649035811424255, - 0.6290300488471985, - 0.5925931930541992, - 0.5565869212150574, - 0.5219933390617371, - 0.4897560477256775, - 0.46075448393821716, - 0.4357796609401703, - 0.4155128598213196, - 0.4005069136619568, - 0.39117109775543213, - 0.38776010274887085, - 0.3903670310974121, - 0.3989206552505493, - 0.8178340196609497, - 0.8110933303833008, - 0.7988230586051941, - 0.7813578844070435, - 0.7591743469238281, - 0.7328774333000183, - 0.7031844258308411, - 0.670905351638794, - 0.636920690536499, - 0.602157473564148, - 0.5675638318061829, - 0.5340835452079773, - 0.5026297569274902, - 0.4740605354309082, - 0.4491550922393799, - 0.42859286069869995, - 0.41293463110923767, - 0.4026075601577759, - 0.39789336919784546, - 0.3989206552505493, - 0.8178340196609497, - 0.8190405368804932, - 0.8145008087158203, - 0.8043384552001953, - 0.7888308167457581, - 0.7684009075164795, - 0.7436059713363647, - 0.7151223421096802, - 0.6837270259857178, - 0.6502763032913208, - 0.6156827211380005, - 0.580889880657196, - 0.5468468070030212, - 0.5144820809364319, - 0.48467862606048584, - 0.4582493305206299, - 0.43591517210006714, - 0.4182852506637573, - 0.4058406352996826, - 0.3989206552505493 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.11874576658010483, - -0.11623760312795639, - -0.10897479206323624, - -0.09715542942285538, - -0.0811019316315651, - -0.06125219166278839, - -0.03814765065908432, - -0.01241854578256607, - 0.015233296900987625, - 0.04405360668897629, - 0.0732562467455864, - 0.10204464942216873, - 0.12963353097438812, - 0.15527033805847168, - 0.17825576663017273, - 0.19796285033226013, - 0.21385401487350464, - 0.22549578547477722, - 0.23257064819335938, - 0.2348855435848236, - -0.11874575167894363, - -0.1292155683040619, - -0.1345767080783844, - -0.13468298316001892, - -0.12953144311904907, - -0.11926261335611343, - -0.10415662080049515, - -0.08462551981210709, - -0.06120206415653229, - -0.03452516347169876, - -0.0053225234150886536, - 0.02560928463935852, - 0.05742655321955681, - 0.08926136791706085, - 0.12024533748626709, - 0.14953336119651794, - 0.17632648348808289, - 0.19989386200904846, - 0.21959269046783447, - 0.2348855435848236, - -0.11874575167894363, - -0.14079764485359192, - -0.1574249267578125, - -0.16817408800125122, - -0.17275190353393555, - -0.17103350162506104, - -0.16306576132774353, - -0.1490660011768341, - -0.12941613793373108, - -0.10465212911367416, - -0.07544948905706406, - -0.042604781687259674, - -0.007013939321041107, - 0.03035222552716732, - 0.0684744343161583, - 0.10631286352872849, - 0.1428353637456894, - 0.17704564332962036, - 0.20801061391830444, - 0.2348855435848236, - -0.11874575167894363, - -0.1497287154197693, - -0.1750434935092926, - -0.1939995288848877, - -0.20607978105545044, - -0.2109546959400177, - -0.20849135518074036, - -0.19875690340995789, - -0.18201687932014465, - -0.15872791409492493, - -0.12952527403831482, - -0.09520552307367325, - -0.0567048117518425, - -0.01507335901260376, - 0.028553234413266182, - 0.07298500090837479, - 0.11700992286205292, - 0.15942710638046265, - 0.1990795135498047, - 0.2348855435848236, - -0.11874575167894363, - -0.15504100918769836, - -0.185523122549057, - -0.20936068892478943, - -0.22590342164039612, - -0.23470011353492737, - -0.23551079630851746, - -0.2283133864402771, - -0.21330419182777405, - -0.1908925473690033, - -0.1616899073123932, - -0.12649282813072205, - -0.0862613096833229, - -0.04209281504154205, - 0.004807833582162857, - 0.05316133797168732, - 0.10164879262447357, - 0.14894744753837585, - 0.193767249584198, - 0.2348855435848236, - -0.11874575167894363, - -0.15615880489349365, - -0.18772822618484497, - -0.2125929296016693, - -0.23007464408874512, - -0.23969656229019165, - -0.2411961555480957, - -0.23453256487846375, - -0.21988752484321594, - -0.19766053557395935, - -0.16845789551734924, - -0.13307616114616394, - -0.09248047322034836, - -0.047778159379959106, - -0.00018860027194023132, - 0.04899011552333832, - 0.0984165370464325, - 0.14674237370491028, - 0.1926494538784027, - 0.2348855435848236, - -0.11874575167894363, - -0.15296098589897156, - -0.18141981959342957, - -0.20334601402282715, - -0.21814146637916565, - -0.2254025638103485, - -0.22493129968643188, - -0.21674051880836487, - -0.20105361938476562, - -0.1782984435558319, - -0.1490958034992218, - -0.11424224823713303, - -0.07468842715024948, - -0.03151330351829529, - 0.014105353504419327, - 0.06092332303524017, - 0.10766345262527466, - 0.15305078029632568, - 0.1958472728729248, - 0.2348855435848236, - -0.11874575167894363, - -0.1457940936088562, - -0.16728150844573975, - -0.18262195587158203, - -0.19139695167541504, - -0.1933671534061432, - -0.18847879767417908, - -0.17686524987220764, - -0.1588432788848877, - -0.13490447402000427, - -0.10570182651281357, - -0.07203192263841629, - -0.03481318801641464, - 0.004939164966344833, - 0.046140775084495544, - 0.0876678079366684, - 0.12838751077651978, - 0.16718906164169312, - 0.20301416516304016, - 0.2348855435848236, - -0.11874575167894363, - -0.13543474674224854, - -0.14684543013572693, - -0.15266656875610352, - -0.15273937582969666, - -0.14706185460090637, - -0.13578885793685913, - -0.11922790855169296, - -0.09783073514699936, - -0.07218099385499954, - -0.04297834634780884, - -0.011019378900527954, - 0.022824164479970932, - 0.05762913450598717, - 0.09244608879089355, - 0.12632539868354797, - 0.1583428829908371, - 0.18762513995170593, - 0.21337348222732544, - 0.2348855435848236, - -0.11874575167894363, - -0.12300560623407364, - -0.12232614308595657, - -0.11672598868608475, - -0.10635783523321152, - -0.0915045365691185, - -0.07257122546434402, - -0.05007437616586685, - -0.024627625942230225, - 0.0030748993158340454, - 0.03227753937244415, - 0.06218372657895088, - 0.09197770059108734, - 0.12084677070379257, - 0.14800342917442322, - 0.17270693182945251, - 0.19428348541259766, - 0.21214443445205688, - 0.22580265998840332, - 0.2348855435848236, - -0.11874576658010483, - -0.10985348373651505, - -0.09638068825006485, - -0.0786948874592781, - -0.05727849900722504, - -0.03271571546792984, - -0.005676522850990295, - 0.023101501166820526, - 0.05283337086439133, - 0.08270807564258575, - 0.11191071569919586, - 0.13964472711086273, - 0.16515357792377472, - 0.1877414584159851, - 0.20679226517677307, - 0.2217862904071808, - 0.2323145866394043, - 0.2380898892879486, - 0.23895475268363953, - 0.2348855435848236, - -0.11874576658010483, - -0.09740366786718369, - -0.07182065397500992, - -0.0426945686340332, - -0.010819874703884125, - 0.022933926433324814, - 0.057646170258522034, - 0.09236995875835419, - 0.12615813314914703, - 0.1580890417098999, - 0.18729168176651, - 0.21296948194503784, - 0.23442202806472778, - 0.2510641813278198, - 0.2624419033527374, - 0.2682449221611023, - 0.2683148980140686, - 0.2626499533653259, - 0.2514045834541321, - 0.2348855435848236, - -0.11874576658010483, - -0.08700527995824814, - -0.05130749195814133, - -0.012626200914382935, - 0.027983520179986954, - 0.06941388547420502, - 0.11053483188152313, - 0.1502247005701065, - 0.18740081787109375, - 0.22104910016059875, - 0.25025174021720886, - 0.27421215176582336, - 0.2922767698764801, - 0.3039528429508209, - 0.3089218735694885, - 0.30704832077026367, - 0.29838326573371887, - 0.2831631004810333, - 0.2618029713630676, - 0.2348855435848236, - -0.11874576658010483, - -0.07978511601686478, - -0.03706412762403488, - 0.0082518570125103, - 0.05492676421999931, - 0.10168737173080444, - 0.14725825190544128, - 0.19039630889892578, - 0.22992482781410217, - 0.26476556062698364, - 0.29396820068359375, - 0.3167361617088318, - 0.33244839310646057, - 0.3406762480735779, - 0.34119537472724915, - 0.33399152755737305, - 0.3192613124847412, - 0.29740646481513977, - 0.2690231502056122, - 0.2348855435848236, - -0.11874576658010483, - -0.07652563601732254, - -0.0306340754032135, - 0.017677094787359238, - 0.06709009408950806, - 0.11625699698925018, - 0.1638367474079132, - 0.2085314691066742, - 0.24912193417549133, - 0.2845010459423065, - 0.3137036859989166, - 0.33593326807022095, - 0.3505835235118866, - 0.3572547435760498, - 0.3557649552822113, - 0.3461548686027527, - 0.32868653535842896, - 0.30383652448654175, - 0.2722826302051544, - 0.2348855435848236, - -0.11874576658010483, - -0.077580027282238, - -0.032714083790779114, - 0.01462819054722786, - 0.06315543502569199, - 0.11154395341873169, - 0.15847386419773102, - 0.2026650309562683, - 0.24291199445724487, - 0.278116911649704, - 0.3073195517063141, - 0.3297233283519745, - 0.3447171151638031, - 0.3518918752670288, - 0.351051926612854, - 0.3422202169895172, - 0.3256376385688782, - 0.30175650119781494, - 0.27122822403907776, - 0.2348855435848236, - -0.11874576658010483, - -0.08283404260873795, - -0.04307880252599716, - -0.0005645044147968292, - 0.04354919120669365, - 0.0880589485168457, - 0.13175071775913239, - 0.17343266308307648, - 0.21196779608726501, - 0.24630498886108398, - 0.2755076289176941, - 0.298779159784317, - 0.3154847323894501, - 0.3251687288284302, - 0.327566921710968, - 0.3226139545440674, - 0.3104449510574341, - 0.2913917899131775, - 0.265974223613739, - 0.2348855435848236, - -0.11874576658010483, - -0.09171832352876663, - -0.06060503423213959, - -0.026254616677761078, - 0.010395970195531845, - 0.04834694415330887, - 0.08656315505504608, - 0.12400217354297638, - 0.15964269638061523, - 0.19251257181167603, - 0.22171521186828613, - 0.24645406007766724, - 0.26605424284935, - 0.27998116612434387, - 0.287854939699173, - 0.2894607484340668, - 0.28475484251976013, - 0.27386555075645447, - 0.2570899426937103, - 0.2348855435848236, - -0.11874576658010483, - -0.10327013581991196, - -0.08339353650808334, - -0.05965821444988251, - -0.032711565494537354, - -0.0032886452972888947, - 0.027807988226413727, - 0.059730082750320435, - 0.09160688519477844, - 0.12256890535354614, - 0.15177154541015625, - 0.17841824889183044, - 0.20178216695785522, - 0.22122597694396973, - 0.23621931672096252, - 0.24635320901870728, - 0.2513512372970581, - 0.2510770559310913, - 0.2455381155014038, - 0.2348855435848236, - -0.11874576658010483, - -0.11623761802911758, - -0.10897479206323624, - -0.09715545922517776, - -0.08110196143388748, - -0.06125222146511078, - -0.038147687911987305, - -0.012418590486049652, - 0.015233255922794342, - 0.044053565710783005, - 0.07325620949268341, - 0.10204460471868515, - 0.12963348627090454, - 0.1552703082561493, - 0.17825573682785034, - 0.19796282052993774, - 0.21385401487350464, - 0.22549578547477722, - 0.23257064819335938, - 0.2348855435848236 - ], - "y": [ - -1.5056555271148682, - -1.4983503818511963, - -1.48810875415802, - -1.4752097129821777, - -1.460005283355713, - -1.4429101943969727, - -1.4243906736373901, - -1.4049519300460815, - -1.3851242065429688, - -1.3654483556747437, - -1.3464610576629639, - -1.3286802768707275, - -1.3125909566879272, - -1.2986321449279785, - -1.2871843576431274, - -1.2785600423812866, - -1.2729942798614502, - -1.270639181137085, - -1.2715586423873901, - -1.2757277488708496, - -1.5056555271148682, - -1.4941588640213013, - -1.47983980178833, - -1.463089108467102, - -1.4443634748458862, - -1.4241739511489868, - -1.4030710458755493, - -1.381630539894104, - -1.3604371547698975, - -1.3400689363479614, - -1.3210817575454712, - -1.3039932250976562, - -1.2892695665359497, - -1.2773125171661377, - -1.2684481143951416, - -1.26291823387146, - -1.2608736753463745, - -1.262370228767395, - -1.2673670053482056, - -1.2757277488708496, - -1.5056555271148682, - -1.4910430908203125, - -1.4736933708190918, - -1.4540796279907227, - -1.4327367544174194, - -1.4102470874786377, - -1.3872239589691162, - -1.3642953634262085, - -1.342086911201477, - -1.3212041854858398, - -1.30221688747406, - -1.2856429815292358, - -1.2719345092773438, - -1.2614654302597046, - -1.2545212507247925, - -1.2512915134429932, - -1.2518641948699951, - -1.2562237977981567, - -1.2642513513565063, - -1.2757277488708496, - -1.5056555271148682, - -1.4893410205841064, - -1.470335602760315, - -1.44915771484375, - -1.4263850450515747, - -1.4026387929916382, - -1.3785665035247803, - -1.3548251390457153, - -1.332062005996704, - -1.3108981847763062, - -1.2919108867645264, - -1.275618076324463, - -1.262464165687561, - -1.2528079748153687, - -1.246912956237793, - -1.2449398040771484, - -1.2469422817230225, - -1.2528660297393799, - -1.2625491619110107, - -1.2757277488708496, - -1.5056555271148682, - -1.489236831665039, - -1.470130205154419, - -1.4488567113876343, - -1.4259965419769287, - -1.402173399925232, - -1.3780369758605957, - -1.354245901107788, - -1.3314487934112549, - -1.3102678060531616, - -1.2912805080413818, - -1.2750048637390137, - -1.2618849277496338, - -1.2522785663604736, - -1.2464475631713867, - -1.2445513010025024, - -1.2466412782669067, - -1.2526606321334839, - -1.262445092201233, - -1.2757277488708496, - -1.5056555271148682, - -1.4907420873641968, - -1.4730995893478394, - -1.4532091617584229, - -1.4316134452819824, - -1.4089014530181885, - -1.385692834854126, - -1.36262047290802, - -1.3403139114379883, - -1.3193814754486084, - -1.3003941774368286, - -1.283869981765747, - -1.2702596187591553, - -1.2599341869354248, - -1.2531757354736328, - -1.2501682043075562, - -1.2509937286376953, - -1.2556300163269043, - -1.2639503479003906, - -1.2757277488708496, - -1.5056555271148682, - -1.493693470954895, - -1.4789217710494995, - -1.4617434740066528, - -1.442626953125, - -1.4220938682556152, - -1.4007041454315186, - -1.379041314125061, - -1.3576964139938354, - -1.3372514247894287, - -1.318264126777649, - -1.3012524843215942, - -1.2866804599761963, - -1.274945616722107, - -1.26636803150177, - -1.2611817121505737, - -1.2595280408859253, - -1.2614521980285645, - -1.2669016122817993, - -1.2757277488708496, - -1.5056555271148682, - -1.497771143913269, - -1.4869660139083862, - -1.4735348224639893, - -1.4578437805175781, - -1.4403209686279297, - -1.4214445352554321, - -1.4017291069030762, - -1.3817126750946045, - -1.3619412183761597, - -1.3429539203643799, - -1.3252687454223633, - -1.3093682527542114, - -1.2956860065460205, - -1.284595251083374, - -1.2763985395431519, - -1.2713193893432617, - -1.2694964408874512, - -1.270979404449463, - -1.2757277488708496, - -1.5056555271148682, - -1.5025334358215332, - -1.4963605403900146, - -1.4873054027557373, - -1.4756147861480713, - -1.4616076946258545, - -1.4456661939620972, - -1.4282251596450806, - -1.4097603559494019, - -1.3907753229141235, - -1.3717880249023438, - -1.3533164262771606, - -1.3358643054962158, - -1.3199076652526855, - -1.3058819770812988, - -1.294169545173645, - -1.2850899696350098, - -1.2788909673690796, - -1.2757415771484375, - -1.2757277488708496, - -1.5056555271148682, - -1.507464051246643, - -1.506087303161621, - -1.5015629529953003, - -1.4940142631530762, - -1.4836472272872925, - -1.4707446098327637, - -1.4556583166122437, - -1.4387998580932617, - -1.4206292629241943, - -1.4016419649124146, - -1.3823559284210205, - -1.3632973432540894, - -1.3449859619140625, - -1.3279213905334473, - -1.31256902217865, - -1.2993475198745728, - -1.288617730140686, - -1.2806721925735474, - -1.2757277488708496, - -1.5056555271148682, - -1.5120288133621216, - -1.5150922536849976, - -1.5147624015808105, - -1.5110483169555664, - -1.5040510892868042, - -1.4939618110656738, - -1.4810556173324585, - -1.465684413909912, - -1.4482676982879639, - -1.429280400276184, - -1.409240484237671, - -1.3886946439743042, - -1.3682032823562622, - -1.3483253717422485, - -1.3296030759811401, - -1.3125470876693726, - -1.2976226806640625, - -1.2852369546890259, - -1.2757277488708496, - -1.5056555271148682, - -1.5157328844070435, - -1.5223995447158813, - -1.5254735946655273, - -1.5248711109161377, - -1.5206085443496704, - -1.5128021240234375, - -1.5016648769378662, - -1.4875006675720215, - -1.4706956148147583, - -1.4517083168029785, - -1.4310567378997803, - -1.4093040227890015, - -1.3870435953140259, - -1.3648827075958252, - -1.3434258699417114, - -1.3232581615447998, - -1.3049299716949463, - -1.2889411449432373, - -1.2757277488708496, - -1.5056555271148682, - -1.5181751251220703, - -1.5272173881530762, - -1.5325355529785156, - -1.533984661102295, - -1.5315250158309937, - -1.5252238512039185, - -1.515252947807312, - -1.5018843412399292, - -1.4854826927185059, - -1.4664955139160156, - -1.445440411567688, - -1.4228920936584473, - -1.3994653224945068, - -1.3757991790771484, - -1.352539300918579, - -1.3303202390670776, - -1.3097478151321411, - -1.2913833856582642, - -1.2757277488708496, - -1.5056555271148682, - -1.5190907716751099, - -1.5290236473083496, - -1.5351831912994385, - -1.5374013185501099, - -1.535617709159851, - -1.5298807621002197, - -1.520347237586975, - -1.5072768926620483, - -1.491026520729065, - -1.4720392227172852, - -1.4508330821990967, - -1.4279862642288208, - -1.404122233390808, - -1.3798918724060059, - -1.3559560775756836, - -1.332967758178711, - -1.3115540742874146, - -1.2922989130020142, - -1.2757277488708496, - -1.5056555271148682, - -1.5183805227279663, - -1.5276225805282593, - -1.5331294536590576, - -1.534751057624817, - -1.5324430465698242, - -1.5262683629989624, - -1.5163955688476562, - -1.503093957901001, - -1.4867262840270996, - -1.4677389860153198, - -1.4466500282287598, - -1.4240347146987915, - -1.4005098342895508, - -1.376717209815979, - -1.3533058166503906, - -1.33091402053833, - -1.3101530075073242, - -1.2915887832641602, - -1.2757277488708496, - -1.5056555271148682, - -1.5161213874816895, - -1.5231659412384033, - -1.526597023010254, - -1.5263208150863647, - -1.5223450660705566, - -1.5147781372070312, - -1.5038264989852905, - -1.4897887706756592, - -1.4730479717254639, - -1.454060673713684, - -1.433344841003418, - -1.4114655256271362, - -1.3890196084976196, - -1.3666192293167114, - -1.3448755741119385, - -1.3243815898895264, - -1.3056963682174683, - -1.2893296480178833, - -1.2757277488708496, - -1.5056555271148682, - -1.5125582218170166, - -1.516136884689331, - -1.5162936449050903, - -1.5130243301391602, - -1.506417989730835, - -1.4966551065444946, - -1.4840017557144165, - -1.46880304813385, - -1.4514738321304321, - -1.4324865341186523, - -1.4123592376708984, - -1.3916407823562622, - -1.370896577835083, - -1.3506922721862793, - -1.3315790891647339, - -1.3140782117843628, - -1.298667311668396, - -1.2857664823532104, - -1.2757277488708496, - -1.5056555271148682, - -1.5080771446228027, - -1.5072969198226929, - -1.503335952758789, - -1.4963023662567139, - -1.4863879680633545, - -1.4738632440567017, - -1.4590697288513184, - -1.442411184310913, - -1.4243417978286743, - -1.4053544998168945, - -1.3859672546386719, - -1.3667088747024536, - -1.34810471534729, - -1.3306621313095093, - -1.3148571252822876, - -1.3011205196380615, - -1.2898273468017578, - -1.2812854051589966, - -1.2757277488708496, - -1.5056555271148682, - -1.5031636953353882, - -1.4976040124893188, - -1.4891281127929688, - -1.4779670238494873, - -1.4644253253936768, - -1.4488723278045654, - -1.4317322969436646, - -1.4134728908538818, - -1.3945919275283813, - -1.3756046295166016, - -1.3570289611816406, - -1.3393714427947998, - -1.3231137990951538, - -1.3086994886398315, - -1.296521782875061, - -1.2869126796722412, - -1.2801344394683838, - -1.276371955871582, - -1.2757277488708496, - -1.5056555271148682, - -1.4983503818511963, - -1.48810875415802, - -1.4752097129821777, - -1.460005283355713, - -1.4429101943969727, - -1.4243906736373901, - -1.4049519300460815, - -1.3851242065429688, - -1.3654483556747437, - -1.3464610576629639, - -1.3286802768707275, - -1.3125909566879272, - -1.2986321449279785, - -1.2871843576431274, - -1.2785600423812866, - -1.2729942798614502, - -1.270639181137085, - -1.2715586423873901, - -1.2757277488708496 - ], - "z": [ - 0.4554406404495239, - 0.4553966522216797, - 0.4613857865333557, - 0.47324466705322266, - 0.4906497597694397, - 0.5131263732910156, - 0.540061354637146, - 0.5707199573516846, - 0.6042659878730774, - 0.6397843360900879, - 0.6763061285018921, - 0.7128352522850037, - 0.7483751773834229, - 0.7819565534591675, - 0.8126632571220398, - 0.8396577835083008, - 0.86220383644104, - 0.8796862363815308, - 0.8916282653808594, - 0.8977041244506836, - 0.4554406404495239, - 0.46359458565711975, - 0.4775580167770386, - 0.49695006012916565, - 0.5212417244911194, - 0.5497704148292542, - 0.5817579030990601, - 0.6163316965103149, - 0.6525487303733826, - 0.6894209980964661, - 0.725942850112915, - 0.7611179947853088, - 0.7939869165420532, - 0.8236531019210815, - 0.8493072986602783, - 0.8702497482299805, - 0.8859091997146606, - 0.8958584666252136, - 0.8998262286186218, - 0.8977041244506836, - 0.4554406404495239, - 0.4712357223033905, - 0.4926319122314453, - 0.5190454721450806, - 0.5497559905052185, - 0.5839256644248962, - 0.6206225752830505, - 0.6588456034660339, - 0.6975522041320801, - 0.7356865406036377, - 0.7722083330154419, - 0.8061214685440063, - 0.8365008234977722, - 0.862517774105072, - 0.8834626078605652, - 0.8987640142440796, - 0.908004641532898, - 0.9109323620796204, - 0.9074673652648926, - 0.8977041244506836, - 0.4554406404495239, - 0.4774920344352722, - 0.5049738883972168, - 0.5371364951133728, - 0.5731025338172913, - 0.6118909120559692, - 0.6524437069892883, - 0.6936546564102173, - 0.7343996167182922, - 0.7735671997070312, - 0.8100890517234802, - 0.8429688811302185, - 0.8713098764419556, - 0.8943389654159546, - 0.9114278554916382, - 0.9221105575561523, - 0.9260956048965454, - 0.9232743382453918, - 0.9137237071990967, - 0.8977041244506836, - 0.4554406404495239, - 0.4816855788230896, - 0.5132465958595276, - 0.5492626428604126, - 0.5887514352798462, - 0.6306357383728027, - 0.6737729907035828, - 0.7169867157936096, - 0.7590979933738708, - 0.7989581823348999, - 0.8354799747467041, - 0.8676672577857971, - 0.8946419358253479, - 0.915668249130249, - 0.9301726222038269, - 0.9377594590187073, - 0.93822181224823, - 0.9315470457077026, - 0.9179172515869141, - 0.8977041244506836, - 0.4554406404495239, - 0.4833618998527527, - 0.5165534615516663, - 0.5541099309921265, - 0.5950068831443787, - 0.6381286382675171, - 0.6822991371154785, - 0.7263133525848389, - 0.7689708471298218, - 0.8091078996658325, - 0.8456296920776367, - 0.877540111541748, - 0.9039685726165771, - 0.9241943359375, - 0.937665581703186, - 0.9440149068832397, - 0.9430691003799438, - 0.9348539113998413, - 0.9195935130119324, - 0.8977041244506836, - 0.4554406404495239, - 0.4823393225669861, - 0.5145362615585327, - 0.5511530637741089, - 0.5911909937858582, - 0.6335578560829163, - 0.6770980954170227, - 0.7206239700317383, - 0.7629482746124268, - 0.8029164671897888, - 0.839438259601593, - 0.871517539024353, - 0.8982791900634766, - 0.918993353843689, - 0.9330947995185852, - 0.9401990175247192, - 0.9401122331619263, - 0.932836651802063, - 0.9185709953308105, - 0.8977041244506836, - 0.4554406404495239, - 0.478728711605072, - 0.5074134469032288, - 0.5407124161720276, - 0.5777172446250916, - 0.617418646812439, - 0.6587335467338562, - 0.7005351185798645, - 0.7416830062866211, - 0.7810547947883606, - 0.8175766468048096, - 0.8502522706985474, - 0.8781903386116028, - 0.9006288051605225, - 0.9169555902481079, - 0.9267252683639526, - 0.9296715259552002, - 0.9257138967514038, - 0.9149603247642517, - 0.8977041244506836, - 0.4554406404495239, - 0.4729212522506714, - 0.49595698714256287, - 0.523919403553009, - 0.5560458302497864, - 0.5914598703384399, - 0.6291955709457397, - 0.6682236194610596, - 0.7074793577194214, - 0.7458920478820801, - 0.7824138402938843, - 0.8160486221313477, - 0.8458788394927979, - 0.8710907697677612, - 0.8909968137741089, - 0.9050538539886475, - 0.9128785729408264, - 0.9142574071884155, - 0.9091528654098511, - 0.8977041244506836, - 0.4554406404495239, - 0.4655463695526123, - 0.48140835762023926, - 0.5025938749313354, - 0.5285251140594482, - 0.5584946274757385, - 0.5916850566864014, - 0.6271910071372986, - 0.6640439033508301, - 0.7012385725975037, - 0.7377603650093079, - 0.7726131677627563, - 0.8048462271690369, - 0.8335802555084229, - 0.8580315709114075, - 0.8775331377983093, - 0.8915530443191528, - 0.8997087478637695, - 0.901777982711792, - 0.8977041244506836, - 0.4554406404495239, - 0.45740315318107605, - 0.46534407138824463, - 0.47904670238494873, - 0.49813735485076904, - 0.5220952033996582, - 0.5502668619155884, - 0.5818837285041809, - 0.6160835027694702, - 0.6519332528114319, - 0.6884551048278809, - 0.7246527671813965, - 0.759539008140564, - 0.7921620607376099, - 0.8216321468353271, - 0.8471453785896301, - 0.8680058717727661, - 0.8836445212364197, - 0.8936347961425781, - 0.8977041244506836, - 0.4554406404495239, - 0.44937410950660706, - 0.4495049715042114, - 0.4558296501636505, - 0.46817559003829956, - 0.4862060844898224, - 0.5094292163848877, - 0.5372116565704346, - 0.5687954425811768, - 0.6033191084861755, - 0.6398409605026245, - 0.677364706993103, - 0.7148668766021729, - 0.751324474811554, - 0.785742998123169, - 0.8171836137771606, - 0.8447887897491455, - 0.8678054213523865, - 0.8856057524681091, - 0.8977041244506836, - 0.4554406404495239, - 0.4423292875289917, - 0.4356074929237366, - 0.43545860052108765, - 0.44188666343688965, - 0.4547163248062134, - 0.4735976457595825, - 0.4980155825614929, - 0.5273041129112244, - 0.5606642961502075, - 0.5971860885620117, - 0.6358733773231506, - 0.6756708025932312, - 0.715492844581604, - 0.7542532086372375, - 0.7908946871757507, - 0.824417769908905, - 0.8539079427719116, - 0.8785609006881714, - 0.8977041244506836, - 0.4554406404495239, - 0.4370321035385132, - 0.4251576364040375, - 0.4201411008834839, - 0.4221193194389343, - 0.43103837966918945, - 0.44665494561195374, - 0.46854305267333984, - 0.49610570073127747, - 0.528590977191925, - 0.565112829208374, - 0.6046749949455261, - 0.6461982727050781, - 0.6885501742362976, - 0.7305752635002136, - 0.7711273431777954, - 0.8091002702713013, - 0.8434580564498901, - 0.8732637166976929, - 0.8977041244506836, - 0.4554406404495239, - 0.4340566098690033, - 0.4192878007888794, - 0.4115370213985443, - 0.41101571917533875, - 0.417738139629364, - 0.43152081966400146, - 0.4519879221916199, - 0.47858110070228577, - 0.5105749368667603, - 0.5470967888832092, - 0.5871503949165344, - 0.6296431422233582, - 0.6734160780906677, - 0.7172750234603882, - 0.7600237131118774, - 0.8004961609840393, - 0.8375882506370544, - 0.8702882528305054, - 0.8977041244506836, - 0.4554406404495239, - 0.4337252080440521, - 0.4186340570449829, - 0.41057875752449036, - 0.40977907180786133, - 0.416256844997406, - 0.42983531951904297, - 0.45014411211013794, - 0.4766293168067932, - 0.5085684657096863, - 0.5450902581214905, - 0.5851985812187195, - 0.6277993321418762, - 0.6717305183410645, - 0.7157937288284302, - 0.7587870955467224, - 0.7995378971099854, - 0.836934506893158, - 0.8699568510055542, - 0.8977041244506836, - 0.4554406404495239, - 0.43607383966445923, - 0.4232672452926636, - 0.41737017035484314, - 0.41854339838027954, - 0.42675504088401794, - 0.44178101420402527, - 0.4632115066051483, - 0.49046191573143005, - 0.522788941860199, - 0.5593107342720032, - 0.5990312099456787, - 0.640866756439209, - 0.6836762428283691, - 0.7262919545173645, - 0.7675514221191406, - 0.8063293099403381, - 0.8415676951408386, - 0.8723055124282837, - 0.8977041244506836, - 0.4554406404495239, - 0.4408479928970337, - 0.43268534541130066, - 0.43117526173591614, - 0.4363589882850647, - 0.4480951130390167, - 0.4660634994506836, - 0.4897739887237549, - 0.51857990026474, - 0.5516954064369202, - 0.5882171988487244, - 0.6271491646766663, - 0.6674292087554932, - 0.7079586982727051, - 0.7476320266723633, - 0.7853670120239258, - 0.8201344013214111, - 0.8509857654571533, - 0.8770796060562134, - 0.8977041244506836, - 0.4554406404495239, - 0.4475303292274475, - 0.44586771726608276, - 0.450498104095459, - 0.4612951874732971, - 0.47796452045440674, - 0.5000513195991516, - 0.5269531607627869, - 0.5579362511634827, - 0.592155396938324, - 0.6286771893501282, - 0.6665055155754089, - 0.7046083807945251, - 0.7419465184211731, - 0.7775014042854309, - 0.8103032112121582, - 0.8394572734832764, - 0.8641681671142578, - 0.8837619423866272, - 0.8977041244506836, - 0.4554406404495239, - 0.4553966522216797, - 0.4613857865333557, - 0.47324466705322266, - 0.4906497597694397, - 0.5131263732910156, - 0.540061354637146, - 0.5707199573516846, - 0.6042659878730774, - 0.6397843360900879, - 0.6763061881065369, - 0.7128352522850037, - 0.7483751773834229, - 0.7819565534591675, - 0.8126632571220398, - 0.8396577835083008, - 0.86220383644104, - 0.8796862363815308, - 0.8916282653808594, - 0.8977041244506836 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.16733509302139282, - -0.1646798849105835, - -0.15708552300930023, - -0.1447591334581375, - -0.1280369758605957, - -0.10737516731023788, - -0.08333732187747955, - -0.05657913535833359, - -0.02783048152923584, - 0.0021244361996650696, - 0.032468535006046295, - 0.06237410008907318, - 0.09102539718151093, - 0.11764087527990341, - 0.1414945423603058, - 0.1619357317686081, - 0.17840687930583954, - 0.19045868515968323, - 0.1977623701095581, - 0.200118750333786, - -0.16733509302139282, - -0.17822527885437012, - -0.18380680680274963, - -0.18392744660377502, - -0.17858389019966125, - -0.16792190074920654, - -0.1522323191165924, - -0.13194313645362854, - -0.10760772973299026, - -0.0798899456858635, - -0.049545854330062866, - -0.017403151839971542, - 0.015661397948861122, - 0.04874587059020996, - 0.08094779402017593, - 0.11138880997896194, - 0.13923856616020203, - 0.16373738646507263, - 0.18421699106693268, - 0.200118750333786, - -0.16733509302139282, - -0.1903190016746521, - -0.2076643854379654, - -0.21889808773994446, - -0.2237136960029602, - -0.22197982668876648, - -0.21374383568763733, - -0.1992303431034088, - -0.17883524298667908, - -0.15311484038829803, - -0.12277074158191681, - -0.08863066136837006, - -0.0516258105635643, - -0.012765645980834961, - 0.026889856904745102, - 0.06625901162624359, - 0.10426793247461319, - 0.13987982273101807, - 0.1721232682466507, - 0.200118750333786, - -0.16733507812023163, - -0.19965051114559174, - -0.22607287764549255, - -0.24588142335414886, - -0.25853586196899414, - -0.2636909484863281, - -0.26120615005493164, - -0.25114917755126953, - -0.2337944060564041, - -0.20961518585681915, - -0.17927108705043793, - -0.1435898095369339, - -0.10354465991258621, - -0.06022796034812927, - -0.01482127234339714, - 0.031436845660209656, - 0.07728458940982819, - 0.12147132307291031, - 0.16279174387454987, - 0.2001187652349472, - -0.16733507812023163, - -0.20520861446857452, - -0.23703746497631073, - -0.2619534134864807, - -0.27927690744400024, - -0.2885351777076721, - -0.2894759178161621, - -0.282073438167572, - -0.26652956008911133, - -0.24326826632022858, - -0.21292416751384735, - -0.17632494866847992, - -0.13446888327598572, - -0.08849774301052094, - -0.03966551646590233, - 0.010695813223719597, - 0.06121259182691574, - 0.11050672829151154, - 0.15723364055156708, - 0.2001187652349472, - -0.16733507812023163, - -0.20639099180698395, - -0.2393699735403061, - -0.2653723955154419, - -0.28368908166885376, - -0.293820321559906, - -0.2954897880554199, - -0.2886519432067871, - -0.27349328994750977, - -0.2504273056983948, - -0.22008322179317474, - -0.18328867852687836, - -0.1410473883152008, - -0.09451159834861755, - -0.04495064541697502, - 0.006283595226705074, - 0.057793594896793365, - 0.10817424207925797, - 0.15605127811431885, - 0.2001187652349472, - -0.16733507812023163, - -0.2030695229768753, - -0.2328176200389862, - -0.25576794147491455, - -0.27129441499710083, - -0.2789735794067383, - -0.2785959243774414, - -0.2701718807220459, - -0.2539309859275818, - -0.23031646013259888, - -0.19997236132621765, - -0.16372641921043396, - -0.1225673258304596, - -0.07761776447296143, - -0.03010391816496849, - 0.01867826096713543, - 0.06739809364080429, - 0.11472658812999725, - 0.1593727469444275, - 0.2001187652349472, - -0.16733507812023163, - -0.1956041157245636, - -0.2180904597043991, - -0.23418070375919342, - -0.2434360235929489, - -0.24560387432575226, - -0.24062518775463104, - -0.228635773062706, - -0.2099626213312149, - -0.18511511385440826, - -0.15477101504802704, - -0.11975803971290588, - -0.08103124052286148, - -0.039646998047828674, - 0.0032658008858561516, - 0.04653669148683548, - 0.08898530900478363, - 0.12945374846458435, - 0.1668381541967392, - 0.2001187652349472, - -0.16733509302139282, - -0.1848037838935852, - -0.19678440690040588, - -0.2029501050710678, - -0.2031327486038208, - -0.19732731580734253, - -0.1856921911239624, - -0.16854476928710938, - -0.14635272324085236, - -0.11972145736217499, - -0.08937735855579376, - -0.056148141622543335, - -0.020940233021974564, - 0.015285998582839966, - 0.05154236778616905, - 0.086839959025383, - 0.12021591514348984, - 0.15075980126857758, - 0.1776384711265564, - 0.200118750333786, - -0.16733509302139282, - -0.1718389242887497, - -0.17120830714702606, - -0.16546042263507843, - -0.15475210547447205, - -0.13937541842460632, - -0.11974981427192688, - -0.09641063213348389, - -0.0699944794178009, - -0.04122193157672882, - -0.010877832770347595, - 0.020210102200508118, - 0.051193904131650925, - 0.08122839033603668, - 0.10949428379535675, - 0.13522058725357056, - 0.15770559012889862, - 0.1763359010219574, - 0.1906033456325531, - 0.200118750333786, - -0.16733509302139282, - -0.1581144481897354, - -0.14413371682167053, - -0.12577424943447113, - -0.10353688895702362, - -0.07802817225456238, - -0.04994393140077591, - -0.02005021646618843, - 0.010837540030479431, - 0.041876792907714844, - 0.07222089171409607, - 0.10104212164878845, - 0.12755431234836578, - 0.15103428065776825, - 0.1708415448665619, - 0.18643581867218018, - 0.19739176332950592, - 0.20341049134731293, - 0.20432782173156738, - 0.200118750333786, - -0.16733509302139282, - -0.1451176255941391, - -0.11849460005760193, - -0.08819221705198288, - -0.05503704398870468, - -0.01993350312113762, - 0.01616091839969158, - 0.05226162448525429, - 0.08738390356302261, - 0.12056969851255417, - 0.1509137898683548, - 0.17758847773075104, - 0.1998661607503891, - 0.2171391248703003, - 0.22893621027469635, - 0.23493565618991852, - 0.23497380316257477, - 0.22904959321022034, - 0.2173246294260025, - 0.200118750333786, - -0.16733510792255402, - -0.13425688445568085, - -0.09706936031579971, - -0.05678689479827881, - -0.0145083237439394, - 0.028613129630684853, - 0.0714012160897255, - 0.112688809633255, - 0.15134964883327484, - 0.1863291710615158, - 0.21667326986789703, - 0.24155423045158386, - 0.2602933645248413, - 0.27237945795059204, - 0.27748286724090576, - 0.27546441555023193, - 0.26637911796569824, - 0.25047484040260315, - 0.22818538546562195, - 0.20011873543262482, - -0.16733510792255402, - -0.12670911848545074, - -0.0821797251701355, - -0.034961529076099396, - 0.013657419942319393, - 0.06235096976161003, - 0.10979088395833969, - 0.15468311309814453, - 0.19580312073230743, - 0.23202922940254211, - 0.26237332820892334, - 0.28600770235061646, - 0.30228763818740845, - 0.31076908111572266, - 0.3112207055091858, - 0.30363017320632935, - 0.28820449113845825, - 0.26536446809768677, - 0.23573313653469086, - 0.20011873543262482, - -0.16733510792255402, - -0.12329229712486267, - -0.07543926686048508, - -0.025081299245357513, - 0.026407942175865173, - 0.07762394845485687, - 0.12716969847679138, - 0.1736937314271927, - 0.21592697501182556, - 0.25271743535995483, - 0.28306150436401367, - 0.3061315417289734, - 0.3212982416152954, - 0.3281479477882385, - 0.32649368047714233, - 0.31638067960739136, - 0.29808473587036133, - 0.2721049189567566, - 0.23914997279644012, - 0.20011873543262482, - -0.16733510792255402, - -0.12437662482261658, - -0.0775783434510231, - -0.028216801583766937, - 0.022361546754837036, - 0.07277704775333405, - 0.12165451794862747, - 0.1676606982946396, - 0.20954066514968872, - 0.24615199863910675, - 0.27649611234664917, - 0.29974526166915894, - 0.3152652382850647, - 0.32263273000717163, - 0.3216468095779419, - 0.31233423948287964, - 0.2949492335319519, - 0.26996588706970215, - 0.23806564509868622, - 0.20011873543262482, - -0.16733510792255402, - -0.12984465062618256, - -0.08836523443460464, - -0.04402831196784973, - 0.001956700347363949, - 0.04833545908331871, - 0.09384290128946304, - 0.13723765313625336, - 0.17733606696128845, - 0.21304433047771454, - 0.24338842928409576, - 0.2675406336784363, - 0.28484219312667847, - 0.2948211431503296, - 0.29720520973205566, - 0.2919294238090515, - 0.2791377305984497, - 0.2591789662837982, - 0.23259761929512024, - 0.20011873543262482, - -0.16733509302139282, - -0.13910380005836487, - -0.10663098096847534, - -0.07080240547657013, - -0.03259541094303131, - 0.0069478172808885574, - 0.046748675405979156, - 0.08572147786617279, - 0.12280313670635223, - 0.1569821536540985, - 0.18732625246047974, - 0.21300771832466125, - 0.2333260178565979, - 0.24772688746452332, - 0.2558175325393677, - 0.2573773264884949, - 0.2523636221885681, - 0.24091322720050812, - 0.22333846986293793, - 0.20011873543262482, - -0.16733509302139282, - -0.15115071833133698, - -0.13039620220661163, - -0.10563769191503525, - -0.07755053043365479, - -0.046900875866413116, - -0.014524752274155617, - 0.018694687634706497, - 0.051851313561201096, - 0.08404069393873215, - 0.11438478529453278, - 0.14205589890480042, - 0.1662992238998413, - 0.1864534616470337, - 0.20196884870529175, - 0.212422177195549, - 0.2175283282995224, - 0.21714800596237183, - 0.21129155158996582, - 0.200118750333786, - -0.16733509302139282, - -0.1646798998117447, - -0.15708553791046143, - -0.1447591483592987, - -0.1280370056629181, - -0.10737520456314087, - -0.08333735913038254, - -0.05657918006181717, - -0.02783052623271942, - 0.0021243924275040627, - 0.032468490302562714, - 0.0623740553855896, - 0.09102535247802734, - 0.11764083802700043, - 0.1414945125579834, - 0.1619357019662857, - 0.17840686440467834, - 0.19045867025852203, - 0.1977623701095581, - 0.200118750333786 - ], - "y": [ - -1.5480364561080933, - -1.5420600175857544, - -1.5329880714416504, - -1.5210680961608887, - -1.5066252946853638, - -1.4900535345077515, - -1.4718048572540283, - -1.4523770809173584, - -1.4323002099990845, - -1.4121216535568237, - -1.3923921585083008, - -1.3736497163772583, - -1.35640549659729, - -1.341130018234253, - -1.328239917755127, - -1.3180867433547974, - -1.3109475374221802, - -1.3070169687271118, - -1.306402325630188, - -1.3091202974319458, - -1.5480365753173828, - -1.5373210906982422, - -1.5236393213272095, - -1.5073646306991577, - -1.4889408349990845, - -1.4688705205917358, - -1.447701096534729, - -1.4260101318359375, - -1.4043891429901123, - -1.3834280967712402, - -1.3636984825134277, - -1.3457386493682861, - -1.3300385475158691, - -1.3170263767242432, - -1.3070569038391113, - -1.3004024028778076, - -1.2972440719604492, - -1.297668218612671, - -1.3016632795333862, - -1.3091202974319458, - -1.5480365753173828, - -1.5335667133331299, - -1.516232967376709, - -1.4965083599090576, - -1.474930763244629, - -1.4520888328552246, - -1.428605556488037, - -1.4051214456558228, - -1.382277250289917, - -1.3606960773468018, - -1.3409665822982788, - -1.3236268758773804, - -1.3091498613357544, - -1.2979307174682617, - -1.2902752161026, - -1.2863922119140625, - -1.2863878011703491, - -1.2902618646621704, - -1.297908902168274, - -1.3091202974319458, - -1.5480365753173828, - -1.5312037467956543, - -1.5115716457366943, - -1.489675760269165, - -1.4661132097244263, - -1.4415267705917358, - -1.416587233543396, - -1.3919748067855835, - -1.3683607578277588, - -1.3463892936706543, - -1.3266596794128418, - -1.3097102642059326, - -1.2960032224655151, - -1.2859123945236206, - -1.2797132730484009, - -1.2775746583938599, - -1.279555082321167, - -1.2856005430221558, - -1.295546054840088, - -1.3091202974319458, - -1.5480365753173828, - -1.53048837184906, - -1.5101604461669922, - -1.4876071214675903, - -1.4634437561035156, - -1.4383292198181152, - -1.412948727607727, - -1.387994647026062, - -1.3641475439071655, - -1.3420579433441162, - -1.3223283290863037, - -1.3054970502853394, - -1.2920230627059937, - -1.2822738885879517, - -1.2765156030654907, - -1.2749052047729492, - -1.2774865627288818, - -1.2841893434524536, - -1.2948306798934937, - -1.3091202974319458, - -1.5480365753173828, - -1.5314980745315552, - -1.5121523141860962, - -1.490526795387268, - -1.4672114849090576, - -1.4428424835205078, - -1.4180842638015747, - -1.3936123847961426, - -1.3700941801071167, - -1.348171353340149, - -1.328441858291626, - -1.31144380569458, - -1.2976408004760742, - -1.2874094247817993, - -1.2810288667678833, - -1.2786730527877808, - -1.2804062366485596, - -1.2861812114715576, - -1.2958402633666992, - -1.3091202974319458, - -1.5480365753173828, - -1.534123420715332, - -1.5173313617706299, - -1.498118281364441, - -1.4770084619522095, - -1.4545774459838867, - -1.431437373161316, - -1.4082192182540894, - -1.3855564594268799, - -1.3640671968460083, - -1.3443377017974854, - -1.3269059658050537, - -1.312247633934021, - -1.3007625341415405, - -1.2927638292312622, - -1.288469910621643, - -1.2879977226257324, - -1.2913602590560913, - -1.298465609550476, - -1.3091202974319458, - -1.5480365753173828, - -1.538079857826233, - -1.5251363515853882, - -1.5095590353012085, - -1.4917726516723633, - -1.4722626209259033, - -1.4515608549118042, - -1.430232286453247, - -1.4088586568832397, - -1.388022780418396, - -1.368293285369873, - -1.3502081632614136, - -1.3342607021331787, - -1.3208861351013184, - -1.3104490041732788, - -1.3032342195510864, - -1.2994384765625, - -1.2991652488708496, - -1.3024221658706665, - -1.3091202974319458, - -1.5480364561080933, - -1.5429388284683228, - -1.5347216129302979, - -1.5236090421676636, - -1.509904384613037, - -1.4939813613891602, - -1.4762742519378662, - -1.4572662115097046, - -1.437475562095642, - -1.4174422025680542, - -1.3977127075195312, - -1.378825068473816, - -1.3612946271896362, - -1.3455994129180908, - -1.3321677446365356, - -1.3213659524917603, - -1.313488483428955, - -1.3087503910064697, - -1.3072810173034668, - -1.3091202974319458, - -1.5480364561080933, - -1.5481735467910767, - -1.5450482368469238, - -1.5387459993362427, - -1.5294387340545654, - -1.5173802375793457, - -1.502899408340454, - -1.486391305923462, - -1.4683061838150024, - -1.4491374492645264, - -1.4294079542160034, - -1.4096556901931763, - -1.3904197216033936, - -1.3722245693206787, - -1.3555666208267212, - -1.340900182723999, - -1.3286254405975342, - -1.3190771341323853, - -1.3125157356262207, - -1.3091202974319458, - -1.5480364561080933, - -1.553216814994812, - -1.554997444152832, - -1.5533294677734375, - -1.5482587814331055, - -1.5399234294891357, - -1.5285509824752808, - -1.514451503753662, - -1.4980095624923706, - -1.4796737432479858, - -1.459944248199463, - -1.4393590688705444, - -1.4184799194335938, - -1.3978761434555054, - -1.3781099319458008, - -1.359720230102539, - -1.343208909034729, - -1.329026222229004, - -1.3175591230392456, - -1.3091201782226562, - -1.5480364561080933, - -1.5575222969055176, - -1.5634907484054565, - -1.565779209136963, - -1.564325213432312, - -1.5591683387756348, - -1.550449252128601, - -1.5384060144424438, - -1.5233668088912964, - -1.505742073059082, - -1.486012578010559, - -1.4647163152694702, - -1.4424344301223755, - -1.4197745323181152, - -1.3973547220230103, - -1.3757866621017456, - -1.3556586503982544, - -1.337519645690918, - -1.3218644857406616, - -1.3091201782226562, - -1.5480364561080933, - -1.5606231689453125, - -1.5696080923080444, - -1.5747458934783936, - -1.5758968591690063, - -1.5730291604995728, - -1.5662213563919067, - -1.5556589365005493, - -1.5416301488876343, - -1.52451753616333, - -1.5047880411148071, - -1.482979655265808, - -1.459687352180481, - -1.4355465173721313, - -1.4112156629562378, - -1.38735830783844, - -1.364625334739685, - -1.3436368703842163, - -1.324965476989746, - -1.3091201782226562, - -1.5480364561080933, - -1.5621836185455322, - -1.5726863145828247, - -1.5792580842971802, - -1.5817197561264038, - -1.580004096031189, - -1.574157953262329, - -1.5643408298492432, - -1.5508203506469727, - -1.5339654684066772, - -1.5142359733581543, - -1.4921698570251465, - -1.4683692455291748, - -1.4434831142425537, - -1.418190598487854, - -1.3931812047958374, - -1.3691375255584717, - -1.3467152118682861, - -1.3265258073806763, - -1.3091201782226562, - -1.5480364561080933, - -1.5620343685150146, - -1.5723919868469238, - -1.578826665878296, - -1.581162929534912, - -1.579337239265442, - -1.5733990669250488, - -1.5635106563568115, - -1.5499416589736938, - -1.5330621004104614, - -1.5133326053619385, - -1.4912911653518677, - -1.4675390720367432, - -1.442724347114563, - -1.4175236225128174, - -1.3926244974136353, - -1.3687061071395874, - -1.3464207649230957, - -1.3263766765594482, - -1.3091201782226562, - -1.5480364561080933, - -1.5601917505264282, - -1.5687569379806519, - -1.5734984874725342, - -1.5742868185043335, - -1.5711007118225098, - -1.564026951789856, - -1.5532585382461548, - -1.5390892028808594, - -1.5219053030014038, - -1.5021758079528809, - -1.4804387092590332, - -1.4572869539260864, - -1.4333522319793701, - -1.4092872142791748, - -1.3857483863830566, - -1.3633778095245361, - -1.3427858352661133, - -1.3245339393615723, - -1.3091201782226562, - -1.5480364561080933, - -1.556855320930481, - -1.5621751546859741, - -1.5638507604599, - -1.5618364810943604, - -1.5561872720718384, - -1.5470572710037231, - -1.5346953868865967, - -1.5194389820098877, - -1.5017040967941284, - -1.4819746017456055, - -1.4607884883880615, - -1.4387238025665283, - -1.4163824319839478, - -1.3943736553192139, - -1.373297929763794, - -1.3537302017211914, - -1.3362040519714355, - -1.3211976289749146, - -1.3091201782226562, - -1.5480364561080933, - -1.55238676071167, - -1.5533597469329834, - -1.550929069519043, - -1.5451610088348389, - -1.5362129211425781, - -1.5243287086486816, - -1.5098328590393066, - -1.4931204319000244, - -1.4746475219726562, - -1.4549180269241333, - -1.4344699382781982, - -1.4138612747192383, - -1.3936539888381958, - -1.3743993043899536, - -1.356622576713562, - -1.3408085107803345, - -1.3273886442184448, - -1.316728949546814, - -1.3091202974319458, - -1.5480364561080933, - -1.5472701787948608, - -1.5432661771774292, - -1.5361337661743164, - -1.5260676145553589, - -1.5133421421051025, - -1.4983046054840088, - -1.4813650846481323, - -1.462985634803772, - -1.4436676502227783, - -1.4239381551742554, - -1.4043351411819458, - -1.385393500328064, - -1.3676297664642334, - -1.351528525352478, - -1.3375290632247925, - -1.326013207435608, - -1.3172950744628906, - -1.3116123676300049, - -1.3091202974319458, - -1.5480364561080933, - -1.5420600175857544, - -1.5329880714416504, - -1.5210680961608887, - -1.5066252946853638, - -1.490053415298462, - -1.4718048572540283, - -1.4523770809173584, - -1.432300090789795, - -1.4121216535568237, - -1.3923921585083008, - -1.3736497163772583, - -1.35640549659729, - -1.341130018234253, - -1.328239917755127, - -1.3180867433547974, - -1.3109475374221802, - -1.3070169687271118, - -1.306402325630188, - -1.3091202974319458 - ], - "z": [ - 0.4998183846473694, - 0.500572681427002, - 0.5075741410255432, - 0.520631730556488, - 0.5393892526626587, - 0.563335120677948, - 0.5918161273002625, - 0.6240553259849548, - 0.6591734290122986, - 0.6962124109268188, - 0.7341619729995728, - 0.7719869017601013, - 0.8086555600166321, - 0.8431676626205444, - 0.8745816946029663, - 0.902040958404541, - 0.9247962832450867, - 0.9422270655632019, - 0.9538577795028687, - 0.9593711495399475, - 0.4998183846473694, - 0.5089396834373474, - 0.5240799188613892, - 0.5448260307312012, - 0.5706121921539307, - 0.6007348895072937, - 0.6343726515769958, - 0.6706077456474304, - 0.7084518671035767, - 0.7468727827072144, - 0.7848223447799683, - 0.8212653994560242, - 0.8552079796791077, - 0.8857241868972778, - 0.9119815230369568, - 0.9332638382911682, - 0.9489905834197998, - 0.9587328433990479, - 0.9622247219085693, - 0.9593711495399475, - 0.4998183846473694, - 0.5166578888893127, - 0.5393056869506836, - 0.5671441555023193, - 0.5994138121604919, - 0.6352344751358032, - 0.6736290454864502, - 0.7135501503944397, - 0.7539089918136597, - 0.7936046123504639, - 0.8315541744232178, - 0.8667225241661072, - 0.8981504440307617, - 0.9249805212020874, - 0.9464810490608215, - 0.9620654582977295, - 0.971308708190918, - 0.9739586114883423, - 0.9699429273605347, - 0.9593711495399475, - 0.4998183846473694, - 0.5228908061981201, - 0.5516015887260437, - 0.5851675271987915, - 0.6226730942726135, - 0.663095235824585, - 0.7053312659263611, - 0.7482291460037231, - 0.7906187176704407, - 0.8313437104225159, - 0.8692933320999146, - 0.9034322500228882, - 0.9328293800354004, - 0.9566828012466431, - 0.9743418097496033, - 0.9853248000144958, - 0.9893321394920349, - 0.9862545132637024, - 0.976175844669342, - 0.9593711495399475, - 0.4998183846473694, - 0.5269631147384644, - 0.5596351027488708, - 0.5969431400299072, - 0.6378695964813232, - 0.681298017501831, - 0.7260438799858093, - 0.7708866000175476, - 0.8146030306816101, - 0.8560006022453308, - 0.8939501643180847, - 0.9274165630340576, - 0.9554868340492249, - 0.9773954153060913, - 0.9925446510314941, - 1.0005213022232056, - 1.0011076927185059, - 0.9942880272865295, - 0.9802481532096863, - 0.9593711495399475, - 0.4998183846473694, - 0.5284334421157837, - 0.5625356435775757, - 0.6011948585510254, - 0.643356442451477, - 0.6878703236579895, - 0.7335224151611328, - 0.77906733751297, - 0.8232627511024475, - 0.8649032115936279, - 0.9028527736663818, - 0.936076283454895, - 0.9636675715446472, - 0.9848739504814148, - 0.9991169571876526, - 1.0060081481933594, - 1.005359411239624, - 0.9971885681152344, - 0.9817185401916504, - 0.9593710899353027, - 0.4998183846473694, - 0.5271425247192383, - 0.5599889755249023, - 0.5974619388580322, - 0.6385390758514404, - 0.6820999383926392, - 0.7269563674926758, - 0.7718847990036011, - 0.8156596422195435, - 0.8570868372917175, - 0.8950363993644714, - 0.9284731149673462, - 0.9564850330352783, - 0.9783079028129578, - 0.9933465719223022, - 1.0011906623840332, - 1.0016264915466309, - 0.994641900062561, - 0.9804275631904602, - 0.9593711495399475, - 0.4998183846473694, - 0.5232301950454712, - 0.5522710680961609, - 0.5861488580703735, - 0.6239395141601562, - 0.6646121740341187, - 0.7070573568344116, - 0.750117301940918, - 0.7926174402236938, - 0.8333985209465027, - 0.8713480830192566, - 0.9054309725761414, - 0.9347175359725952, - 0.9584088921546936, - 0.975858747959137, - 0.9865912199020386, - 0.9903134107589722, - 0.9869239926338196, - 0.9765152335166931, - 0.9593711495399475, - 0.4998183846473694, - 0.5171204209327698, - 0.54021817445755, - 0.5684816837310791, - 0.6011399030685425, - 0.637302041053772, - 0.6759816408157349, - 0.7161237001419067, - 0.7566332817077637, - 0.7964052557945251, - 0.834354817867279, - 0.8694467544555664, - 0.900723934173584, - 0.9273331761360168, - 0.9485486149787903, - 0.9637916088104248, - 0.9726462364196777, - 0.9748711585998535, - 0.9704054594039917, - 0.9593711495399475, - 0.4998183846473694, - 0.5094753503799438, - 0.5251365303993225, - 0.5463747978210449, - 0.5726108551025391, - 0.6031290292739868, - 0.6370968818664551, - 0.6735877990722656, - 0.7116064429283142, - 0.7501157522201538, - 0.7880653142929077, - 0.8244199752807617, - 0.8581880331039429, - 0.8884484171867371, - 0.9143756628036499, - 0.9352625608444214, - 0.9505394101142883, - 0.9597894549369812, - 0.962760329246521, - 0.9593711495399475, - 0.4998183846473694, - 0.501123309135437, - 0.5086603760719299, - 0.522223949432373, - 0.5414440631866455, - 0.5657963752746582, - 0.5946167707443237, - 0.6271189451217651, - 0.6624164581298828, - 0.6995463371276855, - 0.7374958992004395, - 0.7752299308776855, - 0.8117191791534424, - 0.8459683060646057, - 0.8770430088043213, - 0.9040957093238831, - 0.9263885021209717, - 0.9433133006095886, - 0.9544084072113037, - 0.9593711495399475, - 0.4998183846473694, - 0.4929695427417755, - 0.4925752282142639, - 0.49864616990089417, - 0.5110167860984802, - 0.529349684715271, - 0.5531446933746338, - 0.5817527770996094, - 0.6143936514854431, - 0.6501769423484802, - 0.6881265044212341, - 0.7272071838378906, - 0.7663530111312866, - 0.804496169090271, - 0.8405962586402893, - 0.8736684322357178, - 0.9028107523918152, - 0.9272281527519226, - 0.9462546110153198, - 0.9593711495399475, - 0.4998183846473694, - 0.4858975410461426, - 0.4786241054534912, - 0.47819650173187256, - 0.4846263825893402, - 0.4977383613586426, - 0.5171747803688049, - 0.5424054861068726, - 0.5727421641349792, - 0.6073574423789978, - 0.6453070044517517, - 0.6855556964874268, - 0.7270057201385498, - 0.7685263156890869, - 0.8089849352836609, - 0.8472780585289001, - 0.8823610544204712, - 0.9132770299911499, - 0.9391825795173645, - 0.9593711495399475, - 0.4998183846473694, - 0.4806736707687378, - 0.4683188498020172, - 0.4630909860134125, - 0.46513262391090393, - 0.47438812255859375, - 0.490604966878891, - 0.5133408308029175, - 0.5419755578041077, - 0.5757280588150024, - 0.6136776208877563, - 0.6547890901565552, - 0.6979410648345947, - 0.7419564723968506, - 0.7856346964836121, - 0.8277842998504639, - 0.8672555685043335, - 0.9029718041419983, - 0.9339587092399597, - 0.9593711495399475, - 0.4998184144496918, - 0.47786402702331543, - 0.46277621388435364, - 0.45496654510498047, - 0.4546479880809784, - 0.461829274892807, - 0.476314514875412, - 0.4977085590362549, - 0.5254278182983398, - 0.5587162971496582, - 0.5966658592224121, - 0.6382413506507874, - 0.6823087930679321, - 0.7276660203933716, - 0.7730758190155029, - 0.8172996640205383, - 0.8591310977935791, - 0.8974291682243347, - 0.9311490654945374, - 0.9593711495399475, - 0.4998184144496918, - 0.47777310013771057, - 0.4625968039035797, - 0.45470356941223145, - 0.4543085992336273, - 0.46142277121543884, - 0.47585195302963257, - 0.4972025454044342, - 0.5248922109603882, - 0.5581656694412231, - 0.596115231513977, - 0.6377057433128357, - 0.6818028092384338, - 0.7272034287452698, - 0.7726693153381348, - 0.8169602751731873, - 0.8588681221008301, - 0.8972497582435608, - 0.9310581684112549, - 0.9593711495399475, - 0.4998183846473694, - 0.48041069507598877, - 0.4678000807762146, - 0.46233057975769043, - 0.4641512930393219, - 0.47321265935897827, - 0.4892674386501312, - 0.511877715587616, - 0.5404267311096191, - 0.5741357803344727, - 0.6120853424072266, - 0.6532402634620667, - 0.6964779496192932, - 0.7406189441680908, - 0.7844592332839966, - 0.8268029689788818, - 0.8664951324462891, - 0.9024530053138733, - 0.9336957335472107, - 0.9593711495399475, - 0.4998183846473694, - 0.4854910373687744, - 0.4778221845626831, - 0.47702106833457947, - 0.4831094741821289, - 0.49592137336730957, - 0.515107274055481, - 0.5401437878608704, - 0.5703480243682861, - 0.6048961877822876, - 0.6428457498550415, - 0.6831615567207336, - 0.7247440218925476, - 0.7664587497711182, - 0.8071679472923279, - 0.8457611203193665, - 0.8811856508255005, - 0.9124751091003418, - 0.9387760758399963, - 0.9593711495399475, - 0.4998183846473694, - 0.4924635887145996, - 0.49157705903053284, - 0.49718308448791504, - 0.5091286897659302, - 0.5270879864692688, - 0.5505712032318115, - 0.5789376497268677, - 0.6114136576652527, - 0.6471133232116699, - 0.6850629448890686, - 0.7242271900177002, - 0.7635378837585449, - 0.8019226789474487, - 0.8383345603942871, - 0.8717803359031677, - 0.9013476371765137, - 0.9262300133705139, - 0.9457486271858215, - 0.9593711495399475, - 0.4998183846473694, - 0.500572681427002, - 0.5075741410255432, - 0.520631730556488, - 0.5393892526626587, - 0.5633351802825928, - 0.5918161273002625, - 0.6240553855895996, - 0.6591734290122986, - 0.6962124109268188, - 0.7341619729995728, - 0.7719869613647461, - 0.8086556196212769, - 0.8431676626205444, - 0.8745817542076111, - 0.902040958404541, - 0.9247963428497314, - 0.9422270655632019, - 0.9538577795028687, - 0.9593711495399475 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.20718607306480408, - -0.20444107055664062, - -0.1966150552034378, - -0.18392148613929749, - -0.1667066067457199, - -0.14544004201889038, - -0.12070181220769882, - -0.0931667685508728, - -0.06358597427606583, - -0.03276631236076355, - -0.0015484746545553207, - 0.02921600081026554, - 0.05868794769048691, - 0.086063452064991, - 0.11059574037790298, - 0.13161568343639374, - 0.1485498994588852, - 0.16093645989894867, - 0.16843749582767487, - 0.17084839940071106, - -0.20718607306480408, - -0.21842017769813538, - -0.22419197857379913, - -0.22434398531913757, - -0.2188720703125, - -0.20792551338672638, - -0.19180287420749664, - -0.1709439605474472, - -0.14591774344444275, - -0.11740683019161224, - -0.08618899434804916, - -0.053115762770175934, - -0.019089240580797195, - 0.014962373301386833, - 0.04811026155948639, - 0.07945022732019424, - 0.1081274077296257, - 0.13335955142974854, - 0.15445837378501892, - 0.17084839940071106, - -0.20718605816364288, - -0.2309025526046753, - -0.24881622195243835, - -0.2604384124279022, - -0.265452116727829, - -0.2637206017971039, - -0.2552911043167114, - -0.2403935194015503, - -0.21943418681621552, - -0.19298486411571503, - -0.16176702082157135, - -0.1266322135925293, - -0.08853878825902939, - -0.048525840044021606, - -0.007684876210987568, - 0.032870158553123474, - 0.07203297317028046, - 0.10873531550168991, - 0.1419760137796402, - 0.17084839940071106, - -0.20718605816364288, - -0.24053549766540527, - -0.2678193747997284, - -0.28829342126846313, - -0.3013991713523865, - -0.3067791163921356, - -0.30428656935691833, - -0.2939894497394562, - -0.27616867423057556, - -0.2513103485107422, - -0.2200925052165985, - -0.18336668610572815, - -0.14213474094867706, - -0.09752130508422852, - -0.05074339359998703, - -0.003076855093240738, - 0.04417797178030014, - 0.08973215520381927, - 0.13234306871891022, - 0.17084839940071106, - -0.20718605816364288, - -0.2462751716375351, - -0.2791421413421631, - -0.3048904240131378, - -0.32281771302223206, - -0.3324349820613861, - -0.3334798514842987, - -0.325923889875412, - -0.3099731504917145, - -0.2860627770423889, - -0.25484493374824524, - -0.21717117726802826, - -0.17406916618347168, - -0.1267145872116089, - -0.07639921456575394, - -0.024495411664247513, - 0.02758095972239971, - 0.07840938866138458, - 0.1266033947467804, - 0.17084841430187225, - -0.20718605816364288, - -0.24749955534934998, - -0.28155753016471863, - -0.30843091011047363, - -0.327386736869812, - -0.3379078805446625, - -0.3397074043750763, - -0.33273619413375854, - -0.31718435883522034, - -0.2934762239456177, - -0.262258380651474, - -0.22438238561153412, - -0.18088147044181824, - -0.13294215500354767, - -0.0818721354007721, - -0.029064465314149857, - 0.0240404661744833, - 0.07599399983882904, - 0.12537899613380432, - 0.17084841430187225, - -0.20718605816364288, - -0.24407599866390228, - -0.2748037874698639, - -0.2985312342643738, - -0.31461113691329956, - -0.32260486483573914, - -0.32229435443878174, - -0.31368815898895264, - -0.29702088236808777, - -0.272747278213501, - -0.2415294498205185, - -0.20421890914440155, - -0.16183343529701233, - -0.11552910506725311, - -0.06656912714242935, - -0.01628885045647621, - 0.033940158784389496, - 0.08274772763252258, - 0.12880255281925201, - 0.17084841430187225, - -0.20718605816364288, - -0.23637548089027405, - -0.2596127986907959, - -0.27626416087150574, - -0.2858753502368927, - -0.28818419575691223, - -0.28312772512435913, - -0.27084389328956604, - -0.25166773796081543, - -0.22612233459949493, - -0.19490449130535126, - -0.1588657647371292, - -0.11898917704820633, - -0.0763624757528305, - -0.03214845433831215, - 0.012446943670511246, - 0.056207239627838135, - 0.09793871641159058, - 0.13650307059288025, - 0.17084839940071106, - -0.20718605816364288, - -0.22523248195648193, - -0.23763075470924377, - -0.24404264986515045, - -0.24429333209991455, - -0.23837590217590332, - -0.2264518141746521, - -0.208846315741539, - -0.18603961169719696, - -0.15865382552146912, - -0.12743598222732544, - -0.09323763102293015, - -0.0569915845990181, - -0.019686542451381683, - 0.017659852281212807, - 0.05402898043394089, - 0.08842873573303223, - 0.11992078274488449, - 0.14764608442783356, - 0.17084839940071106, - -0.20718607306480408, - -0.2118545025587082, - -0.21123971045017242, - -0.20535844564437866, - -0.19437111914157867, - -0.1785774827003479, - -0.1584082990884781, - -0.13441376388072968, - -0.10724834352731705, - -0.07765308022499084, - -0.046435240656137466, - -0.014446373097598553, - 0.01744096167385578, - 0.04835696518421173, - 0.07745829224586487, - 0.10395117849111557, - 0.12711293995380402, - 0.14631180465221405, - 0.1610240489244461, - 0.17084839940071106, - -0.20718607306480408, - -0.19769127666950226, - -0.18329958617687225, - -0.1644035428762436, - -0.14151859283447266, - -0.1152690052986145, - -0.08637078106403351, - -0.05561217665672302, - -0.023832205682992935, - 0.008102240040898323, - 0.039320074021816254, - 0.06896977126598358, - 0.09624253958463669, - 0.12039449065923691, - 0.14076675474643707, - 0.156803697347641, - 0.1680678427219391, - 0.17425194382667542, - 0.17518728971481323, - 0.17084839940071106, - -0.20718607306480408, - -0.18427759408950806, - -0.15683810412883759, - -0.12561605870723724, - -0.09146314114332199, - -0.05531097203493118, - -0.01814563199877739, - 0.019019054248929024, - 0.055169373750686646, - 0.08931920677423477, - 0.12053705006837845, - 0.14797134697437286, - 0.170873761177063, - 0.18861962854862213, - 0.20072481036186218, - 0.20685915648937225, - 0.20685532689094543, - 0.20071342587471008, - 0.18860097229480743, - 0.17084838449954987, - -0.20718607306480408, - -0.17306703329086304, - -0.1347227692604065, - -0.093199223279953, - -0.04962904006242752, - -0.005200730636715889, - 0.03887386620044708, - 0.08139251172542572, - 0.12119536846876144, - 0.15719668567180634, - 0.18841452896595, - 0.21399733424186707, - 0.23324722051620483, - 0.2456391453742981, - 0.2508350610733032, - 0.24869325757026672, - 0.23927214741706848, - 0.22282874584197998, - 0.19981153309345245, - 0.17084838449954987, - -0.20718608796596527, - -0.16527444124221802, - -0.1193501353263855, - -0.0706658735871315, - -0.020549625158309937, - 0.02963152341544628, - 0.07850884646177292, - 0.12474904209375381, - 0.16709081828594208, - 0.2043791562318802, - 0.23559701442718506, - 0.2598927915096283, - 0.2766037583351135, - 0.28527411818504333, - 0.2856673300266266, - 0.2777726948261261, - 0.2618055045604706, - 0.23820137977600098, - 0.20760412514209747, - 0.17084838449954987, - -0.20718608796596527, - -0.16174426674842834, - -0.11238609254360199, - -0.06045790761709213, - -0.007376194000244141, - 0.045411109924316406, - 0.0964641198515892, - 0.1443902552127838, - 0.1878822147846222, - 0.22575360536575317, - 0.25697144865989685, - 0.2806841731071472, - 0.2962449789047241, - 0.3032293915748596, - 0.30144691467285156, - 0.2909461259841919, - 0.27201345562934875, - 0.2451654076576233, - 0.21113429963588715, - 0.17084838449954987, - -0.20718608796596527, - -0.16285905241966248, - -0.11458523571491241, - -0.0636814534664154, - -0.011536195874214172, - 0.04042811691761017, - 0.09079406410455704, - 0.13818781077861786, - 0.1813165545463562, - 0.2190037965774536, - 0.2502216398715973, - 0.2741185128688812, - 0.290042519569397, - 0.29755935072898865, - 0.29646390676498413, - 0.28678610920906067, - 0.2687899172306061, - 0.24296626448631287, - 0.21001951396465302, - 0.17084838449954987, - -0.20718607306480408, - -0.16849800944328308, - -0.12570932507514954, - -0.07998723536729813, - -0.03257890045642853, - 0.015222487971186638, - 0.062113068997859955, - 0.10681375861167908, - 0.14810524880886078, - 0.1848612129688263, - 0.21607905626296997, - 0.240907222032547, - 0.258668452501297, - 0.26887834072113037, - 0.27125829458236694, - 0.2657434046268463, - 0.25248414278030396, - 0.23184219002723694, - 0.2043805569410324, - 0.17084838449954987, - -0.20718607306480408, - -0.17805004119873047, - -0.14455287158489227, - -0.10760825872421265, - -0.0682239755988121, - -0.027474353089928627, - 0.013529108837246895, - 0.05366796255111694, - 0.09184728562831879, - 0.12702564895153046, - 0.15824349224567413, - 0.184649258852005, - 0.20552267134189606, - 0.22029440104961395, - 0.2285614311695099, - 0.23009832203388214, - 0.22486311197280884, - 0.2129986435174942, - 0.19482852518558502, - 0.17084838449954987, - -0.20718607306480408, - -0.1904800683259964, - -0.16907387971878052, - -0.14355137944221497, - -0.1146087571978569, - -0.08303554356098175, - -0.04969292879104614, - -0.01549039501696825, - 0.018639063462615013, - 0.051764510571956635, - 0.08298234641551971, - 0.11144103854894638, - 0.13636431097984314, - 0.15707233548164368, - 0.17300023138523102, - 0.18371354043483734, - 0.1889200061559677, - 0.18847763538360596, - 0.1823984831571579, - 0.17084839940071106, - -0.20718607306480408, - -0.20444107055664062, - -0.196615070104599, - -0.18392150104045868, - -0.1667066365480423, - -0.14544007182121277, - -0.1207018494606018, - -0.09316681325435638, - -0.06358601897954941, - -0.03276635706424713, - -0.0015485212206840515, - 0.02921595610678196, - 0.058687902987003326, - 0.08606340736150742, - 0.1105957105755806, - 0.13161565363407135, - 0.148549884557724, - 0.16093644499778748, - 0.16843748092651367, - 0.17084839940071106 - ], - "y": [ - -1.5794395208358765, - -1.5743646621704102, - -1.5660758018493652, - -1.5547993183135986, - -1.5408425331115723, - -1.5245864391326904, - -1.5064741373062134, - -1.4869998693466187, - -1.4666948318481445, - -1.446112871170044, - -1.425815463066101, - -1.4063560962677002, - -1.3882657289505005, - -1.3720378875732422, - -1.3581149578094482, - -1.3468769788742065, - -1.3386303186416626, - -1.3336000442504883, - -1.3319233655929565, - -1.3336459398269653, - -1.5794395208358765, - -1.569177269935608, - -1.5558427572250366, - -1.5397995710372925, - -1.5214853286743164, - -1.5013996362686157, - -1.4800903797149658, - -1.4581388235092163, - -1.4361436367034912, - -1.4147049188613892, - -1.3944075107574463, - -1.3758049011230469, - -1.3594046831130981, - -1.345654010772705, - -1.334928274154663, - -1.3275196552276611, - -1.3236305713653564, - -1.3233669996261597, - -1.3267360925674438, - -1.3336459398269653, - -1.5794395208358765, - -1.564920425415039, - -1.5474451780319214, - -1.527490258216858, - -1.505600094795227, - -1.4823718070983887, - -1.4584389925003052, - -1.4344544410705566, - -1.4110723733901978, - -1.3889305591583252, - -1.3686331510543823, - -1.3507335186004639, - -1.3357203006744385, - -1.3240026235580444, - -1.3159003257751465, - -1.3116345405578613, - -1.3113212585449219, - -1.3149694204330444, - -1.322479248046875, - -1.3336459398269653, - -1.5794395208358765, - -1.5620553493499756, - -1.5417929887771606, - -1.5192053318023682, - -1.494908332824707, - -1.4695649147033691, - -1.44386625289917, - -1.418513298034668, - -1.394197702407837, - -1.3715827465057373, - -1.3512853384017944, - -1.3338589668273926, - -1.3197791576385498, - -1.3094298839569092, - -1.303093433380127, - -1.3009427785873413, - -1.3030364513397217, - -1.3093172311782837, - -1.319614052772522, - -1.3336459398269653, - -1.5794395208358765, - -1.5608923435211182, - -1.5394989252090454, - -1.5158425569534302, - -1.4905686378479004, - -1.4643666744232178, - -1.4379513263702393, - -1.4120429754257202, - -1.3873485326766968, - -1.3645415306091309, - -1.3442440032958984, - -1.3270097970962524, - -1.313308835029602, - -1.3035149574279785, - -1.2978953123092651, - -1.2966030836105347, - -1.2996735572814941, - -1.3070231676101685, - -1.318451166152954, - -1.3336459398269653, - -1.5794395208358765, - -1.561557650566101, - -1.54081130027771, - -1.5177663564682007, - -1.4930514097213745, - -1.4673405885696411, - -1.4413352012634277, - -1.4157445430755615, - -1.3912668228149414, - -1.3685697317123413, - -1.3482723236083984, - -1.330928087234497, - -1.3170104026794434, - -1.306898832321167, - -1.300869107246399, - -1.2990857362747192, - -1.3015974760055542, - -1.308335542678833, - -1.319116473197937, - -1.3336459398269653, - -1.5794395208358765, - -1.563979148864746, - -1.5455881357192993, - -1.5247682332992554, - -1.5020873546600342, - -1.4781641960144043, - -1.4536510705947876, - -1.429216980934143, - -1.40552818775177, - -1.3832310438156128, - -1.3629335165023804, - -1.3451894521713257, - -1.330482840538025, - -1.3192148208618164, - -1.311692714691162, - -1.308121681213379, - -1.3085993528366089, - -1.3131123781204224, - -1.321537971496582, - -1.3336459398269653, - -1.5794395208358765, - -1.5678943395614624, - -1.5533117055892944, - -1.536089539527893, - -1.5166975259780884, - -1.4956645965576172, - -1.473564624786377, - -1.4510002136230469, - -1.4285870790481567, - -1.406936526298523, - -1.3866389989852905, - -1.3682483434677124, - -1.3522660732269287, - -1.3391282558441162, - -1.3291932344436646, - -1.322731852531433, - -1.319920539855957, - -1.3208359479904175, - -1.3254530429840088, - -1.3336459398269653, - -1.5794395208358765, - -1.5728789567947388, - -1.5631450414657593, - -1.5505032539367676, - -1.535298466682434, - -1.5179455280303955, - -1.498917579650879, - -1.478733777999878, - -1.4579447507858276, - -1.437117338180542, - -1.4168199300765991, - -1.3976060152053833, - -1.3799996376037598, - -1.3644813299179077, - -1.3514740467071533, - -1.3413329124450684, - -1.3343342542648315, - -1.3306692838668823, - -1.3304376602172852, - -1.3336459398269653, - -1.5794395208358765, - -1.5783928632736206, - -1.5740225315093994, - -1.5664474964141846, - -1.5558747053146362, - -1.5425922870635986, - -1.5269627571105957, - -1.5094122886657715, - -1.4904197454452515, - -1.4705030918121338, - -1.4502055644989014, - -1.4300810098648071, - -1.4106781482696533, - -1.392526388168335, - -1.376120924949646, - -1.361909031867981, - -1.350278615951538, - -1.3415467739105225, - -1.3359516859054565, - -1.3336459398269653, - -1.5794395208358765, - -1.5838385820388794, - -1.5847653150558472, - -1.5821945667266846, - -1.576196312904358, - -1.5669342279434204, - -1.5546609163284302, - -1.5397112369537354, - -1.5224930047988892, - -1.5034756660461426, - -1.4831782579421997, - -1.4621542692184448, - -1.4409770965576172, - -1.420224666595459, - -1.4004628658294678, - -1.3822307586669922, - -1.3660255670547485, - -1.3522895574569702, - -1.3413974046707153, - -1.3336459398269653, - -1.5794395208358765, - -1.5886259078979492, - -1.5942095518112183, - -1.5960378646850586, - -1.594061255455017, - -1.5883333683013916, - -1.5790106058120728, - -1.566347360610962, - -1.5506887435913086, - -1.532462239265442, - -1.5121647119522095, - -1.4903500080108643, - -1.4676132202148438, - -1.4445743560791016, - -1.421862006187439, - -1.4000955820083618, - -1.379868984222412, - -1.3617337942123413, - -1.3461847305297852, - -1.3336459398269653, - -1.5794395208358765, - -1.5922361612319946, - -1.6013314723968506, - -1.6064773797988892, - -1.6075334548950195, - -1.6044708490371704, - -1.597373127937317, - -1.586434006690979, - -1.5719517469406128, - -1.5543214082717896, - -1.5340240001678467, - -1.5116130113601685, - -1.4876998662948608, - -1.4629368782043457, - -1.4379994869232178, - -1.4135677814483643, - -1.3903083801269531, - -1.3688557147979736, - -1.3497949838638306, - -1.3336459398269653, - -1.5794395208358765, - -1.59427809715271, - -1.6053595542907715, - -1.6123818159103394, - -1.6151530742645264, - -1.6135978698730469, - -1.607758641242981, - -1.5977946519851685, - -1.5839776992797852, - -1.566684603691101, - -1.5463870763778687, - -1.5236389636993408, - -1.4990605115890503, - -1.4733223915100098, - -1.4471265077590942, - -1.421187400817871, - -1.3962128162384033, - -1.3728837966918945, - -1.3518368005752563, - -1.3336459398269653, - -1.5794395208358765, - -1.5945303440093994, - -1.605857253074646, - -1.6131112575531006, - -1.6160943508148193, - -1.6147254705429077, - -1.609041690826416, - -1.5991981029510498, - -1.5854634046554565, - -1.5682119131088257, - -1.5479145050048828, - -1.5251246690750122, - -1.5004640817642212, - -1.4746053218841553, - -1.448254108428955, - -1.4221287965774536, - -1.3969422578811646, - -1.373381495475769, - -1.3520891666412354, - -1.3336459398269653, - -1.5794395208358765, - -1.5929656028747559, - -1.602770447731018, - -1.6085866689682007, - -1.610255479812622, - -1.6077313423156738, - -1.6010832786560059, - -1.5904924869537354, - -1.5762478113174438, - -1.5587379932403564, - -1.538440465927124, - -1.5159090757369995, - -1.4917583465576172, - -1.4666469097137451, - -1.4412599802017212, - -1.4162898063659668, - -1.3924176692962646, - -1.3702946901321411, - -1.3505244255065918, - -1.3336459398269653, - -1.5794395208358765, - -1.58975350856781, - -1.5964338779449463, - -1.599298357963562, - -1.5982688665390015, - -1.5933735370635986, - -1.5847456455230713, - -1.5726208686828613, - -1.5573296546936035, - -1.5392893552780151, - -1.5189918279647827, - -1.4969909191131592, - -1.4738867282867432, - -1.4503093957901, - -1.4269020557403564, - -1.4043033123016357, - -1.3831294775009155, - -1.3639581203460693, - -1.347312331199646, - -1.3336459398269653, - -1.5794395208358765, - -1.5852420330047607, - -1.5875340700149536, - -1.5862529277801514, - -1.581433653831482, - -1.5732077360153198, - -1.5617995262145996, - -1.5475200414657593, - -1.5307590961456299, - -1.5119736194610596, - -1.4916760921478271, - -1.470420241355896, - -1.4487859010696411, - -1.4273631572723389, - -1.4067363739013672, - -1.3874680995941162, - -1.3700840473175049, - -1.3550583124160767, - -1.3428008556365967, - -1.3336459398269653, - -1.5794395208358765, - -1.5799201726913452, - -1.5770355463027954, - -1.5708640813827515, - -1.5615742206573486, - -1.5494194030761719, - -1.534731149673462, - -1.517910122871399, - -1.4994151592254639, - -1.4797507524490356, - -1.4594533443450928, - -1.4390764236450195, - -1.4191759824752808, - -1.4002948999404907, - -1.3829480409622192, - -1.367608666419983, - -1.3546950817108154, - -1.3445597887039185, - -1.3374789953231812, - -1.3336459398269653, - -1.5794395208358765, - -1.5743646621704102, - -1.5660758018493652, - -1.5547993183135986, - -1.5408425331115723, - -1.5245864391326904, - -1.5064741373062134, - -1.4869998693466187, - -1.4666948318481445, - -1.446112871170044, - -1.425815463066101, - -1.4063560962677002, - -1.3882657289505005, - -1.3720377683639526, - -1.3581149578094482, - -1.3468769788742065, - -1.3386303186416626, - -1.3336000442504883, - -1.3319233655929565, - -1.3336459398269653 - ], - "z": [ - 0.5353766679763794, - 0.5367001891136169, - 0.5444357395172119, - 0.5583723187446594, - 0.578129768371582, - 0.6031690835952759, - 0.6328073740005493, - 0.6662361025810242, - 0.7025434970855713, - 0.740739107131958, - 0.7797811031341553, - 0.8186045289039612, - 0.8561503291130066, - 0.8913943767547607, - 0.9233753085136414, - 0.9512208104133606, - 0.9741712808609009, - 0.9916006922721863, - 1.0030336380004883, - 1.0081582069396973, - 0.5353766679763794, - 0.5451810359954834, - 0.5611660480499268, - 0.582895815372467, - 0.6097774505615234, - 0.6410777568817139, - 0.6759428977966309, - 0.7134219408035278, - 0.7524924874305725, - 0.7920887470245361, - 0.8311307430267334, - 0.8685535192489624, - 0.9033361077308655, - 0.9345299005508423, - 0.9612839818000793, - 0.9828685522079468, - 0.9986947774887085, - 1.008331060409546, - 1.01151442527771, - 1.0081582069396973, - 0.5353766679763794, - 0.5529487729072571, - 0.5764896869659424, - 0.6053573489189148, - 0.6387641429901123, - 0.6757990121841431, - 0.7154515981674194, - 0.7566403150558472, - 0.7982416749000549, - 0.8391208648681641, - 0.8781628608703613, - 0.9143027067184448, - 0.9465545415878296, - 0.9740386009216309, - 0.9960052371025085, - 1.0118552446365356, - 1.0211563110351562, - 1.0236546993255615, - 1.0192822217941284, - 1.0081582069396973, - 0.5353766679763794, - 0.5591617226600647, - 0.5887460708618164, - 0.6233228445053101, - 0.6619488000869751, - 0.7035702466964722, - 0.7470519542694092, - 0.7912078499794006, - 0.8348335027694702, - 0.8767388463020325, - 0.9157808423042297, - 0.9508944749832153, - 0.9811220765113831, - 1.0056389570236206, - 1.0237765312194824, - 1.0350399017333984, - 1.0391218662261963, - 1.0359110832214355, - 1.025495171546936, - 1.0081582069396973, - 0.5353766679763794, - 0.5631465315818787, - 0.5966070890426636, - 0.634845495223999, - 0.67681884765625, - 0.7213820815086365, - 0.7673197388648987, - 0.8133786916732788, - 0.8583025932312012, - 0.9008660912513733, - 0.9399080872535706, - 0.9743636250495911, - 1.0032929182052612, - 1.0259068012237549, - 1.041588306427002, - 1.0499099493026733, - 1.0506445169448853, - 1.0437719821929932, - 1.02947998046875, - 1.0081582069396973, - 0.5353766679763794, - 0.564471423625946, - 0.5992206931114197, - 0.638676643371582, - 0.6817629337310791, - 0.7273042798042297, - 0.77405846118927, - 0.8207501769065857, - 0.8661057949066162, - 0.9088881015777588, - 0.947930097579956, - 0.9821667671203613, - 1.0106643438339233, - 1.0326454639434814, - 1.0475105047225952, - 1.0548540353775024, - 1.0544755458831787, - 1.046385645866394, - 1.0308048725128174, - 1.0081582069396973, - 0.5353766679763794, - 0.5629928708076477, - 0.5963038802146912, - 0.6344010829925537, - 0.6762453317642212, - 0.7206950783729553, - 0.7665380239486694, - 0.812523603439331, - 0.8573974370956421, - 0.8999354839324951, - 0.9389774799346924, - 0.973458468914032, - 1.0024378299713135, - 1.0251250267028809, - 1.0409014225006104, - 1.0493364334106445, - 1.05020010471344, - 1.0434688329696655, - 1.029326319694519, - 1.0081582069396973, - 0.5353766679763794, - 0.5588709712028503, - 0.5881725549697876, - 0.622482180595398, - 0.6608638763427734, - 0.7022707462310791, - 0.7455732822418213, - 0.7895903587341309, - 0.8331212401390076, - 0.8749785423278809, - 0.9140205383300781, - 0.9491822719573975, - 0.9795045256614685, - 1.0041602849960327, - 1.0224770307540894, - 1.0339549779891968, - 1.0382812023162842, - 1.0353375673294067, - 1.0252044200897217, - 1.0081582069396973, - 0.5353766679763794, - 0.5525525212287903, - 0.5757080316543579, - 0.6042115092277527, - 0.6372854709625244, - 0.6740278005599976, - 0.7134361267089844, - 0.754435658454895, - 0.7959079146385193, - 0.836721658706665, - 0.8757636547088623, - 0.9119689464569092, - 0.9443498253822327, - 0.9720231294631958, - 0.994234025478363, - 1.0103765726089478, - 1.0200104713439941, - 1.0228729248046875, - 1.0188859701156616, - 1.0081582069396973, - 0.5353766679763794, - 0.5447221994400024, - 0.5602608919143677, - 0.5815690159797668, - 0.6080651879310608, - 0.6390267610549927, - 0.6736091375350952, - 0.7108690142631531, - 0.7497900724411011, - 0.7893105745315552, - 0.8283525705337524, - 0.8658510446548462, - 0.9007831811904907, - 0.9321961402893066, - 0.9592329859733582, - 0.9811562895774841, - 0.9973679780960083, - 1.0074259042739868, - 1.011055588722229, - 1.0081582069396973, - 0.5353766679763794, - 0.5362284779548645, - 0.5435051918029785, - 0.5570082664489746, - 0.5763694643974304, - 0.6010605692863464, - 0.6304081678390503, - 0.6636115908622742, - 0.6997653245925903, - 0.7378830313682556, - 0.7769250273704529, - 0.8158262968063354, - 0.8535258173942566, - 0.8889951705932617, - 0.9212667942047119, - 0.9494605660438538, - 0.9728072881698608, - 0.9906701445579529, - 1.0025619268417358, - 1.0081582069396973, - 0.5353766679763794, - 0.5279918313026428, - 0.5272566080093384, - 0.5331909656524658, - 0.54563307762146, - 0.564243495464325, - 0.5885146856307983, - 0.6177845001220703, - 0.6512545943260193, - 0.6880119442939758, - 0.7270539402961731, - 0.7673155665397644, - 0.807698667049408, - 0.8471016883850098, - 0.8844497203826904, - 0.9187241196632385, - 0.9489899277687073, - 0.9744215607643127, - 0.9943252801895142, - 1.0081582069396973, - 0.5353766679763794, - 0.5209048390388489, - 0.5132758617401123, - 0.5126979351043701, - 0.5191867351531982, - 0.5325652360916138, - 0.5524685382843018, - 0.578353762626648, - 0.6095147728919983, - 0.6451016664505005, - 0.6841436624526978, - 0.7255758047103882, - 0.7682679295539856, - 0.8110555410385132, - 0.8527714014053345, - 0.8922777771949768, - 0.9284968972206116, - 0.9604408740997314, - 0.9872382879257202, - 1.0081582069396973, - 0.5353766679763794, - 0.5157354474067688, - 0.5030781030654907, - 0.4977499544620514, - 0.49989625811576843, - 0.5094585418701172, - 0.526175856590271, - 0.5495922565460205, - 0.5790690779685974, - 0.6138021945953369, - 0.6528441905975342, - 0.6951301097869873, - 0.7395064830780029, - 0.7847628593444824, - 0.8296647071838379, - 0.8729873299598694, - 0.9135489463806152, - 0.9502431154251099, - 0.9820688962936401, - 1.0081582069396973, - 0.5353766679763794, - 0.5130438804626465, - 0.4977684020996094, - 0.4899669289588928, - 0.4898522198200226, - 0.49742740392684937, - 0.5124858617782593, - 0.5346168875694275, - 0.5632167458534241, - 0.5975053310394287, - 0.636547327041626, - 0.679277777671814, - 0.7245310544967651, - 0.7710728645324707, - 0.8176336288452148, - 0.8629432916641235, - 0.9057658910751343, - 0.9449334144592285, - 0.9793773293495178, - 1.0081582069396973, - 0.5353766679763794, - 0.5131217837333679, - 0.4979220926761627, - 0.4901922047138214, - 0.49014291167259216, - 0.4977756440639496, - 0.5128821134567261, - 0.5350503325462341, - 0.563675582408905, - 0.5979770421981812, - 0.6370190382003784, - 0.6797365546226501, - 0.7249644994735718, - 0.7714691162109375, - 0.8179818391799927, - 0.8632339835166931, - 0.9059911966323853, - 0.9450870752334595, - 0.9794552326202393, - 1.0081582069396973, - 0.5353766679763794, - 0.515960693359375, - 0.503522515296936, - 0.49840137362480164, - 0.5007369518280029, - 0.5104655027389526, - 0.5273216962814331, - 0.5508456826210022, - 0.5803959369659424, - 0.615166187286377, - 0.6542081832885742, - 0.6964569091796875, - 0.7407598495483398, - 0.7859086990356445, - 0.8306717276573181, - 0.8738279938697815, - 0.9142003655433655, - 0.9506875276565552, - 0.9822942018508911, - 1.0081582069396973, - 0.5353766679763794, - 0.5212531089782715, - 0.5139628648757935, - 0.5137048959732056, - 0.5204862356185913, - 0.5341218113899231, - 0.5542397499084473, - 0.5802912712097168, - 0.6115658283233643, - 0.6472101807594299, - 0.6862521767616272, - 0.7276268005371094, - 0.7702054977416992, - 0.8128267526626587, - 0.8543280363082886, - 0.8935772776603699, - 0.929503858089447, - 0.9611278176307678, - 0.987586498260498, - 1.0081582069396973, - 0.5353766679763794, - 0.5284253358840942, - 0.5281116962432861, - 0.5344443917274475, - 0.5472506284713745, - 0.5661810636520386, - 0.5907194018363953, - 0.6201962232589722, - 0.653807520866394, - 0.6906365156173706, - 0.7296785116195679, - 0.7698685526847839, - 0.8101104497909546, - 0.8493064045906067, - 0.886387288570404, - 0.9203416705131531, - 0.950243353843689, - 0.9752766489982605, - 0.9947587251663208, - 1.0081582069396973, - 0.5353766679763794, - 0.5367001891136169, - 0.5444357395172119, - 0.5583723187446594, - 0.578129768371582, - 0.6031690835952759, - 0.6328073740005493, - 0.666236162185669, - 0.7025434970855713, - 0.7407391667366028, - 0.7797811627388, - 0.8186045289039612, - 0.8561503291130066, - 0.8913943767547607, - 0.9233753681182861, - 0.9512208104133606, - 0.9741712808609009, - 0.9916006922721863, - 1.0030336380004883, - 1.0081582069396973 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.24029748141765594, - -0.2374943047761917, - -0.22949819266796112, - -0.21652725338935852, - -0.19893532991409302, - -0.1772022694349289, - -0.1519208699464798, - -0.12378077208995819, - -0.09354954957962036, - -0.062051840126514435, - -0.03014681115746498, - 0.001295246183872223, - 0.03141668066382408, - 0.05939586088061333, - 0.08446955680847168, - 0.1059538722038269, - 0.12326274812221527, - 0.13592404127120972, - 0.14359237253665924, - 0.1460585743188858, - -0.24029746651649475, - -0.2518121898174286, - -0.2577434480190277, - -0.25792938470840454, - -0.25236499309539795, - -0.24120205640792847, - -0.2247450351715088, - -0.20344287157058716, - -0.17787659168243408, - -0.14874359965324402, - -0.11683857440948486, - -0.0830318033695221, - -0.048245422542095184, - -0.013428308069705963, - 0.02046975865960121, - 0.05252418294548988, - 0.08186061680316925, - 0.10767880082130432, - 0.12927447259426117, - 0.1460585743188858, - -0.24029746651649475, - -0.2645967900753021, - -0.28296390175819397, - -0.29489773511886597, - -0.30007287859916687, - -0.2983480989933014, - -0.2897704541683197, - -0.2745739221572876, - -0.2531730532646179, - -0.22615152597427368, - -0.19424650073051453, - -0.15832825005054474, - -0.11937648057937622, - -0.07845372706651688, - -0.036676280200481415, - 0.0048163048923015594, - 0.04489225521683693, - 0.08245834708213806, - 0.11648988723754883, - 0.1460585743188858, - -0.24029746651649475, - -0.27446267008781433, - -0.3024265170097351, - -0.3234262466430664, - -0.3368890881538391, - -0.3424477279186249, - -0.3399505913257599, - -0.3294658064842224, - -0.3112793266773224, - -0.2858872711658478, - -0.2539822459220886, - -0.216434508562088, - -0.17426833510398865, - -0.12863385677337646, - -0.0807759240269661, - -0.031999874860048294, - 0.016363751143217087, - 0.06299571692943573, - 0.10662400722503662, - 0.1460585743188858, - -0.24029746651649475, - -0.28034070134162903, - -0.3140222728252411, - -0.3404233753681183, - -0.3588239848613739, - -0.3687220513820648, - -0.3698476552963257, - -0.36217010021209717, - -0.34589874744415283, - -0.321477472782135, - -0.28957244753837585, - -0.25105392932891846, - -0.2069726139307022, - -0.15853092074394226, - -0.10705023258924484, - -0.05393478646874428, - -0.0006333775818347931, - 0.05139997974038124, - 0.10074597597122192, - 0.1460585743188858, - -0.24029746651649475, - -0.281593918800354, - -0.31649449467658997, - -0.3440472483634949, - -0.36350056529045105, - -0.37432384490966797, - -0.37622183561325073, - -0.3691427707672119, - -0.3532797396183014, - -0.3290654718875885, - -0.29716044664382935, - -0.258434921503067, - -0.21394529938697815, - -0.1649051159620285, - -0.11265204846858978, - -0.05861138179898262, - -0.004257243126630783, - 0.04892773553729057, - 0.09949275851249695, - 0.1460585743188858, - -0.24029746651649475, - -0.27808651328086853, - -0.3095754086971283, - -0.3339051306247711, - -0.35041213035583496, - -0.35864606499671936, - -0.35838237404823303, - -0.3496282696723938, - -0.3326224982738495, - -0.3078289330005646, - -0.2759239077568054, - -0.23777766525745392, - -0.19443079829216003, - -0.1470656543970108, - -0.09697427600622177, - -0.04552293196320534, - 0.005884882062673569, - 0.055846843868494034, - 0.10300014913082123, - 0.1460585743188858, - -0.24029746651649475, - -0.2701985836029053, - -0.29401466250419617, - -0.31109610199928284, - -0.32097694277763367, - -0.32338765263557434, - -0.3182624876499176, - -0.3057412803173065, - -0.2861655056476593, - -0.2600691616535187, - -0.22816413640975952, - -0.19132068753242493, - -0.15054380893707275, - -0.10694576054811478, - -0.06171584874391556, - -0.016087744385004044, - 0.028693918138742447, - 0.07140755653381348, - 0.11088809370994568, - 0.1460585743188858, - -0.24029746651649475, - -0.2587848901748657, - -0.2714986205101013, - -0.2780918478965759, - -0.2783847749233246, - -0.272369384765625, - -0.2602097690105438, - -0.24223759770393372, - -0.21894310414791107, - -0.19096171855926514, - -0.15905669331550598, - -0.12409831583499908, - -0.08704014867544174, - -0.048893041908741, - -0.010697588324546814, - 0.026504401117563248, - 0.06169814243912697, - 0.09392361342906952, - 0.12230178713798523, - 0.1460585743188858, - -0.24029746651649475, - -0.245082288980484, - -0.24446718394756317, - -0.2384689301252365, - -0.22725118696689606, - -0.21111992001533508, - -0.19051513075828552, - -0.1659989058971405, - -0.13823993504047394, - -0.10799544304609299, - -0.07609041035175323, - -0.043395135551691055, - -0.010801441967487335, - 0.020801600068807602, - 0.05055190250277519, - 0.07763800024986267, - 0.10132107138633728, - 0.12095504999160767, - 0.13600438833236694, - 0.1460585743188858, - -0.24029748141765594, - -0.23057566583156586, - -0.2158496379852295, - -0.1965210884809494, - -0.1731172502040863, - -0.1462765485048294, - -0.11673107743263245, - -0.08528678119182587, - -0.052801381796598434, - -0.02016100101172924, - 0.011744026094675064, - 0.04204341396689415, - 0.0699106752872467, - 0.09458565711975098, - 0.11539527773857117, - 0.13177193701267242, - 0.1432689130306244, - 0.14957258105278015, - 0.1505109965801239, - 0.1460585594177246, - -0.24029748141765594, - -0.2168370485305786, - -0.18874715268611908, - -0.15679402649402618, - -0.12184925377368927, - -0.08486607670783997, - -0.04685325175523758, - -0.008847679942846298, - 0.02811393514275551, - 0.0630233883857727, - 0.09492841362953186, - 0.12295873463153839, - 0.14634978771209717, - 0.16446350514888763, - 0.1768057644367218, - 0.18303993344306946, - 0.1829959750175476, - 0.17667506635189056, - 0.16424961388111115, - 0.1460585594177246, - -0.24029748141765594, - -0.2053552269935608, - -0.16609670221805573, - -0.12359277904033661, - -0.07900287210941315, - -0.033543266355991364, - 0.011545993387699127, - 0.0550350584089756, - 0.09573760628700256, - 0.13254335522651672, - 0.16444838047027588, - 0.19058240950107574, - 0.21023251116275787, - 0.22286273539066315, - 0.2281285673379898, - 0.22588633000850677, - 0.21619723737239838, - 0.1993255317211151, - 0.17573143541812897, - 0.1460585594177246, - -0.24029748141765594, - -0.19737441837787628, - -0.15035279095172882, - -0.1005152016878128, - -0.049221135675907135, - 0.0021302439272403717, - 0.05213826522231102, - 0.09943878650665283, - 0.14274156093597412, - 0.18086539208889008, - 0.21277041733264923, - 0.2375863641500473, - 0.2546362280845642, - 0.26345500349998474, - 0.26380211114883423, - 0.2556680738925934, - 0.2392747849225998, - 0.2150694578886032, - 0.18371224403381348, - 0.1460585594177246, - -0.24029748141765594, - -0.193759486079216, - -0.14322154223918915, - -0.09006214141845703, - -0.035731397569179535, - 0.01828867569565773, - 0.07052463293075562, - 0.11955155432224274, - 0.16403208673000336, - 0.2027529925107956, - 0.23465801775455475, - 0.25887686014175415, - 0.2747489809989929, - 0.28184136748313904, - 0.2799605131149292, - 0.2691577970981598, - 0.24972786009311676, - 0.2222006767988205, - 0.18732717633247375, - 0.1460585594177246, - -0.24029748141765594, - -0.19490215182304382, - -0.14547570049762726, - -0.093366339802742, - -0.0399954691529274, - 0.013181034475564957, - 0.06471274793148041, - 0.11319395899772644, - 0.15730221569538116, - 0.19583438336849213, - 0.22773940861225128, - 0.25214698910713196, - 0.2683914005756378, - 0.276029497385025, - 0.2748528718948364, - 0.2648937404155731, - 0.24642367660999298, - 0.21994651854038239, - 0.18618451058864594, - 0.1460585594177246, - -0.24029748141765594, - -0.20067861676216125, - -0.15687105059623718, - -0.11006972193717957, - -0.061551280319690704, - -0.012639235705137253, - 0.03533236309885979, - 0.08105485141277313, - 0.1232810765504837, - 0.16085922718048096, - 0.1927642524242401, - 0.2181258648633957, - 0.2362522929906845, - 0.2466491013765335, - 0.2490326315164566, - 0.24333791434764862, - 0.22972027957439423, - 0.20855118334293365, - 0.1804080456495285, - 0.1460585594177246, - -0.24029748141765594, - -0.21046288311481476, - -0.17617268860340118, - -0.13836224377155304, - -0.09806294739246368, - -0.056374065577983856, - -0.014432720839977264, - 0.026617009192705154, - 0.0656554251909256, - 0.10161758959293365, - 0.1335226148366928, - 0.16050022840499878, - 0.18181447684764862, - 0.19688402116298676, - 0.2052977830171585, - 0.20682625472545624, - 0.20142775774002075, - 0.18924954533576965, - 0.1706237941980362, - 0.1460585594177246, - -0.24029748141765594, - -0.2231946885585785, - -0.20128901302814484, - -0.17517797648906708, - -0.14557385444641113, - -0.1132841557264328, - -0.07918965071439743, - -0.04422035813331604, - -0.0093301422894001, - 0.02452928200364113, - 0.05643431469798088, - 0.08551466464996338, - 0.11097709834575653, - 0.1321270912885666, - 0.14838768541812897, - 0.1593153476715088, - 0.1646120250225067, - 0.164133220911026, - 0.15789198875427246, - 0.1460585594177246, - -0.24029748141765594, - -0.2374943047761917, - -0.22949820756912231, - -0.2165272831916809, - -0.1989353597164154, - -0.17720229923725128, - -0.15192091464996338, - -0.12378081679344177, - -0.09354959428310394, - -0.062051884829998016, - -0.030146857723593712, - 0.0012952014803886414, - 0.0314166359603405, - 0.05939582362771034, - 0.08446952700614929, - 0.10595384240150452, - 0.12326271831989288, - 0.13592402637004852, - 0.14359235763549805, - 0.1460585743188858 - ], - "y": [ - -1.6034623384475708, - -1.5990235805511475, - -1.5912798643112183, - -1.5804423093795776, - -1.5668065547943115, - -1.550744652748108, - -1.5326945781707764, - -1.5131487846374512, - -1.492640495300293, - -1.4717289209365845, - -1.4509847164154053, - -1.4309735298156738, - -1.4122412204742432, - -1.395298957824707, - -1.3806086778640747, - -1.368571162223816, - -1.3595147132873535, - -1.3536865711212158, - -1.351245403289795, - -1.3522580862045288, - -1.6034623384475708, - -1.5934627056121826, - -1.5803098678588867, - -1.5643624067306519, - -1.5460553169250488, - -1.5258880853652954, - -1.5044108629226685, - -1.482209324836731, - -1.4598891735076904, - -1.4380592107772827, - -1.417314887046814, - -1.3982222080230713, - -1.381301760673523, - -1.3670151233673096, - -1.3557521104812622, - -1.3478199243545532, - -1.3434348106384277, - -1.3427165746688843, - -1.3456846475601196, - -1.3522580862045288, - -1.6034623384475708, - -1.5887998342514038, - -1.5711113214492798, - -1.5508790016174316, - -1.5286550521850586, - -1.5050455331802368, - -1.4806944131851196, - -1.456265926361084, - -1.4324265718460083, - -1.4098265171051025, - -1.3890821933746338, - -1.3707596063613892, - -1.355358362197876, - -1.3432986736297607, - -1.334909439086914, - -1.3304195404052734, - -1.329951524734497, - -1.3335180282592773, - -1.3410217761993408, - -1.3522580862045288, - -1.6034623384475708, - -1.5855402946472168, - -1.5646809339523315, - -1.54145348072052, - -1.5164912939071655, - -1.4904752969741821, - -1.4641152620315552, - -1.4381301403045654, - -1.4132287502288818, - -1.3900903463363647, - -1.369346022605896, - -1.3515617847442627, - -1.3372225761413574, - -1.3267195224761963, - -1.320339322090149, - -1.3182557821273804, - -1.320525884628296, - -1.327087640762329, - -1.3377621173858643, - -1.3522580862045288, - -1.6034623384475708, - -1.584037184715271, - -1.5617157220840454, - -1.537106990814209, - -1.5108821392059326, - -1.4837565422058105, - -1.4564701318740845, - -1.42976713180542, - -1.4043760299682617, - -1.3809893131256104, - -1.3602449893951416, - -1.3427090644836426, - -1.328859567642212, - -1.3190743923187256, - -1.3136205673217773, - -1.312646746635437, - -1.3161795139312744, - -1.324122428894043, - -1.3362590074539185, - -1.3522580862045288, - -1.6034623384475708, - -1.5844534635543823, - -1.5625369548797607, - -1.5383107662200928, - -1.5124355554580688, - -1.4856172800064087, - -1.458587408065796, - -1.4320831298828125, - -1.406827688217163, - -1.3835097551345825, - -1.3627655506134033, - -1.345160722732544, - -1.3311755657196045, - -1.321191668510437, - -1.315481185913086, - -1.3142001628875732, - -1.3173831701278687, - -1.3249436616897583, - -1.3366752862930298, - -1.3522580862045288, - -1.6034623384475708, - -1.586743950843811, - -1.567055583000183, - -1.5449341535568237, - -1.520983099937439, - -1.4958558082580566, - -1.4702376127243042, - -1.4448273181915283, - -1.4203181266784668, - -1.3973785638809204, - -1.3766342401504517, - -1.3586511611938477, - -1.3439197540283203, - -1.3328418731689453, - -1.3257198333740234, - -1.3227477073669434, - -1.3240065574645996, - -1.3294622898101807, - -1.338965892791748, - -1.3522580862045288, - -1.6034623384475708, - -1.590660572052002, - -1.574781894683838, - -1.5562595129013062, - -1.535598635673523, - -1.5133627653121948, - -1.4901584386825562, - -1.4666186571121216, - -1.4433854818344116, - -1.4210927486419678, - -1.400348424911499, - -1.3817185163497925, - -1.365710973739624, - -1.3527626991271973, - -1.343226671218872, - -1.3373631238937378, - -1.3353320360183716, - -1.3371886014938354, - -1.3428823947906494, - -1.3522580862045288, - -1.6034623384475708, - -1.5957788228988647, - -1.5848788022994995, - -1.5710595846176147, - -1.55469810962677, - -1.536240816116333, - -1.5161908864974976, - -1.4950954914093018, - -1.4735299348831177, - -1.4520825147628784, - -1.4313383102416992, - -1.4118629693984985, - -1.3941879272460938, - -1.3787952661514282, - -1.3661048412322998, - -1.3564627170562744, - -1.3501321077346802, - -1.347285509109497, - -1.3480006456375122, - -1.3522580862045288, - -1.6034623384475708, - -1.6015440225601196, - -1.5962519645690918, - -1.5877305269241333, - -1.5762120485305786, - -1.5620108842849731, - -1.5455142259597778, - -1.5271722078323364, - -1.507485032081604, - -1.4869897365570068, - -1.466245412826538, - -1.4458179473876953, - -1.4262645244598389, - -1.408118486404419, - -1.39187490940094, - -1.377976655960083, - -1.3668030500411987, - -1.3586586713790894, - -1.3537659645080566, - -1.3522580862045288, - -1.6034623384475708, - -1.6073315143585205, - -1.6076691150665283, - -1.6044657230377197, - -1.5978089570999146, - -1.5878803730010986, - -1.5749506950378418, - -1.5593725442886353, - -1.541571021080017, - -1.5220316648483276, - -1.5012873411178589, - -1.479904055595398, - -1.4584649801254272, - -1.437554955482483, - -1.4177443981170654, - -1.399573564529419, - -1.3835382461547852, - -1.3700757026672363, - -1.359553337097168, - -1.3522580862045288, - -1.6034623384475708, - -1.6125140190124512, - -1.6178927421569824, - -1.6194517612457275, - -1.617148518562317, - -1.6110458374023438, - -1.6013102531433105, - -1.5882072448730469, - -1.572094202041626, - -1.5534107685089111, - -1.532666563987732, - -1.5104272365570068, - -1.4872996807098389, - -1.4639146327972412, - -1.4409098625183105, - -1.4189131259918213, - -1.398524284362793, - -1.38029944896698, - -1.3647359609603882, - -1.3522580862045288, - -1.6034623384475708, - -1.6165300607681274, - -1.6258152723312378, - -1.6310646533966064, - -1.632135033607483, - -1.6289970874786377, - -1.6217366456985474, - -1.6105515956878662, - -1.5957471132278442, - -1.5777268409729004, - -1.5569826364517212, - -1.5340800285339355, - -1.5096440315246582, - -1.4843409061431885, - -1.4588611125946045, - -1.4338995218276978, - -1.4101370573043823, - -1.3882219791412354, - -1.368751883506775, - -1.3522580862045288, - -1.6034623384475708, - -1.6189444065093994, - -1.6305780410766602, - -1.6380459070205688, - -1.6411442756652832, - -1.6397887468338013, - -1.6340162754058838, - -1.6239842176437378, - -1.6099662780761719, - -1.592344880104065, - -1.5716005563735962, - -1.5482993125915527, - -1.5230766534805298, - -1.496620535850525, - -1.469652771949768, - -1.4429088830947876, - -1.4171183109283447, - -1.3929846286773682, - -1.3711662292480469, - -1.3522580862045288, - -1.6034623384475708, - -1.6194952726364136, - -1.6316648721694946, - -1.639638900756836, - -1.643200159072876, - -1.6422513723373413, - -1.6368184089660645, - -1.627049446105957, - -1.6132110357284546, - -1.595680594444275, - -1.5749363899230957, - -1.5515440702438354, - -1.526141881942749, - -1.4994227886199951, - -1.472115397453308, - -1.4449647665023804, - -1.4187114238739014, - -1.3940714597702026, - -1.371717095375061, - -1.3522580862045288, - -1.6034623384475708, - -1.618123173713684, - -1.628957986831665, - -1.6356712579727173, - -1.6380798816680908, - -1.6361181735992432, - -1.629839539527893, - -1.619415283203125, - -1.6051297187805176, - -1.5873726606369019, - -1.5666284561157227, - -1.5434627532958984, - -1.518507719039917, - -1.4924437999725342, - -1.4659820795059204, - -1.4398444890975952, - -1.4147437810897827, - -1.3913646936416626, - -1.3703449964523315, - -1.3522580862045288, - -1.6034623384475708, - -1.6149766445159912, - -1.6227508783340454, - -1.626572847366333, - -1.626338243484497, - -1.622053623199463, - -1.6138356924057007, - -1.601908802986145, - -1.5865981578826904, - -1.5683213472366333, - -1.547577142715454, - -1.5249311923980713, - -1.501001238822937, - -1.4764399528503418, - -1.4519175291061401, - -1.4281028509140015, - -1.4056452512741089, - -1.385157585144043, - -1.3671985864639282, - -1.3522580862045288, - -1.6034623384475708, - -1.6103968620300293, - -1.6137160062789917, - -1.6133294105529785, - -1.6092475652694702, - -1.6015818119049072, - -1.5905413627624512, - -1.5764271020889282, - -1.5596243143081665, - -1.5405911207199097, - -1.5198469161987305, - -1.4979573488235474, - -1.4755195379257202, - -1.4531456232070923, - -1.431445837020874, - -1.4110121726989746, - -1.392401933670044, - -1.3761227130889893, - -1.3626186847686768, - -1.3522580862045288, - -1.6034623384475708, - -1.6048798561096191, - -1.602832555770874, - -1.5973763465881348, - -1.5886600017547607, - -1.5769214630126953, - -1.5624806880950928, - -1.5457316637039185, - -1.5271313190460205, - -1.507187008857727, - -1.4864428043365479, - -1.4654643535614014, - -1.4448240995407104, - -1.4250849485397339, - -1.406785488128662, - -1.3904246091842651, - -1.3764487504959106, - -1.3652392625808716, - -1.3571016788482666, - -1.3522580862045288, - -1.6034623384475708, - -1.5990235805511475, - -1.5912798643112183, - -1.5804423093795776, - -1.5668065547943115, - -1.550744652748108, - -1.5326945781707764, - -1.5131487846374512, - -1.492640495300293, - -1.4717289209365845, - -1.4509845972061157, - -1.4309734106063843, - -1.4122412204742432, - -1.395298957824707, - -1.3806086778640747, - -1.368571162223816, - -1.3595147132873535, - -1.3536865711212158, - -1.351245403289795, - -1.3522580862045288 - ], - "z": [ - 0.5644043684005737, - 0.5661475658416748, - 0.5744333863258362, - 0.5890356302261353, - 0.6095561385154724, - 0.6354350447654724, - 0.6659665107727051, - 0.7003176212310791, - 0.7375515103340149, - 0.776652455329895, - 0.8165538907051086, - 0.8561673760414124, - 0.8944123983383179, - 0.9302457571029663, - 0.962689995765686, - 0.9908600449562073, - 1.01398766040802, - 1.0314418077468872, - 1.0427464246749878, - 1.0475932359695435, - 0.5644043684005737, - 0.5747051239013672, - 0.591314971446991, - 0.6137808561325073, - 0.6414899826049805, - 0.6736863851547241, - 0.7094919681549072, - 0.7479300498962402, - 0.7879520654678345, - 0.8284663558006287, - 0.8683677911758423, - 0.9065679311752319, - 0.942024827003479, - 0.973771333694458, - 1.0009413957595825, - 1.0227938890457153, - 1.038732886314392, - 1.048323392868042, - 1.0513039827346802, - 1.0475932359695435, - 0.5644043684005737, - 0.5825034379959106, - 0.6066989302635193, - 0.636330783367157, - 0.6705907583236694, - 0.7085442543029785, - 0.74915611743927, - 0.7913185358047485, - 0.8338813185691833, - 0.8756835460662842, - 0.9155849814414978, - 0.9524971842765808, - 0.9854133129119873, - 1.0134354829788208, - 1.035799264907837, - 1.0518946647644043, - 1.061282753944397, - 1.0637073516845703, - 1.0591022968292236, - 1.0475932359695435, - 0.5644043684005737, - 0.5886975526809692, - 0.6189181208610535, - 0.6542418003082275, - 0.6937050223350525, - 0.7362313270568848, - 0.7806606888771057, - 0.8257812261581421, - 0.8703621625900269, - 0.9131873846054077, - 0.9530888199806213, - 0.9889780282974243, - 1.0198760032653809, - 1.0449399948120117, - 1.0634863376617432, - 1.0750089883804321, - 1.0791938304901123, - 1.0759265422821045, - 1.0652964115142822, - 1.0475932359695435, - 0.5644043684005737, - 0.5926161408424377, - 0.6266484260559082, - 0.665573000907898, - 0.7083280086517334, - 0.7537471652030945, - 0.8005916476249695, - 0.8475835919380188, - 0.8934412598609924, - 0.9369136691093445, - 0.9768151044845581, - 1.0120570659637451, - 1.0416784286499023, - 1.0648709535598755, - 1.081002116203308, - 1.0896319150924683, - 1.0905249118804932, - 1.083656907081604, - 1.0692150592803955, - 1.0475932359695435, - 0.5644043684005737, - 0.593834638595581, - 0.6290521621704102, - 0.6690964102745056, - 0.7128750085830688, - 0.7591936588287354, - 0.8067891597747803, - 0.8543630242347717, - 0.9006176590919495, - 0.944291353225708, - 0.9841927886009216, - 1.0192335844039917, - 1.0484578609466553, - 1.071068525314331, - 1.0864486694335938, - 1.0941789150238037, - 1.0940483808517456, - 1.086060643196106, - 1.070433497428894, - 1.0475932359695435, - 0.5644043684005737, - 0.5922209024429321, - 0.6258688569068909, - 0.6644302606582642, - 0.7068532705307007, - 0.751980721950531, - 0.798581600189209, - 0.8453848361968994, - 0.8911137580871582, - 0.9345209002494812, - 0.9744223356246948, - 1.0097296237945557, - 1.0394796133041382, - 1.0628609657287598, - 1.0792356729507446, - 1.0881571769714355, - 1.0893821716308594, - 1.082877278327942, - 1.0688197612762451, - 1.0475932359695435, - 0.5644043684005737, - 0.5879499912261963, - 0.6174434423446655, - 0.6520801782608032, - 0.6909154653549194, - 0.7328898310661316, - 0.7768585085868835, - 0.8216220140457153, - 0.8659593462944031, - 0.9086611270904541, - 0.9485625624656677, - 0.9845752716064453, - 1.015716791152954, - 1.0411378145217896, - 1.0601447820663452, - 1.0722193717956543, - 1.0770320892333984, - 1.0744519233703613, - 1.0645488500595093, - 1.0475932359695435, - 0.5644043684005737, - 0.5814845561981201, - 0.6046888828277588, - 0.6333845257759094, - 0.6667885780334473, - 0.7039898633956909, - 0.7439737915992737, - 0.7856495380401611, - 0.8278803825378418, - 0.8695143461227417, - 0.9094157814979553, - 0.9464962482452393, - 0.9797443151473999, - 1.0082530975341797, - 1.0312448740005493, - 1.0480924844741821, - 1.0583364963531494, - 1.0616973638534546, - 1.058083415031433, - 1.0475932359695435, - 0.5644043684005737, - 0.5735252499580383, - 0.5889874696731567, - 0.6103692054748535, - 0.6370871663093567, - 0.6684126257896423, - 0.7034910917282104, - 0.7413656711578369, - 0.7810032367706299, - 0.8213226795196533, - 0.8612241148948669, - 0.8996191024780273, - 0.9354604482650757, - 0.9677703380584717, - 0.995667576789856, - 1.0183911323547363, - 1.0353212356567383, - 1.0459959506988525, - 1.050124168395996, - 1.0475932359695435, - 0.5644043684005737, - 0.5649346709251404, - 0.5720406174659729, - 0.5855283141136169, - 0.6050298810005188, - 0.6300133466720581, - 0.6597972512245178, - 0.6935691833496094, - 0.7304078340530396, - 0.7693084478378296, - 0.8092098832130432, - 0.849023699760437, - 0.8876639604568481, - 0.9240765571594238, - 0.9572682976722717, - 0.9863338470458984, - 1.010480284690857, - 1.029049038887024, - 1.0415335893630981, - 1.0475932359695435, - 0.5644043684005737, - 0.5566436648368835, - 0.5556847453117371, - 0.5615537762641907, - 0.5740906000137329, - 0.5929532647132874, - 0.6176272630691528, - 0.6474395990371704, - 0.6815769672393799, - 0.7191082239151001, - 0.7590096592903137, - 0.8001928329467773, - 0.8415343761444092, - 0.8819065690040588, - 0.920208215713501, - 0.9553945660591125, - 0.9865057468414307, - 1.012693166732788, - 1.0332425832748413, - 1.0475932359695435, - 0.5644043684005737, - 0.5495507121086121, - 0.5416923761367798, - 0.5410435795783997, - 0.5476220846176147, - 0.5612484216690063, - 0.5815509557723999, - 0.6079757213592529, - 0.6398021578788757, - 0.6761620044708252, - 0.716063380241394, - 0.7584180235862732, - 0.8020705580711365, - 0.8458302021026611, - 0.88850337266922, - 0.9289259910583496, - 0.9659955501556396, - 0.9987007975578308, - 1.0261496305465698, - 1.0475932359695435, - 0.5644043684005737, - 0.5444244742393494, - 0.5315796136856079, - 0.5262203216552734, - 0.5284925699234009, - 0.5383344888687134, - 0.5554775595664978, - 0.5794541835784912, - 0.609610378742218, - 0.6451236009597778, - 0.6850250363349915, - 0.7282262444496155, - 0.77354896068573, - 0.819756805896759, - 0.8655893802642822, - 0.9097964763641357, - 0.9511722922325134, - 0.9885880947113037, - 1.0210232734680176, - 1.0475932359695435, - 0.5644043684005737, - 0.5418204069137573, - 0.5264425277709961, - 0.5186903476715088, - 0.5187750458717346, - 0.5266945362091064, - 0.5422326922416687, - 0.5649657249450684, - 0.5942734479904175, - 0.6293565630912781, - 0.6692579984664917, - 0.7128893136978149, - 0.7590605020523071, - 0.8065119981765747, - 0.8539494276046753, - 0.9000790119171143, - 0.943642258644104, - 0.9834510087966919, - 1.0184192657470703, - 1.0475932359695435, - 0.5644043684005737, - 0.5420207381248474, - 0.5268377065658569, - 0.519269585609436, - 0.5195226073265076, - 0.5275899171829224, - 0.5432515740394592, - 0.5660802125930786, - 0.5954532623291016, - 0.6305694580078125, - 0.6704708933830261, - 0.714069128036499, - 0.7601749897003174, - 0.8075308799743652, - 0.854844868183136, - 0.9008265137672424, - 0.944221556186676, - 0.9838461875915527, - 1.0186195373535156, - 1.0475932359695435, - 0.5644043684005737, - 0.5450037717819214, - 0.5327223539352417, - 0.5278953313827515, - 0.5306541919708252, - 0.5409237146377563, - 0.5584238767623901, - 0.5826771259307861, - 0.6130220890045166, - 0.6486309170722961, - 0.6885323524475098, - 0.7316379547119141, - 0.7767719030380249, - 0.8227031230926514, - 0.86817866563797, - 0.9119580984115601, - 0.9528473019599915, - 0.9897308349609375, - 1.0216026306152344, - 1.0475932359695435, - 0.5644043684005737, - 0.5504461526870728, - 0.5434588193893433, - 0.5436328649520874, - 0.5509635210037231, - 0.5652509331703186, - 0.5861053466796875, - 0.6129578351974487, - 0.6450759768486023, - 0.6815836429595947, - 0.7214850783348083, - 0.7636918425559998, - 0.8070526123046875, - 0.8503845930099487, - 0.8925058841705322, - 0.9322674870491028, - 0.9685848355293274, - 1.000467300415039, - 1.0270450115203857, - 1.0475932359695435, - 0.5644043684005737, - 0.5577582120895386, - 0.5578835010528564, - 0.5647767186164856, - 0.5782498717308044, - 0.5979353785514832, - 0.623296320438385, - 0.653640866279602, - 0.688141405582428, - 0.7258567810058594, - 0.765758216381073, - 0.8067572712898254, - 0.8477356433868408, - 0.887575626373291, - 0.9251903295516968, - 0.9595537781715393, - 0.9897286891937256, - 1.0148919820785522, - 1.0343570709228516, - 1.0475932359695435, - 0.5644043684005737, - 0.5661475658416748, - 0.5744333863258362, - 0.58903568983078, - 0.6095561385154724, - 0.6354350447654724, - 0.6659665107727051, - 0.7003176808357239, - 0.7375515699386597, - 0.776652455329895, - 0.8165538907051086, - 0.8561674356460571, - 0.8944124579429626, - 0.9302458167076111, - 0.962689995765686, - 0.990860104560852, - 1.01398766040802, - 1.0314418077468872, - 1.0427464246749878, - 1.0475932359695435 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.268160879611969, - -0.2653180956840515, - -0.25719213485717773, - -0.24400468170642853, - -0.22611545026302338, - -0.2040124237537384, - -0.17829850316047668, - -0.14967510104179382, - -0.11892296373844147, - -0.08688097447156906, - -0.05442313104867935, - -0.02243480086326599, - 0.008211463689804077, - 0.036679707467556, - 0.0621933788061142, - 0.0840565413236618, - 0.10167284309864044, - 0.11456173658370972, - 0.12237164378166199, - 0.12488950788974762, - -0.268160879611969, - -0.27990591526031494, - -0.2859698534011841, - -0.2861872911453247, - -0.28055232763290405, - -0.26921868324279785, - -0.2524954676628113, - -0.23083887994289398, - -0.20483964681625366, - -0.1752069592475891, - -0.1427491009235382, - -0.10835148394107819, - -0.07295232266187668, - -0.037517253309488297, - -0.0030128732323646545, - 0.029619671404361725, - 0.05949024856090546, - 0.08578406274318695, - 0.10778383910655975, - 0.12488952279090881, - -0.268160879611969, - -0.2929304838180542, - -0.31166374683380127, - -0.323849618434906, - -0.3291558027267456, - -0.32743749022483826, - -0.3187415599822998, - -0.3033052682876587, - -0.2815496027469635, - -0.2540680170059204, - -0.2216101735830307, - -0.18506142497062683, - -0.1454187035560608, - -0.10376337170600891, - -0.061231717467308044, - -0.01898381859064102, - 0.02182789146900177, - 0.06009015440940857, - 0.0947592556476593, - 0.12488952279090881, - -0.268160879611969, - -0.3029804527759552, - -0.33148953318595886, - -0.35291045904159546, - -0.3666589558124542, - -0.3723599910736084, - -0.3698580265045166, - -0.3592213988304138, - -0.3407401442527771, - -0.3149183988571167, - -0.2824605703353882, - -0.24425196647644043, - -0.20133483409881592, - -0.1548798531293869, - -0.10615422576665878, - -0.05648697167634964, - -0.007232934236526489, - 0.04026436060667038, - 0.0847092866897583, - 0.12488952279090881, - -0.268160879611969, - -0.308966726064682, - -0.3432987928390503, - -0.3702205717563629, - -0.38899776339530945, - -0.3991181254386902, - -0.4003055989742279, - -0.39252784848213196, - -0.37599700689315796, - -0.35116395354270935, - -0.31870609521865845, - -0.2795088291168213, - -0.23464129865169525, - -0.1853274255990982, - -0.13291233777999878, - -0.07882577925920486, - -0.024543046951293945, - 0.028455108404159546, - 0.0787230134010315, - 0.12488952279090881, - -0.268160879611969, - -0.31024059653282166, - -0.34581175446510315, - -0.37390410900115967, - -0.3937514126300812, - -0.40481218695640564, - -0.4067847728729248, - -0.39961540699005127, - -0.3834995627403259, - -0.3588769733905792, - -0.3264191150665283, - -0.28701138496398926, - -0.24172885715961456, - -0.1918066143989563, - -0.13860642910003662, - -0.08357942849397659, - -0.028226599097251892, - 0.025942131876945496, - 0.07744914293289185, - 0.12488952279090881, - -0.268160879611969, - -0.30666401982307434, - -0.33875617384910583, - -0.3635619580745697, - -0.3804048001766205, - -0.3888252079486847, - -0.388593465089798, - -0.37971600890159607, - -0.36243489384651184, - -0.33722156286239624, - -0.30476370453834534, - -0.26594674587249756, - -0.22182945907115936, - -0.17361530661582947, - -0.12261944264173508, - -0.0702328309416771, - -0.017884448170661926, - 0.03299771249294281, - 0.08102571964263916, - 0.12488952279090881, - -0.268160879611969, - -0.29862457513809204, - -0.3228965997695923, - -0.3403148353099823, - -0.3504042327404022, - -0.3528895676136017, - -0.3477030098438263, - -0.3349860906600952, - -0.31508564949035645, - -0.2885444760322571, - -0.25608664751052856, - -0.21859745681285858, - -0.17709952592849731, - -0.1327248215675354, - -0.08668378740549088, - -0.04023226350545883, - 0.00536268949508667, - 0.04885730892419815, - 0.08906516432762146, - 0.12488952279090881, - -0.268160879611969, - -0.28699347376823425, - -0.2999516427516937, - -0.30668193101882935, - -0.3070007562637329, - -0.3008995056152344, - -0.2885444760322571, - -0.27027276158332825, - -0.2465827465057373, - -0.21812060475349426, - -0.18566276133060455, - -0.15009456872940063, - -0.11238619685173035, - -0.07356627285480499, - -0.034693703055381775, - 0.003171205520629883, - 0.03899560123682022, - 0.07180225849151611, - 0.10069628059864044, - 0.12488952279090881, - -0.268160879611969, - -0.2730311155319214, - -0.27240777015686035, - -0.2663078308105469, - -0.2548978328704834, - -0.23848886787891388, - -0.2175285965204239, - -0.19258876144886017, - -0.16434961557388306, - -0.1335814893245697, - -0.10112365335226059, - -0.06786145269870758, - -0.034702204167842865, - -0.0025503933429718018, - 0.027716927230358124, - 0.055274173617362976, - 0.07936966419219971, - 0.09934613108634949, - 0.11465863883495331, - 0.12488952279090881, - -0.2681609094142914, - -0.25825053453445435, - -0.24324975907802582, - -0.22356779873371124, - -0.19974154233932495, - -0.1724209040403366, - -0.14235109090805054, - -0.11035235226154327, - -0.07729751616716385, - -0.044088251888751984, - -0.011630404740571976, - 0.019190654158592224, - 0.047534212470054626, - 0.07262712717056274, - 0.09378491342067719, - 0.11043046414852142, - 0.12210972607135773, - 0.12850412726402283, - 0.12943921983242035, - 0.12488950788974762, - -0.2681609094142914, - -0.24425342679023743, - -0.21563737094402313, - -0.18309330940246582, - -0.14750897884368896, - -0.109855055809021, - -0.07115856558084488, - -0.032475125044584274, - 0.005140148103237152, - 0.040661148726940155, - 0.07311899960041046, - 0.10162831842899323, - 0.12541143596172333, - 0.1438196301460266, - 0.1563507616519928, - 0.16266301274299622, - 0.16258421540260315, - 0.1561165302991867, - 0.14343632757663727, - 0.12488950788974762, - -0.2681609094142914, - -0.23255661129951477, - -0.19256281852722168, - -0.1492704153060913, - -0.10386036336421967, - -0.057571329176425934, - -0.011665891855955124, - 0.03260371834039688, - 0.07402993738651276, - 0.11148278415203094, - 0.14394062757492065, - 0.17051811516284943, - 0.19049027562141418, - 0.20331233739852905, - 0.20863452553749084, - 0.2063116431236267, - 0.19640710949897766, - 0.17919108271598816, - 0.15513312816619873, - 0.12488950788974762, - -0.2681609094142914, - -0.22442762553691864, - -0.17652657628059387, - -0.12576434016227722, - -0.07352564483880997, - -0.021235425025224686, - 0.02968006581068039, - 0.07783190906047821, - 0.12190665304660797, - 0.16070206463336945, - 0.19315990805625916, - 0.21839481592178345, - 0.23571845889091492, - 0.24465829133987427, - 0.2449704110622406, - 0.2366463541984558, - 0.21991318464279175, - 0.19522732496261597, - 0.16326211392879486, - 0.12488950788974762, - -0.2681609094142914, - -0.22074736654758453, - -0.1692664474248886, - -0.11512236297130585, - -0.05979212746024132, - -0.0047849491238594055, - 0.04839872568845749, - 0.09830816090106964, - 0.14358197152614594, - 0.18298521637916565, - 0.21544307470321655, - 0.2400701344013214, - 0.25619471073150635, - 0.26337695121765137, - 0.261420875787735, - 0.25037989020347595, - 0.23055514693260193, - 0.20248743891716003, - 0.16694237291812897, - 0.12488950788974762, - -0.2681609094142914, - -0.2219146341085434, - -0.17156913876533508, - -0.11849769949913025, - -0.06414800137281418, - -0.01000257208943367, - 0.04246173053979874, - 0.09181369841098785, - 0.13670720160007477, - 0.1759176403284073, - 0.208375483751297, - 0.23319536447525024, - 0.24970024824142456, - 0.2574399411678314, - 0.2562032639980316, - 0.2460240125656128, - 0.22717982530593872, - 0.20018476247787476, - 0.1657751053571701, - 0.12488950788974762, - -0.2681609094142914, - -0.22780296206474304, - -0.1831851601600647, - -0.13552457094192505, - -0.08612126857042313, - -0.03632286563515663, - 0.012512348592281342, - 0.05905216932296753, - 0.10202720761299133, - 0.14026516675949097, - 0.17272301018238068, - 0.198515385389328, - 0.21693873405456543, - 0.22749057412147522, - 0.22988295555114746, - 0.22405073046684265, - 0.21015295386314392, - 0.18856874108314514, - 0.15988677740097046, - 0.12488950788974762, - -0.2681609094142914, - -0.23777423799037933, - -0.20285573601722717, - -0.16435787081718445, - -0.12333080172538757, - -0.08089364320039749, - -0.03820392116904259, - 0.0035738572478294373, - 0.04330012947320938, - 0.07989123463630676, - 0.11234907805919647, - 0.13978829979896545, - 0.16146041452884674, - 0.1767742931842804, - 0.1853121817111969, - 0.18684121966362, - 0.18131965398788452, - 0.16889816522598267, - 0.14991550147533417, - 0.12488950788974762, - -0.2681609094142914, - -0.2507479190826416, - -0.2284492403268814, - -0.2018730491399765, - -0.17174434661865234, - -0.13888496160507202, - -0.10419116914272308, - -0.06860934942960739, - -0.033110082149505615, - 0.0013383030891418457, - 0.03379615396261215, - 0.06337808072566986, - 0.08927720785140991, - 0.1107870489358902, - 0.12732085585594177, - 0.13842764496803284, - 0.14380447566509247, - 0.14330466091632843, - 0.1369418203830719, - 0.12488950788974762, - -0.268160879611969, - -0.2653180956840515, - -0.2571921646595001, - -0.24400471150875092, - -0.22611548006534576, - -0.20401246845722198, - -0.17829853296279907, - -0.1496751308441162, - -0.11892301589250565, - -0.08688101917505264, - -0.05442317575216293, - -0.022434845566749573, - 0.008211418986320496, - 0.036679670214653015, - 0.062193334102630615, - 0.08405651152133942, - 0.10167281329631805, - 0.11456172168254852, - 0.1223716288805008, - 0.12488950788974762 - ], - "y": [ - -1.6223337650299072, - -1.6183587312698364, - -1.611006736755371, - -1.600478172302246, - -1.5870602130889893, - -1.5711188316345215, - -1.5530890226364136, - -1.533462405204773, - -1.5127745866775513, - -1.4915895462036133, - -1.4704854488372803, - -1.4500378370285034, - -1.4308044910430908, - -1.4133100509643555, - -1.3980315923690796, - -1.3853861093521118, - -1.375718355178833, - -1.3692920207977295, - -1.36628258228302, - -1.366771936416626, - -1.6223337650299072, - -1.6124823093414307, - -1.5994141101837158, - -1.5834856033325195, - -1.5651311874389648, - -1.5448516607284546, - -1.5232000350952148, - -1.5007669925689697, - -1.4781644344329834, - -1.4560089111328125, - -1.4349048137664795, - -1.415427803993225, - -1.398108959197998, - -1.3834209442138672, - -1.3717644214630127, - -1.3634570837020874, - -1.3587257862091064, - -1.3576993942260742, - -1.3604061603546143, - -1.366771936416626, - -1.6223337650299072, - -1.6074845790863037, - -1.5895549058914185, - -1.5690338611602783, - -1.5464812517166138, - -1.5225120782852173, - -1.497780203819275, - -1.472960352897644, - -1.4487295150756836, - -1.425748586654663, - -1.40464448928833, - -1.3859928846359253, - -1.370302438735962, - -1.3580012321472168, - -1.3494248390197754, - -1.3448071479797363, - -1.3442740440368652, - -1.3478403091430664, - -1.3554084300994873, - -1.366771936416626, - -1.6223337650299072, - -1.6039071083068848, - -1.5824975967407227, - -1.5586891174316406, - -1.5331312417984009, - -1.5065209865570068, - -1.4795843362808228, - -1.45305597782135, - -1.427659511566162, - -1.404087781906128, - -1.382983684539795, - -1.3649228811264038, - -1.350398063659668, - -1.3398053646087646, - -1.333433747291565, - -1.3314571380615234, - -1.3339293003082275, - -1.340782880783081, - -1.3518309593200684, - -1.366771936416626, - -1.6223337650299072, - -1.602137565612793, - -1.5790067911148071, - -1.5535722970962524, - -1.526528000831604, - -1.4986114501953125, - -1.4705841541290283, - -1.4432107210159302, - -1.4172377586364746, - -1.393373727798462, - -1.372269630432129, - -1.3545010089874268, - -1.3405526876449585, - -1.3308051824569702, - -1.3255242109298706, - -1.3248538970947266, - -1.3288124799728394, - -1.3372920751571655, - -1.3500614166259766, - -1.366771936416626, - -1.6223337650299072, - -1.6023677587509155, - -1.579460859298706, - -1.554237961769104, - -1.5273869037628174, - -1.4996403455734253, - -1.4717549085617065, - -1.4444913864135742, - -1.418593406677246, - -1.3947674036026, - -1.373663306236267, - -1.3558567762374878, - -1.341833472251892, - -1.3319759368896484, - -1.3265531063079834, - -1.32571280002594, - -1.329478144645691, - -1.3377461433410645, - -1.3502916097640991, - -1.366771936416626, - -1.6223337650299072, - -1.6045727729797363, - -1.5838106870651245, - -1.5606138706207275, - -1.535615086555481, - -1.5094963312149048, - -1.482969880104065, - -1.4567593336105347, - -1.431579828262329, - -1.4081178903579712, - -1.3870137929916382, - -1.3688430786132812, - -1.3541014194488525, - -1.3431909084320068, - -1.336409091949463, - -1.3339409828186035, - -1.3358540534973145, - -1.342095971107483, - -1.3524965047836304, - -1.366771936416626, - -1.6223337650299072, - -1.6085134744644165, - -1.5915846824645996, - -1.5720092058181763, - -1.5503207445144653, - -1.527111291885376, - -1.5030136108398438, - -1.4786851406097412, - -1.4547895193099976, - -1.431978464126587, - -1.410874366760254, - -1.3920527696609497, - -1.3760271072387695, - -1.363234519958496, - -1.3540239334106445, - -1.348646640777588, - -1.3472493886947632, - -1.349869966506958, - -1.3564373254776, - -1.366771936416626, - -1.6223337650299072, - -1.6137630939483643, - -1.601940631866455, - -1.587188959121704, - -1.5699104070663452, - -1.5505763292312622, - -1.5297141075134277, - -1.5078927278518677, - -1.485707402229309, - -1.4637634754180908, - -1.4426593780517578, - -1.4229707717895508, - -1.405234694480896, - -1.38993501663208, - -1.3774890899658203, - -1.3682363033294678, - -1.362429141998291, - -1.3602259159088135, - -1.3616868257522583, - -1.366771936416626, - -1.6223337650299072, - -1.6197525262832642, - -1.6137561798095703, - -1.6045082807540894, - -1.5922610759735107, - -1.5773487091064453, - -1.5601779222488403, - -1.5412169694900513, - -1.520983099937439, - -1.500028371810913, - -1.47892427444458, - -1.4582464694976807, - -1.4385589361190796, - -1.4203988313674927, - -1.4042614698410034, - -1.3905870914459229, - -1.3797484636306763, - -1.3720414638519287, - -1.3676762580871582, - -1.366771936416626, - -1.6223337650299072, - -1.6258327960968018, - -1.62575101852417, - -1.6220903396606445, - -1.6149508953094482, - -1.604527235031128, - -1.5911037921905518, - -1.5750467777252197, - -1.5567939281463623, - -1.5368434190750122, - -1.5157393217086792, - -1.494057297706604, - -1.472388744354248, - -1.4513248205184937, - -1.431439995765686, - -1.4132767915725708, - -1.3973305225372314, - -1.3840363025665283, - -1.3737566471099854, - -1.366771936416626, - -1.6223337650299072, - -1.6313451528549194, - -1.6366251707077026, - -1.638029932975769, - -1.6355209350585938, - -1.6291667222976685, - -1.619140625, - -1.6057161092758179, - -1.5892592668533325, - -1.5702191591262817, - -1.5491149425506592, - -1.5265225172042847, - -1.5030580759048462, - -1.4793615341186523, - -1.4560794830322266, - -1.4338468313217163, - -1.413270115852356, - -1.394910454750061, - -1.3792688846588135, - -1.366771936416626, - -1.6223337650299072, - -1.6356920003890991, - -1.645200490951538, - -1.6505995988845825, - -1.6517421007156372, - -1.648597002029419, - -1.6412500143051147, - -1.62990140914917, - -1.6148608922958374, - -1.5965386629104614, - -1.5754345655441284, - -1.5521241426467896, - -1.5272433757781982, - -1.501470923423767, - -1.475509762763977, - -1.4500679969787598, - -1.4258397817611694, - -1.4034857749938965, - -1.3836158514022827, - -1.366771936416626, - -1.6223337650299072, - -1.6384024620056152, - -1.6505473852157593, - -1.6584372520446777, - -1.6618566513061523, - -1.6607125997543335, - -1.6550359725952148, - -1.6449819803237915, - -1.6308245658874512, - -1.6129499673843384, - -1.5918458700180054, - -1.5680878162384033, - -1.5423239469528198, - -1.5152570009231567, - -1.4876253604888916, - -1.4601826667785645, - -1.4336774349212646, - -1.4088327884674072, - -1.3863263130187988, - -1.366771936416626, - -1.6223337650299072, - -1.6391828060150146, - -1.6520867347717285, - -1.660693645477295, - -1.6647685766220093, - -1.6642005443572998, - -1.6590049266815186, - -1.6493234634399414, - -1.6354202032089233, - -1.6176745891571045, - -1.5965704917907715, - -1.572683572769165, - -1.5466654300689697, - -1.519225835800171, - -1.491113305091858, - -1.4630944728851318, - -1.4359338283538818, - -1.410372018814087, - -1.3871066570281982, - -1.366771936416626, - -1.6223337650299072, - -1.6379483938217163, - -1.6496516466140747, - -1.6571241617202759, - -1.6601622104644775, - -1.6586828231811523, - -1.652726411819458, - -1.6424554586410522, - -1.6281501054763794, - -1.6102005243301392, - -1.5890964269638062, - -1.5654133558273315, - -1.5397974252700806, - -1.5129474401474, - -1.4855955839157104, - -1.4584881067276, - -1.4323643445968628, - -1.407936930656433, - -1.3858722448349, - -1.366771936416626, - -1.6223337650299072, - -1.6348330974578857, - -1.6435059309005737, - -1.648115634918213, - -1.6485366821289062, - -1.6447573900222778, - -1.6368809938430786, - -1.6251221895217896, - -1.6098017692565918, - -1.5913376808166504, - -1.5702335834503174, - -1.5470651388168335, - -1.5224641561508179, - -1.4971020221710205, - -1.471670150756836, - -1.4468625783920288, - -1.4233558177947998, - -1.4017912149429321, - -1.3827568292617798, - -1.366771936416626, - -1.6223337650299072, - -1.6301743984222412, - -1.6343154907226562, - -1.6346443891525269, - -1.6311519145965576, - -1.6239334344863892, - -1.6131856441497803, - -1.599202036857605, - -1.5823637247085571, - -1.563130259513855, - -1.542026162147522, - -1.5196270942687988, - -1.4965440034866333, - -1.4734066724777222, - -1.4508461952209473, - -1.4294778108596802, - -1.4098845720291138, - -1.3926008939743042, - -1.3780981302261353, - -1.366771936416626, - -1.6223337650299072, - -1.6244771480560303, - -1.6230765581130981, - -1.618170142173767, - -1.6098917722702026, - -1.5984673500061035, - -1.5842082500457764, - -1.5675036907196045, - -1.548809289932251, - -1.528634786605835, - -1.507530689239502, - -1.4860725402832031, - -1.4648457765579224, - -1.4444292783737183, - -1.4253801107406616, - -1.4082176685333252, - -1.393410325050354, - -1.3813618421554565, - -1.3724008798599243, - -1.366771936416626, - -1.6223337650299072, - -1.6183587312698364, - -1.611006736755371, - -1.600478172302246, - -1.5870602130889893, - -1.5711188316345215, - -1.5530890226364136, - -1.533462405204773, - -1.5127745866775513, - -1.4915895462036133, - -1.4704854488372803, - -1.4500378370285034, - -1.4308044910430908, - -1.413309931755066, - -1.3980315923690796, - -1.3853861093521118, - -1.375718355178833, - -1.3692920207977295, - -1.36628258228302, - -1.366771936416626 - ], - "z": [ - 0.5884954333305359, - 0.5905572175979614, - 0.5992671251296997, - 0.6143876314163208, - 0.6355062127113342, - 0.6620467901229858, - 0.6932854652404785, - 0.7283701300621033, - 0.7663437128067017, - 0.8061704635620117, - 0.8467639684677124, - 0.8870168924331665, - 0.9258313775062561, - 0.9621485471725464, - 0.9949777722358704, - 1.023423671722412, - 1.0467101335525513, - 1.064202070236206, - 1.0754224061965942, - 1.0800650119781494, - 0.5884954333305359, - 0.5991662740707397, - 0.6162503957748413, - 0.6392818689346313, - 0.6676323413848877, - 0.7005285024642944, - 0.7370731234550476, - 0.776269257068634, - 0.8170477747917175, - 0.8582963943481445, - 0.8988898396492004, - 0.9377209544181824, - 0.9737305045127869, - 1.0059361457824707, - 1.0334594249725342, - 1.0555497407913208, - 1.0716043710708618, - 1.0811853408813477, - 1.0840314626693726, - 1.0800650119781494, - 0.5884954333305359, - 0.6069822311401367, - 0.6316691040992737, - 0.661882758140564, - 0.6967989206314087, - 0.7354651689529419, - 0.7768268585205078, - 0.8197557330131531, - 0.8630808591842651, - 0.905620276927948, - 0.9462137818336487, - 0.98375403881073, - 1.0172170400619507, - 1.0456899404525757, - 1.0683962106704712, - 1.0847163200378418, - 1.0942052602767944, - 1.0966041088104248, - 1.0918474197387695, - 1.0800650119781494, - 0.5884954333305359, - 0.613158106803894, - 0.6438524127006531, - 0.6797411441802979, - 0.7198452949523926, - 0.763070821762085, - 0.8082388639450073, - 0.854117214679718, - 0.8994544744491577, - 0.9430139660835266, - 0.9836074113845825, - 1.0201276540756226, - 1.0515785217285156, - 1.0771019458770752, - 1.0960018634796143, - 1.1077626943588257, - 1.1120636463165283, - 1.1087874174118042, - 1.0980232954025269, - 1.0800650119781494, - 0.5884954333305359, - 0.6170246601104736, - 0.6514800786972046, - 0.6909218430519104, - 0.7342740297317505, - 0.7803540825843811, - 0.8279051184654236, - 0.8756300210952759, - 0.9222270846366882, - 0.9664251208305359, - 1.0070185661315918, - 1.0429002046585083, - 1.0730912685394287, - 1.0967681407928467, - 1.1132850646972656, - 1.1221914291381836, - 1.123244285583496, - 1.116415023803711, - 1.1018898487091064, - 1.0800650119781494, - 0.5884954333305359, - 0.6181628704071045, - 0.6537255048751831, - 0.6942131519317627, - 0.7385215163230896, - 0.7854418754577637, - 0.8336944580078125, - 0.8819629549980164, - 0.9289308190345764, - 0.9733169078826904, - 1.0139104127883911, - 1.049604058265686, - 1.0794241428375244, - 1.1025575399398804, - 1.118372917175293, - 1.1264389753341675, - 1.1265356540679932, - 1.1186604499816895, - 1.1030280590057373, - 1.0800650119781494, - 0.5884954333305359, - 0.6164494752883911, - 0.6503453254699707, - 0.6892585754394531, - 0.7321275472640991, - 0.7777829766273499, - 0.8249794840812683, - 0.8724297285079956, - 0.9188393354415894, - 0.9629424214363098, - 1.0035358667373657, - 1.0395125150680542, - 1.0698909759521484, - 1.0938425064086914, - 1.1107139587402344, - 1.1200449466705322, - 1.1215810775756836, - 1.1152803897857666, - 1.101314663887024, - 1.0800650119781494, - 0.5884954333305359, - 0.6120700240135193, - 0.6417059898376465, - 0.6765948534011841, - 0.7157849073410034, - 0.7582072615623474, - 0.8027046918869019, - 0.8480634093284607, - 0.8930461406707764, - 0.9364259243011475, - 0.9770194292068481, - 1.0137193202972412, - 1.0455245971679688, - 1.0715677738189697, - 1.091138243675232, - 1.1037023067474365, - 1.1089173555374146, - 1.1066409349441528, - 1.0969352722167969, - 1.0800650119781494, - 0.5884954333305359, - 0.6054992079734802, - 0.6287435293197632, - 0.6575943231582642, - 0.6912647485733032, - 0.728836178779602, - 0.7692838311195374, - 0.8115044236183167, - 0.8543463349342346, - 0.8966408967971802, - 0.9372343420982361, - 0.9750195145606995, - 1.0089657306671143, - 1.0381468534469604, - 1.0617671012878418, - 1.0791821479797363, - 1.0899168252944946, - 1.0936784744262695, - 1.0903643369674683, - 1.0800650119781494, - 0.5884954333305359, - 0.5974489450454712, - 0.6128627061843872, - 0.634316086769104, - 0.6612240076065063, - 0.6928523778915405, - 0.7283385992050171, - 0.7667146325111389, - 0.8069336414337158, - 0.8478986024856567, - 0.8884921073913574, - 0.9276068210601807, - 0.964175820350647, - 0.997201681137085, - 1.0257834196090698, - 1.0491414070129395, - 1.0666385889053345, - 1.0777976512908936, - 1.082314133644104, - 1.0800650119781494, - 0.5884954333305359, - 0.5887917876243591, - 0.5957844257354736, - 0.6092826128005981, - 0.6289181709289551, - 0.654155433177948, - 0.6843060255050659, - 0.7185475826263428, - 0.7559459805488586, - 0.7954810857772827, - 0.8360745906829834, - 0.8766191601753235, - 0.9160087704658508, - 0.9531691074371338, - 0.9870864152908325, - 1.0168355703353882, - 1.0416051149368286, - 1.06071937084198, - 1.0736570358276367, - 1.0800650119781494, - 0.5884954333305359, - 0.5804657340049744, - 0.5793594121932983, - 0.5852067470550537, - 0.5978480577468872, - 0.6169386506080627, - 0.6419577598571777, - 0.672222912311554, - 0.7069085836410522, - 0.7450686097145081, - 0.7856621146202087, - 0.8275817632675171, - 0.8696841597557068, - 0.9108208417892456, - 0.9498696327209473, - 0.9857654571533203, - 1.0175292491912842, - 1.0442943572998047, - 1.0653308629989624, - 1.0800650119781494, - 0.5884954333305359, - 0.5733730792999268, - 0.565367579460144, - 0.5646973848342896, - 0.571380615234375, - 0.5852351188659668, - 0.6058828830718994, - 0.632760763168335, - 0.6651355028152466, - 0.7021241188049316, - 0.7427176237106323, - 0.7858086824417114, - 0.830221951007843, - 0.8747459053993225, - 0.9181660413742065, - 0.9592980146408081, - 0.9970198273658752, - 1.0303025245666504, - 1.0582382678985596, - 1.0800650119781494, - 0.5884954333305359, - 0.568282425403595, - 0.5553251504898071, - 0.5499770641326904, - 0.5523839592933655, - 0.5624803304672241, - 0.5799906253814697, - 0.6044372320175171, - 0.6351534724235535, - 0.6713013648986816, - 0.7118948101997375, - 0.7558266520500183, - 0.8018984794616699, - 0.8488536477088928, - 0.8954112529754639, - 0.9403013586997986, - 0.9822995066642761, - 1.0202600955963135, - 1.053147554397583, - 1.0800650119781494, - 0.5884954333305359, - 0.5657454133033752, - 0.5503203272819519, - 0.5426409244537354, - 0.5429167151451111, - 0.5511400699615479, - 0.5670868158340454, - 0.5903218984603882, - 0.6202115416526794, - 0.6559403538703918, - 0.6965337991714478, - 0.7408847212791443, - 0.787783145904541, - 0.8359498977661133, - 0.8840711116790771, - 0.9308341145515442, - 0.9749634265899658, - 1.015255331993103, - 1.0506105422973633, - 1.0800650119781494, - 0.5884954333305359, - 0.5660369992256165, - 0.5508955717086792, - 0.543484091758728, - 0.5440047979354858, - 0.5524434447288513, - 0.5685698986053467, - 0.59194415807724, - 0.6219288110733032, - 0.6577057838439941, - 0.6982992887496948, - 0.7426019906997681, - 0.7894054055213928, - 0.8374329209327698, - 0.8853744268417358, - 0.931922197341919, - 0.9758065938949585, - 1.0158305168151855, - 1.0509021282196045, - 1.0800650119781494, - 0.5884954333305359, - 0.5691255331039429, - 0.5569883584976196, - 0.5524150729179382, - 0.555530309677124, - 0.5662490129470825, - 0.5842790007591248, - 0.6091283559799194, - 0.6401192545890808, - 0.6764063239097595, - 0.7169998288154602, - 0.7607924342155457, - 0.8065895438194275, - 0.8531420230865479, - 0.899179995059967, - 0.9434477090835571, - 0.9847375750541687, - 1.0219234228134155, - 1.0539907217025757, - 1.0800650119781494, - 0.5884954333305359, - 0.5746763944625854, - 0.5679386854171753, - 0.568466067314148, - 0.5762442350387573, - 0.5910608768463135, - 0.612511932849884, - 0.6400122046470642, - 0.6728116273880005, - 0.7100155353546143, - 0.7506089806556702, - 0.7934848070144653, - 0.837473452091217, - 0.8813749551773071, - 0.9239917993545532, - 0.9641616344451904, - 1.0007885694503784, - 1.0328736305236816, - 1.0595415830612183, - 1.0800650119781494, - 0.5884954333305359, - 0.5820879936218262, - 0.5825597047805786, - 0.5898978114128113, - 0.6039019227027893, - 0.6241901516914368, - 0.6502091288566589, - 0.6812490224838257, - 0.7164632678031921, - 0.7548912763595581, - 0.795484721660614, - 0.837136447429657, - 0.8787102699279785, - 0.919072151184082, - 0.9571211338043213, - 0.9918193221092224, - 1.022220253944397, - 1.0474947690963745, - 1.066953182220459, - 1.0800650119781494, - 0.5884954333305359, - 0.5905572175979614, - 0.5992671251296997, - 0.6143876314163208, - 0.6355062127113342, - 0.6620467901229858, - 0.6932855248451233, - 0.7283701300621033, - 0.7663437724113464, - 0.8061704635620117, - 0.8467639684677124, - 0.8870169520378113, - 0.9258313775062561, - 0.9621485471725464, - 0.9949777722358704, - 1.023423671722412, - 1.0467101335525513, - 1.064202070236206, - 1.0754224061965942, - 1.0800650119781494 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.2918924391269684, - -0.289021372795105, - -0.28079289197921753, - -0.2674314081668854, - -0.24930143356323242, - -0.2268974781036377, - -0.20083066821098328, - -0.1718120574951172, - -0.14063318073749542, - -0.10814451426267624, - -0.07523226737976074, - -0.042794208973646164, - -0.011715151369571686, - 0.017157144844532013, - 0.04303509742021561, - 0.06521285325288773, - 0.08308546990156174, - 0.09616541117429733, - 0.10409585386514664, - 0.10666053742170334, - -0.2918924391269684, - -0.30382782220840454, - -0.3100018799304962, - -0.31024619936943054, - -0.30455416440963745, - -0.29308101534843445, - -0.27613967657089233, - -0.2541923224925995, - -0.22783756256103516, - -0.19779428839683533, - -0.16488204896450043, - -0.129998579621315, - -0.09409540891647339, - -0.05815187096595764, - -0.023148447275161743, - 0.009960107505321503, - 0.04027066379785538, - 0.06695642322301865, - 0.08928941935300827, - 0.10666053742170334, - -0.2918924391269684, - -0.3170463442802429, - -0.336078405380249, - -0.3484693765640259, - -0.3538813889026642, - -0.3521667420864105, - -0.3433722257614136, - -0.3277377486228943, - -0.3056897521018982, - -0.277829647064209, - -0.2449173927307129, - -0.20785076916217804, - -0.1676408350467682, - -0.12538442015647888, - -0.08223418146371841, - -0.039367109537124634, - 0.0020474866032600403, - 0.040879927575588226, - 0.07607089728116989, - 0.10666053742170334, - -0.2918924391269684, - -0.32724452018737793, - -0.3561966121196747, - -0.37795883417129517, - -0.3919377028942108, - -0.3977518081665039, - -0.3952426314353943, - -0.3844785988330841, - -0.36575329303741455, - -0.33957749605178833, - -0.3066652715206146, - -0.2679143249988556, - -0.224381685256958, - -0.1772548258304596, - -0.1278192549943924, - -0.07742340862751007, - -0.027441956102848053, - 0.020761705935001373, - 0.0658726915717125, - 0.10666053742170334, - -0.2918924391269684, - -0.33331725001335144, - -0.3681764006614685, - -0.3955189287662506, - -0.41459909081459045, - -0.42489638924598694, - -0.42612990736961365, - -0.41826608777046204, - -0.4015193581581116, - -0.37634649872779846, - -0.34343427419662476, - -0.3036803901195526, - -0.25816917419433594, - -0.20814210176467896, - -0.15496382117271423, - -0.1000848263502121, - -0.0450020432472229, - 0.00878191739320755, - 0.05979997664690018, - 0.10666053742170334, - -0.2918924391269684, - -0.33460643887519836, - -0.3707195818424225, - -0.3992467522621155, - -0.4194098711013794, - -0.43065887689590454, - -0.4326869547367096, - -0.4254388213157654, - -0.4091120958328247, - -0.3841521739959717, - -0.351239949464798, - -0.31127312779426575, - -0.2653419077396393, - -0.2146991491317749, - -0.16072632372379303, - -0.10489559173583984, - -0.04872988164424896, - 0.0062387362122535706, - 0.05851080268621445, - 0.10666053742170334, - -0.2918924391269684, - -0.3309723436832428, - -0.3635505735874176, - -0.38873836398124695, - -0.4058487117290497, - -0.4144149124622345, - -0.4142032265663147, - -0.40521952509880066, - -0.3877088129520416, - -0.3621486723423004, - -0.3292364180088043, - -0.28986984491348267, - -0.24512261152267456, - -0.19621542096138, - -0.1444823443889618, - -0.09133444726467133, - -0.03822147846221924, - 0.013407744467258453, - 0.062144868075847626, - 0.10666053742170334, - -0.2918924391269684, - -0.3228088617324829, - -0.3474462330341339, - -0.3651324510574341, - -0.37538519501686096, - -0.37792468070983887, - -0.37268170714378357, - -0.3597992956638336, - -0.33962878584861755, - -0.312720388174057, - -0.2798081636428833, - -0.2417898178100586, - -0.19970238208770752, - -0.15469390153884888, - -0.10799211263656616, - -0.06087090075016022, - -0.014615580439567566, - 0.029512085020542145, - 0.0703083798289299, - 0.10666053742170334, - -0.2918924391269684, - -0.3110005557537079, - -0.3241516947746277, - -0.3309871256351471, - -0.33132046461105347, - -0.3251425325870514, - -0.3126218914985657, - -0.2941000759601593, - -0.2700822651386261, - -0.24122366309165955, - -0.20831140875816345, - -0.17224328219890594, - -0.1340031623840332, - -0.09463407844305038, - -0.05520997941493988, - -0.016806185245513916, - 0.019529730081558228, - 0.052806608378887177, - 0.08211668580770493, - 0.10666053742170334, - -0.2918924391269684, - -0.2968270480632782, - -0.29619133472442627, - -0.29000258445739746, - -0.27842965722084045, - -0.2617882192134857, - -0.24053221940994263, - -0.2152414321899414, - -0.18660572171211243, - -0.15540623664855957, - -0.12249398976564407, - -0.08876675367355347, - -0.05514451488852501, - -0.022544391453266144, - 0.00814434140920639, - 0.0360846146941185, - 0.06051427870988846, - 0.08076696842908859, - 0.09629017859697342, - 0.10666053742170334, - -0.2918924391269684, - -0.2818242907524109, - -0.2665950655937195, - -0.2466200888156891, - -0.2224443256855011, - -0.19472716748714447, - -0.16422468423843384, - -0.13176889717578888, - -0.09824512153863907, - -0.06456779688596725, - -0.031655553728342056, - -0.0004061460494995117, - 0.02832801640033722, - 0.05376312881708145, - 0.07520540803670883, - 0.09206996113061905, - 0.10389677435159683, - 0.11036323755979538, - 0.11129293590784073, - 0.10666053742170334, - -0.2918924391269684, - -0.2676180601119995, - -0.23857009410858154, - -0.20554083585739136, - -0.16943129897117615, - -0.13122648000717163, - -0.09196841716766357, - -0.052728038281202316, - -0.014575697481632233, - 0.021447911858558655, - 0.05436015874147415, - 0.08326327055692673, - 0.10736887902021408, - 0.12601938843727112, - 0.13870611786842346, - 0.1450829803943634, - 0.14497601985931396, - 0.13838821649551392, - 0.1254991590976715, - 0.10666052252054214, - -0.2918924391269684, - -0.25574779510498047, - -0.21515336632728577, - -0.17121639847755432, - -0.12513543665409088, - -0.07816743105649948, - -0.031593531370162964, - 0.013315849006175995, - 0.05533566325902939, - 0.09331975132226944, - 0.12623199820518494, - 0.15317463874816895, - 0.1734127700328827, - 0.18639427423477173, - 0.1917651891708374, - 0.18937888741493225, - 0.179300457239151, - 0.1618049442768097, - 0.13736942410469055, - 0.10666052252054214, - -0.2918924391269684, - -0.24749985337257385, - -0.19888246059417725, - -0.14736633002758026, - -0.09435679018497467, - -0.04129977151751518, - 0.010357499122619629, - 0.05920591205358505, - 0.10391301661729813, - 0.14325931668281555, - 0.17617154121398926, - 0.2017519772052765, - 0.21930283308029175, - 0.22834530472755432, - 0.2286328375339508, - 0.22015750408172607, - 0.20315054059028625, - 0.1780758500099182, - 0.14561736583709717, - 0.10666052252054214, - -0.2918924391269684, - -0.24376800656318665, - -0.1915205717086792, - -0.13657519221305847, - -0.0804307609796524, - -0.024618737399578094, - 0.029338538646697998, - 0.07996917515993118, - 0.12589216232299805, - 0.165854811668396, - 0.1987670361995697, - 0.223731130361557, - 0.24006608128547668, - 0.2473263442516327, - 0.2453138530254364, - 0.23408353328704834, - 0.21394166350364685, - 0.18543773889541626, - 0.14934921264648438, - 0.10666052252054214, - -0.2918924391269684, - -0.24495667219161987, - -0.19386543333530426, - -0.14001235365867615, - -0.08486644923686981, - -0.029931940138339996, - 0.023292750120162964, - 0.07335572689771652, - 0.11889145523309708, - 0.1586577594280243, - 0.191569983959198, - 0.21673041582107544, - 0.23345264792442322, - 0.24128058552742004, - 0.2400006651878357, - 0.22964784502983093, - 0.21050450205802917, - 0.18309286236763, - 0.14816057682037354, - 0.10666052252054214, - -0.2918924391269684, - -0.25093701481819153, - -0.2056630253791809, - -0.15730535984039307, - -0.10718314349651337, - -0.056663628667593, - -0.007124751806259155, - 0.04008213430643082, - 0.08366937190294266, - 0.12244801968336105, - 0.15536025166511536, - 0.18150833249092102, - 0.20017904043197632, - 0.21086305379867554, - 0.2132689654827118, - 0.207331120967865, - 0.19321149587631226, - 0.17129528522491455, - 0.1421802043914795, - 0.10666052252054214, - -0.2918924391269684, - -0.26106101274490356, - -0.2256348729133606, - -0.18658025562763214, - -0.14496257901191711, - -0.10191702097654343, - -0.05861775577068329, - -0.01624586433172226, - 0.024042852222919464, - 0.06114942580461502, - 0.09406166523694992, - 0.12188182026147842, - 0.14385104179382324, - 0.1593700647354126, - 0.16801556944847107, - 0.16955170035362244, - 0.16393661499023438, - 0.15132343769073486, - 0.13205620646476746, - 0.10666052252054214, - -0.2918924391269684, - -0.27423155307769775, - -0.2516166865825653, - -0.22466465830802917, - -0.1941106915473938, - -0.16078823804855347, - -0.12560619413852692, - -0.0895242840051651, - -0.05352669581770897, - -0.018595360219478607, - 0.01431688666343689, - 0.04431227594614029, - 0.0705726370215416, - 0.09238161891698837, - 0.10914435237646103, - 0.12040359526872635, - 0.12585222721099854, - 0.12534162402153015, - 0.11888567358255386, - 0.10666052252054214, - -0.2918924391269684, - -0.289021372795105, - -0.2807929217815399, - -0.2674314081668854, - -0.2493014633655548, - -0.22689750790596008, - -0.20083071291446686, - -0.17181211709976196, - -0.140633225440979, - -0.10814456641674042, - -0.07523231953382492, - -0.042794257402420044, - -0.011715196073055267, - 0.01715710014104843, - 0.04303506761789322, - 0.06521282345056534, - 0.08308544009923935, - 0.09616539627313614, - 0.10409585386514664, - 0.10666053742170334 - ], - "y": [ - -1.6374891996383667, - -1.633862018585205, - -1.626799464225769, - -1.6164941787719727, - -1.6032273769378662, - -1.5873609781265259, - -1.5693275928497314, - -1.549619197845459, - -1.5287734270095825, - -1.5073589086532593, - -1.485959768295288, - -1.4651596546173096, - -1.445525884628296, - -1.4275941848754883, - -1.4118536710739136, - -1.3987336158752441, - -1.3885918855667114, - -1.3817052841186523, - -1.3782614469528198, - -1.3783544301986694, - -1.6374891996383667, - -1.6277155876159668, - -1.6146743297576904, - -1.5987211465835571, - -1.5802911520004272, - -1.5598870515823364, - -1.5380655527114868, - -1.5154218673706055, - -1.4925734996795654, - -1.4701437950134277, - -1.4487446546554565, - -1.428959608078003, - -1.4113285541534424, - -1.3963322639465332, - -1.3843798637390137, - -1.3757972717285156, - -1.370818853378296, - -1.3695801496505737, - -1.3721150159835815, - -1.3783544301986694, - -1.6374891996383667, - -1.6224368810653687, - -1.604260802268982, - -1.5834568738937378, - -1.560592532157898, - -1.536291480064392, - -1.5112165212631226, - -1.4860517978668213, - -1.4614835977554321, - -1.43818199634552, - -1.4167828559875488, - -1.3978697061538696, - -1.3819584846496582, - -1.369483232498169, - -1.3607841730117798, - -1.3560986518859863, - -1.3555545806884766, - -1.3591666221618652, - -1.3668363094329834, - -1.3783544301986694, - -1.6374891996383667, - -1.6185977458953857, - -1.5966873168945312, - -1.5723555088043213, - -1.5462661981582642, - -1.519131064414978, - -1.491689920425415, - -1.4646917581558228, - -1.4388726949691772, - -1.414937138557434, - -1.393537998199463, - -1.3752588033676147, - -1.3605984449386597, - -1.3499566316604614, - -1.3436237573623657, - -1.341772437095642, - -1.3444533348083496, - -1.3515931367874146, - -1.3629971742630005, - -1.3783544301986694, - -1.6374891996383667, - -1.6166143417358398, - -1.5927746295928955, - -1.5666202306747437, - -1.5388648509979248, - -1.5102653503417969, - -1.4816018342971802, - -1.4536564350128174, - -1.427191138267517, - -1.4029279947280884, - -1.3815288543701172, - -1.3635772466659546, - -1.3495631217956543, - -1.3398685455322266, - -1.3347580432891846, - -1.3343709707260132, - -1.3387179374694824, - -1.3476803302764893, - -1.3610137701034546, - -1.3783544301986694, - -1.6374891996383667, - -1.616701602935791, - -1.5929466485977173, - -1.566872477531433, - -1.5391902923583984, - -1.510655164718628, - -1.4820455312728882, - -1.454141616821289, - -1.4277048110961914, - -1.4034560918807983, - -1.3820568323135376, - -1.364090919494629, - -1.350048303604126, - -1.340312123298645, - -1.3351478576660156, - -1.3346964120864868, - -1.3389701843261719, - -1.3478524684906006, - -1.3611009120941162, - -1.3783544301986694, - -1.6374891996383667, - -1.6188499927520752, - -1.5971847772598267, - -1.573084831237793, - -1.5472073554992676, - -1.5202583074569702, - -1.4929726123809814, - -1.4660948514938354, - -1.4403579235076904, - -1.41646409034729, - -1.3950648307800293, - -1.3767441511154175, - -1.3620015382766724, - -1.3512393236160278, - -1.344751000404358, - -1.342713475227356, - -1.3451825380325317, - -1.35209059715271, - -1.3632493019104004, - -1.3783544301986694, - -1.6374891996383667, - -1.6228266954421997, - -1.605029821395874, - -1.58458411693573, - -1.5620472431182861, - -1.5380339622497559, - -1.5131993293762207, - -1.4882206916809082, - -1.4637794494628906, - -1.440542459487915, - -1.4191431999206543, - -1.4001656770706177, - -1.3841273784637451, - -1.371466040611267, - -1.3625266551971436, - -1.357553482055664, - -1.3566818237304688, - -1.3599356412887573, - -1.3672261238098145, - -1.3783544301986694, - -1.6374891996383667, - -1.628200888633728, - -1.6156315803527832, - -1.6001242399215698, - -1.582101821899414, - -1.562056064605713, - -1.5405335426330566, - -1.518121600151062, - -1.4954313039779663, - -1.4730818271636963, - -1.4516825675964355, - -1.4318175315856934, - -1.414028286933899, - -1.398800253868103, - -1.3865487575531006, - -1.377608060836792, - -1.3722219467163086, - -1.370537281036377, - -1.3726003170013428, - -1.3783544301986694, - -1.6374891996383667, - -1.634390115737915, - -1.6278411149978638, - -1.6180211305618286, - -1.6051979064941406, - -1.5897213220596313, - -1.5720133781433105, - -1.5525572299957275, - -1.5318834781646729, - -1.5105561017990112, - -1.48915696144104, - -1.4682695865631104, - -1.4484639167785645, - -1.430280089378357, - -1.414214015007019, - -1.4007041454315186, - -1.3901188373565674, - -1.382746934890747, - -1.3787894248962402, - -1.3783544301986694, - -1.6374891996383667, - -1.6407235860824585, - -1.6403355598449707, - -1.6363354921340942, - -1.6288326978683472, - -1.6180317401885986, - -1.6042273044586182, - -1.5877959728240967, - -1.569185733795166, - -1.5489044189453125, - -1.5275052785873413, - -1.505571961402893, - -1.4837026596069336, - -1.4624940156936646, - -1.4425245523452759, - -1.424338936805725, - -1.408433198928833, - -1.3952412605285645, - -1.3851230144500732, - -1.3783544301986694, - -1.6374891996383667, - -1.646515130996704, - -1.6517606973648071, - -1.6530826091766357, - -1.6504449844360352, - -1.643919587135315, - -1.6336846351623535, - -1.6200190782546997, - -1.603295922279358, - -1.5839711427688599, - -1.5625720024108887, - -1.5396820306777954, - -1.5159258842468262, - -1.4919512271881104, - -1.4684123992919922, - -1.4459511041641235, - -1.4251803159713745, - -1.4066663980484009, - -1.3909145593643188, - -1.3783544301986694, - -1.6374891996383667, - -1.651137113571167, - -1.6608785390853882, - -1.666447639465332, - -1.6676926612854004, - -1.6645793914794922, - -1.6571930646896362, - -1.6457349061965942, - -1.630517601966858, - -1.611956238746643, - -1.5905569791793823, - -1.5669037103652954, - -1.5416415929794312, - -1.515459656715393, - -1.4890722036361694, - -1.4631987810134888, - -1.4385453462600708, - -1.4157843589782715, - -1.3955365419387817, - -1.3783544301986694, - -1.6374891996383667, - -1.6540886163711548, - -1.666701078414917, - -1.6749823093414307, - -1.6787066459655762, - -1.6777724027633667, - -1.6722050905227661, - -1.662156581878662, - -1.647900938987732, - -1.6298270225524902, - -1.6084277629852295, - -1.5842870473861694, - -1.558063268661499, - -1.5304718017578125, - -1.502265214920044, - -1.474212884902954, - -1.4470800161361694, - -1.4216067790985107, - -1.3984880447387695, - -1.3783544301986694, - -1.6374891996383667, - -1.6550499200820923, - -1.6685972213745117, - -1.6777617931365967, - -1.6822936534881592, - -1.682068943977356, - -1.6770939826965332, - -1.6675045490264893, - -1.653562068939209, - -1.6356468200683594, - -1.6142476797103882, - -1.5899481773376465, - -1.5634112358093262, - -1.5353606939315796, - -1.5065617561340332, - -1.4777997732162476, - -1.4498594999313354, - -1.423503041267395, - -1.399449348449707, - -1.3783544301986694, - -1.6374891996383667, - -1.653916597366333, - -1.666361689567566, - -1.6744848489761353, - -1.6780645847320557, - -1.6770033836364746, - -1.6713300943374634, - -1.6611993312835693, - -1.6468876600265503, - -1.628785252571106, - -1.6073861122131348, - -1.5832737684249878, - -1.5571060180664062, - -1.5295966863632202, - -1.5014961957931519, - -1.4735708236694336, - -1.446582555770874, - -1.4212673902511597, - -1.3983160257339478, - -1.3783544301986694, - -1.6374891996383667, - -1.6508116722106934, - -1.6602364778518677, - -1.6655066013336182, - -1.666478157043457, - -1.663124680519104, - -1.655537724494934, - -1.6439242362976074, - -1.628600835800171, - -1.6099857091903687, - -1.5885865688323975, - -1.5649869441986084, - -1.5398309230804443, - -1.5138044357299805, - -1.4876174926757812, - -1.461984395980835, - -1.437604308128357, - -1.415142297744751, - -1.395211100578308, - -1.3783544301986694, - -1.6374891996383667, - -1.6460715532302856, - -1.6508855819702148, - -1.6517999172210693, - -1.648789644241333, - -1.6419367790222168, - -1.6314284801483154, - -1.6175510883331299, - -1.600683331489563, - -1.5812853574752808, - -1.5598862171173096, - -1.53706955909729, - -1.5134577751159668, - -1.4896950721740723, - -1.466429591178894, - -1.444295883178711, - -1.423897624015808, - -1.4057914018630981, - -1.3904709815979004, - -1.3783544301986694, - -1.6374891996383667, - -1.6402099132537842, - -1.639322280883789, - -1.6348501443862915, - -1.6269159317016602, - -1.6157357692718506, - -1.6016147136688232, - -1.5849380493164062, - -1.5661605596542358, - -1.5457943677902222, - -1.524395227432251, - -1.5025466680526733, - -1.4808447360992432, - -1.4598814249038696, - -1.4402285814285278, - -1.422422170639038, - -1.4069478511810303, - -1.3942279815673828, - -1.384609341621399, - -1.3783544301986694, - -1.6374891996383667, - -1.633862018585205, - -1.626799464225769, - -1.6164941787719727, - -1.6032273769378662, - -1.5873609781265259, - -1.5693275928497314, - -1.549619197845459, - -1.5287734270095825, - -1.5073589086532593, - -1.4859596490859985, - -1.46515953540802, - -1.445525884628296, - -1.4275941848754883, - -1.4118536710739136, - -1.3987336158752441, - -1.3885918855667114, - -1.3817052841186523, - -1.3782614469528198, - -1.3783544301986694 - ], - "z": [ - 0.608784556388855, - 0.611094057559967, - 0.6201387047767639, - 0.6356717348098755, - 0.6572694778442383, - 0.6843428015708923, - 0.7161532640457153, - 0.7518330216407776, - 0.7904089689254761, - 0.8308287262916565, - 0.8719898462295532, - 0.9127695560455322, - 0.9520554542541504, - 0.988775908946991, - 1.0219292640686035, - 1.0506113767623901, - 1.0740395784378052, - 1.091575026512146, - 1.1027393341064453, - 1.1072279214859009, - 0.608784556388855, - 0.6197378039360046, - 0.6371903419494629, - 0.6606662273406982, - 0.6895250082015991, - 0.7229795455932617, - 0.76011723279953, - 0.7999250292778015, - 0.8413171768188477, - 0.8831645846366882, - 0.924325704574585, - 0.9636778235435486, - 1.0001474618911743, - 1.0327398777008057, - 1.0605660676956177, - 1.082866907119751, - 1.099034070968628, - 1.1086267232894897, - 1.111383080482483, - 1.1072279214859009, - 0.608784556388855, - 0.6275628805160522, - 0.6526271104812622, - 0.6832935810089111, - 0.7187257409095764, - 0.7579571008682251, - 0.7999175190925598, - 0.8434624671936035, - 0.8874041438102722, - 0.9305438995361328, - 0.9717050790786743, - 1.0097647905349731, - 1.043684959411621, - 1.072540283203125, - 1.095543622970581, - 1.1120675802230835, - 1.1216614246368408, - 1.124063491821289, - 1.1192080974578857, - 1.1072279214859009, - 0.608784556388855, - 0.6337214112281799, - 0.6647762060165405, - 0.7011017799377441, - 0.7417073249816895, - 0.7854851484298706, - 0.831241250038147, - 0.8777273297309875, - 0.923675537109375, - 0.9678324460983276, - 1.0089936256408691, - 1.0460361242294312, - 1.0779497623443604, - 1.1038639545440674, - 1.1230716705322266, - 1.1350491046905518, - 1.1394696235656738, - 1.1362125873565674, - 1.1253666877746582, - 1.1072279214859009, - 0.608784556388855, - 0.6375460028648376, - 0.6723209619522095, - 0.7121610641479492, - 0.7559793591499329, - 0.8025806546211243, - 0.8506938815116882, - 0.8990065455436707, - 0.9462007880210876, - 0.9909893870353699, - 1.0321505069732666, - 1.0685614347457886, - 1.0992289781570435, - 1.1233165264129639, - 1.140167236328125, - 1.14932119846344, - 1.150528907775879, - 1.1437573432922363, - 1.129191279411316, - 1.1072279214859009, - 0.608784556388855, - 0.6386221647262573, - 0.6744439601898193, - 0.7152729034423828, - 0.7599952220916748, - 0.8073909878730774, - 0.8561674952507019, - 0.9049940705299377, - 0.9525389671325684, - 0.9975053071975708, - 1.0386663675308228, - 1.0748995542526245, - 1.1052165031433105, - 1.1287901401519775, - 1.1449775695800781, - 1.153337001800537, - 1.1536407470703125, - 1.1458803415298462, - 1.1302673816680908, - 1.1072279214859009, - 0.608784556388855, - 0.6368333101272583, - 0.6709150075912476, - 0.7101001739501953, - 0.7533197402954102, - 0.7993949055671692, - 0.8470689058303833, - 0.8950411677360535, - 0.9420032501220703, - 0.9866740703582764, - 1.0278352499008179, - 1.0643638372421265, - 1.0952636003494263, - 1.1196916103363037, - 1.13698148727417, - 1.146661639213562, - 1.148468017578125, - 1.1423513889312744, - 1.1284785270690918, - 1.1072279214859009, - 0.608784556388855, - 0.6323732137680054, - 0.6621165871620178, - 0.6972033381462097, - 0.7366763949394226, - 0.7794589400291443, - 0.8243840932846069, - 0.8702263236045837, - 0.9157353043556213, - 0.9596695303916931, - 1.0008306503295898, - 1.0380959510803223, - 1.0704487562179565, - 1.0970067977905273, - 1.1170454025268555, - 1.1300182342529297, - 1.1355712413787842, - 1.1335530281066895, - 1.1240184307098389, - 1.1072279214859009, - 0.608784556388855, - 0.6257253289222717, - 0.6490021347999573, - 0.6779800653457642, - 0.7118685841560364, - 0.7497433423995972, - 0.7905712723731995, - 0.8332386612892151, - 0.876581609249115, - 0.9194179177284241, - 0.9605790376663208, - 0.9989422559738159, - 1.033461093902588, - 1.0631940364837646, - 1.0873298645019531, - 1.1052104234695435, - 1.1163479089736938, - 1.120438575744629, - 1.11737060546875, - 1.1072279214859009, - 0.608784556388855, - 0.617609977722168, - 0.6329928040504456, - 0.654513418674469, - 0.6815847754478455, - 0.7134684324264526, - 0.7492946982383728, - 0.7880863547325134, - 0.828785240650177, - 0.8702811598777771, - 0.9114423394203186, - 0.9511458277702332, - 0.9883087873458862, - 1.0219173431396484, - 1.0510549545288086, - 1.0749266147613525, - 1.092881202697754, - 1.1044291257858276, - 1.109255313873291, - 1.1072279214859009, - 0.608784556388855, - 0.608906626701355, - 0.6158233880996704, - 0.6293463706970215, - 0.6491065621376038, - 0.6745650172233582, - 0.7050272226333618, - 0.7396622896194458, - 0.7775255441665649, - 0.8175840377807617, - 0.8587451577186584, - 0.8998861312866211, - 0.9398847222328186, - 0.9776499271392822, - 1.0121514797210693, - 1.0424484014511108, - 1.0677142143249512, - 1.0872597694396973, - 1.1005518436431885, - 1.1072279214859009, - 0.608784556388855, - 0.600558340549469, - 0.59935462474823, - 0.6052062511444092, - 0.6179535388946533, - 0.6372489333152771, - 0.6625659465789795, - 0.6932140588760376, - 0.7283573150634766, - 0.767037034034729, - 0.8081982135772705, - 0.8507179617881775, - 0.8934364914894104, - 0.9351886510848999, - 0.9748353958129883, - 1.0112954378128052, - 1.0435740947723389, - 1.0707910060882568, - 1.0922036170959473, - 1.1072279214859009, - 0.608784556388855, - 0.5934698581695557, - 0.5853709578514099, - 0.5847089290618896, - 0.5915016531944275, - 0.6055639982223511, - 0.6265122294425964, - 0.6537750363349915, - 0.6866087913513184, - 0.7241177558898926, - 0.7652789354324341, - 0.8089693784713745, - 0.8539974689483643, - 0.8991349339485168, - 0.9431504607200623, - 0.9848434925079346, - 1.0230767726898193, - 1.056807279586792, - 1.0851150751113892, - 1.1072279214859009, - 0.608784556388855, - 0.5884093046188354, - 0.5753878355026245, - 0.5700756311416626, - 0.5726172924041748, - 0.5829436779022217, - 0.6007729768753052, - 0.6256189942359924, - 0.6568039655685425, - 0.6934771537780762, - 0.7346382737159729, - 0.7791645526885986, - 0.8258414268493652, - 0.8733956813812256, - 0.9205301403999329, - 0.9659591317176819, - 1.0084434747695923, - 1.0468242168426514, - 1.080054521560669, - 1.1072279214859009, - 0.608784556388855, - 0.5859249830245972, - 0.5704871416091919, - 0.5628920793533325, - 0.5633468627929688, - 0.5718393325805664, - 0.5881375670433044, - 0.6117970943450928, - 0.6421726942062378, - 0.6784355640411377, - 0.7195967435836792, - 0.764533281326294, - 0.8120195269584656, - 0.8607602119445801, - 0.9094257354736328, - 0.9566887617111206, - 1.0012599229812622, - 1.0419235229492188, - 1.0775703191757202, - 1.1072279214859009, - 0.608784556388855, - 0.5862863063812256, - 0.5711998343467712, - 0.563936710357666, - 0.5646951198577881, - 0.5734541416168213, - 0.589975118637085, - 0.613807201385498, - 0.6443004608154297, - 0.6806230545043945, - 0.7217841744422913, - 0.7666610479354858, - 0.8140296339988708, - 0.8625977635383606, - 0.9110406637191772, - 0.9580368995666504, - 1.0023045539855957, - 1.0426361560821533, - 1.077931523323059, - 1.1072279214859009, - 0.608784556388855, - 0.589453935623169, - 0.5774487257003784, - 0.5730964541435242, - 0.5765157341957092, - 0.5876133441925049, - 0.6060865521430969, - 0.6314314603805542, - 0.6629567742347717, - 0.6998025178909302, - 0.7409636378288269, - 0.7853174209594727, - 0.831653892993927, - 0.8787092566490173, - 0.9251998066902161, - 0.9698575735092163, - 1.0114643573760986, - 1.0488851070404053, - 1.081099271774292, - 1.1072279214859009, - 0.608784556388855, - 0.5950847268104553, - 0.588556706905365, - 0.5893785953521729, - 0.5975279211997986, - 0.6127824187278748, - 0.6347259879112244, - 0.6627600193023682, - 0.6961199045181274, - 0.7338955998420715, - 0.7750567197799683, - 0.8184804916381836, - 0.862982451915741, - 0.9073486328125, - 0.9503688812255859, - 0.9908697605133057, - 1.0277464389801025, - 1.059993028640747, - 1.0867300033569336, - 1.1072279214859009, - 0.608784556388855, - 0.6025683879852295, - 0.6033200025558472, - 0.611018717288971, - 0.6254546046257019, - 0.6462339162826538, - 0.6727898120880127, - 0.7043979167938232, - 0.7401961088180542, - 0.7792078256607056, - 0.8203689455986023, - 0.8625566959381104, - 0.904620349407196, - 0.9454125165939331, - 0.9838204383850098, - 1.018796443939209, - 1.0493866205215454, - 1.074756383895874, - 1.0942137241363525, - 1.1072279214859009, - 0.608784556388855, - 0.611094057559967, - 0.6201387047767639, - 0.6356717944145203, - 0.6572695374488831, - 0.6843428611755371, - 0.7161532640457153, - 0.7518330216407776, - 0.7904089689254761, - 0.8308287858963013, - 0.871989905834198, - 0.9127695560455322, - 0.9520554542541504, - 0.9887759685516357, - 1.021929383277893, - 1.0506113767623901, - 1.0740395784378052, - 1.091575026512146, - 1.1027393341064453, - 1.1072279214859009 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.312315434217453, - -0.3094234764575958, - -0.3011121153831482, - -0.2876080572605133, - -0.2692796587944031, - -0.24662688374519348, - -0.2202676236629486, - -0.190920889377594, - -0.15938720107078552, - -0.12652669847011566, - -0.09323575347661972, - -0.06042243540287018, - -0.028981804847717285, - 0.0002285093069076538, - 0.026411719620227814, - 0.048853643238544464, - 0.06694210320711136, - 0.08018369227647781, - 0.08821720629930496, - 0.09082352370023727, - -0.312315434217453, - -0.3244100511074066, - -0.33067643642425537, - -0.3309437036514282, - -0.3252045810222626, - -0.3136155605316162, - -0.2964927852153778, - -0.2743033468723297, - -0.24765244126319885, - -0.21726709604263306, - -0.18397614359855652, - -0.1486876755952835, - -0.11236423999071121, - -0.07599666714668274, - -0.04057696461677551, - -0.007071278989315033, - 0.023606427013874054, - 0.05061935633420944, - 0.07323064655065536, - 0.09082353860139847, - -0.312315434217453, - -0.33778804540634155, - -0.3570675551891327, - -0.36962804198265076, - -0.3751268982887268, - -0.37341415882110596, - -0.36453646421432495, - -0.34873607754707336, - -0.3264439105987549, - -0.29826807975769043, - -0.2649771273136139, - -0.22747915983200073, - -0.18679699301719666, - -0.14404037594795227, - -0.10037556290626526, - -0.056993622332811356, - -0.01507788896560669, - 0.024228252470493317, - 0.059852637350559235, - 0.09082353860139847, - -0.312315434217453, - -0.34810781478881836, - -0.37742558121681213, - -0.3994689881801605, - -0.41363683342933655, - -0.4195425510406494, - -0.4170251488685608, - -0.40615323185920715, - -0.38722339272499084, - -0.3607519567012787, - -0.32746100425720215, - -0.2882586121559143, - -0.24421414732933044, - -0.19652903079986572, - -0.1465039998292923, - -0.09550353139638901, - -0.04491884261369705, - 0.003870241343975067, - 0.04953288286924362, - 0.09082353860139847, - -0.312315434217453, - -0.3542509973049164, - -0.38954436779022217, - -0.41723281145095825, - -0.43656113743782043, - -0.4470020532608032, - -0.4482707679271698, - -0.4403327405452728, - -0.42340439558029175, - -0.3979475498199463, - -0.36465659737586975, - -0.3244396150112152, - -0.2783936560153961, - -0.22777467966079712, - -0.17396347224712372, - -0.11842786520719528, - -0.06268265098333359, - -0.00824853777885437, - 0.0433897003531456, - 0.09082353860139847, - -0.312315434217453, - -0.3555518686771393, - -0.392110675573349, - -0.4209945499897003, - -0.4414156675338745, - -0.4528169631958008, - -0.4548874497413635, - -0.44757071137428284, - -0.43106621503829956, - -0.405824214220047, - -0.37253326177597046, - -0.332101434469223, - -0.28563159704208374, - -0.23439136147499084, - -0.17977839708328247, - -0.12328238040208817, - -0.06644438952207565, - -0.010814853012561798, - 0.042088814079761505, - 0.09082353860139847, - -0.312315434217453, - -0.35186952352523804, - -0.38484641909599304, - -0.41034653782844543, - -0.4276743233203888, - -0.43635714054107666, - -0.436158150434494, - -0.42708277702331543, - -0.4093785285949707, - -0.38352838158607483, - -0.3502374291419983, - -0.31041374802589417, - -0.2651436924934387, - -0.21566203236579895, - -0.16331858932971954, - -0.10954105108976364, - -0.05579637736082077, - -0.003550596535205841, - 0.04577115923166275, - 0.09082353860139847, - -0.312315434217453, - -0.3436029553413391, - -0.3685387670993805, - -0.386442631483078, - -0.39682623744010925, - -0.3994063138961792, - -0.3941124677658081, - -0.3810891807079315, - -0.3606915771961212, - -0.33347609639167786, - -0.3001851439476013, - -0.2617267966270447, - -0.21915008127689362, - -0.17361636459827423, - -0.1263677477836609, - -0.0786929577589035, - -0.03189248591661453, - 0.012757040560245514, - 0.054037727415561676, - 0.09082353860139847, - -0.312315434217453, - -0.3316480219364166, - -0.3449549376964569, - -0.3518732488155365, - -0.3522142469882965, - -0.345968633890152, - -0.3333067297935486, - -0.3145739734172821, - -0.2902812957763672, - -0.261091411113739, - -0.22780045866966248, - -0.19131654500961304, - -0.1526348888874054, - -0.11281062662601471, - -0.07293005287647247, - -0.03408096730709076, - 0.0026768967509269714, - 0.0363408699631691, - 0.06599269062280655, - 0.09082353860139847, - -0.312315434217453, - -0.31730014085769653, - -0.3166505992412567, - -0.31038448214530945, - -0.29867276549339294, - -0.2818349003791809, - -0.2603301703929901, - -0.23474517464637756, - -0.20577779412269592, - -0.17421820759773254, - -0.140927255153656, - -0.10681303590536118, - -0.07280609011650085, - -0.03983404487371445, - -0.008796311914920807, - 0.019460521638393402, - 0.04416566342115402, - 0.06464522331953049, - 0.08034054189920425, - 0.09082352370023727, - -0.312315434217453, - -0.30211421847343445, - -0.28669294714927673, - -0.2664722800254822, - -0.24200382828712463, - -0.21395501494407654, - -0.1830909252166748, - -0.15025344491004944, - -0.11633829772472382, - -0.08227060735225677, - -0.04897965490818024, - -0.01737353205680847, - 0.011685647070407867, - 0.03740520030260086, - 0.05908358842134476, - 0.07612945884466171, - 0.08807786554098129, - 0.09460286051034927, - 0.09552647918462753, - 0.09082352370023727, - -0.3123154640197754, - -0.28773581981658936, - -0.258328378200531, - -0.22489523887634277, - -0.1883484125137329, - -0.1496848165988922, - -0.10995905846357346, - -0.07025476545095444, - -0.0316549688577652, - 0.004787422716617584, - 0.03807837516069412, - 0.06730980426073074, - 0.09168431907892227, - 0.1105370745062828, - 0.12335378676652908, - 0.12978488206863403, - 0.1296549141407013, - 0.1229674443602562, - 0.10990487784147263, - 0.09082352370023727, - -0.3123154640197754, - -0.27572309970855713, - -0.23463061451911926, - -0.19015884399414062, - -0.14352090656757355, - -0.09598898887634277, - -0.04885958507657051, - -0.00341825932264328, - 0.039095453917980194, - 0.07752185314893723, - 0.11081280559301376, - 0.13806021213531494, - 0.15852081775665283, - 0.17163655161857605, - 0.1770496368408203, - 0.1746123731136322, - 0.16439130902290344, - 0.14666518568992615, - 0.12191758304834366, - 0.09082352370023727, - -0.3123154640197754, - -0.2673778235912323, - -0.21816766262054443, - -0.16602733731269836, - -0.1123790517449379, - -0.058686256408691406, - -0.006413489580154419, - 0.04301335662603378, - 0.08824608474969864, - 0.12805074453353882, - 0.16134169697761536, - 0.1872108280658722, - 0.2049524486064911, - 0.21408265829086304, - 0.21435236930847168, - 0.20575425028800964, - 0.1885228157043457, - 0.16312813758850098, - 0.13026288151741028, - 0.09082352370023727, - -0.3123154640197754, - -0.2636043131351471, - -0.2107236087322235, - -0.1551157534122467, - -0.0982975885272026, - -0.0418190062046051, - 0.012779414653778076, - 0.06400840729475021, - 0.11047055572271347, - 0.15089848637580872, - 0.18418943881988525, - 0.20943531394004822, - 0.22594749927520752, - 0.23327556252479553, - 0.23121961951255798, - 0.21983569860458374, - 0.19943439960479736, - 0.1705721914768219, - 0.1340363621711731, - 0.09082350879907608, - -0.3123154640197754, - -0.26481151580810547, - -0.21310503780841827, - -0.15860646963119507, - -0.10280241817235947, - -0.047215044498443604, - 0.006639391183853149, - 0.057291872799396515, - 0.10336070507764816, - 0.14358919858932495, - 0.1768801510334015, - 0.2023254632949829, - 0.21923094987869263, - 0.22713550925254822, - 0.22582358121871948, - 0.21533089876174927, - 0.1959436535835266, - 0.16819077730178833, - 0.1328291893005371, - 0.09082350879907608, - -0.3123154640197754, - -0.27086856961250305, - -0.22505396604537964, - -0.176121324300766, - -0.12540538609027863, - -0.07428964972496033, - -0.02416829764842987, - 0.023591436445713043, - 0.06768681854009628, - 0.10691497474908829, - 0.14020591974258423, - 0.16665157675743103, - 0.18553051352500916, - 0.1963278353214264, - 0.19874897599220276, - 0.19272789359092712, - 0.17842882871627808, - 0.15624183416366577, - 0.12677210569381714, - 0.09082352370023727, - -0.3123154640197754, - -0.28111913800239563, - -0.24527549743652344, - -0.20576223731040955, - -0.16365715861320496, - -0.12010885775089264, - -0.07630512118339539, - -0.033440835773944855, - 0.007314756512641907, - 0.044849954545497894, - 0.07814090698957443, - 0.10627952963113785, - 0.12849825620651245, - 0.14419099688529968, - 0.15292975306510925, - 0.154476135969162, - 0.14878791570663452, - 0.13602030277252197, - 0.11652154475450516, - 0.09082352370023727, - -0.3123154640197754, - -0.294452428817749, - -0.2715783417224884, - -0.2443172037601471, - -0.2134125530719757, - -0.17970745265483856, - -0.14412125945091248, - -0.10762466490268707, - -0.07121321558952332, - -0.03588011860847473, - -0.0025891661643981934, - 0.027751557528972626, - 0.05431442707777023, - 0.07637488096952438, - 0.09333115071058273, - 0.10472074896097183, - 0.11023295670747757, - 0.1097174659371376, - 0.10318826884031296, - 0.09082352370023727, - -0.312315434217453, - -0.3094235062599182, - -0.3011121451854706, - -0.2876080870628357, - -0.26927968859672546, - -0.24662691354751587, - -0.220267653465271, - -0.19092094898223877, - -0.1593872457742691, - -0.12652675807476044, - -0.0932357981801033, - -0.06042248010635376, - -0.028981849551200867, - 0.00022846460342407227, - 0.026411689817905426, - 0.048853613436222076, - 0.06694207340478897, - 0.08018367737531662, - 0.08821720629930496, - 0.09082352370023727 - ], - "y": [ - -1.6498942375183105, - -1.6465336084365845, - -1.6396896839141846, - -1.629549264907837, - -1.6163887977600098, - -1.60056734085083, - -1.5825164318084717, - -1.5627284049987793, - -1.5417430400848389, - -1.5201328992843628, - -1.4984873533248901, - -1.477396845817566, - -1.4574365615844727, - -1.4391511678695679, - -1.4230393171310425, - -1.4095405340194702, - -1.3990229368209839, - -1.3917735815048218, - -1.387990117073059, - -1.3877756595611572, - -1.6498942375183105, - -1.6401541233062744, - -1.6271047592163086, - -1.6111021041870117, - -1.5925825834274292, - -1.5720515251159668, - -1.5500688552856445, - -1.5272340774536133, - -1.504170298576355, - -1.4815064668655396, - -1.459860920906067, - -1.4398239850997925, - -1.4219423532485962, - -1.4067035913467407, - -1.3945235013961792, - -1.3857343196868896, - -1.3805757761001587, - -1.3791885375976562, - -1.381610631942749, - -1.3877756595611572, - -1.6498942375183105, - -1.634636402130127, - -1.6162198781967163, - -1.595146894454956, - -1.5719923973083496, - -1.5473878383636475, - -1.52200448513031, - -1.4965347051620483, - -1.4716731309890747, - -1.448098063468933, - -1.426452398300171, - -1.4073268175125122, - -1.3912428617477417, - -1.3786392211914062, - -1.3698598146438599, - -1.36514413356781, - -1.3646206855773926, - -1.368303656578064, - -1.3760929107666016, - -1.3877756595611572, - -1.6498942375183105, - -1.6305783987045288, - -1.6082146167755127, - -1.583412766456604, - -1.5568493604660034, - -1.5292490720748901, - -1.5013645887374878, - -1.473956823348999, - -1.4477730989456177, - -1.4235278367996216, - -1.4018821716308594, - -1.3834267854690552, - -1.3686649799346924, - -1.3579994440078735, - -1.3517210483551025, - -1.3500010967254639, - -1.352886438369751, - -1.3602983951568604, - -1.3720349073410034, - -1.3877756595611572, - -1.6498942375183105, - -1.6284198760986328, - -1.6039564609527588, - -1.5771710872650146, - -1.5487943887710571, - -1.5196006298065186, - -1.490385890007019, - -1.4619472026824951, - -1.4350602626800537, - -1.4104584455490112, - -1.388812780380249, - -1.3707139492034912, - -1.3566553592681885, - -1.3470206260681152, - -1.342072606086731, - -1.3419461250305176, - -1.3466447591781616, - -1.3560402393341064, - -1.3698763847351074, - -1.3877756595611572, - -1.6498942375183105, - -1.6283947229385376, - -1.6039068698883057, - -1.5770983695983887, - -1.5487005710601807, - -1.5194882154464722, - -1.490257978439331, - -1.4618072509765625, - -1.434912085533142, - -1.4103060960769653, - -1.3886605501174927, - -1.3705657720565796, - -1.3565154075622559, - -1.3468927145004272, - -1.3419601917266846, - -1.3418523073196411, - -1.3465720415115356, - -1.3559906482696533, - -1.3698512315750122, - -1.3877756595611572, - -1.6498942375183105, - -1.6305056810379028, - -1.6080710887908936, - -1.5832023620605469, - -1.5565779209136963, - -1.5289238691329956, - -1.5009946823120117, - -1.4735521078109741, - -1.4473447799682617, - -1.4230873584747314, - -1.4014418125152588, - -1.3829984664916992, - -1.368260383605957, - -1.3576295375823975, - -1.351395845413208, - -1.3497296571731567, - -1.3526761531829834, - -1.3601549863815308, - -1.3719621896743774, - -1.3877756595611572, - -1.6498942375183105, - -1.6345239877700806, - -1.6159980297088623, - -1.594821810722351, - -1.5715727806091309, - -1.546885371208191, - -1.521432638168335, - -1.4959090948104858, - -1.4710109233856201, - -1.4474172592163086, - -1.425771713256836, - -1.4066646099090576, - -1.3906173706054688, - -1.3780673742294312, - -1.3693573474884033, - -1.3647245168685913, - -1.364295482635498, - -1.3680819272994995, - -1.3759804964065552, - -1.3877756595611572, - -1.6498942375183105, - -1.6400141716003418, - -1.626828670501709, - -1.6106973886489868, - -1.5920604467391968, - -1.5714259147644043, - -1.5493570566177368, - -1.5264555215835571, - -1.5033460855484009, - -1.4806591272354126, - -1.45901358127594, - -1.4389997720718384, - -1.4211636781692505, - -1.405991792678833, - -1.3938980102539062, - -1.3852120637893677, - -1.3801710605621338, - -1.3789125680923462, - -1.3814706802368164, - -1.3877756595611572, - -1.6498942375183105, - -1.6463812589645386, - -1.6393892765045166, - -1.6291089057922363, - -1.6158204078674316, - -1.5998865365982056, - -1.5817418098449707, - -1.5618810653686523, - -1.5408461093902588, - -1.5192108154296875, - -1.4975652694702148, - -1.4764997959136963, - -1.4565892219543457, - -1.438376545906067, - -1.422358512878418, - -1.408972144126892, - -1.3985825777053833, - -1.3914730548858643, - -1.3878377676010132, - -1.3877756595611572, - -1.6498942375183105, - -1.6529353857040405, - -1.6523187160491943, - -1.648060917854309, - -1.6402782201766968, - -1.6291828155517578, - -1.6150774955749512, - -1.5983468294143677, - -1.5794473886489868, - -1.5588945150375366, - -1.537248969078064, - -1.5151010751724243, - -1.4930551052093506, - -1.4717122316360474, - -1.4516549110412598, - -1.4334299564361572, - -1.417534589767456, - -1.4044026136398315, - -1.3943918943405151, - -1.3877756595611572, - -1.6498942375183105, - -1.658966302871704, - -1.6642159223556519, - -1.6654999256134033, - -1.6627833843231201, - -1.6561402082443237, - -1.6457518339157104, - -1.6319013833999634, - -1.6149667501449585, - -1.5954099893569946, - -1.573764443397522, - -1.5506205558776855, - -1.5266095399856567, - -1.5023865699768066, - -1.4786123037338257, - -1.4559351205825806, - -1.4349735975265503, - -1.4162997007369995, - -1.4004226922988892, - -1.3877756595611572, - -1.6498942375183105, - -1.6638202667236328, - -1.6737916469573975, - -1.6795361042022705, - -1.6808971166610718, - -1.6778373718261719, - -1.6704405546188354, - -1.6589083671569824, - -1.6435552835464478, - -1.624800205230713, - -1.6031546592712402, - -1.5792089700698853, - -1.5536165237426758, - -1.5270754098892212, - -1.5003094673156738, - -1.4740487337112427, - -1.4490097761154175, - -1.4258754253387451, - -1.4052767753601074, - -1.3877756595611572, - -1.6498942375183105, - -1.6669715642929077, - -1.6800081729888916, - -1.6886483430862427, - -1.692656397819519, - -1.6919231414794922, - -1.686468482017517, - -1.6764411926269531, - -1.6621148586273193, - -1.6438802480697632, - -1.6222347021102905, - -1.5977686643600464, - -1.571149468421936, - -1.5431033372879028, - -1.5143952369689941, - -1.4858081340789795, - -1.4581220149993896, - -1.4320919513702393, - -1.4084280729293823, - -1.3877756595611572, - -1.6498942375183105, - -1.6680784225463867, - -1.6821918487548828, - -1.6918491125106812, - -1.6967871189117432, - -1.696871042251587, - -1.692098617553711, - -1.6826000213623047, - -1.668634295463562, - -1.6505824327468872, - -1.6289368867874146, - -1.604288101196289, - -1.577308177947998, - -1.5487334728240967, - -1.5193431377410889, - -1.4899388551712036, - -1.4613227844238281, - -1.4342756271362305, - -1.4095349311828613, - -1.3877756595611572, - -1.6498942375183105, - -1.6670211553573608, - -1.6801060438156128, - -1.6887917518615723, - -1.692841649055481, - -1.6921449899673462, - -1.686720848083496, - -1.6767172813415527, - -1.6624071598052979, - -1.6441806554794312, - -1.6225351095199585, - -1.5980608463287354, - -1.5714255571365356, - -1.5433557033538818, - -1.5146169662475586, - -1.4859932661056519, - -1.4582655429840088, - -1.4321898221969604, - -1.4084776639938354, - -1.3877756595611572, - -1.6498942375183105, - -1.6639142036437988, - -1.6739767789840698, - -1.6798075437545776, - -1.681247353553772, - -1.6782569885253906, - -1.6709179878234863, - -1.6594306230545044, - -1.6441080570220947, - -1.6253684759140015, - -1.6037229299545288, - -1.5797618627548218, - -1.5541387796401978, - -1.527552843093872, - -1.500728964805603, - -1.4743990898132324, - -1.4492812156677246, - -1.4260605573654175, - -1.4053707122802734, - -1.3877756595611572, - -1.6498942375183105, - -1.659094214439392, - -1.6644682884216309, - -1.665869951248169, - -1.663260817527771, - -1.6567120552062988, - -1.6464024782180786, - -1.632613182067871, - -1.615720272064209, - -1.5961846113204956, - -1.574539065361023, - -1.5513739585876465, - -1.5273213386535645, - -1.5030373334884644, - -1.4791841506958008, - -1.456412434577942, - -1.435343623161316, - -1.4165520668029785, - -1.4005507230758667, - -1.3877756595611572, - -1.6498942375183105, - -1.6530835628509521, - -1.6526110172271729, - -1.6484893560409546, - -1.6408309936523438, - -1.6298450231552124, - -1.615830898284912, - -1.5991710424423218, - -1.580319881439209, - -1.5597914457321167, - -1.538145899772644, - -1.5159735679626465, - -1.4938793182373047, - -1.4724657535552979, - -1.4523169994354248, - -1.4339827299118042, - -1.4179630279541016, - -1.4046947956085205, - -1.3945400714874268, - -1.3877756595611572, - -1.6498942375183105, - -1.6465336084365845, - -1.6396896839141846, - -1.629549264907837, - -1.6163887977600098, - -1.60056734085083, - -1.5825163125991821, - -1.5627284049987793, - -1.5417430400848389, - -1.5201328992843628, - -1.4984873533248901, - -1.4773967266082764, - -1.4574365615844727, - -1.4391511678695679, - -1.4230393171310425, - -1.4095404148101807, - -1.3990229368209839, - -1.3917735815048218, - -1.387990117073059, - -1.3877756595611572 - ], - "z": [ - 0.6260853409767151, - 0.6285914778709412, - 0.6379056572914124, - 0.6537737846374512, - 0.6757630705833435, - 0.703273594379425, - 0.7355550527572632, - 0.7717268466949463, - 0.8108022809028625, - 0.8517155051231384, - 0.8933505415916443, - 0.9345716238021851, - 0.9742544293403625, - 1.0113164186477661, - 1.04474675655365, - 1.0736334323883057, - 1.0971885919570923, - 1.114769697189331, - 1.1258970499038696, - 1.1302673816680908, - 0.6260853409767151, - 0.637257993221283, - 0.655002236366272, - 0.678834080696106, - 0.7081035375595093, - 0.742012083530426, - 0.7796348333358765, - 0.8199455142021179, - 0.8618446588516235, - 0.9041892290115356, - 0.9458242058753967, - 0.985614001750946, - 1.0224730968475342, - 1.0553961992263794, - 1.0834852457046509, - 1.1059739589691162, - 1.122248888015747, - 1.131866216659546, - 1.1345635652542114, - 1.1302673816680908, - 0.6260853409767151, - 0.6450862884521484, - 0.6704453825950623, - 0.7014707922935486, - 0.7373163104057312, - 0.777004063129425, - 0.8194515705108643, - 0.8635009527206421, - 0.9079506397247314, - 0.9515880942344666, - 0.9932231307029724, - 1.0317199230194092, - 1.0660285949707031, - 1.0952129364013672, - 1.11847722530365, - 1.1351866722106934, - 1.1448856592178345, - 1.147309422492981, - 1.1423919200897217, - 1.1302673816680908, - 0.6260853409767151, - 0.6512281894683838, - 0.6825615763664246, - 0.7192308306694031, - 0.7602357268333435, - 0.8044577240943909, - 0.8506905436515808, - 0.8976731300354004, - 0.9441239237785339, - 0.9887757897377014, - 1.0304107666015625, - 1.0678932666778564, - 1.1002007722854614, - 1.1264519691467285, - 1.1459308862686157, - 1.1581060886383057, - 1.162645697593689, - 1.1594256162643433, - 1.148533821105957, - 1.1302673816680908, - 0.6260853409767151, - 0.6550180315971375, - 0.6900378465652466, - 0.7301896810531616, - 0.7743781805038452, - 0.8213979601860046, - 0.8699665069580078, - 0.9187590479850769, - 0.9664446115493774, - 1.011722445487976, - 1.0533573627471924, - 1.0902140140533447, - 1.1212866306304932, - 1.1457279920578003, - 1.1628711223602295, - 1.1722486019134521, - 1.1736044883728027, - 1.1669018268585205, - 1.152323603630066, - 1.1302673816680908, - 0.6260853409767151, - 0.656045138835907, - 0.6920640468597412, - 0.7331596612930298, - 0.7782109975814819, - 0.8259890675544739, - 0.8751906156539917, - 0.9244737029075623, - 0.9724938869476318, - 1.0179413557052612, - 1.059576392173767, - 1.0962632894515991, - 1.1270012855529785, - 1.1509521007537842, - 1.1674622297286987, - 1.1760814189910889, - 1.176574468612671, - 1.1689281463623047, - 1.1533507108688354, - 1.1302673816680908, - 0.6260853409767151, - 0.654198169708252, - 0.6884206533432007, - 0.7278190851211548, - 0.7713189125061035, - 0.8177334666252136, - 0.8657968044281006, - 0.9141978025436401, - 0.9616162180900574, - 1.006758689880371, - 1.048393726348877, - 1.0853855609893799, - 1.1167254447937012, - 1.1415581703186035, - 1.1592066287994385, - 1.1691893339157104, - 1.171233892440796, - 1.1652846336364746, - 1.1515038013458252, - 1.1302673816680908, - 0.6260853409767151, - 0.6496773958206177, - 0.6795023679733276, - 0.7147465944290161, - 0.7544487714767456, - 0.7975258827209473, - 0.8428029417991638, - 0.8890449404716492, - 0.934990406036377, - 0.9793861508369446, - 1.0210211277008057, - 1.0587598085403442, - 1.0915725231170654, - 1.1185643672943115, - 1.138999104499817, - 1.1523191928863525, - 1.1581614017486572, - 1.1563663482666016, - 1.146983027458191, - 1.1302673816680908, - 0.6260853409767151, - 0.6429725885391235, - 0.6662756204605103, - 0.6953587532043457, - 0.7294287085533142, - 0.7675560712814331, - 0.8087008595466614, - 0.8517407178878784, - 0.8955017328262329, - 0.9387901425361633, - 0.9804251790046692, - 1.0192711353302002, - 1.0542683601379395, - 1.084462285041809, - 1.1090291738510132, - 1.1272990703582764, - 1.1387735605239868, - 1.1431396007537842, - 1.1402782201766968, - 1.1302673816680908, - 0.6260853409767151, - 0.6348104476928711, - 0.6501739025115967, - 0.6717566847801208, - 0.6989700794219971, - 0.7310717105865479, - 0.7671859860420227, - 0.806327760219574, - 0.8474293947219849, - 0.889369785785675, - 0.9310047626495361, - 0.9711987972259521, - 1.0088553428649902, - 1.0429474115371704, - 1.072544813156128, - 1.096840500831604, - 1.1151714324951172, - 1.1270378828048706, - 1.1321160793304443, - 1.1302673816680908, - 0.6260853409767151, - 0.626075267791748, - 0.6329419016838074, - 0.646497905254364, - 0.6663734316825867, - 0.6920264363288879, - 0.72275710105896, - 0.7577272057533264, - 0.795982837677002, - 0.8364804983139038, - 0.8781155347824097, - 0.9197521805763245, - 0.9602547883987427, - 0.9985185265541077, - 1.0334995985031128, - 1.0642439126968384, - 1.0899126529693604, - 1.109805941581726, - 1.1233808994293213, - 1.1302673816680908, - 0.6260853409767151, - 0.6177138090133667, - 0.6164470911026001, - 0.6223196387290955, - 0.6351712942123413, - 0.6546514630317688, - 0.6802288293838501, - 0.7112056612968445, - 0.746737003326416, - 0.7858537435531616, - 0.8274887204170227, - 0.8705064058303833, - 0.9137332439422607, - 0.955990195274353, - 0.9961246252059937, - 1.0330417156219482, - 1.0657345056533813, - 1.093311071395874, - 1.11501944065094, - 1.1302673816680908, - 0.6260853409767151, - 0.6106321811676025, - 0.6024768948554993, - 0.6018419861793518, - 0.608744740486145, - 0.6229969263076782, - 0.6442096829414368, - 0.6718044281005859, - 0.7050285339355469, - 0.742975652217865, - 0.7846106290817261, - 0.8287978768348694, - 0.874332070350647, - 0.9199711084365845, - 0.9644700288772583, - 1.006615161895752, - 1.0452568531036377, - 1.079340934753418, - 1.1079378128051758, - 1.1302673816680908, - 0.6260853409767151, - 0.6055976152420044, - 0.5925451517105103, - 0.5872839689254761, - 0.589957594871521, - 0.6004930138587952, - 0.618602991104126, - 0.6437933444976807, - 0.6753771305084229, - 0.7124927043914795, - 0.7541277408599854, - 0.7991464734077454, - 0.8463209271430969, - 0.8943643569946289, - 0.94196617603302, - 0.9878280162811279, - 1.0306987762451172, - 1.0694092512130737, - 1.1029032468795776, - 1.1302673816680908, - 0.6260853409767151, - 0.6031558513641357, - 0.5877282619476318, - 0.5802232623100281, - 0.5808457136154175, - 0.5895785093307495, - 0.6061835289001465, - 0.6302077770233154, - 0.6609960198402405, - 0.6977083086967468, - 0.7393433451652527, - 0.784765362739563, - 0.8327353596687317, - 0.8819448947906494, - 0.9310516715049744, - 0.9787160754203796, - 1.023638129234314, - 1.0645922422409058, - 1.100461483001709, - 1.1302673816680908, - 0.6260853409767151, - 0.6035714149475098, - 0.5885480642318726, - 0.5814249515533447, - 0.5823965072631836, - 0.5914360284805298, - 0.6082972288131714, - 0.6325199604034424, - 0.6634435653686523, - 0.7002245187759399, - 0.7418595552444458, - 0.7872129082679749, - 0.8350475430488586, - 0.8840585947036743, - 0.9329091906547546, - 0.9802668690681458, - 1.0248397588729858, - 1.0654120445251465, - 1.100877046585083, - 1.1302673816680908, - 0.6260853409767151, - 0.6067993640899658, - 0.5949157476425171, - 0.5907588005065918, - 0.5944418907165527, - 0.605864405632019, - 0.6247149705886841, - 0.6504793167114258, - 0.6824545860290527, - 0.7197686433792114, - 0.7614036798477173, - 0.8062239289283752, - 0.853006899356842, - 0.9004763960838318, - 0.9473375678062439, - 0.9923123121261597, - 1.034173607826233, - 1.071779727935791, - 1.104104995727539, - 1.1302673816680908, - 0.6260853409767151, - 0.6124897003173828, - 0.6061413288116455, - 0.6072133779525757, - 0.6156765818595886, - 0.6313000917434692, - 0.6536577343940735, - 0.6821396350860596, - 0.7159689664840698, - 0.7542228102684021, - 0.795857846736908, - 0.8397383093833923, - 0.8846672773361206, - 0.9294191002845764, - 0.9727732539176941, - 1.0135469436645508, - 1.0506281852722168, - 1.083005428314209, - 1.109795331954956, - 1.1302673816680908, - 0.6260853409767151, - 0.6200259923934937, - 0.6210083961486816, - 0.6290055513381958, - 0.6437995433807373, - 0.6649866700172424, - 0.6919890642166138, - 0.724070131778717, - 0.7603548765182495, - 0.7998534440994263, - 0.8414884209632874, - 0.884124219417572, - 0.9265977144241333, - 0.9677504301071167, - 1.0064598321914673, - 1.0416699647903442, - 1.072420358657837, - 1.0978723764419556, - 1.117331624031067, - 1.1302673816680908, - 0.6260853409767151, - 0.6285914778709412, - 0.6379056572914124, - 0.6537737846374512, - 0.6757630705833435, - 0.7032736539840698, - 0.7355550527572632, - 0.7717268466949463, - 0.8108023405075073, - 0.8517155647277832, - 0.8933505415916443, - 0.9345716834068298, - 0.9742544889450073, - 1.0113165378570557, - 1.04474675655365, - 1.0736334323883057, - 1.0971887111663818, - 1.114769697189331, - 1.1258971691131592, - 1.1302673816680908 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.07695765793323517, - 0.0743144303560257, - 0.06619204580783844, - 0.05281209945678711, - 0.03453955054283142, - 0.011872828006744385, - -0.014569804072380066, - -0.04406701773405075, - -0.07581424713134766, - -0.10894547402858734, - -0.14255699515342712, - -0.17573195695877075, - -0.20756545662879944, - -0.23718911409378052, - -0.2637948989868164, - -0.28665709495544434, - -0.3051520884037018, - -0.31877532601356506, - -0.3271552324295044, - -0.33006322383880615, - 0.07695765793323517, - 0.059177517890930176, - 0.03633113205432892, - 0.009041711688041687, - -0.021946385502815247, - -0.05578786879777908, - -0.09155963361263275, - -0.12828592956066132, - -0.1649649441242218, - -0.2005961537361145, - -0.23420767486095428, - -0.2648826539516449, - -0.2917843461036682, - -0.3141789734363556, - -0.33145561814308167, - -0.3431430459022522, - -0.3489224910736084, - -0.3486362397670746, - -0.3422921299934387, - -0.33006322383880615, - 0.07695765793323517, - 0.045666590332984924, - 0.009677812457084656, - -0.03002697229385376, - -0.07236473262310028, - -0.11618058383464813, - -0.16027939319610596, - -0.20345820486545563, - -0.2445392608642578, - -0.2824019193649292, - -0.3160134553909302, - -0.3444569706916809, - -0.3669566512107849, - -0.3828987181186676, - -0.3918483555316925, - -0.39356139302253723, - -0.38799116015434265, - -0.37528955936431885, - -0.35580307245254517, - -0.33006322383880615, - 0.07695765793323517, - 0.03524574637413025, - -0.010879620909690857, - -0.06016024202108383, - -0.11125188320875168, - -0.1627608686685562, - -0.2132822424173355, - -0.2614378333091736, - -0.30591410398483276, - -0.34549784660339355, - -0.37910938262939453, - -0.40583181381225586, - -0.4249362647533417, - -0.43590158224105835, - -0.4384286403656006, - -0.4324485659599304, - -0.4181244373321533, - -0.39584699273109436, - -0.36622393131256104, - -0.33006322383880615, - 0.07695765793323517, - 0.029044270515441895, - -0.023113436996936798, - -0.07809267938137054, - -0.13439379632472992, - -0.1904810220003128, - -0.24482446908950806, - -0.2959417402744293, - -0.34243857860565186, - -0.38304653763771057, - -0.41665804386138916, - -0.44235628843307495, - -0.4594401717185974, - -0.4674437642097473, - -0.4661487638950348, - -0.45559048652648926, - -0.43605688214302063, - -0.4080808162689209, - -0.3724254071712494, - -0.33006322383880615, - 0.07695765793323517, - 0.02773416042327881, - -0.02569790929555893, - -0.08188103139400482, - -0.139282688498497, - -0.19633705914020538, - -0.25148794054985046, - -0.3032309412956238, - -0.3501545786857605, - -0.39097896218299866, - -0.42459046840667725, - -0.4500722885131836, - -0.46672937273979187, - -0.4741072952747345, - -0.47200486063957214, - -0.46047937870025635, - -0.4398452341556549, - -0.41066527366638184, - -0.3737355172634125, - -0.33006322383880615, - 0.07695765793323517, - 0.03145739436149597, - -0.018353000283241272, - -0.07111477851867676, - -0.12538877129554749, - -0.1796945184469223, - -0.2325506955385208, - -0.2825155258178711, - -0.32822608947753906, - -0.3684355616569519, - -0.4020470678806305, - -0.42814382910728455, - -0.4460139572620392, - -0.45517003536224365, - -0.4553622901439667, - -0.446585476398468, - -0.42907896637916565, - -0.4033203721046448, - -0.3700122833251953, - -0.33006322383880615, - 0.07695765793323517, - 0.039810508489608765, - -0.0018746107816696167, - -0.046960607171058655, - -0.0942176803946495, - -0.1423567682504654, - -0.19006477296352386, - -0.23604033887386322, - -0.27902936935424805, - -0.3178592026233673, - -0.3514707088470459, - -0.37894707918167114, - -0.3995387852191925, - -0.4126841127872467, - -0.41802453994750977, - -0.41541436314582825, - -0.40492480993270874, - -0.3868419826030731, - -0.3616591691970825, - -0.33006322383880615, - 0.07695765793323517, - 0.05188831686973572, - 0.021951571106910706, - -0.012035995721817017, - -0.04914727807044983, - -0.08836998045444489, - -0.12863421440124512, - -0.1688416749238968, - -0.20789559185504913, - -0.24473069608211517, - -0.27834221720695496, - -0.3078133165836334, - -0.3323401212692261, - -0.35125353932380676, - -0.36403775215148926, - -0.37034398317337036, - -0.3700001835823059, - -0.3630158305168152, - -0.34958136081695557, - -0.33006322383880615, - 0.07695765793323517, - 0.06638199090957642, - 0.05054357647895813, - 0.02987442910671234, - 0.00493834912776947, - -0.023584455251693726, - -0.054915979504585266, - -0.08820155262947083, - -0.12253326177597046, - -0.15697461366653442, - -0.190586119890213, - -0.22245098650455475, - -0.2516999840736389, - -0.2775353193283081, - -0.2992522120475769, - -0.3162583112716675, - -0.32808977365493774, - -0.33442381024360657, - -0.3350876569747925, - -0.33006322383880615, - 0.07695765793323517, - 0.08172093331813812, - 0.0808030366897583, - 0.07422901690006256, - 0.06217820942401886, - 0.044979289174079895, - 0.023101434111595154, - -0.002858586609363556, - -0.03219268471002579, - -0.06410066783428192, - -0.0977121889591217, - -0.13211040198802948, - -0.16635701060295105, - -0.1995178759098053, - -0.2306884378194809, - -0.2590184807777405, - -0.28373515605926514, - -0.3041643500328064, - -0.31974872946739197, - -0.33006322383880615, - 0.07695764303207397, - 0.09624290466308594, - 0.10945087671279907, - 0.11622127890586853, - 0.11636944115161896, - 0.10989131033420563, - 0.09696361422538757, - 0.077938973903656, - 0.05333632230758667, - 0.023826777935028076, - -0.00978473573923111, - -0.04658139497041702, - -0.08555945008993149, - -0.12565571069717407, - -0.16577640175819397, - -0.204827219247818, - -0.24174290895462036, - -0.2755165100097656, - -0.30522674322128296, - -0.33006322383880615, - 0.07695764303207397, - 0.10837425291538239, - 0.133382648229599, - 0.15130066871643066, - 0.16163960099220276, - 0.16411739587783813, - 0.1586664319038391, - 0.14543548226356506, - 0.12478536367416382, - 0.09727939963340759, - 0.06366787850856781, - 0.024867653846740723, - -0.018062934279441833, - -0.06395287066698074, - -0.11155032366514206, - -0.1595570296049118, - -0.20666351914405823, - -0.2515847384929657, - -0.2930954098701477, - -0.33006322383880615, - 0.07695764303207397, - 0.11680033802986145, - 0.15000498294830322, - 0.17566585540771484, - 0.1930829882621765, - 0.20178130269050598, - 0.20152351260185242, - 0.1923166811466217, - 0.1744118630886078, - 0.14829754829406738, - 0.1146860271692276, - 0.07449415326118469, - 0.028818249702453613, - -0.02109580487012863, - -0.07388641685247421, - -0.12811364233493805, - -0.18229833245277405, - -0.23496238887310028, - -0.28466933965682983, - -0.33006322383880615, - 0.07695764303207397, - 0.12060806155204773, - 0.15751656889915466, - 0.18667644262313843, - 0.20729219913482666, - 0.21880152821540833, - 0.22089049220085144, - 0.2135021686553955, - 0.19683796167373657, - 0.1713525354862213, - 0.13774102926254272, - 0.09692025184631348, - 0.05000373721122742, - -0.0017287954688072205, - -0.05686616152524948, - -0.11390446126461029, - -0.17128776013851166, - -0.22745081782341003, - -0.28086161613464355, - -0.33006322383880615, - 0.07695764303207397, - 0.11938482522964478, - 0.15510347485542297, - 0.18313923478126526, - 0.20272743701934814, - 0.21333372592926025, - 0.21466878056526184, - 0.20669624209403992, - 0.18963348865509033, - 0.1639460027217865, - 0.1303344964981079, - 0.08971577882766724, - 0.043197810649871826, - -0.007950522005558014, - -0.062333978712558746, - -0.11846920847892761, - -0.17482496798038483, - -0.22986391186714172, - -0.2820848226547241, - -0.33006322383880615, - 0.07695764303207397, - 0.11326314508914948, - 0.14302709698677063, - 0.16543757915496826, - 0.17988336086273193, - 0.18597036600112915, - 0.18353253602981567, - 0.17263638973236084, - 0.15357914566993713, - 0.12688064575195312, - 0.09326910972595215, - 0.053661420941352844, - 0.009137973189353943, - -0.039086781442165375, - -0.08969735354185104, - -0.14131329953670502, - -0.19252660870552063, - -0.24194028973579407, - -0.2882065176963806, - -0.33006322383880615, - 0.07695764303207397, - 0.10290642082691193, - 0.1225961446762085, - 0.13548973202705383, - 0.14123550057411194, - 0.13967666029930115, - 0.13085579872131348, - 0.11501353979110718, - 0.09258194267749786, - 0.0641729086637497, - 0.030561387538909912, - -0.007335774600505829, - -0.04848489165306091, - -0.09176351130008698, - -0.13599106669425964, - -0.1799611747264862, - -0.22247445583343506, - -0.2623712420463562, - -0.29856324195861816, - -0.33006322383880615, - 0.07695764303207397, - 0.08943696320056915, - 0.09602463245391846, - 0.09654097259044647, - 0.09097190201282501, - 0.07946930825710297, - 0.06234697997570038, - 0.040071964263916016, - 0.013251855969429016, - -0.017381764948368073, - -0.05099327862262726, - -0.08666586130857468, - -0.12342645972967148, - -0.16027234494686127, - -0.19619841873645782, - -0.23022475838661194, - -0.2614232301712036, - -0.28894275426864624, - -0.31203269958496094, - -0.33006322383880615, - 0.07695765793323517, - 0.0743144154548645, - 0.06619203090667725, - 0.052812084555625916, - 0.03453952074050903, - 0.011872783303260803, - -0.01456984132528305, - -0.04406706243753433, - -0.07581429183483124, - -0.10894552618265152, - -0.1425570398569107, - -0.17573201656341553, - -0.20756548643112183, - -0.2371891736984253, - -0.2637949585914612, - -0.2866571545600891, - -0.30515211820602417, - -0.31877535581588745, - -0.3271552324295044, - -0.33006322383880615 - ], - "y": [ - -1.3955676555633545, - -1.3960250616073608, - -1.400079369544983, - -1.4076199531555176, - -1.4184411764144897, - -1.4322477579116821, - -1.448663353919983, - -1.4672398567199707, - -1.4874707460403442, - -1.508804202079773, - -1.53065824508667, - -1.5524365901947021, - -1.5735454559326172, - -1.5934089422225952, - -1.611485242843628, - -1.6272811889648438, - -1.6403659582138062, - -1.6503826379776, - -1.6570581197738647, - -1.660210132598877, - -1.3955676555633545, - -1.3894424438476562, - -1.3870935440063477, - -1.3885853290557861, - -1.3938767910003662, - -1.4028239250183105, - -1.41518235206604, - -1.4306151866912842, - -1.4487013816833496, - -1.4689476490020752, - -1.4908016920089722, - -1.5136672258377075, - -1.5369207859039307, - -1.559928059577942, - -1.5820612907409668, - -1.6027169227600098, - -1.6213313341140747, - -1.6373969316482544, - -1.6504753828048706, - -1.660210132598877, - -1.3955676555633545, - -1.3837190866470337, - -1.3758031129837036, - -1.3720355033874512, - -1.3725192546844482, - -1.3772411346435547, - -1.3860722780227661, - -1.3987717628479004, - -1.414993166923523, - -1.4342942237854004, - -1.4561481475830078, - -1.4799590110778809, - -1.5050773620605469, - -1.5308178663253784, - -1.556478500366211, - -1.5813593864440918, - -1.6047816276550293, - -1.6261063814163208, - -1.6447521448135376, - -1.660210132598877, - -1.3955676555633545, - -1.3794753551483154, - -1.3674312829971313, - -1.3597640991210938, - -1.3566828966140747, - -1.358271837234497, - -1.3644874095916748, - -1.3751602172851562, - -1.3899989128112793, - -1.4085990190505981, - -1.4304530620574951, - -1.4549648761749268, - -1.4814658164978027, - -1.5092331171035767, - -1.5375092029571533, - -1.5655229091644287, - -1.5925101041793823, - -1.617734670639038, - -1.6405082941055298, - -1.660210132598877, - -1.3955676555633545, - -1.3771710395812988, - -1.3628854751586914, - -1.3531007766723633, - -1.3480838537216187, - -1.3479715585708618, - -1.352766990661621, - -1.3623392581939697, - -1.376427173614502, - -1.3946467638015747, - -1.4165006875991821, - -1.4413931369781494, - -1.4686448574066162, - -1.4975125789642334, - -1.527208924293518, - -1.5569238662719727, - -1.5858467817306519, - -1.6131887435913086, - -1.6382039785385132, - -1.660210132598877, - -1.3955676555633545, - -1.3770557641983032, - -1.362658143043518, - -1.3527675867080688, - -1.347653865814209, - -1.3474565744400024, - -1.3521809577941895, - -1.3616981506347656, - -1.375748634338379, - -1.3939491510391235, - -1.415803074836731, - -1.4407144784927368, - -1.4680038690567017, - -1.4969266653060913, - -1.5266939401626587, - -1.5564939975738525, - -1.585513710975647, - -1.6129615306854248, - -1.6380888223648071, - -1.660210132598877, - -1.3955676555633545, - -1.379142165184021, - -1.366774082183838, - -1.3588007688522339, - -1.3554396629333496, - -1.3567826747894287, - -1.36279296875, - -1.3733065128326416, - -1.388036847114563, - -1.4065818786621094, - -1.4284359216690063, - -1.453002691268921, - -1.4796122312545776, - -1.5075385570526123, - -1.536020040512085, - -1.5642796754837036, - -1.5915467739105225, - -1.617077350616455, - -1.640175223350525, - -1.660210132598877, - -1.3955676555633545, - -1.3832041025161743, - -1.3747870922088623, - -1.3705463409423828, - -1.3705974817276, - -1.374939203262329, - -1.3834528923034668, - -1.3959064483642578, - -1.4119601249694824, - -1.4311760663986206, - -1.453029990196228, - -1.4769259691238403, - -1.5022120475769043, - -1.528198480606079, - -1.5541765689849854, - -1.579437494277954, - -1.603292465209961, - -1.625090479850769, - -1.6442371606826782, - -1.660210132598877, - -1.3955676555633545, - -1.3888013362884521, - -1.3858290910720825, - -1.386731743812561, - -1.3914847373962402, - -1.399958610534668, - -1.4119219779968262, - -1.427048683166504, - -1.4449260234832764, - -1.4650664329528809, - -1.4869203567504883, - -1.5098918676376343, - -1.5333542823791504, - -1.556667685508728, - -1.5791959762573242, - -1.6003247499465942, - -1.6194777488708496, - -1.6361323595046997, - -1.649834394454956, - -1.660210132598877, - -1.3955676555633545, - -1.3953274488449097, - -1.3987032175064087, - -1.4056028127670288, - -1.4158380031585693, - -1.4291296005249023, - -1.4451152086257935, - -1.4633586406707764, - -1.4833621978759766, - -1.5045803785324097, - -1.5264344215393066, - -1.5483280420303345, - -1.5696642398834229, - -1.5898609161376953, - -1.6083670854568481, - -1.6246780157089233, - -1.6383488178253174, - -1.6490064859390259, - -1.6563605070114136, - -1.660210132598877, - -1.3955676555633545, - -1.402075171470642, - -1.4120144844055176, - -1.425114631652832, - -1.4410181045532227, - -1.4592912197113037, - -1.4794354438781738, - -1.500901460647583, - -1.5231035947799683, - -1.5454362630844116, - -1.567290186882019, - -1.5880694389343262, - -1.6072070598602295, - -1.6241811513900757, - -1.63852858543396, - -1.6498581171035767, - -1.6578606367111206, - -1.6623178720474243, - -1.663108229637146, - -1.660210132598877, - -1.3955676555633545, - -1.408313274383545, - -1.4243204593658447, - -1.4431527853012085, - -1.4642964601516724, - -1.4871748685836792, - -1.5111637115478516, - -1.5356088876724243, - -1.5598434209823608, - -1.583206295967102, - -1.605060338973999, - -1.6248092651367188, - -1.6419144868850708, - -1.6559094190597534, - -1.6664122343063354, - -1.6731364727020264, - -1.675898790359497, - -1.6746238470077515, - -1.6693462133407593, - -1.660210132598877, - -1.3955676555633545, - -1.4133657217025757, - -1.4342875480651855, - -1.4577627182006836, - -1.483150601387024, - -1.5097589492797852, - -1.536861777305603, - -1.5637197494506836, - -1.5896005630493164, - -1.613797903060913, - -1.6356518268585205, - -1.6545664072036743, - -1.6700254678726196, - -1.6816073656082153, - -1.6889963150024414, - -1.691990613937378, - -1.6905087232589722, - -1.6845909357070923, - -1.67439866065979, - -1.660210132598877, - -1.3955676555633545, - -1.4166849851608276, - -1.44083571434021, - -1.4673609733581543, - -1.495537281036377, - -1.524596095085144, - -1.5537446737289429, - -1.5821880102157593, - -1.6091501712799072, - -1.633895754814148, - -1.6557496786117554, - -1.6741160154342651, - -1.6884936094284058, - -1.6984902620315552, - -1.7038334608078003, - -1.704377293586731, - -1.7001069784164429, - -1.6911389827728271, - -1.6777180433273315, - -1.660210132598877, - -1.3955676555633545, - -1.4179115295410156, - -1.4432553052902222, - -1.4709075689315796, - -1.5001142024993896, - -1.530078411102295, - -1.5599828958511353, - -1.5890120267868042, - -1.6163737773895264, - -1.6413220167160034, - -1.6631759405136108, - -1.6813397407531738, - -1.6953176259994507, - -1.704728603363037, - -1.7093158960342407, - -1.7089542150497437, - -1.7036535739898682, - -1.6935585737228394, - -1.6789445877075195, - -1.660210132598877, - -1.3955676555633545, - -1.416912317276001, - -1.4412840604782104, - -1.4680181741714478, - -1.4963854551315308, - -1.5256119966506958, - -1.5549006462097168, - -1.583452582359314, - -1.610488772392273, - -1.6352719068527222, - -1.6571258306503296, - -1.6754546165466309, - -1.6897581815719604, - -1.6996463537216187, - -1.704849362373352, - -1.7052254676818848, - -1.7007641792297363, - -1.6915874481201172, - -1.6779453754425049, - -1.660210132598877, - -1.3955676555633545, - -1.4137955904006958, - -1.4351357221603394, - -1.4590058326721191, - -1.484755039215088, - -1.5116807222366333, - -1.539048433303833, - -1.5661119222640991, - -1.5921326875686646, - -1.6164010763168335, - -1.638255000114441, - -1.6570985317230225, - -1.6724175214767456, - -1.6837941408157349, - -1.6909180879592896, - -1.693595051765442, - -1.6917519569396973, - -1.685439109802246, - -1.6748286485671997, - -1.660210132598877, - -1.3955676555633545, - -1.408899188041687, - -1.4254765510559082, - -1.4448473453521729, - -1.466483235359192, - -1.4897942543029785, - -1.5141443014144897, - -1.5388692617416382, - -1.563294768333435, - -1.5867544412612915, - -1.6086084842681885, - -1.628260612487793, - -1.6451748609542847, - -1.6588900089263916, - -1.6690316200256348, - -1.675323247909546, - -1.6775933504104614, - -1.6757798194885254, - -1.669932246208191, - -1.660210132598877, - -1.3955676555633545, - -1.4027537107467651, - -1.4133530855178833, - -1.4270766973495483, - -1.4435502290725708, - -1.4623242616653442, - -1.482886791229248, - -1.5046768188476562, - -1.5270999670028687, - -1.5495446920394897, - -1.5713987350463867, - -1.5920658111572266, - -1.6109824180603027, - -1.62763249874115, - -1.64156174659729, - -1.6523902416229248, - -1.659822702407837, - -1.66365647315979, - -1.663786768913269, - -1.660210132598877, - -1.3955676555633545, - -1.3960250616073608, - -1.400079369544983, - -1.4076199531555176, - -1.4184411764144897, - -1.4322477579116821, - -1.4486632347106934, - -1.4672398567199707, - -1.4874707460403442, - -1.508804202079773, - -1.5306581258773804, - -1.5524365901947021, - -1.5735454559326172, - -1.5934089422225952, - -1.611485242843628, - -1.6272811889648438, - -1.6403659582138062, - -1.6503826379776, - -1.6570581197738647, - -1.660210132598877 - ], - "z": [ - 1.150040864944458, - 1.1457631587982178, - 1.1346596479415894, - 1.1170331239700317, - 1.0933643579483032, - 1.0642988681793213, - 1.0306297540664673, - 0.9932751655578613, - 0.9532541632652283, - 0.9116584062576294, - 0.8696224689483643, - 0.8282930254936218, - 0.7887974381446838, - 0.7522130012512207, - 0.7195377349853516, - 0.6916627883911133, - 0.6693485975265503, - 0.6532039046287537, - 0.6436690092086792, - 0.6410040259361267, - 1.150040864944458, - 1.1544442176818848, - 1.1517850160598755, - 1.1421356201171875, - 1.125759243965149, - 1.1031025648117065, - 1.0747836828231812, - 1.0415750741958618, - 1.0043824911117554, - 0.964220404624939, - 0.9221845269203186, - 0.8794212937355042, - 0.8370972871780396, - 0.7963669896125793, - 0.7583414316177368, - 0.724057674407959, - 0.6944511532783508, - 0.6703292727470398, - 0.6523500680923462, - 0.6410040259361267, - 1.150040864944458, - 1.1622719764709473, - 1.167227029800415, - 1.1647706031799316, - 1.1549696922302246, - 1.138091802597046, - 1.1145973205566406, - 1.0851269960403442, - 1.0504847764968872, - 1.0116156339645386, - 0.9695796370506287, - 0.9255236387252808, - 0.8806492686271667, - 0.8361806273460388, - 0.7933306694030762, - 0.7532681822776794, - 0.7170860767364502, - 0.6857712268829346, - 0.6601778268814087, - 0.6410040259361267, - 1.150040864944458, - 1.168398141860962, - 1.1793121099472046, - 1.1824849843978882, - 1.1778303384780884, - 1.1654751300811768, - 1.1457562446594238, - 1.1192115545272827, - 1.0865652561187744, - 1.0487078428268433, - 1.0066719055175781, - 0.9616041779518127, - 0.9147338271141052, - 0.8673394322395325, - 0.8207138776779175, - 0.7761288285255432, - 0.7348005175590515, - 0.6978563070297241, - 0.6663039326667786, - 0.6410040259361267, - 1.150040864944458, - 1.1721587181091309, - 1.1867308616638184, - 1.193359375, - 1.1918638944625854, - 1.1822848320007324, - 1.1648837327957153, - 1.1401350498199463, - 1.1087141036987305, - 1.0714777708053589, - 1.0294418334960938, - 0.983752965927124, - 0.9356573224067688, - 0.8864669799804688, - 0.8375236392021179, - 0.7901623249053955, - 0.7456749677658081, - 0.7052750587463379, - 0.6700645685195923, - 0.6410040259361267, - 1.150040864944458, - 1.173146367073059, - 1.1886792182922363, - 1.1962153911590576, - 1.195549488067627, - 1.1866995096206665, - 1.1699070930480957, - 1.1456302404403687, - 1.1145310401916504, - 1.0774577856063843, - 1.0354218482971191, - 0.9895698428153992, - 0.9411524534225464, - 0.8914903998374939, - 0.8419383764266968, - 0.793847918510437, - 0.7485308647155762, - 0.7072234153747559, - 0.6710522174835205, - 0.6410040259361267, - 1.150040864944458, - 1.17125403881073, - 1.184946060180664, - 1.190743327140808, - 1.1884877681732178, - 1.1782407760620117, - 1.1602821350097656, - 1.1351014375686646, - 1.1033856868743896, - 1.065999984741211, - 1.0239640474319458, - 0.9784245491027832, - 0.9306237101554871, - 0.881865382194519, - 0.833479642868042, - 0.7867861986160278, - 0.7430588006973267, - 0.7034902572631836, - 0.6691598296165466, - 0.6410040259361267, - 1.150040864944458, - 1.166686773300171, - 1.175935983657837, - 1.1775362491607666, - 1.171444058418274, - 1.157825231552124, - 1.1370515823364258, - 1.109689712524414, - 1.0764858722686768, - 1.0383458137512207, - 0.9963098764419556, - 0.9515247344970703, - 0.9052119851112366, - 0.8586349487304688, - 0.8130640983581543, - 0.769742488861084, - 0.7298517823219299, - 0.6944802403450012, - 0.6645925045013428, - 0.6410040259361267, - 1.150040864944458, - 1.1599394083023071, - 1.1626253128051758, - 1.1580255031585693, - 1.1462652683258057, - 1.1276652812957764, - 1.1027331352233887, - 1.0721487998962402, - 1.036746621131897, - 0.9974921345710754, - 0.9554562568664551, - 0.9117854833602905, - 0.8676710724830627, - 0.8243164420127869, - 0.7829040884971619, - 0.7445636987686157, - 0.7103409767150879, - 0.6811696290969849, - 0.6578451991081238, - 0.6410040259361267, - 1.150040864944458, - 1.1517431735992432, - 1.1464565992355347, - 1.1343251466751099, - 1.1156797409057617, - 1.091029167175293, - 1.061045527458191, - 1.0265469551086426, - 0.9884742498397827, - 0.9478661417961121, - 0.9058302044868469, - 0.8635131120681763, - 0.8220691680908203, - 0.7826287746429443, - 0.7462679147720337, - 0.7139782905578613, - 0.6866406798362732, - 0.665000855922699, - 0.6496490240097046, - 0.6410040259361267, - 1.150040864944458, - 1.1429864168167114, - 1.1291818618774414, - 1.1090036630630493, - 1.0830022096633911, - 1.0518869161605835, - 1.016506314277649, - 0.9778255820274353, - 0.9368999004364014, - 0.8948454856872559, - 0.8528095483779907, - 0.8119387626647949, - 0.7733478546142578, - 0.7380895614624023, - 0.7071256637573242, - 0.681300699710846, - 0.6613191366195679, - 0.6477260589599609, - 0.6408922076225281, - 0.6410040259361267, - 1.150040864944458, - 1.1346179246902466, - 1.112673044204712, - 1.084804892539978, - 1.0517736673355103, - 1.0144802331924438, - 0.97394198179245, - 0.9312646389007568, - 0.8876123428344727, - 0.8441758155822754, - 0.8021398782730103, - 0.7626512050628662, - 0.7267869114875793, - 0.6955252289772034, - 0.6697189807891846, - 0.6500720977783203, - 0.6371203660964966, - 0.6312172412872314, - 0.6325236558914185, - 0.6410040259361267, - 1.150040864944458, - 1.1275445222854614, - 1.0987192392349243, - 1.064351201057434, - 1.0253781080245972, - 0.9828627705574036, - 0.9379650950431824, - 0.891909658908844, - 0.8459527492523193, - 0.8013479709625244, - 0.759312093257904, - 0.7209916114807129, - 0.6874318718910217, - 0.6595483422279358, - 0.6381015777587891, - 0.6236765384674072, - 0.6166667342185974, - 0.6172634363174438, - 0.6254502534866333, - 0.6410040259361267, - 1.150040864944458, - 1.1225327253341675, - 1.0888323783874512, - 1.0498591661453247, - 1.0066759586334229, - 0.9604607820510864, - 0.9124742150306702, - 0.8640252947807312, - 0.8164355158805847, - 0.771003007888794, - 0.7289671301841736, - 0.6914743781089783, - 0.6595475077629089, - 0.6340575218200684, - 0.6156995296478271, - 0.6049743890762329, - 0.6021746397018433, - 0.6073766946792603, - 0.6204385757446289, - 0.6410040259361267, - 1.150040864944458, - 1.1201257705688477, - 1.084084153175354, - 1.0428990125656128, - 0.9976938962936401, - 0.9497017860412598, - 0.9002317786216736, - 0.8506333231925964, - 0.8022593259811401, - 0.7564293146133423, - 0.7143933773040771, - 0.6772981882095337, - 0.646155595779419, - 0.621815025806427, - 0.6049405336380005, - 0.5959923267364502, - 0.5952145457267761, - 0.6026283502578735, - 0.6180316209793091, - 0.6410040259361267, - 1.150040864944458, - 1.1205843687057495, - 1.0849888324737549, - 1.0442252159118652, - 0.9994052648544312, - 0.951751708984375, - 0.9025643467903137, - 0.8531849384307861, - 0.8049603700637817, - 0.7592061161994934, - 0.7171701788902283, - 0.6799992322921753, - 0.6487072110176086, - 0.6241476535797119, - 0.6069904565811157, - 0.5977036952972412, - 0.5965406894683838, - 0.6035330891609192, - 0.6184902191162109, - 0.6410040259361267, - 1.150040864944458, - 1.12385892868042, - 1.0914485454559326, - 1.0536938905715942, - 1.0116246938705444, - 0.966388463973999, - 0.9192192554473877, - 0.871403694152832, - 0.8242459893226624, - 0.7790325284004211, - 0.736996591091156, - 0.6992848515510559, - 0.6669259071350098, - 0.6408025026321411, - 0.6216272115707397, - 0.6099231243133545, - 0.6060093641281128, - 0.6099927425384521, - 0.6217646598815918, - 0.6410040259361267, - 1.150040864944458, - 1.1295944452285767, - 1.1027631759643555, - 1.0702790021896362, - 1.0330278873443604, - 0.9920259714126587, - 0.9483916759490967, - 0.9033152461051941, - 0.8580262660980225, - 0.8137600421905518, - 0.7717241048812866, - 0.733065128326416, - 0.6988375186920166, - 0.6699749231338501, - 0.6472647190093994, - 0.6313263177871704, - 0.6225944757461548, - 0.6213074326515198, - 0.6275002956390381, - 0.6410040259361267, - 1.150040864944458, - 1.1371694803237915, - 1.1177067756652832, - 1.0921833515167236, - 1.061295509338379, - 1.025885820388794, - 0.9869202375411987, - 0.9454615116119385, - 0.9026405811309814, - 0.8596254587173462, - 0.817589521408081, - 0.777679443359375, - 0.7409837245941162, - 0.7085034847259521, - 0.6811246275901794, - 0.659593939781189, - 0.6444988250732422, - 0.6362509727478027, - 0.6350753307342529, - 0.6410040259361267, - 1.150040864944458, - 1.1457631587982178, - 1.1346596479415894, - 1.1170331239700317, - 1.0933643579483032, - 1.0642989873886108, - 1.0306297540664673, - 0.9932752251625061, - 0.953254222869873, - 0.9116584062576294, - 0.869622528553009, - 0.8282930850982666, - 0.7887974381446838, - 0.7522130012512207, - 0.7195377349853516, - 0.6916627883911133, - 0.6693486571311951, - 0.6532039642333984, - 0.6436690092086792, - 0.6410040259361267 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.06472814083099365, - 0.06205222010612488, - 0.05385269224643707, - 0.0403531938791275, - 0.021921992301940918, - -0.0009381771087646484, - -0.027603745460510254, - -0.057347334921360016, - -0.08935762941837311, - -0.12276148051023483, - -0.1566476970911026, - -0.19009196758270264, - -0.2221820056438446, - -0.2520425021648407, - -0.27885890007019043, - -0.3018997609615326, - -0.3205365836620331, - -0.3342610001564026, - -0.3426985740661621, - -0.345619261264801, - 0.06472814083099365, - 0.04678827524185181, - 0.02374117076396942, - -0.003784552216529846, - -0.035038016736507416, - -0.06916671991348267, - -0.10523971915245056, - -0.14227305352687836, - -0.17925652861595154, - -0.2151813507080078, - -0.24906755983829498, - -0.2799908518791199, - -0.30710774660110474, - -0.329678475856781, - -0.34708744287490845, - -0.3588597774505615, - -0.36467432975769043, - -0.36437249183654785, - -0.35796254873275757, - -0.345619261264801, - 0.06472814083099365, - 0.033165156841278076, - -0.0031334757804870605, - -0.04317764937877655, - -0.0858749970793724, - -0.13006089627742767, - -0.17453008890151978, - -0.21806952357292175, - -0.25949159264564514, - -0.29766637086868286, - -0.3315525949001312, - -0.3602259159088135, - -0.38290420174598694, - -0.3989688456058502, - -0.40798166394233704, - -0.4096967577934265, - -0.40406742691993713, - -0.3912471532821655, - -0.3715856671333313, - -0.345619261264801, - 0.06472815573215485, - 0.022659137845039368, - -0.0238589346408844, - -0.07355721294879913, - -0.12508001923561096, - -0.17702192068099976, - -0.22796615958213806, - -0.27652305364608765, - -0.32136812806129456, - -0.36127805709838867, - -0.39516428112983704, - -0.4221024513244629, - -0.44135773181915283, - -0.4524049460887909, - -0.4549427032470703, - -0.4489017724990845, - -0.4344469904899597, - -0.41197261214256287, - -0.3820916712284088, - -0.345619261264801, - 0.06472815573215485, - 0.016408711671829224, - -0.03618929535150528, - -0.09163115918636322, - -0.1484045684337616, - -0.20496082305908203, - -0.25975731015205383, - -0.31129926443099976, - -0.35818079113960266, - -0.39912304282188416, - -0.4330092668533325, - -0.458915114402771, - -0.47613397240638733, - -0.48419609665870667, - -0.4828815758228302, - -0.4722263216972351, - -0.4525209367275238, - -0.42430296540260315, - -0.38834208250045776, - -0.345619261264801, - 0.06472815573215485, - 0.01509121060371399, - -0.03878837078809738, - -0.09544090926647186, - -0.1533210575580597, - -0.21084995567798615, - -0.2664584517478943, - -0.3186296224594116, - -0.3659403920173645, - -0.40710026025772095, - -0.4409864842891693, - -0.46667471528053284, - -0.4834643006324768, - -0.49089720845222473, - -0.4887707233428955, - -0.4771428406238556, - -0.45633068680763245, - -0.42690205574035645, - -0.389659583568573, - -0.345619261264801, - 0.06472815573215485, - 0.018849387764930725, - -0.03137452155351639, - -0.08457361161708832, - -0.1392967402935028, - -0.19405119121074677, - -0.24734342098236084, - -0.297719806432724, - -0.34380611777305603, - -0.38434523344039917, - -0.41823145747184753, - -0.44454044103622437, - -0.4625544846057892, - -0.47178220748901367, - -0.47197195887565613, - -0.4631184935569763, - -0.4454633891582489, - -0.41948819160461426, - -0.38590142130851746, - -0.345619261264801, - 0.06472815573215485, - 0.02727600932121277, - -0.014751136302947998, - -0.060206905007362366, - -0.10785136371850967, - -0.1563849002122879, - -0.20448365807533264, - -0.250835657119751, - -0.29417648911476135, - -0.3333238959312439, - -0.36721011996269226, - -0.3949108123779297, - -0.41567033529281616, - -0.4289224445819855, - -0.43430566787719727, - -0.431673139333725, - -0.42109668254852295, - -0.40286481380462646, - -0.3774747848510742, - -0.345619261264801, - 0.06472814083099365, - 0.03945791721343994, - 0.009280383586883545, - -0.024981297552585602, - -0.062392525374889374, - -0.1019328236579895, - -0.1425236612558365, - -0.18305782973766327, - -0.22242963314056396, - -0.259565144777298, - -0.29345136880874634, - -0.3231639564037323, - -0.34789252281188965, - -0.3669624328613281, - -0.37985357642173767, - -0.3862142562866211, - -0.3858710527420044, - -0.3788332939147949, - -0.36529290676116943, - -0.345619261264801, - 0.06472814083099365, - 0.054075002670288086, - 0.03811584413051605, - 0.017285972833633423, - -0.00784638524055481, - -0.03659569472074509, - -0.06817776709794998, - -0.10173111408948898, - -0.13634048402309418, - -0.17106184363365173, - -0.2049480676651001, - -0.2370748221874237, - -0.26656579971313477, - -0.29261651635169983, - -0.31451642513275146, - -0.3316681385040283, - -0.34360378980636597, - -0.3499978184700012, - -0.3506758213043213, - -0.345619261264801, - 0.06472814083099365, - 0.0695432722568512, - 0.06863047182559967, - 0.06201457977294922, - 0.0498761385679245, - 0.032546207308769226, - 0.010497525334358215, - -0.01566849648952484, - -0.04523812234401703, - -0.07740475982427597, - -0.11129097640514374, - -0.14597246050834656, - -0.18050317466259003, - -0.21394123136997223, - -0.24537450075149536, - -0.2739455997943878, - -0.29887518286705017, - -0.31948322057724, - -0.3352075219154358, - -0.345619261264801, - 0.06472814083099365, - 0.08418652415275574, - 0.09751753509044647, - 0.10435749590396881, - 0.10451991856098175, - 0.09800028800964355, - 0.08497649431228638, - 0.06580376625061035, - 0.04100508987903595, - 0.01125691831111908, - -0.022629305720329285, - -0.05972924083471298, - -0.09903090447187424, - -0.13946226239204407, - -0.17992043495178223, - -0.21930183470249176, - -0.2565322518348694, - -0.2905961275100708, - -0.32056427001953125, - -0.345619261264801, - 0.06472812592983246, - 0.09641790390014648, - 0.12164667248725891, - 0.1397261917591095, - 0.1501634120941162, - 0.15267357230186462, - 0.14718815684318542, - 0.13385692238807678, - 0.1130433976650238, - 0.08531533181667328, - 0.051429107785224915, - 0.012309074401855469, - -0.030977755784988403, - -0.07725057750940323, - -0.12524713575839996, - -0.1736583113670349, - -0.2211635708808899, - -0.26646700501441956, - -0.3083329200744629, - -0.345619261264801, - 0.06472812592983246, - 0.10491198301315308, - 0.13840311765670776, - 0.1642879843711853, - 0.18186050653457642, - 0.1906413435935974, - 0.19039106369018555, - 0.18111637234687805, - 0.16307029128074646, - 0.1367451250553131, - 0.10285890102386475, - 0.062335968017578125, - 0.01628170907497406, - -0.034047700464725494, - -0.0872793197631836, - -0.1419612169265747, - -0.19660179316997528, - -0.2497105598449707, - -0.2998388409614563, - -0.345619261264801, - 0.06472812592983246, - 0.10874827206134796, - 0.14597105979919434, - 0.1753811240196228, - 0.19617626070976257, - 0.20778924226760864, - 0.2099032998085022, - 0.20246070623397827, - 0.1856645941734314, - 0.15997302532196045, - 0.12608680129051208, - 0.08493027091026306, - 0.03762604296207428, - -0.01453542709350586, - -0.07013142108917236, - -0.12764544785022736, - -0.18550865352153778, - -0.24214261770248413, - -0.2960025370121002, - -0.345619261264801, - 0.06472812592983246, - 0.10751105844974518, - 0.14353039860725403, - 0.1718035638332367, - 0.19155940413475037, - 0.20225903391838074, - 0.20361056923866272, - 0.19557711482048035, - 0.1783778965473175, - 0.15248197317123413, - 0.11859574913978577, - 0.07764357328414917, - 0.030742451548576355, - -0.020828180015087128, - -0.07566165924072266, - -0.13226231932640076, - -0.1890861988067627, - -0.24458327889442444, - -0.297239750623703, - -0.345619261264801, - 0.06472812592983246, - 0.10133440792560577, - 0.13134557008743286, - 0.15394294261932373, - 0.16851019859313965, - 0.1746499240398407, - 0.1721946895122528, - 0.16121146082878113, - 0.14199978113174438, - 0.1150837242603302, - 0.08119750022888184, - 0.04126545786857605, - -0.0036232173442840576, - -0.05224405974149704, - -0.1032707542181015, - -0.15531153976917267, - -0.20694682002067566, - -0.2567681074142456, - -0.3034164011478424, - -0.345619261264801, - 0.06472812592983246, - 0.09088766574859619, - 0.11073702573776245, - 0.12373477220535278, - 0.12952637672424316, - 0.12795385718345642, - 0.11906006932258606, - 0.10308769345283508, - 0.08047235012054443, - 0.05183093249797821, - 0.017944708466529846, - -0.0202619805932045, - -0.0617469847202301, - -0.105378657579422, - -0.14996685087680817, - -0.19429536163806915, - -0.2371549904346466, - -0.277376651763916, - -0.3138631582260132, - -0.345619261264801, - 0.06472814083099365, - 0.07730288803577423, - 0.08393801748752594, - 0.0844525396823883, - 0.07883243262767792, - 0.06723099946975708, - 0.049964696168899536, - 0.02750450372695923, - 0.0004630535840988159, - -0.030422016978263855, - -0.06430823355913162, - -0.10027127712965012, - -0.13733017444610596, - -0.17447404563426971, - -0.2106897085905075, - -0.2449893057346344, - -0.2764372229576111, - -0.3041756749153137, - -0.32744792103767395, - -0.345619261264801, - 0.06472814083099365, - 0.062052205204963684, - 0.05385267734527588, - 0.040353164076805115, - 0.02192196249961853, - -0.0009382069110870361, - -0.02760378271341324, - -0.0573473796248436, - -0.08935768157243729, - -0.12276153266429901, - -0.15664774179458618, - -0.19009201228618622, - -0.22218206524848938, - -0.2520425319671631, - -0.2788589298725128, - -0.301899790763855, - -0.32053661346435547, - -0.3342610001564026, - -0.3426986038684845, - -0.345619261264801 - ], - "y": [ - -1.4021048545837402, - -1.4027578830718994, - -1.4070318937301636, - -1.4148104190826416, - -1.4258811473846436, - -1.4399421215057373, - -1.4566099643707275, - -1.475429892539978, - -1.4958884716033936, - -1.5174278020858765, - -1.539460301399231, - -1.561384916305542, - -1.5826036930084229, - -1.602537751197815, - -1.6206433773040771, - -1.6364266872406006, - -1.6494570970535278, - -1.6593793630599976, - -1.6659226417541504, - -1.6689085960388184, - -1.4021049737930298, - -1.3959966897964478, - -1.3936939239501953, - -1.3952594995498657, - -1.4006506204605103, - -1.4097201824188232, - -1.4222209453582764, - -1.4378118515014648, - -1.456067681312561, - -1.4764902591705322, - -1.4985227584838867, - -1.52156400680542, - -1.5449856519699097, - -1.5681487321853638, - -1.590421438217163, - -1.6111961603164673, - -1.6299062967300415, - -1.6460413932800293, - -1.6591614484786987, - -1.6689085960388184, - -1.4021049737930298, - -1.3900946378707886, - -1.3820507526397705, - -1.3781927824020386, - -1.3786258697509766, - -1.3833383321762085, - -1.392201542854309, - -1.4049737453460693, - -1.4213064908981323, - -1.4407542943954468, - -1.4627867937088013, - -1.4868029356002808, - -1.5121474266052246, - -1.538129210472107, - -1.5640394687652588, - -1.5891714096069336, - -1.6128395795822144, - -1.6343982219696045, - -1.6532593965530396, - -1.6689085960388184, - -1.4021049737930298, - -1.3856911659240723, - -1.373363971710205, - -1.365459680557251, - -1.3621937036514282, - -1.3636553287506104, - -1.3698046207427979, - -1.3804738521575928, - -1.395371913909912, - -1.4140925407409668, - -1.4361249208450317, - -1.460868239402771, - -1.487647533416748, - -1.5157322883605957, - -1.5443564653396606, - -1.5727392435073853, - -1.6001063585281372, - -1.625711441040039, - -1.6488559246063232, - -1.6689085960388184, - -1.4021049737930298, - -1.3832635879516602, - -1.3685749769210815, - -1.3584399223327637, - -1.3531347513198853, - -1.352804183959961, - -1.3574572801589966, - -1.3669672012329102, - -1.38107430934906, - -1.3993940353393555, - -1.4214264154434204, - -1.4465707540512085, - -1.4741408824920654, - -1.503385066986084, - -1.5335053205490112, - -1.5636802911758423, - -1.5930867195129395, - -1.6209224462509155, - -1.6464283466339111, - -1.6689085960388184, - -1.4021049737930298, - -1.3830748796463013, - -1.368202805519104, - -1.3578944206237793, - -1.3524307012557983, - -1.3519608974456787, - -1.3564977645874023, - -1.365917444229126, - -1.3799631595611572, - -1.3982516527175903, - -1.4202840328216553, - -1.4454594850540161, - -1.4730912446975708, - -1.5024254322052002, - -1.532662034034729, - -1.5629762411117554, - -1.5925410985946655, - -1.620550274848938, - -1.6462396383285522, - -1.6689085960388184, - -1.4021049737930298, - -1.3851455450057983, - -1.3722877502441406, - -1.363882064819336, - -1.36015784740448, - -1.36121666431427, - -1.3670296669006348, - -1.3774383068084717, - -1.3921586275100708, - -1.4107892513275146, - -1.4328216314315796, - -1.4576550722122192, - -1.4846121072769165, - -1.5129574537277222, - -1.5419178009033203, - -1.570703387260437, - -1.5985288619995117, - -1.6246352195739746, - -1.6483103036880493, - -1.6689085960388184, - -1.4021049737930298, - -1.3892512321472168, - -1.3803870677947998, - -1.3757541179656982, - -1.375478744506836, - -1.3795685768127441, - -1.3879120349884033, - -1.4002814292907715, - -1.4163395166397095, - -1.4356480836868286, - -1.4576804637908936, - -1.4818358421325684, - -1.5074552297592163, - -1.5338398218154907, - -1.5602697134017944, - -1.586024284362793, - -1.610400915145874, - -1.6327345371246338, - -1.6524159908294678, - -1.6689085960388184, - -1.4021049737930298, - -1.3949469327926636, - -1.3916231393814087, - -1.3922240734100342, - -1.396733283996582, - -1.405027985572815, - -1.416881799697876, - -1.4319713115692139, - -1.4498851299285889, - -1.4701343774795532, - -1.4921668767929077, - -1.5153815746307373, - -1.5391451120376587, - -1.5628095865249634, - -1.5857291221618652, - -1.607278823852539, - -1.6268707513809204, - -1.6439706087112427, - -1.6581116914749146, - -1.6689085960388184, - -1.4021048545837402, - -1.4016155004501343, - -1.4047783613204956, - -1.4115070104599, - -1.4216182231903076, - -1.4348359107971191, - -1.450799584388733, - -1.4690738916397095, - -1.489160418510437, - -1.510511040687561, - -1.5325435400009155, - -1.554656744003296, - -1.5762476921081543, - -1.5967273712158203, - -1.6155370473861694, - -1.6321637630462646, - -1.6461538076400757, - -1.6571258306503296, - -1.6647802591323853, - -1.6689085960388184, - -1.4021048545837402, - -1.408534288406372, - -1.4184271097183228, - -1.4315135478973389, - -1.4474366903305054, - -1.4657621383666992, - -1.485990047454834, - -1.507568597793579, - -1.5299092531204224, - -1.5524026155471802, - -1.5744349956512451, - -1.5954056978225708, - -1.614742398262024, - -1.6319177150726318, - -1.6464632749557495, - -1.6579822301864624, - -1.6661603450775146, - -1.6707745790481567, - -1.671699047088623, - -1.6689084768295288, - -1.4021048545837402, - -1.4149534702301025, - -1.4310903549194336, - -1.4500755071640015, - -1.471390962600708, - -1.494455337524414, - -1.5186395645141602, - -1.5432838201522827, - -1.5677158832550049, - -1.5912693738937378, - -1.6133018732070923, - -1.6332123279571533, - -1.6504576206207275, - -1.664567232131958, - -1.675156593322754, - -1.681936502456665, - -1.6847223043441772, - -1.6834378242492676, - -1.6781182289123535, - -1.6689084768295288, - -1.4021048545837402, - -1.4201774597167969, - -1.441395878791809, - -1.4651814699172974, - -1.4908852577209473, - -1.5178062915802002, - -1.5452101230621338, - -1.572349190711975, - -1.5984834432601929, - -1.6228997707366943, - -1.6449321508407593, - -1.6639797687530518, - -1.67952299118042, - -1.6911377906799316, - -1.6985074281692505, - -1.7014307975769043, - -1.6998282670974731, - -1.693743348121643, - -1.6833422183990479, - -1.6689084768295288, - -1.4021048545837402, - -1.423640251159668, - -1.4482269287109375, - -1.4751944541931152, - -1.5038070678710938, - -1.5332844257354736, - -1.5628224611282349, - -1.5916153192520142, - -1.618877649307251, - -1.6438658237457275, - -1.665898323059082, - -1.6843740940093994, - -1.698789119720459, - -1.7087501287460327, - -1.7139856815338135, - -1.7143526077270508, - -1.709841251373291, - -1.7005743980407715, - -1.686805009841919, - -1.6689084768295288, - -1.4021048545837402, - -1.4249664545059204, - -1.4508432149887085, - -1.4790294170379639, - -1.508756160736084, - -1.5392125844955444, - -1.5695679187774658, - -1.5989941358566284, - -1.6266885995864868, - -1.6518958806991577, - -1.6739282608032227, - -1.6921849250793457, - -1.7061679363250732, - -1.7154955863952637, - -1.7199137210845947, - -1.719301700592041, - -1.7136762142181396, - -1.7031906843185425, - -1.6881312131881714, - -1.6689084768295288, - -1.4021048545837402, - -1.4240124225616455, - -1.4489612579345703, - -1.4762706756591797, - -1.5051960945129395, - -1.5349481105804443, - -1.5647155046463013, - -1.5936861038208008, - -1.6210697889328003, - -1.646119475364685, - -1.66815185546875, - -1.6865661144256592, - -1.7008599042892456, - -1.7106432914733887, - -1.7156493663787842, - -1.7157416343688965, - -1.7109174728393555, - -1.7013087272644043, - -1.6871771812438965, - -1.6689084768295288, - -1.4021048545837402, - -1.4208815097808838, - -1.4427847862243652, - -1.4672173261642456, - -1.4935126304626465, - -1.5209534168243408, - -1.5487911701202393, - -1.5762665271759033, - -1.6026300191879272, - -1.6271626949310303, - -1.6491951942443848, - -1.6681264638900757, - -1.6834403276443481, - -1.694718837738037, - -1.7016545534133911, - -1.7040581703186035, - -1.7018641233444214, - -1.6951322555541992, - -1.6840462684631348, - -1.6689084768295288, - -1.4021048545837402, - -1.4159131050109863, - -1.4329835176467896, - -1.4528504610061646, - -1.4749720096588135, - -1.4987448453903198, - -1.5235204696655273, - -1.548622965812683, - -1.573367714881897, - -1.5970797538757324, - -1.619112253189087, - -1.6388641595840454, - -1.655796766281128, - -1.6694481372833252, - -1.6794459819793701, - -1.6855175495147705, - -1.6874971389770508, - -1.6853309869766235, - -1.6790778636932373, - -1.6689084768295288, - -1.4021048545837402, - -1.409645438194275, - -1.4206191301345825, - -1.4347267150878906, - -1.4515832662582397, - -1.470729112625122, - -1.4916417598724365, - -1.5137510299682617, - -1.5364537239074707, - -1.5591306686401367, - -1.5811631679534912, - -1.6019501686096191, - -1.6209248304367065, - -1.637569546699524, - -1.6514302492141724, - -1.6621288061141968, - -1.6693735122680664, - -1.672966718673706, - -1.6728101968765259, - -1.6689084768295288, - -1.4021048545837402, - -1.4027578830718994, - -1.4070318937301636, - -1.414810299873352, - -1.4258811473846436, - -1.4399421215057373, - -1.4566099643707275, - -1.475429892539978, - -1.4958884716033936, - -1.5174278020858765, - -1.539460301399231, - -1.561384916305542, - -1.5826035737991333, - -1.6025376319885254, - -1.6206432580947876, - -1.6364266872406006, - -1.6494570970535278, - -1.6593793630599976, - -1.6659226417541504, - -1.6689085960388184 - ], - "z": [ - 1.1671885251998901, - 1.1629846096038818, - 1.1518961191177368, - 1.1342253684997559, - 1.1104545593261719, - 1.081231951713562, - 1.0473546981811523, - 1.0097469091415405, - 0.9694344401359558, - 0.9275168776512146, - 0.8851376175880432, - 0.8434526920318604, - 0.8035991191864014, - 0.7666640281677246, - 0.7336549758911133, - 0.7054722309112549, - 0.6828845739364624, - 0.6665081977844238, - 0.6567897796630859, - 0.6539944410324097, - 1.1671885251998901, - 1.1716744899749756, - 1.1690388917922974, - 1.1593533754348755, - 1.1428823471069336, - 1.1200751066207886, - 1.0915535688400269, - 1.058095932006836, - 1.020614743232727, - 0.9801323413848877, - 0.9377531409263611, - 0.8946329951286316, - 0.8519481420516968, - 0.8108629584312439, - 0.7724981307983398, - 0.7379000782966614, - 0.708012580871582, - 0.6836509704589844, - 0.6654796600341797, - 0.6539943814277649, - 1.1671885251998901, - 1.1794991493225098, - 1.1844744682312012, - 1.1819791793823242, - 1.1720809936523438, - 1.1550500392913818, - 1.1313509941101074, - 1.1016302108764648, - 1.0666983127593994, - 1.02750825881958, - 0.9851289987564087, - 0.940716564655304, - 0.8954824209213257, - 0.8506603837013245, - 0.8074731826782227, - 0.7670986652374268, - 0.730638325214386, - 0.699086606502533, - 0.6733042001724243, - 0.6539943814277649, - 1.1671885251998901, - 1.185610294342041, - 1.1965303421020508, - 1.1996506452560425, - 1.1948862075805664, - 1.1823668479919434, - 1.1624343395233154, - 1.1356321573257446, - 1.102691411972046, - 1.0645105838775635, - 1.0221314430236816, - 0.9767096042633057, - 0.9294843673706055, - 0.8817437291145325, - 0.8347899913787842, - 0.7899038791656494, - 0.748309850692749, - 0.7111424207687378, - 0.6794154644012451, - 0.6539943814277649, - 1.1671885251998901, - 1.1893460750579834, - 1.20389986038208, - 1.2104530334472656, - 1.2088267803192139, - 1.1990653276443481, - 1.1814351081848145, - 1.1564170122146606, - 1.1246933937072754, - 1.0871297121047974, - 1.044750452041626, - 0.9987117052078247, - 0.9502692818641663, - 0.9007445573806763, - 0.8514884114265442, - 0.8038444519042969, - 0.7591122388839722, - 0.7185119986534119, - 0.6831511855125427, - 0.6539943814277649, - 1.1671885251998901, - 1.1903014183044434, - 1.205784559249878, - 1.2132155895233154, - 1.2123918533325195, - 1.2033357620239258, - 1.186294436454773, - 1.16173255443573, - 1.1303203105926514, - 1.092914342880249, - 1.0505350828170776, - 1.0043385028839111, - 0.9555848240852356, - 0.90560382604599, - 0.8557589054107666, - 0.8074096441268921, - 0.7618748545646667, - 0.7203966975212097, - 0.6841065883636475, - 0.6539943814277649, - 1.1671885251998901, - 1.1883729696273804, - 1.2019802331924438, - 1.2076390981674194, - 1.205195426940918, - 1.1947156190872192, - 1.1764856576919556, - 1.1510028839111328, - 1.1189621686935425, - 1.0812376737594604, - 1.038858413696289, - 0.992980420589447, - 0.9448550939559937, - 0.8957950472831726, - 0.8471386432647705, - 0.800213098526001, - 0.756298303604126, - 0.7165923118591309, - 0.6821780800819397, - 0.6539943814277649, - 1.1671885251998901, - 1.1837695837020874, - 1.1928989887237549, - 1.1943278312683105, - 1.1880170106887817, - 1.1741387844085693, - 1.153071641921997, - 1.1253904104232788, - 1.09184992313385, - 1.0533651113510132, - 1.0109858512878418, - 0.9658681750297546, - 0.9192426204681396, - 0.8723810911178589, - 0.8265618681907654, - 0.7830347418785095, - 0.7429869771003723, - 0.7075110673904419, - 0.6775746941566467, - 0.6539943814277649, - 1.1671885251998901, - 1.1769901514053345, - 1.1795250177383423, - 1.1747241020202637, - 1.1627182960510254, - 1.143835186958313, - 1.1185898780822754, - 1.0876708030700684, - 1.0519214868545532, - 1.0123170614242554, - 0.969937801361084, - 0.9259397387504578, - 0.8815230131149292, - 0.8378992080688477, - 0.7962583303451538, - 0.757736086845398, - 0.7233833074569702, - 0.6941370964050293, - 0.6707952618598938, - 0.6539943814277649, - 1.1671885251998901, - 1.168769359588623, - 1.1633076667785645, - 1.1509524583816528, - 1.1320408582687378, - 1.1070888042449951, - 1.0767767429351807, - 1.0419316291809082, - 1.0035037994384766, - 0.9625416398048401, - 0.9201623797416687, - 0.8775220513343811, - 0.835783839225769, - 0.7960860729217529, - 0.7595118284225464, - 0.7270585894584656, - 0.6996116638183594, - 0.6779196858406067, - 0.6625744104385376, - 0.6539943814277649, - 1.1671886444091797, - 1.1599979400634766, - 1.1460040807724, - 1.1255887746810913, - 1.099308967590332, - 1.067881464958191, - 1.032163381576538, - 0.9931292533874512, - 0.9518436789512634, - 0.9094328284263611, - 0.8670535683631897, - 0.825861930847168, - 0.7869815230369568, - 0.7514728307723999, - 0.7203044891357422, - 0.6943266987800598, - 0.6742479801177979, - 0.6606161594390869, - 0.6538029909133911, - 0.6539944410324097, - 1.1671886444091797, - 1.151626467704773, - 1.1294896602630615, - 1.101381778717041, - 1.0680696964263916, - 1.0304620265960693, - 0.9895845651626587, - 0.9465523958206177, - 0.9025392532348633, - 0.858745813369751, - 0.8163666129112244, - 0.7765575647354126, - 0.7404046058654785, - 0.7088939547538757, - 0.6828850507736206, - 0.6630873680114746, - 0.6500409841537476, - 0.6441017389297485, - 0.645431637763977, - 0.6539944410324097, - 1.1671886444091797, - 1.1445622444152832, - 1.115553855895996, - 1.0809545516967773, - 1.04170823097229, - 0.9988853931427002, - 0.9536541700363159, - 0.9072481989860535, - 0.8609334826469421, - 0.8159733414649963, - 0.773594081401825, - 0.7349517941474915, - 0.7011004686355591, - 0.6729635000228882, - 0.6513084173202515, - 0.636725902557373, - 0.6296137571334839, - 0.6301659345626831, - 0.6383674144744873, - 0.6539944410324097, - 1.1671886444091797, - 1.139570713043213, - 1.105706810951233, - 1.0665206909179688, - 1.0230813026428223, - 0.9765734672546387, - 0.9282658100128174, - 0.879476010799408, - 0.8315349817276001, - 0.7857503890991211, - 0.7433711290359497, - 0.7055532336235046, - 0.6733282208442688, - 0.6475751399993896, - 0.6289964914321899, - 0.6180989742279053, - 0.6151798963546753, - 0.6203188896179199, - 0.6333757638931274, - 0.6539944410324097, - 1.1671886444091797, - 1.137192726135254, - 1.1010156869888306, - 1.0596444606781006, - 1.0142074823379517, - 0.9659440517425537, - 0.9161707758903503, - 0.8662453293800354, - 0.8175294995307922, - 0.7713521718978882, - 0.7289729118347168, - 0.6915477514266968, - 0.660097599029541, - 0.6354801654815674, - 0.618367075920105, - 0.6092251539230347, - 0.6083036661148071, - 0.6156277656555176, - 0.6309977769851685, - 0.6539944410324097, - 1.1671886444091797, - 1.137686014175415, - 1.1019887924194336, - 1.0610709190368652, - 1.0160481929779053, - 0.9681490063667297, - 0.9186797142028809, - 0.8689898252487183, - 0.8204347491264343, - 0.7743389010429382, - 0.7319597005844116, - 0.6944530010223389, - 0.6628420948982239, - 0.6379891037940979, - 0.620572030544281, - 0.6110658645629883, - 0.609730064868927, - 0.6166008710861206, - 0.6314910650253296, - 0.6539944410324097, - 1.1671886444091797, - 1.140997052192688, - 1.108520746231079, - 1.0706453323364258, - 1.0284042358398438, - 0.9829493761062622, - 0.9355208277702332, - 0.8874122500419617, - 0.8399359583854675, - 0.7943869233131409, - 0.7520077228546143, - 0.7139542102813721, - 0.6812644600868225, - 0.6548302173614502, - 0.6353724002838135, - 0.6234219074249268, - 0.6193045377731323, - 0.6231328248977661, - 0.6348022222518921, - 0.6539944410324097, - 1.1671886444091797, - 1.146767258644104, - 1.119903564453125, - 1.0873304605484009, - 1.0499364137649536, - 1.0087413787841797, - 0.9648690223693848, - 0.9195161461830139, - 0.8739197850227356, - 0.8293237686157227, - 0.786944568157196, - 0.7479380965232849, - 0.7133683562278748, - 0.6841784119606018, - 0.661164402961731, - 0.6449540853500366, - 0.6359896659851074, - 0.634515643119812, - 0.6405723094940186, - 0.6539944410324097, - 1.1671886444091797, - 1.1543710231781006, - 1.134903907775879, - 1.1093180179595947, - 1.0783114433288574, - 1.0427299737930298, - 1.0035439729690552, - 0.9618225693702698, - 0.9187036752700806, - 0.8753635287284851, - 0.8329842686653137, - 0.7927219867706299, - 0.7556748390197754, - 0.722853422164917, - 0.695152997970581, - 0.6733291745185852, - 0.6579772233963013, - 0.6495159864425659, - 0.6481761932373047, - 0.6539944410324097, - 1.1671885251998901, - 1.1629846096038818, - 1.1518961191177368, - 1.1342253684997559, - 1.1104545593261719, - 1.081231951713562, - 1.0473546981811523, - 1.0097469091415405, - 0.9694344401359558, - 0.9275168776512146, - 0.885137677192688, - 0.8434526920318604, - 0.8035991787910461, - 0.7666640877723694, - 0.7336549758911133, - 0.7054722309112549, - 0.6828845739364624, - 0.6665081977844238, - 0.6567897796630859, - 0.6539944410324097 - ] - }, - { - "alphahull": 0, - "color": "#111111", - "opacity": 0.05, - "type": "mesh3d", - "x": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - -8.79903883088673e-9, - 0.0203650314360857, - 0.04052110016345978, - 0.06026134267449379, - 0.0793832466006279, - 0.09769056737422943, - 0.11499544978141785, - 0.13112030923366547, - 0.1458997279405594, - 0.15918199717998505, - 0.1708308458328247, - 0.18072673678398132, - 0.18876813352108002, - 0.19487251341342926, - 0.19897723197937012, - 0.20104016363620758, - 0.20104016363620758, - 0.19897723197937012, - 0.19487251341342926, - 0.18876813352108002, - 0.18072673678398132, - 0.1708308458328247, - 0.15918199717998505, - 0.1458997279405594, - 0.13112030923366547, - 0.11499544233083725, - 0.09769056737422943, - 0.0793832466006279, - 0.06026134267449379, - 0.04052107781171799, - 0.02036500722169876, - -8.79903883088673e-9, - -1.7237843152884125e-8, - 0.03989631310105324, - 0.0793832540512085, - 0.11805557459592819, - 0.15551652014255524, - 0.19138166308403015, - 0.2252829670906067, - 0.2568725347518921, - 0.28582629561424255, - 0.3118470311164856, - 0.334667831659317, - 0.3540544807910919, - 0.36980804800987244, - 0.3817668855190277, - 0.3898082971572876, - 0.3938497006893158, - 0.3938497006893158, - 0.3898082971572876, - 0.3817668855190277, - 0.36980804800987244, - 0.3540544807910919, - 0.334667831659317, - 0.3118470311164856, - 0.28582629561424255, - 0.2568725347518921, - 0.2252829372882843, - 0.19138166308403015, - 0.15551652014255524, - 0.11805557459592819, - 0.07938320934772491, - 0.039896268397569656, - -1.7237843152884125e-8, - -2.497092843611881e-8, - 0.0577942430973053, - 0.11499546468257904, - 0.1710166037082672, - 0.2252829521894455, - 0.27723759412765503, - 0.32634738087654114, - 0.3721083998680115, - 0.4140511155128479, - 0.45174506306648254, - 0.48480352759361267, - 0.5128872394561768, - 0.5357080101966858, - 0.5530317425727844, - 0.5646805763244629, - 0.5705350041389465, - 0.5705350041389465, - 0.5646805763244629, - 0.5530317425727844, - 0.5357080101966858, - 0.5128872394561768, - 0.48480352759361267, - 0.45174506306648254, - 0.4140511155128479, - 0.3721083998680115, - 0.32634735107421875, - 0.27723759412765503, - 0.2252829521894455, - 0.1710166037082672, - 0.11499539762735367, - 0.05779417231678963, - -2.497092843611881e-8, - -3.168169726563974e-8, - 0.07332605868577957, - 0.1458997279405594, - 0.21697618067264557, - 0.2858262360095978, - 0.35174334049224854, - 0.4140510559082031, - 0.4721100330352783, - 0.5253245830535889, - 0.5731485486030579, - 0.6150912046432495, - 0.6507222652435303, - 0.6796759963035583, - 0.7016553282737732, - 0.7164347171783447, - 0.7238624691963196, - 0.7238624691963196, - 0.7164347171783447, - 0.7016553282737732, - 0.6796759963035583, - 0.6507222652435303, - 0.6150912046432495, - 0.5731485486030579, - 0.5253245830535889, - 0.4721100330352783, - 0.41405102610588074, - 0.35174334049224854, - 0.2858262360095978, - 0.21697618067264557, - 0.14589963853359222, - 0.07332596927881241, - -3.168169726563974e-8, - -3.709541829266527e-8, - 0.08585590124130249, - 0.1708308458328247, - 0.2540527284145355, - 0.33466780185699463, - 0.41184869408607483, - 0.4848034679889679, - 0.5527834892272949, - 0.6150912046432495, - 0.6710872650146484, - 0.7201970815658569, - 0.7619166970252991, - 0.7958179712295532, - 0.821553111076355, - 0.8388580083847046, - 0.8475549817085266, - 0.8475549817085266, - 0.8388580083847046, - 0.821553111076355, - 0.7958179712295532, - 0.7619166970252991, - 0.7201970815658569, - 0.6710872650146484, - 0.6150912046432495, - 0.5527834892272949, - 0.4848034381866455, - 0.41184869408607483, - 0.33466780185699463, - 0.2540527284145355, - 0.17083074152469635, - 0.08585579693317413, - -3.709541829266527e-8, - -4.0990450145272916e-8, - 0.09487079828977585, - 0.1887681484222412, - 0.2807283401489258, - 0.36980801820755005, - 0.4550929665565491, - 0.5357080101966858, - 0.6108258962631226, - 0.6796759963035583, - 0.7415516376495361, - 0.795818030834198, - 0.8419181704521179, - 0.8793790936470032, - 0.9078164100646973, - 0.9269383549690247, - 0.9365485310554504, - 0.9365485310554504, - 0.9269383549690247, - 0.9078164100646973, - 0.8793790936470032, - 0.8419181704521179, - 0.795818030834198, - 0.7415516376495361, - 0.6796759963035583, - 0.6108258962631226, - 0.535707950592041, - 0.4550929665565491, - 0.36980801820755005, - 0.2807283401489258, - 0.18876802921295166, - 0.0948706865310669, - -4.0990450145272916e-8, - -4.3207322164562356e-8, - 0.10000167042016983, - 0.19897723197937012, - 0.29591089487075806, - 0.3898082375526428, - 0.4797056019306183, - 0.5646805167198181, - 0.6438610553741455, - 0.7164347171783447, - 0.7816567420959473, - 0.8388580083847046, - 0.8874514102935791, - 0.9269382953643799, - 0.9569135904312134, - 0.9770696759223938, - 0.987199604511261, - 0.987199604511261, - 0.9770696759223938, - 0.9569135904312134, - 0.9269382953643799, - 0.8874514102935791, - 0.8388580083847046, - 0.7816567420959473, - 0.7164347171783447, - 0.6438610553741455, - 0.5646804571151733, - 0.4797056019306183, - 0.3898082375526428, - 0.29591089487075806, - 0.19897711277008057, - 0.10000155121088028, - -4.3207322164562356e-8, - -4.365528383232231e-8, - 0.10103845596313477, - 0.20104016363620758, - 0.2989788055419922, - 0.393849641084671, - 0.48467904329299927, - 0.5705349445343018, - 0.6505363583564758, - 0.7238624691963196, - 0.7897607088088989, - 0.8475549817085266, - 0.8966522216796875, - 0.9365484714508057, - 0.966834545135498, - 0.987199604511261, - 0.9974346160888672, - 0.9974346160888672, - 0.987199604511261, - 0.966834545135498, - 0.9365484714508057, - 0.8966522216796875, - 0.8475549817085266, - 0.7897607088088989, - 0.7238624691963196, - 0.6505363583564758, - 0.570534884929657, - 0.48467904329299927, - 0.393849641084671, - 0.2989788055419922, - 0.20104004442691803, - 0.10103833675384521, - -4.365528383232231e-8, - -4.2315996040542814e-8, - 0.09793872386217117, - 0.19487251341342926, - 0.2898065149784088, - 0.38176682591438293, - 0.46980971097946167, - 0.5530316829681396, - 0.6305787563323975, - 0.7016553282737732, - 0.7655318975448608, - 0.821553111076355, - 0.869144082069397, - 0.9078164100646973, - 0.9371733069419861, - 0.9569135904312134, - 0.966834545135498, - 0.966834545135498, - 0.9569135904312134, - 0.9371733069419861, - 0.9078164100646973, - 0.869144082069397, - 0.821553111076355, - 0.7655318975448608, - 0.7016553282737732, - 0.6305787563323975, - 0.5530316233634949, - 0.46980971097946167, - 0.38176682591438293, - 0.2898065149784088, - 0.1948723942041397, - 0.09793860465288162, - -4.2315996040542814e-8, - -3.9244280714001434e-8, - 0.09082935750484467, - 0.18072673678398132, - 0.2687695026397705, - 0.35405442118644714, - 0.4357062578201294, - 0.512887179851532, - 0.5848050713539124, - 0.6507222056388855, - 0.709962010383606, - 0.7619166374206543, - 0.8060529828071594, - 0.8419180512428284, - 0.8691440224647522, - 0.8874513506889343, - 0.8966521620750427, - 0.8966521620750427, - 0.8874513506889343, - 0.8691440224647522, - 0.8419180512428284, - 0.8060529828071594, - 0.7619166374206543, - 0.709962010383606, - 0.6507222056388855, - 0.5848050713539124, - 0.5128871202468872, - 0.4357062578201294, - 0.35405442118644714, - 0.2687695026397705, - 0.18072661757469177, - 0.09082925319671631, - -3.9244280714001434e-8, - -3.456590036421403e-8, - 0.08000143617391586, - 0.15918198227882385, - 0.23672901093959808, - 0.3118469715118408, - 0.38376495242118835, - 0.4517449736595154, - 0.5150894522666931, - 0.5731484889984131, - 0.6253261566162109, - 0.6710872054100037, - 0.709962010383606, - 0.7415515780448914, - 0.7655318379402161, - 0.7816566824913025, - 0.7897606492042542, - 0.7897606492042542, - 0.7816566824913025, - 0.7655318379402161, - 0.7415515780448914, - 0.709962010383606, - 0.6710872054100037, - 0.6253261566162109, - 0.5731484889984131, - 0.5150894522666931, - 0.451744943857193, - 0.38376495242118835, - 0.3118469715118408, - 0.23672901093959808, - 0.1591818928718567, - 0.0800013393163681, - -3.456590036421403e-8, - -2.8472390667388936e-8, - 0.06589823961257935, - 0.13112030923366547, - 0.19499681890010834, - 0.2568724751472473, - 0.3161122798919678, - 0.3721083104610443, - 0.42428600788116455, - 0.47211000323295593, - 0.5150894522666931, - 0.5527834296226501, - 0.5848050713539124, - 0.6108258366584778, - 0.6305786967277527, - 0.6438609957695007, - 0.650536298751831, - 0.650536298751831, - 0.6438609957695007, - 0.6305786967277527, - 0.6108258366584778, - 0.5848050713539124, - 0.5527834296226501, - 0.5150894522666931, - 0.47211000323295593, - 0.42428600788116455, - 0.3721082806587219, - 0.3161122798919678, - 0.2568724751472473, - 0.19499681890010834, - 0.1311202198266983, - 0.06589815765619278, - -2.8472390667388936e-8, - -2.1213214296267324e-8, - 0.04909715801477432, - 0.09769053757190704, - 0.14528141915798187, - 0.191381573677063, - 0.23551790416240692, - 0.2772374749183655, - 0.316112220287323, - 0.351743221282959, - 0.3837648630142212, - 0.4118485748767853, - 0.43570616841316223, - 0.45509278774261475, - 0.46980956196784973, - 0.47970545291900635, - 0.48467889428138733, - 0.48467889428138733, - 0.47970545291900635, - 0.46980956196784973, - 0.45509278774261475, - 0.43570616841316223, - 0.4118485748767853, - 0.3837648630142212, - 0.351743221282959, - 0.316112220287323, - 0.2772374451160431, - 0.23551790416240692, - 0.191381573677063, - 0.14528141915798187, - 0.09769048541784286, - 0.049097102135419846, - -2.1213214296267324e-8, - -1.3085568184578733e-8, - 0.030286036431789398, - 0.0602613128721714, - 0.08961819112300873, - 0.11805549263954163, - 0.14528138935565948, - 0.17101649940013885, - 0.19499674439430237, - 0.21697606146335602, - 0.23672890663146973, - 0.25405260920524597, - 0.26876938343048096, - 0.28072819113731384, - 0.2898063659667969, - 0.2959107458591461, - 0.29897865653038025, - 0.29897865653038025, - 0.2959107458591461, - 0.2898063659667969, - 0.28072819113731384, - 0.26876938343048096, - 0.25405260920524597, - 0.23672890663146973, - 0.21697606146335602, - 0.19499674439430237, - 0.17101648449897766, - 0.14528138935565948, - 0.11805549263954163, - 0.08961819112300873, - 0.06026127561926842, - 0.030286001041531563, - -1.3085568184578733e-8, - -4.422205268639345e-9, - 0.010235020890831947, - 0.020365022122859955, - 0.030286038294434547, - 0.03989629074931145, - 0.049097154289484024, - 0.05779420956969261, - 0.06589821726083755, - 0.07332602143287659, - 0.08000140637159348, - 0.0858558639883995, - 0.09082932770252228, - 0.09487075358629227, - 0.09793867915868759, - 0.10000162571668625, - 0.10103841125965118, - 0.10103841125965118, - 0.10000162571668625, - 0.09793867915868759, - 0.09487075358629227, - 0.09082932770252228, - 0.0858558639883995, - 0.08000140637159348, - 0.07332602143287659, - 0.06589821726083755, - 0.057794202119112015, - 0.049097154289484024, - 0.03989629074931145, - 0.030286038294434547, - 0.02036501094698906, - 0.010235009714961052, - -4.422205268639345e-9, - 4.422212374066703e-9, - -0.010235038585960865, - -0.02036505751311779, - -0.030286090448498726, - -0.03989635780453682, - -0.04909723624587059, - -0.05779430642724037, - -0.06589832901954651, - -0.07332614809274673, - -0.08000154048204422, - -0.08585600554943085, - -0.09082947671413422, - -0.0948709100484848, - -0.09793884307146072, - -0.10000178962945938, - -0.10103858262300491, - -0.10103858262300491, - -0.10000178962945938, - -0.09793884307146072, - -0.0948709100484848, - -0.09082947671413422, - -0.08585600554943085, - -0.08000154048204422, - -0.07332614809274673, - -0.06589832901954651, - -0.05779430270195007, - -0.04909723624587059, - -0.03989635780453682, - -0.030286090448498726, - -0.020365044474601746, - -0.010235026478767395, - 4.422212374066703e-9, - 1.3085585059968707e-8, - -0.030286075547337532, - -0.06026139110326767, - -0.08961830288171768, - -0.11805564910173416, - -0.145281583070755, - -0.17101672291755676, - -0.19499699771404266, - -0.2169763445854187, - -0.2367292195558548, - -0.25405293703079224, - -0.2687697112560272, - -0.2807285487651825, - -0.2898067533969879, - -0.29591113328933716, - -0.2989790439605713, - -0.2989790439605713, - -0.29591113328933716, - -0.2898067533969879, - -0.2807285487651825, - -0.2687697112560272, - -0.25405293703079224, - -0.2367292195558548, - -0.2169763445854187, - -0.19499699771404266, - -0.17101670801639557, - -0.145281583070755, - -0.11805564910173416, - -0.08961830288171768, - -0.060261353850364685, - -0.030286040157079697, - 1.3085585059968707e-8, - 2.121323028347888e-8, - -0.04909719526767731, - -0.09769061207771301, - -0.14528152346611023, - -0.19138172268867493, - -0.23551808297634125, - -0.2772376835346222, - -0.3161124289035797, - -0.3517434895038605, - -0.38376516103744507, - -0.41184887290000916, - -0.4357064962387085, - -0.455093115568161, - -0.4698099195957184, - -0.479705810546875, - -0.484679251909256, - -0.484679251909256, - -0.479705810546875, - -0.4698099195957184, - -0.455093115568161, - -0.4357064962387085, - -0.41184887290000916, - -0.38376516103744507, - -0.3517434895038605, - -0.3161124289035797, - -0.2772376537322998, - -0.23551808297634125, - -0.19138172268867493, - -0.14528152346611023, - -0.09769055247306824, - -0.04909713938832283, - 2.121323028347888e-8, - 2.8472395996459454e-8, - -0.06589824706315994, - -0.13112032413482666, - -0.19499684870243073, - -0.2568725347518921, - -0.31611233949661255, - -0.3721083998680115, - -0.4242860972881317, - -0.4721100926399231, - -0.5150895714759827, - -0.5527835488319397, - -0.5848051905632019, - -0.6108259558677673, - -0.6305788159370422, - -0.6438611149787903, - -0.6505364179611206, - -0.6505364179611206, - -0.6438611149787903, - -0.6305788159370422, - -0.6108259558677673, - -0.5848051905632019, - -0.5527835488319397, - -0.5150895714759827, - -0.4721100926399231, - -0.4242860972881317, - -0.3721083402633667, - -0.31611233949661255, - -0.2568725347518921, - -0.19499684870243073, - -0.1311202496290207, - -0.06589817255735397, - 2.8472395996459454e-8, - 3.456590746964139e-8, - -0.08000144362449646, - -0.15918201208114624, - -0.23672904074192047, - -0.3118470311164856, - -0.38376501202583313, - -0.45174506306648254, - -0.5150895118713379, - -0.5731485486030579, - -0.6253262758255005, - -0.6710873246192932, - -0.7099620699882507, - -0.7415516376495361, - -0.7655319571495056, - -0.781656801700592, - -0.7897607684135437, - -0.7897607684135437, - -0.781656801700592, - -0.7655319571495056, - -0.7415516376495361, - -0.7099620699882507, - -0.6710873246192932, - -0.6253262758255005, - -0.5731485486030579, - -0.5150895118713379, - -0.45174500346183777, - -0.38376501202583313, - -0.3118470311164856, - -0.23672904074192047, - -0.15918190777301788, - -0.0800013467669487, - 3.456590746964139e-8, - 3.924428781942879e-8, - -0.09082937240600586, - -0.18072675168514252, - -0.2687695324420929, - -0.35405445098876953, - -0.43570631742477417, - -0.5128872394561768, - -0.5848051905632019, - -0.650722324848175, - -0.7099620699882507, - -0.7619167566299438, - -0.806053102016449, - -0.8419181704521179, - -0.869144082069397, - -0.8874514698982239, - -0.8966522812843323, - -0.8966522812843323, - -0.8874514698982239, - -0.869144082069397, - -0.8419181704521179, - -0.806053102016449, - -0.7619167566299438, - -0.7099620699882507, - -0.650722324848175, - -0.5848051905632019, - -0.512887179851532, - -0.43570631742477417, - -0.35405445098876953, - -0.2687695324420929, - -0.18072664737701416, - -0.0908292606472969, - 3.924428781942879e-8, - 4.2315996040542814e-8, - -0.09793872386217117, - -0.19487251341342926, - -0.2898065447807312, - -0.3817668557167053, - -0.46980974078178406, - -0.5530316829681396, - -0.6305788159370422, - -0.7016553282737732, - -0.7655319571495056, - -0.8215531706809998, - -0.869144082069397, - -0.9078164100646973, - -0.9371733665466309, - -0.9569136500358582, - -0.9668346047401428, - -0.9668346047401428, - -0.9569136500358582, - -0.9371733665466309, - -0.9078164100646973, - -0.869144082069397, - -0.8215531706809998, - -0.7655319571495056, - -0.7016553282737732, - -0.6305788159370422, - -0.5530316233634949, - -0.46980974078178406, - -0.3817668557167053, - -0.2898065447807312, - -0.1948724091053009, - -0.09793861210346222, - 4.2315996040542814e-8, - 4.365528738503599e-8, - -0.10103845596313477, - -0.20104017853736877, - -0.2989788353443146, - -0.3938496708869934, - -0.48467907309532166, - -0.5705350041389465, - -0.6505364179611206, - -0.7238625288009644, - -0.7897607684135437, - -0.8475550413131714, - -0.8966522812843323, - -0.9365485310554504, - -0.9668346047401428, - -0.9871996641159058, - -0.997434675693512, - -0.997434675693512, - -0.9871996641159058, - -0.9668346047401428, - -0.9365485310554504, - -0.8966522812843323, - -0.8475550413131714, - -0.7897607684135437, - -0.7238625288009644, - -0.6505364179611206, - -0.5705349445343018, - -0.48467907309532166, - -0.3938496708869934, - -0.2989788353443146, - -0.20104005932807922, - -0.10103833675384521, - 4.365528738503599e-8, - 4.3207322164562356e-8, - -0.10000166296958923, - -0.19897721707820892, - -0.29591086506843567, - -0.38980820775032043, - -0.4797055721282959, - -0.5646805167198181, - -0.6438609957695007, - -0.7164346575737, - -0.7816567420959473, - -0.8388579487800598, - -0.8874513506889343, - -0.9269382357597351, - -0.9569135308265686, - -0.977069616317749, - -0.9871995449066162, - -0.9871995449066162, - -0.977069616317749, - -0.9569135308265686, - -0.9269382357597351, - -0.8874513506889343, - -0.8388579487800598, - -0.7816567420959473, - -0.7164346575737, - -0.6438609957695007, - -0.5646804571151733, - -0.4797055721282959, - -0.38980820775032043, - -0.29591086506843567, - -0.19897709786891937, - -0.10000154376029968, - 4.3207322164562356e-8, - 4.099044303984556e-8, - -0.09487078338861465, - -0.18876810371875763, - -0.2807283103466034, - -0.3698079586029053, - -0.4550928771495819, - -0.5357078909873962, - -0.6108258366584778, - -0.6796758770942688, - -0.7415515184402466, - -0.7958178520202637, - -0.8419180512428284, - -0.8793789148330688, - -0.9078162908554077, - -0.9269381761550903, - -0.9365483522415161, - -0.9365483522415161, - -0.9269381761550903, - -0.9078162908554077, - -0.8793789148330688, - -0.8419180512428284, - -0.7958178520202637, - -0.7415515184402466, - -0.6796758770942688, - -0.6108258366584778, - -0.5357078313827515, - -0.4550928771495819, - -0.3698079586029053, - -0.2807283103466034, - -0.18876799941062927, - -0.0948706716299057, - 4.099044303984556e-8, - 3.7095407634524236e-8, - -0.0858558788895607, - -0.17083080112934113, - -0.25405266880989075, - -0.3346676826477051, - -0.4118485748767853, - -0.48480334877967834, - -0.5527833104133606, - -0.61509108543396, - -0.6710870862007141, - -0.7201968431472778, - -0.76191645860672, - -0.7958177328109741, - -0.8215528726577759, - -0.8388577699661255, - -0.8475547432899475, - -0.8475547432899475, - -0.8388577699661255, - -0.8215528726577759, - -0.7958177328109741, - -0.76191645860672, - -0.7201968431472778, - -0.6710870862007141, - -0.61509108543396, - -0.5527833104133606, - -0.48480328917503357, - -0.4118485748767853, - -0.3346676826477051, - -0.25405266880989075, - -0.17083069682121277, - -0.08585577458143234, - 3.7095407634524236e-8, - 3.1681686607498705e-8, - -0.07332602888345718, - -0.1458996683359146, - -0.2169760912656784, - -0.2858261168003082, - -0.3517431914806366, - -0.4140509068965912, - -0.472109854221344, - -0.5253243446350098, - -0.5731483101844788, - -0.6150909662246704, - -0.6507219672203064, - -0.6796756982803345, - -0.7016550302505493, - -0.7164344191551208, - -0.7238621711730957, - -0.7238621711730957, - -0.7164344191551208, - -0.7016550302505493, - -0.6796756982803345, - -0.6507219672203064, - -0.6150909662246704, - -0.5731483101844788, - -0.5253243446350098, - -0.472109854221344, - -0.4140508472919464, - -0.3517431914806366, - -0.2858261168003082, - -0.2169760912656784, - -0.14589957892894745, - -0.07332593947649002, - 3.1681686607498705e-8, - 2.4970907119836738e-8, - -0.05779419466853142, - -0.11499536782503128, - -0.17101646959781647, - -0.22528277337551117, - -0.2772373557090759, - -0.32634711265563965, - -0.3721080720424652, - -0.41405075788497925, - -0.4517447054386139, - -0.48480311036109924, - -0.5128868222236633, - -0.5357075929641724, - -0.5530312657356262, - -0.5646800994873047, - -0.5705345273017883, - -0.5705345273017883, - -0.5646800994873047, - -0.5530312657356262, - -0.5357075929641724, - -0.5128868222236633, - -0.48480311036109924, - -0.4517447054386139, - -0.41405075788497925, - -0.3721080720424652, - -0.32634708285331726, - -0.2772373557090759, - -0.22528277337551117, - -0.17101646959781647, - -0.11499530076980591, - -0.05779412388801575, - 2.4970907119836738e-8, - 1.7237820060245213e-8, - -0.03989626467227936, - -0.07938315719366074, - -0.11805541813373566, - -0.15551632642745972, - -0.19138142466545105, - -0.2252826690673828, - -0.2568722069263458, - -0.2858259081840515, - -0.31184664368629456, - -0.3346674144268036, - -0.3540540337562561, - -0.36980757117271423, - -0.3817664086818695, - -0.389807790517807, - -0.3938491940498352, - -0.3938491940498352, - -0.389807790517807, - -0.3817664086818695, - -0.36980757117271423, - -0.3540540337562561, - -0.3346674144268036, - -0.31184664368629456, - -0.2858259081840515, - -0.2568722069263458, - -0.22528265416622162, - -0.19138142466545105, - -0.15551632642745972, - -0.11805541813373566, - -0.07938310503959656, - -0.03989621624350548, - 1.7237820060245213e-8, - 8.799012185534139e-9, - -0.020364971831440926, - -0.04052098095417023, - -0.060261163860559464, - -0.0793830081820488, - -0.09769028425216675, - -0.11499511450529099, - -0.13111992180347443, - -0.14589929580688477, - -0.15918152034282684, - -0.17083033919334412, - -0.18072620034217834, - -0.18876756727695465, - -0.1948719322681427, - -0.19897663593292236, - -0.20103956758975983, - -0.20103956758975983, - -0.19897663593292236, - -0.1948719322681427, - -0.18876756727695465, - -0.18072620034217834, - -0.17083033919334412, - -0.15918152034282684, - -0.14589929580688477, - -0.13111992180347443, - -0.11499509960412979, - -0.09769028425216675, - -0.0793830081820488, - -0.060261163860559464, - -0.04052095487713814, - -0.020364947617053986, - 8.799012185534139e-9, - -7.64274186065882e-15, - 1.768882817998474e-8, - 3.519615532354692e-8, - 5.2342297607310684e-8, - 6.895135840068178e-8, - 8.485288560677873e-8, - 9.988370663904789e-8, - 1.138895697749831e-7, - 1.2672678906255896e-7, - 1.3826361566771084e-7, - 1.483816731706611e-7, - 1.5697713706686045e-7, - 1.6396178637023695e-7, - 1.6926398416217125e-7, - 1.7282928865824942e-7, - 1.7462113532928925e-7, - 1.7462113532928925e-7, - 1.7282928865824942e-7, - 1.6926398416217125e-7, - 1.6396178637023695e-7, - 1.5697713706686045e-7, - 1.483816731706611e-7, - 1.3826361566771084e-7, - 1.2672678906255896e-7, - 1.138895697749831e-7, - 9.988369242819317e-8, - 8.485288560677873e-8, - 6.895135840068178e-8, - 5.2342297607310684e-8, - 3.5196134007264845e-8, - 1.7688806863702666e-8, - -7.64274186065882e-15 - ], - "y": [ - -4.371138828673793e-8, - 0.10116830468177795, - 0.2012985348701477, - 0.29936304688453674, - 0.39435580372810364, - 0.4853019416332245, - 0.5712682008743286, - 0.6513724327087402, - 0.7247927784919739, - 0.790775716304779, - 0.8486442565917969, - 0.8978045582771301, - 0.9377521276473999, - 0.9680771231651306, - 0.98846834897995, - 0.9987164735794067, - 0.9987164735794067, - 0.98846834897995, - 0.9680771231651306, - 0.9377521276473999, - 0.8978045582771301, - 0.8486442565917969, - 0.790775716304779, - 0.7247927784919739, - 0.6513724327087402, - 0.5712681412696838, - 0.4853019416332245, - 0.39435580372810364, - 0.29936304688453674, - 0.20129841566085815, - 0.1011681854724884, - -4.371138828673793e-8, - -4.281661247773627e-8, - 0.09909737855195999, - 0.1971779316663742, - 0.29323506355285645, - 0.3862833082675934, - 0.47536778450012207, - 0.5595743060112, - 0.6380388140678406, - 0.7099562287330627, - 0.7745884656906128, - 0.8312724232673645, - 0.8794264197349548, - 0.918556272983551, - 0.948260486125946, - 0.9682343006134033, - 0.9782726764678955, - 0.9782726764678955, - 0.9682343006134033, - 0.948260486125946, - 0.918556272983551, - 0.8794264197349548, - 0.8312724232673645, - 0.7745884656906128, - 0.7099562287330627, - 0.6380388140678406, - 0.5595742464065552, - 0.47536778450012207, - 0.3862833082675934, - 0.29323506355285645, - 0.19717782735824585, - 0.09909726679325104, - -4.281661247773627e-8, - -4.016892418690077e-8, - 0.09296940267086029, - 0.18498486280441284, - 0.27510201930999756, - 0.36239635944366455, - 0.4459720253944397, - 0.5249713659286499, - 0.5985838174819946, - 0.6660540103912354, - 0.7266895174980164, - 0.7798683047294617, - 0.8250445127487183, - 0.8617546558380127, - 0.8896220326423645, - 0.9083607196807861, - 0.9177783131599426, - 0.9177783131599426, - 0.9083607196807861, - 0.8896220326423645, - 0.8617546558380127, - 0.8250445127487183, - 0.7798683047294617, - 0.7266895174980164, - 0.6660540103912354, - 0.5985838174819946, - 0.5249713063240051, - 0.4459720253944397, - 0.36239635944366455, - 0.27510201930999756, - 0.18498475849628448, - 0.09296929836273193, - -4.016892418690077e-8, - -3.5876709603144263e-8, - 0.08303524553775787, - 0.16521847248077393, - 0.2457062304019928, - 0.3236728012561798, - 0.3983180820941925, - 0.46887603402137756, - 0.5346226692199707, - 0.594883382320404, - 0.6490397453308105, - 0.696536123752594, - 0.736885130405426, - 0.7696726322174072, - 0.7945622801780701, - 0.811298668384552, - 0.8197099566459656, - 0.8197099566459656, - 0.811298668384552, - 0.7945622801780701, - 0.7696726322174072, - 0.736885130405426, - 0.696536123752594, - 0.6490397453308105, - 0.594883382320404, - 0.5346226692199707, - 0.4688759744167328, - 0.3983180820941925, - 0.3236728012561798, - 0.2457062304019928, - 0.16521836817264557, - 0.08303514122962952, - -3.5876709603144263e-8, - -3.011570015587495e-8, - 0.06970161199569702, - 0.13868802785873413, - 0.20625121891498566, - 0.27169808745384216, - 0.33435696363449097, - 0.39358487725257874, - 0.4487740397453308, - 0.499358206987381, - 0.5448182821273804, - 0.5846877694129944, - 0.6185575723648071, - 0.6460801362991333, - 0.6669730544090271, - 0.6810219287872314, - 0.6880825757980347, - 0.6880825757980347, - 0.6810219287872314, - 0.6669730544090271, - 0.6460801362991333, - 0.6185575723648071, - 0.5846877694129944, - 0.5448182821273804, - 0.499358206987381, - 0.4487740397453308, - 0.39358481764793396, - 0.33435696363449097, - 0.27169808745384216, - 0.20625121891498566, - 0.13868793845176697, - 0.06970153003931046, - -3.011570015587495e-8, - -2.3121749848087347e-8, - 0.05351439118385315, - 0.10647967457771301, - 0.15835227072238922, - 0.2086000144481659, - 0.25670725107192993, - 0.30218029022216797, - 0.34455254673957825, - 0.38338926434516907, - 0.4182918667793274, - 0.4489022493362427, - 0.4749062657356262, - 0.496037095785141, - 0.5120779275894165, - 0.5228641629219055, - 0.528285026550293, - 0.528285026550293, - 0.5228641629219055, - 0.5120779275894165, - 0.496037095785141, - 0.4749062657356262, - 0.4489022493362427, - 0.4182918667793274, - 0.38338926434516907, - 0.34455254673957825, - 0.3021802604198456, - 0.25670725107192993, - 0.2086000144481659, - 0.15835227072238922, - 0.10647961497306824, - 0.053514327853918076, - -2.3121749848087347e-8, - -1.518119141508123e-8, - 0.03513627499341965, - 0.06991202384233475, - 0.10397033393383026, - 0.13696181774139404, - 0.1685478836297989, - 0.19840440154075623, - 0.22622501850128174, - 0.2517242729663849, - 0.2746405005455017, - 0.2947385311126709, - 0.311812162399292, - 0.32568615674972534, - 0.3362182080745697, - 0.3433001637458801, - 0.3468593955039978, - 0.3468593955039978, - 0.3433001637458801, - 0.3362182080745697, - 0.32568615674972534, - 0.311812162399292, - 0.2947385311126709, - 0.2746405005455017, - 0.2517242729663849, - 0.22622501850128174, - 0.19840438663959503, - 0.1685478836297989, - 0.13696181774139404, - 0.10397033393383026, - 0.06991197913885117, - 0.035136234015226364, - -1.518119141508123e-8, - -6.619118142481284e-9, - 0.01531969103962183, - 0.03048218972980976, - 0.04533188045024872, - 0.059716422110795975, - 0.07348819077014923, - 0.08650587499141693, - 0.09863588213920593, - 0.10975375771522522, - 0.1197454109787941, - 0.1285083144903183, - 0.13595254719257355, - 0.14200171828269958, - 0.14659376442432404, - 0.14968156814575195, - 0.15123341977596283, - 0.15123341977596283, - 0.14968156814575195, - 0.14659376442432404, - 0.14200171828269958, - 0.13595254719257355, - 0.1285083144903183, - 0.1197454109787941, - 0.10975375771522522, - 0.09863588213920593, - 0.08650586754083633, - 0.07348819077014923, - 0.059716422110795975, - 0.04533188045024872, - 0.03048217110335827, - 0.015319673344492912, - -6.619118142481284e-9, - 2.213947913887182e-9, - -0.005124096293002367, - -0.010195614770054817, - -0.015162506140768528, - -0.019973816350102425, - -0.02458016760647297, - -0.028934292495250702, - -0.03299150988459587, - -0.036710191518068314, - -0.040052179247140884, - -0.042983174324035645, - -0.04547310620546341, - -0.04749641939997673, - -0.04903235659003258, - -0.05006515607237816, - -0.05058421567082405, - -0.05058421567082405, - -0.05006515607237816, - -0.04903235659003258, - -0.04749641939997673, - -0.04547310620546341, - -0.042983174324035645, - -0.040052179247140884, - -0.036710191518068314, - -0.03299150988459587, - -0.028934288769960403, - -0.02458016760647297, - -0.019973816350102425, - -0.015162506140768528, - -0.01019560918211937, - -0.005124090239405632, - 2.213947913887182e-9, - 1.095637447434683e-8, - -0.025358103215694427, - -0.050456009805202484, - -0.07503613829612732, - -0.09884632378816605, - -0.12164221704006195, - -0.14318987727165222, - -0.16326822340488434, - -0.18167121708393097, - -0.19821001589298248, - -0.21271492540836334, - -0.225037083029747, - -0.2350500524044037, - -0.2426510900259018, - -0.24776220321655273, - -0.25033092498779297, - -0.25033092498779297, - -0.24776220321655273, - -0.2426510900259018, - -0.2350500524044037, - -0.225037083029747, - -0.21271492540836334, - -0.19821001589298248, - -0.18167121708393097, - -0.16326822340488434, - -0.14318986237049103, - -0.12164221704006195, - -0.09884632378816605, - -0.07503613829612732, - -0.050455980002880096, - -0.02535807341337204, - 1.095637447434683e-8, - 1.925024228910388e-8, - -0.044553935527801514, - -0.08865070343017578, - -0.13183774054050446, - -0.17367200553417206, - -0.21372415125370026, - -0.25158318877220154, - -0.2868606448173523, - -0.3191945254802704, - -0.3482530415058136, - -0.37373799085617065, - -0.3953879177570343, - -0.4129805862903595, - -0.42633554339408875, - -0.43531572818756104, - -0.43982893228530884, - -0.43982893228530884, - -0.43531572818756104, - -0.42633554339408875, - -0.4129805862903595, - -0.3953879177570343, - -0.37373799085617065, - -0.3482530415058136, - -0.3191945254802704, - -0.2868606448173523, - -0.25158315896987915, - -0.21372415125370026, - -0.17367200553417206, - -0.13183774054050446, - -0.0886506512761116, - -0.04455387964844704, - 1.925024228910388e-8, - 2.6756007187600517e-8, - -0.0619257353246212, - -0.12321605533361435, - -0.18324194848537445, - -0.24138759076595306, - -0.29705625772476196, - -0.3496767282485962, - -0.3987090289592743, - -0.4436500668525696, - -0.4840386211872101, - -0.5194603204727173, - -0.5495516061782837, - -0.5740037560462952, - -0.5925658941268921, - -0.6050474643707275, - -0.611320436000824, - -0.611320436000824, - -0.6050474643707275, - -0.5925658941268921, - -0.5740037560462952, - -0.5495516061782837, - -0.5194603204727173, - -0.4840386211872101, - -0.4436500668525696, - -0.3987090289592743, - -0.3496766984462738, - -0.29705625772476196, - -0.24138759076595306, - -0.18324194848537445, - -0.12321598827838898, - -0.06192566081881523, - 2.6756007187600517e-8, - 3.316637275929679e-8, - -0.07676228135824203, - -0.15273691713809967, - -0.22714416682720184, - -0.2992206811904907, - -0.3682268261909485, - -0.4334544241428375, - -0.494234174489975, - -0.5499424338340759, - -0.6000075340270996, - -0.6439157724380493, - -0.6812165379524231, - -0.7115271091461182, - -0.7345364689826965, - -0.7500084638595581, - -0.7577843070030212, - -0.7577843070030212, - -0.7500084638595581, - -0.7345364689826965, - -0.7115271091461182, - -0.6812165379524231, - -0.6439157724380493, - -0.6000075340270996, - -0.5499424338340759, - -0.494234174489975, - -0.43345436453819275, - -0.3682268261909485, - -0.2992206811904907, - -0.22714416682720184, - -0.1527368277311325, - -0.07676219195127487, - 3.316637275929679e-8, - 3.821891070288075e-8, - -0.0884561762213707, - -0.17600472271442413, - -0.2617470920085907, - -0.34480372071266174, - -0.4243221580982208, - -0.4994864761829376, - -0.5695253610610962, - -0.6337202191352844, - -0.6914121508598328, - -0.7420093417167664, - -0.7849924564361572, - -0.8199204802513123, - -0.8464350700378418, - -0.8642640709877014, - -0.8732244968414307, - -0.8732244968414307, - -0.8642640709877014, - -0.8464350700378418, - -0.8199204802513123, - -0.7849924564361572, - -0.7420093417167664, - -0.6914121508598328, - -0.6337202191352844, - -0.5695253610610962, - -0.49948644638061523, - -0.4243221580982208, - -0.34480372071266174, - -0.2617470920085907, - -0.17600461840629578, - -0.08845607191324234, - 3.821891070288075e-8, - 4.170675538262003e-8, - -0.09652866423130035, - -0.19206684827804565, - -0.2856340706348419, - -0.3762703835964203, - -0.4630456864833832, - -0.5450694561004639, - -0.6215000748634338, - -0.6915532946586609, - -0.754510223865509, - -0.8097248673439026, - -0.8566306829452515, - -0.8947461843490601, - -0.9236804842948914, - -0.9431365728378296, - -0.9529147148132324, - -0.9529147148132324, - -0.9431365728378296, - -0.9236804842948914, - -0.8947461843490601, - -0.8566306829452515, - -0.8097248673439026, - -0.754510223865509, - -0.6915532946586609, - -0.6215000748634338, - -0.5450693964958191, - -0.4630456864833832, - -0.3762703835964203, - -0.2856340706348419, - -0.1920667439699173, - -0.0965285450220108, - 4.170675538262003e-8, - 4.348711968304997e-8, - -0.10064924508333206, - -0.20026573538780212, - -0.2978271245956421, - -0.3923324942588806, - -0.4828120172023773, - -0.5683372020721436, - -0.6480304598808289, - -0.721074104309082, - -0.7867185473442078, - -0.8442901372909546, - -0.8931982517242432, - -0.9329408407211304, - -0.9631102681159973, - -0.9833968877792358, - -0.993592381477356, - -0.993592381477356, - -0.9833968877792358, - -0.9631102681159973, - -0.9329408407211304, - -0.8931982517242432, - -0.8442901372909546, - -0.7867185473442078, - -0.721074104309082, - -0.6480304598808289, - -0.5683371424674988, - -0.4828120172023773, - -0.3923324942588806, - -0.2978271245956421, - -0.20026563107967377, - -0.10064912587404251, - 4.348711968304997e-8, - 4.348711968304997e-8, - -0.10064923763275146, - -0.20026573538780212, - -0.2978270947933197, - -0.3923324644565582, - -0.48281198740005493, - -0.5683372020721436, - -0.6480304598808289, - -0.721074104309082, - -0.786718487739563, - -0.8442901372909546, - -0.8931981921195984, - -0.9329407811164856, - -0.9631102085113525, - -0.9833968281745911, - -0.9935923218727112, - -0.9935923218727112, - -0.9833968281745911, - -0.9631102085113525, - -0.9329407811164856, - -0.8931981921195984, - -0.8442901372909546, - -0.786718487739563, - -0.721074104309082, - -0.6480304598808289, - -0.5683371424674988, - -0.48281198740005493, - -0.3923324644565582, - -0.2978270947933197, - -0.20026561617851257, - -0.10064911842346191, - 4.348711968304997e-8, - 4.170675182990635e-8, - -0.09652864933013916, - -0.19206683337688446, - -0.28563404083251953, - -0.3762703537940979, - -0.4630456268787384, - -0.5450693964958191, - -0.6215000152587891, - -0.6915532350540161, - -0.7545101642608643, - -0.8097248077392578, - -0.8566305637359619, - -0.8947461247444153, - -0.9236803650856018, - -0.94313645362854, - -0.9529145956039429, - -0.9529145956039429, - -0.94313645362854, - -0.9236803650856018, - -0.8947461247444153, - -0.8566305637359619, - -0.8097248077392578, - -0.7545101642608643, - -0.6915532350540161, - -0.6215000152587891, - -0.5450693368911743, - -0.4630456268787384, - -0.3762703537940979, - -0.28563404083251953, - -0.1920667141675949, - -0.0965285375714302, - 4.170675182990635e-8, - 3.821890004473971e-8, - -0.0884561538696289, - -0.17600466310977936, - -0.2617470324039459, - -0.3448036015033722, - -0.4243220388889313, - -0.49948635697364807, - -0.5695251822471619, - -0.6337200403213501, - -0.6914119720458984, - -0.7420091032981873, - -0.7849922776222229, - -0.8199203014373779, - -0.8464348316192627, - -0.8642638325691223, - -0.8732242584228516, - -0.8732242584228516, - -0.8642638325691223, - -0.8464348316192627, - -0.8199203014373779, - -0.7849922776222229, - -0.7420091032981873, - -0.6914119720458984, - -0.6337200403213501, - -0.5695251822471619, - -0.4994862973690033, - -0.4243220388889313, - -0.3448036015033722, - -0.2617470324039459, - -0.176004558801651, - -0.08845604956150055, - 3.821890004473971e-8, - 3.316637275929679e-8, - -0.07676227390766144, - -0.15273690223693848, - -0.22714415192604065, - -0.2992206811904907, - -0.3682267963886261, - -0.43345439434051514, - -0.4942341148853302, - -0.5499424338340759, - -0.6000074744224548, - -0.6439157128334045, - -0.6812164783477783, - -0.7115270495414734, - -0.7345364093780518, - -0.7500084042549133, - -0.7577842473983765, - -0.7577842473983765, - -0.7500084042549133, - -0.7345364093780518, - -0.7115270495414734, - -0.6812164783477783, - -0.6439157128334045, - -0.6000074744224548, - -0.5499424338340759, - -0.4942341148853302, - -0.43345433473587036, - -0.3682267963886261, - -0.2992206811904907, - -0.22714415192604065, - -0.1527368128299713, - -0.07676218450069427, - 3.316637275929679e-8, - 2.675599830581632e-8, - -0.06192571669816971, - -0.12321602553129196, - -0.18324188888072968, - -0.2413875162601471, - -0.2970561981201172, - -0.34967663884162903, - -0.39870890974998474, - -0.44364994764328003, - -0.48403847217559814, - -0.519460141658783, - -0.5495514869689941, - -0.5740036368370056, - -0.5925657153129578, - -0.6050472855567932, - -0.6113202571868896, - -0.6113202571868896, - -0.6050472855567932, - -0.5925657153129578, - -0.5740036368370056, - -0.5495514869689941, - -0.519460141658783, - -0.48403847217559814, - -0.44364994764328003, - -0.39870890974998474, - -0.34967660903930664, - -0.2970561981201172, - -0.2413875162601471, - -0.18324188888072968, - -0.12321595102548599, - -0.06192564219236374, - 2.675599830581632e-8, - 1.9250235183676523e-8, - -0.04455392062664032, - -0.0886506736278534, - -0.13183769583702087, - -0.17367194592952728, - -0.21372409164905548, - -0.2515830993652344, - -0.28686052560806274, - -0.3191944360733032, - -0.34825292229652405, - -0.3737378716468811, - -0.39538776874542236, - -0.41298043727874756, - -0.4263353943824768, - -0.4353155791759491, - -0.4398287832736969, - -0.4398287832736969, - -0.4353155791759491, - -0.4263353943824768, - -0.41298043727874756, - -0.39538776874542236, - -0.3737378716468811, - -0.34825292229652405, - -0.3191944360733032, - -0.28686052560806274, - -0.2515830993652344, - -0.21372409164905548, - -0.17367194592952728, - -0.13183769583702087, - -0.08865062147378922, - -0.04455386474728584, - 1.9250235183676523e-8, - 1.0956362039848955e-8, - -0.02535807341337204, - -0.05045595020055771, - -0.07503604888916016, - -0.0988462045788765, - -0.12164206802845001, - -0.1431897133588791, - -0.16326802968978882, - -0.18167100846767426, - -0.19820979237556458, - -0.21271467208862305, - -0.22503681480884552, - -0.235049769282341, - -0.24265079200267792, - -0.24776190519332886, - -0.2503306269645691, - -0.2503306269645691, - -0.24776190519332886, - -0.24265079200267792, - -0.235049769282341, - -0.22503681480884552, - -0.21271467208862305, - -0.19820979237556458, - -0.18167100846767426, - -0.16326802968978882, - -0.1431896984577179, - -0.12164206802845001, - -0.0988462045788765, - -0.07503604888916016, - -0.05045592039823532, - -0.025358043611049652, - 1.0956362039848955e-8, - 2.2139350353000964e-9, - -0.005124066490679979, - -0.010195556096732616, - -0.015162418596446514, - -0.019973700866103172, - -0.02458002418279648, - -0.028934122994542122, - -0.03299131616950035, - -0.0367099791765213, - -0.04005194455385208, - -0.04298292472958565, - -0.04547284170985222, - -0.047496143728494644, - -0.049032073467969894, - -0.05006486549973488, - -0.05058392137289047, - -0.05058392137289047, - -0.05006486549973488, - -0.049032073467969894, - -0.047496143728494644, - -0.04547284170985222, - -0.04298292472958565, - -0.04005194455385208, - -0.0367099791765213, - -0.03299131616950035, - -0.028934121131896973, - -0.02458002418279648, - -0.019973700866103172, - -0.015162418596446514, - -0.010195549577474594, - -0.005124060437083244, - 2.2139350353000964e-9, - -6.61913057697916e-9, - 0.015319719910621643, - 0.030482245609164238, - 0.04533196613192558, - 0.05971653386950493, - 0.07348833233118057, - 0.08650603145360947, - 0.09863606095314026, - 0.10975396633148193, - 0.119745634496212, - 0.1285085529088974, - 0.13595280051231384, - 0.14200198650360107, - 0.14659403264522552, - 0.14968183636665344, - 0.1512337028980255, - 0.1512337028980255, - 0.14968183636665344, - 0.14659403264522552, - 0.14200198650360107, - 0.13595280051231384, - 0.1285085529088974, - 0.119745634496212, - 0.10975396633148193, - 0.09863606095314026, - 0.08650602400302887, - 0.07348833233118057, - 0.05971653386950493, - 0.04533196613192558, - 0.030482228845357895, - 0.015319702215492725, - -6.61913057697916e-9, - -1.5181209178649624e-8, - 0.03513631597161293, - 0.06991209834814072, - 0.10397045314311981, - 0.13696196675300598, - 0.16854806244373322, - 0.19840462505817413, - 0.22622527182102203, - 0.25172457098960876, - 0.2746407985687256, - 0.29473888874053955, - 0.31181252002716064, - 0.3256865441799164, - 0.33621856570243835, - 0.34330055117607117, - 0.34685978293418884, - 0.34685978293418884, - 0.34330055117607117, - 0.33621856570243835, - 0.3256865441799164, - 0.31181252002716064, - 0.29473888874053955, - 0.2746407985687256, - 0.25172457098960876, - 0.22622527182102203, - 0.19840461015701294, - 0.16854806244373322, - 0.13696196675300598, - 0.10397045314311981, - 0.06991206109523773, - 0.03513627499341965, - -1.5181209178649624e-8, - -2.3121765835298902e-8, - 0.053514424711465836, - 0.10647974908351898, - 0.15835237503051758, - 0.20860016345977783, - 0.25670742988586426, - 0.3021804988384247, - 0.34455278515815735, - 0.38338953256607056, - 0.41829216480255127, - 0.44890254735946655, - 0.4749065935611725, - 0.49603742361068726, - 0.5120782852172852, - 0.5228645205497742, - 0.5282853841781616, - 0.5282853841781616, - 0.5228645205497742, - 0.5120782852172852, - 0.49603742361068726, - 0.4749065935611725, - 0.44890254735946655, - 0.41829216480255127, - 0.38338953256607056, - 0.34455278515815735, - 0.3021804690361023, - 0.25670742988586426, - 0.20860016345977783, - 0.15835237503051758, - 0.10647968202829361, - 0.05351436138153076, - -2.3121765835298902e-8, - -3.011571436672966e-8, - 0.0697016492486, - 0.1386880874633789, - 0.206251323223114, - 0.2716982364654541, - 0.3343571424484253, - 0.39358505606651306, - 0.4487742483615875, - 0.49935847520828247, - 0.5448185801506042, - 0.5846880674362183, - 0.6185579299926758, - 0.646080493927002, - 0.6669734120368958, - 0.6810222864151001, - 0.6880829334259033, - 0.6880829334259033, - 0.6810222864151001, - 0.6669734120368958, - 0.646080493927002, - 0.6185579299926758, - 0.5846880674362183, - 0.5448185801506042, - 0.49935847520828247, - 0.4487742483615875, - 0.3935850262641907, - 0.3343571424484253, - 0.2716982364654541, - 0.206251323223114, - 0.13868801295757294, - 0.06970156729221344, - -3.011571436672966e-8, - -3.58767202612853e-8, - 0.08303527534008026, - 0.1652185320854187, - 0.24570631980895996, - 0.32367292046546936, - 0.39831823110580444, - 0.4688762128353119, - 0.534622848033905, - 0.5948836207389832, - 0.6490399837493896, - 0.6965364217758179, - 0.7368853688240051, - 0.7696729302406311, - 0.794562578201294, - 0.8112989664077759, - 0.8197102546691895, - 0.8197102546691895, - 0.8112989664077759, - 0.794562578201294, - 0.7696729302406311, - 0.7368853688240051, - 0.6965364217758179, - 0.6490399837493896, - 0.5948836207389832, - 0.534622848033905, - 0.4688761532306671, - 0.39831823110580444, - 0.32367292046546936, - 0.24570631980895996, - 0.16521842777729034, - 0.0830351784825325, - -3.58767202612853e-8, - -4.0168931292328125e-8, - 0.09296942502260208, - 0.18498490750789642, - 0.27510207891464233, - 0.3623964190483093, - 0.44597211480140686, - 0.5249714851379395, - 0.5985839366912842, - 0.6660541296005249, - 0.7266896963119507, - 0.7798684239387512, - 0.8250446915626526, - 0.861754834651947, - 0.8896222114562988, - 0.9083608984947205, - 0.917778491973877, - 0.917778491973877, - 0.9083608984947205, - 0.8896222114562988, - 0.861754834651947, - 0.8250446915626526, - 0.7798684239387512, - 0.7266896963119507, - 0.6660541296005249, - 0.5985839366912842, - 0.5249714255332947, - 0.44597211480140686, - 0.3623964190483093, - 0.27510207891464233, - 0.18498478829860687, - 0.09296931326389313, - -4.0168931292328125e-8, - -4.281661603044995e-8, - 0.09909739345312119, - 0.1971779614686966, - 0.29323509335517883, - 0.38628336787223816, - 0.47536781430244446, - 0.5595743656158447, - 0.6380388736724854, - 0.7099562883377075, - 0.7745885848999023, - 0.831272542476654, - 0.8794265389442444, - 0.9185563921928406, - 0.9482606053352356, - 0.9682344198226929, - 0.9782727956771851, - 0.9782727956771851, - 0.9682344198226929, - 0.9482606053352356, - 0.9185563921928406, - 0.8794265389442444, - 0.831272542476654, - 0.7745885848999023, - 0.7099562883377075, - 0.6380388736724854, - 0.5595743060112, - 0.47536781430244446, - 0.38628336787223816, - 0.29323509335517883, - 0.19717784225940704, - 0.09909727424383163, - -4.281661603044995e-8, - -4.371138828673793e-8, - 0.10116830468177795, - 0.2012985348701477, - 0.29936304688453674, - 0.39435580372810364, - 0.4853019416332245, - 0.5712682008743286, - 0.6513724327087402, - 0.7247927784919739, - 0.790775716304779, - 0.8486442565917969, - 0.8978045582771301, - 0.9377521276473999, - 0.9680771231651306, - 0.98846834897995, - 0.9987164735794067, - 0.9987164735794067, - 0.98846834897995, - 0.9680771231651306, - 0.9377521276473999, - 0.8978045582771301, - 0.8486442565917969, - 0.790775716304779, - 0.7247927784919739, - 0.6513724327087402, - 0.5712681412696838, - 0.4853019416332245, - 0.39435580372810364, - 0.29936304688453674, - 0.20129841566085815, - 0.1011681854724884, - -4.371138828673793e-8 - ], - "z": [ - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1, - -1, - -0.9948692917823792, - -0.9795299172401428, - -0.9541392922401428, - -0.9189578294754028, - -0.8743466138839722, - -0.8207634687423706, - -0.7587581276893616, - -0.6889669299125671, - -0.6121059656143188, - -0.5289640426635742, - -0.44039416313171387, - -0.3473052680492401, - -0.250652551651001, - -0.151427760720253, - -0.05064918100833893, - 0.05064915865659714, - 0.15142777562141418, - 0.250652551651001, - 0.3473052680492401, - 0.44039416313171387, - 0.5289640426635742, - 0.6121060252189636, - 0.6889669299125671, - 0.7587581276893616, - 0.8207634687423706, - 0.8743466138839722, - 0.9189578294754028, - 0.9541392922401428, - 0.9795299768447876, - 0.9948693513870239, - 1 - ] - }, - { - "alphahull": 0, - "color": "#111111", - "opacity": 0.05, - "type": "mesh3d", - "x": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - -1.759807766177346e-8, - 0.0407300628721714, - 0.08104220032691956, - 0.12052268534898758, - 0.1587664932012558, - 0.19538113474845886, - 0.2299908995628357, - 0.26224061846733093, - 0.2917994558811188, - 0.3183639943599701, - 0.3416616916656494, - 0.36145347356796265, - 0.37753626704216003, - 0.3897450268268585, - 0.39795446395874023, - 0.40208032727241516, - 0.40208032727241516, - 0.39795446395874023, - 0.3897450268268585, - 0.37753626704216003, - 0.36145347356796265, - 0.3416616916656494, - 0.3183639943599701, - 0.2917994558811188, - 0.26224061846733093, - 0.2299908846616745, - 0.19538113474845886, - 0.1587664932012558, - 0.12052268534898758, - 0.08104215562343597, - 0.04073001444339752, - -1.759807766177346e-8, - -3.447568630576825e-8, - 0.07979262620210648, - 0.158766508102417, - 0.23611114919185638, - 0.3110330402851105, - 0.3827633261680603, - 0.4505659341812134, - 0.5137450695037842, - 0.5716525912284851, - 0.6236940622329712, - 0.669335663318634, - 0.7081089615821838, - 0.7396160960197449, - 0.7635337710380554, - 0.7796165943145752, - 0.7876994013786316, - 0.7876994013786316, - 0.7796165943145752, - 0.7635337710380554, - 0.7396160960197449, - 0.7081089615821838, - 0.669335663318634, - 0.6236940622329712, - 0.5716525912284851, - 0.5137450695037842, - 0.4505658745765686, - 0.3827633261680603, - 0.3110330402851105, - 0.23611114919185638, - 0.15876641869544983, - 0.07979253679513931, - -3.447568630576825e-8, - -4.994185687223762e-8, - 0.1155884861946106, - 0.22999092936515808, - 0.3420332074165344, - 0.450565904378891, - 0.5544751882553101, - 0.6526947617530823, - 0.744216799736023, - 0.8281022310256958, - 0.9034901261329651, - 0.9696070551872253, - 1.0257744789123535, - 1.0714160203933716, - 1.1060634851455688, - 1.1293611526489258, - 1.141070008277893, - 1.141070008277893, - 1.1293611526489258, - 1.1060634851455688, - 1.0714160203933716, - 1.0257744789123535, - 0.9696070551872253, - 0.9034901261329651, - 0.8281022310256958, - 0.744216799736023, - 0.6526947021484375, - 0.5544751882553101, - 0.450565904378891, - 0.3420332074165344, - 0.22999079525470734, - 0.11558834463357925, - -4.994185687223762e-8, - -6.336339453127948e-8, - 0.14665211737155914, - 0.2917994558811188, - 0.43395236134529114, - 0.5716524720191956, - 0.7034866809844971, - 0.8281021118164062, - 0.9442200660705566, - 1.0506491661071777, - 1.1462970972061157, - 1.230182409286499, - 1.3014445304870605, - 1.3593519926071167, - 1.4033106565475464, - 1.4328694343566895, - 1.4477249383926392, - 1.4477249383926392, - 1.4328694343566895, - 1.4033106565475464, - 1.3593519926071167, - 1.3014445304870605, - 1.230182409286499, - 1.1462970972061157, - 1.0506491661071777, - 0.9442200660705566, - 0.8281020522117615, - 0.7034866809844971, - 0.5716524720191956, - 0.43395236134529114, - 0.29179927706718445, - 0.14665193855762482, - -6.336339453127948e-8, - -7.419083658533054e-8, - 0.17171180248260498, - 0.3416616916656494, - 0.508105456829071, - 0.6693356037139893, - 0.8236973881721497, - 0.9696069359779358, - 1.1055669784545898, - 1.230182409286499, - 1.3421745300292969, - 1.4403941631317139, - 1.5238333940505981, - 1.5916359424591064, - 1.64310622215271, - 1.6777160167694092, - 1.6951099634170532, - 1.6951099634170532, - 1.6777160167694092, - 1.64310622215271, - 1.5916359424591064, - 1.5238333940505981, - 1.4403941631317139, - 1.3421745300292969, - 1.230182409286499, - 1.1055669784545898, - 0.969606876373291, - 0.8236973881721497, - 0.6693356037139893, - 0.508105456829071, - 0.3416614830493927, - 0.17171159386634827, - -7.419083658533054e-8, - -8.198090029054583e-8, - 0.1897415965795517, - 0.3775362968444824, - 0.5614566802978516, - 0.7396160364151001, - 0.9101859331130981, - 1.0714160203933716, - 1.2216517925262451, - 1.3593519926071167, - 1.4831032752990723, - 1.591636061668396, - 1.6838363409042358, - 1.7587581872940063, - 1.8156328201293945, - 1.8538767099380493, - 1.8730970621109009, - 1.8730970621109009, - 1.8538767099380493, - 1.8156328201293945, - 1.7587581872940063, - 1.6838363409042358, - 1.591636061668396, - 1.4831032752990723, - 1.3593519926071167, - 1.2216517925262451, - 1.071415901184082, - 0.9101859331130981, - 0.7396160364151001, - 0.5614566802978516, - 0.3775360584259033, - 0.1897413730621338, - -8.198090029054583e-8, - -8.641464432912471e-8, - 0.20000334084033966, - 0.39795446395874023, - 0.5918217897415161, - 0.7796164751052856, - 0.9594112038612366, - 1.1293610334396362, - 1.287722110748291, - 1.4328694343566895, - 1.5633134841918945, - 1.6777160167694092, - 1.7749028205871582, - 1.8538765907287598, - 1.9138271808624268, - 1.9541393518447876, - 1.974399209022522, - 1.974399209022522, - 1.9541393518447876, - 1.9138271808624268, - 1.8538765907287598, - 1.7749028205871582, - 1.6777160167694092, - 1.5633134841918945, - 1.4328694343566895, - 1.287722110748291, - 1.1293609142303467, - 0.9594112038612366, - 0.7796164751052856, - 0.5918217897415161, - 0.39795422554016113, - 0.20000310242176056, - -8.641464432912471e-8, - -8.731056766464462e-8, - 0.20207691192626953, - 0.40208032727241516, - 0.5979576110839844, - 0.787699282169342, - 0.9693580865859985, - 1.1410698890686035, - 1.3010727167129517, - 1.4477249383926392, - 1.5795214176177979, - 1.6951099634170532, - 1.793304443359375, - 1.8730969429016113, - 1.933669090270996, - 1.974399209022522, - 1.9948692321777344, - 1.9948692321777344, - 1.974399209022522, - 1.933669090270996, - 1.8730969429016113, - 1.793304443359375, - 1.6951099634170532, - 1.5795214176177979, - 1.4477249383926392, - 1.3010727167129517, - 1.141069769859314, - 0.9693580865859985, - 0.787699282169342, - 0.5979576110839844, - 0.40208008885383606, - 0.20207667350769043, - -8.731056766464462e-8, - -8.463199208108563e-8, - 0.19587744772434235, - 0.3897450268268585, - 0.5796130299568176, - 0.7635336518287659, - 0.9396194219589233, - 1.1060633659362793, - 1.261157512664795, - 1.4033106565475464, - 1.5310637950897217, - 1.64310622215271, - 1.738288164138794, - 1.8156328201293945, - 1.8743466138839722, - 1.9138271808624268, - 1.933669090270996, - 1.933669090270996, - 1.9138271808624268, - 1.8743466138839722, - 1.8156328201293945, - 1.738288164138794, - 1.64310622215271, - 1.5310637950897217, - 1.4033106565475464, - 1.261157512664795, - 1.1060632467269897, - 0.9396194219589233, - 0.7635336518287659, - 0.5796130299568176, - 0.3897447884082794, - 0.19587720930576324, - -8.463199208108563e-8, - -7.848856142800287e-8, - 0.18165871500968933, - 0.36145347356796265, - 0.537539005279541, - 0.7081088423728943, - 0.8714125156402588, - 1.025774359703064, - 1.1696101427078247, - 1.301444411277771, - 1.419924020767212, - 1.5238332748413086, - 1.6121059656143188, - 1.6838361024856567, - 1.7382880449295044, - 1.7749027013778687, - 1.7933043241500854, - 1.7933043241500854, - 1.7749027013778687, - 1.7382880449295044, - 1.6838361024856567, - 1.6121059656143188, - 1.5238332748413086, - 1.419924020767212, - 1.301444411277771, - 1.1696101427078247, - 1.0257742404937744, - 0.8714125156402588, - 0.7081088423728943, - 0.537539005279541, - 0.36145323514938354, - 0.18165850639343262, - -7.848856142800287e-8, - -6.913180072842806e-8, - 0.16000287234783173, - 0.3183639645576477, - 0.47345802187919617, - 0.6236939430236816, - 0.7675299048423767, - 0.9034899473190308, - 1.0301789045333862, - 1.1462969779968262, - 1.2506523132324219, - 1.3421744108200073, - 1.419924020767212, - 1.4831031560897827, - 1.5310636758804321, - 1.563313364982605, - 1.5795212984085083, - 1.5795212984085083, - 1.563313364982605, - 1.5310636758804321, - 1.4831031560897827, - 1.419924020767212, - 1.3421744108200073, - 1.2506523132324219, - 1.1462969779968262, - 1.0301789045333862, - 0.903489887714386, - 0.7675299048423767, - 0.6236939430236816, - 0.47345802187919617, - 0.3183637857437134, - 0.1600026786327362, - -6.913180072842806e-8, - -5.694478133477787e-8, - 0.1317964792251587, - 0.26224061846733093, - 0.3899936378002167, - 0.5137449502944946, - 0.6322245597839355, - 0.7442166209220886, - 0.8485720157623291, - 0.9442200064659119, - 1.0301789045333862, - 1.1055668592453003, - 1.1696101427078247, - 1.2216516733169556, - 1.2611573934555054, - 1.2877219915390015, - 1.301072597503662, - 1.301072597503662, - 1.2877219915390015, - 1.2611573934555054, - 1.2216516733169556, - 1.1696101427078247, - 1.1055668592453003, - 1.0301789045333862, - 0.9442200064659119, - 0.8485720157623291, - 0.7442165613174438, - 0.6322245597839355, - 0.5137449502944946, - 0.3899936378002167, - 0.2622404396533966, - 0.13179631531238556, - -5.694478133477787e-8, - -4.242642859253465e-8, - 0.09819431602954865, - 0.1953810751438141, - 0.29056283831596375, - 0.382763147354126, - 0.47103580832481384, - 0.554474949836731, - 0.632224440574646, - 0.703486442565918, - 0.7675297260284424, - 0.8236971497535706, - 0.8714123368263245, - 0.9101855754852295, - 0.9396191239356995, - 0.9594109058380127, - 0.9693577885627747, - 0.9693577885627747, - 0.9594109058380127, - 0.9396191239356995, - 0.9101855754852295, - 0.8714123368263245, - 0.8236971497535706, - 0.7675297260284424, - 0.703486442565918, - 0.632224440574646, - 0.5544748902320862, - 0.47103580832481384, - 0.382763147354126, - 0.29056283831596375, - 0.19538097083568573, - 0.09819420427083969, - -4.242642859253465e-8, - -2.6171136369157466e-8, - 0.060572072863578796, - 0.1205226257443428, - 0.17923638224601746, - 0.23611098527908325, - 0.29056277871131897, - 0.3420329988002777, - 0.38999348878860474, - 0.43395212292671204, - 0.47345781326293945, - 0.5081052184104919, - 0.5375387668609619, - 0.5614563822746277, - 0.5796127319335938, - 0.5918214917182922, - 0.5979573130607605, - 0.5979573130607605, - 0.5918214917182922, - 0.5796127319335938, - 0.5614563822746277, - 0.5375387668609619, - 0.5081052184104919, - 0.47345781326293945, - 0.43395212292671204, - 0.38999348878860474, - 0.3420329689979553, - 0.29056277871131897, - 0.23611098527908325, - 0.17923638224601746, - 0.12052255123853683, - 0.060572002083063126, - -2.6171136369157466e-8, - -8.84441053727869e-9, - 0.020470041781663895, - 0.04073004424571991, - 0.060572076588869095, - 0.0797925814986229, - 0.09819430857896805, - 0.11558841913938522, - 0.1317964345216751, - 0.14665204286575317, - 0.16000281274318695, - 0.171711727976799, - 0.18165865540504456, - 0.18974150717258453, - 0.19587735831737518, - 0.2000032514333725, - 0.20207682251930237, - 0.20207682251930237, - 0.2000032514333725, - 0.19587735831737518, - 0.18974150717258453, - 0.18165865540504456, - 0.171711727976799, - 0.16000281274318695, - 0.14665204286575317, - 0.1317964345216751, - 0.11558840423822403, - 0.09819430857896805, - 0.0797925814986229, - 0.060572076588869095, - 0.04073002189397812, - 0.020470019429922104, - -8.84441053727869e-9, - 8.844424748133406e-9, - -0.02047007717192173, - -0.04073011502623558, - -0.06057218089699745, - -0.07979271560907364, - -0.09819447249174118, - -0.11558861285448074, - -0.13179665803909302, - -0.14665229618549347, - -0.16000308096408844, - -0.1717120110988617, - -0.18165895342826843, - -0.1897418200969696, - -0.19587768614292145, - -0.20000357925891876, - -0.20207716524600983, - -0.20207716524600983, - -0.20000357925891876, - -0.19587768614292145, - -0.1897418200969696, - -0.18165895342826843, - -0.1717120110988617, - -0.16000308096408844, - -0.14665229618549347, - -0.13179665803909302, - -0.11558860540390015, - -0.09819447249174118, - -0.07979271560907364, - -0.06057218089699745, - -0.04073008894920349, - -0.02047005295753479, - 8.844424748133406e-9, - 2.6171170119937415e-8, - -0.060572151094675064, - -0.12052278220653534, - -0.17923660576343536, - -0.23611129820346832, - -0.29056316614151, - -0.3420334458351135, - -0.3899939954280853, - -0.4339526891708374, - -0.4734584391117096, - -0.5081058740615845, - -0.5375394225120544, - -0.561457097530365, - -0.5796135067939758, - -0.5918222665786743, - -0.5979580879211426, - -0.5979580879211426, - -0.5918222665786743, - -0.5796135067939758, - -0.561457097530365, - -0.5375394225120544, - -0.5081058740615845, - -0.4734584391117096, - -0.4339526891708374, - -0.3899939954280853, - -0.34203341603279114, - -0.29056316614151, - -0.23611129820346832, - -0.17923660576343536, - -0.12052270770072937, - -0.06057208031415939, - 2.6171170119937415e-8, - 4.242646056695776e-8, - -0.09819439053535461, - -0.19538122415542603, - -0.29056304693222046, - -0.38276344537734985, - -0.4710361659526825, - -0.5544753670692444, - -0.6322248578071594, - -0.703486979007721, - -0.7675303220748901, - -0.8236977458000183, - -0.871412992477417, - -0.910186231136322, - -0.9396198391914368, - -0.95941162109375, - -0.969358503818512, - -0.969358503818512, - -0.95941162109375, - -0.9396198391914368, - -0.910186231136322, - -0.871412992477417, - -0.8236977458000183, - -0.7675303220748901, - -0.703486979007721, - -0.6322248578071594, - -0.5544753074645996, - -0.4710361659526825, - -0.38276344537734985, - -0.29056304693222046, - -0.19538110494613647, - -0.09819427877664566, - 4.242646056695776e-8, - 5.694479199291891e-8, - -0.13179649412631989, - -0.2622406482696533, - -0.38999369740486145, - -0.5137450695037842, - -0.6322246789932251, - -0.744216799736023, - -0.8485721945762634, - -0.9442201852798462, - -1.0301791429519653, - -1.1055670976638794, - -1.1696103811264038, - -1.2216519117355347, - -1.2611576318740845, - -1.2877222299575806, - -1.3010728359222412, - -1.3010728359222412, - -1.2877222299575806, - -1.2611576318740845, - -1.2216519117355347, - -1.1696103811264038, - -1.1055670976638794, - -1.0301791429519653, - -0.9442201852798462, - -0.8485721945762634, - -0.7442166805267334, - -0.6322246789932251, - -0.5137450695037842, - -0.38999369740486145, - -0.2622404992580414, - -0.13179634511470795, - 5.694479199291891e-8, - 6.913181493928278e-8, - -0.16000288724899292, - -0.3183640241622925, - -0.47345808148384094, - -0.6236940622329712, - -0.7675300240516663, - -0.9034901261329651, - -1.0301790237426758, - -1.1462970972061157, - -1.250652551651001, - -1.3421746492385864, - -1.4199241399765015, - -1.4831032752990723, - -1.5310639142990112, - -1.563313603401184, - -1.5795215368270874, - -1.5795215368270874, - -1.563313603401184, - -1.5310639142990112, - -1.4831032752990723, - -1.4199241399765015, - -1.3421746492385864, - -1.250652551651001, - -1.1462970972061157, - -1.0301790237426758, - -0.9034900069236755, - -0.7675300240516663, - -0.6236940622329712, - -0.47345808148384094, - -0.31836381554603577, - -0.1600026935338974, - 6.913181493928278e-8, - 7.848857563885758e-8, - -0.18165874481201172, - -0.36145350337028503, - -0.5375390648841858, - -0.7081089019775391, - -0.8714126348495483, - -1.0257744789123535, - -1.1696103811264038, - -1.30144464969635, - -1.4199241399765015, - -1.5238335132598877, - -1.612106204032898, - -1.6838363409042358, - -1.738288164138794, - -1.7749029397964478, - -1.7933045625686646, - -1.7933045625686646, - -1.7749029397964478, - -1.738288164138794, - -1.6838363409042358, - -1.612106204032898, - -1.5238335132598877, - -1.4199241399765015, - -1.30144464969635, - -1.1696103811264038, - -1.025774359703064, - -0.8714126348495483, - -0.7081089019775391, - -0.5375390648841858, - -0.3614532947540283, - -0.1816585212945938, - 7.848857563885758e-8, - 8.463199208108563e-8, - -0.19587744772434235, - -0.3897450268268585, - -0.5796130895614624, - -0.7635337114334106, - -0.9396194815635681, - -1.1060633659362793, - -1.2611576318740845, - -1.4033106565475464, - -1.5310639142990112, - -1.6431063413619995, - -1.738288164138794, - -1.8156328201293945, - -1.8743467330932617, - -1.9138273000717163, - -1.9336692094802856, - -1.9336692094802856, - -1.9138273000717163, - -1.8743467330932617, - -1.8156328201293945, - -1.738288164138794, - -1.6431063413619995, - -1.5310639142990112, - -1.4033106565475464, - -1.2611576318740845, - -1.1060632467269897, - -0.9396194815635681, - -0.7635337114334106, - -0.5796130895614624, - -0.3897448182106018, - -0.19587722420692444, - 8.463199208108563e-8, - 8.731057477007198e-8, - -0.20207691192626953, - -0.40208035707473755, - -0.5979576706886292, - -0.7876993417739868, - -0.9693581461906433, - -1.141070008277893, - -1.3010728359222412, - -1.4477250576019287, - -1.5795215368270874, - -1.6951100826263428, - -1.7933045625686646, - -1.8730970621109009, - -1.9336692094802856, - -1.9743993282318115, - -1.994869351387024, - -1.994869351387024, - -1.9743993282318115, - -1.9336692094802856, - -1.8730970621109009, - -1.7933045625686646, - -1.6951100826263428, - -1.5795215368270874, - -1.4477250576019287, - -1.3010728359222412, - -1.1410698890686035, - -0.9693581461906433, - -0.7876993417739868, - -0.5979576706886292, - -0.40208011865615845, - -0.20207667350769043, - 8.731057477007198e-8, - 8.641464432912471e-8, - -0.20000332593917847, - -0.39795443415641785, - -0.5918217301368713, - -0.7796164155006409, - -0.9594111442565918, - -1.1293610334396362, - -1.2877219915390015, - -1.4328693151474, - -1.5633134841918945, - -1.6777158975601196, - -1.7749027013778687, - -1.8538764715194702, - -1.9138270616531372, - -1.954139232635498, - -1.9743990898132324, - -1.9743990898132324, - -1.954139232635498, - -1.9138270616531372, - -1.8538764715194702, - -1.7749027013778687, - -1.6777158975601196, - -1.5633134841918945, - -1.4328693151474, - -1.2877219915390015, - -1.1293609142303467, - -0.9594111442565918, - -0.7796164155006409, - -0.5918217301368713, - -0.39795419573783875, - -0.20000308752059937, - 8.641464432912471e-8, - 8.198088607969112e-8, - -0.1897415667772293, - -0.37753620743751526, - -0.5614566206932068, - -0.7396159172058105, - -0.9101857542991638, - -1.0714157819747925, - -1.2216516733169556, - -1.3593517541885376, - -1.4831030368804932, - -1.5916357040405273, - -1.6838361024856567, - -1.7587578296661377, - -1.8156325817108154, - -1.8538763523101807, - -1.8730967044830322, - -1.8730967044830322, - -1.8538763523101807, - -1.8156325817108154, - -1.7587578296661377, - -1.6838361024856567, - -1.5916357040405273, - -1.4831030368804932, - -1.3593517541885376, - -1.2216516733169556, - -1.071415662765503, - -0.9101857542991638, - -0.7396159172058105, - -0.5614566206932068, - -0.37753599882125854, - -0.1897413432598114, - 8.198088607969112e-8, - 7.419081526904847e-8, - -0.1717117577791214, - -0.34166160225868225, - -0.5081053376197815, - -0.6693353652954102, - -0.8236971497535706, - -0.9696066975593567, - -1.1055666208267212, - -1.23018217086792, - -1.3421741724014282, - -1.4403936862945557, - -1.52383291721344, - -1.5916354656219482, - -1.6431057453155518, - -1.677715539932251, - -1.695109486579895, - -1.695109486579895, - -1.677715539932251, - -1.6431057453155518, - -1.5916354656219482, - -1.52383291721344, - -1.4403936862945557, - -1.3421741724014282, - -1.23018217086792, - -1.1055666208267212, - -0.9696065783500671, - -0.8236971497535706, - -0.6693353652954102, - -0.5081053376197815, - -0.34166139364242554, - -0.17171154916286469, - 7.419081526904847e-8, - 6.336337321499741e-8, - -0.14665205776691437, - -0.2917993366718292, - -0.4339521825313568, - -0.5716522336006165, - -0.7034863829612732, - -0.8281018137931824, - -0.944219708442688, - -1.0506486892700195, - -1.1462966203689575, - -1.2301819324493408, - -1.3014439344406128, - -1.359351396560669, - -1.4033100605010986, - -1.4328688383102417, - -1.4477243423461914, - -1.4477243423461914, - -1.4328688383102417, - -1.4033100605010986, - -1.359351396560669, - -1.3014439344406128, - -1.2301819324493408, - -1.1462966203689575, - -1.0506486892700195, - -0.944219708442688, - -0.8281016945838928, - -0.7034863829612732, - -0.5716522336006165, - -0.4339521825313568, - -0.2917991578578949, - -0.14665187895298004, - 6.336337321499741e-8, - 4.9941814239673477e-8, - -0.11558838933706284, - -0.22999073565006256, - -0.34203293919563293, - -0.45056554675102234, - -0.5544747114181519, - -0.6526942253112793, - -0.7442161440849304, - -0.8281015157699585, - -0.9034894108772278, - -0.9696062207221985, - -1.0257736444473267, - -1.0714151859283447, - -1.1060625314712524, - -1.1293601989746094, - -1.1410690546035767, - -1.1410690546035767, - -1.1293601989746094, - -1.1060625314712524, - -1.0714151859283447, - -1.0257736444473267, - -0.9696062207221985, - -0.9034894108772278, - -0.8281015157699585, - -0.7442161440849304, - -0.6526941657066345, - -0.5544747114181519, - -0.45056554675102234, - -0.34203293919563293, - -0.22999060153961182, - -0.1155882477760315, - 4.9941814239673477e-8, - 3.4475640120490425e-8, - -0.07979252934455872, - -0.15876631438732147, - -0.2361108362674713, - -0.31103265285491943, - -0.3827628493309021, - -0.4505653381347656, - -0.5137444138526917, - -0.571651816368103, - -0.6236932873725891, - -0.6693348288536072, - -0.7081080675125122, - -0.7396151423454285, - -0.763532817363739, - -0.779615581035614, - -0.7876983880996704, - -0.7876983880996704, - -0.779615581035614, - -0.763532817363739, - -0.7396151423454285, - -0.7081080675125122, - -0.6693348288536072, - -0.6236932873725891, - -0.571651816368103, - -0.5137444138526917, - -0.45056530833244324, - -0.3827628493309021, - -0.31103265285491943, - -0.2361108362674713, - -0.15876621007919312, - -0.07979243248701096, - 3.4475640120490425e-8, - 1.7598024371068277e-8, - -0.04072994366288185, - -0.08104196190834045, - -0.12052232772111893, - -0.1587660163640976, - -0.1953805685043335, - -0.22999022901058197, - -0.26223984360694885, - -0.29179859161376953, - -0.3183630406856537, - -0.34166067838668823, - -0.3614524006843567, - -0.3775351345539093, - -0.3897438645362854, - -0.3979532718658447, - -0.40207913517951965, - -0.40207913517951965, - -0.3979532718658447, - -0.3897438645362854, - -0.3775351345539093, - -0.3614524006843567, - -0.34166067838668823, - -0.3183630406856537, - -0.29179859161376953, - -0.26223984360694885, - -0.22999019920825958, - -0.1953805685043335, - -0.1587660163640976, - -0.12052232772111893, - -0.08104190975427628, - -0.04072989523410797, - 1.7598024371068277e-8, - -1.528548372131764e-14, - 3.537765635996948e-8, - 7.039231064709384e-8, - 1.0468459521462137e-7, - 1.3790271680136357e-7, - 1.6970577121355745e-7, - 1.9976741327809577e-7, - 2.277791395499662e-7, - 2.5345357812511793e-7, - 2.765272313354217e-7, - 2.967633463413222e-7, - 3.139542741337209e-7, - 3.279235727404739e-7, - 3.385279683243425e-7, - 3.4565857731649885e-7, - 3.492422706585785e-7, - 3.492422706585785e-7, - 3.4565857731649885e-7, - 3.385279683243425e-7, - 3.279235727404739e-7, - 3.139542741337209e-7, - 2.967633463413222e-7, - 2.765272313354217e-7, - 2.5345357812511793e-7, - 2.277791395499662e-7, - 1.9976738485638634e-7, - 1.6970577121355745e-7, - 1.3790271680136357e-7, - 1.0468459521462137e-7, - 7.039226801452969e-8, - 3.537761372740533e-8, - -1.528548372131764e-14 - ], - "y": [ - -8.742277657347586e-8, - 0.2023366093635559, - 0.4025970697402954, - 0.5987260937690735, - 0.7887116074562073, - 0.970603883266449, - 1.1425364017486572, - 1.3027448654174805, - 1.4495855569839478, - 1.581551432609558, - 1.6972885131835938, - 1.7956091165542603, - 1.8755042552947998, - 1.9361542463302612, - 1.9769366979599, - 1.9974329471588135, - 1.9974329471588135, - 1.9769366979599, - 1.9361542463302612, - 1.8755042552947998, - 1.7956091165542603, - 1.6972885131835938, - 1.581551432609558, - 1.4495855569839478, - 1.3027448654174805, - 1.1425362825393677, - 0.970603883266449, - 0.7887116074562073, - 0.5987260937690735, - 0.4025968313217163, - 0.2023363709449768, - -8.742277657347586e-8, - -8.563322495547254e-8, - 0.19819475710391998, - 0.3943558633327484, - 0.5864701271057129, - 0.7725666165351868, - 0.9507355690002441, - 1.1191486120224, - 1.2760776281356812, - 1.4199124574661255, - 1.5491769313812256, - 1.662544846534729, - 1.7588528394699097, - 1.837112545967102, - 1.896520972251892, - 1.9364686012268066, - 1.956545352935791, - 1.956545352935791, - 1.9364686012268066, - 1.896520972251892, - 1.837112545967102, - 1.7588528394699097, - 1.662544846534729, - 1.5491769313812256, - 1.4199124574661255, - 1.2760776281356812, - 1.1191484928131104, - 0.9507355690002441, - 0.7725666165351868, - 0.5864701271057129, - 0.3943556547164917, - 0.19819453358650208, - -8.563322495547254e-8, - -8.033784837380153e-8, - 0.18593880534172058, - 0.3699697256088257, - 0.5502040386199951, - 0.7247927188873291, - 0.8919440507888794, - 1.0499427318572998, - 1.1971676349639893, - 1.3321080207824707, - 1.4533790349960327, - 1.5597366094589233, - 1.6500890254974365, - 1.7235093116760254, - 1.779244065284729, - 1.8167214393615723, - 1.8355566263198853, - 1.8355566263198853, - 1.8167214393615723, - 1.779244065284729, - 1.7235093116760254, - 1.6500890254974365, - 1.5597366094589233, - 1.4533790349960327, - 1.3321080207824707, - 1.1971676349639893, - 1.0499426126480103, - 0.8919440507888794, - 0.7247927188873291, - 0.5502040386199951, - 0.36996951699256897, - 0.18593859672546387, - -8.033784837380153e-8, - -7.175341920628853e-8, - 0.16607049107551575, - 0.33043694496154785, - 0.4914124608039856, - 0.6473456025123596, - 0.796636164188385, - 0.9377520680427551, - 1.0692453384399414, - 1.189766764640808, - 1.298079490661621, - 1.393072247505188, - 1.473770260810852, - 1.5393452644348145, - 1.5891245603561401, - 1.622597336769104, - 1.6394199132919312, - 1.6394199132919312, - 1.622597336769104, - 1.5891245603561401, - 1.5393452644348145, - 1.473770260810852, - 1.393072247505188, - 1.298079490661621, - 1.189766764640808, - 1.0692453384399414, - 0.9377519488334656, - 0.796636164188385, - 0.6473456025123596, - 0.4914124608039856, - 0.33043673634529114, - 0.16607028245925903, - -7.175341920628853e-8, - -6.02314003117499e-8, - 0.13940322399139404, - 0.27737605571746826, - 0.4125024378299713, - 0.5433961749076843, - 0.6687139272689819, - 0.7871697545051575, - 0.8975480794906616, - 0.998716413974762, - 1.0896365642547607, - 1.1693755388259888, - 1.2371151447296143, - 1.2921602725982666, - 1.3339461088180542, - 1.362043857574463, - 1.3761651515960693, - 1.3761651515960693, - 1.362043857574463, - 1.3339461088180542, - 1.2921602725982666, - 1.2371151447296143, - 1.1693755388259888, - 1.0896365642547607, - 0.998716413974762, - 0.8975480794906616, - 0.7871696352958679, - 0.6687139272689819, - 0.5433961749076843, - 0.4125024378299713, - 0.27737587690353394, - 0.1394030600786209, - -6.02314003117499e-8, - -4.6243499696174695e-8, - 0.1070287823677063, - 0.21295934915542603, - 0.31670454144477844, - 0.4172000288963318, - 0.5134145021438599, - 0.6043605804443359, - 0.6891050934791565, - 0.7667785286903381, - 0.8365837335586548, - 0.8978044986724854, - 0.9498125314712524, - 0.992074191570282, - 1.024155855178833, - 1.045728325843811, - 1.056570053100586, - 1.056570053100586, - 1.045728325843811, - 1.024155855178833, - 0.992074191570282, - 0.9498125314712524, - 0.8978044986724854, - 0.8365837335586548, - 0.7667785286903381, - 0.6891050934791565, - 0.6043605208396912, - 0.5134145021438599, - 0.4172000288963318, - 0.31670454144477844, - 0.21295922994613647, - 0.10702865570783615, - -4.6243499696174695e-8, - -3.036238283016246e-8, - 0.0702725499868393, - 0.1398240476846695, - 0.20794066786766052, - 0.2739236354827881, - 0.3370957672595978, - 0.39680880308151245, - 0.4524500370025635, - 0.5034485459327698, - 0.5492810010910034, - 0.5894770622253418, - 0.623624324798584, - 0.6513723134994507, - 0.6724364161491394, - 0.6866003274917603, - 0.6937187910079956, - 0.6937187910079956, - 0.6866003274917603, - 0.6724364161491394, - 0.6513723134994507, - 0.623624324798584, - 0.5894770622253418, - 0.5492810010910034, - 0.5034485459327698, - 0.4524500370025635, - 0.39680877327919006, - 0.3370957672595978, - 0.2739236354827881, - 0.20794066786766052, - 0.13982395827770233, - 0.07027246803045273, - -3.036238283016246e-8, - -1.3238236284962568e-8, - 0.03063938207924366, - 0.06096437945961952, - 0.09066376090049744, - 0.11943284422159195, - 0.14697638154029846, - 0.17301174998283386, - 0.19727176427841187, - 0.21950751543045044, - 0.2394908219575882, - 0.2570166289806366, - 0.2719050943851471, - 0.28400343656539917, - 0.29318752884864807, - 0.2993631362915039, - 0.30246683955192566, - 0.30246683955192566, - 0.2993631362915039, - 0.29318752884864807, - 0.28400343656539917, - 0.2719050943851471, - 0.2570166289806366, - 0.2394908219575882, - 0.21950751543045044, - 0.19727176427841187, - 0.17301173508167267, - 0.14697638154029846, - 0.11943284422159195, - 0.09066376090049744, - 0.06096434220671654, - 0.030639346688985825, - -1.3238236284962568e-8, - 4.427895827774364e-9, - -0.010248192586004734, - -0.020391229540109634, - -0.030325012281537056, - -0.03994763270020485, - -0.04916033521294594, - -0.057868584990501404, - -0.06598301976919174, - -0.07342038303613663, - -0.08010435849428177, - -0.08596634864807129, - -0.09094621241092682, - -0.09499283879995346, - -0.09806471318006516, - -0.10013031214475632, - -0.1011684313416481, - -0.1011684313416481, - -0.10013031214475632, - -0.09806471318006516, - -0.09499283879995346, - -0.09094621241092682, - -0.08596634864807129, - -0.08010435849428177, - -0.07342038303613663, - -0.06598301976919174, - -0.05786857753992081, - -0.04916033521294594, - -0.03994763270020485, - -0.030325012281537056, - -0.02039121836423874, - -0.010248180478811264, - 4.427895827774364e-9, - 2.191274894869366e-8, - -0.050716206431388855, - -0.10091201961040497, - -0.15007227659225464, - -0.1976926475763321, - -0.2432844340801239, - -0.28637975454330444, - -0.3265364468097687, - -0.36334243416786194, - -0.39642003178596497, - -0.4254298508167267, - -0.450074166059494, - -0.4701001048088074, - -0.4853021800518036, - -0.49552440643310547, - -0.5006618499755859, - -0.5006618499755859, - -0.49552440643310547, - -0.4853021800518036, - -0.4701001048088074, - -0.450074166059494, - -0.4254298508167267, - -0.39642003178596497, - -0.36334243416786194, - -0.3265364468097687, - -0.28637972474098206, - -0.2432844340801239, - -0.1976926475763321, - -0.15007227659225464, - -0.10091196000576019, - -0.05071614682674408, - 2.191274894869366e-8, - 3.850048457820776e-8, - -0.08910787105560303, - -0.17730140686035156, - -0.2636754810810089, - -0.3473440110683441, - -0.4274483025074005, - -0.5031663775444031, - -0.5737212896347046, - -0.6383890509605408, - -0.6965060830116272, - -0.7474759817123413, - -0.7907758355140686, - -0.825961172580719, - -0.8526710867881775, - -0.8706314563751221, - -0.8796578645706177, - -0.8796578645706177, - -0.8706314563751221, - -0.8526710867881775, - -0.825961172580719, - -0.7907758355140686, - -0.7474759817123413, - -0.6965060830116272, - -0.6383890509605408, - -0.5737212896347046, - -0.5031663179397583, - -0.4274483025074005, - -0.3473440110683441, - -0.2636754810810089, - -0.1773013025522232, - -0.08910775929689407, - 3.850048457820776e-8, - 5.3512014375201034e-8, - -0.1238514706492424, - -0.2464321106672287, - -0.3664838969707489, - -0.48277518153190613, - -0.5941125154495239, - -0.6993534564971924, - -0.7974180579185486, - -0.8873001337051392, - -0.9680772423744202, - -1.0389206409454346, - -1.0991032123565674, - -1.1480075120925903, - -1.1851317882537842, - -1.210094928741455, - -1.222640872001648, - -1.222640872001648, - -1.210094928741455, - -1.1851317882537842, - -1.1480075120925903, - -1.0991032123565674, - -1.0389206409454346, - -0.9680772423744202, - -0.8873001337051392, - -0.7974180579185486, - -0.6993533968925476, - -0.5941125154495239, - -0.48277518153190613, - -0.3664838969707489, - -0.24643197655677795, - -0.12385132163763046, - 5.3512014375201034e-8, - 6.633274551859358e-8, - -0.15352456271648407, - -0.30547383427619934, - -0.4542883336544037, - -0.5984413623809814, - -0.736453652381897, - -0.866908848285675, - -0.98846834897995, - -1.0998848676681519, - -1.2000150680541992, - -1.2878315448760986, - -1.3624330759048462, - -1.4230542182922363, - -1.469072937965393, - -1.5000169277191162, - -1.5155686140060425, - -1.5155686140060425, - -1.5000169277191162, - -1.469072937965393, - -1.4230542182922363, - -1.3624330759048462, - -1.2878315448760986, - -1.2000150680541992, - -1.0998848676681519, - -0.98846834897995, - -0.8669087290763855, - -0.736453652381897, - -0.5984413623809814, - -0.4542883336544037, - -0.305473655462265, - -0.15352438390254974, - 6.633274551859358e-8, - 7.64378214057615e-8, - -0.1769123524427414, - -0.35200944542884827, - -0.5234941840171814, - -0.6896074414253235, - -0.8486443161964417, - -0.9989729523658752, - -1.1390507221221924, - -1.2674404382705688, - -1.3828243017196655, - -1.4840186834335327, - -1.5699849128723145, - -1.6398409605026245, - -1.6928701400756836, - -1.7285281419754028, - -1.7464489936828613, - -1.7464489936828613, - -1.7285281419754028, - -1.6928701400756836, - -1.6398409605026245, - -1.5699849128723145, - -1.4840186834335327, - -1.3828243017196655, - -1.2674404382705688, - -1.1390507221221924, - -0.9989728927612305, - -0.8486443161964417, - -0.6896074414253235, - -0.5234941840171814, - -0.35200923681259155, - -0.17691214382648468, - 7.64378214057615e-8, - 8.341351076524006e-8, - -0.1930573284626007, - -0.3841336965560913, - -0.5712681412696838, - -0.7525407671928406, - -0.9260913729667664, - -1.0901389122009277, - -1.2430001497268677, - -1.3831065893173218, - -1.509020447731018, - -1.6194497346878052, - -1.713261365890503, - -1.7894923686981201, - -1.8473609685897827, - -1.8862731456756592, - -1.9058294296264648, - -1.9058294296264648, - -1.8862731456756592, - -1.8473609685897827, - -1.7894923686981201, - -1.713261365890503, - -1.6194497346878052, - -1.509020447731018, - -1.3831065893173218, - -1.2430001497268677, - -1.0901387929916382, - -0.9260913729667664, - -0.7525407671928406, - -0.5712681412696838, - -0.3841334879398346, - -0.1930570900440216, - 8.341351076524006e-8, - 8.697423936609994e-8, - -0.20129849016666412, - -0.40053147077560425, - -0.5956542491912842, - -0.7846649885177612, - -0.9656240344047546, - -1.136674404144287, - -1.2960609197616577, - -1.442148208618164, - -1.5734370946884155, - -1.6885802745819092, - -1.7863965034484863, - -1.8658816814422607, - -1.9262205362319946, - -1.9667937755584717, - -1.987184762954712, - -1.987184762954712, - -1.9667937755584717, - -1.9262205362319946, - -1.8658816814422607, - -1.7863965034484863, - -1.6885802745819092, - -1.5734370946884155, - -1.442148208618164, - -1.2960609197616577, - -1.1366742849349976, - -0.9656240344047546, - -0.7846649885177612, - -0.5956542491912842, - -0.40053126215934753, - -0.20129825174808502, - 8.697423936609994e-8, - 8.697423936609994e-8, - -0.20129847526550293, - -0.40053147077560425, - -0.5956541895866394, - -0.7846649289131165, - -0.9656239748001099, - -1.136674404144287, - -1.2960609197616577, - -1.442148208618164, - -1.573436975479126, - -1.6885802745819092, - -1.7863963842391968, - -1.8658815622329712, - -1.926220417022705, - -1.9667936563491821, - -1.9871846437454224, - -1.9871846437454224, - -1.9667936563491821, - -1.926220417022705, - -1.8658815622329712, - -1.7863963842391968, - -1.6885802745819092, - -1.573436975479126, - -1.442148208618164, - -1.2960609197616577, - -1.1366742849349976, - -0.9656239748001099, - -0.7846649289131165, - -0.5956541895866394, - -0.40053123235702515, - -0.20129823684692383, - 8.697423936609994e-8, - 8.34135036598127e-8, - -0.19305729866027832, - -0.3841336667537689, - -0.5712680816650391, - -0.7525407075881958, - -0.9260912537574768, - -1.0901387929916382, - -1.2430000305175781, - -1.3831064701080322, - -1.5090203285217285, - -1.6194496154785156, - -1.7132611274719238, - -1.7894922494888306, - -1.8473607301712036, - -1.88627290725708, - -1.9058291912078857, - -1.9058291912078857, - -1.88627290725708, - -1.8473607301712036, - -1.7894922494888306, - -1.7132611274719238, - -1.6194496154785156, - -1.5090203285217285, - -1.3831064701080322, - -1.2430000305175781, - -1.0901386737823486, - -0.9260912537574768, - -0.7525407075881958, - -0.5712680816650391, - -0.3841334283351898, - -0.1930570751428604, - 8.34135036598127e-8, - 7.643780008947942e-8, - -0.1769123077392578, - -0.3520093262195587, - -0.5234940648078918, - -0.6896072030067444, - -0.8486440777778625, - -0.9989727139472961, - -1.1390503644943237, - -1.2674400806427002, - -1.3828239440917969, - -1.4840182065963745, - -1.5699845552444458, - -1.6398406028747559, - -1.6928696632385254, - -1.7285276651382446, - -1.7464485168457031, - -1.7464485168457031, - -1.7285276651382446, - -1.6928696632385254, - -1.6398406028747559, - -1.5699845552444458, - -1.4840182065963745, - -1.3828239440917969, - -1.2674400806427002, - -1.1390503644943237, - -0.9989725947380066, - -0.8486440777778625, - -0.6896072030067444, - -0.5234940648078918, - -0.352009117603302, - -0.1769120991230011, - 7.643780008947942e-8, - 6.633274551859358e-8, - -0.15352454781532288, - -0.30547380447387695, - -0.4542883038520813, - -0.5984413623809814, - -0.7364535927772522, - -0.8669087886810303, - -0.9884682297706604, - -1.0998848676681519, - -1.2000149488449097, - -1.287831425666809, - -1.3624329566955566, - -1.4230540990829468, - -1.4690728187561035, - -1.5000168085098267, - -1.515568494796753, - -1.515568494796753, - -1.5000168085098267, - -1.4690728187561035, - -1.4230540990829468, - -1.3624329566955566, - -1.287831425666809, - -1.2000149488449097, - -1.0998848676681519, - -0.9884682297706604, - -0.8669086694717407, - -0.7364535927772522, - -0.5984413623809814, - -0.4542883038520813, - -0.3054736256599426, - -0.15352436900138855, - 6.633274551859358e-8, - 5.351199661163264e-8, - -0.12385143339633942, - -0.24643205106258392, - -0.36648377776145935, - -0.4827750325202942, - -0.5941123962402344, - -0.6993532776832581, - -0.7974178194999695, - -0.8872998952865601, - -0.9680769443511963, - -1.038920283317566, - -1.0991029739379883, - -1.1480072736740112, - -1.1851314306259155, - -1.2100945711135864, - -1.2226405143737793, - -1.2226405143737793, - -1.2100945711135864, - -1.1851314306259155, - -1.1480072736740112, - -1.0991029739379883, - -1.038920283317566, - -0.9680769443511963, - -0.8872998952865601, - -0.7974178194999695, - -0.6993532180786133, - -0.5941123962402344, - -0.4827750325202942, - -0.36648377776145935, - -0.24643190205097198, - -0.12385128438472748, - 5.351199661163264e-8, - 3.8500470367353046e-8, - -0.08910784125328064, - -0.1773013472557068, - -0.26367539167404175, - -0.34734389185905457, - -0.42744818329811096, - -0.5031661987304688, - -0.5737210512161255, - -0.6383888721466064, - -0.6965058445930481, - -0.7474757432937622, - -0.7907755374908447, - -0.8259608745574951, - -0.8526707887649536, - -0.8706311583518982, - -0.8796575665473938, - -0.8796575665473938, - -0.8706311583518982, - -0.8526707887649536, - -0.8259608745574951, - -0.7907755374908447, - -0.7474757432937622, - -0.6965058445930481, - -0.6383888721466064, - -0.5737210512161255, - -0.5031661987304688, - -0.42744818329811096, - -0.34734389185905457, - -0.26367539167404175, - -0.17730124294757843, - -0.08910772949457169, - 3.8500470367353046e-8, - 2.191272407969791e-8, - -0.05071614682674408, - -0.10091190040111542, - -0.1500720977783203, - -0.197692409157753, - -0.24328413605690002, - -0.2863794267177582, - -0.32653605937957764, - -0.3633420169353485, - -0.39641958475112915, - -0.4254293441772461, - -0.45007362961769104, - -0.470099538564682, - -0.48530158400535583, - -0.4955238103866577, - -0.5006612539291382, - -0.5006612539291382, - -0.4955238103866577, - -0.48530158400535583, - -0.470099538564682, - -0.45007362961769104, - -0.4254293441772461, - -0.39641958475112915, - -0.3633420169353485, - -0.32653605937957764, - -0.2863793969154358, - -0.24328413605690002, - -0.197692409157753, - -0.1500720977783203, - -0.10091184079647064, - -0.050716087222099304, - 2.191272407969791e-8, - 4.427870070600193e-9, - -0.010248132981359959, - -0.020391112193465233, - -0.030324837192893028, - -0.039947401732206345, - -0.04916004836559296, - -0.057868245989084244, - -0.0659826323390007, - -0.0734199583530426, - -0.08010388910770416, - -0.0859658494591713, - -0.09094568341970444, - -0.09499228745698929, - -0.09806414693593979, - -0.10012973099946976, - -0.10116784274578094, - -0.10116784274578094, - -0.10012973099946976, - -0.09806414693593979, - -0.09499228745698929, - -0.09094568341970444, - -0.0859658494591713, - -0.08010388910770416, - -0.0734199583530426, - -0.0659826323390007, - -0.057868242263793945, - -0.04916004836559296, - -0.039947401732206345, - -0.030324837192893028, - -0.020391099154949188, - -0.010248120874166489, - 4.427870070600193e-9, - -1.323826115395832e-8, - 0.030639439821243286, - 0.060964491218328476, - 0.09066393226385117, - 0.11943306773900986, - 0.14697666466236115, - 0.17301206290721893, - 0.19727212190628052, - 0.21950793266296387, - 0.239491268992424, - 0.2570171058177948, - 0.2719056010246277, - 0.28400397300720215, - 0.29318806529045105, - 0.2993636727333069, - 0.302467405796051, - 0.302467405796051, - 0.2993636727333069, - 0.29318806529045105, - 0.28400397300720215, - 0.2719056010246277, - 0.2570171058177948, - 0.239491268992424, - 0.21950793266296387, - 0.19727212190628052, - 0.17301204800605774, - 0.14697666466236115, - 0.11943306773900986, - 0.09066393226385117, - 0.06096445769071579, - 0.03063940443098545, - -1.323826115395832e-8, - -3.036241835729925e-8, - 0.07027263194322586, - 0.13982419669628143, - 0.20794090628623962, - 0.27392393350601196, - 0.33709612488746643, - 0.39680925011634827, - 0.45245054364204407, - 0.5034491419792175, - 0.5492815971374512, - 0.5894777774810791, - 0.6236250400543213, - 0.6513730883598328, - 0.6724371314048767, - 0.6866011023521423, - 0.6937195658683777, - 0.6937195658683777, - 0.6866011023521423, - 0.6724371314048767, - 0.6513730883598328, - 0.6236250400543213, - 0.5894777774810791, - 0.5492815971374512, - 0.5034491419792175, - 0.45245054364204407, - 0.3968092203140259, - 0.33709612488746643, - 0.27392393350601196, - 0.20794090628623962, - 0.13982412219047546, - 0.0702725499868393, - -3.036241835729925e-8, - -4.6243531670597804e-8, - 0.10702884942293167, - 0.21295949816703796, - 0.31670475006103516, - 0.41720032691955566, - 0.5134148597717285, - 0.6043609976768494, - 0.6891055703163147, - 0.7667790651321411, - 0.8365843296051025, - 0.8978050947189331, - 0.949813187122345, - 0.9920748472213745, - 1.0241565704345703, - 1.0457290410995483, - 1.0565707683563232, - 1.0565707683563232, - 1.0457290410995483, - 1.0241565704345703, - 0.9920748472213745, - 0.949813187122345, - 0.8978050947189331, - 0.8365843296051025, - 0.7667790651321411, - 0.6891055703163147, - 0.6043609380722046, - 0.5134148597717285, - 0.41720032691955566, - 0.31670475006103516, - 0.21295936405658722, - 0.10702872276306152, - -4.6243531670597804e-8, - -6.023142873345932e-8, - 0.1394032984972, - 0.2773761749267578, - 0.412502646446228, - 0.5433964729309082, - 0.6687142848968506, - 0.7871701121330261, - 0.897548496723175, - 0.9987169504165649, - 1.0896371603012085, - 1.1693761348724365, - 1.2371158599853516, - 1.292160987854004, - 1.3339468240737915, - 1.3620445728302002, - 1.3761658668518066, - 1.3761658668518066, - 1.3620445728302002, - 1.3339468240737915, - 1.292160987854004, - 1.2371158599853516, - 1.1693761348724365, - 1.0896371603012085, - 0.9987169504165649, - 0.897548496723175, - 0.7871700525283813, - 0.6687142848968506, - 0.5433964729309082, - 0.412502646446228, - 0.2773760259151459, - 0.13940313458442688, - -6.023142873345932e-8, - -7.17534405225706e-8, - 0.16607055068016052, - 0.3304370641708374, - 0.4914126396179199, - 0.6473458409309387, - 0.7966364622116089, - 0.9377524256706238, - 1.06924569606781, - 1.1897672414779663, - 1.2980799674987793, - 1.3930728435516357, - 1.4737707376480103, - 1.5393458604812622, - 1.589125156402588, - 1.6225979328155518, - 1.639420509338379, - 1.639420509338379, - 1.6225979328155518, - 1.589125156402588, - 1.5393458604812622, - 1.4737707376480103, - 1.3930728435516357, - 1.2980799674987793, - 1.1897672414779663, - 1.06924569606781, - 0.9377523064613342, - 0.7966364622116089, - 0.6473458409309387, - 0.4914126396179199, - 0.3304368555545807, - 0.166070356965065, - -7.17534405225706e-8, - -8.033786258465625e-8, - 0.18593885004520416, - 0.36996981501579285, - 0.5502041578292847, - 0.7247928380966187, - 0.8919442296028137, - 1.049942970275879, - 1.1971678733825684, - 1.3321082592010498, - 1.4533793926239014, - 1.5597368478775024, - 1.6500893831253052, - 1.723509669303894, - 1.7792444229125977, - 1.816721796989441, - 1.835556983947754, - 1.835556983947754, - 1.816721796989441, - 1.7792444229125977, - 1.723509669303894, - 1.6500893831253052, - 1.5597368478775024, - 1.4533793926239014, - 1.3321082592010498, - 1.1971678733825684, - 1.0499428510665894, - 0.8919442296028137, - 0.7247928380966187, - 0.5502041578292847, - 0.36996957659721375, - 0.18593862652778625, - -8.033786258465625e-8, - -8.56332320608999e-8, - 0.19819478690624237, - 0.3943559229373932, - 0.5864701867103577, - 0.7725667357444763, - 0.9507356286048889, - 1.1191487312316895, - 1.2760777473449707, - 1.419912576675415, - 1.5491771697998047, - 1.662545084953308, - 1.7588530778884888, - 1.8371127843856812, - 1.8965212106704712, - 1.9364688396453857, - 1.9565455913543701, - 1.9565455913543701, - 1.9364688396453857, - 1.8965212106704712, - 1.8371127843856812, - 1.7588530778884888, - 1.662545084953308, - 1.5491771697998047, - 1.419912576675415, - 1.2760777473449707, - 1.1191486120224, - 0.9507356286048889, - 0.7725667357444763, - 0.5864701867103577, - 0.3943556845188141, - 0.19819454848766327, - -8.56332320608999e-8, - -8.742277657347586e-8, - 0.2023366093635559, - 0.4025970697402954, - 0.5987260937690735, - 0.7887116074562073, - 0.970603883266449, - 1.1425364017486572, - 1.3027448654174805, - 1.4495855569839478, - 1.581551432609558, - 1.6972885131835938, - 1.7956091165542603, - 1.8755042552947998, - 1.9361542463302612, - 1.9769366979599, - 1.9974329471588135, - 1.9974329471588135, - 1.9769366979599, - 1.9361542463302612, - 1.8755042552947998, - 1.7956091165542603, - 1.6972885131835938, - 1.581551432609558, - 1.4495855569839478, - 1.3027448654174805, - 1.1425362825393677, - 0.970603883266449, - 0.7887116074562073, - 0.5987260937690735, - 0.4025968313217163, - 0.2023363709449768, - -8.742277657347586e-8 - ], - "z": [ - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2, - -2, - -1.9897385835647583, - -1.9590598344802856, - -1.9082785844802856, - -1.8379156589508057, - -1.7486932277679443, - -1.6415269374847412, - -1.5175162553787231, - -1.3779338598251343, - -1.2242119312286377, - -1.0579280853271484, - -0.8807883262634277, - -0.6946105360984802, - -0.501305103302002, - -0.302855521440506, - -0.10129836201667786, - 0.10129831731319427, - 0.30285555124282837, - 0.501305103302002, - 0.6946105360984802, - 0.8807883262634277, - 1.0579280853271484, - 1.2242120504379272, - 1.3779338598251343, - 1.5175162553787231, - 1.6415269374847412, - 1.7486932277679443, - 1.8379156589508057, - 1.9082785844802856, - 1.9590599536895752, - 1.9897387027740479, - 2 - ] - } - ], - "layout": { - "hovermode": false, - "margin": { - "b": 10, - "l": 0, - "r": 0, - "t": 10 - }, - "paper_bgcolor": "rgba(0,0,0,0)", - "scene": { - "aspectmode": "data", - "camera": { - "up": { - "x": 0, - "y": 1, - "z": 0 - } - }, - "xaxis": { - "showspikes": false - }, - "yaxis": { - "showspikes": false - }, - "zaxis": { - "showspikes": false - } - }, - "showlegend": false, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - } - } - }, - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# COLLAPSED\n", - "from nerfstudio.field_components.spatial_distortions import SceneContraction\n", - "\n", - "data = []\n", - "for i, frustum in enumerate(frustums):\n", - " contracted_gaussian = SceneContraction()(frustum.get_gaussian_blob())\n", - " data += vis.get_gaussian_ellipsoids_list(contracted_gaussian, color=vis.get_random_color(idx=i))\n", - "\n", - "data.append(vis.get_sphere(radius=1.0, color=\"#111111\", opacity=0.05))\n", - "data.append(vis.get_sphere(radius=2.0, color=\"#111111\", opacity=0.05))\n", - "\n", - "fig = go.Figure(data=data, layout=webdocs_layout)\n", - "fig.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "tags": [] - }, - "source": [ - "Using $L_{\\infty}$ norm will bound the space to a cube of side length 4. This can be useful if downstream encoders opperated on a grid (ie. the hash encoder using in Instant-NGP)." - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": { - "tags": [ - "hide-input" - ] - }, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "marker": { - "color": "black", - "size": 2 - }, - "mode": "markers", - "name": "Means", - "type": "scatter3d", - "x": [ - -0.18384791910648346, - -0.40699541568756104, - -0.6454167366027832, - -0.8877694606781006, - -1.116342306137085, - -1.2734168767929077, - -1.3832396268844604, - -1.4642977714538574, - -1.5265634059906006, - -1.5758836269378662, - -1.6159104108810425, - -1.6490415334701538, - -1.6769161224365234, - -1.700692057609558, - -1.7212109565734863 - ], - "y": [ - 0.21343474090099335, - 0.35488447546958923, - 0.5060160160064697, - 0.6596396565437317, - 0.8032168745994568, - 0.8968518376350403, - 0.9594789743423462, - 1.0042037963867188, - 1.0376949310302734, - 1.0636897087097168, - 1.0844396352767944, - 1.1013801097869873, - 1.11546790599823, - 1.1273653507232666, - 1.1375449895858765 - ], - "z": [ - -0.2624335289001465, - -0.12852880358695984, - 0.01454135775566101, - 0.15997058153152466, - 0.30217644572257996, - 0.4192531704902649, - 0.5120362639427185, - 0.586285412311554, - 0.6466471552848816, - 0.6965106725692749, - 0.7383114099502563, - 0.7738143801689148, - 0.8043184280395508, - 0.8307949304580688, - 0.8539832830429077 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.1918720006942749, - -0.17236486077308655, - -0.15317094326019287, - -0.1348138153553009, - -0.1177942156791687, - -0.10257638990879059, - -0.08957543969154358, - -0.07914598286151886, - -0.07157253473997116, - -0.06706167012453079, - -0.06573642045259476, - -0.06763295084238052, - -0.07269951701164246, - -0.08079793304204941, - -0.0917072594165802, - -0.10512996464967728, - -0.12069988995790482, - -0.13799232244491577, - -0.1565355807542801, - -0.1758238524198532, - -0.1918720006942749, - -0.17117249965667725, - -0.15081876516342163, - -0.13136596977710724, - -0.11334474384784698, - -0.0972466692328453, - -0.0835108533501625, - -0.0725119560956955, - -0.064550019800663, - -0.05984222888946533, - -0.0585169792175293, - -0.06061043590307236, - -0.06606549024581909, - -0.07473333179950714, - -0.08637753874063492, - -0.10068050026893616, - -0.11725204437971115, - -0.13564014434814453, - -0.15534323453903198, - -0.1758238524198532, - -0.1918720006942749, - -0.1722114086151123, - -0.15286822617053986, - -0.1343700885772705, - -0.11722157150506973, - -0.1018904522061348, - -0.08879492431879044, - -0.07829218357801437, - -0.07066872715950012, - -0.06613252311944962, - -0.06480727344751358, - -0.06672914326190948, - -0.07184571772813797, - -0.08001741021871567, - -0.091021329164505, - -0.10455732047557831, - -0.12025615572929382, - -0.13768960535526276, - -0.15638212859630585, - -0.1758238524198532, - -0.1918720006942749, - -0.17536896467208862, - -0.15909722447395325, - -0.14350061118602753, - -0.129004567861557, - -0.11600451916456223, - -0.10485505312681198, - -0.09586029499769211, - -0.0892656221985817, - -0.08525092154741287, - -0.08392567187547684, - -0.08532603830099106, - -0.0894138291478157, - -0.09607753902673721, - -0.10513539612293243, - -0.11634032428264618, - -0.12938669323921204, - -0.14391860365867615, - -0.15953969955444336, - -0.1758238524198532, - -0.1918720006942749, - -0.18030303716659546, - -0.1688307821750641, - -0.1577681452035904, - -0.147416889667511, - -0.13805939257144928, - -0.1299508810043335, - -0.12331253290176392, - -0.11832544952630997, - -0.1151256412267685, - -0.11380039155483246, - -0.11438586562871933, - -0.11686606705188751, - -0.12117337435483932, - -0.1271902620792389, - -0.13475264608860016, - -0.1436542123556137, - -0.153652161359787, - -0.1644737720489502, - -0.1758238524198532, - -0.1918720006942749, - -0.18647892773151398, - -0.18101409077644348, - -0.17562654614448547, - -0.17046326398849487, - -0.16566509008407593, - -0.161362886428833, - -0.15767401456832886, - -0.15469910204410553, - -0.15251928567886353, - -0.1511940360069275, - -0.1507595181465149, - -0.15122753381729126, - -0.15258537232875824, - -0.15479595959186554, - -0.15779902040958405, - -0.1615126132965088, - -0.16583546996116638, - -0.17064964771270752, - -0.17582383751869202, - -0.1918720006942749, - -0.1932273656129837, - -0.19432690739631653, - -0.19514060020446777, - -0.1956462413072586, - -0.1958300769329071, - -0.19568707048892975, - -0.19522111117839813, - -0.1944449245929718, - -0.19337968528270721, - -0.19205443561077118, - -0.19050534069538116, - -0.18877464532852173, - -0.18690955638885498, - -0.1849609613418579, - -0.18298199772834778, - -0.1810266673564911, - -0.17914828658103943, - -0.17739810049533844, - -0.17582383751869202, - -0.1918720006942749, - -0.19981709122657776, - -0.20732657611370087, - -0.2141956388950348, - -0.2202368974685669, - -0.22528554499149323, - -0.22920389473438263, - -0.23188504576683044, - -0.23325586318969727, - -0.23327897489070892, - -0.2319537252187729, - -0.22931627929210663, - -0.22543857991695404, - -0.22042638063430786, - -0.21441642940044403, - -0.20757263898849487, - -0.2000817060470581, - -0.19214795529842377, - -0.1839878112077713, - -0.17582383751869202, - -0.1918719857931137, - -0.205533966422081, - -0.21860440075397491, - -0.23072676360607147, - -0.2415703982114792, - -0.250839501619339, - -0.25828129053115845, - -0.2636926770210266, - -0.2669261395931244, - -0.2678934335708618, - -0.2665681838989258, - -0.26298657059669495, - -0.2572462260723114, - -0.24950379133224487, - -0.23997041583061218, - -0.22890615463256836, - -0.21661284565925598, - -0.20342577993869781, - -0.18970468640327454, - -0.17582383751869202, - -0.1918719857931137, - -0.20975850522518158, - -0.22693823277950287, - -0.24294257164001465, - -0.25733497738838196, - -0.2697228193283081, - -0.2797682583332062, - -0.28719720244407654, - -0.29180708527565, - -0.2934720814228058, - -0.29214683175086975, - -0.2878674864768982, - -0.28075075149536133, - -0.2709907293319702, - -0.2588537335395813, - -0.24467073380947113, - -0.22882865369319916, - -0.21175961196422577, - -0.19392922520637512, - -0.17582383751869202, - -0.1918719857931137, - -0.21203289926052094, - -0.2314249873161316, - -0.24951928853988647, - -0.26582226157188416, - -0.27988916635513306, - -0.2913363575935364, - -0.29985150694847107, - -0.3052024245262146, - -0.3072430491447449, - -0.30591779947280884, - -0.30126282572746277, - -0.29340505599975586, - -0.2825588583946228, - -0.26902008056640625, - -0.2531580328941345, - -0.23540537059307098, - -0.2162463665008545, - -0.19620361924171448, - -0.17582383751869202, - -0.1918719857931137, - -0.21211068332195282, - -0.23157843947410583, - -0.2497442364692688, - -0.2661125361919403, - -0.2802368998527527, - -0.2917320132255554, - -0.30028432607650757, - -0.30566054582595825, - -0.30771404504776, - -0.306388795375824, - -0.3017209768295288, - -0.29383784532546997, - -0.28295451402664185, - -0.2693677842617035, - -0.2534483075141907, - -0.23563030362129211, - -0.21639981865882874, - -0.19628140330314636, - -0.17582383751869202, - -0.1918719857931137, - -0.2099834382534027, - -0.22738197445869446, - -0.2435930073261261, - -0.2581743597984314, - -0.27072829008102417, - -0.2809123396873474, - -0.2884487211704254, - -0.29313188791275024, - -0.2948340177536011, - -0.29350876808166504, - -0.2891922891139984, - -0.2820022702217102, - -0.27213484048843384, - -0.259859174489975, - -0.24551013112068176, - -0.2294790893793106, - -0.21220335364341736, - -0.19415415823459625, - -0.17582383751869202, - -0.1918719857931137, - -0.20588167011737823, - -0.2192903310060501, - -0.23173220455646515, - -0.24286793172359467, - -0.2523937225341797, - -0.2600497901439667, - -0.26562726497650146, - -0.2689740061759949, - -0.2699987292289734, - -0.26867347955703735, - -0.26503443717956543, - -0.25918081402778625, - -0.2512722909450531, - -0.24152463674545288, - -0.23020368814468384, - -0.21761828660964966, - -0.204111710190773, - -0.19005239009857178, - -0.17582383751869202, - -0.1918719857931137, - -0.20024988055229187, - -0.20818038284778595, - -0.21544715762138367, - -0.22185197472572327, - -0.22722014784812927, - -0.23140522837638855, - -0.23429308831691742, - -0.23580491542816162, - -0.23589950799942017, - -0.23457425832748413, - -0.23186533153057098, - -0.22784662246704102, - -0.22262772917747498, - -0.21635103225708008, - -0.20918773114681244, - -0.20133322477340698, - -0.19300176203250885, - -0.1844206154346466, - -0.17582383751869202, - -0.1918720006942749, - -0.19369837641716003, - -0.1952560544013977, - -0.19650255143642426, - -0.19740387797355652, - -0.19793541729450226, - -0.19808268547058105, - -0.19784167408943176, - -0.19721895456314087, - -0.19623148441314697, - -0.19490624964237213, - -0.19327935576438904, - -0.19139520823955536, - -0.18930518627166748, - -0.18706630170345306, - -0.1847396194934845, - -0.18238863348960876, - -0.1800774335861206, - -0.17786909639835358, - -0.17582383751869202, - -0.1918720006942749, - -0.18693707883358002, - -0.18191789090633392, - -0.1769513487815857, - -0.1721729338169098, - -0.1677129715681076, - -0.1636931300163269, - -0.16022305190563202, - -0.15739741921424866, - -0.155293270945549, - -0.15396803617477417, - -0.15345782041549683, - -0.15377658605575562, - -0.15491563081741333, - -0.15684384107589722, - -0.15950867533683777, - -0.162837415933609, - -0.16673927009105682, - -0.17110779881477356, - -0.17582383751869202, - -0.1918720006942749, - -0.1806986927986145, - -0.16961127519607544, - -0.15891221165657043, - -0.1488933265209198, - -0.1398279070854187, - -0.13196325302124023, - -0.12551385164260864, - -0.12065567076206207, - -0.11752121150493622, - -0.11619596183300018, - -0.11671608686447144, - -0.11906738579273224, - -0.12318573892116547, - -0.1289587914943695, - -0.13622908294200897, - -0.14479827880859375, - -0.15443265438079834, - -0.16486941277980804, - -0.1758238524198532, - -0.1918720006942749, - -0.17565925419330597, - -0.15966986119747162, - -0.14433999359607697, - -0.13008779287338257, - -0.11730203032493591, - -0.1063314750790596, - -0.09747534990310669, - -0.09097525477409363, - -0.08700849115848541, - -0.08568324148654938, - -0.08703567087650299, - -0.09102888405323029, - -0.09755396842956543, - -0.10643290728330612, - -0.11742354184389114, - -0.13022607564926147, - -0.14449124038219452, - -0.1598299741744995, - -0.1758238524198532, - -0.1918720006942749, - -0.17236486077308655, - -0.15317094326019287, - -0.1348138153553009, - -0.1177942156791687, - -0.10257638245820999, - -0.08957543224096298, - -0.07914597541093826, - -0.07157252728939056, - -0.0670616626739502, - -0.06573641300201416, - -0.06763294339179993, - -0.07269950956106186, - -0.08079792559146881, - -0.0917072594165802, - -0.10512995719909668, - -0.12069988995790482, - -0.13799232244491577, - -0.1565355807542801, - -0.1758238524198532 - ], - "y": [ - 0.2506425082683563, - 0.23783914744853973, - 0.2243700921535492, - 0.21060273051261902, - 0.19691263139247894, - 0.1836732178926468, - 0.17124561965465546, - 0.15996882319450378, - 0.15015044808387756, - 0.14205829799175262, - 0.13591310381889343, - 0.13188251852989197, - 0.13007643818855286, - 0.13054418563842773, - 0.1332729458808899, - 0.13818830251693726, - 0.14515621960163116, - 0.15398657321929932, - 0.16443853080272675, - 0.17622697353363037, - 0.2506425082683563, - 0.24082013964653015, - 0.2302507609128952, - 0.21922269463539124, - 0.20803672075271606, - 0.1969980150461197, - 0.1864076554775238, - 0.17655453085899353, - 0.1677073836326599, - 0.1601075828075409, - 0.1539624035358429, - 0.14943945407867432, - 0.1466621458530426, - 0.1457062065601349, - 0.1465977430343628, - 0.14931240677833557, - 0.1537761688232422, - 0.15986725687980652, - 0.16741952300071716, - 0.17622697353363037, - 0.2506425082683563, - 0.244810551404953, - 0.23812273144721985, - 0.23076149821281433, - 0.22292762994766235, - 0.2148348093032837, - 0.2067038118839264, - 0.19875642657279968, - 0.19120940566062927, - 0.18426865339279175, - 0.17812345921993256, - 0.17294147610664368, - 0.16886404156684875, - 0.16600237786769867, - 0.1644345372915268, - 0.16420330107212067, - 0.16531497240066528, - 0.16773922741413116, - 0.17140993475914001, - 0.17622697353363037, - 0.2506425082683563, - 0.24937795102596283, - 0.24713295698165894, - 0.24396875500679016, - 0.23997166752815247, - 0.23525072634220123, - 0.2299346923828125, - 0.2241685837507248, - 0.21810969710350037, - 0.211923286318779, - 0.2057780921459198, - 0.19984176754951477, - 0.19427619874477386, - 0.18923324346542358, - 0.18485045433044434, - 0.18124735355377197, - 0.1785222291946411, - 0.17674943804740906, - 0.17597733438014984, - 0.17622697353363037, - 0.2506425082683563, - 0.254027396440506, - 0.2563050091266632, - 0.25741323828697205, - 0.25732186436653137, - 0.25603336095809937, - 0.2535828649997711, - 0.25003722310066223, - 0.24549318850040436, - 0.24007466435432434, - 0.23392948508262634, - 0.22722524404525757, - 0.2201448529958725, - 0.2128814160823822, - 0.20563307404518127, - 0.19859755039215088, - 0.19196674227714539, - 0.18592151999473572, - 0.180626779794693, - 0.17622697353363037, - 0.2506425082683563, - 0.2582550346851349, - 0.264644980430603, - 0.2696380615234375, - 0.27309805154800415, - 0.27493059635162354, - 0.2750856578350067, - 0.2735590934753418, - 0.27039244771003723, - 0.2656721770763397, - 0.25952696800231934, - 0.25212451815605164, - 0.24366669356822968, - 0.23438423871994019, - 0.22453032433986664, - 0.21437373757362366, - 0.20419155061244965, - 0.19426149129867554, - 0.1848544329404831, - 0.17622697353363037, - 0.2506425082683563, - 0.2616027593612671, - 0.27124911546707153, - 0.2793184518814087, - 0.28559064865112305, - 0.28989461064338684, - 0.29211294651031494, - 0.2921851873397827, - 0.2901092767715454, - 0.2859418988227844, - 0.2797967195510864, - 0.2718413472175598, - 0.2622928023338318, - 0.2514115273952484, - 0.23949435353279114, - 0.22686633467674255, - 0.21387194097042084, - 0.20086561143398285, - 0.1882021576166153, - 0.17622697353363037, - 0.2506425082683563, - 0.2637077867984772, - 0.2754017412662506, - 0.28540539741516113, - 0.293445885181427, - 0.2993038594722748, - 0.30281955003738403, - 0.30389708280563354, - 0.30250704288482666, - 0.29868730902671814, - 0.29254212975502014, - 0.28423911333084106, - 0.2740046977996826, - 0.2621181309223175, - 0.24890360236167908, - 0.23472155630588531, - 0.21995887160301208, - 0.20501822233200073, - 0.19030717015266418, - 0.17622697353363037, - 0.2506425082683563, - 0.26434198021888733, - 0.27665284276008606, - 0.2872392535209656, - 0.2958124876022339, - 0.30213868618011475, - 0.306045264005661, - 0.3074256479740143, - 0.3062422275543213, - 0.3025272488594055, - 0.2963820695877075, - 0.2879742980003357, - 0.27753326296806335, - 0.2653438150882721, - 0.25173842906951904, - 0.2370881885290146, - 0.22179274260997772, - 0.20626932382583618, - 0.19094136357307434, - 0.17622697353363037, - 0.2506425082683563, - 0.2634366452693939, - 0.27486684918403625, - 0.28462135791778564, - 0.29243406653404236, - 0.2980918884277344, - 0.3014404773712158, - 0.3023884892463684, - 0.3009101152420044, - 0.29704558849334717, - 0.29090040922164917, - 0.2826421856880188, - 0.27249613404273987, - 0.2607390284538269, - 0.24769161641597748, - 0.23370975255966187, - 0.2191748321056366, - 0.20448334515094757, - 0.19003602862358093, - 0.17622697353363037, - 0.2506425082683563, - 0.26108986139297485, - 0.2702372968196869, - 0.27783530950546265, - 0.2836766541004181, - 0.2876019775867462, - 0.2895042300224304, - 0.28933149576187134, - 0.2870884835720062, - 0.282836377620697, - 0.276691198348999, - 0.26882052421569824, - 0.2594391107559204, - 0.2488027811050415, - 0.2372017204761505, - 0.2249523550271988, - 0.212388813495636, - 0.1998538076877594, - 0.18768924474716187, - 0.17622697353363037, - 0.2506425082683563, - 0.2575559616088867, - 0.2632659077644348, - 0.2676165699958801, - 0.27048930525779724, - 0.2718057334423065, - 0.2715299725532532, - 0.2696695029735565, - 0.2662751078605652, - 0.26143938302993774, - 0.25529420375823975, - 0.2480071783065796, - 0.23977713286876678, - 0.23082853853702545, - 0.22140547633171082, - 0.21176499128341675, - 0.20217005908489227, - 0.19288238883018494, - 0.18415534496307373, - 0.17622697353363037, - 0.2506425082683563, - 0.253217875957489, - 0.25470808148384094, - 0.2550724446773529, - 0.2543010711669922, - 0.2524149417877197, - 0.24946552515029907, - 0.2455333024263382, - 0.24072550237178802, - 0.2351732850074768, - 0.2290281057357788, - 0.22245757281780243, - 0.21564091742038727, - 0.20876409113407135, - 0.20201466977596283, - 0.1955767422914505, - 0.18962594866752625, - 0.18432459235191345, - 0.17981727421283722, - 0.17622697353363037, - 0.2506425082683563, - 0.24854573607444763, - 0.24549123644828796, - 0.24156230688095093, - 0.23686613142490387, - 0.2315308153629303, - 0.22570188343524933, - 0.21953833103179932, - 0.21320830285549164, - 0.2068844437599182, - 0.20073924958705902, - 0.19494035840034485, - 0.1896459460258484, - 0.1850004494190216, - 0.1811305433511734, - 0.17814181745052338, - 0.17611579596996307, - 0.17510773241519928, - 0.17514513432979584, - 0.17622697353363037, - 0.2506425082683563, - 0.24404582381248474, - 0.2366141527891159, - 0.22855019569396973, - 0.22007392346858978, - 0.2114165723323822, - 0.2028142660856247, - 0.19450163841247559, - 0.18670547008514404, - 0.17963841557502747, - 0.17349322140216827, - 0.16843754053115845, - 0.16460925340652466, - 0.16211281716823578, - 0.1610162854194641, - 0.1613496094942093, - 0.16310368478298187, - 0.16623064875602722, - 0.17064520716667175, - 0.17622697353363037, - 0.2506425082683563, - 0.2402057647705078, - 0.2290387749671936, - 0.21744614839553833, - 0.20574410259723663, - 0.19425183534622192, - 0.18328283727169037, - 0.17313629388809204, - 0.16408899426460266, - 0.15638771653175354, - 0.15024252235889435, - 0.14582104980945587, - 0.1432439088821411, - 0.14258138835430145, - 0.14385156333446503, - 0.14701978862285614, - 0.15199963748455048, - 0.15865527093410492, - 0.16680516302585602, - 0.17622697353363037, - 0.2506425082683563, - 0.23744170367717743, - 0.2235860377550125, - 0.20945347845554352, - 0.1954295039176941, - 0.18189668655395508, - 0.16922412812709808, - 0.15775752067565918, - 0.14780965447425842, - 0.13965186476707458, - 0.1335066854953766, - 0.12954172492027283, - 0.12786513566970825, - 0.12852269411087036, - 0.131496399641037, - 0.1367051899433136, - 0.14400696754455566, - 0.15320253372192383, - 0.16404108703136444, - 0.17622697353363037, - 0.2506425082683563, - 0.23605315387248993, - 0.22084681689739227, - 0.2054383009672165, - 0.19024790823459625, - 0.17568999528884888, - 0.1621616631746292, - 0.1500319242477417, - 0.13963162899017334, - 0.1312445104122162, - 0.1250993311405182, - 0.12136369943618774, - 0.12013953179121017, - 0.1214602142572403, - 0.1252897083759308, - 0.13152357935905457, - 0.13999179005622864, - 0.1504633128643036, - 0.16265255212783813, - 0.17622697353363037, - 0.2506425082683563, - 0.23619060218334198, - 0.22111797332763672, - 0.20583575963974, - 0.19076082110404968, - 0.17630437016487122, - 0.16286075115203857, - 0.15079665184020996, - 0.1404411494731903, - 0.13207674026489258, - 0.1259315460920334, - 0.12217321246862411, - 0.12090425938367844, - 0.12215930223464966, - 0.12590408325195312, - 0.1320365071296692, - 0.14038923382759094, - 0.15073445439338684, - 0.162789985537529, - 0.17622697353363037, - 0.2506425082683563, - 0.23783914744853973, - 0.2243700921535492, - 0.21060273051261902, - 0.19691264629364014, - 0.18367323279380798, - 0.17124563455581665, - 0.15996882319450378, - 0.15015044808387756, - 0.14205831289291382, - 0.13591311872005463, - 0.13188251852989197, - 0.13007643818855286, - 0.13054418563842773, - 0.1332729458808899, - 0.13818831741809845, - 0.14515621960163116, - 0.15398657321929932, - 0.16443853080272675, - 0.17622697353363037 - ], - "z": [ - -0.31510964035987854, - -0.32603126764297485, - -0.33521807193756104, - -0.34241950511932373, - -0.347439169883728, - -0.3501400649547577, - -0.3504485785961151, - -0.3483562469482422, - -0.34392017126083374, - -0.3372613787651062, - -0.3285614550113678, - -0.31805771589279175, - -0.30603674054145813, - -0.2928263545036316, - -0.27878692746162415, - -0.26430144906044006, - -0.24976497888565063, - -0.23557409644126892, - -0.2221158742904663, - -0.20975740253925323, - -0.31510964035987854, - -0.32410725951194763, - -0.3314225673675537, - -0.33685600757598877, - -0.3402594327926636, - -0.34153997898101807, - -0.3406626582145691, - -0.33765149116516113, - -0.3325885534286499, - -0.32561197876930237, - -0.31691205501556396, - -0.3067261278629303, - -0.2953319847583771, - -0.28304046392440796, - -0.2701868414878845, - -0.2571217119693756, - -0.24420148134231567, - -0.2317785769701004, - -0.2201918661594391, - -0.20975740253925323, - -0.31510964035987854, - -0.3211303651332855, - -0.32555001974105835, - -0.32824796438217163, - -0.3291507065296173, - -0.3282335698604584, - -0.3255215883255005, - -0.3210887014865875, - -0.31505587697029114, - -0.3075876235961914, - -0.298887699842453, - -0.28919342160224915, - -0.27876919507980347, - -0.26789936423301697, - -0.25688043236732483, - -0.24601298570632935, - -0.23559343814849854, - -0.22590602934360504, - -0.21721500158309937, - -0.20975740253925323, - -0.3151096701622009, - -0.3174231946468353, - -0.3182367980480194, - -0.3175281882286072, - -0.315316766500473, - -0.31166282296180725, - -0.3066660165786743, - -0.3004626929759979, - -0.29322201013565063, - -0.2851414978504181, - -0.2764415740966797, - -0.26735955476760864, - -0.25814318656921387, - -0.249043807387352, - -0.2403096854686737, - -0.23217904567718506, - -0.22487366199493408, - -0.2185928076505661, - -0.21350783109664917, - -0.20975740253925323, - -0.3151096701622009, - -0.3133874833583832, - -0.3102754056453705, - -0.305858314037323, - -0.30025672912597656, - -0.2936234176158905, - -0.2861393392086029, - -0.2780086100101471, - -0.2694530487060547, - -0.26070600748062134, - -0.25200608372688293, - -0.2435906082391739, - -0.23568910360336304, - -0.22851711511611938, - -0.22227029502391815, - -0.2171190083026886, - -0.2132037878036499, - -0.21063141524791718, - -0.20947209000587463, - -0.20975740253925323, - -0.3151096701622009, - -0.30946052074432373, - -0.30252858996391296, - -0.29450297355651855, - -0.2856025993824005, - -0.276070237159729, - -0.2661658823490143, - -0.2561597526073456, - -0.24632471799850464, - -0.23692910373210907, - -0.22822917997837067, - -0.22046226263046265, - -0.21384021639823914, - -0.20854367315769196, - -0.20471709966659546, - -0.20246487855911255, - -0.20184844732284546, - -0.20288461446762085, - -0.20554512739181519, - -0.20975740253925323, - -0.3151096701622009, - -0.30606788396835327, - -0.29583585262298584, - -0.2846927046775818, - -0.27294236421585083, - -0.2609054148197174, - -0.2489101141691208, - -0.23728370666503906, - -0.2263433188199997, - -0.21638739109039307, - -0.20768746733665466, - -0.2004808783531189, - -0.1949641853570938, - -0.19128790497779846, - -0.18955226242542267, - -0.18980464339256287, - -0.1920381486415863, - -0.19619187712669373, - -0.20215249061584473, - -0.20975740253925323, - -0.3151096701622009, - -0.303577184677124, - -0.2909224331378937, - -0.2774905562400818, - -0.26364797353744507, - -0.24977228045463562, - -0.23624193668365479, - -0.22342602908611298, - -0.21167415380477905, - -0.20130684971809387, - -0.19260694086551666, - -0.18581169843673706, - -0.18110650777816772, - -0.17861971259117126, - -0.17841914296150208, - -0.1805102527141571, - -0.1848360300064087, - -0.19127845764160156, - -0.19966180622577667, - -0.20975740253925323, - -0.3151096701622009, - -0.30225837230682373, - -0.28832077980041504, - -0.2736770510673523, - -0.2587266266345978, - -0.24387730658054352, - -0.22953416407108307, - -0.2160884141921997, - -0.2039068639278412, - -0.19332174956798553, - -0.18462184071540833, - -0.1780444085597992, - -0.17376890778541565, - -0.17191193997859955, - -0.17252415418624878, - -0.17558889091014862, - -0.181022509932518, - -0.18867680430412292, - -0.19834299385547638, - -0.20975740253925323, - -0.3151096701622009, - -0.3022543489933014, - -0.2883128523826599, - -0.2736653983592987, - -0.258711576461792, - -0.24385930597782135, - -0.22951367497444153, - -0.21606600284576416, - -0.2038831263780594, - -0.1932973563671112, - -0.1845974326133728, - -0.1780206859111786, - -0.1737464964389801, - -0.171891450881958, - -0.1725061535835266, - -0.17557385563850403, - -0.18101085722446442, - -0.1886688470840454, - -0.19833895564079285, - -0.20975740253925323, - -0.3151096701622009, - -0.30356553196907043, - -0.29089945554733276, - -0.2774568796157837, - -0.2636045217514038, - -0.24972021579742432, - -0.23618268966674805, - -0.22336122393608093, - -0.21160554885864258, - -0.2012363225221634, - -0.19253641366958618, - -0.18574309349060059, - -0.18104170262813568, - -0.17856046557426453, - -0.17836706340312958, - -0.18046678602695465, - -0.1848023384809494, - -0.19125548005104065, - -0.19965015351772308, - -0.20975740253925323, - -0.3151096701622009, - -0.3060498535633087, - -0.2958003282546997, - -0.2846406400203705, - -0.27287518978118896, - -0.26082491874694824, - -0.2488185316324234, - -0.23718352615833282, - -0.22623726725578308, - -0.2162783443927765, - -0.20757842063903809, - -0.2003748118877411, - -0.19486400485038757, - -0.1911962926387787, - -0.1894717812538147, - -0.1897374391555786, - -0.191986083984375, - -0.1961563527584076, - -0.20213447511196136, - -0.20975740253925323, - -0.3151096701622009, - -0.3094381093978882, - -0.3024843633174896, - -0.2944381833076477, - -0.28551897406578064, - -0.2759700417518616, - -0.26605188846588135, - -0.2560350298881531, - -0.24619269371032715, - -0.2367933839559555, - -0.2280934602022171, - -0.22033025324344635, - -0.21371550858020782, - -0.20842966437339783, - -0.20461690425872803, - -0.2023812234401703, - -0.20178362727165222, - -0.2028403878211975, - -0.20552271604537964, - -0.20975740253925323, - -0.3151096701622009, - -0.31336307525634766, - -0.31022727489471436, - -0.3057878017425537, - -0.30016571283340454, - -0.2935144007205963, - -0.2860153019428253, - -0.2778729200363159, - -0.269309401512146, - -0.2605583369731903, - -0.2518584132194519, - -0.2434469610452652, - -0.23555339872837067, - -0.2283930629491806, - -0.22216126322746277, - -0.21702799201011658, - -0.21313326060771942, - -0.21058329939842224, - -0.2094476968050003, - -0.20975740253925323, - -0.3151096701622009, - -0.3173994719982147, - -0.31818997859954834, - -0.3174595832824707, - -0.3152282238006592, - -0.31155675649642944, - -0.30654534697532654, - -0.30033066868782043, - -0.29308226704597473, - -0.2849978506565094, - -0.276297926902771, - -0.26721981167793274, - -0.2580111622810364, - -0.24892312288284302, - -0.2402036190032959, - -0.23209050297737122, - -0.2248050421476364, - -0.21854600310325623, - -0.21348409354686737, - -0.20975740253925323, - -0.31510964035987854, - -0.3211098909378052, - -0.32550957798957825, - -0.3281887173652649, - -0.3290742337703705, - -0.3281419575214386, - -0.32541733980178833, - -0.3209746778011322, - -0.31493517756462097, - -0.30746355652809143, - -0.298763632774353, - -0.289072722196579, - -0.27865517139434814, - -0.2677951157093048, - -0.25678882002830505, - -0.24593651294708252, - -0.2355341762304306, - -0.22586560249328613, - -0.21719449758529663, - -0.20975740253925323, - -0.31510964035987854, - -0.32409220933914185, - -0.33139291405677795, - -0.3368125557899475, - -0.34020334482192993, - -0.3414727747440338, - -0.34058621525764465, - -0.33756786584854126, - -0.33250004053115845, - -0.32552096247673035, - -0.31682103872299194, - -0.30663758516311646, - -0.2952483296394348, - -0.28296399116516113, - -0.27011963725090027, - -0.25706562399864197, - -0.24415801465511322, - -0.23174892365932465, - -0.2201768457889557, - -0.20975740253925323, - -0.31510964035987854, - -0.32602331042289734, - -0.3352023959159851, - -0.3423965573310852, - -0.34740951657295227, - -0.35010454058647156, - -0.350408136844635, - -0.34831202030181885, - -0.34387338161468506, - -0.3372132480144501, - -0.32851332426071167, - -0.31801092624664307, - -0.3059925138950348, - -0.2927859425544739, - -0.2787514328956604, - -0.2642717957496643, - -0.24974200129508972, - -0.235558420419693, - -0.2221079170703888, - -0.20975740253925323, - -0.31510964035987854, - -0.3266938626766205, - -0.33652523159980774, - -0.34433555603027344, - -0.3499118387699127, - -0.353101909160614, - -0.35381880402565, - -0.35204294323921204, - -0.34782275557518005, - -0.34127336740493774, - -0.33257347345352173, - -0.32196030020713806, - -0.3097234070301056, - -0.2961965799331665, - -0.28174877166748047, - -0.26677411794662476, - -0.25168102979660034, - -0.23688125610351562, - -0.22277848422527313, - -0.20975740253925323, - -0.31510964035987854, - -0.32603126764297485, - -0.33521807193756104, - -0.34241950511932373, - -0.347439169883728, - -0.3501400649547577, - -0.3504485487937927, - -0.3483562469482422, - -0.34392017126083374, - -0.3372613787651062, - -0.3285614550113678, - -0.31805771589279175, - -0.30603674054145813, - -0.2928263545036316, - -0.27878692746162415, - -0.26430144906044006, - -0.24976497888565063, - -0.23557409644126892, - -0.2221158742904663, - -0.20975740253925323 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.3819572329521179, - -0.3598332107067108, - -0.33899563550949097, - -0.3200129270553589, - -0.303402841091156, - -0.2896185517311096, - -0.2790359556674957, - -0.27194374799728394, - -0.26853543519973755, - -0.268903911113739, - -0.27303922176361084, - -0.28082844614982605, - -0.2920592129230499, - -0.3064251244068146, - -0.3235343396663666, - -0.3429201543331146, - -0.36405375599861145, - -0.38635873794555664, - -0.40922659635543823, - -0.43203359842300415, - -0.3819572329521179, - -0.3651365637779236, - -0.34945768117904663, - -0.33534830808639526, - -0.3231932520866394, - -0.31332412362098694, - -0.30601006746292114, - -0.3014506697654724, - -0.2997702360153198, - -0.30101463198661804, - -0.3051499128341675, - -0.3120632767677307, - -0.321566104888916, - -0.3333992660045624, - -0.3472399115562439, - -0.36271053552627563, - -0.3793891668319702, - -0.3968207836151123, - -0.414529949426651, - -0.43203359842300415, - -0.3819572329521179, - -0.3722997009754181, - -0.3635886013507843, - -0.35606151819229126, - -0.3499237596988678, - -0.345342755317688, - -0.3424435257911682, - -0.34130507707595825, - -0.3419584631919861, - -0.34438592195510864, - -0.3485212028026581, - -0.354251503944397, - -0.36142051219940186, - -0.36983269453048706, - -0.37925857305526733, - -0.38944104313850403, - -0.4001023471355438, - -0.41095170378685, - -0.4216931164264679, - -0.43203359842300415, - -0.3819572329521179, - -0.3805463910102844, - -0.37985703349113464, - -0.3799079358577728, - -0.38069769740104675, - -0.3822048008441925, - -0.38438814878463745, - -0.3871881365776062, - -0.3905284106731415, - -0.3943178951740265, - -0.3984531760215759, - -0.40282145142555237, - -0.4073035717010498, - -0.4117773175239563, - -0.41612061858177185, - -0.420214980840683, - -0.4239487946033478, - -0.4272201359272003, - -0.42993980646133423, - -0.43203359842300415, - -0.3819572329521179, - -0.38898298144340515, - -0.3965000808238983, - -0.4043034613132477, - -0.4121802747249603, - -0.41991564631462097, - -0.42729857563972473, - -0.43412771821022034, - -0.4402167499065399, - -0.44539958238601685, - -0.4495348632335663, - -0.4525097608566284, - -0.45424315333366394, - -0.45468777418136597, - -0.45383143424987793, - -0.45169755816459656, - -0.44834432005882263, - -0.443863183259964, - -0.43837636709213257, - -0.43203359842300415, - -0.3819572329521179, - -0.39669522643089294, - -0.41171419620513916, - -0.4266044497489929, - -0.4409598112106323, - -0.45438870787620544, - -0.4665248394012451, - -0.4770371913909912, - -0.48563894629478455, - -0.4920955300331116, - -0.496230810880661, - -0.49793198704719543, - -0.4971526265144348, - -0.49391403794288635, - -0.4883045256137848, - -0.48047709465026855, - -0.47064530849456787, - -0.45907729864120483, - -0.44608861207962036, - -0.43203359842300415, - -0.3819572329521179, - -0.40284737944602966, - -0.4238506853580475, - -0.44439423084259033, - -0.46391761302948, - -0.4818883240222931, - -0.49781614542007446, - -0.5112665891647339, - -0.5218728184700012, - -0.5293455123901367, - -0.5334807634353638, - -0.5341658592224121, - -0.5313820838928223, - -0.5252053141593933, - -0.5158041715621948, - -0.5034348964691162, - -0.4884350895881653, - -0.47121378779411316, - -0.4522407650947571, - -0.43203359842300415, - -0.3819572329521179, - -0.40677276253700256, - -0.4315944015979767, - -0.45574501156806946, - -0.47856587171554565, - -0.4994344711303711, - -0.5177816152572632, - -0.5331067442893982, - -0.5449919104576111, - -0.5531128644943237, - -0.5572481751441956, - -0.557284951210022, - -0.5532221794128418, - -0.545170783996582, - -0.5333502888679504, - -0.5180832147598267, - -0.4997858703136444, - -0.47895747423171997, - -0.45616617798805237, - -0.43203359842300415, - -0.3819572329521179, - -0.40804600715637207, - -0.43410614132881165, - -0.45942676067352295, - -0.48331719636917114, - -0.5051257610321045, - -0.5242576003074646, - -0.5401908159255981, - -0.5524908304214478, - -0.5608221292495728, - -0.5649573802947998, - -0.5647838711738586, - -0.5603063106536865, - -0.5516468286514282, - -0.5390415787696838, - -0.5228345394134521, - -0.5034676194190979, - -0.4814692437648773, - -0.4574394226074219, - -0.43203359842300415, - -0.3819572329521179, - -0.40652912855148315, - -0.4311137795448303, - -0.4550405442714691, - -0.4776567220687866, - -0.4983454942703247, - -0.5165424346923828, - -0.531751275062561, - -0.5435570478439331, - -0.5516377687454224, - -0.5557730197906494, - -0.5558500289916992, - -0.5518667101860046, - -0.5439316034317017, - -0.532261312007904, - -0.5171740651130676, - -0.4990813732147217, - -0.478476881980896, - -0.45592254400253296, - -0.43203359842300415, - -0.3819572329521179, - -0.40238651633262634, - -0.42294153571128845, - -0.44306159019470215, - -0.46219784021377563, - -0.4798283278942108, - -0.49547213315963745, - -0.5087025165557861, - -0.5191586017608643, - -0.5265551209449768, - -0.5306903719902039, - -0.5314515829086304, - -0.5288179516792297, - -0.5228613018989563, - -0.5137441158294678, - -0.5017151832580566, - -0.4871024489402771, - -0.4703046381473541, - -0.45177993178367615, - -0.43203359842300415, - -0.3819572329521179, - -0.3960670828819275, - -0.4104750454425812, - -0.42478805780410767, - -0.4386157691478729, - -0.4515809416770935, - -0.463329941034317, - -0.47354230284690857, - -0.481939435005188, - -0.48829224705696106, - -0.4924275279045105, - -0.4942324459552765, - -0.49365776777267456, - -0.49071913957595825, - -0.48549675941467285, - -0.47813308238983154, - -0.4688289165496826, - -0.45783814787864685, - -0.4454604685306549, - -0.43203359842300415, - -0.3819572329521179, - -0.38825562596321106, - -0.39506518840789795, - -0.40220019221305847, - -0.4094659984111786, - -0.41666439175605774, - -0.4235990643501282, - -0.4300808012485504, - -0.43593287467956543, - -0.44099557399749756, - -0.445130854845047, - -0.44822588562965393, - -0.4501962661743164, - -0.450988233089447, - -0.4505802094936371, - -0.4489832818508148, - -0.4462410509586334, - -0.4424282908439636, - -0.4376490116119385, - -0.43203359842300415, - -0.3819572329521179, - -0.37979865074157715, - -0.3783819079399109, - -0.37774568796157837, - -0.37790730595588684, - -0.3788623511791229, - -0.38058483600616455, - -0.38302773237228394, - -0.3861243724822998, - -0.3897903263568878, - -0.39392560720443726, - -0.3984173834323883, - -0.40314316749572754, - -0.4079740047454834, - -0.41277816891670227, - -0.41742458939552307, - -0.42178651690483093, - -0.42574501037597656, - -0.42919203639030457, - -0.43203359842300415, - -0.3819572329521179, - -0.3716125786304474, - -0.36223310232162476, - -0.3540745973587036, - -0.34735962748527527, - -0.3422713875770569, - -0.33894863724708557, - -0.3374820351600647, - -0.33791157603263855, - -0.34022554755210876, - -0.3443608283996582, - -0.35020458698272705, - -0.3575975000858307, - -0.3663378357887268, - -0.37618720531463623, - -0.3868769109249115, - -0.39811545610427856, - -0.40959617495536804, - -0.4210059642791748, - -0.43203359842300415, - -0.3819572329521179, - -0.3645845353603363, - -0.34836870431900024, - -0.3337520360946655, - -0.3211332857608795, - -0.3108566105365753, - -0.303202360868454, - -0.2983793020248413, - -0.296519011259079, - -0.29767224192619324, - -0.3018075227737427, - -0.3088120222091675, - -0.3184947371482849, - -0.3305915296077728, - -0.3447723984718323, - -0.36065056920051575, - -0.3777928948402405, - -0.3957318067550659, - -0.4139779210090637, - -0.43203359842300415, - -0.3819572329521179, - -0.35947608947753906, - -0.33829113841056824, - -0.31898027658462524, - -0.3020702302455902, - -0.2880222797393799, - -0.27721959352493286, - -0.2699568271636963, - -0.26643216609954834, - -0.26674169301986694, - -0.270876944065094, - -0.27872517704963684, - -0.2900722920894623, - -0.3046087622642517, - -0.32193806767463684, - -0.34158751368522644, - -0.3630211353302002, - -0.3856542408466339, - -0.4088694751262665, - -0.43203359842300415, - -0.3819572329521179, - -0.3568408191204071, - -0.33309251070022583, - -0.31136006116867065, - -0.2922362983226776, - -0.2762428820133209, - -0.26381605863571167, - -0.2552947402000427, - -0.2509114742279053, - -0.250785768032074, - -0.254921019077301, - -0.2632044553756714, - -0.27541017532348633, - -0.29120519757270813, - -0.3101586699485779, - -0.33175361156463623, - -0.3554009199142456, - -0.3804556131362915, - -0.4062342345714569, - -0.43203359842300415, - -0.3819572329521179, - -0.3569643199443817, - -0.33333614468574524, - -0.3117171823978424, - -0.29269716143608093, - -0.2767949104309082, - -0.2644442021846771, - -0.2559818625450134, - -0.25163882970809937, - -0.25153350830078125, - -0.2556688189506531, - -0.26393187046051025, - -0.2760973274707794, - -0.29183337092399597, - -0.31071069836616516, - -0.33221447467803955, - -0.35575804114341736, - -0.3806992471218109, - -0.4063577353954315, - -0.43203359842300415, - -0.3819572329521179, - -0.3598332107067108, - -0.33899563550949097, - -0.3200129270553589, - -0.3034028708934784, - -0.2896185517311096, - -0.2790359854698181, - -0.27194374799728394, - -0.26853543519973755, - -0.2689039409160614, - -0.27303922176361084, - -0.28082847595214844, - -0.2920592129230499, - -0.3064251244068146, - -0.3235343396663666, - -0.3429201543331146, - -0.36405378580093384, - -0.38635873794555664, - -0.40922659635543823, - -0.43203359842300415 - ], - "y": [ - 0.29578542709350586, - 0.28235092759132385, - 0.27089494466781616, - 0.26172998547554016, - 0.25510603189468384, - 0.2512037456035614, - 0.2501296401023865, - 0.2519129514694214, - 0.2565050721168518, - 0.26378071308135986, - 0.2735414505004883, - 0.285521000623703, - 0.29939258098602295, - 0.31477785110473633, - 0.3312571346759796, - 0.3483809232711792, - 0.36568209528923035, - 0.3826887309551239, - 0.3989369571208954, - 0.4139835238456726, - 0.29578542709350586, - 0.2783240079879761, - 0.26295095682144165, - 0.25008559226989746, - 0.240078866481781, - 0.23320376873016357, - 0.22964778542518616, - 0.2295079231262207, - 0.23278802633285522, - 0.23939859867095947, - 0.2491593062877655, - 0.26180392503738403, - 0.27698755264282227, - 0.294295996427536, - 0.3132571578025818, - 0.33335378766059875, - 0.35403770208358765, - 0.3747447431087494, - 0.3949100375175476, - 0.4139835238456726, - 0.29578542709350586, - 0.2762766480445862, - 0.2589120864868164, - 0.24416539072990417, - 0.2324388176202774, - 0.22405225038528442, - 0.21923445165157318, - 0.21811681985855103, - 0.22072985768318176, - 0.22700227797031403, - 0.23676300048828125, - 0.24974577128887177, - 0.2655964493751526, - 0.28388267755508423, - 0.30410560965538025, - 0.32571372389793396, - 0.34811750054359436, - 0.37070587277412415, - 0.3928626775741577, - 0.4139835238456726, - 0.29578542709350586, - 0.27643072605133057, - 0.2592160105705261, - 0.24461089074611664, - 0.23301374912261963, - 0.2247409224510193, - 0.22001807391643524, - 0.2189740091562271, - 0.22163724899291992, - 0.22793513536453247, - 0.2376958429813385, - 0.2506531774997711, - 0.26645365357398987, - 0.2846662998199463, - 0.3047942817211151, - 0.326288640499115, - 0.348563015460968, - 0.37100979685783386, - 0.3930167555809021, - 0.4139835238456726, - 0.29578542709350586, - 0.27876952290534973, - 0.2638297975063324, - 0.251373827457428, - 0.2417413592338562, - 0.23519514501094818, - 0.2319137454032898, - 0.2319866567850113, - 0.2354118973016739, - 0.24209605157375336, - 0.2518567740917206, - 0.2644278109073639, - 0.27946630120277405, - 0.29656195640563965, - 0.3152485191822052, - 0.33501628041267395, - 0.35532596707344055, - 0.3756236135959625, - 0.3953555226325989, - 0.4139835238456726, - 0.29578542709350586, - 0.2830395996570587, - 0.27225351333618164, - 0.2637213468551636, - 0.2576759159564972, - 0.25428205728530884, - 0.25363239645957947, - 0.255744606256485, - 0.26056107878685, - 0.26795047521591187, - 0.2777112126350403, - 0.28957700729370117, - 0.30322423577308655, - 0.3182806074619293, - 0.33433544635772705, - 0.35095080733299255, - 0.36767348647117615, - 0.3840472996234894, - 0.39962562918663025, - 0.4139835238456726, - 0.29578542709350586, - 0.28877824544906616, - 0.2835742235183716, - 0.2803153991699219, - 0.27909061312675476, - 0.27993327379226685, - 0.2828204333782196, - 0.28767329454421997, - 0.2943595349788666, - 0.30269670486450195, - 0.312457412481308, - 0.3233754336833954, - 0.3351529538631439, - 0.34746867418289185, - 0.35998669266700745, - 0.3723655343055725, - 0.38426753878593445, - 0.3953680396080017, - 0.4053642451763153, - 0.4139835238456726, - 0.29578542709350586, - 0.29536354541778564, - 0.2965652644634247, - 0.2993577718734741, - 0.3036648631095886, - 0.30936914682388306, - 0.3163149356842041, - 0.32431280612945557, - 0.3331446051597595, - 0.34256941080093384, - 0.35233011841773987, - 0.36216050386428833, - 0.37179243564605713, - 0.38096317648887634, - 0.38942253589630127, - 0.39693978428840637, - 0.4033098816871643, - 0.4083590507507324, - 0.4119495749473572, - 0.4139835238456726, - 0.29578542709350586, - 0.3020819425582886, - 0.3098187744617462, - 0.3187848627567291, - 0.32873567938804626, - 0.3393997550010681, - 0.35048621892929077, - 0.3616926670074463, - 0.3727133870124817, - 0.3832477629184723, - 0.3930085003376007, - 0.4017292857170105, - 0.40917229652404785, - 0.415134459733963, - 0.41945314407348633, - 0.422010600566864, - 0.4227370023727417, - 0.42161256074905396, - 0.4186679720878601, - 0.4139835238456726, - 0.29578542709350586, - 0.30820533633232117, - 0.32189854979515076, - 0.33649152517318726, - 0.3515862226486206, - 0.36677086353302, - 0.3816313147544861, - 0.3957621455192566, - 0.40877795219421387, - 0.4203236699104309, - 0.4300844073295593, - 0.43779388070106506, - 0.44324177503585815, - 0.44627952575683594, - 0.44682425260543823, - 0.44486111402511597, - 0.44044363498687744, - 0.4336923360824585, - 0.4247913658618927, - 0.4139835238456726, - 0.29578542709350586, - 0.3130702078342438, - 0.33149558305740356, - 0.35055893659591675, - 0.3697402775287628, - 0.3885163962841034, - 0.40637513995170593, - 0.4228293299674988, - 0.43743017315864563, - 0.44977936148643494, - 0.45954006910324097, - 0.4664461016654968, - 0.47030895948410034, - 0.4710233509540558, - 0.468569815158844, - 0.46301519870758057, - 0.45451104640960693, - 0.4432893693447113, - 0.4296562373638153, - 0.4139835238456726, - 0.29578542709350586, - 0.31614935398101807, - 0.33756986260414124, - 0.3594626784324646, - 0.38123059272766113, - 0.4022798538208008, - 0.4220363199710846, - 0.4399610459804535, - 0.45556509494781494, - 0.46842285990715027, - 0.4781835675239563, - 0.48458102345466614, - 0.48744070529937744, - 0.48668456077575684, - 0.4823332726955414, - 0.4745055139064789, - 0.4634147882461548, - 0.449363648891449, - 0.4327353835105896, - 0.4139835238456726, - 0.29578542709350586, - 0.317109078168869, - 0.33946314454078674, - 0.3622378706932068, - 0.38481199741363525, - 0.40656980872154236, - 0.4269177317619324, - 0.4453008472919464, - 0.46121758222579956, - 0.47423383593559265, - 0.4839945435523987, - 0.49023351073265076, - 0.492780476808548, - 0.491566002368927, - 0.48662319779396057, - 0.478086918592453, - 0.466189980506897, - 0.4512569308280945, - 0.43369510769844055, - 0.4139835238456726, - 0.29578542709350586, - 0.31584540009498596, - 0.3369702696800232, - 0.35858380794525146, - 0.3800964057445526, - 0.4009213149547577, - 0.42049044370651245, - 0.4382700026035309, - 0.4537750482559204, - 0.46658259630203247, - 0.4763433039188385, - 0.4827909469604492, - 0.48574966192245483, - 0.4851386547088623, - 0.4809747040271759, - 0.47337132692337036, - 0.46253591775894165, - 0.4487640857696533, - 0.4324314296245575, - 0.4139835238456726, - 0.29578542709350586, - 0.31249529123306274, - 0.33036139607429504, - 0.34889644384384155, - 0.367594838142395, - 0.38594651222229004, - 0.4034508764743805, - 0.4196305274963379, - 0.4340440332889557, - 0.4462983012199402, - 0.4560590088367462, - 0.4630599617958069, - 0.46711015701293945, - 0.46809911727905273, - 0.46599990129470825, - 0.4608697295188904, - 0.45284855365753174, - 0.4421551823616028, - 0.4290813207626343, - 0.4139835238456726, - 0.29578542709350586, - 0.3074217140674591, - 0.3203526735305786, - 0.334225594997406, - 0.34866198897361755, - 0.3632681369781494, - 0.3776456117630005, - 0.3914022147655487, - 0.4041627049446106, - 0.41557902097702026, - 0.4253397583961487, - 0.4331786334514618, - 0.43888184428215027, - 0.44229385256767273, - 0.44332155585289, - 0.4419369101524353, - 0.4381777048110962, - 0.43214648962020874, - 0.42400774359703064, - 0.4139835238456726, - 0.29578542709350586, - 0.301174521446228, - 0.3080286979675293, - 0.31616100668907166, - 0.3253495395183563, - 0.33534374833106995, - 0.3458709418773651, - 0.35664403438568115, - 0.3673691153526306, - 0.3777536451816559, - 0.3875143527984619, - 0.3963850140571594, - 0.4041236639022827, - 0.41051918268203735, - 0.41539713740348816, - 0.4186244606971741, - 0.42011311650276184, - 0.4198225140571594, - 0.41776055097579956, - 0.4139835238456726, - 0.29578542709350586, - 0.2944307029247284, - 0.2947250008583069, - 0.29666027426719666, - 0.3001837730407715, - 0.30519935488700867, - 0.3115702271461487, - 0.3191225826740265, - 0.32765042781829834, - 0.33692118525505066, - 0.3466818928718567, - 0.35666635632514954, - 0.36660221219062805, - 0.3762184679508209, - 0.3852527439594269, - 0.39345869421958923, - 0.40061241388320923, - 0.4065187871456146, - 0.4110167324542999, - 0.4139835238456726, - 0.29578542709350586, - 0.2879210114479065, - 0.281883180141449, - 0.2778366506099701, - 0.2758917808532715, - 0.27610161900520325, - 0.27846044301986694, - 0.28290390968322754, - 0.28931084275245667, - 0.2975064516067505, - 0.3072671592235565, - 0.31832677125930786, - 0.3303835690021515, - 0.3431086838245392, - 0.35615500807762146, - 0.36916667222976685, - 0.38178879022598267, - 0.3936769962310791, - 0.404507040977478, - 0.4139835238456726, - 0.29578542709350586, - 0.28235092759132385, - 0.27089494466781616, - 0.2617299556732178, - 0.25510600209236145, - 0.2512037456035614, - 0.2501296401023865, - 0.2519129514694214, - 0.2565050423145294, - 0.26378071308135986, - 0.2735414206981659, - 0.2855209708213806, - 0.29939258098602295, - 0.31477785110473633, - 0.3312571346759796, - 0.3483808934688568, - 0.36568209528923035, - 0.3826887309551239, - 0.3989369571208954, - 0.4139835238456726 - ], - "z": [ - -0.02437451481819153, - -0.039275988936424255, - -0.0566120445728302, - -0.0759098157286644, - -0.0966428816318512, - -0.11824570596218109, - -0.14012902975082397, - -0.1616959422826767, - -0.18235814571380615, - -0.20155200362205505, - -0.21875399351119995, - -0.23349487781524658, - -0.24537254869937897, - -0.25406304001808167, - -0.25932925939559937, - -0.26102760434150696, - -0.2591117322444916, - -0.25363388657569885, - -0.2447434961795807, - -0.23268309235572815, - -0.02437451481819153, - -0.04028604179620743, - -0.05860458314418793, - -0.07883049547672272, - -0.1004120409488678, - -0.12276052683591843, - -0.1452663689851761, - -0.16731564700603485, - -0.18830692768096924, - -0.20766761898994446, - -0.22486960887908936, - -0.23944365978240967, - -0.2509922385215759, - -0.2592003643512726, - -0.2638440728187561, - -0.26479676365852356, - -0.2620323896408081, - -0.2556264400482178, - -0.24575355648994446, - -0.23268309235572815, - -0.02437451481819153, - -0.039725758135318756, - -0.057499319314956665, - -0.07721038162708282, - -0.09832126647233963, - -0.12025613337755203, - -0.14241667091846466, - -0.1641983687877655, - -0.18500711023807526, - -0.2042752504348755, - -0.22147724032402039, - -0.23614384233951569, - -0.24787497520446777, - -0.25635066628456116, - -0.2613396942615509, - -0.2627059817314148, - -0.2604122757911682, - -0.2545211613178253, - -0.2451932728290558, - -0.23268309235572815, - -0.02437451481819153, - -0.03765587508678436, - -0.05341600626707077, - -0.07122503221035004, - -0.09059713780879974, - -0.11100392043590546, - -0.131888747215271, - -0.15268191695213318, - -0.17281626164913177, - -0.19174253940582275, - -0.20894452929496765, - -0.223952978849411, - -0.23635852336883545, - -0.2458227425813675, - -0.25208747386932373, - -0.2549818754196167, - -0.2544269561767578, - -0.25043785572052, - -0.2431233823299408, - -0.23268309235572815, - -0.024374522268772125, - -0.03430068492889404, - -0.046797141432762146, - -0.06152304261922836, - -0.07807666808366776, - -0.09600649774074554, - -0.11482346057891846, - -0.13401426374912262, - -0.15305544435977936, - -0.17142759263515472, - -0.18862956762313843, - -0.2041921615600586, - -0.2176908552646637, - -0.22875744104385376, - -0.23709005117416382, - -0.2424613982439041, - -0.24472495913505554, - -0.2438189834356308, - -0.23976819217205048, - -0.23268309235572815, - -0.024374522268772125, - -0.03002377599477768, - -0.03835998475551605, - -0.04915577918291092, - -0.062116652727127075, - -0.07688907533884048, - -0.09307010471820831, - -0.110218346118927, - -0.12786604464054108, - -0.14553183317184448, - -0.16273382306098938, - -0.1790027767419815, - -0.19389495253562927, - -0.2070041000843048, - -0.21797263622283936, - -0.22650137543678284, - -0.2323576956987381, - -0.2353818267583847, - -0.23549127578735352, - -0.23268309235572815, - -0.024374522268772125, - -0.025288619101047516, - -0.029018841683864594, - -0.03546343743801117, - -0.044446609914302826, - -0.05572332441806793, - -0.06898598372936249, - -0.08387282490730286, - -0.09997774660587311, - -0.1168614849448204, - -0.1340634673833847, - -0.15111447870731354, - -0.16754941642284393, - -0.18291997909545898, - -0.1968068778514862, - -0.20883134007453918, - -0.21866536140441895, - -0.22604069113731384, - -0.23075613379478455, - -0.23268309235572815, - -0.024374522268772125, - -0.020608343183994293, - -0.01978594809770584, - -0.0219297856092453, - -0.026981353759765625, - -0.0348028764128685, - -0.045180998742580414, - -0.057832635939121246, - -0.07241266965866089, - -0.08852341771125793, - -0.10572540014982224, - -0.12354940176010132, - -0.14150923490524292, - -0.1591149866580963, - -0.17588642239570618, - -0.1913660764694214, - -0.20513170957565308, - -0.2168077826499939, - -0.22607585787773132, - -0.23268309235572815, - -0.024374522268772125, - -0.01649012416601181, - -0.011661849915981293, - -0.010021410882472992, - -0.011613525450229645, - -0.01639479398727417, - -0.02423478662967682, - -0.03491964191198349, - -0.048157915472984314, - -0.06358850002288818, - -0.08079048991203308, - -0.09929464757442474, - -0.11859624087810516, - -0.13816876709461212, - -0.15747834742069244, - -0.175998255610466, - -0.19322332739830017, - -0.20868369936943054, - -0.22195762395858765, - -0.23268309235572815, - -0.024374522268772125, - -0.013380244374275208, - -0.005526907742023468, - -0.0010287612676620483, - -0.000008463859558105469, - -0.0024938732385635376, - -0.008417189121246338, - -0.01761683076620102, - -0.029841862618923187, - -0.04475882649421692, - -0.061960816383361816, - -0.08097859472036362, - -0.10129342973232269, - -0.12235117703676224, - -0.1435774266719818, - -0.16439318656921387, - -0.18423067033290863, - -0.20254874229431152, - -0.21884775161743164, - -0.23268309235572815, - -0.024374522268772125, - -0.01161569356918335, - -0.002045944333076477, - 0.004073664546012878, - 0.006576240062713623, - 0.005393505096435547, - 0.0005577206611633301, - -0.007799223065376282, - -0.01944933831691742, - -0.034074872732162476, - -0.05127686262130737, - -0.07058607041835785, - -0.09147581458091736, - -0.11337627470493317, - -0.13569004833698273, - -0.15780848264694214, - -0.1791282445192337, - -0.19906780123710632, - -0.21708320081233978, - -0.23268309235572815, - -0.024374522268772125, - -0.011387698352336884, - -0.0015961825847625732, - 0.00473293662071228, - 0.007427036762237549, - 0.006412610411643982, - 0.0017173439264297485, - -0.0065307095646858215, - -0.01810654252767563, - -0.03269442170858383, - -0.04989641159772873, - -0.06924327462911606, - -0.0902073085308075, - -0.11221664398908615, - -0.1346709281206131, - -0.1569576859474182, - -0.1784689724445343, - -0.19861802458763123, - -0.2168552130460739, - -0.23268309235572815, - -0.024374522268772125, - -0.012720964848995209, - -0.0042263418436050415, - 0.0008776187896728516, - 0.0024517327547073364, - 0.00045302510261535645, - -0.005063965916633606, - -0.013948746025562286, - -0.02595897763967514, - -0.04076705127954483, - -0.05796904116868973, - -0.07709570974111557, - -0.09762534499168396, - -0.11899794638156891, - -0.14063051342964172, - -0.16193298995494843, - -0.18232429027557373, - -0.2012481838464737, - -0.21818847954273224, - -0.23268309235572815, - -0.024374522268772125, - -0.015471018850803375, - -0.009651422500610352, - -0.007074512541294098, - -0.007810540497303009, - -0.011839449405670166, - -0.01905135065317154, - -0.02924949675798416, - -0.042155735194683075, - -0.05741800367832184, - -0.07461999356746674, - -0.0932924672961235, - -0.11292609572410583, - -0.13298533856868744, - -0.15292300283908844, - -0.17219525575637817, - -0.19027641415596008, - -0.206673264503479, - -0.2209385335445404, - -0.23268309235572815, - -0.024374522268772125, - -0.019339829683303833, - -0.017283521592617035, - -0.018261700868606567, - -0.022247672080993652, - -0.029132716357707977, - -0.03872903436422348, - -0.05077484995126724, - -0.06494159251451492, - -0.08084283024072647, - -0.09804481267929077, - -0.11607831716537476, - -0.13445144891738892, - -0.15266302227973938, - -0.17021626234054565, - -0.18663239479064941, - -0.20146360993385315, - -0.21430537104606628, - -0.22480733692646027, - -0.23268309235572815, - -0.024374522268772125, - -0.023908160626888275, - -0.026295572519302368, - -0.03147166222333908, - -0.039295196533203125, - -0.0495527908205986, - -0.06196465343236923, - -0.0761922150850296, - -0.09184737503528595, - -0.10850310325622559, - -0.12570509314537048, - -0.14298410713672638, - -0.15986880660057068, - -0.17589864134788513, - -0.19063633680343628, - -0.2036799192428589, - -0.21467357873916626, - -0.22331741452217102, - -0.2293756604194641, - -0.23268309235572815, - -0.024374522268772125, - -0.02868098020553589, - -0.03571102023124695, - -0.04527289420366287, - -0.05710577219724655, - -0.07088688015937805, - -0.08624030649662018, - -0.10274726897478104, - -0.11995746940374374, - -0.13740147650241852, - -0.15460345149040222, - -0.17109419405460358, - -0.1864238679409027, - -0.20017430186271667, - -0.21197043359279633, - -0.2214905023574829, - -0.22847481071949005, - -0.2327328622341156, - -0.23414848744869232, - -0.23268309235572815, - -0.024374522268772125, - -0.03314105421304703, - -0.044509515166282654, - -0.05816981941461563, - -0.07374931871891022, - -0.09082305431365967, - -0.10892532020807266, - -0.12756231427192688, - -0.1462256759405136, - -0.16440629959106445, - -0.18160828948020935, - -0.19736239314079285, - -0.21123892068862915, - -0.22285930812358856, - -0.23190662264823914, - -0.23813405632972717, - -0.24137172102928162, - -0.2415313571691513, - -0.23860856890678406, - -0.23268309235572815, - -0.02437451481819153, - -0.03680507838726044, - -0.051737621426582336, - -0.0687648355960846, - -0.08742225170135498, - -0.10720094293355942, - -0.12756140530109406, - -0.1479482650756836, - -0.16780540347099304, - -0.18659117817878723, - -0.20379316806793213, - -0.21894213557243347, - -0.23162487149238586, - -0.24149540066719055, - -0.2482845038175583, - -0.25180697441101074, - -0.2519667446613312, - -0.248759463429451, - -0.24227258563041687, - -0.23268309235572815, - -0.02437451481819153, - -0.03927599638700485, - -0.0566120445728302, - -0.075909823179245, - -0.0966428816318512, - -0.11824571341276169, - -0.14012904465198517, - -0.1616959422826767, - -0.18235814571380615, - -0.20155200362205505, - -0.21875399351119995, - -0.23349487781524658, - -0.24537254869937897, - -0.25406304001808167, - -0.25932925939559937, - -0.26102763414382935, - -0.2591117322444916, - -0.25363388657569885, - -0.2447434961795807, - -0.23268309235572815 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.6454167366027832, - -0.6684134006500244, - -0.6907827854156494, - -0.7119147181510925, - -0.731232762336731, - -0.7482099533081055, - -0.762383222579956, - -0.7733659744262695, - -0.78085857629776, - -0.7846566438674927, - -0.7846566438674927, - -0.78085857629776, - -0.7733659744262695, - -0.762383222579956, - -0.7482099533081055, - -0.731232762336731, - -0.7119147181510925, - -0.6907827854156494, - -0.6684134006500244, - -0.6454167366027832, - -0.6454167366027832, - -0.6607077717781067, - -0.675581693649292, - -0.6896328330039978, - -0.7024778127670288, - -0.71376633644104, - -0.7231904864311218, - -0.7304931879043579, - -0.7354751825332642, - -0.7380006313323975, - -0.7380006313323975, - -0.7354751825332642, - -0.7304931879043579, - -0.7231904864311218, - -0.71376633644104, - -0.7024778127670288, - -0.6896328330039978, - -0.675581693649292, - -0.6607077717781067, - -0.6454167366027832, - -0.6454167366027832, - -0.6513450741767883, - -0.6571117639541626, - -0.6625593900680542, - -0.6675394177436829, - -0.6719160079956055, - -0.6755697727203369, - -0.6784010529518127, - -0.680332601070404, - -0.6813116669654846, - -0.6813116669654846, - -0.680332601070404, - -0.6784010529518127, - -0.6755697727203369, - -0.6719160079956055, - -0.6675394177436829, - -0.6625593900680542, - -0.6571117639541626, - -0.6513450741767883, - -0.6454167366027832, - -0.6454167366027832, - -0.6413400173187256, - -0.6373744606971741, - -0.6336283087730408, - -0.6302037239074707, - -0.6271940469741821, - -0.6246815323829651, - -0.622734546661377, - -0.6214063167572021, - -0.6207329630851746, - -0.6207329630851746, - -0.6214063167572021, - -0.622734546661377, - -0.6246815323829651, - -0.6271940469741821, - -0.6302037239074707, - -0.6336283087730408, - -0.6373744606971741, - -0.6413400173187256, - -0.6454167366027832, - -0.6454167366027832, - -0.6317766904830933, - -0.6185086965560913, - -0.6059746742248535, - -0.5945165157318115, - -0.5844468474388123, - -0.5760402083396912, - -0.5695260167121887, - -0.5650818943977356, - -0.5628291368484497, - -0.5628291368484497, - -0.5650818943977356, - -0.5695260167121887, - -0.5760402083396912, - -0.5844468474388123, - -0.5945165157318115, - -0.6059746742248535, - -0.6185086965560913, - -0.6317766904830933, - -0.6454167366027832, - -0.6454167366027832, - -0.6236914992332458, - -0.6025587916374207, - -0.5825952291488647, - -0.5643451809883118, - -0.5483066439628601, - -0.5349169373512268, - -0.524541437625885, - -0.5174630880355835, - -0.5138749480247498, - -0.5138749480247498, - -0.5174630880355835, - -0.524541437625885, - -0.5349169373512268, - -0.5483065843582153, - -0.5643451809883118, - -0.5825952291488647, - -0.6025587916374207, - -0.6236914992332458, - -0.6454167366027832, - -0.6454167366027832, - -0.617960512638092, - -0.5912532806396484, - -0.5660234093666077, - -0.5429592132568359, - -0.5226898193359375, - -0.5057680606842041, - -0.49265557527542114, - -0.48370999097824097, - -0.4791753590106964, - -0.4791753590106964, - -0.48370999097824097, - -0.49265557527542114, - -0.5057680606842041, - -0.5226898193359375, - -0.5429592132568359, - -0.5660234093666077, - -0.5912532806396484, - -0.617960512638092, - -0.6454167366027832, - -0.6454167366027832, - -0.615204930305481, - -0.5858171582221985, - -0.5580551624298096, - -0.532676100730896, - -0.5103723406791687, - -0.4917522668838501, - -0.4773237109184265, - -0.46748030185699463, - -0.46249058842658997, - -0.46249058842658997, - -0.46748030185699463, - -0.4773237109184265, - -0.4917522668838501, - -0.5103723406791687, - -0.532676100730896, - -0.5580551624298096, - -0.5858171582221985, - -0.615204930305481, - -0.6454167366027832, - -0.6454167366027832, - -0.615723192691803, - -0.5868396162986755, - -0.559553861618042, - -0.5346101522445679, - -0.5126890540122986, - -0.4943884015083313, - -0.4802073836326599, - -0.4705328345298767, - -0.4656286835670471, - -0.4656286835670471, - -0.4705328345298767, - -0.4802073836326599, - -0.4943883717060089, - -0.5126890540122986, - -0.5346101522445679, - -0.559553861618042, - -0.5868396162986755, - -0.615723192691803, - -0.6454167366027832, - -0.6454167366027832, - -0.6194592118263245, - -0.5942097902297974, - -0.570357084274292, - -0.5485518574714661, - -0.5293888449668884, - -0.5133907794952393, - -0.5009940266609192, - -0.4925367534160614, - -0.48824965953826904, - -0.48824965953826904, - -0.4925367534160614, - -0.5009940266609192, - -0.5133907794952393, - -0.5293888449668884, - -0.5485518574714661, - -0.570357084274292, - -0.5942097902297974, - -0.6194592118263245, - -0.6454167366027832, - -0.6454167366027832, - -0.626008152961731, - -0.6071290373802185, - -0.5892942547798157, - -0.572990357875824, - -0.5586621165275574, - -0.5467002391815186, - -0.5374311208724976, - -0.5311075448989868, - -0.5279020667076111, - -0.5279020667076111, - -0.5311075448989868, - -0.5374311208724976, - -0.5467002391815186, - -0.5586620569229126, - -0.572990357875824, - -0.5892942547798157, - -0.6071290373802185, - -0.626008152961731, - -0.6454167366027832, - -0.6454167366027832, - -0.6346603631973267, - -0.6241973638534546, - -0.6143131256103516, - -0.605277419090271, - -0.5973365306854248, - -0.5907071828842163, - -0.5855701565742493, - -0.5820655822753906, - -0.5802890658378601, - -0.5802890658378601, - -0.5820655822753906, - -0.5855701565742493, - -0.5907071828842163, - -0.5973365306854248, - -0.605277419090271, - -0.6143131256103516, - -0.6241973638534546, - -0.6346603631973267, - -0.6454167366027832, - -0.6454167366027832, - -0.6444781422615051, - -0.6435651183128357, - -0.642702579498291, - -0.6419141292572021, - -0.6412211656570435, - -0.6406427025794983, - -0.6401944160461426, - -0.6398886442184448, - -0.639733612537384, - -0.639733612537384, - -0.6398886442184448, - -0.6401944160461426, - -0.6406427025794983, - -0.6412211656570435, - -0.6419141292572021, - -0.642702579498291, - -0.6435651183128357, - -0.6444781422615051, - -0.6454167366027832, - -0.6454167366027832, - -0.6543976068496704, - -0.6631335616111755, - -0.671386182308197, - -0.6789304614067078, - -0.6855605244636536, - -0.6910956501960754, - -0.6953847408294678, - -0.6983107924461365, - -0.6997940540313721, - -0.6997940540313721, - -0.6983107924461365, - -0.6953847408294678, - -0.6910956501960754, - -0.6855605840682983, - -0.6789304614067078, - -0.671386182308197, - -0.6631335616111755, - -0.6543976068496704, - -0.6454167366027832, - -0.6454167366027832, - -0.6633439064025879, - -0.6807820796966553, - -0.697255551815033, - -0.712315022945404, - -0.7255496382713318, - -0.7365984916687012, - -0.7451601028442383, - -0.7510010004043579, - -0.7539618015289307, - -0.7539618015289307, - -0.7510010004043579, - -0.7451601028442383, - -0.7365984916687012, - -0.7255496382713318, - -0.712315022945404, - -0.697255551815033, - -0.6807820796966553, - -0.6633439064025879, - -0.6454167366027832, - -0.6454167366027832, - -0.6703475117683411, - -0.6945981979370117, - -0.7175073623657227, - -0.7384501099586487, - -0.7568551301956177, - -0.7722203731536865, - -0.7841267585754395, - -0.7922495603561401, - -0.7963670492172241, - -0.7963670492172241, - -0.7922495603561401, - -0.7841267585754395, - -0.7722203731536865, - -0.7568551301956177, - -0.7384501099586487, - -0.7175073623657227, - -0.6945981979370117, - -0.6703475117683411, - -0.6454167366027832, - -0.6454167366027832, - -0.6746494770050049, - -0.7030847668647766, - -0.7299470901489258, - -0.754503607749939, - -0.7760845422744751, - -0.7941011786460876, - -0.8080620765686035, - -0.8175864815711975, - -0.8224145174026489, - -0.8224145174026489, - -0.8175864815711975, - -0.8080620765686035, - -0.7941011786460876, - -0.7760845422744751, - -0.754503607749939, - -0.7299470901489258, - -0.7030847668647766, - -0.6746494770050049, - -0.6454167366027832, - -0.6454167366027832, - -0.6757835745811462, - -0.7053221464157104, - -0.7332265973091125, - -0.7587358355522156, - -0.7811540365219116, - -0.7998696565628052, - -0.8143722414970398, - -0.8242661952972412, - -0.8292815089225769, - -0.8292815089225769, - -0.8242661952972412, - -0.8143722414970398, - -0.7998696565628052, - -0.7811540365219116, - -0.7587358951568604, - -0.7332265973091125, - -0.7053221464157104, - -0.6757835745811462, - -0.6454167366027832, - -0.6454167366027832, - -0.6736270189285278, - -0.7010678052902222, - -0.7269905805587769, - -0.7506881952285767, - -0.7715142965316772, - -0.7889007925987244, - -0.8023734092712402, - -0.8115646839141846, - -0.8162238597869873, - -0.8162238597869873, - -0.8115646839141846, - -0.8023734092712402, - -0.7889007925987244, - -0.7715142965316772, - -0.7506881952285767, - -0.7269905805587769, - -0.7010678052902222, - -0.6736270189285278, - -0.6454167366027832, - -0.6454167366027832, - -0.6684134006500244, - -0.6907827854156494, - -0.7119147181510925, - -0.731232762336731, - -0.7482099533081055, - -0.762383222579956, - -0.7733659148216248, - -0.7808585166931152, - -0.7846566438674927, - -0.7846566438674927, - -0.7808585166931152, - -0.7733659148216248, - -0.762383222579956, - -0.7482099533081055, - -0.731232762336731, - -0.7119147181510925, - -0.6907827854156494, - -0.6684134006500244, - -0.6454167366027832 - ], - "y": [ - 0.6323751211166382, - 0.6452291011810303, - 0.6542856693267822, - 0.6592978835105896, - 0.6601289510726929, - 0.6567562222480774, - 0.6492716670036316, - 0.637879490852356, - 0.6228904128074646, - 0.6047133207321167, - 0.5838440656661987, - 0.5608518123626709, - 0.5363637804985046, - 0.511047899723053, - 0.48559483885765076, - 0.46069878339767456, - 0.4370388686656952, - 0.4152604341506958, - 0.3959576487541199, - 0.37965691089630127, - 0.6323751211166382, - 0.6498134732246399, - 0.6633294820785522, - 0.6725543141365051, - 0.6772364377975464, - 0.6772481203079224, - 0.6725890636444092, - 0.663386344909668, - 0.6498908996582031, - 0.632470965385437, - 0.6116016507148743, - 0.5878522396087646, - 0.5618705749511719, - 0.5343652963638306, - 0.5060867667198181, - 0.47780629992485046, - 0.4502952992916107, - 0.42430421710014343, - 0.4005420506000519, - 0.37965691089630127, - 0.6323751211166382, - 0.652321457862854, - 0.6682769060134888, - 0.6798063516616821, - 0.6865952610969543, - 0.6884584426879883, - 0.6853450536727905, - 0.677340030670166, - 0.664661705493927, - 0.6476559638977051, - 0.6267867088317871, - 0.6026231050491333, - 0.5758242607116699, - 0.5471212863922119, - 0.5172970294952393, - 0.48716509342193604, - 0.4575473368167877, - 0.42925167083740234, - 0.4030499756336212, - 0.37965691089630127, - 0.6323751211166382, - 0.6524811387062073, - 0.6685919761657715, - 0.6802681088447571, - 0.6871911883354187, - 0.6891722083091736, - 0.6861572265625, - 0.678228497505188, - 0.6656022071838379, - 0.6486228704452515, - 0.6277535557746887, - 0.6035636067390442, - 0.5767127871513367, - 0.5479335188865662, - 0.5180108547210693, - 0.4877610206604004, - 0.45800912380218506, - 0.42956671118736267, - 0.4032096862792969, - 0.37965691089630127, - 0.6323751211166382, - 0.6502752304077148, - 0.6642404198646545, - 0.6738895773887634, - 0.6789596080780029, - 0.6793122291564941, - 0.6749377250671387, - 0.6659554839134216, - 0.6526105403900146, - 0.6352668404579163, - 0.6143975257873535, - 0.5905718803405762, - 0.5644397735595703, - 0.5367139577865601, - 0.5081508755683899, - 0.479529470205307, - 0.451630562543869, - 0.4252151548862457, - 0.40100380778312683, - 0.37965691089630127, - 0.6323751211166382, - 0.6459428668022156, - 0.6556938290596008, - 0.6613619327545166, - 0.6627926230430603, - 0.659946858882904, - 0.6529022455215454, - 0.6418509483337402, - 0.6270944476127625, - 0.6090352535247803, - 0.5881659388542175, - 0.5650558471679688, - 0.5403352379798889, - 0.5146784782409668, - 0.4887854754924774, - 0.463362455368042, - 0.4391029179096222, - 0.4166685938835144, - 0.39667144417762756, - 0.37965691089630127, - 0.6323751211166382, - 0.6399534940719604, - 0.6438784003257751, - 0.6440427303314209, - 0.6404421329498291, - 0.6331747174263, - 0.6224387288093567, - 0.6085270047187805, - 0.5918191075325012, - 0.5727707147598267, - 0.5519014000892639, - 0.5297804474830627, - 0.5070112943649292, - 0.4842149615287781, - 0.4620133340358734, - 0.4410119652748108, - 0.4217837452888489, - 0.4048531651496887, - 0.39068204164505005, - 0.37965691089630127, - 0.6323751211166382, - 0.6329560875892639, - 0.6300745010375977, - 0.6238088607788086, - 0.6143301725387573, - 0.6018969416618347, - 0.5868483185768127, - 0.5695948600769043, - 0.5506070852279663, - 0.5304029583930969, - 0.509533703327179, - 0.48856842517852783, - 0.4680790901184082, - 0.4486245810985565, - 0.4307355582714081, - 0.414900004863739, - 0.4015498161315918, - 0.39104920625686646, - 0.3836846351623535, - 0.37965691089630127, - 0.6323751211166382, - 0.6257089972496033, - 0.6157779693603516, - 0.6028528213500977, - 0.5872863531112671, - 0.5695029497146606, - 0.5499878525733948, - 0.529273271560669, - 0.5079243183135986, - 0.486523300409317, - 0.46565401554107666, - 0.44588565826416016, - 0.4277575612068176, - 0.41176408529281616, - 0.3983415961265564, - 0.3878561854362488, - 0.38059383630752563, - 0.37675267457962036, - 0.37643754482269287, - 0.37965691089630127, - 0.6323751211166382, - 0.6189975142478943, - 0.6025380492210388, - 0.5834457278251648, - 0.5622413158416748, - 0.5395032167434692, - 0.5158516764640808, - 0.49193185567855835, - 0.46839621663093567, - 0.4458867311477661, - 0.42501741647720337, - 0.4063575565814972, - 0.39041611552238464, - 0.3776279091835022, - 0.3683418333530426, - 0.3628111481666565, - 0.361186683177948, - 0.3635128140449524, - 0.3697260618209839, - 0.37965691089630127, - 0.6323751211166382, - 0.6135489344596863, - 0.5917895436286926, - 0.5676904320716858, - 0.5419090390205383, - 0.5151485800743103, - 0.48813900351524353, - 0.46161705255508423, - 0.4363062083721161, - 0.41289687156677246, - 0.3920275568962097, - 0.374267578125, - 0.3601013422012329, - 0.3499152660369873, - 0.34398722648620605, - 0.34247887134552, - 0.34543144702911377, - 0.3527643084526062, - 0.3642774820327759, - 0.37965691089630127, - 0.6323751211166382, - 0.6099537014961243, - 0.5846971869468689, - 0.5572944283485413, - 0.5284929275512695, - 0.49907833337783813, - 0.46985292434692383, - 0.4416140019893646, - 0.4151317775249481, - 0.39112865924835205, - 0.3702593445777893, - 0.35309314727783203, - 0.3400982618331909, - 0.3316291570663452, - 0.3279169201850891, - 0.3290627598762512, - 0.33503541350364685, - 0.34567195177078247, - 0.36068227887153625, - 0.37965691089630127, - 0.6323751211166382, - 0.608601450920105, - 0.5820295810699463, - 0.5533841848373413, - 0.5234467387199402, - 0.49303382635116577, - 0.46297505497932434, - 0.4340902864933014, - 0.4071674942970276, - 0.38294100761413574, - 0.3620717227458954, - 0.3451288342475891, - 0.3325745463371277, - 0.32475125789642334, - 0.32187244296073914, - 0.3240165710449219, - 0.3311251699924469, - 0.3430043160915375, - 0.3593299984931946, - 0.37965691089630127, - 0.6323751211166382, - 0.6096386909484863, - 0.5840757489204407, - 0.556383490562439, - 0.5273173451423645, - 0.49767017364501953, - 0.46825066208839417, - 0.4398612678050995, - 0.41327640414237976, - 0.3892212510108948, - 0.36835193634033203, - 0.35123777389526367, - 0.3383455276489258, - 0.33002689480781555, - 0.3265087902545929, - 0.3278871774673462, - 0.33412444591522217, - 0.34505048394203186, - 0.3603672385215759, - 0.37965691089630127, - 0.6323751211166382, - 0.6129530072212219, - 0.5906139612197876, - 0.5659672617912292, - 0.5396853089332581, - 0.5124849081039429, - 0.48510804772377014, - 0.45830151438713074, - 0.43279650807380676, - 0.4092887341976166, - 0.3884194493293762, - 0.3707578778266907, - 0.35678577423095703, - 0.3468843102455139, - 0.34132352471351624, - 0.34025514125823975, - 0.3437082767486572, - 0.35158872604370117, - 0.3636815547943115, - 0.37965691089630127, - 0.6323751211166382, - 0.61818528175354, - 0.6009357571601868, - 0.5810970067977905, - 0.5592103004455566, - 0.5358726382255554, - 0.5117204785346985, - 0.4874127507209778, - 0.46361249685287476, - 0.4409688711166382, - 0.42009955644607544, - 0.4015738368034363, - 0.3858970105648041, - 0.37349674105644226, - 0.3647112250328064, - 0.35978013277053833, - 0.3588380217552185, - 0.36191049218177795, - 0.36891382932662964, - 0.37965691089630127, - 0.6323751211166382, - 0.6247684359550476, - 0.6139225363731384, - 0.6001332402229309, - 0.583776593208313, - 0.5652989149093628, - 0.5452041625976562, - 0.5240404009819031, - 0.5023850202560425, - 0.4808286726474762, - 0.45995938777923584, - 0.440346360206604, - 0.42252469062805176, - 0.40698039531707764, - 0.39413756132125854, - 0.38434645533561707, - 0.3778741955757141, - 0.374897301197052, - 0.3754970133304596, - 0.37965691089630127, - 0.6323751211166382, - 0.6319891810417175, - 0.6281670928001404, - 0.6210129261016846, - 0.6107220649719238, - 0.5975750088691711, - 0.5819305181503296, - 0.5642152428627014, - 0.5449124574661255, - 0.5245486497879028, - 0.5036793947219849, - 0.4828738272190094, - 0.4626995027065277, - 0.443706750869751, - 0.4264136552810669, - 0.4112918972969055, - 0.39875394105911255, - 0.38914182782173157, - 0.3827177584171295, - 0.37965691089630127, - 0.6323751211166382, - 0.6390650272369385, - 0.64212566614151, - 0.6414735913276672, - 0.637126624584198, - 0.6292032599449158, - 0.6179196834564209, - 0.6035836935043335, - 0.5865862965583801, - 0.5673911571502686, - 0.5465218424797058, - 0.5245476365089417, - 0.5020679831504822, - 0.4796959459781647, - 0.4580419063568115, - 0.4376964569091797, - 0.4192145764827728, - 0.4031004309654236, - 0.3897935450077057, - 0.37965691089630127, - 0.6323751211166382, - 0.6452291011810303, - 0.6542856693267822, - 0.6592978835105896, - 0.6601289510726929, - 0.6567562222480774, - 0.6492716670036316, - 0.637879490852356, - 0.6228904724121094, - 0.6047133207321167, - 0.5838440656661987, - 0.5608518123626709, - 0.5363637804985046, - 0.5110479593276978, - 0.48559486865997314, - 0.46069878339767456, - 0.4370388686656952, - 0.4152604639530182, - 0.3959576487541199, - 0.37965691089630127 - ], - "z": [ - -0.11893750727176666, - -0.1033172458410263, - -0.0844821184873581, - -0.06294586509466171, - -0.039295971393585205, - -0.014177549630403519, - 0.011724255979061127, - 0.03770291060209274, - 0.06304977834224701, - 0.08707345277070999, - 0.10911864787340164, - 0.12858402729034424, - 0.1449386030435562, - 0.15773630142211914, - 0.16662800312042236, - 0.171371191740036, - 0.17183643579483032, - 0.1680111289024353, - 0.1599995344877243, - 0.14802022278308868, - -0.11893750727176666, - -0.09897737205028534, - -0.07592074573040009, - -0.050396524369716644, - -0.023100975900888443, - 0.0052213361486792564, - 0.03379789739847183, - 0.06184917688369751, - 0.08861003816127777, - 0.11335048079490662, - 0.13539567589759827, - 0.154144287109375, - 0.16908487677574158, - 0.17980994284152985, - 0.1860269010066986, - 0.18756617605686188, - 0.1843857765197754, - 0.1765725016593933, - 0.16433940827846527, - 0.14802022278308868, - -0.11893750727176666, - -0.09660320729017258, - -0.07123716920614243, - -0.043531302362680435, - -0.014241378754377365, - 0.015833653509616852, - 0.04587344825267792, - 0.07505858689546585, - 0.10259297490119934, - 0.1277255415916443, - 0.14977072179317474, - 0.16812722384929657, - 0.18229427933692932, - 0.19188550114631653, - 0.19663920998573303, - 0.19642578065395355, - 0.1912510097026825, - 0.18125607073307037, - 0.16671356558799744, - 0.14802022278308868, - -0.11893750727176666, - -0.09645203500986099, - -0.07093894481658936, - -0.04309416562318802, - -0.013677243143320084, - 0.016509391367435455, - 0.04664234817028046, - 0.07589969038963318, - 0.10348333418369293, - 0.12864086031913757, - 0.15068604052066803, - 0.16901758313179016, - 0.18313539028167725, - 0.19265440106391907, - 0.19731494784355164, - 0.19698990881443024, - 0.19168813526630402, - 0.18155430257320404, - 0.16686473786830902, - 0.14802022278308868, - -0.11893750727176666, - -0.09854023158550262, - -0.07505839318037033, - -0.04913247376680374, - -0.02146972343325615, - 0.007175303064286709, - 0.03602126985788345, - 0.06428132951259613, - 0.09118461608886719, - 0.11599725484848022, - 0.13804244995117188, - 0.15671886503696442, - 0.1715170294046402, - 0.18203333020210266, - 0.18798086047172546, - 0.18919743597507477, - 0.1856498271226883, - 0.17743484675884247, - 0.16477654874324799, - 0.14802022278308868, - -0.11893750727176666, - -0.1026415154337883, - -0.08314909040927887, - -0.06099189817905426, - -0.036774370819330215, - -0.011157095432281494, - 0.015161179006099701, - 0.041462548077106476, - 0.06702957302331924, - 0.09116485714912415, - 0.1132100522518158, - 0.13256382942199707, - 0.14869824051856995, - 0.16117322444915771, - 0.16964846849441528, - 0.1738927811384201, - 0.17379041016101837, - 0.16934415698051453, - 0.1606752574443817, - 0.14802022278308868, - -0.11893750727176666, - -0.10831145197153091, - -0.09433428943157196, - -0.0773872658610344, - -0.05793268233537674, - -0.0365012064576149, - -0.013677414506673813, - 0.009916115552186966, - 0.033635806292295456, - 0.05683465301990509, - 0.07887984812259674, - 0.09917005151510239, - 0.11715181171894073, - 0.1323346197605133, - 0.14430435001850128, - 0.15273447334766388, - 0.15739503502845764, - 0.15815895795822144, - 0.1550053209066391, - 0.14802022278308868, - -0.11893750727176666, - -0.11493560671806335, - -0.10740190744400024, - -0.09654189646244049, - -0.08265183866024017, - -0.06611061096191406, - -0.04736940562725067, - -0.026939429342746735, - -0.005377965047955513, - 0.016726840287446976, - 0.038772035390138626, - 0.06015628203749657, - 0.08029627054929733, - 0.09864263981580734, - 0.11469493806362152, - 0.12801530957221985, - 0.13824041187763214, - 0.14509133994579315, - 0.14838117361068726, - 0.14802022278308868, - -0.11893750727176666, - -0.1217961460351944, - -0.12093585729598999, - -0.11638008058071136, - -0.1082531288266182, - -0.09677667170763016, - -0.08226373791694641, - -0.0651102140545845, - -0.045784007757902145, - -0.024812273681163788, - -0.0027670804411172867, - 0.019750239327549934, - 0.042125485837459564, - 0.063748300075531, - 0.08402887731790543, - 0.10241402685642242, - 0.11840222030878067, - 0.1315573751926422, - 0.1415206342935562, - 0.14802022278308868, - -0.11893750727176666, - -0.1281496286392212, - -0.13346953690052032, - -0.1347520500421524, - -0.13196225464344025, - -0.12517623603343964, - -0.11457906663417816, - -0.10045984387397766, - -0.08320368081331253, - -0.06328128278255463, - -0.041236087679862976, - -0.0176694318652153, - 0.006775854155421257, - 0.03143296390771866, - 0.05562930926680565, - 0.07870488613843918, - 0.10003025084733963, - 0.11902371048927307, - 0.13516715168952942, - 0.14802022278308868, - -0.11893750727176666, - -0.1333075761795044, - -0.14364470541477203, - -0.1496669203042984, - -0.1512099802494049, - -0.14823177456855774, - -0.14081354439258575, - -0.1291576325893402, - -0.11358198523521423, - -0.0945114716887474, - -0.07246627658605576, - -0.048047736287117004, - -0.021921932697296143, - 0.005198489874601364, - 0.03257376700639725, - 0.059457167983055115, - 0.08511538058519363, - 0.10884853452444077, - 0.13000920414924622, - 0.14802022278308868, - -0.11893750727176666, - -0.1367110013961792, - -0.15035875141620636, - -0.15950842201709747, - -0.16391049325466156, - -0.1634448617696762, - -0.15812422335147858, - -0.14809373021125793, - -0.13362696766853333, - -0.11511856317520142, - -0.09307336062192917, - -0.0680927261710167, - -0.04085803031921387, - -0.012112196534872055, - 0.01736067235469818, - 0.04675665870308876, - 0.07527388632297516, - 0.10213448852300644, - 0.1266057789325714, - 0.14802022278308868, - -0.11893750727176666, - -0.13799113035202026, - -0.1528840959072113, - -0.16321009397506714, - -0.16868752241134644, - -0.1691669374704361, - -0.16463525593280792, - -0.15521612763404846, - -0.14116644859313965, - -0.12286946177482605, - -0.1008242592215538, - -0.07563219964504242, - -0.047980427742004395, - -0.0186232291162014, - 0.01163860410451889, - 0.04197963699698448, - 0.0715722143650055, - 0.09960915148258209, - 0.12532564997673035, - 0.14802022278308868, - -0.11893750727176666, - -0.13700923323631287, - -0.15094706416130066, - -0.16037076711654663, - -0.16502335667610168, - -0.16477788984775543, - -0.15964104235172272, - -0.14975297451019287, - -0.13538338243961334, - -0.1169242262840271, - -0.09487903118133545, - -0.06984913349151611, - -0.0425172820687294, - -0.013629015535116196, - 0.016027644276618958, - 0.04564378783106804, - 0.0744115337729454, - 0.10154618322849274, - 0.12630754709243774, - 0.14802022278308868, - -0.11893750727176666, - -0.13387168943881989, - -0.14475758373737335, - -0.1512981802225113, - -0.15331512689590454, - -0.15075337886810303, - -0.1436828225851059, - -0.1322963386774063, - -0.11690448224544525, - -0.09792713820934296, - -0.0758819431066513, - -0.05137024074792862, - -0.025060638785362244, - 0.0023292116820812225, - 0.030052147805690765, - 0.05735202506184578, - 0.08348412811756134, - 0.10773566365242004, - 0.12944507598876953, - 0.14802022278308868, - -0.11893750727176666, - -0.12891854345798492, - -0.13498637080192566, - -0.1369754523038864, - -0.13483156263828278, - -0.1286131888628006, - -0.11848992109298706, - -0.10473789274692535, - -0.08773224800825119, - -0.06793684512376785, - -0.0458916500210762, - -0.02219799906015396, - 0.002497805282473564, - 0.027522124350070953, - 0.052192360162734985, - 0.07583558559417725, - 0.09780684858560562, - 0.11750686913728714, - 0.13439823687076569, - 0.14802022278308868, - -0.11893750727176666, - -0.1226864904165268, - -0.1226922869682312, - -0.11895465850830078, - -0.11157563328742981, - -0.10075647383928299, - -0.08679228276014328, - -0.07006397098302841, - -0.051027849316596985, - -0.030203163623809814, - -0.008157970383763313, - 0.014506394043564796, - 0.037171728909015656, - 0.05921975523233414, - 0.080049067735672, - 0.09909152239561081, - 0.11582764983177185, - 0.1298009753227234, - 0.14063027501106262, - 0.14802022278308868, - -0.11893750727176666, - -0.11585091054439545, - -0.10920757055282593, - -0.0991886556148529, - -0.08606749773025513, - -0.07020200043916702, - -0.05202491581439972, - -0.0320320725440979, - -0.01076882891356945, - 0.011184798553586006, - 0.03322999179363251, - 0.05476541817188263, - 0.07520362734794617, - 0.0939871296286583, - 0.11060354858636856, - 0.12459965795278549, - 0.13559365272521973, - 0.14328567683696747, - 0.14746585488319397, - 0.14802022278308868, - -0.11893750727176666, - -0.10915254056453705, - -0.0959935262799263, - -0.07981938868761063, - -0.06107135862112045, - -0.04026080295443535, - -0.017955396324396133, - 0.005236451514065266, - 0.028682105243206024, - 0.05174203962087631, - 0.07378723472356796, - 0.09421635419130325, - 0.11247214674949646, - 0.12805664539337158, - 0.14054474234580994, - 0.14959579706192017, - 0.1549629122018814, - 0.1564997136592865, - 0.15416423976421356, - 0.14802022278308868, - -0.11893750727176666, - -0.1033172458410263, - -0.0844821110367775, - -0.06294585764408112, - -0.03929596394300461, - -0.014177538454532623, - 0.01172427088022232, - 0.03770292550325394, - 0.0630498006939888, - 0.08707347512245178, - 0.10911867022514343, - 0.12858405709266663, - 0.1449386179447174, - 0.15773631632328033, - 0.16662801802158356, - 0.171371191740036, - 0.17183645069599152, - 0.1680111289024353, - 0.1599995344877243, - 0.14802022278308868 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.964669942855835, - -0.9694878458976746, - -0.9720765948295593, - -0.9723657369613647, - -0.9703472256660461, - -0.9660762548446655, - -0.959669291973114, - -0.951301097869873, - -0.9411998987197876, - -0.9296412467956543, - -0.916940450668335, - -0.9034439921379089, - -0.8895199298858643, - -0.8755481243133545, - -0.8619096875190735, - -0.8489766120910645, - -0.8371017575263977, - -0.8266089558601379, - -0.8177844285964966, - -0.8108689188957214, - -0.964669942855835, - -0.9830048084259033, - -0.9987419247627258, - -1.0114519596099854, - -1.0207881927490234, - -1.026496171951294, - -1.0284199714660645, - -1.0265071392059326, - -1.0208100080490112, - -1.0114837884902954, - -0.9987829923629761, - -0.9830541014671326, - -0.9647260308265686, - -0.9442988038063049, - -0.9223295450210571, - -0.8994176387786865, - -0.8761879801750183, - -0.8532742261886597, - -0.8313014507293701, - -0.8108689188957214, - -0.964669942855835, - -0.9944213032722473, - -1.0212634801864624, - -1.0444642305374146, - -1.063390851020813, - -1.0775269269943237, - -1.08648681640625, - -1.0900263786315918, - -1.0880488157272339, - -1.0806081295013428, - -1.0679073333740234, - -1.05029296875, - -1.028245210647583, - -1.0023657083511353, - -0.9733603000640869, - -0.9420201778411865, - -0.9092003107070923, - -0.8757957816123962, - -0.8427179455757141, - -0.8108689188957214, - -0.964669942855835, - -1.0025001764297485, - -1.037200689315796, - -1.067825198173523, - -1.0935382843017578, - -1.1136385202407837, - -1.127577543258667, - -1.1349753141403198, - -1.1356300115585327, - -1.1295236349105835, - -1.1168228387832642, - -1.0978740453720093, - -1.073194146156311, - -1.0434564352035522, - -1.0094718933105469, - -0.9721676707267761, - -0.9325612783432007, - -0.8917330503463745, - -0.8507966995239258, - -0.8108689188957214, - -0.964669942855835, - -1.0063657760620117, - -1.044826626777649, - -1.0790033340454102, - -1.1079636812210083, - -1.1309177875518799, - -1.1472392082214355, - -1.1564831733703613, - -1.1583973169326782, - -1.152929425239563, - -1.1402286291122437, - -1.1206414699554443, - -1.0947020053863525, - -1.0631181001663208, - -1.026751160621643, - -0.9865931272506714, - -0.9437393546104431, - -0.8993589282035828, - -0.8546624183654785, - -0.8108689188957214, - -0.964669942855835, - -1.0055993795394897, - -1.043314814567566, - -1.0767872333526611, - -1.105103850364685, - -1.127492070198059, - -1.143341302871704, - -1.152219295501709, - -1.153883695602417, - -1.1482892036437988, - -1.1355884075164795, - -1.1161277294158936, - -1.0904381275177002, - -1.0592201948165894, - -1.0233254432678223, - -0.9837332367897034, - -0.9415232539176941, - -0.8978471159934998, - -0.8538960218429565, - -0.8108689188957214, - -0.964669942855835, - -1.0002840757369995, - -1.0328290462493896, - -1.0614171028137207, - -1.0852686166763306, - -1.1037328243255615, - -1.1163060665130615, - -1.1226454973220825, - -1.1225781440734863, - -1.1161057949066162, - -1.1034049987792969, - -1.084822177886963, - -1.0608643293380737, - -1.0321849584579468, - -0.9995662569999695, - -0.9638980031013489, - -0.9261531829833984, - -0.8873613476753235, - -0.8485806584358215, - -0.8108689188957214, - -0.964669942855835, - -0.9909957051277161, - -1.0145056247711182, - -1.0345585346221924, - -1.050607442855835, - -1.0622146129608154, - -1.0690633058547974, - -1.0709668397903442, - -1.0678731203079224, - -1.0598666667938232, - -1.047165870666504, - -1.0301172733306885, - -1.0091856718063354, - -0.9849421381950378, - -0.9580480456352234, - -0.929236888885498, - -0.8992946147918701, - -0.8690379858016968, - -0.8392922878265381, - -0.8108689188957214, - -0.964669942855835, - -0.9787408709526062, - -0.9903302788734436, - -0.999122142791748, - -1.0048766136169434, - -1.0074366331100464, - -1.00673246383667, - -1.0027832984924316, - -0.9956968426704407, - -0.9856663942337036, - -0.972965657711029, - -0.957940936088562, - -0.9410021305084229, - -0.9226112365722656, - -0.9032700061798096, - -0.8835059404373169, - -0.863858163356781, - -0.8448626399040222, - -0.8270374536514282, - -0.8108689188957214, - -0.9646700024604797, - -0.9648475646972656, - -0.9629226922988892, - -0.9589478373527527, - -0.9530314207077026, - -0.9453348517417908, - -0.9360679984092712, - -0.9254837036132812, - -0.9138706922531128, - -0.9015456438064575, - -0.8888448476791382, - -0.8761147260665894, - -0.8637025356292725, - -0.8519468307495117, - -0.841168224811554, - -0.831660807132721, - -0.8236838579177856, - -0.8174550533294678, - -0.8131442070007324, - -0.8108689188957214, - -0.9646700024604797, - -0.9508213996887207, - -0.9352529644966125, - -0.9183892607688904, - -0.9006903767585754, - -0.8826389908790588, - -0.8647275567054749, - -0.8474446535110474, - -0.8312617540359497, - -0.8166201710700989, - -0.8039194345474243, - -0.793505847454071, - -0.7856634855270386, - -0.7806063890457153, - -0.778472363948822, - -0.779319703578949, - -0.7831252813339233, - -0.7897852659225464, - -0.7991180419921875, - -0.8108689785003662, - -0.9646700024604797, - -0.9381822943687439, - -0.910319447517395, - -0.8818415403366089, - -0.8535252809524536, - -0.826143205165863, - -0.8004420399665833, - -0.777122974395752, - -0.7568220496177673, - -0.7400929927825928, - -0.7273921966552734, - -0.7190661430358887, - -0.7153418064117432, - -0.716320812702179, - -0.7219765186309814, - -0.7321546673774719, - -0.7465775609016418, - -0.7648518085479736, - -0.7864788770675659, - -0.8108689785003662, - -0.9646700024604797, - -0.9282998442649841, - -0.8908241987228394, - -0.8532651662826538, - -0.8166473507881165, - -0.7819695472717285, - -0.7501776814460754, - -0.7221389412879944, - -0.6986182332038879, - -0.6802570223808289, - -0.6675562858581543, - -0.6608623266220093, - -0.6603577733039856, - -0.6660564541816711, - -0.6778029203414917, - -0.69527667760849, - -0.7180011868476868, - -0.7453565001487732, - -0.7765964865684509, - -0.8108689785003662, - -0.9646700024604797, - -0.9222450256347656, - -0.8788796663284302, - -0.8357568383216858, - -0.7940527200698853, - -0.7549049854278564, - -0.7193814516067505, - -0.6884510517120361, - -0.6629575490951538, - -0.6435964107513428, - -0.6308956146240234, - -0.6252016425132751, - -0.6266698837280273, - -0.6352602243423462, - -0.6507383584976196, - -0.6726821064949036, - -0.7004928588867188, - -0.7334120273590088, - -0.7705416679382324, - -0.8108689785003662, - -0.9646700024604797, - -0.9206739664077759, - -0.8757804036140442, - -0.8312138319015503, - -0.7881900072097778, - -0.7478824257850647, - -0.7113906145095825, - -0.6797099113464355, - -0.6537045240402222, - -0.6340838670730591, - -0.6213830709457397, - -0.6159486174583435, - -0.6179287433624268, - -0.6272693872451782, - -0.6437157988548279, - -0.6668193340301514, - -0.695949912071228, - -0.730312705039978, - -0.7689705491065979, - -0.8108689785003662, - -0.9646700024604797, - -0.9237568974494934, - -0.8818621039390564, - -0.8401285409927368, - -0.7996944189071655, - -0.7616627812385559, - -0.7270710468292236, - -0.6968626379966736, - -0.6718617677688599, - -0.6527502536773682, - -0.6400495171546936, - -0.6341058015823364, - -0.6350815296173096, - -0.6429498195648193, - -0.6574961543083191, - -0.6783237457275391, - -0.7048645615577698, - -0.736394464969635, - -0.7720534801483154, - -0.8108689785003662, - -0.9646700024604797, - -0.9311597347259521, - -0.8964658975601196, - -0.861534833908081, - -0.8273193836212158, - -0.794752836227417, - -0.764723539352417, - -0.7380506992340088, - -0.7154617309570312, - -0.6975728273391724, - -0.684872031211853, - -0.6777057647705078, - -0.67626953125, - -0.6806023716926575, - -0.6905862092971802, - -0.7059487104415894, - -0.726270854473114, - -0.7509981989860535, - -0.7794563174247742, - -0.8108689785003662, - -0.9646700024604797, - -0.9420802593231201, - -0.9180090427398682, - -0.8931130170822144, - -0.8680711984634399, - -0.8435667753219604, - -0.8202679753303528, - -0.7988104820251465, - -0.7797795534133911, - -0.7636943459510803, - -0.750993549823761, - -0.7420236468315125, - -0.7370293140411377, - -0.7361468076705933, - -0.7394001483917236, - -0.7467005848884583, - -0.7578490376472473, - -0.7725414037704468, - -0.7903768420219421, - -0.8108689785003662, - -0.9646700024604797, - -0.9553350806236267, - -0.9441571831703186, - -0.9314411878585815, - -0.9175338745117188, - -0.9028147459030151, - -0.8876851797103882, - -0.8725579380989075, - -0.8578456044197083, - -0.8439494967460632, - -0.8312487602233887, - -0.8200896978378296, - -0.8107767701148987, - -0.8035640120506287, - -0.7986481189727783, - -0.7961632609367371, - -0.7961772084236145, - -0.7986894845962524, - -0.8036317229270935, - -0.8108689785003662, - -0.964669942855835, - -0.9694878458976746, - -0.9720766544342041, - -0.9723657369613647, - -0.9703472852706909, - -0.9660763144493103, - -0.9596693515777588, - -0.9513011574745178, - -0.9411999583244324, - -0.9296413064002991, - -0.9169405102729797, - -0.9034440517425537, - -0.889519989490509, - -0.8755481243133545, - -0.8619096875190735, - -0.8489766716957092, - -0.8371017575263977, - -0.8266089558601379, - -0.8177844285964966, - -0.8108689188957214 - ], - "y": [ - 0.48802733421325684, - 0.5140432715415955, - 0.5440306663513184, - 0.5771716237068176, - 0.6125620603561401, - 0.6492366790771484, - 0.6861950159072876, - 0.7224290370941162, - 0.756950318813324, - 0.7888172268867493, - 0.8171604871749878, - 0.8412070274353027, - 0.8603008389472961, - 0.8739211559295654, - 0.8816964030265808, - 0.8834145665168762, - 0.8790286779403687, - 0.8686584830284119, - 0.8525868058204651, - 0.8312519788742065, - 0.48802733421325684, - 0.5145872235298157, - 0.5451037287712097, - 0.5787445306777954, - 0.6145918965339661, - 0.6516680717468262, - 0.6889616847038269, - 0.7254554629325867, - 0.7601540088653564, - 0.7921106815338135, - 0.8204540014266968, - 0.8444106578826904, - 0.8633272647857666, - 0.87668776512146, - 0.8841278553009033, - 0.8854444026947021, - 0.8806015849113464, - 0.8697315454483032, - 0.8531306982040405, - 0.8312519788742065, - 0.48802733421325684, - 0.5125066041946411, - 0.5409992933273315, - 0.5727282166481018, - 0.6068278551101685, - 0.6423680186271667, - 0.6783793568611145, - 0.7138794660568237, - 0.747900128364563, - 0.7795132398605347, - 0.8078565001487732, - 0.832156777381897, - 0.8517512679100037, - 0.8661054372787476, - 0.8748277425765991, - 0.8776803016662598, - 0.8745852708816528, - 0.8656271696090698, - 0.8510501384735107, - 0.8312519788742065, - 0.48802733421325684, - 0.5080269575119019, - 0.5321621894836426, - 0.5597746968269348, - 0.590111255645752, - 0.6223443150520325, - 0.6555947661399841, - 0.6889554858207703, - 0.7215166091918945, - 0.7523898482322693, - 0.7807331085205078, - 0.8057732582092285, - 0.8268272876739502, - 0.8433208465576172, - 0.8548040390014648, - 0.8609637022018433, - 0.8616317510604858, - 0.8567900061607361, - 0.8465704917907715, - 0.8312519788742065, - 0.48802733421325684, - 0.5016336441040039, - 0.5195499658584595, - 0.5412876009941101, - 0.5662535429000854, - 0.5937668085098267, - 0.6230769157409668, - 0.6533843874931335, - 0.6838624477386475, - 0.7136797904968262, - 0.7420230507850647, - 0.7681191563606262, - 0.7912561893463135, - 0.8108030557632446, - 0.8262265920639038, - 0.8371060490608215, - 0.8431446552276611, - 0.844177782535553, - 0.8401771783828735, - 0.8312519788742065, - 0.48802733421325684, - 0.4940195381641388, - 0.5045294761657715, - 0.5192703604698181, - 0.5378401875495911, - 0.5597323179244995, - 0.5843497514724731, - 0.6110208630561829, - 0.639018177986145, - 0.6675779819488525, - 0.6959212422370911, - 0.723274827003479, - 0.7488926649093628, - 0.7720758318901062, - 0.7921921014785767, - 0.8086926341056824, - 0.8211274147033691, - 0.8291572332382202, - 0.832563042640686, - 0.8312519788742065, - 0.48802733421325684, - 0.48600971698760986, - 0.48872828483581543, - 0.49610885977745056, - 0.5079501271247864, - 0.5239291191101074, - 0.5436099171638489, - 0.5664556622505188, - 0.5918432474136353, - 0.6190801858901978, - 0.6474234461784363, - 0.676099956035614, - 0.7043274641036987, - 0.7313359975814819, - 0.7563888430595398, - 0.7788026332855225, - 0.797965943813324, - 0.8133561015129089, - 0.8245532512664795, - 0.8312519788742065, - 0.48802733421325684, - 0.47847217321395874, - 0.4738587737083435, - 0.47431302070617676, - 0.47982245683670044, - 0.4902368485927582, - 0.5052721500396729, - 0.5245181322097778, - 0.5474498867988586, - 0.5734419226646423, - 0.6017851829528809, - 0.6317065954208374, - 0.6623899340629578, - 0.6929982304573059, - 0.7226966023445129, - 0.7506749629974365, - 0.7761700749397278, - 0.798486590385437, - 0.8170157074928284, - 0.8312519788742065, - 0.48802733421325684, - 0.472223699092865, - 0.4615322947502136, - 0.45624470710754395, - 0.4565052390098572, - 0.4623067378997803, - 0.47349095344543457, - 0.4897528290748596, - 0.510648787021637, - 0.5356088280677795, - 0.5639520883560181, - 0.594905436038971, - 0.6276246309280396, - 0.6612170338630676, - 0.6947664618492126, - 0.7273577451705933, - 0.7581018209457397, - 0.7861601114273071, - 0.8107672333717346, - 0.8312519788742065, - 0.48802733421325684, - 0.46794143319129944, - 0.4530845582485199, - 0.4438619911670685, - 0.44052526354789734, - 0.4431653916835785, - 0.45171040296554565, - 0.4659271240234375, - 0.4854278564453125, - 0.5096806287765503, - 0.5380238890647888, - 0.5696845054626465, - 0.6037989258766174, - 0.6394364833831787, - 0.6756251454353333, - 0.711377739906311, - 0.7457190752029419, - 0.7777124047279358, - 0.8064849376678467, - 0.8312519788742065, - 0.48802733421325684, - 0.4660894274711609, - 0.44943106174468994, - 0.4385066628456116, - 0.43361419439315796, - 0.4348870813846588, - 0.44229066371917725, - 0.45562291145324707, - 0.4745202660560608, - 0.4984671473503113, - 0.5268104076385498, - 0.5587769150733948, - 0.593494713306427, - 0.6300167441368103, - 0.6673468351364136, - 0.7044666409492493, - 0.7403637170791626, - 0.7740588784217834, - 0.8046329617500305, - 0.8312519788742065, - 0.48802733421325684, - 0.4668683707714081, - 0.4509676992893219, - 0.4407590925693512, - 0.43652093410491943, - 0.43836888670921326, - 0.4462525248527527, - 0.4599568247795105, - 0.47910791635513306, - 0.5031834840774536, - 0.5315267443656921, - 0.5633646249771118, - 0.5978285670280457, - 0.6339786052703857, - 0.6708285808563232, - 0.7073734402656555, - 0.7426161766052246, - 0.7755955457687378, - 0.8054119348526001, - 0.8312519788742065, - 0.48802733421325684, - 0.47019386291503906, - 0.45752793550491333, - 0.45037513971328735, - 0.4489305317401886, - 0.4532334804534912, - 0.4631667137145996, - 0.4784591495990753, - 0.4986937642097473, - 0.5233185291290283, - 0.5516617894172668, - 0.5829504132270813, - 0.6163309216499329, - 0.6508927941322327, - 0.6856932044029236, - 0.7197830080986023, - 0.7522322535514832, - 0.7821557521820068, - 0.8087373971939087, - 0.8312519788742065, - 0.48802733421325684, - 0.47570550441741943, - 0.4684009253978729, - 0.46631282567977905, - 0.4694982171058655, - 0.4778701364994049, - 0.4912002682685852, - 0.5091249942779541, - 0.5311553478240967, - 0.5566904544830322, - 0.5850337147712708, - 0.6154119968414307, - 0.6469967365264893, - 0.6789263486862183, - 0.7103298902511597, - 0.7403506636619568, - 0.7681699395179749, - 0.793028712272644, - 0.8142490386962891, - 0.8312519788742065, - 0.48802733421325684, - 0.4828060269355774, - 0.482408344745636, - 0.4868450164794922, - 0.49599510431289673, - 0.5096089839935303, - 0.5273153185844421, - 0.5486310720443726, - 0.5729748606681824, - 0.5996826887130737, - 0.6280259490013123, - 0.6572315692901611, - 0.6865028738975525, - 0.7150413990020752, - 0.7420687079429626, - 0.766847550868988, - 0.788702130317688, - 0.8070361614227295, - 0.821349561214447, - 0.8312519788742065, - 0.48802733421325684, - 0.4907260537147522, - 0.49803227186203003, - 0.5097467303276062, - 0.5255498886108398, - 0.5450106263160706, - 0.5675982236862183, - 0.5926963686943054, - 0.6196206212043762, - 0.6476364731788635, - 0.675979733467102, - 0.7038772702217102, - 0.7305681705474854, - 0.7553243041038513, - 0.7774703502655029, - 0.7964023351669312, - 0.8116037845611572, - 0.8226600885391235, - 0.829269528388977, - 0.8312519788742065, - 0.48802733421325684, - 0.49860721826553345, - 0.5135796666145325, - 0.5325362682342529, - 0.5549598932266235, - 0.5802388787269592, - 0.6076837778091431, - 0.6365458369255066, - 0.6660378575325012, - 0.6953553557395935, - 0.723698616027832, - 0.75029456615448, - 0.7744176387786865, - 0.7954098582267761, - 0.8126986026763916, - 0.8258123397827148, - 0.834393322467804, - 0.838207483291626, - 0.8371507525444031, - 0.8312519788742065, - 0.48802733421325684, - 0.5055955648422241, - 0.5273656845092773, - 0.5527439117431641, - 0.5810379981994629, - 0.6114761233329773, - 0.6432279944419861, - 0.6754275560379028, - 0.7071964740753174, - 0.7376681566238403, - 0.7660114169120789, - 0.7914531826972961, - 0.8132993578910828, - 0.8309540748596191, - 0.8439358472824097, - 0.851890504360199, - 0.8546010255813599, - 0.8519935011863708, - 0.8441390991210938, - 0.8312519788742065, - 0.48802733421325684, - 0.5109336972236633, - 0.5378963947296143, - 0.5681799650192261, - 0.6009582877159119, - 0.6353372931480408, - 0.6703792214393616, - 0.7051281929016113, - 0.738636314868927, - 0.7699896693229675, - 0.798332929611206, - 0.8228930234909058, - 0.8429999351501465, - 0.8581053018569946, - 0.8677970170974731, - 0.871810793876648, - 0.8700370788574219, - 0.8625242710113525, - 0.849477231502533, - 0.8312519788742065, - 0.48802733421325684, - 0.5140432715415955, - 0.5440306663513184, - 0.5771716237068176, - 0.6125620603561401, - 0.6492366790771484, - 0.6861950159072876, - 0.7224290370941162, - 0.756950318813324, - 0.7888172268867493, - 0.8171604871749878, - 0.8412070274353027, - 0.8603008389472961, - 0.8739211559295654, - 0.8816964030265808, - 0.8834145665168762, - 0.8790286779403687, - 0.8686584830284119, - 0.8525868058204651, - 0.8312519788742065 - ], - "z": [ - 0.30756890773773193, - 0.3300265669822693, - 0.34784555435180664, - 0.3605397641658783, - 0.3677629828453064, - 0.3693181872367859, - 0.3651629388332367, - 0.3554105758666992, - 0.34032708406448364, - 0.32032400369644165, - 0.2959468364715576, - 0.26786062121391296, - 0.2368314415216446, - 0.20370569825172424, - 0.16938698291778564, - 0.1348114013671875, - 0.10092207789421082, - 0.06864345073699951, - 0.03885601460933685, - 0.012372255325317383, - 0.30756890773773193, - 0.32361650466918945, - 0.3352002501487732, - 0.3420041799545288, - 0.3438427448272705, - 0.34066569805145264, - 0.33255982398986816, - 0.31974613666534424, - 0.30257415771484375, - 0.28151237964630127, - 0.25713521242141724, - 0.23010769486427307, - 0.20116698741912842, - 0.17110255360603333, - 0.1407344788312912, - 0.11089110374450684, - 0.08238647133111954, - 0.05599815398454666, - 0.032445937395095825, - 0.012372255325317383, - 0.30756890773773193, - 0.3152492642402649, - 0.31869402527809143, - 0.31780922412872314, - 0.31261900067329407, - 0.30326491594314575, - 0.29000216722488403, - 0.27319246530532837, - 0.25329434871673584, - 0.23085063695907593, - 0.20647349953651428, - 0.18082787096500397, - 0.15461331605911255, - 0.1285448968410492, - 0.10333368927240372, - 0.07966738194227219, - 0.05819152295589447, - 0.03949194401502609, - 0.02407871186733246, - 0.012372255325317383, - 0.30756890773773193, - 0.3058316111564636, - 0.30011558532714844, - 0.2905768156051636, - 0.27747541666030884, - 0.26116880774497986, - 0.2421017587184906, - 0.2207944095134735, - 0.19782792031764984, - 0.17382878065109253, - 0.14945164322853088, - 0.12536142766475677, - 0.10221526026725769, - 0.08064450323581696, - 0.06123755872249603, - 0.044523805379867554, - 0.0309591144323349, - 0.02091352641582489, - 0.014661058783531189, - 0.012372270226478577, - 0.30756890773773193, - 0.2963840663433075, - 0.28147822618484497, - 0.2632579803466797, - 0.24222031235694885, - 0.21893909573554993, - 0.19404935836791992, - 0.1682300716638565, - 0.14218546450138092, - 0.11662598699331284, - 0.0922488421201706, - 0.06971897184848785, - 0.04965092986822128, - 0.03259211778640747, - 0.019007861614227295, - 0.009268686175346375, - 0.003640279173851013, - 0.0022761523723602295, - 0.005213528871536255, - 0.012372270226478577, - 0.30756890773773193, - 0.287930428981781, - 0.264801561832428, - 0.23881316184997559, - 0.21067413687705994, - 0.1811520904302597, - 0.15105222165584564, - 0.12119564414024353, - 0.09239674359560013, - 0.0654410794377327, - 0.041063934564590454, - 0.01993025839328766, - 0.002616509795188904, - -0.010405033826828003, - -0.018779173493385315, - -0.022277474403381348, - -0.020804524421691895, - -0.014400511980056763, - -0.0032401084899902344, - 0.012372270226478577, - 0.30756890773773193, - 0.2813867926597595, - 0.2518927752971649, - 0.21989133954048157, - 0.18625542521476746, - 0.15190254151821136, - 0.11776972562074661, - 0.08478804677724838, - 0.05385712534189224, - 0.02582073211669922, - 0.0014435797929763794, - -0.018609359860420227, - -0.03379109501838684, - -0.04368753731250763, - -0.048028722405433655, - -0.04669620096683502, - -0.03972636163234711, - -0.027309313416481018, - -0.009783744812011719, - 0.012372270226478577, - 0.30756890773773193, - 0.2774622440338135, - 0.24415072798728943, - 0.20854295790195465, - 0.1716102808713913, - 0.13436013460159302, - 0.09780853241682053, - 0.06295257061719894, - 0.03074297308921814, - 0.0020584166049957275, - -0.022318735718727112, - -0.04172350466251373, - -0.05562657117843628, - -0.06364873051643372, - -0.0655711442232132, - -0.06134133040904999, - -0.05107472836971283, - -0.035051360726356506, - -0.013708293437957764, - 0.012372270226478577, - 0.30756890773773193, - 0.2765820622444153, - 0.24241438508033752, - 0.20599782466888428, - 0.1683257669210434, - 0.1304258406162262, - 0.09333176165819168, - 0.05805545300245285, - 0.025559082627296448, - -0.0032708346843719482, - -0.027647987008094788, - -0.046907395124435425, - -0.06052368879318237, - -0.06812548637390137, - -0.06950543820858002, - -0.06462584435939789, - -0.0536198616027832, - -0.03678770363330841, - -0.014588475227355957, - 0.012372270226478577, - 0.30756890773773193, - 0.27884167432785034, - 0.2468719184398651, - 0.21253173053264618, - 0.1767578125, - 0.14052599668502808, - 0.10482455044984818, - 0.0706273540854454, - 0.03886721283197403, - 0.010410457849502563, - -0.013966694474220276, - -0.03359927237033844, - -0.04795178771018982, - -0.05663271248340607, - -0.05940526723861694, - -0.05619381368160248, - -0.047085970640182495, - -0.03233017027378082, - -0.012328892946243286, - 0.012372270226478577, - 0.30756890773773193, - 0.2839961349964142, - 0.2570402920246124, - 0.2274366170167923, - 0.19599264860153198, - 0.16356609761714935, - 0.13104146718978882, - 0.09930594265460968, - 0.06922518461942673, - 0.04161974787712097, - 0.017242595553398132, - -0.003241300582885742, - -0.01927320659160614, - -0.030415788292884827, - -0.03636515140533447, - -0.036958977580070496, - -0.03218108415603638, - -0.02216179668903351, - -0.007174402475357056, - 0.012372270226478577, - 0.30756890773773193, - 0.2914869487285614, - 0.27181756496429443, - 0.2490973174571991, - 0.22394588589668274, - 0.19704940915107727, - 0.1691415011882782, - 0.1409834325313568, - 0.11334328353404999, - 0.08697500824928284, - 0.0625978633761406, - 0.04087679088115692, - 0.02240428328514099, - 0.007684245705604553, - -0.002881839871406555, - -0.009005725383758545, - -0.010520383715629578, - -0.007384493947029114, - 0.00031641125679016113, - 0.012372270226478577, - 0.30756890773773193, - 0.30050235986709595, - 0.28960245847702026, - 0.2751665413379669, - 0.25758838653564453, - 0.23734746873378754, - 0.21499590575695038, - 0.19114340841770172, - 0.16644057631492615, - 0.14156128466129303, - 0.11718413233757019, - 0.09397409111261368, - 0.0725642666220665, - 0.05353865772485733, - 0.03741622716188431, - 0.024636760354042053, - 0.015548855066299438, - 0.010400369763374329, - 0.009331807494163513, - 0.012372270226478577, - 0.30756890773773193, - 0.3100653886795044, - 0.30846768617630005, - 0.30281931161880493, - 0.293274462223053, - 0.28009340167045593, - 0.2636357247829437, - 0.24435031414031982, - 0.22276324033737183, - 0.1994633674621582, - 0.17508623003959656, - 0.15029676258563995, - 0.1257711797952652, - 0.10217846930027008, - 0.0801621749997139, - 0.0603228434920311, - 0.04320163279771805, - 0.02926558256149292, - 0.01889483630657196, - 0.012372255325317383, - 0.30756890773773193, - 0.3191397190093994, - 0.3263688087463379, - 0.32905900478363037, - 0.32713690400123596, - 0.3206549286842346, - 0.3097899556159973, - 0.2948382496833801, - 0.27620771527290344, - 0.25440654158592224, - 0.2300294041633606, - 0.20374122262001038, - 0.1762591004371643, - 0.14833268523216248, - 0.12072371691465378, - 0.09418530017137527, - 0.0694413110613823, - 0.047166742384433746, - 0.02796916663646698, - 0.012372255325317383, - 0.30756890773773193, - 0.3267420530319214, - 0.34136611223220825, - 0.35104215145111084, - 0.3555062413215637, - 0.35463666915893555, - 0.34845709800720215, - 0.3371361196041107, - 0.32098251581192017, - 0.30043691396713257, - 0.2760597765445709, - 0.2485160380601883, - 0.2185569852590561, - 0.1869998574256897, - 0.1547054499387741, - 0.12255464494228363, - 0.09142443537712097, - 0.06216400861740112, - 0.035571493208408356, - 0.012372255325317383, - 0.30756890773773193, - 0.3320485055446625, - 0.3518342971801758, - 0.3663865327835083, - 0.3753082752227783, - 0.3783561587333679, - 0.3754470944404602, - 0.36666035652160645, - 0.35223567485809326, - 0.332566499710083, - 0.308189332485199, - 0.2797691822052002, - 0.248081237077713, - 0.21398983895778656, - 0.17842495441436768, - 0.14235666394233704, - 0.10676883161067963, - 0.07263221591711044, - 0.040877968072891235, - 0.012372255325317383, - 0.30756890773773193, - 0.3344841003417969, - 0.35663902759552, - 0.3734293580055237, - 0.38439708948135376, - 0.3892430067062378, - 0.3878350257873535, - 0.3802114725112915, - 0.3665803372859955, - 0.34731343388557434, - 0.3229362964630127, - 0.2941138744354248, - 0.26163235306739807, - 0.22637778520584106, - 0.18931180238723755, - 0.15144546329975128, - 0.11381164193153381, - 0.07743693888187408, - 0.04331354796886444, - 0.012372255325317383, - 0.30756890773773193, - 0.3337848484516144, - 0.35525959730148315, - 0.3714073896408081, - 0.3817877173423767, - 0.38611745834350586, - 0.38427847623825073, - 0.376321017742157, - 0.36246204376220703, - 0.3430796265602112, - 0.31870248913764954, - 0.28999555110931396, - 0.25774186849594116, - 0.22282125055789948, - 0.18618622422218323, - 0.14883610606193542, - 0.11178967356681824, - 0.07605752348899841, - 0.04261430352926254, - 0.012372255325317383, - 0.30756890773773193, - 0.3300265669822693, - 0.34784555435180664, - 0.3605397641658783, - 0.3677629828453064, - 0.3693181872367859, - 0.3651629090309143, - 0.3554105758666992, - 0.34032708406448364, - 0.32032397389411926, - 0.2959468364715576, - 0.2678605914115906, - 0.2368314266204834, - 0.20370568335056305, - 0.16938696801662445, - 0.1348113864660263, - 0.10092206299304962, - 0.06864345073699951, - 0.038856007158756256, - 0.012372255325317383 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.022246241569519, - -1.0054824352264404, - -0.9917426705360413, - -0.9814016819000244, - -0.9747414588928223, - -0.971943736076355, - -0.9730848670005798, - -0.9781336784362793, - -0.9869524240493774, - -0.9993005990982056, - -1.0148414373397827, - -1.0331509113311768, - -1.05372953414917, - -1.0760161876678467, - -1.0994027853012085, - -1.1232514381408691, - -1.1469117403030396, - -1.1697380542755127, - -1.191107988357544, - -1.2104383707046509, - -1.022246241569519, - -0.9995821118354797, - -0.9801028966903687, - -0.9643399119377136, - -0.9527231454849243, - -0.9455695152282715, - -0.943074107170105, - -0.9453049898147583, - -0.9522013664245605, - -0.9635750651359558, - -0.9791158437728882, - -0.9983997941017151, - -1.0209009647369385, - -1.0460054874420166, - -1.073028564453125, - -1.1012332439422607, - -1.129849910736084, - -1.1580982208251953, - -1.1852076053619385, - -1.2104383707046509, - -1.022246241569519, - -0.9962767958641052, - -0.97358238697052, - -0.9547821879386902, - -0.9403888583183289, - -0.9307950735092163, - -0.9262625575065613, - -0.9269149303436279, - -0.9327343702316284, - -0.9435621500015259, - -0.9591029286384583, - -0.978932797908783, - -1.0025107860565186, - -1.0291938781738281, - -1.0582541227340698, - -1.0888988971710205, - -1.1202921867370605, - -1.1515778303146362, - -1.181902289390564, - -1.2104383707046509, - -1.022246241569519, - -0.9959247708320618, - -0.9728879332542419, - -0.9537642002105713, - -0.9390751123428345, - -0.929221510887146, - -0.9244719743728638, - -0.924956202507019, - -0.9306609630584717, - -0.9414305686950684, - -0.9569714069366455, - -0.9768593907356262, - -1.0005521774291992, - -1.0274033546447754, - -1.0566805601119995, - -1.087585210800171, - -1.1192742586135864, - -1.1508833169937134, - -1.1815502643585205, - -1.2104383707046509, - -1.022246241569519, - -0.9985641241073608, - -0.9780946969985962, - -0.9613962769508362, - -0.9489244222640991, - -0.9410192370414734, - -0.9378964304924011, - -0.9396411776542664, - -0.9462058544158936, - -0.9574114084243774, - -0.9729522466659546, - -0.9924042820930481, - -1.0152370929718018, - -1.040827751159668, - -1.0684783458709717, - -1.097434401512146, - -1.1269062757492065, - -1.1560900211334229, - -1.1841895580291748, - -1.2104383707046509, - -1.022246241569519, - -1.0039088726043701, - -0.9886384010314941, - -0.9768514037132263, - -0.9688693284988403, - -0.9649099111557007, - -0.9650811553001404, - -0.9693784713745117, - -0.977684497833252, - -0.9897727966308594, - -1.0053136348724365, - -1.0238829851150513, - -1.0449743270874023, - -1.0680124759674072, - -1.0923689603805542, - -1.1173793077468872, - -1.1423614025115967, - -1.1666338443756104, - -1.189534306526184, - -1.2104383707046509, - -1.022246241569519, - -1.0113798379898071, - -1.0033766031265259, - -0.9984546899795532, - -0.9967485070228577, - -0.9983044862747192, - -1.0030802488327026, - -1.0109455585479736, - -1.0216857194900513, - -1.0350079536437988, - -1.050548791885376, - -1.0678842067718506, - -1.0865414142608643, - -1.1060116291046143, - -1.1257635354995728, - -1.1452585458755493, - -1.1639647483825684, - -1.1813719272613525, - -1.197005271911621, - -1.2104383707046509, - -1.022246241569519, - -1.0201674699783325, - -1.0207120180130005, - -1.0238652229309082, - -1.0295408964157104, - -1.0375843048095703, - -1.0477759838104248, - -1.059838056564331, - -1.0734412670135498, - -1.0882148742675781, - -1.1037555932998657, - -1.1196397542953491, - -1.1354339122772217, - -1.1507073640823364, - -1.1650433540344238, - -1.1780508756637573, - -1.1893752813339233, - -1.1987074613571167, - -1.2057929039001465, - -1.2104383707046509, - -1.022246241569519, - -1.029319405555725, - -1.0387662649154663, - -1.0503292083740234, - -1.0636928081512451, - -1.0784926414489746, - -1.0943248271942139, - -1.11075758934021, - -1.127342700958252, - -1.1436277627944946, - -1.1591686010360718, - -1.1735411882400513, - -1.1863535642623901, - -1.1972562074661255, - -1.2059516906738281, - -1.2122029066085815, - -1.2158392667770386, - -1.216761589050293, - -1.214944839477539, - -1.2104383707046509, - -1.022246241569519, - -1.0378438234329224, - -1.0555827617645264, - -1.0749789476394653, - -1.0955034494400024, - -1.1165964603424072, - -1.1376824378967285, - -1.158186435699463, - -1.177548885345459, - -1.1952418088912964, - -1.2107826471328735, - -1.2237473726272583, - -1.2337822914123535, - -1.2406138181686401, - -1.2440555095672607, - -1.2440135478973389, - -1.2404890060424805, - -1.233578085899353, - -1.2234693765640259, - -1.2104383707046509, - -1.022246241569519, - -1.0448172092437744, - -1.0693391561508179, - -1.0951433181762695, - -1.1215256452560425, - -1.1477667093276978, - -1.1731504201889038, - -1.1969847679138184, - -1.2186192274093628, - -1.2374638319015503, - -1.2530046701431274, - -1.264817714691162, - -1.272580623626709, - -1.2760818004608154, - -1.2752257585525513, - -1.270035743713379, - -1.2606533765792847, - -1.247334599494934, - -1.2304426431655884, - -1.2104383707046509, - -1.022246241569519, - -1.0494836568832397, - -1.0785448551177979, - -1.1086370944976807, - -1.1389394998550415, - -1.1686254739761353, - -1.196885347366333, - -1.2229481935501099, - -1.246103048324585, - -1.2657184600830078, - -1.281259298324585, - -1.2923015356063843, - -1.29854416847229, - -1.2998167276382446, - -1.2960845232009888, - -1.287449598312378, - -1.2741471529006958, - -1.256540298461914, - -1.2351090908050537, - -1.2104383707046509, - -1.022246241569519, - -1.0513375997543335, - -1.0822021961212158, - -1.1139980554580688, - -1.145857810974121, - -1.176912546157837, - -1.206315040588379, - -1.2332632541656494, - -1.2570222616195679, - -1.2769438028335571, - -1.2924845218658447, - -1.3032206296920776, - -1.3088592290878296, - -1.3092464208602905, - -1.3043715953826904, - -1.2943679094314575, - -1.279508113861084, - -1.260197639465332, - -1.236963152885437, - -1.2104383707046509, - -1.022246241569519, - -1.0501781702041626, - -1.079914927482605, - -1.1106452941894531, - -1.1415311098098755, - -1.1717298030853271, - -1.2004176378250122, - -1.2268121242523193, - -1.2501933574676514, - -1.269923448562622, - -1.2854641675949097, - -1.2963917255401611, - -1.3024080991744995, - -1.3033490180969238, - -1.2991888523101807, - -1.2900410890579224, - -1.2761553525924683, - -1.2579102516174316, - -1.2358036041259766, - -1.2104383707046509, - -1.022246241569519, - -1.046130895614624, - -1.0719307661056519, - -1.0989420413970947, - -1.1264280080795288, - -1.1536388397216797, - -1.1798323392868042, - -1.204293966293335, - -1.2263565063476562, - -1.2454180717468262, - -1.2609589099884033, - -1.272554874420166, - -1.2798898220062256, - -1.2827637195587158, - -1.2810978889465332, - -1.2749381065368652, - -1.2644520998001099, - -1.249926209449768, - -1.231756329536438, - -1.2104383707046509, - -1.022246241569519, - -1.0396344661712646, - -1.0591150522232056, - -1.080156683921814, - -1.1021853685379028, - -1.1246001720428467, - -1.146789789199829, - -1.1681487560272217, - -1.1880947351455688, - -1.2060834169387817, - -1.2216241359710693, - -1.2342932224273682, - -1.2437447309494019, - -1.2497210502624512, - -1.2520592212677002, - -1.2506953477859497, - -1.245666742324829, - -1.2371103763580322, - -1.2252599000930786, - -1.2104383707046509, - -1.022246241569519, - -1.0313928127288818, - -1.0428564548492432, - -1.0563247203826904, - -1.0714300870895386, - -1.0877605676651, - -1.1048705577850342, - -1.1222935914993286, - -1.1395542621612549, - -1.156181812286377, - -1.1717225313186646, - -1.1857527494430542, - -1.1978895664215088, - -1.2078019380569458, - -1.2152196168899536, - -1.2199400663375854, - -1.2218347787857056, - -1.2208518981933594, - -1.2170182466506958, - -1.2104383707046509, - -1.022246241569519, - -1.0222989320755005, - -1.0249170064926147, - -1.0300288200378418, - -1.0374950170516968, - -1.047111988067627, - -1.0586174726486206, - -1.071697473526001, - -1.0859953165054321, - -1.1011208295822144, - -1.1166616678237915, - -1.132193684577942, - -1.1472934484481812, - -1.1615488529205322, - -1.17457115650177, - -1.1860051155090332, - -1.195538878440857, - -1.2029123306274414, - -1.2079243659973145, - -1.2104383707046509, - -1.022246241569519, - -1.013338565826416, - -1.0072405338287354, - -1.00411856174469, - -1.0040576457977295, - -1.0070596933364868, - -1.0130425691604614, - -1.0218433141708374, - -1.03322172164917, - -1.0468673706054688, - -1.0624080896377563, - -1.0794200897216797, - -1.097439169883728, - -1.115973949432373, - -1.1345187425613403, - -1.152567744255066, - -1.169628620147705, - -1.185235857963562, - -1.19896399974823, - -1.2104383707046509, - -1.022246241569519, - -1.0054824352264404, - -0.9917426705360413, - -0.9814016819000244, - -0.9747414588928223, - -0.971943736076355, - -0.9730848073959351, - -0.9781336784362793, - -0.9869524240493774, - -0.9993005990982056, - -1.0148414373397827, - -1.0331509113311768, - -1.05372953414917, - -1.0760161876678467, - -1.0994027853012085, - -1.1232514381408691, - -1.1469117403030396, - -1.1697380542755127, - -1.191107988357544, - -1.2104383707046509 - ], - "y": [ - 0.7893542051315308, - 0.8374260067939758, - 0.8845647573471069, - 0.929484486579895, - 0.9709599614143372, - 1.0078598260879517, - 1.039177656173706, - 1.0640590190887451, - 1.0818252563476562, - 1.091991901397705, - 1.0942814350128174, - 1.0886313915252686, - 1.0751961469650269, - 1.0543419122695923, - 1.0266376733779907, - 0.9928391575813293, - 0.9538681507110596, - 0.91078782081604, - 0.8647732138633728, - 0.8170795440673828, - 0.7893542051315308, - 0.8320566415786743, - 0.8739724159240723, - 0.9139581918716431, - 0.9509232044219971, - 0.9838591814041138, - 1.0118677616119385, - 1.0341848134994507, - 1.050201654434204, - 1.0594813823699951, - 1.0617709159851074, - 1.0570077896118164, - 1.0453219413757324, - 1.0270320177078247, - 1.0026370286941528, - 0.9728024005889893, - 0.9383418560028076, - 0.9001955389976501, - 0.8594038486480713, - 0.8170795440673828, - 0.7893542051315308, - 0.8220803141593933, - 0.8542918562889099, - 0.8851101994514465, - 0.9136947393417358, - 0.9392656683921814, - 0.9611256122589111, - 0.9786781668663025, - 0.9914445877075195, - 0.9990767240524292, - 1.0013662576675415, - 0.9982507824897766, - 0.9898152947425842, - 0.9762899279594421, - 0.9580435752868652, - 0.9355738759040833, - 0.9094938635826111, - 0.880514919757843, - 0.8494274616241455, - 0.8170795440673828, - 0.7893542051315308, - 0.8085780739784241, - 0.8276556730270386, - 0.8460665941238403, - 0.8633087873458862, - 0.8789117336273193, - 0.8924499750137329, - 0.9035542011260986, - 0.9119214415550232, - 0.9173234701156616, - 0.9196130037307739, - 0.9187275767326355, - 0.9146913290023804, - 0.9076142907142639, - 0.8976895809173584, - 0.8851879239082336, - 0.8704503178596497, - 0.8538787364959717, - 0.8359252214431763, - 0.8170795440673828, - 0.7893542051315308, - 0.7930130958557129, - 0.7969502806663513, - 0.8010584115982056, - 0.8052254319190979, - 0.8093376755714417, - 0.8132829070091248, - 0.8169535994529724, - 0.820249617099762, - 0.8230809569358826, - 0.8253705501556396, - 0.8270557522773743, - 0.8280907273292542, - 0.8284472227096558, - 0.8281155228614807, - 0.8271046280860901, - 0.8254421353340149, - 0.8231733441352844, - 0.8203602433204651, - 0.8170795440673828, - 0.7893542051315308, - 0.7770721316337585, - 0.7655031681060791, - 0.7549629807472229, - 0.7457389831542969, - 0.7380828857421875, - 0.7322034239768982, - 0.7282610535621643, - 0.7263632416725159, - 0.7265618443489075, - 0.7288513779640198, - 0.733169436454773, - 0.739398181438446, - 0.7473677396774292, - 0.7568606734275818, - 0.7676181197166443, - 0.7793466448783875, - 0.7917262315750122, - 0.8044192790985107, - 0.8170795440673828, - 0.7893542051315308, - 0.7624825835227966, - 0.7367221117019653, - 0.7127753496170044, - 0.6912956833839417, - 0.6728689074516296, - 0.657997727394104, - 0.6470876932144165, - 0.6404364109039307, - 0.6382254362106323, - 0.6405149698257446, - 0.6472426056861877, - 0.6582248210906982, - 0.6731619834899902, - 0.6916467547416687, - 0.7131748199462891, - 0.7371590733528137, - 0.7629451751708984, - 0.7898297905921936, - 0.8170795440673828, - 0.7893542051315308, - 0.7508255243301392, - 0.7137259244918823, - 0.6790673732757568, - 0.6477953195571899, - 0.6207627058029175, - 0.5987070798873901, - 0.5822298526763916, - 0.5717805624008179, - 0.5676443576812744, - 0.5699338912963867, - 0.578586757183075, - 0.5933669805526733, - 0.6138713359832764, - 0.6395405530929565, - 0.6696744561195374, - 0.7034510374069214, - 0.7399489879608154, - 0.7781726717948914, - 0.8170795440673828, - 0.7893542051315308, - 0.7433640956878662, - 0.6990066170692444, - 0.6574916839599609, - 0.6199517846107483, - 0.5874109268188477, - 0.5607565641403198, - 0.5407159924507141, - 0.5278357267379761, - 0.5224671363830566, - 0.524756669998169, - 0.5346418619155884, - 0.5518531203269958, - 0.5759208798408508, - 0.6061887145042419, - 0.6418309211730957, - 0.6818754076957703, - 0.7252296805381775, - 0.7707113027572632, - 0.8170795440673828, - 0.7893542051315308, - 0.7409069538116455, - 0.6941592693328857, - 0.6503864526748657, - 0.6107823848724365, - 0.5764275193214417, - 0.5482587814331055, - 0.5270446538925171, - 0.5133638381958008, - 0.5075894594192505, - 0.5098789930343628, - 0.5201699733734131, - 0.5381817817687988, - 0.5634230971336365, - 0.5952053070068359, - 0.6326615810394287, - 0.6747701168060303, - 0.7203823328018188, - 0.7682541012763977, - 0.8170795440673828, - 0.7893542051315308, - 0.7437202334403992, - 0.6997091770172119, - 0.6585215330123901, - 0.6212807893753052, - 0.5890028476715088, - 0.5625680685043335, - 0.542697548866272, - 0.5299333333969116, - 0.5246235132217407, - 0.526913046836853, - 0.5367394685745239, - 0.5538346767425537, - 0.5777323246002197, - 0.6077806949615479, - 0.6431599855422974, - 0.6829052567481995, - 0.7259323000907898, - 0.7710674405097961, - 0.8170795440673828, - 0.7893542051315308, - 0.7514992356300354, - 0.7150549292564392, - 0.6810154914855957, - 0.6503093242645264, - 0.6237741708755493, - 0.6021336913108826, - 0.5859782695770264, - 0.5757484436035156, - 0.571723461151123, - 0.5740129947662354, - 0.5825546383857727, - 0.5971153974533081, - 0.6172980070114136, - 0.6425520181655884, - 0.6721885204315186, - 0.7053991556167603, - 0.7412779927253723, - 0.7788463830947876, - 0.8170795440673828, - 0.7893542051315308, - 0.7634008526802063, - 0.7385335564613342, - 0.7154306173324585, - 0.6947222948074341, - 0.6769734621047974, - 0.6626681685447693, - 0.6521966457366943, - 0.645844578742981, - 0.643785297870636, - 0.6460748314857483, - 0.652650773525238, - 0.6633337736129761, - 0.6778324842453003, - 0.6957512497901917, - 0.7166014909744263, - 0.7398143410682678, - 0.7647566199302673, - 0.7907480001449585, - 0.8170795440673828, - 0.7893542051315308, - 0.7781354188919067, - 0.7676007747650146, - 0.7580376863479614, - 0.7497069239616394, - 0.7428357601165771, - 0.7376116514205933, - 0.7341771125793457, - 0.7326257824897766, - 0.7329999804496765, - 0.7352895140647888, - 0.7394319176673889, - 0.7453142404556274, - 0.7527759671211243, - 0.7616136074066162, - 0.7715860605239868, - 0.782421350479126, - 0.7938238978385925, - 0.8054826259613037, - 0.8170795440673828, - 0.7893542051315308, - 0.7941061854362488, - 0.7991067171096802, - 0.8042193055152893, - 0.8093045949935913, - 0.8142238259315491, - 0.8188427686691284, - 0.8230355381965637, - 0.8266876935958862, - 0.8296995759010315, - 0.8319891095161438, - 0.8334938287734985, - 0.8341726660728455, - 0.8340070843696594, - 0.8330016732215881, - 0.8311837911605835, - 0.8286030292510986, - 0.8253297805786133, - 0.8214533925056458, - 0.8170795440673828, - 0.7893542051315308, - 0.809582531452179, - 0.8296371698379517, - 0.8489711880683899, - 0.8670570850372314, - 0.88340163230896, - 0.8975589275360107, - 0.9091428518295288, - 0.917837381362915, - 0.9234052896499634, - 0.9256948232650757, - 0.9246435165405273, - 0.9202799797058105, - 0.9127232432365417, - 0.902179479598999, - 0.8889362812042236, - 0.8733548521995544, - 0.8558602333068848, - 0.8369296789169312, - 0.8170795440673828, - 0.7893542051315308, - 0.8228873014450073, - 0.8558838367462158, - 0.8874437212944031, - 0.9167061448097229, - 0.9428728818893433, - 0.9652301073074341, - 0.9831681251525879, - 0.9961974620819092, - 1.0039628744125366, - 1.006252408027649, - 1.0030035972595215, - 0.9943052530288696, - 0.9803944826126099, - 0.9616507291793823, - 0.9385852813720703, - 0.9118273854255676, - 0.8821069002151489, - 0.8502344489097595, - 0.8170795440673828, - 0.7893542051315308, - 0.832578718662262, - 0.8750023245811462, - 0.9154677987098694, - 0.9528713226318359, - 0.9861927032470703, - 1.0145230293273926, - 1.0370893478393555, - 1.0532764196395874, - 1.0626423358917236, - 1.064931869506836, - 1.0600825548171997, - 1.0482264757156372, - 1.0296872854232788, - 1.0049705505371094, - 0.9747505187988281, - 0.9398514628410339, - 0.9012253880500793, - 0.8599259257316589, - 0.8170795440673828, - 0.7893542051315308, - 0.8376065492630005, - 0.8849208950996399, - 0.9300065040588379, - 0.9716336727142334, - 1.0086668729782104, - 1.0400959253311157, - 1.0650634765625, - 1.0828886032104492, - 1.0930850505828857, - 1.095374584197998, - 1.0896947383880615, - 1.0762006044387817, - 1.055260181427002, - 1.0274447202682495, - 0.9935128688812256, - 0.9543902277946472, - 0.911143958568573, - 0.8649537563323975, - 0.8170795440673828, - 0.7893542051315308, - 0.8374260067939758, - 0.8845647573471069, - 0.929484486579895, - 0.9709599614143372, - 1.0078598260879517, - 1.039177656173706, - 1.0640590190887451, - 1.0818252563476562, - 1.091991901397705, - 1.0942814350128174, - 1.0886313915252686, - 1.0751961469650269, - 1.0543419122695923, - 1.0266376733779907, - 0.9928391575813293, - 0.9538681507110596, - 0.91078782081604, - 0.8647732138633728, - 0.8170795440673828 - ], - "z": [ - 0.5870364904403687, - 0.5795201659202576, - 0.5644386410713196, - 0.5422033071517944, - 0.5134206414222717, - 0.4788757860660553, - 0.4395110607147217, - 0.39640018343925476, - 0.3507191240787506, - 0.30371397733688354, - 0.2566668689250946, - 0.21086114645004272, - 0.16754625737667084, - 0.12790372967720032, - 0.0930149257183075, - 0.06383150815963745, - 0.04114949703216553, - 0.025587618350982666, - 0.01757034659385681, - 0.017316430807113647, - 0.5870364904403687, - 0.5773098468780518, - 0.5600782632827759, - 0.5358117818832397, - 0.5051723718643188, - 0.46899574995040894, - 0.42826876044273376, - 0.3841022849082947, - 0.33770108222961426, - 0.2903308570384979, - 0.24328374862670898, - 0.19784307479858398, - 0.15524835884571075, - 0.1166614294052124, - 0.08313490450382233, - 0.055583253502845764, - 0.03475800156593323, - 0.021227210760116577, - 0.015360027551651001, - 0.017316430807113647, - 0.5870364904403687, - 0.5757324695587158, - 0.5569666624069214, - 0.5312507748603821, - 0.49928635358810425, - 0.4619452953338623, - 0.4202461540699005, - 0.37532636523246765, - 0.3284112513065338, - 0.28078052401542664, - 0.2337334156036377, - 0.18855325877666473, - 0.14647245407104492, - 0.10863882303237915, - 0.07608442008495331, - 0.04969722032546997, - 0.030196964740753174, - 0.018115609884262085, - 0.013782709836959839, - 0.017316430807113647, - 0.5870364904403687, - 0.5749591588973999, - 0.5554410219192505, - 0.5290144681930542, - 0.4964003562927246, - 0.4584883749485016, - 0.416312575340271, - 0.3710234761238098, - 0.323856383562088, - 0.2760979235172272, - 0.22905081510543823, - 0.18399839103221893, - 0.1421695500612259, - 0.10470527410507202, - 0.07262751460075378, - 0.04681125283241272, - 0.027960658073425293, - 0.016589969396591187, - 0.013009339570999146, - 0.017316430807113647, - 0.5870364904403687, - 0.5750734806060791, - 0.5556666254997253, - 0.5293452143669128, - 0.49682721495628357, - 0.4589996337890625, - 0.4168943762779236, - 0.37165987491607666, - 0.32453006505966187, - 0.27679046988487244, - 0.2297433763742447, - 0.1846720576286316, - 0.14280594885349274, - 0.10528704524040222, - 0.07313878834247589, - 0.04723808169364929, - 0.028291404247283936, - 0.016815602779388428, - 0.01312372088432312, - 0.017316430807113647, - 0.5870364904403687, - 0.5760632753372192, - 0.5576190948486328, - 0.5322071313858032, - 0.5005205869674683, - 0.4634237289428711, - 0.42192840576171875, - 0.37716659903526306, - 0.33035925030708313, - 0.2827831506729126, - 0.23573604226112366, - 0.19050125777721405, - 0.14831268787384033, - 0.11032108962535858, - 0.0775628387928009, - 0.050931453704833984, - 0.031153380870819092, - 0.018768101930618286, - 0.014113456010818481, - 0.017316430807113647, - 0.5870364904403687, - 0.5778211355209351, - 0.561086893081665, - 0.5372902154922485, - 0.5070803165435791, - 0.47128111124038696, - 0.4308692216873169, - 0.3869469165802002, - 0.340712308883667, - 0.293426513671875, - 0.24637942016124725, - 0.20085430145263672, - 0.15809300541877747, - 0.11926190555095673, - 0.08542026579380035, - 0.05749116837978363, - 0.03623643517494202, - 0.022235840559005737, - 0.015871286392211914, - 0.017316430807113647, - 0.5870364904403687, - 0.5801565647125244, - 0.5656940937042236, - 0.5440435409545898, - 0.5157954692840576, - 0.4817204475402832, - 0.44274792075157166, - 0.39994099736213684, - 0.3544672727584839, - 0.3075672388076782, - 0.2605201303958893, - 0.214609295129776, - 0.17108707129955292, - 0.1311406046152115, - 0.0958595722913742, - 0.06620633602142334, - 0.04298973083496094, - 0.02684304118156433, - 0.018206745386123657, - 0.017316430807113647, - 0.5870364904403687, - 0.5828165411949158, - 0.5709415078163147, - 0.5517352223396301, - 0.5257216691970825, - 0.4936103820800781, - 0.4562772512435913, - 0.4147406816482544, - 0.370133638381958, - 0.323672890663147, - 0.27662578225135803, - 0.23027564585208893, - 0.18588677048683167, - 0.14466995000839233, - 0.10774952173233032, - 0.07613255083560944, - 0.05068144202232361, - 0.03209048509597778, - 0.020866751670837402, - 0.017316430807113647, - 0.5870364904403687, - 0.5855128169059753, - 0.576260507106781, - 0.5595318675041199, - 0.5357832908630371, - 0.5056625008583069, - 0.46999114751815796, - 0.4297422170639038, - 0.3860136866569519, - 0.3399982452392578, - 0.29295113682746887, - 0.24615567922592163, - 0.20088830590248108, - 0.1583838164806366, - 0.11980162560939789, - 0.08619414269924164, - 0.05847807228565216, - 0.037409454584121704, - 0.023563027381896973, - 0.017316430807113647, - 0.5870364904403687, - 0.5879532098770142, - 0.5810747146606445, - 0.5665885210037231, - 0.5448899269104004, - 0.5165707468986511, - 0.482403427362442, - 0.44331997632980347, - 0.4003865420818329, - 0.35477414727211, - 0.30772703886032104, - 0.2605285346508026, - 0.21446606516838074, - 0.17079611122608185, - 0.13070988655090332, - 0.09530080854892731, - 0.06553474068641663, - 0.04222363233566284, - 0.026003390550613403, - 0.017316430807113647, - 0.5870364904403687, - 0.589873194694519, - 0.5848623514175415, - 0.5721405148506165, - 0.552054762840271, - 0.5251530408859253, - 0.4921690821647644, - 0.45400261878967285, - 0.4116947054862976, - 0.3663994371891022, - 0.31935232877731323, - 0.27183669805526733, - 0.22514867782592773, - 0.18056175112724304, - 0.1392921805381775, - 0.1024656593799591, - 0.07108671963214874, - 0.0460112988948822, - 0.027923405170440674, - 0.017316430807113647, - 0.5870364904403687, - 0.5910648107528687, - 0.5872130393981934, - 0.575586199760437, - 0.5565014481544495, - 0.530479371547699, - 0.4982298016548157, - 0.46063244342803955, - 0.4187127649784088, - 0.3736143112182617, - 0.3265671730041504, - 0.27885475754737854, - 0.23177850246429443, - 0.1866225004196167, - 0.14461852610111237, - 0.10691231489181519, - 0.07453237473964691, - 0.04836198687553406, - 0.029114991426467896, - 0.017316430807113647, - 0.5870364904403687, - 0.5913988351821899, - 0.5878720283508301, - 0.576552152633667, - 0.557748019695282, - 0.5319725275039673, - 0.49992889165878296, - 0.4624910354614258, - 0.4206801950931549, - 0.37563690543174744, - 0.3285897970199585, - 0.28082218766212463, - 0.23363709449768066, - 0.1883215606212616, - 0.14611171185970306, - 0.1081588864326477, - 0.07549832761287689, - 0.049020975828170776, - 0.029449045658111572, - 0.017316430807113647, - 0.5870364904403687, - 0.590839147567749, - 0.5867679119110107, - 0.574933648109436, - 0.5556594133377075, - 0.5294708013534546, - 0.4970821142196655, - 0.4593769907951355, - 0.4173838198184967, - 0.3722480833530426, - 0.32520097494125366, - 0.27752581238746643, - 0.23052306473255157, - 0.18547481298446655, - 0.1436099261045456, - 0.10607029497623444, - 0.0738798975944519, - 0.04791685938835144, - 0.028889358043670654, - 0.017316430807113647, - 0.5870364904403687, - 0.5894463658332825, - 0.5840203166007996, - 0.5709062814712524, - 0.550462007522583, - 0.5232451558113098, - 0.48999810218811035, - 0.45162779092788696, - 0.40918081998825073, - 0.363815039396286, - 0.31676793098449707, - 0.26932281255722046, - 0.22277384996414185, - 0.178390771150589, - 0.13738428056240082, - 0.10087285935878754, - 0.06985247135162354, - 0.04516926407814026, - 0.0274965763092041, - 0.017316430807113647, - 0.5870364904403687, - 0.5873714089393616, - 0.5799269676208496, - 0.5649062395095825, - 0.5427189469337463, - 0.5139702558517456, - 0.47944438457489014, - 0.4400831460952759, - 0.3969601094722748, - 0.35125166177749634, - 0.3042045533657074, - 0.2571021318435669, - 0.21122920513153076, - 0.16783708333969116, - 0.128109410405159, - 0.09312981367111206, - 0.063852459192276, - 0.04107597470283508, - 0.025421619415283203, - 0.017316430807113647, - 0.5870364904403687, - 0.5848391652107239, - 0.5749315023422241, - 0.5575838685035706, - 0.5332694053649902, - 0.5026512742042542, - 0.46656471490859985, - 0.4259940981864929, - 0.38204601407051086, - 0.3359193503856659, - 0.28887224197387695, - 0.24218803644180298, - 0.1971401572227478, - 0.1549573838710785, - 0.11679039895534515, - 0.08368024230003357, - 0.056530073285102844, - 0.036080509424209595, - 0.02288934588432312, - 0.017316430807113647, - 0.5870364904403687, - 0.5821239948272705, - 0.569575309753418, - 0.5497325658798218, - 0.5231372714042664, - 0.49051469564437866, - 0.4527547359466553, - 0.4108874201774597, - 0.3660547137260437, - 0.3194795846939087, - 0.27243250608444214, - 0.22619672119617462, - 0.1820334792137146, - 0.1411474198102951, - 0.10465383529663086, - 0.07354813814163208, - 0.048678815364837646, - 0.03072422742843628, - 0.02017417550086975, - 0.017316430807113647, - 0.5870364904403687, - 0.5795201659202576, - 0.5644386410713196, - 0.5422033071517944, - 0.5134206414222717, - 0.4788757860660553, - 0.4395110607147217, - 0.39640018343925476, - 0.3507191240787506, - 0.30371394753456116, - 0.2566668391227722, - 0.21086113154888153, - 0.16754625737667084, - 0.12790372967720032, - 0.0930149257183075, - 0.06383149325847626, - 0.04114949703216553, - 0.025587618350982666, - 0.01757034659385681, - 0.017316430807113647 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.2203463315963745, - -1.2034549713134766, - -1.1884719133377075, - -1.175805926322937, - -1.1658025979995728, - -1.158734679222107, - -1.1547949314117432, - -1.1540908813476562, - -1.1566418409347534, - -1.1623780727386475, - -1.1711430549621582, - -1.1826978921890259, - -1.1967272758483887, - -1.2128485441207886, - -1.2306220531463623, - -1.2495627403259277, - -1.2691543102264404, - -1.2888619899749756, - -1.3081483840942383, - -1.326487421989441, - -1.2203463315963745, - -1.1996062994003296, - -1.1808795928955078, - -1.1646770238876343, - -1.1514406204223633, - -1.1415314674377441, - -1.1352198123931885, - -1.132677674293518, - -1.1339746713638306, - -1.1390752792358398, - -1.1478402614593506, - -1.160030722618103, - -1.1753140687942505, - -1.1932734251022339, - -1.2134188413619995, - -1.2352008819580078, - -1.2580254077911377, - -1.2812696695327759, - -1.3042997121810913, - -1.326487421989441, - -1.2203463315963745, - -1.198083519935608, - -1.1778756380081177, - -1.1602739095687866, - -1.1457583904266357, - -1.1347250938415527, - -1.1274749040603638, - -1.1242057085037231, - -1.1250064373016357, - -1.1298556327819824, - -1.1386206150054932, - -1.1510626077651978, - -1.1668421030044556, - -1.1855286359786987, - -1.206612467765808, - -1.2295186519622803, - -1.25362229347229, - -1.2782657146453857, - -1.3027770519256592, - -1.326487421989441, - -1.2203463315963745, - -1.199051856994629, - -1.1797857284545898, - -1.1630737781524658, - -1.14937162399292, - -1.1390531063079834, - -1.1323996782302856, - -1.129592776298523, - -1.1307090520858765, - -1.1357181072235107, - -1.1444830894470215, - -1.1567652225494385, - -1.1722291707992554, - -1.190453290939331, - -1.2109404802322388, - -1.233131766319275, - -1.2564220428466797, - -1.280175805091858, - -1.3037452697753906, - -1.326487421989441, - -1.2203463315963745, - -1.2024060487747192, - -1.1864027976989746, - -1.1727731227874756, - -1.161888599395752, - -1.1540464162826538, - -1.1494601964950562, - -1.1482553482055664, - -1.1504645347595215, - -1.1560274362564087, - -1.164792537689209, - -1.176520586013794, - -1.1908917427062988, - -1.2075139284133911, - -1.2259337902069092, - -1.2456488609313965, - -1.2661213874816895, - -1.2867928743362427, - -1.3070995807647705, - -1.326487421989441, - -1.2203463315963745, - -1.2077828645706177, - -1.197009801864624, - -1.1883208751678467, - -1.1819530725479126, - -1.1780803203582764, - -1.1768079996109009, - -1.178170919418335, - -1.1821318864822388, - -1.1885828971862793, - -1.1973479986190796, - -1.2081880569458008, - -1.2208073139190674, - -1.2348616123199463, - -1.2499676942825317, - -1.2657133340835571, - -1.2816691398620605, - -1.297399878501892, - -1.312476396560669, - -1.326487421989441, - -1.2203463315963745, - -1.214599609375, - -1.2104572057724, - -1.208032250404358, - -1.2073907852172852, - -1.2085503339767456, - -1.2114793062210083, - -1.2160977125167847, - -1.222279667854309, - -1.2298564910888672, - -1.2386215925216675, - -1.2483357191085815, - -1.258734107017517, - -1.2695329189300537, - -1.280437707901001, - -1.2911510467529297, - -1.3013805150985718, - -1.310847282409668, - -1.3192930221557617, - -1.326487421989441, - -1.2203463315963745, - -1.2221174240112305, - -1.225287914276123, - -1.2297711372375488, - -1.2354450225830078, - -1.242154598236084, - -1.2497169971466064, - -1.2579257488250732, - -1.2665570974349976, - -1.2753756046295166, - -1.284140706062317, - -1.2926132678985596, - -1.3005621433258057, - -1.3077706098556519, - -1.3140419721603394, - -1.3192052841186523, - -1.3231195211410522, - -1.3256779909133911, - -1.3268109560012817, - -1.326487421989441, - -1.2203463315963745, - -1.2295218706130981, - -1.2398947477340698, - -1.251181960105896, - -1.2630757093429565, - -1.2752516269683838, - -1.2873773574829102, - -1.2991223335266113, - -1.3101662397384644, - -1.3202075958251953, - -1.3289726972579956, - -1.3362222909927368, - -1.3417587280273438, - -1.3454310894012451, - -1.3471390008926392, - -1.346835970878601, - -1.3445302248001099, - -1.340284824371338, - -1.3342152833938599, - -1.326487421989441, - -1.2203463315963745, - -1.2360103130340576, - -1.2526947259902954, - -1.269944429397583, - -1.2872886657714844, - -1.3042546510696411, - -1.3203794956207275, - -1.3352231979370117, - -1.3483810424804688, - -1.3594940900802612, - -1.3682591915130615, - -1.3744372129440308, - -1.3778595924377441, - -1.378433108329773, - -1.376142144203186, - -1.371048927307129, - -1.3632926940917969, - -1.3530848026275635, - -1.3407038450241089, - -1.326487421989441, - -1.2203463315963745, - -1.2408798933029175, - -1.262300968170166, - -1.2840251922607422, - -1.3054600954055786, - -1.3260209560394287, - -1.345146894454956, - -1.3623162508010864, - -1.3770606517791748, - -1.3889778852462769, - -1.3977429866790771, - -1.4031167030334473, - -1.4049526453018188, - -1.403200626373291, - -1.397908329963684, - -1.3892203569412231, - -1.377373456954956, - -1.362691044807434, - -1.3455733060836792, - -1.326487421989441, - -1.2203463315963745, - -1.2436026334762573, - -1.2676723003387451, - -1.2918986082077026, - -1.31562077999115, - -1.3381917476654053, - -1.358995795249939, - -1.3774654865264893, - -1.3930970430374146, - -1.4054639339447021, - -1.4142290353775024, - -1.419153094291687, - -1.4201018810272217, - -1.417049527168274, - -1.4100791215896606, - -1.3993810415267944, - -1.3852468729019165, - -1.3680623769760132, - -1.3482961654663086, - -1.326487421989441, - -1.2203463315963745, - -1.243883728981018, - -1.2682267427444458, - -1.2927113771438599, - -1.3166695833206177, - -1.339448094367981, - -1.360425353050232, - -1.3790292739868164, - -1.3947523832321167, - -1.407165765762329, - -1.4159308671951294, - -1.4208085536956787, - -1.4216656684875488, - -1.418479084968567, - -1.4113354682922363, - -1.4004298448562622, - -1.3860596418380737, - -1.3686168193817139, - -1.3485772609710693, - -1.326487421989441, - -1.2203463315963745, - -1.2416925430297852, - -1.2639042139053345, - -1.2863754034042358, - -1.3084930181503296, - -1.3296538591384888, - -1.3492807149887085, - -1.3668382167816162, - -1.3818473815917969, - -1.393898844718933, - -1.4026639461517334, - -1.4079034328460693, - -1.4094746112823486, - -1.407334327697754, - -1.4015412330627441, - -1.3922532796859741, - -1.3797236680984497, - -1.3642942905426025, - -1.3463860750198364, - -1.326487421989441, - -1.2203463315963745, - -1.2372666597366333, - -1.2551732063293457, - -1.2735772132873535, - -1.2919769287109375, - -1.3098703622817993, - -1.326769471168518, - -1.3422132730484009, - -1.3557804822921753, - -1.3671009540557861, - -1.3758660554885864, - -1.3818365335464478, - -1.3848496675491333, - -1.384823203086853, - -1.3817578554153442, - -1.375737190246582, - -1.366925597190857, - -1.3555632829666138, - -1.3419601917266846, - -1.326487421989441, - -1.2203463315963745, - -1.2310856580734253, - -1.242979645729065, - -1.2557039260864258, - -1.268911361694336, - -1.282241702079773, - -1.2953312397003174, - -1.3078230619430542, - -1.3193764686584473, - -1.3296760320663452, - -1.3384411334991455, - -1.3454325199127197, - -1.3504594564437866, - -1.3533849716186523, - -1.3541290760040283, - -1.3526716232299805, - -1.3490521907806396, - -1.343369722366333, - -1.335779070854187, - -1.326487421989441, - -1.2203463315963745, - -1.2238192558288574, - -1.2286450862884521, - -1.2346922159194946, - -1.241795539855957, - -1.2497614622116089, - -1.2583726644515991, - -1.2673941850662231, - -1.2765800952911377, - -1.285679578781128, - -1.2944446802139282, - -1.3026361465454102, - -1.3100305795669556, - -1.316426396369934, - -1.3216488361358643, - -1.3255558013916016, - -1.3280404806137085, - -1.3290351629257202, - -1.3285126686096191, - -1.326487421989441, - -1.2203463315963745, - -1.2162549495697021, - -1.213722825050354, - -1.21281898021698, - -1.213568091392517, - -1.2159496545791626, - -1.2198988199234009, - -1.225307822227478, - -1.2320291996002197, - -1.2398793697357178, - -1.248644471168518, - -1.2580852508544922, - -1.2679442167282104, - -1.2779525518417358, - -1.287837028503418, - -1.297328233718872, - -1.3061672449111938, - -1.314112901687622, - -1.3209483623504639, - -1.326487421989441, - -1.2203463315963745, - -1.2092124223709106, - -1.1998299360275269, - -1.1924545764923096, - -1.1872878074645996, - -1.184470295906067, - -1.1840790510177612, - -1.1861246824264526, - -1.190551519393921, - -1.197238564491272, - -1.2060036659240723, - -1.2166075706481934, - -1.228761076927185, - -1.2421326637268066, - -1.2563576698303223, - -1.2710479497909546, - -1.285802960395813, - -1.300220012664795, - -1.313905954360962, - -1.326487421989441, - -1.2203463315963745, - -1.2034549713134766, - -1.1884719133377075, - -1.175805926322937, - -1.1658025979995728, - -1.1587345600128174, - -1.1547949314117432, - -1.1540908813476562, - -1.1566417217254639, - -1.162377953529358, - -1.1711430549621582, - -1.1826978921890259, - -1.1967272758483887, - -1.2128485441207886, - -1.2306220531463623, - -1.2495627403259277, - -1.2691541910171509, - -1.2888619899749756, - -1.3081483840942383, - -1.326487421989441 - ], - "y": [ - 0.8143453598022461, - 0.8717841506004333, - 0.9299066662788391, - 0.9871275424957275, - 1.0418859720230103, - 1.0926882028579712, - 1.138148546218872, - 1.1770268678665161, - 1.2082629203796387, - 1.231004238128662, - 1.2446309328079224, - 1.2487711906433105, - 1.243311882019043, - 1.228402018547058, - 1.2044483423233032, - 1.1721043586730957, - 1.1322519779205322, - 1.0859787464141846, - 1.0345464944839478, - 0.9793582558631897, - 0.8143453598022461, - 0.8674553036689758, - 0.9213671088218689, - 0.9746102094650269, - 1.0257322788238525, - 1.0733387470245361, - 1.1161311864852905, - 1.152942180633545, - 1.1827678680419922, - 1.2047944068908691, - 1.2184209823608398, - 1.223276138305664, - 1.2192271947860718, - 1.2063846588134766, - 1.1850990056991577, - 1.155950665473938, - 1.119734764099121, - 1.0774391889572144, - 1.0302176475524902, - 0.9793582558631897, - 0.8143453598022461, - 0.8574931621551514, - 0.901714563369751, - 0.9458033442497253, - 0.9885568022727966, - 1.028808832168579, - 1.0654613971710205, - 1.0975147485733032, - 1.1240946054458618, - 1.1444756984710693, - 1.1581023931503296, - 1.1646028757095337, - 1.16379976272583, - 1.155714988708496, - 1.1405690908432007, - 1.1187752485275269, - 1.0909278392791748, - 1.0577865839004517, - 1.0202555656433105, - 0.9793582558631897, - 0.8143453598022461, - 0.8429772257804871, - 0.8730786442756653, - 0.9038285613059998, - 0.9343881607055664, - 0.9639238715171814, - 0.991629958152771, - 1.0167508125305176, - 1.0386011600494385, - 1.0565848350524902, - 1.0702115297317505, - 1.0791094303131104, - 1.0830358266830444, - 1.0818835496902466, - 1.0756840705871582, - 1.0646065473556519, - 1.0489530563354492, - 1.0291507244110107, - 1.0057395696640015, - 0.9793582558631897, - 0.8143453598022461, - 0.825480580329895, - 0.838562548160553, - 0.8532345294952393, - 0.8690962195396423, - 0.8857150673866272, - 0.9026376605033875, - 0.9194024801254272, - 0.9355521202087402, - 0.950646162033081, - 0.9642728567123413, - 0.9760603904724121, - 0.9856873750686646, - 0.9928911924362183, - 0.997475266456604, - 0.9993146061897278, - 0.9983590245246887, - 0.9946345686912537, - 0.9882428646087646, - 0.9793582558631897, - 0.8143454194068909, - 0.8068991303443909, - 0.8019065260887146, - 0.7995038032531738, - 0.7997564673423767, - 0.8026576638221741, - 0.8081282377243042, - 0.8160189390182495, - 0.8261145353317261, - 0.8381396532058716, - 0.8517663478851318, - 0.866622805595398, - 0.8823038339614868, - 0.8983817100524902, - 0.9144178628921509, - 0.9299748539924622, - 0.9446282982826233, - 0.9579786062240601, - 0.9696614742279053, - 0.9793583154678345, - 0.8143454194068909, - 0.7892465591430664, - 0.767082929611206, - 0.7484590411186218, - 0.7338829040527344, - 0.7237522006034851, - 0.7183431386947632, - 0.7178033590316772, - 0.722147524356842, - 0.7312572002410889, - 0.7448838353157043, - 0.7626557946205139, - 0.7840882539749146, - 0.8085966110229492, - 0.8355123400688171, - 0.8641012907028198, - 0.8935835361480713, - 0.9231549501419067, - 0.9520089030265808, - 0.9793583154678345, - 0.8143454194068909, - 0.7744357585906982, - 0.7378653883934021, - 0.705631673336029, - 0.6786139607429504, - 0.657549262046814, - 0.6430120468139648, - 0.6353989839553833, - 0.6349176168441772, - 0.6415811777114868, - 0.6552078127861023, - 0.6754258871078491, - 0.7016838788986206, - 0.7332655787467957, - 0.769309401512146, - 0.8088323473930359, - 0.8507561683654785, - 0.8939374089241028, - 0.9371981024742126, - 0.9793583154678345, - 0.8143454194068909, - 0.7640717625617981, - 0.7174200415611267, - 0.6756627559661865, - 0.6399388909339905, - 0.6112229824066162, - 0.5902982950210571, - 0.5777355432510376, - 0.5738774538040161, - 0.578829288482666, - 0.5924559831619263, - 0.614385724067688, - 0.6440204381942749, - 0.6805517673492432, - 0.722983181476593, - 0.7701572775840759, - 0.820787250995636, - 0.8734920620918274, - 0.9268341064453125, - 0.9793583154678345, - 0.8143454194068909, - 0.7592776417732239, - 0.7079625129699707, - 0.6617998480796814, - 0.6220487356185913, - 0.5897935628890991, - 0.5659141540527344, - 0.5510618686676025, - 0.5456417798995972, - 0.5498018264770508, - 0.5634284615516663, - 0.586150050163269, - 0.6173467636108398, - 0.6561676263809204, - 0.7015537619590759, - 0.7522671222686768, - 0.8069243431091309, - 0.8640345931053162, - 0.9220399856567383, - 0.9793583154678345, - 0.8143454194068909, - 0.7605729103088379, - 0.7105177044868469, - 0.6655452251434326, - 0.6268821954727173, - 0.5955832004547119, - 0.572502076625824, - 0.5582683086395264, - 0.5532702803611755, - 0.557644248008728, - 0.5712709426879883, - 0.5937785506248474, - 0.6245532631874084, - 0.66275554895401, - 0.7073433995246887, - 0.757100522518158, - 0.8106697201728821, - 0.8665897250175476, - 0.9233351945877075, - 0.9793583154678345, - 0.8143454194068909, - 0.7678171396255493, - 0.7248086333274841, - 0.6864930391311646, - 0.6539154052734375, - 0.6279644966125488, - 0.6093481779098511, - 0.5985741019248962, - 0.5959363579750061, - 0.6015067100524902, - 0.6151334047317505, - 0.636444628238678, - 0.6648590564727783, - 0.6996016502380371, - 0.7397246956825256, - 0.784133791923523, - 0.831617534160614, - 0.8808806538581848, - 0.9305794835090637, - 0.9793583154678345, - 0.8143454194068909, - 0.780225396156311, - 0.7492867112159729, - 0.7223731875419617, - 0.7002189755439758, - 0.6834284663200378, - 0.6724595427513123, - 0.6676114201545715, - 0.6690163612365723, - 0.6766360998153687, - 0.6902627944946289, - 0.7095246315002441, - 0.7338963150978088, - 0.7627130150794983, - 0.7951886057853699, - 0.8304373621940613, - 0.8674976825714111, - 0.9053587317466736, - 0.9429877400398254, - 0.9793583154678345, - 0.8143454194068909, - 0.796453058719635, - 0.781299352645874, - 0.7692976593971252, - 0.7607752680778503, - 0.7559646964073181, - 0.7549971342086792, - 0.7578990459442139, - 0.7645912170410156, - 0.7748910784721375, - 0.7885177135467529, - 0.8050994277000427, - 0.8241839408874512, - 0.84525066614151, - 0.8677248954772949, - 0.890993595123291, - 0.9144221544265747, - 0.9373714327812195, - 0.9592154026031494, - 0.9793583154678345, - 0.8143453598022461, - 0.8147415518760681, - 0.8173774480819702, - 0.822181224822998, - 0.8290218114852905, - 0.8377126455307007, - 0.848016619682312, - 0.8596526980400085, - 0.8723034858703613, - 0.8856238722801208, - 0.8992505073547363, - 0.9128117561340332, - 0.9259376525878906, - 0.9382701516151428, - 0.9494728446006775, - 0.959240198135376, - 0.9673057794570923, - 0.9734495282173157, - 0.9775038957595825, - 0.9793583154678345, - 0.8143453598022461, - 0.8331090211868286, - 0.8536114692687988, - 0.8752933144569397, - 0.8975632786750793, - 0.9198138117790222, - 0.9414379596710205, - 0.9618459939956665, - 0.9804810881614685, - 0.9968350529670715, - 1.010461688041687, - 1.0209894180297852, - 1.0281308889389038, - 1.031691551208496, - 1.031574010848999, - 1.02778160572052, - 1.0204178094863892, - 1.0096834897994995, - 0.995871365070343, - 0.9793582558631897, - 0.8143453598022461, - 0.8495651483535767, - 0.8860748410224915, - 0.9228784441947937, - 0.9589720964431763, - 0.993371307849884, - 1.0251376628875732, - 1.0534048080444336, - 1.0774015188217163, - 1.0964733362197876, - 1.1101000308990479, - 1.1179097890853882, - 1.119689702987671, - 1.1153912544250488, - 1.1051315069198608, - 1.0891904830932617, - 1.0680029392242432, - 1.042146921157837, - 1.0123275518417358, - 0.9793582558631897, - 0.8143453598022461, - 0.8623266220092773, - 0.9112496376037598, - 0.9597798585891724, - 1.0065935850143433, - 1.0504138469696045, - 1.09004545211792, - 1.1244070529937744, - 1.1525616645812988, - 1.173741102218628, - 1.1873677968978882, - 1.1930699348449707, - 1.1906919479370117, - 1.180298924446106, - 1.162174105644226, - 1.1368119716644287, - 1.1049044132232666, - 1.0673216581344604, - 1.025088906288147, - 0.9793582558631897, - 0.8143453598022461, - 0.870010495185852, - 0.9264077544212341, - 0.9819988012313843, - 1.0352673530578613, - 1.0847601890563965, - 1.1291273832321167, - 1.1671587228775024, - 1.1978168487548828, - 1.2202653884887695, - 1.2338919639587402, - 1.2383251190185547, - 1.2334436178207397, - 1.2193808555603027, - 1.196520447731018, - 1.1654856204986572, - 1.1271233558654785, - 1.0824798345565796, - 1.0327727794647217, - 0.9793582558631897, - 0.8143453598022461, - 0.8717841506004333, - 0.9299066662788391, - 0.9871275424957275, - 1.0418859720230103, - 1.0926880836486816, - 1.138148546218872, - 1.1770268678665161, - 1.2082629203796387, - 1.231004238128662, - 1.2446309328079224, - 1.2487711906433105, - 1.2433117628097534, - 1.228402018547058, - 1.2044483423233032, - 1.1721043586730957, - 1.1322519779205322, - 1.0859787464141846, - 1.0345464944839478, - 0.9793582558631897 - ], - "z": [ - 0.7442243099212646, - 0.7512127757072449, - 0.7491462230682373, - 0.7380810976028442, - 0.7183191180229187, - 0.6903994083404541, - 0.6550835371017456, - 0.6133348941802979, - 0.5662921071052551, - 0.5152385234832764, - 0.4615667164325714, - 0.4067407250404358, - 0.35225600004196167, - 0.2995987832546234, - 0.25020545721054077, - 0.20542331039905548, - 0.1664738655090332, - 0.13441956043243408, - 0.11013481020927429, - 0.09428200125694275, - 0.7442243099212646, - 0.7494852542877197, - 0.7457382678985596, - 0.7330856323242188, - 0.7118724584579468, - 0.6826773881912231, - 0.6462968587875366, - 0.6037231087684631, - 0.5561174750328064, - 0.5047786235809326, - 0.4511067867279053, - 0.39656609296798706, - 0.34264424443244934, - 0.29081207513809204, - 0.2424834668636322, - 0.19897665083408356, - 0.1614784300327301, - 0.13101157546043396, - 0.10840725898742676, - 0.09428200125694275, - 0.7442243099212646, - 0.7467073202133179, - 0.7402581572532654, - 0.7250528335571289, - 0.7015061378479004, - 0.6702602505683899, - 0.6321675777435303, - 0.5882671475410461, - 0.5397564172744751, - 0.48795872926712036, - 0.4342869222164154, - 0.38020503520965576, - 0.32718825340270996, - 0.2766827940940857, - 0.23006628453731537, - 0.1886102855205536, - 0.15344560146331787, - 0.12553146481513977, - 0.1056293249130249, - 0.09428200125694275, - 0.7442243099212646, - 0.743179976940155, - 0.733299732208252, - 0.7148531675338745, - 0.688343346118927, - 0.6544934511184692, - 0.6142268180847168, - 0.5686418414115906, - 0.51898193359375, - 0.4666016399860382, - 0.41292983293533325, - 0.3594305217266083, - 0.30756300687789917, - 0.258742094039917, - 0.2142995148897171, - 0.1754475235939026, - 0.14324593544006348, - 0.11857306957244873, - 0.10210201144218445, - 0.09428200125694275, - 0.7442243099212646, - 0.7392855882644653, - 0.7256171107292175, - 0.7035918235778809, - 0.673810601234436, - 0.6370856761932373, - 0.5944188833236694, - 0.5469739437103271, - 0.49604517221450806, - 0.4430217146873474, - 0.38934990763664246, - 0.33649376034736633, - 0.28589510917663574, - 0.23893408477306366, - 0.19689172506332397, - 0.16091477870941162, - 0.1319846510887146, - 0.11089041829109192, - 0.09820759296417236, - 0.09428200125694275, - 0.7442243099212646, - 0.7354459762573242, - 0.71804279088974, - 0.6924893260002136, - 0.6594827175140381, - 0.6199232935905457, - 0.5748900771141052, - 0.5256115198135376, - 0.4734317660331726, - 0.4197741746902466, - 0.3661023676395416, - 0.3138803541660309, - 0.2645326554775238, - 0.21940532326698303, - 0.17972932755947113, - 0.14658692479133606, - 0.12088212370872498, - 0.10331609845161438, - 0.09436804056167603, - 0.09428200125694275, - 0.7442243099212646, - 0.7320774793624878, - 0.7113975286483765, - 0.6827486753463745, - 0.6469123959541321, - 0.604866087436676, - 0.557756781578064, - 0.5068694949150085, - 0.4535922110080719, - 0.3993782699108124, - 0.3457064628601074, - 0.2940407991409302, - 0.24579061567783356, - 0.20227202773094177, - 0.1646721363067627, - 0.13401654362678528, - 0.11114147305488586, - 0.09667086601257324, - 0.09099948406219482, - 0.09428200125694275, - 0.7442243099212646, - 0.7295448780059814, - 0.706401526927948, - 0.6754254698753357, - 0.6374617218971252, - 0.5935457944869995, - 0.5448756217956543, - 0.49277883768081665, - 0.4386764168739319, - 0.38404420018196106, - 0.3303723931312561, - 0.27912500500679016, - 0.23169995844364166, - 0.1893908679485321, - 0.15335184335708618, - 0.12456589937210083, - 0.10381826758384705, - 0.09167483448982239, - 0.08846694231033325, - 0.09428200125694275, - 0.7442243099212646, - 0.7281228303909302, - 0.7035961151123047, - 0.6713132858276367, - 0.6321548819541931, - 0.5871890783309937, - 0.5376424789428711, - 0.48486649990081787, - 0.4303007423877716, - 0.37543365359306335, - 0.3217618465423584, - 0.2707493305206299, - 0.22378763556480408, - 0.1821577101945877, - 0.1469951570034027, - 0.1192590594291687, - 0.09970605373382568, - 0.08886942267417908, - 0.08704483509063721, - 0.09428200125694275, - 0.7442243099212646, - 0.727965235710144, - 0.7032853364944458, - 0.6708576679229736, - 0.6315670013427734, - 0.5864849090576172, - 0.5368411540985107, - 0.4839899241924286, - 0.4293728470802307, - 0.3744797110557556, - 0.32080790400505066, - 0.269821435213089, - 0.2229110598564148, - 0.18135637044906616, - 0.14629092812538147, - 0.11867114901542664, - 0.09925046563148499, - 0.0885586142539978, - 0.08688727021217346, - 0.09428200125694275, - 0.7442243099212646, - 0.7290893197059631, - 0.7055028080940247, - 0.67410808801651, - 0.6357616782188416, - 0.5915094017982483, - 0.542558491230011, - 0.4902440905570984, - 0.4359932541847229, - 0.38128578662872314, - 0.3276139795780182, - 0.2764418423175812, - 0.2291652262210846, - 0.1870737075805664, - 0.15131545066833496, - 0.12286585569381714, - 0.10250091552734375, - 0.09077611565589905, - 0.08801135420799255, - 0.09428200125694275, - 0.7442243099212646, - 0.7313731908798218, - 0.7100082635879517, - 0.6807123422622681, - 0.6442844271659851, - 0.6017182469367981, - 0.5541749000549316, - 0.5029512643814087, - 0.44944456219673157, - 0.39511430263519287, - 0.3414424657821655, - 0.28989315032958984, - 0.2418724000453949, - 0.19869014620780945, - 0.16152429580688477, - 0.1313886046409607, - 0.10910511016845703, - 0.09528160095214844, - 0.09029525518417358, - 0.09428200125694275, - 0.7442243099212646, - 0.7345694303512573, - 0.7163135409355164, - 0.6899545788764954, - 0.6562116742134094, - 0.6160050630569458, - 0.570431649684906, - 0.520734429359436, - 0.46826907992362976, - 0.4144667088985443, - 0.36079490184783936, - 0.30871766805648804, - 0.25965556502342224, - 0.21494685113430023, - 0.17581111192703247, - 0.14331582188606262, - 0.1183474063873291, - 0.10158684849739075, - 0.09349146485328674, - 0.09428200125694275, - 0.7442243099212646, - 0.7383316159248352, - 0.7237353324890137, - 0.7008334398269653, - 0.6702508926391602, - 0.6328217387199402, - 0.5895669460296631, - 0.5416665077209473, - 0.4904269278049469, - 0.4372459053993225, - 0.38357409834861755, - 0.3308755159378052, - 0.28058764338493347, - 0.2340822070837021, - 0.19262777268886566, - 0.15735507011413574, - 0.12922626733779907, - 0.10900861024856567, - 0.09725365042686462, - 0.09428200125694275, - 0.7442243099212646, - 0.7422521114349365, - 0.7314692735671997, - 0.7121700048446655, - 0.6848807334899902, - 0.6503458023071289, - 0.6095073223114014, - 0.5634791851043701, - 0.513516902923584, - 0.46098339557647705, - 0.4073115587234497, - 0.35396549105644226, - 0.30240029096603394, - 0.2540225386619568, - 0.21015185117721558, - 0.17198488116264343, - 0.1405627727508545, - 0.11674255132675171, - 0.10117411613464355, - 0.09428200125694275, - 0.7442243099212646, - 0.7459059953689575, - 0.7386773824691772, - 0.7227356433868408, - 0.698515772819519, - 0.6666783094406128, - 0.6280918121337891, - 0.5838086605072021, - 0.5350368618965149, - 0.4831068217754364, - 0.42943501472473145, - 0.37548547983169556, - 0.32272979617118835, - 0.2726070284843445, - 0.22648438811302185, - 0.18561996519565582, - 0.15112844109535217, - 0.12395066022872925, - 0.10482800006866455, - 0.09428200125694275, - 0.7442243099212646, - 0.7488973140716553, - 0.74457848072052, - 0.7313855886459351, - 0.7096785306930542, - 0.6800494194030762, - 0.6433064937591553, - 0.6004520058631897, - 0.5526548624038696, - 0.501218855381012, - 0.447547048330307, - 0.3931034505367279, - 0.3393731713294983, - 0.28782176971435547, - 0.23985549807548523, - 0.19678272306919098, - 0.15977835655212402, - 0.1298517882823944, - 0.10781934857368469, - 0.09428200125694275, - 0.7442243099212646, - 0.750901997089386, - 0.7485331296920776, - 0.7371823787689209, - 0.7171593308448792, - 0.6890101432800293, - 0.6535027623176575, - 0.6116056442260742, - 0.5644616484642029, - 0.5133566856384277, - 0.45968490839004517, - 0.40491020679473877, - 0.3505267798900604, - 0.2980179786682129, - 0.24881622195243835, - 0.20426350831985474, - 0.16557514667510986, - 0.13380643725395203, - 0.1098240315914154, - 0.09428200125694275, - 0.7442243099212646, - 0.7517027258872986, - 0.750112771987915, - 0.7394977807998657, - 0.7201474905014038, - 0.6925894021987915, - 0.6575755476951599, - 0.6160608530044556, - 0.5691777467727661, - 0.5182050466537476, - 0.464533269405365, - 0.4096263349056244, - 0.3549819886684418, - 0.30209076404571533, - 0.25239551067352295, - 0.2072516232728958, - 0.16789060831069946, - 0.13538607954978943, - 0.110624760389328, - 0.09428200125694275, - 0.7442243099212646, - 0.7512127757072449, - 0.7491462230682373, - 0.7380810976028442, - 0.7183191180229187, - 0.6903994083404541, - 0.6550835371017456, - 0.6133348941802979, - 0.5662921071052551, - 0.5152385234832764, - 0.4615667164325714, - 0.4067406952381134, - 0.35225600004196167, - 0.2995987832546234, - 0.25020545721054077, - 0.2054232954978943, - 0.1664738655090332, - 0.13441956043243408, - 0.11013481020927429, - 0.09428200125694275 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.3489758968353271, - -1.3333752155303955, - -1.3191345930099487, - -1.3066426515579224, - -1.2962400913238525, - -1.2882106304168701, - -1.2827733755111694, - -1.280076503753662, - -1.280193567276001, - -1.2831215858459473, - -1.2887805700302124, - -1.2970161437988281, - -1.3076035976409912, - -1.3202543258666992, - -1.3346229791641235, - -1.3503178358078003, - -1.366910696029663, - -1.3839490413665771, - -1.4009679555892944, - -1.4175033569335938, - -1.3489758968353271, - -1.3308148384094238, - -1.3140838146209717, - -1.299239158630371, - -1.2866857051849365, - -1.276766061782837, - -1.2697508335113525, - -1.2658312320709229, - -1.265114188194275, - -1.267619252204895, - -1.2732782363891602, - -1.2819366455078125, - -1.293358325958252, - -1.3072316646575928, - -1.3231784105300903, - -1.3407634496688843, - -1.3595070838928223, - -1.3788981437683105, - -1.3984075784683228, - -1.4175033569335938, - -1.3489758968353271, - -1.330273151397705, - -1.3130152225494385, - -1.2976727485656738, - -1.2846643924713135, - -1.2743449211120605, - -1.2669956684112549, - -1.2628173828125, - -1.261923909187317, - -1.264339566230774, - -1.269998550415039, - -1.2787463665008545, - -1.290344476699829, - -1.3044766187667847, - -1.3207571506500244, - -1.3387421369552612, - -1.3579407930374146, - -1.3778295516967773, - -1.397865891456604, - -1.4175033569335938, - -1.3489758968353271, - -1.3318089246749878, - -1.3160446882247925, - -1.30211341381073, - -1.2903951406478882, - -1.2812093496322632, - -1.2748066186904907, - -1.2713617086410522, - -1.2709685564041138, - -1.2736378908157349, - -1.279296875, - -1.2877910137176514, - -1.298888921737671, - -1.3122875690460205, - -1.3276216983795166, - -1.344472885131836, - -1.3623814582824707, - -1.380859136581421, - -1.3994016647338867, - -1.4175033569335938, - -1.3489758968353271, - -1.33525550365448, - -1.3228440284729004, - -1.312079906463623, - -1.303256869316101, - -1.2966156005859375, - -1.29233717918396, - -1.2905383110046387, - -1.2912681102752686, - -1.2945066690444946, - -1.3001656532287598, - -1.3080905675888062, - -1.3180654048919678, - -1.3298181295394897, - -1.343027949333191, - -1.3573346138000488, - -1.3723479509353638, - -1.3876583576202393, - -1.4028483629226685, - -1.4175033569335938, - -1.3489758968353271, - -1.3402396440505981, - -1.3326762914657593, - -1.326492190361023, - -1.3218560218811035, - -1.3188941478729248, - -1.3176875114440918, - -1.3182690143585205, - -1.3206226825714111, - -1.3246843814849854, - -1.3303433656692505, - -1.3374451398849487, - -1.3457961082458496, - -1.3551684617996216, - -1.3653064966201782, - -1.3759337663650513, - -1.3867602348327637, - -1.3974907398223877, - -1.407832384109497, - -1.4175033569335938, - -1.3489758968353271, - -1.3462210893630981, - -1.3444761037826538, - -1.3437883853912354, - -1.3441768884658813, - -1.3456308841705322, - -1.3481106758117676, - -1.3515487909317017, - -1.3558512926101685, - -1.36090087890625, - -1.3665598630905151, - -1.372673749923706, - -1.3790758848190308, - -1.3855916261672974, - -1.3920432329177856, - -1.398254632949829, - -1.404056429862976, - -1.4092904329299927, - -1.413813829421997, - -1.4175033569335938, - -1.3489758968353271, - -1.3525516986846924, - -1.3569647073745728, - -1.3620942831039429, - -1.3678007125854492, - -1.373928189277649, - -1.380309820175171, - -1.3867712020874023, - -1.3931363821029663, - -1.3992315530776978, - -1.4048904180526733, - -1.409958839416504, - -1.414298415184021, - -1.4177906513214111, - -1.4203405380249023, - -1.421878457069397, - -1.4223623275756836, - -1.4217790365219116, - -1.4201445579528809, - -1.4175033569335938, - -1.3489758968353271, - -1.3585455417633057, - -1.368788719177246, - -1.379426121711731, - -1.390167474746704, - -1.4007198810577393, - -1.4107955694198608, - -1.4201195240020752, - -1.4284374713897705, - -1.4355225563049316, - -1.4411815404891968, - -1.445259928703308, - -1.4476466178894043, - -1.4482765197753906, - -1.4471322298049927, - -1.4442452192306519, - -1.4396941661834717, - -1.4336031675338745, - -1.4261382818222046, - -1.4175033569335938, - -1.3489758968353271, - -1.3635529279708862, - -1.3786669969558716, - -1.3939056396484375, - -1.408853530883789, - -1.423102617263794, - -1.4362643957138062, - -1.4479798078536987, - -1.457929253578186, - -1.465841293334961, - -1.471500277519226, - -1.4747517108917236, - -1.4755069017410278, - -1.473745346069336, - -1.4695149660110474, - -1.4629312753677368, - -1.4541736841201782, - -1.4434813261032104, - -1.4311456680297852, - -1.4175033569335938, - -1.3489758968353271, - -1.3670313358306885, - -1.3855289220809937, - -1.4039639234542847, - -1.4218337535858154, - -1.4386507272720337, - -1.4539563655853271, - -1.4673329591751099, - -1.4784157276153564, - -1.4869022369384766, - -1.4925612211227417, - -1.495238184928894, - -1.494860053062439, - -1.491437315940857, - -1.485063076019287, - -1.4759114980697632, - -1.4642319679260254, - -1.4503432512283325, - -1.4346240758895874, - -1.4175033569335938, - -1.3489758968353271, - -1.3686038255691528, - -1.3886308670043945, - -1.4085109233856201, - -1.4277015924453735, - -1.4456795454025269, - -1.4619542360305786, - -1.4760818481445312, - -1.4876768589019775, - -1.4964231252670288, - -1.502082109451294, - -1.5044993162155151, - -1.5036089420318604, - -1.4994351863861084, - -1.4920918941497803, - -1.4817793369293213, - -1.4687789678573608, - -1.453445315361023, - -1.4361965656280518, - -1.4175033569335938, - -1.3489758968353271, - -1.3680999279022217, - -1.3876368999481201, - -1.407053828239441, - -1.425821304321289, - -1.4434272050857544, - -1.4593913555145264, - -1.473278284072876, - -1.4847091436386108, - -1.4933722019195557, - -1.4990311861038208, - -1.5015316009521484, - -1.500805377960205, - -1.4968723058700562, - -1.4898395538330078, - -1.4798990488052368, - -1.4673218727111816, - -1.452451229095459, - -1.4356926679611206, - -1.4175033569335938, - -1.3489758968353271, - -1.3655742406845093, - -1.3826545476913452, - -1.3997507095336914, - -1.4163964986801147, - -1.4321378469467163, - -1.4465453624725342, - -1.459226131439209, - -1.4698342084884644, - -1.478080153465271, - -1.4837390184402466, - -1.486656665802002, - -1.486753225326538, - -1.484026312828064, - -1.4785501956939697, - -1.4704742431640625, - -1.4600187540054321, - -1.447468876838684, - -1.4331670999526978, - -1.4175033569335938, - -1.3489758968353271, - -1.3613005876541138, - -1.3742237091064453, - -1.3873927593231201, - -1.4004485607147217, - -1.4130349159240723, - -1.4248085021972656, - -1.435448169708252, - -1.4446638822555542, - -1.4522039890289307, - -1.4578628540039062, - -1.4614863395690918, - -1.4629753828048706, - -1.4622894525527954, - -1.4594472646713257, - -1.4545263051986694, - -1.4476608037948608, - -1.4390381574630737, - -1.4288933277130127, - -1.4175033569335938, - -1.3489758968353271, - -1.3557419776916504, - -1.3632581233978271, - -1.37131929397583, - -1.3797056674957275, - -1.388188362121582, - -1.3965362310409546, - -1.4045212268829346, - -1.4119257926940918, - -1.4185478687286377, - -1.4242067337036133, - -1.4287482500076294, - -1.4320483207702637, - -1.4340170621871948, - -1.4346007108688354, - -1.4337834119796753, - -1.4315873384475708, - -1.4280725717544556, - -1.4233348369598389, - -1.4175033569335938, - -1.3489758968353271, - -1.3495007753372192, - -1.350946068763733, - -1.3532721996307373, - -1.3564156293869019, - -1.3602908849716187, - -1.3647921085357666, - -1.3697965145111084, - -1.3751676082611084, - -1.3807588815689087, - -1.3864177465438843, - -1.391990065574646, - -1.3973236083984375, - -1.4022730588912964, - -1.406703233718872, - -1.4104933738708496, - -1.4135401248931885, - -1.4157603979110718, - -1.4170936346054077, - -1.4175033569335938, - -1.3489758968353271, - -1.3432533740997314, - -1.3386216163635254, - -1.3352068662643433, - -1.3331023454666138, - -1.3323653936386108, - -1.333016276359558, - -1.3350369930267334, - -1.3383725881576538, - -1.342932105064392, - -1.3485910892486572, - -1.3551950454711914, - -1.362564206123352, - -1.370497226715088, - -1.3787777423858643, - -1.3871800899505615, - -1.395474910736084, - -1.4034360647201538, - -1.41084623336792, - -1.4175033569335938, - -1.3489758968353271, - -1.337676763534546, - -1.3276203870773315, - -1.3190813064575195, - -1.3122920989990234, - -1.3074382543563843, - -1.3046520948410034, - -1.3040095567703247, - -1.305528163909912, - -1.309166669845581, - -1.3148256540298462, - -1.3223507404327393, - -1.3315366506576538, - -1.3421330451965332, - -1.3538506031036377, - -1.3663698434829712, - -1.3793492317199707, - -1.39243483543396, - -1.4052695035934448, - -1.4175033569335938, - -1.3489758968353271, - -1.3333752155303955, - -1.3191345930099487, - -1.3066426515579224, - -1.2962400913238525, - -1.2882106304168701, - -1.2827733755111694, - -1.280076503753662, - -1.280193567276001, - -1.2831215858459473, - -1.2887805700302124, - -1.2970161437988281, - -1.3076035976409912, - -1.3202542066574097, - -1.3346229791641235, - -1.3503178358078003, - -1.366910696029663, - -1.3839490413665771, - -1.4009679555892944, - -1.4175033569335938 - ], - "y": [ - 0.8279314637184143, - 0.8908002376556396, - 0.9555423855781555, - 1.0203919410705566, - 1.0835798978805542, - 1.1433827877044678, - 1.1981691122055054, - 1.2464447021484375, - 1.2868926525115967, - 1.3184095621109009, - 1.3401358127593994, - 1.3514786958694458, - 1.3521288633346558, - 1.3420685529708862, - 1.321572184562683, - 1.2911988496780396, - 1.2517770528793335, - 1.2043821811676025, - 1.1503069400787354, - 1.0910264253616333, - 0.8279314637184143, - 0.8868064880371094, - 0.9476638436317444, - 1.0088434219360352, - 1.0686765909194946, - 1.1255309581756592, - 1.1778560876846313, - 1.224224328994751, - 1.2633709907531738, - 1.2942283153533936, - 1.3159544467926025, - 1.3279569149017334, - 1.3299083709716797, - 1.3217554092407227, - 1.303720474243164, - 1.2762954235076904, - 1.2402286529541016, - 1.1965036392211914, - 1.146313190460205, - 1.0910264253616333, - 0.8279314637184143, - 0.8766271471977234, - 0.9275828003883362, - 0.9794085025787354, - 1.0306905508041382, - 1.0800302028656006, - 1.1260814666748047, - 1.1675883531570435, - 1.203418493270874, - 1.2325944900512695, - 1.254320740699768, - 1.2680044174194336, - 1.2732723951339722, - 1.269980788230896, - 1.258219599723816, - 1.2383095026016235, - 1.2107937335968018, - 1.1764225959777832, - 1.1361339092254639, - 1.0910264253616333, - 0.8279314637184143, - 0.8613652586936951, - 0.8974753618240356, - 0.9352768063545227, - 0.9737383723258972, - 1.0118110179901123, - 1.048456072807312, - 1.0826741456985474, - 1.1135318279266357, - 1.1401872634887695, - 1.161913514137268, - 1.1781178712844849, - 1.1883583068847656, - 1.1923553943634033, - 1.1900004148483276, - 1.1813572645187378, - 1.1666619777679443, - 1.1463152170181274, - 1.1208720207214355, - 1.0910264253616333, - 0.8279314637184143, - 0.8426747918128967, - 0.8606041669845581, - 0.8812306523323059, - 0.9039915204048157, - 0.9282659888267517, - 0.9533917903900146, - 0.9786837100982666, - 1.0034517049789429, - 1.0270202159881592, - 1.0487464666366577, - 1.068037748336792, - 1.0843677520751953, - 1.097291111946106, - 1.1064553260803223, - 1.1116104125976562, - 1.1126158237457275, - 1.10944402217865, - 1.1021815538406372, - 1.0910264253616333, - 0.8279314637184143, - 0.8225810527801514, - 0.8209648132324219, - 0.8231269121170044, - 0.8290082812309265, - 0.8384485840797424, - 0.8511902689933777, - 0.8668858408927917, - 0.8851070404052734, - 0.9053569436073303, - 0.9270831942558289, - 0.9496930837631226, - 0.9725698828697205, - 0.995089590549469, - 1.0166380405426025, - 1.036627173423767, - 1.0545120239257812, - 1.0698045492172241, - 1.082087755203247, - 1.0910265445709229, - 0.8279314637184143, - 0.8032615184783936, - 0.7828527092933655, - 0.7672618627548218, - 0.7569141983985901, - 0.7520919442176819, - 0.7529267072677612, - 0.7593955993652344, - 0.7713223099708557, - 0.7883814573287964, - 0.8101076483726501, - 0.8359082937240601, - 0.8650796413421631, - 0.8968260288238525, - 0.9302812814712524, - 0.9645330905914307, - 0.9986470341682434, - 1.0316925048828125, - 1.0627682209014893, - 1.0910265445709229, - 0.8279314637184143, - 0.7868098020553589, - 0.7503980398178101, - 0.7196894884109497, - 0.6955217123031616, - 0.6785540580749512, - 0.6692492961883545, - 0.6678612232208252, - 0.6744277477264404, - 0.6887697577476501, - 0.7104959487915039, - 0.7390137910842896, - 0.7735453248023987, - 0.8131486773490906, - 0.8567434549331665, - 0.903140664100647, - 0.9510746598243713, - 0.9992378354072571, - 1.0463165044784546, - 1.0910265445709229, - 0.8279314637184143, - 0.7750086188316345, - 0.727117657661438, - 0.6855648756027222, - 0.6514837741851807, - 0.62580406665802, - 0.6092259883880615, - 0.6022019386291504, - 0.6049234867095947, - 0.6173164248466492, - 0.6390426158905029, - 0.6695095300674438, - 0.7078859806060791, - 0.7531253099441528, - 0.8039934039115906, - 0.859102725982666, - 0.9169500470161438, - 0.975957453250885, - 1.034515380859375, - 1.0910265445709229, - 0.8279314637184143, - 0.769136905670166, - 0.7155344486236572, - 0.6685861349105835, - 0.6295725703239441, - 0.5995579957962036, - 0.5793612003326416, - 0.5695328712463379, - 0.5703414082527161, - 0.5817645788192749, - 0.6034908294677734, - 0.6349273920059204, - 0.6752169728279114, - 0.7232605218887329, - 0.777747392654419, - 0.8371914625167847, - 0.8999712467193604, - 0.9643742442131042, - 1.0286437273025513, - 1.0910265445709229, - 0.8279314637184143, - 0.7698309421539307, - 0.716903567314148, - 0.6705929636955261, - 0.6321624517440796, - 0.6026602387428284, - 0.5828911662101746, - 0.5733942985534668, - 0.574428915977478, - 0.5859667062759399, - 0.6076929569244385, - 0.6390149593353271, - 0.6790784001350403, - 0.7267904281616211, - 0.7808495759963989, - 0.8397813439369202, - 0.9019781351089478, - 0.965743362903595, - 1.0293376445770264, - 1.0910265445709229, - 0.8279314637184143, - 0.7770155072212219, - 0.7310766577720642, - 0.6913679838180542, - 0.6589727401733398, - 0.6347745656967163, - 0.6194334030151367, - 0.6133677959442139, - 0.6167432069778442, - 0.6294675469398499, - 0.6511937379837036, - 0.6813291907310486, - 0.7190518379211426, - 0.7633326649665833, - 0.8129639029502869, - 0.8665916919708252, - 0.9227531552314758, - 0.9799164533615112, - 1.0365222692489624, - 1.0910265445709229, - 0.8279314637184143, - 0.7899119853973389, - 0.7565178871154785, - 0.728659987449646, - 0.7070982456207275, - 0.6924207210540771, - 0.6850279569625854, - 0.6851214170455933, - 0.6926987171173096, - 0.7075530290603638, - 0.7292792201042175, - 0.7572847008705139, - 0.790805459022522, - 0.8289272785186768, - 0.8706101179122925, - 0.9147171378135681, - 0.9600450992584229, - 1.0053576231002808, - 1.0494186878204346, - 1.0910265445709229, - 0.8279314637184143, - 0.8071229457855225, - 0.7904702425003052, - 0.7784277200698853, - 0.7713237404823303, - 0.7693521976470947, - 0.7725667953491211, - 0.7808798551559448, - 0.7940646409988403, - 0.8117614984512329, - 0.8334877490997314, - 0.8586506247520447, - 0.8865638971328735, - 0.9164661169052124, - 0.9475415349006653, - 0.9789426326751709, - 1.009812831878662, - 1.039310097694397, - 1.0666296482086182, - 1.0910265445709229, - 0.8279314637184143, - 0.8267831802368164, - 0.8292545080184937, - 0.8352779746055603, - 0.8446893692016602, - 0.857231855392456, - 0.8725634217262268, - 0.8902658224105835, - 0.9098562002182007, - 0.9308000802993774, - 0.952526330947876, - 0.974442183971405, - 0.9959498643875122, - 1.016462802886963, - 1.0354212522506714, - 1.0523083209991455, - 1.066663146018982, - 1.078094244003296, - 1.086289882659912, - 1.0910265445709229, - 0.8279314637184143, - 0.8467622995376587, - 0.868667721748352, - 0.8930502533912659, - 0.9192448258399963, - 0.9465368390083313, - 0.9741818904876709, - 1.001425862312317, - 1.0275256633758545, - 1.0517692565917969, - 1.0734955072402954, - 1.0921117067337036, - 1.1071099042892456, - 1.1180812120437622, - 1.1247262954711914, - 1.126863718032837, - 1.1244354248046875, - 1.1175075769424438, - 1.1062690019607544, - 1.0910264253616333, - 0.8279314637184143, - 0.864895224571228, - 0.9044390320777893, - 0.9454841613769531, - 0.9869109988212585, - 1.0275895595550537, - 1.0664103031158447, - 1.1023142337799072, - 1.134321928024292, - 1.1615604162216187, - 1.1832866668701172, - 1.1989079713821411, - 1.207998275756836, - 1.210309624671936, - 1.2057790756225586, - 1.1945300102233887, - 1.17686927318573, - 1.1532788276672363, - 1.1244020462036133, - 1.0910264253616333, - 0.8279314637184143, - 0.8792170286178589, - 0.9326918721199036, - 0.9868974685668945, - 1.0403550863265991, - 1.0916067361831665, - 1.1392542123794556, - 1.1819978952407837, - 1.2186717987060547, - 1.248275637626648, - 1.2700018882751465, - 1.2832578420639038, - 1.2876819372177124, - 1.2831535339355469, - 1.2697961330413818, - 1.2479740381240845, - 1.218282699584961, - 1.1815316677093506, - 1.1387237310409546, - 1.0910264253616333, - 0.8279314637184143, - 0.8881756067276001, - 0.9503647089004517, - 1.0128024816513062, - 1.073785662651062, - 1.1316509246826172, - 1.1848196983337402, - 1.231841802597046, - 1.2714345455169678, - 1.3025180101394653, - 1.3242442607879639, - 1.336020588874817, - 1.3375259637832642, - 1.3287190198898315, - 1.3098403215408325, - 1.2814046144485474, - 1.244187593460083, - 1.1992045640945435, - 1.1476823091506958, - 1.0910264253616333, - 0.8279314637184143, - 0.8908002376556396, - 0.9555423855781555, - 1.0203919410705566, - 1.0835798978805542, - 1.1433827877044678, - 1.1981691122055054, - 1.2464447021484375, - 1.2868926525115967, - 1.3184095621109009, - 1.3401358127593994, - 1.3514786958694458, - 1.3521288633346558, - 1.3420685529708862, - 1.321572184562683, - 1.2911988496780396, - 1.2517770528793335, - 1.2043821811676025, - 1.1503069400787354, - 1.0910264253616333 - ], - "z": [ - 0.8535696864128113, - 0.8708236217498779, - 0.8782907128334045, - 0.8757673501968384, - 0.863322377204895, - 0.8412951827049255, - 0.8102867007255554, - 0.7711427211761475, - 0.724931001663208, - 0.672912061214447, - 0.6165048480033875, - 0.5572479963302612, - 0.4967578947544098, - 0.4366845488548279, - 0.37866663932800293, - 0.32428663969039917, - 0.27502796053886414, - 0.23223423957824707, - 0.197072833776474, - 0.17050281167030334, - 0.8535696864128113, - 0.8690284490585327, - 0.8747494220733643, - 0.8705765008926392, - 0.8566235303878784, - 0.8332711458206177, - 0.8011562824249268, - 0.7611550092697144, - 0.714358389377594, - 0.6620429754257202, - 0.6056357622146606, - 0.5466753840446472, - 0.4867701530456543, - 0.4275541305541992, - 0.3706425428390503, - 0.31758779287338257, - 0.2698371112346649, - 0.22869297862052917, - 0.19527772068977356, - 0.17050281167030334, - 0.8535696864128113, - 0.8650534152984619, - 0.8669076561927795, - 0.8590819835662842, - 0.8417898416519165, - 0.8155027627944946, - 0.7809380292892456, - 0.739038348197937, - 0.6909465789794922, - 0.6379746198654175, - 0.5815674066543579, - 0.5232635736465454, - 0.46465349197387695, - 0.40733587741851807, - 0.352874219417572, - 0.30275407433509827, - 0.25834259390830994, - 0.22085121273994446, - 0.19130262732505798, - 0.17050281167030334, - 0.8535696864128113, - 0.859329104423523, - 0.8556151986122131, - 0.8425293564796448, - 0.8204286098480225, - 0.7899156808853149, - 0.7518228888511658, - 0.7071893811225891, - 0.6572325825691223, - 0.6033152341842651, - 0.5469080209732056, - 0.48954957723617554, - 0.43280452489852905, - 0.37822073698043823, - 0.32728707790374756, - 0.2813928723335266, - 0.24178999662399292, - 0.20955875515937805, - 0.18557831645011902, - 0.17050281167030334, - 0.853569746017456, - 0.8524758815765381, - 0.8420957326889038, - 0.8227124214172363, - 0.7948547601699829, - 0.7592824697494507, - 0.716965913772583, - 0.6690595149993896, - 0.6168698072433472, - 0.5618206262588501, - 0.5054134130477905, - 0.4491868317127228, - 0.3946746289730072, - 0.34336376190185547, - 0.2966538667678833, - 0.2558189928531647, - 0.22197306156158447, - 0.19603928923606873, - 0.17872512340545654, - 0.17050281167030334, - 0.853569746017456, - 0.8452364206314087, - 0.8278143405914307, - 0.8017786741256714, - 0.7678395509719849, - 0.7269227504730225, - 0.6801444888114929, - 0.6287806034088135, - 0.574232280254364, - 0.5179873704910278, - 0.46158018708229065, - 0.40654927492141724, - 0.3543957769870758, - 0.306542307138443, - 0.26429417729377747, - 0.228803813457489, - 0.20103925466537476, - 0.18175789713859558, - 0.17148569226264954, - 0.17050281167030334, - 0.853569746017456, - 0.8383952379226685, - 0.8143186569213867, - 0.781996488571167, - 0.7423105239868164, - 0.6963433027267456, - 0.6453486680984497, - 0.590717613697052, - 0.5339403748512268, - 0.4765655994415283, - 0.42015838623046875, - 0.36625736951828003, - 0.31633278727531433, - 0.27174651622772217, - 0.2337147295475006, - 0.20327481627464294, - 0.18125709891319275, - 0.16826215386390686, - 0.1646445393562317, - 0.17050284147262573, - 0.853569746017456, - 0.8326936960220337, - 0.8030710220336914, - 0.7655096054077148, - 0.7210341691970825, - 0.670857846736908, - 0.6163492202758789, - 0.558995246887207, - 0.5003603100776672, - 0.44204387068748474, - 0.38563665747642517, - 0.33267730474472046, - 0.284610390663147, - 0.24274703860282898, - 0.20822924375534058, - 0.18199846148490906, - 0.16477027535438538, - 0.15701457858085632, - 0.15894296765327454, - 0.17050284147262573, - 0.853569746017456, - 0.8287496566772461, - 0.7952904105186462, - 0.754104733467102, - 0.7063161134719849, - 0.6532280445098877, - 0.5962886214256287, - 0.5370510220527649, - 0.47713106870651245, - 0.4181632399559021, - 0.36175602674484253, - 0.3094480633735657, - 0.26266616582870483, - 0.22268643975257874, - 0.1905994415283203, - 0.167280375957489, - 0.15336540341377258, - 0.14923396706581116, - 0.15499886870384216, - 0.17050284147262573, - 0.853569746017456, - 0.8269903659820557, - 0.7918199300765991, - 0.7490177154541016, - 0.6997512578964233, - 0.6453644633293152, - 0.587340772151947, - 0.5272629857063293, - 0.46676984429359436, - 0.40751147270202637, - 0.3511042594909668, - 0.2990868389606476, - 0.2528781592845917, - 0.2137385904788971, - 0.1827358603477478, - 0.1607155203819275, - 0.1482783555984497, - 0.14576348662376404, - 0.1532396376132965, - 0.17050284147262573, - 0.853569746017456, - 0.8276066780090332, - 0.7930356860160828, - 0.7507997751235962, - 0.702051043510437, - 0.6481191515922546, - 0.59047532081604, - 0.5306918621063232, - 0.47039949893951416, - 0.41124290227890015, - 0.3548356890678406, - 0.3027164936065674, - 0.2563070058822632, - 0.2168731391429901, - 0.18549054861068726, - 0.16301527619361877, - 0.15006038546562195, - 0.14697924256324768, - 0.15385591983795166, - 0.17050284147262573, - 0.853569746017456, - 0.8305317163467407, - 0.7988059520721436, - 0.7592577934265137, - 0.7129662036895752, - 0.6611936688423157, - 0.6053525805473328, - 0.546966016292572, - 0.48762667179107666, - 0.4289531707763672, - 0.3725459575653076, - 0.3199436664581299, - 0.27258116006851196, - 0.23175036907196045, - 0.19856509566307068, - 0.17393043637275696, - 0.15851843357086182, - 0.1527494490146637, - 0.1567809283733368, - 0.17050284147262573, - 0.853569746017456, - 0.8354484438896179, - 0.8085052967071533, - 0.7734752893447876, - 0.7313138842582703, - 0.6831711530685425, - 0.6303603649139404, - 0.5743219256401062, - 0.5165845155715942, - 0.4587230682373047, - 0.4023158550262451, - 0.34890151023864746, - 0.29993706941604614, - 0.2567581534385681, - 0.2205425500869751, - 0.19227814674377441, - 0.17273589968681335, - 0.16244885325431824, - 0.16169768571853638, - 0.17050284147262573, - 0.853569746017456, - 0.8418241739273071, - 0.8210828304290771, - 0.7919114828109741, - 0.7551059126853943, - 0.7116700410842896, - 0.6627886891365051, - 0.6097952127456665, - 0.5541350841522217, - 0.4973266124725342, - 0.4409193992614746, - 0.3864520788192749, - 0.33541035652160645, - 0.2891865074634552, - 0.24904146790504456, - 0.21607020497322083, - 0.19117212295532227, - 0.17502635717391968, - 0.1680733859539032, - 0.17050284147262573, - 0.853569746017456, - 0.8489679098129272, - 0.8351754546165466, - 0.8125685453414917, - 0.781764030456543, - 0.7436019778251648, - 0.6991234421730042, - 0.6495416164398193, - 0.5962090492248535, - 0.5405803918838501, - 0.4841732084751129, - 0.42852601408958435, - 0.3751567602157593, - 0.32552123069763184, - 0.2809733748435974, - 0.24272829294204712, - 0.21182921528816223, - 0.18911898136138916, - 0.17521712183952332, - 0.17050281167030334, - 0.8535696864128113, - 0.8561055660247803, - 0.8492560386657715, - 0.8332080841064453, - 0.8083993792533875, - 0.7755066156387329, - 0.7354271411895752, - 0.6892541646957397, - 0.6382470726966858, - 0.5837973356246948, - 0.5273901224136353, - 0.470564067363739, - 0.4148693084716797, - 0.36182498931884766, - 0.3128780722618103, - 0.2693636417388916, - 0.23246866464614868, - 0.203199565410614, - 0.18235477805137634, - 0.17050281167030334, - 0.8535696864128113, - 0.8624635934829712, - 0.8617987632751465, - 0.8515933156013489, - 0.8321256637573242, - 0.8039267659187317, - 0.7677658796310425, - 0.7246293425559998, - 0.6756938695907593, - 0.6222941875457764, - 0.5658869743347168, - 0.5080108046531677, - 0.4502445161342621, - 0.39416369795799255, - 0.3412981629371643, - 0.29308992624282837, - 0.250853955745697, - 0.2157423198223114, - 0.18871286511421204, - 0.17050281167030334, - 0.8535696864128113, - 0.8673531413078308, - 0.8714444637298584, - 0.8657320141792297, - 0.8503717184066772, - 0.8257825374603271, - 0.7926350831985474, - 0.7518336772918701, - 0.7044912576675415, - 0.6518990993499756, - 0.5954919457435608, - 0.5368082523345947, - 0.47744885087013245, - 0.4190329313278198, - 0.36315393447875977, - 0.3113359808921814, - 0.2649926543235779, - 0.22538799047470093, - 0.19360238313674927, - 0.17050281167030334, - 0.8535696864128113, - 0.8702442646026611, - 0.8771477937698364, - 0.8740919828414917, - 0.8611603379249573, - 0.8387054204940796, - 0.8073399066925049, - 0.7679191827774048, - 0.7215186953544617, - 0.6694040894508362, - 0.6129968762397766, - 0.5538356900215149, - 0.4935343861579895, - 0.43373769521713257, - 0.376076877117157, - 0.3221246004104614, - 0.27335262298583984, - 0.23109132051467896, - 0.1964934766292572, - 0.17050281167030334, - 0.8535696864128113, - 0.8708236217498779, - 0.8782907128334045, - 0.8757673501968384, - 0.863322377204895, - 0.8412951827049255, - 0.8102867007255554, - 0.7711427211761475, - 0.724931001663208, - 0.672912061214447, - 0.6165048480033875, - 0.5572479963302612, - 0.4967578947544098, - 0.4366845488548279, - 0.37866660952568054, - 0.32428663969039917, - 0.27502796053886414, - 0.23223423957824707, - 0.197072833776474, - 0.17050281167030334 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.4404222965240479, - -1.4262924194335938, - -1.4131991863250732, - -1.4014997482299805, - -1.3915132284164429, - -1.383512258529663, - -1.37771475315094, - -1.3742790222167969, - -1.3732987642288208, - -1.3748008012771606, - -1.3787440061569214, - -1.3850209712982178, - -1.3934602737426758, - -1.403831958770752, - -1.4158530235290527, - -1.4291954040527344, - -1.4434953927993774, - -1.4583626985549927, - -1.4733920097351074, - -1.488173246383667, - -1.4404222965240479, - -1.4245249032974243, - -1.409712314605713, - -1.3963886499404907, - -1.3849173784255981, - -1.3756115436553955, - -1.3687247037887573, - -1.3644448518753052, - -1.3628886938095093, - -1.3640987873077393, - -1.3680419921875, - -1.3746109008789062, - -1.383626103401184, - -1.3948419094085693, - -1.4079523086547852, - -1.4225995540618896, - -1.4383842945098877, - -1.4548758268356323, - -1.471624493598938, - -1.488173246383667, - -1.4404222965240479, - -1.4245153665542603, - -1.4096935987472534, - -1.396361231803894, - -1.3848819732666016, - -1.3755689859390259, - -1.3686763048171997, - -1.3643919229507446, - -1.3628326654434204, - -1.3640412092208862, - -1.367984414100647, - -1.3745548725128174, - -1.3835731744766235, - -1.3947935104370117, - -1.4079097509384155, - -1.4225640296936035, - -1.4383567571640015, - -1.4548571109771729, - -1.471614956855774, - -1.488173246383667, - -1.4404222965240479, - -1.4262648820877075, - -1.4131449460983276, - -1.40142023563385, - -1.3914107084274292, - -1.3833893537521362, - -1.3775749206542969, - -1.3741260766983032, - -1.3731368780136108, - -1.3746343851089478, - -1.3785775899887085, - -1.3848590850830078, - -1.3933073282241821, - -1.4036921262741089, - -1.4157301187515259, - -1.4290928840637207, - -1.443415880203247, - -1.458308458328247, - -1.4733644723892212, - -1.488173246383667, - -1.4404222965240479, - -1.4295839071273804, - -1.4196923971176147, - -1.411017656326294, - -1.4037961959838867, - -1.3982250690460205, - -1.394456148147583, - -1.392592430114746, - -1.3926846981048584, - -1.3947302103042603, - -1.3986735343933105, - -1.4044067859649658, - -1.4117738008499146, - -1.4205734729766846, - -1.4305658340454102, - -1.4414782524108887, - -1.4530131816864014, - -1.4648560285568237, - -1.476683497428894, - -1.488173246383667, - -1.4404222965240479, - -1.434112787246704, - -1.428626537322998, - -1.4241132736206055, - -1.4206961393356323, - -1.4184684753417969, - -1.417490839958191, - -1.4177899360656738, - -1.4193576574325562, - -1.4221512079238892, - -1.42609441280365, - -1.4310797452926636, - -1.4369711875915527, - -1.443608045578003, - -1.4508092403411865, - -1.4583783149719238, - -1.4661089181900024, - -1.4737900495529175, - -1.4812123775482178, - -1.488173246383667, - -1.4404222965240479, - -1.4393606185913086, - -1.4389790296554565, - -1.4392881393432617, - -1.4402793645858765, - -1.4419258832931519, - -1.4441825151443481, - -1.4469878673553467, - -1.4502654075622559, - -1.4539257287979126, - -1.457869052886963, - -1.4619876146316528, - -1.4661692380905151, - -1.4702997207641602, - -1.4742666482925415, - -1.477961540222168, - -1.4812837839126587, - -1.4841426610946655, - -1.4864602088928223, - -1.488173246383667, - -1.4404222965240479, - -1.4447587728500366, - -1.4496281147003174, - -1.4548977613449097, - -1.4604237079620361, - -1.4660552740097046, - -1.4716389179229736, - -1.477022409439087, - -1.4820587635040283, - -1.4866106510162354, - -1.490553855895996, - -1.4937808513641357, - -1.4962036609649658, - -1.4977562427520752, - -1.4983960390090942, - -1.498105764389038, - -1.496893286705017, - -1.4947917461395264, - -1.4918583631515503, - -1.488173246383667, - -1.4404222965240479, - -1.4497222900390625, - -1.459419846534729, - -1.4692504405975342, - -1.4789459705352783, - -1.4882419109344482, - -1.496884822845459, - -1.504638671875, - -1.5112922191619873, - -1.516663908958435, - -1.5206071138381958, - -1.5230144262313843, - -1.5238200426101685, - -1.523002028465271, - -1.520582675933838, - -1.5166281461715698, - -1.5112460851669312, - -1.504583477973938, - -1.4968218803405762, - -1.488173246383667, - -1.4404222965240479, - -1.4537134170532227, - -1.4672931432724, - -1.4807910919189453, - -1.4938392639160156, - -1.5060815811157227, - -1.5171841382980347, - -1.5268441438674927, - -1.5347980260849, - -1.540828824043274, - -1.5447720289230347, - -1.5465201139450073, - -1.5460253953933716, - -1.5433014631271362, - -1.5384223461151123, - -1.5315214395523071, - -1.5227867364883423, - -1.5124566555023193, - -1.5008130073547363, - -1.488173246383667, - -1.4404222965240479, - -1.4562994241714478, - -1.4723947048187256, - -1.4882690906524658, - -1.5034894943237305, - -1.5176409482955933, - -1.5303373336791992, - -1.5412323474884033, - -1.5500288009643555, - -1.55648672580719, - -1.5604299306869507, - -1.5617510080337524, - -1.5604137182235718, - -1.5564546585083008, - -1.5499818325042725, - -1.541171669960022, - -1.5302646160125732, - -1.517558217048645, - -1.5033990144729614, - -1.488173246383667, - -1.4404222965240479, - -1.4572001695632935, - -1.4741716384887695, - -1.4908738136291504, - -1.506851077079773, - -1.52166748046875, - -1.5349191427230835, - -1.5462442636489868, - -1.555334210395813, - -1.5619409084320068, - -1.5658841133117676, - -1.56705641746521, - -1.5654256343841553, - -1.5610363483428955, - -1.5540082454681396, - -1.544533133506775, - -1.5328694581985474, - -1.5193352699279785, - -1.5042997598648071, - -1.488173246383667, - -1.4404222965240479, - -1.4563181400299072, - -1.4724316596984863, - -1.4883232116699219, - -1.5035595893859863, - -1.517724871635437, - -1.5304328203201294, - -1.5413367748260498, - -1.550139307975769, - -1.5566003322601318, - -1.5605435371398926, - -1.5618613958358765, - -1.5605180263519287, - -1.5565500259399414, - -1.5500656366348267, - -1.5412416458129883, - -1.5303188562393188, - -1.5175952911376953, - -1.503417730331421, - -1.488173246383667, - -1.4404222965240479, - -1.4537488222122192, - -1.4673631191253662, - -1.4808937311172485, - -1.4939717054367065, - -1.5062401294708252, - -1.5173646211624146, - -1.5270415544509888, - -1.5350068807601929, - -1.5410436391830444, - -1.5449868440628052, - -1.5467290878295898, - -1.5462228059768677, - -1.5434818267822266, - -1.5385808944702148, - -1.5316537618637085, - -1.5228893756866455, - -1.5125266313552856, - -1.500848412513733, - -1.488173246383667, - -1.4404222965240479, - -1.4497706890106201, - -1.4595152139663696, - -1.4693902730941772, - -1.4791264533996582, - -1.4884580373764038, - -1.4971307516098022, - -1.5049077272415161, - -1.5115770101547241, - -1.5169566869735718, - -1.5208998918533325, - -1.523299217224121, - -1.524088978767395, - -1.5232479572296143, - -1.520798921585083, - -1.5168086290359497, - -1.5113859176635742, - -1.5046788454055786, - -1.4968702793121338, - -1.488173246383667, - -1.4404222965240479, - -1.4448148012161255, - -1.449738621711731, - -1.4550596475601196, - -1.460632562637329, - -1.4663056135177612, - -1.471923828125, - -1.477333903312683, - -1.4823884963989258, - -1.4869496822357178, - -1.4908928871154785, - -1.4941107034683228, - -1.4965152740478516, - -1.498041033744812, - -1.4986463785171509, - -1.4983147382736206, - -1.4970552921295166, - -1.49490225315094, - -1.4919143915176392, - -1.488173246383667, - -1.4404222965240479, - -1.4394181966781616, - -1.4390926361083984, - -1.4394545555114746, - -1.440494179725647, - -1.4421831369400024, - -1.4444752931594849, - -1.4473081827163696, - -1.4506044387817383, - -1.454274296760559, - -1.4582175016403198, - -1.4623266458511353, - -1.4664894342422485, - -1.4705924987792969, - -1.474523901939392, - -1.4781763553619385, - -1.4814502000808716, - -1.4842561483383179, - -1.4865177869796753, - -1.488173246383667, - -1.4404222965240479, - -1.434165596961975, - -1.428730845451355, - -1.4242662191390991, - -1.4208935499191284, - -1.418704867362976, - -1.4177597761154175, - -1.4180841445922852, - -1.4196691513061523, - -1.422471523284912, - -1.4264147281646729, - -1.4313912391662598, - -1.4372655153274536, - -1.4438769817352295, - -1.4510456323623657, - -1.45857572555542, - -1.466261863708496, - -1.473894476890564, - -1.4812651872634888, - -1.488173246383667, - -1.4404222965240479, - -1.42962646484375, - -1.419776201248169, - -1.4111404418945312, - -1.4039547443389893, - -1.398414969444275, - -1.3946722745895386, - -1.3928288221359253, - -1.3929349184036255, - -1.3949875831604004, - -1.3989307880401611, - -1.404657006263733, - -1.4120101928710938, - -1.4207894802093506, - -1.4307557344436646, - -1.4416368007659912, - -1.4531360864639282, - -1.464939832687378, - -1.4767260551452637, - -1.488173246383667, - -1.4404222965240479, - -1.4262924194335938, - -1.4131991863250732, - -1.4014997482299805, - -1.3915132284164429, - -1.3835121393203735, - -1.37771475315094, - -1.3742790222167969, - -1.3732987642288208, - -1.3748008012771606, - -1.3787440061569214, - -1.3850209712982178, - -1.3934602737426758, - -1.403831958770752, - -1.4158529043197632, - -1.4291954040527344, - -1.4434953927993774, - -1.4583626985549927, - -1.4733920097351074, - -1.488173246383667 - ], - "y": [ - 0.837876558303833, - 0.9043771624565125, - 0.9736007452011108, - 1.0436590909957886, - 1.1126413345336914, - 1.1786655187606812, - 1.2399308681488037, - 1.2947661876678467, - 1.3416757583618164, - 1.3793799877166748, - 1.4068504571914673, - 1.423337697982788, - 1.4283920526504517, - 1.4218757152557373, - 1.4039661884307861, - 1.375152349472046, - 1.3362200260162354, - 1.2882311344146729, - 1.232494592666626, - 1.1705310344696045, - 0.837876558303833, - 0.9004913568496704, - 0.9659351110458374, - 1.0324227809906006, - 1.0981407165527344, - 1.1612963676452637, - 1.220166802406311, - 1.273146390914917, - 1.3187899589538574, - 1.3558523654937744, - 1.3833227157592773, - 1.4004517793655396, - 1.4067721366882324, - 1.402111530303955, - 1.3865970373153687, - 1.3606518507003784, - 1.3249835968017578, - 1.2805655002593994, - 1.2286088466644287, - 1.1705310344696045, - 0.837876558303833, - 0.8900660872459412, - 0.9453690052032471, - 1.0022767782211304, - 1.0592371225357056, - 1.1146962642669678, - 1.1671414375305176, - 1.2151422500610352, - 1.2573890686035156, - 1.2927296161651611, - 1.3202000856399536, - 1.3390508890151978, - 1.3487679958343506, - 1.3490862846374512, - 1.3399970531463623, - 1.3217482566833496, - 1.2948375940322876, - 1.2599992752075195, - 1.2181835174560547, - 1.1705310344696045, - 0.837876558303833, - 0.8742311000823975, - 0.9141309857368469, - 0.9564878344535828, - 1.0001462697982788, - 1.0439152717590332, - 1.0866011381149292, - 1.1270394325256348, - 1.164126992225647, - 1.1968523263931274, - 1.2243226766586304, - 1.245788812637329, - 1.2606651782989502, - 1.2685458660125732, - 1.2692160606384277, - 1.2626572847366333, - 1.2490487098693848, - 1.2287613153457642, - 1.2023485898971558, - 1.1705310344696045, - 0.837876558303833, - 0.8547024130821228, - 0.8756061792373657, - 0.9000178575515747, - 0.9272714257240295, - 0.9566234350204468, - 0.9872733950614929, - 1.0183851718902588, - 1.0491100549697876, - 1.0786100625991821, - 1.106080412864685, - 1.1307718753814697, - 1.1520109176635742, - 1.1692181825637817, - 1.1819242238998413, - 1.1897825002670288, - 1.192578673362732, - 1.1902365684509277, - 1.1828198432922363, - 1.1705310344696045, - 0.837876558303833, - 0.8335961699485779, - 0.8339694738388062, - 0.8389862775802612, - 0.8485098481178284, - 0.8622803688049316, - 0.8799221515655518, - 0.9009539484977722, - 0.9248022437095642, - 0.9508163332939148, - 0.9782867431640625, - 1.0064640045166016, - 1.0345797538757324, - 1.0618668794631958, - 1.0875810384750366, - 1.1110209226608276, - 1.131547212600708, - 1.1485997438430786, - 1.1617136001586914, - 1.1705310344696045, - 0.837876558303833, - 0.8131995797157288, - 0.7937326431274414, - 0.7800068855285645, - 0.7723965644836426, - 0.771109402179718, - 0.7761803865432739, - 0.7874712944030762, - 0.8046740889549255, - 0.8273195028305054, - 0.8547899127006531, - 0.8863359093666077, - 0.9210970997810364, - 0.958125114440918, - 0.996410071849823, - 1.0349076986312866, - 1.0725677013397217, - 1.1083630323410034, - 1.1413170099258423, - 1.1705310344696045, - 0.837876558303833, - 0.7957229614257812, - 0.7592561841011047, - 0.72947096824646, - 0.7071796655654907, - 0.6929904222488403, - 0.6872903108596802, - 0.6902347207069397, - 0.7017433643341064, - 0.721502423286438, - 0.7489728331565857, - 0.7834052443504333, - 0.8238605260848999, - 0.8692350387573242, - 0.9182911515235901, - 0.9696906805038452, - 1.0220317840576172, - 1.073886513710022, - 1.1238404512405396, - 1.1705310344696045, - 0.837876558303833, - 0.7830601930618286, - 0.7342759966850281, - 0.6928547620773315, - 0.6599262952804565, - 0.636388897895813, - 0.6228843927383423, - 0.6197813749313354, - 0.627164363861084, - 0.6448320150375366, - 0.6723024249076843, - 0.7088261842727661, - 0.7534071207046509, - 0.8048291206359863, - 0.861689567565918, - 0.9224373698234558, - 0.9854156374931335, - 1.0489063262939453, - 1.111177682876587, - 1.1705310344696045, - 0.837876558303833, - 0.7765834331512451, - 0.7214992046356201, - 0.674126386642456, - 0.6357572078704834, - 0.607438325881958, - 0.5899421572685242, - 0.5837458968162537, - 0.589018702507019, - 0.6056166887283325, - 0.6330870389938354, - 0.6706805229187012, - 0.7173717021942139, - 0.7718868851661682, - 0.832738995552063, - 0.8982682824134827, - 0.9666872024536133, - 1.0361294746398926, - 1.1047009229660034, - 1.1705310344696045, - 0.837876558303833, - 0.7769945859909058, - 0.7223101854324341, - 0.675315260887146, - 0.637291431427002, - 0.6092760562896729, - 0.5920332670211792, - 0.5860334038734436, - 0.5914401412010193, - 0.6081060171127319, - 0.6355764269828796, - 0.6731020212173462, - 0.7196592092514038, - 0.7739779949188232, - 0.8345767259597778, - 0.8998025059700012, - 0.9678760766983032, - 1.036940574645996, - 1.105112075805664, - 1.1705310344696045, - 0.837876558303833, - 0.7842490673065186, - 0.7366212606430054, - 0.696292519569397, - 0.6643627285957336, - 0.6417029500007629, - 0.6289312243461609, - 0.6263959407806396, - 0.6341662406921387, - 0.652030348777771, - 0.6795006990432739, - 0.7158281207084656, - 0.7600216865539551, - 0.8108758926391602, - 0.8670036196708679, - 0.9268738031387329, - 0.9888533353805542, - 1.0512516498565674, - 1.1123665571212769, - 1.1705310344696045, - 0.837876558303833, - 0.7975606918334961, - 0.7628815174102783, - 0.7347849607467651, - 0.7140374779701233, - 0.7012050151824951, - 0.6966375112533569, - 0.7004595994949341, - 0.7125670313835144, - 0.7326295375823975, - 0.7600999474525452, - 0.7942289113998413, - 0.8340853452682495, - 0.878582239151001, - 0.9265056848526001, - 0.9765485525131226, - 1.027345895767212, - 1.0775117874145508, - 1.1256781816482544, - 1.1705310344696045, - 0.837876558303833, - 0.8154870867729187, - 0.7982452511787415, - 0.7866215109825134, - 0.7809327840805054, - 0.7813342809677124, - 0.7878151535987854, - 0.8001984357833862, - 0.8181465864181519, - 0.8411698341369629, - 0.8686401844024658, - 0.899808406829834, - 0.9338242411613464, - 0.9697598814964294, - 1.0066349506378174, - 1.0434437990188599, - 1.0791823863983154, - 1.1128755807876587, - 1.1436045169830322, - 1.1705310344696045, - 0.837876558303833, - 0.8360854983329773, - 0.838880181312561, - 0.8461845517158508, - 0.857799232006073, - 0.8734074831008911, - 0.8925834894180298, - 0.9148041605949402, - 0.9394634962081909, - 0.9658887386322021, - 0.9933590888977051, - 1.021125316619873, - 1.0484299659729004, - 1.0745282173156738, - 1.098708152770996, - 1.1203103065490723, - 1.1387454271316528, - 1.153510570526123, - 1.1642029285430908, - 1.1705310344696045, - 0.837876558303833, - 0.8571237921714783, - 0.8803830146789551, - 0.9070197343826294, - 0.9363073110580444, - 0.9674469828605652, - 0.9995893239974976, - 1.0318574905395508, - 1.0633713006973267, - 1.093271255493164, - 1.120741605758667, - 1.1450331211090088, - 1.1654832363128662, - 1.1815340518951416, - 1.192747712135315, - 1.1988184452056885, - 1.1995805501937866, - 1.1950132846832275, - 1.1852412223815918, - 1.1705310344696045, - 0.837876558303833, - 0.8763222694396973, - 0.9182562232017517, - 0.9625346064567566, - 1.0079495906829834, - 1.05326247215271, - 1.0972371101379395, - 1.138674020767212, - 1.1764429807662964, - 1.2095136642456055, - 1.2369840145111084, - 1.2581048011779785, - 1.2722997665405273, - 1.2791818380355835, - 1.278563141822815, - 1.2704607248306274, - 1.2550954818725586, - 1.232886552810669, - 1.2044397592544556, - 1.1705310344696045, - 0.837876558303833, - 0.8916003108024597, - 0.9483956098556519, - 1.0067132711410522, - 1.064962387084961, - 1.1215541362762451, - 1.1749449968338013, - 1.2236783504486084, - 1.2664251327514648, - 1.3020191192626953, - 1.3294894695281982, - 1.348086953163147, - 1.3573040962219238, - 1.3568897247314453, - 1.3468549251556396, - 1.3274734020233154, - 1.2992740869522095, - 1.2630259990692139, - 1.2197177410125732, - 1.1705310344696045, - 0.837876558303833, - 0.9013024568557739, - 0.967535138130188, - 1.0347681045532227, - 1.1011673212051392, - 1.164921760559082, - 1.2242920398712158, - 1.2776589393615723, - 1.3235667943954468, - 1.3607631921768188, - 1.3882335424423218, - 1.405228614807129, - 1.4112848043441772, - 1.4062368869781494, - 1.390222430229187, - 1.3636784553527832, - 1.3273289203643799, - 1.28216552734375, - 1.2294199466705322, - 1.1705310344696045, - 0.837876558303833, - 0.9043771624565125, - 0.9736007452011108, - 1.0436590909957886, - 1.1126413345336914, - 1.1786655187606812, - 1.2399308681488037, - 1.2947661876678467, - 1.3416757583618164, - 1.3793799877166748, - 1.4068504571914673, - 1.423337697982788, - 1.4283920526504517, - 1.4218757152557373, - 1.4039661884307861, - 1.375152349472046, - 1.3362200260162354, - 1.2882311344146729, - 1.232494592666626, - 1.1705310344696045 - ], - "z": [ - 0.9364033937454224, - 0.9611566066741943, - 0.9756843447685242, - 0.9795901775360107, - 0.9727678298950195, - 0.955403208732605, - 0.9279699921607971, - 0.891216516494751, - 0.8461453914642334, - 0.7939858436584473, - 0.7361608743667603, - 0.6742476224899292, - 0.6099349856376648, - 0.5449772477149963, - 0.48114636540412903, - 0.42018336057662964, - 0.3637511134147644, - 0.3133890926837921, - 0.2704709768295288, - 0.23616746068000793, - 0.9364033937454224, - 0.9591900706291199, - 0.9718049168586731, - 0.9739037752151489, - 0.965429425239563, - 0.9466130137443542, - 0.9179677963256836, - 0.8802751898765564, - 0.8345632553100586, - 0.7820789813995361, - 0.7242539525032043, - 0.6626655459403992, - 0.5989935994148254, - 0.5349750518798828, - 0.4723561704158783, - 0.4128448963165283, - 0.3580646514892578, - 0.30950966477394104, - 0.26850447058677673, - 0.23616746068000793, - 0.9364033937454224, - 0.9542367458343506, - 0.9620335102081299, - 0.959580659866333, - 0.9469454288482666, - 0.9244723320007324, - 0.8927742838859558, - 0.8527160882949829, - 0.8053903579711914, - 0.7520879507064819, - 0.6942629218101501, - 0.6334925889968872, - 0.571434497833252, - 0.509781539440155, - 0.4502154290676117, - 0.39436089992523193, - 0.34374159574508667, - 0.29973822832107544, - 0.26355117559432983, - 0.23616746068000793, - 0.9364033937454224, - 0.9468334913253784, - 0.9474288821220398, - 0.9381731748580933, - 0.9193189144134521, - 0.8913803100585938, - 0.855119526386261, - 0.8115257024765015, - 0.7617878913879395, - 0.7072627544403076, - 0.6494377851486206, - 0.5898901224136353, - 0.5302441120147705, - 0.4721268117427826, - 0.4171234369277954, - 0.3667343854904175, - 0.32233405113220215, - 0.28513363003730774, - 0.25614792108535767, - 0.23616746068000793, - 0.9364033937454224, - 0.9377825260162354, - 0.9295737743377686, - 0.9120009541511536, - 0.8855435252189636, - 0.8509231209754944, - 0.8090840578079224, - 0.7611676454544067, - 0.7084808945655823, - 0.6524609327316284, - 0.5946359038352966, - 0.5365831255912781, - 0.4798860549926758, - 0.4260913133621216, - 0.37666624784469604, - 0.33295902609825134, - 0.2961618900299072, - 0.2672785222530365, - 0.2470969259738922, - 0.23616746068000793, - 0.9364033937454224, - 0.9280645847320557, - 0.9104030132293701, - 0.8839002847671509, - 0.849279522895813, - 0.8074848651885986, - 0.7596564888954163, - 0.7070990204811096, - 0.6512460112571716, - 0.5936210751533508, - 0.535796046257019, - 0.4793482720851898, - 0.42581743001937866, - 0.3766637444496155, - 0.3332279920578003, - 0.29669496417045593, - 0.26806122064590454, - 0.24810779094696045, - 0.2373790144920349, - 0.23616746068000793, - 0.9364033937454224, - 0.9187328815460205, - 0.8919941186904907, - 0.8569163084030151, - 0.8144565224647522, - 0.7657727599143982, - 0.7121930718421936, - 0.655178964138031, - 0.5962855815887451, - 0.537119448184967, - 0.47929438948631287, - 0.4243878126144409, - 0.37389737367630005, - 0.32920029759407043, - 0.29151588678359985, - 0.26187199354171753, - 0.2410772442817688, - 0.22969883680343628, - 0.22804728150367737, - 0.23616746068000793, - 0.9364033937454224, - 0.9107985496520996, - 0.8763418793678284, - 0.8339731693267822, - 0.7848482131958008, - 0.7303069829940796, - 0.6718372106552124, - 0.6110337972640991, - 0.5495553016662598, - 0.4890787601470947, - 0.43125373125076294, - 0.37765759229660034, - 0.32975223660469055, - 0.2888444662094116, - 0.25605010986328125, - 0.2322636842727661, - 0.2181340754032135, - 0.2140466272830963, - 0.22011294960975647, - 0.23616746068000793, - 0.9364033937454224, - 0.9051214456558228, - 0.8651424646377563, - 0.8175570368766785, - 0.7636630535125732, - 0.7049307823181152, - 0.6429620981216431, - 0.5794474482536316, - 0.5161192417144775, - 0.4547050893306732, - 0.3968800902366638, - 0.3442215323448181, - 0.29816585779190063, - 0.2599693238735199, - 0.2306738793849945, - 0.21107855439186096, - 0.20171794295310974, - 0.20284724235534668, - 0.21443581581115723, - 0.23616746068000793, - 0.9364033937454224, - 0.9023167490959167, - 0.8596096038818359, - 0.8094468712806702, - 0.7531968951225281, - 0.6923940181732178, - 0.6286967992782593, - 0.5638426542282104, - 0.49960070848464966, - 0.4377232789993286, - 0.3798982501029968, - 0.32770293951034546, - 0.2825610637664795, - 0.2457040250301361, - 0.21813714504241943, - 0.2006123960018158, - 0.19360777735710144, - 0.19731438159942627, - 0.2116311490535736, - 0.23616746068000793, - 0.9364033937454224, - 0.9026883840560913, - 0.860342800617218, - 0.8105216026306152, - 0.7545838356018066, - 0.6940553188323975, - 0.6305871605873108, - 0.5659105181694031, - 0.5017896890640259, - 0.4399736225605011, - 0.3821486234664917, - 0.3298919200897217, - 0.2846289277076721, - 0.24759438633918762, - 0.21979844570159912, - 0.20199930667877197, - 0.1946825087070465, - 0.19804754853248596, - 0.21200281381607056, - 0.23616746068000793, - 0.9364033937454224, - 0.906196117401123, - 0.867262601852417, - 0.8206647038459778, - 0.7676735520362854, - 0.7097346782684326, - 0.6484283208847046, - 0.585426926612854, - 0.5224489569664001, - 0.46121224761009216, - 0.40338724851608276, - 0.35055118799209595, - 0.30414536595344543, - 0.2654355764389038, - 0.2354777753353119, - 0.21508905291557312, - 0.20482560992240906, - 0.20496734976768494, - 0.2155105471611023, - 0.23616746068000793, - 0.9364033937454224, - 0.9124598503112793, - 0.8796191215515137, - 0.8387770652770996, - 0.7910476326942444, - 0.7377328872680664, - 0.6802870035171509, - 0.6202769875526428, - 0.5593397617340088, - 0.4991375803947449, - 0.4413125514984131, - 0.38744205236434937, - 0.33899539709091187, - 0.2972942292690277, - 0.2634759843349457, - 0.23846310377120972, - 0.2229379415512085, - 0.217323899269104, - 0.22177425026893616, - 0.23616746068000793, - 0.9364033937454224, - 0.9208007454872131, - 0.8960734605789185, - 0.8628958463668823, - 0.8221731185913086, - 0.7750159502029419, - 0.7227107286453247, - 0.6666841506958008, - 0.6084645390510559, - 0.5496399402618408, - 0.49181491136550903, - 0.4365667998790741, - 0.3854026198387146, - 0.3397179841995239, - 0.30075910687446594, - 0.2695885896682739, - 0.247056782245636, - 0.233778178691864, - 0.23011514544487, - 0.23616746068000793, - 0.9364033937454224, - 0.9303149580955505, - 0.9148423671722412, - 0.8904074430465698, - 0.8576769828796387, - 0.8175436854362488, - 0.771102249622345, - 0.7196194529533386, - 0.6644997000694275, - 0.6072463989257812, - 0.5494213700294495, - 0.4926019310951233, - 0.43833789229393005, - 0.3881094753742218, - 0.34328681230545044, - 0.3050925135612488, - 0.2745683789253235, - 0.25254708528518677, - 0.2396293580532074, - 0.23616746068000793, - 0.9364033937454224, - 0.9399714469909668, - 0.933892011642456, - 0.9183306097984314, - 0.8937119841575623, - 0.8607075214385986, - 0.8202175498008728, - 0.7733465433120728, - 0.7213729619979858, - 0.6657145619392395, - 0.6078895330429077, - 0.5494751930236816, - 0.4920649528503418, - 0.437224805355072, - 0.3864506483078003, - 0.3411274552345276, - 0.30249151587486267, - 0.2715967297554016, - 0.24928587675094604, - 0.23616746068000793, - 0.9364033937454224, - 0.9487239122390747, - 0.9511580467224121, - 0.9436393976211548, - 0.9263731241226196, - 0.8998301029205322, - 0.864734411239624, - 0.8220433592796326, - 0.7729214429855347, - 0.7187085151672363, - 0.6608835458755493, - 0.6010236740112305, - 0.5407617688179016, - 0.48174163699150085, - 0.4255732297897339, - 0.37378859519958496, - 0.32780030369758606, - 0.28886282444000244, - 0.2580382823944092, - 0.23616746068000793, - 0.9364033937454224, - 0.9556237459182739, - 0.9647694826126099, - 0.9635912179946899, - 0.9521210193634033, - 0.930671751499176, - 0.8998285531997681, - 0.8604326844215393, - 0.81355881690979, - 0.7604855298995972, - 0.7026605010032654, - 0.6416611075401306, - 0.5791510939598083, - 0.5168358087539673, - 0.4564148783683777, - 0.39953649044036865, - 0.34775209426879883, - 0.3024742603302002, - 0.2649381160736084, - 0.23616746068000793, - 0.9364033937454224, - 0.959923267364502, - 0.9732513427734375, - 0.9760239124298096, - 0.9681654572486877, - 0.9498903751373291, - 0.9216970205307007, - 0.8843545317649841, - 0.8388814926147461, - 0.7865183353424072, - 0.7286933064460754, - 0.6669837236404419, - 0.6030729413032532, - 0.5387042760848999, - 0.47563350200653076, - 0.41558095812797546, - 0.36018478870391846, - 0.31095606088638306, - 0.2692376673221588, - 0.23616746068000793, - 0.9364033937454224, - 0.9611566066741943, - 0.9756842851638794, - 0.9795901775360107, - 0.9727678298950195, - 0.955403208732605, - 0.9279699921607971, - 0.891216516494751, - 0.8461453914642334, - 0.7939858436584473, - 0.7361608743667603, - 0.6742476224899292, - 0.6099349856376648, - 0.5449772477149963, - 0.48114636540412903, - 0.42018336057662964, - 0.3637511134147644, - 0.3133890926837921, - 0.2704709768295288, - 0.23616746068000793 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.5090116262435913, - -1.4962316751480103, - -1.4842791557312012, - -1.4734801054000854, - -1.4641289710998535, - -1.456480860710144, - -1.450744390487671, - -1.4470762014389038, - -1.4455760717391968, - -1.4462851285934448, - -1.4491839408874512, - -1.4541934728622437, - -1.461177110671997, - -1.4699443578720093, - -1.4802558422088623, - -1.491830587387085, - -1.5043528079986572, - -1.5174808502197266, - -1.5308566093444824, - -1.5441151857376099, - -1.5090116262435913, - -1.4949734210968018, - -1.4817969799041748, - -1.4698415994644165, - -1.4594335556030273, - -1.4508565664291382, - -1.4443446397781372, - -1.440075397491455, - -1.4381654262542725, - -1.4386667013168335, - -1.4415655136108398, - -1.4467828273773193, - -1.454176425933838, - -1.463544487953186, - -1.4746315479278564, - -1.4871351718902588, - -1.5007144212722778, - -1.5149986743927002, - -1.529598355293274, - -1.5441151857376099, - -1.5090116262435913, - -1.4952623844146729, - -1.482366919517517, - -1.470677137374878, - -1.4605116844177246, - -1.4521480798721313, - -1.4458142518997192, - -1.4416829347610474, - -1.4398671388626099, - -1.4404160976409912, - -1.4433149099349976, - -1.4484845399856567, - -1.4557839632034302, - -1.465014100074768, - -1.4759230613708496, - -1.4882134199142456, - -1.5015498399734497, - -1.5155686140060425, - -1.5298871994018555, - -1.5441151857376099, - -1.5090116262435913, - -1.4970672130584717, - -1.4859273433685303, - -1.4758960008621216, - -1.467246651649475, - -1.4602153301239014, - -1.4549938440322876, - -1.451724648475647, - -1.450496792793274, - -1.4513437747955322, - -1.4542425870895386, - -1.4591141939163208, - -1.4658255577087402, - -1.474193811416626, - -1.4839904308319092, - -1.494948387145996, - -1.5067687034606934, - -1.5191290378570557, - -1.5316920280456543, - -1.5441151857376099, - -1.5090116262435913, - -1.5001922845840454, - -1.4920923709869385, - -1.4849326610565186, - -1.4789085388183594, - -1.4741843938827515, - -1.4708889722824097, - -1.4691121578216553, - -1.4689024686813354, - -1.4702657461166382, - -1.4731645584106445, - -1.4775199890136719, - -1.483213186264038, - -1.4900888204574585, - -1.4979594945907593, - -1.5066102743148804, - -1.5158053636550903, - -1.5252939462661743, - -1.5348172187805176, - -1.5441151857376099, - -1.5090116262435913, - -1.5042990446090698, - -1.5001938343048096, - -1.4968079328536987, - -1.4942336082458496, - -1.4925413131713867, - -1.491776943206787, - -1.4919614791870117, - -1.4930897951126099, - -1.495131254196167, - -1.4980300664901733, - -1.5017071962356567, - -1.506062388420105, - -1.510976791381836, - -1.516316294670105, - -1.5219353437423706, - -1.5276806354522705, - -1.533395528793335, - -1.538923978805542, - -1.5441151857376099, - -1.5090116262435913, - -1.5089424848556519, - -1.5093539953231812, - -1.5102348327636719, - -1.5115612745285034, - -1.5132967233657837, - -1.5153942108154297, - -1.517796277999878, - -1.5204375982284546, - -1.523245930671692, - -1.5261447429656982, - -1.5290549993515015, - -1.5318973064422607, - -1.5345940589904785, - -1.5370718240737915, - -1.5392628908157349, - -1.5411076545715332, - -1.542555570602417, - -1.5435672998428345, - -1.5441151857376099, - -1.5090116262435913, - -1.513619303703308, - -1.5185799598693848, - -1.5237585306167603, - -1.5290135145187378, - -1.534201741218567, - -1.5391815900802612, - -1.5438172817230225, - -1.5479822158813477, - -1.551563024520874, - -1.5544618368148804, - -1.5565996170043945, - -1.5579181909561157, - -1.55838143825531, - -1.5579768419265747, - -1.5567152500152588, - -1.554631233215332, - -1.5517816543579102, - -1.5482441186904907, - -1.5441151857376099, - -1.5090116262435913, - -1.5178227424621582, - -1.5268722772598267, - -1.535913348197937, - -1.5446994304656982, - -1.5529907941818237, - -1.5605612993240356, - -1.5672043561935425, - -1.5727388858795166, - -1.5770139694213867, - -1.579912781715393, - -1.581356406211853, - -1.5813053846359253, - -1.5797611474990845, - -1.576765775680542, - -1.5724011659622192, - -1.5667860507965088, - -1.5600738525390625, - -1.5524475574493408, - -1.5441151857376099, - -1.5090116262435913, - -1.5210973024368286, - -1.5333319902420044, - -1.5453821420669556, - -1.556918978691101, - -1.5676277875900269, - -1.577216386795044, - -1.585423469543457, - -1.592024803161621, - -1.596840739250183, - -1.5997395515441895, - -1.6006423234939575, - -1.5995243787765503, - -1.5964163541793823, - -1.5914028882980347, - -1.584620714187622, - -1.5762548446655273, - -1.5665336847305298, - -1.5557221174240112, - -1.5441151857376099, - -1.5090116262435913, - -1.5230880975723267, - -1.5372593402862549, - -1.5511388778686523, - -1.5643481016159058, - -1.5765266418457031, - -1.5873422622680664, - -1.596500039100647, - -1.6037501096725464, - -1.6088947057724, - -1.6117935180664062, - -1.6123675107955933, - -1.6106010675430298, - -1.6065421104431152, - -1.600301742553711, - -1.5920498371124268, - -1.5820116996765137, - -1.5704610347747803, - -1.5577129125595093, - -1.5441151857376099, - -1.5090116262435913, - -1.523579478263855, - -1.5382287502288818, - -1.552559733390808, - -1.5661817789077759, - -1.5787229537963867, - -1.5898414850234985, - -1.599233865737915, - -1.6066440343856812, - -1.6118698120117188, - -1.6147687435150146, - -1.6152615547180176, - -1.6133348941802979, - -1.6090413331985474, - -1.6024980545043945, - -1.5938833951950073, - -1.5834325551986694, - -1.5714303255081177, - -1.5582042932510376, - -1.5441151857376099, - -1.5090116262435913, - -1.5225181579589844, - -1.536134958267212, - -1.5494906902313232, - -1.5622211694717407, - -1.5739789009094238, - -1.584443211555481, - -1.593328833580017, - -1.6003931760787964, - -1.6054435968399048, - -1.6083424091339111, - -1.6090105772018433, - -1.6074297428131104, - -1.6036430597305298, - -1.597753882408142, - -1.5899229049682617, - -1.5803635120391846, - -1.5693366527557373, - -1.557142972946167, - -1.5441151857376099, - -1.5090116262435913, - -1.5200190544128418, - -1.5312050580978394, - -1.542264461517334, - -1.5528955459594727, - -1.5628082752227783, - -1.571732521057129, - -1.579424500465393, - -1.5856746435165405, - -1.5903124809265137, - -1.59321129322052, - -1.594292163848877, - -1.5935255289077759, - -1.5909323692321777, - -1.5865833759307861, - -1.580597162246704, - -1.5731371641159058, - -1.5644066333770752, - -1.554643988609314, - -1.5441151857376099, - -1.5090116262435913, - -1.5163531303405762, - -1.5239731073379517, - -1.5316638946533203, - -1.5392154455184937, - -1.5464218854904175, - -1.5530866384506226, - -1.559027910232544, - -1.5640836954116821, - -1.5681159496307373, - -1.5710148811340332, - -1.572701096534729, - -1.5731289386749268, - -1.572286605834961, - -1.5701969861984253, - -1.5669171810150146, - -1.562536597251892, - -1.557174801826477, - -1.5509779453277588, - -1.5441151857376099, - -1.5090116262435913, - -1.5119175910949707, - -1.5152230262756348, - -1.518837809562683, - -1.5226633548736572, - -1.5265953540802002, - -1.5305263996124268, - -1.5343493223190308, - -1.5379599332809448, - -1.5412596464157104, - -1.5441584587097168, - -1.5465773344039917, - -1.5484503507614136, - -1.5497262477874756, - -1.5503703355789185, - -1.5503650903701782, - -1.5497106313705444, - -1.5484247207641602, - -1.5465424060821533, - -1.5441151857376099, - -1.5090116262435913, - -1.5071929693222046, - -1.505902886390686, - -1.5051761865615845, - -1.505033016204834, - -1.5054770708084106, - -1.5064963102340698, - -1.5080628395080566, - -1.510134220123291, - -1.5126535892486572, - -1.5155524015426636, - -1.518751621246338, - -1.5221638679504395, - -1.5256961584091187, - -1.529252052307129, - -1.5327346324920654, - -1.5360490083694458, - -1.5391044616699219, - -1.5418179035186768, - -1.5441151857376099, - -1.5090116262435913, - -1.5026915073394775, - -1.4970226287841797, - -1.4921594858169556, - -1.4882347583770752, - -1.4853556156158447, - -1.4836004972457886, - -1.4830172061920166, - -1.4836218357086182, - -1.4853978157043457, - -1.488296627998352, - -1.4922393560409546, - -1.4971182346343994, - -1.5028003454208374, - -1.509130597114563, - -1.5159364938735962, - -1.5230321884155273, - -1.5302242040634155, - -1.5373163223266602, - -1.5441151857376099, - -1.5090116262435913, - -1.4989007711410522, - -1.4895445108413696, - -1.4811980724334717, - -1.4740891456604004, - -1.4684114456176758, - -1.4643200635910034, - -1.4619264602661133, - -1.4612960815429688, - -1.4624459743499756, - -1.465344786643982, - -1.4699134826660156, - -1.476027488708496, - -1.4835199117660522, - -1.4921865463256836, - -1.5017908811569214, - -1.512070894241333, - -1.522746205329895, - -1.5335257053375244, - -1.5441151857376099, - -1.5090116262435913, - -1.4962316751480103, - -1.4842791557312012, - -1.4734801054000854, - -1.4641289710998535, - -1.456480860710144, - -1.450744390487671, - -1.4470762014389038, - -1.4455760717391968, - -1.4462851285934448, - -1.4491839408874512, - -1.4541934728622437, - -1.461177110671997, - -1.4699442386627197, - -1.4802558422088623, - -1.491830587387085, - -1.5043528079986572, - -1.5174808502197266, - -1.5308566093444824, - -1.5441151857376099 - ], - "y": [ - 0.8457551002502441, - 0.9148973822593689, - 0.9873892068862915, - 1.061253309249878, - 1.134474754333496, - 1.2050563097000122, - 1.2710726261138916, - 1.3307230472564697, - 1.382380485534668, - 1.424635648727417, - 1.456336259841919, - 1.4766173362731934, - 1.4849257469177246, - 1.4810348749160767, - 1.4650508165359497, - 1.4374096393585205, - 1.3988652229309082, - 1.3504691123962402, - 1.2935413122177124, - 1.2296346426010132, - 0.8457551002502441, - 0.9110342264175415, - 0.9797682762145996, - 1.0500824451446533, - 1.1200586557388306, - 1.1877882480621338, - 1.251423716545105, - 1.3092291355133057, - 1.3596278429031372, - 1.4012451171875, - 1.4329456090927124, - 1.4538646936416626, - 1.4634318351745605, - 1.46138596534729, - 1.4477827548980713, - 1.4229936599731445, - 1.3876943588256836, - 1.3428481817245483, - 1.2896780967712402, - 1.2296346426010132, - 0.8457551598548889, - 0.9003807306289673, - 0.958751916885376, - 1.0192763805389404, - 1.080303430557251, - 1.1401680707931519, - 1.1972376108169556, - 1.249955177307129, - 1.2968828678131104, - 1.336740493774414, - 1.368441104888916, - 1.3911197185516357, - 1.4041577577590942, - 1.407199740409851, - 1.400162696838379, - 1.3832383155822754, - 1.3568884134292603, - 1.3218318223953247, - 1.2790247201919556, - 1.2296347618103027, - 0.8457551598548889, - 0.8840913772583008, - 0.9266175627708435, - 0.9721736311912537, - 1.019516944885254, - 1.0673561096191406, - 1.1143862009048462, - 1.1593244075775146, - 1.2009447813034058, - 1.2381120920181274, - 1.2698125839233398, - 1.2951816320419312, - 1.31352698802948, - 1.3243484497070312, - 1.3273506164550781, - 1.3224518299102783, - 1.3097856044769287, - 1.2896974086761475, - 1.262735366821289, - 1.2296347618103027, - 0.8457551598548889, - 0.86393141746521, - 0.8868474960327148, - 0.913878321647644, - 0.9442865252494812, - 0.977242648601532, - 1.011847734451294, - 1.0471580028533936, - 1.0822099447250366, - 1.116047739982605, - 1.1477482318878174, - 1.1764469146728516, - 1.2013605833053589, - 1.221809983253479, - 1.2372372150421143, - 1.2472214698791504, - 1.2514903545379639, - 1.2499274015426636, - 1.2425754070281982, - 1.2296347618103027, - 0.8457551598548889, - 0.8420854210853577, - 0.8437514305114746, - 0.8507077097892761, - 0.8627644777297974, - 0.8795929551124573, - 0.900734007358551, - 0.9256110191345215, - 0.953545331954956, - 0.9837750792503357, - 1.0154756307601929, - 1.0477821826934814, - 1.0798135995864868, - 1.1106961965560913, - 1.1395875215530396, - 1.1656993627548218, - 1.1883196830749512, - 1.2068313360214233, - 1.2207293510437012, - 1.2296347618103027, - 0.8457551598548889, - 0.8209208250045776, - 0.8019994497299194, - 0.7895073294639587, - 0.7837851047515869, - 0.7849888205528259, - 0.7930857539176941, - 0.807854950428009, - 0.8288935422897339, - 0.8556277751922607, - 0.8873282670974731, - 0.923130452632904, - 0.9620575904846191, - 1.0030479431152344, - 1.0449833869934082, - 1.0867199897766113, - 1.1271193027496338, - 1.1650793552398682, - 1.1995646953582764, - 1.2296347618103027, - 0.8457551598548889, - 0.8027310371398926, - 0.7661161422729492, - 0.7369091510772705, - 0.7159068584442139, - 0.7036820650100708, - 0.7005683183670044, - 0.70665043592453, - 0.7217626571655273, - 0.745492696762085, - 0.7771931886672974, - 0.8159995079040527, - 0.8608530759811401, - 0.9105305671691895, - 0.9636765718460083, - 1.0188417434692383, - 1.0745211839675903, - 1.129196047782898, - 1.1813750267028809, - 1.2296347618103027, - 0.8457551598548889, - 0.7894873023033142, - 0.7399898767471313, - 0.6986130475997925, - 0.6664855480194092, - 0.6444836258888245, - 0.6332074403762817, - 0.6329646706581116, - 0.6437618732452393, - 0.6653046011924744, - 0.6970051527023315, - 0.7379987239837646, - 0.7871673107147217, - 0.8431696891784668, - 0.904478132724762, - 0.9694204330444336, - 1.0362250804901123, - 1.10306978225708, - 1.1681312322616577, - 1.2296347618103027, - 0.8457551598548889, - 0.7826247215270996, - 0.7264518737792969, - 0.6787689924240112, - 0.6408766508102417, - 0.6138084530830383, - 0.5983027815818787, - 0.5947825908660889, - 0.6033438444137573, - 0.6237531304359436, - 0.6554536819458008, - 0.6975806951522827, - 0.748985230922699, - 0.808264970779419, - 0.8738029599189758, - 0.9438115358352661, - 1.016381025314331, - 1.0895317792892456, - 1.1612685918807983, - 1.2296347618103027, - 0.8457551598548889, - 0.7828869819641113, - 0.7269692420959473, - 0.6795274019241333, - 0.6418553590774536, - 0.6149807572364807, - 0.5996367335319519, - 0.5962417125701904, - 0.6048884987831116, - 0.6253410577774048, - 0.657041609287262, - 0.6991254091262817, - 0.7504444122314453, - 0.8095989227294922, - 0.8749752640724182, - 0.944790244102478, - 1.0171393156051636, - 1.090049147605896, - 1.1615309715270996, - 1.2296347618103027, - 0.8457551598548889, - 0.7902456521987915, - 0.7414859533309937, - 0.7008060216903687, - 0.6693155169487, - 0.6478735208511353, - 0.6370646953582764, - 0.6371841430664062, - 0.6482284069061279, - 0.6698963642120361, - 0.7015969157218933, - 0.7424653172492981, - 0.7913868427276611, - 0.8470269441604614, - 0.9078680276870728, - 0.9722504019737244, - 1.0384180545806885, - 1.1045658588409424, - 1.1688896417617798, - 1.2296347618103027, - 0.8457551598548889, - 0.803903341293335, - 0.7684287428855896, - 0.7402990460395813, - 0.7202814817428589, - 0.7089221477508545, - 0.7065309286117554, - 0.7131729125976562, - 0.7286670207977295, - 0.7525906562805176, - 0.7842912077903748, - 0.8229039311408997, - 0.8673756122589111, - 0.9164931178092957, - 0.968916654586792, - 1.0232163667678833, - 1.0779110193252563, - 1.1315085887908936, - 1.1825473308563232, - 1.2296347618103027, - 0.8457551598548889, - 0.822380006313324, - 0.8048781156539917, - 0.7937268018722534, - 0.7892303466796875, - 0.7915113568305969, - 0.8005076050758362, - 0.815973699092865, - 0.8374877572059631, - 0.8644629716873169, - 0.8961634635925293, - 0.9317246079444885, - 0.9701763391494751, - 1.0104697942733765, - 1.0515059232711792, - 1.092165231704712, - 1.1313388347625732, - 1.1679580211639404, - 1.2010239362716675, - 1.2296347618103027, - 0.8457551598548889, - 0.8436734080314636, - 0.84688401222229, - 0.8552994728088379, - 0.8686902523040771, - 0.8866909742355347, - 0.9088107347488403, - 0.9344460964202881, - 0.962897777557373, - 0.9933897852897644, - 1.0250903367996216, - 1.0571346282958984, - 1.088648796081543, - 1.1187729835510254, - 1.1466854810714722, - 1.1716251373291016, - 1.1929115056991577, - 1.2099639177322388, - 1.2223173379898071, - 1.2296347618103027, - 0.8457551598548889, - 0.8654760122299194, - 0.8898946046829224, - 0.9183447957038879, - 0.9500505924224854, - 0.9841470122337341, - 1.0197041034698486, - 1.055751919746399, - 1.091307282447815, - 1.125400185585022, - 1.1571006774902344, - 1.1855441331863403, - 1.2099546194076538, - 1.2296663522720337, - 1.2441415786743164, - 1.2529854774475098, - 1.255956768989563, - 1.252974510192871, - 1.2441200017929077, - 1.2296347618103027, - 0.8457551598548889, - 0.885425329208374, - 0.9292490482330322, - 0.9760308861732483, - 1.0244947671890259, - 1.0733187198638916, - 1.1211708784103394, - 1.1667461395263672, - 1.2088011503219604, - 1.2461888790130615, - 1.277889370918274, - 1.3030380010604858, - 1.320948839187622, - 1.3311331272125244, - 1.333313226699829, - 1.3274296522140503, - 1.3136428594589233, - 1.292328953742981, - 1.2640693187713623, - 1.2296347618103027, - 0.8457551598548889, - 0.9013594388961792, - 0.9606826305389404, - 1.022106409072876, - 1.0839555263519287, - 1.1445428133010864, - 1.2022154331207275, - 1.2554004192352295, - 1.3026469945907593, - 1.3426663875579834, - 1.3743668794631958, - 1.3968838453292847, - 1.4096031188964844, - 1.4121776819229126, - 1.404537320137024, - 1.3868904113769531, - 1.3597184419631958, - 1.3237625360488892, - 1.2800034284591675, - 1.2296347618103027, - 0.8457551002502441, - 0.9115515947341919, - 0.9807889461517334, - 1.0515785217285156, - 1.121989369392395, - 1.190100908279419, - 1.2540552616119385, - 1.312107801437378, - 1.3626750707626343, - 1.4043776988983154, - 1.4360783100128174, - 1.4569119215011597, - 1.4663105010986328, - 1.464017391204834, - 1.450095534324646, - 1.424924373626709, - 1.3891905546188354, - 1.3438688516616821, - 1.2901955842971802, - 1.2296346426010132, - 0.8457551002502441, - 0.9148973822593689, - 0.9873892068862915, - 1.061253309249878, - 1.134474754333496, - 1.2050563097000122, - 1.2710726261138916, - 1.3307230472564697, - 1.382380485534668, - 1.424635648727417, - 1.456336259841919, - 1.4766173362731934, - 1.4849257469177246, - 1.4810348749160767, - 1.4650508165359497, - 1.4374096393585205, - 1.3988652229309082, - 1.3504691123962402, - 1.2935413122177124, - 1.2296346426010132 - ], - "z": [ - 1.0019381046295166, - 1.0323879718780518, - 1.0523157119750977, - 1.0611779689788818, - 1.0587328672409058, - 1.0450470447540283, - 1.020493984222412, - 0.9857434630393982, - 0.9417431354522705, - 0.8896934390068054, - 0.8310140371322632, - 0.7673056125640869, - 0.7003059387207031, - 0.6318425536155701, - 0.5637830495834351, - 0.49798381328582764, - 0.43623971939086914, - 0.3802350163459778, - 0.33149734139442444, - 0.2913561463356018, - 1.0019381046295166, - 1.0302387475967407, - 1.0480760335922241, - 1.0549633502960205, - 1.0507128238677979, - 1.035440444946289, - 1.0095629692077637, - 0.9737858772277832, - 0.929085373878479, - 0.8766807317733765, - 0.8180013298988342, - 0.7546478509902954, - 0.6883483529090881, - 0.6209113597869873, - 0.5541764497756958, - 0.4899638295173645, - 0.4300251007080078, - 0.37599530816078186, - 0.3293481767177582, - 0.2913561463356018, - 1.0019381046295166, - 1.0244977474212646, - 1.0367504358291626, - 1.0383622646331787, - 1.0292890071868896, - 1.0097782611846924, - 0.9803624153137207, - 0.941843569278717, - 0.8952725529670715, - 0.8419196605682373, - 0.7832403182983398, - 0.7208349704742432, - 0.656406044960022, - 0.5917108654975891, - 0.5285142660140991, - 0.4685400128364563, - 0.413424015045166, - 0.3646697402000427, - 0.32360708713531494, - 0.2913561463356018, - 1.0019381046295166, - 1.01578688621521, - 1.019566297531128, - 1.0131735801696777, - 0.9967828989028931, - 0.9708414673805237, - 0.9360568523406982, - 0.8933779001235962, - 0.8439688086509705, - 0.7891772389411926, - 0.7304978370666504, - 0.6695312261581421, - 0.6079404354095459, - 0.5474053621292114, - 0.48957741260528564, - 0.4360339045524597, - 0.38823533058166504, - 0.34748563170433044, - 0.31489622592926025, - 0.2913561463356018, - 1.0019381046295166, - 1.0050501823425293, - 0.9983857870101929, - 0.9821269512176514, - 0.9567171335220337, - 0.9228493571281433, - 0.8814475536346436, - 0.8336409330368042, - 0.7807337045669556, - 0.7241688966751099, - 0.6654894948005676, - 0.6062961220741272, - 0.5482034683227539, - 0.49279600381851196, - 0.4415853023529053, - 0.39596807956695557, - 0.35718873143196106, - 0.326305091381073, - 0.304159551858902, - 0.2913561761379242, - 1.0019381046295166, - 0.9934511184692383, - 0.9755041599273682, - 0.9485868215560913, - 0.913433313369751, - 0.8710026741027832, - 0.8224521279335022, - 0.7691061496734619, - 0.7124197483062744, - 0.6539392471313477, - 0.5952598452568054, - 0.537982165813446, - 0.48366859555244446, - 0.4338006377220154, - 0.3897385895252228, - 0.3526843190193176, - 0.3236485719680786, - 0.3034234344959259, - 0.29256051778793335, - 0.2913561761379242, - 1.0019381046295166, - 0.9822466373443604, - 0.9534008502960205, - 0.9161876440048218, - 0.8716220855712891, - 0.8209197521209717, - 0.7654637694358826, - 0.7067667245864868, - 0.6464298367500305, - 0.586098849773407, - 0.5274194478988647, - 0.47199225425720215, - 0.42132920026779175, - 0.37681224942207336, - 0.33965569734573364, - 0.3108730614185333, - 0.29124945402145386, - 0.281320184469223, - 0.2813560664653778, - 0.2913561761379242, - 1.0019381046295166, - 0.9726510047912598, - 0.9344713091850281, - 0.8884404897689819, - 0.8358142375946045, - 0.7780279517173767, - 0.7166579961776733, - 0.6533782482147217, - 0.5899149775505066, - 0.5279991626739502, - 0.46931976079940796, - 0.4154773950576782, - 0.367940753698349, - 0.32800647616386414, - 0.2967638671398163, - 0.27506521344184875, - 0.263502299785614, - 0.2623905837535858, - 0.27176040410995483, - 0.2913561761379242, - 1.0019381046295166, - 0.9657039642333984, - 0.9207667112350464, - 0.8683521747589111, - 0.80989009141922, - 0.7469752430915833, - 0.6813236474990845, - 0.614726185798645, - 0.5489994287490845, - 0.4859362542629242, - 0.42725688219070435, - 0.3745618760585785, - 0.32928866147994995, - 0.2926720976829529, - 0.26571112871170044, - 0.24914109706878662, - 0.24341395497322083, - 0.24868598580360413, - 0.2648133635520935, - 0.2913561761379242, - 1.0019381046295166, - 0.9621583223342896, - 0.9137721657752991, - 0.8580995202064514, - 0.796658992767334, - 0.731126606464386, - 0.6632897853851318, - 0.5949990153312683, - 0.5281170606613159, - 0.4644682705402374, - 0.4057888984680176, - 0.35367947816848755, - 0.30956146121025085, - 0.27463826537132263, - 0.24986249208450317, - 0.23590999841690063, - 0.2331613302230835, - 0.2416914701461792, - 0.261267751455307, - 0.2913561761379242, - 1.0019381046295166, - 0.9623983502388, - 0.9142457246780396, - 0.8587936162948608, - 0.7975547313690186, - 0.7321995496749878, - 0.6645106673240662, - 0.5963345170021057, - 0.5295307636260986, - 0.46592164039611816, - 0.4072422385215759, - 0.35509321093559265, - 0.31089696288108826, - 0.27585911750793457, - 0.250935435295105, - 0.2368057370185852, - 0.23385539650917053, - 0.2421649694442749, - 0.2615077793598175, - 0.2913561761379242, - 1.0019381046295166, - 0.9663980007171631, - 0.9221359491348267, - 0.8703592419624329, - 0.8124802112579346, - 0.7500777840614319, - 0.6848539710044861, - 0.6185879707336426, - 0.5530873537063599, - 0.49013882875442505, - 0.4314594268798828, - 0.3786498010158539, - 0.3331504464149475, - 0.2962024211883545, - 0.2688136696815491, - 0.2517312169075012, - 0.24542102217674255, - 0.2500552237033844, - 0.26550745964050293, - 0.2913561761379242, - 1.0019381046295166, - 0.9737238883972168, - 0.936587929725647, - 0.8915430307388306, - 0.8398180603981018, - 0.7828238606452942, - 0.722115159034729, - 0.6593478322029114, - 0.5962340831756592, - 0.5344955325126648, - 0.47581613063812256, - 0.4217965602874756, - 0.3739103078842163, - 0.3334636390209198, - 0.30155977606773376, - 0.27906903624534607, - 0.26660481095314026, - 0.2645071744918823, - 0.27283334732055664, - 0.2913561761379242, - 1.0019381046295166, - 0.9835821390151978, - 0.9560354948043823, - 0.9200494289398193, - 0.876605749130249, - 0.8268893957138062, - 0.7722564935684204, - 0.7141972780227661, - 0.6542954444885254, - 0.5941850543022156, - 0.5355056524276733, - 0.4798579216003418, - 0.42875975370407104, - 0.3836049735546112, - 0.3456253111362457, - 0.3158567547798157, - 0.2951112687587738, - 0.28395476937294006, - 0.2826915979385376, - 0.2913561761379242, - 1.0019381046295166, - 0.9949043989181519, - 0.9783711433410645, - 0.9527893662452698, - 0.9188567399978638, - 0.877498984336853, - 0.8298442363739014, - 0.7771922945976257, - 0.7209794521331787, - 0.6627389788627625, - 0.6040595769882202, - 0.5465418696403503, - 0.49175477027893066, - 0.4411926865577698, - 0.396234929561615, - 0.3581077456474304, - 0.32785114645957947, - 0.30629047751426697, - 0.2940138578414917, - 0.2913561761379242, - 1.0019381046295166, - 1.0064637660980225, - 1.0011746883392334, - 0.9862148761749268, - 0.9619925618171692, - 0.9291684627532959, - 0.888637900352478, - 0.8415065407752991, - 0.7890598773956299, - 0.7327285408973694, - 0.6740491390228271, - 0.6146222949028015, - 0.556069016456604, - 0.4999864101409912, - 0.44790440797805786, - 0.40124356746673584, - 0.36127665638923645, - 0.32909393310546875, - 0.3055732250213623, - 0.2913561761379242, - 1.0019381046295166, - 1.0170077085494995, - 1.021974802017212, - 1.0167038440704346, - 1.0013387203216553, - 0.9762986898422241, - 0.9422664642333984, - 0.9001705646514893, - 0.8511592745780945, - 0.7965693473815918, - 0.7378899455070496, - 0.6767216920852661, - 0.614733099937439, - 0.5536149740219116, - 0.4950345754623413, - 0.4405897855758667, - 0.39176565408706665, - 0.34989404678344727, - 0.3161171078681946, - 0.2913561463356018, - 1.0019381046295166, - 1.0253934860229492, - 1.0385174751281738, - 1.0409523248672485, - 1.0326316356658936, - 1.0137821435928345, - 0.9849182367324829, - 0.946827232837677, - 0.9005481004714966, - 0.8473431468009949, - 0.7886637449264526, - 0.7261105179786682, - 0.6613897085189819, - 0.5962667465209961, - 0.5325181484222412, - 0.47188258171081543, - 0.4160141348838806, - 0.36643677949905396, - 0.3245028257369995, - 0.2913561463356018, - 1.0019381046295166, - 1.030712366104126, - 1.049010157585144, - 1.0563325881958008, - 1.052479863166809, - 1.0375571250915527, - 1.011971354484558, - 0.976420521736145, - 0.9318742752075195, - 0.8795478343963623, - 0.8208684325218201, - 0.7574367523193359, - 0.69098299741745, - 0.6233198642730713, - 0.5562930703163147, - 0.49173086881637573, - 0.43139439821243286, - 0.37692946195602417, - 0.32982170581817627, - 0.2913561463356018, - 1.0019381046295166, - 1.0323879718780518, - 1.0523157119750977, - 1.0611779689788818, - 1.0587328672409058, - 1.0450470447540283, - 1.020493984222412, - 0.9857434630393982, - 0.9417431354522705, - 0.8896934390068054, - 0.8310140371322632, - 0.7673056125640869, - 0.7003059387207031, - 0.6318425536155701, - 0.5637830495834351, - 0.49798381328582764, - 0.43623971939086914, - 0.3802350163459778, - 0.33149734139442444, - 0.2913561463356018 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.5624545812606812, - -1.5508471727371216, - -1.5399225950241089, - -1.5299791097640991, - -1.5212876796722412, - -1.5140855312347412, - -1.5085690021514893, - -1.504888653755188, - -1.5031449794769287, - -1.503385305404663, - -1.5056031942367554, - -1.5097382068634033, - -1.5156774520874023, - -1.5232590436935425, - -1.5322760343551636, - -1.5424824953079224, - -1.5536000728607178, - -1.5653254985809326, - -1.5773389339447021, - -1.5893126726150513, - -1.5624545812606812, - -1.5499303340911865, - -1.538114070892334, - -1.5273280143737793, - -1.5178663730621338, - -1.5099873542785645, - -1.5039058923721313, - -1.49978768825531, - -1.4977452754974365, - -1.4978342056274414, - -1.5000520944595337, - -1.5043385028839111, - -1.5105764865875244, - -1.5185959339141846, - -1.5281779766082764, - -1.5390613079071045, - -1.5509490966796875, - -1.5635169744491577, - -1.5764222145080566, - -1.5893126726150513, - -1.5624545812606812, - -1.550390601158142, - -1.5390219688415527, - -1.5286587476730347, - -1.519583821296692, - -1.5120445489883423, - -1.5062466859817505, - -1.5023483037948608, - -1.5004558563232422, - -1.5006208419799805, - -1.5028387308120728, - -1.5070490837097168, - -1.5131371021270752, - -1.5209367275238037, - -1.5302351713180542, - -1.5407787561416626, - -1.5522798299789429, - -1.5644248723983765, - -1.5768823623657227, - -1.5893126726150513, - -1.5624545812606812, - -1.552177906036377, - -1.5425479412078857, - -1.533827304840088, - -1.5262538194656372, - -1.5200340747833252, - -1.5153378248214722, - -1.5122931003570557, - -1.5109829902648926, - -1.5114431381225586, - -1.5136610269546509, - -1.5175762176513672, - -1.52308189868927, - -1.5300278663635254, - -1.538224697113037, - -1.547448754310608, - -1.557448387145996, - -1.5679508447647095, - -1.578669786453247, - -1.5893126726150513, - -1.5624545812606812, - -1.5550987720489502, - -1.5483100414276123, - -1.5422734022140503, - -1.5371536016464233, - -1.5330902338027954, - -1.5301941633224487, - -1.528544306755066, - -1.5281858444213867, - -1.5291284322738647, - -1.531346321105957, - -1.5347790718078613, - -1.5393331050872803, - -1.5448840856552124, - -1.5512807369232178, - -1.5583484172821045, - -1.5658944845199585, - -1.573712944984436, - -1.5815906524658203, - -1.5893126726150513, - -1.5624545812606812, - -1.5588366985321045, - -1.5556837320327759, - -1.5530818700790405, - -1.5511019229888916, - -1.5497980117797852, - -1.5492055416107178, - -1.5493409633636475, - -1.5502002239227295, - -1.551760196685791, - -1.5539780855178833, - -1.5567935705184937, - -1.5601297616958618, - -1.563895583152771, - -1.5679885149002075, - -1.5722968578338623, - -1.5767029523849487, - -1.5810866355895996, - -1.585328459739685, - -1.5893126726150513, - -1.5624545812606812, - -1.5629863739013672, - -1.5638700723648071, - -1.5650813579559326, - -1.5665873289108276, - -1.5683469772338867, - -1.5703121423721313, - -1.5724292993545532, - -1.5746406316757202, - -1.5768859386444092, - -1.5791038274765015, - -1.5812338590621948, - -1.5832180976867676, - -1.5850021839141846, - -1.586537480354309, - -1.5877822637557983, - -1.5887024402618408, - -1.5892729759216309, - -1.5894782543182373, - -1.5893126726150513, - -1.5624545812606812, - -1.5670983791351318, - -1.5719817876815796, - -1.5769716501235962, - -1.5819318294525146, - -1.5867270231246948, - -1.5912264585494995, - -1.5953073501586914, - -1.5988584756851196, - -1.6017827987670898, - -1.6040008068084717, - -1.6054517030715942, - -1.6060961484909058, - -1.6059165000915527, - -1.6049175262451172, - -1.6031266450881958, - -1.6005927324295044, - -1.5973846912384033, - -1.5935901403427124, - -1.5893126726150513, - -1.5624545812606812, - -1.5707268714904785, - -1.5791399478912354, - -1.5874640941619873, - -1.5954724550247192, - -1.602946400642395, - -1.6096822023391724, - -1.615496039390564, - -1.6202293634414673, - -1.6237530708312988, - -1.6259709596633911, - -1.6268227100372314, - -1.6262848377227783, - -1.6243722438812256, - -1.6211369037628174, - -1.6166672706604004, - -1.6110851764678955, - -1.604542851448059, - -1.5972187519073486, - -1.5893126726150513, - -1.5624545812606812, - -1.5734789371490479, - -1.5845688581466675, - -1.5954217910766602, - -1.6057418584823608, - -1.6152474880218506, - -1.6236793994903564, - -1.6308075189590454, - -1.6364375352859497, - -1.6404156684875488, - -1.6426335573196411, - -1.6430307626724243, - -1.6415963172912598, - -1.6383694410324097, - -1.6334381103515625, - -1.6269367933273315, - -1.6190428733825684, - -1.6099717617034912, - -1.5999706983566284, - -1.5893126726150513, - -1.5624545812606812, - -1.5750560760498047, - -1.5876801013946533, - -1.5999823808670044, - -1.6116273403167725, - -1.6222972869873047, - -1.6317012310028076, - -1.639582633972168, - -1.6457264423370361, - -1.6499650478363037, - -1.6521830558776855, - -1.6523196697235107, - -1.6503714323043823, - -1.6463912725448608, - -1.6404879093170166, - -1.6328222751617432, - -1.6236034631729126, - -1.613083004951477, - -1.6015479564666748, - -1.5893126726150513, - -1.5624545812606812, - -1.5752874612808228, - -1.5881366729736328, - -1.600651741027832, - -1.6124910116195679, - -1.623331904411316, - -1.6328784227371216, - -1.6408703327178955, - -1.6470896005630493, - -1.6513664722442627, - -1.653584361076355, - -1.653682827949524, - -1.6516591310501099, - -1.6475684642791748, - -1.6415224075317383, - -1.6336859464645386, - -1.6242727041244507, - -1.6135395765304565, - -1.6017793416976929, - -1.5893126726150513, - -1.5624545812606812, - -1.574148178100586, - -1.5858891010284424, - -1.5973570346832275, - -1.6082394123077393, - -1.6182390451431274, - -1.627083420753479, - -1.6345311403274536, - -1.6403791904449463, - -1.6444679498672485, - -1.6466858386993408, - -1.646972417831421, - -1.645319938659668, - -1.6417734622955322, - -1.6364296674728394, - -1.6294342279434204, - -1.6209781169891357, - -1.6112920045852661, - -1.6006399393081665, - -1.5893126726150513, - -1.5624545812606812, - -1.5717614889144897, - -1.5811808109283447, - -1.5904556512832642, - -1.5993330478668213, - -1.607570767402649, - -1.6149441003799438, - -1.6212520599365234, - -1.6263225078582764, - -1.6300170421600342, - -1.6322349309921265, - -1.632915735244751, - -1.6320408582687378, - -1.629634141921997, - -1.6257612705230713, - -1.6205278635025024, - -1.6140767335891724, - -1.6065837144851685, - -1.5982532501220703, - -1.5893126726150513, - -1.5624545812606812, - -1.5683860778808594, - -1.5745221376419067, - -1.5806952714920044, - -1.5867371559143066, - -1.5924830436706543, - -1.597776174545288, - -1.6024720668792725, - -1.6064426898956299, - -1.6095798015594482, - -1.6117976903915405, - -1.6130359172821045, - -1.6132608652114868, - -1.6124662160873413, - -1.6106735467910767, - -1.6079320907592773, - -1.6043163537979126, - -1.5999250411987305, - -1.5948779582977295, - -1.5893126726150513, - -1.5624545812606812, - -1.5643877983093262, - -1.5666345357894897, - -1.5691336393356323, - -1.5718168020248413, - -1.574610948562622, - -1.577439785003662, - -1.580226182937622, - -1.5828940868377686, - -1.5853708982467651, - -1.5875887870788574, - -1.5894874334335327, - -1.5910149812698364, - -1.5921298265457153, - -1.5928014516830444, - -1.5930116176605225, - -1.5927547216415405, - -1.5920374393463135, - -1.5908795595169067, - -1.5893126726150513, - -1.5624545812606812, - -1.5601997375488281, - -1.5583728551864624, - -1.557023525238037, - -1.556188702583313, - -1.5558911561965942, - -1.5561388731002808, - -1.5569251775741577, - -1.558228611946106, - -1.5600136518478394, - -1.5622315406799316, - -1.5648218393325806, - -1.567713975906372, - -1.570828914642334, - -1.5740816593170166, - -1.5773836374282837, - -1.5806446075439453, - -1.5837757587432861, - -1.5866916179656982, - -1.5893126726150513, - -1.5624545812606812, - -1.5562759637832642, - -1.550632357597351, - -1.5456774234771729, - -1.5415464639663696, - -1.538352131843567, - -1.5361815690994263, - -1.5350940227508545, - -1.5351190567016602, - -1.5362560749053955, - -1.5384739637374878, - -1.5417122840881348, - -1.5458828210830688, - -1.5508716106414795, - -1.5565426349639893, - -1.5627412796020508, - -1.569298505783081, - -1.5760352611541748, - -1.5827678442001343, - -1.5893126726150513, - -1.5624545812606812, - -1.5530415773391724, - -1.544251799583435, - -1.5363247394561768, - -1.5294767618179321, - -1.5238946676254272, - -1.5197306871414185, - -1.5170984268188477, - -1.5160696506500244, - -1.5166724920272827, - -1.518890380859375, - -1.5226629972457886, - -1.527887225151062, - -1.5344207286834717, - -1.5420852899551392, - -1.5506716966629028, - -1.559945821762085, - -1.5696547031402588, - -1.5795334577560425, - -1.5893126726150513, - -1.5624545812606812, - -1.5508471727371216, - -1.5399225950241089, - -1.5299791097640991, - -1.5212876796722412, - -1.5140855312347412, - -1.5085690021514893, - -1.504888653755188, - -1.5031449794769287, - -1.503385305404663, - -1.5056031942367554, - -1.5097382068634033, - -1.5156774520874023, - -1.5232590436935425, - -1.5322760343551636, - -1.5424824953079224, - -1.5536000728607178, - -1.5653254985809326, - -1.5773389339447021, - -1.5893126726150513 - ], - "y": [ - 0.8521822690963745, - 0.9233489036560059, - 0.9983437061309814, - 1.0751209259033203, - 1.1515864133834839, - 1.2256542444229126, - 1.2953041791915894, - 1.3586361408233643, - 1.413922905921936, - 1.4596561193466187, - 1.4945883750915527, - 1.5177669525146484, - 1.5285593271255493, - 1.5266714096069336, - 1.512154459953308, - 1.48540461063385, - 1.4471514225006104, - 1.3984384536743164, - 1.3405944108963013, - 1.275197148323059, - 0.8521822690963745, - 0.9194746017456055, - 0.9907007217407227, - 1.0639177560806274, - 1.1371287107467651, - 1.208336353302002, - 1.275598406791687, - 1.3370801210403442, - 1.3911044597625732, - 1.4361977577209473, - 1.471130132675171, - 1.4949485063552856, - 1.5070033073425293, - 1.5069656372070312, - 1.4948365688323975, - 1.4709469079971313, - 1.435948371887207, - 1.3907954692840576, - 1.3367201089859009, - 1.275197148323059, - 0.8521822690963745, - 0.9086206555366516, - 0.9692889451980591, - 1.0325323343276978, - 1.0966254472732544, - 1.159820318222046, - 1.2203929424285889, - 1.2766910791397095, - 1.3271790742874146, - 1.3704798221588135, - 1.4054120779037476, - 1.431023120880127, - 1.4466142654418945, - 1.451760172843933, - 1.4463205337524414, - 1.4304437637329102, - 1.4045628309249878, - 1.3693838119506836, - 1.3258662223815918, - 1.275197148323059, - 0.8521822690963745, - 0.8919633626937866, - 0.9364287853240967, - 0.9843655228614807, - 1.034466028213501, - 1.0853636264801025, - 1.1356700658798218, - 1.1840131282806396, - 1.2290740013122559, - 1.2696235179901123, - 1.304555892944336, - 1.3329180479049683, - 1.3539361953735352, - 1.367037296295166, - 1.371863842010498, - 1.3682842254638672, - 1.356395959854126, - 1.3365235328674316, - 1.309208869934082, - 1.275197148323059, - 0.8521822690963745, - 0.8713077902793884, - 0.8956810235977173, - 0.9246370792388916, - 0.9573861956596375, - 0.9930348992347717, - 1.0306109189987183, - 1.0690892934799194, - 1.1074203252792358, - 1.1445585489273071, - 1.1794908046722412, - 1.2112643718719482, - 1.2390124797821045, - 1.2619781494140625, - 1.2795350551605225, - 1.2912043333053589, - 1.2966675758361816, - 1.2957758903503418, - 1.2885533571243286, - 1.275197148323059, - 0.8521822690963745, - 0.8488922715187073, - 0.8514614105224609, - 0.8598195910453796, - 0.8737387657165527, - 0.8928393721580505, - 0.9166003465652466, - 0.9443734288215637, - 0.9754012227058411, - 1.008837342262268, - 1.0437695980072021, - 1.0792452096939087, - 1.114296555519104, - 1.1479675769805908, - 1.1793395280838013, - 1.207556962966919, - 1.2318501472473145, - 1.251556158065796, - 1.2661378383636475, - 1.275197148323059, - 0.8521822690963745, - 0.8271458745002747, - 0.8085618019104004, - 0.7969368696212769, - 0.7925883531570435, - 0.7956347465515137, - 0.8059929609298706, - 0.8233804702758789, - 0.8473230004310608, - 0.8771674633026123, - 0.9120997786521912, - 0.9511670470237732, - 0.993303656578064, - 1.0373601913452148, - 1.0821349620819092, - 1.1264065504074097, - 1.168967366218567, - 1.2086565494537354, - 1.2443914413452148, - 1.275197148323059, - 0.8521822690963745, - 0.8084251284599304, - 0.7716309428215027, - 0.7428033947944641, - 0.7227287292480469, - 0.711954653263092, - 0.7107749581336975, - 0.719221830368042, - 0.7370649576187134, - 0.7638174891471863, - 0.7987498044967651, - 0.840908944606781, - 0.889145016670227, - 0.9421421885490417, - 0.9984548091888428, - 1.056546926498413, - 1.114833950996399, - 1.1717257499694824, - 1.2256706953048706, - 1.275197148323059, - 0.8521822690963745, - 0.7947587966918945, - 0.7446709871292114, - 0.7032852172851562, - 0.6717303991317749, - 0.6508671641349792, - 0.6412646174430847, - 0.6431847214698792, - 0.656575083732605, - 0.6810705661773682, - 0.716002881526947, - 0.7604191303253174, - 0.8131078481674194, - 0.8726317882537842, - 0.93736732006073, - 1.0055485963821411, - 1.0753157138824463, - 1.144765853881836, - 1.21200430393219, - 1.275197148323059, - 0.8521822690963745, - 0.7876276969909668, - 0.7306034564971924, - 0.6826648712158203, - 0.6451196670532227, - 0.6189919710159302, - 0.6049944758415222, - 0.6035089492797852, - 0.614575982093811, - 0.6378936767578125, - 0.6728259325027466, - 0.7184200286865234, - 0.7734321355819702, - 0.8363616466522217, - 0.9054921269416809, - 0.9789378046989441, - 1.0546953678131104, - 1.1306982040405273, - 1.2048733234405518, - 1.275197148323059, - 0.8521822690963745, - 0.7878047823905945, - 0.7309526801109314, - 0.6831768751144409, - 0.6457803249359131, - 0.6197834014892578, - 0.6058949828147888, - 0.6044939756393433, - 0.6156187057495117, - 0.6389656662940979, - 0.6738979816436768, - 0.7194627523422241, - 0.7744171619415283, - 0.8372621536254883, - 0.9062834978103638, - 0.9795985221862793, - 1.055207371711731, - 1.1310474872589111, - 1.2050503492355347, - 1.275197148323059, - 0.8521822690963745, - 0.7952706813812256, - 0.7456809282302856, - 0.7047656178474426, - 0.673640787601471, - 0.6531555652618408, - 0.6438685059547424, - 0.6460331082344055, - 0.6595903038978577, - 0.6841703653335571, - 0.7191026210784912, - 0.7634342908859253, - 0.8159562349319458, - 0.8752357363700867, - 0.9396556615829468, - 1.0074589252471924, - 1.0767961740493774, - 1.1457757949829102, - 1.2125163078308105, - 1.275197148323059, - 0.8521822690963745, - 0.8092164993286133, - 0.7731921076774597, - 0.7450917363166809, - 0.7256819009780884, - 0.7154920101165771, - 0.7148000597953796, - 0.7236248850822449, - 0.7417258024215698, - 0.7686090469360352, - 0.803541362285614, - 0.8455698490142822, - 0.8935480117797852, - 0.9461672306060791, - 1.0019922256469727, - 1.0595000982284546, - 1.1171222925186157, - 1.1732869148254395, - 1.2264620065689087, - 1.275197148323059, - 0.8521822690963745, - 0.8281309604644775, - 0.8105050325393677, - 0.799785315990448, - 0.7962642908096313, - 0.8000378608703613, - 0.8110032081604004, - 0.8288611173629761, - 0.8531246185302734, - 0.8831318020820618, - 0.9180640578269958, - 0.9569686651229858, - 0.9987843036651611, - 1.0423704385757446, - 1.0865380764007568, - 1.130082368850708, - 1.1718158721923828, - 1.2105997800827026, - 1.245376467704773, - 1.275197148323059, - 0.8521822690963745, - 0.8499642610549927, - 0.8535760641098022, - 0.8629193305969238, - 0.8777390122413635, - 0.8976309299468994, - 0.9220525622367859, - 0.9503376483917236, - 0.9817147254943848, - 1.01532781124115, - 1.050260066986084, - 1.0855587720870972, - 1.1202608346939087, - 1.1534197330474854, - 1.184131145477295, - 1.211557149887085, - 1.2349498271942139, - 1.2536709308624268, - 1.267209768295288, - 1.275197148323059, - 0.8521822690963745, - 0.8723505139350891, - 0.897737979888916, - 0.9276522397994995, - 0.9612772464752197, - 0.9976957440376282, - 1.035914421081543, - 1.0748907327651978, - 1.1135615110397339, - 1.1508718729019165, - 1.1858041286468506, - 1.2174054384231567, - 1.2448139190673828, - 1.2672816514968872, - 1.284195899963379, - 1.295095443725586, - 1.2996827363967896, - 1.2978328466415405, - 1.2895960807800293, - 1.275197148323059, - 0.8521822690963745, - 0.8928638696670532, - 0.9382051825523376, - 0.9869694113731384, - 1.0378262996673584, - 1.0893887281417847, - 1.1402502059936523, - 1.1890232563018799, - 1.2343775033950806, - 1.2750757932662964, - 1.31000816822052, - 1.338221549987793, - 1.3589463233947754, - 1.3716174364089966, - 1.3758889436721802, - 1.3716444969177246, - 1.3589999675750732, - 1.3382999897003174, - 1.3101093769073486, - 1.275197148323059, - 0.8521822690963745, - 0.9092813730239868, - 0.9705923199653625, - 1.0344427824020386, - 1.0990909337997437, - 1.1627734899520874, - 1.2237532138824463, - 1.2803668975830078, - 1.3310701847076416, - 1.374480128288269, - 1.4094123840332031, - 1.434914231300354, - 1.4502900838851929, - 1.45512056350708, - 1.449273705482483, - 1.4329091310501099, - 1.4064732789993286, - 1.3706871271133423, - 1.3265268802642822, - 1.275197148323059, - 0.8521822690963745, - 0.9198238253593445, - 0.9913897514343262, - 1.0649278163909912, - 1.1384320259094238, - 1.209897518157959, - 1.2773748636245728, - 1.3390233516693115, - 1.3931615352630615, - 1.4383125305175781, - 1.4732449054718018, - 1.497005581855774, - 1.5089465379714966, - 1.508742094039917, - 1.4963977336883545, - 1.47225022315979, - 1.4369583129882812, - 1.3914844989776611, - 1.3370693922042847, - 1.275197148323059, - 0.8521822690963745, - 0.9233489036560059, - 0.9983437061309814, - 1.0751209259033203, - 1.1515864133834839, - 1.2256542444229126, - 1.2953041791915894, - 1.3586361408233643, - 1.413922905921936, - 1.4596561193466187, - 1.4945883750915527, - 1.5177669525146484, - 1.5285593271255493, - 1.5266714096069336, - 1.512154459953308, - 1.48540461063385, - 1.4471514225006104, - 1.3984384536743164, - 1.3405944108963013, - 1.275197148323059 - ], - "z": [ - 1.0552558898925781, - 1.0901790857315063, - 1.1143640279769897, - 1.1271510124206543, - 1.128191351890564, - 1.1174564361572266, - 1.095239281654358, - 1.0621459484100342, - 1.0190788507461548, - 0.9672130346298218, - 0.9079631567001343, - 0.842945396900177, - 0.7739332914352417, - 0.7028092741966248, - 0.6315134763717651, - 0.5619906187057495, - 0.4961370825767517, - 0.43574923276901245, - 0.38247430324554443, - 0.33776548504829407, - 1.0552558898925781, - 1.0878605842590332, - 1.1097902059555054, - 1.1204466819763184, - 1.1195392608642578, - 1.1070928573608398, - 1.083446741104126, - 1.0492459535598755, - 1.0054235458374023, - 0.9531748294830322, - 0.8939249515533447, - 0.8292900919914246, - 0.7610334157943726, - 0.691016674041748, - 0.6211498379707336, - 0.5533385872840881, - 0.4894327223300934, - 0.4311754107475281, - 0.3801557719707489, - 0.33776548504829407, - 1.0552558898925781, - 1.0814785957336426, - 1.0972003936767578, - 1.1019923686981201, - 1.0957238674163818, - 1.0785659551620483, - 1.0509865283966064, - 1.0137379169464111, - 0.9678362011909485, - 0.9145333766937256, - 0.8552834987640381, - 0.7917027473449707, - 0.7255253195762634, - 0.6585564613342285, - 0.5926229953765869, - 0.5295231938362122, - 0.47097840905189514, - 0.41858556866645813, - 0.37377381324768066, - 0.33776548504829407, - 1.0552558898925781, - 1.071724772453308, - 1.0779588222503662, - 1.0737879276275635, - 1.059325933456421, - 1.0349671840667725, - 1.0013763904571533, - 0.9594695568084717, - 0.9103899002075195, - 0.8554761409759521, - 0.7962262630462646, - 0.734256386756897, - 0.6712568998336792, - 0.6089462637901306, - 0.549024224281311, - 0.49312520027160645, - 0.4427739381790161, - 0.39934399724006653, - 0.3640199899673462, - 0.33776548504829407, - 1.0552558898925781, - 1.059656023979187, - 1.0541505813598633, - 1.0388896465301514, - 1.0142894983291626, - 0.9810211658477783, - 0.9399921894073486, - 0.8923215866088867, - 0.839309811592102, - 0.7824028134346008, - 0.7231529355049133, - 0.6631762981414795, - 0.604108989238739, - 0.5475621223449707, - 0.4950782060623169, - 0.44808879494667053, - 0.4078756868839264, - 0.3755358159542084, - 0.3519513010978699, - 0.33776548504829407, - 1.0552558898925781, - 1.0465803146362305, - 1.0283558368682861, - 1.0010794401168823, - 0.965495228767395, - 0.9225738048553467, - 0.8734859228134155, - 0.8195706605911255, - 0.7622986435890198, - 0.7032321095466614, - 0.6439822316169739, - 0.586165189743042, - 0.5313580632209778, - 0.4810558557510376, - 0.4366307556629181, - 0.3992944657802582, - 0.37006545066833496, - 0.34974101185798645, - 0.33887556195259094, - 0.33776548504829407, - 1.0552558898925781, - 1.033914566040039, - 1.003369688987732, - 0.9644545316696167, - 0.9182305335998535, - 0.8659586906433105, - 0.8090646266937256, - 0.7491004467010498, - 0.6877017617225647, - 0.6265433430671692, - 0.5672934651374817, - 0.5115682482719421, - 0.4608878493309021, - 0.41663458943367004, - 0.38001561164855957, - 0.35202980041503906, - 0.33344054222106934, - 0.32475486397743225, - 0.32620975375175476, - 0.33776548504829407, - 1.0552558898925781, - 1.023031234741211, - 0.9818998575210571, - 0.9329838156700134, - 0.8776174187660217, - 0.8173109292984009, - 0.7537093162536621, - 0.6885474324226379, - 0.6236028075218201, - 0.5606469511985779, - 0.5013970136642456, - 0.4474693536758423, - 0.40033483505249023, - 0.3612792491912842, - 0.3313679099082947, - 0.3114166855812073, - 0.30196982622146606, - 0.30328500270843506, - 0.31532639265060425, - 0.33776548504829407, - 1.0552558898925781, - 1.015109658241272, - 0.9662728309631348, - 0.9100776314735413, - 0.8480569124221802, - 0.7819023728370667, - 0.7134186029434204, - 0.6444735527038574, - 0.5769479870796204, - 0.5126838088035583, - 0.45343393087387085, - 0.4008145034313202, - 0.3562609553337097, - 0.3209885060787201, - 0.29595932364463806, - 0.2818561792373657, - 0.2790636718273163, - 0.28765803575515747, - 0.30740487575531006, - 0.33776548504829407, - 1.0552558898925781, - 1.011008381843567, - 0.9581822156906128, - 0.8982182741165161, - 0.8327522873878479, - 0.7635700106620789, - 0.6925585269927979, - 0.6216548681259155, - 0.552793025970459, - 0.48785150051116943, - 0.42860159277915955, - 0.3766595721244812, - 0.33344224095344543, - 0.3001284897327423, - 0.27762699127197266, - 0.26655155420303345, - 0.26720428466796875, - 0.2795673608779907, - 0.303303599357605, - 0.33776548504829407, - 1.0552558898925781, - 1.011171817779541, - 0.9585045576095581, - 0.8986908197402954, - 0.8333621025085449, - 0.764300525188446, - 0.6933897137641907, - 0.6225640773773193, - 0.553755521774292, - 0.4888409376144409, - 0.4295910596847534, - 0.3776220381259918, - 0.33435148000717163, - 0.30095967650413513, - 0.27835747599601746, - 0.26716139912605286, - 0.26767686009407043, - 0.2798897624015808, - 0.3034670352935791, - 0.33776548504829407, - 1.0552558898925781, - 1.0155822038650513, - 0.9672050476074219, - 0.9114440679550171, - 0.8498203158378601, - 0.7840146422386169, - 0.7158221006393433, - 0.6471027731895447, - 0.5797311067581177, - 0.5155450105667114, - 0.45629510283470154, - 0.4035976529121399, - 0.3588901460170746, - 0.32339200377464294, - 0.29807159304618835, - 0.28361958265304565, - 0.2804301083087921, - 0.2885902523994446, - 0.30787742137908936, - 0.33776548504829407, - 1.0552558898925781, - 1.0237616300582886, - 0.983340859413147, - 0.9350960850715637, - 0.8803433179855347, - 0.8205760717391968, - 0.7574246525764465, - 0.6926116347312927, - 0.627905011177063, - 0.5650697946548462, - 0.5058199167251587, - 0.4517715573310852, - 0.404399037361145, - 0.364994615316391, - 0.3346330523490906, - 0.3141425848007202, - 0.30408209562301636, - 0.3047260344028473, - 0.31605687737464905, - 0.33776548504829407, - 1.0552558898925781, - 1.0348237752914429, - 1.0051634311676025, - 0.9670836925506592, - 0.9216235280036926, - 0.8700228929519653, - 0.8136892318725586, - 0.7541593313217163, - 0.6930568218231201, - 0.6320486068725586, - 0.5727987289428711, - 0.5169233679771423, - 0.4659467041492462, - 0.42125922441482544, - 0.38407987356185913, - 0.35542282462120056, - 0.3360697329044342, - 0.32654857635498047, - 0.32711899280548096, - 0.33776548504829407, - 1.0552558898925781, - 1.047569751739502, - 1.0303077697753906, - 1.0039405822753906, - 0.9691876173019409, - 0.926996648311615, - 0.8785185813903809, - 0.8250758647918701, - 0.7681262493133545, - 0.7092231512069702, - 0.6499732732772827, - 0.5919927954673767, - 0.5368633270263672, - 0.4860885739326477, - 0.4410536289215088, - 0.4029868543148041, - 0.37292665243148804, - 0.35169297456741333, - 0.3398650586605072, - 0.33776548504829407, - 1.0552558898925781, - 1.06061851978302, - 1.0560493469238281, - 1.041672706604004, - 1.017881155014038, - 0.9853233695030212, - 0.9448875188827515, - 0.8976765871047974, - 0.844978392124176, - 0.7882303595542908, - 0.7289804816246033, - 0.6688449382781982, - 0.6094639897346497, - 0.5524574518203735, - 0.49938035011291504, - 0.45168042182922363, - 0.4106588065624237, - 0.37743449211120605, - 0.3529137670993805, - 0.33776548504829407, - 1.0552558898925781, - 1.0725560188293457, - 1.0795985460281372, - 1.0761914253234863, - 1.0624276399612427, - 1.0386825799942017, - 1.0056040287017822, - 0.9640941619873047, - 0.9152852892875671, - 0.8605087995529175, - 0.80125892162323, - 0.7391517758369446, - 0.6758815050125122, - 0.6131739020347595, - 0.5527395606040955, - 0.4962269067764282, - 0.44517743587493896, - 0.40098369121551514, - 0.364851176738739, - 0.33776548504829407, - 1.0552558898925781, - 1.0820884704589844, - 1.0984034538269043, - 1.1037558317184448, - 1.0979995727539062, - 1.081291913986206, - 1.0540883541107178, - 1.017130970954895, - 0.9714279174804688, - 0.9182258248329163, - 0.858975887298584, - 0.7952944040298462, - 0.7289183139801025, - 0.6616582274436951, - 0.5953488945960999, - 0.5317988991737366, - 0.47274184226989746, - 0.4197885990142822, - 0.3743836283683777, - 0.33776548504829407, - 1.0552558898925781, - 1.0881829261779785, - 1.1104261875152588, - 1.1213788986206055, - 1.1207423210144043, - 1.1085338592529297, - 1.085086464881897, - 1.051039695739746, - 1.0073223114013672, - 0.9551268219947815, - 0.895876944065094, - 0.8311888575553894, - 0.7628270983695984, - 0.692656397819519, - 0.6225908994674683, - 0.5545416474342346, - 0.4903649687767029, - 0.4318113923072815, - 0.380478173494339, - 0.33776548504829407, - 1.0552558898925781, - 1.0901790857315063, - 1.1143640279769897, - 1.1271510124206543, - 1.128191351890564, - 1.1174564361572266, - 1.095239281654358, - 1.0621459484100342, - 1.0190788507461548, - 0.9672130346298218, - 0.9079631567001343, - 0.842945396900177, - 0.7739332914352417, - 0.7028092741966248, - 0.6315134763717651, - 0.5619906187057495, - 0.4961370825767517, - 0.43574923276901245, - 0.38247430324554443, - 0.33776548504829407 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.6053131818771362, - -1.5947095155715942, - -1.584684133529663, - -1.5755106210708618, - -1.567439079284668, - -1.5606896877288818, - -1.5554465055465698, - -1.5518527030944824, - -1.5500062704086304, - -1.5499573945999146, - -1.5517076253890991, - -1.5552091598510742, - -1.5603665113449097, - -1.567038893699646, - -1.5750442743301392, - -1.5841645002365112, - -1.5941506624221802, - -1.6047303676605225, - -1.6156150102615356, - -1.6265076398849487, - -1.6053131818771362, - -1.5940301418304443, - -1.5833441019058228, - -1.573546290397644, - -1.5649040937423706, - -1.5576531887054443, - -1.5519914627075195, - -1.548073172569275, - -1.546005368232727, - -1.545844316482544, - -1.5475945472717285, - -1.551208257675171, - -1.5565868616104126, - -1.5635837316513062, - -1.5720078945159912, - -1.5816295146942139, - -1.5921863317489624, - -1.6033902168273926, - -1.6149356365203857, - -1.6265076398849487, - -1.6053131818771362, - -1.5945892333984375, - -1.584446907043457, - -1.5751627683639526, - -1.5669902563095093, - -1.5601520538330078, - -1.5548348426818848, - -1.5511835813522339, - -1.54929780960083, - -1.5492291450500488, - -1.5509793758392334, - -1.5545008182525635, - -1.5596972703933716, - -1.5664271116256714, - -1.5745066404342651, - -1.5837156772613525, - -1.593802809715271, - -1.6044930219650269, - -1.615494728088379, - -1.6265076398849487, - -1.6053131818771362, - -1.5963259935379028, - -1.587873101234436, - -1.580185055732727, - -1.5734714269638062, - -1.567915439605713, - -1.5636686086654663, - -1.5608468055725098, - -1.5595269203186035, - -1.559745192527771, - -1.5614954233169556, - -1.564729928970337, - -1.5693604946136475, - -1.575260877609253, - -1.5822700262069702, - -1.5901968479156494, - -1.5988250970840454, - -1.6079193353652954, - -1.6172314882278442, - -1.6265076398849487, - -1.6053131818771362, - -1.5990524291992188, - -1.5932514667510986, - -1.5880686044692993, - -1.583645224571228, - -1.5801019668579102, - -1.5775355100631714, - -1.5760157108306885, - -1.5755841732025146, - -1.5762526988983154, - -1.5780029296875, - -1.580787181854248, - -1.5845293998718262, - -1.589127779006958, - -1.594456672668457, - -1.6003707647323608, - -1.6067086458206177, - -1.6132975816726685, - -1.6199578046798706, - -1.6265076398849487, - -1.6053131818771362, - -1.6024729013442993, - -1.5999990701675415, - -1.5979593992233276, - -1.5964093208312988, - -1.5953911542892456, - -1.5949327945709229, - -1.5950465202331543, - -1.5957294702529907, - -1.596962809562683, - -1.5987130403518677, - -1.6009323596954346, - -1.6035603284835815, - -1.6065250635147095, - -1.6097458600997925, - -1.613134741783142, - -1.616599440574646, - -1.6200453042984009, - -1.6233782768249512, - -1.6265076398849487, - -1.6053131818771362, - -1.6062167882919312, - -1.6073848009109497, - -1.6087853908538818, - -1.6103804111480713, - -1.6121262311935425, - -1.613975167274475, - -1.6158770322799683, - -1.6177797317504883, - -1.6196315288543701, - -1.6213817596435547, - -1.6229827404022217, - -1.624390721321106, - -1.6255675554275513, - -1.6264808177947998, - -1.6271058320999146, - -1.6274254322052002, - -1.627431035041809, - -1.6271222829818726, - -1.6265076398849487, - -1.6053131818771362, - -1.609878420829773, - -1.6146082878112793, - -1.6193736791610718, - -1.6240445375442505, - -1.6284935474395752, - -1.6325992345809937, - -1.6362497806549072, - -1.6393455266952515, - -1.6418020725250244, - -1.643552303314209, - -1.6445485353469849, - -1.6447635889053345, - -1.6441916227340698, - -1.6428481340408325, - -1.6407699584960938, - -1.6380136013031006, - -1.6346544027328491, - -1.6307839155197144, - -1.6265076398849487, - -1.6053131818771362, - -1.6130610704421997, - -1.6208866834640503, - -1.6285765171051025, - -1.6359208822250366, - -1.6427195072174072, - -1.6487867832183838, - -1.6539572477340698, - -1.6580898761749268, - -1.661072015762329, - -1.6628222465515137, - -1.6632928848266602, - -1.6624709367752075, - -1.6603790521621704, - -1.6570740938186646, - -1.6526464223861694, - -1.647216558456421, - -1.6409327983856201, - -1.6339664459228516, - -1.6265076398849487, - -1.6053131818771362, - -1.6154197454452515, - -1.6255396604537964, - -1.635396957397461, - -1.6447227001190186, - -1.6532624959945679, - -1.6607834100723267, - -1.6670804023742676, - -1.6719815731048584, - -1.6753531694412231, - -1.6771034002304077, - -1.6771844625473022, - -1.6755940914154053, - -1.6723757982254028, - -1.6676172018051147, - -1.6614481210708618, - -1.6540369987487793, - -1.6455857753753662, - -1.6363251209259033, - -1.6265076398849487, - -1.6053131818771362, - -1.6166988611221313, - -1.6280629634857178, - -1.639095664024353, - -1.6494959592819214, - -1.6589800119400024, - -1.66728937625885, - -1.6741971969604492, - -1.67951500415802, - -1.6830979585647583, - -1.6848481893539429, - -1.6847180128097534, - -1.682710886001587, - -1.6788816452026367, - -1.6733347177505493, - -1.6662213802337646, - -1.6577357053756714, - -1.6481091976165771, - -1.6376042366027832, - -1.6265076398849487, - -1.6053131818771362, - -1.6167597770690918, - -1.6281832456588745, - -1.6392719745635986, - -1.6497234106063843, - -1.6592525243759155, - -1.6675994396209717, - -1.6745363473892212, - -1.6798741817474365, - -1.683467149734497, - -1.6852173805236816, - -1.6850770711898804, - -1.6830501556396484, - -1.6791917085647583, - -1.6736072301864624, - -1.6664488315582275, - -1.657912015914917, - -1.6482293605804443, - -1.6376652717590332, - -1.6265076398849487, - -1.6053131818771362, - -1.615596055984497, - -1.625887393951416, - -1.63590669631958, - -1.6453804969787598, - -1.6540504693984985, - -1.6616801023483276, - -1.6680612564086914, - -1.6730198860168457, - -1.6764205694198608, - -1.6781708002090454, - -1.6782227754592896, - -1.676574945449829, - -1.6732723712921143, - -1.6684051752090454, - -1.6621060371398926, - -1.6545467376708984, - -1.6459336280822754, - -1.636501431465149, - -1.6265076398849487, - -1.6053131818771362, - -1.6133335828781128, - -1.6214243173599243, - -1.6293646097183228, - -1.6369378566741943, - -1.643937587738037, - -1.6501728296279907, - -1.6554734706878662, - -1.6596949100494385, - -1.662722110748291, - -1.6644723415374756, - -1.6648979187011719, - -1.663987159729004, - -1.6617650985717773, - -1.658292293548584, - -1.6536633968353271, - -1.6480046510696411, - -1.6414704322814941, - -1.6342389583587646, - -1.6265076398849487, - -1.6053131818771362, - -1.6102176904678345, - -1.6152774095535278, - -1.6203545331954956, - -1.6253103017807007, - -1.6300097703933716, - -1.634324550628662, - -1.6381371021270752, - -1.641343355178833, - -1.6438559293746948, - -1.6456061601638794, - -1.6465463638305664, - -1.6466509103775024, - -1.6459169387817383, - -1.6443644762039185, - -1.6420358419418335, - -1.638994574546814, - -1.6353236436843872, - -1.6311230659484863, - -1.6265076398849487, - -1.6053131818771362, - -1.60658597946167, - -1.6081130504608154, - -1.609852910041809, - -1.6117579936981201, - -1.6137762069702148, - -1.6158528327941895, - -1.6179308891296387, - -1.6199538707733154, - -1.6218665838241577, - -1.6236168146133423, - -1.6251568794250488, - -1.626444697380066, - -1.627445101737976, - -1.6281309127807617, - -1.6284834146499634, - -1.6284929513931274, - -1.6281591653823853, - -1.6274913549423218, - -1.6265076398849487, - -1.6053131818771362, - -1.6028319597244263, - -1.6007075309753418, - -1.598997712135315, - -1.5977492332458496, - -1.5969961881637573, - -1.5967590808868408, - -1.5970443487167358, - -1.5978442430496216, - -1.5991369485855103, - -1.6008871793746948, - -1.603047251701355, - -1.605558156967163, - -1.608351469039917, - -1.6113508939743042, - -1.6144747734069824, - -1.6176377534866333, - -1.6207536458969116, - -1.6237374544143677, - -1.6265076398849487, - -1.6053131818771362, - -1.5993624925613403, - -1.5938632488250732, - -1.5889652967453003, - -1.5848023891448975, - -1.5814881324768066, - -1.5791126489639282, - -1.577741026878357, - -1.5774105787277222, - -1.5781302452087402, - -1.5798804759979248, - -1.582613468170166, - -1.5862547159194946, - -1.5907049179077148, - -1.595842719078064, - -1.6015279293060303, - -1.6076053380966187, - -1.613909363746643, - -1.6202679872512817, - -1.6265076398849487, - -1.6053131818771362, - -1.5965535640716553, - -1.5883219242095947, - -1.5808428525924683, - -1.5743204355239868, - -1.568932294845581, - -1.5648257732391357, - -1.56211256980896, - -1.5608669519424438, - -1.5611226558685303, - -1.5628728866577148, - -1.5660698413848877, - -1.5706263780593872, - -1.5764180421829224, - -1.583287000656128, - -1.59104585647583, - -1.5994828939437866, - -1.6083680391311646, - -1.6174590587615967, - -1.6265076398849487, - -1.6053131818771362, - -1.5947095155715942, - -1.584684133529663, - -1.5755106210708618, - -1.567439079284668, - -1.5606896877288818, - -1.5554465055465698, - -1.5518527030944824, - -1.5500062704086304, - -1.5499573945999146, - -1.5517076253890991, - -1.5552091598510742, - -1.5603665113449097, - -1.5670387744903564, - -1.5750442743301392, - -1.5841645002365112, - -1.5941506624221802, - -1.6047303676605225, - -1.6156150102615356, - -1.6265076398849487 - ], - "y": [ - 0.8575161695480347, - 0.9302903413772583, - 1.0072693824768066, - 1.0863533020019531, - 1.165385127067566, - 1.2422088384628296, - 1.31472909450531, - 1.380967617034912, - 1.439117670059204, - 1.4875930547714233, - 1.525071382522583, - 1.5505305528640747, - 1.563275933265686, - 1.562959909439087, - 1.549591064453125, - 1.5235340595245361, - 1.4854997396469116, - 1.436525583267212, - 1.3779473304748535, - 1.3113631010055542, - 0.8575161695480347, - 0.9263917207717896, - 0.9995783567428589, - 1.0750797986984253, - 1.1508365869522095, - 1.2247822284698486, - 1.2948997020721436, - 1.359276294708252, - 1.4161560535430908, - 1.4639875888824463, - 1.501465916633606, - 1.5275689363479614, - 1.5415844917297363, - 1.5431303977966309, - 1.5321643352508545, - 1.5089855194091797, - 1.4742262363433838, - 1.4288345575332642, - 1.3740487098693848, - 1.3113631010055542, - 0.8575161695480347, - 0.915364682674408, - 0.9778251647949219, - 1.0431936979293823, - 1.1096874475479126, - 1.1754924058914185, - 1.2388137578964233, - 1.2979241609573364, - 1.3512111902236938, - 1.397221565246582, - 1.4346998929977417, - 1.4626240730285645, - 1.4802323579788208, - 1.4870444536209106, - 1.4828746318817139, - 1.4678363800048828, - 1.4423401355743408, - 1.4070813655853271, - 1.363021731376648, - 1.3113631010055542, - 0.8575161695480347, - 0.8984043002128601, - 0.9443669319152832, - 0.9941504597663879, - 1.0463968515396118, - 1.0996809005737305, - 1.152549147605896, - 1.2035596370697021, - 1.2513208389282227, - 1.294529914855957, - 1.3320083618164062, - 1.3627337217330933, - 1.3858678340911865, - 1.4007799625396729, - 1.4070630073547363, - 1.404545783996582, - 1.3932969570159912, - 1.3736231327056885, - 1.3460613489151, - 1.3113631010055542, - 0.8575161695480347, - 0.8773484230041504, - 0.9028295278549194, - 0.9332645535469055, - 0.9678232073783875, - 1.0055629014968872, - 1.0454540252685547, - 1.0864087343215942, - 1.1273095607757568, - 1.1670411825180054, - 1.204519510269165, - 1.2387224435806274, - 1.2687169313430786, - 1.2936848402023315, - 1.312945008277893, - 1.3259721994400024, - 1.3324110507965088, - 1.3320858478546143, - 1.3250054121017456, - 1.3113631010055542, - 0.8575161695480347, - 0.8544788360595703, - 0.8577141165733337, - 0.8671339750289917, - 0.8824813365936279, - 0.9033375978469849, - 0.9291338324546814, - 0.959166407585144, - 0.9926161170005798, - 1.028570532798767, - 1.0660488605499268, - 1.1040289402008057, - 1.1414746046066284, - 1.1773645877838135, - 1.2107197046279907, - 1.2406302690505981, - 1.2662804126739502, - 1.2869703769683838, - 1.3021358251571655, - 1.3113631010055542, - 0.8575161695480347, - 0.8322737216949463, - 0.813909649848938, - 0.8029249906539917, - 0.799619197845459, - 0.8040826916694641, - 0.8161935806274414, - 0.8356214165687561, - 0.8618364334106445, - 0.8941234946250916, - 0.931601881980896, - 0.9732492566108704, - 1.0179296731948853, - 1.0644242763519287, - 1.1114647388458252, - 1.1577682495117188, - 1.2020714282989502, - 1.2431658506393433, - 1.2799307107925415, - 1.3113631010055542, - 0.8575161695480347, - 0.8131394386291504, - 0.7761629819869995, - 0.7475955486297607, - 0.7282163500785828, - 0.7185540199279785, - 0.7188720703125, - 0.72916179895401, - 0.7491426467895508, - 0.7782695293426514, - 0.815747857093811, - 0.8605554699897766, - 0.9114700555801392, - 0.9671027660369873, - 1.0259361267089844, - 1.0863653421401978, - 1.1467419862747192, - 1.2054191827774048, - 1.2607964277267456, - 1.3113631010055542, - 0.8575161695480347, - 0.7991493940353394, - 0.748564600944519, - 0.707141637802124, - 0.6760103106498718, - 0.656019926071167, - 0.64771568775177, - 0.6513241529464722, - 0.6667467355728149, - 0.6935631036758423, - 0.731041431427002, - 0.7781596183776855, - 0.8336323499679565, - 0.8959463834762573, - 0.9634019732475281, - 1.0341593027114868, - 1.1062880754470825, - 1.1778208017349243, - 1.2468063831329346, - 1.3113631010055542, - 0.8575161695480347, - 0.7918197512626648, - 0.7341052293777466, - 0.6859469413757324, - 0.6486583948135376, - 0.6232569217681885, - 0.6104352474212646, - 0.6105431914329529, - 0.6235778331756592, - 0.6491835713386536, - 0.686661958694458, - 0.734990656375885, - 0.792851448059082, - 0.8586660027503967, - 0.9306390285491943, - 1.0068073272705078, - 1.085093379020691, - 1.1633614301681519, - 1.2394767999649048, - 1.3113631010055542, - 0.8575161695480347, - 0.7919447422027588, - 0.7343516945838928, - 0.6863082051277161, - 0.6491246819496155, - 0.6238154172897339, - 0.6110707521438599, - 0.6112383604049683, - 0.6243137121200562, - 0.6499401330947876, - 0.6874184608459473, - 0.7357265949249268, - 0.7935465574264526, - 0.8593015074729919, - 0.9311975240707397, - 1.0072736740112305, - 1.0854545831680298, - 1.1636079549789429, - 1.239601731300354, - 1.3113631010055542, - 0.8575161695480347, - 0.7995107173919678, - 0.7492773532867432, - 0.7081863880157471, - 0.6773585677146912, - 0.6576349139213562, - 0.6495532989501953, - 0.6533343195915222, - 0.6688747406005859, - 0.6957507133483887, - 0.7332290410995483, - 0.7802875638008118, - 0.8356425762176514, - 0.8977840542793274, - 0.9650169610977173, - 1.0355075597763062, - 1.1073328256607056, - 1.1785335540771484, - 1.247167706489563, - 1.3113631010055542, - 0.8575161695480347, - 0.8136979341506958, - 0.7772647738456726, - 0.7492105960845947, - 0.7303005456924438, - 0.721050500869751, - 0.7217127084732056, - 0.7322691679000854, - 0.7524319887161255, - 0.7816510796546936, - 0.819129467010498, - 0.8638448119163513, - 0.9145774245262146, - 0.9699434041976929, - 1.0284324884414673, - 1.088449478149414, - 1.1483570337295532, - 1.2065210342407227, - 1.261354923248291, - 1.3113631010055542, - 0.8575161695480347, - 0.8329689502716064, - 0.8152810335159302, - 0.8049352169036865, - 0.8022134304046631, - 0.8071901202201843, - 0.8197294473648071, - 0.8394893407821655, - 0.8659308552742004, - 0.8983327150344849, - 0.9358111619949341, - 0.9773436784744263, - 1.02179753780365, - 1.0679601430892944, - 1.114572286605835, - 1.1603624820709229, - 1.204081654548645, - 1.244537353515625, - 1.2806259393692017, - 1.3113631010055542, - 0.8575161695480347, - 0.8552353382110596, - 0.8592065572738647, - 0.8693215847015381, - 0.8853043913841248, - 0.9067191481590271, - 0.9329816699028015, - 0.9633755683898926, - 0.9970717430114746, - 1.0331511497497559, - 1.0706294775009155, - 1.1084845066070557, - 1.145683765411377, - 1.1812124252319336, - 1.2141013145446777, - 1.2434533834457397, - 1.2684680223464966, - 1.28846275806427, - 1.3028923273086548, - 1.3113631010055542, - 0.8575161695480347, - 0.8780843019485474, - 0.9042812585830688, - 0.935392439365387, - 0.9705692529678345, - 1.0088521242141724, - 1.0491968393325806, - 1.0905029773712158, - 1.1316436529159546, - 1.1714966297149658, - 1.208975076675415, - 1.2430564165115356, - 1.2728111743927002, - 1.2974276542663574, - 1.3162342309951782, - 1.3287181854248047, - 1.3345388174057007, - 1.3335374593734741, - 1.3257412910461426, - 1.3113631010055542, - 0.8575161695480347, - 0.8990398049354553, - 0.9456206560134888, - 0.995988130569458, - 1.0487682819366455, - 1.102521538734436, - 1.1557815074920654, - 1.2070955038070679, - 1.255063772201538, - 1.2983777523040771, - 1.3358561992645264, - 1.3664765357971191, - 1.3894037008285522, - 1.4040122032165527, - 1.409903645515442, - 1.4069173336029053, - 1.3951345682144165, - 1.374876856803894, - 1.3466968536376953, - 1.3113631010055542, - 0.8575161695480347, - 0.9158309698104858, - 0.9787449836730957, - 1.0445420742034912, - 1.1114274263381958, - 1.1775765419006348, - 1.2411853075027466, - 1.3005183935165405, - 1.3539574146270752, - 1.4000446796417236, - 1.4375230073928833, - 1.4653701782226562, - 1.482826590538025, - 1.4894160032272339, - 1.4849587678909302, - 1.469576358795166, - 1.4436883926391602, - 1.408001184463501, - 1.363487958908081, - 1.3113631010055542, - 0.8575161695480347, - 0.9266381859779358, - 1.0000646114349365, - 1.0757925510406494, - 1.1517564058303833, - 1.225883960723877, - 1.2961534261703491, - 1.3606477975845337, - 1.4176079034805298, - 1.465480089187622, - 1.5029584169387817, - 1.5290207862854004, - 1.542955994606018, - 1.5443841218948364, - 1.5332661867141724, - 1.5099053382873535, - 1.474938988685608, - 1.4293208122253418, - 1.3742952346801758, - 1.3113631010055542, - 0.8575161695480347, - 0.9302903413772583, - 1.0072693824768066, - 1.0863533020019531, - 1.165385127067566, - 1.2422088384628296, - 1.31472909450531, - 1.380967617034912, - 1.439117670059204, - 1.4875930547714233, - 1.525071382522583, - 1.5505305528640747, - 1.563275933265686, - 1.562959909439087, - 1.549591064453125, - 1.5235340595245361, - 1.4854997396469116, - 1.436525583267212, - 1.3779473304748535, - 1.3113631010055542 - ], - "z": [ - 1.0995322465896606, - 1.138063669204712, - 1.1656910181045532, - 1.1816604137420654, - 1.185536503791809, - 1.177213430404663, - 1.1569182872772217, - 1.1252045631408691, - 1.082937479019165, - 1.031269907951355, - 0.9716110825538635, - 0.9055885076522827, - 0.8350030779838562, - 0.7617801427841187, - 0.6879170536994934, - 0.6154285669326782, - 0.5462919473648071, - 0.48239317536354065, - 0.42547518014907837, - 0.37709054350852966, - 1.0995322465896606, - 1.1355946063995361, - 1.1608201265335083, - 1.17452073097229, - 1.17632257938385, - 1.1661767959594727, - 1.144359827041626, - 1.111466884613037, - 1.0683953762054443, - 1.016319990158081, - 0.9566611647605896, - 0.891046404838562, - 0.8212653994560242, - 0.7492216229438782, - 0.6768803000450134, - 0.6062145829200745, - 0.5391521453857422, - 0.4775222837924957, - 0.4230060577392578, - 0.37709054350852966, - 1.0995322465896606, - 1.1286836862564087, - 1.1471868753433228, - 1.1545368432998657, - 1.1505334377288818, - 1.1352856159210205, - 1.1092092990875244, - 1.0730159282684326, - 1.0276927947998047, - 0.9744759202003479, - 0.9148171544075012, - 0.8503437638282776, - 0.7828144431114197, - 0.7140711545944214, - 0.645989179611206, - 0.5804253816604614, - 0.5191683769226074, - 0.4638890027999878, - 0.41609516739845276, - 0.37709054350852966, - 1.0995322465896606, - 1.1180799007415771, - 1.1262685060501099, - 1.1238746643066406, - 1.1109635829925537, - 1.0878875255584717, - 1.0552760362625122, - 1.0140185356140137, - 0.965240478515625, - 0.9102723002433777, - 0.850613534450531, - 0.7878915071487427, - 0.723816990852356, - 0.6601378321647644, - 0.598591148853302, - 0.5408555865287781, - 0.4885060787200928, - 0.4429706633090973, - 0.4054913818836212, - 0.37709054350852966, - 1.0995322465896606, - 1.1049323081970215, - 1.1003320217132568, - 1.0858566761016846, - 1.0619010925292969, - 1.0291190147399902, - 0.9884043335914612, - 0.9408678412437439, - 0.8878060579299927, - 0.8306665420532227, - 0.771007776260376, - 0.7104571461677551, - 0.6506662964820862, - 0.5932661890983582, - 0.5398225784301758, - 0.49179312586784363, - 0.4504880905151367, - 0.4170341491699219, - 0.39234378933906555, - 0.37709054350852966, - 1.0995322465896606, - 1.0906656980514526, - 1.072187900543213, - 1.0446027517318726, - 1.0086627006530762, - 0.9653483033180237, - 0.9158408641815186, - 0.8614909052848816, - 0.8037809729576111, - 0.7442851066589355, - 0.6846263408660889, - 0.6264320015907288, - 0.5712894201278687, - 0.5207027196884155, - 0.47605186700820923, - 0.4385547339916229, - 0.4092341959476471, - 0.38889002799987793, - 0.3780771791934967, - 0.37709054350852966, - 1.0995322465896606, - 1.0768260955810547, - 1.0448859930038452, - 1.0045833587646484, - 0.9570176601409912, - 0.9034861326217651, - 0.8454490303993225, - 0.7844895720481873, - 0.7222704291343689, - 0.6604888439178467, - 0.600830078125, - 0.5449214577674866, - 0.49428802728652954, - 0.4503108561038971, - 0.4141896665096283, - 0.3869096040725708, - 0.36921489238739014, - 0.36158818006515503, - 0.3642374873161316, - 0.37709057331085205, - 1.0995322465896606, - 1.064913034439087, - 1.0213849544525146, - 0.9701354503631592, - 0.9125623106956482, - 0.8502360582351685, - 0.7848568558692932, - 0.7182079553604126, - 0.6521074175834656, - 0.5883583426475525, - 0.5286995768547058, - 0.47475847601890564, - 0.4280064105987549, - 0.3897186517715454, - 0.360939621925354, - 0.34245428442955017, - 0.3347669243812561, - 0.33808717131614685, - 0.352324515581131, - 0.37709057331085205, - 1.0995322465896606, - 1.0562176704406738, - 1.004231572151184, - 0.9449917078018188, - 0.8801141977310181, - 0.8113687634468079, - 0.7406303882598877, - 0.6698288321495056, - 0.6008952856063843, - 0.5357100963592529, - 0.47605130076408386, - 0.42354631423950195, - 0.3796272873878479, - 0.3454922139644623, - 0.32207226753234863, - 0.3100062310695648, - 0.30962321162223816, - 0.3209336996078491, - 0.3436291813850403, - 0.37709057331085205, - 1.0995322465896606, - 1.0516823530197144, - 0.9952844381332397, - 0.9318770170211792, - 0.8631896376609802, - 0.7910959124565125, - 0.7175623774528503, - 0.6445947289466858, - 0.5741835236549377, - 0.5082492232322693, - 0.448590487241745, - 0.3968345522880554, - 0.35439321398735046, - 0.32242417335510254, - 0.3017994463443756, - 0.2930816113948822, - 0.2965085208415985, - 0.31198665499687195, - 0.33909380435943604, - 0.37709057331085205, - 1.0995322465896606, - 1.0517983436584473, - 0.9955133199691772, - 0.9322125315666199, - 0.8636226058006287, - 0.7916145324707031, - 0.7181524634361267, - 0.6452402472496033, - 0.5748668313026428, - 0.508951723575592, - 0.44929295778274536, - 0.3975178599357605, - 0.35503870248794556, - 0.3230142593383789, - 0.3023180365562439, - 0.29351457953453064, - 0.2968440055847168, - 0.31221550703048706, - 0.33920982480049133, - 0.37709057331085205, - 1.0995322465896606, - 1.0565532445907593, - 1.0048933029174805, - 0.9459618330001831, - 0.8813661336898804, - 0.8128683567047119, - 0.7423367500305176, - 0.6716954112052917, - 0.6028711199760437, - 0.5377413630485535, - 0.4780825972557068, - 0.42552217841148376, - 0.38149386644363403, - 0.34719857573509216, - 0.3235718607902527, - 0.31125813722610474, - 0.3105933368206024, - 0.32159551978111267, - 0.34396466612815857, - 0.37709057331085205, - 1.0995322465896606, - 1.0654315948486328, - 1.0224080085754395, - 0.9716349840164185, - 0.9144975543022156, - 0.852554202079773, - 0.7874945402145386, - 0.7210932970046997, - 0.6551617383956909, - 0.5914983153343201, - 0.5318395495414734, - 0.47781282663345337, - 0.4308917820453644, - 0.39235636591911316, - 0.3632577061653137, - 0.34438952803611755, - 0.33626648783683777, - 0.33911019563674927, - 0.35284310579299927, - 0.37709057331085205, - 1.0995322465896606, - 1.0774714946746826, - 1.0461595058441162, - 1.0064499378204346, - 0.9594264626502991, - 0.9063714742660522, - 0.8487322926521301, - 0.7880810499191284, - 0.7260722517967224, - 0.6643973588943481, - 0.6047385931015015, - 0.5487233400344849, - 0.4978795647621155, - 0.4535941183567047, - 0.4170750677585602, - 0.38931846618652344, - 0.37108150124549866, - 0.36286160349845886, - 0.3648830056190491, - 0.37709057331085205, - 1.0995322465896606, - 1.0913681983947754, - 1.0735735893249512, - 1.0466339588165283, - 1.0112841129302979, - 0.9684882760047913, - 0.9194138050079346, - 0.8653993606567383, - 0.8079182505607605, - 0.7485384345054626, - 0.688879668712616, - 0.6305692791938782, - 0.5751978158950806, - 0.5242756605148315, - 0.4791918396949768, - 0.4411761164665222, - 0.41126549243927, - 0.3902758061885834, - 0.3787796199321747, - 0.37709054350852966, - 1.0995322465896606, - 1.1056156158447266, - 1.1016799211502075, - 1.0878324508666992, - 1.064450979232788, - 1.0321732759475708, - 0.9918797016143799, - 0.9446695446968079, - 0.8918304443359375, - 0.8348037600517273, - 0.7751449942588806, - 0.7144815325737, - 0.6544680595397949, - 0.5967415571212769, - 0.5428768396377563, - 0.49434298276901245, - 0.45246395468711853, - 0.41838207840919495, - 0.39302709698677063, - 0.37709054350852966, - 1.0995322465896606, - 1.1186699867248535, - 1.1274325847625732, - 1.1255810260772705, - 1.1131656169891357, - 1.0905252695083618, - 1.0582773685455322, - 1.0173016786575317, - 0.9687159061431885, - 0.9138452410697937, - 0.854186475276947, - 0.7913669347763062, - 0.7271001935005188, - 0.6631392240524292, - 0.6012288331985474, - 0.5430576205253601, - 0.49021244049072266, - 0.44413477182388306, - 0.4060814678668976, - 0.37709054350852966, - 1.0995322465896606, - 1.1291166543960571, - 1.1480408906936646, - 1.155788779258728, - 1.1521490812301636, - 1.137220859527588, - 1.111411452293396, - 1.0754247903823853, - 1.030242681503296, - 0.9770973324775696, - 0.9174385666847229, - 0.8528937101364136, - 0.7852233052253723, - 0.7162732481956482, - 0.6479244232177734, - 0.5820410251617432, - 0.5204203128814697, - 0.46474307775497437, - 0.4165281057357788, - 0.37709054350852966, - 1.0995322465896606, - 1.1358234882354736, - 1.161271572113037, - 1.175182580947876, - 1.1771767139434814, - 1.1671998500823975, - 1.1455239057540894, - 1.112740397453308, - 1.0697433948516846, - 1.0177056789398193, - 0.9580469727516174, - 0.8923944234848022, - 0.8225388526916504, - 0.7503857612609863, - 0.677903413772583, - 0.6070687174797058, - 0.5398139953613281, - 0.4779738187789917, - 0.4232349395751953, - 0.37709054350852966, - 1.0995322465896606, - 1.138063669204712, - 1.1656910181045532, - 1.1816604137420654, - 1.185536503791809, - 1.177213430404663, - 1.1569182872772217, - 1.1252045631408691, - 1.082937479019165, - 1.031269907951355, - 0.9716110825538635, - 0.9055885076522827, - 0.8350030779838562, - 0.7617801427841187, - 0.6879170536994934, - 0.6154285669326782, - 0.5462919473648071, - 0.48239317536354065, - 0.42547518014907837, - 0.37709054350852966 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.6404706239700317, - -1.6307260990142822, - -1.6214812994003296, - -1.6129881143569946, - -1.6054784059524536, - -1.5991569757461548, - -1.5941963195800781, - -1.5907316207885742, - -1.5888575315475464, - -1.5886250734329224, - -1.590040683746338, - -1.593065619468689, - -1.5976173877716064, - -1.6035720109939575, - -1.6107667684555054, - -1.6190056800842285, - -1.6280637979507446, - -1.637694239616394, - -1.6476341485977173, - -1.6576124429702759, - -1.6404706239700317, - -1.63021719455719, - -1.6204771995544434, - -1.6115163564682007, - -1.603579044342041, - -1.5968819856643677, - -1.5916075706481934, - -1.5878998041152954, - -1.5858598947525024, - -1.5855433940887451, - -1.586958885192871, - -1.590067982673645, - -1.5947855710983276, - -1.6009832620620728, - -1.6084916591644287, - -1.617106318473816, - -1.6265920400619507, - -1.6366901397705078, - -1.6471251249313354, - -1.6576124429702759, - -1.6404706239700317, - -1.6308319568634033, - -1.621690034866333, - -1.6132941246032715, - -1.6058733463287354, - -1.5996301174163818, - -1.5947346687316895, - -1.591320514678955, - -1.5894808769226074, - -1.5892659425735474, - -1.590681552886963, - -1.59368896484375, - -1.5982062816619873, - -1.6041102409362793, - -1.6112399101257324, - -1.6194006204605103, - -1.628369927406311, - -1.6379029750823975, - -1.6477400064468384, - -1.6576124429702759, - -1.6404706239700317, - -1.6325039863586426, - -1.6249884366989136, - -1.6181288957595825, - -1.6121126413345337, - -1.607103705406189, - -1.6032387018203735, - -1.6006231307983398, - -1.5993282794952393, - -1.5993894338607788, - -1.6008050441741943, - -1.6035363674163818, - -1.607508897781372, - -1.612614393234253, - -1.6187134981155396, - -1.6256399154663086, - -1.6332045793533325, - -1.641201376914978, - -1.649411916732788, - -1.6576124429702759, - -1.6404706239700317, - -1.635051965713501, - -1.6300147771835327, - -1.625496745109558, - -1.621620774269104, - -1.618492841720581, - -1.6161983013153076, - -1.6147994995117188, - -1.6143348217010498, - -1.6148167848587036, - -1.6162323951721191, - -1.6185429096221924, - -1.621685266494751, - -1.6255738735198975, - -1.6301026344299316, - -1.635148048400879, - -1.640572428703308, - -1.6462278366088867, - -1.6519598960876465, - -1.6576124429702759, - -1.6404706239700317, - -1.638199806213379, - -1.636224627494812, - -1.6345990896224976, - -1.6333675384521484, - -1.6325634717941284, - -1.6322088241577148, - -1.6323134899139404, - -1.6328743696212769, - -1.6338762044906616, - -1.6352918148040771, - -1.6370824575424194, - -1.6391992568969727, - -1.6415845155715942, - -1.644173264503479, - -1.6468946933746338, - -1.6496747732162476, - -1.6524375677108765, - -1.6551077365875244, - -1.6576124429702759, - -1.6404706239700317, - -1.641606330871582, - -1.6429448127746582, - -1.6444497108459473, - -1.6460797786712646, - -1.647790551185608, - -1.6495355367660522, - -1.6512670516967773, - -1.652937889099121, - -1.6545023918151855, - -1.6559178829193115, - -1.6571459770202637, - -1.6581528186798096, - -1.6589112281799316, - -1.6594003438949585, - -1.65960693359375, - -1.6595253944396973, - -1.6591578722000122, - -1.6585142612457275, - -1.6576124429702759, - -1.6404706239700317, - -1.6449025869369507, - -1.6494473218917847, - -1.65398108959198, - -1.6583800315856934, - -1.6625242233276367, - -1.6663007736206055, - -1.6696064472198486, - -1.6723511219024658, - -1.6744600534439087, - -1.6758756637573242, - -1.6765592098236084, - -1.6764922142028809, - -1.6756763458251953, - -1.6741340160369873, - -1.6719073057174683, - -1.66905677318573, - -1.6656602621078491, - -1.6618105173110962, - -1.6576124429702759, - -1.6404706239700317, - -1.647731065750122, - -1.6550273895263672, - -1.6621602773666382, - -1.6689354181289673, - -1.6751677989959717, - -1.6806875467300415, - -1.6853440999984741, - -1.689010500907898, - -1.6915864944458008, - -1.6930021047592163, - -1.693218469619751, - -1.6922298669815063, - -1.690063238143921, - -1.6867775917053223, - -1.6824625730514526, - -1.6772359609603882, - -1.6712403297424316, - -1.6646391153335571, - -1.6576124429702759, - -1.6404706239700317, - -1.6497856378555298, - -1.6590802669525146, - -1.6681010723114014, - -1.6766020059585571, - -1.6843510866165161, - -1.6911370754241943, - -1.6967748403549194, - -1.7011104822158813, - -1.7040258646011353, - -1.7054414749145508, - -1.705318570137024, - -1.7036606073379517, - -1.7005127668380737, - -1.6959608793258667, - -1.690129280090332, - -1.6831767559051514, - -1.675293207168579, - -1.6666935682296753, - -1.6576124429702759, - -1.6404706239700317, - -1.6508432626724243, - -1.661166787147522, - -1.6711596250534058, - -1.6805490255355835, - -1.6890790462493896, - -1.6965168714523315, - -1.7026598453521729, - -1.707340121269226, - -1.7104301452636719, - -1.7118457555770874, - -1.7115482091903687, - -1.709545612335205, - -1.705892562866211, - -1.7006888389587402, - -1.6940762996673584, - -1.6862353086471558, - -1.677379846572876, - -1.6677513122558594, - -1.6576124429702759, - -1.6404706239700317, - -1.6507896184921265, - -1.6610609292984009, - -1.6710044145584106, - -1.6803488731384277, - -1.6888391971588135, - -1.6962440013885498, - -1.7023612260818481, - -1.707024097442627, - -1.710105299949646, - -1.7115209102630615, - -1.7112321853637695, - -1.7092469930648804, - -1.7056196928024292, - -1.700448989868164, - -1.693876028060913, - -1.6860802173614502, - -1.6772739887237549, - -1.6676976680755615, - -1.6576124429702759, - -1.6404706239700317, - -1.6496304273605347, - -1.6587741374969482, - -1.6676524877548218, - -1.676023006439209, - -1.6836576461791992, - -1.6903480291366577, - -1.6959116458892822, - -1.7001968622207642, - -1.7030866146087646, - -1.7045021057128906, - -1.7044048309326172, - -1.7027974128723145, - -1.699723720550537, - -1.6952674388885498, - -1.6895502805709839, - -1.6827281713485718, - -1.6749871969223022, - -1.6665384769439697, - -1.6576124429702759, - -1.6404706239700317, - -1.6474913358688354, - -1.6545542478561401, - -1.6614668369293213, - -1.66804039478302, - -1.674095869064331, - -1.679467797279358, - -1.6840097904205322, - -1.6875979900360107, - -1.6901345252990723, - -1.6915500164031982, - -1.6918060779571533, - -1.6908955574035645, - -1.6888434886932373, - -1.6857056617736816, - -1.681567668914795, - -1.6765425205230713, - -1.6707671880722046, - -1.664399266242981, - -1.6576124429702759, - -1.6404706239700317, - -1.6446040868759155, - -1.6488584280014038, - -1.6531178951263428, - -1.6572661399841309, - -1.6611899137496948, - -1.6647825241088867, - -1.6679456233978271, - -1.670593023300171, - -1.6726527214050293, - -1.6740682125091553, - -1.6748011112213135, - -1.6748313903808594, - -1.6741580963134766, - -1.6727997064590454, - -1.6707932949066162, - -1.6681935787200928, - -1.6650713682174683, - -1.661512017250061, - -1.6576124429702759, - -1.6404706239700317, - -1.6412814855575562, - -1.6423040628433228, - -1.643510341644287, - -1.6448675394058228, - -1.6463385820388794, - -1.6478832960128784, - -1.649459719657898, - -1.6510246992111206, - -1.6525355577468872, - -1.6539510488510132, - -1.6552326679229736, - -1.6563454866409302, - -1.6572589874267578, - -1.65794837474823, - -1.6583948135375977, - -1.658586025238037, - -1.6585170030593872, - -1.6581894159317017, - -1.6576124429702759, - -1.6404706239700317, - -1.6378837823867798, - -1.635601282119751, - -1.6336853504180908, - -1.632188320159912, - -1.6311509609222412, - -1.6306017637252808, - -1.6305553913116455, - -1.63101327419281, - -1.6319630146026611, - -1.6333786249160767, - -1.6352213621139526, - -1.6374411582946777, - -1.6399773359298706, - -1.6427607536315918, - -1.645715594291687, - -1.6487610340118408, - -1.6518142223358154, - -1.6547917127609253, - -1.6576124429702759, - -1.6404706239700317, - -1.6347790956497192, - -1.629476547241211, - -1.624707579612732, - -1.6206024885177612, - -1.6172730922698975, - -1.6148103475570679, - -1.61328125, - -1.6127276420593262, - -1.6131645441055298, - -1.6145801544189453, - -1.6169356107711792, - -1.6201670169830322, - -1.6241859197616577, - -1.628882884979248, - -1.6341297626495361, - -1.6397833824157715, - -1.6456894874572754, - -1.6516870260238647, - -1.6576124429702759, - -1.6404706239700317, - -1.6323037147521973, - -1.6245933771133423, - -1.617550015449524, - -1.611365556716919, - -1.6062088012695312, - -1.6022204160690308, - -1.5995092391967773, - -1.598149061203003, - -1.598177194595337, - -1.5995928049087524, - -1.6023571491241455, - -1.6063950061798096, - -1.6115961074829102, - -1.6178185939788818, - -1.6248928308486938, - -1.632625699043274, - -1.6408064365386963, - -1.6492117643356323, - -1.6576124429702759, - -1.6404706239700317, - -1.6307260990142822, - -1.6214812994003296, - -1.6129881143569946, - -1.6054784059524536, - -1.5991569757461548, - -1.5941963195800781, - -1.5907316207885742, - -1.5888575315475464, - -1.5886250734329224, - -1.590040683746338, - -1.593065619468689, - -1.5976173877716064, - -1.6035720109939575, - -1.6107667684555054, - -1.6190056800842285, - -1.6280637979507446, - -1.637694239616394, - -1.6476341485977173, - -1.6576124429702759 - ], - "y": [ - 0.8620041012763977, - 0.9360886216163635, - 1.0146818161010742, - 1.095639944076538, - 1.1767545938491821, - 1.2558132410049438, - 1.3306593894958496, - 1.3992514610290527, - 1.4597182273864746, - 1.5104105472564697, - 1.549945592880249, - 1.5772448778152466, - 1.5915639400482178, - 1.5925118923187256, - 1.5800631046295166, - 1.554557204246521, - 1.516689658164978, - 1.4674936532974243, - 1.4083110094070435, - 1.3407560586929321, - 0.8620041012763977, - 0.932161271572113, - 1.0069342851638794, - 1.084283471107483, - 1.162099003791809, - 1.2382583618164062, - 1.3106839656829834, - 1.3774003982543945, - 1.4365876913070679, - 1.4866313934326172, - 1.526166319847107, - 1.5541143417358398, - 1.5697128772735596, - 1.572536587715149, - 1.562508225440979, - 1.539901614189148, - 1.5053331851959229, - 1.4597461223602295, - 1.404383659362793, - 1.3407560586929321, - 0.8620041012763977, - 0.9209851026535034, - 0.9848867654800415, - 1.0519660711288452, - 1.1203932762145996, - 1.1883018016815186, - 1.2538394927978516, - 1.3152183294296265, - 1.3707642555236816, - 1.418962001800537, - 1.4584970474243164, - 1.4882909059524536, - 1.507530689239502, - 1.5156919956207275, - 1.5125517845153809, - 1.4981958866119385, - 1.4730157852172852, - 1.4376986026763916, - 1.3932075500488281, - 1.3407560586929321, - 0.8620041608810425, - 0.9037712216377258, - 0.9509285688400269, - 1.0021898746490479, - 1.0561567544937134, - 1.1113572120666504, - 1.1662856340408325, - 1.2194435596466064, - 1.2693809270858765, - 1.314735770225525, - 1.3542706966400146, - 1.3869075775146484, - 1.4117560386657715, - 1.4281381368637085, - 1.4356071949005127, - 1.4339593648910522, - 1.4232395887374878, - 1.403740406036377, - 1.3759936094284058, - 1.3407560586929321, - 0.8620041608810425, - 0.8823850154876709, - 0.9087395071983337, - 0.940348744392395, - 0.9763504862785339, - 1.0157626867294312, - 1.0575103759765625, - 1.1004546880722046, - 1.143424153327942, - 1.1852469444274902, - 1.22478187084198, - 1.2609508037567139, - 1.29276704788208, - 1.3193628787994385, - 1.340012550354004, - 1.354153037071228, - 1.361398458480835, - 1.3615514039993286, - 1.354607343673706, - 1.3407560586929321, - 0.8620041608810425, - 0.8591440320014954, - 0.862891435623169, - 0.873144268989563, - 0.8896227478981018, - 0.9118773937225342, - 0.9393011927604675, - 0.9711461067199707, - 1.0065433979034424, - 1.0445276498794556, - 1.0840626955032349, - 1.1240700483322144, - 1.1634585857391357, - 1.2011537551879883, - 1.236127257347107, - 1.267425298690796, - 1.294193983078003, - 1.3157033920288086, - 1.3313664197921753, - 1.3407560586929321, - 0.8620041608810425, - 0.8365667462348938, - 0.8183527588844299, - 0.8078590631484985, - 0.8053717613220215, - 0.8109588623046875, - 0.8244678974151611, - 0.8455303907394409, - 0.8735717535018921, - 0.9078271985054016, - 0.9473621845245361, - 0.9910984039306641, - 1.037842869758606, - 1.086320400238037, - 1.1352087259292603, - 1.1831743717193604, - 1.2289087772369385, - 1.2711646556854248, - 1.3087891340255737, - 1.3407560586929321, - 0.8620041608810425, - 0.8170998096466064, - 0.7799499034881592, - 0.7515677213668823, - 0.7327275276184082, - 0.7239432334899902, - 0.7254544496536255, - 0.7372199296951294, - 0.7589187622070312, - 0.7899590134620667, - 0.8294939994812012, - 0.8764453530311584, - 0.9295324087142944, - 0.9873069524765015, - 1.048193097114563, - 1.110530138015747, - 1.1726175546646118, - 1.2327617406845093, - 1.2893221378326416, - 1.3407560586929321, - 0.8620041608810425, - 0.8028527498245239, - 0.7518443465232849, - 0.7103704214096069, - 0.6795621514320374, - 0.6602600812911987, - 0.6529905200004578, - 0.6579518914222717, - 0.6750088334083557, - 0.7036960124969482, - 0.7432310581207275, - 0.7925354838371277, - 0.850264310836792, - 0.9148430228233337, - 0.9845098853111267, - 1.0573647022247314, - 1.1314201354980469, - 1.2046562433242798, - 1.275075078010559, - 1.3407560586929321, - 0.8620041608810425, - 0.7953693866729736, - 0.7370818257331848, - 0.6887314319610596, - 0.6516369581222534, - 0.6268102526664734, - 0.6149286031723022, - 0.6163160800933838, - 0.6309348940849304, - 0.65838623046875, - 0.6979212164878845, - 0.7484615445137024, - 0.8086285591125488, - 0.8767811059951782, - 0.9510601162910461, - 1.0294394493103027, - 1.1097811460494995, - 1.1898937225341797, - 1.2675918340682983, - 1.3407560586929321, - 0.8620041608810425, - 0.7954608201980591, - 0.7372621297836304, - 0.6889956593513489, - 0.6519778966903687, - 0.6272187232971191, - 0.6153934001922607, - 0.6168245077133179, - 0.6314731240272522, - 0.6589394807815552, - 0.6984745264053345, - 0.7489997744560242, - 0.8091369867324829, - 0.8772459030151367, - 0.9514685869216919, - 1.0297805070877075, - 1.1100454330444336, - 1.1900739669799805, - 1.2676831483840942, - 1.3407560586929321, - 0.8620041608810425, - 0.8031169772148132, - 0.7523655891418457, - 0.7111345529556274, - 0.6805482506752014, - 0.6614412069320679, - 0.654334545135498, - 0.6594220995903015, - 0.6765651702880859, - 0.7052960395812988, - 0.7448310256004333, - 0.7940918207168579, - 0.8517345190048218, - 0.916187047958374, - 0.9856910705566406, - 1.0583508014678955, - 1.1321842670440674, - 1.2051775455474854, - 1.2753393650054932, - 1.3407560586929321, - 0.8620041608810425, - 0.8175082802772522, - 0.7807556390762329, - 0.7527489066123962, - 0.734251856803894, - 0.7257691025733948, - 0.7275320291519165, - 0.7394925951957703, - 0.7613245248794556, - 0.7924321889877319, - 0.8319672346115112, - 0.8788511157035828, - 0.9318050146102905, - 0.9893845319747925, - 1.0500189065933228, - 1.1120543479919434, - 1.173798680305481, - 1.2335675954818726, - 1.2897306680679321, - 1.3407560586929321, - 0.8620041608810425, - 0.8370752334594727, - 0.8193557858467102, - 0.8093292713165283, - 0.8072691559791565, - 0.8132315874099731, - 0.8270540237426758, - 0.8483592867851257, - 0.8765663504600525, - 0.9109057188034058, - 0.9504407644271851, - 0.9940930008888245, - 1.040671706199646, - 1.0889065265655518, - 1.137481451034546, - 1.1850717067718506, - 1.2303791046142578, - 1.272167682647705, - 1.3092975616455078, - 1.3407560586929321, - 0.8620041608810425, - 0.8596973419189453, - 0.8639829754829407, - 0.874744176864624, - 0.8916874527931213, - 0.9143506288528442, - 0.9421154260635376, - 0.9742245674133301, - 1.009802222251892, - 1.0478777885437012, - 1.0874128341674805, - 1.127328872680664, - 1.1665370464324951, - 1.2039679288864136, - 1.238600492477417, - 1.2694900035858154, - 1.2957940101623535, - 1.3167948722839355, - 1.3319196701049805, - 1.3407560586929321, - 0.8620041608810425, - 0.8829231858253479, - 0.909801185131073, - 0.9419050216674805, - 0.9783588647842407, - 1.018168330192566, - 1.060247778892517, - 1.1034491062164307, - 1.1465939283370972, - 1.1885055303573608, - 1.2280405759811401, - 1.2641205787658691, - 1.2957614660263062, - 1.322100281715393, - 1.3424181938171387, - 1.35616135597229, - 1.3629547357559204, - 1.3626130819320679, - 1.3551455736160278, - 1.3407560586929321, - 0.8620041608810425, - 0.9042360186576843, - 0.9518454670906067, - 1.0035338401794434, - 1.0578912496566772, - 1.1134347915649414, - 1.168649673461914, - 1.2220295667648315, - 1.272118330001831, - 1.3175499439239502, - 1.3570849895477295, - 1.3896450996398926, - 1.414341926574707, - 1.43050217628479, - 1.4376847743988037, - 1.4356937408447266, - 1.4245836734771729, - 1.4046573638916016, - 1.3764584064483643, - 1.3407560586929321, - 0.8620041012763977, - 0.9213261008262634, - 0.9855594635009766, - 1.0529521703720093, - 1.1216658353805542, - 1.1898261308670044, - 1.2555738687515259, - 1.3171156644821167, - 1.3727726936340332, - 1.4210268259048462, - 1.4605618715286255, - 1.4902994632720947, - 1.5094281435012817, - 1.5174264907836914, - 1.5140759944915771, - 1.499468445777893, - 1.4740018844604492, - 1.4383714199066162, - 1.3935484886169434, - 1.3407560586929321, - 0.8620041012763977, - 0.9323415756225586, - 1.0072898864746094, - 1.0848047733306885, - 1.1627718210220337, - 1.2390642166137695, - 1.311600923538208, - 1.3784034252166748, - 1.4376494884490967, - 1.4877228736877441, - 1.5272579193115234, - 1.5551761388778687, - 1.5707159042358398, - 1.5734535455703735, - 1.5633141994476318, - 1.5405744314193726, - 1.505854606628418, - 1.460101842880249, - 1.4045639038085938, - 1.3407560586929321, - 0.8620041012763977, - 0.9360886216163635, - 1.0146818161010742, - 1.095639944076538, - 1.1767545938491821, - 1.2558132410049438, - 1.3306593894958496, - 1.3992514610290527, - 1.4597182273864746, - 1.5104105472564697, - 1.549945592880249, - 1.5772448778152466, - 1.5915639400482178, - 1.5925118923187256, - 1.5800631046295166, - 1.554557204246521, - 1.516689658164978, - 1.4674936532974243, - 1.4083110094070435, - 1.3407560586929321 - ], - "z": [ - 1.1369017362594604, - 1.1784069538116455, - 1.2088758945465088, - 1.2274773120880127, - 1.2337042093276978, - 1.227386474609375, - 1.2086963653564453, - 1.1781439781188965, - 1.1365623474121094, - 1.0850861072540283, - 1.0251190662384033, - 0.9582970142364502, - 0.8864428400993347, - 0.8115164637565613, - 0.7355616688728333, - 0.6606503129005432, - 0.5888257026672363, - 0.5220471620559692, - 0.4621362090110779, - 0.41072699427604675, - 1.1369017362594604, - 1.175805687904358, - 1.2037442922592163, - 1.219955563545227, - 1.2239972352981567, - 1.2157591581344604, - 1.1954659223556519, - 1.1636711359024048, - 1.1212421655654907, - 1.069336175918579, - 1.009369134902954, - 0.9429767727851868, - 0.8719701170921326, - 0.798285961151123, - 0.7239344120025635, - 0.6509433388710022, - 0.5813038945198059, - 0.5169156789779663, - 0.45953497290611267, - 0.41072699427604675, - 1.1369017362594604, - 1.1684520244598389, - 1.1892374753952026, - 1.1986913681030273, - 1.1965556144714355, - 1.1828887462615967, - 1.158063292503357, - 1.1227566003799438, - 1.0779316425323486, - 1.024811029434204, - 0.9648440480232239, - 0.8996661901473999, - 0.8310554623603821, - 0.7608833312988281, - 0.6910640001296997, - 0.6235017776489258, - 0.5600396990776062, - 0.5024088621139526, - 0.45218127965927124, - 0.41072699427604675, - 1.1369017362594604, - 1.1571426391601562, - 1.166927456855774, - 1.1659890413284302, - 1.154353141784668, - 1.132337212562561, - 1.100541591644287, - 1.0598337650299072, - 1.011324167251587, - 0.9563357830047607, - 0.8963687419891357, - 0.833058774471283, - 0.768132746219635, - 0.7033616900444031, - 0.6405124068260193, - 0.5812992453575134, - 0.527337372303009, - 0.48009875416755676, - 0.4408719837665558, - 0.41072699427604675, - 1.1369017362594604, - 1.1431033611297607, - 1.1392316818237305, - 1.1253924369812012, - 1.1019630432128906, - 1.069582462310791, - 1.0291342735290527, - 0.9817215800285339, - 0.9286377429962158, - 0.8713306784629822, - 0.8113636374473572, - 0.7503723502159119, - 0.6900205016136169, - 0.6319543123245239, - 0.5777577757835388, - 0.5289090871810913, - 0.48674073815345764, - 0.4524030387401581, - 0.4268326461315155, - 0.41072699427604675, - 1.1369017362594604, - 1.1278553009033203, - 1.1091516017913818, - 1.0813007354736328, - 1.0450624227523804, - 1.0014252662658691, - 0.9515793919563293, - 0.896884560585022, - 0.8388327360153198, - 0.7790073156356812, - 0.7190402746200562, - 0.6605673432350159, - 0.605183482170105, - 0.5543994307518005, - 0.5096004605293274, - 0.4720085561275482, - 0.44264909625053406, - 0.42232295870780945, - 0.41158464550971985, - 0.41072699427604675, - 1.1369017362594604, - 1.1130510568618774, - 1.0799468755722046, - 1.0384920835494995, - 0.9898176193237305, - 0.9352512359619141, - 0.876281201839447, - 0.8145161867141724, - 0.7516408562660217, - 0.6893704533576965, - 0.6294034123420715, - 0.5733755230903625, - 0.5228151082992554, - 0.4791012406349182, - 0.4434264302253723, - 0.4167637228965759, - 0.39984044432640076, - 0.3931181728839874, - 0.3967803418636322, - 0.41072699427604675, - 1.1369017362594604, - 1.1002947092056274, - 1.0547821521759033, - 1.0016053915023804, - 0.9422152042388916, - 0.8782314658164978, - 0.8113994598388672, - 0.7435422539710999, - 0.676510751247406, - 0.6121335029602051, - 0.5521664619445801, - 0.4982454180717468, - 0.45184117555618286, - 0.414219468832016, - 0.38640666007995605, - 0.3691612482070923, - 0.3629537522792816, - 0.36795344948768616, - 0.3840239942073822, - 0.41072699427604675, - 1.1369017362594604, - 1.0909686088562012, - 1.0363844633102417, - 0.9746379256248474, - 0.9074134826660156, - 0.8365448713302612, - 0.7639650702476501, - 0.6916539669036865, - 0.6215839385986328, - 0.555666446685791, - 0.49569937586784363, - 0.44331860542297363, - 0.39995288848876953, - 0.36678510904312134, - 0.3447200655937195, - 0.3343595862388611, - 0.33598628640174866, - 0.34955576062202454, - 0.3746979832649231, - 0.41072702407836914, - 1.1369017362594604, - 1.0860835313796997, - 1.026747465133667, - 0.9605120420455933, - 0.8891839385032654, - 0.8147088885307312, - 0.7391183376312256, - 0.6644741892814636, - 0.5928125381469727, - 0.5260881781578064, - 0.4661211669445038, - 0.4145472049713135, - 0.37277311086654663, - 0.3419383764266968, - 0.32288411259651184, - 0.31613001227378845, - 0.3218603730201721, - 0.3399188220500946, - 0.36981287598609924, - 0.41072702407836914, - 1.1369017362594604, - 1.0861687660217285, - 1.0269155502319336, - 0.9607584476470947, - 0.8895019292831421, - 0.8150898218154907, - 0.7395517826080322, - 0.6649482846260071, - 0.5933144092559814, - 0.526604175567627, - 0.46663713455200195, - 0.41504907608032227, - 0.3732472360134125, - 0.34237179160118103, - 0.323265016078949, - 0.31644800305366516, - 0.32210680842399597, - 0.3400869369506836, - 0.36989808082580566, - 0.41072702407836914, - 1.1369017362594604, - 1.0912151336669922, - 1.0368704795837402, - 0.9753504395484924, - 0.9083330035209656, - 0.8376463055610657, - 0.7652183771133423, - 0.6930249333381653, - 0.623035192489624, - 0.557158350944519, - 0.49719133973121643, - 0.44476985931396484, - 0.4013238847255707, - 0.3680384159088135, - 0.3458214998245239, - 0.33527910709381104, - 0.33669883012771606, - 0.35004186630249023, - 0.37494438886642456, - 0.41072702407836914, - 1.1369017362594604, - 1.1006755828857422, - 1.055533528327942, - 1.00270676612854, - 0.9436365962028503, - 0.8799340128898621, - 0.8133367896080017, - 0.7456614971160889, - 0.6787541508674622, - 0.6144397854804993, - 0.5544727444648743, - 0.5004887580871582, - 0.4539604187011719, - 0.4161568284034729, - 0.3881092369556427, - 0.3705826699733734, - 0.36405518651008606, - 0.3687048554420471, - 0.38440489768981934, - 0.41072699427604675, - 1.1369017362594604, - 1.113525152206421, - 1.08088219165802, - 1.039863109588623, - 0.9915869235992432, - 0.9373705387115479, - 0.8786927461624146, - 0.8171541094779968, - 0.754433274269104, - 0.6922411918640137, - 0.6322741508483887, - 0.5761679410934448, - 0.5254530310630798, - 0.48151275515556335, - 0.4455457627773285, - 0.4185330271720886, - 0.4012114703655243, - 0.39405348896980286, - 0.39725446701049805, - 0.41072699427604675, - 1.1369017362594604, - 1.128371238708496, - 1.1101694107055664, - 1.0827927589416504, - 1.0469878911972046, - 1.0037314891815186, - 0.9542036652565002, - 0.8997552394866943, - 0.8418715000152588, - 0.7821313142776489, - 0.7221642732620239, - 0.6636061668395996, - 0.6080541610717773, - 0.5570237040519714, - 0.5119067430496216, - 0.4739339351654053, - 0.44414106011390686, - 0.4233407974243164, - 0.412100613117218, - 0.41072699427604675, - 1.1369017362594604, - 1.1436052322387695, - 1.1402218341827393, - 1.1268436908721924, - 1.1038358211517334, - 1.0718258619308472, - 1.0316869020462036, - 0.9845138788223267, - 0.9315935373306274, - 0.8743693828582764, - 0.8144023418426514, - 0.7533282041549683, - 0.6928128004074097, - 0.6345069408416748, - 0.5800011157989502, - 0.5307818651199341, - 0.48819199204444885, - 0.4533931016921997, - 0.4273345172405243, - 0.41072699427604675, - 1.1369017362594604, - 1.157576084136963, - 1.1677824258804321, - 1.1672422885894775, - 1.155970573425293, - 1.1342744827270508, - 1.1027461290359497, - 1.0622453689575195, - 1.0138767957687378, - 0.9589600563049316, - 0.8989930152893066, - 0.8356114625930786, - 0.7705442309379578, - 0.7055661678314209, - 0.6424497961997986, - 0.5829166173934937, - 0.5285906791687012, - 0.48095378279685974, - 0.44130539894104004, - 0.41072699427604675, - 1.1369017362594604, - 1.1687699556350708, - 1.1898648738861084, - 1.1996108293533325, - 1.1977423429489136, - 1.1843101978302002, - 1.159680724143982, - 1.124525785446167, - 1.079804539680481, - 1.0267364978790283, - 0.9667694568634033, - 0.901539146900177, - 0.8328247666358948, - 0.7625007629394531, - 0.6924854516983032, - 0.624688446521759, - 0.5609592199325562, - 0.5030361413955688, - 0.45249927043914795, - 0.41072699427604675, - 1.1369017362594604, - 1.1759737730026245, - 1.2040759325027466, - 1.2204416990280151, - 1.2246246337890625, - 1.216510534286499, - 1.1963210105895996, - 1.1646065711975098, - 1.12223219871521, - 1.0703539848327637, - 1.0103869438171387, - 0.9439668655395508, - 0.872905433177948, - 0.7991410493850708, - 0.7246858477592468, - 0.6515706777572632, - 0.581790030002594, - 0.5172473192214966, - 0.45970308780670166, - 0.41072699427604675, - 1.1369017362594604, - 1.1784069538116455, - 1.2088758945465088, - 1.2274773120880127, - 1.2337042093276978, - 1.227386474609375, - 1.2086963653564453, - 1.1781439781188965, - 1.1365623474121094, - 1.0850861072540283, - 1.0251190662384033, - 0.9582970142364502, - 0.8864428400993347, - 0.8115164637565613, - 0.7355616688728333, - 0.6606503129005432, - 0.5888257026672363, - 0.5220471620559692, - 0.4621362090110779, - 0.41072699427604675 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.6698440313339233, - -1.6608384847640991, - -1.6522715091705322, - -1.6443767547607422, - -1.6373696327209473, - -1.6314412355422974, - -1.626753330230713, - -1.6234335899353027, - -1.6215728521347046, - -1.621221661567688, - -1.6223896741867065, - -1.6250450611114502, - -1.6291152238845825, - -1.6344894170761108, - -1.6410208940505981, - -1.648531436920166, - -1.6568162441253662, - -1.6656494140625, - -1.6747897863388062, - -1.6839882135391235, - -1.6698440313339233, - -1.6604548692703247, - -1.6515146493911743, - -1.6432673931121826, - -1.635938048362732, - -1.6297264099121094, - -1.6248019933700562, - -1.6212990283966064, - -1.6193132400512695, - -1.6188987493515015, - -1.62006676197052, - -1.6227854490280151, - -1.6269807815551758, - -1.632538080215454, - -1.6393060684204102, - -1.6470998525619507, - -1.6557068824768066, - -1.664892554283142, - -1.6744061708450317, - -1.6839882135391235, - -1.6698440313339233, - -1.6610990762710571, - -1.6527856588363647, - -1.6451303958892822, - -1.638342261314392, - -1.6326062679290771, - -1.6280789375305176, - -1.6248836517333984, - -1.6231077909469604, - -1.6227996349334717, - -1.6239676475524902, - -1.626579999923706, - -1.6305654048919678, - -1.6358150243759155, - -1.6421858072280884, - -1.6495040655136108, - -1.6575698852539062, - -1.6661635637283325, - -1.6750503778457642, - -1.6839882135391235, - -1.6698440313339233, - -1.6627014875411987, - -1.6559467315673828, - -1.6497639417648315, - -1.6443217992782593, - -1.6397687196731567, - -1.6362289190292358, - -1.6337989568710327, - -1.6325451135635376, - -1.6325016021728516, - -1.6336696147918701, - -1.6360173225402832, - -1.6394805908203125, - -1.6439650058746338, - -1.649348258972168, - -1.6554834842681885, - -1.662203311920166, - -1.669324517250061, - -1.6766527891159058, - -1.6839882135391235, - -1.6698440313339233, - -1.6650882959365845, - -1.6606552600860596, - -1.6566656827926636, - -1.653228521347046, - -1.650437593460083, - -1.6483688354492188, - -1.6470787525177002, - -1.6466026306152344, - -1.6469533443450928, - -1.6481213569641113, - -1.65007483959198, - -1.6527605056762695, - -1.6561050415039062, - -1.6600171327590942, - -1.6643903255462646, - -1.6691051721572876, - -1.6740330457687378, - -1.6790395975112915, - -1.6839882135391235, - -1.6698440313339233, - -1.6680009365081787, - -1.6664010286331177, - -1.6650879383087158, - -1.664097547531128, - -1.6634567975997925, - -1.6631832122802734, - -1.6632840633392334, - -1.6637569665908813, - -1.6645886898040771, - -1.6657567024230957, - -1.667229175567627, - -1.6689658164978027, - -1.6709192991256714, - -1.6730364561080933, - -1.6752593517303467, - -1.6775274276733398, - -1.6797789335250854, - -1.6819522380828857, - -1.6839882135391235, - -1.6698440313339233, - -1.671123743057251, - -1.672561526298523, - -1.6741180419921875, - -1.6757508516311646, - -1.6774154901504517, - -1.67906653881073, - -1.6806588172912598, - -1.682149052619934, - -1.6834965944290161, - -1.6846646070480347, - -1.6856212615966797, - -1.6863404512405396, - -1.686802625656128, - -1.686995029449463, - -1.6869126558303833, - -1.686557412147522, - -1.6859393119812012, - -1.685075044631958, - -1.6839882135391235, - -1.6698440313339233, - -1.6741182804107666, - -1.678468942642212, - -1.6827772855758667, - -1.6869256496429443, - -1.6908010244369507, - -1.6942976713180542, - -1.6973201036453247, - -1.6997860670089722, - -1.7016282081604004, - -1.702796220779419, - -1.7032582759857178, - -1.7030017375946045, - -1.7020337581634521, - -1.700380563735962, - -1.698087453842163, - -1.6952166557312012, - -1.6918468475341797, - -1.6880695819854736, - -1.6839882135391235, - -1.6698440313339233, - -1.676660180091858, - -1.683483362197876, - -1.6901273727416992, - -1.6964110136032104, - -1.7021628618240356, - -1.707226037979126, - -1.7114624977111816, - -1.7147566080093384, - -1.717018485069275, - -1.7181864976882935, - -1.718228816986084, - -1.7171441316604614, - -1.7149622440338135, - -1.7117424011230469, - -1.7075726985931396, - -1.7025667428970337, - -1.6968611478805542, - -1.690611481666565, - -1.6839882135391235, - -1.6698440313339233, - -1.6784738302230835, - -1.6870611906051636, - -1.6953717470169067, - -1.7031790018081665, - -1.7102696895599365, - -1.7164506912231445, - -1.7215533256530762, - -1.7254383563995361, - -1.7279998064041138, - -1.7291678190231323, - -1.7289105653762817, - -1.727234959602356, - -1.724186897277832, - -1.7198493480682373, - -1.7143406867980957, - -1.7078112363815308, - -1.7004389762878418, - -1.6924251317977905, - -1.6839882135391235, - -1.6698440313339233, - -1.6793627738952637, - -1.6888147592544556, - -1.6979422569274902, - -1.7064961194992065, - -1.7142431735992432, - -1.7209720611572266, - -1.7264991998672485, - -1.730673909187317, - -1.7333821058273315, - -1.73455011844635, - -1.7341461181640625, - -1.7321808338165283, - -1.728708267211914, - -1.723822832107544, - -1.7176579236984253, - -1.7103817462921143, - -1.7021926641464233, - -1.6933140754699707, - -1.6839882135391235, - -1.6698440313339233, - -1.6792306900024414, - -1.6885541677474976, - -1.69756019115448, - -1.706003189086914, - -1.7136527299880981, - -1.7203000783920288, - -1.7257641553878784, - -1.7298957109451294, - -1.7325822114944458, - -1.7337502241134644, - -1.733367919921875, - -1.7314457893371582, - -1.7280362844467163, - -1.7232322692871094, - -1.7171648740768433, - -1.709999680519104, - -1.7019319534301758, - -1.6931819915771484, - -1.6839882135391235, - -1.6698440313339233, - -1.6780917644500732, - -1.6863075494766235, - -1.6942670345306396, - -1.7017533779144287, - -1.7085621356964111, - -1.7145076990127563, - -1.7194278240203857, - -1.7231884002685547, - -1.7256866693496704, - -1.726854681968689, - -1.7266604900360107, - -1.7251094579696655, - -1.7222437858581543, - -1.7181416749954224, - -1.712915062904358, - -1.7067065238952637, - -1.6996853351593018, - -1.6920430660247803, - -1.6839882135391235, - -1.6698440313339233, - -1.6760696172714233, - -1.6823183298110962, - -1.6884196996688843, - -1.6942071914672852, - -1.6995232105255127, - -1.7042224407196045, - -1.708176851272583, - -1.7112784385681152, - -1.7134428024291992, - -1.7146109342575073, - -1.7147506475448608, - -1.7138584852218628, - -1.7119585275650024, - -1.709102749824524, - -1.705368995666504, - -1.7008591890335083, - -1.695696234703064, - -1.6900209188461304, - -1.6839882135391235, - -1.6698440313339233, - -1.6733832359313965, - -1.6770188808441162, - -1.6806516647338867, - -1.6841826438903809, - -1.687515377998352, - -1.690558910369873, - -1.693230390548706, - -1.695456862449646, - -1.697177529335022, - -1.6983455419540405, - -1.6989290714263916, - -1.6989120244979858, - -1.6982951164245605, - -1.6970949172973633, - -1.6953444480895996, - -1.6930911540985107, - -1.690396785736084, - -1.6873345375061035, - -1.6839882135391235, - -1.6698440313339233, - -1.6703238487243652, - -1.6709834337234497, - -1.6718049049377441, - -1.672765851020813, - -1.6738399267196655, - -1.6749979257583618, - -1.676208257675171, - -1.6774379014968872, - -1.6786532402038574, - -1.679821252822876, - -1.6809099912643433, - -1.6818898916244507, - -1.6827340126037598, - -1.6834194660186768, - -1.6839275360107422, - -1.6842443943023682, - -1.6843613386154175, - -1.6842751502990723, - -1.6839882135391235, - -1.6698440313339233, - -1.6672228574752808, - -1.6648660898208618, - -1.6628379821777344, - -1.6611939668655396, - -1.6599787473678589, - -1.6592254638671875, - -1.6589548587799072, - -1.6591742038726807, - -1.6598774194717407, - -1.6610454320907593, - -1.6626464128494263, - -1.664636492729187, - -1.666961669921875, - -1.6695582866668701, - -1.6723556518554688, - -1.6752774715423584, - -1.67824387550354, - -1.6811741590499878, - -1.6839882135391235, - -1.6698440313339233, - -1.6644163131713867, - -1.6593296527862549, - -1.6547226905822754, - -1.6507210731506348, - -1.647433876991272, - -1.6449511051177979, - -1.6433401107788086, - -1.642645001411438, - -1.6428847312927246, - -1.6440527439117432, - -1.6461172103881836, - -1.6490217447280884, - -1.6526871919631958, - -1.6570135354995728, - -1.661882758140564, - -1.6671620607376099, - -1.672707438468933, - -1.6783676147460938, - -1.6839882135391235, - -1.6698440313339233, - -1.6622084379196167, - -1.654974102973938, - -1.6483383178710938, - -1.642482042312622, - -1.6375648975372314, - -1.6337213516235352, - -1.6310559511184692, - -1.6296415328979492, - -1.6295166015625, - -1.6306846141815186, - -1.6331136226654053, - -1.636737585067749, - -1.641457438468933, - -1.6471445560455322, - -1.6536437273025513, - -1.6607778072357178, - -1.6683520078659058, - -1.6761597394943237, - -1.6839882135391235, - -1.6698440313339233, - -1.6608384847640991, - -1.6522715091705322, - -1.6443767547607422, - -1.6373696327209473, - -1.6314412355422974, - -1.626753330230713, - -1.6234335899353027, - -1.6215728521347046, - -1.621221661567688, - -1.6223896741867065, - -1.6250450611114502, - -1.6291152238845825, - -1.6344894170761108, - -1.6410208940505981, - -1.648531436920166, - -1.6568162441253662, - -1.6656494140625, - -1.6747897863388062, - -1.6839882135391235 - ], - "y": [ - 0.8658245205879211, - 0.9409987926483154, - 1.0209321975708008, - 1.103444218635559, - 1.1862843036651611, - 1.2671926021575928, - 1.3439621925354004, - 1.414499282836914, - 1.476879358291626, - 1.529401183128357, - 1.570631980895996, - 1.5994470119476318, - 1.6150604486465454, - 1.6170462369918823, - 1.6053502559661865, - 1.580291748046875, - 1.5425537824630737, - 1.493166208267212, - 1.4334759712219238, - 1.365111231803894, - 0.8658245205879211, - 0.937042236328125, - 1.0131269693374634, - 1.092003345489502, - 1.1715197563171387, - 1.249507188796997, - 1.3238383531570435, - 1.3924857378005981, - 1.4535768032073975, - 1.505445122718811, - 1.5466759204864502, - 1.5761444568634033, - 1.5930469036102295, - 1.5969223976135254, - 1.5876648426055908, - 1.5655272006988525, - 1.5311129093170166, - 1.485361099243164, - 1.4295194149017334, - 1.365111231803894, - 0.8658245205879211, - 0.9257371425628662, - 0.9908251166343689, - 1.0593130588531494, - 1.1293326616287231, - 1.1989741325378418, - 1.2663378715515137, - 1.329586148262024, - 1.3869938850402832, - 1.436995029449463, - 1.478225827217102, - 1.509561538696289, - 1.5301473140716553, - 1.539421796798706, - 1.537131905555725, - 1.523340106010437, - 1.498422622680664, - 1.4630591869354248, - 1.4182143211364746, - 1.365111231803894, - 0.8658245205879211, - 0.9083085060119629, - 0.9564432501792908, - 1.0089157819747925, - 1.0642948150634766, - 1.1210696697235107, - 1.1776916980743408, - 1.2326165437698364, - 1.2843458652496338, - 1.3314684629440308, - 1.37269926071167, - 1.4069135189056396, - 1.4331777095794678, - 1.4507757425308228, - 1.459227442741394, - 1.4583022594451904, - 1.4480254650115967, - 1.4286773204803467, - 1.4007856845855713, - 1.365111231803894, - 0.8658245205879211, - 0.8866450786590576, - 0.9137072563171387, - 0.9462729692459106, - 0.9834539294242859, - 1.0242358446121216, - 1.0675063133239746, - 1.1120851039886475, - 1.1567561626434326, - 1.200300931930542, - 1.2415317296981812, - 1.2793238162994385, - 1.3126462697982788, - 1.340590238571167, - 1.3623936176300049, - 1.377461314201355, - 1.3853826522827148, - 1.3859412670135498, - 1.379122257232666, - 1.365111231803894, - 0.8658245205879211, - 0.8630943298339844, - 0.8672481775283813, - 0.8781729340553284, - 0.8955703973770142, - 0.9189660549163818, - 0.9477218389511108, - 0.9810532331466675, - 1.0180511474609375, - 1.057706356048584, - 1.0989371538162231, - 1.1406188011169434, - 1.1816145181655884, - 1.2208057641983032, - 1.2571238279342651, - 1.2895777225494385, - 1.3172825574874878, - 1.339482307434082, - 1.3555715084075928, - 1.365111231803894, - 0.8658245205879211, - 0.8402084112167358, - 0.8221006393432617, - 0.811995267868042, - 0.8101677894592285, - 0.8166680335998535, - 0.8313188552856445, - 0.8537204265594482, - 0.8832617998123169, - 0.9191372394561768, - 0.9603679776191711, - 1.0058294534683228, - 1.0542815923690796, - 1.104402780532837, - 1.1548256874084473, - 1.2041751146316528, - 1.2511048316955566, - 1.2943347692489624, - 1.3326855897903442, - 1.3651113510131836, - 0.8658245801925659, - 0.8204674124717712, - 0.7831571102142334, - 0.7549114227294922, - 0.7365006804466248, - 0.7284272909164429, - 0.7309112548828125, - 0.7438849806785583, - 0.7669944763183594, - 0.7996094822883606, - 0.840840220451355, - 0.8895621299743652, - 0.9444462060928345, - 1.0039951801300049, - 1.0665849447250366, - 1.1305080652236938, - 1.1940209865570068, - 1.2553911209106445, - 1.3129445314407349, - 1.3651113510131836, - 0.8658245801925659, - 0.8060104846954346, - 0.754637598991394, - 0.7131072282791138, - 0.6825522184371948, - 0.6638060808181763, - 0.6573799848556519, - 0.6634494066238403, - 0.6818486452102661, - 0.71207594871521, - 0.7533067464828491, - 0.804416298866272, - 0.8640105724334717, - 0.9304639101028442, - 1.00196373462677, - 1.0765596628189087, - 1.152216911315918, - 1.2268716096878052, - 1.298487663269043, - 1.3651113510131836, - 0.8658245801925659, - 0.798404335975647, - 0.7396327257156372, - 0.6911129951477051, - 0.6541684865951538, - 0.6298071146011353, - 0.6186932325363159, - 0.6211299896240234, - 0.6370511054992676, - 0.6660221815109253, - 0.7072529792785645, - 0.7596187591552734, - 0.8216912150382996, - 0.8917771577835083, - 0.9679647088050842, - 1.0481758117675781, - 1.1302225589752197, - 1.2118667364120483, - 1.2908813953399658, - 1.3651113510131836, - 0.8658245801925659, - 0.7984731197357178, - 0.7397684454917908, - 0.6913119554519653, - 0.6544252634048462, - 0.6301146745681763, - 0.619043231010437, - 0.6215128898620605, - 0.6374564170837402, - 0.6664388179779053, - 0.7076696157455444, - 0.7600240111351013, - 0.8220740556716919, - 0.8921271562576294, - 0.96827232837677, - 1.0484325885772705, - 1.13042151927948, - 1.2120025157928467, - 1.2909502983093262, - 1.3651113510131836, - 0.8658245801925659, - 0.8062094449996948, - 0.7550301551818848, - 0.7136826515197754, - 0.6832947731018066, - 0.6646955013275146, - 0.658392071723938, - 0.6645565032958984, - 0.6830205917358398, - 0.7132807970046997, - 0.7545115351676941, - 0.8055882453918457, - 0.8651176691055298, - 0.9314759969711304, - 1.0028531551361084, - 1.0773022174835205, - 1.15279221534729, - 1.227264165878296, - 1.2986866235733032, - 1.3651113510131836, - 0.8658245801925659, - 0.820775032043457, - 0.7837638854980469, - 0.7558008432388306, - 0.7376485466957092, - 0.729802131652832, - 0.732475757598877, - 0.7455963492393494, - 0.7688060998916626, - 0.8014718890190125, - 0.8427026271820068, - 0.8913737535476685, - 0.9461575746536255, - 1.0055596828460693, - 1.0679599046707153, - 1.1316559314727783, - 1.1949104070663452, - 1.255997896194458, - 1.3132520914077759, - 1.3651113510131836, - 0.8658245205879211, - 0.840591311454773, - 0.8228560090065002, - 0.8131024241447449, - 0.8115965127944946, - 0.8183795213699341, - 0.8332662582397461, - 0.8558506965637207, - 0.885516881942749, - 0.9214555025100708, - 0.9626862406730652, - 1.0080845355987549, - 1.056411862373352, - 1.1063501834869385, - 1.1565371751785278, - 1.2056039571762085, - 1.2522120475769043, - 1.2950900793075562, - 1.3330684900283813, - 1.3651113510131836, - 0.8658245205879211, - 0.8635109663009644, - 0.868070125579834, - 0.8793777227401733, - 0.8971251845359802, - 0.9208284616470337, - 0.9498410224914551, - 0.9833714962005615, - 1.0205051898956299, - 1.0602291822433472, - 1.1014598608016968, - 1.1430727243423462, - 1.1839326620101929, - 1.222925066947937, - 1.258986234664917, - 1.2911325693130493, - 1.318487286567688, - 1.3403042554855347, - 1.3559881448745728, - 1.365111231803894, - 0.8658245205879211, - 0.8870503306388855, - 0.914506733417511, - 0.9474449157714844, - 0.9849662780761719, - 1.0260473489761353, - 1.0695676803588867, - 1.1143399477005005, - 1.1591429710388184, - 1.2027547359466553, - 1.2439855337142944, - 1.2817106246948242, - 1.3149011135101318, - 1.342651605606079, - 1.3642051219940186, - 1.3789737224578857, - 1.386554479598999, - 1.386740803718567, - 1.3795274496078491, - 1.365111231803894, - 0.8658245205879211, - 0.908658504486084, - 0.9571337103843689, - 1.0099278688430786, - 1.0656009912490845, - 1.1226341724395752, - 1.1794719696044922, - 1.234563946723938, - 1.286407232284546, - 1.333587646484375, - 1.3748184442520142, - 1.4089748859405518, - 1.4351251125335693, - 1.4525558948516846, - 1.4607919454574585, - 1.4596083164215088, - 1.4490375518798828, - 1.4293677806854248, - 1.4011356830596924, - 1.365111231803894, - 0.8658245205879211, - 0.9259939193725586, - 0.9913316965103149, - 1.0600556135177612, - 1.1302909851074219, - 1.2001221179962158, - 1.267643928527832, - 1.3310149908065796, - 1.3885064125061035, - 1.4385499954223633, - 1.479780673980713, - 1.5110739469528198, - 1.531576156616211, - 1.540727972984314, - 1.5382797718048096, - 1.5242984294891357, - 1.4991651773452759, - 1.4635658264160156, - 1.418471097946167, - 1.365111231803894, - 0.8658245205879211, - 0.9371780157089233, - 1.013394832611084, - 1.0923959016799927, - 1.1720263957977295, - 1.2501139640808105, - 1.3245289325714111, - 1.3932411670684814, - 1.454376459121704, - 1.5062671899795532, - 1.5474979877471924, - 1.57694411277771, - 1.5938023328781128, - 1.5976128578186035, - 1.5882717370986938, - 1.5660337209701538, - 1.5315055847167969, - 1.4856288433074951, - 1.4296551942825317, - 1.365111231803894, - 0.8658245205879211, - 0.9409987926483154, - 1.0209321975708008, - 1.103444218635559, - 1.1862843036651611, - 1.2671926021575928, - 1.3439621925354004, - 1.414499282836914, - 1.476879358291626, - 1.529401183128357, - 1.570631980895996, - 1.5994470119476318, - 1.6150604486465454, - 1.6170462369918823, - 1.6053502559661865, - 1.580291748046875, - 1.5425537824630737, - 1.493166208267212, - 1.4334759712219238, - 1.365111231803894 - ], - "z": [ - 1.1688663959503174, - 1.2128658294677734, - 1.2457211017608643, - 1.266535997390747, - 1.274742841720581, - 1.2701178789138794, - 1.2527869939804077, - 1.223223090171814, - 1.1822324991226196, - 1.1309335231781006, - 1.0707252025604248, - 1.0032501220703125, - 0.9303485751152039, - 0.8540093302726746, - 0.7763146758079529, - 0.6993838548660278, - 0.6253153085708618, - 0.556129515171051, - 0.49371376633644104, - 0.4397704601287842, - 1.1688663959503174, - 1.210148811340332, - 1.2403614521026611, - 1.258679747581482, - 1.2646043300628662, - 1.257973551750183, - 1.2389681339263916, - 1.2081067562103271, - 1.1662310361862183, - 1.1144832372665405, - 1.0542750358581543, - 0.9872485399246216, - 0.9152323007583618, - 0.8401905298233032, - 0.7641703486442566, - 0.6892452239990234, - 0.6174590587615967, - 0.5507698655128479, - 0.4909968674182892, - 0.4397704601287842, - 1.1688663959503174, - 1.2024195194244385, - 1.2251136302947998, - 1.2363295555114746, - 1.2357611656188965, - 1.2234243154525757, - 1.199655294418335, - 1.165102481842041, - 1.1207084655761719, - 1.0676841735839844, - 1.0074758529663086, - 0.9417259693145752, - 0.8722280263900757, - 0.8008776307106018, - 0.7296211123466492, - 0.6604021191596985, - 0.5951087474822998, - 0.5355221033096313, - 0.48326757550239563, - 0.4397704601287842, - 1.1688663959503174, - 1.1905155181884766, - 1.2016302347183228, - 1.2019072771072388, - 1.191339135169983, - 1.170214056968689, - 1.1391083002090454, - 1.0988703966140747, - 1.050597906112671, - 0.9956074953079224, - 0.9353992342948914, - 0.871615469455719, - 0.8059959411621094, - 0.740330696105957, - 0.6764109134674072, - 0.6159800291061401, - 0.5606865286827087, - 0.5120387077331543, - 0.47136351466178894, - 0.4397704601287842, - 1.1688663959503174, - 1.1757266521453857, - 1.1724557876586914, - 1.1591432094573975, - 1.1361517906188965, - 1.1041090488433838, - 1.0638885498046875, - 1.0165878534317017, - 0.9634969234466553, - 0.906063973903656, - 0.845855712890625, - 0.7845144271850586, - 0.7237133383750916, - 0.6651109457015991, - 0.6103057861328125, - 0.5607927441596985, - 0.5179224610328674, - 0.48286429047584534, - 0.45657461881637573, - 0.4397704601287842, - 1.1688663959503174, - 1.1596555709838867, - 1.1407520771026611, - 1.1126714944839478, - 1.0761798620224, - 1.0322725772857666, - 0.9821472764015198, - 0.9271712899208069, - 0.868844211101532, - 0.8087570071220398, - 0.7485487461090088, - 0.6898617148399353, - 0.6342967748641968, - 0.5833696126937866, - 0.5384693145751953, - 0.5008207559585571, - 0.4714507460594177, - 0.4511604905128479, - 0.4405035376548767, - 0.4397704601287842, - 1.1688663959503174, - 1.1440438032150269, - 1.1099543571472168, - 1.0675280094146729, - 1.0179219245910645, - 0.9624894261360168, - 0.902742326259613, - 0.8403105139732361, - 0.7768968939781189, - 0.7142313122749329, - 0.6540230512619019, - 0.597914457321167, - 0.547435998916626, - 0.5039646625518799, - 0.46868616342544556, - 0.44256284832954407, - 0.4263072907924652, - 0.4203628599643707, - 0.42489179968833923, - 0.43977048993110657, - 1.1688663959503174, - 1.1305831670761108, - 1.0834003686904907, - 1.0286048650741577, - 0.9676913619041443, - 0.9023215770721436, - 0.8342784643173218, - 0.7654181718826294, - 0.6976189017295837, - 0.6327301859855652, - 0.5725219249725342, - 0.5186364650726318, - 0.4725436568260193, - 0.4355008006095886, - 0.40851834416389465, - 0.3923322558403015, - 0.3873840868473053, - 0.3938088119029999, - 0.4114311933517456, - 0.43977048993110657, - 1.1688663959503174, - 1.120732307434082, - 1.0639674663543701, - 1.0001198053359985, - 0.9309313297271729, - 0.8582892417907715, - 0.7841748595237732, - 0.710610032081604, - 0.6396012306213379, - 0.5730855464935303, - 0.5128772854804993, - 0.4606187641620636, - 0.4177355170249939, - 0.38539716601371765, - 0.3644859790802002, - 0.3555722236633301, - 0.3588991165161133, - 0.3743758499622345, - 0.4015803635120392, - 0.43977048993110657, - 1.1688663959503174, - 1.1155588626861572, - 1.0537614822387695, - 0.9851598143577576, - 0.9116253852844238, - 0.8351638913154602, - 0.7578610181808472, - 0.6818253397941589, - 0.6091309785842896, - 0.5417608618736267, - 0.4815526008605957, - 0.43014851212501526, - 0.3889508545398712, - 0.3590833246707916, - 0.3413606584072113, - 0.33626624941825867, - 0.3439390957355499, - 0.3641698658466339, - 0.39640679955482483, - 0.43977048993110657, - 1.1688663959503174, - 1.1156232357025146, - 1.0538884401321411, - 0.9853459596633911, - 0.9118655920028687, - 0.8354516625404358, - 0.7581884264945984, - 0.6821835041046143, - 0.609510064125061, - 0.542150616645813, - 0.4819423258304596, - 0.43052762746810913, - 0.38930898904800415, - 0.35941073298454285, - 0.3416483998298645, - 0.3365064561367035, - 0.34412524104118347, - 0.3642968535423279, - 0.39647117257118225, - 0.43977048993110657, - 1.1688663959503174, - 1.1209185123443604, - 1.0643346309661865, - 1.0006580352783203, - 0.9316259622573853, - 0.8591212034225464, - 0.7851215600967407, - 0.7116456031799316, - 0.6406974792480469, - 0.5742125511169434, - 0.5140042901039124, - 0.4617150127887726, - 0.4187711179256439, - 0.38634389638900757, - 0.3653180003166199, - 0.3562668263912201, - 0.35943734645843506, - 0.3747430443763733, - 0.40176647901535034, - 0.43977048993110657, - 1.1688663959503174, - 1.1308709383010864, - 1.083967924118042, - 1.0294368267059326, - 0.9687650799751282, - 0.9036076664924622, - 0.8357419371604919, - 0.7670189738273621, - 0.6993135213851929, - 0.6344722509384155, - 0.5742639899253845, - 0.5203310251235962, - 0.47414448857307434, - 0.4369642436504364, - 0.40980446338653564, - 0.393405944108963, - 0.388216108083725, - 0.39437639713287354, - 0.4117189049720764, - 0.43977048993110657, - 1.1688663959503174, - 1.1444019079208374, - 1.1106609106063843, - 1.06856369972229, - 1.0192584991455078, - 0.9640902876853943, - 0.9045639634132385, - 0.8423031568527222, - 0.7790062427520752, - 0.7163997888565063, - 0.6561915278434753, - 0.6000238060951233, - 0.5494287014007568, - 0.5057862997055054, - 0.4702870547771454, - 0.44389936327934265, - 0.4273429214954376, - 0.4210693836212158, - 0.42524993419647217, - 0.43977048993110657, - 1.1688663959503174, - 1.1600452661514282, - 1.1415208578109741, - 1.1137983798980713, - 1.0776342153549194, - 1.0340147018432617, - 0.9841296076774597, - 0.9293397665023804, - 0.871139645576477, - 0.8111168146133423, - 0.7509085536003113, - 0.6921571493148804, - 0.6364652514457703, - 0.5853519439697266, - 0.5402114391326904, - 0.5022751092910767, - 0.4725777208805084, - 0.45192936062812805, - 0.4408932626247406, - 0.4397704601287842, - 1.1688663959503174, - 1.1761057376861572, - 1.173203706741333, - 1.1602394580841064, - 1.1375665664672852, - 1.1058034896850586, - 1.0658167600631714, - 1.0186970233917236, - 0.9657296538352966, - 0.9083593487739563, - 0.8481510877609253, - 0.7867471575737, - 0.7258225679397583, - 0.667039155960083, - 0.6120003461837769, - 0.5622074604034424, - 0.5190186500549316, - 0.48361214995384216, - 0.4569537341594696, - 0.4397704601287842, - 1.1688663959503174, - 1.190842866897583, - 1.2022761106491089, - 1.2028539180755615, - 1.1925609111785889, - 1.171677589416504, - 1.1407735347747803, - 1.1006920337677002, - 1.0525261163711548, - 0.9975898265838623, - 0.9373815059661865, - 0.8735436797142029, - 0.8078175187110901, - 0.7419958710670471, - 0.6778743267059326, - 0.6172017455101013, - 0.5616332292556763, - 0.5126845836639404, - 0.4716908931732178, - 0.4397704601287842, - 1.1688663959503174, - 1.2026598453521729, - 1.2255876064300537, - 1.2370240688323975, - 1.2366576194763184, - 1.2244980335235596, - 1.200877070426941, - 1.1664390563964844, - 1.1221232414245605, - 1.069138526916504, - 1.0089303255081177, - 0.9431407451629639, - 0.8735645413398743, - 0.8020994067192078, - 0.7306948900222778, - 0.6612985134124756, - 0.5958033800125122, - 0.5359959602355957, - 0.48350781202316284, - 0.4397704601287842, - 1.1688663959503174, - 1.2102758884429932, - 1.2406119108200073, - 1.259047031402588, - 1.2650781869888306, - 1.258541226387024, - 1.2396141290664673, - 1.2088133096694946, - 1.1669789552688599, - 1.115252137184143, - 1.0550439357757568, - 0.9879964590072632, - 0.9159388542175293, - 0.8408364653587341, - 0.7647380232810974, - 0.6897191405296326, - 0.6178262233734131, - 0.5510203838348389, - 0.49112385511398315, - 0.4397704601287842, - 1.1688663959503174, - 1.2128658294677734, - 1.2457211017608643, - 1.266535997390747, - 1.274742841720581, - 1.2701178789138794, - 1.2527869939804077, - 1.223223090171814, - 1.1822324991226196, - 1.1309335231781006, - 1.0707252025604248, - 1.0032501220703125, - 0.9303485751152039, - 0.8540093302726746, - 0.7763146758079529, - 0.6993838548660278, - 0.6253153085708618, - 0.556129515171051, - 0.49371376633644104, - 0.4397704601287842 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.6947588920593262, - -1.6863933801651, - -1.6784179210662842, - -1.671049952507019, - -1.6644906997680664, - -1.6589187383651733, - -1.6544862985610962, - -1.6513142585754395, - -1.649489164352417, - -1.6490607261657715, - -1.650040626525879, - -1.6524021625518799, - -1.656080961227417, - -1.660976529121399, - -1.666955590248108, - -1.6738548278808594, - -1.6814860105514526, - -1.6896412372589111, - -1.698097825050354, - -1.70662522315979, - -1.6947588920593262, - -1.6861039400100708, - -1.677846908569336, - -1.670212984085083, - -1.6634105443954468, - -1.6576249599456787, - -1.6530141830444336, - -1.649703860282898, - -1.6477844715118408, - -1.6473082304000854, - -1.6482881307601929, - -1.6506974697113037, - -1.6544705629348755, - -1.6595044136047363, - -1.6656618118286133, - -1.6727746725082397, - -1.6806490421295166, - -1.689070224761963, - -1.6978083848953247, - -1.70662522315979, - -1.6947588920593262, - -1.6867611408233643, - -1.6791434288024902, - -1.6721134185791016, - -1.665863037109375, - -1.6605627536773682, - -1.656356930732727, - -1.6533606052398682, - -1.6516551971435547, - -1.65128755569458, - -1.6522674560546875, - -1.6545681953430176, - -1.6581271886825562, - -1.6628471612930298, - -1.6685994863510132, - -1.675227165222168, - -1.6825494766235352, - -1.6903667449951172, - -1.6984655857086182, - -1.70662522315979, - -1.6947588920593262, - -1.6882938146591187, - -1.6821669340133667, - -1.6765453815460205, - -1.6715824604034424, - -1.667413592338562, - -1.6641525030136108, - -1.6618880033493042, - -1.6606820821762085, - -1.6605675220489502, - -1.6615474224090576, - -1.6635950803756714, - -1.6666547060012817, - -1.6706427335739136, - -1.6754504442214966, - -1.6809465885162354, - -1.686981439590454, - -1.6933902502059937, - -1.6999982595443726, - -1.70662522315979, - -1.6947588920593262, - -1.6905359029769897, - -1.6865898370742798, - -1.6830285787582397, - -1.6799490451812744, - -1.677435278892517, - -1.675555944442749, - -1.674362301826477, - -1.6738868951797485, - -1.674142599105835, - -1.6751224994659424, - -1.6767997741699219, - -1.679128885269165, - -1.6820461750030518, - -1.6854721307754517, - -1.6893131732940674, - -1.6934646368026733, - -1.6978131532669067, - -1.7022403478622437, - -1.70662522315979, - -1.6947588920593262, - -1.6932443380355835, - -1.6919329166412354, - -1.690860390663147, - -1.6900559663772583, - -1.6895418167114258, - -1.6893317699432373, - -1.6894315481185913, - -1.6898385286331177, - -1.6905415058135986, - -1.691521406173706, - -1.6927515268325806, - -1.6941981315612793, - -1.69582200050354, - -1.6975785493850708, - -1.6994200944900513, - -1.7012964487075806, - -1.7031562328338623, - -1.7049487829208374, - -1.70662522315979, - -1.6947588920593262, - -1.6961256265640259, - -1.6976169347763062, - -1.6991921663284302, - -1.7008081674575806, - -1.7024210691452026, - -1.7039868831634521, - -1.7054626941680908, - -1.7068084478378296, - -1.7079874277114868, - -1.7089673280715942, - -1.7097214460372925, - -1.7102293968200684, - -1.7104771137237549, - -1.7104579210281372, - -1.7101722955703735, - -1.7096282243728638, - -1.708840250968933, - -1.7078300714492798, - -1.70662522315979, - -1.6947588920593262, - -1.698867678642273, - -1.7030261754989624, - -1.7071210145950317, - -1.7110403776168823, - -1.7146775722503662, - -1.7179332971572876, - -1.7207187414169312, - -1.7229578495025635, - -1.7245895862579346, - -1.725569486618042, - -1.7258708477020264, - -1.7254853248596191, - -1.7244235277175903, - -1.7227144241333008, - -1.7204045057296753, - -1.7175570726394653, - -1.7142494916915894, - -1.7105721235275269, - -1.70662522315979, - -1.6947588920593262, - -1.701173186302185, - -1.7075742483139038, - -1.7137876749038696, - -1.7196438312530518, - -1.7249830961227417, - -1.7296596765518188, - -1.7335461378097534, - -1.7365365028381348, - -1.738548994064331, - -1.7395288944244385, - -1.7394495010375977, - -1.738312840461731, - -1.7361499071121216, - -1.7330198287963867, - -1.7290079593658447, - -1.7242237329483032, - -1.7187975645065308, - -1.712877631187439, - -1.70662522315979, - -1.6947588920593262, - -1.7027924060821533, - -1.7107685804367065, - -1.7184698581695557, - -1.7256861925125122, - -1.7322207689285278, - -1.7378953695297241, - -1.7425551414489746, - -1.7460730075836182, - -1.7483530044555664, - -1.7493329048156738, - -1.748986005783081, - -1.7473217248916626, - -1.7443856000900269, - -1.7402576208114624, - -1.7350503206253052, - -1.7289059162139893, - -1.7219918966293335, - -1.7144968509674072, - -1.70662522315979, - -1.6947588920593262, - -1.703549861907959, - -1.712262749671936, - -1.7206600904464722, - -1.7285126447677612, - -1.7356064319610596, - -1.7417478561401367, - -1.7467693090438843, - -1.750533938407898, - -1.752938985824585, - -1.7539188861846924, - -1.7534469366073608, - -1.7515360116958618, - -1.7482380867004395, - -1.7436432838439941, - -1.7378768920898438, - -1.7310961484909058, - -1.723486065864563, - -1.7152541875839233, - -1.70662522315979, - -1.6947588920593262, - -1.7033634185791016, - -1.7118949890136719, - -1.720120906829834, - -1.7278169393539429, - -1.7347731590270996, - -1.7407996654510498, - -1.745732069015503, - -1.7494359016418457, - -1.7518101930618286, - -1.752790093421936, - -1.7523488998413086, - -1.750498652458191, - -1.747289776802063, - -1.7428098917007446, - -1.7371811866760254, - -1.7305569648742676, - -1.7231183052062988, - -1.715067744255066, - -1.70662522315979, - -1.6947588920593262, - -1.7022533416748047, - -1.709705114364624, - -1.7169109582901, - -1.7236745357513428, - -1.7298110723495483, - -1.7351534366607666, - -1.7395557165145874, - -1.7428979873657227, - -1.7450889348983765, - -1.7460688352584839, - -1.7458109855651855, - -1.744322419166565, - -1.7416436672210693, - -1.737847924232483, - -1.7330386638641357, - -1.7273470163345337, - -1.720928430557251, - -1.713957667350769, - -1.70662522315979, - -1.6947588920593262, - -1.7003397941589355, - -1.7059303522109985, - -1.7113779783248901, - -1.71653413772583, - -1.7212581634521484, - -1.7254211902618408, - -1.7289096117019653, - -1.73162841796875, - -1.7335033416748047, - -1.734483242034912, - -1.734541416168213, - -1.7336763143539429, - -1.7319114208221436, - -1.7292948961257935, - -1.725898265838623, - -1.7218140363693237, - -1.7171536684036255, - -1.7120442390441895, - -1.70662522315979, - -1.6947588920593262, - -1.6978304386138916, - -1.7009799480438232, - -1.7041215896606445, - -1.7071696519851685, - -1.7100410461425781, - -1.7126574516296387, - -1.7149474620819092, - -1.716848611831665, - -1.7183091640472412, - -1.7192890644073486, - -1.719761610031128, - -1.7197141647338867, - -1.7191476821899414, - -1.7180778980255127, - -1.7165337800979614, - -1.7145576477050781, - -1.7122031450271606, - -1.709534764289856, - -1.70662522315979, - -1.6947588920593262, - -1.6949968338012695, - -1.6953901052474976, - -1.6959279775619507, - -1.6965959072113037, - -1.6973754167556763, - -1.6982455253601074, - -1.6991822719573975, - -1.700160264968872, - -1.7011526823043823, - -1.7021325826644897, - -1.703073263168335, - -1.7039488554000854, - -1.7047357559204102, - -1.7054122686386108, - -1.7059600353240967, - -1.7063640356063843, - -1.7066134214401245, - -1.7067012786865234, - -1.70662522315979, - -1.6947588920593262, - -1.6921463012695312, - -1.689766764640808, - -1.687685251235962, - -1.6859586238861084, - -1.684633731842041, - -1.6837469339370728, - -1.6833224296569824, - -1.683371663093567, - -1.6838933229446411, - -1.6848732233047485, - -1.6862846612930298, - -1.6880890130996704, - -1.6902371644973755, - -1.6926705837249756, - -1.6953227519989014, - -1.6981213092803955, - -1.700990080833435, - -1.7038507461547852, - -1.70662522315979, - -1.6947588920593262, - -1.6895877122879028, - -1.6847193241119385, - -1.6802866458892822, - -1.6764105558395386, - -1.673196792602539, - -1.670733094215393, - -1.6690864562988281, - -1.668302059173584, - -1.6684011220932007, - -1.6693811416625977, - -1.6712150573730469, - -1.6738531589508057, - -1.6772232055664062, - -1.681233525276184, - -1.6857746839523315, - -1.6907227039337158, - -1.6959425210952759, - -1.7012920379638672, - -1.70662522315979, - -1.6947588920593262, - -1.6875981092453003, - -1.680794596672058, - -1.674533724784851, - -1.6689863204956055, - -1.6643038988113403, - -1.660614013671875, - -1.6580172777175903, - -1.656584620475769, - -1.6563551425933838, - -1.6573350429534912, - -1.659497618675232, - -1.6627838611602783, - -1.6671042442321777, - -1.6723406314849854, - -1.6783504486083984, - -1.6849697828292847, - -1.6920177936553955, - -1.6993025541305542, - -1.70662522315979, - -1.6947588920593262, - -1.6863933801651, - -1.6784179210662842, - -1.671049952507019, - -1.6644905805587769, - -1.6589187383651733, - -1.6544862985610962, - -1.6513142585754395, - -1.649489164352417, - -1.6490607261657715, - -1.650040626525879, - -1.6524021625518799, - -1.656080961227417, - -1.660976529121399, - -1.666955590248108, - -1.6738548278808594, - -1.6814860105514526, - -1.6896412372589111, - -1.698097825050354, - -1.70662522315979 - ], - "y": [ - 0.8691115379333496, - 0.9452071189880371, - 1.0262715816497803, - 1.110093593597412, - 1.1943867206573486, - 1.276851773262024, - 1.3552390336990356, - 1.4274107217788696, - 1.4913978576660156, - 1.545454978942871, - 1.5881078243255615, - 1.6181929111480713, - 1.6348893642425537, - 1.637742042541504, - 1.6266728639602661, - 1.601983904838562, - 1.5643484592437744, - 1.5147933959960938, - 1.4546703100204468, - 1.3856191635131836, - 0.8691115379333496, - 0.9412225484848022, - 1.0184110403060913, - 1.0985716581344604, - 1.1795175075531006, - 1.2590409517288208, - 1.3349725008010864, - 1.4052411317825317, - 1.4679299592971802, - 1.5213291645050049, - 1.5639820098876953, - 1.5947251319885254, - 1.6127198934555054, - 1.6174753904342651, - 1.608862042427063, - 1.5871145725250244, - 1.5528265237808228, - 1.5069329738616943, - 1.450685739517212, - 1.3856191635131836, - 0.8691115379333496, - 0.9298052787780762, - 0.9958879947662354, - 1.0655571222305298, - 1.1369121074676514, - 1.208006739616394, - 1.2769017219543457, - 1.3417176008224487, - 1.4006867408752441, - 1.452200174331665, - 1.4948530197143555, - 1.5274817943572998, - 1.549196481704712, - 1.5594046115875244, - 1.5578279495239258, - 1.5445091724395752, - 1.519811987876892, - 1.4844098091125488, - 1.4392684698104858, - 1.3856191635131836, - 0.8691115379333496, - 0.9121926426887512, - 0.9611430764198303, - 1.0146276950836182, - 1.0711873769760132, - 1.1292794942855835, - 1.1873195171356201, - 1.24372398853302, - 1.29695463180542, - 1.3455592393875122, - 1.3882120847702026, - 1.4237496852874756, - 1.4512028694152832, - 1.4698224067687988, - 1.4791007041931152, - 1.4787845611572266, - 1.4688825607299805, - 1.4496649503707886, - 1.4216557741165161, - 1.3856191635131836, - 0.8691115379333496, - 0.8902931213378906, - 0.9179414510726929, - 0.9513022899627686, - 0.9894657135009766, - 1.03139066696167, - 1.075933575630188, - 1.1218793392181396, - 1.167974829673767, - 1.2129625082015991, - 1.2556153535842896, - 1.2947698831558228, - 1.3293581008911133, - 1.3584364652633667, - 1.381211757659912, - 1.3970627784729004, - 1.4055571556091309, - 1.4064632654190063, - 1.3997563123703003, - 1.3856191635131836, - 0.8691115379333496, - 0.8664799928665161, - 0.8709646463394165, - 0.882443368434906, - 0.9006028175354004, - 0.9249477982521057, - 0.9548141956329346, - 0.9893873929977417, - 1.0277241468429565, - 1.0687789916992188, - 1.1114318370819092, - 1.1545193195343018, - 1.1968661546707153, - 1.2373170852661133, - 1.2747689485549927, - 1.3081998825073242, - 1.336698293685913, - 1.3594865798950195, - 1.3759431838989258, - 1.3856191635131836, - 0.8691115379333496, - 0.8433337211608887, - 0.8253034353256226, - 0.8155127167701721, - 0.8142284750938416, - 0.8214858174324036, - 0.8370867371559143, - 0.8606057167053223, - 0.8914011716842651, - 0.9286331534385681, - 0.9712859988212585, - 1.0181963443756104, - 1.068084478378296, - 1.1195896863937378, - 1.171306848526001, - 1.2218255996704102, - 1.2697676420211792, - 1.3138253688812256, - 1.3527967929840088, - 1.3856191635131836, - 0.8691115379333496, - 0.8233624696731567, - 0.7859058380126953, - 0.7577633857727051, - 0.739702582359314, - 0.7322162985801697, - 0.7355086207389832, - 0.7494897842407227, - 0.7737783789634705, - 0.8077119588851929, - 0.8503648042678833, - 0.9005734920501709, - 0.9569685459136963, - 1.0180115699768066, - 1.0820374488830566, - 1.1472996473312378, - 1.2120182514190674, - 1.2744276523590088, - 1.3328256607055664, - 1.3856191635131836, - 0.8691115379333496, - 0.8087306022644043, - 0.7570412158966064, - 0.7154533267021179, - 0.6851012706756592, - 0.66681307554245, - 0.6610875129699707, - 0.6680808067321777, - 0.687602162361145, - 0.719119131565094, - 0.7617720365524292, - 0.8143972754478455, - 0.8755595684051514, - 0.9435904026031494, - 1.0166341066360474, - 1.092698335647583, - 1.169708251953125, - 1.24556303024292, - 1.318193793296814, - 1.3856191635131836, - 0.8691115379333496, - 0.8010236620903015, - 0.7418375015258789, - 0.6931675672531128, - 0.6563414335250854, - 0.6323635578155518, - 0.6218880414962769, - 0.625200629234314, - 0.6422109603881836, - 0.6724550724029541, - 0.7151079177856445, - 0.7690061330795288, - 0.8326793909072876, - 0.9043909311294556, - 0.982184648513794, - 1.0639384984970093, - 1.147422432899475, - 1.2303593158721924, - 1.3104867935180664, - 1.3856191635131836, - 0.8691115379333496, - 0.8010767698287964, - 0.741942286491394, - 0.6933211088180542, - 0.6565395593643188, - 0.6326009035110474, - 0.6221581101417542, - 0.6254960298538208, - 0.6425236463546753, - 0.6727765798568726, - 0.715429425239563, - 0.7693188190460205, - 0.8329747915267944, - 0.9046609997749329, - 0.9824219346046448, - 1.0641366243362427, - 1.1475759744644165, - 1.2304641008377075, - 1.3105398416519165, - 1.3856191635131836, - 0.8691115379333496, - 0.8088841438293457, - 0.757344126701355, - 0.7158973217010498, - 0.6856741905212402, - 0.667499303817749, - 0.6618683934211731, - 0.6689350605010986, - 0.6885063648223877, - 0.720048725605011, - 0.7627016305923462, - 0.8153015375137329, - 0.8764138221740723, - 0.9443712830543518, - 1.0173203945159912, - 1.093271255493164, - 1.170152187347412, - 1.2458659410476685, - 1.3183473348617554, - 1.3856191635131836, - 0.8691115379333496, - 0.8235998153686523, - 0.786374032497406, - 0.7584496140480042, - 0.7405882477760315, - 0.7332771420478821, - 0.7367157340049744, - 0.7508102655410767, - 0.7751761674880981, - 0.809148907661438, - 0.8518017530441284, - 0.9019712805747986, - 0.9582889676094055, - 1.0192186832427979, - 1.0830981731414795, - 1.1481852531433105, - 1.2127045392990112, - 1.2748959064483643, - 1.333063006401062, - 1.3856191635131836, - 0.8691115379333496, - 0.8436291217803955, - 0.8258862495422363, - 0.816366970539093, - 0.8153308629989624, - 0.8228062987327576, - 0.8385893106460571, - 0.8622493743896484, - 0.8931410908699036, - 0.9304218292236328, - 0.973074734210968, - 1.019936203956604, - 1.069728136062622, - 1.1210922002792358, - 1.1726274490356445, - 1.2229279279708862, - 1.2706218957901, - 1.3144080638885498, - 1.3530921936035156, - 1.3856191635131836, - 0.8691115379333496, - 0.8668014407157898, - 0.8715988397598267, - 0.883372962474823, - 0.9018024802207947, - 0.9263848066329956, - 0.9564493298530579, - 0.9911760091781616, - 1.0296175479888916, - 1.070725440979004, - 1.1133782863616943, - 1.1564127206802368, - 1.1986547708511353, - 1.2389521598815918, - 1.2762058973312378, - 1.3093996047973633, - 1.33762788772583, - 1.3601207733154297, - 1.3762645721435547, - 1.3856191635131836, - 0.8691115379333496, - 0.8906058073043823, - 0.9185582995414734, - 0.9522064924240112, - 0.9906325340270996, - 1.0327882766723633, - 1.077523946762085, - 1.1236190795898438, - 1.1698163747787476, - 1.2148557901382446, - 1.257508635520935, - 1.2966115474700928, - 1.3310978412628174, - 1.3600268363952637, - 1.3826093673706055, - 1.3982295989990234, - 1.4064613580703735, - 1.4070801734924316, - 1.400068998336792, - 1.3856191635131836, - 0.8691115379333496, - 0.9124627113342285, - 0.9616758227348328, - 1.0154085159301758, - 1.0721951723098755, - 1.1304866075515747, - 1.1886930465698242, - 1.245226502418518, - 1.2985451221466064, - 1.3471943140029907, - 1.3898471593856812, - 1.425340175628662, - 1.4527052640914917, - 1.471195936203003, - 1.4803078174591064, - 1.4797922372817993, - 1.469663381576538, - 1.450197696685791, - 1.4219257831573486, - 1.3856191635131836, - 0.8691115379333496, - 0.9300034642219543, - 0.9962788820266724, - 1.0661300420761108, - 1.1376515626907349, - 1.2088924646377563, - 1.2779093980789185, - 1.3428200483322144, - 1.4018536806106567, - 1.453399896621704, - 1.4960527420043945, - 1.528648853302002, - 1.5502989292144775, - 1.5604124069213867, - 1.5587135553359985, - 1.5452486276626587, - 1.5203849077224731, - 1.4848006963729858, - 1.4394665956497192, - 1.3856191635131836, - 0.8691115379333496, - 0.9413273334503174, - 1.0186177492141724, - 1.098874568939209, - 1.1799083948135376, - 1.2595090866088867, - 1.3355052471160889, - 1.4058239459991455, - 1.468546986579895, - 1.521963357925415, - 1.564616322517395, - 1.5953421592712402, - 1.6133027076721191, - 1.6180082559585571, - 1.6093302965164185, - 1.587505578994751, - 1.5531294345855713, - 1.5071395635604858, - 1.4507904052734375, - 1.3856191635131836, - 0.8691115379333496, - 0.9452071189880371, - 1.0262715816497803, - 1.110093593597412, - 1.1943867206573486, - 1.276851773262024, - 1.3552390336990356, - 1.4274107217788696, - 1.4913978576660156, - 1.545454978942871, - 1.5881078243255615, - 1.6181929111480713, - 1.6348893642425537, - 1.637742042541504, - 1.6266728639602661, - 1.601983904838562, - 1.5643484592437744, - 1.5147933959960938, - 1.4546703100204468, - 1.3856191635131836 - ], - "z": [ - 1.1965187788009644, - 1.2426409721374512, - 1.277529239654541, - 1.300231695175171, - 1.310129165649414, - 1.3069515228271484, - 1.2907856702804565, - 1.2620725631713867, - 1.2215951681137085, - 1.1704578399658203, - 1.1100553274154663, - 1.0420353412628174, - 0.9682533144950867, - 0.8907217383384705, - 0.8115555644035339, - 0.7329141497612, - 0.65694260597229, - 0.5857133865356445, - 0.5211693048477173, - 0.46507108211517334, - 1.1965187788009644, - 1.2398226261138916, - 1.2719693183898926, - 1.2920818328857422, - 1.2996118068695068, - 1.2943534851074219, - 1.2764506340026855, - 1.2463914155960083, - 1.20499587059021, - 1.153393030166626, - 1.092990517616272, - 1.0254360437393188, - 0.952572226524353, - 0.8763867020606995, - 0.7989575266838074, - 0.7223967909812927, - 0.6487928628921509, - 0.5801534652709961, - 0.5183509588241577, - 0.46507108211517334, - 1.1965187788009644, - 1.2317709922790527, - 1.2560858726501465, - 1.2687996625900269, - 1.2695659399032593, - 1.2583637237548828, - 1.2354985475540161, - 1.2015939950942993, - 1.1575751304626465, - 1.1046425104141235, - 1.0442399978637695, - 0.9780153632164001, - 0.907774806022644, - 0.8354345560073853, - 0.7629677057266235, - 0.6923509836196899, - 0.6255106925964355, - 0.5642699599266052, - 0.5102993845939636, - 0.46507108211517334, - 1.1965187788009644, - 1.2193588018417358, - 1.2315999269485474, - 1.232908010482788, - 1.2232476472854614, - 1.2028820514678955, - 1.172366976737976, - 1.1325347423553467, - 1.0844717025756836, - 1.0294891595840454, - 0.9690866470336914, - 0.904911994934082, - 0.8387155532836914, - 0.77230304479599, - 0.707486093044281, - 0.6460326910018921, - 0.5896190404891968, - 0.5397840738296509, - 0.49788716435432434, - 0.46507108211517334, - 1.1965187788009644, - 1.2039309740066528, - 1.2011650800704956, - 1.1882963180541992, - 1.1656759977340698, - 1.1339209079742432, - 1.0938974618911743, - 1.0466971397399902, - 0.9936075806617737, - 0.9360769391059875, - 0.8756744861602783, - 0.8140478134155273, - 0.752877950668335, - 0.6938334703445435, - 0.6385249495506287, - 0.5884610414505005, - 0.5450073480606079, - 0.5093492269515991, - 0.48245933651924133, - 0.46507108211517334, - 1.1965187788009644, - 1.1871594190597534, - 1.1680793762207031, - 1.1397991180419922, - 1.1030899286270142, - 1.0589534044265747, - 1.008593201637268, - 0.9533831477165222, - 0.8948292136192322, - 0.8345285654067993, - 0.7741261124610901, - 0.7152693867683411, - 0.6595639586448669, - 0.6085292100906372, - 0.5635573267936707, - 0.5258749723434448, - 0.4965100586414337, - 0.47626352310180664, - 0.46568772196769714, - 0.46507108211517334, - 1.1965187788009644, - 1.1708614826202393, - 1.1359281539916992, - 1.092671513557434, - 1.042271614074707, - 0.9861031770706177, - 0.9256983399391174, - 0.8627047538757324, - 0.7988407611846924, - 0.7358484268188477, - 0.6754459142684937, - 0.6192809343338013, - 0.5688855648040771, - 0.5256343483924866, - 0.490707129240036, - 0.4650566577911377, - 0.4493825137615204, - 0.44411230087280273, - 0.44938984513282776, - 0.46507108211517334, - 1.1965187788009644, - 1.1568034887313843, - 1.1081955432891846, - 1.052020788192749, - 0.9898115992546082, - 0.9232648611068726, - 0.854195773601532, - 0.7844883799552917, - 0.7160440683364868, - 0.6507298946380615, - 0.5903274416923523, - 0.5364843010902405, - 0.4906691908836365, - 0.4541318118572235, - 0.4278688132762909, - 0.41259661316871643, - 0.40873175859451294, - 0.4163796603679657, - 0.435331791639328, - 0.4650711119174957, - 1.1965187788009644, - 1.1465086936950684, - 1.0878866910934448, - 1.0222519636154175, - 0.9513947367668152, - 0.8772479295730591, - 0.801833987236023, - 0.7272099852561951, - 0.6554114818572998, - 0.5883970260620117, - 0.5279945731163025, - 0.4758516848087311, - 0.4333907961845398, - 0.4017699658870697, - 0.38185185194015503, - 0.37417975068092346, - 0.3789629340171814, - 0.3960708677768707, - 0.4250369966030121, - 0.4650711119174957, - 1.1965187788009644, - 1.1410926580429077, - 1.077202558517456, - 1.0065909624099731, - 0.9311841726303101, - 0.853039026260376, - 0.7742871046066284, - 0.6970764994621277, - 0.6235134601593018, - 0.5556045174598694, - 0.49520203471183777, - 0.44395366311073303, - 0.4032573401927948, - 0.37422311305999756, - 0.3576429486274719, - 0.35396915674209595, - 0.36330193281173706, - 0.3853866457939148, - 0.4196210205554962, - 0.4650711119174957, - 1.1965187788009644, - 1.14114248752594, - 1.077300786972046, - 1.006734848022461, - 0.9313699007034302, - 0.8532615303993225, - 0.7745403051376343, - 0.6973534822463989, - 0.6238066554069519, - 0.5559059381484985, - 0.4955034554004669, - 0.4442468583583832, - 0.40353429317474365, - 0.37447628378868103, - 0.35786545276641846, - 0.35415491461753845, - 0.36344587802886963, - 0.38548484444618225, - 0.41967079043388367, - 0.4650711119174957, - 1.1965187788009644, - 1.1466525793075562, - 1.0881707668304443, - 1.0226682424545288, - 0.951931893825531, - 0.8778913617134094, - 0.8025661110877991, - 0.7280108332633972, - 0.656259298324585, - 0.5892686247825623, - 0.528866171836853, - 0.47669947147369385, - 0.43419167399406433, - 0.4025021195411682, - 0.38249528408050537, - 0.37471693754196167, - 0.37937918305397034, - 0.3963548243045807, - 0.42518094182014465, - 0.4650711119174957, - 1.1965187788009644, - 1.1570260524749756, - 1.1086344718933105, - 1.0526641607284546, - 0.9906419515609741, - 0.9242594838142395, - 0.8553275465965271, - 0.7857263684272766, - 0.7173545956611633, - 0.6520771980285645, - 0.5916746854782104, - 0.537794828414917, - 0.49190717935562134, - 0.45526355504989624, - 0.42886340618133545, - 0.4134269654750824, - 0.4093751907348633, - 0.41681861877441406, - 0.43555429577827454, - 0.4650711119174957, - 1.1965187788009644, - 1.1711385250091553, - 1.136474609375, - 1.0934724807739258, - 1.0433051586151123, - 0.9873412251472473, - 0.9271070957183838, - 0.8642457723617554, - 0.8004720211029053, - 0.737525463104248, - 0.677122950553894, - 0.6209122538566589, - 0.5704265832901001, - 0.5270431041717529, - 0.49194520711898804, - 0.46609023213386536, - 0.4501834511756897, - 0.44465869665145874, - 0.449666827917099, - 0.46507108211517334, - 1.1965187788009644, - 1.1874607801437378, - 1.1686739921569824, - 1.140670657157898, - 1.1042146682739258, - 1.060300588607788, - 1.0101262331008911, - 0.9550601243972778, - 0.8966043591499329, - 0.8363535404205322, - 0.7759510278701782, - 0.7170445919036865, - 0.6612409353256226, - 0.6100622415542603, - 0.5649045705795288, - 0.5269997119903564, - 0.49738162755966187, - 0.47685810923576355, - 0.4659891426563263, - 0.46507108211517334, - 1.1965187788009644, - 1.2042241096496582, - 1.201743483543396, - 1.1891441345214844, - 1.1667699813842773, - 1.1352314949035645, - 1.0953885316848755, - 1.0483282804489136, - 0.995334267616272, - 0.9378520250320435, - 0.8774495720863342, - 0.8157744407653809, - 0.7545090913772583, - 0.6953245997428894, - 0.6398354172706604, - 0.5895550847053528, - 0.5458551049232483, - 0.5099275708198547, - 0.4827525019645691, - 0.46507108211517334, - 1.1965187788009644, - 1.2196120023727417, - 1.2320994138717651, - 1.233640193939209, - 1.2241923809051514, - 1.2040138244628906, - 1.1736547946929932, - 1.1339434385299683, - 1.0859630107879639, - 1.0310221910476685, - 0.9706196784973145, - 0.9064031839370728, - 0.840124249458313, - 0.7735908031463623, - 0.7086178064346313, - 0.6469774842262268, - 0.5903511643409729, - 0.5402835607528687, - 0.4981403350830078, - 0.46507108211517334, - 1.1965187788009644, - 1.2319568395614624, - 1.2564523220062256, - 1.2693369388580322, - 1.270259141921997, - 1.2591941356658936, - 1.2364434003829956, - 1.2026276588439941, - 1.1586692333221436, - 1.1057672500610352, - 1.0453648567199707, - 0.9791094660758972, - 0.9088084101676941, - 0.8363794088363647, - 0.7637981176376343, - 0.6930442452430725, - 0.6260478496551514, - 0.5646364092826843, - 0.5104851722717285, - 0.46507108211517334, - 1.1965187788009644, - 1.2399208545684814, - 1.2721630334854126, - 1.2923657894134521, - 1.299978256225586, - 1.2947925329208374, - 1.2769501209259033, - 1.246937870979309, - 1.2055742740631104, - 1.1539876461029053, - 1.0935851335525513, - 1.0260144472122192, - 0.9531186819076538, - 0.876886248588562, - 0.7993965744972229, - 0.7227632999420166, - 0.6490768194198608, - 0.5803471803665161, - 0.5184491872787476, - 0.46507108211517334, - 1.1965187788009644, - 1.2426409721374512, - 1.277529239654541, - 1.300231695175171, - 1.310129165649414, - 1.3069515228271484, - 1.2907856702804565, - 1.2620725631713867, - 1.2215951681137085, - 1.1704578399658203, - 1.1100553274154663, - 1.0420353412628174, - 0.9682533144950867, - 0.8907217383384705, - 0.8115555644035339, - 0.7329141497612, - 0.65694260597229, - 0.5857133865356445, - 0.5211693048477173, - 0.46507108211517334 - ] - }, - { - "alphahull": 0, - "color": "#636EFA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -1.7161632776260376, - -1.7083561420440674, - -1.700899600982666, - -1.6939970254898071, - -1.6878368854522705, - -1.6825870275497437, - -1.6783907413482666, - -1.675362467765808, - -1.6735848188400269, - -1.67310631275177, - -1.6739399433135986, - -1.676063060760498, - -1.6794177293777466, - -1.6839122772216797, - -1.6894243955612183, - -1.6958034038543701, - -1.7028756141662598, - -1.7104477882385254, - -1.7183136940002441, - -1.726258635520935, - -1.7161632776260376, - -1.7081387042999268, - -1.7004708051681519, - -1.6933685541152954, - -1.687025785446167, - -1.6816154718399048, - -1.6772851943969727, - -1.674153208732605, - -1.6723047494888306, - -1.671790361404419, - -1.6726239919662476, - -1.6747829914093018, - -1.678208351135254, - -1.6828068494796753, - -1.6884528398513794, - -1.6949923038482666, - -1.7022470235824585, - -1.7100191116333008, - -1.718096375465393, - -1.726258635520935, - -1.7161632776260376, - -1.7087984085083008, - -1.7017722129821777, - -1.695276141166687, - -1.6894874572753906, - -1.684564232826233, - -1.6806405782699585, - -1.677823543548584, - -1.6761900186538696, - -1.6757845878601074, - -1.676618218421936, - -1.6786682605743408, - -1.6818788051605225, - -1.6861621141433716, - -1.6914016008377075, - -1.6974540948867798, - -1.70415461063385, - -1.711320400238037, - -1.718756079673767, - -1.726258635520935, - -1.7161632776260376, - -1.710263729095459, - -1.7046626806259155, - -1.6995130777359009, - -1.6949553489685059, - -1.6911137104034424, - -1.6880931854248047, - -1.6859759092330933, - -1.6848198175430298, - -1.6846563816070557, - -1.6854900121688843, - -1.687298059463501, - -1.6900311708450317, - -1.6936147212982178, - -1.697951078414917, - -1.7029218673706055, - -1.7083916664123535, - -1.7142109870910645, - -1.7202212810516357, - -1.726258635520935, - -1.7161632776260376, - -1.7123757600784302, - -1.7088291645050049, - -1.705620288848877, - -1.7028367519378662, - -1.700554370880127, - -1.6988353729248047, - -1.697726845741272, - -1.6972588300704956, - -1.697444200515747, - -1.6982779502868652, - -1.6997370719909668, - -1.7017821073532104, - -1.7043570280075073, - -1.7073917388916016, - -1.7108032703399658, - -1.7144988775253296, - -1.7183774709701538, - -1.722333312034607, - -1.726258635520935, - -1.7161632776260376, - -1.7149056196212769, - -1.713819980621338, - -1.7129359245300293, - -1.7122775316238403, - -1.7118629217147827, - -1.7117033004760742, - -1.7118029594421387, - -1.712159276008606, - -1.712762475013733, - -1.7135961055755615, - -1.7146375179290771, - -1.7158581018447876, - -1.7172248363494873, - -1.7187002897262573, - -1.7202441692352295, - -1.721814513206482, - -1.7233682870864868, - -1.7248632907867432, - -1.726258635520935, - -1.7161632776260376, - -1.7175793647766113, - -1.7190943956375122, - -1.7206672430038452, - -1.7222548723220825, - -1.7238140106201172, - -1.7253022193908691, - -1.726678729057312, - -1.7279062271118164, - -1.7289509773254395, - -1.729784607887268, - -1.7303844690322876, - -1.7307339906692505, - -1.7308237552642822, - -1.7306513786315918, - -1.7302215099334717, - -1.7295457124710083, - -1.7286427021026611, - -1.727536916732788, - -1.726258635520935, - -1.7161632776260376, - -1.7201069593429565, - -1.7240808010101318, - -1.7279763221740723, - -1.7316874265670776, - -1.7351125478744507, - -1.7381585836410522, - -1.7407423257827759, - -1.742793321609497, - -1.744255542755127, - -1.7450892925262451, - -1.7452715635299683, - -1.7447975873947144, - -1.7436802387237549, - -1.7419499158859253, - -1.7396539449691772, - -1.736854910850525, - -1.7336291074752808, - -1.7300646305084229, - -1.726258635520935, - -1.7161632776260376, - -1.7222148180007935, - -1.7282389402389526, - -1.7340713739395142, - -1.7395529747009277, - -1.7445342540740967, - -1.748879313468933, - -1.7524696588516235, - -1.7552074193954468, - -1.7570178508758545, - -1.757851481437683, - -1.757685661315918, - -1.756524920463562, - -1.7544009685516357, - -1.7513716220855713, - -1.7475194931030273, - -1.7429498434066772, - -1.7377872467041016, - -1.7321723699569702, - -1.726258635520935, - -1.7161632776260376, - -1.7236742973327637, - -1.731118083000183, - -1.738291621208191, - -1.7449991703033447, - -1.7510579824447632, - -1.7563025951385498, - -1.7605899572372437, - -1.763803243637085, - -1.7658545970916748, - -1.7666882276535034, - -1.7662814855575562, - -1.7646452188491821, - -1.761824131011963, - -1.7578953504562378, - -1.7529658079147339, - -1.747170090675354, - -1.740666389465332, - -1.7336318492889404, - -1.726258635520935, - -1.7161632776260376, - -1.7243273258209229, - -1.7324062585830688, - -1.7401798963546753, - -1.7474360466003418, - -1.753976821899414, - -1.7596238851547241, - -1.7642230987548828, - -1.7676491737365723, - -1.7698084115982056, - -1.7706420421600342, - -1.7701274156570435, - -1.7682783603668213, - -1.7651455402374268, - -1.7608141899108887, - -1.755402684211731, - -1.7490583658218384, - -1.7419545650482178, - -1.7342848777770996, - -1.726258635520935, - -1.7161632776260376, - -1.7241030931472778, - -1.731963872909546, - -1.7395315170288086, - -1.7465993165969849, - -1.752974510192871, - -1.7584834098815918, - -1.7629755735397339, - -1.7663285732269287, - -1.7684507369995117, - -1.7692843675613403, - -1.7688068151474, - -1.7670308351516724, - -1.7640050649642944, - -1.7598118782043457, - -1.7545658349990845, - -1.7484099864959717, - -1.7415121793746948, - -1.7340606451034546, - -1.726258635520935, - -1.7161632776260376, - -1.723025918006897, - -1.7298389673233032, - -1.7364166975021362, - -1.742579698562622, - -1.7481597661972046, - -1.7530046701431274, - -1.756982445716858, - -1.7599844932556152, - -1.7619287967681885, - -1.762762427330017, - -1.7624627351760864, - -1.7610377073287964, - -1.75852632522583, - -1.7549971342086792, - -1.7505462169647217, - -1.7452952861785889, - -1.7393872737884521, - -1.7329834699630737, - -1.726258635520935, - -1.7161632776260376, - -1.7212125062942505, - -1.7262617349624634, - -1.7311731576919556, - -1.735812783241272, - -1.7400541305541992, - -1.7437814474105835, - -1.7468931674957275, - -1.7493044137954712, - -1.7509491443634033, - -1.7517828941345215, - -1.7517826557159424, - -1.750948429107666, - -1.7493031024932861, - -1.7468914985656738, - -1.7437794208526611, - -1.7400516271591187, - -1.7358100414276123, - -1.7311701774597168, - -1.726258635520935, - -1.7161632776260376, - -1.7188594341278076, - -1.721619725227356, - -1.724368929862976, - -1.7270318269729614, - -1.7295360565185547, - -1.7318131923675537, - -1.7338011264801025, - -1.7354456186294556, - -1.7367018461227417, - -1.7375354766845703, - -1.7379238605499268, - -1.737856388092041, - -1.7373348474502563, - -1.7363734245300293, - -1.7349984645843506, - -1.7332473993301392, - -1.7311680316925049, - -1.728817105293274, - -1.726258635520935, - -1.7161632776260376, - -1.7162216901779175, - -1.7164161205291748, - -1.7167414426803589, - -1.7171885967254639, - -1.7177454233169556, - -1.7183969020843506, - -1.7191250324249268, - -1.7199101448059082, - -1.7207306623458862, - -1.7215644121170044, - -1.7223883867263794, - -1.7231802940368652, - -1.7239184379577637, - -1.7245827913284302, - -1.7251551151275635, - -1.725619912147522, - -1.7259644269943237, - -1.7261792421340942, - -1.726258635520935, - -1.7161632776260376, - -1.7135850191116333, - -1.7112147808074951, - -1.7091171741485596, - -1.707349419593811, - -1.7059599161148071, - -1.704986333847046, - -1.7044552564620972, - -1.7043812274932861, - -1.7047663927078247, - -1.7056000232696533, - -1.7068594694137573, - -1.7085105180740356, - -1.710507869720459, - -1.7127971649169922, - -1.7153160572052002, - -1.7179957628250122, - -1.720763087272644, - -1.7235426902770996, - -1.726258635520935, - -1.7161632776260376, - -1.7112352848052979, - -1.706579327583313, - -1.7023224830627441, - -1.6985808610916138, - -1.6954565048217773, - -1.6930346488952637, - -1.6913814544677734, - -1.6905418634414673, - -1.6905388832092285, - -1.6913725137710571, - -1.6930201053619385, - -1.695436716079712, - -1.6985563039779663, - -1.702293872833252, - -1.7065473794937134, - -1.7112009525299072, - -1.716127634048462, - -1.7211928367614746, - -1.726258635520935, - -1.7161632776260376, - -1.709426999092102, - -1.7030119895935059, - -1.6970934867858887, - -1.6918329000473022, - -1.6873735189437866, - -1.6838372945785522, - -1.6813204288482666, - -1.6798917055130005, - -1.679590106010437, - -1.6804237365722656, - -1.6823699474334717, - -1.685375690460205, - -1.6893588304519653, - -1.6942108869552612, - -1.6997994184494019, - -1.7059720754623413, - -1.7125602960586548, - -1.7193845510482788, - -1.726258635520935, - -1.7161632776260376, - -1.7083561420440674, - -1.700899600982666, - -1.6939970254898071, - -1.6878368854522705, - -1.6825870275497437, - -1.6783907413482666, - -1.675362467765808, - -1.6735848188400269, - -1.67310631275177, - -1.6739399433135986, - -1.676063060760498, - -1.6794177293777466, - -1.6839122772216797, - -1.6894243955612183, - -1.6958034038543701, - -1.7028756141662598, - -1.7104477882385254, - -1.7183136940002441, - -1.726258635520935 - ], - "y": [ - 0.8719658851623535, - 0.9488509893417358, - 1.0308830738067627, - 1.115824818611145, - 1.2013587951660156, - 1.2851521968841553, - 1.3649193048477173, - 1.4384841918945312, - 1.5038402080535889, - 1.5592048168182373, - 1.603067398071289, - 1.6342318058013916, - 1.6518480777740479, - 1.65543532371521, - 1.6448959112167358, - 1.6205172538757324, - 1.5829644203186035, - 1.5332616567611694, - 1.4727648496627808, - 1.4031240940093994, - 0.8719658851623535, - 0.944840133190155, - 1.0229709148406982, - 1.1042269468307495, - 1.1863917112350464, - 1.2672241926193237, - 1.3445192575454712, - 1.4161686897277832, - 1.4802179336547852, - 1.5349199771881104, - 1.5787826776504517, - 1.610609531402588, - 1.6295324563980103, - 1.6350352764129639, - 1.6269677877426147, - 1.6055500507354736, - 1.571366548538208, - 1.5253493785858154, - 1.4687540531158447, - 1.4031240940093994, - 0.8719658851623535, - 0.9333248138427734, - 1.0002542734146118, - 1.070928692817688, - 1.1434202194213867, - 1.2157514095306396, - 1.285949468612671, - 1.3520992994308472, - 1.412396788597107, - 1.465196967124939, - 1.5090596675872803, - 1.5427883863449097, - 1.5654630661010742, - 1.576465368270874, - 1.5754950046539307, - 1.562578558921814, - 1.5380682945251465, - 1.5026328563690186, - 1.4572386741638184, - 1.4031240940093994, - 0.8719658851623535, - 0.9155527353286743, - 0.9651949405670166, - 1.019538402557373, - 1.0771007537841797, - 1.1363118886947632, - 1.1955567598342896, - 1.2532191276550293, - 1.3077261447906494, - 1.357591152191162, - 1.4014537334442139, - 1.4381177425384521, - 1.4665828943252563, - 1.4860726594924927, - 1.4960556030273438, - 1.4962592124938965, - 1.4866780042648315, - 1.4675735235214233, - 1.4394665956497192, - 1.4031240940093994, - 0.8719658851623535, - 0.8934499025344849, - 0.9215921759605408, - 0.9556251168251038, - 0.9946203231811523, - 1.037514090538025, - 1.0831365585327148, - 1.1302430629730225, - 1.1775487661361694, - 1.2237632274627686, - 1.2676259279251099, - 1.3079403638839722, - 1.3436068296432495, - 1.373652458190918, - 1.3972578048706055, - 1.4137786626815796, - 1.422764778137207, - 1.4239706993103027, - 1.4173637628555298, - 1.4031240940093994, - 0.8719658851623535, - 0.8694114685058594, - 0.8741710186004639, - 0.8861147165298462, - 0.9049167633056641, - 0.93006432056427, - 0.9608713984489441, - 0.9964976906776428, - 1.0359714031219482, - 1.0782157182693481, - 1.1220784187316895, - 1.166363000869751, - 1.2098615169525146, - 1.251387357711792, - 1.289807915687561, - 1.3240752220153809, - 1.3532543182373047, - 1.3765496015548706, - 1.3933253288269043, - 1.4031240940093994, - 0.8719659447669983, - 0.8460423946380615, - 0.8280702829360962, - 0.8185397982597351, - 0.8177109956741333, - 0.8256063461303711, - 0.8420106768608093, - 0.8664763569831848, - 0.8983360528945923, - 0.9367207884788513, - 0.9805834889411926, - 1.028727650642395, - 1.0798401832580566, - 1.1325266361236572, - 1.185349941253662, - 1.2368693351745605, - 1.2856794595718384, - 1.3304487466812134, - 1.3699562549591064, - 1.4031240940093994, - 0.8719659447669983, - 0.8258750438690186, - 0.7882856130599976, - 0.7602231502532959, - 0.7424529790878296, - 0.7354599237442017, - 0.7394347190856934, - 0.7542688846588135, - 0.7795578241348267, - 0.8146116733551025, - 0.8584743738174438, - 0.9099494218826294, - 0.9676326513290405, - 1.0299506187438965, - 1.0952035188674927, - 1.1616113185882568, - 1.2273627519607544, - 1.2906641960144043, - 1.349788784980774, - 1.4031240940093994, - 0.8719659447669983, - 0.8110948204994202, - 0.7591283917427063, - 0.7174842357635498, - 0.6872981786727905, - 0.6693937182426453, - 0.6642591953277588, - 0.6720346212387085, - 0.6925079822540283, - 0.7251208424568176, - 0.7689834833145142, - 0.822899580001831, - 0.8853983879089355, - 0.9547750949859619, - 1.0291372537612915, - 1.1064565181732178, - 1.1846238374710083, - 1.2615069150924683, - 1.3350086212158203, - 1.4031240940093994, - 0.8719659447669983, - 0.8033034801483154, - 0.7437582015991211, - 0.694954514503479, - 0.6582234501838684, - 0.6345670223236084, - 0.6246305704116821, - 0.6286850571632385, - 0.6466199159622192, - 0.6779459714889526, - 0.7218086123466492, - 0.777011513710022, - 0.8420488238334656, - 0.91514652967453, - 0.9943106174468994, - 1.0773818492889404, - 1.1620941162109375, - 1.2461367845535278, - 1.3272173404693604, - 1.4031240940093994, - 0.8719659447669983, - 0.8033453226089478, - 0.7438406944274902, - 0.6950753927230835, - 0.6583794355392456, - 0.634753942489624, - 0.6248432397842407, - 0.6289176940917969, - 0.6468661427497864, - 0.6781991720199585, - 0.722061812877655, - 0.7772578001022339, - 0.8422814607620239, - 0.9153591990470886, - 0.9944974780082703, - 1.0775378942489624, - 1.162214994430542, - 1.246219277381897, - 1.3272590637207031, - 1.4031240940093994, - 0.8719659447669983, - 0.8112157583236694, - 0.7593668699264526, - 0.7178338766098022, - 0.6877493858337402, - 0.6699341535568237, - 0.6648741960525513, - 0.6727073788642883, - 0.6932201385498047, - 0.7258529663085938, - 0.7697156071662903, - 0.8236117362976074, - 0.8860712051391602, - 0.9553900957107544, - 1.0296777486801147, - 1.1069077253341675, - 1.1849734783172607, - 1.2617454528808594, - 1.3351294994354248, - 1.4031240940093994, - 0.8719659447669983, - 0.8260619044303894, - 0.7886543273925781, - 0.7607635855674744, - 0.7431504726409912, - 0.7362953424453735, - 0.7403853535652161, - 0.7553087472915649, - 0.7806585431098938, - 0.8157433867454529, - 0.8596060276031494, - 0.9110501408576965, - 0.968672513961792, - 1.030901312828064, - 1.0960389375686646, - 1.1623088121414185, - 1.2279032468795776, - 1.2910327911376953, - 1.3499757051467896, - 1.4031240940093994, - 0.8719659447669983, - 0.8462750315666199, - 0.8285292387008667, - 0.8192125558853149, - 0.8185791969299316, - 0.8266463279724121, - 0.8431940078735352, - 0.867770791053772, - 0.8997063636779785, - 0.9381295442581177, - 0.981992244720459, - 1.0300979614257812, - 1.081134557723999, - 1.1337100267410278, - 1.1863899230957031, - 1.2377375364303589, - 1.2863521575927734, - 1.3309078216552734, - 1.37018883228302, - 1.4031240940093994, - 0.8719658851623535, - 0.8696646690368652, - 0.8746705055236816, - 0.8868467807769775, - 0.9058615565299988, - 0.9311959743499756, - 0.9621590971946716, - 0.9979063272476196, - 1.0374624729156494, - 1.0797486305236816, - 1.123611330986023, - 1.1678540706634521, - 1.2112700939178467, - 1.2526750564575195, - 1.2909395694732666, - 1.3250199556350708, - 1.3539865016937256, - 1.3770489692687988, - 1.3935785293579102, - 1.4031240940093994, - 0.8719658851623535, - 0.8936961889266968, - 0.922078013420105, - 0.9563372135162354, - 0.9955392479896545, - 1.0386148691177368, - 1.0843889713287354, - 1.1316131353378296, - 1.1789990663528442, - 1.2252542972564697, - 1.2691168785095215, - 1.309390664100647, - 1.3449769020080566, - 1.374904990196228, - 1.3983584642410278, - 1.4146976470947266, - 1.4234768152236938, - 1.4244564771652222, - 1.4176099300384521, - 1.4031240940093994, - 0.8719658851623535, - 0.9157654047012329, - 0.9656144976615906, - 1.0201534032821655, - 1.0778944492340088, - 1.1372625827789307, - 1.1966384649276733, - 1.2544023990631104, - 1.308978796005249, - 1.3588788509368896, - 1.4027414321899414, - 1.4393703937530518, - 1.4677661657333374, - 1.4871543645858765, - 1.4970061779022217, - 1.497052788734436, - 1.487293004989624, - 1.4679930210113525, - 1.4396792650222778, - 1.4031240940093994, - 0.8719658851623535, - 0.9334808588027954, - 1.000562071800232, - 1.0713798999786377, - 1.1440025568008423, - 1.2164489030838013, - 1.2867430448532104, - 1.3529675006866455, - 1.413315773010254, - 1.4661418199539185, - 1.5100045204162598, - 1.5437074899673462, - 1.566331386566162, - 1.5772590637207031, - 1.5761926174163818, - 1.5631608963012695, - 1.5385195016860962, - 1.5029406547546387, - 1.4573945999145508, - 1.4031240940093994, - 0.8719658851623535, - 0.9449226260185242, - 1.023133635520935, - 1.1044654846191406, - 1.186699628829956, - 1.2675929069519043, - 1.34493887424469, - 1.4166276454925537, - 1.4807038307189941, - 1.5354195833206177, - 1.579282283782959, - 1.6110954284667969, - 1.6299915313720703, - 1.6354548931121826, - 1.6273366212844849, - 1.6058579683303833, - 1.5716050863265991, - 1.5255122184753418, - 1.4688365459442139, - 1.4031240940093994, - 0.8719658851623535, - 0.9488509893417358, - 1.0308830738067627, - 1.115824818611145, - 1.2013587951660156, - 1.2851521968841553, - 1.3649193048477173, - 1.4384841918945312, - 1.5038402080535889, - 1.5592048168182373, - 1.603067398071289, - 1.6342318058013916, - 1.6518480777740479, - 1.65543532371521, - 1.6448959112167358, - 1.6205172538757324, - 1.5829644203186035, - 1.5332616567611694, - 1.4727648496627808, - 1.4031240940093994 - ], - "z": [ - 1.2206752300262451, - 1.2686268091201782, - 1.3052679300308228, - 1.329599142074585, - 1.3409569263458252, - 1.3390312194824219, - 1.323874831199646, - 1.2959009408950806, - 1.2558726072311401, - 1.2048819065093994, - 1.1443195343017578, - 1.07583749294281, - 1.0013039112091064, - 0.9227518439292908, - 0.8423239588737488, - 0.7622140049934387, - 0.6846073269844055, - 0.6116207242012024, - 0.5452452301979065, - 0.4872913062572479, - 1.2206752300262451, - 1.265718936920166, - 1.2995315790176392, - 1.3211907148361206, - 1.3301057815551758, - 1.326033353805542, - 1.3090847730636597, - 1.2797220945358276, - 1.2387464046478271, - 1.1872754096984863, - 1.1267130374908447, - 1.058711290359497, - 0.9851251244544983, - 0.9079617857933044, - 0.8293260335922241, - 0.7513628005981445, - 0.6761988401412964, - 0.605884313583374, - 0.5423374176025391, - 0.4872913062572479, - 1.2206752300262451, - 1.2573878765106201, - 1.2830967903137207, - 1.29710054397583, - 1.2990171909332275, - 1.2887945175170898, - 1.2667113542556763, - 1.2333699464797974, - 1.1896799802780151, - 1.1368329524993896, - 1.076270580291748, - 1.009644865989685, - 0.938772976398468, - 0.8655883073806763, - 0.7920871376991272, - 0.7202742695808411, - 0.6521086096763611, - 0.5894495844841003, - 0.5340063571929932, - 0.4872913062572479, - 1.2206752300262451, - 1.2445366382598877, - 1.2577446699142456, - 1.2599390745162964, - 1.2510602474212646, - 1.231350064277649, - 1.2013463973999023, - 1.1618674993515015, - 1.113990306854248, - 1.0590208768844604, - 0.9984585046768188, - 0.9339552521705627, - 0.8672705292701721, - 0.8002233505249023, - 0.7346426844596863, - 0.6723172664642334, - 0.6149471998214722, - 0.5640974044799805, - 0.5211549997329712, - 0.4872913062572479, - 1.2206752300262451, - 1.2285575866699219, - 1.2262223958969116, - 1.2137335538864136, - 1.1914316415786743, - 1.159925103187561, - 1.1200731992721558, - 1.072962999343872, - 1.019879698753357, - 0.9622711539268494, - 0.9017087817192078, - 0.8398445844650269, - 0.7783660888671875, - 0.7189501523971558, - 0.6632176637649536, - 0.6126887202262878, - 0.5687416791915894, - 0.5325751900672913, - 0.5051759481430054, - 0.4872913062572479, - 1.2206752300262451, - 1.2111823558807373, - 1.191946029663086, - 1.163490891456604, - 1.1265932321548462, - 1.0822595357894897, - 1.0316989421844482, - 0.9762908220291138, - 0.9175464510917664, - 0.8570682406425476, - 0.796505868434906, - 0.7375113368034363, - 0.6816938519477844, - 0.630575954914093, - 0.5855520963668823, - 0.5478502511978149, - 0.5184990167617798, - 0.4982987940311432, - 0.48780080676078796, - 0.4872913062572479, - 1.2206752300262451, - 1.1942939758300781, - 1.1586298942565918, - 1.1146557331085205, - 1.0635712146759033, - 1.0067696571350098, - 0.9458004832267761, - 0.8823267817497253, - 0.818079948425293, - 0.754812479019165, - 0.6942501068115234, - 0.6380448341369629, - 0.587729811668396, - 0.5446774959564209, - 0.5100622177124023, - 0.48482823371887207, - 0.4696638286113739, - 0.46498262882232666, - 0.470912367105484, - 0.4872913062572479, - 1.2206752300262451, - 1.1797223091125488, - 1.1298842430114746, - 1.0725200176239014, - 1.0091949701309204, - 0.9416359663009644, - 0.8716861009597778, - 0.8012533187866211, - 0.7322589159011841, - 0.6665847897529602, - 0.6060224175453186, - 0.552223801612854, - 0.5066564083099365, - 0.4705631136894226, - 0.4449285566806793, - 0.4304519295692444, - 0.42752817273139954, - 0.4362369775772095, - 0.45634081959724426, - 0.4872913062572479, - 1.2206752300262451, - 1.1690467596054077, - 1.1088241338729858, - 1.0416500568389893, - 0.9693569540977478, - 0.8939167857170105, - 0.8173873424530029, - 0.7418560981750488, - 0.6693834066390991, - 0.6019461154937744, - 0.5413837432861328, - 0.48934829235076904, - 0.4472591280937195, - 0.41626429557800293, - 0.3972093462944031, - 0.39061400294303894, - 0.39665815234184265, - 0.4151768982410431, - 0.445665180683136, - 0.4872913360595703, - 1.2206752300262451, - 1.1634238958358765, - 1.0977318286895752, - 1.025390863418579, - 0.9483743906021118, - 0.868783175945282, - 0.7887881994247437, - 0.7105716466903687, - 0.6362669467926025, - 0.5679010152816772, - 0.5073386430740356, - 0.45623183250427246, - 0.4159746468067169, - 0.3876652121543884, - 0.3720757067203522, - 0.3696313798427582, - 0.3803989291191101, - 0.40408459305763245, - 0.4400423467159271, - 0.4872913360595703, - 1.2206752300262451, - 1.1634631156921387, - 1.0978093147277832, - 1.0255043506622314, - 0.9485208988189697, - 0.8689587116241455, - 0.7889879941940308, - 0.7107901573181152, - 0.636498212814331, - 0.568138837814331, - 0.5075764656066895, - 0.45646312832832336, - 0.4161931574344635, - 0.38786494731903076, - 0.3722512722015381, - 0.36977794766426086, - 0.3805125057697296, - 0.40416204929351807, - 0.4400816261768341, - 0.4872913360595703, - 1.2206752300262451, - 1.1691603660583496, - 1.1090481281280518, - 1.0419784784317017, - 0.9697807431221008, - 0.8944244384765625, - 0.8179649114608765, - 0.742487907409668, - 0.6700522303581238, - 0.6026337146759033, - 0.5420713424682617, - 0.4900171458721161, - 0.447890967130661, - 0.41684192419052124, - 0.3977169692516327, - 0.39103779196739197, - 0.39698654413223267, - 0.4154009222984314, - 0.4457787573337555, - 0.4872913360595703, - 1.2206752300262451, - 1.1798979043960571, - 1.13023042678833, - 1.0730277299880981, - 1.009850025177002, - 0.9424206614494324, - 0.8725789785385132, - 0.8022300601005554, - 0.7332927584648132, - 0.667647659778595, - 0.6070853471755981, - 0.5532577037811279, - 0.5076330900192261, - 0.47145596146583557, - 0.44571322202682495, - 0.4311070144176483, - 0.42803579568862915, - 0.4365832805633545, - 0.4565163552761078, - 0.4872913062572479, - 1.2206752300262451, - 1.1945124864578247, - 1.1590609550476074, - 1.1152875423431396, - 1.0643866062164307, - 1.0077463388442993, - 0.9469119310379028, - 0.883542537689209, - 0.8193669319152832, - 0.7561355233192444, - 0.6955731511116028, - 0.6393318176269531, - 0.5889456272125244, - 0.5457888841629028, - 0.5110390186309814, - 0.4856436550617218, - 0.4702956974506378, - 0.4654136896133423, - 0.471130907535553, - 0.4872913062572479, - 1.2206752300262451, - 1.2114201784133911, - 1.1924151182174683, - 1.164178490638733, - 1.1274806261062622, - 1.0833224058151245, - 1.0329084396362305, - 0.9776138663291931, - 0.9189469218254089, - 0.8585079908370972, - 0.7979456186294556, - 0.7389118075370789, - 0.6830168962478638, - 0.6317853927612305, - 0.5866149663925171, - 0.548737645149231, - 0.5191866159439087, - 0.4987678825855255, - 0.4880385994911194, - 0.4872913062572479, - 1.2206752300262451, - 1.2287888526916504, - 1.226678729057312, - 1.2144023180007935, - 1.1922948360443115, - 1.1609588861465454, - 1.1212495565414429, - 1.0742498636245728, - 1.0212419033050537, - 0.9636715650558472, - 0.9031091928482056, - 0.8412067890167236, - 0.7796529531478882, - 0.7201265692710876, - 0.6642515063285828, - 0.6135517954826355, - 0.5694104433059692, - 0.5330314636230469, - 0.5054072737693787, - 0.4872913062572479, - 1.2206752300262451, - 1.2447363138198853, - 1.258138656616211, - 1.2605167627334595, - 1.2518056631088257, - 1.2322429418563843, - 1.202362298965454, - 1.1629788875579834, - 1.1151667833328247, - 1.0602302551269531, - 0.9996679425239563, - 0.9351316690444946, - 0.868381917476654, - 0.8012393116950989, - 0.7355355620384216, - 0.6730626821517944, - 0.6155248284339905, - 0.5644915103912354, - 0.5213547945022583, - 0.4872913062572479, - 1.2206752300262451, - 1.2575345039367676, - 1.283385992050171, - 1.297524333000183, - 1.2995641231536865, - 1.289449691772461, - 1.2674567699432373, - 1.2341854572296143, - 1.1905431747436523, - 1.1377203464508057, - 1.077157974243164, - 1.0105080604553223, - 0.9395884275436401, - 0.8663337826728821, - 0.7927422523498535, - 0.7208212018013, - 0.6525324583053589, - 0.5897387266159058, - 0.5341529846191406, - 0.4872913062572479, - 1.2206752300262451, - 1.265796422958374, - 1.2996844053268433, - 1.3214147090911865, - 1.3303948640823364, - 1.3263797760009766, - 1.3094788789749146, - 1.2801532745361328, - 1.2392027378082275, - 1.1877446174621582, - 1.1271822452545166, - 1.0591676235198975, - 0.9855562448501587, - 0.9083558320999146, - 0.8296723961830139, - 0.75165194272995, - 0.6764228940010071, - 0.6060371994972229, - 0.5424149036407471, - 0.4872913062572479, - 1.2206752300262451, - 1.2686268091201782, - 1.3052679300308228, - 1.329599142074585, - 1.3409569263458252, - 1.3390312194824219, - 1.323874831199646, - 1.2959009408950806, - 1.2558726072311401, - 1.2048819065093994, - 1.1443195343017578, - 1.07583749294281, - 1.0013039112091064, - 0.9227518439292908, - 0.8423239588737488, - 0.7622140049934387, - 0.6846073269844055, - 0.6116207242012024, - 0.5452452301979065, - 0.4872913062572479 - ] - }, - { - "marker": { - "color": "black", - "size": 2 - }, - "mode": "markers", - "name": "Means", - "type": "scatter3d", - "x": [ - -0.18377050757408142, - -0.0864175409078598, - 0.017598956823349, - 0.12333059310913086, - 0.2297331690788269, - 0.3307957053184509, - 0.40407609939575195, - 0.45723482966423035, - 0.49737879633903503, - 0.5286990404129028, - 0.5537876486778259, - 0.5743218660354614, - 0.5914312601089478, - 0.6059025526046753, - 0.6182997822761536 - ], - "y": [ - -0.3563395142555237, - -0.23127293586730957, - -0.09764590859413147, - 0.038184523582458496, - 0.17487680912017822, - 0.30673521757125854, - 0.40951085090637207, - 0.4874996840953827, - 0.5480022430419922, - 0.5960608124732971, - 0.6350536346435547, - 0.6672763228416443, - 0.6943261623382568, - 0.7173424959182739, - 0.7371567487716675 - ], - "z": [ - -0.18800273537635803, - 0.062225341796875, - 0.32958078384399414, - 0.6013447046279907, - 0.8748331069946289, - 1.1298048496246338, - 1.2977423667907715, - 1.4114480018615723, - 1.4935134649276733, - 1.5555205345153809, - 1.6040165424346924, - 1.6429803371429443, - 1.6749690771102905, - 1.7017006874084473, - 1.724372148513794 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.23518574237823486, - -0.24089595675468445, - -0.245047926902771, - -0.24752841889858246, - -0.24826976656913757, - -0.2472517341375351, - -0.24450209736824036, - -0.24009586870670319, - -0.23415322601795197, - -0.22683627903461456, - -0.21834459900856018, - -0.20890983939170837, - -0.1987893432378769, - -0.18825916945934296, - -0.17760656774044037, - -0.16712208092212677, - -0.15709173679351807, - -0.1477891057729721, - -0.13946795463562012, - -0.13235527276992798, - -0.23518574237823486, - -0.23801350593566895, - -0.23936167359352112, - -0.23919345438480377, - -0.2375134527683258, - -0.2343674749135971, - -0.22984133660793304, - -0.22405850887298584, - -0.21717673540115356, - -0.20938372611999512, - -0.20089206099510193, - -0.19193334877490997, - -0.18275198340415955, - -0.17359840869903564, - -0.1647222936153412, - -0.156365767121315, - -0.14875677227973938, - -0.14210285246372223, - -0.1365855187177658, - -0.13235527276992798, - -0.23518574237823486, - -0.23474864661693573, - -0.23292100429534912, - -0.22975265979766846, - -0.22533005475997925, - -0.2197738140821457, - -0.21323548257350922, - -0.20589342713356018, - -0.1979479193687439, - -0.18961569666862488, - -0.1811240166425705, - -0.1727045327425003, - -0.1645869016647339, - -0.15699255466461182, - -0.15012863278388977, - -0.14418238401412964, - -0.13931597769260406, - -0.13566218316555023, - -0.1333206593990326, - -0.13235527276992798, - -0.23518574237823486, - -0.23145516216754913, - -0.22642387449741364, - -0.2202291041612625, - -0.2130398452281952, - -0.2050521969795227, - -0.1964840441942215, - -0.18756909668445587, - -0.17855052649974823, - -0.169674351811409, - -0.16118267178535461, - -0.15330713987350464, - -0.14626257121562958, - -0.1402411162853241, - -0.13540703058242798, - -0.13189217448234558, - -0.12979242205619812, - -0.12916505336761475, - -0.130027174949646, - -0.13235527276992798, - -0.23518574237823486, - -0.228489950299263, - -0.22057433426380157, - -0.21165479719638824, - -0.20197466015815735, - -0.19179795682430267, - -0.1814022809267044, - -0.17107121646404266, - -0.1610865443944931, - -0.15172064304351807, - -0.14322896301746368, - -0.1358431577682495, - -0.12976469099521637, - -0.125159353017807, - -0.12215277552604675, - -0.12082697451114655, - -0.12121810764074326, - -0.12331550568342209, - -0.12706196308135986, - -0.13235527276992798, - -0.23518574237823486, - -0.22617433965206146, - -0.21600627899169922, - -0.20495890080928802, - -0.19333356618881226, - -0.18144738674163818, - -0.16962456703186035, - -0.158187597990036, - -0.14744848012924194, - -0.1377001255750656, - -0.12920846045017242, - -0.12220509350299835, - -0.11688107997179031, - -0.11338163167238235, - -0.11180220544338226, - -0.11218588799238205, - -0.11452221870422363, - -0.11874745786190033, - -0.12474635243415833, - -0.13235527276992798, - -0.23518574237823486, - -0.2247592657804489, - -0.2132147252559662, - -0.20086702704429626, - -0.1880529820919037, - -0.17512212693691254, - -0.1624271720647812, - -0.15031439065933228, - -0.13911423087120056, - -0.12913216650485992, - -0.12064049392938614, - -0.11387083679437637, - -0.10900787264108658, - -0.10618423670530319, - -0.10547693818807602, - -0.10690529644489288, - -0.11043034493923187, - -0.1159559041261673, - -0.12333127856254578, - -0.13235527276992798, - -0.23518574237823486, - -0.22439807653427124, - -0.21250219643115997, - -0.1998225897550583, - -0.18670512735843658, - -0.17350761592388153, - -0.1605900526046753, - -0.1483047902584076, - -0.13698692619800568, - -0.12694521248340607, - -0.11845353990793228, - -0.11174353957176208, - -0.1069982573390007, - -0.1043471172451973, - -0.10386243462562561, - -0.10555744916200638, - -0.1093859001994133, - -0.11524337530136108, - -0.1229700893163681, - -0.13235527276992798, - -0.23518574237823486, - -0.2251299023628235, - -0.2139458954334259, - -0.20193876326084137, - -0.18943606317043304, - -0.17677882313728333, - -0.16431230306625366, - -0.15237653255462646, - -0.1412971168756485, - -0.1313762664794922, - -0.122884601354599, - -0.11605373024940491, - -0.11107000708580017, - -0.10806936025619507, - -0.1071336418390274, - -0.10828838497400284, - -0.11150208115577698, - -0.11668706685304642, - -0.12370191514492035, - -0.13235527276992798, - -0.23518574237823486, - -0.2268754541873932, - -0.21738936007022858, - -0.2069862335920334, - -0.19594985246658325, - -0.18458126485347748, - -0.17319053411483765, - -0.16208840906620026, - -0.15157771110534668, - -0.14194515347480774, - -0.13345348834991455, - -0.1263343244791031, - -0.12078188359737396, - -0.11694760620594025, - -0.11493607610464096, - -0.11480217427015305, - -0.116549551486969, - -0.12013053894042969, - -0.12544745206832886, - -0.13235527276992798, - -0.23518574237823486, - -0.22944554686546326, - -0.22245946526527405, - -0.21441803872585297, - -0.20554062724113464, - -0.1960694044828415, - -0.18626268208026886, - -0.1763879805803299, - -0.1667146533727646, - -0.1575065702199936, - -0.1490149050951004, - -0.141471266746521, - -0.1350814551115036, - -0.13001975417137146, - -0.12642422318458557, - -0.12439295649528503, - -0.12398135662078857, - -0.12520062923431396, - -0.12801755964756012, - -0.13235527276992798, - -0.23518574237823486, - -0.23256170749664307, - -0.22860676050186157, - -0.22342881560325623, - -0.21716907620429993, - -0.20999833941459656, - -0.20211215317249298, - -0.19372566044330597, - -0.18506762385368347, - -0.17637419700622559, - -0.1678825169801712, - -0.15982423722743988, - -0.15241913497447968, - -0.14586922526359558, - -0.14035315811634064, - -0.13602140545845032, - -0.13299211859703064, - -0.13134793937206268, - -0.13113370537757874, - -0.13235527276992798, - -0.23518574237823486, - -0.23588621616363525, - -0.23516511917114258, - -0.23304209113121033, - -0.22957508265972137, - -0.22485864162445068, - -0.21902142465114594, - -0.2122226506471634, - -0.20464777946472168, - -0.1965034306049347, - -0.1880117505788803, - -0.1794043928384781, - -0.1709161251783371, - -0.16277849674224854, - -0.15521347522735596, - -0.14842739701271057, - -0.14260540902614594, - -0.1379062831401825, - -0.13445822894573212, - -0.13235527276992798, - -0.23518574237823486, - -0.23905883729457855, - -0.2414238154888153, - -0.24221615493297577, - -0.24141426384449005, - -0.23903998732566833, - -0.23515811562538147, - -0.22987452149391174, - -0.22333332896232605, - -0.21571296453475952, - -0.20722128450870514, - -0.19808994233608246, - -0.18856799602508545, - -0.17891518771648407, - -0.1693948209285736, - -0.16026657819747925, - -0.15177947282791138, - -0.14416499435901642, - -0.13763085007667542, - -0.13235527276992798, - -0.23518574237823486, - -0.24173575639724731, - -0.24670463800430298, - -0.24995681643486023, - -0.2514036297798157, - -0.2510055899620056, - -0.24877354502677917, - -0.24476838111877441, - -0.23909935355186462, - -0.23192110657691956, - -0.22342944145202637, - -0.21385598182678223, - -0.20346185564994812, - -0.19253061711788177, - -0.1813604235649109, - -0.17025595903396606, - -0.15952013432979584, - -0.1494458019733429, - -0.14030776917934418, - -0.13235527276992798, - -0.23518574237823486, - -0.2436268925666809, - -0.25043532252311707, - -0.25542527437210083, - -0.25846073031425476, - -0.2594587802886963, - -0.2583922743797302, - -0.25529029965400696, - -0.25023743510246277, - -0.24337151646614075, - -0.23487985134124756, - -0.22499403357505798, - -0.21398377418518066, - -0.20214936137199402, - -0.18981361389160156, - -0.17731304466724396, - -0.16498860716819763, - -0.15317648649215698, - -0.14219889044761658, - -0.13235527276992798, - -0.23518574237823486, - -0.24452731013298035, - -0.2522115707397461, - -0.25802895426750183, - -0.2618207633495331, - -0.26348358392715454, - -0.26297199726104736, - -0.26030004024505615, - -0.25554054975509644, - -0.24882332980632782, - -0.24033164978027344, - -0.23029714822769165, - -0.21899351477622986, - -0.20672908425331116, - -0.19383840262889862, - -0.18067309260368347, - -0.16759227216243744, - -0.1549527645111084, - -0.14309930801391602, - -0.13235527276992798, - -0.23518574237823486, - -0.24433942139148712, - -0.2518409490585327, - -0.25748568773269653, - -0.26111966371536255, - -0.2626437544822693, - -0.2620164155960083, - -0.25925469398498535, - -0.2544339895248413, - -0.2476857602596283, - -0.2391940951347351, - -0.22919060289859772, - -0.21794818341732025, - -0.2057734727859497, - -0.19299860298633575, - -0.17997199296951294, - -0.16704899072647095, - -0.15458211302757263, - -0.14291143417358398, - -0.13235527276992798, - -0.23518574237823486, - -0.24308361113071442, - -0.24936357140541077, - -0.25385433435440063, - -0.256433367729187, - -0.2570303678512573, - -0.2556290328502655, - -0.25226759910583496, - -0.24703770875930786, - -0.24008207023143768, - -0.2315904051065445, - -0.22179433703422546, - -0.21096105873584747, - -0.1993861198425293, - -0.1873852163553238, - -0.1752857118844986, - -0.16341763734817505, - -0.15210475027561188, - -0.14165562391281128, - -0.13235527276992798, - -0.23518574237823486, - -0.24089595675468445, - -0.245047926902771, - -0.24752840399742126, - -0.24826976656913757, - -0.2472517192363739, - -0.24450209736824036, - -0.24009586870670319, - -0.23415322601795197, - -0.22683626413345337, - -0.21834459900856018, - -0.20890983939170837, - -0.1987893432378769, - -0.18825916945934296, - -0.17760655283927917, - -0.16712208092212677, - -0.15709172189235687, - -0.1477891057729721, - -0.13946795463562012, - -0.13235527276992798 - ], - "y": [ - -0.42239123582839966, - -0.41309836506843567, - -0.4022572636604309, - -0.3901636302471161, - -0.377147376537323, - -0.36356353759765625, - -0.34978264570236206, - -0.33618059754371643, - -0.32312846183776855, - -0.31098219752311707, - -0.30007320642471313, - -0.29069897532463074, - -0.2831152677536011, - -0.27752891182899475, - -0.27409231662750244, - -0.27289918065071106, - -0.27398210763931274, - -0.2773115336894989, - -0.28279662132263184, - -0.2902877926826477, - -0.42239123582839966, - -0.41197580099105835, - -0.40004274249076843, - -0.3869175910949707, - -0.37295830249786377, - -0.3585457503795624, - -0.34407299757003784, - -0.32993483543395996, - -0.3165169358253479, - -0.30418527126312256, - -0.29327625036239624, - -0.2840874493122101, - -0.2768694758415222, - -0.27181923389434814, - -0.2690744996070862, - -0.2687101364135742, - -0.27073603868484497, - -0.2750970125198364, - -0.2816740572452545, - -0.2902877926826477, - -0.42239123582839966, - -0.41188427805900574, - -0.3998622000217438, - -0.38665294647216797, - -0.37261679768562317, - -0.3581366539001465, - -0.34360751509666443, - -0.3294256329536438, - -0.31597793102264404, - -0.30363115668296814, - -0.2927221357822418, - -0.28354841470718384, - -0.27636027336120605, - -0.27135375142097473, - -0.2686654329299927, - -0.26836860179901123, - -0.2704714238643646, - -0.27491647005081177, - -0.2815825343132019, - -0.2902877926826477, - -0.42239123582839966, - -0.4128337502479553, - -0.40173521637916565, - -0.38939839601516724, - -0.3761598467826843, - -0.36238062381744385, - -0.3484366536140442, - -0.33470821380615234, - -0.3215698301792145, - -0.3093798756599426, - -0.2984708547592163, - -0.28914034366607666, - -0.2816428542137146, - -0.2761828899383545, - -0.27290940284729004, - -0.2719116508960724, - -0.2732168734073639, - -0.27678948640823364, - -0.2825319766998291, - -0.2902877926826477, - -0.42239123582839966, - -0.41472128033638, - -0.40545880794525146, - -0.39485645294189453, - -0.38320350646972656, - -0.37081775069236755, - -0.3580370843410492, - -0.34521010518074036, - -0.3326866924762726, - -0.3208085000514984, - -0.3098994791507721, - -0.30025720596313477, - -0.2921447455883026, - -0.2857833504676819, - -0.28134649991989136, - -0.2789553105831146, - -0.2786749303340912, - -0.28051304817199707, - -0.28441953659057617, - -0.2902877926826477, - -0.42239123582839966, - -0.41734233498573303, - -0.4106294512748718, - -0.40243566036224365, - -0.3929844796657562, - -0.3825337290763855, - -0.3713684678077698, - -0.3597932457923889, - -0.34812384843826294, - -0.33667853474617004, - -0.3257695138454437, - -0.3156943619251251, - -0.30672791600227356, - -0.29911473393440247, - -0.2930625081062317, - -0.2887362837791443, - -0.2862541079521179, - -0.28568369150161743, - -0.2870405912399292, - -0.2902877926826477, - -0.42239123582839966, - -0.42041292786598206, - -0.4166868329048157, - -0.41131463646888733, - -0.4044428765773773, - -0.3962589502334595, - -0.3869861364364624, - -0.3768773674964905, - -0.36620840430259705, - -0.3552702069282532, - -0.34436118602752686, - -0.33377891778945923, - -0.32381200790405273, - -0.3147324025630951, - -0.30678772926330566, - -0.3001946806907654, - -0.295133113861084, - -0.29174110293388367, - -0.2901111841201782, - -0.2902877926826477, - -0.42239123582839966, - -0.4236002564430237, - -0.4229745864868164, - -0.4205312728881836, - -0.41633695363998413, - -0.41050609946250916, - -0.403197705745697, - -0.394611120223999, - -0.38498061895370483, - -0.3745688498020172, - -0.3636598289012909, - -0.352551132440567, - -0.3415457606315613, - -0.3309439420700073, - -0.32103484869003296, - -0.3120887577533722, - -0.30434972047805786, - -0.298028826713562, - -0.29329851269721985, - -0.2902877926826477, - -0.42239123582839966, - -0.4265589714050293, - -0.42881128191947937, - -0.42908674478530884, - -0.427377849817276, - -0.4237312376499176, - -0.418246328830719, - -0.4110727906227112, - -0.402406245470047, - -0.3924831449985504, - -0.3815741240978241, - -0.3699767589569092, - -0.35800743103027344, - -0.3459925949573517, - -0.3342599868774414, - -0.32312965393066406, - -0.3129052221775055, - -0.303865522146225, - -0.2962571978569031, - -0.2902877926826477, - -0.42239123582839966, - -0.4289683997631073, - -0.4335644245147705, - -0.43605396151542664, - -0.4363690912723541, - -0.4345012307167053, - -0.4305013120174408, - -0.4244784712791443, - -0.4165969789028168, - -0.4070717990398407, - -0.3961627781391144, - -0.38416749238967896, - -0.37141311168670654, - -0.3582475781440735, - -0.3450300097465515, - -0.3321209251880646, - -0.3198724389076233, - -0.3086186945438385, - -0.29866665601730347, - -0.2902877926826477, - -0.42239123582839966, - -0.43056750297546387, - -0.43671897053718567, - -0.4406779408454895, - -0.4423363506793976, - -0.4416489899158478, - -0.43863463401794434, - -0.4333754777908325, - -0.4260149598121643, - -0.416753888130188, - -0.40584486722946167, - -0.3935854732990265, - -0.3803101181983948, - -0.366380900144577, - -0.35217776894569397, - -0.33808815479278564, - -0.32449638843536377, - -0.31177324056625366, - -0.30026572942733765, - -0.2902877926826477, - -0.42239123582839966, - -0.4311829209327698, - -0.437933087348938, - -0.44245755672454834, - -0.44463294744491577, - -0.44439995288848877, - -0.4417648911476135, - -0.43679964542388916, - -0.42963966727256775, - -0.42048025131225586, - -0.40957123041152954, - -0.39721018075942993, - -0.3837342858314514, - -0.3695111572742462, - -0.35492873191833496, - -0.3403847813606262, - -0.326276034116745, - -0.3129873275756836, - -0.30088117718696594, - -0.2902877926826477, - -0.42239123582839966, - -0.43074801564216614, - -0.437075138092041, - -0.44119998812675476, - -0.4430100619792938, - -0.4424560070037842, - -0.439552903175354, - -0.4343799650669098, - -0.4270782768726349, - -0.41784703731536865, - -0.40693801641464233, - -0.39464879035949707, - -0.38131460547447205, - -0.3672991693019867, - -0.352984756231308, - -0.3387618660926819, - -0.3250184655189514, - -0.312129408121109, - -0.3004462718963623, - -0.2902877926826477, - -0.42239123582839966, - -0.4293099045753479, - -0.43423813581466675, - -0.4370414912700653, - -0.43764352798461914, - -0.43602776527404785, - -0.4322383403778076, - -0.42637860774993896, - -0.4186083674430847, - -0.40913960337638855, - -0.39823058247566223, - -0.3861788809299469, - -0.3733132481575012, - -0.3599846065044403, - -0.34655654430389404, - -0.3333953320980072, - -0.32085996866226196, - -0.30929240584373474, - -0.29900816082954407, - -0.2902877926826477, - -0.42239123582839966, - -0.4270244538784027, - -0.42972955107688904, - -0.4304327368736267, - -0.4291148781776428, - -0.42581191658973694, - -0.4206138849258423, - -0.4136626422405243, - -0.4051477909088135, - -0.39530155062675476, - -0.38439252972602844, - -0.37271830439567566, - -0.36059728264808655, - -0.348360151052475, - -0.33634066581726074, - -0.32486671209335327, - -0.31425121426582336, - -0.30478382110595703, - -0.2967227101325989, - -0.2902877926826477, - -0.42239123582839966, - -0.42413926124572754, - -0.424037903547287, - -0.4220898747444153, - -0.41834837198257446, - -0.41291543841362, - -0.4059392213821411, - -0.3976100981235504, - -0.3881551921367645, - -0.37783244252204895, - -0.36692342162132263, - -0.3557257056236267, - -0.34454473853111267, - -0.3336854875087738, - -0.3234441876411438, - -0.3141001760959625, - -0.30590835213661194, - -0.299092173576355, - -0.2938375174999237, - -0.2902877926826477, - -0.42239123582839966, - -0.4209670424461365, - -0.41777998208999634, - -0.41291695833206177, - -0.40651068091392517, - -0.3987358510494232, - -0.38980454206466675, - -0.37996041774749756, - -0.3694719672203064, - -0.3586253225803375, - -0.3477163016796112, - -0.3370424807071686, - -0.3268950581550598, - -0.31755080819129944, - -0.309264600276947, - -0.30226248502731323, - -0.2967354357242584, - -0.29283422231674194, - -0.29066529870033264, - -0.2902877926826477, - -0.42239123582839966, - -0.4178515374660492, - -0.4116339385509491, - -0.40390804409980774, - -0.3948846161365509, - -0.3848097622394562, - -0.3739583194255829, - -0.3626262843608856, - -0.35112276673316956, - -0.33976155519485474, - -0.3288525342941284, - -0.31869328022003174, - -0.30956095457077026, - -0.3017045855522156, - -0.29533851146698, - -0.29063642024993896, - -0.2877265214920044, - -0.2866882085800171, - -0.28754979372024536, - -0.2902877926826477, - -0.42239123582839966, - -0.4151303470134735, - -0.4062657952308655, - -0.39603936672210693, - -0.3847300410270691, - -0.372646301984787, - -0.36011773347854614, - -0.34748610854148865, - -0.33509600162506104, - -0.32328537106513977, - -0.31237635016441345, - -0.3026665151119232, - -0.2944207787513733, - -0.28786399960517883, - -0.2831750512123108, - -0.28048184514045715, - -0.2798578441143036, - -0.2813200354576111, - -0.2848286032676697, - -0.2902877926826477, - -0.42239123582839966, - -0.41309836506843567, - -0.4022572636604309, - -0.3901636302471161, - -0.377147376537323, - -0.36356353759765625, - -0.34978264570236206, - -0.33618059754371643, - -0.32312846183776855, - -0.31098219752311707, - -0.30007317662239075, - -0.29069897532463074, - -0.2831152379512787, - -0.27752888202667236, - -0.27409228682518005, - -0.27289918065071106, - -0.27398210763931274, - -0.2773115336894989, - -0.28279662132263184, - -0.2902877926826477 - ], - "z": [ - -0.3201562762260437, - -0.3200538754463196, - -0.31634944677352905, - -0.3091440498828888, - -0.29863426089286804, - -0.28510671854019165, - -0.26893043518066406, - -0.2505466639995575, - -0.2304568588733673, - -0.20920901000499725, - -0.18738271296024323, - -0.16557331383228302, - -0.144375741481781, - -0.12436819821596146, - -0.10609644651412964, - -0.09005887061357498, - -0.07669295370578766, - -0.06636327505111694, - -0.0593516081571579, - -0.05584920942783356, - -0.3201562762260437, - -0.3217363655567169, - -0.31966856122016907, - -0.31400924921035767, - -0.304912805557251, - -0.29262739419937134, - -0.2774880826473236, - -0.2599078118801117, - -0.24036619067192078, - -0.2193962186574936, - -0.19756992161273956, - -0.1754826456308365, - -0.1537368893623352, - -0.1329258233308792, - -0.11361710727214813, - -0.09633743017911911, - -0.08155814558267593, - -0.06968238949775696, - -0.06103411316871643, - -0.05584920942783356, - -0.3201562762260437, - -0.3230523467063904, - -0.32226458191871643, - -0.31781452894210815, - -0.30982354283332825, - -0.2985096275806427, - -0.2841813564300537, - -0.2672295570373535, - -0.24811670184135437, - -0.22736406326293945, - -0.20553776621818542, - -0.18323315680027008, - -0.16105863451957703, - -0.13961909711360931, - -0.1194993332028389, - -0.10124816000461578, - -0.08536341786384583, - -0.07227841019630432, - -0.062350064516067505, - -0.05584920942783356, - -0.3201562762260437, - -0.3238591253757477, - -0.3238561749458313, - -0.3201475143432617, - -0.3128342926502228, - -0.3021159768104553, - -0.28828495740890503, - -0.27171850204467773, - -0.25286850333213806, - -0.23224911093711853, - -0.2104228138923645, - -0.18798495829105377, - -0.16554756462574005, - -0.14372271299362183, - -0.12310569733381271, - -0.10425890237092972, - -0.08769641816616058, - -0.07387001812458038, - -0.06315688043832779, - -0.05584920942783356, - -0.3201562762260437, - -0.32406938076019287, - -0.32427090406417847, - -0.3207554221153259, - -0.3136187791824341, - -0.30305567383766174, - -0.28935420513153076, - -0.2728881537914276, - -0.25410664081573486, - -0.23352199792861938, - -0.21169568598270416, - -0.18922311067581177, - -0.16671723127365112, - -0.14479196071624756, - -0.12404539436101913, - -0.10504339635372162, - -0.0883043110370636, - -0.07428473979234695, - -0.06336710602045059, - -0.05584920942783356, - -0.3201562762260437, - -0.3236602246761322, - -0.3234637975692749, - -0.3195723295211792, - -0.31209200620651245, - -0.3012268841266632, - -0.28727325797080994, - -0.27061179280281067, - -0.25169700384140015, - -0.23104475438594818, - -0.20921845734119415, - -0.18681344389915466, - -0.16444087028503418, - -0.14271101355552673, - -0.1222165897488594, - -0.10351663827896118, - -0.08712124079465866, - -0.07347762584686279, - -0.06295797228813171, - -0.05584920942783356, - -0.3201562762260437, - -0.32267606258392334, - -0.3215223252773285, - -0.3167265057563782, - -0.30841946601867676, - -0.2968277335166931, - -0.28226757049560547, - -0.26513612270355225, - -0.24590063095092773, - -0.22508586943149567, - -0.20325955748558044, - -0.18101710081100464, - -0.15896517038345337, - -0.13770532608032227, - -0.1178174614906311, - -0.0998440608382225, - -0.08427540212869644, - -0.07153614610433578, - -0.06197381019592285, - -0.05584920942783356, - -0.3201562762260437, - -0.32122352719306946, - -0.318656861782074, - -0.31252628564834595, - -0.3029990494251251, - -0.2903349995613098, - -0.2748796343803406, - -0.2570544481277466, - -0.23734572529792786, - -0.21629105508327484, - -0.19446474313735962, - -0.17246218025684357, - -0.1508835107088089, - -0.13031736016273499, - -0.1113247275352478, - -0.09442365914583206, - -0.08007518947124481, - -0.06867069005966187, - -0.060521259903907776, - -0.05584920942783356, - -0.3201562762260437, - -0.3194600045681, - -0.31517794728279114, - -0.3074268698692322, - -0.2964181900024414, - -0.2824522852897644, - -0.26590996980667114, - -0.24724259972572327, - -0.22695930302143097, - -0.205613374710083, - -0.18378706276416779, - -0.16207575798034668, - -0.14107166230678558, - -0.12134773284196854, - -0.10344198346138, - -0.08784281462430954, - -0.07497575134038925, - -0.06519176810979843, - -0.05875775218009949, - -0.05584920942783356, - -0.3201562762260437, - -0.31757664680480957, - -0.31146255135536194, - -0.30198079347610474, - -0.28939005732536316, - -0.27403372526168823, - -0.256330668926239, - -0.2367638200521469, - -0.21586689352989197, - -0.19420990347862244, - -0.1723836064338684, - -0.15098334848880768, - -0.13059288263320923, - -0.11176841706037521, - -0.09502343088388443, - -0.0808146595954895, - -0.0695297047495842, - -0.06147637963294983, - -0.05687437951564789, - -0.05584920942783356, - -0.3201562762260437, - -0.3157774806022644, - -0.30791330337524414, - -0.2967783212661743, - -0.28267619013786316, - -0.2659916579723358, - -0.24717974662780762, - -0.22675366699695587, - -0.20527055859565735, - -0.1833164095878601, - -0.16149011254310608, - -0.14038699865341187, - -0.12058272957801819, - -0.10261749476194382, - -0.08698135614395142, - -0.0741008073091507, - -0.06432721018791199, - -0.057927146553993225, - -0.05507521331310272, - -0.05584920942783356, - -0.3201562762260437, - -0.31425750255584717, - -0.3049148619174957, - -0.2923831343650818, - -0.2770041823387146, - -0.25919753313064575, - -0.23944887518882751, - -0.2182968705892563, - -0.19631853699684143, - -0.17411337792873383, - -0.1522870659828186, - -0.13143499195575714, - -0.1121259406208992, - -0.09488660842180252, - -0.08018725365400314, - -0.06842880696058273, - -0.05993203818798065, - -0.05492869019508362, - -0.05355525016784668, - -0.05584920942783356, - -0.3201562762260437, - -0.31318145990371704, - -0.3027920722961426, - -0.2892715632915497, - -0.2729887068271637, - -0.25438764691352844, - -0.23397578299045563, - -0.21230988204479218, - -0.18998095393180847, - -0.16759806871414185, - -0.14577175676822662, - -0.12509740889072418, - -0.10613895207643509, - -0.08941352367401123, - -0.07537735253572464, - -0.06441330909729004, - -0.05682046711444855, - -0.05280591547489166, - -0.05247919261455536, - -0.05584920942783356, - -0.3201562762260437, - -0.3126659095287323, - -0.3017750382423401, - -0.2877807915210724, - -0.2710648477077484, - -0.2520831823348999, - -0.23135358095169067, - -0.20944146811962128, - -0.18694455921649933, - -0.16447652876377106, - -0.14265021681785583, - -0.12206102162599564, - -0.1032705307006836, - -0.08679132163524628, - -0.0730728954076767, - -0.062489449977874756, - -0.05532968044281006, - -0.05178888142108917, - -0.05196364223957062, - -0.05584920942783356, - -0.3201562762260437, - -0.3127667307853699, - -0.30197396874427795, - -0.2880723476409912, - -0.27144110202789307, - -0.252533882856369, - -0.23186641931533813, - -0.21000246703624725, - -0.18753841519355774, - -0.165087029337883, - -0.14326073229312897, - -0.12265487760305405, - -0.10383153706789017, - -0.08730416744947433, - -0.07352359592914581, - -0.0628657191991806, - -0.055621251463890076, - -0.051987797021865845, - -0.052064478397369385, - -0.05584920942783356, - -0.3201562762260437, - -0.31347301602363586, - -0.3033672571182251, - -0.2901146411895752, - -0.2740767002105713, - -0.25569090247154236, - -0.23545873165130615, - -0.2139320820569992, - -0.19169814884662628, - -0.16936340928077698, - -0.14753711223602295, - -0.126814603805542, - -0.10776115208864212, - -0.09089647978544235, - -0.07668061554431915, - -0.06550132483243942, - -0.057663559913635254, - -0.05338108539581299, - -0.052770763635635376, - -0.05584920942783356, - -0.3201562762260437, - -0.31470823287963867, - -0.30580395460128784, - -0.2936863899230957, - -0.2786860764026642, - -0.26121214032173157, - -0.24174124002456665, - -0.22080449759960175, - -0.19897300004959106, - -0.17684227228164673, - -0.1550159752368927, - -0.13408946990966797, - -0.11463356763124466, - -0.09717898815870285, - -0.08220185339450836, - -0.07011067867279053, - -0.06123529374599457, - -0.055817797780036926, - -0.05400596559047699, - -0.05584920942783356, - -0.3201562762260437, - -0.3163384795188904, - -0.3090200126171112, - -0.29840052127838135, - -0.2847696542739868, - -0.2684992849826813, - -0.2500331401824951, - -0.22987496852874756, - -0.20857463777065277, - -0.18671315908432007, - -0.16488686203956604, - -0.14369109272956848, - -0.12370403856039047, - -0.10547088086605072, - -0.08948898315429688, - -0.07619427889585495, - -0.06594941765069962, - -0.0590338408946991, - -0.05563622713088989, - -0.05584920942783356, - -0.3201562762260437, - -0.3181871175765991, - -0.3126669228076935, - -0.30374616384506226, - -0.29166826605796814, - -0.27676263451576233, - -0.25943586230278015, - -0.24016056954860687, - -0.2194625586271286, - -0.19790638983249664, - -0.17608009278774261, - -0.1545790135860443, - -0.1339896321296692, - -0.11487360298633575, - -0.09775234013795853, - -0.08309287577867508, - -0.07129506766796112, - -0.06268073618412018, - -0.05748488008975983, - -0.05584920942783356, - -0.3201562762260437, - -0.3200538754463196, - -0.31634944677352905, - -0.3091440498828888, - -0.29863426089286804, - -0.28510674834251404, - -0.26893046498298645, - -0.2505466938018799, - -0.2304568737745285, - -0.20920901000499725, - -0.18738271296024323, - -0.1655733287334442, - -0.144375741481781, - -0.12436820566654205, - -0.10609645396471024, - -0.09005887806415558, - -0.07669296115636826, - -0.06636327505111694, - -0.0593516081571579, - -0.05584920942783356 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.14596432447433472, - -0.1275637000799179, - -0.1080407053232193, - -0.08792790025472641, - -0.06777388602495193, - -0.04812842980027199, - -0.02952739968895912, - -0.012478180229663849, - 0.002554163336753845, - 0.01515958458185196, - 0.024994254112243652, - 0.031789906322956085, - 0.0353611558675766, - 0.035610608756542206, - 0.03253144025802612, - 0.026207663118839264, - 0.016811758279800415, - 0.004600033164024353, - -0.010094419121742249, - -0.026870768517255783, - -0.14596432447433472, - -0.1261676847934723, - -0.10528676211833954, - -0.0838911309838295, - -0.0625644102692604, - -0.04188835993409157, - -0.022426940500736237, - -0.0047110095620155334, - 0.01077616959810257, - 0.023612163960933685, - 0.03344683349132538, - 0.04001191258430481, - 0.043128326535224915, - 0.04271106421947479, - 0.03877151012420654, - 0.031417131423950195, - 0.020848527550697327, - 0.007353983819484711, - -0.00869840383529663, - -0.026870768517255783, - -0.14596432447433472, - -0.12682893872261047, - -0.10659120976924896, - -0.08580321818590164, - -0.0650319755077362, - -0.04484408721327782, - -0.025790203362703323, - -0.008390076458454132, - 0.0068816691637039185, - 0.019608445465564728, - 0.02944311499595642, - 0.03611741214990616, - 0.039449259638786316, - 0.03934779763221741, - 0.03581579029560089, - 0.028949573636054993, - 0.018936432898044586, - 0.00604952871799469, - -0.009359650313854218, - -0.026870768517255783, - -0.14596432447433472, - -0.12947578728199005, - -0.11181273311376572, - -0.09345696121454239, - -0.07490917295217514, - -0.05667531117796898, - -0.03925273194909096, - -0.023116685450077057, - -0.008707329630851746, - 0.003582298755645752, - 0.013416968286037445, - 0.020528413355350494, - 0.02472265064716339, - 0.025885269045829773, - 0.02398456633090973, - 0.01907237619161606, - 0.011282697319984436, - 0.0008280053734779358, - -0.012006506323814392, - -0.026870768517255783, - -0.14596432447433472, - -0.13382142782211304, - -0.12038546800613403, - -0.10602296143770218, - -0.09112565964460373, - -0.0760999470949173, - -0.06135566905140877, - -0.04729500412940979, - -0.034301500767469406, - -0.022729597985744476, - -0.012894928455352783, - -0.005065761506557465, - 0.000544331967830658, - 0.00378233939409256, - 0.004559919238090515, - 0.0028558820486068726, - -0.001283302903175354, - -0.007744729518890381, - -0.016352146863937378, - -0.026870768517255783, - -0.14596432447433472, - -0.13939492404460907, - -0.13138043880462646, - -0.12213948369026184, - -0.11192414164543152, - -0.10101302713155746, - -0.08970379829406738, - -0.07830493152141571, - -0.06712733954191208, - -0.05647594481706619, - -0.0466412752866745, - -0.03789160028100014, - -0.030465591698884964, - -0.024565797299146652, - -0.020353160798549652, - -0.01794259250164032, - -0.017399832606315613, - -0.018739700317382812, - -0.021925650537014008, - -0.026870764791965485, - -0.14596432447433472, - -0.1455923169851303, - -0.14360617101192474, - -0.14006006717681885, - -0.13505074381828308, - -0.12871482968330383, - -0.12122516334056854, - -0.11278603971004486, - -0.10362763702869415, - -0.09399979561567307, - -0.08416512608528137, - -0.07439189404249191, - -0.06494669616222382, - -0.05608716607093811, - -0.04805497080087662, - -0.04106920212507248, - -0.03532041981816292, - -0.03096543252468109, - -0.02812303602695465, - -0.026870764791965485, - -0.14596432447433472, - -0.15174201130867004, - -0.15573781728744507, - -0.1578427404165268, - -0.15799938142299652, - -0.15620344877243042, - -0.15250395238399506, - -0.14700177311897278, - -0.1398470252752304, - -0.13123485445976257, - -0.12140019237995148, - -0.11061128973960876, - -0.09916244447231293, - -0.08736594766378403, - -0.0755435898900032, - -0.06401783972978592, - -0.053103089332580566, - -0.04309707134962082, - -0.034272730350494385, - -0.026870764791965485, - -0.14596430957317352, - -0.15717759728431702, - -0.16646072268486023, - -0.1735604703426361, - -0.1782831847667694, - -0.18050004541873932, - -0.1801505982875824, - -0.17724433541297913, - -0.17186057567596436, - -0.16414615511894226, - -0.15431147813796997, - -0.1426248401403427, - -0.12940500676631927, - -0.11501260101795197, - -0.0998401939868927, - -0.08430164307355881, - -0.06882081180810928, - -0.05381997302174568, - -0.03970831260085106, - -0.026870761066675186, - -0.14596430957317352, - -0.16131003201007843, - -0.1746128797531128, - -0.18550997972488403, - -0.19370409846305847, - -0.1989717185497284, - -0.20116916298866272, - -0.2002364993095398, - -0.19619911909103394, - -0.18916720151901245, - -0.17933252453804016, - -0.1669633835554123, - -0.15239715576171875, - -0.13603118062019348, - -0.11831186711788177, - -0.09972257167100906, - -0.0807703286409378, - -0.06197213754057884, - -0.04384075477719307, - -0.026870761066675186, - -0.14596430957317352, - -0.16369152069091797, - -0.1793108880519867, - -0.1923963725566864, - -0.20259103178977966, - -0.2096167802810669, - -0.21328197419643402, - -0.2134866565465927, - -0.2102251946926117, - -0.203586608171463, - -0.19375193119049072, - -0.18098945915699005, - -0.16564732789993286, - -0.1481439769268036, - -0.12895692884922028, - -0.10860950499773026, - -0.08765672147274017, - -0.06667015701532364, - -0.04622224345803261, - -0.026870761066675186, - -0.14596430957317352, - -0.16406399011611938, - -0.18004566431045532, - -0.19347339868545532, - -0.203980952501297, - -0.2112816572189331, - -0.21517641842365265, - -0.2155589759349823, - -0.21241886913776398, - -0.2058417797088623, - -0.1960071176290512, - -0.18318313360214233, - -0.16771963238716125, - -0.15003842115402222, - -0.1306218057870865, - -0.1099994108080864, - -0.08873375505208969, - -0.06740492582321167, - -0.046594709157943726, - -0.026870761066675186, - -0.14596430957317352, - -0.16238707304000854, - -0.17673756182193756, - -0.18862435221672058, - -0.19772322475910187, - -0.2037859559059143, - -0.20664718747138977, - -0.20622888207435608, - -0.20254242420196533, - -0.1956883817911148, - -0.1858537197113037, - -0.1733066886663437, - -0.15838955342769623, - -0.14150920510292053, - -0.12312610447406769, - -0.10374169051647186, - -0.08388470113277435, - -0.06409682333469391, - -0.04491778463125229, - -0.026870761066675186, - -0.14596430957317352, - -0.15884247422218323, - -0.1697450578212738, - -0.17837467789649963, - -0.1844959557056427, - -0.18794192373752594, - -0.18861857056617737, - -0.1865074336528778, - -0.18166609108448029, - -0.17422661185264587, - -0.16439194977283478, - -0.15243035554885864, - -0.13866809010505676, - -0.12348056584596634, - -0.10728206485509872, - -0.09051442891359329, - -0.073635034263134, - -0.05710431933403015, - -0.04137318953871727, - -0.026870761066675186, - -0.14596430957317352, - -0.15381431579589844, - -0.15982592105865479, - -0.16383513808250427, - -0.16573259234428406, - -0.1654665470123291, - -0.16304424405097961, - -0.1585317701101303, - -0.15205220878124237, - -0.14378230273723602, - -0.13394764065742493, - -0.12281646579504013, - -0.11069243401288986, - -0.09790624678134918, - -0.08480668812990189, - -0.07175105065107346, - -0.05909547954797745, - -0.04718518257141113, - -0.036345046013593674, - -0.026870761066675186, - -0.14596432447433472, - -0.1478475034236908, - -0.1480550467967987, - -0.1465812623500824, - -0.14346638321876526, - -0.13879536092281342, - -0.13269560039043427, - -0.1253335028886795, - -0.11690987646579742, - -0.10765449702739716, - -0.09781982749700546, - -0.08767413347959518, - -0.07749416679143906, - -0.06755760312080383, - -0.0581354983150959, - -0.049484845250844955, - -0.04184161126613617, - -0.035414304584264755, - -0.030378229916095734, - -0.026870764791965485, - -0.14596432447433472, - -0.14158859848976135, - -0.13570794463157654, - -0.12848278880119324, - -0.12011019885540009, - -0.11081855744123459, - -0.1008613258600235, - -0.09051010012626648, - -0.08004724234342575, - -0.06975815445184708, - -0.05992348492145538, - -0.05081150308251381, - -0.04267076402902603, - -0.03572332486510277, - -0.030158694833517075, - -0.026128653436899185, - -0.023743130266666412, - -0.023067206144332886, - -0.024119321256875992, - -0.026870764791965485, - -0.14596432447433472, - -0.13571585714817047, - -0.12412266433238983, - -0.11150097101926804, - -0.09819506853818893, - -0.08456791192293167, - -0.07099120318889618, - -0.05783528462052345, - -0.04545901343226433, - -0.03419999033212662, - -0.024365320801734924, - -0.016223274171352386, - -0.009995944797992706, - -0.005853205919265747, - -0.003908038139343262, - -0.0042135268449783325, - -0.006761319935321808, - -0.01148192584514618, - -0.018246576189994812, - -0.026870768517255783, - -0.14596432447433472, - -0.1308656930923462, - -0.11455462872982025, - -0.097476065158844, - -0.08009584993124008, - -0.06288808584213257, - -0.04632212594151497, - -0.030849866569042206, - -0.016893357038497925, - -0.004833288490772247, - 0.005001381039619446, - 0.012342385947704315, - 0.016989469528198242, - 0.01881588250398636, - 0.017771795392036438, - 0.013885699212551117, - 0.007263593375682831, - -0.0019138902425765991, - -0.013396412134170532, - -0.026870768517255783, - -0.14596432447433472, - -0.1275637000799179, - -0.1080407053232193, - -0.08792789280414581, - -0.06777388602495193, - -0.04812842980027199, - -0.029527392238378525, - -0.012478172779083252, - 0.002554170787334442, - 0.015159592032432556, - 0.02499426156282425, - 0.03178991377353668, - 0.035361163318157196, - 0.035610608756542206, - 0.03253144025802612, - 0.026207663118839264, - 0.016811758279800415, - 0.004600033164024353, - -0.010094419121742249, - -0.026870768517255783 - ], - "y": [ - -0.30777084827423096, - -0.3026122450828552, - -0.2955076992511749, - -0.28665098547935486, - -0.27628371119499207, - -0.2646886706352234, - -0.25218212604522705, - -0.239105224609375, - -0.22581468522548676, - -0.21267303824424744, - -0.20003874599933624, - -0.18825644254684448, - -0.17764750123023987, - -0.1685013473033905, - -0.1610674262046814, - -0.15554851293563843, - -0.15209518373012543, - -0.1508016139268875, - -0.1517030894756317, - -0.15477502346038818, - -0.30777084827423096, - -0.30860963463783264, - -0.3073388934135437, - -0.30399325489997864, - -0.29866400361061096, - -0.29149651527404785, - -0.2826862633228302, - -0.27247360348701477, - -0.26113706827163696, - -0.24898594617843628, - -0.23635165393352509, - -0.2235788255929947, - -0.21101588010787964, - -0.19900548458099365, - -0.18787527084350586, - -0.17792882025241852, - -0.1694374531507492, - -0.1626327931880951, - -0.15770047903060913, - -0.15477502346038818, - -0.30777084827423096, - -0.31440305709838867, - -0.3187677264213562, - -0.3207457661628723, - -0.3202831745147705, - -0.3173926770687103, - -0.31215301156044006, - -0.3047071695327759, - -0.29525822401046753, - -0.2840639352798462, - -0.2714296281337738, - -0.25769999623298645, - -0.24324946105480194, - -0.22847223281860352, - -0.21377143263816833, - -0.19954800605773926, - -0.1861899495124817, - -0.1740616410970688, - -0.16349391639232635, - -0.15477502346038818, - -0.30777084827423096, - -0.3193647265434265, - -0.32855573296546936, - -0.33509308099746704, - -0.33879852294921875, - -0.33957090973854065, - -0.3373892307281494, - -0.3323129713535309, - -0.3244805932044983, - -0.3141057789325714, - -0.301471471786499, - -0.2869223356246948, - -0.27085524797439575, - -0.25370845198631287, - -0.23594966530799866, - -0.21806330978870392, - -0.2005372792482376, - -0.18384963274002075, - -0.1684555858373642, - -0.15477502346038818, - -0.30777084827423096, - -0.32295697927474976, - -0.3356421887874603, - -0.3454805016517639, - -0.35220351815223694, - -0.3556278645992279, - -0.3556601405143738, - -0.35229945182800293, - -0.3456374704837799, - -0.3358559310436249, - -0.3232216238975525, - -0.30807924270629883, - -0.2908417284488678, - -0.27197936177253723, - -0.2520066201686859, - -0.2314683347940445, - -0.2109246850013733, - -0.1909361183643341, - -0.17204780876636505, - -0.15477502346038818, - -0.30777084827423096, - -0.32479047775268555, - -0.33925920724868774, - -0.3507823646068573, - -0.3590455949306488, - -0.3638235330581665, - -0.3649858236312866, - -0.36250078678131104, - -0.35643619298934937, - -0.3469574749469757, - -0.3343231678009033, - -0.3188779354095459, - -0.3010430634021759, - -0.2813050448894501, - -0.2602022886276245, - -0.23831039667129517, - -0.21622654795646667, - -0.19455312192440033, - -0.17388132214546204, - -0.15477502346038818, - -0.30777084827423096, - -0.3246665894985199, - -0.33901482820510864, - -0.3504241108894348, - -0.3585832715034485, - -0.36326974630355835, - -0.3643556833267212, - -0.36181148886680603, - -0.35570651292800903, - -0.3462073504924774, - -0.33357304334640503, - -0.31814828515052795, - -0.3003537654876709, - -0.28067493438720703, - -0.25964853167533875, - -0.23784810304641724, - -0.21586830914020538, - -0.19430872797966003, - -0.1737574338912964, - -0.15477502346038818, - -0.30777084827423096, - -0.32259872555732727, - -0.3349354863166809, - -0.34444460272789, - -0.3508666753768921, - -0.35402655601501465, - -0.3538380563259125, - -0.35030627250671387, - -0.34352758526802063, - -0.333686888217926, - -0.32105258107185364, - -0.30596932768821716, - -0.28884854912757874, - -0.2701572775840759, - -0.25040534138679504, - -0.23013150691986084, - -0.2098887860774994, - -0.1902294009923935, - -0.17168956995010376, - -0.15477502346038818, - -0.30777084827423096, - -0.31881096959114075, - -0.327463299036026, - -0.33349180221557617, - -0.33673202991485596, - -0.33709561824798584, - -0.33457261323928833, - -0.3292319178581238, - -0.3212190866470337, - -0.310752809047699, - -0.298118531703949, - -0.2836608588695526, - -0.26777416467666626, - -0.2508918344974518, - -0.23347437381744385, - -0.21599683165550232, - -0.19893598556518555, - -0.1827571988105774, - -0.16790181398391724, - -0.15477502346038818, - -0.30777084827423096, - -0.31371378898620605, - -0.3174079656600952, - -0.31875258684158325, - -0.3177109956741333, - -0.31431159377098083, - -0.30864712595939636, - -0.3008720874786377, - -0.29119858145713806, - -0.2798904478549957, - -0.26725614070892334, - -0.2536403238773346, - -0.23941437900066376, - -0.22496634721755981, - -0.21069036424160004, - -0.19697579741477966, - -0.18419677019119263, - -0.1727018654346466, - -0.16280463337898254, - -0.15477502346038818, - -0.30777084827423096, - -0.30785953998565674, - -0.30585911870002747, - -0.3018242120742798, - -0.2958648204803467, - -0.2881435453891754, - -0.27887099981307983, - -0.2683000862598419, - -0.256719172000885, - -0.24444416165351868, - -0.23180986940860748, - -0.21916092932224274, - -0.20684237778186798, - -0.1951902210712433, - -0.18452230095863342, - -0.17512963712215424, - -0.16726839542388916, - -0.16115303337574005, - -0.15695035457611084, - -0.15477502346038818, - -0.30777084827423096, - -0.3018825948238373, - -0.29406827688217163, - -0.2845411002635956, - -0.27356088161468506, - -0.2614271640777588, - -0.24847093224525452, - -0.23504556715488434, - -0.22151730954647064, - -0.20825514197349548, - -0.1956208497285843, - -0.18395905196666718, - -0.1735878586769104, - -0.16479015350341797, - -0.1578059196472168, - -0.15282569825649261, - -0.14998528361320496, - -0.1493622064590454, - -0.15097343921661377, - -0.15477502346038818, - -0.30777084827423096, - -0.29643070697784424, - -0.28331318497657776, - -0.26877617835998535, - -0.2532161772251129, - -0.2370576113462448, - -0.22074125707149506, - -0.2047121822834015, - -0.189407616853714, - -0.1752450168132782, - -0.162610724568367, - -0.15184935927391052, - -0.14325445890426636, - -0.13706046342849731, - -0.13343635201454163, - -0.13248097896575928, - -0.13422036170959473, - -0.13860711455345154, - -0.14552152156829834, - -0.15477502346038818, - -0.30777084827423096, - -0.2920945882797241, - -0.27475929260253906, - -0.25623777508735657, - -0.23703530430793762, - -0.21767565608024597, - -0.1986868977546692, - -0.18058699369430542, - -0.1638696789741516, - -0.1489909440279007, - -0.1363566517829895, - -0.12631142139434814, - -0.11912927031517029, - -0.11500610411167145, - -0.11405440419912338, - -0.11630010604858398, - -0.12168198078870773, - -0.13005320727825165, - -0.1411854326725006, - -0.15477502346038818, - -0.30777084827423096, - -0.2893442213535309, - -0.26933354139328003, - -0.24828468263149261, - -0.22677180171012878, - -0.20538167655467987, - -0.18469780683517456, - -0.1652843952178955, - -0.1476709544658661, - -0.13233798742294312, - -0.11970368027687073, - -0.11011270433664322, - -0.10382667183876038, - -0.10101702809333801, - -0.10176041722297668, - -0.10603658854961395, - -0.11372888088226318, - -0.12462746351957321, - -0.13843506574630737, - -0.15477502346038818, - -0.30777084827423096, - -0.2884775996208191, - -0.2676239311695099, - -0.24577870965003967, - -0.22353780269622803, - -0.20150789618492126, - -0.18028990924358368, - -0.16046260297298431, - -0.14256680011749268, - -0.1270906925201416, - -0.11445640027523041, - -0.1050085574388504, - -0.09900487959384918, - -0.09660911560058594, - -0.09788663685321808, - -0.1028025895357132, - -0.11122290045022964, - -0.12291783094406128, - -0.1375684142112732, - -0.15477502346038818, - -0.30777084827423096, - -0.2895886301994324, - -0.26981568336486816, - -0.24899138510227203, - -0.22768379747867584, - -0.20647411048412323, - -0.18594086170196533, - -0.1666441708803177, - -0.149110347032547, - -0.13381773233413696, - -0.12118344008922577, - -0.11155210435390472, - -0.10518644750118256, - -0.10226008296012878, - -0.10285285115242004, - -0.1069486066699028, - -0.1144355833530426, - -0.12510958313941956, - -0.13867944478988647, - -0.15477502346038818, - -0.30777084827423096, - -0.29255691170692444, - -0.2756713032722473, - -0.2575746178627014, - -0.23876050114631653, - -0.21974214911460876, - -0.20103833079338074, - -0.1831592172384262, - -0.16659250855445862, - -0.15179014205932617, - -0.13915583491325378, - -0.12903426587581635, - -0.12170149385929108, - -0.117357537150383, - -0.11612089723348618, - -0.11802531033754349, - -0.12301882356405258, - -0.1309652179479599, - -0.14164775609970093, - -0.15477502346038818, - -0.30777084827423096, - -0.2970608174800873, - -0.2845562696456909, - -0.27059829235076904, - -0.25556761026382446, - -0.2398742288351059, - -0.2239462435245514, - -0.20821809768676758, - -0.1931188404560089, - -0.17906031012535095, - -0.16642603278160095, - -0.15556058287620544, - -0.14676037430763245, - -0.14026546478271484, - -0.1362529844045639, - -0.13483241200447083, - -0.13604247570037842, - -0.1398501694202423, - -0.14615166187286377, - -0.15477502346038818, - -0.30777084827423096, - -0.3026122450828552, - -0.2955076992511749, - -0.28665101528167725, - -0.27628374099731445, - -0.2646886706352234, - -0.25218212604522705, - -0.2391052544116974, - -0.22581471502780914, - -0.21267306804656982, - -0.20003876090049744, - -0.18825645744800568, - -0.17764753103256226, - -0.1685013473033905, - -0.1610674262046814, - -0.15554854273796082, - -0.15209519863128662, - -0.1508016288280487, - -0.1517030894756317, - -0.15477502346038818 - ], - "z": [ - -0.09082870185375214, - -0.09764103591442108, - -0.10009261965751648, - -0.09811657667160034, - -0.0917668491601944, - -0.08121660351753235, - -0.06675364077091217, - -0.04877246916294098, - -0.02776356041431427, - -0.004299983382225037, - 0.02097821980714798, - 0.04738153517246246, - 0.07418975979089737, - 0.10067161917686462, - 0.12610477209091187, - 0.14979544281959534, - 0.17109745740890503, - 0.18942971527576447, - 0.2042921632528305, - 0.21527940034866333, - -0.09082871675491333, - -0.09518660604953766, - -0.09525071084499359, - -0.09101927280426025, - -0.08260773122310638, - -0.07024551928043365, - -0.05426985025405884, - -0.035116493701934814, - -0.013307899236679077, - 0.010561034083366394, - 0.03583924099802971, - 0.061837196350097656, - 0.08784573525190353, - 0.11315540969371796, - 0.13707584142684937, - 0.15895456075668335, - 0.17819476127624512, - 0.19427162408828735, - 0.20674659311771393, - 0.21527940034866333, - -0.09082871675491333, - -0.09203372895717621, - -0.08903095126152039, - -0.08190229535102844, - -0.07084222137928009, - -0.05615241080522537, - -0.03823356330394745, - -0.017574459314346313, - 0.005261380225419998, - 0.029651042073965073, - 0.05492924898862839, - 0.08040647953748703, - 0.10538776963949203, - 0.12919169664382935, - 0.15116895735263824, - 0.17072007060050964, - 0.18731175363063812, - 0.20049138367176056, - 0.20989947021007538, - 0.21527940034866333, - -0.09082871675491333, - -0.08852405846118927, - -0.08210735023021698, - -0.0717536062002182, - -0.05774528533220291, - -0.040464483201503754, - -0.020382560789585114, - 0.0019526854157447815, - 0.02593202516436577, - 0.05090134218335152, - 0.07617954909801483, - 0.1010771244764328, - 0.12491491436958313, - 0.14704270660877228, - 0.16685688495635986, - 0.18381699919700623, - 0.19746042788028717, - 0.20741498470306396, - 0.21340914070606232, - 0.21527940034866333, - -0.09082871675491333, - -0.08503793179988861, - -0.07523016631603241, - -0.061672985553741455, - -0.04473618417978287, - -0.024881750345230103, - -0.0026512667536735535, - 0.021348878741264343, - 0.04646404832601547, - 0.0720091238617897, - 0.09728732705116272, - 0.12160913646221161, - 0.1443111002445221, - 0.16477400064468384, - 0.1824396252632141, - 0.19682611525058746, - 0.2075410634279251, - 0.21429216861724854, - 0.21689528226852417, - 0.21527940034866333, - -0.09082871675491333, - -0.08195310831069946, - -0.06914468109607697, - -0.052752815186977386, - -0.03322465717792511, - -0.01109287142753601, - 0.013038843870162964, - 0.03851223737001419, - 0.06463247537612915, - 0.09068703651428223, - 0.11596524715423584, - 0.13977757096290588, - 0.16147446632385254, - 0.18046411871910095, - 0.1962285041809082, - 0.20833764970302582, - 0.21646122634410858, - 0.22037765383720398, - 0.21998010575771332, - 0.21527940034866333, - -0.09082871675491333, - -0.0796038955450058, - -0.06451033055782318, - -0.04595974087715149, - -0.024458147585392, - -0.0005920678377151489, - 0.024987511336803436, - 0.05158284679055214, - 0.07846848666667938, - 0.10491104423999786, - 0.13018923997879028, - 0.15361356735229492, - 0.1745450794696808, - 0.19241277873516083, - 0.20672932267189026, - 0.21710415184497833, - 0.22325430810451508, - 0.22501201927661896, - 0.22232931852340698, - 0.21527938544750214, - -0.09082871675491333, - -0.07824485003948212, - -0.06182931363582611, - -0.042029887437820435, - -0.019386649131774902, - 0.005482733249664307, - 0.03189992159605026, - 0.05914429947733879, - 0.08647273480892181, - 0.11313974857330322, - 0.13841795921325684, - 0.16161783039569855, - 0.18210652470588684, - 0.19932518899440765, - 0.21280410885810852, - 0.22217564284801483, - 0.22718416154384613, - 0.22769302129745483, - 0.22368836402893066, - 0.21527938544750214, - -0.09082871675491333, - -0.07802325487136841, - -0.061392173171043396, - -0.04138912260532379, - -0.01855974644422531, - 0.006473232060670853, - 0.033026985824108124, - 0.06037719547748566, - 0.08777783066034317, - 0.11448144167661667, - 0.13975965976715088, - 0.1629229187965393, - 0.1833394169807434, - 0.20045225322246552, - 0.21379461884498596, - 0.22300255298614502, - 0.22782492637634277, - 0.22813016176223755, - 0.22390994429588318, - 0.21527938544750214, - -0.09082871675491333, - -0.07896313071250916, - -0.06324627995491028, - -0.04410688579082489, - -0.022067032754421234, - 0.002272091805934906, - 0.02824658900499344, - 0.055147938430309296, - 0.08224233984947205, - 0.10879073292016983, - 0.13406893610954285, - 0.15738743543624878, - 0.17811016738414764, - 0.19567185640335083, - 0.20959347486495972, - 0.2194952666759491, - 0.22510716319084167, - 0.22627605497837067, - 0.22297008335590363, - 0.21527938544750214, - -0.09082871675491333, - -0.08096261322498322, - -0.06719070672988892, - -0.04988865554332733, - -0.02952844649553299, - -0.006665430963039398, - 0.01807675138115883, - 0.044023189693689346, - 0.07046613842248917, - 0.0966842919588089, - 0.12196250259876251, - 0.1456112265586853, - 0.166985422372818, - 0.18550202250480652, - 0.2006559520959854, - 0.21203385293483734, - 0.21932539343833923, - 0.22233162820339203, - 0.22097060084342957, - 0.21527938544750214, - -0.09082871675491333, - -0.08380502462387085, - -0.07279801368713379, - -0.0581078976392746, - -0.040135420858860016, - -0.019370809197425842, - 0.003619533032178879, - 0.02820849046111107, - 0.05372535064816475, - 0.0794740542769432, - 0.10475225746631622, - 0.12887044250965118, - 0.1511707305908203, - 0.17104479670524597, - 0.18795056641101837, - 0.20142687857151031, - 0.21110615134239197, - 0.21672432124614716, - 0.21812817454338074, - 0.21527940034866333, - -0.09082871675491333, - -0.08718237280845642, - -0.07946056127548218, - -0.06787392497062683, - -0.052738532423973083, - -0.034467220306396484, - -0.013558395206928253, - 0.009417619556188583, - 0.03383409231901169, - 0.05902500078082085, - 0.08430320769548416, - 0.10897918790578842, - 0.13237985968589783, - 0.15386687219142914, - 0.17285415530204773, - 0.18882375955581665, - 0.20134012401103973, - 0.21006177365779877, - 0.21475084125995636, - 0.21527940034866333, - -0.09082871675491333, - -0.09072864055633545, - -0.08645637333393097, - -0.07812844216823578, - -0.06597204506397247, - -0.05031875520944595, - -0.03159555792808533, - -0.010313168168067932, - 0.012947887182235718, - 0.037553101778030396, - 0.06283130496740341, - 0.08809298276901245, - 0.11264906078577042, - 0.13582971692085266, - 0.15700261294841766, - 0.17559024691581726, - 0.1910856068134308, - 0.20306596159934998, - 0.21120457351207733, - 0.21527940034866333, - -0.09082871675491333, - -0.0940595418214798, - -0.09302732348442078, - -0.08776021003723145, - -0.07840187847614288, - -0.06520761549472809, - -0.04853731393814087, - -0.028845690190792084, - -0.006669886410236359, - 0.017385199666023254, - 0.04266340658068657, - 0.06847520917654037, - 0.09411653876304626, - 0.11888796091079712, - 0.14211374521255493, - 0.16316041350364685, - 0.1814538538455963, - 0.19649502635002136, - 0.20787367224693298, - 0.21527940034866333, - -0.09082870185375214, - -0.0968141257762909, - -0.0984613448381424, - -0.09572546184062958, - -0.08868108689785004, - -0.07752038538455963, - -0.06254778057336807, - -0.044171690940856934, - -0.022893361747264862, - 0.0007067769765853882, - 0.025984983891248703, - 0.05225173383951187, - 0.07879053801298141, - 0.10487748682498932, - 0.1298009753227234, - 0.1528812050819397, - 0.173488587141037, - 0.19106099009513855, - 0.2051190882921219, - 0.21527940034866333, - -0.09082870185375214, - -0.09869389235973358, - -0.10216961801052094, - -0.10116106271743774, - -0.09569576382637024, - -0.08592279255390167, - -0.07210871577262878, - -0.054630376398563385, - -0.033964499831199646, - -0.010674811899662018, - 0.014603391289710999, - 0.04118059575557709, - 0.06833185255527496, - 0.09531654417514801, - 0.12139856815338135, - 0.1458665430545807, - 0.16805297136306763, - 0.18735271692276, - 0.203239306807518, - 0.21527940034866333, - -0.09082870185375214, - -0.09949514269828796, - -0.10375024378299713, - -0.10347796976566315, - -0.09868575632572174, - -0.08950428664684296, - -0.07618403434753418, - -0.05908835679292679, - -0.038683533668518066, - -0.015526182949543, - 0.009752023965120316, - 0.03646156191825867, - 0.06387387216091156, - 0.09124122560024261, - 0.11781707406044006, - 0.142876535654068, - 0.16573607921600342, - 0.1857720911502838, - 0.20243807137012482, - 0.21527940034866333, - -0.09082870185375214, - -0.0991310328245163, - -0.10303196310997009, - -0.10242511332035065, - -0.09732702374458313, - -0.08787676692008972, - -0.07433211803436279, - -0.0570625364780426, - -0.03653908520936966, - -0.01332160085439682, - 0.011956606060266495, - 0.03860601410269737, - 0.06589969247579575, - 0.0930931493639946, - 0.1194445937871933, - 0.1442352682352066, - 0.16678893566131592, - 0.18649037182331085, - 0.2028021663427353, - 0.21527940034866333, - -0.09082870185375214, - -0.09764103591442108, - -0.10009261965751648, - -0.09811657667160034, - -0.0917668491601944, - -0.08121660351753235, - -0.06675364077091217, - -0.04877246171236038, - -0.027763552963733673, - -0.004299983382225037, - 0.020978223532438278, - 0.04738154262304306, - 0.07418976724147797, - 0.10067162662744522, - 0.12610477209091187, - 0.14979545772075653, - 0.17109745740890503, - 0.18942973017692566, - 0.2042921781539917, - 0.21527940034866333 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.07855400443077087, - 0.0509016178548336, - 0.02234083041548729, - -0.006349308416247368, - -0.03438620641827583, - -0.061005063354969025, - -0.08547982573509216, - -0.1071428656578064, - -0.1254032701253891, - -0.13976293802261353, - -0.1498301923274994, - -0.15533041954040527, - -0.15611357986927032, - -0.15215833485126495, - -0.14357252418994904, - -0.13059037923812866, - -0.11356601119041443, - -0.09296382963657379, - -0.06934575736522675, - -0.043356072157621384, - 0.07855399698019028, - 0.05555269122123718, - 0.03151611611247063, - 0.0070999059826135635, - -0.01702992245554924, - -0.040215153247117996, - -0.06182335317134857, - -0.08126513659954071, - -0.09801016747951508, - -0.11160168051719666, - -0.12166893482208252, - -0.12793731689453125, - -0.13023585081100464, - -0.12850186228752136, - -0.12278258800506592, - -0.11323408782482147, - -0.1001167967915535, - -0.08378854393959045, - -0.06469468027353287, - -0.043356072157621384, - 0.07855399698019028, - 0.06260623037815094, - 0.045430783182382584, - 0.027496149763464928, - 0.009291557595133781, - -0.00868644192814827, - -0.02594742923974991, - -0.04202060028910637, - -0.05646749585866928, - -0.06889405846595764, - -0.07896130532026291, - -0.08639465272426605, - -0.0909913182258606, - -0.0926259309053421, - -0.09125388413667679, - -0.0869126245379448, - -0.07972055673599243, - -0.0698738768696785, - -0.05764114856719971, - -0.04335607588291168, - 0.07855398952960968, - 0.07129786163568497, - 0.06257697194814682, - 0.05262918025255203, - 0.04172586649656296, - 0.030164431780576706, - 0.018260251730680466, - 0.006338020786643028, - -0.005277032032608986, - -0.016268081963062286, - -0.02633533626794815, - -0.03520418703556061, - -0.04263269901275635, - -0.04841823875904083, - -0.05240301042795181, - -0.05447831004858017, - -0.05458752065896988, - -0.05272768437862396, - -0.04894951730966568, - -0.04335607588291168, - 0.07855398952960968, - 0.08068571984767914, - 0.08109661191701889, - 0.07977543771266937, - 0.07675826549530029, - 0.07212738692760468, - 0.06600910425186157, - 0.058570314198732376, - 0.0500139445066452, - 0.040573373436927795, - 0.030506117269396782, - 0.02008679322898388, - 0.009599598124623299, - -0.0006693881005048752, - -0.010440060868859291, - -0.019445903599262238, - -0.02744125947356224, - -0.03420804440975189, - -0.03956165537238121, - -0.04335607960820198, - 0.07855398952960968, - 0.08975248038768768, - 0.09898281842470169, - 0.10599321126937866, - 0.11059243977069855, - 0.11265505105257034, - 0.11212477833032608, - 0.10901609063148499, - 0.10341378301382065, - 0.09547065943479538, - 0.08540341258049011, - 0.07348662614822388, - 0.06004536896944046, - 0.04544629901647568, - 0.03008762001991272, - 0.014388272538781166, - -0.0012234952300786972, - -0.016321837902069092, - -0.030494891107082367, - -0.04335608333349228, - 0.07855398952960968, - 0.09751562774181366, - 0.11429735273122787, - 0.12844139337539673, - 0.13956193625926971, - 0.14735564589500427, - 0.15160994231700897, - 0.15220876038074493, - 0.1491357833147049, - 0.14247480034828186, - 0.1324075609445572, - 0.11920863389968872, - 0.103238046169281, - 0.08493145555257797, - 0.06478822231292725, - 0.04335777461528778, - 0.021224679425358772, - -0.0010073035955429077, - -0.02273174747824669, - -0.04335608333349228, - 0.07855398952960968, - 0.10313389450311661, - 0.12538063526153564, - 0.14468736946582794, - 0.16052745282649994, - 0.17246884107589722, - 0.18018576502799988, - 0.18346776068210602, - 0.1822252869606018, - 0.17649221420288086, - 0.166424959897995, - 0.15229813754558563, - 0.1344970464706421, - 0.11350727081298828, - 0.0899014100432396, - 0.0643233060836792, - 0.03747066110372543, - 0.010075978003442287, - -0.01711348071694374, - -0.04335608705878258, - 0.07855398952960968, - 0.1059984564781189, - 0.13103163242340088, - 0.15297064185142517, - 0.17121706902980804, - 0.1852731853723526, - 0.19475559890270233, - 0.19940565526485443, - 0.19909648597240448, - 0.1938365250825882, - 0.18376927077770233, - 0.1691693365573883, - 0.1504349410533905, - 0.12807711958885193, - 0.10270576924085617, - 0.07501290738582611, - 0.04575393348932266, - 0.015726972371339798, - -0.014248918741941452, - -0.04335608705878258, - 0.07855398952960968, - 0.10579890012741089, - 0.13063794374465942, - 0.15239357948303223, - 0.17047236859798431, - 0.1843811720609665, - 0.1937406063079834, - 0.19829535484313965, - 0.19792115688323975, - 0.19262824952602386, - 0.182560995221138, - 0.16799400746822357, - 0.14932464063167572, - 0.1270621120929718, - 0.10181375592947006, - 0.07426822185516357, - 0.045176878571510315, - 0.015333293937146664, - -0.01444847509264946, - -0.04335608705878258, - 0.07855398952960968, - 0.10255683958530426, - 0.12424226850271225, - 0.14301873743534088, - 0.15837408602237701, - 0.1698894500732422, - 0.17725074291229248, - 0.1802571564912796, - 0.17882665991783142, - 0.17299829423427582, - 0.16293103992938995, - 0.14889951050281525, - 0.13128644227981567, - 0.11057224869728088, - 0.08732203394174576, - 0.06216992810368538, - 0.03580203652381897, - 0.008937611244618893, - -0.017690535634756088, - -0.04335608333349228, - 0.07855398952960968, - 0.09662361443042755, - 0.11253765970468521, - 0.1258620023727417, - 0.13623324036598206, - 0.1433684229850769, - 0.1470729410648346, - 0.14724577963352203, - 0.143882155418396, - 0.13707387447357178, - 0.1270066201686859, - 0.11395500600337982, - 0.09827505797147751, - 0.08039446920156479, - 0.06080099195241928, - 0.04002906382083893, - 0.018645303323864937, - -0.0027669966220855713, - -0.023623760789632797, - -0.04335608333349228, - 0.07855398952960968, - 0.0886421725153923, - 0.09679248929023743, - 0.10278259962797165, - 0.10644913464784622, - 0.10769205540418625, - 0.10647748410701752, - 0.10283853858709335, - 0.09687447547912598, - 0.08874797821044922, - 0.07868072390556335, - 0.0669473186135292, - 0.05386782065033913, - 0.03979899734258652, - 0.025124628096818924, - 0.010244959965348244, - -0.00443410687148571, - -0.018512167036533356, - -0.031605202704668045, - -0.04335608333349228, - 0.07855398952960968, - 0.07947742938995361, - 0.07871298491954803, - 0.07628148794174194, - 0.07224930822849274, - 0.06672640144824982, - 0.05986342951655388, - 0.05184759199619293, - 0.0428975373506546, - 0.03325740620493889, - 0.023190153762698174, - 0.012970385141670704, - 0.002876873128116131, - -0.006815062835812569, - -0.015841040760278702, - -0.023954864591360092, - -0.030935212969779968, - -0.036591675132513046, - -0.040769949555397034, - -0.04335607960820198, - 0.07855398952960968, - 0.07012253254652023, - 0.060258373618125916, - 0.049230560660362244, - 0.03733992576599121, - 0.024910815060138702, - 0.012282255105674267, - -0.00020127929747104645, - -0.012199277058243752, - -0.023384451866149902, - -0.03345170617103577, - -0.042126432061195374, - -0.04917199909687042, - -0.054396241903305054, - -0.057656630873680115, - -0.058864250779151917, - -0.05798614025115967, - -0.05504628270864487, - -0.05012483894824982, - -0.04335607588291168, - 0.07855399698019028, - 0.06159123033285141, - 0.04342847317457199, - 0.024561146274209023, - 0.005503909662365913, - -0.013223391026258469, - -0.031109951436519623, - -0.047667860984802246, - -0.06244545429944992, - -0.07503965497016907, - -0.08510690182447433, - -0.09237261116504669, - -0.09663858264684677, - -0.09778845310211182, - -0.09579084813594818, - -0.09070026874542236, - -0.08265555649995804, - -0.07187618315219879, - -0.05865614116191864, - -0.04335607588291168, - 0.07855399698019028, - 0.05480800196528435, - 0.03004704788327217, - 0.004946531727910042, - -0.01980886235833168, - -0.04354384168982506, - -0.06561101973056793, - -0.08540846407413483, - -0.10239611566066742, - -0.11611062288284302, - -0.12617787718772888, - -0.1323232650756836, - -0.13437917828559875, - -0.13228952884674072, - -0.12611129879951477, - -0.11601303517818451, - -0.10227017104625702, - -0.08525761216878891, - -0.065439373254776, - -0.043356072157621384, - 0.07855400443077087, - 0.050507936626672745, - 0.021564215421676636, - -0.0074876826256513596, - -0.03585528954863548, - -0.06276477128267288, - -0.08748215436935425, - -0.10933321714401245, - -0.1277218908071518, - -0.14214658737182617, - -0.15221384167671204, - -0.15764904022216797, - -0.15830393135547638, - -0.15416066348552704, - -0.1453322321176529, - -0.13205945491790771, - -0.11470438539981842, - -0.09374044090509415, - -0.0697394385933876, - -0.043356072157621384, - 0.07855400443077087, - 0.04915701225399971, - 0.018899213522672653, - -0.011394066736102104, - -0.04089648649096489, - -0.06880329549312592, - -0.09435328841209412, - -0.11684951186180115, - -0.13567833602428436, - -0.15032614767551422, - -0.16039340198040009, - -0.16560548543930054, - -0.16582022607326508, - -0.1610317975282669, - -0.15137074887752533, - -0.13710066676139832, - -0.11861076951026917, - -0.09640544652938843, - -0.07109036296606064, - -0.043356072157621384, - 0.07855400443077087, - 0.0509016178548336, - 0.022340834140777588, - -0.006349308416247368, - -0.034386198967695236, - -0.06100505590438843, - -0.08547981083393097, - -0.1071428507566452, - -0.1254032552242279, - -0.13976293802261353, - -0.1498301923274994, - -0.15533040463924408, - -0.15611356496810913, - -0.15215831995010376, - -0.14357252418994904, - -0.13059037923812866, - -0.11356601119041443, - -0.0929638221859932, - -0.06934575736522675, - -0.043356072157621384 - ], - "y": [ - -0.01933959126472473, - -0.02556236833333969, - -0.033751390874385834, - -0.04368330165743828, - -0.055087167769670486, - -0.06765192002058029, - -0.0810348317027092, - -0.09487085044384003, - -0.1087825670838356, - -0.1223905086517334, - -0.13532346487045288, - -0.14722870290279388, - -0.1577814370393753, - -0.16669383645057678, - -0.1737227737903595, - -0.1786765456199646, - -0.1814199984073639, - -0.18187832832336426, - -0.18003901839256287, - -0.1759522259235382, - -0.019339583814144135, - -0.034028828144073486, - -0.050453368574380875, - -0.06816521286964417, - -0.08668120950460434, - -0.10549628734588623, - -0.12409722805023193, - -0.14197665452957153, - -0.1586468368768692, - -0.17365309596061707, - -0.18658605217933655, - -0.1970929652452469, - -0.2048872411251068, - -0.20975622534751892, - -0.21156713366508484, - -0.21027058362960815, - -0.20590192079544067, - -0.1985803246498108, - -0.18850547075271606, - -0.1759522259235382, - -0.019339583814144135, - -0.04101920872926712, - -0.06424346566200256, - -0.08837886154651642, - -0.11276702582836151, - -0.1367427259683609, - -0.1596519649028778, - -0.18086984753608704, - -0.19981759786605835, - -0.21597838401794434, - -0.22891134023666382, - -0.23826374113559723, - -0.24378043413162231, - -0.245310977101326, - -0.2428135871887207, - -0.23635640740394592, - -0.22611555457115173, - -0.21237041056156158, - -0.1954958438873291, - -0.1759522259235382, - -0.019339583814144135, - -0.04577600955963135, - -0.07362730801105499, - -0.10213377326726913, - -0.130517840385437, - -0.15800520777702332, - -0.18384616076946259, - -0.20733578503131866, - -0.2278333604335785, - -0.24477975070476532, - -0.257712721824646, - -0.2662794888019562, - -0.27024635672569275, - -0.2695051431655884, - -0.2640760838985443, - -0.25410720705986023, - -0.23987047374248505, - -0.221754252910614, - -0.20025265216827393, - -0.1759522259235382, - -0.019339583814144135, - -0.0477837435901165, - -0.07758801430463791, - -0.10793942213058472, - -0.13801003992557526, - -0.1669796109199524, - -0.19405795633792877, - -0.21850645542144775, - -0.2396581768989563, - -0.25693613290786743, - -0.2698690891265869, - -0.278104305267334, - -0.28141701221466064, - -0.27971696853637695, - -0.2730504870414734, - -0.26159942150115967, - -0.24567611515522003, - -0.22571496665477753, - -0.20226038992404938, - -0.1759522259235382, - -0.019339583814144135, - -0.04682484641671181, - -0.07569636404514313, - -0.10516662895679474, - -0.13443174958229065, - -0.16269344091415405, - -0.18918079137802124, - -0.2131713181734085, - -0.23401060700416565, - -0.25113022327423096, - -0.2640632092952728, - -0.27245673537254333, - -0.2760818898677826, - -0.2748398184776306, - -0.26876431703567505, - -0.25802111625671387, - -0.24290333688259125, - -0.22382330894470215, - -0.2013014853000641, - -0.1759522259235382, - -0.019339583814144135, - -0.043003231287002563, - -0.0681573823094368, - -0.09411590546369553, - -0.1201707273721695, - -0.14561112225055695, - -0.169743150472641, - -0.1919085681438446, - -0.21150273084640503, - -0.22799116373062134, - -0.24092413485050201, - -0.24994885921478271, - -0.2548191547393799, - -0.255402147769928, - -0.25168198347091675, - -0.2437601238489151, - -0.23185260593891144, - -0.21628433465957642, - -0.19747987389564514, - -0.1759522259235382, - -0.019339583814144135, - -0.03673302382230759, - -0.05578800290822983, - -0.07598476856946945, - -0.09677238762378693, - -0.11758381873369217, - -0.13785140216350555, - -0.15702231228351593, - -0.17457357048988342, - -0.1900264322757721, - -0.20295938849449158, - -0.2130196988582611, - -0.21993288397789001, - -0.22351041436195374, - -0.22365468740463257, - -0.22036176919937134, - -0.21372146904468536, - -0.20391494035720825, - -0.19120967388153076, - -0.1759522259235382, - -0.019339583814144135, - -0.028693705797195435, - -0.03992864862084389, - -0.05273798853158951, - -0.06677228957414627, - -0.08164873719215393, - -0.09696154296398163, - -0.11229303479194641, - -0.12722498178482056, - -0.14135007560253143, - -0.1542830467224121, - -0.16567111015319824, - -0.1752036213874817, - -0.18262054026126862, - -0.18771959841251373, - -0.19036167860031128, - -0.19047468900680542, - -0.1880556046962738, - -0.183170348405838, - -0.1759522259235382, - -0.01933959126472473, - -0.019756458699703217, - -0.0222979336977005, - -0.02689472585916519, - -0.03342141956090927, - -0.041699979454278946, - -0.051504604518413544, - -0.06256784498691559, - -0.07458791881799698, - -0.08723695576190948, - -0.10016992688179016, - -0.11303405463695526, - -0.12547841668128967, - -0.13716360926628113, - -0.14777082204818726, - -0.15701079368591309, - -0.1646314263343811, - -0.17042487859725952, - -0.1742331087589264, - -0.1759522259235382, - -0.01933959126472473, - -0.010889768600463867, - -0.004806414246559143, - -0.0012554973363876343, - -0.0003338456153869629, - -0.0020666196942329407, - -0.006406545639038086, - -0.013235233724117279, - -0.022366441786289215, - -0.03355106711387634, - -0.04648403450846672, - -0.0608125701546669, - -0.07614581286907196, - -0.09206553548574448, - -0.10813745856285095, - -0.12392321974039078, - -0.13899219036102295, - -0.15293335914611816, - -0.16536641120910645, - -0.1759522259235382, - -0.01933959126472473, - -0.003054477274417877, - 0.01065044105052948, - 0.021401293575763702, - 0.028904855251312256, - 0.032956451177597046, - 0.03344555199146271, - 0.030358821153640747, - 0.023780465126037598, - 0.013889886438846588, - 0.0009569227695465088, - -0.014665663242340088, - -0.032551757991313934, - -0.05221344158053398, - -0.07311438769102097, - -0.09468451142311096, - -0.11633540689945221, - -0.13747650384902954, - -0.15753112733364105, - -0.1759522259235382, - -0.01933959871530533, - 0.002900324761867523, - 0.02239762246608734, - 0.03862041234970093, - 0.05112624168395996, - 0.059573933482170105, - 0.06373310089111328, - 0.06349027156829834, - 0.058852046728134155, - 0.049944981932640076, - 0.0370120108127594, - 0.020405925810337067, - 0.0005796924233436584, - -0.021925896406173706, - -0.04649689048528671, - -0.07246312499046326, - -0.09911628812551498, - -0.12572932243347168, - -0.15157631039619446, - -0.1759522259235382, - -0.01933959871530533, - 0.006329365074634552, - 0.029162153601646423, - 0.048535943031311035, - 0.06392227113246918, - 0.07490144670009613, - 0.08117397129535675, - 0.08256877958774567, - 0.0790477842092514, - 0.0707070380449295, - 0.05777406692504883, - 0.04060165584087372, - 0.019658200442790985, - -0.004485011100769043, - -0.031169384717941284, - -0.05966709181666374, - -0.08920076489448547, - -0.1189647912979126, - -0.14814728498458862, - -0.1759522259235382, - -0.01933959871530533, - 0.0068610310554504395, - 0.030210986733436584, - 0.050073325634002686, - 0.06590628623962402, - 0.07727797329425812, - 0.08387815952301025, - 0.08552686870098114, - 0.08217909932136536, - 0.07392619550228119, - 0.06099322438240051, - 0.04373297095298767, - 0.02261628955602646, - -0.0017808079719543457, - -0.028792865574359894, - -0.057683076709508896, - -0.08766336739063263, - -0.11791595816612244, - -0.14761561155319214, - -0.1759522259235382, - -0.01933959871530533, - 0.004437729716300964, - 0.025430485606193542, - 0.04306602478027344, - 0.05686330795288086, - 0.06644599139690399, - 0.07155267894268036, - 0.07204407453536987, - 0.06790675222873688, - 0.05925358831882477, - 0.04632061719894409, - 0.029460623860359192, - 0.009133495390415192, - -0.014106303453445435, - -0.039624832570552826, - -0.06672604382038116, - -0.09467067569494247, - -0.12269646674394608, - -0.1500389128923416, - -0.1759522259235382, - -0.01933959126472473, - -0.0006779581308364868, - 0.015338651835918427, - 0.0282733291387558, - 0.037773266434669495, - 0.04357929527759552, - 0.04553310573101044, - 0.04358135163784027, - 0.03777727484703064, - 0.028279229998588562, - 0.015346258878707886, - -0.000668846070766449, - -0.01932922750711441, - -0.04012588784098625, - -0.062491536140441895, - -0.08581611514091492, - -0.10946337878704071, - -0.1327883005142212, - -0.15515460073947906, - -0.1759522259235382, - -0.01933959126472473, - -0.007931657135486603, - 0.0010291114449501038, - 0.007298275828361511, - 0.01070483773946762, - 0.011155880987644196, - 0.00863908976316452, - 0.003223128616809845, - -0.004944279789924622, - -0.01564035564661026, - -0.02857331931591034, - -0.043390411883592606, - -0.059687450528144836, - -0.07701990008354187, - -0.09491496533155441, - -0.1128845289349556, - -0.1304384171962738, - -0.14709782600402832, - -0.16240829229354858, - -0.1759522259235382, - -0.01933959126472473, - -0.016537316143512726, - -0.01594746857881546, - -0.017586156725883484, - -0.02140866219997406, - -0.02731071412563324, - -0.03513132780790329, - -0.04465716704726219, - -0.05562841519713402, - -0.06774578243494034, - -0.08067875355482101, - -0.094074547290802, - -0.10756774991750717, - -0.12079031765460968, - -0.13338156044483185, - -0.14499802887439728, - -0.1553228497505188, - -0.16407442092895508, - -0.1710139662027359, - -0.1759522259235382, - -0.01933959126472473, - -0.025562375783920288, - -0.03375139832496643, - -0.04368331655859947, - -0.05508718639612198, - -0.06765194237232208, - -0.08103485405445099, - -0.09487088024616241, - -0.10878259688615799, - -0.12239053845405579, - -0.13532349467277527, - -0.14722871780395508, - -0.1577814519405365, - -0.16669385135173798, - -0.17372280359268188, - -0.1786765605211258, - -0.18142002820968628, - -0.18187834322452545, - -0.18003901839256287, - -0.1759522259235382 - ], - "z": [ - 0.4862542748451233, - 0.49712878465652466, - 0.5034329891204834, - 0.5049949884414673, - 0.5017721652984619, - 0.4938523471355438, - 0.48145169019699097, - 0.4649083614349365, - 0.44467365741729736, - 0.4212994873523712, - 0.3954235017299652, - 0.36775150895118713, - 0.33903831243515015, - 0.3100671172142029, - 0.28162822127342224, - 0.25449734926223755, - 0.22941455245018005, - 0.20706400275230408, - 0.18805542588233948, - 0.172907292842865, - 0.4862542748451233, - 0.49955081939697266, - 0.5082110166549683, - 0.5119986534118652, - 0.5108104348182678, - 0.5046787261962891, - 0.4937707781791687, - 0.47838419675827026, - 0.4589385986328125, - 0.4359644651412964, - 0.4100884795188904, - 0.38201647996902466, - 0.3525141179561615, - 0.322386234998703, - 0.2924545705318451, - 0.26353561878204346, - 0.236418217420578, - 0.21184203028678894, - 0.19047747552394867, - 0.172907292842865, - 0.4862542748451233, - 0.500300407409668, - 0.5096898078918457, - 0.5141662359237671, - 0.5136076807975769, - 0.5080293416976929, - 0.49758344888687134, - 0.4825548529624939, - 0.4633535146713257, - 0.44050318002700806, - 0.41462719440460205, - 0.38643136620521545, - 0.3566848039627075, - 0.32619887590408325, - 0.2958052456378937, - 0.2663329243659973, - 0.23858579993247986, - 0.213320791721344, - 0.19122707843780518, - 0.172907292842865, - 0.4862542748451233, - 0.4992963671684265, - 0.5077090263366699, - 0.511262834072113, - 0.5098608136177063, - 0.5035412311553955, - 0.4924764931201935, - 0.476968377828598, - 0.4574398994445801, - 0.4344237446784973, - 0.4085477590560913, - 0.38051775097846985, - 0.35109832882881165, - 0.3210919499397278, - 0.2913171350955963, - 0.2625860571861267, - 0.2356823980808258, - 0.2113400399684906, - 0.19022300839424133, - 0.172907292842865, - 0.4862542748451233, - 0.4966474175453186, - 0.5024834275245667, - 0.5036031007766724, - 0.49997586011886597, - 0.4917007088661194, - 0.479003369808197, - 0.4622301459312439, - 0.4418386220932007, - 0.41838496923446655, - 0.39250898361206055, - 0.36491647362709045, - 0.3363600969314575, - 0.30761879682540894, - 0.2794765830039978, - 0.252701073884964, - 0.22802263498306274, - 0.20611441135406494, - 0.18757407367229462, - 0.172907292842865, - 0.4862542748451233, - 0.4926406443119049, - 0.4945791959762573, - 0.4920169711112976, - 0.48502397537231445, - 0.47379085421562195, - 0.45862406492233276, - 0.4399372935295105, - 0.4182403087615967, - 0.39412492513656616, - 0.36824893951416016, - 0.34131819009780884, - 0.3140672743320465, - 0.2872394919395447, - 0.26156672835350037, - 0.23774917423725128, - 0.21643655002117157, - 0.1982101947069168, - 0.18356731534004211, - 0.172907292842865, - 0.4862542748451233, - 0.48771026730537415, - 0.48485293984413147, - 0.4777601361274719, - 0.4666253924369812, - 0.4517524838447571, - 0.4335470199584961, - 0.4125056266784668, - 0.3892022371292114, - 0.3642725646495819, - 0.3383965790271759, - 0.3122801184654236, - 0.2866355776786804, - 0.262162446975708, - 0.2395283579826355, - 0.21935062110424042, - 0.2021797001361847, - 0.18848392367362976, - 0.17863693833351135, - 0.172907292842865, - 0.4862542748451233, - 0.48239055275917053, - 0.47435861825942993, - 0.4623774588108063, - 0.4467739760875702, - 0.42797380685806274, - 0.40648967027664185, - 0.3829077184200287, - 0.3578711152076721, - 0.33206281065940857, - 0.30618682503700256, - 0.2809489667415619, - 0.2570376694202423, - 0.23510512709617615, - 0.21574966609477997, - 0.1994991898536682, - 0.18679702281951904, - 0.17798960208892822, - 0.17331722378730774, - 0.172907292842865, - 0.4862542748451233, - 0.47725796699523926, - 0.4642334580421448, - 0.4475359320640564, - 0.42762088775634766, - 0.40503159165382385, - 0.3803841769695282, - 0.3543510138988495, - 0.32764214277267456, - 0.3009861707687378, - 0.2751101851463318, - 0.2507200241088867, - 0.22848094999790192, - 0.2089996337890625, - 0.19280746579170227, - 0.18034610152244568, - 0.17195548117160797, - 0.16786444187164307, - 0.16818463802337646, - 0.172907292842865, - 0.4862542748451233, - 0.47286874055862427, - 0.4555746912956238, - 0.4348438084125519, - 0.41124165058135986, - 0.3854120075702667, - 0.35805943608283997, - 0.32993003726005554, - 0.30179110169410706, - 0.274410218000412, - 0.2485342174768448, - 0.22486896812915802, - 0.20405998826026917, - 0.18667487800121307, - 0.17318788170814514, - 0.16396686434745789, - 0.15926337242126465, - 0.15920567512512207, - 0.16379539668560028, - 0.172907292842865, - 0.4862542748451233, - 0.4696984589099884, - 0.44932061433792114, - 0.42567652463912964, - 0.39941123127937317, - 0.37124115228652954, - 0.3419346809387207, - 0.3122912049293518, - 0.2831193804740906, - 0.2552148699760437, - 0.2293388843536377, - 0.20619723200798035, - 0.18642115592956543, - 0.17055010795593262, - 0.15901701152324677, - 0.15213643014431, - 0.1500960886478424, - 0.15295159816741943, - 0.16062511503696442, - 0.172907292842865, - 0.4862542748451233, - 0.4680907130241394, - 0.44614893198013306, - 0.4210274815559387, - 0.39341163635253906, - 0.3640546202659607, - 0.3337572515010834, - 0.3033459782600403, - 0.27365028858184814, - 0.2454802691936493, - 0.2196042835712433, - 0.1967281699180603, - 0.1774759292602539, - 0.16237269341945648, - 0.15183047950267792, - 0.1461368352174759, - 0.1454470455646515, - 0.14977994561195374, - 0.15901736915111542, - 0.172907292842865, - 0.4862542748451233, - 0.46821969747543335, - 0.4464034140110016, - 0.4214004874229431, - 0.39389297366142273, - 0.36463120579719543, - 0.3344133496284485, - 0.3040636479854584, - 0.2744100093841553, - 0.24626129865646362, - 0.22038531303405762, - 0.19748787581920624, - 0.1781936138868332, - 0.1630287915468216, - 0.15240706503391266, - 0.14661818742752075, - 0.14582005143165588, - 0.15003441274166107, - 0.15914635360240936, - 0.172907292842865, - 0.4862542748451233, - 0.4700714349746704, - 0.45005643367767334, - 0.4267551302909851, - 0.4008031487464905, - 0.37290844321250916, - 0.343831866979599, - 0.31436651945114136, - 0.28531622886657715, - 0.25747331976890564, - 0.23159733414649963, - 0.20839408040046692, - 0.18849648535251617, - 0.1724472939968109, - 0.16068430244922638, - 0.1535283625125885, - 0.15117467939853668, - 0.15368743240833282, - 0.1609981209039688, - 0.172907292842865, - 0.4862542748451233, - 0.4734452962875366, - 0.45671212673187256, - 0.4365110993385315, - 0.4133932888507843, - 0.3879893124103546, - 0.36099210381507874, - 0.3331380784511566, - 0.3051869869232178, - 0.2779013216495514, - 0.2520253360271454, - 0.22826486825942993, - 0.20726802945137024, - 0.18960753083229065, - 0.17576518654823303, - 0.16611850261688232, - 0.16093064844608307, - 0.16034312546253204, - 0.16437198221683502, - 0.172907292842865, - 0.4862542748451233, - 0.47797566652297974, - 0.46564924716949463, - 0.44961121678352356, - 0.4302990734577179, - 0.40823960304260254, - 0.38403451442718506, - 0.35834407806396484, - 0.33186906576156616, - 0.30533161759376526, - 0.27945563197135925, - 0.2549469470977783, - 0.23247404396533966, - 0.21264997124671936, - 0.19601547718048096, - 0.18302427232265472, - 0.17403076589107513, - 0.1692802459001541, - 0.16890233755111694, - 0.172907292842865, - 0.4862542748451233, - 0.48317158222198486, - 0.475899338722229, - 0.4646359086036682, - 0.44968852400779724, - 0.43146491050720215, - 0.4104621708393097, - 0.38725319504737854, - 0.3624710738658905, - 0.3367917537689209, - 0.3109157681465149, - 0.2855489253997803, - 0.26138314604759216, - 0.2390775978565216, - 0.21924078464508057, - 0.20241372287273407, - 0.1890554577112198, - 0.17953035235404968, - 0.17409825325012207, - 0.172907292842865, - 0.4862542748451233, - 0.48847001791000366, - 0.4863516688346863, - 0.4799569845199585, - 0.46946045756340027, - 0.4551483988761902, - 0.4374111294746399, - 0.4167325794696808, - 0.3936767578125, - 0.3688725233078003, - 0.3429965376853943, - 0.31675460934638977, - 0.2908625304698944, - 0.2660265862941742, - 0.2429242581129074, - 0.2221856713294983, - 0.20437654852867126, - 0.18998265266418457, - 0.17939665913581848, - 0.172907292842865, - 0.4862542748451233, - 0.49329674243927, - 0.49587351083755493, - 0.4939141869544983, - 0.4874722957611084, - 0.4767235517501831, - 0.46196112036705017, - 0.4435877203941345, - 0.42210447788238525, - 0.3980974555015564, - 0.3722214698791504, - 0.3451823592185974, - 0.31771764159202576, - 0.2905765771865845, - 0.2644994258880615, - 0.24019750952720642, - 0.21833373606204987, - 0.19950449466705322, - 0.18422341346740723, - 0.172907292842865, - 0.4862542748451233, - 0.49712878465652466, - 0.5034329891204834, - 0.5049949884414673, - 0.5017721652984619, - 0.4938523769378662, - 0.48145169019699097, - 0.4649083614349365, - 0.44467365741729736, - 0.4212995171546936, - 0.3954235315322876, - 0.36775150895118713, - 0.33903831243515015, - 0.3100671172142029, - 0.28162825107574463, - 0.25449734926223755, - 0.22941455245018005, - 0.20706400275230408, - 0.18805544078350067, - 0.172907292842865 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.06190788745880127, - 0.095632404088974, - 0.1301124542951584, - 0.16440752148628235, - 0.19758212566375732, - 0.22873130440711975, - 0.2570054531097412, - 0.28163331747055054, - 0.3019430637359619, - 0.31738072633743286, - 0.32752519845962524, - 0.3320998549461365, - 0.33097973465919495, - 0.32419553399086, - 0.3119322657585144, - 0.2945244014263153, - 0.27244681119918823, - 0.24630175530910492, - 0.21680235862731934, - 0.18475328385829926, - 0.06190788745880127, - 0.10023177415132523, - 0.13918574154376984, - 0.1777072250843048, - 0.21474546194076538, - 0.2492901235818863, - 0.2803989350795746, - 0.3072233498096466, - 0.32903164625167847, - 0.3452289402484894, - 0.35537344217300415, - 0.35918840765953064, - 0.356569766998291, - 0.34758901596069336, - 0.33249107003211975, - 0.31168773770332336, - 0.2857465147972107, - 0.2553750276565552, - 0.22140172123908997, - 0.18475328385829926, - 0.06190788745880127, - 0.10076893866062164, - 0.14024542272090912, - 0.1792605072259903, - 0.21674998104572296, - 0.25169122219085693, - 0.28313106298446655, - 0.31021201610565186, - 0.33219534158706665, - 0.34848135709762573, - 0.3586258590221405, - 0.3623521327972412, - 0.35955846309661865, - 0.3503211736679077, - 0.3348921537399292, - 0.31369227170944214, - 0.2872998118400574, - 0.25643473863601685, - 0.22193889319896698, - 0.18475328385829926, - 0.06190788745880127, - 0.09718568623065948, - 0.13317666947841644, - 0.1688990592956543, - 0.20337848365306854, - 0.23567436635494232, - 0.26490581035614014, - 0.290275514125824, - 0.3110913634300232, - 0.3267855644226074, - 0.3369300365447998, - 0.341248095035553, - 0.33962196111679077, - 0.3320959210395813, - 0.3188753128051758, - 0.30032074451446533, - 0.27693837881088257, - 0.24936595559120178, - 0.21835564076900482, - 0.18475328385829926, - 0.06190788745880127, - 0.08987031877040863, - 0.11874546855688095, - 0.14774568378925323, - 0.17607992887496948, - 0.20297527313232422, - 0.22769814729690552, - 0.24957415461540222, - 0.2680065631866455, - 0.28249257802963257, - 0.29263705015182495, - 0.2981633245944977, - 0.29892057180404663, - 0.2948882281780243, - 0.2861762046813965, - 0.27302220463752747, - 0.2557849884033203, - 0.2349347621202469, - 0.21104027330875397, - 0.18475328385829926, - 0.06190789118409157, - 0.07961557060480118, - 0.09851568937301636, - 0.11809269338846207, - 0.1378125697374344, - 0.1571374088525772, - 0.17554008960723877, - 0.19251863658428192, - 0.20760990679264069, - 0.22040227055549622, - 0.230546772480011, - 0.23776668310165405, - 0.24186506867408752, - 0.24273017048835754, - 0.24033834040164948, - 0.23475486040115356, - 0.22613197565078735, - 0.2147049903869629, - 0.20078551769256592, - 0.18475328385829926, - 0.061907894909381866, - 0.06753270328044891, - 0.07467953860759735, - 0.08315344154834747, - 0.09272326529026031, - 0.10312798619270325, - 0.11408378928899765, - 0.12529180943965912, - 0.13644632697105408, - 0.14724309742450714, - 0.15738758444786072, - 0.16660308837890625, - 0.17463824152946472, - 0.18127384781837463, - 0.1863289177417755, - 0.1896655410528183, - 0.19119274616241455, - 0.1908688247203827, - 0.18870264291763306, - 0.18475328385829926, - 0.061907898634672165, - 0.054931074380874634, - 0.04982002079486847, - 0.04671413451433182, - 0.0456981435418129, - 0.04679977148771286, - 0.04998895525932312, - 0.05517870932817459, - 0.062227457761764526, - 0.0709429681301117, - 0.08108745515346527, - 0.0923842191696167, - 0.10452514886856079, - 0.1171790286898613, - 0.13000069558620453, - 0.14264041185379028, - 0.1547534316778183, - 0.1660093069076538, - 0.17610102891921997, - 0.18475329875946045, - 0.06190790235996246, - 0.043176278471946716, - 0.026631057262420654, - 0.012723550200462341, - 0.001833103597164154, - -0.00574319064617157, - -0.009798705577850342, - -0.010222792625427246, - -0.007003903388977051, - -0.00022981315851211548, - 0.009914681315422058, - 0.023152858018875122, - 0.039123646914958954, - 0.05739135295152664, - 0.0774577185511589, - 0.09877538681030273, - 0.12076284736394882, - 0.1428203582763672, - 0.16434621810913086, - 0.18475329875946045, - 0.06190790235996246, - 0.03354211896657944, - 0.0076255351305007935, - -0.015134915709495544, - -0.034118399024009705, - -0.04880706965923309, - -0.05880029499530792, - -0.06382545828819275, - -0.06374548375606537, - -0.05856256186962128, - -0.0484180748462677, - -0.033588722348213196, - -0.014479026198387146, - 0.008389778435230255, - 0.03439383953809738, - 0.06282386183738708, - 0.09290437400341034, - 0.12381482869386673, - 0.15471206605434418, - 0.18475329875946045, - 0.06190790608525276, - 0.027072615921497345, - -0.005137011408805847, - -0.03384236991405487, - -0.05826045572757721, - -0.07772520184516907, - -0.09170570969581604, - -0.0998205840587616, - -0.10184843838214874, - -0.09773401916027069, - -0.08758953213691711, - -0.07169167697429657, - -0.050474151968955994, - -0.024515658617019653, - 0.005475692451000214, - 0.03868180513381958, - 0.07419693470001221, - 0.11105228960514069, - 0.14824256300926208, - 0.18475329875946045, - 0.06190790608525276, - 0.024468831717967987, - -0.010273545980453491, - -0.04137153923511505, - -0.0679769217967987, - -0.08936388790607452, - -0.10494914650917053, - -0.11430750787258148, - -0.11718373000621796, - -0.11349934339523315, - -0.10335485637187958, - -0.08702696859836578, - -0.06496107578277588, - -0.037759095430374146, - -0.006162986159324646, - 0.028965353965759277, - 0.06666775047779083, - 0.10591575503349304, - 0.14563877880573273, - 0.18475329875946045, - 0.06190790608525276, - 0.026012934744358063, - -0.007227465510368347, - -0.03690657019615173, - -0.06221483647823334, - -0.082461878657341, - -0.09709547460079193, - -0.10571642220020294, - -0.10808955132961273, - -0.10415013134479523, - -0.09400564432144165, - -0.07793278992176056, - -0.05636999011039734, - -0.029905423521995544, - 0.0007390007376670837, - 0.03472742438316345, - 0.07113273441791534, - 0.10896183550357819, - 0.1471828818321228, - 0.18475329875946045, - 0.06190790608525276, - 0.03153759986162186, - 0.0036711692810058594, - -0.02093125879764557, - -0.0415986031293869, - -0.0577671080827713, - -0.06899574398994446, - -0.07497823238372803, - -0.0755513459444046, - -0.07069948315620422, - -0.06055499613285065, - -0.04539458453655243, - -0.025631800293922424, - -0.0018056929111480713, - 0.025433801114559174, - 0.055343665182590485, - 0.08710804581642151, - 0.1198604628443718, - 0.1527075469493866, - 0.18475329875946045, - 0.06190790235996246, - 0.04044412821531296, - 0.02124127745628357, - 0.004823170602321625, - -0.008362382650375366, - -0.017955675721168518, - -0.023695066571235657, - -0.025423958897590637, - -0.02309522032737732, - -0.01677238941192627, - -0.006627902388572693, - 0.0070615410804748535, - 0.023922473192214966, - 0.043494999408721924, - 0.06524523347616196, - 0.08857989311218262, - 0.11286246031522751, - 0.1374305784702301, - 0.1616140753030777, - 0.18475329875946045, - 0.061907898634672165, - 0.051767364144325256, - 0.04357888549566269, - 0.03756583482027054, - 0.03389221429824829, - 0.03265824168920517, - 0.03389757126569748, - 0.03757640719413757, - 0.04359438270330429, - 0.051787368953228, - 0.06193186342716217, - 0.07375115156173706, - 0.08692283928394318, - 0.10108763724565506, - 0.11585915833711624, - 0.13083449006080627, - 0.14560513198375702, - 0.15976817905902863, - 0.1729373037815094, - 0.18475329875946045, - 0.061907894909381866, - 0.06428027898073196, - 0.06826340407133102, - 0.0737486332654953, - 0.08058629930019379, - 0.08858993649482727, - 0.0975412130355835, - 0.10719594359397888, - 0.11729079484939575, - 0.1275503784418106, - 0.13769486546516418, - 0.14744755625724792, - 0.15654237568378448, - 0.16473126411437988, - 0.17179085314273834, - 0.17752857506275177, - 0.18178792297840118, - 0.18445269763469696, - 0.1854502260684967, - 0.18475329875946045, - 0.06190789118409157, - 0.07662688940763474, - 0.09261985123157501, - 0.10945051908493042, - 0.1266597956418991, - 0.1437782645225525, - 0.16033896803855896, - 0.17589019238948822, - 0.19000771641731262, - 0.20230644941329956, - 0.21245095133781433, - 0.2201644778251648, - 0.22523662447929382, - 0.22752903401851654, - 0.22697919607162476, - 0.2236020863056183, - 0.2174898087978363, - 0.20880913734436035, - 0.19779685139656067, - 0.18475328385829926, - 0.06190789118409157, - 0.08746924996376038, - 0.1140088215470314, - 0.14080266654491425, - 0.16711992025375366, - 0.19224271178245544, - 0.21548575162887573, - 0.2362150400876999, - 0.25386518239974976, - 0.26795458793640137, - 0.27809908986091614, - 0.28402191400527954, - 0.2855614721775055, - 0.2826758027076721, - 0.2754436433315277, - 0.26406219601631165, - 0.24884195625782013, - 0.23019811511039734, - 0.2086392045021057, - 0.18475328385829926, - 0.06190788745880127, - 0.095632404088974, - 0.13011246919631958, - 0.16440753638744354, - 0.19758212566375732, - 0.22873131930828094, - 0.2570054531097412, - 0.28163331747055054, - 0.3019430935382843, - 0.31738072633743286, - 0.32752522826194763, - 0.3320998549461365, - 0.33097976446151733, - 0.3241955637931824, - 0.3119322657585144, - 0.2945244312286377, - 0.27244681119918823, - 0.2463017702102661, - 0.21680235862731934, - 0.18475328385829926 - ], - "y": [ - -0.04072345793247223, - -0.02615053951740265, - -0.009822722524404526, - 0.00781460665166378, - 0.026280343532562256, - 0.045070793479681015, - 0.06367340683937073, - 0.0815807580947876, - 0.09830436110496521, - 0.1133880540728569, - 0.12642039358615875, - 0.13704589009284973, - 0.1449747085571289, - 0.14999055862426758, - 0.15195664763450623, - 0.1508193016052246, - 0.1466095894575119, - 0.1394423246383667, - 0.12951302528381348, - 0.11709249764680862, - -0.04072345793247223, - -0.03798826038837433, - -0.0331752672791481, - -0.026415765285491943, - -0.017894137650728226, - -0.007842831313610077, - 0.0034639835357666016, - 0.015717875212430954, - 0.028584610670804977, - 0.041713207960128784, - 0.054745547473430634, - 0.0673261359333992, - 0.07911182194948196, - 0.08978112787008286, - 0.09904301166534424, - 0.10664481669664383, - 0.11237921565771103, - 0.11608978360891342, - 0.1176752969622612, - 0.11709249764680862, - -0.04072345048189163, - -0.05000575631856918, - -0.05688246339559555, - -0.061165980994701385, - -0.06273948401212692, - -0.06156004220247269, - -0.057659827172756195, - -0.05114523321390152, - -0.042193956673145294, - -0.031050167977809906, - -0.018017828464508057, - -0.003452431410551071, - 0.012248711660504341, - 0.02865730971097946, - 0.045325785875320435, - 0.061799466609954834, - 0.07762899994850159, - 0.09238259494304657, - 0.10565780103206635, - 0.11709250509738922, - -0.04072345048189163, - -0.06090075522661209, - -0.07837527245283127, - -0.09267033636569977, - -0.10339602828025818, - -0.1102597564458847, - -0.11307433247566223, - -0.11176295578479767, - -0.10636140406131744, - -0.09701701998710632, - -0.08398468047380447, - -0.06761988252401352, - -0.04836900532245636, - -0.02675718069076538, - -0.003373950719833374, - 0.021142933517694473, - 0.0461246520280838, - 0.07088978588581085, - 0.09476280212402344, - 0.11709250509738922, - -0.040723443031311035, - -0.06949260085821152, - -0.09532460570335388, - -0.11751481890678406, - -0.13545797765254974, - -0.14866460859775543, - -0.15677447617053986, - -0.15956638753414154, - -0.15696418285369873, - -0.14903879165649414, - -0.1360064595937729, - -0.11822265386581421, - -0.09617243707180023, - -0.0704573392868042, - -0.04177876561880112, - -0.010919023305177689, - 0.021280160173773766, - 0.05394044518470764, - 0.08617095649242401, - 0.11709251254796982, - -0.040723443031311035, - -0.07485024631023407, - -0.10589374601840973, - -0.13300715386867523, - -0.1554509401321411, - -0.17261281609535217, - -0.18402470648288727, - -0.18937531113624573, - -0.18851865828037262, - -0.18147815763950348, - -0.16844582557678223, - -0.1497771292924881, - -0.12598136067390442, - -0.09770756959915161, - -0.06572700291872025, - -0.03091198205947876, - 0.0057878270745277405, - 0.04337131232023239, - 0.08081331849098206, - 0.11709251254796982, - -0.040723443031311035, - -0.07639309763908386, - -0.10893736779689789, - -0.13746853172779083, - -0.1612083464860916, - -0.1795092225074768, - -0.1918720006942749, - -0.19795945286750793, - -0.19760549068450928, - -0.19081978499889374, - -0.17778745293617249, - -0.15886396169662476, - -0.13456550240516663, - -0.10555486381053925, - -0.07262342423200607, - -0.03666938841342926, - 0.0013264566659927368, - 0.040327683091163635, - 0.07927046716213226, - 0.11709251254796982, - -0.040723443031311035, - -0.07395396381616592, - -0.10412563383579254, - -0.13041545450687408, - -0.15210631489753723, - -0.16860651969909668, - -0.17946602404117584, - -0.18438857793807983, - -0.1832399219274521, - -0.17605137825012207, - -0.16301904618740082, - -0.14449839293956757, - -0.12099462747573853, - -0.09314888715744019, - -0.06172070652246475, - -0.027567356824874878, - 0.008379532024264336, - 0.04513941705226898, - 0.0817095935344696, - 0.11709251254796982, - -0.040723443031311035, - -0.06779716908931732, - -0.0919799953699112, - -0.11261224746704102, - -0.12913118302822113, - -0.1410861611366272, - -0.14815111458301544, - -0.15013332664966583, - -0.1469787061214447, - -0.13877332210540771, - -0.12574099004268646, - -0.10823717713356018, - -0.08673938363790512, - -0.061833977699279785, - -0.03420034795999527, - -0.004592236131429672, - 0.026182739064097404, - 0.057285062968730927, - 0.0878663882613182, - 0.11709250509738922, - -0.04072345048189163, - -0.05858989804983139, - -0.07381658256053925, - -0.08598817139863968, - -0.09477266669273376, - -0.09993042051792145, - -0.1013207733631134, - -0.0989057868719101, - -0.09275132417678833, - -0.083025261759758, - -0.06999292224645615, - -0.05400979518890381, - -0.03551183640956879, - -0.015003625303506851, - 0.006955405697226524, - 0.02976628765463829, - 0.05280680954456329, - 0.07544846832752228, - 0.09707365930080414, - 0.11709250509738922, - -0.04072345048189163, - -0.047329895198345184, - -0.05160371959209442, - -0.05342835187911987, - -0.052754029631614685, - -0.049599140882492065, - -0.04404974728822708, - -0.03625721484422684, - -0.02643410861492157, - -0.014848370105028152, - -0.001816030591726303, - 0.012307418510317802, - 0.027136730030179024, - 0.04226739704608917, - 0.05728669464588165, - 0.07178492099046707, - 0.0853666365146637, - 0.0976613312959671, - 0.10833366960287094, - 0.11709250509738922, - -0.04072345793247223, - -0.03523735702037811, - -0.02774849534034729, - -0.01846114918589592, - -0.0076286643743515015, - 0.004453487694263458, - 0.017455728724598885, - 0.031023405492305756, - 0.04478640854358673, - 0.058369338512420654, - 0.0714016705751419, - 0.08352793753147125, - 0.09441734850406647, - 0.10377287864685059, - 0.11133932322263718, - 0.11691029369831085, - 0.12033383548259735, - 0.12151656299829483, - 0.12042620033025742, - 0.11709249764680862, - -0.04072345793247223, - -0.023622702807188034, - -0.004836000502109528, - 0.015124192461371422, - 0.035713400691747665, - 0.05637001618742943, - 0.0765305832028389, - 0.09564515948295593, - 0.1131923645734787, - 0.1286935657262802, - 0.14172589778900146, - 0.15193389356136322, - 0.15903910994529724, - 0.16284774243831635, - 0.16325587034225464, - 0.16025236248970032, - 0.15391917526721954, - 0.1444290578365326, - 0.1320408582687378, - 0.11709249764680862, - -0.04072345793247223, - -0.013744547963142395, - 0.01465086080133915, - 0.043688200414180756, - 0.07257542014122009, - 0.10052451491355896, - 0.1267731785774231, - 0.15060538053512573, - 0.17137101292610168, - 0.18850363790988922, - 0.20153596997261047, - 0.2101125419139862, - 0.21399933099746704, - 0.21309034526348114, - 0.20741038024425507, - 0.19711437821388245, - 0.18248318135738373, - 0.16391591727733612, - 0.14191901683807373, - 0.11709249764680862, - -0.040723465383052826, - -0.0066733695566654205, - 0.028600340709090233, - 0.06413547694683075, - 0.09896275401115417, - 0.13213211297988892, - 0.1627388745546341, - 0.18994811177253723, - 0.21301761269569397, - 0.2313181310892105, - 0.24435046315193176, - 0.2517591416835785, - 0.25334206223487854, - 0.24905604124069214, - 0.23901797831058502, - 0.22350171208381653, - 0.20293046534061432, - 0.1778654009103775, - 0.1489901840686798, - 0.11709249019622803, - -0.040723465383052826, - -0.0031754150986671448, - 0.03550083935260773, - 0.07425028085708618, - 0.11201594769954681, - 0.14776766300201416, - 0.18053027987480164, - 0.20941007137298584, - 0.23361927270889282, - 0.25249746441841125, - 0.2655298113822937, - 0.27236080169677734, - 0.27280402183532715, - 0.2668474316596985, - 0.2546535134315491, - 0.23655492067337036, - 0.21304526925086975, - 0.18476589024066925, - 0.15248814225196838, - 0.11709249019622803, - -0.040723465383052826, - -0.0036297477781772614, - 0.03460455685853958, - 0.0729365199804306, - 0.11032053828239441, - 0.14573684334754944, - 0.17821943759918213, - 0.20688222348690033, - 0.23094339668750763, - 0.24974659085273743, - 0.2627789378166199, - 0.26968491077423096, - 0.27027618885040283, - 0.264536589384079, - 0.25262272357940674, - 0.23485949635505676, - 0.21173150837421417, - 0.1838696151971817, - 0.15203380584716797, - 0.11709249019622803, - -0.040723465383052826, - -0.007987141609191895, - 0.02600862644612789, - 0.06033652275800705, - 0.09406016767024994, - 0.12625963985919952, - 0.15605668723583221, - 0.1826384961605072, - 0.20527996122837067, - 0.2233635038137436, - 0.23639583587646484, - 0.2440214902162552, - 0.2460324466228485, - 0.24237386882305145, - 0.23314550518989563, - 0.2185991257429123, - 0.19913150370121002, - 0.17527368664741516, - 0.14767640829086304, - 0.11709249019622803, - -0.04072345793247223, - -0.0157754085958004, - 0.010644538328051567, - 0.037815697491168976, - 0.06499691307544708, - 0.09144677221775055, - 0.11644375324249268, - 0.13930605351924896, - 0.1594099998474121, - 0.17620724439620972, - 0.18923957645893097, - 0.19815154373645782, - 0.20270000398159027, - 0.20276090502738953, - 0.19833262264728546, - 0.18953588604927063, - 0.17661067843437195, - 0.15990959107875824, - 0.13988815248012543, - 0.11709249764680862, - -0.04072345793247223, - -0.026150546967983246, - -0.009822733700275421, - 0.007814591750502586, - 0.026280321180820465, - 0.045070767402648926, - 0.06367337703704834, - 0.08158071339130402, - 0.09830433130264282, - 0.11338801681995392, - 0.12642034888267517, - 0.13704586029052734, - 0.14497466385364532, - 0.1499905288219452, - 0.15195661783218384, - 0.15081928670406342, - 0.1466095745563507, - 0.1394423246383667, - 0.12951301038265228, - 0.11709249764680862 - ], - "z": [ - 0.44346883893013, - 0.42608141899108887, - 0.4134747385978699, - 0.40599265694618225, - 0.40383926033973694, - 0.40707331895828247, - 0.4156065583229065, - 0.4292062819004059, - 0.4475014805793762, - 0.46999311447143555, - 0.49606770277023315, - 0.5250139236450195, - 0.5560423135757446, - 0.5883064270019531, - 0.6209261417388916, - 0.6530117392539978, - 0.6836880445480347, - 0.7121182084083557, - 0.7375267744064331, - 0.7592206001281738, - 0.44346883893013, - 0.43020862340927124, - 0.4216165542602539, - 0.4179270267486572, - 0.4192405939102173, - 0.4255215525627136, - 0.4365984797477722, - 0.4521692395210266, - 0.47180911898612976, - 0.49498242139816284, - 0.5210570096969604, - 0.5493215918540955, - 0.579005241394043, - 0.6092982888221741, - 0.6393743753433228, - 0.6684131026268005, - 0.6956223845481873, - 0.7202600240707397, - 0.7416539192199707, - 0.7592206001281738, - 0.44346883893013, - 0.436006098985672, - 0.4330533742904663, - 0.4346911907196045, - 0.4408748745918274, - 0.45143580436706543, - 0.4660857915878296, - 0.4844253361225128, - 0.5059540867805481, - 0.5300849080085754, - 0.556159496307373, - 0.5834665894508362, - 0.6112613677978516, - 0.6387856602668762, - 0.6652886271476746, - 0.6900473833084106, - 0.7123865485191345, - 0.7316968441009521, - 0.7474514245986938, - 0.7592206001281738, - 0.44346883893013, - 0.4428456127643585, - 0.4465458393096924, - 0.45446860790252686, - 0.4663977324962616, - 0.48200786113739014, - 0.5008732080459595, - 0.5224791169166565, - 0.5462363362312317, - 0.5714967250823975, - 0.5975713133811951, - 0.623748779296875, - 0.6493151783943176, - 0.6735730171203613, - 0.6958606839179993, - 0.7155702114105225, - 0.7321639657020569, - 0.7451893091201782, - 0.7542909383773804, - 0.7592206001281738, - 0.44346883893013, - 0.44998598098754883, - 0.4606318473815918, - 0.4751160144805908, - 0.49304330348968506, - 0.513924777507782, - 0.5371909141540527, - 0.5622069239616394, - 0.5882905125617981, - 0.6147302389144897, - 0.6408047676086426, - 0.6658030152320862, - 0.6890429258346558, - 0.7098907232284546, - 0.7277776002883911, - 0.7422157526016235, - 0.7528113722801208, - 0.7592753171920776, - 0.7614313364028931, - 0.7592206001281738, - 0.4434688091278076, - 0.4566534757614136, - 0.4737849533557892, - 0.494395911693573, - 0.5179241895675659, - 0.5437278747558594, - 0.5711032748222351, - 0.5993035435676575, - 0.6275594830513, - 0.655100405216217, - 0.6811749935150146, - 0.7050719857215881, - 0.7261396050453186, - 0.7438031435012817, - 0.7575807571411133, - 0.7670966386795044, - 0.772091269493103, - 0.7724283933639526, - 0.7680988311767578, - 0.7592206001281738, - 0.4434688091278076, - 0.4621255397796631, - 0.48457980155944824, - 0.5102190971374512, - 0.5383440852165222, - 0.5681875348091125, - 0.5989354252815247, - 0.629749059677124, - 0.6597878932952881, - 0.6882325410842896, - 0.7143071293830872, - 0.7373003363609314, - 0.7565851211547852, - 0.7716352939605713, - 0.7820403575897217, - 0.7875165939331055, - 0.787914514541626, - 0.7832232713699341, - 0.7735708951950073, - 0.7592206001281738, - 0.4434688091278076, - 0.4658091962337494, - 0.49184662103652954, - 0.5208708643913269, - 0.5520902276039124, - 0.5846531391143799, - 0.6176713109016418, - 0.6502441763877869, - 0.6814832091331482, - 0.7105362415313721, - 0.7366107702255249, - 0.7589956521987915, - 0.777080237865448, - 0.7903711795806885, - 0.7985060214996338, - 0.8012627363204956, - 0.7985662221908569, - 0.7904900908470154, - 0.7772545218467712, - 0.7592206001281738, - 0.4434688091278076, - 0.4673052430152893, - 0.494797945022583, - 0.52519690990448, - 0.5576730370521545, - 0.5913403630256653, - 0.6252806186676025, - 0.6585679650306702, - 0.6902943849563599, - 0.7195945382118225, - 0.7456691265106201, - 0.767806887626648, - 0.7854039669036865, - 0.7979804873466492, - 0.8051932454109192, - 0.8068455457687378, - 0.8028923273086548, - 0.7934414148330688, - 0.7787505388259888, - 0.7592206001281738, - 0.4434688091278076, - 0.46645158529281616, - 0.4931139051914215, - 0.522728443145752, - 0.5544874668121338, - 0.5875245928764343, - 0.6209387183189392, - 0.6538184285163879, - 0.6852667331695557, - 0.714425802230835, - 0.7405003905296326, - 0.762779176235199, - 0.7806544303894043, - 0.7936385869979858, - 0.8013774752616882, - 0.803659975528717, - 0.8004238605499268, - 0.791757345199585, - 0.7778968811035156, - 0.7592206001281738, - 0.4434688091278076, - 0.46334072947502136, - 0.4869770407676697, - 0.5137330293655396, - 0.5428787469863892, - 0.5736193060874939, - 0.6051161885261536, - 0.6365101337432861, - 0.6669449210166931, - 0.6955902576446533, - 0.7216648459434509, - 0.7444573640823364, - 0.7633461952209473, - 0.7778160572052002, - 0.7874721884727478, - 0.7920512557029724, - 0.7914283871650696, - 0.7856205105781555, - 0.7747860550880432, - 0.7592206001281738, - 0.4434688091278076, - 0.45830976963043213, - 0.47705236077308655, - 0.49918532371520996, - 0.52410489320755, - 0.5511313676834106, - 0.5795275568962097, - 0.6085188388824463, - 0.63731449842453, - 0.6651288866996765, - 0.6912034749984741, - 0.7148269414901733, - 0.7353549003601074, - 0.7522274255752563, - 0.7649842500686646, - 0.7732774019241333, - 0.77688068151474, - 0.77569580078125, - 0.7697551250457764, - 0.7592206001281738, - 0.4434688091278076, - 0.45190390944480896, - 0.46441537141799927, - 0.48066189885139465, - 0.5002003312110901, - 0.5224977135658264, - 0.5469458103179932, - 0.572877824306488, - 0.5995863080024719, - 0.6263427734375, - 0.6524173617362976, - 0.67709881067276, - 0.6997138261795044, - 0.7196456789970398, - 0.7363505363464355, - 0.7493728399276733, - 0.7583572864532471, - 0.7630587816238403, - 0.7633492350578308, - 0.7592206001281738, - 0.44346883893013, - 0.44481730461120605, - 0.45043545961380005, - 0.4601700007915497, - 0.473755419254303, - 0.49082115292549133, - 0.510901689529419, - 0.5334492325782776, - 0.5578488111495972, - 0.5834348797798157, - 0.6095094680786133, - 0.6353613138198853, - 0.6602852940559387, - 0.6836014986038208, - 0.7046740055084229, - 0.7229279279708862, - 0.7378653287887573, - 0.7490788698196411, - 0.7562626004219055, - 0.7592206001281738, - 0.44346883893013, - 0.43781793117523193, - 0.4366275668144226, - 0.4399303197860718, - 0.4476360082626343, - 0.4595344662666321, - 0.4753011167049408, - 0.49450594186782837, - 0.5166250467300415, - 0.5410550832748413, - 0.5671296119689941, - 0.5941374897956848, - 0.6213419437408447, - 0.648000955581665, - 0.6733872890472412, - 0.6968084573745728, - 0.7176256775856018, - 0.7352710366249084, - 0.7492632269859314, - 0.7592206001281738, - 0.44346883893013, - 0.43166422843933105, - 0.42448803782463074, - 0.4221360683441162, - 0.4246724247932434, - 0.4320279359817505, - 0.4440019726753235, - 0.46026790142059326, - 0.4803820550441742, - 0.5037957429885864, - 0.529870331287384, - 0.5578945279121399, - 0.5871039628982544, - 0.6167018413543701, - 0.6458807587623596, - 0.6738448739051819, - 0.6998314261436462, - 0.7231314778327942, - 0.7431095242500305, - 0.7592206001281738, - 0.44346883893013, - 0.4270230531692505, - 0.4153323173522949, - 0.40871554613113403, - 0.40735316276550293, - 0.41128236055374146, - 0.42039597034454346, - 0.4344453811645508, - 0.45304739475250244, - 0.47569453716278076, - 0.5017691254615784, - 0.5305598378181458, - 0.5612813830375671, - 0.5930957794189453, - 0.6251351833343506, - 0.6565256118774414, - 0.6864109039306641, - 0.7139757871627808, - 0.7384684085845947, - 0.7592206001281738, - 0.44346883893013, - 0.42439740896224976, - 0.4101526141166687, - 0.4011230766773224, - 0.39755505323410034, - 0.3995458483695984, - 0.4070412516593933, - 0.4198366701602936, - 0.43758320808410645, - 0.4597967267036438, - 0.485871285200119, - 0.5150956511497498, - 0.5466727018356323, - 0.5797410607337952, - 0.6133986711502075, - 0.6467275023460388, - 0.6788184642791748, - 0.7087960839271545, - 0.7358427047729492, - 0.7592206001281738, - 0.44346883893013, - 0.424071729183197, - 0.40951022505760193, - 0.40018144249916077, - 0.39633986353874207, - 0.39809027314186096, - 0.40538495779037476, - 0.41802486777305603, - 0.4356653094291687, - 0.45782503485679626, - 0.4838995933532715, - 0.513177752494812, - 0.5448608994483948, - 0.5780847668647766, - 0.6119430661201477, - 0.6455123424530029, - 0.6778768301010132, - 0.7081536650657654, - 0.7355170845985413, - 0.7592206001281738, - 0.44346883893013, - 0.42608141899108887, - 0.4134747385978699, - 0.40599268674850464, - 0.4038392901420593, - 0.40707331895828247, - 0.4156065881252289, - 0.4292062819004059, - 0.4475014805793762, - 0.46999314427375793, - 0.49606770277023315, - 0.5250139832496643, - 0.5560423135757446, - 0.5883064270019531, - 0.6209261417388916, - 0.6530117392539978, - 0.6836880445480347, - 0.7121182084083557, - 0.7375267744064331, - 0.7592206001281738 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.16810062527656555, - 0.12081519514322281, - 0.07650075852870941, - 0.03636611998081207, - 0.0015060007572174072, - -0.027128636837005615, - -0.04875677824020386, - -0.0627884566783905, - -0.0688408613204956, - -0.0667489767074585, - -0.056569814682006836, - -0.03858107328414917, - -0.01327340304851532, - 0.018662825226783752, - 0.0563565194606781, - 0.09877948462963104, - 0.14477455615997314, - 0.19308704137802124, - 0.24239912629127502, - 0.29136574268341064, - 0.16810062527656555, - 0.12342279404401779, - 0.08164483308792114, - 0.04390634596347809, - 0.011236697435379028, - -0.015472888946533203, - -0.035493940114974976, - -0.048280268907547, - -0.05348306894302368, - -0.05096051096916199, - -0.04078134894371033, - -0.023223280906677246, - 0.001234784722328186, - 0.03192567825317383, - 0.0680122822523117, - 0.10851018875837326, - 0.15231478214263916, - 0.19823110103607178, - 0.2450067400932312, - 0.29136574268341064, - 0.16810062527656555, - 0.1309630274772644, - 0.0965196043252945, - 0.0657099187374115, - 0.039374351501464844, - 0.018231287598609924, - 0.0028574317693710327, - -0.006327837705612183, - -0.009074017405509949, - -0.0053060948848724365, - 0.00487305223941803, - 0.02118578553199768, - 0.04318720102310181, - 0.07027703523635864, - 0.10171644389629364, - 0.13664782047271729, - 0.17411835491657257, - 0.21310587227344513, - 0.2525469660758972, - 0.29136574268341064, - 0.16810062527656555, - 0.14261877536773682, - 0.11951316893100739, - 0.09941409528255463, - 0.0828697681427002, - 0.07033149898052216, - 0.06214131414890289, - 0.0585225373506546, - 0.059573978185653687, - 0.06526695191860199, - 0.07544609904289246, - 0.08983378112316132, - 0.108037568628788, - 0.1295609176158905, - 0.15381667017936707, - 0.18014325201511383, - 0.2078225165605545, - 0.2360994517803192, - 0.26420271396636963, - 0.29136574268341064, - 0.16810062527656555, - 0.15712696313858032, - 0.14813381433486938, - 0.14136649668216705, - 0.13700959086418152, - 0.13518193364143372, - 0.13593336939811707, - 0.1392434537410736, - 0.14502184092998505, - 0.15311093628406525, - 0.1632900834083557, - 0.17528164386749268, - 0.1887584775686264, - 0.20335300266742706, - 0.21866710484027863, - 0.23428307473659515, - 0.24977493286132812, - 0.26472008228302, - 0.27871090173721313, - 0.29136574268341064, - 0.16810061037540436, - 0.17291541397571564, - 0.17928004264831543, - 0.1870209276676178, - 0.19592687487602234, - 0.20575496554374695, - 0.2162371277809143, - 0.22708742320537567, - 0.23800989985466003, - 0.24870659410953522, - 0.2588857412338257, - 0.26826968789100647, - 0.27660244703292847, - 0.2836567759513855, - 0.28924015164375305, - 0.29320037364959717, - 0.2954293489456177, - 0.29586631059646606, - 0.29449933767318726, - 0.29136571288108826, - 0.16810061037540436, - 0.18827319145202637, - 0.20957669615745544, - 0.2314300239086151, - 0.2532370686531067, - 0.2744029760360718, - 0.29435038566589355, - 0.31253525614738464, - 0.3284614682197571, - 0.3416946530342102, - 0.3518737852573395, - 0.3587212860584259, - 0.36205029487609863, - 0.36177003383636475, - 0.3578881621360779, - 0.3505105674266815, - 0.339838445186615, - 0.32616299390792847, - 0.3098571300506592, - 0.29136571288108826, - 0.16810059547424316, - 0.20153605937957764, - 0.23574064671993256, - 0.2697813808917999, - 0.30272969603538513, - 0.33368682861328125, - 0.3618084192276001, - 0.38632732629776, - 0.4065747857093811, - 0.42199838161468506, - 0.4321775436401367, - 0.43683457374572754, - 0.4358423948287964, - 0.4292280673980713, - 0.41717207431793213, - 0.40000319480895996, - 0.3781898021697998, - 0.3523269295692444, - 0.32311999797821045, - 0.29136571288108826, - 0.16810059547424316, - 0.21126675605773926, - 0.2549366354942322, - 0.29791900515556335, - 0.33904147148132324, - 0.3771822452545166, - 0.41130104660987854, - 0.44046714901924133, - 0.46388494968414307, - 0.48091572523117065, - 0.4910948872566223, - 0.4941447675228119, - 0.4899821877479553, - 0.47872069478034973, - 0.4606674909591675, - 0.43631500005722046, - 0.40632742643356323, - 0.3715229034423828, - 0.33285069465637207, - 0.29136571288108826, - 0.16810059547424316, - 0.216410830616951, - 0.265084445476532, - 0.3127937912940979, - 0.35823744535446167, - 0.4001758396625519, - 0.43746501207351685, - 0.4690878391265869, - 0.49418163299560547, - 0.5120619535446167, - 0.5222411155700684, - 0.5244414210319519, - 0.5186028480529785, - 0.5048846006393433, - 0.48366105556488037, - 0.4555109739303589, - 0.4212022125720978, - 0.3816707134246826, - 0.3379947543144226, - 0.29136571288108826, - 0.16810059547424316, - 0.216410830616951, - 0.265084445476532, - 0.3127937912940979, - 0.35823744535446167, - 0.4001758396625519, - 0.43746501207351685, - 0.4690878391265869, - 0.49418163299560547, - 0.5120619535446167, - 0.5222411155700684, - 0.5244414210319519, - 0.5186028480529785, - 0.5048846006393433, - 0.48366105556488037, - 0.4555109739303589, - 0.4212022125720978, - 0.3816707134246826, - 0.3379947543144226, - 0.29136571288108826, - 0.16810059547424316, - 0.21126675605773926, - 0.2549366354942322, - 0.29791900515556335, - 0.33904147148132324, - 0.3771822452545166, - 0.41130104660987854, - 0.44046714901924133, - 0.46388494968414307, - 0.48091572523117065, - 0.4910948872566223, - 0.4941447675228119, - 0.4899821877479553, - 0.47872069478034973, - 0.4606674909591675, - 0.43631500005722046, - 0.40632742643356323, - 0.3715229034423828, - 0.33285069465637207, - 0.29136571288108826, - 0.16810059547424316, - 0.20153605937957764, - 0.23574064671993256, - 0.2697813808917999, - 0.30272969603538513, - 0.33368685841560364, - 0.3618084192276001, - 0.3863273561000824, - 0.4065747857093811, - 0.42199844121932983, - 0.4321775734424591, - 0.43683457374572754, - 0.4358423948287964, - 0.4292280673980713, - 0.41717207431793213, - 0.40000319480895996, - 0.3781898021697998, - 0.3523269295692444, - 0.32311999797821045, - 0.29136571288108826, - 0.16810061037540436, - 0.18827319145202637, - 0.20957668125629425, - 0.23143000900745392, - 0.2532370388507843, - 0.2744029462337494, - 0.29435035586357117, - 0.31253522634506226, - 0.3284614384174347, - 0.34169459342956543, - 0.3518737554550171, - 0.3587212562561035, - 0.36205023527145386, - 0.36177000403404236, - 0.3578881323337555, - 0.35051053762435913, - 0.339838445186615, - 0.3261629641056061, - 0.3098571300506592, - 0.29136571288108826, - 0.16810061037540436, - 0.17291541397571564, - 0.17928005754947662, - 0.1870209276676178, - 0.19592688977718353, - 0.20575498044490814, - 0.2162371426820755, - 0.22708743810653687, - 0.23800991475582123, - 0.2487066090106964, - 0.25888577103614807, - 0.26826971769332886, - 0.27660247683525085, - 0.2836567759513855, - 0.28924018144607544, - 0.29320037364959717, - 0.2954293489456177, - 0.29586634039878845, - 0.29449933767318726, - 0.29136571288108826, - 0.16810062527656555, - 0.15712697803974152, - 0.14813384413719177, - 0.14136654138565063, - 0.1370096355676651, - 0.1351819932460785, - 0.13593345880508423, - 0.13924352824687958, - 0.14502191543579102, - 0.1531110256910324, - 0.16329017281532288, - 0.17528171837329865, - 0.18875855207443237, - 0.20335307717323303, - 0.2186671644449234, - 0.23428311944007874, - 0.2497749626636505, - 0.2647201120853424, - 0.27871090173721313, - 0.29136574268341064, - 0.16810062527656555, - 0.14261877536773682, - 0.11951317638158798, - 0.09941409528255463, - 0.08286978304386139, - 0.07033152878284454, - 0.06214132905006409, - 0.05852256715297699, - 0.059574007987976074, - 0.06526696681976318, - 0.07544611394405365, - 0.0898338109254837, - 0.10803759843111038, - 0.1295609325170517, - 0.15381668508052826, - 0.18014326691627502, - 0.2078225314617157, - 0.2360994517803192, - 0.26420271396636963, - 0.29136574268341064, - 0.16810062527656555, - 0.1309630125761032, - 0.0965195894241333, - 0.0657099038362503, - 0.039374321699142456, - 0.018231257796287537, - 0.002857416868209839, - -0.006327882409095764, - -0.009074047207832336, - -0.005306139588356018, - 0.004873007535934448, - 0.021185755729675293, - 0.043187156319618225, - 0.07027702033519745, - 0.10171641409397125, - 0.13664782047271729, - 0.17411832511425018, - 0.21310587227344513, - 0.2525469660758972, - 0.29136574268341064, - 0.16810062527656555, - 0.1234227865934372, - 0.08164481818675995, - 0.0439063161611557, - 0.011236697435379028, - -0.01547291874885559, - -0.035493940114974976, - -0.04828032851219177, - -0.05348312854766846, - -0.05096057057380676, - -0.0407814085483551, - -0.02322334051132202, - 0.0012347251176834106, - 0.031925663352012634, - 0.06801222264766693, - 0.10851017385721207, - 0.15231475234031677, - 0.19823108613491058, - 0.24500672519207, - 0.29136574268341064, - 0.16810062527656555, - 0.12081519514322281, - 0.07650075852870941, - 0.03636611998081207, - 0.0015060007572174072, - -0.027128636837005615, - -0.04875677824020386, - -0.0627884566783905, - -0.0688408613204956, - -0.0667489767074585, - -0.056569814682006836, - -0.03858107328414917, - -0.01327340304851532, - 0.018662825226783752, - 0.0563565194606781, - 0.09877948462963104, - 0.14477455615997314, - 0.19308704137802124, - 0.24239912629127502, - 0.29136574268341064 - ], - "y": [ - 0.09569922089576721, - 0.10426690429449081, - 0.1147606298327446, - 0.12689417600631714, - 0.14033657312393188, - 0.15472111105918884, - 0.1696554720401764, - 0.18473224341869354, - 0.1995401829481125, - 0.2136753797531128, - 0.22675223648548126, - 0.23841407895088196, - 0.24834278225898743, - 0.2562675476074219, - 0.2619721591472626, - 0.26530104875564575, - 0.2661634087562561, - 0.26453569531440735, - 0.26046231389045715, - 0.25405439734458923, - 0.09569922834634781, - 0.08906112611293793, - 0.08476385474205017, - 0.08292463421821594, - 0.08359362185001373, - 0.08675257861614227, - 0.09231533855199814, - 0.10013014823198318, - 0.10998386144638062, - 0.1216076910495758, - 0.13468456268310547, - 0.14885775744915009, - 0.16374069452285767, - 0.17892740666866302, - 0.1940036118030548, - 0.2085580974817276, - 0.22219383716583252, - 0.23453891277313232, - 0.24525654315948486, - 0.25405439734458923, - 0.09569922834634781, - 0.07469171285629272, - 0.056416988372802734, - 0.04137353599071503, - 0.02997170388698578, - 0.02252250909805298, - 0.019229158759117126, - 0.020181432366371155, - 0.02535340189933777, - 0.034604012966156006, - 0.047680869698524475, - 0.06422729790210724, - 0.08379197865724564, - 0.10584121197462082, - 0.12977352738380432, - 0.15493617951869965, - 0.1806427538394928, - 0.2061920464038849, - 0.23088712990283966, - 0.25405439734458923, - 0.0956992357969284, - 0.06271582096815109, - 0.032791852951049805, - 0.006743595004081726, - -0.014718413352966309, - -0.0310087651014328, - -0.04168310761451721, - -0.04645024240016937, - -0.045180171728134155, - -0.03790748119354248, - -0.02483062446117401, - -0.006306275725364685, - 0.017160311341285706, - 0.04492896795272827, - 0.07624225318431854, - 0.11024605482816696, - 0.1460128128528595, - 0.18256691098213196, - 0.21891123056411743, - 0.25405439734458923, - 0.0956992357969284, - 0.05443120002746582, - 0.016448602080345154, - -0.017212465405464172, - -0.045633867383003235, - -0.06804031133651733, - -0.08382058143615723, - -0.0925443172454834, - -0.09397342801094055, - -0.08806905150413513, - -0.07499217987060547, - -0.05509953200817108, - -0.028933748602867126, - 0.002791464328765869, - 0.03921070694923401, - 0.07933058589696884, - 0.1220567375421524, - 0.1662236601114273, - 0.21062661707401276, - 0.25405439734458923, - 0.0956992357969284, - 0.05073563754558563, - 0.009158298373222351, - -0.027898699045181274, - -0.05942448973655701, - -0.08455914258956909, - -0.10261708498001099, - -0.11310571432113647, - -0.11573892831802368, - -0.11044487357139587, - -0.09736800193786621, - -0.07686501741409302, - -0.049495160579681396, - -0.016005009412765503, - 0.022691845893859863, - 0.06553996354341507, - 0.1113705113530159, - 0.1589333415031433, - 0.20693105459213257, - 0.25405439734458923, - 0.0956992357969284, - 0.05202959477901459, - 0.011710911989212036, - -0.024157017469406128, - -0.05459584295749664, - -0.07877525687217712, - -0.0960356593132019, - -0.10590633749961853, - -0.1081179678440094, - -0.10261023044586182, - -0.08953335881233215, - -0.06924407184123993, - -0.04229578375816345, - -0.009423613548278809, - 0.028475746512413025, - 0.07036859542131424, - 0.11511218547821045, - 0.1614859700202942, - 0.20822501182556152, - 0.25405439734458923, - 0.0956992357969284, - 0.05817286670207977, - 0.023829862475395203, - -0.006392940878868103, - -0.031671226024627686, - -0.051315367221832275, - -0.06478960812091827, - -0.07172638177871704, - -0.0719364583492279, - -0.06541408598423004, - -0.05233722925186157, - -0.033062562346458435, - -0.008115828037261963, - 0.02182246744632721, - 0.05593562126159668, - 0.09329324215650558, - 0.13287626206874847, - 0.17360492050647736, - 0.2143682837486267, - 0.25405439734458923, - 0.0956992357969284, - 0.06849971413612366, - 0.04420188069343567, - 0.023468539118766785, - 0.006865188479423523, - -0.005155220627784729, - -0.012264832854270935, - -0.014269709587097168, - -0.0111151784658432, - -0.002887234091758728, - 0.010189622640609741, - 0.02775871753692627, - 0.04934084415435791, - 0.07434722036123276, - 0.10209578275680542, - 0.1318296492099762, - 0.16273774206638336, - 0.19397693872451782, - 0.2246951162815094, - 0.25405439734458923, - 0.09569922834634781, - 0.08189107477664948, - 0.07061932235956192, - 0.062191449105739594, - 0.05683733522891998, - 0.054703034460544586, - 0.05584675818681717, - 0.06023731082677841, - 0.06775493174791336, - 0.07819456607103348, - 0.09127143025398254, - 0.10662882775068283, - 0.1238478571176529, - 0.14245882630348206, - 0.16195406019687653, - 0.18180181086063385, - 0.20146065950393677, - 0.22039437294006348, - 0.2380864918231964, - 0.25405439734458923, - 0.09569922834634781, - 0.09689578413963318, - 0.10021945834159851, - 0.10557959973812103, - 0.11282998323440552, - 0.12177283316850662, - 0.13216422498226166, - 0.14372070133686066, - 0.15612705051898956, - 0.1690448373556137, - 0.18212170898914337, - 0.19500094652175903, - 0.20733125507831573, - 0.21877630054950714, - 0.22902387380599976, - 0.23779445886611938, - 0.2448488175868988, - 0.24999451637268066, - 0.2530911862850189, - 0.25405439734458923, - 0.09569922089576721, - 0.1118878498673439, - 0.129794642329216, - 0.14893117547035217, - 0.16877543926239014, - 0.1887861043214798, - 0.2084173858165741, - 0.22713376581668854, - 0.2444247007369995, - 0.25981855392456055, - 0.2728954255580902, - 0.2832985818386078, - 0.2907443046569824, - 0.2950294613838196, - 0.29603713750839233, - 0.293739914894104, - 0.28820037841796875, - 0.27956968545913696, - 0.26808327436447144, - 0.25405439734458923, - 0.09569922089576721, - 0.12524265050888062, - 0.15613995492458344, - 0.18754836916923523, - 0.21861113607883453, - 0.2484809309244156, - 0.2763430178165436, - 0.3014373779296875, - 0.3230794668197632, - 0.34067898988723755, - 0.3537558317184448, - 0.36195334792137146, - 0.3650479316711426, - 0.36295509338378906, - 0.3557319939136505, - 0.3435756266117096, - 0.3268175721168518, - 0.3059149980545044, - 0.28143805265426636, - 0.25405436754226685, - 0.09569921344518661, - 0.13551297783851624, - 0.17640048265457153, - 0.21724645793437958, - 0.2569366693496704, - 0.29438847303390503, - 0.3285803496837616, - 0.3585796058177948, - 0.3835679292678833, - 0.40286362171173096, - 0.4159404933452606, - 0.42244184017181396, - 0.4221901595592499, - 0.41519245505332947, - 0.40163952112197876, - 0.3819011449813843, - 0.35651564598083496, - 0.3261755406856537, - 0.29170840978622437, - 0.25405436754226685, - 0.09569921344518661, - 0.14158588647842407, - 0.1883806586265564, - 0.2348071038722992, - 0.27959877252578735, - 0.3215339183807373, - 0.35946860909461975, - 0.3923681378364563, - 0.4193350672721863, - 0.4396337866783142, - 0.45271065831184387, - 0.45820897817611694, - 0.4559786915779114, - 0.44608068466186523, - 0.42878496646881104, - 0.4045632481575012, - 0.37407630681991577, - 0.33815568685531616, - 0.2977812886238098, - 0.25405436754226685, - 0.09569921344518661, - 0.14280331134796143, - 0.19078226387500763, - 0.23832738399505615, - 0.2841417193412781, - 0.32697558403015137, - 0.3656606078147888, - 0.3991415798664093, - 0.4265051484107971, - 0.44700491428375244, - 0.4600817859172821, - 0.4653790593147278, - 0.4627521336078644, - 0.4522726833820343, - 0.4342266619205475, - 0.40910619497299194, - 0.37759658694267273, - 0.340557336807251, - 0.29899871349334717, - 0.25405436754226685, - 0.09569921344518661, - 0.1390332579612732, - 0.18334504961967468, - 0.22742582857608795, - 0.27007320523262024, - 0.31012386083602905, - 0.34648534655570984, - 0.3781657814979553, - 0.4043010473251343, - 0.42417818307876587, - 0.43725505471229553, - 0.44317495822906494, - 0.4417763352394104, - 0.4330974221229553, - 0.4173749089241028, - 0.3950376808643341, - 0.3666950464248657, - 0.33312010765075684, - 0.29522866010665894, - 0.25405436754226685, - 0.09569921344518661, - 0.13068433105945587, - 0.16687491536140442, - 0.20328375697135925, - 0.2389177531003952, - 0.2728048264980316, - 0.3040207028388977, - 0.3317139148712158, - 0.3551290035247803, - 0.373627245426178, - 0.38670408725738525, - 0.39400288462638855, - 0.3953244686126709, - 0.3906328082084656, - 0.38005590438842773, - 0.36388224363327026, - 0.34255295991897583, - 0.3166499733924866, - 0.2868797481060028, - 0.25405436754226685, - 0.09569922089576721, - 0.11866123974323273, - 0.14315667748451233, - 0.1685173511505127, - 0.19405150413513184, - 0.21906261146068573, - 0.24286843836307526, - 0.2648196518421173, - 0.2843174338340759, - 0.30083000659942627, - 0.31390684843063354, - 0.3231913447380066, - 0.3284302055835724, - 0.32948052883148193, - 0.32631367444992065, - 0.3190159797668457, - 0.30778658390045166, - 0.2929317355155945, - 0.27485665678977966, - 0.25405439734458923, - 0.09569922089576721, - 0.10426689684391022, - 0.1147606149315834, - 0.12689416110515594, - 0.1403365433216095, - 0.15472108125686646, - 0.1696554273366928, - 0.18473219871520996, - 0.1995401382446289, - 0.21367532014846802, - 0.22675219178199768, - 0.23841401934623718, - 0.24834275245666504, - 0.2562674880027771, - 0.2619721293449402, - 0.26530101895332336, - 0.2661633789539337, - 0.26453566551208496, - 0.26046231389045715, - 0.25405439734458923 - ], - "z": [ - 0.7164178490638733, - 0.7335597276687622, - 0.7545551061630249, - 0.778831422328949, - 0.8057264089584351, - 0.8345064520835876, - 0.8643864393234253, - 0.8945514559745789, - 0.9241786003112793, - 0.9524596929550171, - 0.9786233305931091, - 1.0019558668136597, - 1.0218207836151123, - 1.0376763343811035, - 1.0490899085998535, - 1.0557502508163452, - 1.0574755668640137, - 1.0542188882827759, - 1.0460690259933472, - 1.0332484245300293, - 0.7164178490638733, - 0.740145206451416, - 0.7675464749336243, - 0.7978742718696594, - 0.8303012847900391, - 0.8639430403709412, - 0.8978818655014038, - 0.9311919212341309, - 0.962964653968811, - 0.9923334121704102, - 1.018497109413147, - 1.0407419204711914, - 1.058461308479309, - 1.071171760559082, - 1.078526496887207, - 1.0803251266479492, - 1.0765184164047241, - 1.06721031665802, - 1.0526546239852905, - 1.0332484245300293, - 0.7164178490638733, - 0.7443935871124268, - 0.7759274244308472, - 0.8101590871810913, - 0.8461549282073975, - 0.8829330205917358, - 0.9194902181625366, - 0.954829216003418, - 0.9879862070083618, - 1.0180566310882568, - 1.044220209121704, - 1.0657634735107422, - 1.0820986032485962, - 1.0927801132202148, - 1.0975165367126465, - 1.0961787700653076, - 1.0888032913208008, - 1.0755912065505981, - 1.0569030046463013, - 1.0332484245300293, - 0.7164178490638733, - 0.7458444833755493, - 0.7787896990776062, - 0.814354658126831, - 0.8515692949295044, - 0.8894185423851013, - 0.9268699884414673, - 0.9629018902778625, - 0.99653160572052, - 1.026841640472412, - 1.053005337715149, - 1.0743088722229004, - 1.0901713371276855, - 1.1001598834991455, - 1.1040019989013672, - 1.1015931367874146, - 1.092998743057251, - 1.078453540802002, - 1.0583539009094238, - 1.0332484245300293, - 0.7164178490638733, - 0.7443407773971558, - 0.7758231163024902, - 0.8100062608718872, - 0.8459576964378357, - 0.882696807384491, - 0.9192214012145996, - 0.954535186290741, - 0.9876748919487, - 1.017736554145813, - 1.0439002513885498, - 1.065452218055725, - 1.0818045139312744, - 1.0925112962722778, - 1.0972802639007568, - 1.095981478691101, - 1.0886504650115967, - 1.0754868984222412, - 1.0568500757217407, - 1.0332484245300293, - 0.7164178490638733, - 0.7400451898574829, - 0.7673492431640625, - 0.7975851893424988, - 0.8299282193183899, - 0.8634961247444153, - 0.8973733186721802, - 0.9306356310844421, - 0.9623758792877197, - 0.9917280673980713, - 1.017891764640808, - 1.0401531457901, - 1.0579050779342651, - 1.0706632137298584, - 1.0780795812606812, - 1.0799520015716553, - 1.0762293338775635, - 1.0670130252838135, - 1.0525546073913574, - 1.0332484245300293, - 0.7164178490638733, - 0.7334234118461609, - 0.7542862892150879, - 0.7784373760223389, - 0.8052178621292114, - 0.8338972926139832, - 0.863693356513977, - 0.8937932848930359, - 0.9233760237693787, - 0.9516345858573914, - 0.9777982234954834, - 1.0011532306671143, - 1.0210626125335693, - 1.0369832515716553, - 1.048480749130249, - 1.0552417039871216, - 1.0570814609527588, - 1.0539500713348389, - 1.0459327697753906, - 1.0332484245300293, - 0.7164178490638733, - 0.7251929640769958, - 0.7380498647689819, - 0.7546378374099731, - 0.7745044827461243, - 0.7971077561378479, - 0.821831226348877, - 0.8480004668235779, - 0.8749015927314758, - 0.9018008708953857, - 0.9279645085334778, - 0.9526788592338562, - 0.9752697944641113, - 0.9951211214065552, - 1.0116912126541138, - 1.0245282649993896, - 1.0332820415496826, - 1.037713646888733, - 1.0377023220062256, - 1.0332484245300293, - 0.7164178490638733, - 0.716245710849762, - 0.7203993797302246, - 0.7287656664848328, - 0.7411162257194519, - 0.7571142911911011, - 0.7763233780860901, - 0.7982195615768433, - 0.8222055435180664, - 0.8476271033287048, - 0.8737908005714417, - 0.8999828696250916, - 0.9254889488220215, - 0.9496132135391235, - 0.9716977477073669, - 0.9911400079727173, - 1.0074098110198975, - 1.0200631618499756, - 1.0287550687789917, - 1.0332484245300293, - 0.7164178490638733, - 0.7075512409210205, - 0.703247606754303, - 0.7036243677139282, - 0.7086713314056396, - 0.7182506918907166, - 0.7321012020111084, - 0.7498451471328735, - 0.7709983587265015, - 0.7949839234352112, - 0.821147620677948, - 0.8487756252288818, - 0.877114474773407, - 0.9053910970687866, - 0.9328341484069824, - 0.958695113658905, - 0.9822685122489929, - 1.0029113292694092, - 1.0200605392456055, - 1.0332484245300293, - 0.7164178490638733, - 0.7000517249107361, - 0.6884531378746033, - 0.6819385886192322, - 0.6806856393814087, - 0.6847285032272339, - 0.6939569711685181, - 0.70811927318573, - 0.7268290519714355, - 0.7495760321617126, - 0.7757397294044495, - 0.8046063780784607, - 0.8353886604309082, - 0.8672468662261963, - 0.8993119597434998, - 0.9307094216346741, - 0.9605827331542969, - 0.988116979598999, - 1.0125610828399658, - 1.0332484245300293, - 0.7164178490638733, - 0.6945598721504211, - 0.677619218826294, - 0.6660581231117249, - 0.6601918339729309, - 0.6601804494857788, - 0.6660241484642029, - 0.6775636672973633, - 0.6944841146469116, - 0.7163240909576416, - 0.7424877285957336, - 0.7722614407539368, - 0.8048330545425415, - 0.8393140435218811, - 0.8747638463973999, - 0.9102156162261963, - 0.9447022676467896, - 0.9772830605506897, - 1.0070692300796509, - 1.0332484245300293, - 0.7164178490638733, - 0.6916707754135132, - 0.6719199419021606, - 0.6577039957046509, - 0.6494108438491821, - 0.6472665071487427, - 0.6513296961784363, - 0.6614894270896912, - 0.6774685978889465, - 0.6988314390182495, - 0.7249950766563416, - 0.7552459239959717, - 0.7887587547302246, - 0.8246195316314697, - 0.8618499636650085, - 0.8994345664978027, - 0.9363481402397156, - 0.9715837240219116, - 1.0041801929473877, - 1.0332484245300293, - 0.7164178490638733, - 0.6916975975036621, - 0.6719727516174316, - 0.6577814817428589, - 0.6495108008384705, - 0.6473863124847412, - 0.6514659523963928, - 0.6616384983062744, - 0.677626371383667, - 0.6989936232566833, - 0.7251572608947754, - 0.7554036974906921, - 0.7889078855514526, - 0.824755847454071, - 0.8619697690010071, - 0.8995345830917358, - 0.9364256262779236, - 0.9716365933418274, - 1.0042070150375366, - 1.0332484245300293, - 0.7164178490638733, - 0.6946372985839844, - 0.677772045135498, - 0.6662821769714355, - 0.6604809761047363, - 0.660526692867279, - 0.666418194770813, - 0.6779946684837341, - 0.6949403882026672, - 0.7167931795120239, - 0.742956817150116, - 0.7727177143096924, - 0.8052640557289124, - 0.8397080898284912, - 0.8751101493835449, - 0.9105047583580017, - 0.9449262619018555, - 0.9774358868598938, - 1.0071467161178589, - 1.0332484245300293, - 0.7164178490638733, - 0.7001714706420898, - 0.6886893510818481, - 0.6822848320007324, - 0.6811324954032898, - 0.6852638125419617, - 0.6945660710334778, - 0.7087855339050293, - 0.7275343537330627, - 0.7503011226654053, - 0.7764647603034973, - 0.8053116798400879, - 0.8360549211502075, - 0.867855966091156, - 0.8998472690582275, - 0.9311562776565552, - 0.9609289765357971, - 0.9883531928062439, - 1.0126808881759644, - 1.0332484245300293, - 0.7164178490638733, - 0.707700252532959, - 0.70354163646698, - 0.7040554285049438, - 0.7092275619506836, - 0.7189170122146606, - 0.7328594326972961, - 0.7506744861602783, - 0.7718762755393982, - 0.7958865165710449, - 0.822050154209137, - 0.8496536016464233, - 0.8779438734054565, - 0.9061492681503296, - 0.9335004687309265, - 0.9592514038085938, - 0.9826995730400085, - 1.003205418586731, - 1.0202096700668335, - 1.0332484245300293, - 0.7164178490638733, - 0.7164078950881958, - 0.7207193970680237, - 0.7292347550392151, - 0.7417216300964355, - 0.7578393816947937, - 0.7771484851837158, - 0.799122154712677, - 0.8231610059738159, - 0.8486093282699585, - 0.8747730255126953, - 0.9009383320808411, - 0.9263915419578552, - 0.950438380241394, - 0.9724228382110596, - 0.9917454123497009, - 1.0078788995742798, - 1.0203832387924194, - 1.0289173126220703, - 1.0332484245300293, - 0.7164178490638733, - 0.7253507375717163, - 0.7383611798286438, - 0.7550941705703735, - 0.7750933766365051, - 0.7978131771087646, - 0.8226338624954224, - 0.8488784432411194, - 0.8758310079574585, - 0.9027563333511353, - 0.9289199709892273, - 0.9536082744598389, - 0.9761478304862976, - 0.9959237575531006, - 1.0123965740203857, - 1.0251171588897705, - 1.033738374710083, - 1.03802490234375, - 1.0378601551055908, - 1.0332484245300293, - 0.7164178490638733, - 0.7335597276687622, - 0.7545551061630249, - 0.778831422328949, - 0.8057264089584351, - 0.8345064520835876, - 0.8643864989280701, - 0.8945514559745789, - 0.9241786003112793, - 0.9524596929550171, - 0.9786233901977539, - 1.0019558668136597, - 1.0218209028244019, - 1.0376763343811035, - 1.0490899085998535, - 1.0557502508163452, - 1.0574755668640137, - 1.0542188882827759, - 1.0460691452026367, - 1.0332484245300293 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.2961660623550415, - 0.27573883533477783, - 0.2568133771419525, - 0.23990598320960999, - 0.22547782957553864, - 0.21392247080802917, - 0.20555511116981506, - 0.20060397684574127, - 0.19920414686203003, - 0.20139378309249878, - 0.20711317658424377, - 0.21620629727840424, - 0.22842511534690857, - 0.24343633651733398, - 0.26083052158355713, - 0.28013312816619873, - 0.30081772804260254, - 0.32232001423835754, - 0.3440535068511963, - 0.36542534828186035, - 0.2961660623550415, - 0.29462286829948425, - 0.2940663695335388, - 0.29451173543930054, - 0.2959468364715576, - 0.298332542181015, - 0.301603764295578, - 0.30567124485969543, - 0.3104240894317627, - 0.31573256850242615, - 0.32145196199417114, - 0.3274262249469757, - 0.3334923982620239, - 0.3394850194454193, - 0.34524059295654297, - 0.3506021797657013, - 0.3554234802722931, - 0.35957300662994385, - 0.3629375398159027, - 0.36542534828186035, - 0.2961660623550415, - 0.3137252926826477, - 0.33175021409988403, - 0.34974905848503113, - 0.36723092198371887, - 0.38371890783309937, - 0.3987632989883423, - 0.41195374727249146, - 0.42293035984039307, - 0.4313938021659851, - 0.4371131956577301, - 0.43993252515792847, - 0.43977487087249756, - 0.4366445541381836, - 0.4306269884109497, - 0.42188623547554016, - 0.4106608033180237, - 0.39725685119628906, - 0.38203999400138855, - 0.36542534828186035, - 0.2961660623550415, - 0.33097612857818604, - 0.3657812774181366, - 0.39963212609291077, - 0.4316052794456482, - 0.46082860231399536, - 0.48650500178337097, - 0.507934033870697, - 0.5245311856269836, - 0.5358437299728394, - 0.5415631532669067, - 0.541533350944519, - 0.5357551574707031, - 0.5243862867355347, - 0.5077366828918457, - 0.4862605929374695, - 0.4605438709259033, - 0.4312879145145416, - 0.3992908000946045, - 0.36542534828186035, - 0.2961660325527191, - 0.3445059061050415, - 0.3924717903137207, - 0.4387553036212921, - 0.4820939898490906, - 0.5213056802749634, - 0.555320680141449, - 0.5832112431526184, - 0.6042165756225586, - 0.6177637577056885, - 0.6234830617904663, - 0.6212188005447388, - 0.6110323667526245, - 0.5932018756866455, - 0.568213701248169, - 0.5367493629455566, - 0.49966704845428467, - 0.45797842741012573, - 0.41282060742378235, - 0.36542534828186035, - 0.2961660325527191, - 0.35284850001335144, - 0.40892940759658813, - 0.4628790616989136, - 0.513225793838501, - 0.5585963129997253, - 0.5977530479431152, - 0.6296278834342957, - 0.6533513069152832, - 0.668276309967041, - 0.6739957332611084, - 0.6703535318374634, - 0.6574490070343018, - 0.6356343030929565, - 0.6055043935775757, - 0.567881166934967, - 0.5237908363342285, - 0.47443604469299316, - 0.4211632013320923, - 0.36542534828186035, - 0.2961660325527191, - 0.3550998568534851, - 0.4133707284927368, - 0.4693891406059265, - 0.5216271281242371, - 0.5686596632003784, - 0.6092039346694946, - 0.6421539783477783, - 0.6666109561920166, - 0.6819077730178833, - 0.6876271367073059, - 0.683613121509552, - 0.6699751615524292, - 0.6470851898193359, - 0.6155678033828735, - 0.5762825012207031, - 0.5303009152412415, - 0.47887736558914185, - 0.42341455817222595, - 0.36542534828186035, - 0.2961660325527191, - 0.35101601481437683, - 0.4053143858909607, - 0.4575801193714142, - 0.5063875317573547, - 0.5504052042961121, - 0.5884324908256531, - 0.6194322109222412, - 0.6425585746765137, - 0.657180905342102, - 0.6629003286361694, - 0.6595607995986938, - 0.6472533345222473, - 0.6263138055801392, - 0.5973132848739624, - 0.561042845249176, - 0.5184918642044067, - 0.4708210229873657, - 0.4193306863307953, - 0.36542534828186035, - 0.2961660623550415, - 0.3410394787788391, - 0.3856334984302521, - 0.42873167991638184, - 0.469158411026001, - 0.5058109760284424, - 0.5376895666122437, - 0.5639246702194214, - 0.5838006138801575, - 0.5967752933502197, - 0.6024945974349976, - 0.6008027791976929, - 0.5917458534240723, - 0.575570821762085, - 0.5527190566062927, - 0.5238137245178223, - 0.489643394947052, - 0.4511401355266571, - 0.40935418009757996, - 0.36542534828186035, - 0.2961660623550415, - 0.32625141739845276, - 0.35646072030067444, - 0.38596999645233154, - 0.41397422552108765, - 0.43970954418182373, - 0.46247398853302, - 0.48164665699005127, - 0.49670442938804626, - 0.507236659526825, - 0.5129560232162476, - 0.5137065649032593, - 0.5094677805900574, - 0.5003552436828613, - 0.4866176247596741, - 0.46862953901290894, - 0.4468817114830017, - 0.42196738719940186, - 0.3945661187171936, - 0.36542534828186035, - 0.2961660623550415, - 0.30825430154800415, - 0.3209574222564697, - 0.3339289426803589, - 0.34681496024131775, - 0.3592640161514282, - 0.3709365427494049, - 0.38151413202285767, - 0.39070823788642883, - 0.39826810359954834, - 0.40398746728897095, - 0.40771037340164185, - 0.40933525562286377, - 0.40881776809692383, - 0.4061720669269562, - 0.40147027373313904, - 0.39484065771102905, - 0.38646405935287476, - 0.376569002866745, - 0.36542534828186035, - 0.2961660623550415, - 0.28899842500686646, - 0.28297093510627747, - 0.27824798226356506, - 0.27495837211608887, - 0.2731918692588806, - 0.2729966640472412, - 0.2743780314922333, - 0.27729836106300354, - 0.2816779315471649, - 0.2873973250389099, - 0.29430052638053894, - 0.30219918489456177, - 0.31087788939476013, - 0.32009992003440857, - 0.32961368560791016, - 0.3391597270965576, - 0.3484775722026825, - 0.3573131263256073, - 0.36542534828186035, - 0.2961660623550415, - 0.2705704867839813, - 0.24661767482757568, - 0.2249610424041748, - 0.2061912715435028, - 0.19082042574882507, - 0.17926771938800812, - 0.17184828221797943, - 0.16876451671123505, - 0.17010058462619781, - 0.1758199781179428, - 0.18576666712760925, - 0.19966942071914673, - 0.21714892983436584, - 0.23772844672203064, - 0.2608465850353241, - 0.28587275743484497, - 0.3121243119239807, - 0.3388851583003998, - 0.36542534828186035, - 0.2961660623550415, - 0.2549673616886139, - 0.2158370465040207, - 0.1798424869775772, - 0.14796558022499084, - 0.12107579410076141, - 0.09990657866001129, - 0.08503541350364685, - 0.07686802744865417, - 0.07562708854675293, - 0.08134646713733673, - 0.09387016296386719, - 0.11285655200481415, - 0.1377878487110138, - 0.1679838001728058, - 0.20262087881565094, - 0.24075421690940857, - 0.2813436985015869, - 0.32328203320503235, - 0.36542534828186035, - 0.2961660623550415, - 0.24387995898723602, - 0.19396468997001648, - 0.14778178930282593, - 0.10659104585647583, - 0.07151603698730469, - 0.043513476848602295, - 0.02334725856781006, - 0.011567384004592896, - 0.008495241403579712, - 0.01421460509300232, - 0.028569549322128296, - 0.05116838216781616, - 0.0813947319984436, - 0.11842405796051025, - 0.16124632954597473, - 0.20869353413581848, - 0.2594713270664215, - 0.3121946454048157, - 0.36542537808418274, - 0.2961660623550415, - 0.23850974440574646, - 0.18337072432041168, - 0.13225309550762177, - 0.08655117452144623, - 0.04751163721084595, - 0.016199320554733276, - -0.006531625986099243, - -0.020061194896697998, - -0.02402019500732422, - -0.01830083131790161, - -0.0030590295791625977, - 0.02128949761390686, - 0.0540805459022522, - 0.09441964328289032, - 0.14120647311210632, - 0.19316484034061432, - 0.2488773614168167, - 0.3068244159221649, - 0.36542537808418274, - 0.2961660623550415, - 0.23943865299224854, - 0.18520322442054749, - 0.13493916392326355, - 0.09001758694648743, - 0.05166381597518921, - 0.020924001932144165, - -0.001363307237625122, - -0.014590173959732056, - -0.01839578151702881, - -0.012676417827606201, - 0.0024119913578033447, - 0.02645781636238098, - 0.058805227279663086, - 0.09857182204723358, - 0.14467290043830872, - 0.1958509087562561, - 0.2507098615169525, - 0.3077533543109894, - 0.36542537808418274, - 0.2961660623550415, - 0.2465660572052002, - 0.19926361739635468, - 0.15554901957511902, - 0.1166146993637085, - 0.08352270722389221, - 0.057175666093826294, - 0.03829222917556763, - 0.027387529611587524, - 0.02475905418395996, - 0.03047841787338257, - 0.044389694929122925, - 0.06611335277557373, - 0.09505689144134521, - 0.13043071329593658, - 0.17127001285552979, - 0.21646076440811157, - 0.2647702693939209, - 0.31488075852394104, - 0.36542537808418274, - 0.2961660623550415, - 0.25911957025527954, - 0.22402822971343994, - 0.1918492317199707, - 0.16346032917499542, - 0.1396358758211136, - 0.12102578580379486, - 0.10813765227794647, - 0.10132308304309845, - 0.10076791048049927, - 0.10648730397224426, - 0.11832523345947266, - 0.13595879077911377, - 0.15890702605247498, - 0.18654391169548035, - 0.21811562776565552, - 0.25276094675064087, - 0.28953486680984497, - 0.3274342715740204, - 0.36542534828186035, - 0.2961660623550415, - 0.27573883533477783, - 0.2568134069442749, - 0.23990601301193237, - 0.22547787427902222, - 0.21392251551151276, - 0.20555515587329865, - 0.20060402154922485, - 0.1992041915655136, - 0.20139384269714355, - 0.20711323618888855, - 0.21620634198188782, - 0.22842517495155334, - 0.24343639612197876, - 0.2608305513858795, - 0.2801331877708435, - 0.3008177578449249, - 0.32232004404067993, - 0.3440535068511963, - 0.36542534828186035 - ], - "y": [ - 0.263005793094635, - 0.21252264082431793, - 0.1646093726158142, - 0.12057293951511383, - 0.08161449432373047, - 0.048796772956848145, - 0.023014962673187256, - 0.004972249269485474, - -0.004839092493057251, - -0.006151527166366577, - 0.0010707676410675049, - 0.01663079857826233, - 0.04010409116744995, - 0.07085040211677551, - 0.10803106427192688, - 0.1506318300962448, - 0.19749075174331665, - 0.2473295032978058, - 0.29878872632980347, - 0.35046467185020447, - 0.263005793094635, - 0.20717525482177734, - 0.1540604680776596, - 0.10511024296283722, - 0.061659812927246094, - 0.024894416332244873, - -0.004183083772659302, - -0.024779587984085083, - -0.03633320331573486, - -0.03852880001068115, - -0.03130650520324707, - -0.014863312244415283, - 0.010352253913879395, - 0.043652355670928955, - 0.08412869274616241, - 0.13067716360092163, - 0.18202805519104004, - 0.23678059875965118, - 0.2934413254261017, - 0.35046467185020447, - 0.263005793094635, - 0.20794260501861572, - 0.155574232339859, - 0.10732914507389069, - 0.06452332437038422, - 0.028324395418167114, - -0.00028017163276672363, - -0.020510196685791016, - -0.03181380033493042, - -0.03388264775276184, - -0.02666035294532776, - -0.01034390926361084, - 0.014621645212173462, - 0.04755526781082153, - 0.08755867183208466, - 0.13354064524173737, - 0.1842469573020935, - 0.23829436302185059, - 0.29420867562294006, - 0.35046467185020447, - 0.263005793094635, - 0.2147415280342102, - 0.16898663341999054, - 0.12698915600776672, - 0.08989466726779938, - 0.058715060353279114, - 0.034300774335861206, - 0.017317742109298706, - 0.008229345083236694, - 0.007283389568328857, - 0.01450568437576294, - 0.029699236154556274, - 0.052449584007263184, - 0.08213621377944946, - 0.11794930696487427, - 0.15891200304031372, - 0.20390695333480835, - 0.2517067790031433, - 0.30100759863853455, - 0.35046467185020447, - 0.263005793094635, - 0.22683526575565338, - 0.1928442269563675, - 0.16195982694625854, - 0.1350245177745819, - 0.11277306079864502, - 0.0958123505115509, - 0.08460506796836853, - 0.07945692539215088, - 0.08050835132598877, - 0.08773064613342285, - 0.10092681646347046, - 0.11973690986633301, - 0.14364780485630035, - 0.17200732231140137, - 0.20404186844825745, - 0.23887763917446136, - 0.27556437253952026, - 0.3131013512611389, - 0.35046467185020447, - 0.2630057632923126, - 0.24291327595710754, - 0.2245616614818573, - 0.2084515392780304, - 0.1950223445892334, - 0.18464037775993347, - 0.1775888353586197, - 0.17406007647514343, - 0.17415034770965576, - 0.1778571903705597, - 0.18507948517799377, - 0.19562023878097534, - 0.2091919183731079, - 0.22542431950569153, - 0.2438746690750122, - 0.26403969526290894, - 0.2853693664073944, - 0.3072817921638489, - 0.3291793465614319, - 0.35046467185020447, - 0.2630057632923126, - 0.26123324036598206, - 0.26070189476013184, - 0.2614262104034424, - 0.26338642835617065, - 0.2665290832519531, - 0.27076849341392517, - 0.27598893642425537, - 0.2820480763912201, - 0.2887806296348572, - 0.29600295424461365, - 0.3035179674625397, - 0.31112077832221985, - 0.3186039626598358, - 0.32576337456703186, - 0.3324037790298462, - 0.338344007730484, - 0.3434220254421234, - 0.3474993109703064, - 0.35046467185020447, - 0.2630057632923126, - 0.2798099219799042, - 0.2973485291004181, - 0.3151431679725647, - 0.332708477973938, - 0.3495652973651886, - 0.36525383591651917, - 0.3793461322784424, - 0.39145776629447937, - 0.4012584090232849, - 0.408480703830719, - 0.41292765736579895, - 0.4144779443740845, - 0.4130893051624298, - 0.40879958868026733, - 0.4017258286476135, - 0.3920609951019287, - 0.38006865978240967, - 0.3660759925842285, - 0.35046467185020447, - 0.2630057632923126, - 0.29663023352622986, - 0.3305303454399109, - 0.3637813925743103, - 0.395476371049881, - 0.4247506856918335, - 0.4508059024810791, - 0.4729312062263489, - 0.49052315950393677, - 0.5031018257141113, - 0.5103241205215454, - 0.5119930505752563, - 0.5080630779266357, - 0.49864137172698975, - 0.4839850068092346, - 0.4644937515258789, - 0.44069918990135193, - 0.41325047612190247, - 0.3828963041305542, - 0.3504646420478821, - 0.2630057632923126, - 0.30987146496772766, - 0.3566516041755676, - 0.40207016468048096, - 0.44488823413848877, - 0.4839378595352173, - 0.5181537866592407, - 0.5466029047966003, - 0.5685089826583862, - 0.5832745432853699, - 0.590496838092804, - 0.5899788737297058, - 0.5817347168922424, - 0.5659893751144409, - 0.5431721806526184, - 0.5139056444168091, - 0.4789879620075226, - 0.4393717348575592, - 0.396137535572052, - 0.3504646420478821, - 0.2630057632923126, - 0.31809866428375244, - 0.37288162112236023, - 0.42586028575897217, - 0.4755895137786865, - 0.5207128524780273, - 0.559999406337738, - 0.5923776030540466, - 0.6169642210006714, - 0.6330885887145996, - 0.6403108835220337, - 0.6384341716766357, - 0.6275094747543335, - 0.6078349351882935, - 0.5799471735954285, - 0.5446069240570068, - 0.5027780532836914, - 0.4556017518043518, - 0.40436476469039917, - 0.3504646420478821, - 0.2630057632923126, - 0.32042035460472107, - 0.37746167182922363, - 0.43257373571395874, - 0.48425328731536865, - 0.5310905575752258, - 0.5718080401420593, - 0.605294942855835, - 0.630638062953949, - 0.6471458673477173, - 0.6543681621551514, - 0.6521079540252686, - 0.6404268145561218, - 0.61964350938797, - 0.590324878692627, - 0.5532706379890442, - 0.5094915628433228, - 0.4601818025112152, - 0.4066864252090454, - 0.3504646420478821, - 0.2630057632923126, - 0.31658491492271423, - 0.36989539861679077, - 0.42148301005363464, - 0.4699406623840332, - 0.5139464139938354, - 0.5523000359535217, - 0.5839552879333496, - 0.6080487370491028, - 0.6239230632781982, - 0.6311453580856323, - 0.6295186281204224, - 0.6190871000289917, - 0.6001355648040771, - 0.5731807947158813, - 0.5389580130577087, - 0.49840080738067627, - 0.45261552929878235, - 0.4028509855270386, - 0.3504646420478821, - 0.2630057632923126, - 0.30700793862342834, - 0.35100269317626953, - 0.39378994703292847, - 0.4342026114463806, - 0.47113823890686035, - 0.503589391708374, - 0.5306708812713623, - 0.5516440272331238, - 0.5659366250038147, - 0.5731589198112488, - 0.5731139183044434, - 0.5658026933670044, - 0.5514248609542847, - 0.5303725600242615, - 0.5032199621200562, - 0.4707077741622925, - 0.4337228536605835, - 0.3932740092277527, - 0.3504646420478821, - 0.2630057632923126, - 0.2927273213863373, - 0.3228309750556946, - 0.35249558091163635, - 0.3809119760990143, - 0.4073050022125244, - 0.4309547543525696, - 0.4512161314487457, - 0.46753644943237305, - 0.47947049140930176, - 0.48669278621673584, - 0.4890063405036926, - 0.4863479733467102, - 0.4787902235984802, - 0.46653932332992554, - 0.4499293565750122, - 0.429413378238678, - 0.40555110573768616, - 0.3789933919906616, - 0.3504646420478821, - 0.2630057632923126, - 0.2752905488014221, - 0.2884330451488495, - 0.30207476019859314, - 0.3158436417579651, - 0.32936403155326843, - 0.3422671854496002, - 0.35420113801956177, - 0.3648402988910675, - 0.37389451265335083, - 0.3811168074607849, - 0.3863101899623871, - 0.38933295011520386, - 0.39010268449783325, - 0.38859832286834717, - 0.3848609924316406, - 0.37899255752563477, - 0.37115317583084106, - 0.36155661940574646, - 0.35046467185020447, - 0.2630057632923126, - 0.25658711791038513, - 0.25153636932373047, - 0.24799127876758575, - 0.24604859948158264, - 0.24576126039028168, - 0.2471371740102768, - 0.2501387298107147, - 0.25468409061431885, - 0.26064932346343994, - 0.267871618270874, - 0.2761539816856384, - 0.2852705717086792, - 0.29497265815734863, - 0.3049955666065216, - 0.3150659501552582, - 0.3249090909957886, - 0.33425650000572205, - 0.3428531885147095, - 0.35046467185020447, - 0.263005793094635, - 0.23864388465881348, - 0.2161393165588379, - 0.19610600173473358, - 0.17909035086631775, - 0.16555652022361755, - 0.15587368607521057, - 0.15030594170093536, - 0.14900517463684082, - 0.15200689435005188, - 0.15922918915748596, - 0.1704750657081604, - 0.18543776869773865, - 0.20370915532112122, - 0.2247908115386963, - 0.2481077015399933, - 0.2730238139629364, - 0.29885947704315186, - 0.3249099552631378, - 0.35046467185020447, - 0.263005793094635, - 0.22340527176856995, - 0.1860777735710144, - 0.1520415097475052, - 0.12222489714622498, - 0.09744121134281158, - 0.07836653292179108, - 0.06552115082740784, - 0.05925549566745758, - 0.05974040925502777, - 0.06696270406246185, - 0.08072538673877716, - 0.10065299272537231, - 0.12620200216770172, - 0.15667548775672913, - 0.19124221801757812, - 0.228959321975708, - 0.268797904253006, - 0.3096713423728943, - 0.35046467185020447, - 0.263005793094635, - 0.21252262592315674, - 0.16460935771465302, - 0.12057292461395264, - 0.08161447942256927, - 0.048796772956848145, - 0.023014932870864868, - 0.004972219467163086, - -0.004839122295379639, - -0.006151556968688965, - 0.0010707378387451172, - 0.01663076877593994, - 0.040104061365127563, - 0.07085037231445312, - 0.10803103446960449, - 0.15063181519508362, - 0.19749072194099426, - 0.2473295032978058, - 0.2987886965274811, - 0.35046467185020447 - ], - "z": [ - 0.9969003796577454, - 1.020965337753296, - 1.0479990243911743, - 1.0772643089294434, - 1.1079626083374023, - 1.1392568349838257, - 1.1702932119369507, - 1.2002251148223877, - 1.228236198425293, - 1.253562331199646, - 1.2755125761032104, - 1.2934883832931519, - 1.3069993257522583, - 1.3156769275665283, - 1.3192843198776245, - 1.317723274230957, - 1.311036229133606, - 1.2994056940078735, - 1.2831488847732544, - 1.2627092599868774, - 0.9969003796577454, - 1.0178042650222778, - 1.0417633056640625, - 1.0681238174438477, - 1.0961668491363525, - 1.1251274347305298, - 1.1542155742645264, - 1.1826379299163818, - 1.209619164466858, - 1.2344231605529785, - 1.2563735246658325, - 1.2748713493347168, - 1.2894121408462524, - 1.2995994091033936, - 1.3051549196243286, - 1.3059275150299072, - 1.3018958568572998, - 1.2931699752807617, - 1.2799879312515259, - 1.2627092599868774, - 0.9969003796577454, - 1.0125744342803955, - 1.0314463376998901, - 1.053001046180725, - 1.076650857925415, - 1.1017506122589111, - 1.1276155710220337, - 1.1535401344299316, - 1.1788173913955688, - 1.202757716178894, - 1.224708080291748, - 1.2440696954727173, - 1.2603144645690918, - 1.2729992866516113, - 1.28177809715271, - 1.2864115238189697, - 1.2867730855941772, - 1.2828530073165894, - 1.2747581005096436, - 1.2627092599868774, - 0.9969003796577454, - 1.0058425664901733, - 1.0181660652160645, - 1.0335347652435303, - 1.0515295267105103, - 1.0716594457626343, - 1.093375325202942, - 1.1160850524902344, - 1.1391688585281372, - 1.1619973182678223, - 1.1839476823806763, - 1.2044211626052856, - 1.222859263420105, - 1.2387590408325195, - 1.251686930656433, - 1.2612900733947754, - 1.2673068046569824, - 1.2695727348327637, - 1.2680261135101318, - 1.2627092599868774, - 0.9969003796577454, - 0.9983380436897278, - 1.003361701965332, - 1.0118345022201538, - 1.0235251188278198, - 1.0381147861480713, - 1.0552055835723877, - 1.074331283569336, - 1.0949701070785522, - 1.1165590286254883, - 1.1385093927383423, - 1.1602222919464111, - 1.1811054944992065, - 1.2005892992019653, - 1.2181422710418701, - 1.233285665512085, - 1.2456064224243164, - 1.2547683715820312, - 1.260521650314331, - 1.2627092599868774, - 0.9969003796577454, - 0.990874171257019, - 0.9886375665664673, - 0.9902516603469849, - 0.9956724047660828, - 1.0047519207000732, - 1.0172425508499146, - 1.0328036546707153, - 1.0510106086730957, - 1.0713669061660767, - 1.0933172702789307, - 1.1162627935409546, - 1.139577865600586, - 1.1626262664794922, - 1.184779405593872, - 1.2054330110549927, - 1.2240235805511475, - 1.2400442361831665, - 1.2530577182769775, - 1.2627092599868774, - 0.9969003796577454, - 0.9842597246170044, - 0.9755891561508179, - 0.9711251854896545, - 0.9709895849227905, - 0.9751860499382019, - 0.9836000800132751, - 0.996002197265625, - 1.012054204940796, - 1.0313180685043335, - 1.053268313407898, - 1.0773063898086548, - 1.1027764081954956, - 1.128983736038208, - 1.155213475227356, - 1.1807501316070557, - 1.204897165298462, - 1.226995825767517, - 1.2464433908462524, - 1.262709379196167, - 0.9969003796577454, - 0.9792115688323975, - 0.9656304717063904, - 0.9565277099609375, - 0.9521514177322388, - 0.9526211023330688, - 0.9579238891601562, - 0.9679151177406311, - 0.9823222756385803, - 1.0007524490356445, - 1.022702693939209, - 1.047574520111084, - 1.0746893882751465, - 1.1033076047897339, - 1.1326485872268677, - 1.161911964416504, - 1.1902996301651, - 1.2170372009277344, - 1.2413952350616455, - 1.262709379196167, - 0.9969003796577454, - 0.9762766361236572, - 0.9598407745361328, - 0.9480410814285278, - 0.9411994218826294, - 0.9395024180412292, - 0.9429963231086731, - 0.9515859484672546, - 0.9650368690490723, - 0.9829822778701782, - 1.0049326419830322, - 1.0302891731262207, - 1.05836021900177, - 1.0883800983428955, - 1.1195298433303833, - 1.1509599685668945, - 1.1818130016326904, - 1.211247444152832, - 1.2384603023529053, - 1.262709379196167, - 0.9969003796577454, - 0.9757730960845947, - 0.9588474035263062, - 0.946584939956665, - 0.9393202662467957, - 0.9372515678405762, - 0.9404351115226746, - 0.9487842321395874, - 0.9620711207389832, - 0.9799333810806274, - 1.001883625984192, - 1.0273233652114868, - 1.055558443069458, - 1.0858187675476074, - 1.1172789335250854, - 1.1490808725357056, - 1.1803569793701172, - 1.2102540731430054, - 1.2379567623138428, - 1.262709379196167, - 0.9969003796577454, - 0.9777554273605347, - 0.9627580046653748, - 0.9523171186447144, - 0.9467177391052246, - 0.9461123943328857, - 0.9505177736282349, - 0.9598135948181152, - 0.9737462997436523, - 0.9919359683990479, - 1.0138863325119019, - 1.0389986038208008, - 1.0665878057479858, - 1.0959014892578125, - 1.1261398792266846, - 1.1564782857894897, - 1.1860891580581665, - 1.2141646146774292, - 1.2399390935897827, - 1.262709379196167, - 0.9969003796577454, - 0.9820088744163513, - 0.9711487889289856, - 0.9646164774894714, - 0.9625900983810425, - 0.9651248455047607, - 0.9721516370773315, - 0.983478844165802, - 0.9987974166870117, - 1.0176894664764404, - 1.0396398305892944, - 1.0640496015548706, - 1.0902531147003174, - 1.1175353527069092, - 1.1451523303985596, - 1.1723506450653076, - 1.1983884572982788, - 1.2225555181503296, - 1.2441924810409546, - 1.262709379196167, - 0.9969003796577454, - 0.988072395324707, - 0.9831105470657349, - 0.982150137424469, - 0.9852173328399658, - 0.9922285079956055, - 1.0029923915863037, - 1.017215371131897, - 1.034509539604187, - 1.0544031858444214, - 1.0763534307479858, - 1.0997618436813354, - 1.1239895820617676, - 1.1483761072158813, - 1.1722559928894043, - 1.194977879524231, - 1.2159221172332764, - 1.234517216682434, - 1.250256061553955, - 1.262709379196167, - 0.9969003796577454, - 0.9952890872955322, - 0.9973469972610474, - 1.0030180215835571, - 1.0121475458145142, - 1.0244863033294678, - 1.0396980047225952, - 1.0573675632476807, - 1.0770130157470703, - 1.0980983972549438, - 1.1200487613677979, - 1.1422652006149292, - 1.1641417741775513, - 1.1850817203521729, - 1.2045137882232666, - 1.2219080924987793, - 1.2367900609970093, - 1.2487536668777466, - 1.2574727535247803, - 1.2627092599868774, - 0.9969003796577454, - 1.0028767585754395, - 1.0123153924942017, - 1.024958848953247, - 1.0404622554779053, - 1.05840265750885, - 1.0782907009124756, - 1.0995839834213257, - 1.1217015981674194, - 1.1440402269363403, - 1.1659905910491943, - 1.1869537830352783, - 1.2063581943511963, - 1.2236744165420532, - 1.238430142402649, - 1.2502228021621704, - 1.2587308883666992, - 1.2637220621109009, - 1.2650604248046875, - 1.2627092599868774, - 0.9969003796577454, - 1.010013222694397, - 1.0263936519622803, - 1.0455949306488037, - 1.0670932531356812, - 1.0903021097183228, - 1.1145884990692139, - 1.1392899751663208, - 1.1637327671051025, - 1.187250018119812, - 1.209200382232666, - 1.2289849519729614, - 1.2460641860961914, - 1.2599722146987915, - 1.2703295946121216, - 1.2768537998199463, - 1.2793669700622559, - 1.2778003215789795, - 1.272196888923645, - 1.2627092599868774, - 0.9969003796577454, - 1.0159251689910889, - 1.0380562543869019, - 1.0626901388168335, - 1.089154601097107, - 1.1167279481887817, - 1.1446579694747925, - 1.1721829175949097, - 1.198551893234253, - 1.2230454683303833, - 1.2449958324432373, - 1.2638040781021118, - 1.2789571285247803, - 1.2900416851043701, - 1.2967554330825806, - 1.298915147781372, - 1.296462059020996, - 1.2894630432128906, - 1.278108835220337, - 1.2627092599868774, - 0.9969003796577454, - 1.0199718475341797, - 1.046039342880249, - 1.0743917226791382, - 1.1042556762695312, - 1.1348165273666382, - 1.1652406454086304, - 1.1946980953216553, - 1.2223855257034302, - 1.2475476264953613, - 1.2694978713989258, - 1.287637710571289, - 1.3014723062515259, - 1.310624361038208, - 1.314844012260437, - 1.3140162229537964, - 1.3081637620925903, - 1.2974460124969482, - 1.2821555137634277, - 1.2627092599868774, - 0.9969003796577454, - 1.0217149257659912, - 1.0494778156280518, - 1.0794318914413452, - 1.110759973526001, - 1.142607569694519, - 1.1741058826446533, - 1.2043957710266113, - 1.2326511144638062, - 1.258100986480713, - 1.280051350593567, - 1.297903299331665, - 1.3111701011657715, - 1.319489598274231, - 1.3226350545883179, - 1.3205205202102661, - 1.3132038116455078, - 1.300884485244751, - 1.2838985919952393, - 1.2627092599868774, - 0.9969003796577454, - 1.020965337753296, - 1.0479990243911743, - 1.0772643089294434, - 1.1079626083374023, - 1.1392568349838257, - 1.1702932119369507, - 1.2002251148223877, - 1.228236198425293, - 1.2535622119903564, - 1.2755125761032104, - 1.2934883832931519, - 1.3069993257522583, - 1.3156769275665283, - 1.3192843198776245, - 1.317723274230957, - 1.311036229133606, - 1.2994056940078735, - 1.2831488847732544, - 1.2627092599868774 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.3886030316352844, - 0.3988981246948242, - 0.4093344211578369, - 0.41962730884552, - 0.42949599027633667, - 0.4386712908744812, - 0.44690290093421936, - 0.453966349363327, - 0.4596688747406006, - 0.46385499835014343, - 0.4664105176925659, - 0.46726569533348083, - 0.4663972556591034, - 0.46382883191108704, - 0.4596305191516876, - 0.4539168179035187, - 0.44684359431266785, - 0.43860378861427307, - 0.42942216992378235, - 0.4195491671562195, - 0.3886030316352844, - 0.41918081045150757, - 0.44934654235839844, - 0.47827744483947754, - 0.5051842927932739, - 0.529333233833313, - 0.5500653982162476, - 0.5668154358863831, - 0.5791263580322266, - 0.5866622924804688, - 0.5892178416252136, - 0.5867231488227844, - 0.5792463421821594, - 0.5669913291931152, - 0.550292432308197, - 0.5296051502227783, - 0.5054937601089478, - 0.4786159098148346, - 0.4497048556804657, - 0.4195491373538971, - 0.3886030316352844, - 0.4361727833747864, - 0.4828670024871826, - 0.5274120569229126, - 0.5685927867889404, - 0.6052859425544739, - 0.6364905834197998, - 0.6613556146621704, - 0.6792027354240417, - 0.6895450949668884, - 0.6921005845069885, - 0.6867995262145996, - 0.6737865209579468, - 0.6534165740013123, - 0.6262452006340027, - 0.5930136442184448, - 0.5546283721923828, - 0.5121363997459412, - 0.4666968286037445, - 0.4195491373538971, - 0.3886030316352844, - 0.4480327069759369, - 0.5062633752822876, - 0.5617066621780396, - 0.6128501892089844, - 0.6582988500595093, - 0.6968129873275757, - 0.7273421287536621, - 0.7490532994270325, - 0.7613544464111328, - 0.7639099359512329, - 0.7566500902175903, - 0.7397730350494385, - 0.7137389183044434, - 0.6792581081390381, - 0.637270987033844, - 0.588922917842865, - 0.5355327725410461, - 0.478556752204895, - 0.4195491373538971, - 0.3886030316352844, - 0.45347538590431213, - 0.5170002579689026, - 0.5774449110031128, - 0.633160412311554, - 0.6826271414756775, - 0.7244957089424133, - 0.7576241493225098, - 0.7811086177825928, - 0.7943086624145508, - 0.7968641519546509, - 0.7887054681777954, - 0.7700550556182861, - 0.7414216995239258, - 0.7035864591598511, - 0.6575813293457031, - 0.6046611666679382, - 0.5462696552276611, - 0.48399943113327026, - 0.4195491373538971, - 0.3886030316352844, - 0.45191100239753723, - 0.513914167881012, - 0.5729212760925293, - 0.6273226737976074, - 0.675634503364563, - 0.7165389060974121, - 0.748920202255249, - 0.7718949317932129, - 0.7848366498947144, - 0.7873921394348145, - 0.7794917821884155, - 0.7613511085510254, - 0.7334648370742798, - 0.6965937614440918, - 0.6517435312271118, - 0.6001375317573547, - 0.5431835651397705, - 0.48243504762649536, - 0.4195491373538971, - 0.3886030316352844, - 0.4435091018676758, - 0.49733954668045044, - 0.5486259460449219, - 0.5959694981575012, - 0.6380786299705505, - 0.673804759979248, - 0.7021734714508057, - 0.7224107980728149, - 0.7339648604393005, - 0.7365203499794006, - 0.7300076484680176, - 0.714604377746582, - 0.6907307505607605, - 0.6590379476547241, - 0.6203903555870056, - 0.5758422613143921, - 0.5266088843345642, - 0.4740331470966339, - 0.4195491373538971, - 0.3886030316352844, - 0.4291801154613495, - 0.46907246112823486, - 0.5071918368339539, - 0.5424985289573669, - 0.5740293264389038, - 0.6009243130683899, - 0.6224498152732849, - 0.6380186080932617, - 0.6472060680389404, - 0.6497615575790405, - 0.6456154584884644, - 0.6348807215690613, - 0.6178502440452576, - 0.5949885845184326, - 0.5669193267822266, - 0.5344080924987793, - 0.49834179878234863, - 0.4597041606903076, - 0.4195491373538971, - 0.3886030316352844, - 0.4104768633842468, - 0.4321761131286621, - 0.45310884714126587, - 0.47270411252975464, - 0.4904273748397827, - 0.5057951807975769, - 0.5183883905410767, - 0.5278634428977966, - 0.5339618921279907, - 0.5365173816680908, - 0.5354602336883545, - 0.530819296836853, - 0.5227211117744446, - 0.5113866329193115, - 0.49712494015693665, - 0.4803251326084137, - 0.46144548058509827, - 0.44100090861320496, - 0.4195491373538971, - 0.3886030316352844, - 0.3894261121749878, - 0.39064881205558777, - 0.39223775267601013, - 0.3941496014595032, - 0.3963322341442108, - 0.39872610569000244, - 0.4012659192085266, - 0.40388235449790955, - 0.4065040946006775, - 0.4090596139431, - 0.4114791750907898, - 0.413696825504303, - 0.4156520366668701, - 0.4172914922237396, - 0.4185704290866852, - 0.41945403814315796, - 0.4199181795120239, - 0.4199501574039459, - 0.4195491671562195, - 0.3886030614376068, - 0.36830902099609375, - 0.34899064898490906, - 0.3311748504638672, - 0.3153476119041443, - 0.3019406795501709, - 0.29131969809532166, - 0.2837744355201721, - 0.2795106768608093, - 0.27864474058151245, - 0.28120025992393494, - 0.2871074974536896, - 0.2962053418159485, - 0.30824559926986694, - 0.32289987802505493, - 0.3397684395313263, - 0.3583911657333374, - 0.3782600164413452, - 0.39883309602737427, - 0.4195491671562195, - 0.3886030614376068, - 0.34941399097442627, - 0.3117159605026245, - 0.27653729915618896, - 0.24483755230903625, - 0.21748143434524536, - 0.19521509110927582, - 0.17864596843719482, - 0.1682259738445282, - 0.16423936188220978, - 0.16679488122463226, - 0.17582279443740845, - 0.1910768747329712, - 0.2121410220861435, - 0.2384406328201294, - 0.26925837993621826, - 0.3037536144256592, - 0.34098535776138306, - 0.3799380362033844, - 0.4195491671562195, - 0.3886030614376068, - 0.33478856086730957, - 0.2828640639781952, - 0.2342459112405777, - 0.19026026129722595, - 0.15210697054862976, - 0.12082675099372864, - 0.09727281332015991, - 0.08208763599395752, - 0.0756855309009552, - 0.0782410204410553, - 0.08968445658683777, - 0.10970371961593628, - 0.13775265216827393, - 0.1730661690235138, - 0.21468105912208557, - 0.2614622116088867, - 0.31213343143463135, - 0.3653126060962677, - 0.4195491671562195, - 0.3886030614376068, - 0.3260176181793213, - 0.26556146144866943, - 0.20888356864452362, - 0.1575300395488739, - 0.11290165781974792, - 0.07621574401855469, - 0.048472970724105835, - 0.030430138111114502, - 0.022579461336135864, - 0.025134950876235962, - 0.03802695870399475, - 0.0609038770198822, - 0.09314164519309998, - 0.13386085629463196, - 0.18195085227489471, - 0.23609985411167145, - 0.2948307991027832, - 0.3565416932106018, - 0.4195491671562195, - 0.3886030614376068, - 0.3240516781806946, - 0.2616831660270691, - 0.20319874584674835, - 0.1501937210559845, - 0.10411396622657776, - 0.06621640920639038, - 0.03753477334976196, - 0.018851429224014282, - 0.010676026344299316, - 0.013231515884399414, - 0.02644824981689453, - 0.04996567964553833, - 0.08314231038093567, - 0.12507319450378418, - 0.1746145337820053, - 0.23041503131389618, - 0.29095253348350525, - 0.3545757234096527, - 0.4195491671562195, - 0.3886030614376068, - 0.3291037082672119, - 0.27164942026138306, - 0.21780741214752197, - 0.1690463125705719, - 0.12669619917869568, - 0.09191229939460754, - 0.06564339995384216, - 0.048606038093566895, - 0.04126507043838501, - 0.04382055997848511, - 0.056202858686447144, - 0.07807430624961853, - 0.10883820056915283, - 0.1476553976535797, - 0.19346711039543152, - 0.2450236976146698, - 0.3009187877178192, - 0.35962778329849243, - 0.4195491671562195, - 0.3886030614376068, - 0.3406263291835785, - 0.2943803369998932, - 0.25112658739089966, - 0.2120448499917984, - 0.17820127308368683, - 0.15051895380020142, - 0.1297530233860016, - 0.1164698600769043, - 0.11103188991546631, - 0.1135873794555664, - 0.12406668066978455, - 0.14218392968177795, - 0.1674448698759079, - 0.19916045665740967, - 0.2364656776189804, - 0.2783428430557251, - 0.32364970445632935, - 0.3711503744125366, - 0.4195491671562195, - 0.3886030614376068, - 0.3573708236217499, - 0.32741260528564453, - 0.2995455265045166, - 0.2745298147201538, - 0.25304776430130005, - 0.23568537831306458, - 0.22291624546051025, - 0.21508869528770447, - 0.21241621673107147, - 0.21497173607349396, - 0.22268551588058472, - 0.23534715175628662, - 0.25261130928993225, - 0.2740069627761841, - 0.2989506125450134, - 0.3267618417739868, - 0.3566819429397583, - 0.387894868850708, - 0.4195491671562195, - 0.3886030316352844, - 0.37752267718315125, - 0.3671666383743286, - 0.3578173816204071, - 0.3497299551963806, - 0.3431249260902405, - 0.3381825089454651, - 0.3350374698638916, - 0.3337756395339966, - 0.33443140983581543, - 0.3369869291782379, - 0.34137246012687683, - 0.34746837615966797, - 0.3551084101200104, - 0.3640841543674469, - 0.37415075302124023, - 0.38503366708755493, - 0.39643600583076477, - 0.40804675221443176, - 0.4195491671562195, - 0.3886030316352844, - 0.3988981246948242, - 0.4093344509601593, - 0.4196273386478424, - 0.42949602007865906, - 0.4386713206768036, - 0.44690296053886414, - 0.4539664089679718, - 0.45966896414756775, - 0.4638550877571106, - 0.4664105772972107, - 0.467265784740448, - 0.46639731526374817, - 0.4638288915157318, - 0.4596305787563324, - 0.45391684770584106, - 0.44684362411499023, - 0.43860381841659546, - 0.42942216992378235, - 0.4195491671562195 - ], - "y": [ - 0.39000019431114197, - 0.3270874619483948, - 0.26642298698425293, - 0.20966161787509918, - 0.1583515703678131, - 0.1138925552368164, - 0.07749724388122559, - 0.050158292055130005, - 0.03262165188789368, - 0.02536553144454956, - 0.02858787775039673, - 0.042200833559036255, - 0.06583300232887268, - 0.09883984923362732, - 0.14032095670700073, - 0.18914490938186646, - 0.24397988617420197, - 0.30333006381988525, - 0.3655766248703003, - 0.42902153730392456, - 0.39000019431114197, - 0.3330407440662384, - 0.2781672179698944, - 0.2268764078617096, - 0.18056736886501312, - 0.14050331711769104, - 0.10777711868286133, - 0.08328139781951904, - 0.06768438220024109, - 0.061411499977111816, - 0.06463384628295898, - 0.07726356387138367, - 0.09895610809326172, - 0.12911972403526306, - 0.16693177819252014, - 0.21136070787906647, - 0.2611946761608124, - 0.31507429480552673, - 0.3715299069881439, - 0.42902153730392456, - 0.39000019431114197, - 0.34519532322883606, - 0.3021448254585266, - 0.262023001909256, - 0.22592425346374512, - 0.19483326375484467, - 0.16959811747074127, - 0.15090718865394592, - 0.13927024602890015, - 0.13500484824180603, - 0.1382271945476532, - 0.14884942770004272, - 0.1665818989276886, - 0.19094079732894897, - 0.22126170992851257, - 0.2567175626754761, - 0.29634127020835876, - 0.33905190229415894, - 0.3836844861507416, - 0.42902153730392456, - 0.3900001645088196, - 0.3622340261936188, - 0.3357574939727783, - 0.31129273772239685, - 0.289507120847702, - 0.2709948718547821, - 0.25626102089881897, - 0.24570737779140472, - 0.23962190747261047, - 0.2381705790758133, - 0.24139292538166046, - 0.24920108914375305, - 0.2613821029663086, - 0.2776036858558655, - 0.2974233329296112, - 0.320300430059433, - 0.34561100602149963, - 0.37266457080841064, - 0.4007231891155243, - 0.42902153730392456, - 0.3900001645088196, - 0.3823104798793793, - 0.375362753868103, - 0.3693464696407318, - 0.36442577838897705, - 0.3607349097728729, - 0.3583745062351227, - 0.35740897059440613, - 0.3578646183013916, - 0.3597290813922882, - 0.3629514276981354, - 0.3674437999725342, - 0.3730836808681488, - 0.3797171711921692, - 0.38716334104537964, - 0.3952191174030304, - 0.4036647379398346, - 0.41226983070373535, - 0.4207996428012848, - 0.42902153730392456, - 0.3900001645088196, - 0.403249055147171, - 0.41666874289512634, - 0.4298931956291199, - 0.44256165623664856, - 0.45432859659194946, - 0.46487298607826233, - 0.4739072918891907, - 0.4811849892139435, - 0.4865076243877411, - 0.48973000049591064, - 0.49076417088508606, - 0.48958197236061096, - 0.48621565103530884, - 0.48075705766677856, - 0.4733549952507019, - 0.46421146392822266, - 0.45357581973075867, - 0.44173821806907654, - 0.42902153730392456, - 0.3900001645088196, - 0.42278072237968445, - 0.45519936084747314, - 0.4863716959953308, - 0.5154474973678589, - 0.5416336059570312, - 0.5642157196998596, - 0.5825779438018799, - 0.5962193012237549, - 0.6047677993774414, - 0.6079901456832886, - 0.6057984828948975, - 0.5982526540756226, - 0.5855584144592285, - 0.5680620670318604, - 0.5462408065795898, - 0.5206899642944336, - 0.49210643768310547, - 0.46126991510391235, - 0.42902153730392456, - 0.3900001645088196, - 0.4387889802455902, - 0.48677918314933777, - 0.5326616764068604, - 0.5751849412918091, - 0.6131891012191772, - 0.6456373929977417, - 0.6716448068618774, - 0.690501868724823, - 0.7016942501068115, - 0.7049165964126587, - 0.7000810503959656, - 0.6873195171356201, - 0.6669800281524658, - 0.6396175622940063, - 0.6059783101081848, - 0.5669799447059631, - 0.5236862301826477, - 0.4772781431674957, - 0.4290215075016022, - 0.3900001645088196, - 0.44953903555870056, - 0.5079860687255859, - 0.5637469291687012, - 0.6153006553649902, - 0.6612409353256226, - 0.7003146409988403, - 0.7314560413360596, - 0.7538156509399414, - 0.7667834758758545, - 0.7700058221817017, - 0.763394832611084, - 0.7471307516098022, - 0.7216573357582092, - 0.6876693964004517, - 0.6460939645767212, - 0.5980651378631592, - 0.5448931455612183, - 0.4880281984806061, - 0.4290215075016022, - 0.3900001645088196, - 0.4538659453392029, - 0.5165218710899353, - 0.5762587785720825, - 0.6314473152160645, - 0.6805819272994995, - 0.7223224639892578, - 0.7555303573608398, - 0.7792996168136597, - 0.7929821014404297, - 0.7962044477462769, - 0.7888787984848022, - 0.7712050676345825, - 0.7436650991439819, - 0.7070103883743286, - 0.6622406244277954, - 0.6105771064758301, - 0.5534289479255676, - 0.4923551082611084, - 0.4290215075016022, - 0.3900001645088196, - 0.45130085945129395, - 0.5114616751670837, - 0.5688415169715881, - 0.6218752264976501, - 0.669116199016571, - 0.7092758417129517, - 0.7412586212158203, - 0.7641922235488892, - 0.7774510383605957, - 0.7806733846664429, - 0.7737714052200317, - 0.756933331489563, - 0.7306184768676758, - 0.6955447196960449, - 0.6526685953140259, - 0.6031597852706909, - 0.5483687520027161, - 0.48979002237319946, - 0.4290215075016022, - 0.3900001645088196, - 0.4421217441558838, - 0.49335378408432007, - 0.5422987937927246, - 0.5876217484474182, - 0.6280862092971802, - 0.6625885963439941, - 0.6901876926422119, - 0.7101305723190308, - 0.72187340259552, - 0.7250957489013672, - 0.7197097539901733, - 0.7058624029159546, - 0.6839312314987183, - 0.654514729976654, - 0.618415117263794, - 0.5766170620918274, - 0.5302608609199524, - 0.4806109070777893, - 0.4290215075016022, - 0.3900001645088196, - 0.42732325196266174, - 0.4641605019569397, - 0.49950700998306274, - 0.5323987007141113, - 0.5619382858276367, - 0.58732008934021, - 0.6078517436981201, - 0.6229731440544128, - 0.6322718262672424, - 0.6354941725730896, - 0.6325523257255554, - 0.6235264539718628, - 0.6086627840995789, - 0.5883668065071106, - 0.5631920695304871, - 0.5338252782821655, - 0.501067578792572, - 0.46581244468688965, - 0.42902153730392456, - 0.3900001645088196, - 0.4085090756416321, - 0.4270453155040741, - 0.445103257894516, - 0.46219033002853394, - 0.47784045338630676, - 0.49162667989730835, - 0.5031730532646179, - 0.5121645927429199, - 0.5183559060096741, - 0.521578311920166, - 0.5217437744140625, - 0.5188477635383606, - 0.5129693746566772, - 0.5042688846588135, - 0.49298369884490967, - 0.4794215261936188, - 0.4639523923397064, - 0.4469982385635376, - 0.42902153730392456, - 0.3900001645088196, - 0.3877180218696594, - 0.38603031635284424, - 0.3849831223487854, - 0.38460496068000793, - 0.38490617275238037, - 0.3858785331249237, - 0.3874955177307129, - 0.38971301913261414, - 0.3924705684185028, - 0.39569291472435, - 0.3992922008037567, - 0.40317022800445557, - 0.4072211980819702, - 0.4113346040248871, - 0.4153982996940613, - 0.4193013906478882, - 0.42293739318847656, - 0.42620718479156494, - 0.42902153730392456, - 0.3900001645088196, - 0.36720311641693115, - 0.34556007385253906, - 0.32566148042678833, - 0.3080500364303589, - 0.29320621490478516, - 0.281534880399704, - 0.27335435152053833, - 0.26888787746429443, - 0.268257200717926, - 0.2714795470237732, - 0.278467059135437, - 0.289029061794281, - 0.3028775155544281, - 0.31963464617729187, - 0.33884337544441223, - 0.3599797487258911, - 0.3824671506881714, - 0.40569227933883667, - 0.42902153730392456, - 0.3900001645088196, - 0.349187433719635, - 0.3100201189517975, - 0.27356666326522827, - 0.24082142114639282, - 0.21267758309841156, - 0.18990285694599152, - 0.17311841249465942, - 0.1627821922302246, - 0.1591760814189911, - 0.16239844262599945, - 0.1723613739013672, - 0.1887931227684021, - 0.21124550700187683, - 0.23910601437091827, - 0.27161476016044617, - 0.30788493156433105, - 0.3469271957874298, - 0.3876765966415405, - 0.42902153730392456, - 0.39000019431114197, - 0.33562326431274414, - 0.28326180577278137, - 0.23434409499168396, - 0.1902044713497162, - 0.15204697847366333, - 0.12091243267059326, - 0.09765002131462097, - 0.08289441466331482, - 0.07704806327819824, - 0.08027040958404541, - 0.0924735963344574, - 0.11332473158836365, - 0.142255038022995, - 0.17847537994384766, - 0.22099779546260834, - 0.26866236329078674, - 0.3201688826084137, - 0.37411242723464966, - 0.42902153730392456, - 0.39000019431114197, - 0.32798051834106445, - 0.2681848406791687, - 0.21224412322044373, - 0.1616843342781067, - 0.11788460612297058, - 0.0820397138595581, - 0.05512732267379761, - 0.03788164258003235, - 0.030773013830184937, - 0.033995360136032104, - 0.04746082425117493, - 0.07080203294754028, - 0.10338234901428223, - 0.1443130075931549, - 0.19247765839099884, - 0.2465623915195465, - 0.305091917514801, - 0.36646971106529236, - 0.42902153730392456, - 0.39000019431114197, - 0.3270874619483948, - 0.26642298698425293, - 0.20966161787509918, - 0.1583516001701355, - 0.1138925552368164, - 0.07749724388122559, - 0.05015832185745239, - 0.03262165188789368, - 0.02536553144454956, - 0.02858787775039673, - 0.042200833559036255, - 0.06583303213119507, - 0.09883984923362732, - 0.14032095670700073, - 0.18914492428302765, - 0.24397988617420197, - 0.30333006381988525, - 0.3655766248703003, - 0.42902153730392456 - ], - "z": [ - 1.20845627784729, - 1.2217321395874023, - 1.237081527709961, - 1.2540855407714844, - 1.2722803354263306, - 1.2911697626113892, - 1.3102383613586426, - 1.3289661407470703, - 1.3468422889709473, - 1.3633790016174316, - 1.3781254291534424, - 1.390679121017456, - 1.4006978273391724, - 1.4079082012176514, - 1.4121134281158447, - 1.4131989479064941, - 1.4111350774765015, - 1.4059782028198242, - 1.3978689908981323, - 1.387028455734253, - 1.20845627784729, - 1.2169163227081299, - 1.2275811433792114, - 1.2401598691940308, - 1.2543091773986816, - 1.2696433067321777, - 1.2857438325881958, - 1.3021717071533203, - 1.3184787034988403, - 1.3342201709747314, - 1.3489664793014526, - 1.3623156547546387, - 1.3739033937454224, - 1.3834136724472046, - 1.3905869722366333, - 1.3952277898788452, - 1.3972094058990479, - 1.3964779376983643, - 1.3930531740188599, - 1.387028455734253, - 1.20845627784729, - 1.211315631866455, - 1.216532588005066, - 1.223964810371399, - 1.2334094047546387, - 1.244608759880066, - 1.2572575807571411, - 1.2710106372833252, - 1.2854928970336914, - 1.3003093004226685, - 1.3150557279586792, - 1.3293298482894897, - 1.3427423238754272, - 1.3549273014068604, - 1.3655524253845215, - 1.3743278980255127, - 1.381014347076416, - 1.3854293823242188, - 1.387452483177185, - 1.387028455734253, - 1.20845627784729, - 1.2055370807647705, - 1.205133080482483, - 1.207255244255066, - 1.2118456363677979, - 1.2187790870666504, - 1.2278664112091064, - 1.23885977268219, - 1.2514592409133911, - 1.2653212547302246, - 1.2800676822662354, - 1.2952961921691895, - 1.310591459274292, - 1.3255361318588257, - 1.339722752571106, - 1.3527642488479614, - 1.3643049001693726, - 1.3740298748016357, - 1.3816739320755005, - 1.387028455734253, - 1.20845627784729, - 1.2002068758010864, - 1.1946179866790771, - 1.1918420791625977, - 1.1919547319412231, - 1.194953203201294, - 1.2007553577423096, - 1.2092031240463257, - 1.220065951347351, - 1.233047604560852, - 1.2477940320968628, - 1.2639029026031494, - 1.2809346914291382, - 1.2984250783920288, - 1.3158968687057495, - 1.3328733444213867, - 1.3488916158676147, - 1.3635146617889404, - 1.3763436079025269, - 1.387028455734253, - 1.20845627784729, - 1.1959024667739868, - 1.1861265897750854, - 1.179395318031311, - 1.1758923530578613, - 1.175713062286377, - 1.1788623332977295, - 1.185254454612732, - 1.194714903831482, - 1.206985592842102, - 1.2217320203781128, - 1.2385517358779907, - 1.2569860219955444, - 1.2765320539474487, - 1.2966567277908325, - 1.3168108463287354, - 1.3364449739456177, - 1.3550233840942383, - 1.3720391988754272, - 1.387028455734253, - 1.20845627784729, - 1.1930904388427734, - 1.1805793046951294, - 1.1712640523910522, - 1.1653988361358643, - 1.163143515586853, - 1.1645598411560059, - 1.1696089506149292, - 1.178153157234192, - 1.1899595260620117, - 1.2047059535980225, - 1.2219901084899902, - 1.2413406372070312, - 1.262229561805725, - 1.2840873003005981, - 1.3063174486160278, - 1.3283137083053589, - 1.3494759798049927, - 1.3692271709442139, - 1.387028455734253, - 1.20845627784729, - 1.192075490951538, - 1.178577184677124, - 1.1683292388916016, - 1.1616114377975464, - 1.1586068868637085, - 1.1593976020812988, - 1.1639620065689087, - 1.172175645828247, - 1.1838144063949585, - 1.1985607147216797, - 1.2160124778747559, - 1.2356936931610107, - 1.2570674419403076, - 1.279550552368164, - 1.30253005027771, - 1.3253788948059082, - 1.3474738597869873, - 1.368212342262268, - 1.387028455734253, - 1.20845627784729, - 1.1929676532745361, - 1.1803370714187622, - 1.17090904712677, - 1.164940595626831, - 1.1625946760177612, - 1.1639353036880493, - 1.1689257621765137, - 1.1774300336837769, - 1.189216136932373, - 1.2039624452590942, - 1.2212668657302856, - 1.2406574487686157, - 1.2616050243377686, - 1.2835383415222168, - 1.3058592081069946, - 1.327958583831787, - 1.349233865737915, - 1.3691043853759766, - 1.387028455734253, - 1.20845627784729, - 1.195670247077942, - 1.1856684684753418, - 1.178723692893982, - 1.1750255823135376, - 1.1746747493743896, - 1.1776809692382812, - 1.183962106704712, - 1.1933468580245972, - 1.2055792808532715, - 1.2203257083892822, - 1.2371838092803955, - 1.255693793296814, - 1.2753506898880005, - 1.2956184148788452, - 1.3159441947937012, - 1.3357733488082886, - 1.354565143585205, - 1.3718069791793823, - 1.387028455734253, - 1.20845627784729, - 1.1998902559280396, - 1.1939934492111206, - 1.1909265518188477, - 1.190773367881775, - 1.1935380697250366, - 1.1991451978683472, - 1.2074416875839233, - 1.2182013988494873, - 1.231130838394165, - 1.2458771467208862, - 1.2620383501052856, - 1.2791733741760254, - 1.2968149185180664, - 1.3144817352294922, - 1.3316919803619385, - 1.3479762077331543, - 1.3628901243209839, - 1.37602698802948, - 1.387028455734253, - 1.20845627784729, - 1.2051705121994019, - 1.2044099569320679, - 1.2061952352523804, - 1.210477590560913, - 1.2171404361724854, - 1.2260018587112427, - 1.236820101737976, - 1.249300241470337, - 1.2631016969680786, - 1.2778481245040894, - 1.2931371927261353, - 1.3085517883300781, - 1.323671579360962, - 1.338084101676941, - 1.3513962030410767, - 1.3632447719573975, - 1.3733066320419312, - 1.3813072443008423, - 1.387028455734253, - 1.20845627784729, - 1.210938811302185, - 1.2157891988754272, - 1.2228749990463257, - 1.2320029735565186, - 1.2429242134094238, - 1.2553406953811646, - 1.2689138650894165, - 1.2832733392715454, - 1.298027515411377, - 1.3127738237380981, - 1.3271101713180542, - 1.3406455516815186, - 1.3530105352401733, - 1.3638678789138794, - 1.3729215860366821, - 1.3799246549606323, - 1.3846858739852905, - 1.3870755434036255, - 1.387028455734253, - 1.20845627784729, - 1.2165700197219849, - 1.2268980741500854, - 1.2391585111618042, - 1.2530169486999512, - 1.2680953741073608, - 1.283982515335083, - 1.300244927406311, - 1.316439151763916, - 1.3321233987808228, - 1.346869707107544, - 1.3602761030197144, - 1.371976613998413, - 1.3816522359848022, - 1.3890390396118164, - 1.3939355611801147, - 1.3962080478668213, - 1.3957947492599487, - 1.3927068710327148, - 1.387028455734253, - 1.20845627784729, - 1.2214540243148804, - 1.2365326881408691, - 1.2532809972763062, - 1.2712421417236328, - 1.2899260520935059, - 1.3088233470916748, - 1.3274182081222534, - 1.3452036380767822, - 1.3616944551467896, - 1.3764408826828003, - 1.3890405893325806, - 1.3991498947143555, - 1.406493067741394, - 1.410869836807251, - 1.4121607542037964, - 1.4103306531906128, - 1.4054293632507324, - 1.3975907564163208, - 1.387028455734253, - 1.20845627784729, - 1.2250614166259766, - 1.2436490058898926, - 1.2637122869491577, - 1.2847037315368652, - 1.3060507774353027, - 1.3271713256835938, - 1.3474889993667603, - 1.3664498329162598, - 1.383536458015442, - 1.398282766342163, - 1.4102866649627686, - 1.4192206859588623, - 1.424841046333313, - 1.4269945621490479, - 1.4256223440170288, - 1.4207618236541748, - 1.4125458002090454, - 1.401198148727417, - 1.387028455734253, - 1.20845627784729, - 1.2270013093948364, - 1.2474759817123413, - 1.2693217992782593, - 1.291942834854126, - 1.3147221803665161, - 1.337038278579712, - 1.358282446861267, - 1.3778752088546753, - 1.39528226852417, - 1.4100286960601807, - 1.4217121601104736, - 1.4300141334533691, - 1.4347079992294312, - 1.4356658458709717, - 1.4328614473342896, - 1.426371455192566, - 1.4163726568222046, - 1.4031380414962769, - 1.387028455734253, - 1.20845627784729, - 1.227063536643982, - 1.2475987672805786, - 1.269501805305481, - 1.2921751737594604, - 1.315000295639038, - 1.3373547792434692, - 1.358628749847412, - 1.3782418966293335, - 1.39565908908844, - 1.4104055166244507, - 1.4220787286758423, - 1.4303604364395142, - 1.4350244998931885, - 1.4359440803527832, - 1.433093786239624, - 1.426551342010498, - 1.416495442390442, - 1.4032002687454224, - 1.387028455734253, - 1.20845627784729, - 1.2252413034439087, - 1.2440041303634644, - 1.2642326354980469, - 1.2853753566741943, - 1.306855320930481, - 1.3280867338180542, - 1.3484904766082764, - 1.3675098419189453, - 1.3846261501312256, - 1.3993725776672363, - 1.411346673965454, - 1.4202220439910889, - 1.4257564544677734, - 1.4277989864349365, - 1.426293969154358, - 1.4212822914123535, - 1.4129008054733276, - 1.4013781547546387, - 1.387028455734253, - 1.20845627784729, - 1.2217321395874023, - 1.237081527709961, - 1.2540855407714844, - 1.2722803354263306, - 1.2911697626113892, - 1.3102383613586426, - 1.3289661407470703, - 1.3468422889709473, - 1.3633790016174316, - 1.3781254291534424, - 1.390679121017456, - 1.4006978273391724, - 1.4079082012176514, - 1.4121134281158447, - 1.4131989479064941, - 1.4111350774765015, - 1.4059782028198242, - 1.3978689908981323, - 1.387028455734253 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.44902655482292175, - 0.4091843068599701, - 0.3706527352333069, - 0.33448290824890137, - 0.3016614317893982, - 0.2730835974216461, - 0.2495289146900177, - 0.23163990676403046, - 0.21990454196929932, - 0.2146429419517517, - 0.21599861979484558, - 0.22393456101417542, - 0.23823435604572296, - 0.2585079073905945, - 0.2842021882534027, - 0.3146163821220398, - 0.3489208221435547, - 0.3861798048019409, - 0.4253769516944885, - 0.46544313430786133, - 0.44902655482292175, - 0.42951202392578125, - 0.41075366735458374, - 0.3932632505893707, - 0.3775177597999573, - 0.363946795463562, - 0.35292044281959534, - 0.34473952651023865, - 0.339627206325531, - 0.33772289752960205, - 0.33907854557037354, - 0.3436572253704071, - 0.35133397579193115, - 0.3618994355201721, - 0.375065416097641, - 0.39047273993492126, - 0.40770119428634644, - 0.4262807369232178, - 0.4457046687602997, - 0.46544310450553894, - 0.44902655482292175, - 0.4519665539264679, - 0.4550502896308899, - 0.4581936001777649, - 0.4613107740879059, - 0.464316725730896, - 0.46712952852249146, - 0.46967244148254395, - 0.4718760550022125, - 0.473680317401886, - 0.47503599524497986, - 0.475906103849411, - 0.47626689076423645, - 0.47610852122306824, - 0.47543537616729736, - 0.4742657244205475, - 0.4726315438747406, - 0.4705773591995239, - 0.4681592285633087, - 0.46544310450553894, - 0.44902655482292175, - 0.47411465644836426, - 0.49874234199523926, - 0.5222377777099609, - 0.5439600944519043, - 0.563316822052002, - 0.579779863357544, - 0.5929002165794373, - 0.6023199558258057, - 0.6077821850776672, - 0.6091378927230835, - 0.6063500046730042, - 0.5994946956634521, - 0.5887588858604431, - 0.5744354724884033, - 0.5569151043891907, - 0.5366756916046143, - 0.5142694115638733, - 0.4903073012828827, - 0.46544310450553894, - 0.44902652502059937, - 0.4935562014579773, - 0.5370950698852539, - 0.5784556269645691, - 0.6165095567703247, - 0.6502188444137573, - 0.6786640882492065, - 0.7010692954063416, - 0.7168233394622803, - 0.7254964709281921, - 0.7268521189689636, - 0.720853328704834, - 0.7076637744903564, - 0.6876430511474609, - 0.6613374948501587, - 0.6294645071029663, - 0.5928935408592224, - 0.5526221394538879, - 0.5097488164901733, - 0.46544310450553894, - 0.44902652502059937, - 0.5081843733787537, - 0.5659524202346802, - 0.6207549571990967, - 0.6710970997810364, - 0.715605616569519, - 0.7530664205551147, - 0.782457709312439, - 0.8029778599739075, - 0.814067006111145, - 0.8154226541519165, - 0.807007908821106, - 0.7890522480010986, - 0.7620455026626587, - 0.7267242670059204, - 0.6840521097183228, - 0.63519287109375, - 0.5814794898033142, - 0.5243770480155945, - 0.46544310450553894, - 0.44902652502059937, - 0.5164140462875366, - 0.5821872353553772, - 0.6445521116256714, - 0.70180743932724, - 0.7523914575576782, - 0.7949243783950806, - 0.828245997428894, - 0.8514474630355835, - 0.8638957738876343, - 0.8652514219284058, - 0.8554774522781372, - 0.8348404765129089, - 0.8039034008979797, - 0.7635101079940796, - 0.7147624492645264, - 0.6589900255203247, - 0.5977143049240112, - 0.5326066613197327, - 0.46544310450553894, - 0.44902652502059937, - 0.5173532962799072, - 0.5840402245521545, - 0.6472682356834412, - 0.7053126096725464, - 0.7565900683403015, - 0.7997019290924072, - 0.8334721326828003, - 0.8569796085357666, - 0.869583010673523, - 0.8709386587142944, - 0.8610096573829651, - 0.8400666117668152, - 0.8086809515953064, - 0.7677087783813477, - 0.718267560005188, - 0.6617061495780945, - 0.5995672941207886, - 0.533545970916748, - 0.46544310450553894, - 0.44902652502059937, - 0.5109004974365234, - 0.5713105797767639, - 0.6286090016365051, - 0.6812328100204468, - 0.7277464270591736, - 0.7668812870979309, - 0.7975698113441467, - 0.8189748525619507, - 0.830512523651123, - 0.8318681716918945, - 0.8230048418045044, - 0.8041642904281616, - 0.7758603096008301, - 0.7388651371002197, - 0.6941877603530884, - 0.6430469751358032, - 0.586837649345398, - 0.5270931720733643, - 0.46544310450553894, - 0.44902652502059937, - 0.4977547824382782, - 0.545377790927887, - 0.5905964374542236, - 0.6321773529052734, - 0.6689862608909607, - 0.7000191807746887, - 0.7244296073913574, - 0.7415515780448914, - 0.7509181499481201, - 0.7522737979888916, - 0.7455816268920898, - 0.7310240268707275, - 0.7089982032775879, - 0.6801049113273621, - 0.6451323628425598, - 0.605034351348877, - 0.560904860496521, - 0.5139474272727966, - 0.46544310450553894, - 0.44902655482292175, - 0.4793407618999481, - 0.5090519785881042, - 0.5373497605323792, - 0.5634622573852539, - 0.586677074432373, - 0.6063610911369324, - 0.6219773888587952, - 0.6330998539924622, - 0.6394251585006714, - 0.6407808661460876, - 0.6371299028396606, - 0.6285718083381653, - 0.6153401136398315, - 0.5977957248687744, - 0.5764172077178955, - 0.5517877340316772, - 0.5245790481567383, - 0.49553340673446655, - 0.46544310450553894, - 0.44902655482292175, - 0.45765385031700134, - 0.46626973152160645, - 0.4746391475200653, - 0.4825338125228882, - 0.489738404750824, - 0.49605637788772583, - 0.5013154149055481, - 0.5053720474243164, - 0.5081155896186829, - 0.5094712376594543, - 0.5094020366668701, - 0.507909893989563, - 0.505035400390625, - 0.5008570551872253, - 0.4954887926578522, - 0.489077091217041, - 0.4817967712879181, - 0.4738464951515198, - 0.46544310450553894, - 0.44902655482292175, - 0.43504416942596436, - 0.42166709899902344, - 0.40926018357276917, - 0.39816194772720337, - 0.3886750340461731, - 0.3810582458972931, - 0.37551936507225037, - 0.37220945954322815, - 0.37121886014938354, - 0.37257450819015503, - 0.37623947858810425, - 0.38211381435394287, - 0.3900372385978699, - 0.3997936546802521, - 0.41111689805984497, - 0.4236981272697449, - 0.43719416856765747, - 0.4512368440628052, - 0.46544310450553894, - 0.44902655482292175, - 0.413961797952652, - 0.38007742166519165, - 0.34829771518707275, - 0.3194895088672638, - 0.2944386601448059, - 0.2738284170627594, - 0.2582210600376129, - 0.2480422556400299, - 0.24356971681118011, - 0.244925394654274, - 0.252072274684906, - 0.2648155093193054, - 0.2828074097633362, - 0.3055572509765625, - 0.3324444591999054, - 0.3627356290817261, - 0.3956044912338257, - 0.4301544725894928, - 0.46544310450553894, - 0.44902655482292175, - 0.3966914117336273, - 0.34600773453712463, - 0.2983580231666565, - 0.25504207611083984, - 0.21724143624305725, - 0.18598714470863342, - 0.16213184595108032, - 0.14632612466812134, - 0.1390012502670288, - 0.1403568983078003, - 0.15035617351531982, - 0.16872632503509521, - 0.1949661672115326, - 0.22836004197597504, - 0.26799702644348145, - 0.3127959966659546, - 0.36153480410575867, - 0.41288408637046814, - 0.46544313430786133, - 0.44902655482292175, - 0.3851044774055481, - 0.3231498897075653, - 0.2648528218269348, - 0.21180342137813568, - 0.16544875502586365, - 0.12705326080322266, - 0.09766420722007751, - 0.07808336615562439, - 0.06884479522705078, - 0.07020044326782227, - 0.08211341500282288, - 0.10425868630409241, - 0.13603225350379944, - 0.17656734585762024, - 0.22475838661193848, - 0.2792907655239105, - 0.33867695927619934, - 0.40129712224006653, - 0.46544313430786133, - 0.44902655482292175, - 0.3804565966129303, - 0.31398093700408936, - 0.25141286849975586, - 0.19445908069610596, - 0.14467313885688782, - 0.10341307520866394, - 0.07180431485176086, - 0.05070909857749939, - 0.04070290923118591, - 0.0420585572719574, - 0.054739147424697876, - 0.07839879393577576, - 0.11239206790924072, - 0.1557917594909668, - 0.20741404592990875, - 0.26585081219673157, - 0.3295080065727234, - 0.3966492712497711, - 0.46544313430786133, - 0.44902655482292175, - 0.38325148820877075, - 0.31949448585510254, - 0.2594946622848511, - 0.20488867163658142, - 0.1571660339832306, - 0.1176285445690155, - 0.08735451102256775, - 0.06716993451118469, - 0.05762532353401184, - 0.058980971574783325, - 0.07119998335838318, - 0.09394899010658264, - 0.1266075074672699, - 0.16828465461730957, - 0.21784362196922302, - 0.2739325761795044, - 0.3350215554237366, - 0.3994441330432892, - 0.46544313430786133, - 0.44902655482292175, - 0.3931862711906433, - 0.33909302949905396, - 0.28822240233421326, - 0.2419619858264923, - 0.2015736699104309, - 0.1681590974330902, - 0.1426297426223755, - 0.1256820559501648, - 0.1177782416343689, - 0.11913388967514038, - 0.12971210479736328, - 0.14922422170639038, - 0.177138090133667, - 0.2126922458410263, - 0.2549169659614563, - 0.30266034603118896, - 0.354620099067688, - 0.40937891602516174, - 0.46544313430786133, - 0.44902655482292175, - 0.4091843068599701, - 0.3706527650356293, - 0.33448293805122375, - 0.3016614317893982, - 0.2730836272239685, - 0.24952895939350128, - 0.23163996636867523, - 0.2199046015739441, - 0.21464300155639648, - 0.21599867939949036, - 0.2239346206188202, - 0.23823441565036774, - 0.25850796699523926, - 0.2842022180557251, - 0.3146164119243622, - 0.34892088174819946, - 0.3861798346042633, - 0.4253769814968109, - 0.46544313430786133 - ], - "y": [ - 0.47710466384887695, - 0.5324404239654541, - 0.5865503549575806, - 0.6379584074020386, - 0.6852623820304871, - 0.7271718382835388, - 0.7625436782836914, - 0.7904131412506104, - 0.810019850730896, - 0.8208289742469788, - 0.8225458264350891, - 0.815123438835144, - 0.7987643480300903, - 0.7739148139953613, - 0.741252601146698, - 0.7016686797142029, - 0.6562427282333374, - 0.6062139272689819, - 0.552946925163269, - 0.49789467453956604, - 0.47710466384887695, - 0.5422759652137756, - 0.6059530973434448, - 0.6663991212844849, - 0.7219652533531189, - 0.7711357474327087, - 0.8125694394111633, - 0.8451360464096069, - 0.8679472804069519, - 0.8803808689117432, - 0.8820977210998535, - 0.8730509281158447, - 0.8534873127937317, - 0.8239405155181885, - 0.7852165102958679, - 0.7383714914321899, - 0.6846833825111389, - 0.6256166696548462, - 0.5627824068069458, - 0.49789467453956604, - 0.47710466384887695, - 0.5450645089149475, - 0.6114541292190552, - 0.674462616443634, - 0.7323712110519409, - 0.7836003303527832, - 0.8267526626586914, - 0.8606510162353516, - 0.8843708038330078, - 0.8972649574279785, - 0.8989818096160889, - 0.8894745111465454, - 0.8690023422241211, - 0.8381237983703613, - 0.7976810932159424, - 0.7487775087356567, - 0.6927468776702881, - 0.6311177015304565, - 0.5655709505081177, - 0.49789467453956604, - 0.47710466384887695, - 0.5405039191246033, - 0.6024573445320129, - 0.6612750291824341, - 0.7153526544570923, - 0.7632149457931519, - 0.8035564422607422, - 0.8352768421173096, - 0.8575106859207153, - 0.8696516156196594, - 0.8713684678077698, - 0.8626143336296082, - 0.8436281085014343, - 0.8149275779724121, - 0.777295708656311, - 0.7317588925361633, - 0.6795593500137329, - 0.6221209168434143, - 0.5610104203224182, - 0.49789467453956604, - 0.47710466384887695, - 0.5290883779525757, - 0.5799376964569092, - 0.6282655596733093, - 0.6727536916732788, - 0.7121885418891907, - 0.7454944849014282, - 0.771763026714325, - 0.7902776002883911, - 0.8005331158638, - 0.8022499680519104, - 0.7953811883926392, - 0.7801142930984497, - 0.7568655610084534, - 0.7262692451477051, - 0.6891599893569946, - 0.6465498208999634, - 0.5996012687683105, - 0.5495948791503906, - 0.49789467453956604, - 0.47710466384887695, - 0.512054979801178, - 0.5463355183601379, - 0.5790112018585205, - 0.6091906428337097, - 0.6360507011413574, - 0.6588586568832397, - 0.6769923567771912, - 0.6899572610855103, - 0.6973996162414551, - 0.6991164088249207, - 0.6950609087944031, - 0.6853436231613159, - 0.6702297329902649, - 0.6501314043998718, - 0.6255969405174255, - 0.5972954630851746, - 0.5659990906715393, - 0.5325614809989929, - 0.4978947043418884, - 0.47710466384887695, - 0.49124956130981445, - 0.5052921772003174, - 0.5188494324684143, - 0.5315515995025635, - 0.5430521368980408, - 0.5530372858047485, - 0.5612348318099976, - 0.5674209594726562, - 0.5714271068572998, - 0.5731439590454102, - 0.5725246667861938, - 0.5695860385894775, - 0.5644083619117737, - 0.5571328401565552, - 0.5479578971862793, - 0.5371337532997131, - 0.5249557495117188, - 0.5117560625076294, - 0.4978947043418884, - 0.47710466384887695, - 0.46892666816711426, - 0.46125528216362, - 0.45429980754852295, - 0.448249876499176, - 0.44327062368392944, - 0.43949782848358154, - 0.43703436851501465, - 0.4359474778175354, - 0.43626683950424194, - 0.4379836618900299, - 0.4410511255264282, - 0.4453856348991394, - 0.4508689045906067, - 0.45735132694244385, - 0.46465614438056946, - 0.4725840985774994, - 0.48091885447502136, - 0.4894331395626068, - 0.4978947043418884, - 0.47710466384887695, - 0.4475053548812866, - 0.4189969599246979, - 0.39235714077949524, - 0.3683125674724579, - 0.3475191295146942, - 0.33054396510124207, - 0.31785014271736145, - 0.309783935546875, - 0.3065653443336487, - 0.30828216671943665, - 0.3148875832557678, - 0.3262014091014862, - 0.3419150114059448, - 0.36159980297088623, - 0.3847188353538513, - 0.4106414318084717, - 0.43866053223609924, - 0.4680118262767792, - 0.4978947043418884, - 0.47710469365119934, - 0.42930692434310913, - 0.3830965459346771, - 0.3397339880466461, - 0.30040210485458374, - 0.26617375016212463, - 0.2379825860261917, - 0.2165975570678711, - 0.2026020884513855, - 0.19637787342071533, - 0.19809472560882568, - 0.20770573616027832, - 0.22494882345199585, - 0.24935363233089447, - 0.28025442361831665, - 0.3168083429336548, - 0.35801827907562256, - 0.4027601182460785, - 0.4498134255409241, - 0.4978947043418884, - 0.47710469365119934, - 0.41630351543426514, - 0.3574444055557251, - 0.30213284492492676, - 0.2518776059150696, - 0.20804953575134277, - 0.17184412479400635, - 0.14424896240234375, - 0.1260167956352234, - 0.11764493584632874, - 0.11936178803443909, - 0.1311204433441162, - 0.1526002287864685, - 0.1832151710987091, - 0.2221302092075348, - 0.2682838439941406, - 0.3204171061515808, - 0.37710797786712646, - 0.4368099868297577, - 0.4978947043418884, - 0.47710469365119934, - 0.40990421175956726, - 0.3448203206062317, - 0.28362837433815, - 0.22799748182296753, - 0.17944517731666565, - 0.139295756816864, - 0.10864442586898804, - 0.08832728862762451, - 0.07889851927757263, - 0.08061537146568298, - 0.09343093633651733, - 0.11699569225311279, - 0.15066680312156677, - 0.19352585077285767, - 0.24440373480319977, - 0.30191266536712646, - 0.36448389291763306, - 0.4304106831550598, - 0.4978947043418884, - 0.47710469365119934, - 0.4108024835586548, - 0.34659236669540405, - 0.2862258553504944, - 0.23134952783584595, - 0.18346035480499268, - 0.14386457204818726, - 0.11364218592643738, - 0.09361770749092102, - 0.08433732390403748, - 0.08605417609214783, - 0.09872135519981384, - 0.12199345231056213, - 0.15523558855056763, - 0.1975409984588623, - 0.2477557510137558, - 0.30451011657714844, - 0.3662559390068054, - 0.43130895495414734, - 0.4978947043418884, - 0.47710469365119934, - 0.4189009666442871, - 0.3625684976577759, - 0.3096437454223633, - 0.2615704834461212, - 0.21966001391410828, - 0.1850554645061493, - 0.15870079398155212, - 0.14131495356559753, - 0.13337209820747375, - 0.1350889503955841, - 0.14641860127449036, - 0.16705206036567688, - 0.19642651081085205, - 0.2337406575679779, - 0.27797672152519226, - 0.3279280662536621, - 0.38223206996917725, - 0.43940746784210205, - 0.4978947043418884, - 0.47710469365119934, - 0.43332210183143616, - 0.3910173773765564, - 0.35134440660476685, - 0.3153854012489319, - 0.28412121534347534, - 0.2584046721458435, - 0.23893728852272034, - 0.22624999284744263, - 0.22068890929222107, - 0.22240576148033142, - 0.23135364055633545, - 0.2472885549068451, - 0.26977574825286865, - 0.29820191860198975, - 0.33179163932800293, - 0.3696286976337433, - 0.41068094968795776, - 0.4538286030292511, - 0.4978947043418884, - 0.47710466384887695, - 0.45250311493873596, - 0.42885616421699524, - 0.40680888295173645, - 0.3869626224040985, - 0.3698587417602539, - 0.3559638261795044, - 0.3456568121910095, - 0.3392189145088196, - 0.33682578802108765, - 0.3385425806045532, - 0.3443225622177124, - 0.3540080785751343, - 0.36733484268188477, - 0.3839394152164459, - 0.40336886048316956, - 0.4250931739807129, - 0.4485197365283966, - 0.4730096161365509, - 0.4978947043418884, - 0.47710466384887695, - 0.4743654727935791, - 0.47198453545570374, - 0.4700268507003784, - 0.46854573488235474, - 0.4675816595554352, - 0.4671608805656433, - 0.4672949016094208, - 0.4679800570011139, - 0.4691976308822632, - 0.47091445326805115, - 0.4730837047100067, - 0.47564616799354553, - 0.47853195667266846, - 0.4816623628139496, - 0.48495200276374817, - 0.48831111192703247, - 0.4916481077671051, - 0.49487194418907166, - 0.4978947043418884, - 0.47710466384887695, - 0.49654003977775574, - 0.5157288312911987, - 0.5341475605964661, - 0.5512939095497131, - 0.5667000412940979, - 0.5799458622932434, - 0.5906699895858765, - 0.5985798835754395, - 0.6034597754478455, - 0.6051766276359558, - 0.6036835312843323, - 0.5990212559700012, - 0.5913169384002686, - 0.5807808041572571, - 0.5677001476287842, - 0.5524318218231201, - 0.5353924036026001, - 0.5170465111732483, - 0.4978947043418884, - 0.47710466384887695, - 0.516623854637146, - 0.5553485751152039, - 0.5922225713729858, - 0.6262400150299072, - 0.65647292137146, - 0.6820967197418213, - 0.702412486076355, - 0.7168658971786499, - 0.7250628471374512, - 0.7267796397209167, - 0.7219695448875427, - 0.7107637524604797, - 0.6934678554534912, - 0.6705536842346191, - 0.6426462531089783, - 0.6105068325996399, - 0.5750121474266052, - 0.5371302962303162, - 0.49789467453956604, - 0.47710466384887695, - 0.5324404239654541, - 0.5865503549575806, - 0.6379584074020386, - 0.6852623820304871, - 0.7271718978881836, - 0.7625437378883362, - 0.7904131412506104, - 0.810019850730896, - 0.8208290338516235, - 0.8225458860397339, - 0.8151234984397888, - 0.7987644076347351, - 0.7739148139953613, - 0.7412526607513428, - 0.7016686797142029, - 0.6562427282333374, - 0.6062139272689819, - 0.552946925163269, - 0.49789467453956604 - ], - "z": [ - 1.3489336967468262, - 1.345854640007019, - 1.34456467628479, - 1.3450992107391357, - 1.3474435806274414, - 1.3515338897705078, - 1.3572584390640259, - 1.364461064338684, - 1.3729454278945923, - 1.3824800252914429, - 1.3928048610687256, - 1.4036381244659424, - 1.414684534072876, - 1.4256426095962524, - 1.436213493347168, - 1.4461088180541992, - 1.4550586938858032, - 1.46281898021698, - 1.4691780805587769, - 1.4739623069763184, - 1.3489336967468262, - 1.3415499925613403, - 1.3360730409622192, - 1.3326520919799805, - 1.3313804864883423, - 1.332292914390564, - 1.3353644609451294, - 1.340511441230774, - 1.3475933074951172, - 1.356416940689087, - 1.3667417764663696, - 1.3782860040664673, - 1.3907347917556763, - 1.403748631477356, - 1.4169725179672241, - 1.4300457239151, - 1.442611575126648, - 1.4543273448944092, - 1.4648734331130981, - 1.4739623069763184, - 1.3489336967468262, - 1.3381379842758179, - 1.3293421268463135, - 1.32278573513031, - 1.3186479806900024, - 1.3170413970947266, - 1.3180100917816162, - 1.3215274810791016, - 1.3274977207183838, - 1.335757851600647, - 1.3460826873779297, - 1.3581904172897339, - 1.3717509508132935, - 1.3863942623138428, - 1.4017210006713867, - 1.4173130989074707, - 1.4327452182769775, - 1.4475963115692139, - 1.4614614248275757, - 1.4739623069763184, - 1.3489336967468262, - 1.3359882831573486, - 1.3251011371612549, - 1.316569447517395, - 1.3106257915496826, - 1.3074321746826172, - 1.3070759773254395, - 1.3095667362213135, - 1.3148365020751953, - 1.3227416276931763, - 1.3330663442611694, - 1.3455291986465454, - 1.3597900867462158, - 1.375460147857666, - 1.3921117782592773, - 1.4092909097671509, - 1.4265289306640625, - 1.4433554410934448, - 1.4593117237091064, - 1.4739623069763184, - 1.3489336967468262, - 1.3353337049484253, - 1.3238099813461304, - 1.3146767616271973, - 1.3081833124160767, - 1.304506540298462, - 1.3037469387054443, - 1.3059250116348267, - 1.3109816312789917, - 1.31877863407135, - 1.3291033506393433, - 1.3416743278503418, - 1.3561484813690186, - 1.372131109237671, - 1.389186143875122, - 1.406848430633545, - 1.4246362447738647, - 1.4420642852783203, - 1.458657145500183, - 1.4739623069763184, - 1.3489336967468262, - 1.3362454175949097, - 1.3256083726882935, - 1.3173129558563232, - 1.3115851879119873, - 1.3085814714431763, - 1.3083837032318115, - 1.3109972476959229, - 1.3163508176803589, - 1.32429838180542, - 1.334623098373413, - 1.347043514251709, - 1.3612205982208252, - 1.376767873764038, - 1.3932610750198364, - 1.4102504253387451, - 1.4272723197937012, - 1.4438626766204834, - 1.4595688581466675, - 1.4739623069763184, - 1.3489336967468262, - 1.338624358177185, - 1.3303015232086182, - 1.3241921663284302, - 1.3204628229141235, - 1.3192154169082642, - 1.3204838037490845, - 1.3242335319519043, - 1.3303622007369995, - 1.33870267868042, - 1.3490275144577026, - 1.3610548973083496, - 1.3744570016860962, - 1.388867974281311, - 1.4038950204849243, - 1.4191280603408813, - 1.434151530265808, - 1.448555827140808, - 1.4619477987289429, - 1.4739623069763184, - 1.3489336967468262, - 1.3422129154205322, - 1.3373807668685913, - 1.334568977355957, - 1.3338541984558105, - 1.3352559804916382, - 1.3387360572814941, - 1.3441996574401855, - 1.3514975309371948, - 1.3604305982589722, - 1.3707554340362549, - 1.382190227508545, - 1.394423007965088, - 1.4071203470230103, - 1.4199355840682983, - 1.4325193166732788, - 1.444528341293335, - 1.4556350708007812, - 1.46553635597229, - 1.4739623069763184, - 1.3489336967468262, - 1.3466222286224365, - 1.3460789918899536, - 1.3473188877105713, - 1.3503080606460571, - 1.3549649715423584, - 1.3611626625061035, - 1.3687318563461304, - 1.3774663209915161, - 1.3871277570724487, - 1.397452473640442, - 1.4081590175628662, - 1.4189553260803223, - 1.42954683303833, - 1.4396445751190186, - 1.448973298072815, - 1.4572783708572388, - 1.4643332958221436, - 1.4699456691741943, - 1.4739623069763184, - 1.3489336967468262, - 1.3513742685317993, - 1.355453610420227, - 1.361060380935669, - 1.3680415153503418, - 1.376206636428833, - 1.3853330612182617, - 1.395171880722046, - 1.4054546356201172, - 1.4159008264541626, - 1.4262256622314453, - 1.4361473321914673, - 1.4453953504562378, - 1.4537172317504883, - 1.4608862400054932, - 1.46670663356781, - 1.4710197448730469, - 1.473707914352417, - 1.4746978282928467, - 1.4739623069763184, - 1.3489336967468262, - 1.3559544086456299, - 1.3644888401031494, - 1.374304175376892, - 1.3851326704025269, - 1.3966790437698364, - 1.408628225326538, - 1.4206544160842896, - 1.432429313659668, - 1.4436320066452026, - 1.4539568424224854, - 1.4631221294403076, - 1.470877766609192, - 1.4770123958587646, - 1.4813586473464966, - 1.4837979078292847, - 1.48426353931427, - 1.4827430248260498, - 1.4792778491973877, - 1.4739623069763184, - 1.3489336967468262, - 1.3598660230636597, - 1.372205376625061, - 1.3856151103973389, - 1.399729609489441, - 1.4141637086868286, - 1.4285237789154053, - 1.4424179792404175, - 1.4554674625396729, - 1.4673161506652832, - 1.477640986442566, - 1.486160159111023, - 1.4926414489746094, - 1.4969079494476318, - 1.4988433122634888, - 1.4983948469161987, - 1.4955745935440063, - 1.490459680557251, - 1.4831894636154175, - 1.4739623069763184, - 1.3489336967468262, - 1.3626853227615356, - 1.3777670860290527, - 1.3937677145004272, - 1.4102504253387451, - 1.4267659187316895, - 1.4428635835647583, - 1.4581042528152466, - 1.4720722436904907, - 1.484386682510376, - 1.4947113990783691, - 1.5027650594711304, - 1.5083277225494385, - 1.5112477540969849, - 1.5114455223083496, - 1.508915662765503, - 1.5037270784378052, - 1.4960213899612427, - 1.4860087633132935, - 1.4739623069763184, - 1.3489336967468262, - 1.3641068935394287, - 1.3805713653564453, - 1.3978781700134277, - 1.4155551195144653, - 1.4331200122833252, - 1.4500937461853027, - 1.4660133123397827, - 1.4804445505142212, - 1.492993712425232, - 1.503318428993225, - 1.5111372470855713, - 1.5162367820739746, - 1.5184780359268188, - 1.5177996158599854, - 1.5142203569412231, - 1.5078376531600952, - 1.4988256692886353, - 1.4874303340911865, - 1.4739623069763184, - 1.3489336967468262, - 1.3639764785766602, - 1.3803143501281738, - 1.3975013494491577, - 1.4150687456130981, - 1.4325374364852905, - 1.4494309425354004, - 1.4652881622314453, - 1.4796769618988037, - 1.4922045469284058, - 1.5025293827056885, - 1.5103696584701538, - 1.5155116319656372, - 1.517815113067627, - 1.5172170400619507, - 1.513733983039856, - 1.5074607133865356, - 1.4985685348510742, - 1.4873000383377075, - 1.4739623069763184, - 1.3489336967468262, - 1.3623085021972656, - 1.377023696899414, - 1.392677903175354, - 1.4088441133499146, - 1.4250813722610474, - 1.4409466981887817, - 1.456007480621338, - 1.4698526859283447, - 1.482104778289795, - 1.4924296140670776, - 1.5005453824996948, - 1.5062308311462402, - 1.5093308687210083, - 1.5097609758377075, - 1.5075093507766724, - 1.5026373863220215, - 1.495278000831604, - 1.4856319427490234, - 1.4739623069763184, - 1.3489336967468262, - 1.359283447265625, - 1.371056079864502, - 1.3839305639266968, - 1.3975557088851929, - 1.4115597009658813, - 1.4255605936050415, - 1.4391766786575317, - 1.4520362615585327, - 1.4637888669967651, - 1.4741135835647583, - 1.4827290773391724, - 1.4894001483917236, - 1.4939448833465576, - 1.4962393045425415, - 1.4962208271026611, - 1.4938900470733643, - 1.489310383796692, - 1.4826068878173828, - 1.4739623069763184, - 1.3489336967468262, - 1.3552292585372925, - 1.36305832862854, - 1.3722072839736938, - 1.3824267387390137, - 1.3934377431869507, - 1.4049400091171265, - 1.4166197776794434, - 1.4281585216522217, - 1.4392414093017578, - 1.4495662450790405, - 1.4588512182235718, - 1.4668432474136353, - 1.473324179649353, - 1.4781173467636108, - 1.481091856956482, - 1.4821667671203613, - 1.4813125133514404, - 1.4785526990890503, - 1.4739623069763184, - 1.3489336967468262, - 1.3505852222442627, - 1.3538968563079834, - 1.358778476715088, - 1.3650966882705688, - 1.3726792335510254, - 1.381319284439087, - 1.390781283378601, - 1.4008069038391113, - 1.4111227989196777, - 1.4214476346969604, - 1.4314996004104614, - 1.441004753112793, - 1.449703574180603, - 1.4573588371276855, - 1.463761806488037, - 1.4687378406524658, - 1.4721511602401733, - 1.4739086627960205, - 1.4739623069763184, - 1.3489336967468262, - 1.345854640007019, - 1.34456467628479, - 1.3450992107391357, - 1.3474435806274414, - 1.3515338897705078, - 1.3572584390640259, - 1.364461064338684, - 1.3729454278945923, - 1.3824800252914429, - 1.3928048610687256, - 1.4036381244659424, - 1.414684534072876, - 1.4256426095962524, - 1.436213493347168, - 1.4461088180541992, - 1.4550586938858032, - 1.46281898021698, - 1.4691780805587769, - 1.4739623069763184 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.492536336183548, - 0.5401719212532043, - 0.5866402387619019, - 0.6306737661361694, - 0.6710712909698486, - 0.7067309617996216, - 0.7366800308227539, - 0.7601016759872437, - 0.7763568162918091, - 0.7850022315979004, - 0.7858020067214966, - 0.7787343263626099, - 0.7639920711517334, - 0.7419772148132324, - 0.7132903933525085, - 0.6787140369415283, - 0.6391913294792175, - 0.5958003997802734, - 0.5497246980667114, - 0.5022212266921997, - 0.492536336183548, - 0.5203754901885986, - 0.5475872755050659, - 0.573429524898529, - 0.5971973538398743, - 0.6182423233985901, - 0.6359905004501343, - 0.6499577164649963, - 0.659762978553772, - 0.6651387810707092, - 0.6659385561943054, - 0.6621404886245728, - 0.6538480520248413, - 0.641287624835968, - 0.624801754951477, - 0.6048400402069092, - 0.5819471478462219, - 0.5567474365234375, - 0.5299282670021057, - 0.5022212266921997, - 0.49253636598587036, - 0.49756932258605957, - 0.5025971531867981, - 0.5074825882911682, - 0.5120924115180969, - 0.5163009166717529, - 0.519993245601654, - 0.5230687260627747, - 0.525443434715271, - 0.527052640914917, - 0.5278524160385132, - 0.5278209447860718, - 0.5269590616226196, - 0.5252903699874878, - 0.5228602886199951, - 0.5197351574897766, - 0.5160001516342163, - 0.5117572546005249, - 0.5071221590042114, - 0.5022212266921997, - 0.49253636598587036, - 0.4742249846458435, - 0.4565451443195343, - 0.4399791955947876, - 0.42497891187667847, - 0.41195353865623474, - 0.40125831961631775, - 0.393185019493103, - 0.38795387744903564, - 0.3857075273990631, - 0.3865073025226593, - 0.3903313875198364, - 0.3970753848552704, - 0.4065554141998291, - 0.41851288080215454, - 0.43262165784835815, - 0.4484967887401581, - 0.4657052755355835, - 0.4837777614593506, - 0.5022212266921997, - 0.49253636598587036, - 0.452872097492218, - 0.41442182660102844, - 0.3782344162464142, - 0.3452969491481781, - 0.31650787591934204, - 0.29265254735946655, - 0.27438151836395264, - 0.26219338178634644, - 0.25642043352127075, - 0.25722020864486694, - 0.2645708918571472, - 0.2782719135284424, - 0.2979496717453003, - 0.3230672776699066, - 0.3529396653175354, - 0.38675200939178467, - 0.42358195781707764, - 0.4624248743057251, - 0.5022212266921997, - 0.49253636598587036, - 0.43582460284233093, - 0.3807918429374695, - 0.3289393186569214, - 0.2816813290119171, - 0.2403070628643036, - 0.20594501495361328, - 0.1795324981212616, - 0.16179001331329346, - 0.15320155024528503, - 0.15400132536888123, - 0.16416752338409424, - 0.18342289328575134, - 0.21124210953712463, - 0.2468664050102234, - 0.2893240451812744, - 0.3374568819999695, - 0.38995200395584106, - 0.445377379655838, - 0.5022212266921997, - 0.49253636598587036, - 0.4249298572540283, - 0.35929954051971436, - 0.2974357008934021, - 0.24102574586868286, - 0.1916085183620453, - 0.1505318582057953, - 0.11891621351242065, - 0.09762409329414368, - 0.08723628520965576, - 0.08803606033325195, - 0.10000160336494446, - 0.1228066086769104, - 0.15582892298698425, - 0.1981678307056427, - 0.24866846203804016, - 0.3059532940387726, - 0.36845970153808594, - 0.4344826340675354, - 0.5022212266921997, - 0.49253636598587036, - 0.42136847972869873, - 0.35227397084236145, - 0.28713756799697876, - 0.22773593664169312, - 0.17568951845169067, - 0.13241788744926453, - 0.09910145401954651, - 0.07664898037910461, - 0.06567296385765076, - 0.06647273898124695, - 0.0790264904499054, - 0.10299184918403625, - 0.13771501183509827, - 0.18224883079528809, - 0.23537865281105042, - 0.29565513134002686, - 0.36143410205841064, - 0.4309212863445282, - 0.5022212266921997, - 0.49253636598587036, - 0.4255264401435852, - 0.36047643423080444, - 0.29916077852249146, - 0.2432519495487213, - 0.1942751407623291, - 0.1535661220550537, - 0.12223541736602783, - 0.1011376678943634, - 0.09084835648536682, - 0.09164813160896301, - 0.10351517796516418, - 0.12612581253051758, - 0.15886324644088745, - 0.2008344531059265, - 0.250894695520401, - 0.30767837166786194, - 0.36963653564453125, - 0.4350792169570923, - 0.5022212266921997, - 0.49253636598587036, - 0.4369530975818634, - 0.38301804661750793, - 0.3322024941444397, - 0.2858924865722656, - 0.24535131454467773, - 0.21168476343154907, - 0.18581119179725647, - 0.16843637824058533, - 0.16003429889678955, - 0.16083407402038574, - 0.1708138883113861, - 0.18970158696174622, - 0.2169818878173828, - 0.2519106864929199, - 0.2935352325439453, - 0.3407200872898102, - 0.39217817783355713, - 0.4465058743953705, - 0.5022212266921997, - 0.49253636598587036, - 0.454410195350647, - 0.41745612025260925, - 0.38268211483955383, - 0.3510367274284363, - 0.3233831822872162, - 0.3004757761955261, - 0.2829393744468689, - 0.2712523341178894, - 0.26573342084884644, - 0.2665331959724426, - 0.2736298441886902, - 0.28682976961135864, - 0.30577290058135986, - 0.32994258403778076, - 0.35867947340011597, - 0.3911997079849243, - 0.42661625146865845, - 0.46396300196647644, - 0.5022212266921997, - 0.49253636598587036, - 0.47600606083869934, - 0.46005871891975403, - 0.44512939453125, - 0.4316253066062927, - 0.41991478204727173, - 0.4103173017501831, - 0.403094619512558, - 0.3984437584877014, - 0.3964915871620178, - 0.397291362285614, - 0.4008212387561798, - 0.40698498487472534, - 0.41561442613601685, - 0.4264741837978363, - 0.4392680525779724, - 0.45364701747894287, - 0.4692188501358032, - 0.4855588376522064, - 0.5022212266921997, - 0.49253636598587036, - 0.4994003474712372, - 0.5062091946601868, - 0.5127772092819214, - 0.5189251899719238, - 0.5244854092597961, - 0.5293062329292297, - 0.5332561731338501, - 0.5362274646759033, - 0.5381391048431396, - 0.5389388203620911, - 0.5386049747467041, - 0.5371465682983398, - 0.5346033573150635, - 0.5310448408126831, - 0.5265678763389587, - 0.5212948322296143, - 0.5153693556785583, - 0.5089531540870667, - 0.5022212266921997, - 0.492536336183548, - 0.5220580101013184, - 0.5509064793586731, - 0.5782948732376099, - 0.6034761071205139, - 0.6257632374763489, - 0.6445484161376953, - 0.6593191623687744, - 0.6696726083755493, - 0.6753263473510742, - 0.6761261224746704, - 0.6720501184463501, - 0.6632095575332642, - 0.6498456001281738, - 0.6323226690292358, - 0.6111188530921936, - 0.5868124961853027, - 0.5600666403770447, - 0.5316108465194702, - 0.5022212266921997, - 0.492536336183548, - 0.5415236949920654, - 0.5893068313598633, - 0.63458251953125, - 0.6761155724525452, - 0.7127731442451477, - 0.7435553073883057, - 0.7676224708557129, - 0.7843180894851685, - 0.7931867241859436, - 0.7939864993095398, - 0.7866955995559692, - 0.7715128660202026, - 0.7488524913787842, - 0.7193325757980347, - 0.6837583184242249, - 0.6431000828742981, - 0.5984669923782349, - 0.5510764718055725, - 0.5022212266921997, - 0.492536336183548, - 0.5556879639625549, - 0.617249071598053, - 0.6755404472351074, - 0.7289720177650452, - 0.7760863304138184, - 0.8155982494354248, - 0.8464299440383911, - 0.8677403926849365, - 0.878948450088501, - 0.8797482252120972, - 0.8701179027557373, - 0.8503203392028809, - 0.8208953738212585, - 0.7826457619667053, - 0.7366147637367249, - 0.6840580701828003, - 0.6264091730117798, - 0.565240740776062, - 0.5022212266921997, - 0.492536336183548, - 0.5630159974098206, - 0.6317051649093628, - 0.696730375289917, - 0.7563177347183228, - 0.8088418841362, - 0.8528701663017273, - 0.8872015476226807, - 0.9108996391296387, - 0.9233179092407227, - 0.9241176843643188, - 0.9132771492004395, - 0.8910919427871704, - 0.858167290687561, - 0.8154013156890869, - 0.7639604806900024, - 0.7052479386329651, - 0.6408653259277344, - 0.5725687742233276, - 0.5022212266921997, - 0.492536336183548, - 0.5627135634422302, - 0.6311086416244507, - 0.6958558559417725, - 0.7551891803741455, - 0.8074901103973389, - 0.8513320088386536, - 0.8855190277099609, - 0.9091185927391052, - 0.9214868545532227, - 0.9222866296768188, - 0.911496102809906, - 0.8894094228744507, - 0.8566291332244873, - 0.8140496015548706, - 0.76283198595047, - 0.7043734788894653, - 0.6402687430381775, - 0.5722663402557373, - 0.5022212266921997, - 0.492536336183548, - 0.5548135042190552, - 0.6155239939689636, - 0.6730117797851562, - 0.7257088422775269, - 0.7721775770187378, - 0.8111504912376404, - 0.8415645956993103, - 0.8625901937484741, - 0.873653769493103, - 0.8744535446166992, - 0.8649677038192749, - 0.8454549908638, - 0.8164476156234741, - 0.77873694896698, - 0.7333515882492065, - 0.6815294027328491, - 0.6246840953826904, - 0.5643662810325623, - 0.5022212266921997, - 0.492536336183548, - 0.5401719212532043, - 0.5866402387619019, - 0.6306737065315247, - 0.6710712909698486, - 0.7067309021949768, - 0.7366800308227539, - 0.7601015567779541, - 0.7763567566871643, - 0.7850021123886108, - 0.785801887512207, - 0.7787342667579651, - 0.7639919519424438, - 0.7419771552085876, - 0.7132903337478638, - 0.6787140369415283, - 0.6391912698745728, - 0.5958003401756287, - 0.5497246980667114, - 0.5022212266921997 - ], - "y": [ - 0.5418469309806824, - 0.4904516637325287, - 0.44062623381614685, - 0.3937297463417053, - 0.35104137659072876, - 0.31372565031051636, - 0.2828003168106079, - 0.2591090202331543, - 0.24329796433448792, - 0.23579847812652588, - 0.23681509494781494, - 0.24632003903388977, - 0.2640541195869446, - 0.2895335853099823, - 0.3220633566379547, - 0.36075618863105774, - 0.40455663204193115, - 0.45226985216140747, - 0.5025944113731384, - 0.554157555103302, - 0.5418469309806824, - 0.47747376561164856, - 0.41502439975738525, - 0.3562023639678955, - 0.3026120960712433, - 0.2557154893875122, - 0.21679162979125977, - 0.18690234422683716, - 0.16686296463012695, - 0.1572200357913971, - 0.15823665261268616, - 0.1698850393295288, - 0.19184744358062744, - 0.22352489829063416, - 0.26405319571495056, - 0.31232690811157227, - 0.36702924966812134, - 0.4266680181026459, - 0.4896165132522583, - 0.554157555103302, - 0.5418469309806824, - 0.4714807868003845, - 0.4032019376754761, - 0.33887284994125366, - 0.2802482843399048, - 0.2289273738861084, - 0.18630993366241455, - 0.15355855226516724, - 0.13156652450561523, - 0.12093383073806763, - 0.12195044755935669, - 0.1345885992050171, - 0.15850365161895752, - 0.19304317235946655, - 0.23726505041122437, - 0.28996309638023376, - 0.3496997356414795, - 0.4148455262184143, - 0.4836235046386719, - 0.554157555103302, - 0.5418469309806824, - 0.47312217950820923, - 0.4064399003982544, - 0.34361910820007324, - 0.2863733172416687, - 0.236264169216156, - 0.1946583390235901, - 0.16269084811210632, - 0.1412336528301239, - 0.13087204098701477, - 0.13188865780830383, - 0.14425572752952576, - 0.1676359474658966, - 0.20139160752296448, - 0.24460187554359436, - 0.29608815908432007, - 0.3544459939002991, - 0.4180835485458374, - 0.4852648973464966, - 0.554157555103302, - 0.5418469309806824, - 0.4822200536727905, - 0.42438751459121704, - 0.3699268400669098, - 0.320323646068573, - 0.27693092823028564, - 0.24093228578567505, - 0.21330973505973816, - 0.1948167085647583, - 0.18595770001411438, - 0.18697431683540344, - 0.19783878326416016, - 0.21825483441352844, - 0.24766555428504944, - 0.2852686047554016, - 0.3300384283065796, - 0.3807537257671356, - 0.4360311031341553, - 0.4943627715110779, - 0.554157555103302, - 0.5418469309806824, - 0.4977884888648987, - 0.45509979128837585, - 0.41494518518447876, - 0.37842005491256714, - 0.34652066230773926, - 0.32011717557907104, - 0.29992979764938354, - 0.2865091860294342, - 0.28022143244743347, - 0.28123804926872253, - 0.28953126072883606, - 0.30487489700317383, - 0.32685041427612305, - 0.3548583984375, - 0.38813483715057373, - 0.4257720708847046, - 0.4667433798313141, - 0.509931206703186, - 0.554157555103302, - 0.5418469309806824, - 0.5181404948234558, - 0.49524858593940735, - 0.47379568219184875, - 0.45436692237854004, - 0.437492311000824, - 0.42363208532333374, - 0.4131643772125244, - 0.4063746929168701, - 0.403448224067688, - 0.40446484088897705, - 0.409396767616272, - 0.4181094765663147, - 0.43036535382270813, - 0.4458300471305847, - 0.46408170461654663, - 0.4846225678920746, - 0.506892204284668, - 0.5302832126617432, - 0.554157555103302, - 0.5418469309806824, - 0.5410705208778381, - 0.5404831767082214, - 0.5401009917259216, - 0.5399342775344849, - 0.5399876832962036, - 0.5402596592903137, - 0.540742814540863, - 0.541424036026001, - 0.5422846674919128, - 0.5433012843132019, - 0.5444461107254028, - 0.5456879138946533, - 0.5469928979873657, - 0.5483254194259644, - 0.5496491193771362, - 0.5509278774261475, - 0.5521268248558044, - 0.5532132387161255, - 0.554157555103302, - 0.5418469309806824, - 0.5640937685966492, - 0.5859017372131348, - 0.6066758632659912, - 0.6258495450019836, - 0.642899751663208, - 0.6573613882064819, - 0.6688399910926819, - 0.6770224571228027, - 0.6816855669021606, - 0.6827021837234497, - 0.6800445318222046, - 0.6737850904464722, - 0.6640946865081787, - 0.6512374877929688, - 0.6355643272399902, - 0.617502748966217, - 0.597545325756073, - 0.5762365460395813, - 0.554157555103302, - 0.5418469309806824, - 0.5847153663635254, - 0.6265823841094971, - 0.6663058996200562, - 0.7028024792671204, - 0.7350764274597168, - 0.7622475624084473, - 0.7835745811462402, - 0.7984758615493774, - 0.8065447807312012, - 0.8075613975524902, - 0.8014979362487793, - 0.7885197401046753, - 0.768980860710144, - 0.7434142231941223, - 0.712517261505127, - 0.677132785320282, - 0.6382259726524353, - 0.5968580842018127, - 0.554157555103302, - 0.5418469309806824, - 0.6007005572319031, - 0.6581167578697205, - 0.7125293016433716, - 0.7624540328979492, - 0.8065290451049805, - 0.8435520529747009, - 0.8725132942199707, - 0.892622709274292, - 0.9033317565917969, - 0.9043483734130859, - 0.8956447839736938, - 0.8774584531784058, - 0.8502854108810425, - 0.8148667812347412, - 0.7721688747406006, - 0.7233561873435974, - 0.6697603464126587, - 0.6128432750701904, - 0.554157555103302, - 0.5418469309806824, - 0.6103171706199646, - 0.677087664604187, - 0.7403370141983032, - 0.7983399629592896, - 0.849514365196228, - 0.8924643397331238, - 0.926018238067627, - 0.949260950088501, - 0.9615582227706909, - 0.96257483959198, - 0.9522830247879028, - 0.930963397026062, - 0.8991976380348206, - 0.8578522205352783, - 0.8080548048019409, - 0.751163899898529, - 0.6887312531471252, - 0.622459888458252, - 0.554157555103302, - 0.5418469309806824, - 0.612523078918457, - 0.6814392805099487, - 0.7467156648635864, - 0.8065716028213501, - 0.8593745231628418, - 0.9036839604377747, - 0.9382914304733276, - 0.9622527360916138, - 0.9749144315719604, - 0.9759310483932495, - 0.9652748107910156, - 0.9432365298271179, - 0.9104173183441162, - 0.8677123785018921, - 0.8162865042686462, - 0.7575424909591675, - 0.693082869052887, - 0.6246657967567444, - 0.554157555103302, - 0.5418469309806824, - 0.6070792078971863, - 0.6707000136375427, - 0.7309738993644714, - 0.7862569093704224, - 0.835040807723999, - 0.8759951591491699, - 0.9080027341842651, - 0.9301903247833252, - 0.9419528245925903, - 0.9429694414138794, - 0.933212399482727, - 0.9129477739334106, - 0.8827284574508667, - 0.8433786630630493, - 0.795971691608429, - 0.7418007850646973, - 0.682343602180481, - 0.6192219257354736, - 0.554157555103302, - 0.5418469309806824, - 0.5945754647254944, - 0.6460336446762085, - 0.6948177814483643, - 0.7395972013473511, - 0.7791503667831421, - 0.8123984336853027, - 0.8384344577789307, - 0.8565481901168823, - 0.8662456274032593, - 0.8672622442245483, - 0.8595702648162842, - 0.843379557132721, - 0.8191317319869995, - 0.7874881625175476, - 0.7493120431900024, - 0.7056446671485901, - 0.6576772928237915, - 0.6067182421684265, - 0.554157555103302, - 0.5418469309806824, - 0.5763669610023499, - 0.610113263130188, - 0.6421653032302856, - 0.6716488599777222, - 0.6977596879005432, - 0.7197854518890381, - 0.7371255159378052, - 0.7493066787719727, - 0.755996823310852, - 0.7570134401321411, - 0.7523287534713745, - 0.7420706152915955, - 0.7265187501907349, - 0.7060974836349487, - 0.6813637018203735, - 0.6529921889305115, - 0.6217568516731262, - 0.5885096788406372, - 0.554157555103302, - 0.5418469309806824, - 0.5544266700744629, - 0.5668311715126038, - 0.5787221193313599, - 0.5897750854492188, - 0.5996885299682617, - 0.6081922054290771, - 0.6150540113449097, - 0.6200867891311646, - 0.6231533288955688, - 0.6241699457168579, - 0.6231088638305664, - 0.6199991106987, - 0.6149255037307739, - 0.6080263257026672, - 0.5994898676872253, - 0.5895489454269409, - 0.5784748196601868, - 0.5665693879127502, - 0.554157555103302, - 0.5418469309806824, - 0.5311322808265686, - 0.5208778381347656, - 0.5113632678985596, - 0.5028480887413025, - 0.49556463956832886, - 0.4897115230560303, - 0.48544842004776, - 0.48289164900779724, - 0.4821109175682068, - 0.48312750458717346, - 0.4859137237071991, - 0.4903935492038727, - 0.49644482135772705, - 0.5039023756980896, - 0.5125629305839539, - 0.5221901535987854, - 0.5325214862823486, - 0.5432750582695007, - 0.554157555103302, - 0.5418469309806824, - 0.5090081095695496, - 0.47723299264907837, - 0.447388231754303, - 0.42028796672821045, - 0.3966714143753052, - 0.3771827816963196, - 0.3623536229133606, - 0.3525885045528412, - 0.3481537699699402, - 0.34917038679122925, - 0.35561057925224304, - 0.36729875206947327, - 0.3839160203933716, - 0.4050091505050659, - 0.43000274896621704, - 0.4582151174545288, - 0.4888765811920166, - 0.5211508274078369, - 0.554157555103302, - 0.5418469309806824, - 0.4904516637325287, - 0.44062620401382446, - 0.39372971653938293, - 0.35104134678840637, - 0.3137255907058716, - 0.28280025720596313, - 0.2591089606285095, - 0.24329790472984314, - 0.2357984185218811, - 0.23681503534317017, - 0.246319979429245, - 0.2640540599822998, - 0.2895335555076599, - 0.3220633268356323, - 0.36075615882873535, - 0.40455660223960876, - 0.4522698223590851, - 0.5025944113731384, - 0.554157555103302 - ], - "z": [ - 1.4476412534713745, - 1.45015287399292, - 1.4538474082946777, - 1.4586238861083984, - 1.464352011680603, - 1.47087562084198, - 1.47801673412323, - 1.485580563545227, - 1.4933607578277588, - 1.5011451244354248, - 1.5087213516235352, - 1.5158827304840088, - 1.522433876991272, - 1.5281962156295776, - 1.5330125093460083, - 1.5367512702941895, - 1.5393106937408447, - 1.5406209230422974, - 1.5406461954116821, - 1.5393856763839722, - 1.4476412534713745, - 1.4539841413497925, - 1.4614052772521973, - 1.4697023630142212, - 1.4786487817764282, - 1.488000750541687, - 1.4975031614303589, - 1.5068966150283813, - 1.5159251689910889, - 1.5243422985076904, - 1.5319185256958008, - 1.5384471416473389, - 1.5437500476837158, - 1.5476826429367065, - 1.5501376390457153, - 1.5510481595993042, - 1.5503891706466675, - 1.5481789112091064, - 1.5444773435592651, - 1.5393856763839722, - 1.4476412534713745, - 1.45719575881958, - 1.4677410125732422, - 1.4789892435073853, - 1.4906337261199951, - 1.5023566484451294, - 1.5138384103775024, - 1.5247657299041748, - 1.5348405838012695, - 1.543788194656372, - 1.5513644218444824, - 1.5573625564575195, - 1.5616190433502197, - 1.56401789188385, - 1.5644935369491577, - 1.5630329847335815, - 1.559676170349121, - 1.5545145273208618, - 1.5476890802383423, - 1.5393856763839722, - 1.4476412534713745, - 1.4594398736953735, - 1.47216796875, - 1.4854782819747925, - 1.4990078210830688, - 1.5123873949050903, - 1.5252522230148315, - 1.537251353263855, - 1.5480573177337646, - 1.5573755502700806, - 1.5649516582489014, - 1.5705792903900146, - 1.5741046667099, - 1.5754317045211792, - 1.5745242834091187, - 1.5714070796966553, - 1.5661652088165283, - 1.5589414834976196, - 1.5499330759048462, - 1.5393856763839722, - 1.4476412534713745, - 1.4604731798171997, - 1.4742063283920288, - 1.4884662628173828, - 1.5028637647628784, - 1.5170061588287354, - 1.5305078029632568, - 1.5430004596710205, - 1.5541430711746216, - 1.5636318922042847, - 1.571208119392395, - 1.5766650438308716, - 1.5798537731170654, - 1.580687403678894, - 1.5791430473327637, - 1.5752630233764648, - 1.569153070449829, - 1.5609798431396484, - 1.5509663820266724, - 1.5393856763839722, - 1.4476412534713745, - 1.4601837396621704, - 1.4736353158950806, - 1.4876292943954468, - 1.5017836093902588, - 1.5157123804092407, - 1.5290356874465942, - 1.5413899421691895, - 1.5524383783340454, - 1.5618793964385986, - 1.569455623626709, - 1.5749603509902954, - 1.578243374824524, - 1.579215168952942, - 1.577849268913269, - 1.5741829872131348, - 1.568316102027893, - 1.5604089498519897, - 1.550676941871643, - 1.5393856763839722, - 1.4476412534713745, - 1.4586029052734375, - 1.4705168008804321, - 1.4830580949783325, - 1.4958845376968384, - 1.5086462497711182, - 1.5209952592849731, - 1.5325945615768433, - 1.5431278944015503, - 1.5523078441619873, - 1.5598840713500977, - 1.5656498670578003, - 1.5694479942321777, - 1.5711747407913208, - 1.5707831382751465, - 1.5682837963104248, - 1.5637450218200684, - 1.5572904348373413, - 1.5490961074829102, - 1.5393856763839722, - 1.4476412534713745, - 1.4559019804000854, - 1.46518874168396, - 1.475248098373413, - 1.485805630683899, - 1.496573567390442, - 1.5072579383850098, - 1.5175673961639404, - 1.5272207260131836, - 1.5359545946121216, - 1.543530821800232, - 1.549742579460144, - 1.5544207096099854, - 1.5574374198913574, - 1.5587103366851807, - 1.558205008506775, - 1.555935025215149, - 1.5519622564315796, - 1.546395182609558, - 1.5393856763839722, - 1.4476412534713745, - 1.452373743057251, - 1.4582284688949585, - 1.4650455713272095, - 1.4726393222808838, - 1.4808024168014526, - 1.4893122911453247, - 1.497936725616455, - 1.5064404010772705, - 1.5145915746688843, - 1.5221678018569946, - 1.5289623737335205, - 1.5347900390625, - 1.5394917726516724, - 1.542939305305481, - 1.5450385808944702, - 1.5457324981689453, - 1.5450019836425781, - 1.5428669452667236, - 1.5393856763839722, - 1.4476412534713745, - 1.4484003782272339, - 1.450390100479126, - 1.4535561800003052, - 1.4578121900558472, - 1.4630420207977295, - 1.4691029787063599, - 1.475829839706421, - 1.4830390214920044, - 1.4905339479446411, - 1.4981101751327515, - 1.5055609941482544, - 1.5126831531524658, - 1.5192824602127075, - 1.5251789093017578, - 1.5302114486694336, - 1.534243106842041, - 1.5371637344360352, - 1.538893699645996, - 1.5393856763839722, - 1.4476412534713745, - 1.4444125890731812, - 1.4425233602523804, - 1.4420249462127686, - 1.442931056022644, - 1.4452168941497803, - 1.4488201141357422, - 1.45364248752594, - 1.4595524072647095, - 1.4663887023925781, - 1.4739649295806885, - 1.4820743799209595, - 1.4904958009719849, - 1.4989995956420898, - 1.5073537826538086, - 1.5153303146362305, - 1.5227118730545044, - 1.529296875, - 1.5349057912826538, - 1.5393856763839722, - 1.4476412534713745, - 1.4408425092697144, - 1.4354804754257202, - 1.431701421737671, - 1.4296084642410278, - 1.4292587041854858, - 1.430661678314209, - 1.433779001235962, - 1.438525676727295, - 1.4447723627090454, - 1.4523485898971558, - 1.461047649383545, - 1.4706323146820068, - 1.4808411598205566, - 1.4913955926895142, - 1.5020078420639038, - 1.5123883485794067, - 1.5222539901733398, - 1.531335711479187, - 1.5393856763839722, - 1.4476412534713745, - 1.4380768537521362, - 1.4300247430801392, - 1.4237043857574463, - 1.4192882776260376, - 1.4168968200683594, - 1.416595220565796, - 1.4183918237686157, - 1.422237515449524, - 1.4280273914337158, - 1.4356036186218262, - 1.444759488105774, - 1.4552451372146606, - 1.4667747020721436, - 1.4790337085723877, - 1.491687536239624, - 1.5043913125991821, - 1.5167982578277588, - 1.5285701751708984, - 1.5393856763839722, - 1.4476412534713745, - 1.4364155530929565, - 1.4267473220825195, - 1.4189003705978394, - 1.4130886793136597, - 1.409470796585083, - 1.4081453084945679, - 1.4091484546661377, - 1.4124528169631958, - 1.4179682731628418, - 1.4255445003509521, - 1.4349747896194458, - 1.4460017681121826, - 1.4583247900009155, - 1.4716075658798218, - 1.485487937927246, - 1.4995872974395752, - 1.5135209560394287, - 1.5269087553024292, - 1.5393856763839722, - 1.4476412534713745, - 1.4360384941101074, - 1.4260035753250122, - 1.417810082435608, - 1.4116815328598022, - 1.4077852964401245, - 1.4062273502349854, - 1.4070504903793335, - 1.4102320671081543, - 1.4156852960586548, - 1.4232614040374756, - 1.4327539205551147, - 1.4439038038253784, - 1.456406831741333, - 1.4699221849441528, - 1.4840809106826782, - 1.4984968900680542, - 1.5127770900726318, - 1.52653169631958, - 1.5393856763839722, - 1.4476412534713745, - 1.4369865655899048, - 1.4278737306594849, - 1.4205515384674072, - 1.4152194261550903, - 1.4120230674743652, - 1.411049485206604, - 1.4123252630233765, - 1.4158157110214233, - 1.4214255809783936, - 1.429001808166504, - 1.4383376836776733, - 1.449178695678711, - 1.4612289667129517, - 1.474159836769104, - 1.4876186847686768, - 1.5012383460998535, - 1.514647364616394, - 1.5274797677993774, - 1.5393856763839722, - 1.4476412534713745, - 1.4391570091247559, - 1.4321554899215698, - 1.4268276691436768, - 1.423318862915039, - 1.421724796295166, - 1.422088861465454, - 1.4244012832641602, - 1.4285988807678223, - 1.4345672130584717, - 1.442143440246582, - 1.4511208534240723, - 1.4612547159194946, - 1.4722683429718018, - 1.4838616847991943, - 1.4957181215286255, - 1.5075145959854126, - 1.5189290046691895, - 1.5296502113342285, - 1.5393856763839722, - 1.4476412534713745, - 1.442314624786377, - 1.4383846521377563, - 1.4359585046768188, - 1.4351022243499756, - 1.4358391761779785, - 1.4381494522094727, - 1.441969871520996, - 1.447196364402771, - 1.4536861181259155, - 1.4612623453140259, - 1.4697182178497314, - 1.4788233041763306, - 1.4883289337158203, - 1.4979760646820068, - 1.507501482963562, - 1.5166453123092651, - 1.525158166885376, - 1.5328079462051392, - 1.5393856763839722, - 1.4476412534713745, - 1.4461172819137573, - 1.445886254310608, - 1.446954369544983, - 1.449292540550232, - 1.4528368711471558, - 1.4574906826019287, - 1.4631272554397583, - 1.469592571258545, - 1.4767104387283325, - 1.4842866659164429, - 1.492114543914795, - 1.4999805688858032, - 1.5076701641082764, - 1.514973759651184, - 1.5216917991638184, - 1.5276412963867188, - 1.5326597690582275, - 1.5366106033325195, - 1.5393856763839722, - 1.4476412534713745, - 1.45015287399292, - 1.4538474082946777, - 1.4586238861083984, - 1.464352011680603, - 1.47087562084198, - 1.47801673412323, - 1.485580563545227, - 1.4933607578277588, - 1.5011451244354248, - 1.5087213516235352, - 1.5158827304840088, - 1.522433876991272, - 1.5281962156295776, - 1.5330125093460083, - 1.5367512702941895, - 1.5393106937408447, - 1.5406209230422974, - 1.5406461954116821, - 1.5393856763839722 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.5256174802780151, - 0.47478044033050537, - 0.42541417479515076, - 0.3788652718067169, - 0.33640342950820923, - 0.29918694496154785, - 0.2682308852672577, - 0.24437975883483887, - 0.22828412055969238, - 0.22038298845291138, - 0.22089195251464844, - 0.22979706525802612, - 0.2468554973602295, - 0.2716018259525299, - 0.30336108803749084, - 0.34126701951026917, - 0.3842856287956238, - 0.4312434196472168, - 0.48085957765579224, - 0.5317806601524353, - 0.5256174802780151, - 0.46054500341415405, - 0.3973316252231598, - 0.33770161867141724, - 0.28328144550323486, - 0.2355557084083557, - 0.19582614302635193, - 0.1651764214038849, - 0.14444273710250854, - 0.13419052958488464, - 0.1346994936466217, - 0.14595568180084229, - 0.1676521599292755, - 0.19919702410697937, - 0.23972991108894348, - 0.2881450653076172, - 0.3431219458580017, - 0.40316087007522583, - 0.4666241407394409, - 0.5317806601524353, - 0.5256174802780151, - 0.4533657431602478, - 0.38316890597343445, - 0.3169417381286621, - 0.2564907968044281, - 0.20346495509147644, - 0.15931066870689392, - 0.12523230910301208, - 0.10215947031974792, - 0.09072157740592957, - 0.09123054146766663, - 0.10367241501808167, - 0.1277080476284027, - 0.16268154978752136, - 0.2076391577720642, - 0.26135438680648804, - 0.32236212491989136, - 0.3889981508255005, - 0.45944488048553467, - 0.5317806601524353, - 0.5256174802780151, - 0.454020619392395, - 0.38446080684661865, - 0.31883540749549866, - 0.25893452763557434, - 0.20639216899871826, - 0.1626415252685547, - 0.12887588143348694, - 0.10601642727851868, - 0.09468665719032288, - 0.09519562125205994, - 0.10752937197685242, - 0.13135161995887756, - 0.16601240634918213, - 0.21056637167930603, - 0.26379814743995667, - 0.3242557644844055, - 0.3902900218963623, - 0.4600997269153595, - 0.5317806601524353, - 0.5256174802780151, - 0.4624386727809906, - 0.4010672867298126, - 0.3431773781776428, - 0.29034796357154846, - 0.24402019381523132, - 0.20545771718025208, - 0.17571237683296204, - 0.15559566020965576, - 0.14565619826316833, - 0.1461651623249054, - 0.1571086049079895, - 0.17818811535835266, - 0.2088286280632019, - 0.2481943666934967, - 0.2952115535736084, - 0.3485977053642273, - 0.40689653158187866, - 0.4685177803039551, - 0.5317806601524353, - 0.5256174802780151, - 0.4777076840400696, - 0.43118882179260254, - 0.38732975721359253, - 0.34732693433761597, - 0.3122714161872864, - 0.2831194996833801, - 0.2606663703918457, - 0.24552443623542786, - 0.23810681700706482, - 0.23861578106880188, - 0.2470373809337616, - 0.26314210891723633, - 0.28649044036865234, - 0.31644558906555176, - 0.3521905243396759, - 0.3927501440048218, - 0.4370180666446686, - 0.48378682136535645, - 0.5317806601524353, - 0.5256174802780151, - 0.4981730282306671, - 0.4715612530708313, - 0.4465080499649048, - 0.4236967861652374, - 0.4037497341632843, - 0.38721102476119995, - 0.37453165650367737, - 0.3660575747489929, - 0.36202001571655273, - 0.3625289797782898, - 0.36757057905197144, - 0.3770073652267456, - 0.3905819058418274, - 0.40792393684387207, - 0.42856040596961975, - 0.45192840695381165, - 0.47739049792289734, - 0.5042521357536316, - 0.5317806601524353, - 0.5256174206733704, - 0.5216169357299805, - 0.5178095698356628, - 0.5142993330955505, - 0.5111818313598633, - 0.5085421204566956, - 0.5064522624015808, - 0.5049692392349243, - 0.5041334629058838, - 0.503967821598053, - 0.50447678565979, - 0.5056464672088623, - 0.5074449777603149, - 0.509823203086853, - 0.5127162933349609, - 0.5160453915596008, - 0.519719660282135, - 0.5236388444900513, - 0.5276960730552673, - 0.5317806601524353, - 0.5256174206733704, - 0.5454989075660706, - 0.5649221539497375, - 0.5833573341369629, - 0.6003015041351318, - 0.6152926087379456, - 0.6279217004776001, - 0.6378442049026489, - 0.6447895169258118, - 0.6485681533813477, - 0.6490771174430847, - 0.6463024616241455, - 0.6403198838233948, - 0.6312926411628723, - 0.6194668412208557, - 0.6051651239395142, - 0.5887776613235474, - 0.570751428604126, - 0.5515780448913574, - 0.5317806005477905, - 0.5256174206733704, - 0.5672309994697571, - 0.6077935099601746, - 0.646198570728302, - 0.6813985109329224, - 0.7124332189559937, - 0.738456130027771, - 0.7587574124336243, - 0.7727832794189453, - 0.7801512479782104, - 0.7806601524353027, - 0.7742962837219238, - 0.7612330913543701, - 0.7418270707130432, - 0.7166074514389038, - 0.6862621307373047, - 0.6516188979148865, - 0.613622784614563, - 0.573310136795044, - 0.5317806005477905, - 0.5256174206733704, - 0.5844581723213196, - 0.6417779326438904, - 0.6960132122039795, - 0.7456845641136169, - 0.7894371151924133, - 0.8260774612426758, - 0.8546060919761658, - 0.8742448091506958, - 0.8844579458236694, - 0.8849669098854065, - 0.8757578134536743, - 0.8570818305015564, - 0.8294484615325928, - 0.7936114072799683, - 0.750548243522644, - 0.701433539390564, - 0.647607147693634, - 0.5905373096466064, - 0.5317806005477905, - 0.5256174206733704, - 0.595313549041748, - 0.663192629814148, - 0.7274030447006226, - 0.7861933708190918, - 0.837959885597229, - 0.88129061460495, - 0.9150035381317139, - 0.9381791353225708, - 0.9501850605010986, - 0.9506940245628357, - 0.9396920800209045, - 0.9174792766571045, - 0.8846615552902222, - 0.8421341776847839, - 0.7910569906234741, - 0.7328234314918518, - 0.6690219044685364, - 0.6013926863670349, - 0.5317806005477905, - 0.5256174206733704, - 0.5986208915710449, - 0.6697170734405518, - 0.736966609954834, - 0.798535168170929, - 0.8527432680130005, - 0.8981123566627502, - 0.933404803276062, - 0.9576579332351685, - 0.970210075378418, - 0.9707190990447998, - 0.9591708779335022, - 0.9358805418014526, - 0.9014832973480225, - 0.8569175601005554, - 0.803398847579956, - 0.7423869371414185, - 0.6755462884902954, - 0.604699969291687, - 0.5317806005477905, - 0.5256174206733704, - 0.5940216779708862, - 0.6606441140174866, - 0.7236673831939697, - 0.7813724279403687, - 0.8321852684020996, - 0.8747197389602661, - 0.90781569480896, - 0.9305703639984131, - 0.942362904548645, - 0.9428719282150269, - 0.932083249092102, - 0.9102914333343506, - 0.8780907392501831, - 0.8363595008850098, - 0.7862361073493958, - 0.729087769985199, - 0.6664733290672302, - 0.6001008152961731, - 0.5317806005477905, - 0.5256174206733704, - 0.5820143818855286, - 0.636957049369812, - 0.6889467239379883, - 0.7365652322769165, - 0.7785136699676514, - 0.8136478662490845, - 0.8410093784332275, - 0.8598518967628479, - 0.8696613311767578, - 0.8701703548431396, - 0.8613648414611816, - 0.8434851169586182, - 0.8170188069343567, - 0.7826879024505615, - 0.7414288520812988, - 0.6943670511245728, - 0.6427862644195557, - 0.5880935192108154, - 0.5317806005477905, - 0.5256174206733704, - 0.5639001727104187, - 0.6012226939201355, - 0.6365669965744019, - 0.668968915939331, - 0.6975446343421936, - 0.7215147018432617, - 0.7402252554893494, - 0.7531659603118896, - 0.7599837183952332, - 0.7604926824569702, - 0.7546789050102234, - 0.74270099401474, - 0.7248857021331787, - 0.7017189264297485, - 0.6738325357437134, - 0.6419873237609863, - 0.6070519685745239, - 0.5699793100357056, - 0.5317806005477905, - 0.5256174206733704, - 0.5416419506072998, - 0.5573134422302246, - 0.5722043514251709, - 0.5859085917472839, - 0.5980522632598877, - 0.6083042025566101, - 0.6163846850395203, - 0.6220734119415283, - 0.6252150535583496, - 0.6257240176200867, - 0.6235863566398621, - 0.6188604235649109, - 0.6116751432418823, - 0.6022264957427979, - 0.5907722115516663, - 0.5776247382164001, - 0.5631426572799683, - 0.5477210879325867, - 0.5317806005477905, - 0.5256174802780151, - 0.5176517963409424, - 0.509987473487854, - 0.5028335452079773, - 0.4963851869106293, - 0.4908182621002197, - 0.48628461360931396, - 0.4829079210758209, - 0.48078030347824097, - 0.47995978593826294, - 0.48046875, - 0.4822932481765747, - 0.48538362979888916, - 0.4896555542945862, - 0.4949924647808075, - 0.501248836517334, - 0.5082539319992065, - 0.5158167481422424, - 0.5237309336662292, - 0.5317806601524353, - 0.5256174802780151, - 0.4945293664932251, - 0.4643733501434326, - 0.4359719753265381, - 0.41009998321533203, - 0.3874630331993103, - 0.36867862939834595, - 0.3542591333389282, - 0.3445979356765747, - 0.3399585485458374, - 0.34046751260757446, - 0.3461109399795532, - 0.35673487186431885, - 0.37204957008361816, - 0.3916372060775757, - 0.41496357321739197, - 0.44139236211776733, - 0.47020262479782104, - 0.500608503818512, - 0.5317806601524353, - 0.5256174802780151, - 0.47478044033050537, - 0.42541417479515076, - 0.37886524200439453, - 0.33640336990356445, - 0.2991868853569031, - 0.2682308554649353, - 0.2443796992301941, - 0.2282840609550476, - 0.220382958650589, - 0.22089192271232605, - 0.22979700565338135, - 0.24685543775558472, - 0.27160176634788513, - 0.30336105823516846, - 0.3412669897079468, - 0.3842855989933014, - 0.4312434196472168, - 0.48085954785346985, - 0.5317806601524353 - ], - "y": [ - 0.5921331644058228, - 0.6422001719474792, - 0.6910085678100586, - 0.7372270226478577, - 0.779594898223877, - 0.8169564008712769, - 0.8482924103736877, - 0.8727482557296753, - 0.8896567821502686, - 0.8985567092895508, - 0.8992054462432861, - 0.891585111618042, - 0.8759036660194397, - 0.8525888323783875, - 0.8222765922546387, - 0.7857937812805176, - 0.7441354990005493, - 0.6984381675720215, - 0.649948239326477, - 0.5999884009361267, - 0.5921331644058228, - 0.6222816705703735, - 0.6517149209976196, - 0.6796300411224365, - 0.7052656412124634, - 0.7279224395751953, - 0.7469823360443115, - 0.7619255185127258, - 0.7723443508148193, - 0.7779545783996582, - 0.7786033153533936, - 0.7742726802825928, - 0.7650809288024902, - 0.7512787580490112, - 0.7332426309585571, - 0.711464524269104, - 0.6865385174751282, - 0.6591445207595825, - 0.6300297379493713, - 0.5999884009361267, - 0.5921332240104675, - 0.5991019010543823, - 0.6059877276420593, - 0.612602710723877, - 0.6187664866447449, - 0.6243109703063965, - 0.6290847659111023, - 0.6329578161239624, - 0.6358243823051453, - 0.6376063227653503, - 0.6382550001144409, - 0.6377527117729187, - 0.6361132264137268, - 0.633381187915802, - 0.6296311020851135, - 0.6249653697013855, - 0.6195111870765686, - 0.6134173274040222, - 0.6068500280380249, - 0.5999884009361267, - 0.5921332240104675, - 0.5751728415489197, - 0.5587822198867798, - 0.5434084534645081, - 0.5294709801673889, - 0.5173498392105103, - 0.5073757171630859, - 0.4998207688331604, - 0.4948909282684326, - 0.4927207827568054, - 0.493369460105896, - 0.49681928753852844, - 0.5029761791229248, - 0.5116721391677856, - 0.5226700305938721, - 0.5356698632240295, - 0.5503169298171997, - 0.5662118196487427, - 0.5829209089279175, - 0.5999884009361267, - 0.5921332240104675, - 0.5530874729156494, - 0.5152139067649841, - 0.4795456528663635, - 0.4470555782318115, - 0.41863003373146057, - 0.39504435658454895, - 0.3769418001174927, - 0.3648163378238678, - 0.358998566865921, - 0.3596472442150116, - 0.36674466729164124, - 0.3800972104072571, - 0.39934074878692627, - 0.4239502251148224, - 0.45325446128845215, - 0.4864540994167328, - 0.522643506526947, - 0.5608355402946472, - 0.5999884605407715, - 0.5921332240104675, - 0.5352391004562378, - 0.48000404238700867, - 0.4279347062110901, - 0.38045138120651245, - 0.33884939551353455, - 0.3042633831501007, - 0.27763688564300537, - 0.25969618558883667, - 0.2509305775165558, - 0.25157925486564636, - 0.2616245150566101, - 0.2807922959327698, - 0.3085598051548004, - 0.3441695272922516, - 0.3866502642631531, - 0.43484318256378174, - 0.48743367195129395, - 0.5429871678352356, - 0.5999884605407715, - 0.5921332240104675, - 0.5235618948936462, - 0.45696815848350525, - 0.394168496131897, - 0.33687594532966614, - 0.2866533100605011, - 0.24487045407295227, - 0.21266713738441467, - 0.1909218430519104, - 0.18022769689559937, - 0.18087637424468994, - 0.19285017251968384, - 0.21582254767417908, - 0.2491668462753296, - 0.29197341203689575, - 0.343074768781662, - 0.4010769724845886, - 0.46439775824546814, - 0.531309962272644, - 0.5999884605407715, - 0.5921332240104675, - 0.5193212628364563, - 0.4486025869846344, - 0.3819061517715454, - 0.32105132937431335, - 0.2676980495452881, - 0.22330161929130554, - 0.1890730857849121, - 0.1659461259841919, - 0.15455162525177002, - 0.1552003026008606, - 0.16787445545196533, - 0.1922284960746765, - 0.22759804129600525, - 0.2730181813240051, - 0.3272501826286316, - 0.38881462812423706, - 0.4560321867465973, - 0.5270693898200989, - 0.5999884605407715, - 0.5921332240104675, - 0.5229767560958862, - 0.45581382513046265, - 0.39247649908065796, - 0.3346923589706421, - 0.2840377390384674, - 0.24189424514770508, - 0.20941150188446045, - 0.1874755322933197, - 0.17668473720550537, - 0.17733341455459595, - 0.18940386176109314, - 0.21256691217422485, - 0.2461906373500824, - 0.28935787081718445, - 0.3408912122249603, - 0.3993849754333496, - 0.46324342489242554, - 0.530724823474884, - 0.5999884605407715, - 0.5921332240104675, - 0.534132182598114, - 0.4778204560279846, - 0.4247339963912964, - 0.37632089853286743, - 0.33390170335769653, - 0.29863351583480835, - 0.2714783847332001, - 0.2531770169734955, - 0.24422863125801086, - 0.24487730860710144, - 0.2551053464412689, - 0.2746337950229645, - 0.30292990803718567, - 0.33922186493873596, - 0.3825197219848633, - 0.43164247274398804, - 0.4852500557899475, - 0.5418803095817566, - 0.5999884605407715, - 0.5921332240104675, - 0.5515787601470947, - 0.5122377276420593, - 0.4751830995082855, - 0.44142574071884155, - 0.41188642382621765, - 0.38737088441848755, - 0.36854785680770874, - 0.35593080520629883, - 0.34986385703086853, - 0.3505125343799591, - 0.35785913467407227, - 0.37170326709747314, - 0.3916672468185425, - 0.4172065854072571, - 0.4476246237754822, - 0.4820915758609772, - 0.5196673274040222, - 0.5593268871307373, - 0.5999884605407715, - 0.5921332240104675, - 0.5734258890151978, - 0.5553359389305115, - 0.5383569002151489, - 0.5229518413543701, - 0.5095410346984863, - 0.49849021434783936, - 0.4901009202003479, - 0.4846018850803375, - 0.48214322328567505, - 0.4827919006347656, - 0.48653021454811096, - 0.4932563304901123, - 0.5027866363525391, - 0.5148612260818481, - 0.5291507244110107, - 0.5452653169631958, - 0.5627655386924744, - 0.5811739563941956, - 0.5999884009361267, - 0.5921332240104675, - 0.597305953502655, - 0.6024447679519653, - 0.6074094176292419, - 0.6120645403862, - 0.616283118724823, - 0.6199500560760498, - 0.6229653358459473, - 0.6252468228340149, - 0.6267321109771729, - 0.6273807883262634, - 0.6271751523017883, - 0.6261207461357117, - 0.6242464780807495, - 0.6216033101081848, - 0.6182634234428406, - 0.6143178939819336, - 0.6098743677139282, - 0.6050540804862976, - 0.5999884009361267, - 0.5921331644058228, - 0.6206313371658325, - 0.6484593152999878, - 0.6748579144477844, - 0.6991071701049805, - 0.7205455899238586, - 0.7385884523391724, - 0.7527434825897217, - 0.7626246213912964, - 0.7679622769355774, - 0.768610954284668, - 0.7645529508590698, - 0.7558988928794861, - 0.7428848743438721, - 0.7258658409118652, - 0.7053061127662659, - 0.6817663908004761, - 0.6558889150619507, - 0.6283794641494751, - 0.5999884009361267, - 0.5921331644058228, - 0.6408742666244507, - 0.6883929967880249, - 0.733393132686615, - 0.7746471762657166, - 0.8110299110412598, - 0.8415488004684448, - 0.8653714060783386, - 0.8818479776382446, - 0.8905289173126221, - 0.8911776542663574, - 0.8837763071060181, - 0.868526816368103, - 0.8458451628684998, - 0.8163501024246216, - 0.780846118927002, - 0.7403016090393066, - 0.6958225965499878, - 0.6486223936080933, - 0.5999884009361267, - 0.5921331644058228, - 0.6558411717414856, - 0.7179185748100281, - 0.7766719460487366, - 0.8304987549781799, - 0.8779306411743164, - 0.9176739454269409, - 0.9486443996429443, - 0.9699974060058594, - 0.9811502695083618, - 0.9817990064620972, - 0.9719257354736328, - 0.9517998695373535, - 0.9219703674316406, - 0.8832509517669678, - 0.8366976380348206, - 0.7835804224014282, - 0.725348174571991, - 0.6635892987251282, - 0.5999884009361267, - 0.5921331644058228, - 0.6639101505279541, - 0.7338364124298096, - 0.8000044822692871, - 0.8606094717979431, - 0.9139983057975769, - 0.9587146043777466, - 0.9935386776924133, - 1.0175206661224365, - 1.0300061702728271, - 1.030654788017273, - 1.01944899559021, - 0.9966940879821777, - 0.9630110263824463, - 0.9193185567855835, - 0.8668084144592285, - 0.8069129586219788, - 0.7412660121917725, - 0.6716582775115967, - 0.5999884009361267, - 0.5921331644058228, - 0.6642068028450012, - 0.7344215512275696, - 0.800862193107605, - 0.8617163896560669, - 0.9153240919113159, - 0.9602232575416565, - 0.9951890110969543, - 1.0192675590515137, - 1.0318021774291992, - 1.032450795173645, - 1.021195888519287, - 0.9983444213867188, - 0.964519739151001, - 0.9206444025039673, - 0.8679152727127075, - 0.8077706098556519, - 0.7418511509895325, - 0.671954870223999, - 0.5999884009361267, - 0.5921331644058228, - 0.6566988825798035, - 0.7196105718612671, - 0.7791520953178406, - 0.8336994051933289, - 0.8817645311355591, - 0.9220364093780518, - 0.9534165859222412, - 0.9750489592552185, - 0.986343502998352, - 0.9869922399520874, - 0.9769772887229919, - 0.9565719962120056, - 0.9263328909873962, - 0.8870848417282104, - 0.8398983478546143, - 0.7860605716705322, - 0.72704017162323, - 0.664447009563446, - 0.5999884009361267, - 0.5921331644058228, - 0.6422001719474792, - 0.6910085678100586, - 0.7372270226478577, - 0.7795948386192322, - 0.8169563412666321, - 0.848292350769043, - 0.8727481961250305, - 0.8896567225456238, - 0.8985567092895508, - 0.8992053270339966, - 0.8915850520133972, - 0.8759036064147949, - 0.8525887727737427, - 0.8222765922546387, - 0.7857937812805176, - 0.7441354990005493, - 0.6984381675720215, - 0.649948239326477, - 0.5999884009361267 - ], - "z": [ - 1.5205355882644653, - 1.5198795795440674, - 1.520195722579956, - 1.5214754343032837, - 1.523683786392212, - 1.5267605781555176, - 1.530621886253357, - 1.535162329673767, - 1.5402581691741943, - 1.545770287513733, - 1.5515483617782593, - 1.5574347972869873, - 1.563269019126892, - 1.5688918828964233, - 1.5741499662399292, - 1.57889986038208, - 1.5830121040344238, - 1.5863744020462036, - 1.5888952016830444, - 1.5905054807662964, - 1.5205355882644653, - 1.523369550704956, - 1.5270806550979614, - 1.5315674543380737, - 1.5367075204849243, - 1.5423609018325806, - 1.5483732223510742, - 1.5545804500579834, - 1.560813307762146, - 1.5669019222259521, - 1.5726799964904785, - 1.577989935874939, - 1.5826870203018188, - 1.586643099784851, - 1.5897502899169922, - 1.591923713684082, - 1.5931041240692139, - 1.593259334564209, - 1.592385172843933, - 1.5905054807662964, - 1.5205355882644653, - 1.5266042947769165, - 1.5334616899490356, - 1.5409208536148071, - 1.5487782955169678, - 1.5568195581436157, - 1.564825415611267, - 1.5725774765014648, - 1.579864263534546, - 1.586487054824829, - 1.5922651290893555, - 1.5970408916473389, - 1.6006841659545898, - 1.6030954122543335, - 1.6042089462280273, - 1.603994369506836, - 1.6024576425552368, - 1.5996404886245728, - 1.5956199169158936, - 1.5905054807662964, - 1.5205355882644653, - 1.5292329788208008, - 1.5386474132537842, - 1.5485222339630127, - 1.5585877895355225, - 1.5685697793960571, - 1.5781958103179932, - 1.5872032642364502, - 1.5953465700149536, - 1.6024035215377808, - 1.6081815958023071, - 1.6125231981277466, - 1.6153099536895752, - 1.61646568775177, - 1.6159591674804688, - 1.6138039827346802, - 1.6100589036941528, - 1.6048262119293213, - 1.5982486009597778, - 1.5905054807662964, - 1.5205355882644653, - 1.5309709310531616, - 1.5420759916305542, - 1.553547739982605, - 1.5650732517242432, - 1.576338291168213, - 1.5870354175567627, - 1.5968728065490723, - 1.605582356452942, - 1.6129263639450073, - 1.6187043190002441, - 1.6227589845657349, - 1.6249794960021973, - 1.6253052949905396, - 1.623727560043335, - 1.6202893257141113, - 1.6150844097137451, - 1.6082546710968018, - 1.5999865531921387, - 1.5905054807662964, - 1.5205355882644653, - 1.5316296815872192, - 1.5433756113052368, - 1.5554527044296265, - 1.567531704902649, - 1.5792831182479858, - 1.5903862714767456, - 1.6005383729934692, - 1.6094624996185303, - 1.616915225982666, - 1.6226933002471924, - 1.6266391277313232, - 1.6286449432373047, - 1.6286561489105225, - 1.626672387123108, - 1.622747778892517, - 1.6169894933700562, - 1.609554409980774, - 1.6006454229354858, - 1.5905054807662964, - 1.5205355882644653, - 1.5311380624771118, - 1.542405605316162, - 1.5540308952331543, - 1.5656968355178833, - 1.5770851373672485, - 1.5878852605819702, - 1.5978026390075684, - 1.6065665483474731, - 1.6139380931854248, - 1.6197161674499512, - 1.6237431764602661, - 1.6259092092514038, - 1.6261552572250366, - 1.6244745254516602, - 1.6209129095077515, - 1.6155675649642944, - 1.6085844039916992, - 1.6001536846160889, - 1.5905054807662964, - 1.5205355882644653, - 1.5295491218566895, - 1.5392709970474243, - 1.5494362115859985, - 1.5597673654556274, - 1.5699827671051025, - 1.5798035860061646, - 1.5889619588851929, - 1.5972082614898682, - 1.6043174266815186, - 1.610095500946045, - 1.6143848896026611, - 1.6170686483383179, - 1.6180734634399414, - 1.6173720359802246, - 1.6149835586547852, - 1.6109730005264282, - 1.6054497957229614, - 1.5985647439956665, - 1.5905054807662964, - 1.5205355882644653, - 1.527035117149353, - 1.5343116521835327, - 1.5421667098999023, - 1.5503860712051392, - 1.5587453842163086, - 1.567016839981079, - 1.5749746561050415, - 1.5824017524719238, - 1.5890957117080688, - 1.5948737859725952, - 1.5995783805847168, - 1.603081226348877, - 1.605286717414856, - 1.6061347723007202, - 1.6056021451950073, - 1.6037033796310425, - 1.6004904508590698, - 1.59605073928833, - 1.5905054807662964, - 1.5205355882644653, - 1.523868441581726, - 1.5280648469924927, - 1.5330100059509277, - 1.5385693311691284, - 1.544590950012207, - 1.5509107112884521, - 1.5573562383651733, - 1.5637516975402832, - 1.5699225664138794, - 1.5757006406784058, - 1.5809282064437866, - 1.5854628086090088, - 1.589180588722229, - 1.591980218887329, - 1.5937854051589966, - 1.5945467948913574, - 1.5942435264587402, - 1.5928840637207031, - 1.5905054807662964, - 1.5205355882644653, - 1.5203924179077148, - 1.5212074518203735, - 1.522958517074585, - 1.5255976915359497, - 1.5290532112121582, - 1.5332305431365967, - 1.5380159616470337, - 1.5432788133621216, - 1.5488756895065308, - 1.5546537637710571, - 1.5604554414749146, - 1.5661225318908691, - 1.571500539779663, - 1.5764424800872803, - 1.5808137655258179, - 1.584495186805725, - 1.5873862504959106, - 1.589408040046692, - 1.5905054807662964, - 1.5205355882644653, - 1.5169835090637207, - 1.5144827365875244, - 1.51310133934021, - 1.5128769874572754, - 1.5138158798217773, - 1.5158922672271729, - 1.5190497636795044, - 1.5232019424438477, - 1.5282357931137085, - 1.5340138673782349, - 1.5403785705566406, - 1.5471563339233398, - 1.5541622638702393, - 1.5612051486968994, - 1.5680930614471436, - 1.57463800907135, - 1.5806615352630615, - 1.5859992504119873, - 1.5905054807662964, - 1.5205355882644653, - 1.5140113830566406, - 1.5086193084716797, - 1.5045067071914673, - 1.5017856359481812, - 1.5005302429199219, - 1.50077486038208, - 1.502512812614441, - 1.5056966543197632, - 1.510239601135254, - 1.5160176753997803, - 1.5228732824325562, - 1.5306193828582764, - 1.539044737815857, - 1.547919511795044, - 1.5570017099380493, - 1.5660433769226074, - 1.5747981071472168, - 1.5830270051956177, - 1.5905054807662964, - 1.5205355882644653, - 1.5117977857589722, - 1.5042526721954346, - 1.4981060028076172, - 1.4935253858566284, - 1.490635871887207, - 1.4895163774490356, - 1.4901971817016602, - 1.4926598072052002, - 1.4968371391296387, - 1.502615213394165, - 1.5098364353179932, - 1.5183037519454956, - 1.5277862548828125, - 1.5380252599716187, - 1.5487415790557861, - 1.5596426725387573, - 1.5704314708709717, - 1.5808134078979492, - 1.5905054807662964, - 1.5205355882644653, - 1.5105828046798706, - 1.5018559694290161, - 1.4945927858352661, - 1.488991618156433, - 1.4852051734924316, - 1.4833368062973022, - 1.483437418937683, - 1.4855042695999146, - 1.489480972290039, - 1.4952589273452759, - 1.502680778503418, - 1.5115439891815186, - 1.5216068029403687, - 1.5325945615768433, - 1.5442078113555908, - 1.5561295747756958, - 1.5680346488952637, - 1.5795984268188477, - 1.5905054807662964, - 1.5205355882644653, - 1.5104981660842896, - 1.501688838005066, - 1.4943478107452393, - 1.488675594329834, - 1.4848265647888184, - 1.4829059839248657, - 1.4829660654067993, - 1.4850053787231445, - 1.488968014717102, - 1.4947460889816284, - 1.502181887626648, - 1.5110727548599243, - 1.5211758613586426, - 1.53221595287323, - 1.5438916683197021, - 1.555884599685669, - 1.567867636680603, - 1.5795137882232666, - 1.5905054807662964, - 1.5205355882644653, - 1.5115528106689453, - 1.5037693977355957, - 1.4973976612091064, - 1.4926114082336426, - 1.4895410537719727, - 1.4882705211639404, - 1.4888343811035156, - 1.4912171363830566, - 1.4953540563583374, - 1.5011321306228638, - 1.5083937644958496, - 1.516940951347351, - 1.5265403985977173, - 1.5369304418563843, - 1.5478274822235107, - 1.5589344501495361, - 1.5699481964111328, - 1.5805684328079224, - 1.5905054807662964, - 1.5205355882644653, - 1.5136326551437378, - 1.5078723430633545, - 1.5034117698669434, - 1.5003726482391357, - 1.4988377094268799, - 1.4988490343093872, - 1.5004061460494995, - 1.5034666061401367, - 1.5079469680786133, - 1.5137250423431396, - 1.5206432342529297, - 1.528512716293335, - 1.537118911743164, - 1.5462270975112915, - 1.555588722229004, - 1.564948558807373, - 1.5740511417388916, - 1.5826482772827148, - 1.5905054807662964, - 1.5205355882644653, - 1.5165122747421265, - 1.5135530233383179, - 1.5117385387420654, - 1.5111182928085327, - 1.511709213256836, - 1.5134952068328857, - 1.5164275169372559, - 1.5204262733459473, - 1.5253822803497314, - 1.5311603546142578, - 1.5376029014587402, - 1.5445342063903809, - 1.5517650842666626, - 1.5590986013412476, - 1.5663343667984009, - 1.5732752084732056, - 1.579731822013855, - 1.5855278968811035, - 1.5905054807662964, - 1.5205355882644653, - 1.5198795795440674, - 1.520195722579956, - 1.5214754343032837, - 1.523683786392212, - 1.5267605781555176, - 1.530621886253357, - 1.5351624488830566, - 1.5402581691741943, - 1.545770287513733, - 1.5515483617782593, - 1.5574347972869873, - 1.563269019126892, - 1.5688918828964233, - 1.5741499662399292, - 1.57889986038208, - 1.5830121040344238, - 1.5863744020462036, - 1.5888952016830444, - 1.5905054807662964 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.5517112612724304, - 0.49894705414772034, - 0.44767871499061584, - 0.3993047773838043, - 0.3551446795463562, - 0.3164030909538269, - 0.28413674235343933, - 0.2592257261276245, - 0.24234965443611145, - 0.23396873474121094, - 0.23431164026260376, - 0.24336907267570496, - 0.26089388132095337, - 0.28640806674957275, - 0.31921565532684326, - 0.35842180252075195, - 0.402957022190094, - 0.45160648226737976, - 0.5030431747436523, - 0.5558640360832214, - 0.5517112612724304, - 0.48484498262405396, - 0.41985929012298584, - 0.3585268259048462, - 0.3025204837322235, - 0.2533681094646454, - 0.21241042017936707, - 0.1807645857334137, - 0.15929386019706726, - 0.14858388900756836, - 0.14892679452896118, - 0.16031327843666077, - 0.18243274092674255, - 0.2146817445755005, - 0.2561807334423065, - 0.30579760670661926, - 0.3621790409088135, - 0.42378705739974976, - 0.48894113302230835, - 0.5558640360832214, - 0.5517112612724304, - 0.4779919981956482, - 0.40634024143218994, - 0.3387104868888855, - 0.2769474387168884, - 0.22273588180541992, - 0.17755454778671265, - 0.14263585209846497, - 0.11893236637115479, - 0.10709056258201599, - 0.10743346810340881, - 0.11995178461074829, - 0.14430400729179382, - 0.17982587218284607, - 0.22554844617843628, - 0.2802245318889618, - 0.3423627018928528, - 0.41026800870895386, - 0.4820881485939026, - 0.5558640360832214, - 0.5517112612724304, - 0.47913071513175964, - 0.40858662128448486, - 0.3420032262802124, - 0.2811967134475708, - 0.2278258204460144, - 0.18334630131721497, - 0.14897143840789795, - 0.1256389319896698, - 0.11398524045944214, - 0.11432814598083496, - 0.1266583502292633, - 0.1506395936012268, - 0.1856176257133484, - 0.23063838481903076, - 0.28447380661964417, - 0.3456554412841797, - 0.4125143885612488, - 0.48322686553001404, - 0.5558640360832214, - 0.5517112612724304, - 0.48813772201538086, - 0.42635494470596313, - 0.36804819107055664, - 0.3148079216480255, - 0.26808637380599976, - 0.22915807366371155, - 0.19908475875854492, - 0.17868685722351074, - 0.1685207188129425, - 0.16886362433433533, - 0.17970627546310425, - 0.20075291395187378, - 0.23142939805984497, - 0.2708989679813385, - 0.3180850148200989, - 0.3717004358768463, - 0.43028271198272705, - 0.49223387241363525, - 0.5558640360832214, - 0.5517112612724304, - 0.5040369629859924, - 0.4577197730541229, - 0.4140230417251587, - 0.3741387128829956, - 0.33915475010871887, - 0.3100253939628601, - 0.28754526376724243, - 0.2723275423049927, - 0.2647872865200043, - 0.2651301920413971, - 0.2733469605445862, - 0.2892134189605713, - 0.3122967481613159, - 0.3419673442840576, - 0.37741580605506897, - 0.41767528653144836, - 0.46164754033088684, - 0.5081331133842468, - 0.5558640360832214, - 0.5517112612724304, - 0.5251055359840393, - 0.49928221106529236, - 0.47494566440582275, - 0.45275968313217163, - 0.4333294928073883, - 0.41718509793281555, - 0.40476685762405396, - 0.39641350507736206, - 0.3923529386520386, - 0.3926958739757538, - 0.39743292331695557, - 0.4064350128173828, - 0.41945645213127136, - 0.43614205718040466, - 0.456036776304245, - 0.4785979092121124, - 0.5032100081443787, - 0.5292016863822937, - 0.5558640360832214, - 0.5517112612724304, - 0.5490603446960449, - 0.5465383529663086, - 0.544214129447937, - 0.5421510338783264, - 0.5404053926467896, - 0.5390247702598572, - 0.5380467772483826, - 0.5374981760978699, - 0.5373939871788025, - 0.5377368927001953, - 0.5385176539421082, - 0.5397149324417114, - 0.5412960648536682, - 0.5432179570198059, - 0.5454281568527222, - 0.5478664040565491, - 0.5504661202430725, - 0.5531564950942993, - 0.5558640360832214, - 0.5517112612724304, - 0.5733054876327515, - 0.594367265701294, - 0.6143221855163574, - 0.6326258778572083, - 0.648779034614563, - 0.6623410582542419, - 0.6729421019554138, - 0.6802929043769836, - 0.6841928958892822, - 0.6845358610153198, - 0.6813123226165771, - 0.6746102571487427, - 0.6646124124526978, - 0.6515916585922241, - 0.6359029412269592, - 0.6179744005203247, - 0.5982950329780579, - 0.5774015784263611, - 0.5558640360832214, - 0.5517112612724304, - 0.5952135920524597, - 0.6375859379768372, - 0.6776724457740784, - 0.7143797278404236, - 0.746706485748291, - 0.7737709283828735, - 0.7948347926139832, - 0.8093235492706299, - 0.8168419003486633, - 0.8171848058700562, - 0.8103429079055786, - 0.796502947807312, - 0.7760422825813293, - 0.7495191097259521, - 0.7176568508148193, - 0.6813247203826904, - 0.6415137052536011, - 0.5993097424507141, - 0.5558640360832214, - 0.5517112612724304, - 0.6124106049537659, - 0.6715109348297119, - 0.727400004863739, - 0.7785534262657166, - 0.8235757946968079, - 0.8612390756607056, - 0.890515923500061, - 0.910607635974884, - 0.9209662675857544, - 0.9213091135025024, - 0.9116270542144775, - 0.8921840190887451, - 0.8635104894638062, - 0.8263884782791138, - 0.7818305492401123, - 0.7310522794723511, - 0.675438642501831, - 0.6165067553520203, - 0.5558640360832214, - 0.5517112612724304, - 0.6230329871177673, - 0.6924659609794617, - 0.7581160664558411, - 0.818192720413208, - 0.8710569739341736, - 0.9152669906616211, - 0.9496169090270996, - 0.9731695652008057, - 0.9852825403213501, - 0.9856253862380981, - 0.9741889834403992, - 0.9512850046157837, - 0.9175384044647217, - 0.8738696575164795, - 0.821469783782959, - 0.7617683410644531, - 0.6963937282562256, - 0.6271291375160217, - 0.5558640360832214, - 0.5517112612724304, - 0.6259296536445618, - 0.6981801986694336, - 0.7664921283721924, - 0.8290020227432251, - 0.8840047121047974, - 0.9300000071525574, - 0.9657332897186279, - 0.9902297258377075, - 1.0028210878372192, - 1.0031639337539673, - 0.9912490844726562, - 0.967401385307312, - 0.932271420955658, - 0.886817455291748, - 0.8322791457176208, - 0.7701443433761597, - 0.7021079659461975, - 0.6300258040428162, - 0.5558640360832214, - 0.5517112612724304, - 0.6207866668701172, - 0.6880344748497009, - 0.7516204118728638, - 0.8098099827766418, - 0.8610159158706665, - 0.903841495513916, - 0.9371185302734375, - 0.9599393010139465, - 0.9716812372207642, - 0.972024142742157, - 0.96095871925354, - 0.9387866258621216, - 0.9061128497123718, - 0.8638285398483276, - 0.8130871057510376, - 0.755272626876831, - 0.6919622421264648, - 0.6248827576637268, - 0.5558640360832214, - 0.5517112612724304, - 0.6081613302230835, - 0.6631281971931458, - 0.7151126265525818, - 0.7626965045928955, - 0.8045817613601685, - 0.8396261930465698, - 0.8668736219406128, - 0.8855808973312378, - 0.8952376842498779, - 0.8955805897712708, - 0.8866002559661865, - 0.8685417175292969, - 0.8418974876403809, - 0.8073944449424744, - 0.7659736275672913, - 0.7187648415565491, - 0.6670559644699097, - 0.6122574806213379, - 0.5558640360832214, - 0.5517112612724304, - 0.5894218683242798, - 0.6261604428291321, - 0.6609248518943787, - 0.6927669048309326, - 0.7208179235458374, - 0.7443127632141113, - 0.762610673904419, - 0.7752123475074768, - 0.7817741632461548, - 0.7821170687675476, - 0.7762317657470703, - 0.7642788290977478, - 0.7465841770172119, - 0.7236305475234985, - 0.6960440278053284, - 0.6645771265029907, - 0.630088210105896, - 0.5935179591178894, - 0.5558640360832214, - 0.5517112612724304, - 0.5665988922119141, - 0.5811370611190796, - 0.5949291586875916, - 0.6075990796089172, - 0.6188011169433594, - 0.6282297968864441, - 0.6356278657913208, - 0.6407936215400696, - 0.6435859799385071, - 0.6439289450645447, - 0.6418130397796631, - 0.6372960209846497, - 0.6305011510848999, - 0.6216137409210205, - 0.610876202583313, - 0.5985814332962036, - 0.5850648283958435, - 0.5706949830055237, - 0.5558640360832214, - 0.5517112612724304, - 0.5421656966209412, - 0.5329371094703674, - 0.5242772698402405, - 0.5164223909378052, - 0.509586751461029, - 0.5039568543434143, - 0.4996861219406128, - 0.49689117074012756, - 0.49564823508262634, - 0.49599117040634155, - 0.49791061878204346, - 0.5013542771339417, - 0.5062282085418701, - 0.5123993754386902, - 0.5196995139122009, - 0.5279295444488525, - 0.5368648767471313, - 0.5462617874145508, - 0.5558640360832214, - 0.5517112612724304, - 0.5187699198722839, - 0.48678380250930786, - 0.456625372171402, - 0.42911726236343384, - 0.4050098657608032, - 0.38496071100234985, - 0.3695167005062103, - 0.3590991497039795, - 0.35399216413497925, - 0.35433512926101685, - 0.3601185977458954, - 0.3711848556995392, - 0.38723206520080566, - 0.4078224301338196, - 0.4323943853378296, - 0.46027764678001404, - 0.4907115697860718, - 0.5228660702705383, - 0.5558640360832214, - 0.5517112612724304, - 0.49894702434539795, - 0.44767868518829346, - 0.39930474758148193, - 0.3551446795463562, - 0.3164030909538269, - 0.28413671255111694, - 0.2592256963253021, - 0.24234959483146667, - 0.23396867513656616, - 0.23431158065795898, - 0.24336901307106018, - 0.260893851518631, - 0.28640803694725037, - 0.3192156255245209, - 0.3584217429161072, - 0.4029569923877716, - 0.4516064524650574, - 0.5030431747436523, - 0.5558640360832214 - ], - "y": [ - 0.6324021816253662, - 0.6817143559455872, - 0.7297537922859192, - 0.7752100229263306, - 0.8168432116508484, - 0.8535175919532776, - 0.8842328786849976, - 0.9081512093544006, - 0.9246201515197754, - 0.9331904649734497, - 0.9336283802986145, - 0.9259219169616699, - 0.9102813601493835, - 0.8871333599090576, - 0.8571091890335083, - 0.8210279941558838, - 0.7798738479614258, - 0.7347694039344788, - 0.6869449615478516, - 0.6377050876617432, - 0.6324021816253662, - 0.6609184145927429, - 0.6887291073799133, - 0.7150757312774658, - 0.739239513874054, - 0.7605614066123962, - 0.7784597873687744, - 0.7924463748931885, - 0.8021396994590759, - 0.8072753548622131, - 0.8077132701873779, - 0.8034415245056152, - 0.7945765256881714, - 0.7813601493835449, - 0.764153003692627, - 0.7434242963790894, - 0.7197394967079163, - 0.6937447190284729, - 0.6661490201950073, - 0.6377050876617432, - 0.6324021816253662, - 0.6370362043380737, - 0.6416161060333252, - 0.6460170149803162, - 0.6501189470291138, - 0.6538098454475403, - 0.6569891571998596, - 0.6595700979232788, - 0.6614823937416077, - 0.6626736521720886, - 0.6631115674972534, - 0.6627841591835022, - 0.6617003083229065, - 0.6598895788192749, - 0.657401442527771, - 0.6543036699295044, - 0.6506808400154114, - 0.6466317176818848, - 0.6422668099403381, - 0.6377050876617432, - 0.6324021816253662, - 0.6126556992530823, - 0.5935202240943909, - 0.5755176544189453, - 0.5591390132904053, - 0.5448312163352966, - 0.5329843759536743, - 0.5239217877388, - 0.5178905129432678, - 0.5150551795959473, - 0.5154930949211121, - 0.5191923379898071, - 0.526051938533783, - 0.5358847975730896, - 0.5484227538108826, - 0.5633237957954407, - 0.5801814198493958, - 0.5985357761383057, - 0.6178863048553467, - 0.6377050876617432, - 0.6324021816253662, - 0.5904189944267273, - 0.5496533513069153, - 0.5112171769142151, - 0.47615891695022583, - 0.44543492794036865, - 0.41988325119018555, - 0.4002007842063904, - 0.3869245648384094, - 0.3804166615009308, - 0.3808545768260956, - 0.38822636008262634, - 0.4023309350013733, - 0.42278364300727844, - 0.4490264654159546, - 0.48034363985061646, - 0.5158809423446655, - 0.5546689033508301, - 0.5956496000289917, - 0.6377050876617432, - 0.6324021816253662, - 0.5727357268333435, - 0.5147691369056702, - 0.46008360385894775, - 0.4101707637310028, - 0.36639219522476196, - 0.329941987991333, - 0.30181440711021423, - 0.28277677297592163, - 0.27334827184677124, - 0.27378618717193604, - 0.28407853841781616, - 0.30394455790519714, - 0.3328423798084259, - 0.3699837327003479, - 0.4143555164337158, - 0.4647473692893982, - 0.5197847485542297, - 0.5779663324356079, - 0.6377050876617432, - 0.6324021816253662, - 0.5615221858024597, - 0.4926478862762451, - 0.4276580810546875, - 0.368325412273407, - 0.3162684738636017, - 0.27290719747543335, - 0.2394241988658905, - 0.21673303842544556, - 0.205452561378479, - 0.2058904767036438, - 0.2180348038673401, - 0.2415543496608734, - 0.27580755949020386, - 0.31986004114151, - 0.37251016497612, - 0.43232184648513794, - 0.4976634979248047, - 0.5667527914047241, - 0.6377050876617432, - 0.6324021816253662, - 0.557993471622467, - 0.485686719417572, - 0.4174543619155884, - 0.3551574945449829, - 0.3004955053329468, - 0.254959374666214, - 0.2197912037372589, - 0.19595029950141907, - 0.18408703804016113, - 0.18452495336532593, - 0.1972520649433136, - 0.22192135453224182, - 0.2578597962856293, - 0.3040870428085327, - 0.3593422472476959, - 0.4221181571483612, - 0.4907023310661316, - 0.5632240772247314, - 0.6377050876617432, - 0.6324021816253662, - 0.5625320076942444, - 0.494640052318573, - 0.43057823181152344, - 0.37209388613700867, - 0.32078248262405396, - 0.27804356813430786, - 0.24504289031028748, - 0.2226807177066803, - 0.21156704425811768, - 0.21200495958328247, - 0.22398248314857483, - 0.24717304110527039, - 0.28094395995140076, - 0.3243740200996399, - 0.3762786388397217, - 0.4352419972419739, - 0.49965566396713257, - 0.5677626132965088, - 0.6377050876617432, - 0.6324021816253662, - 0.57464599609375, - 0.5185376405715942, - 0.4656074345111847, - 0.4172993302345276, - 0.3749310076236725, - 0.33965814113616943, - 0.3124428689479828, - 0.2940276265144348, - 0.28491464257240295, - 0.28535255789756775, - 0.29532939195632935, - 0.3145730197429657, - 0.34255853295326233, - 0.3785225749015808, - 0.4214840531349182, - 0.4702712297439575, - 0.523553192615509, - 0.5798766016960144, - 0.6377050876617432, - 0.6324021816253662, - 0.5930227041244507, - 0.5547897219657898, - 0.5187461376190186, - 0.48587507009506226, - 0.45707327127456665, - 0.4331262707710266, - 0.4146873354911804, - 0.4022594094276428, - 0.39618152379989624, - 0.39661943912506104, - 0.40356120467185974, - 0.41681748628616333, - 0.4360266923904419, - 0.4606648087501526, - 0.49005982279777527, - 0.523409903049469, - 0.5598053336143494, - 0.5982533097267151, - 0.6377050876617432, - 0.6324021816253662, - 0.6156706809997559, - 0.5994678735733032, - 0.5842357873916626, - 0.5703899264335632, - 0.5583078861236572, - 0.5483192205429077, - 0.5406965017318726, - 0.5356475114822388, - 0.5333101749420166, - 0.5337480902671814, - 0.5369493365287781, - 0.5428266525268555, - 0.551219642162323, - 0.5618994235992432, - 0.5745746493339539, - 0.5888996124267578, - 0.6044834852218628, - 0.6209012866020203, - 0.6377050876617432, - 0.6324021816253662, - 0.6401357054710388, - 0.6477305889129639, - 0.6549797058105469, - 0.6616852879524231, - 0.6676644086837769, - 0.6727539896965027, - 0.6768152713775635, - 0.6797373294830322, - 0.681440532207489, - 0.6818784475326538, - 0.6810390949249268, - 0.6789454221725464, - 0.675654411315918, - 0.6712560057640076, - 0.6658700108528137, - 0.6596434712409973, - 0.6527462005615234, - 0.6453663110733032, - 0.6377050876617432, - 0.6324021816253662, - 0.663766622543335, - 0.6943477988243103, - 0.7233116626739502, - 0.7498680353164673, - 0.773292601108551, - 0.7929463386535645, - 0.8082932233810425, - 0.818914532661438, - 0.8245205879211426, - 0.8249584436416626, - 0.8202162981033325, - 0.8104233741760254, - 0.7958467602729797, - 0.7768841981887817, - 0.7540528178215027, - 0.7279754281044006, - 0.6993634104728699, - 0.6689972281455994, - 0.6377050876617432, - 0.6324021816253662, - 0.6840025782585144, - 0.7342677712440491, - 0.7818267345428467, - 0.8253820538520813, - 0.8637456893920898, - 0.8958712220191956, - 0.9208823442459106, - 0.9380967617034912, - 0.9470450282096863, - 0.9474829435348511, - 0.9393985271453857, - 0.9230124950408936, - 0.8987716436386108, - 0.8673372864723206, - 0.8295668363571167, - 0.7864904999732971, - 0.7392833828926086, - 0.6892331838607788, - 0.6377050876617432, - 0.6324021816253662, - 0.6986507773399353, - 0.7631646394729614, - 0.8241839408874512, - 0.8800442218780518, - 0.9292218685150146, - 0.9703753590583801, - 1.0023821592330933, - 1.024369239807129, - 1.0357366800308228, - 1.0361745357513428, - 1.0256710052490234, - 1.0045123100280762, - 0.9732757806777954, - 0.9328135251998901, - 0.8842290639877319, - 0.8288477063179016, - 0.768180251121521, - 0.7038813829421997, - 0.6377050876617432, - 0.6324021816253662, - 0.7061238288879395, - 0.7779068946838379, - 0.8457933068275452, - 0.9079312682151794, - 0.9626258015632629, - 1.008385181427002, - 1.0439609289169312, - 1.068382740020752, - 1.0809844732284546, - 1.0814223289489746, - 1.0696845054626465, - 1.046091079711914, - 1.0112855434417725, - 0.9662175178527832, - 0.9121160507202148, - 0.8504570722579956, - 0.7829225063323975, - 0.7113544344902039, - 0.6377050876617432, - 0.6324021816253662, - 0.7056119441986084, - 0.7768970131874084, - 0.8443130254745483, - 0.906020998954773, - 0.9603376388549805, - 1.0057814121246338, - 1.0411126613616943, - 1.0653678178787231, - 1.0778849124908447, - 1.0783228874206543, - 1.0666695833206177, - 1.0432429313659668, - 1.0086817741394043, - 0.963929295539856, - 0.9102057814598083, - 0.8489768505096436, - 0.781912624835968, - 0.710842490196228, - 0.6377050876617432, - 0.6324021816253662, - 0.6971704959869385, - 0.7602444887161255, - 0.8199034929275513, - 0.8745204210281372, - 0.9226051568984985, - 0.9628463983535767, - 0.9941462278366089, - 1.015650987625122, - 1.0267739295959473, - 1.0272119045257568, - 1.0169527530670166, - 0.9962763786315918, - 0.9657468199729919, - 0.926196813583374, - 0.8787051439285278, - 0.8245673179626465, - 0.7652601003646851, - 0.7024011015892029, - 0.6377050876617432, - 0.6324021816253662, - 0.6817143559455872, - 0.7297537922859192, - 0.7752100229263306, - 0.8168431520462036, - 0.8535175323486328, - 0.8842328190803528, - 0.9081511497497559, - 0.9246200919151306, - 0.9331904053688049, - 0.9336283206939697, - 0.9259218573570251, - 0.9102813005447388, - 0.8871332406997681, - 0.8571091890335083, - 0.821027934551239, - 0.779873788356781, - 0.734769344329834, - 0.6869449615478516, - 0.6377050876617432 - ], - "z": [ - 1.5764973163604736, - 1.5761083364486694, - 1.576480507850647, - 1.5776036977767944, - 1.5794475078582764, - 1.5819615125656128, - 1.5850770473480225, - 1.5887091159820557, - 1.5927588939666748, - 1.5971156358718872, - 1.6016607284545898, - 1.6062699556350708, - 1.610817790031433, - 1.6151801347732544, - 1.6192378997802734, - 1.622880458831787, - 1.6260085105895996, - 1.6285367012023926, - 1.6303960084915161, - 1.6315357685089111, - 1.5764973163604736, - 1.5791759490966797, - 1.5825321674346924, - 1.5864744186401367, - 1.5908952951431274, - 1.59567391872406, - 1.6006801128387451, - 1.605777382850647, - 1.6108266115188599, - 1.6156901121139526, - 1.6202350854873657, - 1.6243376731872559, - 1.6278860569000244, - 1.6307833194732666, - 1.6329504251480103, - 1.6343282461166382, - 1.634879231452942, - 1.6345884799957275, - 1.633463740348816, - 1.6315357685089111, - 1.5764973163604736, - 1.5819941759109497, - 1.5880916118621826, - 1.5946234464645386, - 1.6014115810394287, - 1.6082706451416016, - 1.6150137186050415, - 1.6214568614959717, - 1.6274242401123047, - 1.6327531337738037, - 1.6372982263565063, - 1.6409354209899902, - 1.6435655355453491, - 1.645116925239563, - 1.6455471515655518, - 1.6448445320129395, - 1.6430282592773438, - 1.6401478052139282, - 1.6362818479537964, - 1.6315357685089111, - 1.5764973163604736, - 1.5842572450637817, - 1.592556118965149, - 1.6011675596237183, - 1.6098568439483643, - 1.6183867454528809, - 1.626524567604065, - 1.634048581123352, - 1.6407532691955566, - 1.646456003189087, - 1.6510009765625, - 1.6542644500732422, - 1.6561572551727295, - 1.6566277742385864, - 1.6556631326675415, - 1.653289794921875, - 1.6495723724365234, - 1.6446123123168945, - 1.6385449171066284, - 1.6315357685089111, - 1.5764973163604736, - 1.585720181465149, - 1.5954420566558838, - 1.6053978204727173, - 1.6153159141540527, - 1.6249257326126099, - 1.633965253829956, - 1.6421878337860107, - 1.649369239807129, - 1.655313491821289, - 1.6598585844039917, - 1.6628804206848145, - 1.6642965078353882, - 1.6640684604644775, - 1.66220223903656, - 1.6587488651275635, - 1.6538026332855225, - 1.6474982500076294, - 1.6400078535079956, - 1.6315357685089111, - 1.5764973163604736, - 1.5862243175506592, - 1.596436619758606, - 1.6068556308746338, - 1.6171971559524536, - 1.6271792650222778, - 1.6365294456481934, - 1.6449928283691406, - 1.6523385047912598, - 1.6583659648895264, - 1.662911057472229, - 1.6658495664596558, - 1.667101502418518, - 1.6666325330734253, - 1.6644556522369385, - 1.660630226135254, - 1.6552603244781494, - 1.6484928131103516, - 1.6405119895935059, - 1.6315357685089111, - 1.5764973163604736, - 1.5857150554656982, - 1.595431923866272, - 1.605383038520813, - 1.6152968406677246, - 1.6249029636383057, - 1.633939266204834, - 1.6421594619750977, - 1.649339199066162, - 1.6552826166152954, - 1.6598275899887085, - 1.662850260734558, - 1.664268136024475, - 1.6640424728393555, - 1.6621793508529663, - 1.6587297916412354, - 1.6537878513336182, - 1.6474882364273071, - 1.640002727508545, - 1.6315357685089111, - 1.5764973163604736, - 1.5842475891113281, - 1.5925370454788208, - 1.6011396646499634, - 1.6098207235336304, - 1.618343472480774, - 1.62647545337677, - 1.6339948177337646, - 1.640696406364441, - 1.6463974714279175, - 1.6509424448013306, - 1.654207468032837, - 1.656103491783142, - 1.656578540802002, - 1.6556199789047241, - 1.6532537937164307, - 1.6495444774627686, - 1.6445932388305664, - 1.6385352611541748, - 1.6315357685089111, - 1.5764973163604736, - 1.5819809436798096, - 1.5880656242370605, - 1.5945854187011719, - 1.6013623476028442, - 1.6082117557525635, - 1.6149468421936035, - 1.6213836669921875, - 1.6273467540740967, - 1.6326735019683838, - 1.6372184753417969, - 1.6408578157424927, - 1.6434922218322754, - 1.6450499296188354, - 1.6454882621765137, - 1.6447954177856445, - 1.6429901123046875, - 1.6401218175888062, - 1.6362686157226562, - 1.6315357685089111, - 1.5764973163604736, - 1.5791606903076172, - 1.5825021266937256, - 1.5864304304122925, - 1.5908383131027222, - 1.595605731010437, - 1.600602626800537, - 1.6056925058364868, - 1.6107368469238281, - 1.6155977249145508, - 1.6201428174972534, - 1.6242479085922241, - 1.6278011798858643, - 1.630705714225769, - 1.6328822374343872, - 1.6342713832855225, - 1.634835124015808, - 1.6345583200454712, - 1.6334484815597534, - 1.6315357685089111, - 1.5764973163604736, - 1.5760926008224487, - 1.5764495134353638, - 1.5775583982467651, - 1.579388976097107, - 1.581891417503357, - 1.584997296333313, - 1.588621973991394, - 1.592666506767273, - 1.5970207452774048, - 1.6015658378601074, - 1.6061776876449585, - 1.6107306480407715, - 1.615100383758545, - 1.6191678047180176, - 1.6228220462799072, - 1.6259632110595703, - 1.6285057067871094, - 1.6303802728652954, - 1.6315357685089111, - 1.5764973163604736, - 1.5731090307235718, - 1.5705636739730835, - 1.5689308643341064, - 1.5682551860809326, - 1.5685548782348633, - 1.5698219537734985, - 1.572021722793579, - 1.575094223022461, - 1.5789556503295898, - 1.583500623703003, - 1.588605284690857, - 1.594130277633667, - 1.5999250411987305, - 1.6058313846588135, - 1.6116881370544434, - 1.6173356771469116, - 1.622619867324829, - 1.6273967027664185, - 1.6315357685089111, - 1.5764973163604736, - 1.570533275604248, - 1.5654823780059814, - 1.5614827871322632, - 1.5586432218551636, - 1.5570414066314697, - 1.5567209720611572, - 1.5576906204223633, - 1.5599238872528076, - 1.5633599758148193, - 1.5679049491882324, - 1.5734350681304932, - 1.5797992944717407, - 1.5868241786956787, - 1.59431791305542, - 1.6020762920379639, - 1.6098874807357788, - 1.6175386905670166, - 1.6248209476470947, - 1.6315357685089111, - 1.5764973163604736, - 1.568644404411316, - 1.5617563724517822, - 1.5560210943222046, - 1.5515949726104736, - 1.5485987663269043, - 1.5471142530441284, - 1.5471818447113037, - 1.548799753189087, - 1.5519237518310547, - 1.5564688444137573, - 1.562310814857483, - 1.5692905187606812, - 1.5772173404693604, - 1.5858752727508545, - 1.5950279235839844, - 1.6044259071350098, - 1.6138125658035278, - 1.6229321956634521, - 1.6315357685089111, - 1.5764973163604736, - 1.5676473379135132, - 1.5597892999649048, - 1.5531377792358398, - 1.5478739738464355, - 1.5441417694091797, - 1.54204261302948, - 1.5416340827941895, - 1.5429270267486572, - 1.545886516571045, - 1.550431489944458, - 1.5564382076263428, - 1.5637426376342773, - 1.572145700454712, - 1.5814181566238403, - 1.5913070440292358, - 1.601542592048645, - 1.61184561252594, - 1.6219350099563599, - 1.6315357685089111, - 1.5764973163604736, - 1.5676499605178833, - 1.5597944259643555, - 1.5531452894210815, - 1.5478837490081787, - 1.5441533327102661, - 1.5420558452606201, - 1.5416483879089355, - 1.5429422855377197, - 1.545902132987976, - 1.5504471063613892, - 1.5564534664154053, - 1.563757061958313, - 1.572158932685852, - 1.5814297199249268, - 1.5913166999816895, - 1.6015501022338867, - 1.6118507385253906, - 1.62193763256073, - 1.6315357685089111, - 1.5764973163604736, - 1.5686519145965576, - 1.5617711544036865, - 1.5560427904129028, - 1.5516228675842285, - 1.548632264137268, - 1.5471522808074951, - 1.547223448753357, - 1.5488438606262207, - 1.5519691705703735, - 1.5565141439437866, - 1.5623549222946167, - 1.5693321228027344, - 1.5772554874420166, - 1.5859086513519287, - 1.5950559377670288, - 1.6044474840164185, - 1.6138273477554321, - 1.6229395866394043, - 1.6315357685089111, - 1.5764973163604736, - 1.5705448389053345, - 1.5655052661895752, - 1.5615161657333374, - 1.5586864948272705, - 1.5570931434631348, - 1.5567798614501953, - 1.5577549934387207, - 1.5599920749664307, - 1.5634300708770752, - 1.5679750442504883, - 1.5735032558441162, - 1.5798636674880981, - 1.5868829488754272, - 1.594369649887085, - 1.6021194458007812, - 1.6099209785461426, - 1.6175614595413208, - 1.6248325109481812, - 1.6315357685089111, - 1.5764973163604736, - 1.5731234550476074, - 1.5705921649932861, - 1.5689725875854492, - 1.56830894947052, - 1.5686192512512207, - 1.5698951482772827, - 1.5721018314361572, - 1.575179100036621, - 1.579042911529541, - 1.583587884902954, - 1.588690161705017, - 1.5942105054855347, - 1.5999983549118042, - 1.605895757675171, - 1.6117419004440308, - 1.6173774003982544, - 1.6226483583450317, - 1.627411127090454, - 1.6315357685089111, - 1.5764973163604736, - 1.5761083364486694, - 1.576480507850647, - 1.5776036977767944, - 1.5794475078582764, - 1.5819615125656128, - 1.5850770473480225, - 1.5887092351913452, - 1.5927588939666748, - 1.5971156358718872, - 1.6016607284545898, - 1.6062699556350708, - 1.610817790031433, - 1.6151801347732544, - 1.6192378997802734, - 1.622880458831787, - 1.6260085105895996, - 1.6285367012023926, - 1.6303960084915161, - 1.6315357685089111 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.5728589296340942, - 0.518821656703949, - 0.46629831194877625, - 0.41672152280807495, - 0.3714436888694763, - 0.33169984817504883, - 0.2985740602016449, - 0.2729699909687042, - 0.2555859684944153, - 0.24689626693725586, - 0.2471379041671753, - 0.25630420446395874, - 0.2741452753543854, - 0.3001743257045746, - 0.3336814045906067, - 0.37375253438949585, - 0.41929471492767334, - 0.4690656065940857, - 0.5217075943946838, - 0.5757848024368286, - 0.572858989238739, - 0.5047552585601807, - 0.4385491907596588, - 0.37604665756225586, - 0.3189525008201599, - 0.2688242197036743, - 0.22702908515930176, - 0.19470715522766113, - 0.1727401614189148, - 0.16172727942466736, - 0.1619689166545868, - 0.17345839738845825, - 0.19588243961334229, - 0.22862932085990906, - 0.27080580592155457, - 0.3212614059448242, - 0.37861984968185425, - 0.44131651520729065, - 0.5076411962509155, - 0.5757848024368286, - 0.572858989238739, - 0.4980711340904236, - 0.4253632128238678, - 0.3567185401916504, - 0.2940094769001007, - 0.23894664645195007, - 0.1930319368839264, - 0.15751779079437256, - 0.13337302207946777, - 0.12125620245933533, - 0.12149783968925476, - 0.13409125804901123, - 0.1586930751800537, - 0.1946321725845337, - 0.24092820286750793, - 0.2963183522224426, - 0.3592917323112488, - 0.42813053727149963, - 0.5009570717811584, - 0.5757848024368286, - 0.572858989238739, - 0.4994935691356659, - 0.42816928029060364, - 0.36083167791366577, - 0.29931750893592834, - 0.24530476331710815, - 0.2002667486667633, - 0.165431946516037, - 0.14175063371658325, - 0.12986871600151062, - 0.13011035323143005, - 0.1424688696861267, - 0.16660723090171814, - 0.2018669843673706, - 0.24728631973266602, - 0.30162638425827026, - 0.36340487003326416, - 0.4309366047382355, - 0.5023795366287231, - 0.5757848024368286, - 0.572858989238739, - 0.5088684558868408, - 0.4466633200645447, - 0.3879404067993164, - 0.3343014419078827, - 0.2872096598148346, - 0.2479495406150818, - 0.2175920009613037, - 0.19696509838104248, - 0.18663153052330017, - 0.1868731677532196, - 0.19768333435058594, - 0.21876728534698486, - 0.24954980611801147, - 0.28919124603271484, - 0.3366103172302246, - 0.3905135989189148, - 0.4494306445121765, - 0.5117543935775757, - 0.5757848024368286, - 0.5728589296340942, - 0.5251798629760742, - 0.4788411855697632, - 0.4351069927215576, - 0.3951702415943146, - 0.3601202666759491, - 0.33091312646865845, - 0.30834558606147766, - 0.2930331528186798, - 0.2853935658931732, - 0.28563520312309265, - 0.29375138878822327, - 0.3095208704471588, - 0.33251339197158813, - 0.36210185289382935, - 0.3974791169166565, - 0.437680184841156, - 0.481608510017395, - 0.5280658006668091, - 0.5757848024368286, - 0.5728589296340942, - 0.5466601848602295, - 0.5212159156799316, - 0.4972202777862549, - 0.475327730178833, - 0.4561355412006378, - 0.4401671290397644, - 0.4278581142425537, - 0.4195442497730255, - 0.41545236110687256, - 0.4156939387321472, - 0.42026251554489136, - 0.42903339862823486, - 0.4417674243450165, - 0.45811712741851807, - 0.4776366353034973, - 0.49979346990585327, - 0.5239832401275635, - 0.5495461225509644, - 0.5757848024368286, - 0.5728589296340942, - 0.5709816813468933, - 0.569195568561554, - 0.5675492882728577, - 0.5660877227783203, - 0.5648507475852966, - 0.5638721585273743, - 0.5631785988807678, - 0.5627890229225159, - 0.5627139806747437, - 0.5629556179046631, - 0.5635072588920593, - 0.564353883266449, - 0.565472424030304, - 0.5668323636054993, - 0.5683966279029846, - 0.570122480392456, - 0.5719628930091858, - 0.573867678642273, - 0.5757848024368286, - 0.5728589296340942, - 0.5955088138580322, - 0.6175808310508728, - 0.6384727954864502, - 0.6576148867607117, - 0.6744849681854248, - 0.6886228919029236, - 0.6996429562568665, - 0.7072446346282959, - 0.7112205028533936, - 0.7114620804786682, - 0.7079628705978394, - 0.7008182406425476, - 0.690223217010498, - 0.6764665842056274, - 0.659923791885376, - 0.6410459876060486, - 0.6203480958938599, - 0.5983947515487671, - 0.5757848024368286, - 0.5728589296340942, - 0.6175836324691772, - 0.6611283421516418, - 0.7023050785064697, - 0.7399908304214478, - 0.7731575965881348, - 0.8009005784988403, - 0.8224631547927856, - 0.8372570276260376, - 0.8448787331581116, - 0.845120370388031, - 0.837975263595581, - 0.8236384391784668, - 0.8025009036064148, - 0.7751392126083374, - 0.7422997951507568, - 0.7048783302307129, - 0.6638956069946289, - 0.6204695701599121, - 0.5757848024368286, - 0.5728589296340942, - 0.6348140239715576, - 0.6951190829277039, - 0.752129077911377, - 0.804288923740387, - 0.8501758575439453, - 0.8885383009910583, - 0.9183297157287598, - 0.9387375116348267, - 0.9492049217224121, - 0.9494465589523315, - 0.9394557476043701, - 0.9195050001144409, - 0.890138566493988, - 0.8521575331687927, - 0.8065978288650513, - 0.7547022104263306, - 0.6978863477706909, - 0.6376999616622925, - 0.5757847428321838, - 0.5728589296340942, - 0.6453327536582947, - 0.7158696055412292, - 0.7825453877449036, - 0.8435413837432861, - 0.8971937298774719, - 0.9420390129089355, - 0.9768539667129517, - 1.000688910484314, - 1.012893557548523, - 1.0131351947784424, - 1.0014071464538574, - 0.9780292510986328, - 0.94363933801651, - 0.8991754055023193, - 0.8458502888679504, - 0.785118579864502, - 0.7186369299888611, - 0.6482186913490295, - 0.5757847428321838, - 0.5728589296340942, - 0.6480000019073486, - 0.7211313247680664, - 0.7902580499649048, - 0.8534946441650391, - 0.9091160297393799, - 0.9556052088737488, - 0.9916939735412598, - 1.0163979530334473, - 1.0290430784225464, - 1.0292847156524658, - 1.0171161890029907, - 0.9928692579269409, - 0.9572055339813232, - 0.9110977649688721, - 0.8558035492897034, - 0.7928312420845032, - 0.7238986492156982, - 0.6508859395980835, - 0.5757847428321838, - 0.5728589296340942, - 0.6425266861915588, - 0.7103340029716492, - 0.7744312286376953, - 0.8330700397491455, - 0.8846508264541626, - 0.9277666807174683, - 0.9612415432929993, - 0.9841621518135071, - 0.9959033727645874, - 0.9961450099945068, - 0.9848803877830505, - 0.9624168276786804, - 0.9293670058250427, - 0.88663250207901, - 0.8353790044784546, - 0.7770044803619385, - 0.713101327419281, - 0.6454126238822937, - 0.5757847428321838, - 0.5728589296340942, - 0.62950599193573, - 0.6846477389335632, - 0.7367801070213318, - 0.7844810485839844, - 0.8264493942260742, - 0.8615403175354004, - 0.8887966871261597, - 0.9074750542640686, - 0.9170657396316528, - 0.9173073768615723, - 0.9081932902336121, - 0.8899719715118408, - 0.8631405830383301, - 0.8284310102462769, - 0.7867899537086487, - 0.7393532991409302, - 0.6874150633811951, - 0.6323919296264648, - 0.5757848024368286, - 0.5728589296340942, - 0.6103488206863403, - 0.6468560695648193, - 0.6813846826553345, - 0.7129929065704346, - 0.7408186197280884, - 0.7641026377677917, - 0.7822099924087524, - 0.7946467399597168, - 0.8010735511779785, - 0.8013151288032532, - 0.7953649759292603, - 0.7833852767944336, - 0.7657029628753662, - 0.742800235748291, - 0.7153018712997437, - 0.6839578747749329, - 0.6496233344078064, - 0.6132347583770752, - 0.5757848024368286, - 0.5728589296340942, - 0.5871312618255615, - 0.6010541319847107, - 0.6142478585243225, - 0.6263524889945984, - 0.6370378136634827, - 0.6460124850273132, - 0.653031587600708, - 0.6579036712646484, - 0.660495936870575, - 0.6607375144958496, - 0.6586219072341919, - 0.6542068719863892, - 0.6476128101348877, - 0.6390194892883301, - 0.6286613941192627, - 0.6168210506439209, - 0.6038214564323425, - 0.5900171995162964, - 0.5757848024368286, - 0.5728589296340942, - 0.562369167804718, - 0.5522054433822632, - 0.5426449775695801, - 0.5339486002922058, - 0.5263534188270569, - 0.5200667977333069, - 0.5152600407600403, - 0.5120643377304077, - 0.5105668902397156, - 0.510808527469635, - 0.512782633304596, - 0.5164353847503662, - 0.5216670632362366, - 0.5283350348472595, - 0.5362575054168701, - 0.5452181696891785, - 0.554972767829895, - 0.5652551054954529, - 0.5757848024368286, - 0.5728589296340942, - 0.5387459993362427, - 0.5056034326553345, - 0.47433534264564514, - 0.44579464197158813, - 0.42075979709625244, - 0.3999137878417969, - 0.3838250935077667, - 0.37293267250061035, - 0.36753368377685547, - 0.3677752614021301, - 0.3736509680747986, - 0.3850003778934479, - 0.40151405334472656, - 0.4227414131164551, - 0.44810354709625244, - 0.4769085645675659, - 0.5083707571029663, - 0.5416319370269775, - 0.5757848024368286, - 0.5728589296340942, - 0.518821656703949, - 0.46629828214645386, - 0.41672152280807495, - 0.37144362926483154, - 0.33169978857040405, - 0.2985740303993225, - 0.27296993136405945, - 0.2555859386920929, - 0.24689620733261108, - 0.24713784456253052, - 0.25630417466163635, - 0.2741452157497406, - 0.3001742959022522, - 0.3336813747882843, - 0.37375253438949585, - 0.41929471492767334, - 0.4690656065940857, - 0.5217075943946838, - 0.5757848024368286 - ], - "y": [ - 0.6654056906700134, - 0.7142711877822876, - 0.7618548274040222, - 0.8068585991859436, - 0.8480549454689026, - 0.884320080280304, - 0.9146648645401001, - 0.9382615089416504, - 0.9544664025306702, - 0.9628374576568604, - 0.963146448135376, - 0.9553848505020142, - 0.9397643804550171, - 0.916711151599884, - 0.8868539929389954, - 0.851007342338562, - 0.8101489543914795, - 0.7653933763504028, - 0.7179614305496216, - 0.6691469550132751, - 0.6654056906700134, - 0.6928446888923645, - 0.7195862531661987, - 0.7449008822441101, - 0.7680982351303101, - 0.7885453104972839, - 0.8056845664978027, - 0.8190483450889587, - 0.8282722234725952, - 0.8331044912338257, - 0.8334134817123413, - 0.8291906118392944, - 0.8205512166023254, - 0.8077308535575867, - 0.7910792231559753, - 0.7710505723953247, - 0.748191237449646, - 0.7231248021125793, - 0.6965349316596985, - 0.6691469550132751, - 0.6654056906700134, - 0.6684474945068359, - 0.6714573502540588, - 0.6743531227111816, - 0.6770558953285217, - 0.6794918775558472, - 0.6815946698188782, - 0.683306872844696, - 0.6845818758010864, - 0.6853848099708557, - 0.6856937408447266, - 0.6855002641677856, - 0.6848097443580627, - 0.6836409568786621, - 0.6820257902145386, - 0.6800082921981812, - 0.6776434779167175, - 0.6749958992004395, - 0.6721377372741699, - 0.6691469550132751, - 0.6654056906700134, - 0.6437234282493591, - 0.6226836442947388, - 0.6028602123260498, - 0.5847938060760498, - 0.568977415561676, - 0.5558423399925232, - 0.545746922492981, - 0.5389664173126221, - 0.5356858968734741, - 0.5359948873519897, - 0.5398848652839661, - 0.5472497344017029, - 0.5578886270523071, - 0.5715112686157227, - 0.587746262550354, - 0.6061505079269409, - 0.6262221336364746, - 0.6474136710166931, - 0.6691469550132751, - 0.6654056906700134, - 0.6213517189025879, - 0.5785504579544067, - 0.5381694436073303, - 0.5013100504875183, - 0.46897783875465393, - 0.4420546889305115, - 0.4212750196456909, - 0.40720558166503906, - 0.4002302289009094, - 0.4005391597747803, - 0.40812402963638306, - 0.42277783155441284, - 0.4441009759902954, - 0.47151172161102295, - 0.5042624473571777, - 0.5414597988128662, - 0.5820890665054321, - 0.6250419616699219, - 0.6691469550132751, - 0.6654056906700134, - 0.6037567853927612, - 0.5438404679298401, - 0.487291157245636, - 0.43565139174461365, - 0.3903297185897827, - 0.35256248712539673, - 0.323379784822464, - 0.3035776913166046, - 0.2936963737010956, - 0.29400530457496643, - 0.3044961392879486, - 0.3248826563358307, - 0.3546087443828583, - 0.39286360144615173, - 0.4386037290096283, - 0.4905815124511719, - 0.5473790168762207, - 0.6074469685554504, - 0.6691469550132751, - 0.6654056906700134, - 0.5928451418876648, - 0.5223149061203003, - 0.45573878288269043, - 0.3949328362941742, - 0.34155577421188354, - 0.29706352949142456, - 0.2626696228981018, - 0.23931241035461426, - 0.22762897610664368, - 0.22793790698051453, - 0.24023085832595825, - 0.2641724944114685, - 0.2991097569465637, - 0.3440896272659302, - 0.39788520336151123, - 0.4590291380882263, - 0.5258533954620361, - 0.5965353846549988, - 0.6691469550132751, - 0.6654056906700134, - 0.5897993445396423, - 0.5163064002990723, - 0.44693148136138916, - 0.3835670053958893, - 0.3279413878917694, - 0.2815719544887543, - 0.24572348594665527, - 0.22137385606765747, - 0.20918741822242737, - 0.20949634909629822, - 0.22229230403900146, - 0.24722635746002197, - 0.2836182117462158, - 0.33047524094581604, - 0.3865193724632263, - 0.45022183656692505, - 0.5198449492454529, - 0.5934895873069763, - 0.6691469550132751, - 0.6654056906700134, - 0.59494948387146, - 0.5264661312103271, - 0.4618237018585205, - 0.4027854800224304, - 0.35096192359924316, - 0.3077665865421295, - 0.2743776738643646, - 0.251706063747406, - 0.24037015438079834, - 0.2406790852546692, - 0.25262451171875, - 0.2758805453777313, - 0.30981284379959106, - 0.3534957766532898, - 0.40573787689208984, - 0.4651140570640564, - 0.5300046801567078, - 0.598639726638794, - 0.6691469550132751, - 0.6654056906700134, - 0.6077373623847961, - 0.5516930818557739, - 0.4988016188144684, - 0.45050573348999023, - 0.408122718334198, - 0.3728087842464447, - 0.34552711248397827, - 0.3270219564437866, - 0.31779807806015015, - 0.318107008934021, - 0.3279404044151306, - 0.34702998399734497, - 0.37485507130622864, - 0.410656601190567, - 0.4534580707550049, - 0.5020920038223267, - 0.5552316308021545, - 0.6114276051521301, - 0.6691469550132751, - 0.6654056906700134, - 0.6267772912979126, - 0.5892535448074341, - 0.5538581013679504, - 0.5215563774108887, - 0.49322956800460815, - 0.4696502685546875, - 0.45146167278289795, - 0.43915992975234985, - 0.43308064341545105, - 0.4333896040916443, - 0.44007837772369385, - 0.45296451449394226, - 0.47169655561447144, - 0.4957634210586548, - 0.5245087742805481, - 0.5571484565734863, - 0.5927920937538147, - 0.6304675340652466, - 0.6691469550132751, - 0.6654056906700134, - 0.6500059366226196, - 0.6350772976875305, - 0.6210269331932068, - 0.608238160610199, - 0.5970597863197327, - 0.587796688079834, - 0.5807016491889954, - 0.5759680867195129, - 0.5737252235412598, - 0.5740341544151306, - 0.5768865346908569, - 0.5822044610977173, - 0.5898429751396179, - 0.5995936393737793, - 0.6111904978752136, - 0.6243172883987427, - 0.6386158466339111, - 0.6536961793899536, - 0.6691469550132751, - 0.6654056906700134, - 0.6749061942100525, - 0.6841985583305359, - 0.6930293440818787, - 0.7011576294898987, - 0.7083616852760315, - 0.7144451141357422, - 0.7192418575286865, - 0.7226212024688721, - 0.724490761756897, - 0.7247996926307678, - 0.7235395908355713, - 0.7207447290420532, - 0.7164914011955261, - 0.7108955979347229, - 0.7041099667549133, - 0.6963196396827698, - 0.6877371072769165, - 0.6785964369773865, - 0.6691469550132751, - 0.6654056906700134, - 0.6987796425819397, - 0.7312943339347839, - 0.7620627284049988, - 0.7902456521987915, - 0.8150742053985596, - 0.8358712792396545, - 0.8520694971084595, - 0.8632270693778992, - 0.8690395951271057, - 0.8693485260009766, - 0.8641454577445984, - 0.8535723686218262, - 0.8379175662994385, - 0.817608118057251, - 0.7931979894638062, - 0.7653530836105347, - 0.7348328828811646, - 0.7024698853492737, - 0.6691469550132751, - 0.6654056906700134, - 0.7190393209457397, - 0.7712609767913818, - 0.8206462264060974, - 0.8658479452133179, - 0.9056330919265747, - 0.9389165639877319, - 0.9647903442382812, - 0.982548713684082, - 0.9917073249816895, - 0.9920162558555603, - 0.983467161655426, - 0.966293215751648, - 0.9409627914428711, - 0.9081670045852661, - 0.8688002824783325, - 0.8239365816116333, - 0.7747995257377625, - 0.7227295637130737, - 0.6691469550132751, - 0.6654056906700134, - 0.7334896922111511, - 0.7997675538063049, - 0.8624314069747925, - 0.9197719097137451, - 0.9702250957489014, - 1.0124144554138184, - 1.0451894998550415, - 1.0676560401916504, - 1.0792012214660645, - 1.07951021194458, - 1.0685744285583496, - 1.0466923713684082, - 1.014460802078247, - 0.9727590084075928, - 0.9227243661880493, - 0.8657217621803284, - 0.8033061027526855, - 0.7371799349784851, - 0.6691469550132751, - 0.6654056906700134, - 0.7405648827552795, - 0.8137249946594238, - 0.8828902840614319, - 0.9461742639541626, - 1.0018506050109863, - 1.048400640487671, - 1.084554672241211, - 1.1093263626098633, - 1.122040033340454, - 1.1223489046096802, - 1.1102447509765625, - 1.086057424545288, - 1.0504469871520996, - 1.0043845176696777, - 0.949126660823822, - 0.8861806392669678, - 0.8172634840011597, - 0.7442551255226135, - 0.6691469550132751, - 0.6654056906700134, - 0.7394981384277344, - 0.8116205930709839, - 0.8798057436943054, - 0.9421936273574829, - 0.9970824718475342, - 1.0429750680923462, - 1.0786195993423462, - 1.103043794631958, - 1.1155812740325928, - 1.1158902645111084, - 1.1039621829986572, - 1.080122470855713, - 1.045021414756775, - 0.9996164441108704, - 0.9451460838317871, - 0.8830960988998413, - 0.8151592016220093, - 0.7431883811950684, - 0.6691469550132751, - 0.6654056906700134, - 0.7304051518440247, - 0.7936826348304749, - 0.8535120487213135, - 0.9082614779472351, - 0.9564374089241028, - 0.9967257976531982, - 1.0280277729034424, - 1.0494892597198486, - 1.0605249404907227, - 1.0608339309692383, - 1.0504076480865479, - 1.0295305252075195, - 0.998772144317627, - 0.958971381187439, - 0.9112138748168945, - 0.8568024039268494, - 0.7972211837768555, - 0.7340953946113586, - 0.6691469550132751, - 0.6654056906700134, - 0.7142711877822876, - 0.7618547677993774, - 0.8068585395812988, - 0.8480548858642578, - 0.8843200206756592, - 0.9146648049354553, - 0.9382614493370056, - 0.9544663429260254, - 0.9628374576568604, - 0.9631463289260864, - 0.9553847908973694, - 0.9397643208503723, - 0.9167110919952393, - 0.8868539333343506, - 0.8510072827339172, - 0.8101488947868347, - 0.7653933763504028, - 0.7179614305496216, - 0.6691469550132751 - ], - "z": [ - 1.6207873821258545, - 1.6205366849899292, - 1.6208982467651367, - 1.6218621730804443, - 1.6234021186828613, - 1.6254761219024658, - 1.6280275583267212, - 1.6309868097305298, - 1.6342732906341553, - 1.6377973556518555, - 1.6414626836776733, - 1.6451693773269653, - 1.648816466331482, - 1.6523042917251587, - 1.6555378437042236, - 1.6584287881851196, - 1.6608984470367432, - 1.662879228591919, - 1.66431725025177, - 1.6651732921600342, - 1.6207873821258545, - 1.623270034790039, - 1.626290202140808, - 1.6297657489776611, - 1.6336017847061157, - 1.6376935243606567, - 1.6419295072555542, - 1.6461942195892334, - 1.6503711938858032, - 1.6543465852737427, - 1.65801203250885, - 1.6612672805786133, - 1.6640238761901855, - 1.6662063598632812, - 1.6677552461624146, - 1.668628454208374, - 1.66880202293396, - 1.6682711839675903, - 1.6670506000518799, - 1.6651732921600342, - 1.6207873821258545, - 1.6257669925689697, - 1.6312161684036255, - 1.636986255645752, - 1.6429197788238525, - 1.6488550901412964, - 1.6546300649642944, - 1.66008722782135, - 1.665077805519104, - 1.6694656610488892, - 1.673130989074707, - 1.675973892211914, - 1.6779168844223022, - 1.678906798362732, - 1.6789168119430542, - 1.6779465675354004, - 1.6760225296020508, - 1.6731971502304077, - 1.6695475578308105, - 1.6651732921600342, - 1.6207873821258545, - 1.62775719165802, - 1.6351423263549805, - 1.6427412033081055, - 1.6503466367721558, - 1.6577510833740234, - 1.664752721786499, - 1.6711604595184326, - 1.6767994165420532, - 1.6815159320831299, - 1.6851812601089478, - 1.6876955032348633, - 1.6889899969100952, - 1.689029574394226, - 1.6878129243850708, - 1.6853734254837036, - 1.6817774772644043, - 1.6771233081817627, - 1.6715377569198608, - 1.6651732921600342, - 1.6207873821258545, - 1.6290249824523926, - 1.6376432180404663, - 1.6464070081710815, - 1.655077338218689, - 1.6634176969528198, - 1.6712006330490112, - 1.6782137155532837, - 1.6842658519744873, - 1.6891916990280151, - 1.692857027053833, - 1.6951619386672974, - 1.6960433721542358, - 1.6954774856567383, - 1.6934795379638672, - 1.6901041269302368, - 1.6854432821273804, - 1.6796241998672485, - 1.6728055477142334, - 1.6651732921600342, - 1.6207873821258545, - 1.6294327974319458, - 1.6384477615356445, - 1.6475863456726074, - 1.6565992832183838, - 1.66524076461792, - 1.673275113105774, - 1.6804829835891724, - 1.6866679191589355, - 1.6916611194610596, - 1.695326566696167, - 1.6975640058517456, - 1.6983126401901245, - 1.6975518465042114, - 1.6953026056289673, - 1.6916260719299316, - 1.6866226196289062, - 1.6804287433624268, - 1.6732133626937866, - 1.6651732921600342, - 1.6207873821258545, - 1.628936529159546, - 1.637468934059143, - 1.6461515426635742, - 1.6547476053237915, - 1.663022756576538, - 1.6707512140274048, - 1.6777220964431763, - 1.6837453842163086, - 1.6886566877365112, - 1.692322015762329, - 1.6946414709091187, - 1.6955517530441284, - 1.6950280666351318, - 1.6930845975875854, - 1.6897743940353394, - 1.685187816619873, - 1.6794497966766357, - 1.6727170944213867, - 1.6651732921600342, - 1.6207873821258545, - 1.6275900602340698, - 1.634812593460083, - 1.6422579288482666, - 1.649722933769226, - 1.6570039987564087, - 1.6639025211334229, - 1.6702303886413574, - 1.6758149862289429, - 1.6805038452148438, - 1.6841692924499512, - 1.686711072921753, - 1.6880600452423096, - 1.68817937374115, - 1.687065839767456, - 1.6847496032714844, - 1.6812942028045654, - 1.6767935752868652, - 1.6713706254959106, - 1.6651732921600342, - 1.6207873821258545, - 1.6255391836166382, - 1.630766749382019, - 1.6363275051116943, - 1.642069697380066, - 1.647836685180664, - 1.6534713506698608, - 1.6588196754455566, - 1.6637359857559204, - 1.6680861711502075, - 1.671751618385315, - 1.67463219165802, - 1.6766493320465088, - 1.6777480840682983, - 1.6778985261917114, - 1.6770963668823242, - 1.6753637790679932, - 1.6727477312088013, - 1.669319748878479, - 1.6651732921600342, - 1.6207873821258545, - 1.6230062246322632, - 1.625769853591919, - 1.6290029287338257, - 1.6326173543930054, - 1.6365143060684204, - 1.6405878067016602, - 1.6447265148162842, - 1.648817539215088, - 1.6527493000030518, - 1.6564147472381592, - 1.659713625907898, - 1.6625560522079468, - 1.6648645401000977, - 1.6665761470794678, - 1.6676440238952637, - 1.6680392026901245, - 1.6677508354187012, - 1.666786789894104, - 1.6651732921600342, - 1.6207873821258545, - 1.6202654838562012, - 1.6203632354736328, - 1.6210778951644897, - 1.6223900318145752, - 1.624263882637024, - 1.626648187637329, - 1.6294779777526855, - 1.6326760053634644, - 1.6361552476882935, - 1.6398205757141113, - 1.643572211265564, - 1.6473075151443481, - 1.6509249210357666, - 1.6543256044387817, - 1.657416820526123, - 1.6601141691207886, - 1.662344217300415, - 1.664046049118042, - 1.6651732921600342, - 1.6207873821258545, - 1.6176142692565918, - 1.6151329278945923, - 1.6134113073349, - 1.612496256828308, - 1.612412691116333, - 1.6131629943847656, - 1.6147265434265137, - 1.617060899734497, - 1.6201021671295166, - 1.6237674951553345, - 1.6279569864273071, - 1.6325562000274658, - 1.6374397277832031, - 1.6424745321273804, - 1.6475229263305664, - 1.6524475812911987, - 1.6571139097213745, - 1.661394715309143, - 1.6651732921600342, - 1.6207873821258545, - 1.6153395175933838, - 1.6106457710266113, - 1.6068339347839355, - 1.6040080785751343, - 1.6022452116012573, - 1.6015936136245728, - 1.6020708084106445, - 1.6036640405654907, - 1.6063296794891357, - 1.6099950075149536, - 1.6145601272583008, - 1.6199004650115967, - 1.6258703470230103, - 1.6323070526123047, - 1.6390347480773926, - 1.6458700895309448, - 1.6526267528533936, - 1.6591200828552246, - 1.6651732921600342, - 1.6207873821258545, - 1.6136881113052368, - 1.6073877811431885, - 1.6020584106445312, - 1.597845196723938, - 1.5948631763458252, - 1.593193769454956, - 1.5928822755813599, - 1.5939373970031738, - 1.5963302850723267, - 1.5999956130981445, - 1.6048334836959839, - 1.610711932182312, - 1.6174705028533936, - 1.6249250173568726, - 1.6328719854354858, - 1.64109468460083, - 1.6493687629699707, - 1.6574686765670776, - 1.6651732921600342, - 1.6207873821258545, - 1.6128387451171875, - 1.6057121753692627, - 1.5996023416519165, - 1.5946756601333618, - 1.591066598892212, - 1.5888736248016357, - 1.5881565809249878, - 1.5889348983764648, - 1.5911874771118164, - 1.5948528051376343, - 1.599830985069275, - 1.6059861183166504, - 1.6131504774093628, - 1.6211283206939697, - 1.6297023296356201, - 1.6386386156082153, - 1.647693157196045, - 1.6566193103790283, - 1.6651732921600342, - 1.6207873821258545, - 1.612883448600769, - 1.6058006286621094, - 1.5997318029403687, - 1.594842791557312, - 1.5912667512893677, - 1.5891014337539673, - 1.588405728340149, - 1.5891987085342407, - 1.5914586782455444, - 1.5951240062713623, - 1.6000947952270508, - 1.606235384941101, - 1.6133782863616943, - 1.621328592300415, - 1.6298694610595703, - 1.6387680768966675, - 1.647781491279602, - 1.6566640138626099, - 1.6651732921600342, - 1.6207873821258545, - 1.613817572593689, - 1.6076432466506958, - 1.6024328470230103, - 1.5983285903930664, - 1.5954421758651733, - 1.5938525199890137, - 1.5936028957366943, - 1.5947002172470093, - 1.5971144437789917, - 1.6007797718048096, - 1.6055963039398193, - 1.6114325523376465, - 1.6181292533874512, - 1.6255038976669312, - 1.6333552598953247, - 1.641469120979309, - 1.649624228477478, - 1.6575981378555298, - 1.6651732921600342, - 1.6207873821258545, - 1.615539789199829, - 1.611040711402893, - 1.6074128150939941, - 1.604755163192749, - 1.6031402349472046, - 1.6026118993759155, - 1.6031848192214966, - 1.604843258857727, - 1.6075419187545776, - 1.6112072467803955, - 1.615739345550537, - 1.6210144758224487, - 1.6268887519836426, - 1.6332019567489624, - 1.6397818326950073, - 1.646449089050293, - 1.6530216932296753, - 1.65932035446167, - 1.6651732921600342, - 1.6207873821258545, - 1.617863416671753, - 1.6156245470046997, - 1.6141319274902344, - 1.6134262084960938, - 1.613526701927185, - 1.614430546760559, - 1.6161131858825684, - 1.6185286045074463, - 1.6216111183166504, - 1.6252764463424683, - 1.6294246912002563, - 1.633942723274231, - 1.6387072801589966, - 1.6435884237289429, - 1.6484529972076416, - 1.6531682014465332, - 1.657605528831482, - 1.6616439819335938, - 1.6651732921600342, - 1.6207873821258545, - 1.6205366849899292, - 1.6208982467651367, - 1.6218621730804443, - 1.6234021186828613, - 1.6254761219024658, - 1.6280275583267212, - 1.6309868097305298, - 1.6342732906341553, - 1.6377973556518555, - 1.6414626836776733, - 1.6451694965362549, - 1.648816466331482, - 1.6523042917251587, - 1.6555378437042236, - 1.6584287881851196, - 1.6608984470367432, - 1.662879228591919, - 1.66431725025177, - 1.6651732921600342 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.5903629660606384, - 0.5378739237785339, - 0.4868457317352295, - 0.43867039680480957, - 0.39466196298599243, - 0.3560209274291992, - 0.3238012492656708, - 0.2988818287849426, - 0.28194233775138855, - 0.2734449505805969, - 0.2736213803291321, - 0.282466858625412, - 0.2997400760650635, - 0.3249698281288147, - 0.35746800899505615, - 0.3963480591773987, - 0.44054949283599854, - 0.4888665974140167, - 0.5399813652038574, - 0.5924995541572571, - 0.5903629660606384, - 0.5228734016418457, - 0.4572538733482361, - 0.3952943682670593, - 0.33868494629859924, - 0.28896984457969666, - 0.2475050687789917, - 0.21542170643806458, - 0.19359487295150757, - 0.18262004852294922, - 0.18279647827148438, - 0.194119393825531, - 0.21627995371818542, - 0.248673677444458, - 0.2904168963432312, - 0.3403710424900055, - 0.3971734642982483, - 0.4592747092247009, - 0.5249808430671692, - 0.5924996137619019, - 0.5903629660606384, - 0.5151879787445068, - 0.4420927166938782, - 0.37307098507881165, - 0.3100055754184723, - 0.25461673736572266, - 0.20841532945632935, - 0.17266154289245605, - 0.1483307182788849, - 0.1360865831375122, - 0.13626301288604736, - 0.14885523915290833, - 0.1735197901725769, - 0.20958387851715088, - 0.2560637891292572, - 0.31169164180755615, - 0.3749500811100006, - 0.444113552570343, - 0.5172954797744751, - 0.5924996137619019, - 0.5903629660606384, - 0.5156505107879639, - 0.44300520420074463, - 0.374408483505249, - 0.31173163652420044, - 0.2566843032836914, - 0.2107679545879364, - 0.1752350926399231, - 0.1510549783706665, - 0.1388871967792511, - 0.13906362652778625, - 0.15157949924468994, - 0.17609333992004395, - 0.21193653345108032, - 0.25813132524490356, - 0.3134177327156067, - 0.376287579536438, - 0.4450260400772095, - 0.5177580118179321, - 0.5924996137619019, - 0.5903629660606384, - 0.5242109298706055, - 0.4598924517631531, - 0.3991619944572449, - 0.3436761796474457, - 0.2949484884738922, - 0.2543080747127533, - 0.22286346554756165, - 0.20147240161895752, - 0.19071847200393677, - 0.19089490175247192, - 0.20199692249298096, - 0.2237217128276825, - 0.2554766535758972, - 0.29639554023742676, - 0.34536224603652954, - 0.40104109048843384, - 0.4619132876396179, - 0.526318371295929, - 0.5924996137619019, - 0.5903629660606384, - 0.5399414896965027, - 0.4909244775772095, - 0.4446490406990051, - 0.40237748622894287, - 0.3652627766132355, - 0.3343173861503601, - 0.3103853762149811, - 0.29411953687667847, - 0.28596365451812744, - 0.2861400842666626, - 0.2946440577507019, - 0.31124362349510193, - 0.33548596501350403, - 0.36670982837677, - 0.40406352281570435, - 0.4465281367301941, - 0.4929453432559967, - 0.5420489311218262, - 0.5924995541572571, - 0.5903629660606384, - 0.5611375570297241, - 0.5327385067939758, - 0.5059403777122498, - 0.48147428035736084, - 0.4600074887275696, - 0.4421256184577942, - 0.4283164143562317, - 0.41895657777786255, - 0.41430139541625977, - 0.4144778251647949, - 0.419481098651886, - 0.42917466163635254, - 0.4432942271232605, - 0.4614545702934265, - 0.4831603765487671, - 0.5078194737434387, - 0.5347593426704407, - 0.5632450580596924, - 0.5924995541572571, - 0.5903629660606384, - 0.5855022668838501, - 0.5808032751083374, - 0.5763942003250122, - 0.5723953247070312, - 0.5689156651496887, - 0.5660501718521118, - 0.5638769865036011, - 0.5624554753303528, - 0.5618243217468262, - 0.5620007514953613, - 0.5629799962043762, - 0.5647352933883667, - 0.5672187805175781, - 0.5703627467155457, - 0.5740814208984375, - 0.5782732963562012, - 0.5828241109848022, - 0.5876097083091736, - 0.5924995541572571, - 0.5903629660606384, - 0.6103952527046204, - 0.6299102902412415, - 0.6483756899833679, - 0.6652877926826477, - 0.6801852583885193, - 0.6926618218421936, - 0.7023770213127136, - 0.7090659737586975, - 0.7125461101531982, - 0.7127225399017334, - 0.7095904350280762, - 0.7032352685928345, - 0.6938304305076599, - 0.681632399559021, - 0.666973888874054, - 0.6502547860145569, - 0.6319311261177063, - 0.6125027537345886, - 0.5924995541572571, - 0.5903629660606384, - 0.6331190466880798, - 0.6747379899024963, - 0.7140845060348511, - 0.7500854134559631, - 0.7817586660385132, - 0.8082402944564819, - 0.8288078904151917, - 0.8429004549980164, - 0.8501336574554443, - 0.8503100872039795, - 0.8434249758720398, - 0.8296661376953125, - 0.8094089031219482, - 0.7832057476043701, - 0.7517715692520142, - 0.71596360206604, - 0.6767588257789612, - 0.6352264881134033, - 0.5924995541572571, - 0.5903629064559937, - 0.6512110829353333, - 0.7104285955429077, - 0.7664002180099487, - 0.8175990581512451, - 0.862628698348999, - 0.9002607464790344, - 0.9294687509536743, - 0.949455976486206, - 0.9596772193908691, - 0.9598536491394043, - 0.9499804973602295, - 0.9303270578384399, - 0.9014293551445007, - 0.864075779914856, - 0.8192852139472961, - 0.7682793140411377, - 0.7124494314193726, - 0.6533185839653015, - 0.5924995541572571, - 0.5903629064559937, - 0.6627109050750732, - 0.7331145405769348, - 0.7996534109115601, - 0.8605126142501831, - 0.9140318632125854, - 0.9587514400482178, - 0.9934514760971069, - 1.0171854496002197, - 1.0293060541152954, - 1.0294824838638306, - 1.0177099704742432, - 0.9943097829818726, - 0.9599200487136841, - 0.9154789447784424, - 0.8621987104415894, - 0.801532506942749, - 0.7351353764533997, - 0.6648183465003967, - 0.5924995541572571, - 0.5903629064559937, - 0.6663722395896912, - 0.7403373718261719, - 0.8102407455444336, - 0.8741755485534668, - 0.9303978681564331, - 0.9773739576339722, - 1.0138226747512817, - 1.0387495756149292, - 1.0514748096466064, - 1.0516512393951416, - 1.0392740964889526, - 1.0146808624267578, - 0.9785426259040833, - 0.93184494972229, - 0.8758617043495178, - 0.8121198415756226, - 0.7423582077026367, - 0.6684797406196594, - 0.5924995541572571, - 0.5903629064559937, - 0.6617984175682068, - 0.7313144207000732, - 0.7970148324966431, - 0.857107400894165, - 0.9099531173706055, - 0.9541102647781372, - 0.9883745908737183, - 1.0118112564086914, - 1.0237810611724854, - 1.0239574909210205, - 1.0123357772827148, - 0.9892328977584839, - 0.9552789330482483, - 0.9114001989364624, - 0.8587935566902161, - 0.798893928527832, - 0.7333352565765381, - 0.6639058589935303, - 0.5924995541572571, - 0.5903629064559937, - 0.6494849920272827, - 0.7070235013961792, - 0.7614089846611023, - 0.8111578822135925, - 0.8549132347106934, - 0.8914814591407776, - 0.9198651313781738, - 0.939289927482605, - 0.9492260813713074, - 0.9494025111198425, - 0.9398144483566284, - 0.9207233786582947, - 0.8926501274108887, - 0.8563603162765503, - 0.8128440380096436, - 0.7632880806922913, - 0.709044337272644, - 0.651592493057251, - 0.5924995541572571, - 0.5903629660606384, - 0.6307663917541504, - 0.6700969338417053, - 0.7072815895080566, - 0.7413061857223511, - 0.771242618560791, - 0.7962742447853088, - 0.8157182931900024, - 0.8290443420410156, - 0.8358889818191528, - 0.836065411567688, - 0.8295688629150391, - 0.8165766000747681, - 0.7974429130554199, - 0.7726897597312927, - 0.7429922819137573, - 0.7091606855392456, - 0.6721177697181702, - 0.6328738927841187, - 0.5924995541572571, - 0.5903629660606384, - 0.6076710224151611, - 0.6245360970497131, - 0.640498161315918, - 0.6551218032836914, - 0.6680080890655518, - 0.6788056492805481, - 0.6872197985649109, - 0.6930211186408997, - 0.6960513591766357, - 0.6962277889251709, - 0.6935456395149231, - 0.6880780458450317, - 0.6799742579460144, - 0.6694552302360535, - 0.6568078994750977, - 0.6423772573471069, - 0.626556932926178, - 0.6097784638404846, - 0.5924995541572571, - 0.5903629660606384, - 0.582701563835144, - 0.5752783417701721, - 0.5682957172393799, - 0.5619441270828247, - 0.5563969016075134, - 0.5518053770065308, - 0.5482946634292603, - 0.5459606647491455, - 0.5448669195175171, - 0.5450433492660522, - 0.5464851260185242, - 0.5491529107093811, - 0.5529739856719971, - 0.5578439831733704, - 0.563630223274231, - 0.5701748132705688, - 0.577299177646637, - 0.5848090648651123, - 0.5924995541572571, - 0.5903629660606384, - 0.5585639476776123, - 0.5276615023612976, - 0.4984985589981079, - 0.4718705415725708, - 0.44850385189056396, - 0.42903584241867065, - 0.41399750113487244, - 0.4037991166114807, - 0.3987188935279846, - 0.3988953232765198, - 0.40432363748550415, - 0.4148557782173157, - 0.4302044212818146, - 0.4499508738517761, - 0.47355663776397705, - 0.5003776550292969, - 0.5296823978424072, - 0.5606714487075806, - 0.5924995541572571, - 0.5903629660606384, - 0.5378738641738892, - 0.4868457317352295, - 0.43867039680480957, - 0.39466196298599243, - 0.35602086782455444, - 0.323801189661026, - 0.29888176918029785, - 0.2819422781467438, - 0.27344489097595215, - 0.2736213207244873, - 0.2824667990207672, - 0.2997400164604187, - 0.3249697983264923, - 0.3574679493904114, - 0.3963479995727539, - 0.44054949283599854, - 0.48886656761169434, - 0.5399813652038574, - 0.5924995541572571 - ], - "y": [ - 0.6929587721824646, - 0.6336100101470947, - 0.5759174227714539, - 0.5214546918869019, - 0.47170746326446533, - 0.42803269624710083, - 0.39162173867225647, - 0.3634677231311798, - 0.34433868527412415, - 0.33475640416145325, - 0.3349822461605072, - 0.34501001238822937, - 0.36456629633903503, - 0.3931174874305725, - 0.4298849105834961, - 0.4738655686378479, - 0.5238598585128784, - 0.5785040259361267, - 0.6363074779510498, - 0.6956935524940491, - 0.6929587721824646, - 0.6525915861129761, - 0.613362729549408, - 0.5763424038887024, - 0.5425403118133545, - 0.5128785967826843, - 0.48816633224487305, - 0.46907752752304077, - 0.4561328887939453, - 0.44968557357788086, - 0.4499114155769348, - 0.4568042457103729, - 0.4701760411262512, - 0.4896620810031891, - 0.5147308111190796, - 0.5446984767913818, - 0.578747570514679, - 0.6159493327140808, - 0.6552890539169312, - 0.6956935524940491, - 0.6929587721824646, - 0.6759495139122009, - 0.6594415903091431, - 0.6438851356506348, - 0.6297046542167664, - 0.6172868013381958, - 0.6069704294204712, - 0.5990369319915771, - 0.5937026143074036, - 0.5911130309104919, - 0.5913388729095459, - 0.5943739414215088, - 0.6001354455947876, - 0.6084662675857544, - 0.6191390752792358, - 0.6318627595901489, - 0.6462903022766113, - 0.6620281934738159, - 0.6786470413208008, - 0.6956935524940491, - 0.6929587721824646, - 0.7011527419090271, - 0.7091605067253113, - 0.7167636752128601, - 0.7237547636032104, - 0.7299430966377258, - 0.7351599335670471, - 0.7392628788948059, - 0.7421401143074036, - 0.7437131404876709, - 0.7439389228820801, - 0.7428115010261536, - 0.7403614521026611, - 0.7366557121276855, - 0.7317953109741211, - 0.725912868976593, - 0.7191688418388367, - 0.7117471098899841, - 0.7038502097129822, - 0.6956935524940491, - 0.6929587721824646, - 0.7254700660705566, - 0.757131814956665, - 0.7870803475379944, - 0.8144989013671875, - 0.8386393785476685, - 0.8588433265686035, - 0.874559760093689, - 0.8853598833084106, - 0.8909490704536438, - 0.8911749124526978, - 0.8860312104225159, - 0.8756582736968994, - 0.8603391647338867, - 0.8404915928840637, - 0.8166570067405701, - 0.789485514163971, - 0.7597184181213379, - 0.7281675338745117, - 0.6956935524940491, - 0.6929587721824646, - 0.74626624584198, - 0.7981569766998291, - 0.8472154140472412, - 0.8921034336090088, - 0.9315966367721558, - 0.9646177291870117, - 0.990265965461731, - 1.0078418254852295, - 1.016865611076355, - 1.0170915126800537, - 1.00851309299469, - 0.9913645386695862, - 0.9661135673522949, - 0.9334489107131958, - 0.8942615985870361, - 0.8496205806732178, - 0.800743579864502, - 0.7489637136459351, - 0.6956935524940491, - 0.6929587721824646, - 0.7612878084182739, - 0.8277902603149414, - 0.8906522393226624, - 0.9481589198112488, - 0.9987417459487915, - 1.0410208702087402, - 1.073843002319336, - 1.0963129997253418, - 1.1078177690505981, - 1.1080436706542969, - 1.0969843864440918, - 1.074941635131836, - 1.0425165891647339, - 1.000593900680542, - 0.9503170251846313, - 0.8930574059486389, - 0.8303768634796143, - 0.763985276222229, - 0.6956935524940491, - 0.6929587721824646, - 0.768906831741333, - 0.8428205847740173, - 0.9126837253570557, - 0.9765907526016235, - 1.0327982902526855, - 1.0797730684280396, - 1.1162340641021729, - 1.1411863565444946, - 1.153949499130249, - 1.1541754007339478, - 1.1418577432632446, - 1.1173325777053833, - 1.0812689065933228, - 1.034650444984436, - 0.9787488579750061, - 0.9150888919830322, - 0.8454071879386902, - 0.7716042995452881, - 0.6956935524940491, - 0.6929587721824646, - 0.7682977914810181, - 0.8416190147399902, - 0.9109225273132324, - 0.9743178486824036, - 1.0300756692886353, - 1.0766751766204834, - 1.1128451824188232, - 1.1375991106033325, - 1.150261640548706, - 1.1504875421524048, - 1.1382704973220825, - 1.1139438152313232, - 1.0781710147857666, - 1.0319279432296753, - 0.9764759540557861, - 0.913327693939209, - 0.8442056179046631, - 0.7709952592849731, - 0.6956935524940491, - 0.6929587721824646, - 0.7595265507698059, - 0.8243158459663391, - 0.8855593800544739, - 0.9415865540504456, - 0.9908691048622131, - 1.0320627689361572, - 1.0640438795089722, - 1.0859400033950806, - 1.097153902053833, - 1.0973796844482422, - 1.086611270904541, - 1.0651423931121826, - 1.0335586071014404, - 0.9927213788032532, - 0.9437447190284729, - 0.8879645466804504, - 0.826902449131012, - 0.762224018573761, - 0.6956935524940491, - 0.6929587721824646, - 0.7435437440872192, - 0.7927861213684082, - 0.8393428325653076, - 0.8819438815116882, - 0.9194271564483643, - 0.9507702589035034, - 0.9751182794570923, - 0.9918070435523987, - 1.0003812313079834, - 1.0006071329116821, - 0.9924783706665039, - 0.9762169122695923, - 0.9522660970687866, - 0.9212794303894043, - 0.8841019868850708, - 0.8417479991912842, - 0.795372724533081, - 0.7462412118911743, - 0.6956935524940491, - 0.6929587721824646, - 0.7220812439918518, - 0.750446617603302, - 0.7772811651229858, - 0.8018529415130615, - 0.823491632938385, - 0.8416070938110352, - 0.8557050228118896, - 0.865401029586792, - 0.870430588722229, - 0.8706563711166382, - 0.866072416305542, - 0.8568035960197449, - 0.8431028723716736, - 0.825343906879425, - 0.8040111064910889, - 0.7796863317489624, - 0.7530332207679749, - 0.7247787117958069, - 0.6956935524940491, - 0.6929587721824646, - 0.6974648833274841, - 0.7018854022026062, - 0.7060997486114502, - 0.7099928855895996, - 0.7134587168693542, - 0.7164026498794556, - 0.7187443971633911, - 0.7204201221466064, - 0.7213839888572693, - 0.7216098308563232, - 0.7210914492607117, - 0.7198429107666016, - 0.717898428440094, - 0.7153109312057495, - 0.712151050567627, - 0.7085049152374268, - 0.704472005367279, - 0.700162410736084, - 0.6956935524940491, - 0.6929587721824646, - 0.6723622679710388, - 0.6523648500442505, - 0.6335120797157288, - 0.6163181662559509, - 0.601252019405365, - 0.5887247920036316, - 0.5790780186653137, - 0.5725749731063843, - 0.5693929195404053, - 0.5696187615394592, - 0.5732463002204895, - 0.580176591873169, - 0.5902205109596252, - 0.6031042337417603, - 0.6184762716293335, - 0.6359172463417053, - 0.6549514532089233, - 0.6750597357749939, - 0.6956935524940491, - 0.6929587721824646, - 0.6494936347007751, - 0.6072514057159424, - 0.5673843622207642, - 0.5309799313545227, - 0.4990311861038208, - 0.47240954637527466, - 0.45184123516082764, - 0.4378872811794281, - 0.4309283196926117, - 0.43115416169166565, - 0.4385586082935333, - 0.4529397487640381, - 0.4739053249359131, - 0.5008833408355713, - 0.5331380367279053, - 0.5697895288467407, - 0.6098380088806152, - 0.6521911025047302, - 0.6956935524940491, - 0.6929587721824646, - 0.6313371658325195, - 0.5714336633682251, - 0.5148823857307434, - 0.4632258415222168, - 0.4178731441497803, - 0.3800613582134247, - 0.350821852684021, - 0.33095231652259827, - 0.32099464535713196, - 0.3212204873561859, - 0.3316236436367035, - 0.3519204258918762, - 0.3815571069717407, - 0.41972532868385315, - 0.46538394689559937, - 0.51728755235672, - 0.574020266532898, - 0.6340346336364746, - 0.6956935524940491, - 0.6929587721824646, - 0.6198602914810181, - 0.5487930774688721, - 0.4816955327987671, - 0.420398086309433, - 0.36657264828681946, - 0.3216874897480011, - 0.28696686029434204, - 0.26335805654525757, - 0.2515048682689667, - 0.25173071026802063, - 0.2640293836593628, - 0.28806543350219727, - 0.32318323850631714, - 0.36842480301856995, - 0.42255616188049316, - 0.48410069942474365, - 0.5513796806335449, - 0.6225577592849731, - 0.6956935524940491, - 0.6929587721824646, - 0.6163068413734436, - 0.5417830944061279, - 0.4714202880859375, - 0.40713775157928467, - 0.35068902373313904, - 0.3036138117313385, - 0.2671961188316345, - 0.24242952466011047, - 0.22998946905136108, - 0.23021531105041504, - 0.2431008517742157, - 0.26829469203948975, - 0.30510953068733215, - 0.3525411784648895, - 0.40929585695266724, - 0.47382545471191406, - 0.5443696975708008, - 0.6190043091773987, - 0.6956935524940491, - 0.6929587721824646, - 0.6210618615150452, - 0.551163375377655, - 0.48517003655433655, - 0.4248819053173065, - 0.37194350361824036, - 0.32779887318611145, - 0.29365211725234985, - 0.27043476700782776, - 0.25878003239631653, - 0.2590058743953705, - 0.271106094121933, - 0.2947506904602051, - 0.3292946219444275, - 0.37379565834999084, - 0.4270399808883667, - 0.4875752031803131, - 0.5537499785423279, - 0.6237593293190002, - 0.6956935524940491, - 0.6929587721824646, - 0.6336100101470947, - 0.5759174227714539, - 0.5214547514915466, - 0.4717074930667877, - 0.4280327558517456, - 0.39162176847457886, - 0.3634677529335022, - 0.3443387448787689, - 0.33475643396377563, - 0.3349822759628296, - 0.34501007199287415, - 0.3645663261413574, - 0.3931175172328949, - 0.4298849403858185, - 0.4738655984401703, - 0.5238599181175232, - 0.5785040259361267, - 0.6363074779510498, - 0.6956935524940491 - ], - "z": [ - 1.6567010879516602, - 1.6644643545150757, - 1.6725142002105713, - 1.6806309223175049, - 1.6885933876037598, - 1.6961840391159058, - 1.7031960487365723, - 1.7094382047653198, - 1.7147400379180908, - 1.7189570665359497, - 1.7219741344451904, - 1.7237091064453125, - 1.7241145372390747, - 1.7231794595718384, - 1.7209292650222778, - 1.7174254655838013, - 1.7127634286880493, - 1.7070705890655518, - 1.7005020380020142, - 1.693237066268921, - 1.6567010879516602, - 1.6639207601547241, - 1.671441912651062, - 1.6790591478347778, - 1.6865649223327637, - 1.6937543153762817, - 1.7004313468933105, - 1.7064138650894165, - 1.711538553237915, - 1.7156658172607422, - 1.718682885169983, - 1.7205076217651367, - 1.7210901975631714, - 1.720414638519287, - 1.7184995412826538, - 1.7153970003128052, - 1.7111916542053223, - 1.7059983015060425, - 1.6999585628509521, - 1.693237066268921, - 1.6567010879516602, - 1.6626218557357788, - 1.6688793897628784, - 1.6753031015396118, - 1.6817176342010498, - 1.6879481077194214, - 1.6938246488571167, - 1.6991868019104004, - 1.7038882970809937, - 1.7078009843826294, - 1.7108180522918701, - 1.7128573656082153, - 1.7138631343841553, - 1.7138079404830933, - 1.7126933336257935, - 1.7105497121810913, - 1.7074356079101562, - 1.7034357786178589, - 1.6986595392227173, - 1.693237066268921, - 1.6567010879516602, - 1.6607083082199097, - 1.6651045083999634, - 1.6697697639465332, - 1.6745768785476685, - 1.6793947219848633, - 1.6840918064117432, - 1.6885401010513306, - 1.6926181316375732, - 1.6962147951126099, - 1.6992319822311401, - 1.701587200164795, - 1.7032164335250854, - 1.7040752172470093, - 1.7041399478912354, - 1.70340895652771, - 1.7019022703170776, - 1.6996608972549438, - 1.6967459917068481, - 1.693237066268921, - 1.6567010879516602, - 1.6583874225616455, - 1.660526156425476, - 1.663058876991272, - 1.6659164428710938, - 1.6690210103988647, - 1.6722877025604248, - 1.675627589225769, - 1.6789495944976807, - 1.682162880897522, - 1.6851800680160522, - 1.6879186630249023, - 1.6903040409088135, - 1.692271113395691, - 1.6937661170959473, - 1.6947485208511353, - 1.6951913833618164, - 1.695082664489746, - 1.6944252252578735, - 1.693237066268921, - 1.6567010879516602, - 1.6559109687805176, - 1.6556406021118164, - 1.655897617340088, - 1.656674861907959, - 1.6579509973526, - 1.6596914529800415, - 1.661848545074463, - 1.6643636226654053, - 1.6671679019927979, - 1.6701850891113281, - 1.673332691192627, - 1.6765248775482178, - 1.679674744606018, - 1.6826962232589722, - 1.6855069398880005, - 1.6880301237106323, - 1.6901971101760864, - 1.691948652267456, - 1.693237066268921, - 1.6567010879516602, - 1.6535470485687256, - 1.6509772539138794, - 1.6490620374679565, - 1.6478533744812012, - 1.6473844051361084, - 1.6476678848266602, - 1.6486960649490356, - 1.6504409313201904, - 1.6528549194335938, - 1.6558719873428345, - 1.659409999847412, - 1.66337251663208, - 1.6676512956619263, - 1.6721296310424805, - 1.6766854524612427, - 1.681194543838501, - 1.6855337619781494, - 1.689584732055664, - 1.693237066268921, - 1.6567010879516602, - 1.6515518426895142, - 1.6470414400100708, - 1.643292784690857, - 1.6404082775115967, - 1.6384663581848145, - 1.63752019405365, - 1.637595534324646, - 1.6386903524398804, - 1.6407747268676758, - 1.643791913986206, - 1.647659420967102, - 1.6522718667984009, - 1.6575034856796265, - 1.6632115840911865, - 1.6692403554916382, - 1.6754252910614014, - 1.6815978288650513, - 1.6875896453857422, - 1.693237066268921, - 1.6567010879516602, - 1.650141716003418, - 1.6442595720291138, - 1.6392152309417725, - 1.6351460218429565, - 1.632163166999817, - 1.6303478479385376, - 1.6297497749328613, - 1.630385160446167, - 1.6322365999221802, - 1.6352537870407104, - 1.6393542289733887, - 1.6444261074066162, - 1.6503312587738037, - 1.6569082736968994, - 1.663978099822998, - 1.671347737312317, - 1.6788160800933838, - 1.686179518699646, - 1.693237066268921, - 1.6567010879516602, - 1.6494693756103516, - 1.6429332494735718, - 1.6372710466384888, - 1.6326370239257812, - 1.6291577816009521, - 1.6269282102584839, - 1.6260089874267578, - 1.6264252662658691, - 1.6281657218933105, - 1.6311829090118408, - 1.6353943347930908, - 1.6406853199005127, - 1.6469115018844604, - 1.6539030075073242, - 1.6614691019058228, - 1.6694035530090332, - 1.6774897575378418, - 1.6855071783065796, - 1.693237066268921, - 1.6567010879516602, - 1.6496076583862305, - 1.6432061195373535, - 1.6376709938049316, - 1.6331532001495361, - 1.629776120185852, - 1.6276317834854126, - 1.6267786026000977, - 1.6272399425506592, - 1.6290032863616943, - 1.632020354270935, - 1.6362090110778809, - 1.6414549350738525, - 1.6476150751113892, - 1.6545213460922241, - 1.6619853973388672, - 1.669803500175476, - 1.6777626276016235, - 1.6856454610824585, - 1.693237066268921, - 1.6567010879516602, - 1.6505416631698608, - 1.6450486183166504, - 1.6403717994689941, - 1.6366386413574219, - 1.6339510679244995, - 1.6323822736740112, - 1.6319751739501953, - 1.63274085521698, - 1.6346584558486938, - 1.6376755237579346, - 1.6417099237442017, - 1.6466516256332397, - 1.6523655652999878, - 1.658696174621582, - 1.6654707193374634, - 1.6725043058395386, - 1.6796051263809204, - 1.6865794658660889, - 1.693237066268921, - 1.6567010879516602, - 1.652170181274414, - 1.6482611894607544, - 1.6450806856155396, - 1.6427154541015625, - 1.6412301063537598, - 1.640665054321289, - 1.6410356760025024, - 1.642331838607788, - 1.6445183753967285, - 1.6475355625152588, - 1.6513009071350098, - 1.6557120084762573, - 1.6606483459472656, - 1.6659753322601318, - 1.671547532081604, - 1.677213191986084, - 1.6828175783157349, - 1.6882078647613525, - 1.693237066268921, - 1.6567010879516602, - 1.6543166637420654, - 1.6524955034255981, - 1.6512874364852905, - 1.6507253646850586, - 1.6508245468139648, - 1.6515823602676392, - 1.6529780626296997, - 1.6549736261367798, - 1.6575146913528442, - 1.660531759262085, - 1.6639426946640015, - 1.6676543951034546, - 1.6715656518936157, - 1.675569772720337, - 1.6795574426651, - 1.683419942855835, - 1.6870518922805786, - 1.690354347229004, - 1.693237066268921, - 1.6567010879516602, - 1.6567484140396118, - 1.6572928428649902, - 1.6583194732666016, - 1.6598001718521118, - 1.6616946458816528, - 1.6639512777328491, - 1.666508436203003, - 1.6692962646484375, - 1.6722389459609985, - 1.6752560138702393, - 1.6782653331756592, - 1.6811847686767578, - 1.6839345693588257, - 1.686439871788025, - 1.6886322498321533, - 1.690451979637146, - 1.6918493509292603, - 1.6927862167358398, - 1.693237066268921, - 1.6567010879516602, - 1.6592020988464355, - 1.6621333360671997, - 1.6654146909713745, - 1.6689565181732178, - 1.6726624965667725, - 1.6764312982559204, - 1.6801602840423584, - 1.68374764919281, - 1.6870955228805542, - 1.6901127099990845, - 1.6927167177200317, - 1.6948367357254028, - 1.6964147090911865, - 1.6974077224731445, - 1.6977885961532593, - 1.697547197341919, - 1.6966897249221802, - 1.6952399015426636, - 1.693237066268921, - 1.6567010879516602, - 1.6614117622375488, - 1.6664923429489136, - 1.6718041896820068, - 1.6772023439407349, - 1.6825395822525024, - 1.6876702308654785, - 1.69245445728302, - 1.6967618465423584, - 1.7004746198654175, - 1.7034918069839478, - 1.70573091506958, - 1.7071309089660645, - 1.707653522491455, - 1.707284688949585, - 1.7060344219207764, - 1.7039366960525513, - 1.7010488510131836, - 1.6974495649337769, - 1.693237066268921, - 1.6567010879516602, - 1.6631380319595337, - 1.6698976755142212, - 1.6767957210540771, - 1.6836439371109009, - 1.6902554035186768, - 1.6964499950408936, - 1.7020586729049683, - 1.7069283723831177, - 1.7109262943267822, - 1.7139434814453125, - 1.7158974409103394, - 1.7167350053787231, - 1.7164334058761597, - 1.7150006294250488, - 1.7124760150909424, - 1.7089282274246216, - 1.7044540643692017, - 1.6991757154464722, - 1.693237066268921, - 1.6567010879516602, - 1.6641936302185059, - 1.6719801425933838, - 1.6798481941223145, - 1.6875832080841064, - 1.6949740648269653, - 1.7018193006515503, - 1.7079319953918457, - 1.7131457328796387, - 1.7173179388046265, - 1.7203351259231567, - 1.7221148014068604, - 1.7226084470748901, - 1.7218025922775269, - 1.7197192907333374, - 1.716415286064148, - 1.7119807004928589, - 1.7065366506576538, - 1.7002314329147339, - 1.693237066268921, - 1.6567010879516602, - 1.6644643545150757, - 1.6725142002105713, - 1.6806309223175049, - 1.6885933876037598, - 1.6961840391159058, - 1.7031960487365723, - 1.7094382047653198, - 1.7147400379180908, - 1.7189570665359497, - 1.7219741344451904, - 1.7237091064453125, - 1.7241145372390747, - 1.7231794595718384, - 1.7209292650222778, - 1.7174254655838013, - 1.7127634286880493, - 1.7070705890655518, - 1.7005020380020142, - 1.693237066268921 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.6050992608070374, - 0.5524320006370544, - 0.5012232065200806, - 0.45286986231803894, - 0.40869081020355225, - 0.3698911964893341, - 0.33752936124801636, - 0.31248801946640015, - 0.29545024037361145, - 0.28688085079193115, - 0.28701353073120117, - 0.2958446443080902, - 0.3131333589553833, - 0.3384080231189728, - 0.3709792494773865, - 0.4099586009979248, - 0.4542827904224396, - 0.5027427673339844, - 0.554016649723053, - 0.6067058444023132, - 0.6050992608070374, - 0.5372211933135986, - 0.4712165594100952, - 0.40888580679893494, - 0.3519291281700134, - 0.3019002377986908, - 0.26016369462013245, - 0.22785800695419312, - 0.20586436986923218, - 0.1947827935218811, - 0.19491547346115112, - 0.20625877380371094, - 0.22850334644317627, - 0.26104235649108887, - 0.30298829078674316, - 0.353196918964386, - 0.41029873490333557, - 0.47273609042167664, - 0.5388058423995972, - 0.6067058444023132, - 0.6050992608070374, - 0.529367208480835, - 0.4557228684425354, - 0.3861750066280365, - 0.3226207494735718, - 0.2667936682701111, - 0.22021660208702087, - 0.1841600239276886, - 0.15960749983787537, - 0.14722874760627747, - 0.14736142754554749, - 0.16000190377235413, - 0.18480536341667175, - 0.2210952639579773, - 0.26788172125816345, - 0.32388851046562195, - 0.38758793473243713, - 0.45724236965179443, - 0.5309519171714783, - 0.6067058444023132, - 0.6050992608070374, - 0.529721200466156, - 0.4564211368560791, - 0.3871985673904419, - 0.3239416182041168, - 0.26837587356567383, - 0.22201696038246155, - 0.1861293911933899, - 0.16169223189353943, - 0.1493719518184662, - 0.1495046317577362, - 0.1620866358280182, - 0.18677473068237305, - 0.22289562225341797, - 0.2694638967514038, - 0.3252094089984894, - 0.38861149549484253, - 0.4579406678676605, - 0.5313058495521545, - 0.6067058444023132, - 0.6050992608070374, - 0.5382447242736816, - 0.47323572635650635, - 0.41184550523757935, - 0.35574865341186523, - 0.30647537112236023, - 0.2653696835041046, - 0.23355278372764587, - 0.21189263463020325, - 0.20098009705543518, - 0.2011127769947052, - 0.212287038564682, - 0.23419812321662903, - 0.2662483751773834, - 0.3075634241104126, - 0.3570164442062378, - 0.41325843334198, - 0.4747552275657654, - 0.5398293733596802, - 0.6067058444023132, - 0.6050992608070374, - 0.5540142059326172, - 0.5043444633483887, - 0.4574449956417084, - 0.4145950376987457, - 0.3769634962081909, - 0.34557679295539856, - 0.32129108905792236, - 0.304768830537796, - 0.29646071791648865, - 0.29659339785575867, - 0.3051632344722748, - 0.3219364285469055, - 0.34645548462867737, - 0.3780515789985657, - 0.4158628582954407, - 0.458857923746109, - 0.5058640241622925, - 0.5555988550186157, - 0.6067058444023132, - 0.6050992608070374, - 0.5753206610679626, - 0.5463762879371643, - 0.5190556049346924, - 0.49410387873649597, - 0.47220176458358765, - 0.45394662022590637, - 0.43983644247055054, - 0.4302561283111572, - 0.42546698451042175, - 0.4255996644496918, - 0.430650532245636, - 0.4404817819595337, - 0.4548253118991852, - 0.4732898473739624, - 0.4953716993331909, - 0.5204685926437378, - 0.5478957891464233, - 0.576905369758606, - 0.6067058444023132, - 0.6050992608070374, - 0.599855363368988, - 0.5947763919830322, - 0.5900008678436279, - 0.5856591463088989, - 0.5818696022033691, - 0.5787356495857239, - 0.5763427019119263, - 0.5747560858726501, - 0.5740190744400024, - 0.5741516947746277, - 0.5751504898071289, - 0.5769880414009094, - 0.5796143412590027, - 0.5829576849937439, - 0.5869269967079163, - 0.5914137959480286, - 0.5962958931922913, - 0.6014400124549866, - 0.6067058444023132, - 0.6050992608070374, - 0.6249594688415527, - 0.6442998051643372, - 0.6625927686691284, - 0.6793394088745117, - 0.6940828561782837, - 0.7064210176467896, - 0.7160172462463379, - 0.7226098775863647, - 0.7260189652442932, - 0.7261516451835632, - 0.7230042219161987, - 0.716662585735321, - 0.7072997093200684, - 0.6951709985733032, - 0.6806071996688843, - 0.664005696773529, - 0.6458193063735962, - 0.6265441179275513, - 0.6067058444023132, - 0.6050992608070374, - 0.6479125618934631, - 0.689579963684082, - 0.7289648652076721, - 0.7649929523468018, - 0.7966814637184143, - 0.823166012763977, - 0.843724250793457, - 0.857795238494873, - 0.8649952411651611, - 0.8651279211044312, - 0.858189582824707, - 0.8443695306777954, - 0.8240447044372559, - 0.7977696061134338, - 0.7662608027458191, - 0.7303777933120728, - 0.6910995244979858, - 0.6494972705841064, - 0.6067058444023132, - 0.6050992608070374, - 0.666227400302887, - 0.7257100939750671, - 0.7819247245788574, - 0.8333379030227661, - 0.878547191619873, - 0.9163195490837097, - 0.9456245303153992, - 0.9656627178192139, - 0.975887656211853, - 0.976020336151123, - 0.9660571813583374, - 0.9462698698043823, - 0.9171982407569885, - 0.8796353340148926, - 0.8346056938171387, - 0.7833375930786133, - 0.7272295951843262, - 0.6678120493888855, - 0.6067058444023132, - 0.6050992608070374, - 0.6779192686080933, - 0.7487748265266418, - 0.8157331943511963, - 0.8769680261611938, - 0.9308087825775146, - 0.9757869243621826, - 1.0106756687164307, - 1.0345232486724854, - 1.046679139137268, - 1.046811819076538, - 1.0349177122116089, - 1.0113210678100586, - 0.976665735244751, - 0.9318968653678894, - 0.8782358169555664, - 0.8171461224555969, - 0.7502943277359009, - 0.6795039176940918, - 0.6067058444023132, - 0.6050992608070374, - 0.6817210912704468, - 0.7562748193740845, - 0.8267267942428589, - 0.8911552429199219, - 0.9478026628494263, - 0.9951240420341492, - 1.03182852268219, - 1.0569148063659668, - 1.0696985721588135, - 1.0698312520980835, - 1.0573091506958008, - 1.0324738025665283, - 0.9960027933120728, - 0.9488908648490906, - 0.8924230337142944, - 0.8281397223472595, - 0.7577943801879883, - 0.6833057403564453, - 0.6067058444023132, - 0.6050992608070374, - 0.6772209405899048, - 0.7473973035812378, - 0.8137140274047852, - 0.8743622303009033, - 0.9276875257492065, - 0.9722353219985962, - 1.0067906379699707, - 1.030410647392273, - 1.0424511432647705, - 1.04258394241333, - 1.0308051109313965, - 1.007435917854309, - 0.973114013671875, - 0.9287756681442261, - 0.8756300210952759, - 0.8151269555091858, - 0.7489168643951416, - 0.6788056492805481, - 0.6067058444023132, - 0.6050992608070374, - 0.6649065017700195, - 0.7231043577194214, - 0.7781051993370056, - 0.8284087777137756, - 0.872642993927002, - 0.9096012115478516, - 0.9382753372192383, - 0.9578832387924194, - 0.9678899645805359, - 0.9680226445198059, - 0.9582775831222534, - 0.9389207363128662, - 0.9104799032211304, - 0.8737311363220215, - 0.829676628112793, - 0.7795181274414062, - 0.7246238589286804, - 0.6664912104606628, - 0.6067058444023132, - 0.6050992608070374, - 0.6461122632026672, - 0.6860284209251404, - 0.7237589359283447, - 0.7582746744155884, - 0.7886340618133545, - 0.8140090703964233, - 0.8337074518203735, - 0.8471918702125549, - 0.8540945649147034, - 0.8542272448539734, - 0.8475862741470337, - 0.8343527913093567, - 0.8148877620697021, - 0.789722204208374, - 0.7595425248146057, - 0.7251719236373901, - 0.6875479221343994, - 0.6476969122886658, - 0.6067058444023132, - 0.6050992608070374, - 0.6228747367858887, - 0.6401872038841248, - 0.6565645337104797, - 0.6715599298477173, - 0.6847643256187439, - 0.6958175897598267, - 0.7044181823730469, - 0.7103315591812134, - 0.713396430015564, - 0.713529109954834, - 0.7107259631156921, - 0.7050635814666748, - 0.6966962814331055, - 0.6858524084091187, - 0.6728277206420898, - 0.6579774618148804, - 0.6417067646980286, - 0.6244593858718872, - 0.6067058444023132, - 0.6050992608070374, - 0.5977121591567993, - 0.5905483961105347, - 0.5838035345077515, - 0.577661395072937, - 0.5722896456718445, - 0.5678347945213318, - 0.5644183158874512, - 0.5621334314346313, - 0.5610424280166626, - 0.5611751079559326, - 0.5625277757644653, - 0.5650636553764343, - 0.5687134861946106, - 0.5733777284622192, - 0.5789292454719543, - 0.5852164626121521, - 0.5920679569244385, - 0.5992968082427979, - 0.6067058444023132, - 0.6050992608070374, - 0.573351263999939, - 0.5424911379814148, - 0.5133607387542725, - 0.4867546260356903, - 0.4633985161781311, - 0.44392961263656616, - 0.42887890338897705, - 0.4186568856239319, - 0.4135425090789795, - 0.4136751890182495, - 0.41905128955841064, - 0.4295242428779602, - 0.44480833411216736, - 0.46448662877082825, - 0.48802241683006287, - 0.5147736668586731, - 0.5440106391906738, - 0.5749359130859375, - 0.6067058444023132, - 0.6050992608070374, - 0.5524320006370544, - 0.5012232065200806, - 0.45286983251571655, - 0.40869075059890747, - 0.3698911666870117, - 0.3375293016433716, - 0.31248795986175537, - 0.2954501807689667, - 0.2868807911872864, - 0.2870134711265564, - 0.29584458470344543, - 0.3131332993507385, - 0.3384079933166504, - 0.3709792196750641, - 0.4099585711956024, - 0.4542827606201172, - 0.5027427077293396, - 0.554016649723053, - 0.6067058444023132 - ], - "y": [ - 0.7163136005401611, - 0.6557536125183105, - 0.5968736410140991, - 0.5412797331809998, - 0.49048835039138794, - 0.44588494300842285, - 0.40868622064590454, - 0.3799068331718445, - 0.36033177375793457, - 0.3504950702190399, - 0.35066500306129456, - 0.360836923122406, - 0.3807334303855896, - 0.40981173515319824, - 0.4472786486148834, - 0.4921122193336487, - 0.5430895090103149, - 0.5988199710845947, - 0.6577833890914917, - 0.7183714509010315, - 0.7163136005401611, - 0.6747338771820068, - 0.6343163847923279, - 0.5961636304855347, - 0.5613163113594055, - 0.5307250022888184, - 0.5052241086959839, - 0.4855092763900757, - 0.4721182584762573, - 0.46541628241539, - 0.46558621525764465, - 0.47262343764305115, - 0.4863359332084656, - 0.5063496828079224, - 0.5321187376976013, - 0.562940239906311, - 0.5979734659194946, - 0.6362627148628235, - 0.676763653755188, - 0.7183714509010315, - 0.7163136005401611, - 0.6982214450836182, - 0.6806508302688599, - 0.6640810966491699, - 0.6489641666412354, - 0.6357124447822571, - 0.6246873736381531, - 0.61618971824646, - 0.6104512214660645, - 0.6076284646987915, - 0.6077983975410461, - 0.6109563708305359, - 0.6170163750648499, - 0.6258128881454468, - 0.63710618019104, - 0.6505880951881409, - 0.6658909320831299, - 0.6825971603393555, - 0.7002512216567993, - 0.7183714509010315, - 0.7163136005401611, - 0.7236710786819458, - 0.7308559417724609, - 0.7376722097396851, - 0.743933916091919, - 0.7494702935218811, - 0.7541303038597107, - 0.7577868103981018, - 0.7603400945663452, - 0.761720597743988, - 0.7618905305862427, - 0.7608453035354614, - 0.7586134672164917, - 0.7552558183670044, - 0.7508640289306641, - 0.7455578446388245, - 0.7394819855690002, - 0.7328022718429565, - 0.725700855255127, - 0.7183713912963867, - 0.7163135409355164, - 0.7483249306678772, - 0.7794911861419678, - 0.8089622259140015, - 0.835934042930603, - 0.8596710562705994, - 0.8795256614685059, - 0.8949564099311829, - 0.905542254447937, - 0.9109944701194763, - 0.911164402961731, - 0.9060474038124084, - 0.895783007144928, - 0.8806512355804443, - 0.8610647916793823, - 0.8375580310821533, - 0.8107720017433167, - 0.7814375162124634, - 0.7503547072410583, - 0.7183713912963867, - 0.7163135409355164, - 0.7695114016532898, - 0.8212862014770508, - 0.870225727558136, - 0.9149949550628662, - 0.954372763633728, - 0.9872850179672241, - 1.0128339529037476, - 1.030322551727295, - 1.039273977279663, - 1.0394439697265625, - 1.0308277606964111, - 1.0136605501174927, - 0.9884105324745178, - 0.9557665586471558, - 0.9166189432144165, - 0.872035562992096, - 0.8232325315475464, - 0.771541178226471, - 0.7183713912963867, - 0.7163135409355164, - 0.7849345803260803, - 0.8517118692398071, - 0.9148238897323608, - 0.9725492000579834, - 1.023313045501709, - 1.0657308101654053, - 1.098645567893982, - 1.121159315109253, - 1.1326580047607422, - 1.132827877998352, - 1.1216645240783691, - 1.099472165107727, - 1.0668563842773438, - 1.0247068405151367, - 0.9741731882095337, - 0.9166337251663208, - 0.8536581993103027, - 0.7869643568992615, - 0.7183713912963867, - 0.7163135409355164, - 0.7929231524467468, - 0.8674710988998413, - 0.9379239082336426, - 1.0023598670959473, - 1.059021234512329, - 1.1063625812530518, - 1.143092393875122, - 1.1682088375091553, - 1.1810269355773926, - 1.1811968088150024, - 1.1687140464782715, - 1.1439189910888672, - 1.1074880361557007, - 1.0604150295257568, - 1.003983736038208, - 0.9397336840629578, - 0.8694174289703369, - 0.794952929019928, - 0.7183713912963867, - 0.7163135409355164, - 0.7926113605499268, - 0.866856038570404, - 0.93702232837677, - 1.0011963844299316, - 1.0576276779174805, - 1.1047768592834473, - 1.1413577795028687, - 1.1663726568222046, - 1.179139256477356, - 1.1793091297149658, - 1.1668778657913208, - 1.1421843767166138, - 1.1059023141860962, - 1.0590214729309082, - 1.002820372581482, - 0.93883216381073, - 0.8688023686408997, - 0.7946411371231079, - 0.7183713912963867, - 0.7163135409355164, - 0.7840330600738525, - 0.8499334454536438, - 0.9122170805931091, - 0.9691849946975708, - 1.019283413887024, - 1.061145544052124, - 1.0936298370361328, - 1.1158497333526611, - 1.1271995306015015, - 1.1273694038391113, - 1.1163549423217773, - 1.094456434249878, - 1.0622711181640625, - 1.020677089691162, - 0.9708089828491211, - 0.9140268564224243, - 0.8518797755241394, - 0.7860628366470337, - 0.7183713912963867, - 0.7163135409355164, - 0.7681178450584412, - 0.8185371160507202, - 0.8661960363388062, - 0.9097946286201477, - 0.9481436014175415, - 0.9801969528198242, - 1.0050803422927856, - 1.0221149921417236, - 1.0308362245559692, - 1.031006097793579, - 1.0226202011108398, - 1.0059069395065308, - 0.9813225269317627, - 0.9495373964309692, - 0.9114185571670532, - 0.8680058121681213, - 0.8204834461212158, - 0.7701476216316223, - 0.7183713912963867, - 0.7163135409355164, - 0.7465903162956238, - 0.7760692834854126, - 0.803946316242218, - 0.8294610381126404, - 0.8519174456596375, - 0.8707029819488525, - 0.8853052854537964, - 0.8953260183334351, - 0.9004917740821838, - 0.9006617069244385, - 0.8958311676979065, - 0.8861319422721863, - 0.871828556060791, - 0.8533111810684204, - 0.8310849666595459, - 0.805756151676178, - 0.7780156135559082, - 0.7486200928688049, - 0.7183713912963867, - 0.7163136005401611, - 0.7217833995819092, - 0.7271320819854736, - 0.7322137355804443, - 0.7368897199630737, - 0.7410324811935425, - 0.7445290684700012, - 0.7472841143608093, - 0.7492223978042603, - 0.750291109085083, - 0.7504610419273376, - 0.7497276067733765, - 0.7481107711791992, - 0.7456546425819397, - 0.7424262762069702, - 0.7385136485099792, - 0.7340235114097595, - 0.7290784120559692, - 0.7238131761550903, - 0.7183713912963867, - 0.7163136005401611, - 0.6963852047920227, - 0.677028477191925, - 0.6587714552879333, - 0.6421120166778564, - 0.6275047659873962, - 0.6153479814529419, - 0.6059733629226685, - 0.5996366739273071, - 0.596510648727417, - 0.5966805219650269, - 0.6001418232917786, - 0.6068000197410583, - 0.6164735555648804, - 0.6288985013961792, - 0.6437360048294067, - 0.6605812311172485, - 0.6789748668670654, - 0.6984149813652039, - 0.7183714509010315, - 0.7163136005401611, - 0.6731481552124023, - 0.6311882138252258, - 0.5915783047676086, - 0.5553989410400391, - 0.5236369371414185, - 0.4971587657928467, - 0.47668665647506714, - 0.4627789855003357, - 0.4558151066303253, - 0.45598503947257996, - 0.46328413486480713, - 0.47751325368881226, - 0.49828433990478516, - 0.5250306725502014, - 0.5570228099822998, - 0.5933880805969238, - 0.6331345438957214, - 0.6751779317855835, - 0.7183714509010315, - 0.7163136005401611, - 0.6545901894569397, - 0.5945785641670227, - 0.5379155874252319, - 0.4861469268798828, - 0.44068464636802673, - 0.40276890993118286, - 0.3734338581562042, - 0.3534797728061676, - 0.3434509336948395, - 0.3436208665370941, - 0.35398492217063904, - 0.37426045536994934, - 0.4038943946361542, - 0.4420783221721649, - 0.48777079582214355, - 0.5397253632545471, - 0.5965248942375183, - 0.6566199660301208, - 0.7183714509010315, - 0.7163136005401611, - 0.642722487449646, - 0.5711668133735657, - 0.5035984516143799, - 0.4418604075908661, - 0.38763687014579773, - 0.3424068093299866, - 0.3074039816856384, - 0.28358328342437744, - 0.271594375371933, - 0.2717643082141876, - 0.2840884327888489, - 0.30823057889938354, - 0.3435322940349579, - 0.3890305459499359, - 0.4434843361377716, - 0.5054082274436951, - 0.5731131434440613, - 0.6447522640228271, - 0.7183714509010315, - 0.7163136005401611, - 0.6388310194015503, - 0.5634900331497192, - 0.49234575033187866, - 0.42733874917030334, - 0.37024232745170593, - 0.322613924741745, - 0.28575262427330017, - 0.2606639564037323, - 0.24803239107131958, - 0.24820232391357422, - 0.26116910576820374, - 0.2865792214870453, - 0.3237393796443939, - 0.3716360032558441, - 0.4289626479148865, - 0.49415552616119385, - 0.5654363632202148, - 0.6408607959747314, - 0.7183714509010315, - 0.7163136005401611, - 0.6433374881744385, - 0.5723801255226135, - 0.505376935005188, - 0.4441555440425873, - 0.39038601517677307, - 0.3455350399017334, - 0.31082597374916077, - 0.28720560669898987, - 0.27531829476356506, - 0.2754882276058197, - 0.2877107560634613, - 0.3116525709629059, - 0.3466605246067047, - 0.39177972078323364, - 0.4457794725894928, - 0.5071867108345032, - 0.5743264555931091, - 0.6453672647476196, - 0.7183714509010315, - 0.7163136005401611, - 0.6557536125183105, - 0.5968736410140991, - 0.5412797331809998, - 0.49048835039138794, - 0.4458850026130676, - 0.4086862802505493, - 0.37990686297416687, - 0.36033180356025696, - 0.3504951298236847, - 0.35066506266593933, - 0.3608369529247284, - 0.380733460187912, - 0.40981176495552063, - 0.4472786784172058, - 0.49211227893829346, - 0.5430895686149597, - 0.5988199710845947, - 0.6577833890914917, - 0.7183714509010315 - ], - "z": [ - 1.6864064931869507, - 1.6934571266174316, - 1.7007324695587158, - 1.7080342769622803, - 1.7151633501052856, - 1.721925139427185, - 1.7281352281570435, - 1.7336243391036987, - 1.7382426261901855, - 1.7418642044067383, - 1.7443901300430298, - 1.7457516193389893, - 1.7459114789962769, - 1.7448655366897583, - 1.7426420450210571, - 1.7393018007278442, - 1.7349358797073364, - 1.729663372039795, - 1.7236281633377075, - 1.7169948816299438, - 1.6864064931869507, - 1.692979097366333, - 1.6997895240783691, - 1.706652045249939, - 1.7133796215057373, - 1.7197885513305664, - 1.7257040739059448, - 1.7309648990631104, - 1.7354273796081543, - 1.7389699220657349, - 1.741495966911316, - 1.742936372756958, - 1.7432520389556885, - 1.7424342632293701, - 1.7405054569244385, - 1.737518072128296, - 1.7335536479949951, - 1.7287204265594482, - 1.7231501340866089, - 1.7169948816299438, - 1.6864064931869507, - 1.691811442375183, - 1.6974860429763794, - 1.7032756805419922, - 1.7090224027633667, - 1.714569330215454, - 1.7197651863098145, - 1.7244683504104614, - 1.7285505533218384, - 1.7319002151489258, - 1.7344261407852173, - 1.7360594272613525, - 1.736755609512329, - 1.7364953756332397, - 1.7352862358093262, - 1.7331608533859253, - 1.7301772832870483, - 1.726417064666748, - 1.7219825983047485, - 1.7169948816299438, - 1.6864064931869507, - 1.6900807619094849, - 1.694071888923645, - 1.6982710361480713, - 1.7025638818740845, - 1.7068331241607666, - 1.7109622955322266, - 1.7148388624191284, - 1.7183570861816406, - 1.7214210033416748, - 1.7239469289779663, - 1.7258660793304443, - 1.727126121520996, - 1.7276924848556519, - 1.7275499105453491, - 1.726702332496643, - 1.7251726388931274, - 1.7230027914047241, - 1.7202517986297607, - 1.7169948816299438, - 1.6864064931869507, - 1.687974452972412, - 1.689916729927063, - 1.6921805143356323, - 1.6947039365768433, - 1.697418212890625, - 1.7002493143081665, - 1.7031199932098389, - 1.7059519290924072, - 1.7086679935455322, - 1.7111939191818237, - 1.713460922241211, - 1.715407133102417, - 1.7169795036315918, - 1.7181349992752075, - 1.7188423871994019, - 1.7190821170806885, - 1.718847632408142, - 1.718145489692688, - 1.7169948816299438, - 1.6864064931869507, - 1.6857208013534546, - 1.6854710578918457, - 1.6856639385223389, - 1.6862943172454834, - 1.6873449087142944, - 1.6887869834899902, - 1.6905814409255981, - 1.6926791667938232, - 1.6950229406356812, - 1.6975489854812622, - 1.700188159942627, - 1.7028685808181763, - 1.705517292022705, - 1.708061695098877, - 1.710432767868042, - 1.712565541267395, - 1.7144019603729248, - 1.71589195728302, - 1.7169948816299438, - 1.6864064931869507, - 1.6835641860961914, - 1.6812164783477783, - 1.6794276237487793, - 1.678246259689331, - 1.6777046918869019, - 1.677817702293396, - 1.6785821914672852, - 1.6799771785736084, - 1.6819647550582886, - 1.6844907999038696, - 1.687486171722412, - 1.6908693313598633, - 1.6945478916168213, - 1.698421597480774, - 1.7023847103118896, - 1.7063292264938354, - 1.710147500038147, - 1.7137352228164673, - 1.7169948816299438, - 1.6864064931869507, - 1.6817381381988525, - 1.6776142120361328, - 1.674147367477417, - 1.6714320182800293, - 1.6695424318313599, - 1.668529987335205, - 1.6684223413467407, - 1.6692224740982056, - 1.6709084510803223, - 1.6734343767166138, - 1.6767313480377197, - 1.6807094812393188, - 1.6852601766586304, - 1.690259337425232, - 1.695570468902588, - 1.7010489702224731, - 1.706545114517212, - 1.7119091749191284, - 1.7169948816299438, - 1.6864064931869507, - 1.6804405450820923, - 1.6750545501708984, - 1.6703952550888062, - 1.6665899753570557, - 1.6637424230575562, - 1.6619303226470947, - 1.6612030267715454, - 1.6615803241729736, - 1.6630520820617676, - 1.665578007698059, - 1.6690893173217773, - 1.6734901666641235, - 1.67866051197052, - 1.6844593286514282, - 1.6907284259796143, - 1.6972968578338623, - 1.7039854526519775, - 1.7106117010116577, - 1.7169948816299438, - 1.6864064931869507, - 1.6798121929168701, - 1.6738147735595703, - 1.668578028678894, - 1.6642448902130127, - 1.6609333753585815, - 1.65873384475708, - 1.657706379890442, - 1.6578789949417114, - 1.6592469215393066, - 1.6617729663848877, - 1.6653879880905151, - 1.6699936389923096, - 1.675464153289795, - 1.6816502809524536, - 1.6883833408355713, - 1.6954796314239502, - 1.7027456760406494, - 1.709983229637146, - 1.7169948816299438, - 1.6864064931869507, - 1.6799209117889404, - 1.6740293502807617, - 1.6688926219940186, - 1.664650797843933, - 1.6614195108413696, - 1.6592870950698853, - 1.6583116054534912, - 1.6585196256637573, - 1.6599055528640747, - 1.6624314785003662, - 1.666028618812561, - 1.6705987453460693, - 1.6760172843933105, - 1.6821364164352417, - 1.6887892484664917, - 1.6957942247390747, - 1.7029602527618408, - 1.7100919485092163, - 1.7169948816299438, - 1.6864064931869507, - 1.6807551383972168, - 1.6756750345230103, - 1.6713048219680786, - 1.6677637100219727, - 1.665148377418518, - 1.6635299921035767, - 1.6629528999328613, - 1.6634327173233032, - 1.6649564504623413, - 1.6674823760986328, - 1.670941710472107, - 1.6752400398254395, - 1.680260181427002, - 1.6858651638031006, - 1.6919021606445312, - 1.6982064247131348, - 1.7046059370040894, - 1.7109261751174927, - 1.7169948816299438, - 1.6864064931869507, - 1.6822242736816406, - 1.6785733699798584, - 1.6755532026290894, - 1.6732463836669922, - 1.6717156171798706, - 1.6710028648376465, - 1.6711273193359375, - 1.6720858812332153, - 1.6738522052764893, - 1.6763781309127808, - 1.679594874382019, - 1.6834145784378052, - 1.6877330541610718, - 1.6924325227737427, - 1.6973848342895508, - 1.7024548053741455, - 1.7075042724609375, - 1.712395429611206, - 1.7169948816299438, - 1.6864064931869507, - 1.6841692924499512, - 1.6824103593826294, - 1.6811776161193848, - 1.680504560470581, - 1.6804097890853882, - 1.6808956861495972, - 1.6819491386413574, - 1.6835414171218872, - 1.6856290102005005, - 1.688154935836792, - 1.691050410270691, - 1.694236397743225, - 1.6976258754730225, - 1.7011266946792603, - 1.7046430110931396, - 1.7080790996551514, - 1.7113412618637085, - 1.7143404483795166, - 1.7169948816299438, - 1.6864064931869507, - 1.6863794326782227, - 1.6867702007293701, - 1.6875683069229126, - 1.6887518167495728, - 1.6902886629104614, - 1.6921366453170776, - 1.6942455768585205, - 1.696557879447937, - 1.6990104913711548, - 1.7015364170074463, - 1.7040668725967407, - 1.7065328359603882, - 1.708866834640503, - 1.711005449295044, - 1.7128902673721313, - 1.7144699096679688, - 1.7157011032104492, - 1.7165504693984985, - 1.7169948816299438, - 1.6864064931869507, - 1.688615083694458, - 1.6911804676055908, - 1.694032907485962, - 1.697094440460205, - 1.7002816200256348, - 1.7035075426101685, - 1.7066841125488281, - 1.7097247838974, - 1.712546706199646, - 1.7150726318359375, - 1.7172337770462036, - 1.7189713716506958, - 1.7202377319335938, - 1.7209985256195068, - 1.7212328910827637, - 1.720934510231018, - 1.72011137008667, - 1.7187861204147339, - 1.7169948816299438, - 1.6864064931869507, - 1.6906338930130005, - 1.6951632499694824, - 1.6998708248138428, - 1.7046282291412354, - 1.7093058824539185, - 1.7137761116027832, - 1.7179169654846191, - 1.7216154336929321, - 1.7247706651687622, - 1.7272965908050537, - 1.7291244268417358, - 1.7302041053771973, - 1.7305063009262085, - 1.7300227880477905, - 1.728766679763794, - 1.726772427558899, - 1.7240941524505615, - 1.720805048942566, - 1.7169948816299438, - 1.6864064931869507, - 1.6922173500061035, - 1.698286771774292, - 1.7044494152069092, - 1.7105369567871094, - 1.7163835763931274, - 1.7218296527862549, - 1.7267266511917114, - 1.7309410572052002, - 1.7343578338623047, - 1.7368837594985962, - 1.738450050354004, - 1.7390137910842896, - 1.7385598421096802, - 1.7371004819869995, - 1.734675407409668, - 1.7313510179519653, - 1.727217674255371, - 1.7223883867263794, - 1.7169948816299438, - 1.6864064931869507, - 1.6931936740875244, - 1.700212836265564, - 1.7072725296020508, - 1.7141802310943604, - 1.7207475900650024, - 1.7267954349517822, - 1.7321586608886719, - 1.7366911172866821, - 1.7402691841125488, - 1.7427951097488403, - 1.7442001104354858, - 1.7444459199905396, - 1.7435256242752075, - 1.7414644956588745, - 1.738318681716919, - 1.734174132347107, - 1.729143738746643, - 1.7233647108078003, - 1.7169948816299438, - 1.6864064931869507, - 1.6934571266174316, - 1.7007324695587158, - 1.7080342769622803, - 1.7151633501052856, - 1.721925139427185, - 1.7281352281570435, - 1.7336243391036987, - 1.7382426261901855, - 1.7418642044067383, - 1.7443901300430298, - 1.7457516193389893, - 1.7459114789962769, - 1.7448655366897583, - 1.7426420450210571, - 1.7393018007278442, - 1.7349358797073364, - 1.729663372039795, - 1.7236281633377075, - 1.7169948816299438 - ] - }, - { - "alphahull": 0, - "color": "#EF553B", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.6176808476448059, - 0.5648414492607117, - 0.5134602785110474, - 0.46493884921073914, - 0.42060065269470215, - 0.3816552758216858, - 0.3491648733615875, - 0.3240157663822174, - 0.3068939745426178, - 0.29826653003692627, - 0.29836875200271606, - 0.30719783902168274, - 0.3245129883289337, - 0.3498418927192688, - 0.38249361515045166, - 0.421577513217926, - 0.46602752804756165, - 0.5146310925483704, - 0.5660624504089355, - 0.6189187169075012, - 0.6176808476448059, - 0.5494691133499146, - 0.4831348657608032, - 0.42048758268356323, - 0.36323606967926025, - 0.3129420578479767, - 0.2709774076938629, - 0.23848679661750793, - 0.21635648608207703, - 0.20519018173217773, - 0.20529240369796753, - 0.21666035056114197, - 0.23898401856422424, - 0.2716544270515442, - 0.31378042697906494, - 0.36421293020248413, - 0.42157626152038574, - 0.4843056797981262, - 0.5506900548934937, - 0.6189187169075012, - 0.6176808476448059, - 0.5414894819259644, - 0.4673932194709778, - 0.39741334319114685, - 0.33345863223075867, - 0.27727368474006653, - 0.2303910255432129, - 0.19408950209617615, - 0.16935929656028748, - 0.1568751037120819, - 0.1569773256778717, - 0.16966316103935242, - 0.19458672404289246, - 0.23106804490089417, - 0.2781120240688324, - 0.33443549275398254, - 0.39850202202796936, - 0.4685640335083008, - 0.5427104234695435, - 0.6189187169075012, - 0.6176808476448059, - 0.5417672395706177, - 0.46794119477272034, - 0.39821657538414, - 0.3344952166080475, - 0.2785153388977051, - 0.23180389404296875, - 0.19563505053520203, - 0.17099535465240479, - 0.1585569977760315, - 0.1586592197418213, - 0.17129921913146973, - 0.19613227248191833, - 0.23248091340065002, - 0.27935367822647095, - 0.33547207713127136, - 0.3993052542209625, - 0.46911200881004333, - 0.5429882407188416, - 0.6189187169075012, - 0.6176808476448059, - 0.5502723455429077, - 0.484719455242157, - 0.42281028628349304, - 0.3662334978580475, - 0.3165324926376343, - 0.2750629186630249, - 0.24295589327812195, - 0.22108730673789978, - 0.2100536823272705, - 0.2101559042930603, - 0.22139117121696472, - 0.24345311522483826, - 0.2757399380207062, - 0.31737086176872253, - 0.36721035838127136, - 0.42389896512031555, - 0.48589026927948, - 0.5514933466911316, - 0.6189187169075012, - 0.6176808476448059, - 0.5660831332206726, - 0.5159097909927368, - 0.46852928400039673, - 0.42523419857025146, - 0.38720542192459106, - 0.3554803133010864, - 0.3309241831302643, - 0.31420695781707764, - 0.30578458309173584, - 0.30588680505752563, - 0.3145108222961426, - 0.3314214050769806, - 0.3561573326587677, - 0.38804376125335693, - 0.42621102929115295, - 0.46961796283721924, - 0.517080545425415, - 0.5673041343688965, - 0.6189187169075012, - 0.6176808476448059, - 0.5874862670898438, - 0.5581321716308594, - 0.5304192900657654, - 0.5051035284996033, - 0.4828755259513855, - 0.46434152126312256, - 0.4500070810317993, - 0.4402632415294647, - 0.43537580966949463, - 0.4354780316352844, - 0.44056713581085205, - 0.450504332780838, - 0.4650185704231262, - 0.48371392488479614, - 0.5060803890228271, - 0.5315079689025879, - 0.5593029260635376, - 0.5887072086334229, - 0.6189187169075012, - 0.6176808476448059, - 0.6121623516082764, - 0.6068112254142761, - 0.6017735004425049, - 0.5971865653991699, - 0.5931755900382996, - 0.5898498892784119, - 0.5873002409934998, - 0.5855961441993713, - 0.5847841501235962, - 0.584886372089386, - 0.5859000086784363, - 0.5877974629402161, - 0.5905269384384155, - 0.5940139293670654, - 0.5981634259223938, - 0.6028621792793274, - 0.6079820394515991, - 0.6133833527565002, - 0.6189187169075012, - 0.6176808476448059, - 0.6374373435974121, - 0.6566718220710754, - 0.6748596429824829, - 0.6915045976638794, - 0.7061527371406555, - 0.7184045314788818, - 0.7279256582260132, - 0.7344565391540527, - 0.7378189563751221, - 0.7379211187362671, - 0.7347604036331177, - 0.7284229397773743, - 0.7190815806388855, - 0.7069911360740662, - 0.6924814581871033, - 0.6759483218193054, - 0.6578426361083984, - 0.638658344745636, - 0.6189187169075012, - 0.6176808476448059, - 0.660572350025177, - 0.7023108005523682, - 0.7417576313018799, - 0.777836799621582, - 0.8095642924308777, - 0.8360745906829834, - 0.8566445112228394, - 0.8707130551338196, - 0.8778963685035706, - 0.8779985904693604, - 0.8710169196128845, - 0.8571417331695557, - 0.8367516398429871, - 0.8104027509689331, - 0.7788137197494507, - 0.7428462505340576, - 0.7034815549850464, - 0.6617933511734009, - 0.6189187169075012, - 0.6176808476448059, - 0.6790603399276733, - 0.7387824058532715, - 0.7952180504798889, - 0.8468278050422668, - 0.8922039270401001, - 0.9301086664199829, - 0.9595080614089966, - 0.979600191116333, - 0.9898369312286377, - 0.9899392127990723, - 0.979904055595398, - 0.9600052833557129, - 0.9307857155799866, - 0.8930423259735107, - 0.8478046655654907, - 0.7963067293167114, - 0.7399532198905945, - 0.6802812814712524, - 0.6189187169075012, - 0.6176808476448059, - 0.6908977627754211, - 0.7621344327926636, - 0.8294476270675659, - 0.8910013437271118, - 0.9451163411140442, - 0.9903167486190796, - 1.02536940574646, - 1.0493183135986328, - 1.0615102052688599, - 1.0616123676300049, - 1.0496222972869873, - 1.0258667469024658, - 0.9909937977790833, - 0.9459547996520996, - 0.8919781446456909, - 0.8305363059043884, - 0.7633052468299866, - 0.692118763923645, - 0.6189187169075012, - 0.6176808476448059, - 0.694801926612854, - 0.7698363065719604, - 0.8407371044158936, - 0.905570387840271, - 0.9625676870346069, - 1.01017427444458, - 1.0470916032791138, - 1.072312593460083, - 1.0851491689682007, - 1.0852513313293457, - 1.072616457939148, - 1.04758882522583, - 1.0108513832092285, - 0.9634062051773071, - 0.9065473079681396, - 0.8418257832527161, - 0.7710070610046387, - 0.6960229277610779, - 0.6189187169075012, - 0.6176808476448059, - 0.6903497576713562, - 0.7610533833503723, - 0.8278630375862122, - 0.8889563679695129, - 0.9426668882369995, - 0.9875295162200928, - 1.0223205089569092, - 1.046090841293335, - 1.058192253112793, - 1.058294415473938, - 1.0463948249816895, - 1.0228177309036255, - 0.9882065653800964, - 0.9435052871704102, - 0.8899332284927368, - 0.8289517164230347, - 0.7622241973876953, - 0.6915707588195801, - 0.6189187169075012, - 0.6176808476448059, - 0.6780236959457397, - 0.7367374897003174, - 0.7922205924987793, - 0.8429595828056335, - 0.8875703811645508, - 0.924836277961731, - 0.953740656375885, - 0.9734950065612793, - 0.9835605621337891, - 0.9836628437042236, - 0.9737988710403442, - 0.9542378783226013, - 0.9255133867263794, - 0.888408899307251, - 0.8439364433288574, - 0.7933092713356018, - 0.7379083037376404, - 0.6792446970939636, - 0.6189187169075012, - 0.6176808476448059, - 0.6591594815254211, - 0.6995236277580261, - 0.7376721501350403, - 0.7725645303726196, - 0.803248941898346, - 0.828888475894928, - 0.8487836718559265, - 0.8623918294906616, - 0.8693418502807617, - 0.8694440722465515, - 0.8626957535743713, - 0.8492809534072876, - 0.8295655250549316, - 0.8040874004364014, - 0.7735413908958435, - 0.7387608289718628, - 0.7006944417953491, - 0.660380482673645, - 0.6189187169075012, - 0.6176808476448059, - 0.6358013153076172, - 0.6534444093704224, - 0.6701288223266602, - 0.6853994727134705, - 0.6988397836685181, - 0.7100832462310791, - 0.7188230156898499, - 0.7248208522796631, - 0.7279130220413208, - 0.7280153036117554, - 0.725124716758728, - 0.7193202972412109, - 0.7107602953910828, - 0.6996781826019287, - 0.6863763332366943, - 0.6712175011634827, - 0.6546151638031006, - 0.6370223164558411, - 0.6189187169075012, - 0.6176808476448059, - 0.6104804277420044, - 0.6034932732582092, - 0.5969099998474121, - 0.5909101366996765, - 0.5856574773788452, - 0.5812951326370239, - 0.5779422521591187, - 0.5756902098655701, - 0.5746003985404968, - 0.5747026205062866, - 0.575994074344635, - 0.578439474105835, - 0.5819721817970276, - 0.5864958167076111, - 0.5918869972229004, - 0.5979986786842346, - 0.6046640276908875, - 0.6117013692855835, - 0.6189187169075012, - 0.6176808476448059, - 0.5859406590461731, - 0.555083155632019, - 0.5259500741958618, - 0.49933600425720215, - 0.4759669899940491, - 0.4564804434776306, - 0.44140785932540894, - 0.43116044998168945, - 0.42601776123046875, - 0.42611998319625854, - 0.4314643144607544, - 0.44190514087677, - 0.4571574926376343, - 0.47680535912513733, - 0.500312864780426, - 0.5270387530326843, - 0.556253969669342, - 0.587161660194397, - 0.6189187169075012, - 0.6176808476448059, - 0.5648414492607117, - 0.5134602785110474, - 0.46493881940841675, - 0.42060065269470215, - 0.381655216217041, - 0.34916481375694275, - 0.32401570677757263, - 0.306893914937973, - 0.2982664704322815, - 0.2983686923980713, - 0.30719777941703796, - 0.32451292872428894, - 0.349841833114624, - 0.3824935555458069, - 0.42157748341560364, - 0.46602749824523926, - 0.5146310329437256, - 0.5660624504089355, - 0.6189187169075012 - ], - "y": [ - 0.7363635301589966, - 0.6748209595680237, - 0.6149786710739136, - 0.5584691762924194, - 0.5068337321281433, - 0.4614809453487396, - 0.42364785075187683, - 0.39436644315719604, - 0.37443551421165466, - 0.36439865827560425, - 0.36452966928482056, - 0.37482497096061707, - 0.3950037360191345, - 0.4245155453681946, - 0.4625553786754608, - 0.5080856084823608, - 0.5598644018173218, - 0.6164791584014893, - 0.676385760307312, - 0.7379499673843384, - 0.7363635301589966, - 0.6938039064407349, - 0.6524268388748169, - 0.6133610010147095, - 0.577672004699707, - 0.5463333129882812, - 0.5201997756958008, - 0.4999842941761017, - 0.4862382113933563, - 0.47933655977249146, - 0.47946757078170776, - 0.4866276681423187, - 0.5006215572357178, - 0.5210675001144409, - 0.5474077463150024, - 0.5789239406585693, - 0.6147562861442566, - 0.6539273858070374, - 0.695368766784668, - 0.7379499673843384, - 0.7363635301589966, - 0.717400074005127, - 0.6989755630493164, - 0.6815924644470215, - 0.66572505235672, - 0.651806116104126, - 0.6402153372764587, - 0.6312688589096069, - 0.625210702419281, - 0.6222061514854431, - 0.6223371624946594, - 0.6256001591682434, - 0.6319061517715454, - 0.6410830616950989, - 0.6528806090354919, - 0.6669769883155823, - 0.6829877495765686, - 0.7004760503768921, - 0.7189648747444153, - 0.7379499673843384, - 0.7363635301589966, - 0.7430523633956909, - 0.749580442905426, - 0.7557696104049683, - 0.7614510655403137, - 0.7664697766304016, - 0.7706890106201172, - 0.7739934921264648, - 0.7762932181358337, - 0.7775253653526306, - 0.7776563763618469, - 0.7766826748847961, - 0.7746307849884033, - 0.7715567350387573, - 0.7675443291664124, - 0.762703001499176, - 0.7571648359298706, - 0.7510809302330017, - 0.744617223739624, - 0.7379499673843384, - 0.7363635301589966, - 0.7679809927940369, - 0.7987577319145203, - 0.8278540968894958, - 0.8544765710830688, - 0.8778987526893616, - 0.8974819183349609, - 0.9126918315887451, - 0.9231135845184326, - 0.9284629225730896, - 0.9285939335823059, - 0.923503041267395, - 0.9133291244506836, - 0.8983496427536011, - 0.8789732456207275, - 0.8557285070419312, - 0.829249382019043, - 0.800258219242096, - 0.76954585313797, - 0.7379499673843384, - 0.7363635301589966, - 0.7894845604896545, - 0.841178297996521, - 0.890034556388855, - 0.9347207546234131, - 0.974017858505249, - 1.0068540573120117, - 1.0323336124420166, - 1.0497615337371826, - 1.0586624145507812, - 1.058793306350708, - 1.050150990486145, - 1.032970905303955, - 1.0077217817306519, - 0.9750924110412598, - 0.9359726905822754, - 0.8914298415184021, - 0.8426787853240967, - 0.7910494208335876, - 0.7379499673843384, - 0.7363635301589966, - 0.80523282289505, - 0.8722452521324158, - 0.9355727434158325, - 0.993488073348999, - 1.0444111824035645, - 1.0869532823562622, - 1.1199538707733154, - 1.1425127983093262, - 1.1540145874023438, - 1.15414559841156, - 1.1429022550582886, - 1.120591163635254, - 1.0878210067749023, - 1.0454857349395752, - 0.9947400093078613, - 0.9369680285453796, - 0.8737457394599915, - 0.8067976236343384, - 0.7379499673843384, - 0.7363634705543518, - 0.8135191798210144, - 0.8885919451713562, - 0.9595338702201843, - 1.0244100093841553, - 1.0814505815505981, - 1.129099726676941, - 1.1660577058792114, - 1.1913163661956787, - 1.2041866779327393, - 1.2043176889419556, - 1.1917058229446411, - 1.16669499874115, - 1.129967451095581, - 1.0825250148773193, - 1.0256619453430176, - 0.9609291553497314, - 0.8900924324989319, - 0.8150839805603027, - 0.7379499673843384, - 0.7363634705543518, - 0.8134456872940063, - 0.8884469866752625, - 0.9593213796615601, - 1.0241358280181885, - 1.0811220407485962, - 1.1287260055541992, - 1.1656488180160522, - 1.1908835172653198, - 1.2037417888641357, - 1.203872799873352, - 1.1912729740142822, - 1.1662861108779907, - 1.1295937299728394, - 1.082196593284607, - 1.0253877639770508, - 0.9607166051864624, - 0.8899474740028381, - 0.8150105476379395, - 0.7379499673843384, - 0.7363635301589966, - 0.8050203323364258, - 0.8718260526657104, - 0.9349583387374878, - 0.9926950931549072, - 1.0434614419937134, - 1.0858726501464844, - 1.1187716722488403, - 1.141261339187622, - 1.1527280807495117, - 1.1528589725494385, - 1.1416507959365845, - 1.1194089651107788, - 1.086740255355835, - 1.0445359945297241, - 0.9939470291137695, - 0.9363535642623901, - 0.8733265399932861, - 0.8065851926803589, - 0.7379499673843384, - 0.7363635301589966, - 0.7891561388969421, - 0.8405303359031677, - 0.8890848159790039, - 0.933495044708252, - 0.9725496768951416, - 1.005183458328247, - 1.0305061340332031, - 1.0478270053863525, - 1.056673526763916, - 1.0568046569824219, - 1.048216462135315, - 1.0311434268951416, - 1.0060511827468872, - 0.9736242294311523, - 0.9347469806671143, - 0.8904800415039062, - 0.8420308232307434, - 0.7907209396362305, - 0.7379499673843384, - 0.7363635301589966, - 0.7675721645355225, - 0.7979512214660645, - 0.8266718983650208, - 0.8529508709907532, - 0.8760712146759033, - 0.8954024314880371, - 0.9104170799255371, - 0.9207056164741516, - 0.9259874224662781, - 0.9261184334754944, - 0.921095073223114, - 0.9110543131828308, - 0.8962701559066772, - 0.8771457672119141, - 0.8542028069496155, - 0.8280671238899231, - 0.7994517087936401, - 0.7691370248794556, - 0.7379499673843384, - 0.7363635301589966, - 0.7426074743270874, - 0.7487027049064636, - 0.7544830441474915, - 0.7597907781600952, - 0.7644810676574707, - 0.7684260010719299, - 0.7715180516242981, - 0.7736728191375732, - 0.7748314738273621, - 0.7749624848365784, - 0.7740622162818909, - 0.7721552848815918, - 0.7692937254905701, - 0.7655555009841919, - 0.7610427141189575, - 0.7558782696723938, - 0.7502032518386841, - 0.7441722750663757, - 0.7379499673843384, - 0.7363635301589966, - 0.7169672846794128, - 0.6981217265129089, - 0.6803409457206726, - 0.664110004901886, - 0.6498715281486511, - 0.638014018535614, - 0.6288608312606812, - 0.6226616501808167, - 0.6195856332778931, - 0.6197166442871094, - 0.623051106929779, - 0.6294980645179749, - 0.6388816833496094, - 0.6509460210800171, - 0.6653619408607483, - 0.6817362308502197, - 0.6996222138404846, - 0.7185320854187012, - 0.7379499673843384, - 0.7363635301589966, - 0.6934301853179932, - 0.6516895890235901, - 0.6122802495956421, - 0.5762772560119629, - 0.5446626543998718, - 0.5182987451553345, - 0.49790477752685547, - 0.484036922454834, - 0.4770735800266266, - 0.4772045910358429, - 0.4844263792037964, - 0.49854207038879395, - 0.5191664695739746, - 0.5457371473312378, - 0.5775291919708252, - 0.6136754751205444, - 0.6531900763511658, - 0.6949949860572815, - 0.7379499673843384, - 0.7363635301589966, - 0.6745467185974121, - 0.6144377589225769, - 0.5576762557029724, - 0.5058104991912842, - 0.4602552652359009, - 0.42225319147109985, - 0.39284083247184753, - 0.37282055616378784, - 0.3627384305000305, - 0.3628694415092468, - 0.37321001291275024, - 0.393478125333786, - 0.4231208860874176, - 0.46132969856262207, - 0.5070624351501465, - 0.5590715408325195, - 0.6159382462501526, - 0.6761115789413452, - 0.7379499673843384, - 0.7363635301589966, - 0.6623632311820984, - 0.590403139591217, - 0.5224460363388062, - 0.4603457450866699, - 0.4057961106300354, - 0.3602851629257202, - 0.32505422830581665, - 0.3010644018650055, - 0.28897005319595337, - 0.2891010642051697, - 0.3014538586139679, - 0.3256915211677551, - 0.3611528277397156, - 0.4068705439567566, - 0.4615976810455322, - 0.5238413214683533, - 0.5919036269187927, - 0.6639280915260315, - 0.7379500269889832, - 0.7363635301589966, - 0.6582000255584717, - 0.5821902751922607, - 0.510407567024231, - 0.4448099732398987, - 0.3871868848800659, - 0.33911004662513733, - 0.3018908202648163, - 0.27654457092285156, - 0.2637626826763153, - 0.2638936936855316, - 0.27693402767181396, - 0.30252811312675476, - 0.3399777412414551, - 0.3882613182067871, - 0.4460618793964386, - 0.5118027925491333, - 0.5836907625198364, - 0.65976482629776, - 0.7379500269889832, - 0.7363635301589966, - 0.6625082492828369, - 0.5906891226768494, - 0.5228652954101562, - 0.46088674664497375, - 0.40644413232803345, - 0.3610225021839142, - 0.32586079835891724, - 0.30191823840141296, - 0.28984785079956055, - 0.28997886180877686, - 0.30230769515037537, - 0.3264980912208557, - 0.36189019680023193, - 0.40751856565475464, - 0.46213865280151367, - 0.5242605209350586, - 0.592189610004425, - 0.6640730500221252, - 0.7379499673843384, - 0.7363635301589966, - 0.6748209595680237, - 0.6149786710739136, - 0.5584691762924194, - 0.5068337321281433, - 0.461480975151062, - 0.4236478805541992, - 0.3943665027618408, - 0.37443554401397705, - 0.364398717880249, - 0.36452972888946533, - 0.37482500076293945, - 0.3950037956237793, - 0.42451557517051697, - 0.4625554382801056, - 0.5080856680870056, - 0.5598644018173218, - 0.616479218006134, - 0.676385760307312, - 0.7379499673843384 - ], - "z": [ - 1.7113826274871826, - 1.717836856842041, - 1.7244693040847778, - 1.7310991287231445, - 1.737545371055603, - 1.7436323165893555, - 1.7491940259933472, - 1.7540785074234009, - 1.758152723312378, - 1.7613054513931274, - 1.7634508609771729, - 1.7645301818847656, - 1.7645142078399658, - 1.7634031772613525, - 1.7612274885177612, - 1.7580465078353882, - 1.7539469003677368, - 1.7490406036376953, - 1.7434614896774292, - 1.7373616695404053, - 1.7113826274871826, - 1.7174100875854492, - 1.7236274480819702, - 1.7298650741577148, - 1.7359528541564941, - 1.7417248487472534, - 1.747023344039917, - 1.7517040967941284, - 1.7556393146514893, - 1.7587215900421143, - 1.7608668804168701, - 1.762016773223877, - 1.7621397972106934, - 1.7612324953079224, - 1.7593199014663696, - 1.7564539909362793, - 1.7527128458023071, - 1.7481987476348877, - 1.7430347204208374, - 1.7373616695404053, - 1.7113826274871826, - 1.7163493633270264, - 1.7215348482131958, - 1.7267978191375732, - 1.73199462890625, - 1.7369834184646606, - 1.7416282892227173, - 1.745802402496338, - 1.749392032623291, - 1.7522990703582764, - 1.7544444799423218, - 1.7557694911956787, - 1.7562381029129028, - 1.7558374404907227, - 1.7545785903930664, - 1.7524956464767456, - 1.749645709991455, - 1.7461062669754028, - 1.7419739961624146, - 1.7373616695404053, - 1.7113826274871826, - 1.7147696018218994, - 1.7184184789657593, - 1.7222298383712769, - 1.7260994911193848, - 1.7299221754074097, - 1.7335933446884155, - 1.7370129823684692, - 1.740087866783142, - 1.7427340745925903, - 1.7448794841766357, - 1.7464654445648193, - 1.7474486827850342, - 1.747802495956421, - 1.7475172281265259, - 1.74660062789917, - 1.7450776100158691, - 1.7429898977279663, - 1.7403942346572876, - 1.7373616695404053, - 1.7113826274871826, - 1.7128419876098633, - 1.7146159410476685, - 1.716655969619751, - 1.7189064025878906, - 1.7213059663772583, - 1.7237892150878906, - 1.7262883186340332, - 1.7287352085113525, - 1.7310630083084106, - 1.733208417892456, - 1.7351126670837402, - 1.7367240190505981, - 1.737998366355896, - 1.738901138305664, - 1.7394075393676758, - 1.7395037412643433, - 1.739187240600586, - 1.738466739654541, - 1.7373616695404053, - 1.7113826274871826, - 1.7107754945755005, - 1.7105392217636108, - 1.710680365562439, - 1.7111948728561401, - 1.712068796157837, - 1.7132784128189087, - 1.7147905826568604, - 1.7165641784667969, - 1.718550682067871, - 1.720695972442627, - 1.7229416370391846, - 1.7252262830734253, - 1.727487564086914, - 1.7296639680862427, - 1.7316958904266357, - 1.7335281372070312, - 1.7351106405258179, - 1.7364001274108887, - 1.7373616695404053, - 1.7113826274871826, - 1.7087939977645874, - 1.7066302299499512, - 1.7049504518508911, - 1.7038004398345947, - 1.7032115459442139, - 1.703199863433838, - 1.7037657499313354, - 1.704893708229065, - 1.7065529823303223, - 1.7086982727050781, - 1.7112711668014526, - 1.7142013311386108, - 1.7174090147018433, - 1.72080659866333, - 1.7243014574050903, - 1.7277982234954834, - 1.7312016487121582, - 1.7344186305999756, - 1.7373616695404053, - 1.7113826274871826, - 1.707112193107605, - 1.7033125162124634, - 1.700087308883667, - 1.6975244283676147, - 1.6956939697265625, - 1.6946457624435425, - 1.6944084167480469, - 1.6949883699417114, - 1.6963698863983154, - 1.6985152959823608, - 1.7013659477233887, - 1.7048441171646118, - 1.7088549137115479, - 1.7132890224456787, - 1.7180255651474, - 1.7229350805282593, - 1.7278838157653809, - 1.7327368259429932, - 1.7373616695404053, - 1.7113826274871826, - 1.7059123516082764, - 1.700945496559143, - 1.6966177225112915, - 1.693047046661377, - 1.6903307437896729, - 1.6885430812835693, - 1.6877326965332031, - 1.6879217624664307, - 1.6891051530838013, - 1.6912504434585571, - 1.6942992210388184, - 1.698168396949768, - 1.7027522325515747, - 1.7079259157180786, - 1.7135480642318726, - 1.7194656133651733, - 1.72551691532135, - 1.7315369844436646, - 1.7373616695404053, - 1.7113826274871826, - 1.7053245306015015, - 1.699785828590393, - 1.694917917251587, - 1.6908533573150635, - 1.6877031326293945, - 1.6855531930923462, - 1.684462070465088, - 1.6844595670700073, - 1.6855459213256836, - 1.6876912117004395, - 1.690837025642395, - 1.6948977708816528, - 1.6997623443603516, - 1.7052983045578003, - 1.7113544940948486, - 1.7177656888961792, - 1.7243572473526, - 1.7309491634368896, - 1.7373616695404053, - 1.7113826274871826, - 1.7054123878479004, - 1.6999591588974, - 1.6951719522476196, - 1.6911811828613281, - 1.6880958080291748, - 1.6859999895095825, - 1.684950828552246, - 1.6849770545959473, - 1.6860777139663696, - 1.688223123550415, - 1.691354513168335, - 1.695386528968811, - 1.700209140777588, - 1.7056909799575806, - 1.7116823196411133, - 1.718019723892212, - 1.724530577659607, - 1.7310370206832886, - 1.7373616695404053, - 1.7113826274871826, - 1.706166386604309, - 1.7014466524124146, - 1.6973522901535034, - 1.6939949989318848, - 1.6914663314819336, - 1.6898351907730103, - 1.6891461610794067, - 1.6894179582595825, - 1.6906431913375854, - 1.6927886009216309, - 1.6957954168319702, - 1.6995817422866821, - 1.7040443420410156, - 1.7090613842010498, - 1.7144960165023804, - 1.7202001810073853, - 1.7260180711746216, - 1.7317910194396973, - 1.7373616695404053, - 1.7113826274871826, - 1.7075048685073853, - 1.7040871381759644, - 1.7012227773666382, - 1.698989748954773, - 1.6974492073059082, - 1.6966429948806763, - 1.696593165397644, - 1.6973011493682861, - 1.6987475156784058, - 1.7008928060531616, - 1.7036786079406738, - 1.707028865814209, - 1.7108521461486816, - 1.7150442600250244, - 1.719490885734558, - 1.7240705490112305, - 1.7286584377288818, - 1.7331295013427734, - 1.7373616695404053, - 1.7113826274871826, - 1.7092827558517456, - 1.707594394683838, - 1.7063637971878052, - 1.7056243419647217, - 1.705396294593811, - 1.7056858539581299, - 1.7064851522445679, - 1.7077723741531372, - 1.7095123529434204, - 1.7116576433181763, - 1.714149832725525, - 1.7169208526611328, - 1.7198950052261353, - 1.7229913473129272, - 1.7261254787445068, - 1.7292115688323975, - 1.732165813446045, - 1.7349073886871338, - 1.7373616695404053, - 1.7113826274871826, - 1.711307406425476, - 1.7115885019302368, - 1.7122184038162231, - 1.7131797075271606, - 1.7144464254379272, - 1.7159837484359741, - 1.717750072479248, - 1.7196968793869019, - 1.721771240234375, - 1.7239165306091309, - 1.7260743379592896, - 1.7281856536865234, - 1.7301928997039795, - 1.7320414781570435, - 1.7336808443069458, - 1.7350661754608154, - 1.7361599206924438, - 1.7369320392608643, - 1.7373616695404053, - 1.7113826274871826, - 1.7133594751358032, - 1.7156366109848022, - 1.7181520462036133, - 1.7208372354507446, - 1.723618745803833, - 1.7264208793640137, - 1.7291669845581055, - 1.7317824363708496, - 1.7341957092285156, - 1.736341118812561, - 1.7381598949432373, - 1.7396026849746704, - 1.740630030632019, - 1.7412137985229492, - 1.7413382530212402, - 1.7409999370574951, - 1.7402080297470093, - 1.7389841079711914, - 1.7373616695404053, - 1.7113826274871826, - 1.7152163982391357, - 1.7192999124526978, - 1.7235218286514282, - 1.7277668714523315, - 1.7319194078445435, - 1.7358659505844116, - 1.7394990921020508, - 1.7427195310592651, - 1.7454395294189453, - 1.7475848197937012, - 1.7490969896316528, - 1.7499346733093262, - 1.750075101852417, - 1.7495144605636597, - 1.7482680082321167, - 1.7463696002960205, - 1.7438713312149048, - 1.7408411502838135, - 1.7373616695404053, - 1.7113826274871826, - 1.716677188873291, - 1.7221815586090088, - 1.727745771408081, - 1.7332179546356201, - 1.7384487390518188, - 1.743295669555664, - 1.7476264238357544, - 1.7513227462768555, - 1.7542840242385864, - 1.7564293146133423, - 1.7577002048492432, - 1.7580620050430298, - 1.7575048208236694, - 1.7560439109802246, - 1.7537189722061157, - 1.750593662261963, - 1.7467529773712158, - 1.7423018217086792, - 1.7373616695404053, - 1.7113826274871826, - 1.717583417892456, - 1.7239693403244019, - 1.7303662300109863, - 1.7365995645523071, - 1.7424994707107544, - 1.747904896736145, - 1.7526683807373047, - 1.756659984588623, - 1.7597708702087402, - 1.761916160583496, - 1.7630374431610107, - 1.76310396194458, - 1.7621140480041504, - 1.7600945234298706, - 1.7571007013320923, - 1.7532140016555786, - 1.7485406398773193, - 1.7432080507278442, - 1.7373616695404053, - 1.7113826274871826, - 1.717836856842041, - 1.7244693040847778, - 1.7310991287231445, - 1.737545371055603, - 1.7436323165893555, - 1.7491940259933472, - 1.7540785074234009, - 1.758152723312378, - 1.7613054513931274, - 1.7634508609771729, - 1.7645301818847656, - 1.7645142078399658, - 1.7634031772613525, - 1.7612274885177612, - 1.7580465078353882, - 1.7539469003677368, - 1.7490406036376953, - 1.7434614896774292, - 1.7373616695404053 - ] - }, - { - "marker": { - "color": "black", - "size": 2 - }, - "mode": "markers", - "name": "Means", - "type": "scatter3d", - "x": [ - 0.46296361088752747, - 0.4355328679084778, - 0.4062245488166809, - 0.3713556230068207, - 0.3127588927745819, - 0.2559817433357239, - 0.2077602595090866, - 0.1677672415971756, - 0.1345476657152176, - 0.10671259462833405, - 0.08314285427331924, - 0.0629747286438942, - 0.045547232031822205, - 0.030352246016263962, - 0.016995776444673538 - ], - "y": [ - 0.43206942081451416, - 0.4494422376155853, - 0.4680041968822479, - 0.4803052842617035, - 0.45666375756263733, - 0.424701064825058, - 0.3948206305503845, - 0.36887601017951965, - 0.34673789143562317, - 0.3278568983078003, - 0.3116675317287445, - 0.2976846992969513, - 0.28551435470581055, - 0.27484169602394104, - 0.2654162347316742 - ], - "z": [ - -0.2026686668395996, - -0.4970816969871521, - -0.811646580696106, - -1.116137981414795, - -1.3118535280227661, - -1.4369226694107056, - -1.523648977279663, - -1.5872844457626343, - -1.6359519958496094, - -1.674369215965271, - -1.7054623365402222, - -1.7311413288116455, - -1.7527058124542236, - -1.7710705995559692, - -1.7868982553482056 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.4774506688117981, - 0.4878585636615753, - 0.4975874125957489, - 0.506371796131134, - 0.5139721035957336, - 0.5201810598373413, - 0.5248292088508606, - 0.5277898907661438, - 0.5289822816848755, - 0.5283738374710083, - 0.5259811878204346, - 0.5218695402145386, - 0.5161511301994324, - 0.5089818835258484, - 0.5005574226379395, - 0.49110743403434753, - 0.48088979721069336, - 0.4701831638813019, - 0.4592795968055725, - 0.44847652316093445, - 0.4774506688117981, - 0.48696497082710266, - 0.4958246052265167, - 0.5037878155708313, - 0.5106375217437744, - 0.5161867737770081, - 0.5202842354774475, - 0.5228181481361389, - 0.5237193703651428, - 0.522963285446167, - 0.5205706357955933, - 0.5166066288948059, - 0.5111793279647827, - 0.5044368505477905, - 0.4965631067752838, - 0.4877728521823883, - 0.478305846452713, - 0.4684203565120697, - 0.45838600397109985, - 0.44847652316093445, - 0.4774506688117981, - 0.4850189685821533, - 0.49198561906814575, - 0.4981606602668762, - 0.5033755898475647, - 0.5074881911277771, - 0.5103862881660461, - 0.5119907855987549, - 0.512257993221283, - 0.511180579662323, - 0.5087878704071045, - 0.505145251750946, - 0.5003520250320435, - 0.49453893303871155, - 0.48786455392837524, - 0.4805109202861786, - 0.47267866134643555, - 0.46458137035369873, - 0.4564399719238281, - 0.44847652316093445, - 0.4774506688117981, - 0.48223137855529785, - 0.4864864945411682, - 0.4900999963283539, - 0.492973268032074, - 0.49502795934677124, - 0.4962080121040344, - 0.4964812397956848, - 0.4958402216434479, - 0.4943023920059204, - 0.4919097125530243, - 0.48872748017311096, - 0.4848424792289734, - 0.48036065697669983, - 0.475404292345047, - 0.47010859847068787, - 0.4646179974079132, - 0.4590822756290436, - 0.45365241169929504, - 0.44847655296325684, - 0.4774506688117981, - 0.4789043366909027, - 0.47992315888404846, - 0.48047935962677, - 0.48055779933929443, - 0.4801563024520874, - 0.4792858362197876, - 0.477970153093338, - 0.47624513506889343, - 0.47415781021118164, - 0.4717651307582855, - 0.4691323935985565, - 0.4663313627243042, - 0.463438481092453, - 0.46053266525268555, - 0.4576931297779083, - 0.45499736070632935, - 0.45251891016960144, - 0.4503253698348999, - 0.44847655296325684, - 0.4774506688117981, - 0.47539833188056946, - 0.47300681471824646, - 0.4703413248062134, - 0.4674746096134186, - 0.464484840631485, - 0.46145355701446533, - 0.45846349000930786, - 0.4555961787700653, - 0.4529297947883606, - 0.45053714513778687, - 0.4484834372997284, - 0.44682469964027405, - 0.44560620188713074, - 0.44486117362976074, - 0.44460994005203247, - 0.4448593258857727, - 0.44560256600379944, - 0.44681936502456665, - 0.44847655296325684, - 0.4774506688117981, - 0.4720933437347412, - 0.46648696064949036, - 0.4607844948768616, - 0.45514145493507385, - 0.44971176981925964, - 0.4446435868740082, - 0.4400750994682312, - 0.43613097071647644, - 0.4329187572002411, - 0.43052610754966736, - 0.4290182590484619, - 0.4284363389015198, - 0.4287962317466736, - 0.4300881326198578, - 0.43227678537368774, - 0.4353024959564209, - 0.4390827417373657, - 0.4435143768787384, - 0.44847655296325684, - 0.4774506986141205, - 0.4693474769592285, - 0.46107015013694763, - 0.4528444707393646, - 0.44489482045173645, - 0.437438040971756, - 0.43067750334739685, - 0.4247976839542389, - 0.4199588894844055, - 0.416293203830719, - 0.4139005243778229, - 0.412846177816391, - 0.4131588935852051, - 0.41483014822006226, - 0.41781437397003174, - 0.42203015089035034, - 0.42736247181892395, - 0.4336659014225006, - 0.4407685101032257, - 0.44847655296325684, - 0.4774506986141205, - 0.4674583375453949, - 0.45734336972236633, - 0.4473817050457001, - 0.4378450810909271, - 0.4289936423301697, - 0.42106878757476807, - 0.414286732673645, - 0.4088324308395386, - 0.4048547148704529, - 0.40246206521987915, - 0.40171971917152405, - 0.4026479423046112, - 0.40522143244743347, - 0.40936997532844543, - 0.414980411529541, - 0.4218997061252594, - 0.4299391210079193, - 0.4388793408870697, - 0.44847655296325684, - 0.4774506986141205, - 0.46663057804107666, - 0.45571044087409973, - 0.4449881613254547, - 0.43475621938705444, - 0.4252936840057373, - 0.4168586730957031, - 0.4096812903881073, - 0.403957337141037, - 0.39984288811683655, - 0.3974502384662628, - 0.3968445956707001, - 0.3980425000190735, - 0.40101131796836853, - 0.40567001700401306, - 0.41189152002334595, - 0.41950616240501404, - 0.4283061921596527, - 0.43805161118507385, - 0.44847655296325684, - 0.4774506986141205, - 0.46695396304130554, - 0.45634835958480835, - 0.44592323899269104, - 0.4359629154205322, - 0.4267390966415405, - 0.41850340366363525, - 0.41148045659065247, - 0.40586185455322266, - 0.40180081129074097, - 0.39940816164016724, - 0.39874911308288574, - 0.39984166622161865, - 0.40265604853630066, - 0.40711545944213867, - 0.4130982458591461, - 0.42044124007225037, - 0.42894411087036133, - 0.43837496638298035, - 0.44847655296325684, - 0.4774506986141205, - 0.46839338541030884, - 0.45918798446655273, - 0.4500855803489685, - 0.44133442640304565, - 0.4331732988357544, - 0.42582473158836365, - 0.4194892346858978, - 0.4143396019935608, - 0.41051632165908813, - 0.408123642206192, - 0.40722689032554626, - 0.4078504741191864, - 0.40997737646102905, - 0.41354963183403015, - 0.41846975684165955, - 0.42460358142852783, - 0.4317837357521057, - 0.43981441855430603, - 0.44847655296325684, - 0.4774506688117981, - 0.4707929193973541, - 0.46392157673835754, - 0.45702412724494934, - 0.45028868317604065, - 0.4438989758491516, - 0.43802928924560547, - 0.4328397512435913, - 0.4284719228744507, - 0.4250449538230896, - 0.4226522743701935, - 0.42135918140411377, - 0.4212009906768799, - 0.4221819341182709, - 0.42427530884742737, - 0.42742401361465454, - 0.43154212832450867, - 0.4365173280239105, - 0.4422139525413513, - 0.44847655296325684, - 0.4774506688117981, - 0.4738925099372864, - 0.47003620862960815, - 0.4659869968891144, - 0.46185532212257385, - 0.45775386691093445, - 0.45379453897476196, - 0.450085312128067, - 0.44672736525535583, - 0.4438123106956482, - 0.4414196312427521, - 0.4396146237850189, - 0.4384465217590332, - 0.43794718384742737, - 0.4381302297115326, - 0.43899065256118774, - 0.4405049979686737, - 0.44263195991516113, - 0.44531354308128357, - 0.44847655296325684, - 0.4774506688117981, - 0.4773562550544739, - 0.47686925530433655, - 0.47600293159484863, - 0.47478094696998596, - 0.4732365906238556, - 0.4714120328426361, - 0.4693570137023926, - 0.46712759137153625, - 0.4647845923900604, - 0.4623919427394867, - 0.46001487970352173, - 0.45771822333335876, - 0.4555646777153015, - 0.45361292362213135, - 0.45191627740859985, - 0.45052093267440796, - 0.4494650065898895, - 0.44877728819847107, - 0.44847655296325684, - 0.4774506688117981, - 0.4808088541030884, - 0.48368024826049805, - 0.48598653078079224, - 0.4876648187637329, - 0.48866933584213257, - 0.48897263407707214, - 0.488566517829895, - 0.48746198415756226, - 0.4856892228126526, - 0.48329654335975647, - 0.48034927248954773, - 0.4769277274608612, - 0.47312527894973755, - 0.4690456688404083, - 0.4648001492023468, - 0.46050453186035156, - 0.456275999546051, - 0.4522298574447632, - 0.44847655296325684, - 0.4774506688117981, - 0.48387610912323, - 0.489731103181839, - 0.49485594034194946, - 0.4991108477115631, - 0.5023797154426575, - 0.5045734643936157, - 0.5056321620941162, - 0.5055270195007324, - 0.5042608380317688, - 0.5018681883811951, - 0.4984142780303955, - 0.4939934015274048, - 0.48872610926628113, - 0.4827560782432556, - 0.476246178150177, - 0.4693739414215088, - 0.46232685446739197, - 0.4552971422672272, - 0.44847652316093445, - 0.4774506688117981, - 0.4862256646156311, - 0.4943661093711853, - 0.5016499757766724, - 0.5078786015510559, - 0.5128820538520813, - 0.5165238380432129, - 0.5187046527862549, - 0.5193650126457214, - 0.5184868574142456, - 0.5160942077636719, - 0.5122523307800293, - 0.5070658922195435, - 0.5006765127182007, - 0.49325841665267944, - 0.4850139319896698, - 0.4761680066585541, - 0.4669618606567383, - 0.4576466977596283, - 0.44847652316093445, - 0.4774506688117981, - 0.4876028895378113, - 0.49708303809165955, - 0.5056324601173401, - 0.513018012046814, - 0.519038200378418, - 0.5235288143157959, - 0.5263673663139343, - 0.52747642993927, - 0.5268257856369019, - 0.5244331359863281, - 0.5203636884689331, - 0.5147286057472229, - 0.5076814889907837, - 0.4994145631790161, - 0.49015334248542786, - 0.4801504611968994, - 0.4696787893772125, - 0.45902392268180847, - 0.44847652316093445, - 0.4774506688117981, - 0.4878585636615753, - 0.4975874125957489, - 0.506371796131134, - 0.5139721035957336, - 0.5201810598373413, - 0.5248292088508606, - 0.5277898907661438, - 0.5289822816848755, - 0.5283738374710083, - 0.5259811282157898, - 0.5218695402145386, - 0.5161511301994324, - 0.5089818835258484, - 0.5005574226379395, - 0.49110743403434753, - 0.48088979721069336, - 0.4701831638813019, - 0.4592795968055725, - 0.44847652316093445 - ], - "y": [ - 0.42289426922798157, - 0.4240623414516449, - 0.42544886469841003, - 0.42701593041419983, - 0.4287208616733551, - 0.43051713705062866, - 0.43235576152801514, - 0.43418657779693604, - 0.4359596371650696, - 0.43762657046318054, - 0.4391419291496277, - 0.4404643774032593, - 0.44155779480934143, - 0.4423924386501312, - 0.4429454803466797, - 0.44320183992385864, - 0.44315454363822937, - 0.44280487298965454, - 0.4421623945236206, - 0.44124457240104675, - 0.42289426922798157, - 0.4274565577507019, - 0.4321446418762207, - 0.43683069944381714, - 0.441386878490448, - 0.4456889033317566, - 0.44961944222450256, - 0.4530712366104126, - 0.45595017075538635, - 0.45817768573760986, - 0.459693044424057, - 0.46045488119125366, - 0.460442453622818, - 0.45965608954429626, - 0.4581172466278076, - 0.45586785674095154, - 0.4529693126678467, - 0.4495006799697876, - 0.4455565810203552, - 0.44124457240104675, - 0.42289426922798157, - 0.43036991357803345, - 0.4378919005393982, - 0.4452551007270813, - 0.4522585868835449, - 0.4587113857269287, - 0.46443745493888855, - 0.4692806303501129, - 0.47310876846313477, - 0.4758174419403076, - 0.47733280062675476, - 0.47761350870132446, - 0.4766518473625183, - 0.47447413206100464, - 0.47113972902297974, - 0.46673956513404846, - 0.46139371395111084, - 0.4552479386329651, - 0.44846993684768677, - 0.44124457240104675, - 0.42289426922798157, - 0.43248671293258667, - 0.44206780195236206, - 0.45137616991996765, - 0.4601578712463379, - 0.46817338466644287, - 0.47520411014556885, - 0.4810582101345062, - 0.4855760335922241, - 0.4886343479156494, - 0.49014970660209656, - 0.4900807738304138, - 0.488429456949234, - 0.48524078726768494, - 0.4806017279624939, - 0.47463884949684143, - 0.4675147533416748, - 0.45942384004592896, - 0.4505867660045624, - 0.44124457240104675, - 0.42289426922798157, - 0.43357762694358826, - 0.44421982765197754, - 0.45453059673309326, - 0.46422868967056274, - 0.4730495810508728, - 0.4807526171207428, - 0.48712772130966187, - 0.4920009672641754, - 0.4952394366264343, - 0.49675479531288147, - 0.4965056777000427, - 0.49449893832206726, - 0.4907892942428589, - 0.48547789454460144, - 0.4787096679210663, - 0.4706692099571228, - 0.46157586574554443, - 0.4516776502132416, - 0.44124457240104675, - 0.42289426922798157, - 0.43352437019348145, - 0.4441147744655609, - 0.45437660813331604, - 0.4640299677848816, - 0.4728115200996399, - 0.48048174381256104, - 0.486831396818161, - 0.4916872978210449, - 0.49491697549819946, - 0.4964323341846466, - 0.4961920380592346, - 0.4942026436328888, - 0.4905184209346771, - 0.4852398633956909, - 0.47851094603538513, - 0.4705152213573456, - 0.4614708125591278, - 0.45162439346313477, - 0.44124457240104675, - 0.42289426922798157, - 0.43233272433280945, - 0.4417639970779419, - 0.4509308338165283, - 0.45958319306373596, - 0.4674850106239319, - 0.47442081570625305, - 0.4802013635635376, - 0.484669029712677, - 0.4877018928527832, - 0.48921725153923035, - 0.4891737699508667, - 0.4875726103782654, - 0.48445749282836914, - 0.4799133539199829, - 0.4740641713142395, - 0.46706944704055786, - 0.4591200351715088, - 0.45043274760246277, - 0.44124457240104675, - 0.42289426922798157, - 0.43013185262680054, - 0.4374222755432129, - 0.4445666968822479, - 0.4513702392578125, - 0.45764729380607605, - 0.46322664618492126, - 0.4679561257362366, - 0.47170668840408325, - 0.47437605261802673, - 0.4758914113044739, - 0.47621142864227295, - 0.47532737255096436, - 0.47326332330703735, - 0.4700756072998047, - 0.46585121750831604, - 0.46070531010627747, - 0.4547783136367798, - 0.44823187589645386, - 0.44124457240104675, - 0.42289426922798157, - 0.42716023325920105, - 0.43156009912490845, - 0.4359738826751709, - 0.4402811527252197, - 0.44436439871788025, - 0.4481123089790344, - 0.4514226019382477, - 0.4542049765586853, - 0.4563835561275482, - 0.45789891481399536, - 0.458709716796875, - 0.4587938189506531, - 0.4581489562988281, - 0.4567927420139313, - 0.4547621011734009, - 0.45211249589920044, - 0.44891613721847534, - 0.44526025652885437, - 0.44124457240104675, - 0.42289426922798157, - 0.42373988032341003, - 0.4248127341270447, - 0.426083505153656, - 0.4275175631046295, - 0.42907577753067017, - 0.4307156503200531, - 0.4323924481868744, - 0.4340604543685913, - 0.43567413091659546, - 0.4371894896030426, - 0.4385651648044586, - 0.4397636950016022, - 0.4407522976398468, - 0.4415040910243988, - 0.44199851155281067, - 0.44222211837768555, - 0.4421687722206116, - 0.44183993339538574, - 0.44124457240104675, - 0.42289426922798157, - 0.42024147510528564, - 0.4179113209247589, - 0.41596734523773193, - 0.4144625961780548, - 0.4134381413459778, - 0.41292187571525574, - 0.41292789578437805, - 0.4134560823440552, - 0.4144919514656067, - 0.41600731015205383, - 0.4179607927799225, - 0.42029914259910583, - 0.4229585528373718, - 0.4258664548397064, - 0.42894357442855835, - 0.4321059584617615, - 0.4352673590183258, - 0.43834149837493896, - 0.44124457240104675, - 0.42289426922798157, - 0.417044073343277, - 0.41160374879837036, - 0.40672168135643005, - 0.4025310277938843, - 0.39914608001708984, - 0.3966592252254486, - 0.3951382637023926, - 0.3946246802806854, - 0.39513248205184937, - 0.3966478407382965, - 0.39912939071655273, - 0.402509480714798, - 0.4066958725452423, - 0.41157442331314087, - 0.41701197624206543, - 0.4228602945804596, - 0.42895978689193726, - 0.4351441264152527, - 0.44124457240104675, - 0.42289426922798157, - 0.41449421644210815, - 0.4065735638141632, - 0.3993483781814575, - 0.3930157423019409, - 0.3877483904361725, - 0.3836899995803833, - 0.38095125555992126, - 0.3796069025993347, - 0.3796935975551605, - 0.38120895624160767, - 0.3841116428375244, - 0.38832250237464905, - 0.3937266767024994, - 0.4001767039299011, - 0.40749672055244446, - 0.41548699140548706, - 0.4239296019077301, - 0.4325942397117615, - 0.44124457240104675, - 0.42289426922798157, - 0.4128682017326355, - 0.4033658802509308, - 0.3946464955806732, - 0.3869479298591614, - 0.38048017024993896, - 0.37541961669921875, - 0.37190431356430054, - 0.3700301945209503, - 0.3698483109474182, - 0.37136366963386536, - 0.37453493475914, - 0.3792755603790283, - 0.38545629382133484, - 0.3929084837436676, - 0.4014289081096649, - 0.41078510880470276, - 0.4207219183444977, - 0.4309682250022888, - 0.44124457240104675, - 0.42289426922798157, - 0.4123421907424927, - 0.402328222990036, - 0.3931255340576172, - 0.3849851191043854, - 0.3781290352344513, - 0.3727443218231201, - 0.3689778447151184, - 0.36693233251571655, - 0.3666635751724243, - 0.36817893385887146, - 0.37143704295158386, - 0.3763490617275238, - 0.3827809989452362, - 0.39055734872817993, - 0.3994660973548889, - 0.40926414728164673, - 0.4196842610836029, - 0.4304422438144684, - 0.44124457240104675, - 0.42289426922798157, - 0.4129732549190521, - 0.4035731256008148, - 0.3949503004550934, - 0.3873400092124939, - 0.38094979524612427, - 0.3759540021419525, - 0.3724888861179352, - 0.37064898014068604, - 0.37048444151878357, - 0.3719998002052307, - 0.37515369057655334, - 0.3798601031303406, - 0.3859906494617462, - 0.3933781087398529, - 0.40182095766067505, - 0.4110889136791229, - 0.4209291636943817, - 0.43107327818870544, - 0.44124457240104675, - 0.42289426922798157, - 0.4146929681301117, - 0.4069656431674957, - 0.39992308616638184, - 0.3937573730945587, - 0.3886367380619049, - 0.38470083475112915, - 0.3820570111274719, - 0.38077741861343384, - 0.3808969259262085, - 0.38241228461265564, - 0.38528215885162354, - 0.3894282579421997, - 0.39473751187324524, - 0.40106505155563354, - 0.40823835134506226, - 0.4160616993904114, - 0.4243216812610626, - 0.432792991399765, - 0.44124457240104675, - 0.42289426922798157, - 0.41731497645378113, - 0.4121381342411041, - 0.40750497579574585, - 0.4035418629646301, - 0.4003569185733795, - 0.39803698658943176, - 0.3966453969478607, - 0.39622005820274353, - 0.3967726230621338, - 0.39828798174858093, - 0.4007247984409332, - 0.4040166139602661, - 0.40807366371154785, - 0.41278523206710815, - 0.41802284121513367, - 0.4236435890197754, - 0.429494172334671, - 0.43541499972343445, - 0.44124457240104675, - 0.42289426922798157, - 0.42055514454841614, - 0.41853010654449463, - 0.41687437891960144, - 0.41563311219215393, - 0.4148402214050293, - 0.41451728343963623, - 0.4146731197834015, - 0.41530346870422363, - 0.41639116406440735, - 0.4179065227508545, - 0.41980820894241333, - 0.4220443367958069, - 0.42455393075942993, - 0.42726853489875793, - 0.43011409044265747, - 0.433012992143631, - 0.4358861446380615, - 0.43865516781806946, - 0.44124457240104675, - 0.42289426922798157, - 0.4240623414516449, - 0.42544886469841003, - 0.4270159602165222, - 0.4287208914756775, - 0.43051716685295105, - 0.4323557913303375, - 0.43418657779693604, - 0.4359596371650696, - 0.43762657046318054, - 0.4391419291496277, - 0.4404643774032593, - 0.4415578246116638, - 0.4423924386501312, - 0.4429454803466797, - 0.44320183992385864, - 0.44315457344055176, - 0.44280490279197693, - 0.4421623945236206, - 0.44124457240104675 - ], - "z": [ - -0.047179609537124634, - -0.0502268522977829, - -0.057432323694229126, - -0.06859946250915527, - -0.08342364430427551, - -0.10150052607059479, - -0.12233702093362808, - -0.14536473155021667, - -0.1699555665254593, - -0.1954387128353119, - -0.22111909091472626, - -0.24629616737365723, - -0.27028322219848633, - -0.2924259305000305, - -0.312120258808136, - -0.3288290500640869, - -0.3420965373516083, - -0.3515607714653015, - -0.3569636344909668, - -0.3581577241420746, - -0.047179609537124634, - -0.049943313002586365, - -0.05687296390533447, - -0.06777957081794739, - -0.08236555755138397, - -0.10023311525583267, - -0.12089485675096512, - -0.14378716051578522, - -0.16828560829162598, - -0.1937219351530075, - -0.21940229833126068, - -0.2446262240409851, - -0.2687056362628937, - -0.29098373651504517, - -0.31085285544395447, - -0.32777097821235657, - -0.3412766456604004, - -0.35100144147872925, - -0.35668009519577026, - -0.3581577241420746, - -0.047179609537124634, - -0.049590080976486206, - -0.05617615580558777, - -0.0667581707239151, - -0.0810474380850792, - -0.09865422546863556, - -0.11909826844930649, - -0.14182187616825104, - -0.16620522737503052, - -0.19158321619033813, - -0.2172635942697525, - -0.24254584312438965, - -0.2667403519153595, - -0.28918716311454773, - -0.30927395820617676, - -0.3264528512954712, - -0.3402552306652069, - -0.35030460357666016, - -0.3563268780708313, - -0.3581577241420746, - -0.047179609537124634, - -0.04920545220375061, - -0.055417388677597046, - -0.06564594805240631, - -0.0796121209859848, - -0.0969349592924118, - -0.11714193969964981, - -0.1396818459033966, - -0.16393989324569702, - -0.18925435841083527, - -0.21493473649024963, - -0.24028050899505615, - -0.26460033655166626, - -0.28723084926605225, - -0.307554692029953, - -0.3250175416469574, - -0.3391430377960205, - -0.34954583644866943, - -0.3559422492980957, - -0.3581577241420746, - -0.047179609537124634, - -0.04883110523223877, - -0.054678887128829956, - -0.06456345319747925, - -0.07821514457464218, - -0.09526161849498749, - -0.11523787677288055, - -0.13759900629520416, - -0.16173508763313293, - -0.1869877129793167, - -0.21266809105873108, - -0.23807570338249207, - -0.2625174820423126, - -0.2853267788887024, - -0.3058813512325287, - -0.3236205577850342, - -0.33806049823760986, - -0.34880733489990234, - -0.3555678725242615, - -0.3581577241420746, - -0.047179609537124634, - -0.04850758612155914, - -0.054040685296058655, - -0.06362795829772949, - -0.07700788974761963, - -0.09381553530693054, - -0.11359240859746933, - -0.13579903542995453, - -0.15982970595359802, - -0.18502891063690186, - -0.21070927381515503, - -0.23617032170295715, - -0.260717511177063, - -0.28368130326271057, - -0.30443525314331055, - -0.3224133253097534, - -0.3371250331401825, - -0.34816914796829224, - -0.35524436831474304, - -0.3581577241420746, - -0.047179609537124634, - -0.04826997220516205, - -0.05357193946838379, - -0.06294086575508118, - -0.07612119615077972, - -0.09275342524051666, - -0.11238384991884232, - -0.13447698950767517, - -0.15843024849891663, - -0.18359020352363586, - -0.20927058160305023, - -0.23477086424827576, - -0.2593954801559448, - -0.28247275948524475, - -0.30337315797805786, - -0.3215266168117523, - -0.3364379405975342, - -0.34770041704177856, - -0.35500675439834595, - -0.3581577241420746, - -0.047179609537124634, - -0.048144012689590454, - -0.053323447704315186, - -0.06257663667201996, - -0.0756511390209198, - -0.09219037741422653, - -0.11174316704273224, - -0.13377615809440613, - -0.15768836438655853, - -0.18282753229141235, - -0.20850789546966553, - -0.23402898013591766, - -0.2586946487426758, - -0.2818320691585541, - -0.30281010270118713, - -0.3210565447807312, - -0.33607369661331177, - -0.34745192527770996, - -0.35488080978393555, - -0.3581577241420746, - -0.047179609537124634, - -0.04814334213733673, - -0.05332213640213013, - -0.06257471442222595, - -0.07564866542816162, - -0.09218740463256836, - -0.11173978447914124, - -0.13377246260643005, - -0.15768444538116455, - -0.18282349407672882, - -0.2085038721561432, - -0.23402506113052368, - -0.2586909532546997, - -0.28182870149612427, - -0.30280715227127075, - -0.321054071187973, - -0.33607178926467896, - -0.3474505841732025, - -0.35488012433052063, - -0.3581577241420746, - -0.047179609537124634, - -0.04826804995536804, - -0.05356813967227936, - -0.06293530762195587, - -0.07611402869224548, - -0.09274483472108841, - -0.11237407475709915, - -0.13446630537509918, - -0.1584189236164093, - -0.18357856571674347, - -0.20925894379615784, - -0.23475953936576843, - -0.25938478112220764, - -0.2824629545211792, - -0.3033645749092102, - -0.3215194344520569, - -0.33643239736557007, - -0.34769660234451294, - -0.35500484704971313, - -0.3581577241420746, - -0.047179609537124634, - -0.04850462079048157, - -0.05403481423854828, - -0.06361937522888184, - -0.0769968032836914, - -0.09380225837230682, - -0.11357729882001877, - -0.13578251004219055, - -0.15981221199035645, - -0.18501092493534088, - -0.21069128811359406, - -0.23615282773971558, - -0.2607010006904602, - -0.28366619348526, - -0.304421991109848, - -0.3224022388458252, - -0.33711642026901245, - -0.34816327691078186, - -0.35524141788482666, - -0.3581577241420746, - -0.047179609537124634, - -0.0488273948431015, - -0.05467158555984497, - -0.06455275416374207, - -0.07820133864879608, - -0.09524508565664291, - -0.11521906405687332, - -0.13757842779159546, - -0.16171330213546753, - -0.18696531653404236, - -0.21264569461345673, - -0.23805391788482666, - -0.2624969184398651, - -0.28530797362327576, - -0.3058648109436035, - -0.3236067593097687, - -0.33804982900619507, - -0.34880006313323975, - -0.3555641770362854, - -0.3581577241420746, - -0.047179609537124634, - -0.04920142889022827, - -0.055409446358680725, - -0.06563431024551392, - -0.0795971006155014, - -0.09691696614027023, - -0.11712146550416946, - -0.13965946435928345, - -0.1639162003993988, - -0.18922999501228333, - -0.2149103581905365, - -0.24025681614875793, - -0.2645779550075531, - -0.2872103750705719, - -0.30753669142723083, - -0.325002521276474, - -0.3391313850879669, - -0.3495379090309143, - -0.355938196182251, - -0.3581577241420746, - -0.047179609537124634, - -0.04958617687225342, - -0.056168437004089355, - -0.06674684584140778, - -0.08103282749652863, - -0.09863673150539398, - -0.11907835304737091, - -0.14180009067058563, - -0.16618217527866364, - -0.19155952334403992, - -0.2172398865222931, - -0.24252279102802277, - -0.2667185664176941, - -0.28916725516319275, - -0.3092564642429352, - -0.3264382481575012, - -0.3402439057826996, - -0.35029691457748413, - -0.3563229441642761, - -0.3581577241420746, - -0.047179609537124634, - -0.04993993043899536, - -0.05686630308628082, - -0.06776978075504303, - -0.08235294371843338, - -0.10021800547838211, - -0.12087766081094742, - -0.1437683403491974, - -0.1682656854391098, - -0.19370146095752716, - -0.21938182413578033, - -0.24460630118846893, - -0.26868683099746704, - -0.29096657037734985, - -0.3108377456665039, - -0.3277583718299866, - -0.3412668704986572, - -0.3509947657585144, - -0.35667669773101807, - -0.3581577241420746, - -0.047179609537124634, - -0.05022437870502472, - -0.05742742121219635, - -0.06859229505062103, - -0.08341439068317413, - -0.10148943960666656, - -0.1223243996500969, - -0.14535093307495117, - -0.16994094848632812, - -0.1954236924648285, - -0.22110407054424286, - -0.24628156423568726, - -0.2702694237232208, - -0.29241329431533813, - -0.31210917234420776, - -0.32881981134414673, - -0.34208935499191284, - -0.35155588388442993, - -0.3569611608982086, - -0.3581577241420746, - -0.047179609537124634, - -0.05040867626667023, - -0.05779100954532623, - -0.069125235080719, - -0.08410214632749557, - -0.10231325775384903, - -0.12326180934906006, - -0.1463763564825058, - -0.17102642357349396, - -0.19653961062431335, - -0.22221997380256653, - -0.2473670393228531, - -0.27129483222961426, - -0.2933506965637207, - -0.3129329979419708, - -0.3295075595378876, - -0.3426222801208496, - -0.3519194722175598, - -0.3571454584598541, - -0.3581577241420746, - -0.047179609537124634, - -0.05047287046909332, - -0.05791763961315155, - -0.06931084394454956, - -0.08434168249368668, - -0.10260017961263657, - -0.12358829379081726, - -0.14673349261283875, - -0.17140448093414307, - -0.1969282627105713, - -0.22260864078998566, - -0.2477450966835022, - -0.2716519832611084, - -0.2936772108078003, - -0.31321990489959717, - -0.3297470808029175, - -0.3428078889846802, - -0.35204610228538513, - -0.3572096526622772, - -0.3581577241420746, - -0.047179609537124634, - -0.050409987568855286, - -0.05779358744621277, - -0.06912901997566223, - -0.08410704135894775, - -0.10231912136077881, - -0.1232684776186943, - -0.1463836431503296, - -0.17103415727615356, - -0.19654755294322968, - -0.22222791612148285, - -0.2473747581243515, - -0.27130213379859924, - -0.29335737228393555, - -0.3129388689994812, - -0.32951244711875916, - -0.34262609481811523, - -0.35192203521728516, - -0.3571467697620392, - -0.3581577241420746, - -0.047179609537124634, - -0.0502268522977829, - -0.057432323694229126, - -0.06859946250915527, - -0.08342364430427551, - -0.10150052607059479, - -0.12233702093362808, - -0.14536473155021667, - -0.1699555665254593, - -0.1954387128353119, - -0.22111909091472626, - -0.24629616737365723, - -0.27028322219848633, - -0.2924259305000305, - -0.312120258808136, - -0.3288290500640869, - -0.3420965373516083, - -0.3515607714653015, - -0.3569636344909668, - -0.3581577241420746 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.45231112837791443, - 0.47188621759414673, - 0.49046969413757324, - 0.5075546503067017, - 0.5226750373840332, - 0.5354183912277222, - 0.5454371571540833, - 0.5524579882621765, - 0.5562894344329834, - 0.5568269491195679, - 0.5540558695793152, - 0.5480517745018005, - 0.5389784574508667, - 0.5270834565162659, - 0.5126911997795105, - 0.4961942136287689, - 0.4780425727367401, - 0.45873138308525085, - 0.4387873709201813, - 0.41875460743904114, - 0.45231112837791443, - 0.4718308448791504, - 0.49036043882369995, - 0.5073944926261902, - 0.5224683284759521, - 0.5351707935333252, - 0.54515540599823, - 0.5521498322486877, - 0.5559632182121277, - 0.5564916133880615, - 0.5537205338478088, - 0.5477255582809448, - 0.5386703610420227, - 0.5268017649650574, - 0.5124436020851135, - 0.49598753452301025, - 0.47788241505622864, - 0.4586220979690552, - 0.43873199820518494, - 0.41875460743904114, - 0.45231112837791443, - 0.46963539719581604, - 0.4860294461250305, - 0.5010460615158081, - 0.5142756700515747, - 0.5253573656082153, - 0.533988893032074, - 0.5399347543716431, - 0.5430328845977783, - 0.5431986451148987, - 0.540427565574646, - 0.5347952246665955, - 0.526455283164978, - 0.5156351923942566, - 0.5026301741600037, - 0.4877948760986328, - 0.47153398394584656, - 0.45429110527038574, - 0.4365365505218506, - 0.41875460743904114, - 0.45231112837791443, - 0.46553778648376465, - 0.477946013212204, - 0.489197313785553, - 0.49898478388786316, - 0.5070414543151855, - 0.5131475329399109, - 0.5171365141868591, - 0.5188995599746704, - 0.518388569355011, - 0.5156174898147583, - 0.5106619596481323, - 0.5036570429801941, - 0.4947938919067383, - 0.4843142628669739, - 0.47250398993492126, - 0.45968523621559143, - 0.4462076723575592, - 0.4324389398097992, - 0.41875460743904114, - 0.45231112837791443, - 0.45998209714889526, - 0.46698611974716187, - 0.4731322228908539, - 0.47825270891189575, - 0.48220789432525635, - 0.4848898947238922, - 0.48622560501098633, - 0.48617851734161377, - 0.4847499430179596, - 0.4819788634777069, - 0.4779408574104309, - 0.4727461040019989, - 0.4665362238883972, - 0.4594806730747223, - 0.45177191495895386, - 0.44362014532089233, - 0.4352478086948395, - 0.4268832504749298, - 0.41875460743904114, - 0.45231112837791443, - 0.45357030630111694, - 0.454337477684021, - 0.4545917212963104, - 0.4543260633945465, - 0.45354777574539185, - 0.45227810740470886, - 0.45055168867111206, - 0.4484155476093292, - 0.44592803716659546, - 0.4431569576263428, - 0.44017791748046875, - 0.43707218766212463, - 0.43392443656921387, - 0.4308205842971802, - 0.4278452694416046, - 0.4250796437263489, - 0.4225991666316986, - 0.4204714596271515, - 0.41875460743904114, - 0.45231112837791443, - 0.4469972848892212, - 0.44137072563171387, - 0.4355849325656891, - 0.4297977089881897, - 0.4241669178009033, - 0.4188461899757385, - 0.4139806032180786, - 0.4097028970718384, - 0.4061298072338104, - 0.40335872769355774, - 0.4014652669429779, - 0.4005011022090912, - 0.40049248933792114, - 0.40143972635269165, - 0.4033169150352478, - 0.40607285499572754, - 0.4096323847770691, - 0.41389843821525574, - 0.41875460743904114, - 0.45231112837791443, - 0.4409753084182739, - 0.4294910132884979, - 0.4181715250015259, - 0.4073256254196167, - 0.39724916219711304, - 0.38821694254875183, - 0.38047540187835693, - 0.3742356598377228, - 0.36966797709465027, - 0.3668968975543976, - 0.3659980297088623, - 0.3669959008693695, - 0.36986327171325684, - 0.374521940946579, - 0.3808448314666748, - 0.3886594772338867, - 0.39775270223617554, - 0.40787646174430847, - 0.41875460743904114, - 0.45231112837791443, - 0.4361569285392761, - 0.41998571157455444, - 0.40423858165740967, - 0.38934504985809326, - 0.37571144104003906, - 0.36370956897735596, - 0.35366690158843994, - 0.34585726261138916, - 0.3404937982559204, - 0.3377227187156677, - 0.3376196324825287, - 0.3401873707771301, - 0.34535589814186096, - 0.352984219789505, - 0.36286425590515137, - 0.3747265040874481, - 0.38824737071990967, - 0.40305808186531067, - 0.41875460743904114, - 0.45231112837791443, - 0.4330643117427826, - 0.41388484835624695, - 0.3952958583831787, - 0.3778044581413269, - 0.36188772320747375, - 0.3479798436164856, - 0.3364601731300354, - 0.32764294743537903, - 0.32176870107650757, - 0.3189976215362549, - 0.31940531730651855, - 0.322980672121048, - 0.3296261727809906, - 0.3391605019569397, - 0.351323664188385, - 0.36578381061553955, - 0.3821465075016022, - 0.39996546506881714, - 0.41875460743904114, - 0.45231112837791443, - 0.43203258514404297, - 0.4118495583534241, - 0.39231252670288086, - 0.3739544451236725, - 0.3572760224342346, - 0.3427322804927826, - 0.33071988821029663, - 0.32156652212142944, - 0.31552186608314514, - 0.31275078654289246, - 0.31332889199256897, - 0.3172403872013092, - 0.3243786096572876, - 0.33454883098602295, - 0.3474736213684082, - 0.3628004491329193, - 0.3801112174987793, - 0.3989337682723999, - 0.41875460743904114, - 0.45231112837791443, - 0.4331735670566559, - 0.41410037875175476, - 0.39561182260513306, - 0.37821218371391296, - 0.3623761236667633, - 0.34853556752204895, - 0.3370680809020996, - 0.32828643918037415, - 0.32243025302886963, - 0.31965917348861694, - 0.32004880905151367, - 0.3235885798931122, - 0.33018189668655396, - 0.33964890241622925, - 0.3517313599586487, - 0.3660997450351715, - 0.3823620676994324, - 0.40007472038269043, - 0.41875460743904114, - 0.45231112837791443, - 0.4363636076450348, - 0.4203934073448181, - 0.4048362076282501, - 0.39011630415916443, - 0.37663525342941284, - 0.36476078629493713, - 0.3548167943954468, - 0.3470745086669922, - 0.34174516797065735, - 0.33897408843040466, - 0.3388368785381317, - 0.34133729338645935, - 0.34640711545944214, - 0.35390806198120117, - 0.36363551020622253, - 0.3753241300582886, - 0.3886550962924957, - 0.40326476097106934, - 0.41875460743904114, - 0.45231112837791443, - 0.4412569999694824, - 0.4300467371940613, - 0.41898611187934875, - 0.40837687253952026, - 0.39850834012031555, - 0.38964974880218506, - 0.3820427358150482, - 0.37589478492736816, - 0.37137362360954285, - 0.36860254406929016, - 0.3676571547985077, - 0.3685632348060608, - 0.37129607796669006, - 0.3757811486721039, - 0.381896048784256, - 0.3894740641117096, - 0.3983084261417389, - 0.40815815329551697, - 0.41875460743904114, - 0.45231112837791443, - 0.4473234713077545, - 0.442014217376709, - 0.43652814626693726, - 0.4310149550437927, - 0.4256249964237213, - 0.4205052852630615, - 0.4157954752445221, - 0.41162407398223877, - 0.4081048369407654, - 0.4053337574005127, - 0.4033864438533783, - 0.40231597423553467, - 0.40215161442756653, - 0.40289777517318726, - 0.40453416109085083, - 0.4070160984992981, - 0.4102758765220642, - 0.41422462463378906, - 0.41875460743904114, - 0.45231112837791443, - 0.4539056420326233, - 0.45499899983406067, - 0.4555613696575165, - 0.45557743310928345, - 0.45504671335220337, - 0.45398372411727905, - 0.45241743326187134, - 0.4503905773162842, - 0.44795843958854675, - 0.44518736004829407, - 0.4421529471874237, - 0.4389379322528839, - 0.43563005328178406, - 0.4323195219039917, - 0.42909663915634155, - 0.4260493218898773, - 0.4232606887817383, - 0.42080679535865784, - 0.41875460743904114, - 0.45231112837791443, - 0.46029022336006165, - 0.4675940275192261, - 0.4740232825279236, - 0.4794026017189026, - 0.48358529806137085, - 0.4864572286605835, - 0.48794007301330566, - 0.48799341917037964, - 0.48661574721336365, - 0.48384466767311096, - 0.4797557592391968, - 0.4744606018066406, - 0.4681035578250885, - 0.4608581066131592, - 0.4529218077659607, - 0.44451120495796204, - 0.4358557164669037, - 0.4271913766860962, - 0.41875460743904114, - 0.45231112837791443, - 0.46578535437583923, - 0.47843438386917114, - 0.4899131655693054, - 0.4999086260795593, - 0.5081480741500854, - 0.5144067406654358, - 0.5185139179229736, - 0.5203576683998108, - 0.5198875665664673, - 0.5171164870262146, - 0.5121200084686279, - 0.5050344467163086, - 0.4960530698299408, - 0.4854208528995514, - 0.47342783212661743, - 0.46040111780166626, - 0.44669607281684875, - 0.4326865077018738, - 0.41875460743904114, - 0.45231112837791443, - 0.4697955548763275, - 0.4863453805446625, - 0.5015091896057129, - 0.5148733258247375, - 0.5260732173919678, - 0.5348035097122192, - 0.5408258438110352, - 0.5439761281013489, - 0.5441683530807495, - 0.5413972735404968, - 0.5357385277748108, - 0.5273463726043701, - 0.5164498090744019, - 0.5033460855484009, - 0.48839250206947327, - 0.47199711203575134, - 0.4546070694923401, - 0.43669670820236206, - 0.41875460743904114, - 0.45231112837791443, - 0.47188621759414673, - 0.49046969413757324, - 0.5075546503067017, - 0.5226750373840332, - 0.5354183912277222, - 0.5454371571540833, - 0.5524579882621765, - 0.5562894344329834, - 0.5568269491195679, - 0.5540558695793152, - 0.5480517745018005, - 0.5389784574508667, - 0.5270834565162659, - 0.5126911997795105, - 0.4961942434310913, - 0.4780425727367401, - 0.45873138308525085, - 0.4387873709201813, - 0.41875460743904114 - ], - "y": [ - 0.4388159513473511, - 0.43592721223831177, - 0.43340709805488586, - 0.43132442235946655, - 0.42973592877388, - 0.42868494987487793, - 0.42820021510124207, - 0.4282948970794678, - 0.4289664030075073, - 0.43019646406173706, - 0.43195149302482605, - 0.43418359756469727, - 0.4368319511413574, - 0.43982425332069397, - 0.4430789351463318, - 0.44650718569755554, - 0.45001548528671265, - 0.4535081684589386, - 0.45688992738723755, - 0.4600685238838196, - 0.4388159513473511, - 0.44254401326179504, - 0.4464602470397949, - 0.4504578113555908, - 0.45442768931388855, - 0.4582615792751312, - 0.46185487508773804, - 0.46510961651802063, - 0.4679369628429413, - 0.4702598452568054, - 0.4720148742198944, - 0.4731541574001312, - 0.4736466705799103, - 0.47347894310951233, - 0.4726555347442627, - 0.4711989462375641, - 0.4691489040851593, - 0.46656128764152527, - 0.4635067284107208, - 0.4600685238838196, - 0.4388159513473511, - 0.4487725496292114, - 0.45874741673469543, - 0.46846845746040344, - 0.47767049074172974, - 0.48610255122184753, - 0.4935346245765686, - 0.49976396560668945, - 0.5046206712722778, - 0.507972240447998, - 0.5097272396087646, - 0.5098378658294678, - 0.5083010196685791, - 0.5051586627960205, - 0.500496506690979, - 0.49444177746772766, - 0.48715952038764954, - 0.4788484573364258, - 0.4697352647781372, - 0.4600685238838196, - 0.4388159513473511, - 0.453937828540802, - 0.46893706917762756, - 0.4834045469760895, - 0.4969456195831299, - 0.5091909170150757, - 0.519806444644928, - 0.5285026431083679, - 0.5350422263145447, - 0.5392468571662903, - 0.5410019159317017, - 0.5402594208717346, - 0.5370396971702576, - 0.5314305424690247, - 0.5235849022865295, - 0.5137168765068054, - 0.502095639705658, - 0.4890381097793579, - 0.4749005436897278, - 0.4600685238838196, - 0.4388159513473511, - 0.45748013257980347, - 0.4759250283241272, - 0.49364757537841797, - 0.5101643204689026, - 0.5250247120857239, - 0.5378233790397644, - 0.5482112765312195, - 0.5559050440788269, - 0.560694694519043, - 0.5624497532844543, - 0.5611222386360168, - 0.5567483305931091, - 0.5494474768638611, - 0.5394186973571777, - 0.5269355773925781, - 0.5123386383056641, - 0.49602609872817993, - 0.47844284772872925, - 0.4600685238838196, - 0.4388159513473511, - 0.4590155780315399, - 0.4789540469646454, - 0.4980875253677368, - 0.5158941149711609, - 0.5318880081176758, - 0.54563307762146, - 0.5567542314529419, - 0.5649482607841492, - 0.5699915289878845, - 0.5717465877532959, - 0.5701654553413391, - 0.5652912855148315, - 0.5572571158409119, - 0.5462819933891296, - 0.5326653718948364, - 0.5167785882949829, - 0.49905508756637573, - 0.4799782931804657, - 0.4600685238838196, - 0.4388159513473511, - 0.45837777853012085, - 0.47769588232040405, - 0.49624329805374146, - 0.5135141015052795, - 0.5290371775627136, - 0.5423890948295593, - 0.5532057285308838, - 0.5611919164657593, - 0.5661298632621765, - 0.5678849220275879, - 0.5664091110229492, - 0.5617427825927734, - 0.554013192653656, - 0.5434311628341675, - 0.5302853584289551, - 0.5149343609809875, - 0.4977969229221344, - 0.47934049367904663, - 0.4600685238838196, - 0.4388159513473511, - 0.4556358754634857, - 0.4722868502140045, - 0.488314688205719, - 0.5032821893692017, - 0.5167810916900635, - 0.5284430980682373, - 0.5379502177238464, - 0.5450431108474731, - 0.549528181552887, - 0.5512832403182983, - 0.5502603054046631, - 0.5464872717857361, - 0.540067195892334, - 0.5311750173568726, - 0.5200534462928772, - 0.5070057511329651, - 0.49238789081573486, - 0.4765985906124115, - 0.4600685238838196, - 0.4388159513473511, - 0.45108696818351746, - 0.46331313252449036, - 0.4751609265804291, - 0.48630717396736145, - 0.4964478313922882, - 0.5053063035011292, - 0.5126410126686096, - 0.5182517766952515, - 0.5219855904579163, - 0.5237405896186829, - 0.5234689712524414, - 0.5211780667304993, - 0.5169304013252258, - 0.5108418464660645, - 0.5030784606933594, - 0.49385198950767517, - 0.4834141731262207, - 0.47204968333244324, - 0.4600685238838196, - 0.4388159513473511, - 0.44522401690483093, - 0.4517471492290497, - 0.4582073986530304, - 0.464428573846817, - 0.47024092078208923, - 0.47548598051071167, - 0.4800206124782562, - 0.48372113704681396, - 0.48648664355278015, - 0.48824167251586914, - 0.4889383316040039, - 0.4885576665401459, - 0.4871100187301636, - 0.4846349060535431, - 0.48119983077049255, - 0.4768984615802765, - 0.47184818983078003, - 0.4661867320537567, - 0.4600685238838196, - 0.4388159513473511, - 0.43868234753608704, - 0.4388422667980194, - 0.4392912983894348, - 0.4400172233581543, - 0.4410002529621124, - 0.4422135651111603, - 0.44362401962280273, - 0.44519320130348206, - 0.4468783140182495, - 0.4486333131790161, - 0.4504104256629944, - 0.45216110348701477, - 0.4538376033306122, - 0.4553942382335663, - 0.45678848028182983, - 0.4579823613166809, - 0.45894330739974976, - 0.4596450626850128, - 0.4600685238838196, - 0.4388159513473511, - 0.4321708679199219, - 0.42599689960479736, - 0.4204624891281128, - 0.41571852564811707, - 0.4118945002555847, - 0.4090946316719055, - 0.4073953926563263, - 0.40684303641319275, - 0.40745270252227783, - 0.4092077314853668, - 0.4120602309703827, - 0.41593244671821594, - 0.4207186996936798, - 0.4262884557247162, - 0.432489812374115, - 0.4391535520553589, - 0.4460979700088501, - 0.45313358306884766, - 0.4600685238838196, - 0.4388159513473511, - 0.4263952076435089, - 0.4146031141281128, - 0.4037613272666931, - 0.39416563510894775, - 0.3860777020454407, - 0.37971821427345276, - 0.375260591506958, - 0.372826486825943, - 0.3724822402000427, - 0.3742372691631317, - 0.37804368138313293, - 0.38379764556884766, - 0.39134225249290466, - 0.40047165751457214, - 0.4109368920326233, - 0.4224524199962616, - 0.43470415472984314, - 0.4473579227924347, - 0.4600685238838196, - 0.4388159513473511, - 0.42198121547698975, - 0.40589553117752075, - 0.39099767804145813, - 0.3776940703392029, - 0.3663475513458252, - 0.3572676181793213, - 0.3507019877433777, - 0.34682971239089966, - 0.345756471157074, - 0.34751150012016296, - 0.3520469069480896, - 0.35923904180526733, - 0.3688916563987732, - 0.38074150681495667, - 0.3944653272628784, - 0.4096887707710266, - 0.4259965717792511, - 0.4429439306259155, - 0.4600685238838196, - 0.4388159513473511, - 0.4194072484970093, - 0.40081778168678284, - 0.38355469703674316, - 0.36808881163597107, - 0.35484206676483154, - 0.3441757559776306, - 0.33638083934783936, - 0.33166995644569397, - 0.3301715850830078, - 0.3319266140460968, - 0.3368871510028839, - 0.344917893409729, - 0.3557998239994049, - 0.369236022233963, - 0.3848600685596466, - 0.40224575996398926, - 0.4209188222885132, - 0.44036993384361267, - 0.4600685238838196, - 0.4388159513473511, - 0.41895219683647156, - 0.39992010593414307, - 0.38223886489868164, - 0.36639076471328735, - 0.3528080880641937, - 0.3418613374233246, - 0.33384910225868225, - 0.3289899528026581, - 0.32741641998291016, - 0.32917147874832153, - 0.334207147359848, - 0.3423861563205719, - 0.3534853756427765, - 0.3672020435333252, - 0.3831620216369629, - 0.4009299576282501, - 0.4200211763381958, - 0.43991491198539734, - 0.4600685238838196, - 0.4388159513473511, - 0.4206654131412506, - 0.40329980850219727, - 0.38719287514686584, - 0.37278392910957336, - 0.36046603322029114, - 0.35057514905929565, - 0.3433811068534851, - 0.33908015489578247, - 0.3377895951271057, - 0.3395446240901947, - 0.3442973494529724, - 0.35191816091537476, - 0.36219918727874756, - 0.3748599886894226, - 0.3895551860332489, - 0.40588393807411194, - 0.42340087890625, - 0.4416281282901764, - 0.4600685238838196, - 0.4388159513473511, - 0.4243612289428711, - 0.41059064865112305, - 0.39787980914115906, - 0.38657549023628235, - 0.376986026763916, - 0.3693729341030121, - 0.3639439344406128, - 0.3608471155166626, - 0.3601669669151306, - 0.3619219660758972, - 0.36606431007385254, - 0.37248098850250244, - 0.380996972322464, - 0.3913799524307251, - 0.4033467471599579, - 0.41657090187072754, - 0.4306916892528534, - 0.4453239440917969, - 0.4600685238838196, - 0.4388159513473511, - 0.42963913083076477, - 0.42100250720977783, - 0.4131416380405426, - 0.40627095103263855, - 0.4005778431892395, - 0.3962176740169525, - 0.3933092951774597, - 0.39193210005760193, - 0.39212360978126526, - 0.39387863874435425, - 0.39714929461479187, - 0.40184634923934937, - 0.4078417122364044, - 0.41497182846069336, - 0.4230422079563141, - 0.4318327009677887, - 0.4411035478115082, - 0.45060184597969055, - 0.4600685238838196, - 0.4388159513473511, - 0.43592721223831177, - 0.43340712785720825, - 0.43132442235946655, - 0.42973592877388, - 0.4286849796772003, - 0.42820024490356445, - 0.4282948970794678, - 0.4289664328098297, - 0.43019649386405945, - 0.43195149302482605, - 0.43418362736701965, - 0.4368319809436798, - 0.43982428312301636, - 0.4430789649486542, - 0.44650718569755554, - 0.45001548528671265, - 0.4535081684589386, - 0.45688992738723755, - 0.4600685238838196 - ], - "z": [ - -0.3170015215873718, - -0.32148170471191406, - -0.33075183629989624, - -0.34455904364585876, - -0.36252665519714355, - -0.3841645419597626, - -0.4088825285434723, - -0.4360063672065735, - -0.46479618549346924, - -0.4944666624069214, - -0.5242084860801697, - -0.5532103180885315, - -0.5806811451911926, - -0.6058716177940369, - -0.6280945539474487, - -0.6467437744140625, - -0.6613106727600098, - -0.6713978052139282, - -0.6767300367355347, - -0.6771618723869324, - -0.3170015215873718, - -0.3210861086845398, - -0.32997143268585205, - -0.3434150815010071, - -0.3610503673553467, - -0.38239622116088867, - -0.40687036514282227, - -0.43380528688430786, - -0.46246621012687683, - -0.49207133054733276, - -0.521813154220581, - -0.5508803725242615, - -0.578480064868927, - -0.6038594245910645, - -0.6263262033462524, - -0.6452674865722656, - -0.6601666808128357, - -0.6706173419952393, - -0.6763343811035156, - -0.6771618723869324, - -0.3170015215873718, - -0.3205140233039856, - -0.3288428783416748, - -0.3417608141899109, - -0.3589155077934265, - -0.3798390328884125, - -0.40396061539649963, - -0.43062227964401245, - -0.4590968191623688, - -0.4886074662208557, - -0.518349289894104, - -0.5475109815597534, - -0.5752970576286316, - -0.6009496450424194, - -0.6237690448760986, - -0.6431326866149902, - -0.6585124135017395, - -0.669488787651062, - -0.6757622957229614, - -0.6771618723869324, - -0.3170015215873718, - -0.31982743740081787, - -0.32748842239379883, - -0.3397755026817322, - -0.3563534617424011, - -0.37677010893821716, - -0.40046852827072144, - -0.4268023371696472, - -0.4550531804561615, - -0.48445042967796326, - -0.5141922235488892, - -0.5434673428535461, - -0.5714771151542664, - -0.5974575877189636, - -0.6207000613212585, - -0.6405705809593201, - -0.6565271019935608, - -0.668134331703186, - -0.6750757694244385, - -0.6771618723869324, - -0.3170015215873718, - -0.3191007971763611, - -0.3260549306869507, - -0.33767426013946533, - -0.3536418080329895, - -0.373522013425827, - -0.3967725932598114, - -0.42275935411453247, - -0.4507734179496765, - -0.4800506830215454, - -0.5097925066947937, - -0.5391875505447388, - -0.5674341320991516, - -0.593761682510376, - -0.6174520254135132, - -0.6378589868545532, - -0.654425859451294, - -0.6667008399963379, - -0.6743490695953369, - -0.6771618723869324, - -0.3170015215873718, - -0.31841278076171875, - -0.32469773292541504, - -0.3356848359107971, - -0.3510744273662567, - -0.37044674158096313, - -0.3932732939720154, - -0.4189314842224121, - -0.4467214047908783, - -0.4758850038051605, - -0.5056267976760864, - -0.5351355671882629, - -0.5636062622070312, - -0.5902623534202576, - -0.6143767237663269, - -0.635291576385498, - -0.6524364352226257, - -0.6653436422348022, - -0.6736611127853394, - -0.6771618723869324, - -0.3170015215873718, - -0.31783801317214966, - -0.3235638439655304, - -0.33402279019355774, - -0.3489295244216919, - -0.3678774833679199, - -0.390349805355072, - -0.4157334864139557, - -0.44333615899086, - -0.4724048376083374, - -0.5021466612815857, - -0.5317503213882446, - -0.5604082942008972, - -0.5873388648033142, - -0.6118074655532837, - -0.6331467032432556, - -0.650774359703064, - -0.6642097234725952, - -0.6730862855911255, - -0.6771618723869324, - -0.3170015215873718, - -0.3174387216567993, - -0.3227761685848236, - -0.33286821842193604, - -0.34743955731391907, - -0.3660927414894104, - -0.3883189857006073, - -0.4135119915008545, - -0.4409845471382141, - -0.46998730301856995, - -0.49972909688949585, - -0.5293986797332764, - -0.5581867694854736, - -0.5853080749511719, - -0.6100227236747742, - -0.6316567063331604, - -0.6496198177337646, - -0.6634221076965332, - -0.6726870536804199, - -0.6771618723869324, - -0.3170015215873718, - -0.31725823879241943, - -0.32242006063461304, - -0.33234626054763794, - -0.3467659652233124, - -0.3652859032154083, - -0.38740086555480957, - -0.41250765323638916, - -0.43992140889167786, - -0.468894362449646, - -0.4986361563205719, - -0.5283355712890625, - -0.5571824312210083, - -0.5843899250030518, - -0.6092158555984497, - -0.6309831142425537, - -0.6490978598594666, - -0.663066029548645, - -0.6725065112113953, - -0.6771618723869324, - -0.3170015215873718, - -0.31731605529785156, - -0.32253414392471313, - -0.3325134515762329, - -0.3469817340373993, - -0.3655443787574768, - -0.38769498467445374, - -0.41282936930656433, - -0.44026196002960205, - -0.46924445033073425, - -0.49898624420166016, - -0.5286760926246643, - -0.5575041770935059, - -0.5846840143203735, - -0.6094743609428406, - -0.6311988830566406, - -0.6492650508880615, - -0.6631800532341003, - -0.6725643277168274, - -0.6771618723869324, - -0.3170015215873718, - -0.3176059424877167, - -0.3231060206890106, - -0.3333517014980316, - -0.34806349873542786, - -0.366840124130249, - -0.3891693949699402, - -0.414442241191864, - -0.4419693052768707, - -0.47099965810775757, - -0.5007414817810059, - -0.5303834676742554, - -0.5591170191764832, - -0.5861584544181824, - -0.6107701063156128, - -0.6322806477546692, - -0.6501033306121826, - -0.6637519598007202, - -0.6728542447090149, - -0.6771618723869324, - -0.3170015215873718, - -0.31809645891189575, - -0.3240737318992615, - -0.334770143032074, - -0.34989404678344727, - -0.3690328001976013, - -0.39166438579559326, - -0.41717150807380676, - -0.4448583722114563, - -0.4739697575569153, - -0.5037115812301636, - -0.5332725048065186, - -0.5618463158607483, - -0.5886534452438354, - -0.6129627823829651, - -0.6341111660003662, - -0.6515218019485474, - -0.6647196412086487, - -0.6733447313308716, - -0.6771618723869324, - -0.3170015215873718, - -0.3187345266342163, - -0.325332373380661, - -0.33661511540412903, - -0.35227495431900024, - -0.3718847632408142, - -0.3949095904827118, - -0.4207214117050171, - -0.4486161470413208, - -0.4778329133987427, - -0.507574737071991, - -0.5370302796363831, - -0.5653961896896362, - -0.5918986797332764, - -0.615814745426178, - -0.636492133140564, - -0.6533666849136353, - -0.6659783124923706, - -0.6739827990531921, - -0.6771618723869324, - -0.3170015215873718, - -0.31945091485977173, - -0.3267455995082855, - -0.33868664503097534, - -0.3549482822418213, - -0.3750869333744049, - -0.3985532820224762, - -0.42470723390579224, - -0.4528353810310364, - -0.4821704626083374, - -0.5119122862815857, - -0.5412495136260986, - -0.5693820118904114, - -0.5955423712730408, - -0.6190168857574463, - -0.6391654014587402, - -0.655438244342804, - -0.6673915386199951, - -0.6746991872787476, - -0.6771618723869324, - -0.3170015215873718, - -0.32016801834106445, - -0.32816025614738464, - -0.3407602310180664, - -0.3576242923736572, - -0.3782923221588135, - -0.4022006690502167, - -0.4286970794200897, - -0.4570588767528534, - -0.4865123927593231, - -0.516254186630249, - -0.545473039150238, - -0.5733718872070312, - -0.5991896986961365, - -0.6222223043441772, - -0.6418414115905762, - -0.657511830329895, - -0.6688061952590942, - -0.6754162907600403, - -0.6771618723869324, - -0.3170015215873718, - -0.3208081126213074, - -0.3294230103492737, - -0.34261125326156616, - -0.3600129783153534, - -0.3811536133289337, - -0.40545645356178284, - -0.43225860595703125, - -0.4608289301395416, - -0.4903881549835205, - -0.5201299786567688, - -0.5492430925369263, - -0.5769333839416504, - -0.6024454832077026, - -0.6250835657119751, - -0.6442301273345947, - -0.6593628525733948, - -0.6700689792633057, - -0.6760563850402832, - -0.6771618723869324, - -0.3170015215873718, - -0.3213018774986267, - -0.3303970694541931, - -0.34403902292251587, - -0.36185556650161743, - -0.38336068391799927, - -0.40796786546707153, - -0.4350058138370514, - -0.46373704075813293, - -0.49337780475616455, - -0.5231196284294128, - -0.5521512031555176, - -0.5796805620193481, - -0.6049569249153137, - -0.627290666103363, - -0.6460726857185364, - -0.6607906222343445, - -0.6710430383682251, - -0.6765501499176025, - -0.6771618723869324, - -0.3170015215873718, - -0.32159578800201416, - -0.3309768736362457, - -0.3448888659477234, - -0.3629522919654846, - -0.38467442989349365, - -0.40946269035339355, - -0.43664100766181946, - -0.46546798944473267, - -0.4951573312282562, - -0.5248991250991821, - -0.5538821220397949, - -0.581315815448761, - -0.6064517498016357, - -0.6286044120788574, - -0.6471694707870483, - -0.6616405248641968, - -0.6716228127479553, - -0.67684406042099, - -0.6771618723869324, - -0.3170015215873718, - -0.3216579556465149, - -0.33109956979751587, - -0.34506869316101074, - -0.36318439245224, - -0.3849523961544037, - -0.40977901220321655, - -0.436987042427063, - -0.46583428978919983, - -0.49553388357162476, - -0.525275707244873, - -0.5542484521865845, - -0.5816618204116821, - -0.6067680716514587, - -0.6288824081420898, - -0.6474015116691589, - -0.6618202924728394, - -0.6717454791069031, - -0.6769062280654907, - -0.6771618723869324, - -0.3170015215873718, - -0.32148170471191406, - -0.33075183629989624, - -0.34455904364585876, - -0.36252665519714355, - -0.3841645419597626, - -0.4088825285434723, - -0.4360063672065735, - -0.46479618549346924, - -0.4944666624069214, - -0.5242084860801697, - -0.5532103180885315, - -0.5806811451911926, - -0.6058716177940369, - -0.6280945539474487, - -0.6467437744140625, - -0.6613106727600098, - -0.6713978052139282, - -0.6767300367355347, - -0.6771618723869324 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.48392653465270996, - 0.46672871708869934, - 0.44788050651550293, - 0.42789602279663086, - 0.40732041001319885, - 0.386714905500412, - 0.3666415810585022, - 0.3476479649543762, - 0.33025217056274414, - 0.31492868065834045, - 0.30209553241729736, - 0.29210275411605835, - 0.2852228879928589, - 0.28164365887641907, - 0.2814626693725586, - 0.2846848666667938, - 0.29122233390808105, - 0.3008967638015747, - 0.31344425678253174, - 0.32852259278297424, - 0.48392653465270996, - 0.4746492803096771, - 0.4635055959224701, - 0.45079943537712097, - 0.43687739968299866, - 0.42211923003196716, - 0.4069274663925171, - 0.3917165696620941, - 0.37690138816833496, - 0.36288607120513916, - 0.3500528931617737, - 0.33875197172164917, - 0.32929152250289917, - 0.32192957401275635, - 0.31686699390411377, - 0.31424185633659363, - 0.31412577629089355, - 0.31652188301086426, - 0.3213648498058319, - 0.32852256298065186, - 0.48392653465270996, - 0.48346036672592163, - 0.48088741302490234, - 0.47627782821655273, - 0.46975740790367126, - 0.4615039527416229, - 0.45174261927604675, - 0.4407396912574768, - 0.4287952780723572, - 0.41623517870903015, - 0.40340203046798706, - 0.3906458616256714, - 0.37831464409828186, - 0.366744726896286, - 0.35625171661376953, - 0.34712183475494385, - 0.33960413932800293, - 0.3339036703109741, - 0.33017590641975403, - 0.32852256298065186, - 0.48392653465270996, - 0.4922071099281311, - 0.4981423020362854, - 0.5015702247619629, - 0.502397358417511, - 0.5006011724472046, - 0.4962306022644043, - 0.48940491676330566, - 0.4803102910518646, - 0.46919482946395874, - 0.45636165142059326, - 0.4421609044075012, - 0.4269798696041107, - 0.41123270988464355, - 0.3953489363193512, - 0.37976181507110596, - 0.3648965358734131, - 0.3511585593223572, - 0.3389226496219635, - 0.32852256298065186, - 0.4839265048503876, - 0.4999416768550873, - 0.5134004950523376, - 0.5239357948303223, - 0.5312602519989014, - 0.5351740717887878, - 0.5355704426765442, - 0.5324386358261108, - 0.5258640646934509, - 0.5160260200500488, - 0.5031928420066833, - 0.48771464824676514, - 0.4700135886669159, - 0.45057255029678345, - 0.42992183566093445, - 0.40862470865249634, - 0.38726210594177246, - 0.3664167523384094, - 0.3466572165489197, - 0.32852256298065186, - 0.4839265048503876, - 0.505825936794281, - 0.5250084400177002, - 0.5409508347511292, - 0.5532183051109314, - 0.5614761114120483, - 0.5654990673065186, - 0.5651775002479553, - 0.5605200529098511, - 0.5516538023948669, - 0.5388206243515015, - 0.5223706364631653, - 0.502752423286438, - 0.4805012047290802, - 0.45622390508651733, - 0.43058276176452637, - 0.40427717566490173, - 0.378024697303772, - 0.3525414764881134, - 0.32852256298065186, - 0.4839265048503876, - 0.509222149848938, - 0.5317083597183228, - 0.5507715940475464, - 0.5658920407295227, - 0.5766571164131165, - 0.5827732682228088, - 0.5840736627578735, - 0.5805227160453796, - 0.5722174644470215, - 0.559384286403656, - 0.5423732995986938, - 0.5216485857963562, - 0.4977753758430481, - 0.47140491008758545, - 0.4432564973831177, - 0.41409793496131897, - 0.38472458720207214, - 0.3559377193450928, - 0.32852256298065186, - 0.4839265048503876, - 0.5097624063491821, - 0.5327740907669067, - 0.5523338317871094, - 0.5679080486297607, - 0.5790719985961914, - 0.5855211019515991, - 0.5870794653892517, - 0.5837045907974243, - 0.5754885077476501, - 0.5626553297042847, - 0.5455551743507385, - 0.5246543884277344, - 0.5005232095718384, - 0.473819762468338, - 0.4452725052833557, - 0.4156601130962372, - 0.3857903480529785, - 0.3564779758453369, - 0.32852256298065186, - 0.4839265048503876, - 0.5073881149291992, - 0.528090238571167, - 0.5454681515693665, - 0.5590478777885437, - 0.5684589743614197, - 0.5734447240829468, - 0.5738692283630371, - 0.5697207450866699, - 0.5611125230789185, - 0.5482794046401978, - 0.5315713882446289, - 0.5114441514015198, - 0.4884468913078308, - 0.46320679783821106, - 0.43641236424446106, - 0.40879446268081665, - 0.38110649585723877, - 0.3541036546230316, - 0.32852256298065186, - 0.4839265048503876, - 0.5023565292358398, - 0.5181642770767212, - 0.5309186577796936, - 0.5402716398239136, - 0.545968234539032, - 0.5478529334068298, - 0.5458744168281555, - 0.5400866270065308, - 0.5306473970413208, - 0.5178142189979553, - 0.501937210559845, - 0.48344936966896057, - 0.4628550708293915, - 0.440716028213501, - 0.41763612627983093, - 0.3942449688911438, - 0.37118056416511536, - 0.34907206892967224, - 0.32852256298065186, - 0.48392653465270996, - 0.4952129125595093, - 0.5040719509124756, - 0.5102619528770447, - 0.5136141180992126, - 0.5140369534492493, - 0.5115189552307129, - 0.5061287879943848, - 0.4980134963989258, - 0.48739442229270935, - 0.47456127405166626, - 0.45986407995224, - 0.44370371103286743, - 0.42652103304862976, - 0.4087847173213959, - 0.3909785747528076, - 0.3735882639884949, - 0.35708820819854736, - 0.34192848205566406, - 0.32852256298065186, - 0.48392653465270996, - 0.4867314100265503, - 0.4873403012752533, - 0.48573654890060425, - 0.4819639325141907, - 0.4761253595352173, - 0.46838003396987915, - 0.4589393138885498, - 0.44806063175201416, - 0.4360407888889313, - 0.4232076406478882, - 0.40991121530532837, - 0.39651423692703247, - 0.3833821415901184, - 0.3708731234073639, - 0.35932838916778564, - 0.34906288981437683, - 0.34035658836364746, - 0.3334469795227051, - 0.32852256298065186, - 0.48392653465270996, - 0.4778311252593994, - 0.4697825014591217, - 0.4600001573562622, - 0.44875097274780273, - 0.436341792345047, - 0.42311108112335205, - 0.4094197452068329, - 0.3956412374973297, - 0.38215142488479614, - 0.36931827664375305, - 0.3574918210506439, - 0.34699469804763794, - 0.3381131887435913, - 0.3310895562171936, - 0.3261154294013977, - 0.3233264684677124, - 0.3227987587451935, - 0.3245466947555542, - 0.32852256298065186, - 0.48392653465270996, - 0.46947652101516724, - 0.45330116152763367, - 0.4358416795730591, - 0.41757431626319885, - 0.39899739623069763, - 0.38061755895614624, - 0.36293625831604004, - 0.3464357256889343, - 0.33156609535217285, - 0.3187329173088074, - 0.30828630924224854, - 0.3005111813545227, - 0.2956196665763855, - 0.29374516010284424, - 0.2949388027191162, - 0.2991679906845093, - 0.30631744861602783, - 0.316192090511322, - 0.32852256298065186, - 0.48392653465270996, - 0.46257296204566956, - 0.43968236446380615, - 0.41587913036346436, - 0.3918125331401825, - 0.3681390583515167, - 0.3455044627189636, - 0.3245261311531067, - 0.30577635765075684, - 0.2897665202617645, - 0.27693337202072144, - 0.26762694120407104, - 0.26210108399391174, - 0.2605065703392029, - 0.26288682222366333, - 0.2691769599914551, - 0.27920544147491455, - 0.29269862174987793, - 0.30928853154182434, - 0.32852259278297424, - 0.48392653465270996, - 0.4578685462474823, - 0.43040186166763306, - 0.4022756814956665, - 0.3742572069168091, - 0.3471107482910156, - 0.32157671451568604, - 0.2983516752719879, - 0.2780691087245941, - 0.2612823247909546, - 0.2484491765499115, - 0.23991970717906952, - 0.23592661321163177, - 0.2365788072347641, - 0.24185849726200104, - 0.25162166357040405, - 0.2656019926071167, - 0.28341811895370483, - 0.3045841157436371, - 0.32852259278297424, - 0.48392653465270996, - 0.4558730721473694, - 0.42646536231040955, - 0.3965055048465729, - 0.36681073904037476, - 0.3381911516189575, - 0.3114272654056549, - 0.28724923729896545, - 0.2663165330886841, - 0.24920018017292023, - 0.23636701703071594, - 0.22816713154315948, - 0.22482417523860931, - 0.22642937302589417, - 0.23293888568878174, - 0.24417521059513092, - 0.25983181595802307, - 0.27948158979415894, - 0.30258864164352417, - 0.32852259278297424, - 0.48392653465270996, - 0.4568027853965759, - 0.4282994270324707, - 0.3991938829421997, - 0.3702801465988159, - 0.3423469066619873, - 0.3161560297012329, - 0.29242199659347534, - 0.2717922031879425, - 0.25482940673828125, - 0.24199622869491577, - 0.2336428016424179, - 0.2299969494342804, - 0.23115812242031097, - 0.23709464073181152, - 0.2476446032524109, - 0.2625201940536499, - 0.2813156843185425, - 0.3035183548927307, - 0.32852259278297424, - 0.48392653465270996, - 0.4605569541454315, - 0.4357053339481354, - 0.41004955768585205, - 0.3842894434928894, - 0.35912764072418213, - 0.3352505564689636, - 0.3133094310760498, - 0.29390281438827515, - 0.2775599956512451, - 0.264726847410202, - 0.25575339794158936, - 0.25088435411453247, - 0.2502526640892029, - 0.2538754343986511, - 0.2616539001464844, - 0.27337586879730225, - 0.28872159123420715, - 0.3072724938392639, - 0.32852259278297424, - 0.48392653465270996, - 0.46672871708869934, - 0.44788050651550293, - 0.42789605259895325, - 0.40732043981552124, - 0.3867149353027344, - 0.3666415810585022, - 0.3476479649543762, - 0.33025217056274414, - 0.31492871046066284, - 0.30209556221961975, - 0.29210275411605835, - 0.2852229177951813, - 0.28164368867874146, - 0.281462699174881, - 0.2846848964691162, - 0.29122236371040344, - 0.3008967638015747, - 0.3134442865848541, - 0.32852259278297424 - ], - "y": [ - 0.5582742691040039, - 0.53828364610672, - 0.5163758993148804, - 0.4931487739086151, - 0.46923571825027466, - 0.44528910517692566, - 0.42196208238601685, - 0.3998909592628479, - 0.37967780232429504, - 0.36187395453453064, - 0.34696507453918457, - 0.33535781502723694, - 0.3273687958717346, - 0.32321596145629883, - 0.3230125606060028, - 0.32676416635513306, - 0.33436840772628784, - 0.3456178903579712, - 0.3602057695388794, - 0.37773412466049194, - 0.5582742691040039, - 0.5332379341125488, - 0.506422221660614, - 0.4785585105419159, - 0.45040690898895264, - 0.422735333442688, - 0.3962985873222351, - 0.37181776762008667, - 0.34996065497398376, - 0.331323504447937, - 0.31641459465026855, - 0.30564066767692566, - 0.2992956042289734, - 0.2975524663925171, - 0.30045878887176514, - 0.30793535709381104, - 0.3197781443595886, - 0.33566418290138245, - 0.355160117149353, - 0.37773412466049194, - 0.5582742691040039, - 0.5307719111442566, - 0.5015574097633362, - 0.47142767906188965, - 0.4412045478820801, - 0.4117124676704407, - 0.3837558329105377, - 0.3580973148345947, - 0.33543670177459717, - 0.31639230251312256, - 0.3014833927154541, - 0.29111671447753906, - 0.28557515144348145, - 0.2850096821784973, - 0.2894359230995178, - 0.2987329959869385, - 0.31264734268188477, - 0.330799400806427, - 0.3526940941810608, - 0.37773412466049194, - 0.5582742691040039, - 0.5311527848243713, - 0.5023087859153748, - 0.47252902388572693, - 0.44262582063674927, - 0.41341492533683777, - 0.3856930434703827, - 0.3602164089679718, - 0.337679922580719, - 0.31869837641716003, - 0.30378949642181396, - 0.2933599352836609, - 0.28769421577453613, - 0.2869469225406647, - 0.29113835096359253, - 0.30015426874160767, - 0.31374868750572205, - 0.3315507769584656, - 0.35307496786117554, - 0.37773412466049194, - 0.5582742691040039, - 0.5343393087387085, - 0.5085948705673218, - 0.481743186712265, - 0.45451676845550537, - 0.4276582598686218, - 0.4019002914428711, - 0.3779454529285431, - 0.35644716024398804, - 0.3379918932914734, - 0.32308298349380493, - 0.31212717294692993, - 0.3054232597351074, - 0.3031541705131531, - 0.305381715297699, - 0.31204521656036377, - 0.32296285033226013, - 0.3378368318080902, - 0.3562614321708679, - 0.37773412466049194, - 0.5582742691040039, - 0.5399860739707947, - 0.5197344422340393, - 0.49807167053222656, - 0.47558876872062683, - 0.4528989791870117, - 0.4306212365627289, - 0.40936318039894104, - 0.38970470428466797, - 0.37218204140663147, - 0.3572731614112854, - 0.34538471698760986, - 0.33684101700782776, - 0.33187511563301086, - 0.33062243461608887, - 0.33311718702316284, - 0.3392913341522217, - 0.34897640347480774, - 0.3619082570075989, - 0.37773412466049194, - 0.5582742691040039, - 0.5474812984466553, - 0.5345203876495361, - 0.5197450518608093, - 0.5035583972930908, - 0.48640188574790955, - 0.46874356269836426, - 0.4510650634765625, - 0.43384861946105957, - 0.4175638258457184, - 0.4026549458503723, - 0.38952863216400146, - 0.3785429000854492, - 0.36999744176864624, - 0.3641253411769867, - 0.36108681559562683, - 0.36096471548080444, - 0.36376234889030457, - 0.3694034516811371, - 0.37773412466049194, - 0.5582742691040039, - 0.5560126304626465, - 0.5513503551483154, - 0.5444146394729614, - 0.5353946089744568, - 0.5245363712310791, - 0.5121361017227173, - 0.4985319972038269, - 0.48409515619277954, - 0.4692194163799286, - 0.4543105363845825, - 0.43977516889572144, - 0.4260098338127136, - 0.41338998079299927, - 0.40225985646247864, - 0.3929230868816376, - 0.38563430309295654, - 0.38059237599372864, - 0.3779348134994507, - 0.37773412466049194, - 0.5582742691040039, - 0.5646556615829468, - 0.5684006810188293, - 0.5694071650505066, - 0.5676475763320923, - 0.5631700158119202, - 0.5560965538024902, - 0.5466201901435852, - 0.5349993705749512, - 0.5215511322021484, - 0.50664222240448, - 0.49067941308021545, - 0.4740980565547943, - 0.4573504626750946, - 0.4408935010433197, - 0.4251760244369507, - 0.4106267988681793, - 0.39764267206192017, - 0.386577844619751, - 0.37773412466049194, - 0.5582742691040039, - 0.5724737644195557, - 0.5838236212730408, - 0.5920141935348511, - 0.5968221426010132, - 0.5981162786483765, - 0.5958611965179443, - 0.5901186466217041, - 0.5810450315475464, - 0.5688880085945129, - 0.5539790987968445, - 0.5367250442504883, - 0.5175964832305908, - 0.4971151351928711, - 0.4758397340774536, - 0.4543505907058716, - 0.4332338869571686, - 0.4130656123161316, - 0.39439594745635986, - 0.37773412466049194, - 0.5582742691040039, - 0.5786197185516357, - 0.5959478616714478, - 0.6097860336303711, - 0.6197567582130432, - 0.625588059425354, - 0.6271209120750427, - 0.624313473701477, - 0.6172423362731934, - 0.6061003804206848, - 0.5911914706230164, - 0.5729223489761353, - 0.5517913103103638, - 0.5283748507499695, - 0.5033115744590759, - 0.4772852063179016, - 0.4510056972503662, - 0.4251898527145386, - 0.40054190158843994, - 0.37773409485816956, - 0.5582742691040039, - 0.5824275016784668, - 0.6034595966339111, - 0.6207967400550842, - 0.6339661478996277, - 0.6426085233688354, - 0.6464881896972656, - 0.6454992890357971, - 0.6396687030792236, - 0.6291556358337402, - 0.6142467260360718, - 0.5953487157821655, - 0.5729771256446838, - 0.5477421283721924, - 0.5203320384025574, - 0.4914945960044861, - 0.46201640367507935, - 0.43270155787467957, - 0.4043496549129486, - 0.37773409485816956, - 0.5582742691040039, - 0.5834845304489136, - 0.6055446863174438, - 0.6238532066345215, - 0.6379104852676392, - 0.6473332047462463, - 0.6518642902374268, - 0.651380181312561, - 0.6458940505981445, - 0.6355555057525635, - 0.620646595954895, - 0.6015740633010864, - 0.5788580179214478, - 0.5531181693077087, - 0.5250567197799683, - 0.49543896317481995, - 0.4650728404521942, - 0.43478670716285706, - 0.405406653881073, - 0.37773409485816956, - 0.5582742691040039, - 0.5816761255264282, - 0.6019773483276367, - 0.6186240911483765, - 0.6311623454093933, - 0.6392500400543213, - 0.6426665782928467, - 0.6413188576698303, - 0.6352435350418091, - 0.6246063709259033, - 0.6096974611282349, - 0.590923547744751, - 0.568796694278717, - 0.5439205169677734, - 0.5169735550880432, - 0.4886907935142517, - 0.4598437547683716, - 0.43121933937072754, - 0.4035983085632324, - 0.37773409485816956, - 0.5582742691040039, - 0.5771984457969666, - 0.5931440591812134, - 0.6056761741638184, - 0.6144529581069946, - 0.6192350387573242, - 0.619891881942749, - 0.616405725479126, - 0.6088714599609375, - 0.5974947214126587, - 0.582585871219635, - 0.5645514726638794, - 0.5438835620880127, - 0.5211458206176758, - 0.49695855379104614, - 0.4719814360141754, - 0.4468958377838135, - 0.4223860502243042, - 0.39912059903144836, - 0.37773412466049194, - 0.5582742691040039, - 0.5705366134643555, - 0.5800020694732666, - 0.5864125490188599, - 0.5895931720733643, - 0.5894571542739868, - 0.5860081911087036, - 0.579340398311615, - 0.5696356892585754, - 0.5571586489677429, - 0.5422497987747192, - 0.5253157019615173, - 0.5068182349205017, - 0.4872620701789856, - 0.46718060970306396, - 0.44712159037590027, - 0.427632212638855, - 0.4092440605163574, - 0.3924587368965149, - 0.37773412466049194, - 0.5582742691040039, - 0.5624125003814697, - 0.5639755129814148, - 0.5629206299781799, - 0.5592767000198364, - 0.5531431436538696, - 0.5446871519088745, - 0.5341395139694214, - 0.5217878222465515, - 0.507969081401825, - 0.4930601716041565, - 0.4774678349494934, - 0.4616173207759857, - 0.4459410607814789, - 0.4308665990829468, - 0.4168051779270172, - 0.40414029359817505, - 0.3932174742221832, - 0.38433465361595154, - 0.37773412466049194, - 0.5582742691040039, - 0.5537065267562866, - 0.5468010902404785, - 0.537746250629425, - 0.5267890095710754, - 0.5142282843589783, - 0.5004066824913025, - 0.48570123314857483, - 0.47051307559013367, - 0.45525646209716797, - 0.4403475522994995, - 0.42619308829307556, - 0.41317909955978394, - 0.40166059136390686, - 0.3919517397880554, - 0.38431745767593384, - 0.37896591424942017, - 0.37604308128356934, - 0.3756287097930908, - 0.37773412466049194, - 0.5582742691040039, - 0.5453621745109558, - 0.5303399562835693, - 0.5136173367500305, - 0.4956505596637726, - 0.476929634809494, - 0.45796525478363037, - 0.43927469849586487, - 0.4213678240776062, - 0.4047330617904663, - 0.38982415199279785, - 0.3770478367805481, - 0.3667525351047516, - 0.35921913385391235, - 0.35465309023857117, - 0.3531789779663086, - 0.35483700037002563, - 0.35958191752433777, - 0.3672843277454376, - 0.37773412466049194, - 0.5582742691040039, - 0.53828364610672, - 0.5163758993148804, - 0.4931487441062927, - 0.46923571825027466, - 0.44528910517692566, - 0.42196208238601685, - 0.3998909592628479, - 0.37967777252197266, - 0.36187392473220825, - 0.3469650447368622, - 0.33535778522491455, - 0.3273687958717346, - 0.32321596145629883, - 0.3230125308036804, - 0.32676416635513306, - 0.33436840772628784, - 0.3456178903579712, - 0.3602057695388794, - 0.37773412466049194 - ], - "z": [ - -1.0854313373565674, - -1.0924625396728516, - -1.0918338298797607, - -1.0835623741149902, - -1.0678738355636597, - -1.0451960563659668, - -1.0161476135253906, - -0.9815208911895752, - -0.9422604441642761, - -0.8994372487068176, - -0.8542193174362183, - -0.80784010887146, - -0.7615647315979004, - -0.7166554927825928, - -0.6743373274803162, - -0.6357645988464355, - -0.6019895076751709, - -0.5739332437515259, - -0.552361249923706, - -0.5378618240356445, - -1.0854313373565674, - -1.0918782949447632, - -1.0906811952590942, - -1.081872820854187, - -1.0656933784484863, - -1.0425843000411987, - -1.0131757259368896, - -0.9782699942588806, - -0.938819169998169, - -0.8958994746208191, - -0.8506815433502197, - -0.8043988347053528, - -0.7583138346672058, - -0.7136836051940918, - -0.6717255711555481, - -0.633584201335907, - -0.6002999544143677, - -0.5727806091308594, - -0.5517769455909729, - -0.5378618240356445, - -1.0854313373565674, - -1.0901906490325928, - -1.0873521566390991, - -1.0769929885864258, - -1.0593960285186768, - -1.0350409746170044, - -1.0045924186706543, - -0.9688806533813477, - -0.9288800954818726, - -0.8856816291809082, - -0.8404636979103088, - -0.7944597005844116, - -0.7489245533943176, - -0.7051002979278564, - -0.6641823053359985, - -0.6272867918014526, - -0.5954201221466064, - -0.5694515109062195, - -0.5500893592834473, - -0.5378618240356445, - -1.0854313373565674, - -1.0875827074050903, - -1.0822073221206665, - -1.0694518089294434, - -1.0496639013290405, - -1.023383617401123, - -0.9913276433944702, - -0.9543704986572266, - -0.9135201573371887, - -0.8698909878730774, - -0.824673056602478, - -0.7790998220443726, - -0.7344143390655518, - -0.6918355226516724, - -0.6525249481201172, - -0.6175547242164612, - -0.5878788232803345, - -0.5643067359924316, - -0.5474814176559448, - -0.5378618240356445, - -1.0854313373565674, - -1.0843369960784912, - -1.075804352760315, - -1.0600662231445312, - -1.0375518798828125, - -1.0088753700256348, - -0.974819004535675, - -0.9363117218017578, - -0.894403874874115, - -0.8502386808395386, - -0.8050207495689392, - -0.7599835395812988, - -0.716355562210083, - -0.675326943397522, - -0.6380167007446289, - -0.6054426431655884, - -0.5784932971000671, - -0.5579037666320801, - -0.5442357063293457, - -0.5378618836402893, - -1.0854313373565674, - -1.0808051824569702, - -1.0688371658325195, - -1.0498535633087158, - -1.0243723392486572, - -0.9930884838104248, - -0.9568554162979126, - -0.9166614413261414, - -0.8736028671264648, - -0.8288543224334717, - -0.7836363911628723, - -0.7391825318336487, - -0.6967052817344666, - -0.6573632955551147, - -0.622229814529419, - -0.5922631025314331, - -0.5682805776596069, - -0.5509364604949951, - -0.5407038927078247, - -0.5378618836402893, - -1.0854313373565674, - -1.077370047569275, - -1.0620605945587158, - -1.0399203300476074, - -1.0115535259246826, - -0.9777337312698364, - -0.9393835067749023, - -0.8975489735603333, - -0.8533712029457092, - -0.8080553412437439, - -0.7628374099731445, - -0.7189508676528931, - -0.6775928139686584, - -0.6398913860321045, - -0.6068750619888306, - -0.5794442892074585, - -0.5583474636077881, - -0.5441598892211914, - -0.5372687578201294, - -0.5378618836402893, - -1.0854313373565674, - -1.0744037628173828, - -1.0562089681625366, - -1.0313431024551392, - -1.000484585762024, - -0.9644749760627747, - -0.9242966175079346, - -0.8810454607009888, - -0.8359012603759766, - -0.7900955080986023, - -0.7448775768280029, - -0.7014809250831604, - -0.661089301109314, - -0.6248044967651367, - -0.5936163067817688, - -0.5683753490447998, - -0.5497702360153198, - -0.5383083820343018, - -0.5343024730682373, - -0.5378618836402893, - -1.0854313373565674, - -1.072227954864502, - -1.0519165992736816, - -1.0250513553619385, - -0.9923649430274963, - -0.9547490477561951, - -0.9132296442985535, - -0.8689393997192383, - -0.8230862617492676, - -0.7769210934638977, - -0.7317031621932983, - -0.6886659264564514, - -0.6489832401275635, - -0.6137375831604004, - -0.5838903784751892, - -0.560255765914917, - -0.5434784293174744, - -0.5340160131454468, - -0.5321266651153564, - -0.5378618836402893, - -1.0854313373565674, - -1.0710783004760742, - -1.0496485233306885, - -1.0217267274856567, - -0.9880746006965637, - -0.9496098756790161, - -0.9073818922042847, - -0.8625425100326538, - -0.8163148164749146, - -0.7699598073959351, - -0.7247418761253357, - -0.6818944811820984, - -0.6425864100456238, - -0.6078898310661316, - -0.5787512063980103, - -0.5559653639793396, - -0.5401538610458374, - -0.5317479372024536, - -0.5309768915176392, - -0.5378618836402893, - -1.0854313373565674, - -1.0710792541503906, - -1.0496505498886108, - -1.0217297077178955, - -0.9880783557891846, - -0.949614405632019, - -0.9073870778083801, - -0.8625481724739075, - -0.8163207769393921, - -0.7699659466743469, - -0.7247480154037476, - -0.6819004416465759, - -0.6425920128822327, - -0.6078949570655823, - -0.5787557363510132, - -0.5559691190719604, - -0.5401567816734314, - -0.531749963760376, - -0.5309779644012451, - -0.5378618836402893, - -1.0854313373565674, - -1.0722308158874512, - -1.0519224405288696, - -1.0250598192214966, - -0.9923758506774902, - -0.9547621607780457, - -0.9132445454597473, - -0.868955671787262, - -0.8231034874916077, - -0.7769388556480408, - -0.7317209243774414, - -0.6886831521987915, - -0.6489995121955872, - -0.6137524843215942, - -0.583903431892395, - -0.5602666735649109, - -0.5434868931770325, - -0.5340217351913452, - -0.5321295857429504, - -0.5378618836402893, - -1.0854313373565674, - -1.0744082927703857, - -1.056217908859253, - -1.0313562154769897, - -1.0005013942718506, - -0.9644952416419983, - -0.9243196249008179, - -0.8810706734657288, - -0.8359279632568359, - -0.790122926235199, - -0.7449049949645996, - -0.7015076279640198, - -0.661114513874054, - -0.6248275637626648, - -0.5936365127563477, - -0.568392276763916, - -0.5497833490371704, - -0.5383173227310181, - -0.5343070030212402, - -0.5378618836402893, - -1.0854313373565674, - -1.0773756504058838, - -1.062071681022644, - -1.0399366617202759, - -1.0115745067596436, - -0.9777589440345764, - -0.9394121766090393, - -0.8975803256034851, - -0.8534044027328491, - -0.8080894351005554, - -0.762871503829956, - -0.718984067440033, - -0.6776241660118103, - -0.6399201154708862, - -0.6069002747535706, - -0.5794653296470642, - -0.5583637356758118, - -0.5441710352897644, - -0.5372743606567383, - -0.5378618836402893, - -1.0854313373565674, - -1.0808112621307373, - -1.0688492059707642, - -1.0498712062835693, - -1.024395227432251, - -0.9931159019470215, - -0.9568865895271301, - -0.9166955351829529, - -0.8736389875411987, - -0.8288914561271667, - -0.7836735248565674, - -0.7392186522483826, - -0.6967393755912781, - -0.657394528388977, - -0.6222572326660156, - -0.5922859907150269, - -0.56829833984375, - -0.5509486198425293, - -0.5407099723815918, - -0.5378618836402893, - -1.0854313373565674, - -1.0843429565429688, - -1.0758161544799805, - -1.0600835084915161, - -1.037574052810669, - -1.0089020729064941, - -0.9748493432998657, - -0.9363449215888977, - -0.8944389820098877, - -0.8502747416496277, - -0.8050568103790283, - -0.7600186467170715, - -0.7163887619972229, - -0.6753572225570679, - -0.6380433440208435, - -0.6054649353027344, - -0.5785105228424072, - -0.5579155087471008, - -0.5442416667938232, - -0.5378618836402893, - -1.0854313373565674, - -1.087587833404541, - -1.0822174549102783, - -1.0694665908813477, - -1.0496830940246582, - -1.0234066247940063, - -0.9913538694381714, - -0.9543991088867188, - -0.9135504961013794, - -0.8699221611022949, - -0.8247042298316956, - -0.7791301012039185, - -0.7344430088996887, - -0.6918617486953735, - -0.6525479555130005, - -0.6175739765167236, - -0.5878937244415283, - -0.5643168687820435, - -0.5474865436553955, - -0.5378618240356445, - -1.0854313373565674, - -1.0901944637298584, - -1.0873596668243408, - -1.0770039558410645, - -1.0594100952148438, - -1.0350579023361206, - -1.004611611366272, - -0.9689017534255981, - -0.9289023280143738, - -0.885704517364502, - -0.8404865860939026, - -0.7944819927215576, - -0.7489455938339233, - -0.7051194906234741, - -0.6641992330551147, - -0.6273008584976196, - -0.5954310297966003, - -0.5694589614868164, - -0.5500931739807129, - -0.5378618240356445, - -1.0854313373565674, - -1.0918803215026855, - -1.0906851291656494, - -1.081878662109375, - -1.065700888633728, - -1.042593240737915, - -1.0131858587265015, - -0.9782811403274536, - -0.9388309717178345, - -0.8959115743637085, - -0.8506936430931091, - -0.8044106364250183, - -0.7583249807357788, - -0.7136937975883484, - -0.6717345714569092, - -0.6335916519165039, - -0.6003056764602661, - -0.5727845430374146, - -0.5517789125442505, - -0.5378618240356445, - -1.0854313373565674, - -1.0924625396728516, - -1.0918338298797607, - -1.0835623741149902, - -1.0678738355636597, - -1.0451960563659668, - -1.0161476135253906, - -0.9815208911895752, - -0.9422604441642761, - -0.8994372487068176, - -0.8542193174362183, - -0.80784010887146, - -0.7615647315979004, - -0.7166554927825928, - -0.6743373274803162, - -0.6357645988464355, - -0.6019895076751709, - -0.5739332437515259, - -0.552361249923706, - -0.5378618240356445 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.3714556097984314, - 0.3633890748023987, - 0.35553979873657227, - 0.3481219708919525, - 0.3413378894329071, - 0.3353726267814636, - 0.3303888738155365, - 0.3265225887298584, - 0.323879212141037, - 0.3225308954715729, - 0.3225143849849701, - 0.32383012771606445, - 0.32644224166870117, - 0.33027946949005127, - 0.33523717522621155, - 0.34118008613586426, - 0.3479461073875427, - 0.35535067319869995, - 0.3631918132305145, - 0.37125563621520996, - 0.3714556097984314, - 0.351140558719635, - 0.33137694001197815, - 0.31270381808280945, - 0.295630544424057, - 0.2806228995323181, - 0.2680901885032654, - 0.25837427377700806, - 0.2517401874065399, - 0.24836891889572144, - 0.24835240840911865, - 0.2516911029815674, - 0.25829392671585083, - 0.26798078417778015, - 0.28048741817474365, - 0.29547274112701416, - 0.31252792477607727, - 0.33118778467178345, - 0.35094332695007324, - 0.37125563621520996, - 0.3714556396007538, - 0.34109339118003845, - 0.3115566074848175, - 0.2836509943008423, - 0.2581377625465393, - 0.23571279644966125, - 0.21698780357837677, - 0.20247358083724976, - 0.19256600737571716, - 0.187535360455513, - 0.18751884996891022, - 0.19251692295074463, - 0.20239323377609253, - 0.21687841415405273, - 0.23557732999324799, - 0.2579799294471741, - 0.2834751307964325, - 0.3113674521446228, - 0.3408961296081543, - 0.37125563621520996, - 0.3714556396007538, - 0.3343362808227539, - 0.2982266843318939, - 0.26411187648773193, - 0.23292240500450134, - 0.20550905168056488, - 0.18261951208114624, - 0.1648782193660736, - 0.15276910364627838, - 0.1466224640607834, - 0.1466059535741806, - 0.15272001922130585, - 0.16479787230491638, - 0.1825101226568222, - 0.20537355542182922, - 0.2327645719051361, - 0.26393601298332214, - 0.2980375289916992, - 0.33413898944854736, - 0.37125563621520996, - 0.3714556396007538, - 0.33160144090652466, - 0.2928316593170166, - 0.256203830242157, - 0.2227170169353485, - 0.19328467547893524, - 0.1687096506357193, - 0.14966227114200592, - 0.13666211068630219, - 0.13006378710269928, - 0.1300472766160965, - 0.13661302626132965, - 0.1495819240808487, - 0.16860026121139526, - 0.19314920902252197, - 0.22255916893482208, - 0.2560279369354248, - 0.2926425337791443, - 0.3314042091369629, - 0.37125563621520996, - 0.3714556396007538, - 0.3331853151321411, - 0.29595619440078735, - 0.26078376173973083, - 0.22862747311592102, - 0.20036441087722778, - 0.1767655462026596, - 0.15847459435462952, - 0.14599046111106873, - 0.13965372741222382, - 0.13963721692562103, - 0.1459413766860962, - 0.1583942472934723, - 0.17665615677833557, - 0.20022892951965332, - 0.2284696251153946, - 0.26060789823532104, - 0.29576703906059265, - 0.33298805356025696, - 0.37125563621520996, - 0.3714556396007538, - 0.33891621232032776, - 0.3072616457939148, - 0.277355432510376, - 0.2500132620334625, - 0.22598102688789368, - 0.2059141993522644, - 0.1903602033853531, - 0.17974327504634857, - 0.17435304820537567, - 0.1743365377187729, - 0.17969419062137604, - 0.19027985632419586, - 0.20580480992794037, - 0.2258455455303192, - 0.2498554289340973, - 0.2771795392036438, - 0.3070725202560425, - 0.3387189507484436, - 0.37125563621520996, - 0.3714556097984314, - 0.3481731116771698, - 0.3255229592323303, - 0.3041229844093323, - 0.28455695509910583, - 0.26735860109329224, - 0.25299695134162903, - 0.24186384677886963, - 0.23426292836666107, - 0.23040156066417694, - 0.23038505017757416, - 0.23421384394168854, - 0.2417834997177124, - 0.2528875470161438, - 0.2672231197357178, - 0.2843991219997406, - 0.3039470911026001, - 0.3253338038921356, - 0.34797585010528564, - 0.37125563621520996, - 0.3714556097984314, - 0.3599528670310974, - 0.3487611711025238, - 0.33818578720092773, - 0.3285151720046997, - 0.320013165473938, - 0.31291162967681885, - 0.3074042797088623, - 0.3036413788795471, - 0.30172550678253174, - 0.30170899629592896, - 0.3035922646522522, - 0.3073239326477051, - 0.3128022253513336, - 0.3198776841163635, - 0.3283573389053345, - 0.33800989389419556, - 0.3485720157623291, - 0.35975560545921326, - 0.37125563621520996, - 0.3714556097984314, - 0.37297898530960083, - 0.37445810437202454, - 0.3758525550365448, - 0.3771243691444397, - 0.37823882699012756, - 0.37916553020477295, - 0.3798791766166687, - 0.38036033511161804, - 0.3805958926677704, - 0.3805793523788452, - 0.3803112506866455, - 0.37979885935783386, - 0.3790561258792877, - 0.3781033754348755, - 0.37696656584739685, - 0.375676691532135, - 0.37426894903182983, - 0.3727817237377167, - 0.37125563621520996, - 0.3714556097984314, - 0.38583987951278687, - 0.39982905983924866, - 0.4130415618419647, - 0.42511698603630066, - 0.4357259273529053, - 0.44457903504371643, - 0.45143479108810425, - 0.45610618591308594, - 0.4584658145904541, - 0.4584493041038513, - 0.456057071685791, - 0.451354444026947, - 0.4444696307182312, - 0.4355905055999756, - 0.4249591827392578, - 0.41286569833755493, - 0.39963993430137634, - 0.3856426179409027, - 0.37125563621520996, - 0.3714556097984314, - 0.39714187383651733, - 0.4221247732639313, - 0.4457227885723114, - 0.46729227900505066, - 0.4862448573112488, - 0.5020635724067688, - 0.5143169164657593, - 0.5226706266403198, - 0.5268968939781189, - 0.5268803834915161, - 0.5226215720176697, - 0.514236569404602, - 0.501954197883606, - 0.4861094355583191, - 0.4671344757080078, - 0.4455468952655792, - 0.4219356179237366, - 0.3969446122646332, - 0.37125563621520996, - 0.3714556097984314, - 0.4056602120399475, - 0.43892908096313477, - 0.47035467624664307, - 0.4990798830986023, - 0.5243210792541504, - 0.5453897714614868, - 0.561711311340332, - 0.5728404521942139, - 0.5784735679626465, - 0.5784569978713989, - 0.572791337966919, - 0.5616309642791748, - 0.5452804565429688, - 0.5241856575012207, - 0.49892207980155945, - 0.4701788127422333, - 0.4387398958206177, - 0.40546295046806335, - 0.3712556064128876, - 0.3714556097984314, - 0.4104717969894409, - 0.44842100143432617, - 0.48426803946495056, - 0.5170351266860962, - 0.5458284616470337, - 0.5698626637458801, - 0.588482141494751, - 0.6011788845062256, - 0.6076066493988037, - 0.6075901985168457, - 0.6011297702789307, - 0.5884017944335938, - 0.5697532892227173, - 0.545693039894104, - 0.5168773531913757, - 0.48409217596054077, - 0.44823184609413147, - 0.41027453541755676, - 0.3712556064128876, - 0.3714556097984314, - 0.41105520725250244, - 0.4495719373226166, - 0.4859551191329956, - 0.5192123651504517, - 0.5484364032745361, - 0.5728301405906677, - 0.5917282104492188, - 0.6046150922775269, - 0.6111392378807068, - 0.611122727394104, - 0.6045659780502319, - 0.5916478633880615, - 0.5727207660675049, - 0.5483009815216064, - 0.5190545320510864, - 0.4857792556285858, - 0.4493827819824219, - 0.4108579754829407, - 0.3712556064128876, - 0.3714556097984314, - 0.40734729170799255, - 0.44225719571113586, - 0.4752331078052521, - 0.5053755044937134, - 0.5318621397018433, - 0.5539706349372864, - 0.5710979104042053, - 0.582776665687561, - 0.5886884331703186, - 0.5886719226837158, - 0.5827275514602661, - 0.5710175633430481, - 0.5538612604141235, - 0.5317267179489136, - 0.5052176713943481, - 0.4750572144985199, - 0.44206804037094116, - 0.4071500301361084, - 0.3712556064128876, - 0.3714556097984314, - 0.399749755859375, - 0.4272693991661072, - 0.4532638490200043, - 0.4770240783691406, - 0.49790191650390625, - 0.5153279304504395, - 0.5288267135620117, - 0.5380300879478455, - 0.5426870584487915, - 0.5426705479621887, - 0.5379810333251953, - 0.5287463665008545, - 0.5152185559272766, - 0.49776649475097656, - 0.4768662452697754, - 0.4530879557132721, - 0.4270802438259125, - 0.39955249428749084, - 0.3712556064128876, - 0.3714556097984314, - 0.389085978269577, - 0.40623271465301514, - 0.42242810130119324, - 0.43723034858703613, - 0.4502356946468353, - 0.46108943223953247, - 0.46949541568756104, - 0.47522446513175964, - 0.47812017798423767, - 0.4781036674976349, - 0.4751753509044647, - 0.4694150984287262, - 0.46098002791404724, - 0.45010027289390564, - 0.4370725452899933, - 0.42225220799446106, - 0.40604355931282043, - 0.38888871669769287, - 0.37125563621520996, - 0.3714556097984314, - 0.37651151418685913, - 0.3814268112182617, - 0.38606736063957214, - 0.39030662178993225, - 0.3940289318561554, - 0.3971327841281891, - 0.3995335102081299, - 0.40116560459136963, - 0.4019845724105835, - 0.4019680619239807, - 0.4011165201663971, - 0.39945319294929504, - 0.39702340960502625, - 0.3938934803009033, - 0.390148788690567, - 0.38589146733283997, - 0.381237655878067, - 0.376314252614975, - 0.37125563621520996, - 0.3714556097984314, - 0.3633890450000763, - 0.35553979873657227, - 0.3481219708919525, - 0.3413378596305847, - 0.33537259697914124, - 0.3303888440132141, - 0.3265225291252136, - 0.3238791823387146, - 0.3225308656692505, - 0.3225143253803253, - 0.32383009791374207, - 0.3264422118663788, - 0.3302794396877289, - 0.33523714542388916, - 0.34118005633354187, - 0.34794607758522034, - 0.35535064339637756, - 0.36319178342819214, - 0.37125563621520996 - ], - "y": [ - 0.4938548505306244, - 0.45435693860054016, - 0.4155668020248413, - 0.37854260206222534, - 0.3442941904067993, - 0.3137558102607727, - 0.28776049613952637, - 0.2670172452926636, - 0.25209200382232666, - 0.24339178204536438, - 0.24115395545959473, - 0.2454395443201065, - 0.256131649017334, - 0.27293866872787476, - 0.29540205001831055, - 0.3229091763496399, - 0.3547096252441406, - 0.3899359703063965, - 0.4276273846626282, - 0.4667557179927826, - 0.4938548505306244, - 0.459067702293396, - 0.4248598515987396, - 0.392164409160614, - 0.36187320947647095, - 0.33481255173683167, - 0.31172052025794983, - 0.29322704672813416, - 0.27983659505844116, - 0.27191442251205444, - 0.2696765959262848, - 0.2731841802597046, - 0.28234145045280457, - 0.29689866304397583, - 0.3164587914943695, - 0.3404881954193115, - 0.3683314323425293, - 0.3992290198802948, - 0.4323381781578064, - 0.4667557179927826, - 0.4938548505306244, - 0.46752816438674927, - 0.44154998660087585, - 0.41662895679473877, - 0.39344486594200134, - 0.3726300895214081, - 0.35475242137908936, - 0.34029948711395264, - 0.32966554164886475, - 0.3231406807899475, - 0.32090288400650024, - 0.3230131268501282, - 0.32941389083862305, - 0.33993059396743774, - 0.3542763292789459, - 0.37205982208251953, - 0.39279597997665405, - 0.41591915488243103, - 0.4407986104488373, - 0.4667557179927826, - 0.4938548505306244, - 0.4788215160369873, - 0.4638286232948303, - 0.4492851793766022, - 0.43558788299560547, - 0.42311036586761475, - 0.4121930003166199, - 0.4031335115432739, - 0.39617910981178284, - 0.3915194272994995, - 0.38928163051605225, - 0.3895266652107239, - 0.39224791526794434, - 0.39737117290496826, - 0.404756635427475, - 0.41420286893844604, - 0.42545220255851746, - 0.4381977915763855, - 0.4520919620990753, - 0.4667557179927826, - 0.4938548505306244, - 0.4917239248752594, - 0.4892815053462982, - 0.4865942597389221, - 0.48373547196388245, - 0.4807831048965454, - 0.47781768441200256, - 0.4749201536178589, - 0.4721694886684418, - 0.4696407616138458, - 0.46740293502807617, - 0.4655170440673828, - 0.4640345573425293, - 0.46299585700035095, - 0.46242934465408325, - 0.46235042810440063, - 0.4627612829208374, - 0.4636506736278534, - 0.4649943709373474, - 0.4667557179927826, - 0.4938548505306244, - 0.5048372149467468, - 0.5151504278182983, - 0.5245131850242615, - 0.5326700210571289, - 0.5393984913825989, - 0.5445150136947632, - 0.5478801131248474, - 0.5494019389152527, - 0.5490390062332153, - 0.5468012094497681, - 0.5427495241165161, - 0.5369945168495178, - 0.5296932458877563, - 0.5210447311401367, - 0.5112850069999695, - 0.500680148601532, - 0.4895195960998535, - 0.4781076908111572, - 0.4667557179927826, - 0.4938548505306244, - 0.5167403817176819, - 0.5386320948600769, - 0.5589327812194824, - 0.5770887136459351, - 0.5926046371459961, - 0.6050573587417603, - 0.6141071319580078, - 0.6195071935653687, - 0.6211101412773132, - 0.6188722848892212, - 0.6128547191619873, - 0.6032215356826782, - 0.5902355313301086, - 0.5742509365081787, - 0.5557036995887756, - 0.5350998044013977, - 0.5130012631416321, - 0.4900108575820923, - 0.4667557179927826, - 0.4938548505306244, - 0.5261435508728027, - 0.5571818947792053, - 0.5861232280731201, - 0.6121781468391418, - 0.6346359252929688, - 0.6528839468955994, - 0.6664244532585144, - 0.6748881936073303, - 0.6780441403388977, - 0.6758062839508057, - 0.668235719203949, - 0.6555388569831848, - 0.6380621194839478, - 0.6162822246551514, - 0.5907931327819824, - 0.5622902512550354, - 0.5315510630607605, - 0.49941399693489075, - 0.4667557179927826, - 0.4938548505306244, - 0.5320276618003845, - 0.5687896609306335, - 0.6031379699707031, - 0.6341357827186584, - 0.660937488079071, - 0.6828120350837708, - 0.6991627216339111, - 0.7095435261726379, - 0.7136713266372681, - 0.711433470249176, - 0.7028911113739014, - 0.6882771253585815, - 0.6679902076721191, - 0.6425837874412537, - 0.612750768661499, - 0.5793050527572632, - 0.5431588292121887, - 0.5052981376647949, - 0.4667557179927826, - 0.4938548505306244, - 0.5337551832199097, - 0.5721974968910217, - 0.6081333160400391, - 0.6405822038650513, - 0.6686592698097229, - 0.6915984749794006, - 0.7087741494178772, - 0.719717800617218, - 0.7241308689117432, - 0.7218930721282959, - 0.7130653858184814, - 0.6978885531425476, - 0.676776647567749, - 0.6503055095672607, - 0.6191972494125366, - 0.5843002796173096, - 0.5465666651725769, - 0.5070255994796753, - 0.4667557179927826, - 0.4938548505306244, - 0.5311388373374939, - 0.5670361518859863, - 0.6005677580833435, - 0.6308188438415527, - 0.6569644212722778, - 0.6782910823822021, - 0.6942172646522522, - 0.7043085098266602, - 0.7082894444465637, - 0.7060516476631165, - 0.6976560354232788, - 0.6833316683769226, - 0.6634692549705505, - 0.6386106610298157, - 0.6094338893890381, - 0.5767347812652588, - 0.5414053201675415, - 0.5044092535972595, - 0.4667557179927826, - 0.4938548505306244, - 0.5244621634483337, - 0.5538649559020996, - 0.5812612175941467, - 0.6059037446975708, - 0.6271201968193054, - 0.6443319320678711, - 0.6570695042610168, - 0.6649853587150574, - 0.6678636074066162, - 0.665625810623169, - 0.6583329439163208, - 0.6461839079856873, - 0.6295101642608643, - 0.608766496181488, - 0.5845186710357666, - 0.557428240776062, - 0.5282341241836548, - 0.49773260951042175, - 0.4667557179927826, - 0.4938548505306244, - 0.5144486427307129, - 0.5341111421585083, - 0.5523059368133545, - 0.5685367584228516, - 0.5823608040809631, - 0.5934010744094849, - 0.6013563871383667, - 0.6060097813606262, - 0.6072342395782471, - 0.604996383190155, - 0.5993573665618896, - 0.5904707908630371, - 0.578579306602478, - 0.5640071034431458, - 0.5471517443656921, - 0.5284729599952698, - 0.5084803104400635, - 0.4877191185951233, - 0.4667557179927826, - 0.4938548505306244, - 0.5021834969520569, - 0.5099153518676758, - 0.5168395638465881, - 0.522767186164856, - 0.5275365710258484, - 0.5310176014900208, - 0.5331153273582458, - 0.5337725281715393, - 0.5329712629318237, - 0.5307334661483765, - 0.527120053768158, - 0.5222297310829163, - 0.5161957740783691, - 0.5091828107833862, - 0.5013821721076965, - 0.4930065870285034, - 0.48428454995155334, - 0.4754539728164673, - 0.4667557179927826, - 0.4938548505306244, - 0.4889957904815674, - 0.48389965295791626, - 0.478705495595932, - 0.47355496883392334, - 0.46858856081962585, - 0.4639417827129364, - 0.4597413241863251, - 0.45610183477401733, - 0.4531225264072418, - 0.45088469982147217, - 0.449449360370636, - 0.4488557279109955, - 0.4491199553012848, - 0.4502348303794861, - 0.4521699547767639, - 0.4548725187778473, - 0.45826882123947144, - 0.4622662365436554, - 0.4667557179927826, - 0.4938548505306244, - 0.47631460428237915, - 0.4588831961154938, - 0.44203615188598633, - 0.4262329638004303, - 0.4119047522544861, - 0.39944231510162354, - 0.3891856074333191, - 0.38141438364982605, - 0.37634068727493286, - 0.3741028606891632, - 0.3747619390487671, - 0.3783000111579895, - 0.3846204876899719, - 0.3935509920120239, - 0.4048479199409485, - 0.4182031750679016, - 0.43325236439704895, - 0.44958505034446716, - 0.4667557179927826, - 0.4938548505306244, - 0.4655141234397888, - 0.43757686018943787, - 0.4108051061630249, - 0.3859291672706604, - 0.363627552986145, - 0.3445085883140564, - 0.3290937840938568, - 0.31780368089675903, - 0.31094616651535034, - 0.3087083697319031, - 0.3111512064933777, - 0.3182081878185272, - 0.3296867609024048, - 0.34527379274368286, - 0.3645441234111786, - 0.3869721293449402, - 0.41194602847099304, - 0.4387845993041992, - 0.4667557179927826, - 0.4938548505306244, - 0.45776480436325073, - 0.42228958010673523, - 0.38839688897132874, - 0.35701119899749756, - 0.3289886713027954, - 0.3050936460494995, - 0.28597795963287354, - 0.2721629738807678, - 0.26402562856674194, - 0.2617878019809723, - 0.26551055908203125, - 0.27509236335754395, - 0.2902718186378479, - 0.31063491106033325, - 0.33562618494033813, - 0.364563912153244, - 0.3966587483882904, - 0.43103525042533875, - 0.4667557179927826, - 0.4938548505306244, - 0.4539063572883606, - 0.4146779477596283, - 0.3772397041320801, - 0.3426128029823303, - 0.31174176931381226, - 0.2854687571525574, - 0.2645103335380554, - 0.24943824112415314, - 0.24066361784934998, - 0.23842579126358032, - 0.24278579652309418, - 0.25362473726272583, - 0.2706468999385834, - 0.2933880090713501, - 0.3212277591228485, - 0.35340672731399536, - 0.38904711604118347, - 0.427176833152771, - 0.4667557179927826, - 0.4938548505306244, - 0.45435693860054016, - 0.4155668318271637, - 0.37854260206222534, - 0.3442941904067993, - 0.3137558400630951, - 0.28776049613952637, - 0.2670172452926636, - 0.25209200382232666, - 0.24339178204536438, - 0.24115395545959473, - 0.2454395443201065, - 0.256131649017334, - 0.27293866872787476, - 0.29540205001831055, - 0.3229091763496399, - 0.3547096252441406, - 0.38993600010871887, - 0.42762741446495056, - 0.4667557179927826 - ], - "z": [ - -1.2609951496124268, - -1.262702226638794, - -1.2604115009307861, - -1.254185438156128, - -1.24419367313385, - -1.2307089567184448, - -1.2140990495681763, - -1.1948169469833374, - -1.1733887195587158, - -1.150398850440979, - -1.1264744997024536, - -1.102268099784851, - -1.0784400701522827, - -1.0556403398513794, - -1.0344908237457275, - -1.0155683755874634, - -0.9993892908096313, - -0.9863947629928589, - -0.97693932056427, - -0.9712808132171631, - -1.2609951496124268, - -1.2622700929641724, - -1.259558916091919, - -1.2529356479644775, - -1.2425808906555176, - -1.2287771701812744, - -1.2119008302688599, - -1.1924123764038086, - -1.1708433628082275, - -1.1477820873260498, - -1.1238577365875244, - -1.0997227430343628, - -1.076035499572754, - -1.053442120552063, - -1.0325590372085571, - -1.0139557123184204, - -0.9981396198272705, - -0.9855421781539917, - -0.9765071272850037, - -0.9712808132171631, - -1.2609951496124268, - -1.2614856958389282, - -1.2580114603042603, - -1.2506673336029053, - -1.2396537065505981, - -1.2252707481384277, - -1.2079110145568848, - -1.1880478858947754, - -1.1662232875823975, - -1.1430325508117676, - -1.1191080808639526, - -1.0951026678085327, - -1.0716710090637207, - -1.049452304840088, - -1.0290526151657104, - -1.0110284090042114, - -0.9958713054656982, - -0.983994722366333, - -0.9757227301597595, - -0.9712808132171631, - -1.2609951496124268, - -1.2604339122772217, - -1.255936861038208, - -1.2476263046264648, - -1.2357290983200073, - -1.2205698490142822, - -1.202561855316162, - -1.1821966171264648, - -1.1600292921066284, - -1.1366647481918335, - -1.112740397453308, - -1.0889086723327637, - -1.0658196210861206, - -1.0441032648086548, - -1.024351716041565, - -1.0071039199829102, - -0.992830216884613, - -0.981920063495636, - -0.9746710062026978, - -0.9712808132171631, - -1.2609951496124268, - -1.2592289447784424, - -1.2535597085952759, - -1.244141936302185, - -1.2312325239181519, - -1.2151837348937988, - -1.196433186531067, - -1.175492286682129, - -1.1529324054718018, - -1.1293689012527466, - -1.1054445505142212, - -1.081811785697937, - -1.0591154098510742, - -1.03797447681427, - -1.0189656019210815, - -1.0026073455810547, - -0.9893458485603333, - -0.9795429706573486, - -0.9734660387039185, - -0.9712808132171631, - -1.2609951496124268, - -1.2580013275146484, - -1.2511378526687622, - -1.2405920028686523, - -1.2266513109207153, - -1.2096960544586182, - -1.1901888847351074, - -1.1686617136001587, - -1.1457018852233887, - -1.1219356060028076, - -1.0980112552642822, - -1.074581265449524, - -1.052284836769104, - -1.0317301750183105, - -1.0134779214859009, - -0.9980260133743286, - -0.9857958555221558, - -0.977121114730835, - -0.9722383618354797, - -0.9712808132171631, - -1.2609951496124268, - -1.256883978843689, - -1.2489336729049683, - -1.237360954284668, - -1.2224817276000977, - -1.2047016620635986, - -1.184505820274353, - -1.162445068359375, - -1.139121174812317, - -1.1151703596115112, - -1.0912458896636963, - -1.0680004358291626, - -1.0460681915283203, - -1.0260471105575562, - -1.0084835290908813, - -0.9938564300537109, - -0.9825649261474609, - -0.9749168753623962, - -0.9711210131645203, - -0.9712808132171631, - -1.2609951496124268, - -1.2559980154037476, - -1.2471859455108643, - -1.2347991466522217, - -1.2191756963729858, - -1.2007415294647217, - -1.1799997091293335, - -1.1575158834457397, - -1.1339032649993896, - -1.1098061800003052, - -1.0858817100524902, - -1.062782645225525, - -1.0411388874053955, - -1.0215409994125366, - -1.0045233964920044, - -0.9905503988265991, - -0.9800031185150146, - -0.973169207572937, - -0.9702351093292236, - -0.9712808132171631, - -1.2609951496124268, - -1.2554395198822021, - -1.2460840940475464, - -1.2331842184066772, - -1.21709144115448, - -1.1982450485229492, - -1.1771589517593384, - -1.15440833568573, - -1.1306138038635254, - -1.1064244508743286, - -1.0825001001358032, - -1.0594931840896606, - -1.0380314588546753, - -1.0187002420425415, - -1.002026915550232, - -0.988466203212738, - -0.9783880710601807, - -0.9720673561096191, - -0.9696765542030334, - -0.9712808132171631, - -1.2609951496124268, - -1.255268931388855, - -1.245747685432434, - -1.2326909303665161, - -1.2164549827575684, - -1.1974825859069824, - -1.1762913465499878, - -1.1534593105316162, - -1.129609227180481, - -1.1053916215896606, - -1.0814672708511353, - -1.0584886074066162, - -1.0370824337005615, - -1.017832636833191, - -1.0012644529342651, - -0.9878296852111816, - -0.9778948426246643, - -0.9717308878898621, - -0.969506025314331, - -0.9712808132171631, - -1.2609951496124268, - -1.255504846572876, - -1.2462129592895508, - -1.2333729267120361, - -1.2173349857330322, - -1.19853675365448, - -1.1774909496307373, - -1.1547715663909912, - -1.1309982538223267, - -1.1068196296691895, - -1.082895278930664, - -1.059877634048462, - -1.038394570350647, - -1.0190322399139404, - -1.0023186206817627, - -0.9887098073959351, - -0.9785767793655396, - -0.9721961617469788, - -0.9697418212890625, - -0.9712808132171631, - -1.2609951496124268, - -1.2561215162277222, - -1.2474294900894165, - -1.2351561784744263, - -1.2196364402770996, - -1.2012934684753418, - -1.180627703666687, - -1.1582027673721313, - -1.1346304416656494, - -1.1105537414550781, - -1.0866293907165527, - -1.0635098218917847, - -1.0418258905410767, - -1.0221689939498901, - -1.0050753355026245, - -0.9910111427307129, - -0.9803601503372192, - -0.9734127521514893, - -0.9703585505485535, - -0.9712808132171631, - -1.2609951496124268, - -1.2570523023605347, - -1.2492656707763672, - -1.2378476858139038, - -1.2231097221374512, - -1.205453872680664, - -1.1853617429733276, - -1.1633813381195068, - -1.140112280845642, - -1.1161892414093018, - -1.0922648906707764, - -1.0689916610717773, - -1.0470044612884521, - -1.0269030332565308, - -1.0092357397079468, - -0.9944844245910645, - -0.9830515384674072, - -0.9752488732337952, - -0.971289336681366, - -0.9712808132171631, - -1.2609951496124268, - -1.258196234703064, - -1.2515223026275635, - -1.2411555051803589, - -1.227378487586975, - -1.2105671167373657, - -1.1911799907684326, - -1.169745922088623, - -1.1468496322631836, - -1.1231155395507812, - -1.0991910696029663, - -1.0757290124893188, - -1.0533690452575684, - -1.0327214002609253, - -1.0143489837646484, - -0.9987531900405884, - -0.9863593578338623, - -0.9775055646896362, - -0.9724332690238953, - -0.9712808132171631, - -1.2609951496124268, - -1.2594293355941772, - -1.2539548873901367, - -1.2447212934494019, - -1.2319802045822144, - -1.2160792350769043, - -1.1974520683288574, - -1.1766068935394287, - -1.1541123390197754, - -1.1305819749832153, - -1.1066575050354004, - -1.0829917192459106, - -1.060230016708374, - -1.0389933586120605, - -1.019861102104187, - -1.0033549070358276, - -0.9899251461029053, - -0.9799381494522095, - -0.9736663699150085, - -0.9712808132171631, - -1.2609951496124268, - -1.2606180906295776, - -1.2562999725341797, - -1.248158574104309, - -1.2364161014556885, - -1.2213927507400513, - -1.2034982442855835, - -1.1832207441329956, - -1.1611135005950928, - -1.1377794742584229, - -1.113855004310608, - -1.089992880821228, - -1.066843867301941, - -1.0450395345687866, - -1.025174617767334, - -1.0077908039093018, - -0.993362545967102, - -0.9822832345962524, - -0.9748551249504089, - -0.9712808132171631, - -1.2609951496124268, - -1.2616335153579712, - -1.2583032846450806, - -1.2510950565338135, - -1.2402055263519287, - -1.2259318828582764, - -1.2086632251739502, - -1.1888707876205444, - -1.167094349861145, - -1.143928050994873, - -1.120003581047058, - -1.0959737300872803, - -1.0724939107894897, - -1.0502045154571533, - -1.029713749885559, - -1.0115803480148315, - -0.9962989687919617, - -0.9842864871025085, - -0.9758706092834473, - -0.9712808132171631, - -1.2609951496124268, - -1.2623658180236816, - -1.2597477436065674, - -1.253212332725525, - -1.2429379224777222, - -1.229204773902893, - -1.2123874425888062, - -1.1929447650909424, - -1.171406865119934, - -1.1483614444732666, - -1.1244369745254517, - -1.1002862453460693, - -1.0765677690505981, - -1.0539287328720093, - -1.0329866409301758, - -1.014312744140625, - -0.9984162449836731, - -0.9857309460639954, - -0.9766027927398682, - -0.9712808132171631, - -1.2609951496124268, - -1.262735366821289, - -1.26047682762146, - -1.2542810440063477, - -1.2443171739578247, - -1.2308568954467773, - -1.2142672538757324, - -1.1950010061264038, - -1.1735836267471313, - -1.1505992412567139, - -1.126674771308899, - -1.1024630069732666, - -1.0786241292953491, - -1.0558085441589355, - -1.03463876247406, - -1.015691876411438, - -0.9994849562644958, - -0.9864600300788879, - -0.9769724011421204, - -0.9712808132171631, - -1.2609951496124268, - -1.262702226638794, - -1.2604115009307861, - -1.254185438156128, - -1.24419367313385, - -1.2307089567184448, - -1.2140990495681763, - -1.1948169469833374, - -1.1733887195587158, - -1.150398850440979, - -1.1264744997024536, - -1.102268099784851, - -1.0784400701522827, - -1.0556403398513794, - -1.0344908237457275, - -1.0155683755874634, - -0.9993892908096313, - -0.9863947629928589, - -0.97693932056427, - -0.9712808132171631 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.31190359592437744, - 0.31749072670936584, - 0.32294878363609314, - 0.3281289041042328, - 0.33288976550102234, - 0.3371015191078186, - 0.34064924716949463, - 0.34343621134757996, - 0.3453863859176636, - 0.34644654393196106, - 0.34658780694007874, - 0.3458063006401062, - 0.34412336349487305, - 0.34158486127853394, - 0.33826008439064026, - 0.3342396914958954, - 0.32963335514068604, - 0.32456672191619873, - 0.3191780149936676, - 0.3136141896247864, - 0.31190359592437744, - 0.3319106101989746, - 0.35139524936676025, - 0.36982598900794983, - 0.3867000639438629, - 0.40155723690986633, - 0.4139922261238098, - 0.4236658215522766, - 0.43031418323516846, - 0.43375590443611145, - 0.4338971674442291, - 0.4307340979576111, - 0.4243529438972473, - 0.4149278402328491, - 0.402715802192688, - 0.38804998993873596, - 0.3713304102420807, - 0.35301315784454346, - 0.33359789848327637, - 0.3136141896247864, - 0.31190356612205505, - 0.344163715839386, - 0.3755671977996826, - 0.4052574336528778, - 0.43242454528808594, - 0.45632749795913696, - 0.4763142764568329, - 0.4918397068977356, - 0.5024802684783936, - 0.5079456567764282, - 0.5080869197845459, - 0.5029001832008362, - 0.4925268292427063, - 0.4772499203681946, - 0.457486093044281, - 0.433774471282959, - 0.40676188468933105, - 0.3771851062774658, - 0.34585097432136536, - 0.3136141896247864, - 0.31190356612205505, - 0.3529221713542938, - 0.3928452134132385, - 0.4305837154388428, - 0.4651082754135132, - 0.4954771101474762, - 0.5208618640899658, - 0.5405701398849487, - 0.5540643334388733, - 0.5609763264656067, - 0.5611175894737244, - 0.5544842481613159, - 0.5412573218345642, - 0.5217975378036499, - 0.49663570523262024, - 0.46645820140838623, - 0.432088166475296, - 0.3944631516933441, - 0.3546094596385956, - 0.3136141896247864, - 0.31190356612205505, - 0.3572368919849396, - 0.4013569951057434, - 0.44306033849716187, - 0.4812094271183014, - 0.514763593673706, - 0.5428075790405273, - 0.5645765066146851, - 0.5794764757156372, - 0.5871011018753052, - 0.5872423648834229, - 0.5798964500427246, - 0.5652636289596558, - 0.5437432527542114, - 0.5159221887588501, - 0.4825593829154968, - 0.4445647895336151, - 0.4029749035835266, - 0.35892418026924133, - 0.3136141896247864, - 0.31190356612205505, - 0.3566403388977051, - 0.4001801013946533, - 0.4413352608680725, - 0.47898319363594055, - 0.5120969414710999, - 0.5397732853889465, - 0.5612573027610779, - 0.5759629011154175, - 0.583488941192627, - 0.5836302042007446, - 0.5763828158378601, - 0.5619444251060486, - 0.5407088994979858, - 0.5132555961608887, - 0.480333149433136, - 0.44283971190452576, - 0.4017980098724365, - 0.35832759737968445, - 0.3136141896247864, - 0.31190356612205505, - 0.35119709372520447, - 0.38944211602211, - 0.4255954325199127, - 0.45867085456848145, - 0.48776617646217346, - 0.5120877623558044, - 0.5309721827507019, - 0.5439043045043945, - 0.5505313873291016, - 0.5506726503372192, - 0.5443242192268372, - 0.5316593050956726, - 0.5130233764648438, - 0.4889247715473175, - 0.4600207805633545, - 0.42709988355636597, - 0.3910600543022156, - 0.3528843820095062, - 0.3136141896247864, - 0.31190356612205505, - 0.3414970636367798, - 0.37030667066574097, - 0.3975464999675751, - 0.4224735498428345, - 0.4444078803062439, - 0.4627511501312256, - 0.4770030379295349, - 0.486774742603302, - 0.4917997717857361, - 0.49194103479385376, - 0.4871947169303894, - 0.477690190076828, - 0.4636867642402649, - 0.44556647539138794, - 0.4238234758377075, - 0.39905092120170593, - 0.37192457914352417, - 0.34318435192108154, - 0.3136141896247864, - 0.31190359592437744, - 0.32859140634536743, - 0.34484735131263733, - 0.3602280020713806, - 0.3743138015270233, - 0.38672056794166565, - 0.39710983633995056, - 0.40519827604293823, - 0.4107651710510254, - 0.4136587083339691, - 0.4137999713420868, - 0.411185085773468, - 0.40588539838790894, - 0.39804548025131226, - 0.3878791332244873, - 0.37566372752189636, - 0.3617324233055115, - 0.34646525979042053, - 0.3302786648273468, - 0.3136141896247864, - 0.31190359592437744, - 0.31387859582901, - 0.3158230781555176, - 0.31768396496772766, - 0.319410502910614, - 0.3209556043148041, - 0.32227712869644165, - 0.3233390152454376, - 0.32411229610443115, - 0.32457590103149414, - 0.3247171640396118, - 0.32453224062919617, - 0.3240261673927307, - 0.32321274280548096, - 0.32211416959762573, - 0.32076042890548706, - 0.3191883862018585, - 0.3174409866333008, - 0.31556588411331177, - 0.3136141896247864, - 0.31190359592437744, - 0.2989530563354492, - 0.2863790988922119, - 0.2745246887207031, - 0.2637132406234741, - 0.25423961877822876, - 0.24636226892471313, - 0.24029602110385895, - 0.23620638251304626, - 0.23420488834381104, - 0.2343461513519287, - 0.2366262972354889, - 0.24098315834999084, - 0.24729788303375244, - 0.2553981840610504, - 0.26506316661834717, - 0.27602913975715637, - 0.2879970073699951, - 0.3006403148174286, - 0.3136141896247864, - 0.31190359592437744, - 0.2854321599006653, - 0.2597061097621918, - 0.23542720079421997, - 0.21325770020484924, - 0.1938023567199707, - 0.17759181559085846, - 0.16506826877593994, - 0.1565733551979065, - 0.15233877301216125, - 0.15248003602027893, - 0.1569932997226715, - 0.16575542092323303, - 0.17852741479873657, - 0.19496089220046997, - 0.2146076112985611, - 0.23693163692951202, - 0.261324018239975, - 0.28711941838264465, - 0.31361421942710876, - 0.31190359592437744, - 0.27478110790252686, - 0.23869454860687256, - 0.20462828874588013, - 0.17351152002811432, - 0.14619308710098267, - 0.12341812252998352, - 0.10580785572528839, - 0.09384268522262573, - 0.08784902095794678, - 0.08799028396606445, - 0.09426262974739075, - 0.10649500787258148, - 0.12435372173786163, - 0.14735162258148193, - 0.17486143112182617, - 0.206132709980011, - 0.24031248688697815, - 0.2764683961868286, - 0.31361421942710876, - 0.31190359592437744, - 0.268154114484787, - 0.22562134265899658, - 0.18546544015407562, - 0.14878180623054504, - 0.11657102406024933, - 0.08971172571182251, - 0.0689365416765213, - 0.05481225252151489, - 0.04772406816482544, - 0.047865331172943115, - 0.05523216724395752, - 0.06962369382381439, - 0.09064732491970062, - 0.1177295446395874, - 0.1501317173242569, - 0.18696989119052887, - 0.22723928093910217, - 0.26984140276908875, - 0.31361421942710876, - 0.31190359592437744, - 0.266269326210022, - 0.22190320491790771, - 0.18001535534858704, - 0.14174839854240417, - 0.10814620554447174, - 0.08012527227401733, - 0.05844998359680176, - 0.04371160268783569, - 0.03631213307380676, - 0.03645339608192444, - 0.04413151741027832, - 0.05913710594177246, - 0.08106087148189545, - 0.10930472612380981, - 0.14309830963611603, - 0.18151980638504028, - 0.2235211282968521, - 0.26795661449432373, - 0.31361421942710876, - 0.31190359592437744, - 0.2693309783935547, - 0.22794297337532043, - 0.18886853754520416, - 0.15317349135875702, - 0.12183153629302979, - 0.0956975668668747, - 0.07548445463180542, - 0.061743587255477905, - 0.054849773645401, - 0.05499103665351868, - 0.06216350197792053, - 0.07617160677909851, - 0.09663316607475281, - 0.12299007177352905, - 0.15452340245246887, - 0.19037297368049622, - 0.22956091165542603, - 0.27101826667785645, - 0.31361421942710876, - 0.31190359592437744, - 0.2770073413848877, - 0.24308624863624573, - 0.21106567978858948, - 0.18181900680065155, - 0.15614408254623413, - 0.1347411721944809, - 0.11819411814212799, - 0.10695427656173706, - 0.10132826864719391, - 0.10146953165531158, - 0.10737422108650208, - 0.11888127028942108, - 0.135676771402359, - 0.1573026180267334, - 0.1831689476966858, - 0.21257011592388153, - 0.24470418691635132, - 0.27869459986686707, - 0.31361421942710876, - 0.31190359592437744, - 0.2884664535522461, - 0.26569199562072754, - 0.24420134723186493, - 0.2245807945728302, - 0.2073655128479004, - 0.19302508234977722, - 0.1819506734609604, - 0.17444436252117157, - 0.17071093618869781, - 0.1708521991968155, - 0.17486430704593658, - 0.18263782560825348, - 0.19396068155765533, - 0.20852404832839966, - 0.22593069076538086, - 0.24570578336715698, - 0.26730990409851074, - 0.29015374183654785, - 0.3136141896247864, - 0.31190359592437744, - 0.30246666073799133, - 0.2933104932308197, - 0.28468480706214905, - 0.2768248915672302, - 0.2699452042579651, - 0.2642333507537842, - 0.259845107793808, - 0.25690025091171265, - 0.2554790675640106, - 0.2556203305721283, - 0.25732019543647766, - 0.2605322599411011, - 0.2651689350605011, - 0.27110376954078674, - 0.27817481756210327, - 0.2861892282962799, - 0.2949284017086029, - 0.3041539490222931, - 0.3136141896247864, - 0.31190359592437744, - 0.31749072670936584, - 0.3229488134384155, - 0.3281289339065552, - 0.3328897953033447, - 0.337101548910141, - 0.340649276971817, - 0.34343627095222473, - 0.34538641571998596, - 0.34644660353660583, - 0.3465878665447235, - 0.345806360244751, - 0.34412339329719543, - 0.3415849208831787, - 0.33826011419296265, - 0.3342397212982178, - 0.32963335514068604, - 0.32456672191619873, - 0.3191780149936676, - 0.3136141896247864 - ], - "y": [ - 0.46164289116859436, - 0.5077142715454102, - 0.5523930788040161, - 0.5944607257843018, - 0.6327695846557617, - 0.6662747263908386, - 0.6940622329711914, - 0.7153741121292114, - 0.7296290993690491, - 0.7364382743835449, - 0.7356158494949341, - 0.7271844744682312, - 0.7113739252090454, - 0.6886155605316162, - 0.6595301628112793, - 0.6249110698699951, - 0.585702657699585, - 0.5429744124412537, - 0.49789178371429443, - 0.4516845941543579, - 0.46164289116859436, - 0.5034486651420593, - 0.5439783334732056, - 0.582126259803772, - 0.6168518662452698, - 0.6472079753875732, - 0.6723664999008179, - 0.6916412711143494, - 0.7045064568519592, - 0.71061110496521, - 0.7097887992858887, - 0.7020618319511414, - 0.6876410841941833, - 0.6669198870658875, - 0.6404634118080139, - 0.608993411064148, - 0.5733681917190552, - 0.5345596075057983, - 0.4936262369155884, - 0.4516845941543579, - 0.46164289116859436, - 0.49464544653892517, - 0.5266119837760925, - 0.5566704869270325, - 0.5840010643005371, - 0.6078582406044006, - 0.6275911927223206, - 0.6426616907119751, - 0.6526587009429932, - 0.6573094129562378, - 0.6564871072769165, - 0.6502140760421753, - 0.6386615037918091, - 0.6221445798873901, - 0.6011136770248413, - 0.5761426091194153, - 0.5479124188423157, - 0.5171932578086853, - 0.48482298851013184, - 0.4516845941543579, - 0.46164289116859436, - 0.48225852847099304, - 0.5021759867668152, - 0.5208519697189331, - 0.5377771258354187, - 0.552489697933197, - 0.5645883679389954, - 0.5737431645393372, - 0.5797042846679688, - 0.5823092460632324, - 0.5814868807792664, - 0.5772596597671509, - 0.5697429180145264, - 0.5591416954994202, - 0.5457451343536377, - 0.5299186706542969, - 0.5120939612388611, - 0.49275726079940796, - 0.4724360406398773, - 0.4516846239566803, - 0.46164289116859436, - 0.46763020753860474, - 0.4733183681964874, - 0.4785522520542145, - 0.48318904638290405, - 0.48710232973098755, - 0.49018532037734985, - 0.4923539161682129, - 0.4935489892959595, - 0.49373793601989746, - 0.4929155707359314, - 0.4911043643951416, - 0.4883537292480469, - 0.48473864793777466, - 0.4803577661514282, - 0.47533056139945984, - 0.4697941839694977, - 0.4638996422290802, - 0.4578077495098114, - 0.4516846239566803, - 0.46164289116859436, - 0.45234569907188416, - 0.4431663155555725, - 0.43435508012771606, - 0.4261523485183716, - 0.41878193616867065, - 0.4124448001384735, - 0.40731385350227356, - 0.4035290479660034, - 0.40119361877441406, - 0.4003712832927704, - 0.40108445286750793, - 0.40331366658210754, - 0.4069981276988983, - 0.41203734278678894, - 0.41829386353492737, - 0.42559701204299927, - 0.4337475895881653, - 0.4425232410430908, - 0.4516846239566803, - 0.46164289116859436, - 0.43806135654449463, - 0.4149872362613678, - 0.3930499255657196, - 0.37284785509109497, - 0.3549320697784424, - 0.3397912383079529, - 0.32783836126327515, - 0.31939953565597534, - 0.314704954624176, - 0.31388258934020996, - 0.31695491075515747, - 0.32383817434310913, - 0.3343445658683777, - 0.34818747639656067, - 0.36498934030532837, - 0.3842918872833252, - 0.40556851029396057, - 0.4282388985157013, - 0.4516846239566803, - 0.46164292097091675, - 0.42632508277893066, - 0.3918347954750061, - 0.35911285877227783, - 0.3290518820285797, - 0.3024718165397644, - 0.28009772300720215, - 0.2625398635864258, - 0.25027722120285034, - 0.24364422261714935, - 0.24282188713550568, - 0.24783258140087128, - 0.25853967666625977, - 0.27465105056762695, - 0.2957272529602051, - 0.3211933970451355, - 0.3503548204898834, - 0.3824160695075989, - 0.41650259494781494, - 0.4516846239566803, - 0.46164292097091675, - 0.41840866208076477, - 0.37621790170669556, - 0.33622151613235474, - 0.2995104193687439, - 0.2670861482620239, - 0.23983299732208252, - 0.21849441528320312, - 0.2036525011062622, - 0.19571208953857422, - 0.19488972425460815, - 0.20120787620544434, - 0.2144942283630371, - 0.23438630998134613, - 0.2603415250778198, - 0.2916519343852997, - 0.32746344804763794, - 0.36679917573928833, - 0.40858620405197144, - 0.4516846239566803, - 0.46164292097091675, - 0.41516998410224915, - 0.36982887983322144, - 0.32685643434524536, - 0.28742480278015137, - 0.2526095509529114, - 0.2233603596687317, - 0.2004750370979309, - 0.18457794189453125, - 0.17610260844230652, - 0.17528024315834045, - 0.18213331699371338, - 0.1964748501777649, - 0.2179136723279953, - 0.24586495757102966, - 0.27956628799438477, - 0.31809839606285095, - 0.3604101836681366, - 0.4053475260734558, - 0.4516846239566803, - 0.46164292097091675, - 0.4169600009918213, - 0.37336012721061707, - 0.33203256130218506, - 0.29410460591316223, - 0.2606108486652374, - 0.23246487975120544, - 0.2104344666004181, - 0.19512054324150085, - 0.18694087862968445, - 0.18611851334571838, - 0.19267591834068298, - 0.20643427968025208, - 0.22701819241046906, - 0.2538662552833557, - 0.286246120929718, - 0.32327452301979065, - 0.3639414310455322, - 0.40713754296302795, - 0.4516846239566803, - 0.46164292097091675, - 0.4235847592353821, - 0.38642895221710205, - 0.3511889576911926, - 0.31882601976394653, - 0.29022297263145447, - 0.26615995168685913, - 0.2472933977842331, - 0.2341379076242447, - 0.22705236077308655, - 0.22623002529144287, - 0.23169328272342682, - 0.24329321086406708, - 0.26071327924728394, - 0.28347837924957275, - 0.31096750497817993, - 0.34243088960647583, - 0.3770102262496948, - 0.41376230120658875, - 0.4516846239566803, - 0.46164292097091675, - 0.4343263506889343, - 0.4076191186904907, - 0.38224971294403076, - 0.35891008377075195, - 0.338236927986145, - 0.32079416513442993, - 0.30705755949020386, - 0.2974018454551697, - 0.29209035634994507, - 0.291267991065979, - 0.2949572205543518, - 0.30305737257003784, - 0.31534749269485474, - 0.3314923644065857, - 0.35105156898498535, - 0.37349164485931396, - 0.3982003927230835, - 0.424503892660141, - 0.4516846239566803, - 0.46164289116859436, - 0.4480207562446594, - 0.43463438749313354, - 0.42184892296791077, - 0.4100131094455719, - 0.39944979548454285, - 0.39044713973999023, - 0.38325071334838867, - 0.37805676460266113, - 0.3750070333480835, - 0.3741846978664398, - 0.37561216950416565, - 0.37925049662590027, - 0.38500046730041504, - 0.3927052319049835, - 0.4021546244621277, - 0.41309088468551636, - 0.4252156615257263, - 0.4381982982158661, - 0.4516846239566803, - 0.46164289116859436, - 0.4631839692592621, - 0.46454718708992004, - 0.4656953513622284, - 0.46659716963768005, - 0.4672280251979828, - 0.4675707221031189, - 0.46761590242385864, - 0.46736234426498413, - 0.4668169617652893, - 0.46599459648132324, - 0.46491771936416626, - 0.4636157155036926, - 0.4621240794658661, - 0.46048349142074585, - 0.45873868465423584, - 0.456937313079834, - 0.4551284611225128, - 0.45336151123046875, - 0.4516846239566803, - 0.46164289116859436, - 0.47817280888557434, - 0.49411600828170776, - 0.5090376138687134, - 0.5225306153297424, - 0.5342268943786621, - 0.5438075065612793, - 0.5510110259056091, - 0.5556409955024719, - 0.5575711727142334, - 0.5567488074302673, - 0.5531964302062988, - 0.5470108389854431, - 0.5383608341217041, - 0.5274823307991028, - 0.5146721005439758, - 0.5002795457839966, - 0.4846973121166229, - 0.468350350856781, - 0.4516846239566803, - 0.46164289116859436, - 0.4913630485534668, - 0.5201367139816284, - 0.5471789836883545, - 0.5717521905899048, - 0.5931861400604248, - 0.610896110534668, - 0.6243990063667297, - 0.633326530456543, - 0.6374351382255554, - 0.6366127729415894, - 0.6308819055557251, - 0.6203988194465637, - 0.6054494380950928, - 0.5864415764808655, - 0.563893735408783, - 0.5384209156036377, - 0.5107179880142212, - 0.4815405607223511, - 0.4516845941543579, - 0.46164289116859436, - 0.501325249671936, - 0.5397893786430359, - 0.5759860873222351, - 0.6089279651641846, - 0.6377164125442505, - 0.6615663170814514, - 0.6798269748687744, - 0.6920003294944763, - 0.6977542638778687, - 0.6969319581985474, - 0.6895557045936584, - 0.6758267879486084, - 0.6561196446418762, - 0.6309719085693359, - 0.601069450378418, - 0.5672280192375183, - 0.5303707122802734, - 0.4915027916431427, - 0.4516845941543579, - 0.46164289116859436, - 0.5069799423217773, - 0.5509445071220398, - 0.5923373103141785, - 0.6300293207168579, - 0.6629923582077026, - 0.6903272867202759, - 0.7112884521484375, - 0.725304126739502, - 0.7319920659065247, - 0.7311697006225586, - 0.7228595018386841, - 0.7072882652282715, - 0.6848806142807007, - 0.6562477946281433, - 0.6221708059310913, - 0.5835792422294617, - 0.5415257811546326, - 0.4971574544906616, - 0.4516845941543579, - 0.46164289116859436, - 0.5077142715454102, - 0.5523930788040161, - 0.5944607257843018, - 0.6327695846557617, - 0.6662747263908386, - 0.6940622329711914, - 0.7153741121292114, - 0.7296290397644043, - 0.7364382743835449, - 0.7356158494949341, - 0.7271844148635864, - 0.7113739252090454, - 0.6886155605316162, - 0.6595301628112793, - 0.6249110698699951, - 0.585702657699585, - 0.5429744124412537, - 0.49789178371429443, - 0.4516845941543579 - ], - "z": [ - -1.4001046419143677, - -1.396351933479309, - -1.3902943134307861, - -1.3820968866348267, - -1.371983528137207, - -1.3602299690246582, - -1.3471567630767822, - -1.3331207036972046, - -1.3185044527053833, - -1.3037067651748657, - -1.2891312837600708, - -1.27517569065094, - -1.2622205018997192, - -1.2506191730499268, - -1.2406882047653198, - -1.2326984405517578, - -1.2268677949905396, - -1.2233552932739258, - -1.2222568988800049, - -1.2236024141311646, - -1.4001046419143677, - -1.3967323303222656, - -1.3910447359085083, - -1.3831969499588013, - -1.3734030723571777, - -1.3619303703308105, - -1.349091649055481, - -1.3352372646331787, - -1.3207448720932007, - -1.306010127067566, - -1.291434645652771, - -1.2774161100387573, - -1.2643370628356934, - -1.2525540590286255, - -1.2423886060714722, - -1.2341179847717285, - -1.2279677391052246, - -1.224105715751648, - -1.2226372957229614, - -1.2236024141311646, - -1.4001046419143677, - -1.3973478078842163, - -1.3922587633132935, - -1.3849765062332153, - -1.375699758529663, - -1.364681363105774, - -1.352221965789795, - -1.3386614322662354, - -1.3243695497512817, - -1.3097363710403442, - -1.2951608896255493, - -1.2810407876968384, - -1.26776123046875, - -1.25568425655365, - -1.2451395988464355, - -1.2364145517349243, - -1.2297474145889282, - -1.2253198623657227, - -1.2232526540756226, - -1.2236024141311646, - -1.4001046419143677, - -1.3981314897537231, - -1.393804907798767, - -1.3872429132461548, - -1.378624439239502, - -1.3681846857070923, - -1.356208324432373, - -1.343022108078003, - -1.328985571861267, - -1.3144818544387817, - -1.2999063730239868, - -1.2856568098068237, - -1.2721219062805176, - -1.259670615196228, - -1.248642921447754, - -1.2393392324447632, - -1.2320137023925781, - -1.2268660068511963, - -1.224036455154419, - -1.2236024141311646, - -1.4001046419143677, - -1.398998737335205, - -1.3955155611038208, - -1.389750361442566, - -1.381860375404358, - -1.372060775756836, - -1.3606188297271729, - -1.3478467464447021, - -1.3340927362442017, - -1.3197323083877563, - -1.3051568269729614, - -1.2907639741897583, - -1.2769465446472168, - -1.2640811204910278, - -1.252518892288208, - -1.2425751686096191, - -1.2345211505889893, - -1.22857666015625, - -1.2249035835266113, - -1.2236024141311646, - -1.4001046419143677, - -1.3998552560806274, - -1.3972053527832031, - -1.392227292060852, - -1.385056734085083, - -1.375889539718628, - -1.3649755716323853, - -1.3526124954223633, - -1.3391376733779907, - -1.3249186277389526, - -1.3103431463241577, - -1.2958089113235474, - -1.281712293624878, - -1.2684378623962402, - -1.2563477754592896, - -1.2457716464996338, - -1.2369980812072754, - -1.2302663326263428, - -1.2257602214813232, - -1.2236024141311646, - -1.4001046419143677, - -1.4006084203720093, - -1.398691177368164, - -1.3944051265716553, - -1.3878673315048218, - -1.3792561292648315, - -1.3688063621520996, - -1.3568029403686523, - -1.3435735702514648, - -1.3294788599014282, - -1.3149033784866333, - -1.3002448081970215, - -1.2859028577804565, - -1.2722686529159546, - -1.2597143650054932, - -1.2485822439193726, - -1.2391759157180786, - -1.2317521572113037, - -1.226513385772705, - -1.2236024141311646, - -1.4001046419143677, - -1.4011765718460083, - -1.3998119831085205, - -1.3960480690002441, - -1.3899874687194824, - -1.3817957639694214, - -1.3716961145401, - -1.35996413230896, - -1.3469197750091553, - -1.3329188823699951, - -1.3183435201644897, - -1.303591012954712, - -1.2890639305114746, - -1.275158405303955, - -1.262253999710083, - -1.2507023811340332, - -1.2408188581466675, - -1.2328729629516602, - -1.227081537246704, - -1.2236024141311646, - -1.4001046419143677, - -1.4014980792999268, - -1.4004462957382202, - -1.3969779014587402, - -1.3911875486373901, - -1.3832330703735352, - -1.3733316659927368, - -1.361753225326538, - -1.3488136529922485, - -1.334865927696228, - -1.320290446281433, - -1.3054848909378052, - -1.2908530235290527, - -1.2767939567565918, - -1.2636913061141968, - -1.2519023418426514, - -1.2417486906051636, - -1.2335073947906494, - -1.2274030447006226, - -1.223602294921875, - -1.4001046419143677, - -1.4015382528305054, - -1.400525450706482, - -1.3970938920974731, - -1.391337275505066, - -1.383412480354309, - -1.3735357522964478, - -1.3619765043258667, - -1.3490500450134277, - -1.335108995437622, - -1.3205335140228271, - -1.3057212829589844, - -1.2910763025283813, - -1.2769981622695923, - -1.2638707160949707, - -1.2520520687103271, - -1.241864800453186, - -1.2335865497589111, - -1.2274432182312012, - -1.223602294921875, - -1.4001046419143677, - -1.4012925624847412, - -1.400040864944458, - -1.3963836431503296, - -1.3904205560684204, - -1.3823144435882568, - -1.372286319732666, - -1.360609769821167, - -1.3476033210754395, - -1.333621621131897, - -1.319046139717102, - -1.304274559020996, - -1.2897095680236816, - -1.2757487297058105, - -1.2627726793289185, - -1.2511354684829712, - -1.241154432296753, - -1.2331019639968872, - -1.227197527885437, - -1.2236024141311646, - -1.4001046419143677, - -1.4007878303527832, - -1.3990449905395508, - -1.3949239253997803, - -1.388536810874939, - -1.3800580501556396, - -1.3697187900543213, - -1.357801079750061, - -1.3446301221847534, - -1.330565094947815, - -1.31598961353302, - -1.30130136013031, - -1.2869009971618652, - -1.2731812000274658, - -1.2605162858963013, - -1.2492517232894897, - -1.2396947145462036, - -1.23210608959198, - -1.2266926765441895, - -1.2236024141311646, - -1.4001046419143677, - -1.400078535079956, - -1.3976458311080933, - -1.392872929573059, - -1.385890007019043, - -1.3768876791000366, - -1.3661112785339355, - -1.3538548946380615, - -1.340452790260315, - -1.326270580291748, - -1.3116952180862427, - -1.2971240282058716, - -1.2829546928405762, - -1.26957368850708, - -1.2573459148406982, - -1.2466049194335938, - -1.2376437187194824, - -1.2307069301605225, - -1.2259835004806519, - -1.2236024141311646, - -1.4001046419143677, - -1.3992416858673096, - -1.3959949016571045, - -1.3904531002044678, - -1.3827672004699707, - -1.373146891593933, - -1.3618547916412354, - -1.3491986989974976, - -1.3355239629745483, - -1.321203589439392, - -1.3066281080245972, - -1.292195200920105, - -1.2782984972000122, - -1.2653172016143799, - -1.2536051273345947, - -1.243481993675232, - -1.2352238893508911, - -1.2290560007095337, - -1.2251466512680054, - -1.2236024141311646, - -1.4001046419143677, - -1.3983678817749023, - -1.3942712545394897, - -1.3879263401031494, - -1.3795064687728882, - -1.3692412376403809, - -1.3574105501174927, - -1.3443372249603271, - -1.3303778171539307, - -1.3159130811691284, - -1.3013375997543335, - -1.2870490550994873, - -1.2734370231628418, - -1.2608729600906372, - -1.2496994733810425, - -1.240221381187439, - -1.2326972484588623, - -1.2273322343826294, - -1.2242728471755981, - -1.2236024141311646, - -1.4001046419143677, - -1.3975518941879272, - -1.392661452293396, - -1.3855668306350708, - -1.3764615058898926, - -1.3655937910079956, - -1.3532601594924927, - -1.3397971391677856, - -1.325571894645691, - -1.3109723329544067, - -1.2963969707489014, - -1.2822431325912476, - -1.2688969373703003, - -1.2567225694656372, - -1.2460520267486572, - -1.2371762990951538, - -1.2303376197814941, - -1.2257225513458252, - -1.223456859588623, - -1.2236024141311646, - -1.4001046419143677, - -1.3968820571899414, - -1.3913401365280151, - -1.3836300373077393, - -1.3739620447158813, - -1.3625998497009277, - -1.3498533964157104, - -1.3360705375671387, - -1.3216270208358765, - -1.3069168329238892, - -1.2923414707183838, - -1.278298258781433, - -1.2651703357696533, - -1.253315806388855, - -1.2430580854415894, - -1.2346768379211426, - -1.2284008264541626, - -1.2244012355804443, - -1.2227870225906372, - -1.2236024141311646, - -1.4001046419143677, - -1.3964310884475708, - -1.3904504776000977, - -1.3823258876800537, - -1.3722789287567139, - -1.3605839014053345, - -1.3475594520568848, - -1.3335611820220947, - -1.3189706802368164, - -1.3041861057281494, - -1.2896106243133545, - -1.275641918182373, - -1.2626609802246094, - -1.2510218620300293, - -1.2410420179367065, - -1.2329938411712646, - -1.227096676826477, - -1.2235114574432373, - -1.2223360538482666, - -1.2236024141311646, - -1.4001047611236572, - -1.3962477445602417, - -1.3900887966156006, - -1.3817956447601318, - -1.371594786643982, - -1.3597643375396729, - -1.346626877784729, - -1.3325409889221191, - -1.3178908824920654, - -1.303075909614563, - -1.2885005474090576, - -1.274562120437622, - -1.2616407871246338, - -1.2500892877578735, - -1.240222454071045, - -1.2323095798492432, - -1.2265665531158447, - -1.2231497764587402, - -1.2221527099609375, - -1.2236024141311646, - -1.4001046419143677, - -1.396351933479309, - -1.3902943134307861, - -1.3820968866348267, - -1.371983528137207, - -1.3602299690246582, - -1.3471567630767822, - -1.3331207036972046, - -1.3185044527053833, - -1.3037067651748657, - -1.2891312837600708, - -1.27517569065094, - -1.2622205018997192, - -1.2506191730499268, - -1.2406882047653198, - -1.2326984405517578, - -1.2268677949905396, - -1.2233552932739258, - -1.2222568988800049, - -1.2236024141311646 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.2549852728843689, - 0.2538139820098877, - 0.2527018189430237, - 0.2516791522502899, - 0.2507738173007965, - 0.25001055002212524, - 0.24941016733646393, - 0.2489890307188034, - 0.24875864386558533, - 0.2487252801656723, - 0.24888986349105835, - 0.24924787878990173, - 0.24978959560394287, - 0.2505002021789551, - 0.25136032700538635, - 0.2523465156555176, - 0.25343188643455505, - 0.254586786031723, - 0.2557797431945801, - 0.25697821378707886, - 0.2549852728843689, - 0.2698535621166229, - 0.2843434512615204, - 0.29805973172187805, - 0.3106282353401184, - 0.3217061161994934, - 0.3309911787509918, - 0.3382302224636078, - 0.34322571754455566, - 0.3458414375782013, - 0.34600600600242615, - 0.34371495246887207, - 0.33903077244758606, - 0.33208122849464417, - 0.3230558931827545, - 0.3122009336948395, - 0.2998124659061432, - 0.2862284183502197, - 0.2718193233013153, - 0.25697821378707886, - 0.2549852728843689, - 0.2842833995819092, - 0.3128095269203186, - 0.33978554606437683, - 0.3644756078720093, - 0.3862062692642212, - 0.40438470244407654, - 0.418515145778656, - 0.42821204662323, - 0.43321096897125244, - 0.4333755373954773, - 0.4287012815475464, - 0.4193156957626343, - 0.4054747223854065, - 0.3875560760498047, - 0.36604833602905273, - 0.34153828024864197, - 0.31469449400901794, - 0.28624916076660156, - 0.25697821378707886, - 0.2549852728843689, - 0.2955397963523865, - 0.33501529693603516, - 0.37233495712280273, - 0.4064808189868927, - 0.43652141094207764, - 0.4616374373435974, - 0.48114365339279175, - 0.4945080280303955, - 0.5013660788536072, - 0.501530647277832, - 0.4949972629547119, - 0.48194420337677, - 0.46272745728492737, - 0.4378712475299835, - 0.40805351734161377, - 0.37408769130706787, - 0.3369002342224121, - 0.29750555753707886, - 0.25697821378707886, - 0.2549852728843689, - 0.30240297317504883, - 0.348554402589798, - 0.3921807110309601, - 0.4320918917655945, - 0.4671992063522339, - 0.49654507637023926, - 0.5193289518356323, - 0.5349295139312744, - 0.5429210066795349, - 0.5430855751037598, - 0.5354187488555908, - 0.5201295614242554, - 0.4976350963115692, - 0.468548983335495, - 0.43366461992263794, - 0.3939334452152252, - 0.3504393696784973, - 0.3043687045574188, - 0.25697821378707886, - 0.2549852728843689, - 0.30412915349006653, - 0.3519597053527832, - 0.3971722424030304, - 0.4385334551334381, - 0.47491514682769775, - 0.5053249001502991, - 0.5289331674575806, - 0.5450961589813232, - 0.5533727407455444, - 0.5535373687744141, - 0.5455853939056396, - 0.5297337770462036, - 0.5064148902893066, - 0.47626495361328125, - 0.4401061534881592, - 0.39892497658729553, - 0.35384464263916016, - 0.3060949146747589, - 0.25697818398475647, - 0.2549852728843689, - 0.3005313277244568, - 0.3448621928691864, - 0.3867686092853546, - 0.42510753870010376, - 0.45883309841156006, - 0.4870254397392273, - 0.5089155435562134, - 0.5239062309265137, - 0.531588613986969, - 0.5317531824111938, - 0.5243954658508301, - 0.5097160339355469, - 0.48811548948287964, - 0.46018293499946594, - 0.4266802668571472, - 0.38852134346961975, - 0.34674713015556335, - 0.3024970591068268, - 0.25697821378707886, - 0.2549852728843689, - 0.29199934005737305, - 0.32803094387054443, - 0.36209720373153687, - 0.39326897263526917, - 0.42069584131240845, - 0.44362980127334595, - 0.4614451825618744, - 0.4736560583114624, - 0.4799293279647827, - 0.48009389638900757, - 0.4741452932357788, - 0.46224573254585266, - 0.4447198212146759, - 0.42204564809799194, - 0.39484167098999023, - 0.363849937915802, - 0.3299158811569214, - 0.29396510124206543, - 0.25697821378707886, - 0.2549852728843689, - 0.27945777773857117, - 0.30328992009162903, - 0.3258316218852997, - 0.3464680016040802, - 0.3646361529827118, - 0.3798404932022095, - 0.3916662931442261, - 0.3997909426689148, - 0.4039928913116455, - 0.40415745973587036, - 0.4002801775932312, - 0.39246684312820435, - 0.3809305429458618, - 0.3659859299659729, - 0.34804072976112366, - 0.3275843560695648, - 0.30517488718032837, - 0.28142353892326355, - 0.25697821378707886, - 0.2549852728843689, - 0.2642657160758972, - 0.27332019805908203, - 0.2819017171859741, - 0.2897762358188629, - 0.2967289090156555, - 0.302570104598999, - 0.3071404993534088, - 0.31031540036201477, - 0.312008261680603, - 0.3121728301048279, - 0.3108046352863312, - 0.3079410493373871, - 0.30366015434265137, - 0.2980786859989166, - 0.291348934173584, - 0.28365445137023926, - 0.275205135345459, - 0.2662314772605896, - 0.25697821378707886, - 0.2549852728843689, - 0.24806945025920868, - 0.24136945605278015, - 0.23506803810596466, - 0.22933709621429443, - 0.22433294355869293, - 0.220192089676857, - 0.217027485370636, - 0.21492546796798706, - 0.21394333243370056, - 0.2141079157590866, - 0.21541470289230347, - 0.21782803535461426, - 0.22128212451934814, - 0.22568272054195404, - 0.2309097945690155, - 0.2368207722902298, - 0.2432544082403183, - 0.25003519654273987, - 0.25697821378707886, - 0.2549852728843689, - 0.2326240837574005, - 0.21090003848075867, - 0.1904056966304779, - 0.17170009016990662, - 0.15529349446296692, - 0.14163339138031006, - 0.1310923993587494, - 0.12395808100700378, - 0.1204250305891037, - 0.12058959901332855, - 0.12444731593132019, - 0.13189294934272766, - 0.14272341132164001, - 0.15664324164390564, - 0.17327278852462769, - 0.19215843081474304, - 0.21278499066829681, - 0.2345898449420929, - 0.25697821378707886, - 0.2549852728843689, - 0.21960338950157166, - 0.18521380424499512, - 0.15275457501411438, - 0.12311111390590668, - 0.09709204733371735, - 0.07540705800056458, - 0.05864764750003815, - 0.047271013259887695, - 0.04158748686313629, - 0.041752055287361145, - 0.0477602481842041, - 0.05944819748401642, - 0.07649706304073334, - 0.09844177961349487, - 0.12468379735946655, - 0.15450730919837952, - 0.18709875643253326, - 0.22156915068626404, - 0.25697821378707886, - 0.2549852728843689, - 0.21041832864284515, - 0.16709423065185547, - 0.12619474530220032, - 0.08883550763130188, - 0.056035593152046204, - 0.028689682483673096, - 0.007543683052062988, - -0.006825536489486694, - -0.014026075601577759, - -0.013861507177352905, - -0.006336301565170288, - 0.00834423303604126, - 0.029779687523841858, - 0.05738532543182373, - 0.09040819108486176, - 0.12794747948646545, - 0.16897916793823242, - 0.21238407492637634, - 0.25697821378707886, - 0.2549853026866913, - 0.20606426894664764, - 0.15850487351417542, - 0.11360439658164978, - 0.07258757948875427, - 0.03657330572605133, - 0.0065439194440841675, - -0.01668146252632141, - -0.03246930241584778, - -0.04038897156715393, - -0.04022440314292908, - -0.03198006749153137, - -0.01588091254234314, - 0.00763392448425293, - 0.03792305290699005, - 0.07416026294231415, - 0.11535713076591492, - 0.16038982570171356, - 0.20803001523017883, - 0.25697821378707886, - 0.2549852728843689, - 0.20701302587985992, - 0.16037650406360626, - 0.11634783446788788, - 0.0761280506849289, - 0.04081419110298157, - 0.011369526386260986, - -0.011402785778045654, - -0.026881486177444458, - -0.03464442491531372, - -0.03447985649108887, - -0.026392251253128052, - -0.010602235794067383, - 0.012459531426429749, - 0.042163923382759094, - 0.07770071923732758, - 0.11810056865215302, - 0.1622614562511444, - 0.2089787870645523, - 0.25697821378707886, - 0.2549852728843689, - 0.21316179633140564, - 0.17250633239746094, - 0.13412785530090332, - 0.09907323122024536, - 0.06829868257045746, - 0.04264362156391144, - 0.022807851433753967, - 0.009332478046417236, - 0.0025850534439086914, - 0.002749621868133545, - 0.009821712970733643, - 0.02360840141773224, - 0.0437336266040802, - 0.06964841485023499, - 0.10064592957496643, - 0.13588058948516846, - 0.17439128458499908, - 0.21512755751609802, - 0.25697821378707886, - 0.2549852728843689, - 0.2238442748785019, - 0.19357988238334656, - 0.16501766443252563, - 0.13893669843673706, - 0.11604844033718109, - 0.09697717428207397, - 0.08224314451217651, - 0.07224823534488678, - 0.06726512312889099, - 0.06742969155311584, - 0.07273747026920319, - 0.08304369449615479, - 0.09806717932224274, - 0.11739818751811981, - 0.14050939679145813, - 0.16677039861679077, - 0.1954648494720459, - 0.22581002116203308, - 0.25697821378707886, - 0.2549852728843689, - 0.23790283501148224, - 0.22131353616714478, - 0.20566990971565247, - 0.19139862060546875, - 0.17888903617858887, - 0.16848231852054596, - 0.16046234965324402, - 0.1550479233264923, - 0.15238668024539948, - 0.15255124866962433, - 0.15553715825080872, - 0.1612628996372223, - 0.1695723533630371, - 0.18023881316184998, - 0.192971333861351, - 0.2074226438999176, - 0.22319848835468292, - 0.23986859619617462, - 0.25697821378707886, - 0.2549852728843689, - 0.2538140118122101, - 0.25270184874534607, - 0.2516791820526123, - 0.2507738471031189, - 0.25001057982444763, - 0.2494102120399475, - 0.248989075422287, - 0.2487587034702301, - 0.24872533977031708, - 0.24888990819454193, - 0.2492479383945465, - 0.24978964030742645, - 0.25050023198127747, - 0.25136035680770874, - 0.25234654545783997, - 0.25343191623687744, - 0.2545868158340454, - 0.2557797431945801, - 0.25697821378707886 - ], - "y": [ - 0.4268506169319153, - 0.37663352489471436, - 0.32772761583328247, - 0.28146684169769287, - 0.23911316692829132, - 0.20182183384895325, - 0.17061007022857666, - 0.14632919430732727, - 0.12964165210723877, - 0.12100249528884888, - 0.12064749002456665, - 0.1285862922668457, - 0.14460226893424988, - 0.1682586371898651, - 0.19891010224819183, - 0.23572054505348206, - 0.2776859402656555, - 0.3236614465713501, - 0.37239307165145874, - 0.42255154252052307, - 0.4268506169319153, - 0.37898576259613037, - 0.3323678970336914, - 0.2882686257362366, - 0.2478908896446228, - 0.21233606338500977, - 0.18257401883602142, - 0.1594165563583374, - 0.1434953510761261, - 0.1352447271347046, - 0.13488972187042236, - 0.14243999123573303, - 0.15768963098526, - 0.18022263050079346, - 0.20942436158657074, - 0.24449828267097473, - 0.28448769450187683, - 0.32830172777175903, - 0.37474530935287476, - 0.42255154252052307, - 0.4268506169319153, - 0.38652169704437256, - 0.34723421931266785, - 0.3100598454475403, - 0.2760125696659088, - 0.24602110683918, - 0.22090359032154083, - 0.20134514570236206, - 0.18787924945354462, - 0.18087325990200043, - 0.1805182546377182, - 0.18682388961315155, - 0.19961822032928467, - 0.21855220198631287, - 0.24310940504074097, - 0.27261996269226074, - 0.30627888441085815, - 0.3431680500507355, - 0.38228124380111694, - 0.4225515127182007, - 0.4268506169319153, - 0.39842474460601807, - 0.3707156181335449, - 0.3444790542125702, - 0.3204307556152344, - 0.29922667145729065, - 0.2814452052116394, - 0.2675713896751404, - 0.25798365473747253, - 0.25294357538223267, - 0.25258857011795044, - 0.25692829489707947, - 0.265844464302063, - 0.27909383177757263, - 0.29631495475769043, - 0.3170381486415863, - 0.34069812297821045, - 0.36664944887161255, - 0.39418429136276245, - 0.4225515127182007, - 0.4268506169319153, - 0.4134049713611603, - 0.40026748180389404, - 0.38779646158218384, - 0.3763320744037628, - 0.36618709564208984, - 0.35763823986053467, - 0.35091865062713623, - 0.34621167182922363, - 0.34364569187164307, - 0.34329065680503845, - 0.34515631198883057, - 0.34919172525405884, - 0.3552868366241455, - 0.363275408744812, - 0.37293949723243713, - 0.3840155005455017, - 0.39620131254196167, - 0.40916451811790466, - 0.4225515127182007, - 0.4268506169319153, - 0.4298390746116638, - 0.4326874017715454, - 0.43531787395477295, - 0.43765875697135925, - 0.4396461844444275, - 0.44122594594955444, - 0.4423549473285675, - 0.4430024027824402, - 0.4431506395339966, - 0.44279563426971436, - 0.4419470429420471, - 0.4406280219554901, - 0.43887457251548767, - 0.43673449754714966, - 0.43426617980003357, - 0.4315369427204132, - 0.4286212623119354, - 0.4255986213684082, - 0.4225515127182007, - 0.4268506169319153, - 0.4459461569786072, - 0.4644622206687927, - 0.4818936884403229, - 0.49776509404182434, - 0.5116434693336487, - 0.5231503248214722, - 0.5319717526435852, - 0.5378670692443848, - 0.5406755208969116, - 0.5403205156326294, - 0.5368117094039917, - 0.5302448272705078, - 0.520798921585083, - 0.5087317824363708, - 0.49437248706817627, - 0.47811272740364075, - 0.46039605140686035, - 0.44170570373535156, - 0.4225515127182007, - 0.4268506169319153, - 0.4599807858467102, - 0.49214860796928406, - 0.5224766135215759, - 0.5501376390457153, - 0.5743770003318787, - 0.5945336222648621, - 0.6100576519966125, - 0.6205256581306458, - 0.6256520748138428, - 0.6252970695495605, - 0.6194702982902527, - 0.6083307266235352, - 0.5921822786331177, - 0.5714653134346008, - 0.5467450618743896, - 0.5186957120895386, - 0.4880824387073517, - 0.4557403028011322, - 0.4225515127182007, - 0.4268506169319153, - 0.47042202949523926, - 0.5127463340759277, - 0.5526689291000366, - 0.5891009569168091, - 0.6210485696792603, - 0.6476403474807739, - 0.6681509017944336, - 0.6820207834243774, - 0.6888716220855713, - 0.6885166168212891, - 0.6809654235839844, - 0.6664239764213562, - 0.6452889442443848, - 0.6181368827819824, - 0.5857083797454834, - 0.5488879680633545, - 0.5086801648139954, - 0.46618157625198364, - 0.4225515127182007, - 0.4268505871295929, - 0.47613847255706787, - 0.5240232944488525, - 0.5691988468170166, - 0.6104328632354736, - 0.646600604057312, - 0.6767154932022095, - 0.6999561786651611, - 0.7156884670257568, - 0.7234834432601929, - 0.7231284379959106, - 0.7146331071853638, - 0.698229193687439, - 0.6743641495704651, - 0.6436889171600342, - 0.607040286064148, - 0.5654178857803345, - 0.5199571251869202, - 0.47189801931381226, - 0.4225515127182007, - 0.4268505871295929, - 0.4765106439590454, - 0.524757444858551, - 0.5702749490737915, - 0.6118216514587402, - 0.6482641100883484, - 0.6786084175109863, - 0.7020267844200134, - 0.717880368232727, - 0.7257368564605713, - 0.7253818511962891, - 0.716825008392334, - 0.700299859046936, - 0.6762570142745972, - 0.6453524827957153, - 0.6084290742874146, - 0.5664940476417542, - 0.5206912755966187, - 0.4722701907157898, - 0.4225515127182007, - 0.4268506169319153, - 0.47149819135665894, - 0.5148692727088928, - 0.5557807683944702, - 0.5931168794631958, - 0.6258589029312134, - 0.6531139016151428, - 0.6741384267807007, - 0.6883589029312134, - 0.6953875422477722, - 0.69503253698349, - 0.6873035430908203, - 0.6724115014076233, - 0.6507625579833984, - 0.6229472160339355, - 0.5897242426872253, - 0.5519998669624329, - 0.5108031034469604, - 0.4672577381134033, - 0.4225515127182007, - 0.4268506169319153, - 0.46164432168006897, - 0.4954302906990051, - 0.5272870063781738, - 0.5563454031944275, - 0.581812858581543, - 0.6029947400093079, - 0.6193132400512695, - 0.6303232908248901, - 0.6357244253158569, - 0.6353694200515747, - 0.6292679309844971, - 0.6175863742828369, - 0.6006433963775635, - 0.5789011716842651, - 0.5529528260231018, - 0.5235060453414917, - 0.49136412143707275, - 0.45740383863449097, - 0.4225515127182007, - 0.4268506169319153, - 0.44801679253578186, - 0.4685470163822174, - 0.4878811836242676, - 0.5054920315742493, - 0.5208990573883057, - 0.5336820483207703, - 0.5434923768043518, - 0.550062358379364, - 0.5532127618789673, - 0.5528577566146851, - 0.549006998538971, - 0.5417654514312744, - 0.5313307046890259, - 0.5179873704910278, - 0.5020994544029236, - 0.48410025238990784, - 0.46448084712028503, - 0.44377633929252625, - 0.4225515127182007, - 0.4268506169319153, - 0.43209245800971985, - 0.43713268637657166, - 0.4418337941169739, - 0.44606757164001465, - 0.44971853494644165, - 0.4526870846748352, - 0.45489224791526794, - 0.4562738835811615, - 0.45679429173469543, - 0.4564392566680908, - 0.45521852374076843, - 0.45316532254219055, - 0.45033571124076843, - 0.4468068480491638, - 0.44267499446868896, - 0.43805286288261414, - 0.4330665171146393, - 0.42785197496414185, - 0.4225515127182007, - 0.4268506169319153, - 0.4155969023704529, - 0.40459150075912476, - 0.39413467049598694, - 0.3845115900039673, - 0.375984787940979, - 0.3687868118286133, - 0.36311405897140503, - 0.3591212034225464, - 0.35691723227500916, - 0.35656219720840454, - 0.3580658435821533, - 0.36138713359832764, - 0.3664354085922241, - 0.3730730712413788, - 0.3811189830303192, - 0.3903537094593048, - 0.4005253314971924, - 0.4113564193248749, - 0.4225515127182007, - 0.4268506169319153, - 0.40031763911247253, - 0.37444978952407837, - 0.34995266795158386, - 0.32749447226524353, - 0.30768781900405884, - 0.2910729646682739, - 0.27810317277908325, - 0.26913216710090637, - 0.2644047141075134, - 0.2640497088432312, - 0.2680768072605133, - 0.27637624740600586, - 0.28872162103652954, - 0.3047761023044586, - 0.32410186529159546, - 0.34617170691490173, - 0.370383620262146, - 0.3960771858692169, - 0.4225515127182007, - 0.4268506169319153, - 0.38791048526763916, - 0.3499739170074463, - 0.31407567858695984, - 0.2811950445175171, - 0.25222885608673096, - 0.2279672771692276, - 0.2090720683336258, - 0.19605864584445953, - 0.18928202986717224, - 0.18892702460289001, - 0.19500328600406647, - 0.2073451429605484, - 0.22561588883399963, - 0.24931713938713074, - 0.27780240774154663, - 0.3102947473526001, - 0.3459077477455139, - 0.38367003202438354, - 0.4225515127182007, - 0.4268506169319153, - 0.37971991300582886, - 0.33381620049476624, - 0.29039156436920166, - 0.25063055753707886, - 0.21561771631240845, - 0.18630816042423248, - 0.1635012924671173, - 0.14781931042671204, - 0.13968992233276367, - 0.13933491706848145, - 0.14676395058631897, - 0.16177436709403992, - 0.18395675718784332, - 0.21270599961280823, - 0.2472379356622696, - 0.2866106331348419, - 0.32975003123283386, - 0.37547945976257324, - 0.42255154252052307, - 0.4268506169319153, - 0.37663352489471436, - 0.32772761583328247, - 0.28146684169769287, - 0.23911316692829132, - 0.20182183384895325, - 0.17061007022857666, - 0.14632919430732727, - 0.12964165210723877, - 0.12100249528884888, - 0.12064749002456665, - 0.1285862922668457, - 0.14460226893424988, - 0.1682586371898651, - 0.19891010224819183, - 0.23572054505348206, - 0.2776859402656555, - 0.3236614465713501, - 0.37239307165145874, - 0.42255154252052307 - ], - "z": [ - -1.4963033199310303, - -1.4972903728485107, - -1.4966306686401367, - -1.49434232711792, - -1.4904876947402954, - -1.4851720333099365, - -1.4785401821136475, - -1.4707731008529663, - -1.4620827436447144, - -1.452705979347229, - -1.4428987503051758, - -1.4329285621643066, - -1.4230672121047974, - -1.4135838747024536, - -1.404737114906311, - -1.39676833152771, - -1.3898948431015015, - -1.384304165840149, - -1.3801487684249878, - -1.3775420188903809, - -1.4963033199310303, - -1.4974743127822876, - -1.4969936609268188, - -1.4948744773864746, - -1.491174340248108, - -1.485994577407837, - -1.4794760942459106, - -1.4717968702316284, - -1.4631664752960205, - -1.4538201093673706, - -1.4440128803253174, - -1.4340122938156128, - -1.4240909814834595, - -1.4145197868347168, - -1.4055596590042114, - -1.3974549770355225, - -1.3904269933700562, - -1.384667158126831, - -1.3803328275680542, - -1.3775420188903809, - -1.4963033199310303, - -1.497443675994873, - -1.4969332218170166, - -1.4947857856750488, - -1.4910600185394287, - -1.4858574867248535, - -1.4793201684951782, - -1.4716264009475708, - -1.4629859924316406, - -1.4536346197128296, - -1.4438273906707764, - -1.433831810951233, - -1.4239205121994019, - -1.4143638610839844, - -1.4054226875305176, - -1.3973406553268433, - -1.3903383016586304, - -1.3846067190170288, - -1.38030207157135, - -1.3775420188903809, - -1.4963033199310303, - -1.497201681137085, - -1.4964557886123657, - -1.4940860271453857, - -1.4901570081710815, - -1.4847759008407593, - -1.478089451789856, - -1.4702800512313843, - -1.4615607261657715, - -1.452169418334961, - -1.4423621892929077, - -1.4324065446853638, - -1.4225741624832153, - -1.413133144378662, - -1.4043409824371338, - -1.396437644958496, - -1.3896385431289673, - -1.384129285812378, - -1.380060076713562, - -1.3775420188903809, - -1.4963033199310303, - -1.4967745542526245, - -1.4956133365631104, - -1.4928510189056396, - -1.4885631799697876, - -1.4828667640686035, - -1.475917100906372, - -1.467903733253479, - -1.4590452909469604, - -1.4495834112167358, - -1.4397761821746826, - -1.4298911094665527, - -1.42019784450531, - -1.4109607934951782, - -1.402431845664978, - -1.3948438167572021, - -1.3884035348892212, - -1.383286714553833, - -1.3796330690383911, - -1.3775420188903809, - -1.4963033199310303, - -1.496208667755127, - -1.4944968223571777, - -1.4912145137786865, - -1.486451268196106, - -1.4803370237350464, - -1.4730385541915894, - -1.4647549390792847, - -1.455712080001831, - -1.4461567401885986, - -1.4363495111465454, - -1.4265578985214233, - -1.4170490503311157, - -1.4080822467803955, - -1.3999022245407104, - -1.3927319049835205, - -1.386767029762268, - -1.38217031955719, - -1.379067063331604, - -1.3775420188903809, - -1.4963033199310303, - -1.4955651760101318, - -1.493227481842041, - -1.489353895187378, - -1.4840501546859741, - -1.4774609804153442, - -1.4697659015655518, - -1.4611749649047852, - -1.4519225358963013, - -1.4422608613967896, - -1.4324536323547363, - -1.4227683544158936, - -1.4134690761566162, - -1.404809594154358, - -1.3970260620117188, - -1.3903307914733887, - -1.384906530380249, - -1.3809009790420532, - -1.3784236907958984, - -1.3775420188903809, - -1.4963033199310303, - -1.4949140548706055, - -1.4919428825378418, - -1.4874708652496338, - -1.4816200733184814, - -1.4745500087738037, - -1.4664536714553833, - -1.4575517177581787, - -1.4480870962142944, - -1.438317894935608, - -1.4285106658935547, - -1.4189329147338867, - -1.4098458290100098, - -1.4014973640441895, - -1.3941152095794678, - -1.387900710105896, - -1.3830233812332153, - -1.379616379737854, - -1.3777724504470825, - -1.3775420188903809, - -1.4963033199310303, - -1.4943256378173828, - -1.4907820224761963, - -1.4857693910598755, - -1.479424238204956, - -1.4719197750091553, - -1.4634608030319214, - -1.454277753829956, - -1.4446214437484741, - -1.4347550868988037, - -1.4249478578567505, - -1.4154672622680664, - -1.406571865081787, - -1.3985044956207275, - -1.3914849758148193, - -1.3857048749923706, - -1.381321907043457, - -1.3784555196762085, - -1.3771840333938599, - -1.3775420188903809, - -1.4963033199310303, - -1.4938637018203735, - -1.4898709058761597, - -1.4844337701797485, - -1.4777007102966309, - -1.4698553085327148, - -1.4611115455627441, - -1.4517080783843994, - -1.4419012069702148, - -1.431958556175232, - -1.4221513271331787, - -1.4127470254898071, - -1.4040021896362305, - -1.3961552381515503, - -1.3894203901290894, - -1.3839813470840454, - -1.37998628616333, - -1.3775444030761719, - -1.3767220973968506, - -1.3775420188903809, - -1.4963033199310303, - -1.4935784339904785, - -1.4893081188201904, - -1.4836089611053467, - -1.4766361713409424, - -1.4685802459716797, - -1.4596606492996216, - -1.4501209259033203, - -1.4402210712432861, - -1.4302313327789307, - -1.4204241037368774, - -1.4110668897628784, - -1.4024150371551514, - -1.3947043418884277, - -1.3881453275680542, - -1.382916808128357, - -1.3791614770889282, - -1.3769816160202026, - -1.3764368295669556, - -1.3775420188903809, - -1.4963033199310303, - -1.4935007095336914, - -1.4891548156738281, - -1.483384132385254, - -1.4763461351394653, - -1.4682327508926392, - -1.4592652320861816, - -1.4496883153915405, - -1.4397631883621216, - -1.4297606945037842, - -1.419953465461731, - -1.4106090068817139, - -1.4019824266433716, - -1.3943089246749878, - -1.3877978324890137, - -1.3826267719268799, - -1.3789366483688354, - -1.3768283128738403, - -1.3763591051101685, - -1.3775420188903809, - -1.4963033199310303, - -1.4936388731002808, - -1.4894274473190308, - -1.4837837219238281, - -1.476861834526062, - -1.4688504934310913, - -1.4599682092666626, - -1.4504573345184326, - -1.4405771493911743, - -1.4305974245071411, - -1.420790195465088, - -1.4114229679107666, - -1.4027514457702637, - -1.3950119018554688, - -1.3884155750274658, - -1.3831424713134766, - -1.3793362379074097, - -1.377100944519043, - -1.3764973878860474, - -1.3775420188903809, - -1.4963033199310303, - -1.4939781427383423, - -1.4900965690612793, - -1.4847644567489624, - -1.4781274795532227, - -1.4703664779663086, - -1.461693286895752, - -1.4523444175720215, - -1.4425748586654663, - -1.4326510429382324, - -1.4228438138961792, - -1.4134206771850586, - -1.4046385288238525, - -1.396736979484558, - -1.3899316787719727, - -1.3844081163406372, - -1.3803170919418335, - -1.377769947052002, - -1.3768365383148193, - -1.3775420188903809, - -1.4963033199310303, - -1.4944814443588257, - -1.4910895824432373, - -1.486220121383667, - -1.4800059795379639, - -1.4726166725158691, - -1.4642536640167236, - -1.4551451206207275, - -1.4455395936965942, - -1.4356989860534668, - -1.4258917570114136, - -1.4163854122161865, - -1.4074392318725586, - -1.3992973566055298, - -1.3921817541122437, - -1.3862866163253784, - -1.3817726373672485, - -1.3787630796432495, - -1.3773398399353027, - -1.3775420188903809, - -1.4963033199310303, - -1.4950945377349854, - -1.49229896068573, - -1.4879928827285767, - -1.4822936058044434, - -1.475356936454773, - -1.4673717021942139, - -1.458556056022644, - -1.4491502046585083, - -1.4394108057022095, - -1.4296035766601562, - -1.4199960231781006, - -1.410850167274475, - -1.40241539478302, - -1.3949220180511475, - -1.388574242591858, - -1.3835453987121582, - -1.3799724578857422, - -1.3779529333114624, - -1.3775420188903809, - -1.4963033199310303, - -1.4957507848739624, - -1.4935935735702515, - -1.4898905754089355, - -1.4847426414489746, - -1.4782904386520386, - -1.4707096815109253, - -1.4622074365615845, - -1.4530154466629028, - -1.4433844089508057, - -1.4335771799087524, - -1.4238612651824951, - -1.4145015478134155, - -1.405753493309021, - -1.397855520248413, - -1.3910232782363892, - -1.385443091392517, - -1.3812670707702637, - -1.3786091804504395, - -1.3775420188903809, - -1.4963033199310303, - -1.4963791370391846, - -1.49483323097229, - -1.491707682609558, - -1.487087607383728, - -1.481099247932434, - -1.4739059209823608, - -1.4657037258148193, - -1.4567164182662964, - -1.447189211845398, - -1.4373819828033447, - -1.4275622367858887, - -1.4179978370666504, - -1.408949613571167, - -1.4006644487380981, - -1.3933682441711426, - -1.3872601985931396, - -1.3825067281723022, - -1.3792376518249512, - -1.3775420188903809, - -1.4963033199310303, - -1.496911644935608, - -1.495883584022522, - -1.493247151374817, - -1.489074468612671, - -1.4834791421890259, - -1.4766138792037964, - -1.4686659574508667, - -1.4598520994186401, - -1.4504128694534302, - -1.440605640411377, - -1.4306979179382324, - -1.4209600687026978, - -1.4116575717926025, - -1.4030442237854004, - -1.3953551054000854, - -1.3887996673583984, - -1.3835570812225342, - -1.379770040512085, - -1.3775420188903809, - -1.4963033199310303, - -1.4972903728485107, - -1.4966306686401367, - -1.49434232711792, - -1.4904876947402954, - -1.4851720333099365, - -1.4785401821136475, - -1.4707731008529663, - -1.4620827436447144, - -1.452705979347229, - -1.4428987503051758, - -1.4329285621643066, - -1.4230672121047974, - -1.4135838747024536, - -1.404737114906311, - -1.39676833152771, - -1.3898948431015015, - -1.384304165840149, - -1.3801487684249878, - -1.3775420188903809 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.20697751641273499, - 0.20918402075767517, - 0.2113516628742218, - 0.21342135965824127, - 0.2153366357088089, - 0.21704523265361786, - 0.21850056946277618, - 0.21966294944286346, - 0.220500648021698, - 0.22099080681800842, - 0.22112008929252625, - 0.22088494896888733, - 0.22029179334640503, - 0.21935680508613586, - 0.2181055098772049, - 0.21657201647758484, - 0.21479815244674683, - 0.21283231675624847, - 0.21072813868522644, - 0.20854300260543823, - 0.20697751641273499, - 0.2258160412311554, - 0.24416205286979675, - 0.2615151107311249, - 0.2774018943309784, - 0.29138901829719543, - 0.3030949831008911, - 0.3122004568576813, - 0.31845706701278687, - 0.32169413566589355, - 0.3218234181404114, - 0.3188413679599762, - 0.31282928586006165, - 0.3039512038230896, - 0.29244929552078247, - 0.2786372900009155, - 0.2628919184207916, - 0.24564270675182343, - 0.22736015915870667, - 0.20854298770427704, - 0.20697751641273499, - 0.240407794713974, - 0.2729475200176239, - 0.30370911955833435, - 0.3318534791469574, - 0.3566128611564636, - 0.3773120045661926, - 0.39338618516921997, - 0.4043969511985779, - 0.41004401445388794, - 0.41017329692840576, - 0.4047812819480896, - 0.39401501417160034, - 0.3781682252883911, - 0.35767316818237305, - 0.33308887481689453, - 0.3050858974456787, - 0.2744281589984894, - 0.24195191264152527, - 0.20854298770427704, - 0.20697751641273499, - 0.25137799978256226, - 0.29458868503570557, - 0.33543097972869873, - 0.37279069423675537, - 0.40564876794815063, - 0.4331090450286865, - 0.45442235469818115, - 0.4690074324607849, - 0.47646623849868774, - 0.47659552097320557, - 0.46939170360565186, - 0.4550511837005615, - 0.4339652955532074, - 0.40670910477638245, - 0.3740260601043701, - 0.3368077278137207, - 0.29606935381889343, - 0.2529221177101135, - 0.20854298770427704, - 0.20697751641273499, - 0.2575379014015198, - 0.3067404627799988, - 0.3532431125640869, - 0.3957773745059967, - 0.4331829845905304, - 0.4644396901130676, - 0.48869484663009644, - 0.5052868127822876, - 0.5137630105018616, - 0.5138922929763794, - 0.5056710839271545, - 0.4893236756324768, - 0.4652959108352661, - 0.4342432916164398, - 0.39701277017593384, - 0.3546198606491089, - 0.30822110176086426, - 0.25908201932907104, - 0.20854298770427704, - 0.20697751641273499, - 0.2582199275493622, - 0.30808591842651367, - 0.35521531105041504, - 0.39832252264022827, - 0.43623167276382446, - 0.46790868043899536, - 0.4924895763397217, - 0.5093038082122803, - 0.5178926587104797, - 0.5180219411849976, - 0.5096880793571472, - 0.49311840534210205, - 0.4687649607658386, - 0.4372919797897339, - 0.399557888507843, - 0.3565921187400818, - 0.30956658720970154, - 0.25976404547691345, - 0.20854298770427704, - 0.20697751641273499, - 0.25335022807121277, - 0.2984793484210968, - 0.34113389253616333, - 0.38015037775039673, - 0.41446447372436523, - 0.4431402087211609, - 0.465395450592041, - 0.4806230664253235, - 0.48840761184692383, - 0.48853689432144165, - 0.48100733757019043, - 0.4660242795944214, - 0.44399645924568176, - 0.41552478075027466, - 0.3813857436180115, - 0.3425107002258301, - 0.29996001720428467, - 0.25489434599876404, - 0.20854298770427704, - 0.20697751641273499, - 0.24345646798610687, - 0.278961718082428, - 0.3125247657299042, - 0.34323015809059143, - 0.3702402114868164, - 0.39281827211380005, - 0.41034847497940063, - 0.42235255241394043, - 0.4285030961036682, - 0.42863237857818604, - 0.42273688316345215, - 0.410977303981781, - 0.3936745524406433, - 0.37130051851272583, - 0.3444655239582062, - 0.3139015734195709, - 0.28044235706329346, - 0.24500058591365814, - 0.20854298770427704, - 0.20697751641273499, - 0.22961081564426422, - 0.25164806842803955, - 0.27248820662498474, - 0.2915627062320709, - 0.3083513081073761, - 0.32239603996276855, - 0.33331382274627686, - 0.34080684185028076, - 0.3446706533432007, - 0.3447999358177185, - 0.3411911427974701, - 0.3339426517486572, - 0.32325229048728943, - 0.30941158533096313, - 0.29279810190200806, - 0.2738649845123291, - 0.2531287372112274, - 0.2311549335718155, - 0.20854298770427704, - 0.20697751641273499, - 0.21331363916397095, - 0.21949829161167145, - 0.22536274790763855, - 0.2307470589876175, - 0.23550434410572052, - 0.2395048439502716, - 0.2426394522190094, - 0.24482262134552002, - 0.24599483609199524, - 0.24612411856651306, - 0.24520692229270935, - 0.24326828122138977, - 0.2403610795736313, - 0.23656460642814636, - 0.23198243975639343, - 0.2267395406961441, - 0.22097894549369812, - 0.2148577719926834, - 0.20854298770427704, - 0.20697753131389618, - 0.19633102416992188, - 0.18599627912044525, - 0.17625519633293152, - 0.16737347841262817, - 0.15959343314170837, - 0.15312723815441132, - 0.14815127849578857, - 0.1448013186454773, - 0.14316868782043457, - 0.1432979702949524, - 0.14518561959266663, - 0.14878012239933014, - 0.153983473777771, - 0.16065368056297302, - 0.1686088591814041, - 0.17763198912143707, - 0.18747691810131073, - 0.19787514209747314, - 0.20854300260543823, - 0.20697753131389618, - 0.1805032640695572, - 0.15477249026298523, - 0.1304870992898941, - 0.10830950736999512, - 0.08884469419717789, - 0.07262356579303741, - 0.0600886195898056, - 0.051581770181655884, - 0.04733504354953766, - 0.04746432602405548, - 0.051966071128845215, - 0.060717448592185974, - 0.07347977161407471, - 0.08990494161844254, - 0.10954488813877106, - 0.13186389207839966, - 0.1562531441450119, - 0.18204738199710846, - 0.20854300260543823, - 0.20697753131389618, - 0.16754557192325592, - 0.12921054661273956, - 0.09301815927028656, - 0.0599556565284729, - 0.030924856662750244, - 0.006717681884765625, - -0.012005612254142761, - -0.024734243750572205, - -0.03112103044986725, - -0.030991747975349426, - -0.024349942803382874, - -0.01137678325176239, - 0.0075738877058029175, - 0.0319850891828537, - 0.06119099259376526, - 0.09439495205879211, - 0.13069120049476624, - 0.1690896898508072, - 0.20854300260543823, - 0.20697753131389618, - 0.15886208415031433, - 0.11208043992519379, - 0.06790870428085327, - 0.027551740407943726, - -0.007889598608016968, - -0.03744855523109436, - -0.06031887233257294, - -0.07587669789791107, - -0.08369763195514679, - -0.08356834948062897, - -0.07549242675304413, - -0.059690043330192566, - -0.03659236431121826, - -0.006829366087913513, - 0.028787091374397278, - 0.06928548216819763, - 0.11356109380722046, - 0.1604062020778656, - 0.20854300260543823, - 0.20697753131389618, - 0.1553938090801239, - 0.10523851960897446, - 0.0578797310590744, - 0.014609307050704956, - -0.023392453789711, - -0.05508898198604584, - -0.07961563766002655, - -0.09630347788333893, - -0.10469727218151093, - -0.1045679897069931, - -0.09591920673847198, - -0.07898680865764618, - -0.05423279106616974, - -0.022332221269607544, - 0.01584465801715851, - 0.05925650894641876, - 0.10671917349100113, - 0.15693792700767517, - 0.20854300260543823, - 0.20697753131389618, - 0.15751659870147705, - 0.10942615568637848, - 0.06401804089546204, - 0.022530823945999146, - -0.013903811573982239, - -0.04429201781749725, - -0.06780491769313812, - -0.08380110561847687, - -0.09184424579143524, - -0.09171496331691742, - -0.08341683447360992, - -0.06717608869075775, - -0.04343579709529877, - -0.012843579053878784, - 0.023766174912452698, - 0.0653948187828064, - 0.11090680956840515, - 0.15906071662902832, - 0.20854300260543823, - 0.20697753131389618, - 0.16500040888786316, - 0.12418963760137558, - 0.08565845340490341, - 0.0504579097032547, - 0.019548162817955017, - -0.006227657198905945, - -0.02616642415523529, - -0.039724335074424744, - -0.04653148353099823, - -0.04640220105648041, - -0.03934003412723541, - -0.02553759515285492, - -0.005371451377868652, - 0.02060839533805847, - 0.051693275570869446, - 0.08703524619340897, - 0.12567028403282166, - 0.16654452681541443, - 0.20854300260543823, - 0.20697753131389618, - 0.17703422904014587, - 0.14792907238006592, - 0.12045592814683914, - 0.09536422789096832, - 0.07333841919898987, - 0.05497927963733673, - 0.04078759253025055, - 0.031150460243225098, - 0.02633082866668701, - 0.026460111141204834, - 0.03153476119041443, - 0.04141642153263092, - 0.05583548545837402, - 0.07439866662025452, - 0.09659960120916367, - 0.1218327209353447, - 0.1494097113609314, - 0.17857836186885834, - 0.20854300260543823, - 0.20697753131389618, - 0.1923140585422516, - 0.17807191610336304, - 0.16463959217071533, - 0.152383491396904, - 0.141637921333313, - 0.1326960027217865, - 0.12580165266990662, - 0.12114289402961731, - 0.1188468411564827, - 0.11897612363100052, - 0.12152719497680664, - 0.126430481672287, - 0.13355222344398499, - 0.14269818365573883, - 0.15361887216567993, - 0.16601639986038208, - 0.1795525699853897, - 0.19385817646980286, - 0.20854300260543823, - 0.20697751641273499, - 0.20918402075767517, - 0.2113516926765442, - 0.21342138946056366, - 0.2153366655111313, - 0.21704527735710144, - 0.21850061416625977, - 0.21966299414634705, - 0.22050069272518158, - 0.2209908664226532, - 0.22112014889717102, - 0.2208849936723709, - 0.2202918380498886, - 0.21935684978961945, - 0.21810553967952728, - 0.21657204627990723, - 0.2147981822490692, - 0.21283233165740967, - 0.21072813868522644, - 0.20854300260543823 - ], - "y": [ - 0.39591366052627563, - 0.34327489137649536, - 0.2920421361923218, - 0.24361294507980347, - 0.19930827617645264, - 0.1603366881608963, - 0.12776124477386475, - 0.10247039794921875, - 0.08515417575836182, - 0.07628482580184937, - 0.07610428333282471, - 0.08461755514144897, - 0.1015923023223877, - 0.12656554579734802, - 0.1588561087846756, - 0.1975831687450409, - 0.24169039726257324, - 0.289974570274353, - 0.3411186635494232, - 0.3937276303768158, - 0.39591366052627563, - 0.346832811832428, - 0.2990609407424927, - 0.2539011240005493, - 0.2125852406024933, - 0.17624028027057648, - 0.14585758745670319, - 0.12226596474647522, - 0.10610896348953247, - 0.0978272557258606, - 0.09764671325683594, - 0.10557234287261963, - 0.12138786911964417, - 0.14466193318367004, - 0.17475971579551697, - 0.21086016297340393, - 0.2519785761833191, - 0.29699334502220154, - 0.34467658400535583, - 0.3937276303768158, - 0.39591366052627563, - 0.3557077646255493, - 0.3165687918663025, - 0.2795643210411072, - 0.24570371210575104, - 0.2159106433391571, - 0.19099777936935425, - 0.1716446727514267, - 0.1583792120218277, - 0.15156327188014984, - 0.15138275921344757, - 0.15784256160259247, - 0.17076654732227325, - 0.1898021250963211, - 0.2144300788640976, - 0.2439786195755005, - 0.27764177322387695, - 0.31450119614601135, - 0.35355156660079956, - 0.3937276303768158, - 0.39591366052627563, - 0.36893805861473083, - 0.34266847372055054, - 0.3178214728832245, - 0.29507479071617126, - 0.2750489115715027, - 0.2582901120185852, - 0.2452555000782013, - 0.23630063235759735, - 0.23166978359222412, - 0.23148927092552185, - 0.23576398193836212, - 0.24437737464904785, - 0.25709447264671326, - 0.27356836199760437, - 0.2933496832847595, - 0.31589892506599426, - 0.3406008780002594, - 0.3667818307876587, - 0.3937276303768158, - 0.39591366052627563, - 0.3850899636745453, - 0.37453168630599976, - 0.3645268380641937, - 0.3553483486175537, - 0.34724652767181396, - 0.340442419052124, - 0.33512163162231445, - 0.33142924308776855, - 0.3294660449028015, - 0.32928550243377686, - 0.3308926224708557, - 0.334243506193161, - 0.33924680948257446, - 0.34576597809791565, - 0.35362327098846436, - 0.3626042902469635, - 0.3724640905857086, - 0.38293373584747314, - 0.3937276303768158, - 0.39591363072395325, - 0.40241312980651855, - 0.40870553255081177, - 0.41461920738220215, - 0.4199928045272827, - 0.4246797561645508, - 0.4285522699356079, - 0.43150463700294495, - 0.4334563612937927, - 0.4343542158603668, - 0.43417370319366455, - 0.4329197406768799, - 0.4306265115737915, - 0.42735663056373596, - 0.42319920659065247, - 0.41826772689819336, - 0.4126966595649719, - 0.406637966632843, - 0.4002569317817688, - 0.3937276303768158, - 0.39591363072395325, - 0.41903039813041687, - 0.44148677587509155, - 0.462670236825943, - 0.4820029139518738, - 0.4989575147628784, - 0.5130714774131775, - 0.5239599347114563, - 0.5313258171081543, - 0.5349681377410889, - 0.5347875952720642, - 0.5307891368865967, - 0.5230818390846252, - 0.5118758678436279, - 0.4974769651889801, - 0.4802778363227844, - 0.46074768900871277, - 0.4394192099571228, - 0.4168742001056671, - 0.3937276005744934, - 0.39591363072395325, - 0.43314099311828613, - 0.4693230390548706, - 0.5034728646278381, - 0.5346589684486389, - 0.5620306134223938, - 0.584841251373291, - 0.6024686098098755, - 0.6144318580627441, - 0.6204046607017517, - 0.620224118232727, - 0.6138951778411865, - 0.6015904545783997, - 0.5836455821990967, - 0.5605500936508179, - 0.5329339504241943, - 0.5015503168106079, - 0.46725547313690186, - 0.430984765291214, - 0.3937276005744934, - 0.39591363072395325, - 0.4432157874107361, - 0.48919785022735596, - 0.5326055288314819, - 0.5722548365592957, - 0.6070641279220581, - 0.6360840797424316, - 0.65852290391922, - 0.6737686395645142, - 0.6814054250717163, - 0.6812248826026917, - 0.6732320785522461, - 0.6576448082923889, - 0.6348884105682373, - 0.605583667755127, - 0.5705297589302063, - 0.5306829810142517, - 0.4871302843093872, - 0.44105958938598633, - 0.3937276005744934, - 0.39591363072395325, - 0.44816306233406067, - 0.49895745515823364, - 0.5469112396240234, - 0.5907164216041565, - 0.6291780471801758, - 0.6612470149993896, - 0.6860486268997192, - 0.7029062509536743, - 0.7113600969314575, - 0.7111795544624329, - 0.7023696303367615, - 0.6851705312728882, - 0.6600513458251953, - 0.6276975274085999, - 0.5889913439750671, - 0.5449886918067932, - 0.4968898594379425, - 0.4460068345069885, - 0.3937276005744934, - 0.39591363072395325, - 0.44744667410850525, - 0.49754422903060913, - 0.5448397397994995, - 0.5880430936813354, - 0.6259758472442627, - 0.65760338306427, - 0.6820628046989441, - 0.6986870169639587, - 0.7070225477218628, - 0.7068420648574829, - 0.6981503963470459, - 0.681184709072113, - 0.6564077138900757, - 0.6244953870773315, - 0.5863180756568909, - 0.5429171919822693, - 0.495476633310318, - 0.4452904760837555, - 0.3937276005744934, - 0.39591363072395325, - 0.44114428758621216, - 0.4851113259792328, - 0.5266155004501343, - 0.5645246505737305, - 0.5978046655654907, - 0.6255478858947754, - 0.6469973921775818, - 0.661568284034729, - 0.6688628792762756, - 0.668682336807251, - 0.6610316038131714, - 0.6461192965507507, - 0.624352216720581, - 0.5963241457939148, - 0.5627995729446411, - 0.524692952632904, - 0.48304376006126404, - 0.43898805975914, - 0.3937276005744934, - 0.39591363072395325, - 0.42993882298469543, - 0.46300607919692993, - 0.49421340227127075, - 0.5227096080780029, - 0.5477172136306763, - 0.5685542821884155, - 0.5846523642539978, - 0.5955723524093628, - 0.6010162830352783, - 0.6008357405662537, - 0.5950356721878052, - 0.5837742686271667, - 0.567358672618866, - 0.5462367534637451, - 0.5209845304489136, - 0.4922908544540405, - 0.4609385132789612, - 0.4277825951576233, - 0.3937276005744934, - 0.39591363072395325, - 0.4150445759296417, - 0.43362388014793396, - 0.4511446952819824, - 0.4671291708946228, - 0.48114123940467834, - 0.49279871582984924, - 0.5017836093902588, - 0.5078508257865906, - 0.5108348727226257, - 0.5106543302536011, - 0.5073142051696777, - 0.5009055137634277, - 0.4916030764579773, - 0.47966068983078003, - 0.46540409326553345, - 0.4492221474647522, - 0.4315562844276428, - 0.41288837790489197, - 0.3937276005744934, - 0.39591363072395325, - 0.3980756103992462, - 0.40014880895614624, - 0.4020766615867615, - 0.40380656719207764, - 0.4052913784980774, - 0.4064905643463135, - 0.4073714315891266, - 0.40790995955467224, - 0.4080914258956909, - 0.40791091322898865, - 0.407373309135437, - 0.40649333596229553, - 0.40529492497444153, - 0.4038108289241791, - 0.4020814895629883, - 0.40015408396720886, - 0.3980812132358551, - 0.39591941237449646, - 0.3937276303768158, - 0.39591366052627563, - 0.3808707594871521, - 0.36620837450027466, - 0.3523264527320862, - 0.3396036624908447, - 0.3283870816230774, - 0.3189826011657715, - 0.31164678931236267, - 0.30657973885536194, - 0.3039197027683258, - 0.30373916029930115, - 0.3060431182384491, - 0.31076866388320923, - 0.31778696179389954, - 0.3269065022468567, - 0.33787858486175537, - 0.35040390491485596, - 0.3641408085823059, - 0.37871453166007996, - 0.3937276303768158, - 0.39591366052627563, - 0.36529436707496643, - 0.3354805111885071, - 0.30728527903556824, - 0.28147777915000916, - 0.258762001991272, - 0.23975752294063568, - 0.22498275339603424, - 0.21484075486660004, - 0.20960810780525208, - 0.2094275951385498, - 0.2143041044473648, - 0.2241046279668808, - 0.23856186866760254, - 0.25728142261505127, - 0.2797527015209198, - 0.305362731218338, - 0.33341291546821594, - 0.3631381690502167, - 0.3937276303768158, - 0.39591366052627563, - 0.35303446650505066, - 0.3112950921058655, - 0.2718340754508972, - 0.23572781682014465, - 0.20396120846271515, - 0.17740075290203094, - 0.15677091479301453, - 0.14263442158699036, - 0.13537701964378357, - 0.1351964771747589, - 0.14209780097007751, - 0.15589278936386108, - 0.1762050837278366, - 0.20248062908649445, - 0.2340027391910553, - 0.269911527633667, - 0.30922752618789673, - 0.3508782386779785, - 0.3937276303768158, - 0.39591366052627563, - 0.34541958570480347, - 0.29627302289009094, - 0.24981459975242615, - 0.20731154084205627, - 0.16992326080799103, - 0.13866961002349854, - 0.11440303921699524, - 0.09778556227684021, - 0.0892704427242279, - 0.08908990025520325, - 0.09724894165992737, - 0.11352494359016418, - 0.1374739408493042, - 0.16844268143177032, - 0.20558644831180573, - 0.24789205193519592, - 0.2942054271697998, - 0.3432633578777313, - 0.3937276303768158, - 0.39591366052627563, - 0.34327489137649536, - 0.2920421361923218, - 0.24361294507980347, - 0.19930827617645264, - 0.1603367030620575, - 0.12776124477386475, - 0.10247039794921875, - 0.08515417575836182, - 0.07628482580184937, - 0.07610428333282471, - 0.08461755514144897, - 0.1015923023223877, - 0.12656554579734802, - 0.1588561236858368, - 0.1975831687450409, - 0.24169039726257324, - 0.289974570274353, - 0.3411186635494232, - 0.3937276303768158 - ], - "z": [ - -1.5662670135498047, - -1.5670757293701172, - -1.5666998624801636, - -1.5651496648788452, - -1.5624674558639526, - -1.55872642993927, - -1.5540285110473633, - -1.548501968383789, - -1.5422974824905396, - -1.5355842113494873, - -1.5285454988479614, - -1.5213731527328491, - -1.5142630338668823, - -1.5074087381362915, - -1.500997543334961, - -1.495204210281372, - -1.4901868104934692, - -1.4860820770263672, - -1.4830021858215332, - -1.4810309410095215, - -1.5662670135498047, - -1.56728994846344, - -1.567122459411621, - -1.5657691955566406, - -1.5632668733596802, - -1.559683918952942, - -1.5551180839538574, - -1.5496938228607178, - -1.5435590744018555, - -1.5368813276290894, - -1.5298426151275635, - -1.5226348638534546, - -1.515454888343811, - -1.5084983110427856, - -1.5019551515579224, - -1.4960036277770996, - -1.490806221961975, - -1.4865046739578247, - -1.483216404914856, - -1.4810309410095215, - -1.5662670135498047, - -1.5673303604125977, - -1.567202091217041, - -1.5658859014511108, - -1.5634175539016724, - -1.5598644018173218, - -1.5553234815597534, - -1.549918532371521, - -1.5437968969345093, - -1.537125825881958, - -1.5300871133804321, - -1.5228726863861084, - -1.5156795978546143, - -1.5087037086486816, - -1.5021356344223022, - -1.4961543083190918, - -1.4909230470657349, - -1.4865843057632446, - -1.4832566976547241, - -1.4810309410095215, - -1.5662670135498047, - -1.567192554473877, - -1.5669301748275757, - -1.5654873847961426, - -1.5629032850265503, - -1.5592483282089233, - -1.5546224117279053, - -1.5491516590118408, - -1.542985200881958, - -1.536291241645813, - -1.529252529144287, - -1.5220609903335571, - -1.514912724494934, - -1.508002758026123, - -1.5015195608139038, - -1.4956399202346802, - -1.490524411201477, - -1.4863123893737793, - -1.4831188917160034, - -1.4810309410095215, - -1.5662670135498047, - -1.5668914318084717, - -1.5663362741470337, - -1.5646166801452637, - -1.5617796182632446, - -1.557902455329895, - -1.5530909299850464, - -1.5474762916564941, - -1.541211724281311, - -1.534468173980713, - -1.5274293422698975, - -1.5202875137329102, - -1.5132373571395874, - -1.5064711570739746, - -1.500173568725586, - -1.494516372680664, - -1.4896537065505981, - -1.4857184886932373, - -1.4828177690505981, - -1.4810309410095215, - -1.5662670135498047, - -1.5664596557617188, - -1.5654845237731934, - -1.5633682012557983, - -1.5601683855056763, - -1.5559724569320679, - -1.550894856452942, - -1.5450741052627563, - -1.5386688709259033, - -1.5318539142608643, - -1.5248152017593384, - -1.5177446603775024, - -1.5108351707458496, - -1.5042752027511597, - -1.4982436895370483, - -1.4929051399230957, - -1.4884052276611328, - -1.484866738319397, - -1.4823859930038452, - -1.4810309410095215, - -1.5662670135498047, - -1.5659440755844116, - -1.5644673109054565, - -1.5618772506713867, - -1.5582443475723267, - -1.5536677837371826, - -1.5482723712921143, - -1.5422053337097168, - -1.5356320142745972, - -1.5287319421768188, - -1.521693229675293, - -1.5147078037261963, - -1.5079662799835205, - -1.5016525983810425, - -1.4959388971328735, - -1.4909809827804565, - -1.4869142770767212, - -1.4838495254516602, - -1.481870412826538, - -1.4810309410095215, - -1.5662670135498047, - -1.5654003620147705, - -1.5633949041366577, - -1.5603052377700806, - -1.556215763092041, - -1.551237940788269, - -1.5455074310302734, - -1.5391807556152344, - -1.5324304103851318, - -1.5254405736923218, - -1.518401861190796, - -1.511506199836731, - -1.5049418210983276, - -1.4988877773284912, - -1.49350905418396, - -1.4889525175094604, - -1.4853423833847046, - -1.4827771186828613, - -1.4813268184661865, - -1.4810309410095215, - -1.5662670135498047, - -1.5648877620697021, - -1.5623835325241089, - -1.5588228702545166, - -1.5543025732040405, - -1.5489462614059448, - -1.5428998470306396, - -1.5363283157348633, - -1.5294109582901, - -1.5223363637924194, - -1.5152976512908936, - -1.5084867477416992, - -1.5020893812179565, - -1.4962800741195679, - -1.4912173748016357, - -1.48703932762146, - -1.483859896659851, - -1.4817657470703125, - -1.4808140993118286, - -1.4810309410095215, - -1.5662670135498047, - -1.564461588859558, - -1.5615427494049072, - -1.557590365409851, - -1.5527122020721436, - -1.5470411777496338, - -1.5407321453094482, - -1.5339570045471191, - -1.5269007682800293, - -1.5197558403015137, - -1.5127171277999878, - -1.5059765577316284, - -1.4997180700302124, - -1.4941123723983765, - -1.4893122911453247, - -1.485448956489563, - -1.482627511024475, - -1.4809249639511108, - -1.4803879261016846, - -1.4810309410095215, - -1.5662670135498047, - -1.5641679763793945, - -1.560963749885559, - -1.5567415952682495, - -1.5516167879104614, - -1.5457290410995483, - -1.5392390489578247, - -1.5323238372802734, - -1.5251719951629639, - -1.517978549003601, - -1.5109398365020752, - -1.504247784614563, - -1.4980849027633667, - -1.4926193952560425, - -1.4880002737045288, - -1.4843535423278809, - -1.481778621673584, - -1.4803459644317627, - -1.4800944328308105, - -1.4810309410095215, - -1.5662670135498047, - -1.5640389919281006, - -1.5607091188430786, - -1.556368350982666, - -1.5511351823806763, - -1.545152187347412, - -1.538582682609558, - -1.531605839729309, - -1.524411916732788, - -1.5171971321105957, - -1.5101584196090698, - -1.5034875869750977, - -1.4973667860031128, - -1.4919629096984863, - -1.487423300743103, - -1.4838719367980957, - -1.48140549659729, - -1.4800913333892822, - -1.479965329170227, - -1.4810309410095215, - -1.5662670135498047, - -1.5640883445739746, - -1.5608066320419312, - -1.5565112829208374, - -1.5513194799423218, - -1.5453729629516602, - -1.5388339757919312, - -1.5318806171417236, - -1.524702787399292, - -1.5174962282180786, - -1.5104575157165527, - -1.5037785768508911, - -1.497641682624817, - -1.4922142028808594, - -1.4876441955566406, - -1.4840562343597412, - -1.4815483093261719, - -1.4801888465881348, - -1.4800148010253906, - -1.4810309410095215, - -1.5662670135498047, - -1.5643107891082764, - -1.5612455606460571, - -1.557154655456543, - -1.552149772644043, - -1.5463676452636719, - -1.5399656295776367, - -1.5331186056137085, - -1.5260132551193237, - -1.518843412399292, - -1.5118046998977661, - -1.5050890445709229, - -1.4988796710968018, - -1.493345856666565, - -1.4886387586593628, - -1.4848865270614624, - -1.4821916818618774, - -1.4806277751922607, - -1.4802372455596924, - -1.4810309410095215, - -1.5662670135498047, - -1.5646823644638062, - -1.5619783401489258, - -1.558228850364685, - -1.5535361766815186, - -1.5480281114578247, - -1.5418552160263062, - -1.5351855754852295, - -1.5282012224197388, - -1.5210927724838257, - -1.5140540599822998, - -1.507277011871338, - -1.5009466409683228, - -1.4952354431152344, - -1.4902993440628052, - -1.486272931098938, - -1.483265995979309, - -1.4813605546951294, - -1.4806087017059326, - -1.4810309410095215, - -1.5662670135498047, - -1.5651625394821167, - -1.5629258155822754, - -1.559617519378662, - -1.5553282499313354, - -1.5501748323440552, - -1.5442978143692017, - -1.5378575325012207, - -1.5310297012329102, - -1.5240005254745483, - -1.5169618129730225, - -1.5101054906845093, - -1.503618597984314, - -1.4976780414581299, - -1.492445945739746, - -1.4880650043487549, - -1.4846546649932861, - -1.482308030128479, - -1.4810889959335327, - -1.4810309410095215, - -1.5662670135498047, - -1.565699577331543, - -1.563984990119934, - -1.561170220375061, - -1.557331919670105, - -1.552574872970581, - -1.5470287799835205, - -1.5408449172973633, - -1.5341920852661133, - -1.5272516012191772, - -1.5202127695083618, - -1.5132677555084229, - -1.5066059827804565, - -1.5004090070724487, - -1.494845986366272, - -1.4900686740875244, - -1.4862072467803955, - -1.4833672046661377, - -1.4816259145736694, - -1.4810309410095215, - -1.5662670135498047, - -1.5662349462509155, - -1.5650413036346436, - -1.5627185106277466, - -1.5593299865722656, - -1.554968237876892, - -1.549752116203308, - -1.5438240766525269, - -1.5373456478118896, - -1.5304934978485107, - -1.5234547853469849, - -1.5164213180541992, - -1.5095850229263306, - -1.5031323432922363, - -1.497239351272583, - -1.492066740989685, - -1.487755537033081, - -1.4844235181808472, - -1.4821614027023315, - -1.4810309410095215, - -1.5662670135498047, - -1.5667109489440918, - -1.5659801959991455, - -1.5640946626663208, - -1.5611059665679932, - -1.5570955276489258, - -1.5521727800369263, - -1.5464720726013184, - -1.5401486158370972, - -1.5333752632141113, - -1.526336431503296, - -1.5192244052886963, - -1.512233018875122, - -1.505553126335144, - -1.4993667602539062, - -1.4938427209854126, - -1.4891318082809448, - -1.4853624105453491, - -1.4826372861862183, - -1.4810309410095215, - -1.5662670135498047, - -1.5670757293701172, - -1.5666998624801636, - -1.5651496648788452, - -1.5624674558639526, - -1.55872642993927, - -1.5540285110473633, - -1.548501968383789, - -1.5422974824905396, - -1.5355842113494873, - -1.5285454988479614, - -1.5213731527328491, - -1.5142630338668823, - -1.5074087381362915, - -1.500997543334961, - -1.495204210281372, - -1.4901868104934692, - -1.4860820770263672, - -1.4830021858215332, - -1.4810309410095215 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.16719357669353485, - 0.17193542420864105, - 0.176563560962677, - 0.18095175921916962, - 0.18498031795024872, - 0.18853935599327087, - 0.19153177738189697, - 0.1938759684562683, - 0.1955079883337021, - 0.1963832974433899, - 0.19647803902626038, - 0.195789635181427, - 0.19433684647083282, - 0.19215930998325348, - 0.18931642174720764, - 0.1858857274055481, - 0.181960791349411, - 0.17764872312545776, - 0.1730670928955078, - 0.16834090650081635, - 0.16719357669353485, - 0.18895336985588074, - 0.21013525128364563, - 0.23016144335269928, - 0.24848568439483643, - 0.26460814476013184, - 0.2780890166759491, - 0.2885606288909912, - 0.29573729634284973, - 0.2994232773780823, - 0.29951798915863037, - 0.29601895809173584, - 0.2890215218067169, - 0.2787165641784668, - 0.2653852105140686, - 0.2493910789489746, - 0.23117047548294067, - 0.2112203985452652, - 0.1900850385427475, - 0.16834089159965515, - 0.16719357669353485, - 0.20361414551734924, - 0.23905691504478455, - 0.27255505323410034, - 0.30319488048553467, - 0.3301405906677246, - 0.3526571989059448, - 0.3701304793357849, - 0.38208380341529846, - 0.3881911337375641, - 0.38828587532043457, - 0.38236546516418457, - 0.37059134244918823, - 0.3532847464084625, - 0.33091768622398376, - 0.30410030484199524, - 0.27356410026550293, - 0.2401420772075653, - 0.204745814204216, - 0.16834089159965515, - 0.16719356179237366, - 0.21432903409004211, - 0.26019442081451416, - 0.30353862047195435, - 0.3431794047355652, - 0.378035306930542, - 0.40715569257736206, - 0.42974621057510376, - 0.44519054889678955, - 0.4530675411224365, - 0.4531623125076294, - 0.44547218084335327, - 0.4302070736885071, - 0.4077832102775574, - 0.37881240248680115, - 0.34408479928970337, - 0.30454766750335693, - 0.2612795829772949, - 0.21546071767807007, - 0.16834089159965515, - 0.16719356179237366, - 0.21993692219257355, - 0.271257221698761, - 0.31975460052490234, - 0.3641061782836914, - 0.4031020998954773, - 0.43567872047424316, - 0.4609473943710327, - 0.4782189130783081, - 0.4870220422744751, - 0.48711681365966797, - 0.4785005450248718, - 0.46140825748443604, - 0.4363062381744385, - 0.40387916564941406, - 0.3650115728378296, - 0.32076364755630493, - 0.27234238386154175, - 0.2210686057806015, - 0.16834089159965515, - 0.16719356179237366, - 0.21983009576797485, - 0.2710464894771576, - 0.3194456994533539, - 0.3637075126171112, - 0.40262457728385925, - 0.4351353645324707, - 0.4603530168533325, - 0.4775897264480591, - 0.48637521266937256, - 0.48646998405456543, - 0.4778713583946228, - 0.46081387996673584, - 0.435762882232666, - 0.4034016728401184, - 0.3646129369735718, - 0.32045474648475647, - 0.27213165163993835, - 0.2209617793560028, - 0.16834089159965515, - 0.16719356179237366, - 0.21402013301849365, - 0.25958505272865295, - 0.30264538526535034, - 0.34202665090560913, - 0.3766545355319977, - 0.40558451414108276, - 0.42802751064300537, - 0.4433712363243103, - 0.45119714736938477, - 0.45129191875457764, - 0.443652868270874, - 0.4284883737564087, - 0.40621206164360046, - 0.37743163108825684, - 0.3429320454597473, - 0.30365443229675293, - 0.2606702148914337, - 0.2151518166065216, - 0.16834089159965515, - 0.16719357669353485, - 0.2031366378068924, - 0.23811492323875427, - 0.2711743116378784, - 0.30141302943229675, - 0.32800620794296265, - 0.350228488445282, - 0.3674737513065338, - 0.3792715072631836, - 0.3852999806404114, - 0.3853946924209595, - 0.3795531392097473, - 0.36793461441993713, - 0.3508560359477997, - 0.3287833333015442, - 0.30231842398643494, - 0.272183358669281, - 0.23920008540153503, - 0.20426830649375916, - 0.16834089159965515, - 0.16719357669353485, - 0.18835900723934174, - 0.20896273851394653, - 0.22844275832176208, - 0.24626773595809937, - 0.26195138692855835, - 0.27506595849990845, - 0.28525370359420776, - 0.2922367453575134, - 0.2958245873451233, - 0.2959192991256714, - 0.29251837730407715, - 0.28571459650993347, - 0.27569350600242615, - 0.2627284824848175, - 0.24717314541339874, - 0.22945180535316467, - 0.2100479006767273, - 0.1894906759262085, - 0.16834089159965515, - 0.16719357669353485, - 0.1712886095046997, - 0.17528758943080902, - 0.17908143997192383, - 0.18256665766239166, - 0.18564818799495697, - 0.18824197351932526, - 0.19027726352214813, - 0.19169853627681732, - 0.19246701896190643, - 0.1925617754459381, - 0.19198018312454224, - 0.19073814153671265, - 0.18886949121952057, - 0.18642523884773254, - 0.18347205221652985, - 0.18009047210216522, - 0.1763727366924286, - 0.17242027819156647, - 0.16834090650081635, - 0.16719359159469604, - 0.15377530455589294, - 0.14073869585990906, - 0.12843935191631317, - 0.11721275746822357, - 0.10736517608165741, - 0.09916519373655319, - 0.09283649921417236, - 0.08855172246694565, - 0.08642774075269699, - 0.08652248233556747, - 0.08883336931467056, - 0.09329737722873688, - 0.0997927263379097, - 0.10814222693443298, - 0.11811815202236176, - 0.12944838404655457, - 0.14182385802268982, - 0.1549069881439209, - 0.16834090650081635, - 0.16719359159469604, - 0.13771693408489227, - 0.10905995965003967, - 0.08200438320636749, - 0.05728817731142044, - 0.035585567355155945, - 0.017488539218902588, - 0.0034907013177871704, - -0.006026118993759155, - -0.010802268981933594, - -0.01070752739906311, - -0.005744457244873047, - 0.003951564431190491, - 0.018116042017936707, - 0.03636261820793152, - 0.058193571865558624, - 0.08301343023777008, - 0.11014511436223984, - 0.13884860277175903, - 0.16834090650081635, - 0.16719359159469604, - 0.12485365569591522, - 0.0836842805147171, - 0.04480847716331482, - 0.009286671876907349, - -0.02191220223903656, - -0.047937095165252686, - -0.0680781751871109, - -0.08178600668907166, - -0.08868665993213654, - -0.08859188854694366, - -0.08150434494018555, - -0.06761731207370758, - -0.04730959236621857, - -0.02113516628742218, - 0.010192036628723145, - 0.04581752419471741, - 0.08476944267749786, - 0.12598532438278198, - 0.16834090650081635, - 0.16719359159469604, - 0.11657939851284027, - 0.0673614889383316, - 0.02088238298892975, - -0.021590083837509155, - -0.05889737606048584, - -0.09002186357975006, - -0.11411453783512115, - -0.13051818311214447, - -0.13878540694713593, - -0.13869063556194305, - -0.13023655116558075, - -0.11365367472171783, - -0.08939437568187714, - -0.058120355010032654, - -0.020684704184532166, - 0.021891430020332336, - 0.06844665110111237, - 0.11771108210086823, - 0.16834092140197754, - 0.16719359159469604, - 0.1137908399105072, - 0.06186043471097946, - 0.012818872928619385, - -0.031996071338653564, - -0.07136201858520508, - -0.10420514643192291, - -0.12962953746318817, - -0.14694176614284515, - -0.15566955506801605, - -0.15557478368282318, - -0.14666013419628143, - -0.12916867434978485, - -0.10357765853404999, - -0.07058499753475189, - -0.031090691685676575, - 0.013827919960021973, - 0.06294559687376022, - 0.11492252349853516, - 0.16834092140197754, - 0.16719359159469604, - 0.11679013818502426, - 0.06777720153331757, - 0.02149173617362976, - -0.02080368995666504, - -0.057955414056777954, - -0.08894999325275421, - -0.11294202506542206, - -0.1292770355939865, - -0.13750945031642914, - -0.13741467893123627, - -0.1289954036474228, - -0.11248116195201874, - -0.08832250535488129, - -0.05717839300632477, - -0.019898325204849243, - 0.02250078320503235, - 0.06886236369609833, - 0.11792181432247162, - 0.16834092140197754, - 0.16719359159469604, - 0.12525229156017303, - 0.08447068184614182, - 0.04596118628978729, - 0.010774239897727966, - -0.020130321383476257, - -0.045909538865089417, - -0.06586024165153503, - -0.07943816483020782, - -0.08627299964427948, - -0.08617822825908661, - -0.07915650308132172, - -0.06539937853813171, - -0.0452820360660553, - -0.01935330033302307, - 0.01167963445186615, - 0.04697023332118988, - 0.08555584400892258, - 0.1263839602470398, - 0.16834090650081635, - 0.16719359159469604, - 0.13826027512550354, - 0.11013183742761612, - 0.0835755318403244, - 0.059315770864486694, - 0.03801429271697998, - 0.020252138376235962, - 0.0065137892961502075, - -0.002826005220413208, - -0.007512420415878296, - -0.0074176788330078125, - -0.0025443434715270996, - 0.006974652409553528, - 0.02087964117527008, - 0.038791343569755554, - 0.06022116541862488, - 0.08458457887172699, - 0.11121699213981628, - 0.1393919438123703, - 0.16834090650081635, - 0.16719357669353485, - 0.15440449118614197, - 0.1419799029827118, - 0.1302587240934372, - 0.11956067383289337, - 0.11017758399248123, - 0.10236538201570511, - 0.09633716940879822, - 0.09225739538669586, - 0.0902373194694519, - 0.09033206105232239, - 0.09253904223442078, - 0.09679804742336273, - 0.10299290716648102, - 0.11095462739467621, - 0.12046606838703156, - 0.1312677562236786, - 0.14306506514549255, - 0.15553615987300873, - 0.16834090650081635, - 0.16719357669353485, - 0.17193542420864105, - 0.1765635758638382, - 0.180951789021492, - 0.1849803626537323, - 0.18853940069675446, - 0.19153182208538055, - 0.19387602806091309, - 0.19550803303718567, - 0.19638335704803467, - 0.19647809863090515, - 0.19578969478607178, - 0.1943368911743164, - 0.19215935468673706, - 0.18931645154953003, - 0.18588575720787048, - 0.1819608211517334, - 0.17764873802661896, - 0.173067107796669, - 0.16834090650081635 - ], - "y": [ - 0.36950311064720154, - 0.31527087092399597, - 0.2625008523464203, - 0.2126324474811554, - 0.16702596843242645, - 0.12692543864250183, - 0.0934247076511383, - 0.06743749976158142, - 0.04967278242111206, - 0.04061517119407654, - 0.04051157832145691, - 0.04936492443084717, - 0.06693372130393982, - 0.09273868799209595, - 0.12607596814632416, - 0.1660362035036087, - 0.2115294337272644, - 0.26131460070610046, - 0.3140338063240051, - 0.36824893951416016, - 0.36950311064720154, - 0.3197229206562042, - 0.27128350734710693, - 0.22550614178180695, - 0.1836395412683487, - 0.14682571589946747, - 0.11606884002685547, - 0.0922078788280487, - 0.07589370012283325, - 0.06757134199142456, - 0.06746774911880493, - 0.07558584213256836, - 0.0917041003704071, - 0.11538282036781311, - 0.145976260304451, - 0.18264980614185333, - 0.22440312802791595, - 0.2700972557067871, - 0.3184858560562134, - 0.36824893951416016, - 0.36950311064720154, - 0.3295685052871704, - 0.2907060980796814, - 0.2539759576320648, - 0.2203800082206726, - 0.19083461165428162, - 0.16614574193954468, - 0.14698684215545654, - 0.13388045132160187, - 0.1271841824054718, - 0.12708061933517456, - 0.1335725635290146, - 0.14648303389549255, - 0.1654597669839859, - 0.18998517096042633, - 0.21939025819301605, - 0.25287294387817383, - 0.2895198464393616, - 0.3283314108848572, - 0.36824893951416016, - 0.36950311064720154, - 0.34374067187309265, - 0.31866389513015747, - 0.2949567437171936, - 0.27326592803001404, - 0.2541831135749817, - 0.23822879791259766, - 0.22583819925785065, - 0.21734930574893951, - 0.21299369633197784, - 0.2128901332616806, - 0.21704141795635223, - 0.22533439099788666, - 0.23754282295703888, - 0.2533336281776428, - 0.2722761631011963, - 0.2938537001609802, - 0.31747764348983765, - 0.3425036072731018, - 0.36824890971183777, - 0.36950311064720154, - 0.360703706741333, - 0.35212722420692444, - 0.34400758147239685, - 0.33656632900238037, - 0.33000636100769043, - 0.3245066702365875, - 0.3202172517776489, - 0.3172551393508911, - 0.31570109724998474, - 0.3155975341796875, - 0.31694725155830383, - 0.3197134733200073, - 0.32382071018218994, - 0.32915693521499634, - 0.335576593875885, - 0.34290456771850586, - 0.350941002368927, - 0.3594666123390198, - 0.36824890971183777, - 0.36950311064720154, - 0.37861934304237366, - 0.3874697983264923, - 0.39581307768821716, - 0.4034215807914734, - 0.41008779406547546, - 0.4156298339366913, - 0.41989654302597046, - 0.4227715730667114, - 0.424176424741745, - 0.42407286167144775, - 0.42246365547180176, - 0.41939273476600647, - 0.4149438440799713, - 0.409238338470459, - 0.4024318754673004, - 0.39471006393432617, - 0.3862835764884949, - 0.3773822486400604, - 0.36824890971183777, - 0.36950311064720154, - 0.39554616808891296, - 0.42086175084114075, - 0.4447593092918396, - 0.4665869474411011, - 0.4857492744922638, - 0.5017236471176147, - 0.5140742659568787, - 0.5224642157554626, - 0.5266647338867188, - 0.5265611410140991, - 0.5221563577651978, - 0.5135704278945923, - 0.5010376572608948, - 0.4848998785018921, - 0.4655972123146057, - 0.4436562657356262, - 0.4196755290031433, - 0.39430907368659973, - 0.36824890971183777, - 0.36950308084487915, - 0.40964990854263306, - 0.4486845135688782, - 0.4855421185493469, - 0.5192174315452576, - 0.548791766166687, - 0.5734584927558899, - 0.5925447940826416, - 0.6055299043655396, - 0.6120597720146179, - 0.6119561791419983, - 0.6052220463752747, - 0.5920409560203552, - 0.5727725625038147, - 0.5479423999786377, - 0.5182276964187622, - 0.48443910479545593, - 0.44749826192855835, - 0.4084128141403198, - 0.36824890971183777, - 0.36950308084487915, - 0.41940218210220337, - 0.46792304515838623, - 0.5137421488761902, - 0.5556097030639648, - 0.592383623123169, - 0.6230608820915222, - 0.6468045711517334, - 0.6629672050476074, - 0.6711077094078064, - 0.6710041165351868, - 0.6626592874526978, - 0.6463007926940918, - 0.6223748922348022, - 0.5915342569351196, - 0.5546199679374695, - 0.5126391649246216, - 0.4667367935180664, - 0.41816508769989014, - 0.36824890971183777, - 0.36950308084487915, - 0.4237461984157562, - 0.47649258375167847, - 0.5263034105300903, - 0.5718201398849487, - 0.6118009686470032, - 0.6451555490493774, - 0.6709738969802856, - 0.6885517835617065, - 0.6974097490310669, - 0.6973061561584473, - 0.6882439255714417, - 0.670470118522644, - 0.6444695591926575, - 0.6109516024589539, - 0.5708304047584534, - 0.5252004265785217, - 0.47530633211135864, - 0.422509104013443, - 0.36824890971183777, - 0.36950308084487915, - 0.4222111999988556, - 0.4734644591808319, - 0.5218647718429565, - 0.5660920143127441, - 0.6049396991729736, - 0.6373481750488281, - 0.6624334454536438, - 0.6795111894607544, - 0.6881157159805298, - 0.6880121231079102, - 0.6792033910751343, - 0.6619296669960022, - 0.6366622447967529, - 0.6040902733802795, - 0.5651023387908936, - 0.5207617878913879, - 0.4722782075405121, - 0.42097410559654236, - 0.36824890971183777, - 0.36950308084487915, - 0.4149635136127472, - 0.45916682481765747, - 0.5009071826934814, - 0.5390461683273315, - 0.572543203830719, - 0.6004848480224609, - 0.6221088171005249, - 0.6368252038955688, - 0.6442326307296753, - 0.6441290378570557, - 0.6365172863006592, - 0.6216050386428833, - 0.5997989177703857, - 0.5716938376426697, - 0.5380563735961914, - 0.49980419874191284, - 0.45798057317733765, - 0.41372644901275635, - 0.36824890971183777, - 0.36950308084487915, - 0.40278857946395874, - 0.43514907360076904, - 0.46570175886154175, - 0.4936133027076721, - 0.5181223154067993, - 0.5385602712631226, - 0.5543698072433472, - 0.5651194453239441, - 0.570516049861908, - 0.5704125165939331, - 0.5648115277290344, - 0.5538659691810608, - 0.5378743410110474, - 0.51727294921875, - 0.49262356758117676, - 0.46459871530532837, - 0.4339628219604492, - 0.4015515148639679, - 0.36824890971183777, - 0.36950311064720154, - 0.3870057165622711, - 0.40401381254196167, - 0.42006343603134155, - 0.4347168207168579, - 0.4475742280483246, - 0.4582849442958832, - 0.4665568470954895, - 0.47216421365737915, - 0.47495418787002563, - 0.4748506247997284, - 0.47185635566711426, - 0.4660530090332031, - 0.4575989842414856, - 0.4467248022556305, - 0.43372708559036255, - 0.41896042227745056, - 0.40282759070396423, - 0.3857686519622803, - 0.36824890971183777, - 0.36950311064720154, - 0.36932528018951416, - 0.36913520097732544, - 0.36893802881240845, - 0.36873918771743774, - 0.3685440719127655, - 0.3683580160140991, - 0.3681860864162445, - 0.36803296208381653, - 0.36790284514427185, - 0.3677992820739746, - 0.36772507429122925, - 0.3676822781562805, - 0.36767202615737915, - 0.3676946461200714, - 0.3677494525909424, - 0.36783501505851746, - 0.3679489493370056, - 0.3680881857872009, - 0.36824890971183777, - 0.36950311064720154, - 0.35166317224502563, - 0.3342927396297455, - 0.31786566972732544, - 0.3028300106525421, - 0.28959593176841736, - 0.27852439880371094, - 0.26991739869117737, - 0.2640097737312317, - 0.2609626054763794, - 0.26085901260375977, - 0.263701856136322, - 0.2694135904312134, - 0.27783840894699097, - 0.2887464761734009, - 0.30184027552604675, - 0.31676262617111206, - 0.33310651779174805, - 0.3504260778427124, - 0.36824890971183777, - 0.36950311064720154, - 0.3359333276748657, - 0.3032621443271637, - 0.2723807394504547, - 0.24413147568702698, - 0.21928490698337555, - 0.1985187977552414, - 0.18239957094192505, - 0.17136695981025696, - 0.16572189331054688, - 0.16561833024024963, - 0.17105907201766968, - 0.18189576268196106, - 0.19783282279968262, - 0.21843546628952026, - 0.24314172565937042, - 0.2712777256965637, - 0.30207592248916626, - 0.3346962630748749, - 0.36824893951416016, - 0.36950311064720154, - 0.3238403797149658, - 0.2794061303138733, - 0.23741236329078674, - 0.19900459051132202, - 0.16523046791553497, - 0.13701125979423523, - 0.11511668562889099, - 0.10014402866363525, - 0.09250172972679138, - 0.09239813685417175, - 0.09983617067337036, - 0.11461290717124939, - 0.13632528483867645, - 0.1643809974193573, - 0.19801484048366547, - 0.23630934953689575, - 0.27821987867355347, - 0.322603315114975, - 0.36824893951416016, - 0.36950311064720154, - 0.31669479608535767, - 0.2653098404407501, - 0.2167498916387558, - 0.1723395586013794, - 0.13329021632671356, - 0.1006670892238617, - 0.07535991072654724, - 0.058059126138687134, - 0.049236685037612915, - 0.049133092164993286, - 0.05775126814842224, - 0.07485613226890564, - 0.09998106956481934, - 0.13244076073169708, - 0.17134980857372284, - 0.2156468778848648, - 0.2641236186027527, - 0.31545770168304443, - 0.36824893951416016, - 0.36950311064720154, - 0.31527087092399597, - 0.2625008523464203, - 0.2126324474811554, - 0.16702596843242645, - 0.12692543864250183, - 0.0934247076511383, - 0.06743749976158142, - 0.04967278242111206, - 0.04061517119407654, - 0.04051157832145691, - 0.04936492443084717, - 0.06693372130393982, - 0.09273868799209595, - 0.12607596814632416, - 0.1660362035036087, - 0.2115294337272644, - 0.26131460070610046, - 0.3140338063240051, - 0.36824893951416016 - ], - "z": [ - -1.619323492050171, - -1.6200326681137085, - -1.6198484897613525, - -1.6187760829925537, - -1.6168445348739624, - -1.6141067743301392, - -1.6106374263763428, - -1.606531023979187, - -1.60189950466156, - -1.5968694686889648, - -1.5915778875350952, - -1.5861692428588867, - -1.5807911157608032, - -1.575589895248413, - -1.5707077980041504, - -1.5662778615951538, - -1.5624209642410278, - -1.5592422485351562, - -1.5568283796310425, - -1.5552453994750977, - -1.619323492050171, - -1.6202502250671387, - -1.6202776432037354, - -1.6194051504135132, - -1.6176564693450928, - -1.6150792837142944, - -1.6117440462112427, - -1.6077414751052856, - -1.6031808853149414, - -1.5981868505477905, - -1.592895269393921, - -1.587450623512268, - -1.5820015668869019, - -1.576696515083313, - -1.5716803073883057, - -1.5670897960662842, - -1.5630500316619873, - -1.559671401977539, - -1.5570459365844727, - -1.5552453994750977, - -1.619323492050171, - -1.6203199625015259, - -1.6204153299331665, - -1.6196069717407227, - -1.6179169416427612, - -1.6153912544250488, - -1.6120989322662354, - -1.608129858970642, - -1.603592038154602, - -1.598609447479248, - -1.5933178663253784, - -1.5878617763519287, - -1.5823899507522583, - -1.5770515203475952, - -1.57199227809906, - -1.5673502683639526, - -1.5632518529891968, - -1.5598090887069702, - -1.5571157932281494, - -1.5552453994750977, - -1.619323492050171, - -1.620234489440918, - -1.6202466487884521, - -1.6193596124649048, - -1.6175976991653442, - -1.6150089502334595, - -1.6116639375686646, - -1.6076538562774658, - -1.6030882596969604, - -1.59809148311615, - -1.5927999019622803, - -1.587357997894287, - -1.581913948059082, - -1.5766165256500244, - -1.5716099739074707, - -1.5670310258865356, - -1.563004493713379, - -1.5596404075622559, - -1.557030200958252, - -1.5552453994750977, - -1.619323492050171, - -1.6200028657913208, - -1.619789719581604, - -1.6186898946762085, - -1.616733431816101, - -1.613973617553711, - -1.6104859113693237, - -1.6063652038574219, - -1.6017241477966309, - -1.5966891050338745, - -1.5913976430892944, - -1.5859938859939575, - -1.580625295639038, - -1.5754384994506836, - -1.5705747604370117, - -1.5661667585372925, - -1.5623347759246826, - -1.5591834783554077, - -1.5567985773086548, - -1.5552453994750977, - -1.619323492050171, - -1.6196502447128296, - -1.6190941333770752, - -1.6176704168319702, - -1.615417718887329, - -1.6123976707458496, - -1.6086926460266113, - -1.6044036149978638, - -1.5996476411819458, - -1.5945544242858887, - -1.589262843132019, - -1.5839173793792725, - -1.57866370677948, - -1.5736452341079712, - -1.5689986944198608, - -1.5648510456085205, - -1.5613152980804443, - -1.558487892150879, - -1.5564460754394531, - -1.5552453994750977, - -1.619323492050171, - -1.6192148923873901, - -1.6182353496551514, - -1.616411566734314, - -1.6137932538986206, - -1.6104518175125122, - -1.6064784526824951, - -1.601981520652771, - -1.5970836877822876, - -1.5919184684753418, - -1.5866270065307617, - -1.5813534259796143, - -1.5762416124343872, - -1.5714309215545654, - -1.5670528411865234, - -1.563226580619812, - -1.560056447982788, - -1.557629108428955, - -1.5560107231140137, - -1.5552453994750977, - -1.619323492050171, - -1.6187440156936646, - -1.6173063516616821, - -1.6150498390197754, - -1.612035870552063, - -1.6083468198776245, - -1.6040831804275513, - -1.5993613004684448, - -1.5943100452423096, - -1.5890672206878662, - -1.5837756395339966, - -1.5785797834396362, - -1.573621392250061, - -1.5690357685089111, - -1.5649478435516357, - -1.5614691972732544, - -1.5586947202682495, - -1.5567001104354858, - -1.555539846420288, - -1.5552453994750977, - -1.619323492050171, - -1.618288516998291, - -1.616407871246338, - -1.6137326955795288, - -1.610336184501648, - -1.6063108444213867, - -1.601766586303711, - -1.5968271493911743, - -1.5916274785995483, - -1.5863094329833984, - -1.5810178518295288, - -1.575897216796875, - -1.5710872411727905, - -1.5667190551757812, - -1.562911868095398, - -1.5597695112228394, - -1.5573776960372925, - -1.5558016300201416, - -1.5550843477249146, - -1.5552453994750977, - -1.619323492050171, - -1.617897868156433, - -1.615637183189392, - -1.6126030683517456, - -1.6088783740997314, - -1.6045645475387573, - -1.599779486656189, - -1.594653606414795, - -1.5893266201019287, - -1.5839439630508423, - -1.5786523818969727, - -1.5735963582992554, - -1.5689136981964111, - -1.5647320747375488, - -1.561165690422058, - -1.5583117008209229, - -1.5562479496002197, - -1.5550309419631958, - -1.5546936988830566, - -1.5552453994750977, - -1.619323492050171, - -1.6176143884658813, - -1.6150778532028198, - -1.6117831468582153, - -1.6078202724456787, - -1.603297233581543, - -1.5983374118804932, - -1.5930759906768799, - -1.5876567363739014, - -1.5822272300720215, - -1.5769356489181519, - -1.571926474571228, - -1.567336082458496, - -1.563289999961853, - -1.5598982572555542, - -1.5572535991668701, - -1.555428147315979, - -1.5544716119766235, - -1.5544100999832153, - -1.5552453994750977, - -1.619323492050171, - -1.6174687147140503, - -1.614790439605713, - -1.6113619804382324, - -1.6072766780853271, - -1.6026461124420166, - -1.597596526145935, - -1.5922656059265137, - -1.5867987871170044, - -1.5813452005386353, - -1.5760537385940552, - -1.571068525314331, - -1.5665256977081299, - -1.5625489950180054, - -1.5592471361160278, - -1.5567100048065186, - -1.5550068616867065, - -1.5541841983795166, - -1.5542644262313843, - -1.5552453994750977, - -1.619323492050171, - -1.6174767017364502, - -1.6148061752319336, - -1.6113851070404053, - -1.6073064804077148, - -1.6026817560195923, - -1.5976370573043823, - -1.5923099517822266, - -1.5868457555770874, - -1.5813935995101929, - -1.5761020183563232, - -1.571115493774414, - -1.5665700435638428, - -1.5625896453857422, - -1.5592827796936035, - -1.5567398071289062, - -1.5550299882888794, - -1.5541999340057373, - -1.5542724132537842, - -1.5552453994750977, - -1.619323492050171, - -1.6176373958587646, - -1.6151233911514282, - -1.6118499040603638, - -1.607906460762024, - -1.6034003496170044, - -1.5984548330307007, - -1.5932044982910156, - -1.5877926349639893, - -1.582366943359375, - -1.577075481414795, - -1.572062373161316, - -1.5674645900726318, - -1.563407301902771, - -1.5600014925003052, - -1.5573397874832153, - -1.5554949045181274, - -1.554517149925232, - -1.5544332265853882, - -1.5552453994750977, - -1.619323492050171, - -1.6179335117340088, - -1.615707516670227, - -1.612706184387207, - -1.6090115308761597, - -1.6047240495681763, - -1.5999609231948853, - -1.594852089881897, - -1.5895367860794067, - -1.5841599702835083, - -1.5788683891296387, - -1.5738065242767334, - -1.5691121816635132, - -1.5649135112762451, - -1.5613250732421875, - -1.558444857597351, - -1.5563511848449707, - -1.5551012754440308, - -1.5547293424606323, - -1.5552453994750977, - -1.619323492050171, - -1.6183329820632935, - -1.6164954900741577, - -1.6138612031936646, - -1.6105018854141235, - -1.6065093278884888, - -1.6019923686981201, - -1.597074270248413, - -1.5918890237808228, - -1.5865782499313354, - -1.5812867879867554, - -1.5761587619781494, - -1.5713343620300293, - -1.56694495677948, - -1.5631103515625, - -1.559935212135315, - -1.5575060844421387, - -1.5558892488479614, - -1.5551286935806274, - -1.5552453994750977, - -1.619323492050171, - -1.6187922954559326, - -1.6174017190933228, - -1.615189552307129, - -1.6122162342071533, - -1.6085628271102905, - -1.604328989982605, - -1.5996302366256714, - -1.5945947170257568, - -1.5893597602844238, - -1.5840682983398438, - -1.5788644552230835, - -1.5738903284072876, - -1.5692815780639648, - -1.5651638507843018, - -1.5616495609283447, - -1.558834433555603, - -1.5567954778671265, - -1.5555881261825562, - -1.5552453994750977, - -1.619323492050171, - -1.6192619800567627, - -1.6183280944824219, - -1.6165474653244019, - -1.6139686107635498, - -1.6106618642807007, - -1.6067174673080444, - -1.6022430658340454, - -1.5973604917526245, - -1.592203140258789, - -1.5869115591049194, - -1.5816302299499512, - -1.5765031576156616, - -1.5716700553894043, - -1.567262887954712, - -1.5634019374847412, - -1.5601924657821655, - -1.5577218532562256, - -1.5560576915740967, - -1.5552453994750977, - -1.619323492050171, - -1.6196908950805664, - -1.6191742420196533, - -1.6177877187728882, - -1.6155692338943481, - -1.612579107284546, - -1.6088991165161133, - -1.6046295166015625, - -1.5998866558074951, - -1.5948002338409424, - -1.5895086526870728, - -1.5841563940048218, - -1.5788896083831787, - -1.5738517045974731, - -1.5691802501678467, - -1.5650025606155396, - -1.5614327192306519, - -1.558568000793457, - -1.5564866065979004, - -1.5552453994750977, - -1.619323492050171, - -1.6200326681137085, - -1.6198484897613525, - -1.6187760829925537, - -1.6168445348739624, - -1.6141067743301392, - -1.6106374263763428, - -1.606531023979187, - -1.60189950466156, - -1.5968694686889648, - -1.5915778875350952, - -1.5861692428588867, - -1.5807911157608032, - -1.575589895248413, - -1.5707077980041504, - -1.5662778615951538, - -1.5624209642410278, - -1.5592422485351562, - -1.5568283796310425, - -1.5552453994750977 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.13412897288799286, - 0.14087027311325073, - 0.14743909239768982, - 0.15365628898143768, - 0.15935224294662476, - 0.16437159478664398, - 0.1685774326324463, - 0.17185501754283905, - 0.17411495745182037, - 0.1752956062555313, - 0.17536476254463196, - 0.1743205338716507, - 0.17219139635562897, - 0.1690354347229004, - 0.16493874788284302, - 0.16001306474208832, - 0.15439274907112122, - 0.1482311189174652, - 0.14169622957706451, - 0.13496635854244232, - 0.13412897288799286, - 0.12285575270652771, - 0.11190146207809448, - 0.10156489163637161, - 0.09212800860404968, - 0.08384822309017181, - 0.07695139199495316, - 0.07162562757730484, - 0.06801622360944748, - 0.06622162461280823, - 0.06629078090190887, - 0.06822178512811661, - 0.07196200639009476, - 0.07740940153598785, - 0.08441536128520966, - 0.09278883039951324, - 0.10230135172605515, - 0.11269347369670868, - 0.12368172407150269, - 0.13496635854244232, - 0.13412897288799286, - 0.10606348514556885, - 0.07877497375011444, - 0.053007788956165314, - 0.02946479618549347, - 0.00878821313381195, - -0.008458003401756287, - -0.021803393959999084, - -0.030883952975273132, - -0.03545193374156952, - -0.035382792353630066, - -0.03067837655544281, - -0.021467015147209167, - -0.008000016212463379, - 0.009355321526527405, - 0.03012561798095703, - 0.053744249045848846, - 0.07956699281930923, - 0.10688945651054382, - 0.13496637344360352, - 0.13412898778915405, - 0.09231317043304443, - 0.05164939910173416, - 0.013246878981590271, - -0.021846860647201538, - -0.052674561738967896, - -0.07839533686637878, - -0.09830759465694427, - -0.11186817288398743, - -0.11870713531970978, - -0.11863799393177032, - -0.1116625964641571, - -0.09797121584415436, - -0.07793736457824707, - -0.052107468247413635, - -0.02118605375289917, - 0.013983339071273804, - 0.05244141072034836, - 0.09313914179801941, - 0.13496637344360352, - 0.13412898778915405, - 0.08309485763311386, - 0.033464230597019196, - -0.013409093022346497, - -0.0562465637922287, - -0.09387964010238647, - -0.12528179585933685, - -0.14959655702114105, - -0.16616056859493256, - -0.17452199757099152, - -0.17445285618305206, - -0.16595499217510223, - -0.14926020801067352, - -0.12482382357120514, - -0.09331251680850983, - -0.055585771799087524, - -0.01267261803150177, - 0.03425624221563339, - 0.08392082899808884, - 0.13496637344360352, - 0.13412898778915405, - 0.07940751314163208, - 0.026190124452114105, - -0.024071574211120605, - -0.07000653445720673, - -0.11036176979541779, - -0.14403657615184784, - -0.1701122671365738, - -0.18787766993045807, - -0.19684810936450958, - -0.19677896797657013, - -0.18767209351062775, - -0.16977591812610626, - -0.14357857406139374, - -0.10979467630386353, - -0.06934574246406555, - -0.02333509922027588, - 0.026982136070728302, - 0.08023348450660706, - 0.13496637344360352, - 0.13412898778915405, - 0.08165069669485092, - 0.030615299940109253, - -0.01758509874343872, - -0.061635687947273254, - -0.10033492743968964, - -0.13262714445590973, - -0.15763162076473236, - -0.17466618120670319, - -0.18326611816883087, - -0.18319697678089142, - -0.17446060478687286, - -0.15729527175426483, - -0.13216917216777802, - -0.09976781904697418, - -0.060974910855293274, - -0.016848623752593994, - 0.03140731155872345, - 0.0824766680598259, - 0.13496637344360352, - 0.13412898778915405, - 0.08958134055137634, - 0.046260252594947815, - 0.005347415804862976, - -0.03204116225242615, - -0.06488560140132904, - -0.09229007363319397, - -0.11350700259208679, - -0.12795765697956085, - -0.13524778187274933, - -0.13517864048480988, - -0.12775208055973053, - -0.11317062377929688, - -0.09183208644390106, - -0.06431850790977478, - -0.03138037025928497, - 0.006083890795707703, - 0.04705226421356201, - 0.09040731191635132, - 0.13496637344360352, - 0.13412897288799286, - 0.10234002768993378, - 0.07142961025238037, - 0.042240895330905914, - 0.015570051968097687, - -0.007855355739593506, - -0.027396410703659058, - -0.04252007603645325, - -0.05281373858451843, - -0.057996705174446106, - -0.05792756378650665, - -0.05260816216468811, - -0.04218369722366333, - -0.02693842351436615, - -0.007288247346878052, - 0.016230866312980652, - 0.04297735542058945, - 0.07222162187099457, - 0.10316599905490875, - 0.13496637344360352, - 0.13412897288799286, - 0.11854415386915207, - 0.10339586436748505, - 0.08909732103347778, - 0.07603853940963745, - 0.06457573920488358, - 0.05502159893512726, - 0.047636695206165314, - 0.04262251406908035, - 0.04011581093072891, - 0.04018496721982956, - 0.04282807558774948, - 0.04797307401895523, - 0.05547959357500076, - 0.06514288485050201, - 0.07669936120510101, - 0.08983378112316132, - 0.10418789088726044, - 0.11937012523412704, - 0.13496635854244232, - 0.13412897288799286, - 0.13643775880336761, - 0.13869500160217285, - 0.1408390998840332, - 0.1428115963935852, - 0.14455866813659668, - 0.1460326611995697, - 0.14719338715076447, - 0.14800916612148285, - 0.14845775067806244, - 0.1485268920660019, - 0.14821472764015198, - 0.14752976596355438, - 0.146490678191185, - 0.14512582123279572, - 0.14347241818904877, - 0.14157555997371674, - 0.13948701322078705, - 0.1372637301683426, - 0.13496635854244232, - 0.13412895798683167, - 0.154081791639328, - 0.17350178956985474, - 0.1918592005968094, - 0.2086533010005951, - 0.22342601418495178, - 0.23577435314655304, - 0.24536147713661194, - 0.25192588567733765, - 0.2552885413169861, - 0.2553577125072479, - 0.25213146209716797, - 0.24569785594940186, - 0.23623237013816833, - 0.223993182182312, - 0.20931413769721985, - 0.19259566068649292, - 0.17429380118846893, - 0.15490776300430298, - 0.13496635854244232, - 0.13412895798683167, - 0.16956424713134766, - 0.204044371843338, - 0.23662880063056946, - 0.26642870903015137, - 0.29263126850128174, - 0.3145217299461365, - 0.3315029740333557, - 0.3431117534637451, - 0.3490314483642578, - 0.34910058975219727, - 0.34331732988357544, - 0.33183932304382324, - 0.3149797320365906, - 0.29319843649864197, - 0.2670895457267761, - 0.237365260720253, - 0.2048363834619522, - 0.17039021849632263, - 0.13496635854244232, - 0.13412895798683167, - 0.18120735883712769, - 0.2270130068063736, - 0.27029645442962646, - 0.3098769783973694, - 0.3446750342845917, - 0.3737413287162781, - 0.3962830901145935, - 0.41168534755706787, - 0.4195280075073242, - 0.41959714889526367, - 0.4118909239768982, - 0.39661943912506104, - 0.37419939041137695, - 0.3452422022819519, - 0.31053781509399414, - 0.2710329294204712, - 0.2278050184249878, - 0.18203333020210266, - 0.13496634364128113, - 0.13412895798683167, - 0.18774941563606262, - 0.23991864919662476, - 0.2892136573791504, - 0.3342897891998291, - 0.37391746044158936, - 0.40701574087142944, - 0.4326818585395813, - 0.45021557807922363, - 0.45913875102996826, - 0.4592078924179077, - 0.45042115449905396, - 0.43301820755004883, - 0.40747374296188354, - 0.3744846284389496, - 0.33495062589645386, - 0.2899501323699951, - 0.24071067571640015, - 0.1885753870010376, - 0.13496634364128113, - 0.13412895798683167, - 0.18848147988319397, - 0.24136283993721008, - 0.2913305163383484, - 0.3370216488838196, - 0.3771897554397583, - 0.4107391834259033, - 0.4367549419403076, - 0.45452719926834106, - 0.4635712504386902, - 0.46364039182662964, - 0.4547327756881714, - 0.43709129095077515, - 0.4111972451210022, - 0.37775689363479614, - 0.33768245577812195, - 0.2920669913291931, - 0.24215485155582428, - 0.18930745124816895, - 0.13496634364128113, - 0.13412895798683167, - 0.18332421779632568, - 0.23118901252746582, - 0.27641764283180237, - 0.31777647137641907, - 0.35413724184036255, - 0.3845081925392151, - 0.4080609083175659, - 0.4241529107093811, - 0.4323452115058899, - 0.43241435289382935, - 0.4243584871292114, - 0.40839725732803345, - 0.38496625423431396, - 0.35470443964004517, - 0.31843727827072144, - 0.2771541178226471, - 0.23198100924491882, - 0.18415018916130066, - 0.13496634364128113, - 0.13412895798683167, - 0.1728365123271942, - 0.21049964427947998, - 0.24609102308750153, - 0.2786397933959961, - 0.30725806951522827, - 0.33116525411605835, - 0.34970927238464355, - 0.36238420009613037, - 0.3688443601131439, - 0.3689135015010834, - 0.3625897765159607, - 0.3500456213951111, - 0.33162325620651245, - 0.3078252375125885, - 0.27930060029029846, - 0.24682748317718506, - 0.21129167079925537, - 0.1736624836921692, - 0.13496634364128113, - 0.13412895798683167, - 0.15815486013889313, - 0.18153680860996246, - 0.2036370038986206, - 0.22385263442993164, - 0.24163225293159485, - 0.25649088621139526, - 0.2680232524871826, - 0.27591472864151, - 0.2799500823020935, - 0.28001922369003296, - 0.27612030506134033, - 0.26835963129997253, - 0.25694891810417175, - 0.24219942092895508, - 0.2245134711265564, - 0.20437347888946533, - 0.18232882022857666, - 0.1589808166027069, - 0.13496635854244232, - 0.13412897288799286, - 0.14087025821208954, - 0.14743907749652863, - 0.1536562591791153, - 0.15935221314430237, - 0.1643715500831604, - 0.1685773730278015, - 0.17185497283935547, - 0.1741149127483368, - 0.17529556155204773, - 0.17536470293998718, - 0.17432047426700592, - 0.17219135165214539, - 0.1690353900194168, - 0.16493870317935944, - 0.16001303493976593, - 0.15439271926879883, - 0.14823110401630402, - 0.14169622957706451, - 0.13496635854244232 - ], - "y": [ - 0.3471308946609497, - 0.29178422689437866, - 0.23793655633926392, - 0.18705667555332184, - 0.1405325084924698, - 0.09963308274745941, - 0.06547403335571289, - 0.03898710012435913, - 0.02089482545852661, - 0.011690706014633179, - 0.011625796556472778, - 0.020701885223388672, - 0.03867137432098389, - 0.06504407525062561, - 0.09910070896148682, - 0.1399122029542923, - 0.18636541068553925, - 0.23719313740730286, - 0.29100894927978516, - 0.346344918012619, - 0.3471308946609497, - 0.29262998700141907, - 0.23960497975349426, - 0.1895022988319397, - 0.14368855953216553, - 0.10341349244117737, - 0.06977573037147522, - 0.04369267821311951, - 0.025875985622406006, - 0.0168115496635437, - 0.0167466402053833, - 0.025683045387268066, - 0.04337695240974426, - 0.06934577226638794, - 0.10288114845752716, - 0.14306828379631042, - 0.1888110339641571, - 0.2388615608215332, - 0.29185470938682556, - 0.346344918012619, - 0.3471308946609497, - 0.29938116669654846, - 0.2529231905937195, - 0.20902425050735474, - 0.16888178884983063, - 0.13359074294567108, - 0.10411380231380463, - 0.08125504851341248, - 0.06563791632652283, - 0.05768853425979614, - 0.05762362480163574, - 0.06544497609138489, - 0.08093932271003723, - 0.10368388891220093, - 0.13305838406085968, - 0.16826148331165314, - 0.20833298563957214, - 0.2521798014640808, - 0.29860588908195496, - 0.346344918012619, - 0.3471308946609497, - 0.3113062083721161, - 0.27644798159599304, - 0.24350708723068237, - 0.2133820503950119, - 0.18689462542533875, - 0.1647673100233078, - 0.14760366082191467, - 0.13587187230587006, - 0.1298920065164566, - 0.1298270970582962, - 0.13567893207073212, - 0.14728793501853943, - 0.1643373966217041, - 0.18636226654052734, - 0.2127617597579956, - 0.24281582236289978, - 0.275704562664032, - 0.3105309307575226, - 0.34634488821029663, - 0.3471308946609497, - 0.3271127939224243, - 0.3076300323009491, - 0.28921404480934143, - 0.27236711978912354, - 0.25754886865615845, - 0.2451634407043457, - 0.2355487048625946, - 0.22896692156791687, - 0.22559762001037598, - 0.22553271055221558, - 0.22877395153045654, - 0.23523297905921936, - 0.2447335422039032, - 0.25701650977134705, - 0.2717468738555908, - 0.28852277994155884, - 0.30688661336898804, - 0.3263375163078308, - 0.34634488821029663, - 0.3471308946609497, - 0.34508809447288513, - 0.34309032559394836, - 0.3411920368671417, - 0.339445024728775, - 0.3378969430923462, - 0.3365900218486786, - 0.3355599045753479, - 0.3348346948623657, - 0.3344341814517975, - 0.3343692719936371, - 0.3346417546272278, - 0.33524417877197266, - 0.3361601233482361, - 0.3373646140098572, - 0.3388247489929199, - 0.34050077199935913, - 0.3423469066619873, - 0.3443128168582916, - 0.34634488821029663, - 0.3471308946609497, - 0.3632842004299164, - 0.3789861500263214, - 0.3938084840774536, - 0.40734684467315674, - 0.41923192143440247, - 0.4291395843029022, - 0.4367995262145996, - 0.4420028328895569, - 0.44460755586624146, - 0.44454264640808105, - 0.44180989265441895, - 0.43648380041122437, - 0.4287096858024597, - 0.41869959235191345, - 0.40672656893730164, - 0.393117219209671, - 0.37824273109436035, - 0.3625089228153229, - 0.34634488821029663, - 0.3471308946609497, - 0.3797292411327362, - 0.41142767667770386, - 0.44136154651641846, - 0.46871432662010193, - 0.4927399158477783, - 0.5127829313278198, - 0.528296709060669, - 0.5388579964637756, - 0.5441787838935852, - 0.5441138744354248, - 0.5386650562286377, - 0.5279809832572937, - 0.5123530626296997, - 0.4922075867652893, - 0.4680940806865692, - 0.44067028164863586, - 0.4106842577457428, - 0.3789539635181427, - 0.34634488821029663, - 0.3471308648586273, - 0.39264115691185, - 0.436899334192276, - 0.47869813442230225, - 0.516897439956665, - 0.5504550933837891, - 0.5784560441970825, - 0.6001362800598145, - 0.6149044036865234, - 0.6223577260971069, - 0.6222927570343018, - 0.6147114634513855, - 0.5998204946517944, - 0.5780261754989624, - 0.5499228239059448, - 0.5162771344184875, - 0.47800683975219727, - 0.43615591526031494, - 0.39186587929725647, - 0.34634488821029663, - 0.3471308648586273, - 0.4006207585334778, - 0.4526408910751343, - 0.5017722249031067, - 0.5466746091842651, - 0.5861232876777649, - 0.619042158126831, - 0.6445332765579224, - 0.6619012951850891, - 0.6706724166870117, - 0.6706075668334961, - 0.6617083549499512, - 0.6442175507545471, - 0.6186122298240662, - 0.5855909585952759, - 0.5460543632507324, - 0.5010809898376465, - 0.45189744234085083, - 0.3998454809188843, - 0.34634488821029663, - 0.3471308648586273, - 0.40280333161354065, - 0.456946462392807, - 0.5080834031105042, - 0.5548192262649536, - 0.5958791375160217, - 0.6301431655883789, - 0.6566766500473022, - 0.6747558116912842, - 0.6838873624801636, - 0.683822512626648, - 0.6745628118515015, - 0.656360924243927, - 0.6297132968902588, - 0.5953468680381775, - 0.5541989803314209, - 0.5073921084403992, - 0.45620304346084595, - 0.40202805399894714, - 0.34634488821029663, - 0.3471308648586273, - 0.39895233511924744, - 0.4493495225906372, - 0.496947705745697, - 0.5404486656188965, - 0.578665554523468, - 0.6105561256408691, - 0.635250449180603, - 0.6520748138427734, - 0.660570502281189, - 0.6605055332183838, - 0.6518819332122803, - 0.634934663772583, - 0.610126256942749, - 0.578133225440979, - 0.539828360080719, - 0.4962564706802368, - 0.44860610365867615, - 0.39817705750465393, - 0.34634488821029663, - 0.3471308946609497, - 0.38948512077331543, - 0.4306733012199402, - 0.46957194805145264, - 0.505120038986206, - 0.5363478660583496, - 0.5624035596847534, - 0.5825765132904053, - 0.5963164567947388, - 0.6032484769821167, - 0.6031835675239563, - 0.5961235165596008, - 0.5822608470916748, - 0.5619736909866333, - 0.5358155369758606, - 0.5044997930526733, - 0.46888071298599243, - 0.4299299120903015, - 0.3887098431587219, - 0.34634488821029663, - 0.3471308946609497, - 0.3754275441169739, - 0.40294164419174194, - 0.4289226531982422, - 0.4526618421077728, - 0.4735117256641388, - 0.4909035563468933, - 0.504362940788269, - 0.5135226845741272, - 0.5181329846382141, - 0.5180680751800537, - 0.5133297443389893, - 0.504047155380249, - 0.4904736578464508, - 0.47297942638397217, - 0.4520415961742401, - 0.4282313585281372, - 0.4021982252597809, - 0.37465226650238037, - 0.34634488821029663, - 0.3471308946609497, - 0.358303040266037, - 0.3691597580909729, - 0.37940484285354614, - 0.3887588679790497, - 0.3969666361808777, - 0.40380433201789856, - 0.40908539295196533, - 0.41266578435897827, - 0.4144478440284729, - 0.4143829345703125, - 0.41247284412384033, - 0.4087696671485901, - 0.40337443351745605, - 0.39643430709838867, - 0.3881385922431946, - 0.37871357798576355, - 0.36841633915901184, - 0.3575277626514435, - 0.34634488821029663, - 0.3471308946609497, - 0.3399673104286194, - 0.3329883813858032, - 0.3263845145702362, - 0.32033586502075195, - 0.31500735878944397, - 0.3105444014072418, - 0.30706867575645447, - 0.30467504262924194, - 0.3034287989139557, - 0.3033638894557953, - 0.304482102394104, - 0.3067529499530792, - 0.31011447310447693, - 0.31447499990463257, - 0.31971558928489685, - 0.3256932497024536, - 0.33224496245384216, - 0.3391920328140259, - 0.34634488821029663, - 0.3471308946609497, - 0.32240721583366394, - 0.29834723472595215, - 0.2756071984767914, - 0.25480741262435913, - 0.23651528358459473, - 0.22122973203659058, - 0.20936769247055054, - 0.2012527585029602, - 0.19710631668567657, - 0.19704140722751617, - 0.20105981826782227, - 0.2090519666671753, - 0.22079983353614807, - 0.23598293960094452, - 0.2541871666908264, - 0.2749159336090088, - 0.2976038157939911, - 0.32163193821907043, - 0.34634488821029663, - 0.3471308946609497, - 0.30752575397491455, - 0.2689902186393738, - 0.2325754463672638, - 0.19927473366260529, - 0.16999641060829163, - 0.14553914964199066, - 0.12657003104686737, - 0.1136065423488617, - 0.10700227320194244, - 0.10693736374378204, - 0.11341360211372375, - 0.12625430524349213, - 0.14510923624038696, - 0.16946403682231903, - 0.198654443025589, - 0.2318841814994812, - 0.2682468295097351, - 0.30675047636032104, - 0.34634488821029663, - 0.3471308946609497, - 0.2969355583190918, - 0.2480987012386322, - 0.20195245742797852, - 0.15975557267665863, - 0.12265907227993011, - 0.09167489409446716, - 0.06764811277389526, - 0.05123421549797058, - 0.042880892753601074, - 0.042815983295440674, - 0.05104127526283264, - 0.06733238697052002, - 0.09124493598937988, - 0.12212671339511871, - 0.15913528203964233, - 0.20126119256019592, - 0.24735528230667114, - 0.2961602807044983, - 0.346344918012619, - 0.3471308946609497, - 0.29178422689437866, - 0.23793655633926392, - 0.18705667555332184, - 0.1405325084924698, - 0.09963308274745941, - 0.06547403335571289, - 0.03898710012435913, - 0.02089482545852661, - 0.011690706014633179, - 0.011625796556472778, - 0.020701885223388672, - 0.03867137432098389, - 0.06504407525062561, - 0.09910070896148682, - 0.1399122029542923, - 0.18636541068553925, - 0.23719313740730286, - 0.29100894927978516, - 0.346344918012619 - ], - "z": [ - -1.6608980894088745, - -1.6615427732467651, - -1.6614893674850464, - -1.6607394218444824, - -1.6593132019042969, - -1.657249927520752, - -1.6546056270599365, - -1.6514524221420288, - -1.647876501083374, - -1.6439752578735352, - -1.6398552656173706, - -1.6356287002563477, - -1.6314109563827515, - -1.6273170709609985, - -1.6234588623046875, - -1.619941234588623, - -1.6168605089187622, - -1.6143004894256592, - -1.6123310327529907, - -1.6110059022903442, - -1.6608980894088745, - -1.6612271070480347, - -1.660866618156433, - -1.6598265171051025, - -1.6581352949142456, - -1.6558388471603394, - -1.652999997138977, - -1.6496961116790771, - -1.64601731300354, - -1.6420639753341675, - -1.6379438638687134, - -1.6337695121765137, - -1.6296546459197998, - -1.6257115602493286, - -1.622047781944275, - -1.6187633275985718, - -1.6159476041793823, - -1.613677740097046, - -1.6120153665542603, - -1.6110059022903442, - -1.6608980894088745, - -1.6608388423919678, - -1.6601008176803589, - -1.6587040424346924, - -1.6566866636276245, - -1.6541036367416382, - -1.6510255336761475, - -1.647536277770996, - -1.6437309980392456, - -1.6397135257720947, - -1.6355934143066406, - -1.6314830780029297, - -1.6274946928024292, - -1.623737096786499, - -1.6203125715255737, - -1.6173146963119507, - -1.6148251295089722, - -1.6129119396209717, - -1.6116271018981934, - -1.6110059022903442, - -1.6608980894088745, - -1.6604201793670654, - -1.659274935722351, - -1.6574934720993042, - -1.655124306678772, - -1.65223228931427, - -1.6488960981369019, - -1.6452069282531738, - -1.6412652730941772, - -1.637178659439087, - -1.6330585479736328, - -1.6290174722671509, - -1.6251654624938965, - -1.6216076612472534, - -1.6184412240982056, - -1.6157523393630981, - -1.613614559173584, - -1.6120860576629639, - -1.611208438873291, - -1.6110059022903442, - -1.6608980894088745, - -1.6600165367126465, - -1.6584784984588623, - -1.6563259363174438, - -1.6536177396774292, - -1.6504276990890503, - -1.6468427181243896, - -1.6429606676101685, - -1.6388874053955078, - -1.6347341537475586, - -1.6306140422821045, - -1.6266396045684814, - -1.6229192018508911, - -1.6195541620254517, - -1.6166365146636963, - -1.6142457723617554, - -1.6124471426010132, - -1.6112895011901855, - -1.610804796218872, - -1.6110059022903442, - -1.6608980894088745, - -1.659671425819397, - -1.6577978134155273, - -1.6553281545639038, - -1.6523300409317017, - -1.6488852500915527, - -1.6450875997543335, - -1.6410406827926636, - -1.636855125427246, - -1.632644772529602, - -1.6285247802734375, - -1.6246073246002197, - -1.6209992170333862, - -1.617799162864685, - -1.6150941848754883, - -1.6129580736160278, - -1.6114492416381836, - -1.6106088161468506, - -1.6104596853256226, - -1.6110059022903442, - -1.6608980894088745, - -1.6594223976135254, - -1.6573065519332886, - -1.654608130455017, - -1.6514008045196533, - -1.647772192955017, - -1.6438210010528564, - -1.639655351638794, - -1.6353884935379028, - -1.6311371326446533, - -1.6270170211791992, - -1.6231406927108765, - -1.619613766670227, - -1.616532564163208, - -1.6139811277389526, - -1.6120288372039795, - -1.6107292175292969, - -1.6101175546646118, - -1.610210657119751, - -1.6110059022903442, - -1.6608980894088745, - -1.6592965126037598, - -1.6570580005645752, - -1.6542439460754395, - -1.6509307622909546, - -1.6472091674804688, - -1.6431803703308105, - -1.6389544010162354, - -1.6346466541290283, - -1.6303744316101074, - -1.6262543201446533, - -1.622398853302002, - -1.618912935256958, - -1.615891933441162, - -1.6134179830551147, - -1.6115587949752808, - -1.6103650331497192, - -1.609869122505188, - -1.6100846529006958, - -1.6110059022903442, - -1.6608980894088745, - -1.6593072414398193, - -1.6570792198181152, - -1.6542749404907227, - -1.6509708166122437, - -1.6472570896148682, - -1.6432349681854248, - -1.6390141248703003, - -1.6347098350524902, - -1.6304394006729126, - -1.6263192892074585, - -1.6224620342254639, - -1.618972659111023, - -1.6159465312957764, - -1.6134660243988037, - -1.6115988492965698, - -1.6103960275650024, - -1.6098902225494385, - -1.6100953817367554, - -1.6110059022903442, - -1.6608980894088745, - -1.6594533920288086, - -1.6573677062988281, - -1.6546978950500488, - -1.6515166759490967, - -1.6479108333587646, - -1.6439788341522217, - -1.6398279666900635, - -1.6355712413787842, - -1.6313250064849854, - -1.6272048950195312, - -1.6233234405517578, - -1.6197865009307861, - -1.6166903972625732, - -1.6141197681427002, - -1.6121447086334229, - -1.6108189821243286, - -1.610178828239441, - -1.6102416515350342, - -1.6110059022903442, - -1.6608980894088745, - -1.6597193479537964, - -1.6578923463821411, - -1.655466914176941, - -1.652509093284607, - -1.649099588394165, - -1.6453315019607544, - -1.6413075923919678, - -1.637137532234192, - -1.6329351663589478, - -1.6288151741027832, - -1.6248897314071655, - -1.6212661266326904, - -1.618043065071106, - -1.6153085231781006, - -1.613137125968933, - -1.6115880012512207, - -1.610703468322754, - -1.610507607460022, - -1.6110059022903442, - -1.6608980894088745, - -1.6600761413574219, - -1.6585962772369385, - -1.656498670578003, - -1.6538405418395996, - -1.650694489479065, - -1.6471463441848755, - -1.643292784690857, - -1.639238953590393, - -1.6350955963134766, - -1.6309754848480225, - -1.6269911527633667, - -1.6232513189315796, - -1.6198577880859375, - -1.6169034242630005, - -1.6144685745239258, - -1.6126197576522827, - -1.6114072799682617, - -1.6108644008636475, - -1.6110059022903442, - -1.6608980894088745, - -1.6604851484298706, - -1.6594030857086182, - -1.6576813459396362, - -1.6553667783737183, - -1.6525226831436157, - -1.6492265462875366, - -1.6455683708190918, - -1.6416478157043457, - -1.6375720500946045, - -1.6334519386291504, - -1.6294000148773193, - -1.6255269050598145, - -1.6219381093978882, - -1.6187316179275513, - -1.6159948110580444, - -1.613802433013916, - -1.612214207649231, - -1.6112734079360962, - -1.6110059022903442, - -1.6608980894088745, - -1.6609020233154297, - -1.660225510597229, - -1.6588867902755737, - -1.656922459602356, - -1.654386043548584, - -1.6513469219207764, - -1.6478878259658813, - -1.6441031694412231, - -1.6400960683822632, - -1.6359760761260986, - -1.6318553686141968, - -1.627846360206604, - -1.624058485031128, - -1.6205949783325195, - -1.6175504922866821, - -1.6150078773498535, - -1.6130365133285522, - -1.6116902828216553, - -1.6110059022903442, - -1.6608980894088745, - -1.661281704902649, - -1.6609742641448975, - -1.6599843502044678, - -1.6583389043807983, - -1.6560827493667603, - -1.6532775163650513, - -1.649999737739563, - -1.646338701248169, - -1.6423943042755127, - -1.6382743120193481, - -1.6340909004211426, - -1.6299582719802856, - -1.6259890794754028, - -1.6222916841506958, - -1.6189669370651245, - -1.6161054372787476, - -1.6137853860855103, - -1.612069845199585, - -1.6110059022903442, - -1.6608980894088745, - -1.6615828275680542, - -1.6615684032440186, - -1.6608551740646362, - -1.6594626903533936, - -1.6574288606643677, - -1.6548092365264893, - -1.6516752243041992, - -1.6481122970581055, - -1.6442177295684814, - -1.6400976181030273, - -1.635864496231079, - -1.6316337585449219, - -1.6275207996368408, - -1.6236377954483032, - -1.6200907230377197, - -1.616976261138916, - -1.6143794059753418, - -1.6123710870742798, - -1.6110059022903442, - -1.6608980894088745, - -1.6617728471755981, - -1.6619433164596558, - -1.6614048480987549, - -1.6601719856262207, - -1.658278465270996, - -1.655776023864746, - -1.6527328491210938, - -1.6492317914962769, - -1.6453685760498047, - -1.6412485837936401, - -1.6369839906692505, - -1.6326912641525269, - -1.6284875869750977, - -1.6244874000549316, - -1.6208000183105469, - -1.6175259351730347, - -1.6147544384002686, - -1.6125611066818237, - -1.6110059022903442, - -1.6608980894088745, - -1.661831259727478, - -1.6620585918426514, - -1.6615736484527588, - -1.6603899002075195, - -1.6585396528244019, - -1.6560730934143066, - -1.6530578136444092, - -1.6495758295059204, - -1.6457222700119019, - -1.6416022777557373, - -1.637328028678894, - -1.6330163478851318, - -1.6287846565246582, - -1.6247484683990479, - -1.6210179328918457, - -1.6176948547363281, - -1.6148695945739746, - -1.6126195192337036, - -1.6110059022903442, - -1.6608980894088745, - -1.6617517471313477, - -1.661901593208313, - -1.6613435745239258, - -1.6600929498672485, - -1.6581839323043823, - -1.6556683778762817, - -1.6526150703430176, - -1.6491072177886963, - -1.6452404260635376, - -1.641120433807373, - -1.6368592977523804, - -1.6325734853744507, - -1.6283799409866333, - -1.6243928670883179, - -1.6207209825515747, - -1.6174646615982056, - -1.6147125959396362, - -1.6125400066375732, - -1.6110059022903442, - -1.6608980894088745, - -1.6615427732467651, - -1.6614893674850464, - -1.6607394218444824, - -1.6593132019042969, - -1.657249927520752, - -1.6546056270599365, - -1.6514524221420288, - -1.647876501083374, - -1.6439752578735352, - -1.6398552656173706, - -1.6356287002563477, - -1.6314109563827515, - -1.6273170709609985, - -1.6234588623046875, - -1.619941234588623, - -1.6168605089187622, - -1.6143004894256592, - -1.6123310327529907, - -1.6110059022903442 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.10640270262956619, - 0.11480972170829773, - 0.12299586832523346, - 0.13073785603046417, - 0.13782449066638947, - 0.14406247437000275, - 0.14928165078163147, - 0.1533396691083908, - 0.15612581372261047, - 0.15756407380104065, - 0.15761525928974152, - 0.15627795457839966, - 0.15358862280845642, - 0.1496206521987915, - 0.14448225498199463, - 0.13831359148025513, - 0.13128294050693512, - 0.12358206510543823, - 0.11542104929685593, - 0.1070224791765213, - 0.10640271008014679, - 0.09642672538757324, - 0.08673130720853806, - 0.07758092880249023, - 0.06922518461942673, - 0.06189200282096863, - 0.05578141286969185, - 0.05106007680296898, - 0.047856807708740234, - 0.04625898599624634, - 0.04631016403436661, - 0.048008956015110016, - 0.05130903795361519, - 0.05612039193511009, - 0.06231176480650902, - 0.06971427798271179, - 0.07812601327896118, - 0.08731750398874283, - 0.09703804552555084, - 0.1070224866271019, - 0.10640271008014679, - 0.07912523299455643, - 0.05260026454925537, - 0.027551330626010895, - 0.004661731421947479, - -0.01544419676065445, - -0.032218024134635925, - -0.045202165842056274, - -0.05404245853424072, - -0.05849778652191162, - -0.05844661593437195, - -0.05389031767845154, - -0.04495319724082947, - -0.031879037618637085, - -0.015024460852146149, - 0.00515080988407135, - 0.028096415102481842, - 0.053186461329460144, - 0.07973656058311462, - 0.1070224940776825, - 0.10640271753072739, - 0.06478013843297958, - 0.02430136501789093, - -0.01392943412065506, - -0.04886946082115173, - -0.07956556975841522, - -0.1051805317401886, - -0.12501558661460876, - -0.1385296881198883, - -0.1453542858362198, - -0.14530308544635773, - -0.13837754726409912, - -0.12476661801338196, - -0.10484154522418976, - -0.07914584875106812, - -0.048380374908447266, - -0.013384349644184113, - 0.024887561798095703, - 0.06539146602153778, - 0.1070224940776825, - 0.10640271753072739, - 0.05494595319032669, - 0.004901237785816193, - -0.04236631095409393, - -0.08556738495826721, - -0.12352356314659119, - -0.15519948303699493, - -0.17973117530345917, - -0.1964493840932846, - -0.20489810407161713, - -0.20484690368175507, - -0.19629721343517303, - -0.17948220670223236, - -0.1548605114221573, - -0.12310382723808289, - -0.08507832884788513, - -0.041821226477622986, - 0.005487434566020966, - 0.05555728077888489, - 0.10702250152826309, - 0.10640271753072739, - 0.05068836733698845, - -0.003497786819934845, - -0.05467770993709564, - -0.10145530104637146, - -0.1425546258687973, - -0.17685456573963165, - -0.20341958105564117, - -0.22152496874332428, - -0.23067690432071686, - -0.2306257039308548, - -0.2213727980852127, - -0.20317061245441437, - -0.1765156239271164, - -0.1421349048614502, - -0.10096623003482819, - -0.054132625460624695, - -0.002911590039730072, - 0.051299694925546646, - 0.10702250152826309, - 0.10640271753072739, - 0.05246874317526817, - 0.00001440197229385376, - -0.049529507756233215, - -0.09481151401996613, - -0.13459648191928864, - -0.16779913008213043, - -0.193513885140419, - -0.211039200425148, - -0.2198970764875412, - -0.21984587609767914, - -0.21088702976703644, - -0.1932649165391922, - -0.16746015846729279, - -0.13417674601078033, - -0.09432244300842285, - -0.04898442327976227, - 0.0006005987524986267, - 0.05308007076382637, - 0.10702250152826309, - 0.10640271753072739, - 0.06009416654706001, - 0.015057243406772614, - -0.027479559183120728, - -0.06635594367980957, - -0.10051146149635315, - -0.12901447713375092, - -0.15108747780323029, - -0.16612835228443146, - -0.17372681200504303, - -0.17367561161518097, - -0.16597618162631989, - -0.15083850920200348, - -0.12867549061775208, - -0.10009174048900604, - -0.06586688756942749, - -0.02693447470664978, - 0.015643440186977386, - 0.06070549413561821, - 0.1070224940776825, - 0.10640271753072739, - 0.07273828983306885, - 0.040000610053539276, - 0.009082645177841187, - -0.019172221422195435, - -0.043993279337882996, - -0.06470346450805664, - -0.0807378888130188, - -0.09165914356708527, - -0.09716933965682983, - -0.09711816906929016, - -0.09150700271129608, - -0.08048892021179199, - -0.0643644779920578, - -0.043573543429374695, - -0.01868315041065216, - 0.009627729654312134, - 0.04058680683374405, - 0.07334962487220764, - 0.1070224940776825, - 0.10640271008014679, - 0.08903093636035919, - 0.07214148342609406, - 0.056195035576820374, - 0.041626572608947754, - 0.02883349359035492, - 0.0181647390127182, - 0.009911343455314636, - 0.004298441112041473, - 0.001479126513004303, - 0.0015303120017051697, - 0.004450581967830658, - 0.010160312056541443, - 0.01850372552871704, - 0.029253236949443817, - 0.042115651071071625, - 0.056740112602710724, - 0.07272768020629883, - 0.08964227139949799, - 0.1070224866271019, - 0.10640270262956619, - 0.1072065457701683, - 0.10799691081047058, - 0.10875225067138672, - 0.10945194959640503, - 0.11007692664861679, - 0.11061012744903564, - 0.11103702336549759, - 0.11134595423936844, - 0.11152849346399307, - 0.11157967895269394, - 0.11149810254573822, - 0.1112859845161438, - 0.11094911396503448, - 0.11049668490886688, - 0.1099410429596901, - 0.10929732769727707, - 0.10858310759067535, - 0.1078178733587265, - 0.1070224866271019, - 0.10640270262956619, - 0.125295490026474, - 0.14368140697479248, - 0.16105890274047852, - 0.1769539713859558, - 0.19093303382396698, - 0.20261478424072266, - 0.2116805911064148, - 0.21788311004638672, - 0.22105321288108826, - 0.22110439836978912, - 0.2180352509021759, - 0.2119295597076416, - 0.2029537707567215, - 0.19135281443595886, - 0.17744305729866028, - 0.16160398721694946, - 0.14426760375499725, - 0.1259068250656128, - 0.1070224791765213, - 0.1064026951789856, - 0.141337588429451, - 0.17532798647880554, - 0.20744675397872925, - 0.23681774735450745, - 0.2626398205757141, - 0.2842085659503937, - 0.3009357452392578, - 0.31236499547958374, - 0.31818458437919617, - 0.31823575496673584, - 0.3125171363353729, - 0.3011847138404846, - 0.2845475673675537, - 0.2630595862865448, - 0.2373068481683731, - 0.2079918384552002, - 0.17591418325901031, - 0.1419489085674286, - 0.1070224717259407, - 0.1064026951789856, - 0.15359440445899963, - 0.19950729608535767, - 0.24288898706436157, - 0.2825561463832855, - 0.31742674112319946, - 0.3465496003627777, - 0.36913037300109863, - 0.3845530152320862, - 0.3923969268798828, - 0.3924481272697449, - 0.38470518589019775, - 0.36937934160232544, - 0.34688860177993774, - 0.31784653663635254, - 0.28304523229599, - 0.24343407154083252, - 0.20009347796440125, - 0.15420572459697723, - 0.1070224717259407, - 0.106402687728405, - 0.16073769330978394, - 0.2135990560054779, - 0.26354479789733887, - 0.3092126250267029, - 0.3493567109107971, - 0.38288217782974243, - 0.40887439250946045, - 0.4266244173049927, - 0.4356480836868286, - 0.4356992840766907, - 0.42677658796310425, - 0.40912336111068726, - 0.3832211494445801, - 0.3497765362262726, - 0.30970174074172974, - 0.2640898823738098, - 0.21418523788452148, - 0.16134902834892273, - 0.1070224717259407, - 0.106402687728405, - 0.16199344396591187, - 0.21607628464698792, - 0.26717594265937805, - 0.31389856338500977, - 0.35496973991394043, - 0.38926905393600464, - 0.4158610701560974, - 0.4340202212333679, - 0.44325125217437744, - 0.4433024525642395, - 0.4341723918914795, - 0.4161100387573242, - 0.38960808515548706, - 0.3553895354270935, - 0.3143876791000366, - 0.267721027135849, - 0.2166624665260315, - 0.16260476410388947, - 0.1070224717259407, - 0.1064026951789856, - 0.15722550451755524, - 0.20667046308517456, - 0.25338882207870483, - 0.2961062788963318, - 0.33365750312805176, - 0.3650183081626892, - 0.3893331289291382, - 0.40593886375427246, - 0.4143825173377991, - 0.41443371772766113, - 0.40609103441238403, - 0.389582097530365, - 0.36535727977752686, - 0.33407729864120483, - 0.29659533500671387, - 0.2539339065551758, - 0.20725665986537933, - 0.15783682465553284, - 0.1070224717259407, - 0.1064026951789856, - 0.1469505876302719, - 0.1864008903503418, - 0.22367751598358154, - 0.2577636241912842, - 0.2877294421195984, - 0.3127576410770416, - 0.3321654200553894, - 0.34542348980903625, - 0.35217010974884033, - 0.3522212505340576, - 0.34557563066482544, - 0.3324143886566162, - 0.31309664249420166, - 0.28814926743507385, - 0.25825273990631104, - 0.2242226004600525, - 0.18698708713054657, - 0.1475619077682495, - 0.1070224717259407, - 0.1064026951789856, - 0.13228212296962738, - 0.15746408700942993, - 0.18126167356967926, - 0.20302577316761017, - 0.22216267883777618, - 0.23815040290355682, - 0.2505528926849365, - 0.259031742811203, - 0.26335573196411133, - 0.2634069323539734, - 0.2591838836669922, - 0.25080186128616333, - 0.23848941922187805, - 0.22258245944976807, - 0.20351487398147583, - 0.1818067580461502, - 0.1580502837896347, - 0.13289345800876617, - 0.1070224791765213, - 0.10640270262956619, - 0.11480971425771713, - 0.12299585342407227, - 0.13073782622814178, - 0.13782446086406708, - 0.14406242966651917, - 0.1492816060781479, - 0.15333960950374603, - 0.1561257541179657, - 0.15756402909755707, - 0.15761519968509674, - 0.15627789497375488, - 0.15358856320381165, - 0.14962059259414673, - 0.14448221027851105, - 0.13831356167793274, - 0.13128291070461273, - 0.12358205020427704, - 0.11542103439569473, - 0.1070224791765213 - ], - "y": [ - 0.3281199634075165, - 0.2719656229019165, - 0.21733582019805908, - 0.16572076082229614, - 0.11852836608886719, - 0.07704591751098633, - 0.04240491986274719, - 0.015550285577774048, - -0.0027854442596435547, - -0.012102067470550537, - -0.012145519256591797, - -0.002914607524871826, - 0.015338927507400513, - 0.04211711883544922, - 0.07668954133987427, - 0.11811316013336182, - 0.16525807976722717, - 0.21683822572231293, - 0.27144670486450195, - 0.3275938630104065, - 0.3281199634075165, - 0.2723214030265808, - 0.21803773939609528, - 0.16674964129924774, - 0.11985611915588379, - 0.07863633334636688, - 0.0442146360874176, - 0.017529934644699097, - -0.0006898343563079834, - -0.00994768738746643, - -0.00999113917350769, - -0.0008189976215362549, - 0.01731857657432556, - 0.04392683506011963, - 0.0782800018787384, - 0.1194409430027008, - 0.16628696024417877, - 0.21754014492034912, - 0.27180248498916626, - 0.3275938630104065, - 0.3281199634075165, - 0.27872347831726074, - 0.23066721856594086, - 0.1852620542049408, - 0.1437464952468872, - 0.10725300014019012, - 0.07677701115608215, - 0.05314981937408447, - 0.0370158851146698, - 0.028815388679504395, - 0.028771936893463135, - 0.03688672184944153, - 0.05293846130371094, - 0.07648921012878418, - 0.10689665377140045, - 0.14333130419254303, - 0.18479937314987183, - 0.2301696240901947, - 0.2782045602798462, - 0.3275938630104065, - 0.3281199634075165, - 0.29047802090644836, - 0.2538556754589081, - 0.21925190091133118, - 0.18761056661605835, - 0.15979482233524323, - 0.13656334578990936, - 0.11854985356330872, - 0.1062457412481308, - 0.09998658299446106, - 0.0999431312084198, - 0.10611657798290253, - 0.11833852529525757, - 0.13627558946609497, - 0.15943847596645355, - 0.18719539046287537, - 0.2187892198562622, - 0.25335806608200073, - 0.2899591028690338, - 0.3275938630104065, - 0.3281199634075165, - 0.3063112497329712, - 0.28509026765823364, - 0.26503586769104004, - 0.24669502675533295, - 0.23056809604167938, - 0.21709492802619934, - 0.20664307475090027, - 0.19949761033058167, - 0.19585347175598145, - 0.19581001996994019, - 0.1993684470653534, - 0.20643174648284912, - 0.21680718660354614, - 0.2302117645740509, - 0.24627986550331116, - 0.2645731568336487, - 0.2845926880836487, - 0.30579233169555664, - 0.3275938630104065, - 0.3281199336051941, - 0.3245074152946472, - 0.320986270904541, - 0.31765252351760864, - 0.31459712982177734, - 0.3119034171104431, - 0.309644877910614, - 0.3078831136226654, - 0.30666619539260864, - 0.30602729320526123, - 0.30598384141921997, - 0.30653703212738037, - 0.30767178535461426, - 0.3093571364879608, - 0.31154710054397583, - 0.31418195366859436, - 0.3171898424625397, - 0.32048866152763367, - 0.32398849725723267, - 0.3275938630104065, - 0.3281199336051941, - 0.34309467673301697, - 0.35765373706817627, - 0.37140005826950073, - 0.3839586079120636, - 0.3949868381023407, - 0.404183954000473, - 0.41129907965660095, - 0.4161381125450134, - 0.41856905817985535, - 0.4185256063938141, - 0.41600894927978516, - 0.4110877513885498, - 0.4038962125778198, - 0.3946305513381958, - 0.3835434317588806, - 0.3709373474121094, - 0.3571561574935913, - 0.3425757586956024, - 0.3275938332080841, - 0.3281199336051941, - 0.3600587844848633, - 0.39111924171447754, - 0.4204540550708771, - 0.44726309180259705, - 0.4708150327205658, - 0.4904674291610718, - 0.5056842565536499, - 0.516050398349762, - 0.5212831497192383, - 0.5212396383285522, - 0.5159212350845337, - 0.5054728984832764, - 0.4901796877384186, - 0.4704587161540985, - 0.44684794545173645, - 0.4199913740158081, - 0.3906216621398926, - 0.35953986644744873, - 0.3275938332080841, - 0.3281199336051941, - 0.37356144189834595, - 0.41775625944137573, - 0.4594988226890564, - 0.4976505637168884, - 0.5311707258224487, - 0.5591450929641724, - 0.580810546875, - 0.5955760478973389, - 0.6030387878417969, - 0.6029953360557556, - 0.5954468250274658, - 0.5805991888046265, - 0.5588573813438416, - 0.5308144688606262, - 0.49723541736602783, - 0.4590361416339874, - 0.4172586500644684, - 0.3730425238609314, - 0.3275938332080841, - 0.3281199336051941, - 0.3821394145488739, - 0.43467822670936584, - 0.48430320620536804, - 0.5296607613563538, - 0.5695136189460754, - 0.6027747392654419, - 0.6285368204116821, - 0.6460970640182495, - 0.6549766063690186, - 0.6549331545829773, - 0.6459679007530212, - 0.6283254623413086, - 0.6024869680404663, - 0.5691573619842529, - 0.5292456150054932, - 0.4838405251502991, - 0.4341806173324585, - 0.38162049651145935, - 0.3275938332080841, - 0.3281199336051941, - 0.3848631680011749, - 0.440051406621933, - 0.492179274559021, - 0.5398248434066772, - 0.5816885232925415, - 0.6166282892227173, - 0.6436911821365356, - 0.6621388792991638, - 0.6714682579040527, - 0.6714248061180115, - 0.6620097160339355, - 0.6434798240661621, - 0.6163405179977417, - 0.5813322067260742, - 0.5394096970558167, - 0.49171656370162964, - 0.43955379724502563, - 0.3843442499637604, - 0.3275938332080841, - 0.3281199336051941, - 0.3814375102519989, - 0.43329352140426636, - 0.48227351903915405, - 0.5270414352416992, - 0.5663760900497437, - 0.5992045998573303, - 0.624631404876709, - 0.6419630646705627, - 0.6507266759872437, - 0.6506831645965576, - 0.6418339014053345, - 0.6244200468063354, - 0.5989168882369995, - 0.5660198330879211, - 0.5266262888908386, - 0.4818108081817627, - 0.4327959418296814, - 0.38091859221458435, - 0.3275938332080841, - 0.3281199336051941, - 0.37223365902900696, - 0.4151369333267212, - 0.4556593894958496, - 0.49269580841064453, - 0.5252357721328735, - 0.552391767501831, - 0.5734230875968933, - 0.5877559185028076, - 0.5949994325637817, - 0.5949559807777405, - 0.5876268148422241, - 0.5732117295265198, - 0.5521040558815002, - 0.5248794555664062, - 0.49228063225746155, - 0.455196738243103, - 0.41463935375213623, - 0.3717147409915924, - 0.3275938332080841, - 0.3281199336051941, - 0.3582490384578705, - 0.38754910230636597, - 0.4152209460735321, - 0.44050973653793335, - 0.46272560954093933, - 0.4812626242637634, - 0.495615154504776, - 0.5053917169570923, - 0.5103254914283752, - 0.510282039642334, - 0.5052624940872192, - 0.49540382623672485, - 0.4809749126434326, - 0.46236932277679443, - 0.44009459018707275, - 0.41475826501846313, - 0.387051522731781, - 0.35773012042045593, - 0.3275938332080841, - 0.3281199336051941, - 0.3409990668296814, - 0.3535197377204895, - 0.36534038186073303, - 0.3761385679244995, - 0.38561975955963135, - 0.39352530241012573, - 0.3996396064758301, - 0.40379589796066284, - 0.40588071942329407, - 0.4058372676372528, - 0.40366673469543457, - 0.3994283080101013, - 0.3932375907897949, - 0.38526344299316406, - 0.37572339177131653, - 0.3648776710033417, - 0.35302212834358215, - 0.34048014879226685, - 0.3275938332080841, - 0.3281199336051941, - 0.3223530948162079, - 0.3167363405227661, - 0.3114229440689087, - 0.306557834148407, - 0.302273690700531, - 0.2986873984336853, - 0.2958967685699463, - 0.2939779460430145, - 0.2929832339286804, - 0.29293978214263916, - 0.29384878277778625, - 0.29568544030189514, - 0.2983996570110321, - 0.3019173741340637, - 0.306142657995224, - 0.3109602630138397, - 0.31623876094818115, - 0.32183417677879333, - 0.3275938630104065, - 0.3281199634075165, - 0.30433160066604614, - 0.28118494153022766, - 0.25931140780448914, - 0.23930758237838745, - 0.2217191755771637, - 0.2070259153842926, - 0.1956285834312439, - 0.1878381371498108, - 0.18386703729629517, - 0.1838235855102539, - 0.18770897388458252, - 0.19541725516319275, - 0.2067381739616394, - 0.22136284410953522, - 0.23889240622520447, - 0.25884872674942017, - 0.2806873619556427, - 0.3038126826286316, - 0.3275938630104065, - 0.3281199634075165, - 0.28888756036758423, - 0.2507181763648987, - 0.2146528959274292, - 0.18167553842067719, - 0.15268564224243164, - 0.12847395241260529, - 0.10970088839530945, - 0.09687855839729309, - 0.0903567373752594, - 0.09031328558921814, - 0.09674939513206482, - 0.1094895601272583, - 0.1281861960887909, - 0.15232929587364197, - 0.1812603622674942, - 0.21419021487236023, - 0.25022056698799133, - 0.2883686423301697, - 0.3275938630104065, - 0.3281199634075165, - 0.27769458293914795, - 0.22863751649856567, - 0.18228688836097717, - 0.13990703225135803, - 0.10265395045280457, - 0.0715438723564148, - 0.047425270080566406, - 0.030956149101257324, - 0.022585690021514893, - 0.022542238235473633, - 0.030826985836029053, - 0.04721391201019287, - 0.07125607132911682, - 0.10229760408401489, - 0.13949184119701385, - 0.1818242073059082, - 0.22813992202281952, - 0.2771756649017334, - 0.3275938630104065, - 0.3281199634075165, - 0.2719655930995941, - 0.21733582019805908, - 0.16572076082229614, - 0.118528351187706, - 0.07704588770866394, - 0.042404890060424805, - 0.01555025577545166, - -0.0027854442596435547, - -0.012102067470550537, - -0.012145519256591797, - -0.002914607524871826, - 0.015338897705078125, - 0.04211708903312683, - 0.07668951153755188, - 0.11811314523220062, - 0.16525807976722717, - 0.21683822572231293, - 0.27144667506217957, - 0.3275938630104065 - ], - "z": [ - -1.6943347454071045, - -1.6949326992034912, - -1.694969654083252, - -1.6944447755813599, - -1.6933722496032715, - -1.6917812824249268, - -1.6897155046463013, - -1.6872310638427734, - -1.684395670890808, - -1.6812869310379028, - -1.6779894828796387, - -1.674593210220337, - -1.671190857887268, - -1.6678751707077026, - -1.6647367477416992, - -1.6618609428405762, - -1.6593263149261475, - -1.657202124595642, - -1.6555461883544922, - -1.6544036865234375, - -1.6943347454071045, - -1.6946426630020142, - -1.6943975687026978, - -1.6936061382293701, - -1.69228994846344, - -1.6904850006103516, - -1.6882404088974, - -1.685617446899414, - -1.6826876401901245, - -1.6795309782028198, - -1.6762334108352661, - -1.6728851795196533, - -1.6695772409439087, - -1.6664000749588013, - -1.6634403467178345, - -1.6607787609100342, - -1.6584877967834473, - -1.656630039215088, - -1.6552561521530151, - -1.6544036865234375, - -1.6943347454071045, - -1.6942898035049438, - -1.6937013864517212, - -1.6925857067108154, - -1.690973162651062, - -1.6889076232910156, - -1.6864454746246338, - -1.6836540699005127, - -1.6806092262268066, - -1.6773942708969116, - -1.6740968227386475, - -1.6708067655563354, - -1.6676138639450073, - -1.6646052598953247, - -1.6618629693984985, - -1.6594618558883667, - -1.6574673652648926, - -1.6559338569641113, - -1.6549032926559448, - -1.6544036865234375, - -1.6943347454071045, - -1.6939122676849365, - -1.6929566860198975, - -1.691494107246399, - -1.6895643472671509, - -1.6872200965881348, - -1.6845253705978394, - -1.681553602218628, - -1.678385853767395, - -1.6751084327697754, - -1.6718109846115112, - -1.6685832738876343, - -1.6655133962631226, - -1.6626851558685303, - -1.6601754426956177, - -1.6580530405044556, - -1.6563756465911865, - -1.6551891565322876, - -1.6545257568359375, - -1.6544036865234375, - -1.6943347454071045, - -1.6935510635375977, - -1.692244052886963, - -1.6904494762420654, - -1.6882163286209106, - -1.6856054067611694, - -1.6826879978179932, - -1.6795437335968018, - -1.6762582063674927, - -1.6729211807250977, - -1.6696237325668335, - -1.6664557456970215, - -1.6635035276412964, - -1.660847783088684, - -1.6585607528686523, - -1.6567050218582153, - -1.6553311347961426, - -1.654476523399353, - -1.6541645526885986, - -1.6544036865234375, - -1.6943347454071045, - -1.6932451725006104, - -1.6916407346725464, - -1.6895651817321777, - -1.6870750188827515, - -1.6842384338378906, - -1.6811325550079346, - -1.677842140197754, - -1.67445707321167, - -1.671069622039795, - -1.6677720546722412, - -1.6646544933319092, - -1.661802053451538, - -1.659292221069336, - -1.6571937799453735, - -1.6555638313293457, - -1.6544468402862549, - -1.6538732051849365, - -1.6538586616516113, - -1.6544036865234375, - -1.6943347454071045, - -1.6930279731750488, - -1.6912121772766113, - -1.6889369487762451, - -1.6862643957138062, - -1.6832672357559204, - -1.6800274848937988, - -1.676633358001709, - -1.6731774806976318, - -1.669754147529602, - -1.666456699371338, - -1.6633750200271606, - -1.6605932712554932, - -1.6581872701644897, - -1.6562227010726929, - -1.6547530889511108, - -1.6538186073303223, - -1.6534446477890015, - -1.6536414623260498, - -1.6544036865234375, - -1.6943347454071045, - -1.692922830581665, - -1.691004753112793, - -1.688632845878601, - -1.685871958732605, - -1.6827973127365112, - -1.679492712020874, - -1.6760483980178833, - -1.6725581884384155, - -1.6691174507141113, - -1.6658200025558472, - -1.6627557277679443, - -1.660008192062378, - -1.6576523780822754, - -1.6557526588439941, - -1.6543606519699097, - -1.6535145044326782, - -1.653237223625183, - -1.653536319732666, - -1.6544036865234375, - -1.6943347454071045, - -1.6929411888122559, - -1.6910408735275269, - -1.6886858940124512, - -1.6859403848648071, - -1.6828793287277222, - -1.6795860528945923, - -1.6761504411697388, - -1.672666311264038, - -1.6692285537719727, - -1.6659311056137085, - -1.662863850593567, - -1.660110354423523, - -1.6577458381652832, - -1.655834674835205, - -1.6544291973114014, - -1.6535675525665283, - -1.653273344039917, - -1.6535546779632568, - -1.6544036865234375, - -1.6943347454071045, - -1.693081021308899, - -1.691316843032837, - -1.689090371131897, - -1.68646240234375, - -1.6835044622421265, - -1.6802973747253418, - -1.6769286394119263, - -1.673490047454834, - -1.6700754165649414, - -1.6667779684066772, - -1.6636875867843628, - -1.6608885526657104, - -1.6584571599960327, - -1.656459927558899, - -1.6549510955810547, - -1.6539720296859741, - -1.653549313545227, - -1.6536945104599, - -1.6544036865234375, - -1.6943347454071045, - -1.6933271884918213, - -1.6918026208877563, - -1.6898024082183838, - -1.6873811483383179, - -1.6846051216125488, - -1.6815497875213623, - -1.6782985925674438, - -1.6749402284622192, - -1.6715662479400635, - -1.6682687997817993, - -1.6651376485824585, - -1.6622583866119385, - -1.6597094535827637, - -1.6575604677200317, - -1.655869960784912, - -1.6546839475631714, - -1.654034972190857, - -1.6539406776428223, - -1.6544036865234375, - -1.6943347454071045, - -1.6936531066894531, - -1.6924455165863037, - -1.6907447576522827, - -1.688597321510315, - -1.6860618591308594, - -1.683207392692566, - -1.6801117658615112, - -1.6768596172332764, - -1.6735395193099976, - -1.6702419519424438, - -1.6670571565628052, - -1.6640716791152954, - -1.6613670587539673, - -1.6590172052383423, - -1.6570860147476196, - -1.6556264162063599, - -1.6546779870986938, - -1.654266595840454, - -1.6544036865234375, - -1.6943347454071045, - -1.6940233707427979, - -1.6931759119033813, - -1.6918153762817383, - -1.6899789571762085, - -1.6877168416976929, - -1.6850905418395996, - -1.6821718215942383, - -1.6790403127670288, - -1.67578125, - -1.6724838018417358, - -1.669237732887268, - -1.6661317348480225, - -1.6632503271102905, - -1.6606721878051758, - -1.6584677696228027, - -1.6566970348358154, - -1.6554083824157715, - -1.6546368598937988, - -1.6544036865234375, - -1.6943347454071045, - -1.6943979263305664, - -1.6939146518707275, - -1.6928982734680176, - -1.6913764476776123, - -1.689390778541565, - -1.686995267868042, - -1.6842553615570068, - -1.6812459230422974, - -1.6780487298965454, - -1.6747512817382812, - -1.6714433431625366, - -1.668215274810791, - -1.665155053138733, - -1.6623461246490479, - -1.6598652601242065, - -1.6577799320220947, - -1.6561471223831177, - -1.6550114154815674, - -1.6544036865234375, - -1.6943347454071045, - -1.6947360038757324, - -1.6945817470550537, - -1.693876028060913, - -1.6926382780075073, - -1.6909022331237793, - -1.6887151002883911, - -1.6861367225646973, - -1.6832374334335327, - -1.68009614944458, - -1.676798701286316, - -1.673434853553772, - -1.6700966358184814, - -1.666874885559082, - -1.6638575792312622, - -1.6611270904541016, - -1.6587576866149902, - -1.6568142175674438, - -1.6553494930267334, - -1.6544036865234375, - -1.6943347454071045, - -1.6950011253356934, - -1.6951048374176025, - -1.6946427822113037, - -1.6936277151107788, - -1.6920874118804932, - -1.6900638341903687, - -1.6876120567321777, - -1.684799075126648, - -1.6817015409469604, - -1.6784040927886963, - -1.6749966144561768, - -1.6715718507766724, - -1.66822350025177, - -1.6650428771972656, - -1.662116527557373, - -1.6595244407653809, - -1.6573371887207031, - -1.6556146144866943, - -1.6544036865234375, - -1.6943347454071045, - -1.6951645612716675, - -1.6954271793365479, - -1.695115327835083, - -1.6942375898361206, - -1.6928179264068604, - -1.6908950805664062, - -1.688521385192871, - -1.685761570930481, - -1.6826910972595215, - -1.6793936491012573, - -1.6759591102600098, - -1.6724811792373657, - -1.6690547466278076, - -1.6657733917236328, - -1.6627264022827148, - -1.6599969863891602, - -1.657659649848938, - -1.6557780504226685, - -1.6544036865234375, - -1.6943347454071045, - -1.6952085494995117, - -1.6955139636993408, - -1.6952426433563232, - -1.6944018602371216, - -1.6930146217346191, - -1.691118836402893, - -1.6887661218643188, - -1.6860207319259644, - -1.6829575300216675, - -1.6796600818634033, - -1.6762182712554932, - -1.672726035118103, - -1.669278621673584, - -1.665969967842102, - -1.6628905534744263, - -1.6601241827011108, - -1.657746434211731, - -1.6558220386505127, - -1.6544036865234375, - -1.6943347454071045, - -1.6951284408569336, - -1.695355772972107, - -1.6950106620788574, - -1.6941025257110596, - -1.69265615940094, - -1.6907109022140503, - -1.6883199214935303, - -1.6855484247207642, - -1.6824718713760376, - -1.6791744232177734, - -1.6757458448410034, - -1.672279715538025, - -1.6688706874847412, - -1.6656115055084229, - -1.6625912189483643, - -1.6598923206329346, - -1.657588243484497, - -1.6557419300079346, - -1.6544036865234375, - -1.6943347454071045, - -1.6949326992034912, - -1.694969654083252, - -1.6944447755813599, - -1.6933722496032715, - -1.6917812824249268, - -1.6897155046463013, - -1.6872309446334839, - -1.684395670890808, - -1.6812869310379028, - -1.6779894828796387, - -1.674593210220337, - -1.671190857887268, - -1.6678751707077026, - -1.6647367477416992, - -1.6618609428405762, - -1.6593263149261475, - -1.657202124595642, - -1.6555461883544922, - -1.6544036865234375 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.08290916681289673, - 0.09276872873306274, - 0.10236571729183197, - 0.11143835633993149, - 0.11973917484283447, - 0.1270417422056198, - 0.13314685225486755, - 0.13788798451423645, - 0.1411358118057251, - 0.14280174672603607, - 0.14284034073352814, - 0.14125055074691772, - 0.13807572424411774, - 0.133402481675148, - 0.12735828757286072, - 0.1201079934835434, - 0.11184939742088318, - 0.10280776023864746, - 0.09322972595691681, - 0.08337653428316116, - 0.08290917426347733, - 0.07409726083278656, - 0.06553208827972412, - 0.05744728446006775, - 0.05006340146064758, - 0.04358184337615967, - 0.038179393857717514, - 0.034003421664237976, - 0.031167857348918915, - 0.029750045388936996, - 0.029788639396429062, - 0.031282588839530945, - 0.03419116139411926, - 0.038435012102127075, - 0.04389837011694908, - 0.05043221265077591, - 0.05785832554101944, - 0.06597413122653961, - 0.07455825805664062, - 0.08337654173374176, - 0.08290917426347733, - 0.056381046772003174, - 0.030582904815673828, - 0.006218463182449341, - -0.016047686338424683, - -0.03560815751552582, - -0.05192940682172775, - -0.06456629186868668, - -0.07317402213811874, - -0.07751781493425369, - -0.07747922092676163, - -0.07305928319692612, - -0.0643785372376442, - -0.051673807203769684, - -0.0352916419506073, - -0.01567886769771576, - 0.006629496812820435, - 0.031024955213069916, - 0.05684204399585724, - 0.08337654918432236, - 0.08290918171405792, - 0.041539907455444336, - 0.0013054609298706055, - -0.036696694791316986, - -0.07142993062734604, - -0.10194679349660873, - -0.12741491198539734, - -0.14713960886001587, - -0.1605827510356903, - -0.16737774014472961, - -0.16733911633491516, - -0.16046801209449768, - -0.1469518542289734, - -0.12715932726860046, - -0.1016303077340126, - -0.07106108218431473, - -0.03628566116094589, - 0.0017475038766860962, - 0.0420009046792984, - 0.08337654918432236, - 0.08290918171405792, - 0.03118211403489113, - -0.019127599895000458, - -0.06664764136075974, - -0.11008179932832718, - -0.14824524521827698, - -0.1800970733165741, - -0.20476841926574707, - -0.22158625721931458, - -0.2300918996334076, - -0.23005327582359314, - -0.22147151827812195, - -0.2045806646347046, - -0.17984145879745483, - -0.14792874455451965, - -0.10971298068761826, - -0.06623660773038864, - -0.018685556948184967, - 0.031643111258745193, - 0.08337655663490295, - 0.08290918171405792, - 0.026430103927850723, - -0.02850198745727539, - -0.08038871735334396, - -0.12781473994255066, - -0.1694863736629486, - -0.20426693558692932, - -0.2312077283859253, - -0.24957385659217834, - -0.25886431336402893, - -0.2588256895542145, - -0.24945911765098572, - -0.2310199737548828, - -0.20401132106781006, - -0.1691698431968689, - -0.12744593620300293, - -0.07997768372297287, - -0.0280599445104599, - 0.026891101151704788, - 0.08337655663490295, - 0.08290918171405792, - 0.027798816561698914, - -0.02580191195011139, - -0.07643089443445206, - -0.12270716577768326, - -0.1633683145046234, - -0.19730538129806519, - -0.22359246015548706, - -0.24151265621185303, - -0.25057703256607056, - -0.2505384087562561, - -0.2413979172706604, - -0.22340470552444458, - -0.19704973697662354, - -0.16305184364318848, - -0.12233834713697433, - -0.07601986080408096, - -0.0253598690032959, - 0.02825981378555298, - 0.08337655663490295, - 0.08290918171405792, - 0.035139936953783035, - -0.011319905519485474, - -0.05520307272672653, - -0.09531251341104507, - -0.13055413961410522, - -0.15996667742729187, - -0.18274787068367004, - -0.19827619194984436, - -0.20612818002700806, - -0.2060895562171936, - -0.19816145300865173, - -0.18256011605262756, - -0.159711092710495, - -0.1302376389503479, - -0.09494369477033615, - -0.05479203909635544, - -0.010877862572669983, - 0.0356009341776371, - 0.08337654918432236, - 0.08290918171405792, - 0.04765794053673744, - 0.013374634087085724, - -0.019005566835403442, - -0.04859944432973862, - -0.07459970563650131, - -0.09629718214273453, - -0.11309999972581863, - -0.12454984337091446, - -0.13033431768417358, - -0.13029572367668152, - -0.12443510442972183, - -0.11291224509477615, - -0.09604156762361526, - -0.07428320497274399, - -0.048230625689029694, - -0.01859453320503235, - 0.013816677033901215, - 0.04811893776059151, - 0.08337654918432236, - 0.08290917426347733, - 0.06399630010128021, - 0.04560570418834686, - 0.028239019215106964, - 0.012369967997074127, - -0.0015685781836509705, - -0.013196423649787903, - -0.022196397185325623, - -0.0283229798078537, - -0.03140905499458313, - -0.031370460987091064, - -0.028208240866661072, - -0.022008657455444336, - -0.012940801680088043, - -0.0012520551681518555, - 0.012738779187202454, - 0.028650060296058655, - 0.04604775458574295, - 0.06445729732513428, - 0.08337654173374176, - 0.08290916681289673, - 0.08238451927900314, - 0.08188055455684662, - 0.08141102641820908, - 0.08098873496055603, - 0.08062519878149033, - 0.08033033460378647, - 0.08011219650506973, - 0.07997673004865646, - 0.07992762327194214, - 0.0799662172794342, - 0.0800914615392685, - 0.08029994368553162, - 0.08058596402406693, - 0.08094173669815063, - 0.08135755360126495, - 0.08182206749916077, - 0.0823226049542427, - 0.08284551650285721, - 0.08337654173374176, - 0.08290916681289673, - 0.10082992911338806, - 0.11826823651790619, - 0.1347484141588211, - 0.1498209536075592, - 0.16307464241981506, - 0.17414802312850952, - 0.1827390193939209, - 0.18861329555511475, - 0.19161060452461243, - 0.1916491985321045, - 0.18872803449630737, - 0.18292677402496338, - 0.17440366744995117, - 0.16339120268821716, - 0.15018975734710693, - 0.1351594626903534, - 0.11871029436588287, - 0.10129092633724213, - 0.08337653428316116, - 0.08290915936231613, - 0.11733369529247284, - 0.1508255898952484, - 0.18247129023075104, - 0.21140754222869873, - 0.23684510588645935, - 0.2580900490283966, - 0.27456286549568176, - 0.2858142852783203, - 0.291537344455719, - 0.29157593846321106, - 0.28592902421951294, - 0.27475062012672424, - 0.25834566354751587, - 0.23716166615486145, - 0.21177640557289124, - 0.18288232386112213, - 0.1512676328420639, - 0.1177946925163269, - 0.08337652683258057, - 0.08290915936231613, - 0.13010738790035248, - 0.17602454125881195, - 0.21940812468528748, - 0.25907474756240845, - 0.293942391872406, - 0.323060005903244, - 0.34563329815864563, - 0.36104655265808105, - 0.3688792288303375, - 0.368917852640152, - 0.3611612915992737, - 0.3458210527896881, - 0.32331565022468567, - 0.2942589819431305, - 0.25944358110427856, - 0.21981915831565857, - 0.17646658420562744, - 0.13056838512420654, - 0.08337652683258057, - 0.08290915191173553, - 0.1377667486667633, - 0.19113433361053467, - 0.24155619740486145, - 0.2876569628715515, - 0.32817912101745605, - 0.36201730370521545, - 0.3882485032081604, - 0.4061572849750519, - 0.41525501012802124, - 0.4152936339378357, - 0.4062720239162445, - 0.3884362578392029, - 0.3622729778289795, - 0.32849568128585815, - 0.288025826215744, - 0.24196723103523254, - 0.19157636165618896, - 0.13822774589061737, - 0.08337652683258057, - 0.08290915191173553, - 0.139481782913208, - 0.19451764225959778, - 0.24651548266410828, - 0.2940569221973419, - 0.3358451724052429, - 0.3707404136657715, - 0.39779072999954224, - 0.4162582457065582, - 0.42563921213150024, - 0.4256778359413147, - 0.41637298464775085, - 0.3979784846305847, - 0.3709960877895355, - 0.3361617922782898, - 0.2944257855415344, - 0.24692651629447937, - 0.19495970010757446, - 0.13994279503822327, - 0.08337652683258057, - 0.08290915191173553, - 0.1350666582584381, - 0.18580779433250427, - 0.23374852538108826, - 0.2775810956954956, - 0.31610992550849915, - 0.3482840061187744, - 0.37322574853897095, - 0.39025476574897766, - 0.39890655875205994, - 0.3989451825618744, - 0.3903695046901703, - 0.3734135031700134, - 0.34853965044021606, - 0.31642651557922363, - 0.2779499292373657, - 0.23415955901145935, - 0.18624985218048096, - 0.13552764058113098, - 0.08337652683258057, - 0.08290915936231613, - 0.12499979138374329, - 0.16594865918159485, - 0.20463882386684418, - 0.24001488089561462, - 0.2711118757724762, - 0.2970815598964691, - 0.31721556186676025, - 0.33096468448638916, - 0.3379538357257843, - 0.33799245953559875, - 0.3310794234275818, - 0.31740331649780273, - 0.29733720421791077, - 0.2714284360408783, - 0.24038371443748474, - 0.20504985749721527, - 0.16639071702957153, - 0.12546078860759735, - 0.08337652683258057, - 0.08290915936231613, - 0.11037208139896393, - 0.13709226250648499, - 0.16234084963798523, - 0.18542911112308502, - 0.20572726428508759, - 0.22268164157867432, - 0.23582977056503296, - 0.2448129951953888, - 0.2493862807750702, - 0.24942487478256226, - 0.24492773413658142, - 0.23601752519607544, - 0.22293728590011597, - 0.20604383945465088, - 0.18579792976379395, - 0.16275188326835632, - 0.13753432035446167, - 0.110833078622818, - 0.08337653428316116, - 0.08290916681289673, - 0.09276871383190155, - 0.10236570239067078, - 0.1114383339881897, - 0.11973913758993149, - 0.12704169750213623, - 0.13314679265022278, - 0.13788792490959167, - 0.14113575220108032, - 0.1428017020225525, - 0.14284029603004456, - 0.14125049114227295, - 0.13807567954063416, - 0.13340243697166443, - 0.12735822796821594, - 0.12010796368122101, - 0.11184936761856079, - 0.10280774533748627, - 0.09322971105575562, - 0.08337653428316116 - ], - "y": [ - 0.31185266375541687, - 0.25510287284851074, - 0.19989603757858276, - 0.1477380245923996, - 0.10005159676074982, - 0.05813750624656677, - 0.02313902974128723, - -0.003989130258560181, - -0.022507011890411377, - -0.03190946578979492, - -0.0319400429725647, - -0.022597908973693848, - -0.00413784384727478, - 0.022936522960662842, - 0.057886719703674316, - 0.09975941479206085, - 0.14741243422031403, - 0.19954587519168854, - 0.2547377049922943, - 0.31148242950439453, - 0.31185266375541687, - 0.2550242245197296, - 0.1997409164905548, - 0.14751064777374268, - 0.09975813329219818, - 0.057785987854003906, - 0.022739052772521973, - -0.0044266581535339355, - -0.022970139980316162, - -0.03238558769226074, - -0.03241616487503052, - -0.023061037063598633, - -0.004575371742248535, - 0.022536545991897583, - 0.05753520131111145, - 0.0994659811258316, - 0.1471850574016571, - 0.1993907392024994, - 0.2546590566635132, - 0.31148242950439453, - 0.31185266375541687, - 0.2611035704612732, - 0.21173372864723206, - 0.16508983075618744, - 0.12244416773319244, - 0.08496005833148956, - 0.053659915924072266, - 0.029397577047348022, - 0.012834757566452026, - 0.004423379898071289, - 0.004392802715301514, - 0.012743860483169556, - 0.029248863458633423, - 0.053457409143447876, - 0.0847092866897583, - 0.12215200066566467, - 0.16476424038410187, - 0.21138356626033783, - 0.26073840260505676, - 0.31148242950439453, - 0.31185266375541687, - 0.2726820707321167, - 0.23457489907741547, - 0.1985706239938736, - 0.165651336312294, - 0.13671499490737915, - 0.11255089938640594, - 0.09381817281246185, - 0.08102782070636749, - 0.07452872395515442, - 0.07449814677238464, - 0.08093692362308502, - 0.09366945922374725, - 0.11234839260578156, - 0.1364642232656479, - 0.16535916924476624, - 0.19824503362178802, - 0.23422473669052124, - 0.27231690287590027, - 0.31148242950439453, - 0.3118526339530945, - 0.28850504755973816, - 0.2657892405986786, - 0.24432487785816193, - 0.22469744086265564, - 0.20744234323501587, - 0.1930302381515503, - 0.1818542182445526, - 0.17421919107437134, - 0.1703333854675293, - 0.17030280828475952, - 0.17412829399108887, - 0.181705504655838, - 0.1928277313709259, - 0.2071915864944458, - 0.22440528869628906, - 0.24399928748607635, - 0.26543909311294556, - 0.28813987970352173, - 0.31148242950439453, - 0.3118526339530945, - 0.30685779452323914, - 0.3019941747188568, - 0.29739439487457275, - 0.29318395256996155, - 0.28947770595550537, - 0.2863767147064209, - 0.2839656174182892, - 0.2823101282119751, - 0.28145545721054077, - 0.281424880027771, - 0.282219260931015, - 0.2838169038295746, - 0.2861742079257965, - 0.2892269492149353, - 0.29289180040359497, - 0.2970688045024872, - 0.3016439974308014, - 0.3064926266670227, - 0.31148242950439453, - 0.3118526339530945, - 0.32575157284736633, - 0.3392663300037384, - 0.3520282506942749, - 0.36368924379348755, - 0.37393122911453247, - 0.382474809885025, - 0.3890869617462158, - 0.3935873508453369, - 0.3958531320095062, - 0.39582255482673645, - 0.39349645376205444, - 0.3889382481575012, - 0.382272332906723, - 0.3736805021762848, - 0.36339712142944336, - 0.35170266032218933, - 0.338916152715683, - 0.3253864049911499, - 0.31148242950439453, - 0.3118526339530945, - 0.3431389033794403, - 0.3735666871070862, - 0.40230605006217957, - 0.42857304215431213, - 0.45165112614631653, - 0.47091084718704224, - 0.4858267903327942, - 0.49599218368530273, - 0.5011296272277832, - 0.5010990500450134, - 0.49590128660202026, - 0.4856780767440796, - 0.47070837020874023, - 0.45140039920806885, - 0.42828088998794556, - 0.401980459690094, - 0.37321653962135315, - 0.3427737355232239, - 0.31148239970207214, - 0.3118526339530945, - 0.3571355938911438, - 0.4011783003807068, - 0.44277942180633545, - 0.4808041453361511, - 0.5142151713371277, - 0.5421013236045837, - 0.563701868057251, - 0.5784275531768799, - 0.5858766436576843, - 0.5858460664749146, - 0.5783365964889526, - 0.5635530948638916, - 0.5418988466262817, - 0.5139645338058472, - 0.48051196336746216, - 0.4424538016319275, - 0.40082815289497375, - 0.35677042603492737, - 0.31148239970207214, - 0.3118526339530945, - 0.36622491478919983, - 0.4191090166568756, - 0.4690623879432678, - 0.514722466468811, - 0.5548436641693115, - 0.5883316993713379, - 0.6142731308937073, - 0.6319601535797119, - 0.6409105062484741, - 0.6408798694610596, - 0.6318693161010742, - 0.6141244173049927, - 0.5881292819976807, - 0.554593026638031, - 0.5144302845001221, - 0.46873679757118225, - 0.4187588691711426, - 0.3658597469329834, - 0.31148239970207214, - 0.3118526339530945, - 0.3694218695163727, - 0.4254157543182373, - 0.4783068299293518, - 0.526652455329895, - 0.5691338777542114, - 0.6045922040939331, - 0.6320604085922241, - 0.6507891416549683, - 0.6602674126625061, - 0.6602368354797363, - 0.650698184967041, - 0.6319117546081543, - 0.6043897867202759, - 0.5688831806182861, - 0.5263603329658508, - 0.4779812693595886, - 0.4250655770301819, - 0.36905670166015625, - 0.31148239970207214, - 0.3118526339530945, - 0.3663800358772278, - 0.41941505670547485, - 0.4695109724998474, - 0.5153013467788696, - 0.5555371046066284, - 0.5891207456588745, - 0.6151362061500549, - 0.6328738927841187, - 0.6418497562408447, - 0.6418192386627197, - 0.6327829957008362, - 0.6149874925613403, - 0.5889183282852173, - 0.5552864074707031, - 0.5150092244148254, - 0.46918538212776184, - 0.41906487941741943, - 0.36601486802101135, - 0.31148239970207214, - 0.3118526339530945, - 0.35742905735969543, - 0.40175724029541016, - 0.4436279833316803, - 0.4818992018699646, - 0.5155269503593445, - 0.5435939431190491, - 0.5653346180915833, - 0.5801558494567871, - 0.5876534581184387, - 0.587622880935669, - 0.5800650119781494, - 0.5651859045028687, - 0.5433914661407471, - 0.5152762532234192, - 0.4816070795059204, - 0.4433023929595947, - 0.40140706300735474, - 0.357063889503479, - 0.31148239970207214, - 0.3118526339530945, - 0.3435388505458832, - 0.3743557333946228, - 0.40346261858940125, - 0.4300655722618103, - 0.453438937664032, - 0.4729451537132263, - 0.4880521893501282, - 0.49834784865379333, - 0.5035513639450073, - 0.5035207867622375, - 0.49825695157051086, - 0.4879034757614136, - 0.4727427065372467, - 0.4531882405281067, - 0.4297734498977661, - 0.4031370282173157, - 0.37400558590888977, - 0.34317368268966675, - 0.31148239970207214, - 0.3118526339530945, - 0.3262147307395935, - 0.34018000960350037, - 0.35336753726005554, - 0.36541759967803955, - 0.3760015070438385, - 0.3848305642604828, - 0.39166390895843506, - 0.39631515741348267, - 0.3986574411392212, - 0.3986268639564514, - 0.3962242603302002, - 0.39151519536972046, - 0.3846280872821808, - 0.3757507801055908, - 0.36512547731399536, - 0.35304194688796997, - 0.33982986211776733, - 0.3258495628833771, - 0.31148242950439453, - 0.3118526339530945, - 0.30733397603034973, - 0.3029335141181946, - 0.2987712621688843, - 0.2949608266353607, - 0.2916060984134674, - 0.28879857063293457, - 0.28661489486694336, - 0.2851145267486572, - 0.28433850407600403, - 0.28430792689323425, - 0.28502365946769714, - 0.28646618127822876, - 0.28859609365463257, - 0.29135534167289734, - 0.29466867446899414, - 0.2984456717967987, - 0.30258333683013916, - 0.3069688081741333, - 0.31148242950439453, - 0.3118526339530945, - 0.2889425754547119, - 0.266652375459671, - 0.24559006094932556, - 0.22633019089698792, - 0.209398090839386, - 0.19525563716888428, - 0.18428857624530792, - 0.17679612338542938, - 0.1729825884103775, - 0.17295201122760773, - 0.1767052263021469, - 0.18413986265659332, - 0.19505316019058228, - 0.20914733409881592, - 0.22603803873062134, - 0.24526447057724, - 0.266302227973938, - 0.2885774075984955, - 0.31148242950439453, - 0.31185266375541687, - 0.2730335593223572, - 0.23526832461357117, - 0.19958704710006714, - 0.16696302592754364, - 0.13828617334365845, - 0.11433872580528259, - 0.0957738608121872, - 0.08309803903102875, - 0.0766570121049881, - 0.07662643492221832, - 0.08300714194774628, - 0.0956251472234726, - 0.1141362339258194, - 0.13803541660308838, - 0.16667087376117706, - 0.19926145672798157, - 0.23491816222667694, - 0.27266839146614075, - 0.31148242950439453, - 0.31185266375541687, - 0.2613309323787689, - 0.21218228340148926, - 0.16574734449386597, - 0.1232927143573761, - 0.08597645163536072, - 0.05481642484664917, - 0.03066268563270569, - 0.01417398452758789, - 0.005800157785415649, - 0.005769580602645874, - 0.01408308744430542, - 0.03051397204399109, - 0.05461394786834717, - 0.08572567999362946, - 0.12300053238868713, - 0.1654217541217804, - 0.21183213591575623, - 0.2609657645225525, - 0.31148242950439453, - 0.31185266375541687, - 0.25510287284851074, - 0.19989603757858276, - 0.1477380245923996, - 0.10005158185958862, - 0.058137476444244385, - 0.02313902974128723, - -0.003989160060882568, - -0.022507011890411377, - -0.03190946578979492, - -0.0319400429725647, - -0.022597908973693848, - -0.004137873649597168, - 0.022936522960662842, - 0.05788668990135193, - 0.09975941479206085, - 0.14741243422031403, - 0.19954587519168854, - 0.2547377049922943, - 0.31148242950439453 - ], - "z": [ - -1.7217986583709717, - -1.7223598957061768, - -1.722460150718689, - -1.7220968008041382, - -1.7212796211242676, - -1.7200310230255127, - -1.718385100364685, - -1.7163866758346558, - -1.71409010887146, - -1.7115583419799805, - -1.7088602781295776, - -1.7060694694519043, - -1.703262209892273, - -1.700514793395996, - -1.6979024410247803, - -1.6954963207244873, - -1.6933619976043701, - -1.691557765007019, - -1.6901328563690186, - -1.6891260147094727, - -1.7217986583709717, - -1.7220937013626099, - -1.7219350337982178, - -1.7213270664215088, - -1.720286250114441, - -1.7188411951065063, - -1.7170311212539673, - -1.7149055004119873, - -1.7125223875045776, - -1.709946632385254, - -1.7072484493255615, - -1.7045016288757324, - -1.7017810344696045, - -1.6991609334945679, - -1.696712613105774, - -1.6945029497146606, - -1.6925922632217407, - -1.6910326480865479, - -1.6898666620254517, - -1.6891260147094727, - -1.7217986583709717, - -1.7217713594436646, - -1.721299171447754, - -1.7203949689865112, - -1.719083547592163, - -1.7174004316329956, - -1.715391755104065, - -1.713112235069275, - -1.710624098777771, - -1.707995057106018, - -1.7052969932556152, - -1.7026034593582153, - -1.699987769126892, - -1.6975215673446655, - -1.6952718496322632, - -1.6933002471923828, - -1.6916602849960327, - -1.690396785736084, - -1.6895443201065063, - -1.6891260147094727, - -1.7217986583709717, - -1.7214279174804688, - -1.7206215858459473, - -1.7194017171859741, - -1.7178016901016235, - -1.715865135192871, - -1.7136447429656982, - -1.7112011909484863, - -1.7086009979248047, - -1.7059153318405151, - -1.7032171487808228, - -1.700580358505249, - -1.698076605796814, - -1.6957744359970093, - -1.6937364339828491, - -1.6920183897018433, - -1.6906670331954956, - -1.6897192001342773, - -1.689200758934021, - -1.6891260147094727, - -1.7217986583709717, - -1.7211004495620728, - -1.7199755907058716, - -1.7184548377990723, - -1.716579794883728, - -1.714401364326477, - -1.7119791507720947, - -1.7093791961669922, - -1.7066724300384521, - -1.7039326429367065, - -1.7012344598770142, - -1.6986517906188965, - -1.6962547302246094, - -1.6941089630126953, - -1.6922727823257446, - -1.6907963752746582, - -1.6897201538085938, - -1.6890732049942017, - -1.688873291015625, - -1.6891260147094727, - -1.7217986583709717, - -1.7208244800567627, - -1.7194312810897827, - -1.7176569700241089, - -1.7155500650405884, - -1.7131680250167847, - -1.7105756998062134, - -1.7078440189361572, - -1.7050472497940063, - -1.7022619247436523, - -1.69956374168396, - -1.6970266103744507, - -1.6947195529937744, - -1.692705512046814, - -1.6910394430160522, - -1.689766764640808, - -1.6889221668243408, - -1.6885288953781128, - -1.6885974407196045, - -1.6891260147094727, - -1.7217986583709717, - -1.7206299304962158, - -1.7190475463867188, - -1.7170945405960083, - -1.7148241996765137, - -1.7122985124588013, - -1.7095863819122314, - -1.7067617177963257, - -1.7039016485214233, - -1.7010841369628906, - -1.6983860731124878, - -1.6958810091018677, - -1.6936372518539429, - -1.691716194152832, - -1.6901699304580688, - -1.6890408992767334, - -1.6883597373962402, - -1.6881451606750488, - -1.6884028911590576, - -1.6891260147094727, - -1.7217986583709717, - -1.7205380201339722, - -1.718865990638733, - -1.716828465461731, - -1.7144808769226074, - -1.711887240409851, - -1.7091184854507446, - -1.7062498331069946, - -1.703359842300415, - -1.7005270719528198, - -1.697829008102417, - -1.6953390836715698, - -1.6931253671646118, - -1.6912481784820557, - -1.6897586584091187, - -1.6886975765228271, - -1.688093662261963, - -1.687963604927063, - -1.6883108615875244, - -1.6891260147094727, - -1.7217986583709717, - -1.7205584049224854, - -1.7189064025878906, - -1.7168877124786377, - -1.7145572900772095, - -1.711978793144226, - -1.7092225551605225, - -1.7063636779785156, - -1.7034803628921509, - -1.7006510496139526, - -1.6979528665542603, - -1.6954597234725952, - -1.6932392120361328, - -1.6913522481918335, - -1.6898502111434937, - -1.6887738704681396, - -1.6881529092788696, - -1.6880040168762207, - -1.6883313655853271, - -1.6891260147094727, - -1.7217986583709717, - -1.7206891775131226, - -1.719164252281189, - -1.7172656059265137, - -1.7150450944900513, - -1.7125630378723145, - -1.7098873853683472, - -1.7070910930633545, - -1.7042502164840698, - -1.7014424800872803, - -1.6987444162368774, - -1.6962295770645142, - -1.6939666271209717, - -1.6920171976089478, - -1.690434455871582, - -1.689261794090271, - -1.6885309219360352, - -1.688261866569519, - -1.6884621381759644, - -1.6891260147094727, - -1.7217986583709717, - -1.7209159135818481, - -1.7196117639541626, - -1.717921495437622, - -1.7158914804458618, - -1.7135769128799438, - -1.7110410928726196, - -1.708353042602539, - -1.7055860757827759, - -1.7028157711029053, - -1.7001177072525024, - -1.6975654363632202, - -1.6952285766601562, - -1.6931707859039307, - -1.6914483308792114, - -1.6901081800460815, - -1.689186692237854, - -1.6887093782424927, - -1.68868887424469, - -1.6891260147094727, - -1.7217986583709717, - -1.7212142944335938, - -1.7202001810073853, - -1.718784213066101, - -1.717004656791687, - -1.7149103879928589, - -1.712558388710022, - -1.7100127935409546, - -1.7073431015014648, - -1.7046220302581787, - -1.7019239664077759, - -1.6993224620819092, - -1.6968883275985718, - -1.694688081741333, - -1.6927818059921265, - -1.6912213563919067, - -1.690049409866333, - -1.6892977952957153, - -1.6889872550964355, - -1.6891260147094727, - -1.7217986583709717, - -1.721551775932312, - -1.720866084098816, - -1.7197600603103638, - -1.718264102935791, - -1.716418981552124, - -1.7142750024795532, - -1.7118905782699585, - -1.7093309164047241, - -1.7066656351089478, - -1.703967571258545, - -1.701310157775879, - -1.6987661123275757, - -1.6964046955108643, - -1.6942903995513916, - -1.6924808025360107, - -1.6910253763198853, - -1.689963698387146, - -1.6893247365951538, - -1.6891260147094727, - -1.7217986583709717, - -1.7218918800354004, - -1.7215369939804077, - -1.7207435369491577, - -1.7195333242416382, - -1.7179392576217651, - -1.7160049676895142, - -1.7137829065322876, - -1.711333990097046, - -1.7087249755859375, - -1.7060267925262451, - -1.7033133506774902, - -1.7006584405899048, - -1.6981346607208252, - -1.6958106756210327, - -1.693750023841858, - -1.6920088529586792, - -1.6906346082687378, - -1.6896648406982422, - -1.6891260147094727, - -1.7217986583709717, - -1.7221977710723877, - -1.7221404314041138, - -1.7216280698776245, - -1.720674753189087, - -1.719306468963623, - -1.7175606489181519, - -1.7154847383499146, - -1.7131354808807373, - -1.7105768918991089, - -1.707878828048706, - -1.7051148414611816, - -1.7023602724075317, - -1.699690341949463, - -1.6971778869628906, - -1.6948914527893066, - -1.6928932666778564, - -1.6912380456924438, - -1.6899707317352295, - -1.6891260147094727, - -1.7217986583709717, - -1.7224361896514893, - -1.7226108312606812, - -1.7223175764083862, - -1.7215646505355835, - -1.7203724384307861, - -1.718773603439331, - -1.7168115377426147, - -1.7145400047302246, - -1.712020754814148, - -1.7093226909637451, - -1.706519365310669, - -1.703687071800232, - -1.700903296470642, - -1.6982438564300537, - -1.6957813501358032, - -1.6935828924179077, - -1.6917084455490112, - -1.690209150314331, - -1.6891260147094727, - -1.7217986583709717, - -1.7225815057754517, - -1.7228972911834717, - -1.7227375507354736, - -1.722106695175171, - -1.7210216522216797, - -1.7195122241973877, - -1.7176196575164795, - -1.7153953313827515, - -1.712900161743164, - -1.7102020978927612, - -1.7073746919631958, - -1.7044951915740967, - -1.7016420364379883, - -1.6988930702209473, - -1.696323275566101, - -1.6940028667449951, - -1.6919949054718018, - -1.6903544664382935, - -1.6891260147094727, - -1.7217986583709717, - -1.722617745399475, - -1.7229688167572021, - -1.7228424549102783, - -1.722241997718811, - -1.7211837768554688, - -1.7196967601776123, - -1.7178213596343994, - -1.7156089544296265, - -1.7131197452545166, - -1.7104216814041138, - -1.7075883150100708, - -1.7046968936920166, - -1.7018264532089233, - -1.6990551948547363, - -1.6964585781097412, - -1.6941076517105103, - -1.6920664310455322, - -1.690390706062317, - -1.6891260147094727, - -1.7217986583709717, - -1.722541093826294, - -1.7228176593780518, - -1.7226208448410034, - -1.7219560146331787, - -1.7208411693572998, - -1.7193069458007812, - -1.7173949480056763, - -1.7151576280593872, - -1.7126556634902954, - -1.7099575996398926, - -1.707136869430542, - -1.7042704820632935, - -1.7014366388320923, - -1.6987125873565674, - -1.6961725950241089, - -1.6938860416412354, - -1.6919152736663818, - -1.6903140544891357, - -1.6891260147094727, - -1.7217986583709717, - -1.7223598957061768, - -1.722460150718689, - -1.7220968008041382, - -1.7212796211242676, - -1.7200310230255127, - -1.718385100364685, - -1.7163866758346558, - -1.71409010887146, - -1.7115583419799805, - -1.7088602781295776, - -1.7060694694519043, - -1.703262209892273, - -1.700514793395996, - -1.6979024410247803, - -1.6954963207244873, - -1.6933619976043701, - -1.691557765007019, - -1.6901328563690186, - -1.6891260147094727 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.06279511004686356, - 0.0739656612277031, - 0.08483640849590302, - 0.09511083364486694, - 0.1045086607336998, - 0.11277355253696442, - 0.11968006193637848, - 0.12503980100154877, - 0.12870657444000244, - 0.130580335855484, - 0.13061000406742096, - 0.12879475951194763, - 0.12518410384655, - 0.11987655609846115, - 0.11301687359809875, - 0.10479214787483215, - 0.0954267680644989, - 0.08517618477344513, - 0.0743199959397316, - 0.06315434724092484, - 0.06279511004686356, - 0.05506438761949539, - 0.04754944145679474, - 0.04045524820685387, - 0.03397533297538757, - 0.02828644961118698, - 0.023543763905763626, - 0.01987665519118309, - 0.017385151237249374, - 0.016137219965457916, - 0.016166888177394867, - 0.017473336309194565, - 0.02002095803618431, - 0.023740246891975403, - 0.028529752045869827, - 0.03425881266593933, - 0.04077119007706642, - 0.047889214009046555, - 0.055418726056814194, - 0.06315434724092484, - 0.06279511749744415, - 0.037001125514507294, - 0.011915624141693115, - -0.011777102947235107, - -0.03343081474304199, - -0.05245480686426163, - -0.06833022087812424, - -0.08062396198511124, - -0.08900070935487747, - -0.0932319387793541, - -0.09320228546857834, - -0.08891252428293228, - -0.08047965914011002, - -0.06813373416662216, - -0.05221153050661087, - -0.03314732760190964, - -0.01146116852760315, - 0.01225540041923523, - 0.037355463951826096, - 0.06315435469150543, - 0.06279511749744415, - 0.021733306348323822, - -0.018203556537628174, - -0.05592605471611023, - -0.09040529280900955, - -0.12070069462060928, - -0.1459859311580658, - -0.16557124257087708, - -0.17892241477966309, - -0.18567532300949097, - -0.1856456696987152, - -0.1788342297077179, - -0.16542693972587585, - -0.14578944444656372, - -0.12045743316411972, - -0.0901218131184578, - -0.05561012029647827, - -0.01786378026008606, - 0.022087648510932922, - 0.06315436214208603, - 0.06279512494802475, - 0.010915432125329971, - -0.03954421728849411, - -0.08720739930868149, - -0.13077402114868164, - -0.16905567049980164, - -0.201008141040802, - -0.22575989365577698, - -0.24263566732406616, - -0.251175194978714, - -0.25114551186561584, - -0.24254745244979858, - -0.22561559081077576, - -0.20081168413162231, - -0.16881239414215088, - -0.13049057126045227, - -0.08689146488904953, - -0.039204441010951996, - 0.011269774287939072, - 0.06315436214208603, - 0.06279512494802475, - 0.005719795823097229, - -0.04979375749826431, - -0.10223127156496048, - -0.15016242861747742, - -0.19227975606918335, - -0.22743436694145203, - -0.2546674311161041, - -0.2732360363006592, - -0.28263363242149353, - -0.2826039493083954, - -0.2731478214263916, - -0.2545231282711029, - -0.22723793983459473, - -0.1920364797115326, - -0.14987897872924805, - -0.10191533714532852, - -0.0494539812207222, - 0.006074137985706329, - 0.06315436214208603, - 0.06279512494802475, - 0.006709422916173935, - -0.04784151166677475, - -0.09936965256929398, - -0.14646947383880615, - -0.18785622715950012, - -0.22240087389945984, - -0.24916136264801025, - -0.26740753650665283, - -0.27664169669151306, - -0.2766120135784149, - -0.26731932163238525, - -0.24901705980300903, - -0.22220444679260254, - -0.18761295080184937, - -0.14618602395057678, - -0.09905371814966202, - -0.047501735389232635, - 0.007063765078783035, - 0.06315436214208603, - 0.06279512494802475, - 0.013777066022157669, - -0.033899009227752686, - -0.07893260568380356, - -0.12009536474943161, - -0.15626442432403564, - -0.1864532232284546, - -0.20983830094337463, - -0.22578173875808716, - -0.23384863138198853, - -0.23381894826889038, - -0.22569352388381958, - -0.2096939980983734, - -0.18625673651695251, - -0.15602117776870728, - -0.11981188505887985, - -0.0786166712641716, - -0.03355923295021057, - 0.01413140818476677, - 0.06315436214208603, - 0.06279511749744415, - 0.026156838983297348, - -0.009477145969867706, - -0.043134815990924835, - -0.07389811426401138, - -0.10092788189649582, - -0.12348677963018417, - -0.14095953106880188, - -0.15286949276924133, - -0.1588917374610901, - -0.15886208415031433, - -0.15278130769729614, - -0.14081522822380066, - -0.12329030781984329, - -0.10068459063768387, - -0.07361464947462082, - -0.04281888157129288, - -0.009137369692325592, - 0.02651118114590645, - 0.06315435469150543, - 0.06279511749744415, - 0.04250720515847206, - 0.022777598351240158, - 0.004144459962844849, - -0.012883946299552917, - -0.027843110263347626, - -0.040325015783309937, - -0.04998917132616043, - -0.05657195299863815, - -0.05989382416009903, - -0.05986415594816208, - -0.05648376792669296, - -0.04984486848115921, - -0.04012852907180786, - -0.027599819004535675, - -0.012600459158420563, - 0.0044604018330574036, - 0.023117374628782272, - 0.04286154359579086, - 0.06315435469150543, - 0.06279511004686356, - 0.06105634570121765, - 0.05936991050839424, - 0.057781804352998734, - 0.05633534863591194, - 0.05506999045610428, - 0.05402025952935219, - 0.05321478471159935, - 0.052675534039735794, - 0.05241721123456955, - 0.0524468794465065, - 0.05276372283697128, - 0.05335908755660057, - 0.054216742515563965, - 0.05531330034136772, - 0.056618835777044296, - 0.05809774622321129, - 0.05970968306064606, - 0.06141068413853645, - 0.06315434724092484, - 0.06279510259628296, - 0.07979416847229004, - 0.09633444994688034, - 0.11196476221084595, - 0.1262587308883667, - 0.13882651925086975, - 0.14932523667812347, - 0.15746855735778809, - 0.1630343198776245, - 0.16587071120738983, - 0.16590037941932678, - 0.1631225049495697, - 0.1576128602027893, - 0.14952170848846436, - 0.1390698254108429, - 0.12654224038124084, - 0.1122806966304779, - 0.09667422622442245, - 0.08014851063489914, - 0.06315433979034424, - 0.06279510259628296, - 0.09669014811515808, - 0.1296655237674713, - 0.16082176566123962, - 0.18930897116661072, - 0.21435010433197021, - 0.23526212573051453, - 0.25147464871406555, - 0.26254531741142273, - 0.2681722342967987, - 0.26820188760757446, - 0.2626335024833679, - 0.2516189515590668, - 0.235458642244339, - 0.21459344029426575, - 0.18959248065948486, - 0.16113770008087158, - 0.13000530004501343, - 0.09704449027776718, - 0.06315433979034424, - 0.06279509514570236, - 0.10991334915161133, - 0.15575122833251953, - 0.1990584433078766, - 0.23865360021591187, - 0.27345672249794006, - 0.30251842737197876, - 0.3250460624694824, - 0.3404249846935272, - 0.3482358157634735, - 0.34826549887657166, - 0.3405131995677948, - 0.32519036531448364, - 0.3027149438858032, - 0.2737000584602356, - 0.238937109708786, - 0.19937437772750854, - 0.15609100461006165, - 0.11026769876480103, - 0.06315433233976364, - 0.06279509514570236, - 0.11803080886602402, - 0.17176473140716553, - 0.22253113985061646, - 0.2689453065395355, - 0.3097410798072815, - 0.3438057601451874, - 0.37021008133888245, - 0.3882337808609009, - 0.39738526940345764, - 0.3974149525165558, - 0.38832199573516846, - 0.37035438418388367, - 0.34400224685668945, - 0.309984415769577, - 0.26922881603240967, - 0.2228470742702484, - 0.17210450768470764, - 0.11838515102863312, - 0.06315433233976364, - 0.06279509514570236, - 0.12016290426254272, - 0.17597076296806335, - 0.22869637608528137, - 0.2769015431404114, - 0.3192713260650635, - 0.35465002059936523, - 0.3820725977420807, - 0.4007909595966339, - 0.4102945923805237, - 0.4103242754936218, - 0.4008791744709015, - 0.3822169005870819, - 0.3548465073108673, - 0.319514662027359, - 0.2771850526332855, - 0.22901231050491333, - 0.17631053924560547, - 0.12051723897457123, - 0.06315433233976364, - 0.06279509514570236, - 0.11607855558395386, - 0.1679134964942932, - 0.21688595414161682, - 0.2616601586341858, - 0.3010146915912628, - 0.3338761329650879, - 0.3593480885028839, - 0.37673571705818176, - 0.3855648338794708, - 0.38559451699256897, - 0.37682393193244934, - 0.35949239134788513, - 0.33407261967658997, - 0.30125802755355835, - 0.26194363832473755, - 0.21720188856124878, - 0.16825327277183533, - 0.11643289774656296, - 0.06315433233976364, - 0.06279509514570236, - 0.10622038692235947, - 0.1484660506248474, - 0.18837973475456238, - 0.22487270832061768, - 0.2569494843482971, - 0.28373515605926514, - 0.304499089717865, - 0.31867483258247375, - 0.32587575912475586, - 0.325905442237854, - 0.31876304745674133, - 0.3046433925628662, - 0.2839316725730896, - 0.25719282031059265, - 0.22515618801116943, - 0.18869566917419434, - 0.14880582690238953, - 0.10657472908496857, - 0.06315433979034424, - 0.06279510259628296, - 0.09165667742490768, - 0.11973587423563004, - 0.14626678824424744, - 0.1705256998538971, - 0.19185090065002441, - 0.20966070890426636, - 0.2234693169593811, - 0.23290002346038818, - 0.2376956343650818, - 0.23772528767585754, - 0.23298820853233337, - 0.22361361980438232, - 0.20985719561576843, - 0.19209423661231995, - 0.17080920934677124, - 0.1465827226638794, - 0.12007565051317215, - 0.09201101213693619, - 0.06315433979034424, - 0.06279511004686356, - 0.0739656537771225, - 0.08483639359474182, - 0.09511080384254456, - 0.10450862348079681, - 0.11277350783348083, - 0.1196800172328949, - 0.12503975629806519, - 0.12870651483535767, - 0.13058027625083923, - 0.13060994446277618, - 0.12879469990730286, - 0.1251840591430664, - 0.11987650394439697, - 0.11301682889461517, - 0.10479211807250977, - 0.09542673826217651, - 0.08517616242170334, - 0.074319988489151, - 0.06315434724092484 - ], - "y": [ - 0.29782018065452576, - 0.24063026905059814, - 0.18499666452407837, - 0.1324368715286255, - 0.08438462018966675, - 0.042150676250457764, - 0.006886988878250122, - -0.020444482564926147, - -0.03909823298454285, - -0.048565417528152466, - -0.04858776926994324, - -0.03916475176811218, - -0.02055332064628601, - 0.006738781929016113, - 0.04196709394454956, - 0.08417080342769623, - 0.13219860196113586, - 0.18474039435386658, - 0.24036303162574768, - 0.2975492477416992, - 0.29782018065452576, - 0.24015328288078308, - 0.18405571579933167, - 0.13105762004852295, - 0.08260469138622284, - 0.04001858830451965, - 0.004460930824279785, - -0.02309831976890564, - -0.04190745949745178, - -0.05145341157913208, - -0.05147576332092285, - -0.04197397828102112, - -0.023207157850265503, - 0.004312723875045776, - 0.039835065603256226, - 0.08239088952541351, - 0.13081935048103333, - 0.18379944562911987, - 0.23988604545593262, - 0.2975492477416992, - 0.29782018065452576, - 0.24592521786689758, - 0.1954421103000641, - 0.1477479189634323, - 0.10414358973503113, - 0.06581859290599823, - 0.03381827473640442, - 0.009015560150146484, - -0.007913023233413696, - -0.016505718231201172, - -0.016528069972991943, - -0.007979542016983032, - 0.008906722068786621, - 0.03367006778717041, - 0.0656350702047348, - 0.10392977297306061, - 0.1475096493959427, - 0.1951858401298523, - 0.24565798044204712, - 0.2975492477416992, - 0.29782018065452576, - 0.2573205530643463, - 0.21792195737361908, - 0.18069908022880554, - 0.1466672569513321, - 0.11675481498241425, - 0.09177766740322113, - 0.07241709530353546, - 0.05920127034187317, - 0.05249065160751343, - 0.05246827006340027, - 0.05913475155830383, - 0.0723082572221756, - 0.09162947535514832, - 0.11657127737998962, - 0.14645344018936157, - 0.18046081066131592, - 0.21766570210456848, - 0.25705331563949585, - 0.2975492477416992, - 0.29782018065452576, - 0.2731044590473175, - 0.24905923008918762, - 0.2263403832912445, - 0.2055675983428955, - 0.18730756640434265, - 0.17205829918384552, - 0.16023580729961395, - 0.152162566781044, - 0.14805878698825836, - 0.1480364054441452, - 0.15209604799747467, - 0.1601269692182541, - 0.1719101220369339, - 0.18712404370307922, - 0.20535379648208618, - 0.22610211372375488, - 0.24880297482013702, - 0.27283722162246704, - 0.2975492477416992, - 0.29782018065452576, - 0.29156649112701416, - 0.28547969460487366, - 0.2797258496284485, - 0.2744618356227875, - 0.2698312997817993, - 0.26596054434776306, - 0.2629551291465759, - 0.26089704036712646, - 0.2598424255847931, - 0.25982004404067993, - 0.26083052158355713, - 0.26284629106521606, - 0.26581233739852905, - 0.2696478068828583, - 0.27424803376197815, - 0.2794875502586365, - 0.28522345423698425, - 0.2912992537021637, - 0.2975492477416992, - 0.29782015085220337, - 0.3107060194015503, - 0.3232366740703583, - 0.33507034182548523, - 0.34588420391082764, - 0.35538333654403687, - 0.3633086085319519, - 0.3694438338279724, - 0.3736216425895691, - 0.3757280707359314, - 0.37570568919181824, - 0.37355512380599976, - 0.36933499574661255, - 0.3631604313850403, - 0.3551998734474182, - 0.3456704318523407, - 0.3348320722579956, - 0.3229804039001465, - 0.31043878197669983, - 0.29754921793937683, - 0.29782015085220337, - 0.32844895124435425, - 0.35823854804039, - 0.38637644052505493, - 0.41209501028060913, - 0.4346928000450134, - 0.45355334877967834, - 0.4681622087955475, - 0.47812092304229736, - 0.4831577241420746, - 0.4831353425979614, - 0.478054404258728, - 0.4680533707141876, - 0.4534051716327667, - 0.4345093071460724, - 0.4118812382221222, - 0.3861381411552429, - 0.3579823076725006, - 0.3281817138195038, - 0.29754921793937683, - 0.29782015085220337, - 0.3428725600242615, - 0.3866924047470093, - 0.4280843138694763, - 0.46591928601264954, - 0.49916520714759827, - 0.5269153118133545, - 0.548412561416626, - 0.5630706548690796, - 0.5704897046089172, - 0.5704673528671265, - 0.5630041360855103, - 0.5483037233352661, - 0.5267671346664429, - 0.4989817440509796, - 0.4657054841518402, - 0.4278460144996643, - 0.3864361345767975, - 0.3426053524017334, - 0.29754921793937683, - 0.29782015085220337, - 0.3524138927459717, - 0.40551474690437317, - 0.45567426085472107, - 0.5015242695808411, - 0.5418140292167664, - 0.5754445791244507, - 0.6014986634254456, - 0.6192654371261597, - 0.6282602548599243, - 0.6282379031181335, - 0.6191989183425903, - 0.6013898253440857, - 0.5752964615821838, - 0.5416305661201477, - 0.5013104677200317, - 0.45543599128723145, - 0.4052584767341614, - 0.3521466553211212, - 0.29754921793937683, - 0.29782015085220337, - 0.356038898229599, - 0.4126659035682678, - 0.466156542301178, - 0.5150516629219055, - 0.5580176115036011, - 0.5938823223114014, - 0.6216676235198975, - 0.6406154632568359, - 0.6502090096473694, - 0.6501866579055786, - 0.6405489444732666, - 0.6215587854385376, - 0.5937342047691345, - 0.5578341484069824, - 0.514837920665741, - 0.46591824293136597, - 0.4124096632003784, - 0.35577166080474854, - 0.29754921793937683, - 0.29782015085220337, - 0.3533548414707184, - 0.40737098455429077, - 0.4583951532840729, - 0.5050356388092041, - 0.5460200309753418, - 0.5802304744720459, - 0.6067339181900024, - 0.6248072385787964, - 0.6339575052261353, - 0.6339350938796997, - 0.624740719795227, - 0.6066250801086426, - 0.580082356929779, - 0.5458365678787231, - 0.50482177734375, - 0.45815688371658325, - 0.407114714384079, - 0.3530876040458679, - 0.29754921793937683, - 0.29782015085220337, - 0.3446525037288666, - 0.39020371437072754, - 0.4332312345504761, - 0.47256141901016235, - 0.5071213841438293, - 0.5359684824943542, - 0.5583158731460571, - 0.5735538601875305, - 0.5812668204307556, - 0.5812444686889648, - 0.5734873414039612, - 0.5582070350646973, - 0.5358203053474426, - 0.5069379210472107, - 0.472347617149353, - 0.43299296498298645, - 0.38994747400283813, - 0.3443852663040161, - 0.29754921793937683, - 0.29782015085220337, - 0.3308749794960022, - 0.36302444338798523, - 0.39339160919189453, - 0.4211481511592865, - 0.44553691148757935, - 0.4658926725387573, - 0.4816601574420929, - 0.49240925908088684, - 0.497846782207489, - 0.49782443046569824, - 0.4923427402973175, - 0.48155131936073303, - 0.4657444953918457, - 0.4453534483909607, - 0.4209343492984772, - 0.3931533396244049, - 0.36276817321777344, - 0.33060774207115173, - 0.29754921793937683, - 0.29782015085220337, - 0.31351524591445923, - 0.3287785053253174, - 0.3431936204433441, - 0.3563673794269562, - 0.36794042587280273, - 0.37759706377983093, - 0.3850739002227783, - 0.3901669979095459, - 0.39273741841316223, - 0.3927150368690491, - 0.39010047912597656, - 0.38496506214141846, - 0.3774488866329193, - 0.3677569329738617, - 0.35615357756614685, - 0.3429553508758545, - 0.328522264957428, - 0.31324800848960876, - 0.29754921793937683, - 0.29782015085220337, - 0.29445451498031616, - 0.29117700457572937, - 0.2880769670009613, - 0.285239040851593, - 0.2827405631542206, - 0.28064972162246704, - 0.27902358770370483, - 0.2779064476490021, - 0.27732884883880615, - 0.277306467294693, - 0.2778399586677551, - 0.27891474962234497, - 0.2805015444755554, - 0.28255707025527954, - 0.2850252091884613, - 0.2878386974334717, - 0.2909207344055176, - 0.2941872775554657, - 0.2975492477416992, - 0.29782018065452576, - 0.275758296251297, - 0.2542945146560669, - 0.23401428759098053, - 0.2154708355665207, - 0.19916996359825134, - 0.1855563223361969, - 0.17500123381614685, - 0.1677926480770111, - 0.1641271859407425, - 0.16410480439662933, - 0.16772612929344177, - 0.174892395734787, - 0.1854081153869629, - 0.1989864706993103, - 0.21525701880455017, - 0.2337760180234909, - 0.2540382444858551, - 0.27549105882644653, - 0.2975492477416992, - 0.29782018065452576, - 0.25945261120796204, - 0.22212791442871094, - 0.1868641972541809, - 0.1546233892440796, - 0.12628492712974548, - 0.10262179374694824, - 0.08427947759628296, - 0.07175825536251068, - 0.06539979577064514, - 0.06537741422653198, - 0.07169173657894135, - 0.0841706395149231, - 0.10247361660003662, - 0.12610138952732086, - 0.15440958738327026, - 0.18662592768669128, - 0.22187165915966034, - 0.2591853737831116, - 0.2975492477416992, - 0.29782018065452576, - 0.24730443954467773, - 0.1981629729270935, - 0.15173617005348206, - 0.1092904657125473, - 0.07198368012905121, - 0.04083344340324402, - 0.01668936014175415, - 0.00021016597747802734, - -0.008154690265655518, - -0.008177042007446289, - 0.0001436471939086914, - 0.016580522060394287, - 0.04068523645401001, - 0.07180014252662659, - 0.10907664895057678, - 0.15149790048599243, - 0.1979067027568817, - 0.24703720211982727, - 0.2975492477416992, - 0.29782018065452576, - 0.24063026905059814, - 0.18499664962291718, - 0.1324368715286255, - 0.08438462018966675, - 0.042150676250457764, - 0.006886959075927734, - -0.020444512367248535, - -0.03909823298454285, - -0.048565417528152466, - -0.04858776926994324, - -0.03916475176811218, - -0.0205533504486084, - 0.006738752126693726, - 0.04196709394454956, - 0.08417080342769623, - 0.13219860196113586, - 0.18474039435386658, - 0.24036303162574768, - 0.2975492477416992 - ], - "z": [ - -1.7447535991668701, - -1.7452844381332397, - -1.745429515838623, - -1.7451847791671753, - -1.7445570230484009, - -1.7435632944107056, - -1.742230772972107, - -1.7405956983566284, - -1.7387027740478516, - -1.7366036176681519, - -1.7343554496765137, - -1.7320195436477661, - -1.7296597957611084, - -1.7273403406143188, - -1.7251245975494385, - -1.7230730056762695, - -1.7212414741516113, - -1.7196800708770752, - -1.7184312343597412, - -1.717529058456421, - -1.7447535991668701, - -1.7450398206710815, - -1.744946837425232, - -1.7444772720336914, - -1.7436439990997314, - -1.7424696683883667, - -1.7409863471984863, - -1.739234447479248, - -1.7372618913650513, - -1.7351222038269043, - -1.7328740358352661, - -1.7305786609649658, - -1.728298544883728, - -1.7260959148406982, - -1.7240309715270996, - -1.7221601009368896, - -1.720534086227417, - -1.719197392463684, - -1.7181864976882935, - -1.717529058456421, - -1.7447535991668701, - -1.7447439432144165, - -1.7443633079528809, - -1.7436219453811646, - -1.7425402402877808, - -1.741147518157959, - -1.7394819259643555, - -1.7375887632369995, - -1.7355197668075562, - -1.733331322669983, - -1.7310831546783447, - -1.7288365364074707, - -1.72665274143219, - -1.7245914936065674, - -1.722708821296692, - -1.7210562229156494, - -1.7196787595748901, - -1.718613862991333, - -1.717890739440918, - -1.717529058456421, - -1.7447535991668701, - -1.744429111480713, - -1.7437422275543213, - -1.7427115440368652, - -1.7413651943206787, - -1.7397401332855225, - -1.7378803491592407, - -1.7358368635177612, - -1.7336652278900146, - -1.7314248085021973, - -1.729176640510559, - -1.7269819974899292, - -1.7249009609222412, - -1.7229900360107422, - -1.7213014364242554, - -1.719881296157837, - -1.7187682390213013, - -1.7179927825927734, - -1.7175759077072144, - -1.717529058456421, - -1.7447535991668701, - -1.7441293001174927, - -1.7431507110595703, - -1.7418445348739624, - -1.7402464151382446, - -1.738399863243103, - -1.7363554239273071, - -1.7341687679290771, - -1.731899380683899, - -1.729609489440918, - -1.7273613214492798, - -1.7252161502838135, - -1.7232327461242676, - -1.721464991569519, - -1.7199612855911255, - -1.7187623977661133, - -1.7179012298583984, - -1.7174012660980225, - -1.7172760963439941, - -1.717529058456421, - -1.7447535991668701, - -1.7438770532608032, - -1.7426530122756958, - -1.7411149740219116, - -1.7393049001693726, - -1.7372721433639526, - -1.7350722551345825, - -1.7327650785446167, - -1.730413556098938, - -1.7280819416046143, - -1.7258336544036865, - -1.7237303256988525, - -1.7218290567398071, - -1.7201818227767944, - -1.718833565711975, - -1.7178210020065308, - -1.7171716690063477, - -1.716903567314148, - -1.7170237302780151, - -1.717529058456421, - -1.7447535991668701, - -1.743699550628662, - -1.7423030138015747, - -1.7406020164489746, - -1.738642930984497, - -1.7364791631698608, - -1.734169840812683, - -1.7317779064178467, - -1.7293686866760254, - -1.7270077466964722, - -1.7247594594955444, - -1.72268545627594, - -1.7208420038223267, - -1.719279408454895, - -1.7180404663085938, - -1.7171589136123657, - -1.7166587114334106, - -1.7165535688400269, - -1.7168463468551636, - -1.717529058456421, - -1.7447535991668701, - -1.7436162233352661, - -1.7421386241912842, - -1.7403610944747925, - -1.7383320331573486, - -1.7361067533493042, - -1.73374605178833, - -1.7313144207000732, - -1.7288779020309448, - -1.7265032529830933, - -1.724255084991455, - -1.7221946716308594, - -1.7203783988952637, - -1.7188557386398315, - -1.717668056488037, - -1.7168480157852173, - -1.7164177894592285, - -1.7163891792297363, - -1.7167630195617676, - -1.717529058456421, - -1.7447535991668701, - -1.743636131286621, - -1.7421777248382568, - -1.7404183149337769, - -1.7384059429168701, - -1.7361953258514404, - -1.73384690284729, - -1.7314245700836182, - -1.728994607925415, - -1.7266231775283813, - -1.7243750095367432, - -1.7223113775253296, - -1.7204886674880981, - -1.718956470489502, - -1.7177566289901733, - -1.7169219255447388, - -1.7164751291275024, - -1.716428279876709, - -1.716782808303833, - -1.717529058456421, - -1.7447535991668701, - -1.743756890296936, - -1.7424160242080688, - -1.7407677173614502, - -1.7388566732406616, - -1.7367353439331055, - -1.7344613075256348, - -1.7320966720581055, - -1.729706048965454, - -1.727354645729065, - -1.7251064777374268, - -1.7230228185653687, - -1.7211607694625854, - -1.7195708751678467, - -1.7182966470718384, - -1.7173726558685303, - -1.7168244123458862, - -1.716666579246521, - -1.7169036865234375, - -1.717529058456421, - -1.7447535991668701, - -1.7439656257629395, - -1.7428277730941772, - -1.7413711547851562, - -1.7396354675292969, - -1.7376681566238403, - -1.735522747039795, - -1.73325777053833, - -1.7309352159500122, - -1.7286181449890137, - -1.7263699769973755, - -1.7242519855499268, - -1.72232186794281, - -1.7206323146820068, - -1.7192294597625732, - -1.7181514501571655, - -1.7174278497695923, - -1.7170783281326294, - -1.7171123027801514, - -1.717529058456421, - -1.7447535991668701, - -1.7442395687103271, - -1.743368148803711, - -1.7421633005142212, - -1.7406578063964844, - -1.738892674446106, - -1.736916184425354, - -1.734782099723816, - -1.732548713684082, - -1.7302769422531128, - -1.7280287742614746, - -1.7258654832839966, - -1.7238460779190063, - -1.722025752067566, - -1.7204539775848389, - -1.719173789024353, - -1.7182199954986572, - -1.717618703842163, - -1.717386245727539, - -1.717529058456421, - -1.7447535991668701, - -1.744549036026001, - -1.7439788579940796, - -1.743058443069458, - -1.7418129444122314, - -1.7402763366699219, - -1.7384905815124512, - -1.7365044355392456, - -1.7343719005584717, - -1.7321512699127197, - -1.7299031019210815, - -1.7276886701583862, - -1.725568413734436, - -1.723600149154663, - -1.7218376398086548, - -1.7203289270401, - -1.719115138053894, - -1.7182294130325317, - -1.7176958322525024, - -1.717529058456421, - -1.7447535991668701, - -1.7448606491088867, - -1.7445935010910034, - -1.7439594268798828, - -1.7429757118225098, - -1.7416691780090332, - -1.7400754690170288, - -1.7382380962371826, - -1.7362070083618164, - -1.7340378761291504, - -1.7317897081375122, - -1.729523777961731, - -1.727302074432373, - -1.7251850366592407, - -1.7232304811477661, - -1.7214916944503784, - -1.7200162410736084, - -1.7188440561294556, - -1.7180074453353882, - -1.717529058456421, - -1.7447535991668701, - -1.745140552520752, - -1.7451456785202026, - -1.744768738746643, - -1.7440201044082642, - -1.742920160293579, - -1.7414989471435547, - -1.739795207977295, - -1.7378554344177246, - -1.7357324361801147, - -1.7334842681884766, - -1.7311722040176392, - -1.7288591861724854, - -1.7266085147857666, - -1.724481463432312, - -1.7225360870361328, - -1.720825433731079, - -1.7193962335586548, - -1.7182873487472534, - -1.717529058456421, - -1.7447535991668701, - -1.7453583478927612, - -1.7455753087997437, - -1.7453986406326294, - -1.744832992553711, - -1.7438938617706299, - -1.7426068782806396, - -1.7410070896148682, - -1.7391382455825806, - -1.7370513677597046, - -1.7348030805587769, - -1.7324550151824951, - -1.7300711870193481, - -1.7277164459228516, - -1.7254551649093628, - -1.7233489751815796, - -1.7214553356170654, - -1.7198258638381958, - -1.7185051441192627, - -1.717529058456421, - -1.7447535991668701, - -1.745490550994873, - -1.7458361387252808, - -1.7457808256149292, - -1.7453261613845825, - -1.7444846630096436, - -1.7432790994644165, - -1.741742491722107, - -1.7399166822433472, - -1.737851619720459, - -1.7356033325195312, - -1.7332334518432617, - -1.7308064699172974, - -1.7283886671066284, - -1.7260459661483765, - -1.7238421440124512, - -1.7218375205993652, - -1.720086693763733, - -1.7186373472213745, - -1.717529058456421, - -1.7447535991668701, - -1.7455227375030518, - -1.7458995580673218, - -1.7458738088607788, - -1.7454463243484497, - -1.7446285486221313, - -1.7434427738189697, - -1.7419215440750122, - -1.7401063442230225, - -1.738046407699585, - -1.7357982397079468, - -1.733423113822937, - -1.7309856414794922, - -1.7285523414611816, - -1.7261898517608643, - -1.7239623069763184, - -1.7219306230545044, - -1.720150113105774, - -1.7186695337295532, - -1.717529058456421, - -1.7447535991668701, - -1.7454514503479004, - -1.7457590103149414, - -1.745667815208435, - -1.7451802492141724, - -1.744309902191162, - -1.7430802583694458, - -1.7415250539779663, - -1.7396864891052246, - -1.7376148700714111, - -1.735366702079773, - -1.7330032587051392, - -1.7305890321731567, - -1.7281898260116577, - -1.725871205329895, - -1.7236963510513306, - -1.721724510192871, - -1.7200095653533936, - -1.7185982465744019, - -1.717529058456421, - -1.7447535991668701, - -1.7452844381332397, - -1.745429515838623, - -1.7451847791671753, - -1.7445570230484009, - -1.7435632944107056, - -1.742230772972107, - -1.7405956983566284, - -1.7387027740478516, - -1.7366036176681519, - -1.7343554496765137, - -1.7320195436477661, - -1.7296597957611084, - -1.7273403406143188, - -1.7251245975494385, - -1.7230730056762695, - -1.7212414741516113, - -1.7196800708770752, - -1.7184312343597412, - -1.717529058456421 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.04540667682886124, - 0.05779077485203743, - 0.06984090059995651, - 0.0812283605337143, - 0.09164252877235413, - 0.1007993221282959, - 0.10844900459051132, - 0.11438288539648056, - 0.11843910813331604, - 0.12050702422857285, - 0.12053024023771286, - 0.11850811541080475, - 0.11449580639600754, - 0.10860275477170944, - 0.10098972916603088, - 0.09186435490846634, - 0.08147557079792023, - 0.07010676711797714, - 0.05806804075837135, - 0.045687779784202576, - 0.045406684279441833, - 0.038704514503479004, - 0.03218899667263031, - 0.026037849485874176, - 0.020418882369995117, - 0.01548534445464611, - 0.011371813714504242, - 0.008190497756004333, - 0.006028171628713608, - 0.004943840205669403, - 0.004967056214809418, - 0.006097178906202316, - 0.008303411304950714, - 0.011525556445121765, - 0.01567571796476841, - 0.020640701055526733, - 0.026285070925951004, - 0.03245486691594124, - 0.03898178040981293, - 0.045687783509492874, - 0.04540668800473213, - 0.020344745367765427, - -0.004029739648103714, - -0.0270518958568573, - -0.04809374362230301, - -0.06658128648996353, - -0.08201025426387787, - -0.09395982325077057, - -0.10210397839546204, - -0.10622058808803558, - -0.10619737207889557, - -0.10203498601913452, - -0.09384690225124359, - -0.08185653388500214, - -0.06639093160629272, - -0.0478719025850296, - -0.026804670691490173, - -0.003763873130083084, - 0.02062201127409935, - 0.04568778723478317, - 0.04540669173002243, - 0.0047010332345962524, - -0.03489045053720474, - -0.07228779792785645, - -0.10647092759609222, - -0.13650737702846527, - -0.16157785058021545, - -0.18099850416183472, - -0.19423958659172058, - -0.20093990862369537, - -0.20091669261455536, - -0.19417059421539307, - -0.18088558316230774, - -0.16142411530017853, - -0.13631701469421387, - -0.10624910891056061, - -0.07204057276248932, - -0.03462458401918411, - 0.004978299140930176, - 0.04568779468536377, - 0.04540669545531273, - -0.006531383842229843, - -0.057048894464969635, - -0.10476784408092499, - -0.14838659763336182, - -0.18671534955501556, - -0.21870853006839752, - -0.24349357187747955, - -0.2603943347930908, - -0.2689497470855713, - -0.26892656087875366, - -0.2603253126144409, - -0.24338068068027496, - -0.21855483949184418, - -0.18652497231960297, - -0.1481648087501526, - -0.10452063381671906, - -0.056783027946949005, - -0.00625411793589592, - 0.04568779468536377, - 0.04540669545531273, - -0.01213528960943222, - -0.0681038498878479, - -0.12097232043743134, - -0.16929854452610016, - -0.2117643505334854, - -0.24721135199069977, - -0.27467262744903564, - -0.29339927434921265, - -0.3028802275657654, - -0.30285704135894775, - -0.29333025217056274, - -0.27455973625183105, - -0.24705766141414642, - -0.2115740031003952, - -0.16907675564289093, - -0.1207251101732254, - -0.06783798336982727, - -0.011858023703098297, - 0.04568779841065407, - 0.04540669545531273, - -0.011503428220748901, - -0.06685737520456314, - -0.11914519965648651, - -0.16694065928459167, - -0.20893998444080353, - -0.24399755895137787, - -0.2711571455001831, - -0.28967785835266113, - -0.2990543842315674, - -0.29903119802474976, - -0.28960883617401123, - -0.2710442543029785, - -0.24384383857250214, - -0.20874963700771332, - -0.16671885550022125, - -0.11889798939228058, - -0.06659150868654251, - -0.011226162314414978, - 0.04568779841065407, - 0.04540669545531273, - -0.004704270511865616, - -0.053444504737854004, - -0.09948450326919556, - -0.14156842231750488, - -0.17854827642440796, - -0.20941542088985443, - -0.23332785069942474, - -0.249633327126503, - -0.25788700580596924, - -0.2578638195991516, - -0.2495643049478531, - -0.23321495950222015, - -0.2092617303133011, - -0.17835794389247894, - -0.14134661853313446, - -0.09923729300498962, - -0.053178638219833374, - -0.0044270046055316925, - 0.04568779468536377, - 0.04540669173002243, - 0.007525403052568436, - -0.029318757355213165, - -0.06412075459957123, - -0.09593130648136139, - -0.12388269603252411, - -0.1472124606370926, - -0.16528427600860596, - -0.17760513722896576, - -0.18383899331092834, - -0.18381577730178833, - -0.17753614485263824, - -0.16517135500907898, - -0.14705874025821686, - -0.1236923485994339, - -0.09570950269699097, - -0.0638735294342041, - -0.029052890837192535, - 0.007802668958902359, - 0.04568779096007347, - 0.04540668800473213, - 0.023860299959778786, - 0.0029054805636405945, - -0.016886189579963684, - -0.0349748432636261, - -0.05086704343557358, - -0.06412933021783829, - -0.07439994066953659, - -0.08139868080615997, - -0.08493468165397644, - -0.08491146564483643, - -0.08132968842983246, - -0.07428701967000961, - -0.06397558748722076, - -0.050676681101322174, - -0.034753017127513885, - -0.016638971865177155, - 0.0031713470816612244, - 0.02413756586611271, - 0.04568778723478317, - 0.045406684279441833, - 0.04253029450774193, - 0.03973620384931564, - 0.037100620567798615, - 0.03469543904066086, - 0.03258626535534859, - 0.030830634757876396, - 0.029476428404450417, - 0.028560595586895943, - 0.02810811810195446, - 0.028131330385804176, - 0.02862960286438465, - 0.029589345678687096, - 0.03098437935113907, - 0.03277664631605148, - 0.03491726517677307, - 0.037347838282585144, - 0.04000207036733627, - 0.04280756041407585, - 0.045687783509492874, - 0.04540667682886124, - 0.06151219829916954, - 0.07718223333358765, - 0.09198934584856033, - 0.10552965104579926, - 0.11743378639221191, - 0.12737703323364258, - 0.13508819043636322, - 0.1403568983078003, - 0.14303946495056152, - 0.14306268095970154, - 0.140425905585289, - 0.1352011114358902, - 0.1275307834148407, - 0.11762417107820511, - 0.10575147718191147, - 0.09223656356334686, - 0.07744809985160828, - 0.061789464205503464, - 0.04568777605891228, - 0.04540667310357094, - 0.07874903082847595, - 0.111185722053051, - 0.14183196425437927, - 0.16985180974006653, - 0.19448095560073853, - 0.21504756808280945, - 0.2309906780719757, - 0.24187538027763367, - 0.24740472435951233, - 0.24742794036865234, - 0.24194437265396118, - 0.23110359907150269, - 0.21520133316516876, - 0.1946713626384735, - 0.17007365822792053, - 0.1420791745185852, - 0.11145158857107162, - 0.07902629673480988, - 0.04568777233362198, - 0.04540666937828064, - 0.09237290918827057, - 0.13806186616420746, - 0.18122728168964386, - 0.22069166600704193, - 0.2553785741329193, - 0.28434181213378906, - 0.3067914843559265, - 0.32211488485336304, - 0.32989436388015747, - 0.3299175500869751, - 0.32218390703201294, - 0.3069043755531311, - 0.28449559211730957, - 0.2555689811706543, - 0.22091349959373474, - 0.1814744919538498, - 0.1383277326822281, - 0.09265017509460449, - 0.04568776860833168, - 0.04540666565299034, - 0.10090745985507965, - 0.15489818155765533, - 0.20590610802173615, - 0.25253981351852417, - 0.29352736473083496, - 0.32775062322616577, - 0.3542761206626892, - 0.37238025665283203, - 0.3815693259239197, - 0.3815925121307373, - 0.37244927883148193, - 0.3543890118598938, - 0.3279043436050415, - 0.29371774196624756, - 0.2527616620063782, - 0.20615331828594208, - 0.15516404807567596, - 0.10118472576141357, - 0.04568776860833168, - 0.04540666565299034, - 0.10342787206172943, - 0.15987025201320648, - 0.21319419145584106, - 0.26194512844085693, - 0.3047933578491211, - 0.34056997299194336, - 0.36829912662506104, - 0.3872244954109192, - 0.3968297839164734, - 0.396852970123291, - 0.3872935175895691, - 0.3684120178222656, - 0.3407236933708191, - 0.3049837350845337, - 0.26216697692871094, - 0.213441401720047, - 0.1601361185312271, - 0.10370513796806335, - 0.04568776488304138, - 0.04540666937828064, - 0.0996609777212143, - 0.1524392068386078, - 0.20230171084403992, - 0.24788837134838104, - 0.287955641746521, - 0.3214107155799866, - 0.3473408818244934, - 0.3650389313697815, - 0.37402212619781494, - 0.37404531240463257, - 0.3651079535484314, - 0.347453773021698, - 0.3215644359588623, - 0.28814607858657837, - 0.24811019003391266, - 0.20254892110824585, - 0.15270507335662842, - 0.09993824362754822, - 0.04568776860833168, - 0.04540666937828064, - 0.0900150015950203, - 0.13341036438941956, - 0.17440904676914215, - 0.2118927538394928, - 0.2448389232158661, - 0.27234894037246704, - 0.29367244243621826, - 0.3082277178764343, - 0.31561779975891113, - 0.31564098596572876, - 0.30829674005508423, - 0.2937853932380676, - 0.27250272035598755, - 0.24502934515476227, - 0.21211457252502441, - 0.17465625703334808, - 0.13367623090744019, - 0.09029226750135422, - 0.04568776860833168, - 0.04540667310357094, - 0.07553521543741226, - 0.10484576225280762, - 0.1325387954711914, - 0.1578589379787445, - 0.1801154911518097, - 0.1987013816833496, - 0.21310964226722717, - 0.22294722497463226, - 0.22794578969478607, - 0.2279690057039261, - 0.22301621735095978, - 0.21322256326675415, - 0.19885513186454773, - 0.18030588328838348, - 0.15808075666427612, - 0.13278600573539734, - 0.10511162877082825, - 0.07581248134374619, - 0.04568777233362198, - 0.04540667682886124, - 0.057790763676166534, - 0.06984087824821472, - 0.0812283307313919, - 0.09164248406887054, - 0.10079927742481232, - 0.10844895243644714, - 0.11438282579183578, - 0.11843904852867126, - 0.12050696462392807, - 0.12053018063306808, - 0.11850805580615997, - 0.11449574679136276, - 0.10860271006822586, - 0.1009896844625473, - 0.09186431765556335, - 0.08147554099559784, - 0.07010674476623535, - 0.05806802958250046, - 0.045687779784202576 - ], - "y": [ - 0.2856166362762451, - 0.22810529172420502, - 0.17215991020202637, - 0.1193065345287323, - 0.07098688185214996, - 0.028519004583358765, - -0.006938725709915161, - -0.03441914916038513, - -0.053172558546066284, - -0.06268748641014099, - -0.06270435452461243, - -0.05322274565696716, - -0.03450128436088562, - -0.007050633430480957, - 0.02838042378425598, - 0.07082545757293701, - 0.11912664771080017, - 0.17196644842624664, - 0.2279035449028015, - 0.28541210293769836, - 0.2856166362762451, - 0.2272542417049408, - 0.17048102617263794, - 0.11684560775756836, - 0.0678110271692276, - 0.02471485733985901, - -0.011267393827438354, - -0.039154231548309326, - -0.05818495154380798, - -0.06784045696258545, - -0.06785732507705688, - -0.05823513865470886, - -0.039236366748809814, - -0.01137930154800415, - 0.024576306343078613, - 0.06764961779117584, - 0.11666572093963623, - 0.17028756439685822, - 0.2270524799823761, - 0.28541210293769836, - 0.2856166362762451, - 0.23272749781608582, - 0.181278258562088, - 0.1326722949743271, - 0.08823546767234802, - 0.04917989671230316, - 0.01657089591026306, - -0.008702009916305542, - -0.02594950795173645, - -0.034700989723205566, - -0.034717857837677, - -0.02599969506263733, - -0.00878414511680603, - 0.016459017992019653, - 0.04904133081436157, - 0.08807402849197388, - 0.13249240815639496, - 0.1810847818851471, - 0.2325257509946823, - 0.28541210293769836, - 0.2856166362762451, - 0.24393197894096375, - 0.20338156819343567, - 0.1650715172290802, - 0.13004685938358307, - 0.09926293790340424, - 0.0735594779253006, - 0.053637564182281494, - 0.040040671825408936, - 0.0331396758556366, - 0.03312280774116516, - 0.03999045491218567, - 0.05355539917945862, - 0.073447585105896, - 0.09912438690662384, - 0.12988543510437012, - 0.16489163041114807, - 0.20318810641765594, - 0.24373021721839905, - 0.28541210293769836, - 0.2856166362762451, - 0.2596534788608551, - 0.23439574241638184, - 0.21053236722946167, - 0.18871432542800903, - 0.1695367395877838, - 0.15352271497249603, - 0.14110907912254333, - 0.13263443112373352, - 0.12832996249198914, - 0.1283130645751953, - 0.13258421421051025, - 0.14102691411972046, - 0.15341082215309143, - 0.16939818859100342, - 0.18855291604995728, - 0.21035248041152954, - 0.23420226573944092, - 0.2594517171382904, - 0.28541210293769836, - 0.2856166362762451, - 0.2781883478164673, - 0.27095988392829895, - 0.2641284167766571, - 0.2578803300857544, - 0.2523860037326813, - 0.24779534339904785, - 0.24423356354236603, - 0.2417978048324585, - 0.24055452644824982, - 0.2405376434326172, - 0.24174760282039642, - 0.24415139853954315, - 0.24768346548080444, - 0.25224748253822327, - 0.25771889090538025, - 0.263948529958725, - 0.27076640725135803, - 0.2779865860939026, - 0.285412073135376, - 0.2856166362762451, - 0.2975279986858368, - 0.30911168456077576, - 0.3200516998767853, - 0.33004963397979736, - 0.3388327360153198, - 0.34616148471832275, - 0.3518359065055847, - 0.3557012677192688, - 0.35765212774276733, - 0.3576352000236511, - 0.3556510806083679, - 0.35175374150276184, - 0.34604960680007935, - 0.3386942148208618, - 0.3298882246017456, - 0.31987181305885315, - 0.3089182376861572, - 0.2973262667655945, - 0.285412073135376, - 0.28561660647392273, - 0.3155767619609833, - 0.344716876745224, - 0.3722420930862427, - 0.3974016308784485, - 0.4195091128349304, - 0.4379616379737854, - 0.4522557556629181, - 0.46200162172317505, - 0.46693336963653564, - 0.46691644191741943, - 0.46195143461227417, - 0.4521735906600952, - 0.437849760055542, - 0.4193706214427948, - 0.39724019169807434, - 0.37206220626831055, - 0.3445234000682831, - 0.3153750002384186, - 0.285412073135376, - 0.28561660647392273, - 0.3303787112236023, - 0.37391701340675354, - 0.4150439202785492, - 0.45263761281967163, - 0.48567259311676025, - 0.5132477879524231, - 0.5346110463142395, - 0.5491795539855957, - 0.556555986404419, - 0.5565390586853027, - 0.5491293668746948, - 0.5345288515090942, - 0.5131359100341797, - 0.48553407192230225, - 0.4524762034416199, - 0.41486403346061707, - 0.373723566532135, - 0.3301769495010376, - 0.285412073135376, - 0.28561660647392273, - 0.3403298258781433, - 0.39354783296585083, - 0.44381892681121826, - 0.4897719621658325, - 0.5301532745361328, - 0.5638615489006042, - 0.5899772644042969, - 0.6077879667282104, - 0.6168079376220703, - 0.6167910099029541, - 0.6077377796173096, - 0.5898951292037964, - 0.5637496709823608, - 0.5300148129463196, - 0.48961055278778076, - 0.44363903999328613, - 0.3933543562889099, - 0.340128093957901, - 0.285412073135376, - 0.28561660647392273, - 0.34435179829597473, - 0.4014820456504822, - 0.4554489850997925, - 0.5047805309295654, - 0.5481311082839966, - 0.5843181610107422, - 0.6123546361923218, - 0.6314758062362671, - 0.6411600112915039, - 0.6411430835723877, - 0.6314256191253662, - 0.6122725009918213, - 0.5842063426971436, - 0.5479925870895386, - 0.5046191811561584, - 0.45526909828186035, - 0.40128856897354126, - 0.34415003657341003, - 0.285412073135376, - 0.28561660647392273, - 0.34200870990753174, - 0.3968598246574402, - 0.44867369532585144, - 0.4960370361804962, - 0.5376577973365784, - 0.5724008083343506, - 0.599318265914917, - 0.6176760196685791, - 0.6269732713699341, - 0.6269563436508179, - 0.6176258325576782, - 0.5992361307144165, - 0.572288990020752, - 0.5375193357467651, - 0.49587562680244446, - 0.4484938085079193, - 0.39666634798049927, - 0.34180697798728943, - 0.285412073135376, - 0.28561660647392273, - 0.33355456590652466, - 0.38018208742141724, - 0.4242272973060608, - 0.46448883414268494, - 0.49986839294433594, - 0.5294009447097778, - 0.5522809028625488, - 0.567884087562561, - 0.5757850408554077, - 0.575768232345581, - 0.5678339004516602, - 0.5521987676620483, - 0.5292890667915344, - 0.49972987174987793, - 0.46432745456695557, - 0.42404741048812866, - 0.3799886107444763, - 0.33335280418395996, - 0.285412073135376, - 0.28561660647392273, - 0.3199054002761841, - 0.35325607657432556, - 0.38475894927978516, - 0.41355466842651367, - 0.4388577938079834, - 0.4599781036376953, - 0.47633951902389526, - 0.4874957203865051, - 0.49314236640930176, - 0.4931254982948303, - 0.48744550347328186, - 0.4762573838233948, - 0.4598662853240967, - 0.4387193024158478, - 0.4133932888507843, - 0.384579062461853, - 0.35306262969970703, - 0.3197036385536194, - 0.285412073135376, - 0.2856166362762451, - 0.3025403916835785, - 0.3189997375011444, - 0.33454570174217224, - 0.34875422716140747, - 0.36123770475387573, - 0.3716556429862976, - 0.3797239065170288, - 0.3852223753929138, - 0.388001024723053, - 0.38798415660858154, - 0.38517212867736816, - 0.37964174151420593, - 0.3715437650680542, - 0.3610991835594177, - 0.3485928177833557, - 0.3343658149242401, - 0.3188062906265259, - 0.3023386299610138, - 0.285412073135376, - 0.2856166362762451, - 0.28334128856658936, - 0.2811252474784851, - 0.27902889251708984, - 0.2771094739437103, - 0.27541929483413696, - 0.2740045189857483, - 0.2729036509990692, - 0.2721468210220337, - 0.27175459265708923, - 0.2717376947402954, - 0.2720966041088104, - 0.27282148599624634, - 0.2738926410675049, - 0.27528077363967896, - 0.27694806456565857, - 0.2788490056991577, - 0.2809317708015442, - 0.28313952684402466, - 0.285412073135376, - 0.2856166362762451, - 0.2643885612487793, - 0.24373677372932434, - 0.22422456741333008, - 0.20638418197631836, - 0.19070224463939667, - 0.17760655283927917, - 0.1674542874097824, - 0.16052240133285522, - 0.15699999034404755, - 0.15698309242725372, - 0.16047218441963196, - 0.16737212240695953, - 0.17749467492103577, - 0.19056370854377747, - 0.2062227427959442, - 0.22404468059539795, - 0.24354331195354462, - 0.264186829328537, - 0.28541210293769836, - 0.2856166362762451, - 0.2477360963821411, - 0.21088606119155884, - 0.1760716736316681, - 0.14424261450767517, - 0.11626707017421722, - 0.09290817379951477, - 0.07480302453041077, - 0.062445566058158875, - 0.05617286264896393, - 0.056155964732170105, - 0.06239534914493561, - 0.07472085952758789, - 0.09279628098011017, - 0.11612851917743683, - 0.14408119022846222, - 0.17589178681373596, - 0.2106925994157791, - 0.2475343495607376, - 0.28541210293769836, - 0.2856166362762451, - 0.23518842458724976, - 0.18613296747207642, - 0.13978838920593262, - 0.09741881489753723, - 0.06017999351024628, - 0.029087752103805542, - 0.004990071058273315, - -0.011455565690994263, - -0.019800662994384766, - -0.0198175311088562, - -0.011505752801895142, - 0.004907935857772827, - 0.028975844383239746, - 0.06004144251346588, - 0.09725739061832428, - 0.1396085023880005, - 0.1859395056962967, - 0.23498666286468506, - 0.28541210293769836, - 0.2856166362762451, - 0.22810529172420502, - 0.17215991020202637, - 0.1193065345287323, - 0.07098688185214996, - 0.028519004583358765, - -0.006938725709915161, - -0.03441914916038513, - -0.05317258834838867, - -0.06268751621246338, - -0.06270438432693481, - -0.05322277545928955, - -0.03450128436088562, - -0.007050633430480957, - 0.02838042378425598, - 0.07082545757293701, - 0.11912664771080017, - 0.17196644842624664, - 0.2279035449028015, - 0.28541210293769836 - ], - "z": [ - -1.7642205953598022, - -1.7647254467010498, - -1.7649024724960327, - -1.7647467851638794, - -1.7642626762390137, - -1.7634632587432861, - -1.7623704671859741, - -1.7610141038894653, - -1.759431004524231, - -1.757664442062378, - -1.7557626962661743, - -1.7537775039672852, - -1.7517632246017456, - -1.74977445602417, - -1.7478657960891724, - -1.7460891008377075, - -1.7444928884506226, - -1.7431206703186035, - -1.7420099973678589, - -1.741191029548645, - -1.7642205953598022, - -1.7645000219345093, - -1.7644578218460083, - -1.7640949487686157, - -1.7634215354919434, - -1.762455701828003, - -1.7612240314483643, - -1.7597599029541016, - -1.758103370666504, - -1.7562997341156006, - -1.7543978691101074, - -1.7524499893188477, - -1.7505090236663818, - -1.74862802028656, - -1.7468582391738892, - -1.7452479600906372, - -1.7438410520553589, - -1.742676019668579, - -1.7417845726013184, - -1.741191029548645, - -1.7642205953598022, - -1.7642273902893066, - -1.7639198303222656, - -1.7633063793182373, - -1.7624038457870483, - -1.7612367868423462, - -1.7598369121551514, - -1.7582426071166992, - -1.7564972639083862, - -1.7546484470367432, - -1.7527467012405396, - -1.7508437633514404, - -1.7489917278289795, - -1.7472409009933472, - -1.7456392049789429, - -1.7442302703857422, - -1.7430524826049805, - -1.7421380281448364, - -1.7415118217468262, - -1.741191029548645, - -1.7642205953598022, - -1.7639368772506714, - -1.763346791267395, - -1.762466549873352, - -1.761319875717163, - -1.759938359260559, - -1.7583595514297485, - -1.7566264867782593, - -1.754786491394043, - -1.7528897523880005, - -1.7509880065917969, - -1.7491331100463867, - -1.7473756074905396, - -1.7457635402679443, - -1.7443408966064453, - -1.7431464195251465, - -1.7422126531600952, - -1.7415651082992554, - -1.7412214279174805, - -1.741191029548645, - -1.7642205953598022, - -1.763660192489624, - -1.762800931930542, - -1.7616662979125977, - -1.7602872848510742, - -1.7587014436721802, - -1.7569520473480225, - -1.7550867795944214, - -1.7531566619873047, - -1.7512141466140747, - -1.749312400817871, - -1.7475032806396484, - -1.7458359003067017, - -1.7443560361862183, - -1.7431038618087769, - -1.742113709449768, - -1.7414124011993408, - -1.7410191297531128, - -1.7409446239471436, - -1.741191029548645, - -1.7642205953598022, - -1.7634271383285522, - -1.7623412609100342, - -1.760992407798767, - -1.7594176530838013, - -1.7576597929000854, - -1.7557668685913086, - -1.7537903785705566, - -1.7517842054367065, - -1.7498033046722412, - -1.7479015588760376, - -1.7461308240890503, - -1.744539499282837, - -1.7431708574295044, - -1.7420623302459717, - -1.7412440776824951, - -1.7407386302947998, - -1.740559458732605, - -1.7407116889953613, - -1.741191029548645, - -1.7642205953598022, - -1.7632631063461304, - -1.7620176076889038, - -1.7605180740356445, - -1.758805513381958, - -1.7569265365600586, - -1.7549324035644531, - -1.7528775930404663, - -1.7508180141448975, - -1.7488099336624146, - -1.746908187866211, - -1.7451646327972412, - -1.7436267137527466, - -1.742336392402649, - -1.7413289546966553, - -1.7406319379806519, - -1.7402641773223877, - -1.7402358055114746, - -1.7405476570129395, - -1.741191029548645, - -1.7642205953598022, - -1.763185739517212, - -1.7618650197982788, - -1.7602945566177368, - -1.7585170269012451, - -1.7565809488296509, - -1.754539132118225, - -1.7524473667144775, - -1.7503626346588135, - -1.7483419179916382, - -1.7464401721954346, - -1.7447092533111572, - -1.7431964874267578, - -1.7419432401657104, - -1.740983486175537, - -1.740343451499939, - -1.74004065990448, - -1.7400833368301392, - -1.740470290184021, - -1.741191029548645, - -1.7642205953598022, - -1.7632036209106445, - -1.7619001865386963, - -1.7603460550308228, - -1.758583426475525, - -1.7566605806350708, - -1.7546297311782837, - -1.7525465488433838, - -1.7504675388336182, - -1.748449683189392, - -1.7465479373931885, - -1.744814157485962, - -1.743295669555664, - -1.742033839225769, - -1.7410629987716675, - -1.7404098510742188, - -1.740092158317566, - -1.740118384361267, - -1.740488052368164, - -1.741191029548645, - -1.7642205953598022, - -1.7633146047592163, - -1.762119174003601, - -1.7606669664382935, - -1.7589976787567139, - -1.7571567296981812, - -1.7551943063735962, - -1.7531640529632568, - -1.7511214017868042, - -1.7491217851638794, - -1.7472200393676758, - -1.7454679012298584, - -1.743913173675537, - -1.7425984144210815, - -1.7415592670440674, - -1.7408241033554077, - -1.7404130697250366, - -1.7403373718261719, - -1.7405991554260254, - -1.741191029548645, - -1.7642205953598022, - -1.7635067701339722, - -1.7624982595443726, - -1.7612227201461792, - -1.7597147226333618, - -1.7580156326293945, - -1.756171703338623, - -1.7542332410812378, - -1.7522531747817993, - -1.7502853870391846, - -1.7483835220336914, - -1.7465996742248535, - -1.744982361793518, - -1.7435758113861084, - -1.7424181699752808, - -1.7415411472320557, - -1.7409688234329224, - -1.7407164573669434, - -1.7407913208007812, - -1.741191029548645, - -1.7642205953598022, - -1.7637592554092407, - -1.7629964351654053, - -1.7619527578353882, - -1.7606570720672607, - -1.7591443061828613, - -1.7574560642242432, - -1.7556381225585938, - -1.7537403106689453, - -1.7518142461776733, - -1.7499123811721802, - -1.7480868101119995, - -1.746387243270874, - -1.744860053062439, - -1.7435468435287476, - -1.7424834966659546, - -1.741698980331421, - -1.741214632987976, - -1.7410438060760498, - -1.741191029548645, - -1.7642205953598022, - -1.7640447616577148, - -1.7635595798492432, - -1.7627782821655273, - -1.7617223262786865, - -1.7604204416275024, - -1.7589080333709717, - -1.7572264671325684, - -1.7554216384887695, - -1.7535426616668701, - -1.7516409158706665, - -1.7497682571411133, - -1.7479755878448486, - -1.7463120222091675, - -1.7448229789733887, - -1.7435487508773804, - -1.7425243854522705, - -1.741777777671814, - -1.741329312324524, - -1.741191029548645, - -1.7642205953598022, - -1.7643322944641113, - -1.7641267776489258, - -1.763609766960144, - -1.762795329093933, - -1.7617056369781494, - -1.7603704929351807, - -1.7588262557983398, - -1.7571150064468384, - -1.7552835941314697, - -1.7533818483352661, - -1.7514616250991821, - -1.7495753765106201, - -1.7477744817733765, - -1.746108055114746, - -1.744621753692627, - -1.7433558702468872, - -1.7423449754714966, - -1.7416167259216309, - -1.741191029548645, - -1.7642205953598022, - -1.7645906209945679, - -1.764636516571045, - -1.7643569707870483, - -1.7637594938278198, - -1.762860655784607, - -1.761684775352478, - -1.7602639198303223, - -1.7586369514465332, - -1.7568482160568237, - -1.7549463510513306, - -1.752983570098877, - -1.7510130405426025, - -1.7490887641906738, - -1.7472631931304932, - -1.7455860376358032, - -1.7441030740737915, - -1.7428547143936157, - -1.741875171661377, - -1.741191029548645, - -1.7642205953598022, - -1.7647919654846191, - -1.7650336027145386, - -1.7649389505386353, - -1.7645106315612793, - -1.7637603282928467, - -1.7627085447311401, - -1.7613837718963623, - -1.7598223686218262, - -1.7580668926239014, - -1.7561651468276978, - -1.75416898727417, - -1.7521330118179321, - -1.750112533569336, - -1.748162865638733, - -1.7463371753692627, - -1.7446850538253784, - -1.7432518005371094, - -1.7420765161514282, - -1.741191029548645, - -1.7642205953598022, - -1.7649142742156982, - -1.765275001525879, - -1.765292763710022, - -1.7649672031402588, - -1.7643072605133057, - -1.7633308172225952, - -1.7620645761489868, - -1.7605429887771606, - -1.75880765914917, - -1.7569059133529663, - -1.7548896074295044, - -1.752813696861267, - -1.750734806060791, - -1.748709797859192, - -1.7467937469482422, - -1.7450388669967651, - -1.7434931993484497, - -1.7421988248825073, - -1.741191029548645, - -1.7642205953598022, - -1.7649444341659546, - -1.7653344869613647, - -1.7653800249099731, - -1.7650798559188843, - -1.7644420862197876, - -1.763484239578247, - -1.7622324228286743, - -1.7607207298278809, - -1.7589902877807617, - -1.757088541984558, - -1.755067229270935, - -1.7529815435409546, - -1.7508882284164429, - -1.7488446235656738, - -1.7469062805175781, - -1.7451261281967163, - -1.7435526847839355, - -1.7422289848327637, - -1.741191029548645, - -1.7642205953598022, - -1.7648791074752808, - -1.7652056217193604, - -1.7651911973953247, - -1.7648361921310425, - -1.7641502618789673, - -1.7631521224975586, - -1.7618690729141235, - -1.7603360414505005, - -1.7585949897766113, - -1.7566932439804077, - -1.7546826601028442, - -1.7526181936264038, - -1.7505561113357544, - -1.748552680015564, - -1.7466626167297363, - -1.7449373006820679, - -1.7434239387512207, - -1.7421636581420898, - -1.741191029548645, - -1.7642205953598022, - -1.7647254467010498, - -1.7649024724960327, - -1.7647467851638794, - -1.7642626762390137, - -1.7634632587432861, - -1.7623704671859741, - -1.7610139846801758, - -1.759431004524231, - -1.757664442062378, - -1.7557626962661743, - -1.7537775039672852, - -1.7517632246017456, - -1.74977445602417, - -1.7478657960891724, - -1.7460891008377075, - -1.7444928884506226, - -1.7431206703186035, - -1.7420099973678589, - -1.741191029548645 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.030240457504987717, - 0.04376747086644173, - 0.05692855268716812, - 0.06936469674110413, - 0.0807366892695427, - 0.0907343178987503, - 0.09908489882946014, - 0.10556061565876007, - 0.10998484492301941, - 0.11223690211772919, - 0.11225536465644836, - 0.11003972589969635, - 0.10565042495727539, - 0.09920717775821686, - 0.09088575094938278, - 0.08091312646865845, - 0.06956131756305695, - 0.057140007615089417, - 0.04398798942565918, - 0.03046402707695961, - 0.030240463092923164, - 0.024531591683626175, - 0.018981490284204483, - 0.013741552829742432, - 0.008954711258411407, - 0.0047515444457530975, - 0.001246696338057518, - -0.0014642365276813507, - -0.003307294100522995, - -0.004232201725244522, - -0.004213739186525345, - -0.003252413123846054, - -0.0013744272291660309, - 0.001368967816233635, - 0.004902955144643784, - 0.009131137281656265, - 0.013938173651695251, - 0.019192945212125778, - 0.024752110242843628, - 0.030464032664895058, - 0.030240468680858612, - 0.005914522334933281, - -0.01774483546614647, - -0.04009222611784935, - -0.060518067330121994, - -0.07846519351005554, - -0.0934440940618515, - -0.10504613816738129, - -0.11295488476753235, - -0.11695453524589539, - -0.1169360876083374, - -0.11289998888969421, - -0.10495634377002716, - -0.09332181513309479, - -0.07831379771232605, - -0.06034165248274803, - -0.03989560529589653, - -0.017533380538225174, - 0.006135040894150734, - 0.030464036390185356, - 0.03024047240614891, - -0.010066293179988861, - -0.04927055165171623, - -0.08630290627479553, - -0.12015320360660553, - -0.14989811182022095, - -0.17472624778747559, - -0.19396038353443146, - -0.20707587897777557, - -0.21371491253376007, - -0.2136964648962021, - -0.20702098309993744, - -0.19387058913707733, - -0.17460398375988007, - -0.14974670112133026, - -0.11997677385807037, - -0.08610628545284271, - -0.04905908927321434, - -0.00984577089548111, - 0.030464040115475655, - 0.03024047613143921, - -0.02167908102273941, - -0.07217936217784882, - -0.11988283693790436, - -0.16348831355571747, - -0.20180629193782806, - -0.23379163444042206, - -0.2585717737674713, - -0.2754708528518677, - -0.2840278446674347, - -0.2840093672275543, - -0.27541595697402954, - -0.2584819495677948, - -0.23366932570934296, - -0.20165489614009857, - -0.1633118987083435, - -0.11968620121479034, - -0.07196789979934692, - -0.02145855873823166, - 0.030464043840765953, - 0.030240477994084358, - -0.027665410190820694, - -0.0839887261390686, - -0.13719311356544495, - -0.1858273148536682, - -0.22856469452381134, - -0.26423951983451843, - -0.2918786108493805, - -0.3107280731201172, - -0.3202737867832184, - -0.320255309343338, - -0.31067317724227905, - -0.291788786649704, - -0.26411721110343933, - -0.22841332852840424, - -0.18565091490745544, - -0.13699647784233093, - -0.08377726376056671, - -0.027444887906312943, - 0.030464045703411102, - 0.03024047613143921, - -0.027376577258110046, - -0.08341895043849945, - -0.13635791838169098, - -0.18474949896335602, - -0.2272735983133316, - -0.262770414352417, - -0.2902716100215912, - -0.3090269863605499, - -0.3185249865055084, - -0.31850650906562805, - -0.3089720904827118, - -0.2901817858219147, - -0.2626481354236603, - -0.2271222621202469, - -0.18457309901714325, - -0.13616128265857697, - -0.08320748805999756, - -0.027156054973602295, - 0.030464045703411102, - 0.03024047613143921, - -0.020843878388404846, - -0.07053174078464508, - -0.11746774613857269, - -0.1603716015815735, - -0.19807299971580505, - -0.22954358160495758, - -0.2539249062538147, - -0.270551860332489, - -0.2789708971977234, - -0.278952419757843, - -0.2704969644546509, - -0.2538350820541382, - -0.22942130267620087, - -0.19792161881923676, - -0.16019518673419952, - -0.11727111041545868, - -0.07032027840614319, - -0.020623356103897095, - 0.030464043840765953, - 0.03024047240614891, - -0.008775237947702408, - -0.04672365263104439, - -0.08256961405277252, - -0.11533540487289429, - -0.14412719011306763, - -0.1681596338748932, - -0.18677717447280884, - -0.19947203993797302, - -0.20589785277843475, - -0.20587940514087677, - -0.1994171440601349, - -0.1866873800754547, - -0.16803735494613647, - -0.14397579431533813, - -0.11515899002552032, - -0.0823729932308197, - -0.046512190252542496, - -0.008554715663194656, - 0.030464040115475655, - 0.030240468680858612, - 0.0075215306133031845, - -0.014574646949768066, - -0.03544533625245094, - -0.054521236568689346, - -0.07128199934959412, - -0.0852704644203186, - -0.09610502421855927, - -0.1034901887178421, - -0.10722444951534271, - -0.10720600187778473, - -0.10343529284000397, - -0.09601522982120514, - -0.08514818549156189, - -0.07113058865070343, - -0.05434481427073479, - -0.03524871543049812, - -0.014363192021846771, - 0.0077420491725206375, - 0.030464036390185356, - 0.030240463092923164, - 0.02628040872514248, - 0.022431425750255585, - 0.018798500299453735, - 0.015480730682611465, - 0.012568620964884758, - 0.01014159619808197, - 0.008265869691967964, - 0.00699259527027607, - 0.006356516852974892, - 0.006374979391694069, - 0.00704747810959816, - 0.008355675265192986, - 0.010263878852128983, - 0.012720039114356041, - 0.015657158568501472, - 0.018995124846696854, - 0.02264288067817688, - 0.02650092914700508, - 0.03046403080224991, - 0.030240457504987717, - 0.045468587428331375, - 0.06028438359498978, - 0.07428370416164398, - 0.08708469569683075, - 0.09833817183971405, - 0.10773716866970062, - 0.11502531170845032, - 0.12000378966331482, - 0.1225367933511734, - 0.12255525588989258, - 0.12005867063999176, - 0.11511512100696564, - 0.10785946249961853, - 0.09848959743976593, - 0.0872611254453659, - 0.0744803249835968, - 0.06049583852291107, - 0.04568910598754883, - 0.03046402707695961, - 0.030240453779697418, - 0.06300672143697739, - 0.09488226473331451, - 0.12499760091304779, - 0.15253125131130219, - 0.1767321676015854, - 0.19694022834300995, - 0.21260423958301544, - 0.2232968509197235, - 0.22872646152973175, - 0.22874490916728973, - 0.22335174679756165, - 0.21269403398036957, - 0.19706253707408905, - 0.17688362300395966, - 0.15270768105983734, - 0.1251942217350006, - 0.0950937271118164, - 0.06322724372148514, - 0.030464021489024162, - 0.03024045005440712, - 0.07699430733919144, - 0.12247589230537415, - 0.16544456779956818, - 0.20472830533981323, - 0.23925548791885376, - 0.2680843472480774, - 0.2904285192489624, - 0.30567845702171326, - 0.3134181797504425, - 0.3134366571903229, - 0.3057333528995514, - 0.2905183434486389, - 0.2682066559791565, - 0.23940694332122803, - 0.20490476489067078, - 0.1656412035226822, - 0.12268735468387604, - 0.07721482962369919, - 0.030464017763733864, - 0.03024044632911682, - 0.08591552823781967, - 0.14007499814033508, - 0.19124150276184082, - 0.23801937699317932, - 0.2791326344013214, - 0.3134597837924957, - 0.34006452560424805, - 0.3582211136817932, - 0.3674342930316925, - 0.3674527704715729, - 0.35827600955963135, - 0.34015434980392456, - 0.31358209252357483, - 0.2792840898036957, - 0.23819583654403687, - 0.19143813848495483, - 0.14028646051883698, - 0.08613605052232742, - 0.030464015901088715, - 0.03024044632911682, - 0.08880367130041122, - 0.14577250182628632, - 0.1995929479598999, - 0.2487969696521759, - 0.2920423746109009, - 0.3281495273113251, - 0.3561336100101471, - 0.37523120641708374, - 0.3849213719367981, - 0.38493984937667847, - 0.3752861022949219, - 0.3562234342098236, - 0.32827186584472656, - 0.29219380021095276, - 0.24897341430187225, - 0.19978958368301392, - 0.1459839642047882, - 0.08902419358491898, - 0.030464014038443565, - 0.03024044632911682, - 0.08534574508666992, - 0.13895095884799957, - 0.18959389626979828, - 0.2358931303024292, - 0.27658572793006897, - 0.3105617165565491, - 0.33689433336257935, - 0.35486531257629395, - 0.3639843463897705, - 0.3640028238296509, - 0.3549202084541321, - 0.33698415756225586, - 0.3106840252876282, - 0.27673718333244324, - 0.23606957495212555, - 0.1897905319929123, - 0.13916242122650146, - 0.08556626737117767, - 0.030464015901088715, - 0.03024045005440712, - 0.07591646164655685, - 0.12034960091114044, - 0.1623278558254242, - 0.20070616900920868, - 0.23443762958049774, - 0.26260218024253845, - 0.2844315767288208, - 0.29933038353919983, - 0.30689212679862976, - 0.30691060423851013, - 0.29938527941703796, - 0.2845214009284973, - 0.26272448897361755, - 0.234589084982872, - 0.20088261365890503, - 0.1625244915485382, - 0.12056106328964233, - 0.0761369839310646, - 0.030464017763733864, - 0.030240453779697418, - 0.06153763830661774, - 0.09198416769504547, - 0.12074953317642212, - 0.14704909920692444, - 0.17016547918319702, - 0.189468115568161, - 0.2044305056333542, - 0.21464446187019348, - 0.2198314368724823, - 0.21984988451004028, - 0.21469935774803162, - 0.2045203000307083, - 0.18959040939807892, - 0.1703169196844101, - 0.1472255438566208, - 0.12094615399837494, - 0.09219561517238617, - 0.06175815686583519, - 0.030464021489024162, - 0.030240457504987717, - 0.04376745969057083, - 0.05692853033542633, - 0.06936467438936234, - 0.08073665201663971, - 0.09073427319526672, - 0.09908483922481537, - 0.1055605560541153, - 0.10998478531837463, - 0.11223684251308441, - 0.11225530505180359, - 0.11003966629505157, - 0.10565036535263062, - 0.09920713305473328, - 0.0908857062458992, - 0.08091308176517487, - 0.06956129521131516, - 0.057139985263347626, - 0.04398798197507858, - 0.03046402707695961 - ], - "y": [ - 0.27492091059684753, - 0.21718168258666992, - 0.16101527214050293, - 0.1079537570476532, - 0.059444501996040344, - 0.016810745000839233, - -0.018784642219543457, - -0.04637065529823303, - -0.06519484519958496, - -0.07474368810653687, - -0.07475674152374268, - -0.06523370742797852, - -0.046434253454208374, - -0.018871277570724487, - 0.016703397035598755, - 0.059319496154785156, - 0.10781446099281311, - 0.16086545586585999, - 0.21702545881271362, - 0.27476251125335693, - 0.27492091059684753, - 0.21597379446029663, - 0.15863242745399475, - 0.10446096956729889, - 0.054937005043029785, - 0.011411547660827637, - -0.024928301572799683, - -0.05309116840362549, - -0.07230886816978455, - -0.08205723762512207, - -0.08207029104232788, - -0.0723477303981781, - -0.05315476655960083, - -0.025014936923980713, - 0.011304229497909546, - 0.05481201410293579, - 0.1043216735124588, - 0.1584826111793518, - 0.21581754088401794, - 0.27476251125335693, - 0.27492091059684753, - 0.2211536169052124, - 0.16885077953338623, - 0.11943911015987396, - 0.07426640391349792, - 0.034564897418022156, - 0.0014174878597259521, - -0.024271607398986816, - -0.04180169105529785, - -0.050694555044174194, - -0.050707608461380005, - -0.041840553283691406, - -0.024335205554962158, - 0.0013308525085449219, - 0.034457579255104065, - 0.07414139807224274, - 0.11929981410503387, - 0.1687009632587433, - 0.2209973782300949, - 0.27476251125335693, - 0.27492091059684753, - 0.232159823179245, - 0.19056300818920135, - 0.15126508474349976, - 0.11533799767494202, - 0.0837617814540863, - 0.05739772319793701, - 0.03696492314338684, - 0.023020803928375244, - 0.015945762395858765, - 0.015932708978652954, - 0.02298194169998169, - 0.03690129518508911, - 0.057311058044433594, - 0.08365446329116821, - 0.11521299183368683, - 0.15112577378749847, - 0.1904131919145584, - 0.2320035994052887, - 0.27476251125335693, - 0.27492091059684753, - 0.24779975414276123, - 0.22141624987125397, - 0.19649004936218262, - 0.17370107769966125, - 0.15367096662521362, - 0.13694606721401215, - 0.12398259341716766, - 0.11513417959213257, - 0.11064216494560242, - 0.11062908172607422, - 0.11509528756141663, - 0.12391896545886993, - 0.13685941696166992, - 0.15356367826461792, - 0.17357607185840607, - 0.19635075330734253, - 0.22126643359661102, - 0.24764353036880493, - 0.27476251125335693, - 0.27492091059684753, - 0.26637858152389526, - 0.2580671012401581, - 0.2502131760120392, - 0.2430310845375061, - 0.23671668767929077, - 0.23144224286079407, - 0.2273516058921814, - 0.22455641627311707, - 0.22313284873962402, - 0.22311976552009583, - 0.22451752424240112, - 0.22728797793388367, - 0.23135560750961304, - 0.23660939931869507, - 0.24290607869625092, - 0.2500738799571991, - 0.25791728496551514, - 0.2662223279476166, - 0.27476251125335693, - 0.27492088079452515, - 0.28588294982910156, - 0.29654383659362793, - 0.3066127300262451, - 0.3158150315284729, - 0.32389965653419495, - 0.3306460976600647, - 0.3358703553676605, - 0.33942991495132446, - 0.3412276804447174, - 0.3412145972251892, - 0.3393910527229309, - 0.3358067274093628, - 0.33055949211120605, - 0.32379236817359924, - 0.3156900107860565, - 0.30647343397140503, - 0.296394020318985, - 0.28572672605514526, - 0.27476248145103455, - 0.27492088079452515, - 0.30419930815696716, - 0.3326769471168518, - 0.3595769703388214, - 0.3841656446456909, - 0.40577226877212524, - 0.42380741238594055, - 0.43777915835380554, - 0.44730645418167114, - 0.4521293044090271, - 0.4521161913871765, - 0.4472675323486328, - 0.4377155303955078, - 0.4237207770347595, - 0.40566498041152954, - 0.3840406537055969, - 0.35943764448165894, - 0.33252713084220886, - 0.30404308438301086, - 0.27476248145103455, - 0.27492088079452515, - 0.31934279203414917, - 0.3625508248806, - 0.4033663272857666, - 0.44067609310150146, - 0.4734622836112976, - 0.5008306503295898, - 0.5220345854759216, - 0.5364958047866821, - 0.5438197255134583, - 0.5438066720962524, - 0.5364569425582886, - 0.5219709873199463, - 0.5007439851760864, - 0.4733550548553467, - 0.44055110216140747, - 0.4032270312309265, - 0.36240100860595703, - 0.3191865384578705, - 0.27476248145103455, - 0.27492088079452515, - 0.32967233657836914, - 0.38292816281318665, - 0.43323564529418945, - 0.4792225956916809, - 0.5196345448493958, - 0.5533691644668579, - 0.5795062780380249, - 0.5973330140113831, - 0.6063629388809204, - 0.6063498854637146, - 0.5972941517829895, - 0.5794427394866943, - 0.5532825589179993, - 0.5195272564888, - 0.4790976047515869, - 0.43309634923934937, - 0.3827783465385437, - 0.32951611280441284, - 0.27476248145103455, - 0.27492088079452515, - 0.3340685963630676, - 0.3916007876396179, - 0.44594806432724, - 0.4956279993057251, - 0.5392854809761047, - 0.5757296085357666, - 0.6039663553237915, - 0.6232253313064575, - 0.6329814195632935, - 0.6329683065414429, - 0.623186469078064, - 0.6039026975631714, - 0.575643002986908, - 0.5391782522201538, - 0.4955030381679535, - 0.4458087682723999, - 0.3914509415626526, - 0.33391237258911133, - 0.27476248145103455, - 0.27492088079452515, - 0.3320551812648773, - 0.38762885332107544, - 0.4401259422302246, - 0.488114595413208, - 0.5302855968475342, - 0.565488874912262, - 0.5927640199661255, - 0.6113671064376831, - 0.6207906007766724, - 0.6207774877548218, - 0.6113282442092896, - 0.5927003622055054, - 0.5654022693634033, - 0.530178427696228, - 0.487989604473114, - 0.4399866461753845, - 0.3874790370464325, - 0.33189892768859863, - 0.27476248145103455, - 0.27492088079452515, - 0.32385024428367615, - 0.3714427947998047, - 0.41640031337738037, - 0.4574965238571167, - 0.49361032247543335, - 0.523756742477417, - 0.5471133589744568, - 0.5630431175231934, - 0.5711115002632141, - 0.5710984468460083, - 0.5630042552947998, - 0.5470497608184814, - 0.5236700773239136, - 0.4935030937194824, - 0.4573715329170227, - 0.4162610173225403, - 0.37129300832748413, - 0.32369402050971985, - 0.27476248145103455, - 0.27492088079452515, - 0.310342937707901, - 0.34479662775993347, - 0.3773421347141266, - 0.4070916771888733, - 0.4332337975502014, - 0.4550553560256958, - 0.47196123003959656, - 0.48349013924598694, - 0.48932766914367676, - 0.48931458592414856, - 0.483451247215271, - 0.47189760208129883, - 0.45496875047683716, - 0.4331265091896057, - 0.4069666862487793, - 0.3772028088569641, - 0.3446468114852905, - 0.3101867139339447, - 0.27476248145103455, - 0.27492088079452515, - 0.29299700260162354, - 0.3105778992176056, - 0.3271840214729309, - 0.34236234426498413, - 0.35569891333580017, - 0.36682987213134766, - 0.3754516839981079, - 0.3813290596008301, - 0.3843017816543579, - 0.3842886984348297, - 0.3812901973724365, - 0.3753880560398102, - 0.366743266582489, - 0.35559165477752686, - 0.3422373831272125, - 0.32704469561576843, - 0.31042808294296265, - 0.29284077882766724, - 0.27476248145103455, - 0.27492088079452515, - 0.27369213104248047, - 0.27249473333358765, - 0.2713613510131836, - 0.27032291889190674, - 0.2694077491760254, - 0.26864075660705566, - 0.2680429518222809, - 0.26763060688972473, - 0.267414927482605, - 0.2674018442630768, - 0.2675917148590088, - 0.26797932386398315, - 0.26855412125587463, - 0.2693004608154297, - 0.27019792795181274, - 0.2712220549583435, - 0.2723449170589447, - 0.27353590726852417, - 0.27476251125335693, - 0.27492091059684753, - 0.2545202672481537, - 0.23467396199703217, - 0.21592332422733307, - 0.19877982139587402, - 0.18371108174324036, - 0.17112816870212555, - 0.1613742709159851, - 0.15471546351909637, - 0.15133342146873474, - 0.15132033824920654, - 0.15467658638954163, - 0.16131064295768738, - 0.17104151844978333, - 0.18360380828380585, - 0.19865481555461884, - 0.2157840132713318, - 0.23452414572238922, - 0.2543640434741974, - 0.27476251125335693, - 0.27492091059684753, - 0.2375590205192566, - 0.20121410489082336, - 0.16687756776809692, - 0.13548599183559418, - 0.10789570212364197, - 0.08485926687717438, - 0.06700500845909119, - 0.05482001602649689, - 0.048636674880981445, - 0.04862359166145325, - 0.054781123995780945, - 0.06694138050079346, - 0.08477260172367096, - 0.10778838396072388, - 0.13536100089550018, - 0.16673824191093445, - 0.20106428861618042, - 0.2374027818441391, - 0.27476251125335693, - 0.27492091059684753, - 0.22464638948440552, - 0.1757410764694214, - 0.12953895330429077, - 0.08730033040046692, - 0.050177350640296936, - 0.019182592630386353, - -0.004838436841964722, - -0.02123051881790161, - -0.029546499252319336, - -0.029559552669525146, - -0.021269381046295166, - -0.0049020349979400635, - 0.01909598708152771, - 0.05007000267505646, - 0.08717530965805054, - 0.12939965724945068, - 0.17559126019477844, - 0.22449015080928802, - 0.27476251125335693, - 0.27492091059684753, - 0.21718168258666992, - 0.16101527214050293, - 0.107953742146492, - 0.05944448709487915, - 0.016810745000839233, - -0.018784672021865845, - -0.04637065529823303, - -0.06519484519958496, - -0.07474371790885925, - -0.07475677132606506, - -0.06523370742797852, - -0.046434253454208374, - -0.018871307373046875, - 0.016703397035598755, - 0.05931948125362396, - 0.10781444609165192, - 0.16086545586585999, - 0.21702544391155243, - 0.27476251125335693 - ], - "z": [ - -1.780936360359192, - -1.7814185619354248, - -1.7816184759140015, - -1.781530737876892, - -1.7811576128005981, - -1.780509352684021, - -1.7796036005020142, - -1.7784650325775146, - -1.7771248817443848, - -1.7756195068359375, - -1.7739901542663574, - -1.7722810506820679, - -1.7705390453338623, - -1.7688114643096924, - -1.7671455144882202, - -1.7655866146087646, - -1.7641773223876953, - -1.7629560232162476, - -1.7619560956954956, - -1.7612048387527466, - -1.780936360359192, - -1.7812103033065796, - -1.7812076807022095, - -1.7809284925460815, - -1.780380368232727, - -1.779578447341919, - -1.778544306755066, - -1.7773064374923706, - -1.7758983373641968, - -1.7743586301803589, - -1.7727291584014893, - -1.7710545063018799, - -1.7693803310394287, - -1.7677521705627441, - -1.7662146091461182, - -1.764809489250183, - -1.7635750770568848, - -1.7625452280044556, - -1.7617478370666504, - -1.7612048387527466, - -1.780936360359192, - -1.780957818031311, - -1.7807095050811768, - -1.780198335647583, - -1.7794381380081177, - -1.7784496545791626, - -1.7772599458694458, - -1.775901436805725, - -1.7744110822677612, - -1.7728296518325806, - -1.771200180053711, - -1.7695672512054443, - -1.7679753303527832, - -1.766467809677124, - -1.7650858163833618, - -1.7638671398162842, - -1.7628449201583862, - -1.7620470523834229, - -1.7614953517913818, - -1.7612048387527466, - -1.780936360359192, - -1.7806884050369263, - -1.7801779508590698, - -1.779419183731079, - -1.7784327268600464, - -1.7772454023361206, - -1.7758896350860596, - -1.774402379989624, - -1.7728242874145508, - -1.7711983919143677, - -1.769568920135498, - -1.7679804563522339, - -1.7664762735366821, - -1.7650974988937378, - -1.7638815641403198, - -1.762861728668213, - -1.7620657682418823, - -1.761515498161316, - -1.761225938796997, - -1.7612048387527466, - -1.780936360359192, - -1.7804312705993652, - -1.7796707153320312, - -1.7786756753921509, - -1.7774732112884521, - -1.776095986366272, - -1.774581789970398, - -1.772971749305725, - -1.7713098526000977, - -1.7696415185928345, - -1.7680120468139648, - -1.7664660215377808, - -1.7650456428527832, - -1.7637896537780762, - -1.7627321481704712, - -1.7619022130966187, - -1.761322259902954, - -1.7610082626342773, - -1.760968804359436, - -1.7612048387527466, - -1.780936360359192, - -1.7802143096923828, - -1.779242753982544, - -1.7780482769012451, - -1.7766635417938232, - -1.7751262187957764, - -1.7734782695770264, - -1.7717646360397339, - -1.7700320482254028, - -1.7683278322219849, - -1.7666983604431152, - -1.765188217163086, - -1.763838529586792, - -1.7626861333847046, - -1.7617623805999756, - -1.7610925436019897, - -1.7606948614120483, - -1.76058030128479, - -1.7607518434524536, - -1.7612048387527466, - -1.780936360359192, - -1.7800610065460205, - -1.7789403200149536, - -1.7776050567626953, - -1.776091456413269, - -1.7744410037994385, - -1.7726985216140747, - -1.770911693572998, - -1.7691291570663452, - -1.767399549484253, - -1.7657701969146729, - -1.7642853260040283, - -1.7629855871200562, - -1.761906385421753, - -1.7610771656036377, - -1.7605204582214355, - -1.7602516412734985, - -1.7602778673171997, - -1.7605985403060913, - -1.7612048387527466, - -1.780936360359192, - -1.7799879312515259, - -1.7787963151931763, - -1.7773939371109009, - -1.775818943977356, - -1.7741146087646484, - -1.772327184677124, - -1.770505428314209, - -1.7686991691589355, - -1.7669575214385986, - -1.765328049659729, - -1.7638553380966187, - -1.762579321861267, - -1.7615350484848022, - -1.7607507705688477, - -1.760248064994812, - -1.760040521621704, - -1.7601338624954224, - -1.7605254650115967, - -1.7612048387527466, - -1.780936360359192, - -1.7800031900405884, - -1.7788262367248535, - -1.7774378061294556, - -1.7758756875991821, - -1.7741824388504028, - -1.7724043130874634, - -1.770589828491211, - -1.7687885761260986, - -1.7670494318008423, - -1.7654199600219727, - -1.7639447450637817, - -1.7626638412475586, - -1.7616121768951416, - -1.760818600654602, - -1.7603046894073486, - -1.7600843906402588, - -1.7601637840270996, - -1.7605407238006592, - -1.7612048387527466, - -1.780936360359192, - -1.7801048755645752, - -1.7790268659591675, - -1.7777318954467773, - -1.7762552499771118, - -1.7746371030807495, - -1.7729218006134033, - -1.771155834197998, - -1.7693877220153809, - -1.7676653861999512, - -1.7660359144210815, - -1.764543890953064, - -1.7632298469543457, - -1.7621296644210815, - -1.7612733840942383, - -1.7606842517852783, - -1.7603785991668701, - -1.7603644132614136, - -1.760642409324646, - -1.7612048387527466, - -1.780936360359192, - -1.7802821397781372, - -1.7793766260147095, - -1.7782444953918457, - -1.776916742324829, - -1.7754294872283936, - -1.7738233804702759, - -1.7721421718597412, - -1.770431637763977, - -1.7687386274337769, - -1.7671091556549072, - -1.7655878067016602, - -1.7642160654067993, - -1.763031244277954, - -1.7620656490325928, - -1.7613457441329956, - -1.760891079902649, - -1.7607141733169556, - -1.760819673538208, - -1.7612048387527466, - -1.780936360359192, - -1.7805156707763672, - -1.7798373699188232, - -1.7789199352264404, - -1.7777884006500244, - -1.7764735221862793, - -1.7750113010406494, - -1.7734416723251343, - -1.771807312965393, - -1.7701529264450073, - -1.7685234546661377, - -1.7669634819030762, - -1.7655155658721924, - -1.7642191648483276, - -1.7631096839904785, - -1.762217402458191, - -1.7615665197372437, - -1.7611749172210693, - -1.761053204536438, - -1.7612048387527466, - -1.780936360359192, - -1.78078031539917, - -1.7803592681884766, - -1.7796850204467773, - -1.778775691986084, - -1.7776561975479126, - -1.7763570547103882, - -1.7749137878417969, - -1.7733656167984009, - -1.7717548608779907, - -1.770125389099121, - -1.768521785736084, - -1.766987681388855, - -1.7655649185180664, - -1.7642923593521118, - -1.7632046937942505, - -1.7623316049575806, - -1.7616968154907227, - -1.7613178491592407, - -1.7612048387527466, - -1.780936360359192, - -1.7810472249984741, - -1.780885934829712, - -1.780456781387329, - -1.7797716856002808, - -1.7788492441177368, - -1.777714729309082, - -1.776398777961731, - -1.774937629699707, - -1.7733709812164307, - -1.771741509437561, - -1.7700937986373901, - -1.7684727907180786, - -1.7669225931167603, - -1.7654855251312256, - -1.7642008066177368, - -1.7631034851074219, - -1.7622233629226685, - -1.761584758758545, - -1.7612048387527466, - -1.780936360359192, - -1.7812875509262085, - -1.7813600301742554, - -1.7811517715454102, - -1.7806684970855713, - -1.7799235582351685, - -1.7789369821548462, - -1.777735948562622, - -1.776353120803833, - -1.7748260498046875, - -1.7731966972351074, - -1.7715092897415161, - -1.7698098421096802, - -1.7681448459625244, - -1.7665597200393677, - -1.7650976181030273, - -1.7637983560562134, - -1.762697458267212, - -1.7618250846862793, - -1.7612048387527466, - -1.780936360359192, - -1.7814751863479614, - -1.7817302942276, - -1.7816945314407349, - -1.7813689708709717, - -1.7807625532150269, - -1.7798917293548584, - -1.778780221939087, - -1.7774585485458374, - -1.7759625911712646, - -1.774333119392395, - -1.7726147174835205, - -1.7708542346954346, - -1.7690995931625366, - -1.767398715019226, - -1.7657979726791382, - -1.764341115951538, - -1.7630678415298462, - -1.7620127201080322, - -1.7612048387527466, - -1.780936360359192, - -1.7815899848937988, - -1.7819565534591675, - -1.7820261716842651, - -1.7817970514297485, - -1.7812752723693848, - -1.78047513961792, - -1.7794185876846313, - -1.7781342267990112, - -1.7766571044921875, - -1.7750277519226074, - -1.7732903957366943, - -1.7714924812316895, - -1.7696830034255981, - -1.767911434173584, - -1.766226053237915, - -1.764672875404358, - -1.7632941007614136, - -1.7621275186538696, - -1.7612048387527466, - -1.780936360359192, - -1.7816193103790283, - -1.7820143699645996, - -1.7821110486984253, - -1.7819064855575562, - -1.7814064025878906, - -1.780624270439148, - -1.7795816659927368, - -1.7783068418502808, - -1.7768347263336182, - -1.7752052545547485, - -1.7734630107879639, - -1.771655559539795, - -1.7698321342468262, - -1.7680425643920898, - -1.7663354873657227, - -1.7647576332092285, - -1.7633519172668457, - -1.7621568441390991, - -1.7612048387527466, - -1.780936360359192, - -1.781559944152832, - -1.7818974256515503, - -1.7819396257400513, - -1.7816853523254395, - -1.7811414003372192, - -1.7803229093551636, - -1.7792519330978394, - -1.777957797050476, - -1.7764757871627808, - -1.7748464345932007, - -1.7731139659881592, - -1.7713258266448975, - -1.7695307731628418, - -1.767777681350708, - -1.766114354133606, - -1.7645862102508545, - -1.7632349729537964, - -1.7620975971221924, - -1.7612048387527466, - -1.780936360359192, - -1.7814185619354248, - -1.7816184759140015, - -1.781530737876892, - -1.7811576128005981, - -1.780509352684021, - -1.7796036005020142, - -1.7784650325775146, - -1.7771248817443848, - -1.7756195068359375, - -1.7739901542663574, - -1.7722810506820679, - -1.7705390453338623, - -1.7688114643096924, - -1.7671455144882202, - -1.7655866146087646, - -1.7641773223876953, - -1.7629560232162476, - -1.7619560956954956, - -1.7612048387527466 - ] - }, - { - "alphahull": 0, - "color": "#00CC96", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.01690552942454815, - 0.0315219908952713, - 0.0457422211766243, - 0.05917831137776375, - 0.07146378606557846, - 0.08226349949836731, - 0.09128288924694061, - 0.09827592968940735, - 0.10305184125900269, - 0.1054803729057312, - 0.10549527406692505, - 0.103096142411232, - 0.09834842383861542, - 0.09138160943984985, - 0.08238574862480164, - 0.07160621881484985, - 0.05933704599738121, - 0.04591292142868042, - 0.0317000150680542, - 0.01708601415157318, - 0.016905535012483597, - 0.01216514129191637, - 0.0075565120205283165, - 0.003205355256795883, - -0.0007696244865655899, - -0.00426001101732254, - -0.007170598953962326, - -0.009422000497579575, - -0.01095278188586235, - -0.011721188202500343, - -0.011706283316016197, - -0.010908477008342743, - -0.009349498897790909, - -0.007071889936923981, - -0.004137780517339706, - -0.0006272029131650925, - 0.003364086151123047, - 0.007727217860519886, - 0.012343164533376694, - 0.01708601973950863, - 0.016905540600419044, - -0.006677882745862007, - -0.02961556240916252, - -0.05128179118037224, - -0.07108558714389801, - -0.08848674595355988, - -0.1030106246471405, - -0.11426107585430145, - -0.12193115055561066, - -0.1258116364479065, - -0.12579673528671265, - -0.12188683450222015, - -0.11418856680393219, - -0.10291191935539246, - -0.08836454153060913, - -0.07094317674636841, - -0.05112306401133537, - -0.029444854706525803, - -0.006499858573079109, - 0.017086025327444077, - 0.016905544325709343, - -0.022965148091316223, - -0.061745818704366684, - -0.09837861359119415, - -0.1318642944097519, - -0.16128945350646973, - -0.18585146963596344, - -0.20488035678863525, - -0.2178570181131363, - -0.22442752122879028, - -0.22441262006759644, - -0.2178127020597458, - -0.204807847738266, - -0.1857527792453766, - -0.16116724908351898, - -0.1317218691110611, - -0.09821988642215729, - -0.061575111001729965, - -0.022787123918533325, - 0.017086029052734375, - 0.01690554805099964, - -0.034931670874357224, - -0.08535245060920715, - -0.13298141956329346, - -0.17651943862438202, - -0.2147788405418396, - -0.2467159777879715, - -0.2714598476886749, - -0.28833532333374023, - -0.2968822121620178, - -0.296867311000824, - -0.2882910370826721, - -0.27138736844062805, - -0.24661730229854584, - -0.21465659141540527, - -0.17637702822685242, - -0.1328226923942566, - -0.08518174290657043, - -0.034753646701574326, - 0.017086032778024673, - 0.01690554991364479, - -0.04128069058060646, - -0.09787729382514954, - -0.15134046971797943, - -0.20021188259124756, - -0.24315841495990753, - -0.2790085971355438, - -0.30678460001945496, - -0.3257286846637726, - -0.33532416820526123, - -0.3353092670440674, - -0.32568439841270447, - -0.3067121207714081, - -0.27890992164611816, - -0.2430361956357956, - -0.20006948709487915, - -0.15118174254894257, - -0.09770658612251282, - -0.04110266640782356, - 0.017086034640669823, - 0.01690554991364479, - -0.0413241982460022, - -0.09796313941478729, - -0.15146629512310028, - -0.20037424564361572, - -0.24335290491580963, - -0.27922990918159485, - -0.3070266842842102, - -0.3259849548339844, - -0.33558759093284607, - -0.3355726897716522, - -0.32594066858291626, - -0.30695420503616333, - -0.2791312038898468, - -0.2432306855916977, - -0.20023183524608612, - -0.15130756795406342, - -0.09779243171215057, - -0.0411461740732193, - 0.017086034640669823, - 0.01690554805099964, - -0.03505748137831688, - -0.08560062944889069, - -0.13334521651268005, - -0.17698891460895538, - -0.21534118056297302, - -0.2473558932542801, - -0.2721598148345947, - -0.2890763282775879, - -0.2976439595222473, - -0.29762905836105347, - -0.2890320420265198, - -0.27208733558654785, - -0.24725721776485443, - -0.21521899104118347, - -0.17684650421142578, - -0.1331864893436432, - -0.08542992174625397, - -0.03487945720553398, - 0.017086032778024673, - 0.016905544325709343, - -0.023159630596637726, - -0.06212947145104408, - -0.09894098341464996, - -0.13259004056453705, - -0.1621587872505188, - -0.18684063851833344, - -0.2059624195098877, - -0.21900245547294617, - -0.2256050705909729, - -0.22559016942977905, - -0.21895813941955566, - -0.20588991045951843, - -0.18674196302890778, - -0.16203656792640686, - -0.13244763016700745, - -0.0987822562456131, - -0.061958763748407364, - -0.022981606423854828, - 0.017086029052734375, - 0.016905540600419044, - -0.006919963285326958, - -0.030093107372522354, - -0.051981788128614426, - -0.07198894023895264, - -0.08956882357597351, - -0.10424190759658813, - -0.11560796201229095, - -0.1233569085597992, - -0.12727737426757812, - -0.12726247310638428, - -0.12331259250640869, - -0.11553545296192169, - -0.1041431874036789, - -0.08944660425186157, - -0.07184652984142303, - -0.05182306095957756, - -0.029922399669885635, - -0.00674193911254406, - 0.017086025327444077, - 0.016905535012483597, - 0.01190169993788004, - 0.007036816328763962, - 0.0024435892701148987, - -0.0017526913434267044, - -0.005437562242150307, - -0.008510515093803406, - -0.01088772900402546, - -0.012504344806075096, - -0.013316268101334572, - -0.013301363214850426, - -0.012460039928555489, - -0.010815227404236794, - -0.008411794900894165, - -0.005315331742167473, - -0.00161026231944561, - 0.0026023201644420624, - 0.007207522168755531, - 0.012079723179340363, - 0.01708601973950863, - 0.0169055312871933, - 0.031265739351511, - 0.045236699283123016, - 0.05843731760978699, - 0.07050753384828568, - 0.08111807703971863, - 0.08997952938079834, - 0.09685018658638, - 0.10154259204864502, - 0.1039288192987442, - 0.10394372045993805, - 0.10158689320087433, - 0.09692268073558807, - 0.09007824957370758, - 0.08124032616615295, - 0.07064995914697647, - 0.05859605222940445, - 0.045407406985759735, - 0.0314437597990036, - 0.01708601415157318, - 0.01690552569925785, - 0.04907375946640968, - 0.08036698400974274, - 0.10993161797523499, - 0.1369611918926239, - 0.1607184112071991, - 0.1805552840232849, - 0.19593067467212677, - 0.20642518997192383, - 0.2117525339126587, - 0.21176743507385254, - 0.20646950602531433, - 0.19600318372249603, - 0.18065398931503296, - 0.1608406901359558, - 0.1371036320924759, - 0.11009034514427185, - 0.08053769171237946, - 0.04925178363919258, - 0.017086010426282883, - 0.016905521973967552, - 0.06339599192142487, - 0.1086207926273346, - 0.15134631097316742, - 0.19040706753730774, - 0.22473761439323425, - 0.2534015476703644, - 0.27561694383621216, - 0.2907778024673462, - 0.2984706163406372, - 0.29848551750183105, - 0.2908220887184143, - 0.27568942308425903, - 0.2535002827644348, - 0.22485990822315216, - 0.19054950773715973, - 0.15150503814220428, - 0.10879150032997131, - 0.06357401609420776, - 0.017086006700992584, - 0.016905520111322403, - 0.07268038392066956, - 0.12693631649017334, - 0.1781933754682541, - 0.22505336999893188, - 0.26623809337615967, - 0.30062416195869446, - 0.32727357745170593, - 0.3454594016075134, - 0.35468560457229614, - 0.35470050573349, - 0.34550368785858154, - 0.3273460566997528, - 0.3007228970527649, - 0.2663603723049164, - 0.22519582509994507, - 0.17835210263729095, - 0.12710702419281006, - 0.07285840809345245, - 0.017086002975702286, - 0.016905518248677254, - 0.07592085003852844, - 0.1333288699388504, - 0.18756359815597534, - 0.23714572191238403, - 0.2807227075099945, - 0.31710588932037354, - 0.34530290961265564, - 0.36454451084136963, - 0.3743059039115906, - 0.3743208050727844, - 0.36458879709243774, - 0.3453753888607025, - 0.31720462441444397, - 0.2808449864387512, - 0.23728816211223602, - 0.1877223253250122, - 0.13349957764148712, - 0.07609887421131134, - 0.017086002975702286, - 0.016905520111322403, - 0.07276622205972672, - 0.12710565328598022, - 0.17844156920909882, - 0.22537367045879364, - 0.26662173867225647, - 0.3010607063770294, - 0.32775112986564636, - 0.3459649085998535, - 0.3552052974700928, - 0.3552201986312866, - 0.34600919485092163, - 0.32782360911369324, - 0.30115944147109985, - 0.26674404740333557, - 0.22551609575748444, - 0.17860029637813568, - 0.12727636098861694, - 0.07294424623250961, - 0.017086002975702286, - 0.016905521973967552, - 0.06355834007263184, - 0.10894106328487396, - 0.1518157571554184, - 0.1910129189491272, - 0.22546328604221344, - 0.25422728061676025, - 0.2765202224254608, - 0.2917340099811554, - 0.29945358633995056, - 0.2994684875011444, - 0.2917782962322235, - 0.2765927016735077, - 0.2543260157108307, - 0.22558559477329254, - 0.191155344247818, - 0.15197448432445526, - 0.10911177098751068, - 0.06373636424541473, - 0.017086006700992584, - 0.01690552569925785, - 0.04929503798484802, - 0.0808035135269165, - 0.1105714738368988, - 0.13778693974018097, - 0.16170752048492432, - 0.18168076872825623, - 0.19716183841228485, - 0.20772843062877655, - 0.21309234201908112, - 0.21310724318027496, - 0.20777274668216705, - 0.1972343474626541, - 0.18177948892116547, - 0.16182978451251984, - 0.13792937994003296, - 0.11073020100593567, - 0.08097422122955322, - 0.04947306215763092, - 0.017086010426282883, - 0.01690552942454815, - 0.031521983444690704, - 0.04574219882488251, - 0.05917828157544136, - 0.07146374881267548, - 0.08226345479488373, - 0.09128284454345703, - 0.09827587008476257, - 0.10305178165435791, - 0.10548031330108643, - 0.10549521446228027, - 0.10309608280658722, - 0.09834836423397064, - 0.09138156473636627, - 0.08238570392131805, - 0.07160617411136627, - 0.05933701619505882, - 0.04591290280222893, - 0.031700003892183304, - 0.01708601415157318 - ], - "y": [ - 0.2654789090156555, - 0.20758749544620514, - 0.15127348899841309, - 0.09807303547859192, - 0.04943722486495972, - 0.006692796945571899, - -0.028994351625442505, - -0.056650757789611816, - -0.07552200555801392, - -0.08509331941604614, - -0.08510369062423706, - -0.07555276155471802, - -0.056701064109802246, - -0.029062896966934204, - 0.006607860326766968, - 0.04933832585811615, - 0.09796282649040222, - 0.15115498006343842, - 0.20746390521526337, - 0.26535359025001526, - 0.2654789090156555, - 0.2060355693101883, - 0.1482120007276535, - 0.09358546137809753, - 0.04364599287509918, - -0.0002441108226776123, - -0.0368877649307251, - -0.065285325050354, - -0.08466219902038574, - -0.09448981285095215, - -0.09450018405914307, - -0.08469295501708984, - -0.06533563137054443, - -0.0369563102722168, - -0.00032901763916015625, - 0.04354710876941681, - 0.09347525238990784, - 0.14809349179267883, - 0.20591197907924652, - 0.26535359025001526, - 0.2654789090156555, - 0.2109251767396927, - 0.15785782039165497, - 0.1077243834733963, - 0.061892375349998474, - 0.021611958742141724, - -0.0120181143283844, - -0.03808051347732544, - -0.055864304304122925, - -0.06488436460494995, - -0.06489473581314087, - -0.055895060300827026, - -0.03813081979751587, - -0.012086689472198486, - 0.02152705192565918, - 0.06179346144199371, - 0.1076141744852066, - 0.1577393114566803, - 0.21080158650875092, - 0.26535359025001526, - 0.2654789090156555, - 0.2217264175415039, - 0.17916569113731384, - 0.1389576494693756, - 0.10219906270503998, - 0.06989261507987976, - 0.04291956126689911, - 0.02201560139656067, - 0.007750988006591797, - 0.0005148649215698242, - 0.0005044937133789062, - 0.007720232009887695, - 0.02196526527404785, - 0.042851001024246216, - 0.06980772316455841, - 0.10210016369819641, - 0.1388474404811859, - 0.17904716730117798, - 0.22160282731056213, - 0.26535359025001526, - 0.26547887921333313, - 0.2372688353061676, - 0.20982655882835388, - 0.1839006245136261, - 0.16019822657108307, - 0.13936591148376465, - 0.12197192013263702, - 0.10849069058895111, - 0.09928998351097107, - 0.09462079405784607, - 0.09461045265197754, - 0.09925922751426697, - 0.1084403544664383, - 0.12190335988998413, - 0.1392810344696045, - 0.1600993275642395, - 0.1837904453277588, - 0.2097080498933792, - 0.23714524507522583, - 0.26535359025001526, - 0.26547887921333313, - 0.255868136882782, - 0.2465178668498993, - 0.23768305778503418, - 0.22960475087165833, - 0.22250330448150635, - 0.21657240390777588, - 0.21197381615638733, - 0.2088330090045929, - 0.207235649228096, - 0.20722530782222748, - 0.2088022530078888, - 0.2119234800338745, - 0.21650385856628418, - 0.2224184274673462, - 0.22950586676597595, - 0.23757286369800568, - 0.24639934301376343, - 0.2557445466518402, - 0.26535359025001526, - 0.26547887921333313, - 0.275508850812912, - 0.2852635085582733, - 0.29447677731513977, - 0.3028973639011383, - 0.31029555201530457, - 0.31646957993507385, - 0.3212509751319885, - 0.3245093524456024, - 0.32615581154823303, - 0.3261454701423645, - 0.3244785964488983, - 0.3212006390094757, - 0.31640106439590454, - 0.3102107048034668, - 0.3027985095977783, - 0.29436659812927246, - 0.28514498472213745, - 0.2753852605819702, - 0.26535359025001526, - 0.26547887921333313, - 0.2940625548362732, - 0.3218648135662079, - 0.3481273055076599, - 0.37213367223739624, - 0.39322906732559204, - 0.4108380675315857, - 0.4244803190231323, - 0.43378373980522156, - 0.4384945034980774, - 0.43848416209220886, - 0.43375298380851746, - 0.4244300127029419, - 0.410769522190094, - 0.3931441903114319, - 0.37203481793403625, - 0.3480171263217926, - 0.3217463195323944, - 0.2939389646053314, - 0.26535359025001526, - 0.26547887921333313, - 0.3095186650753021, - 0.3523554801940918, - 0.392820805311203, - 0.42981088161468506, - 0.462316632270813, - 0.48945152759552, - 0.5104753375053406, - 0.5248145461082458, - 0.5320780277252197, - 0.5320676565170288, - 0.5247837901115417, - 0.5104249715805054, - 0.4893830120563507, - 0.4622318148612976, - 0.4297119975090027, - 0.3927105963230133, - 0.3522369861602783, - 0.30939507484436035, - 0.26535356044769287, - 0.26547887921333313, - 0.3202023208141327, - 0.37343132495880127, - 0.4237139821052551, - 0.46967869997024536, - 0.5100716352462769, - 0.5437910556793213, - 0.5699170827865601, - 0.5877372026443481, - 0.5967651605606079, - 0.596754789352417, - 0.587706446647644, - 0.5698667764663696, - 0.5437225103378296, - 0.5099868178367615, - 0.469579815864563, - 0.42360377311706543, - 0.3733128309249878, - 0.3200787305831909, - 0.26535356044769287, - 0.26547887921333313, - 0.3249557316303253, - 0.38280850648880005, - 0.4374591112136841, - 0.4874168634414673, - 0.5313190221786499, - 0.5679680109024048, - 0.5963642001152039, - 0.6157330274581909, - 0.6255460381507874, - 0.6255356669425964, - 0.6157022714614868, - 0.5963138937950134, - 0.5678994655609131, - 0.5312341451644897, - 0.4873179793357849, - 0.4373489022254944, - 0.3826899826526642, - 0.32483214139938354, - 0.26535356044769287, - 0.26547887921333313, - 0.32326382398605347, - 0.3794708251953125, - 0.43256670236587524, - 0.48110318183898926, - 0.5237562656402588, - 0.559362530708313, - 0.5869506597518921, - 0.6057682037353516, - 0.6153018474578857, - 0.6152914762496948, - 0.6057374477386475, - 0.5869003534317017, - 0.5592939853668213, - 0.5236713886260986, - 0.4810042977333069, - 0.43245649337768555, - 0.37935230135917664, - 0.3231402039527893, - 0.26535356044769287, - 0.26547887921333313, - 0.31530991196632385, - 0.3637799620628357, - 0.4095669388771057, - 0.451421856880188, - 0.4882029891014099, - 0.5189070701599121, - 0.5426966547966003, - 0.5589227676391602, - 0.5671427249908447, - 0.5671323537826538, - 0.558892011642456, - 0.5426463484764099, - 0.5188385844230652, - 0.48811817169189453, - 0.4513229727745056, - 0.409456729888916, - 0.3636614680290222, - 0.3151863217353821, - 0.26535356044769287, - 0.26547887921333313, - 0.3019559383392334, - 0.3374362885951996, - 0.37095212936401367, - 0.40158921480178833, - 0.4285118579864502, - 0.4509856700897217, - 0.46839767694473267, - 0.4802728295326233, - 0.4862872362136841, - 0.48627692461013794, - 0.4802420735359192, - 0.46834731101989746, - 0.45091712474823, - 0.42842698097229004, - 0.40149033069610596, - 0.370841920375824, - 0.3373177647590637, - 0.3018323481082916, - 0.26535356044769287, - 0.26547887921333313, - 0.2846490442752838, - 0.3032945692539215, - 0.3209069073200226, - 0.3370055556297302, - 0.3511514663696289, - 0.36295872926712036, - 0.37210530042648315, - 0.3783416748046875, - 0.38149774074554443, - 0.3814873695373535, - 0.3783109188079834, - 0.3720549941062927, - 0.36289021372795105, - 0.35106661915779114, - 0.33690670132637024, - 0.3207966983318329, - 0.30317607522010803, - 0.28452545404434204, - 0.26535359025001526, - 0.26547887921333313, - 0.2652646601200104, - 0.2650545835494995, - 0.264854371547699, - 0.2646694779396057, - 0.26450496912002563, - 0.2643653154373169, - 0.26425430178642273, - 0.2641749978065491, - 0.26412954926490784, - 0.2641192078590393, - 0.26414424180984497, - 0.2642039656639099, - 0.2642967700958252, - 0.2644200921058655, - 0.26457059383392334, - 0.2647441625595093, - 0.26493608951568604, - 0.2651410698890686, - 0.26535359025001526, - 0.26547887921333313, - 0.2459033876657486, - 0.2268601506948471, - 0.2088686227798462, - 0.19241955876350403, - 0.17796167731285095, - 0.16588929295539856, - 0.15653175115585327, - 0.1501443237066269, - 0.1469011902809143, - 0.14689084887504578, - 0.1501135677099228, - 0.15648141503334045, - 0.16582077741622925, - 0.1778768002986908, - 0.19232067465782166, - 0.2087584137916565, - 0.22674164175987244, - 0.24577979743480682, - 0.26535359025001526, - 0.2654789090156555, - 0.22866332530975342, - 0.1928502917289734, - 0.1590166687965393, - 0.12808534502983093, - 0.1009000688791275, - 0.07820235192775726, - 0.06061132252216339, - 0.04860682785511017, - 0.04251636564731598, - 0.04250602424144745, - 0.04857607185840607, - 0.060560986399650574, - 0.07813379168510437, - 0.10081516206264496, - 0.12798646092414856, - 0.158906489610672, - 0.1927317976951599, - 0.22853973507881165, - 0.26535359025001526, - 0.2654789090156555, - 0.21541272103786469, - 0.1667105257511139, - 0.12070076167583466, - 0.07863844931125641, - 0.04167094826698303, - 0.010806649923324585, - -0.01311260461807251, - -0.029434293508529663, - -0.037713199853897095, - -0.03772357106208801, - -0.029465049505233765, - -0.01316291093826294, - 0.010738074779510498, - 0.04158604145050049, - 0.07853953540325165, - 0.12059055268764496, - 0.16659200191497803, - 0.2152891308069229, - 0.26535359025001526, - 0.2654789090156555, - 0.20758748054504395, - 0.15127348899841309, - 0.09807302057743073, - 0.04943720996379852, - 0.006692796945571899, - -0.028994351625442505, - -0.056650787591934204, - -0.07552200555801392, - -0.08509334921836853, - -0.08510372042655945, - -0.07555276155471802, - -0.056701093912124634, - -0.029062896966934204, - 0.006607860326766968, - 0.049338310956954956, - 0.09796281158924103, - 0.15115498006343842, - 0.20746389031410217, - 0.26535359025001526 - ], - "z": [ - -1.795446515083313, - -1.7959084510803223, - -1.7961246967315674, - -1.7960891723632812, - -1.7958030700683594, - -1.795274019241333, - -1.7945164442062378, - -1.7935510873794556, - -1.792404294013977, - -1.7911072969436646, - -1.7896955013275146, - -1.7882074117660522, - -1.7866835594177246, - -1.785165548324585, - -1.783694863319397, - -1.7823115587234497, - -1.7810533046722412, - -1.7799545526504517, - -1.7790452241897583, - -1.7783499956130981, - -1.795446515083313, - -1.7957154512405396, - -1.7957439422607422, - -1.795531153678894, - -1.795082926750183, - -1.7944114208221436, - -1.7935349941253662, - -1.7924774885177612, - -1.7912677526474, - -1.7899389266967773, - -1.788527011871338, - -1.787070870399475, - -1.7856098413467407, - -1.7841840982437134, - -1.7828322649002075, - -1.7815914154052734, - -1.780495285987854, - -1.779573917388916, - -1.7788522243499756, - -1.7783499956130981, - -1.795446515083313, - -1.795480728149414, - -1.795280933380127, - -1.794852375984192, - -1.7942068576812744, - -1.793362021446228, - -1.792340874671936, - -1.7911713123321533, - -1.78988516330719, - -1.7885174751281738, - -1.787105679512024, - -1.7856881618499756, - -1.7843036651611328, - -1.7829899787902832, - -1.7817829847335815, - -1.7807153463363647, - -1.7798165082931519, - -1.7791107892990112, - -1.77861750125885, - -1.7783499956130981, - -1.795446515083313, - -1.7952296733856201, - -1.794785499572754, - -1.794126272201538, - -1.7932698726654053, - -1.7922396659851074, - -1.7910637855529785, - -1.7897741794586182, - -1.788406252861023, - -1.7869970798492432, - -1.7855852842330933, - -1.7842092514038086, - -1.7829066514968872, - -1.7817128896713257, - -1.7806605100631714, - -1.7797783613204956, - -1.779090404510498, - -1.7786153554916382, - -1.7783663272857666, - -1.7783499956130981, - -1.795446515083313, - -1.7949893474578857, - -1.7943116426467896, - -1.7934316396713257, - -1.7923734188079834, - -1.791165828704834, - -1.7898417711257935, - -1.7884374856948853, - -1.7869912385940552, - -1.7855424880981445, - -1.7841306924819946, - -1.7827943563461304, - -1.7815699577331543, - -1.7804909944534302, - -1.779586672782898, - -1.7788819074630737, - -1.778395652770996, - -1.7781414985656738, - -1.7781261205673218, - -1.7783499956130981, - -1.795446515083313, - -1.7947860956192017, - -1.7939105033874512, - -1.7928435802459717, - -1.7916145324707031, - -1.7902568578720093, - -1.7888076305389404, - -1.7873061895370483, - -1.785793662071228, - -1.784311294555664, - -1.7828994989395142, - -1.7815967798233032, - -1.7804386615753174, - -1.7794567346572876, - -1.7786778211593628, - -1.7781230211257935, - -1.7778077125549316, - -1.7777403593063354, - -1.7779227495193481, - -1.7783499956130981, - -1.795446515083313, - -1.7946416139602661, - -1.7936255931854248, - -1.7924259901046753, - -1.7910757064819336, - -1.7896113395690918, - -1.7880730628967285, - -1.786502718925476, - -1.7849432229995728, - -1.7834370136260986, - -1.7820250988006592, - -1.7807462215423584, - -1.7796351909637451, - -1.7787221670150757, - -1.7780323028564453, - -1.777584195137024, - -1.7773901224136353, - -1.777455449104309, - -1.7777783870697021, - -1.7783499956130981, - -1.795446515083313, - -1.794571876525879, - -1.793487787246704, - -1.7922241687774658, - -1.7908151149749756, - -1.7892992496490479, - -1.7877179384231567, - -1.78611421585083, - -1.7845319509506226, - -1.783014178276062, - -1.781602382659912, - -1.7803350687026978, - -1.7792466878890991, - -1.778367042541504, - -1.7777202129364014, - -1.777323603630066, - -1.7771881818771362, - -1.777317762374878, - -1.7777085304260254, - -1.7783499956130981, - -1.795446515083313, - -1.7945841550827026, - -1.7935121059417725, - -1.7922598123550415, - -1.7908611297607422, - -1.7893543243408203, - -1.7877806425094604, - -1.7861828804016113, - -1.784604549407959, - -1.7830888032913208, - -1.781677007675171, - -1.7804075479507446, - -1.7793152332305908, - -1.7784297466278076, - -1.7777752876281738, - -1.7773696184158325, - -1.777223825454712, - -1.7773420810699463, - -1.7777208089828491, - -1.7783499956130981, - -1.795446515083313, - -1.7946772575378418, - -1.7936959266662598, - -1.7925291061401367, - -1.7912086248397827, - -1.7897707223892212, - -1.7882543802261353, - -1.7867010831832886, - -1.7851530313491821, - -1.7836527824401855, - -1.7822409868240356, - -1.7809561491012573, - -1.779833436012268, - -1.7789034843444824, - -1.7781915664672852, - -1.7777172327041626, - -1.7774932384490967, - -1.777525782585144, - -1.7778140306472778, - -1.7783499956130981, - -1.795446515083313, - -1.7948411703109741, - -1.794019103050232, - -1.793002963066101, - -1.7918201684951782, - -1.7905031442642212, - -1.7890877723693848, - -1.7876126766204834, - -1.7861181497573853, - -1.7846448421478271, - -1.7832330465316772, - -1.7819212675094604, - -1.7807451486587524, - -1.779736876487732, - -1.7789239883422852, - -1.7783286571502686, - -1.7779669761657715, - -1.7778490781784058, - -1.7779778242111206, - -1.7783499956130981, - -1.795446515083313, - -1.795058012008667, - -1.7944468259811401, - -1.7936298847198486, - -1.7926292419433594, - -1.791472315788269, - -1.790190577507019, - -1.7888190746307373, - -1.7873951196670532, - -1.78595769405365, - -1.7845458984375, - -1.7831982374191284, - -1.7819515466690063, - -1.7808396816253662, - -1.779893159866333, - -1.7791377305984497, - -1.7785940170288086, - -1.778276801109314, - -1.7781946659088135, - -1.7783499956130981, - -1.795446515083313, - -1.795304298400879, - -1.7949327230453491, - -1.794342041015625, - -1.793548345565796, - -1.7925732135772705, - -1.7914433479309082, - -1.7901893854141235, - -1.7888457775115967, - -1.7874488830566406, - -1.7860370874404907, - -1.7846487760543823, - -1.7833218574523926, - -1.7820924520492554, - -1.7809940576553345, - -1.7800568342208862, - -1.779306173324585, - -1.7787625789642334, - -1.7784409523010254, - -1.7783499956130981, - -1.795446515083313, - -1.7955533266067505, - -1.7954241037368774, - -1.7950623035430908, - -1.7944778203964233, - -1.7936865091323853, - -1.7927100658416748, - -1.7915751934051514, - -1.790312647819519, - -1.7889569997787476, - -1.7875452041625977, - -1.7861157655715942, - -1.7847075462341309, - -1.7833592891693115, - -1.7821074724197388, - -1.7809863090515137, - -1.7800264358520508, - -1.7792539596557617, - -1.7786900997161865, - -1.7783499956130981, - -1.795446515083313, - -1.7957781553268433, - -1.795867681503296, - -1.7957124710083008, - -1.7953168153762817, - -1.794691562652588, - -1.793853759765625, - -1.7928261756896973, - -1.7916369438171387, - -1.790318489074707, - -1.7889065742492676, - -1.7874400615692139, - -1.7859586477279663, - -1.7845028638839722, - -1.7831125259399414, - -1.7818254232406616, - -1.7806766033172607, - -1.7796975374221802, - -1.7789149284362793, - -1.7783499956130981, - -1.795446515083313, - -1.7959544658660889, - -1.7962154150009155, - -1.79622220993042, - -1.7959747314453125, - -1.7954795360565186, - -1.7947503328323364, - -1.793807029724121, - -1.7926751375198364, - -1.7913857698440552, - -1.7899739742279053, - -1.7884782552719116, - -1.7869393825531006, - -1.7853995561599731, - -1.783900499343872, - -1.7824832201004028, - -1.7811863422393799, - -1.7800452709197998, - -1.779091238975525, - -1.7783499956130981, - -1.795446515083313, - -1.7960630655288696, - -1.7964296340942383, - -1.7965362071990967, - -1.7963799238204956, - -1.7959649562835693, - -1.7953027486801147, - -1.7944111824035645, - -1.793314814567566, - -1.7920433282852173, - -1.7906315326690674, - -1.7891178131103516, - -1.7875436544418335, - -1.785951852798462, - -1.7843859195709229, - -1.782888412475586, - -1.7815003395080566, - -1.7802594900131226, - -1.7791997194290161, - -1.7783499956130981, - -1.795446515083313, - -1.79609215259552, - -1.7964870929718018, - -1.796620488166809, - -1.796488642692566, - -1.7960952520370483, - -1.7954509258270264, - -1.794573426246643, - -1.793486475944519, - -1.7922197580337524, - -1.7908079624176025, - -1.7892894744873047, - -1.7877057790756226, - -1.786100149154663, - -1.7845162153244019, - -1.7829971313476562, - -1.781584620475769, - -1.7803170680999756, - -1.779228925704956, - -1.7783499956130981, - -1.795446515083313, - -1.7960387468338013, - -1.7963817119598389, - -1.7964658737182617, - -1.7962892055511475, - -1.7958563566207886, - -1.795179009437561, - -1.7942758798599243, - -1.7931715250015259, - -1.791896104812622, - -1.7904843091964722, - -1.788974642753601, - -1.7874083518981934, - -1.7858282327651978, - -1.7842772006988525, - -1.7827976942062378, - -1.7814300060272217, - -1.7802115678787231, - -1.7791755199432373, - -1.7783499956130981, - -1.795446515083313, - -1.7959084510803223, - -1.7961246967315674, - -1.7960891723632812, - -1.7958030700683594, - -1.795274019241333, - -1.7945164442062378, - -1.7935510873794556, - -1.792404294013977, - -1.7911072969436646, - -1.7896955013275146, - -1.7882074117660522, - -1.7866835594177246, - -1.785165548324585, - -1.783694863319397, - -1.7823115587234497, - -1.7810533046722412, - -1.7799545526504517, - -1.7790452241897583, - -1.7783499956130981 - ] - }, - { - "marker": { - "color": "black", - "size": 2 - }, - "mode": "markers", - "name": "Means", - "type": "scatter3d", - "x": [ - 0.41768988966941833, - 0.3657273054122925, - 0.3102080523967743, - 0.24680906534194946, - 0.1773989051580429, - 0.11535055935382843, - 0.06249125301837921, - 0.017848510295152664, - -0.019985180348157883, - -0.05228719487786293, - -0.08010181784629822, - -0.1042562872171402, - -0.12540102005004883, - -0.1440490037202835, - -0.16060729324817657 - ], - "y": [ - -0.44257861375808716, - -0.6822264194488525, - -0.9382774233818054, - -1.1656588315963745, - -1.3152912855148315, - -1.4196877479553223, - -1.4965770244598389, - -1.5555310249328613, - -1.6021541357040405, - -1.6399415731430054, - -1.671183705329895, - -1.6974433660507202, - -1.7198231220245361, - -1.7391231060028076, - -1.7559373378753662 - ], - "z": [ - -0.1038898378610611, - 0.06224912405014038, - 0.23975986242294312, - 0.40866619348526, - 0.5419580936431885, - 0.6458460092544556, - 0.7280856966972351, - 0.7944312691688538, - 0.8489214181900024, - 0.894395112991333, - 0.9328779578208923, - 0.9658437967300415, - 0.9943858981132507, - 1.0193305015563965, - 1.0413119792938232 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.382763534784317, - 0.387756884098053, - 0.39356669783592224, - 0.4000345468521118, - 0.40698400139808655, - 0.4142254590988159, - 0.42156144976615906, - 0.4287918210029602, - 0.4357193410396576, - 0.44215506315231323, - 0.4479234516620636, - 0.45286715030670166, - 0.4568513035774231, - 0.45976725220680237, - 0.46153542399406433, - 0.4621075987815857, - 0.4614681601524353, - 0.45963460206985474, - 0.45665687322616577, - 0.45261624455451965, - 0.382763534784317, - 0.3846471607685089, - 0.3874320983886719, - 0.3910423815250397, - 0.39537954330444336, - 0.40032529830932617, - 0.40574467182159424, - 0.41148990392684937, - 0.41740426421165466, - 0.42332640290260315, - 0.4290947914123535, - 0.43455207347869873, - 0.43954941630363464, - 0.44395050406455994, - 0.4476352334022522, - 0.4505031406879425, - 0.45247599482536316, - 0.453499972820282, - 0.4535471498966217, - 0.45261624455451965, - 0.382763534784317, - 0.381384938955307, - 0.3809966444969177, - 0.3816092610359192, - 0.3832060396671295, - 0.3857434391975403, - 0.38915228843688965, - 0.3933395445346832, - 0.39819103479385376, - 0.4035743772983551, - 0.40934276580810547, - 0.4153388440608978, - 0.4213990569114685, - 0.42735809087753296, - 0.4330534040927887, - 0.43832963705062866, - 0.4430428743362427, - 0.4470645487308502, - 0.4502849280834198, - 0.45261624455451965, - 0.382763534784317, - 0.3783237338066101, - 0.37495774030685425, - 0.3727573752403259, - 0.3717826306819916, - 0.3720601201057434, - 0.37358227372169495, - 0.37630757689476013, - 0.38016167283058167, - 0.38503944873809814, - 0.3908078372478485, - 0.39730948209762573, - 0.4043670892715454, - 0.41178807616233826, - 0.41937005519866943, - 0.4269062280654907, - 0.434190958738327, - 0.44102561473846436, - 0.4472237229347229, - 0.45261624455451965, - 0.382763534784317, - 0.37579527497291565, - 0.36996978521347046, - 0.36544597148895264, - 0.36234721541404724, - 0.36075809597969055, - 0.3607219159603119, - 0.36223965883255005, - 0.3652699589729309, - 0.369730144739151, - 0.37549853324890137, - 0.38241779804229736, - 0.3902991712093353, - 0.3989277184009552, - 0.4080680310726166, - 0.4174708127975464, - 0.4268795847892761, - 0.43603765964508057, - 0.44469526410102844, - 0.45261624455451965, - 0.382763534784317, - 0.3740735650062561, - 0.366573303937912, - 0.3604673743247986, - 0.35592231154441833, - 0.35306215286254883, - 0.3519648313522339, - 0.35266032814979553, - 0.3551296591758728, - 0.3593054711818695, - 0.3650738596916199, - 0.37227746844291687, - 0.3807198405265808, - 0.3901706337928772, - 0.40037208795547485, - 0.4110459089279175, - 0.42190098762512207, - 0.4326411783695221, - 0.4429735541343689, - 0.45261624455451965, - 0.382763534784317, - 0.37334513664245605, - 0.36513635516166687, - 0.35836106538772583, - 0.3532041311264038, - 0.3498062193393707, - 0.34825998544692993, - 0.34860759973526, - 0.35083961486816406, - 0.35489511489868164, - 0.360663503408432, - 0.36798742413520813, - 0.3766671121120453, - 0.38646578788757324, - 0.39711615443229675, - 0.40832772850990295, - 0.4197946786880493, - 0.431204229593277, - 0.44224512577056885, - 0.45261624455451965, - 0.382763534784317, - 0.3736889958381653, - 0.3658146560192108, - 0.3593553304672241, - 0.35448724031448364, - 0.35134315490722656, - 0.35000884532928467, - 0.35052067041397095, - 0.35286468267440796, - 0.3569769859313965, - 0.36274540424346924, - 0.3700125217437744, - 0.37858015298843384, - 0.3882146179676056, - 0.3986530900001526, - 0.4096108376979828, - 0.4207889437675476, - 0.4318825304508209, - 0.4425889849662781, - 0.45261624455451965, - 0.382763534784317, - 0.375067800283432, - 0.3685346841812134, - 0.36334240436553955, - 0.35963258147239685, - 0.3575063943862915, - 0.35702186822891235, - 0.35819220542907715, - 0.36098548769950867, - 0.3653255105018616, - 0.37109389901161194, - 0.3781333267688751, - 0.3862517178058624, - 0.39522767066955566, - 0.4048163592815399, - 0.414756178855896, - 0.42477601766586304, - 0.4346025884151459, - 0.4439678192138672, - 0.45261624455451965, - 0.382763534784317, - 0.3773322105407715, - 0.37300172448158264, - 0.3698902428150177, - 0.36808258295059204, - 0.3676280975341797, - 0.36853915452957153, - 0.37079092860221863, - 0.37432196736335754, - 0.37903597950935364, - 0.384804368019104, - 0.391469806432724, - 0.3988504409790039, - 0.40674495697021484, - 0.4149380326271057, - 0.4232061803340912, - 0.4313238561153412, - 0.43906962871551514, - 0.4462321996688843, - 0.45261624455451965, - 0.382763534784317, - 0.38023680448532104, - 0.37873169779777527, - 0.37828925251960754, - 0.3789215683937073, - 0.3806113600730896, - 0.3833125829696655, - 0.3869515061378479, - 0.3914289176464081, - 0.3966226577758789, - 0.4023910462856293, - 0.40857672691345215, - 0.4150110185146332, - 0.42151838541030884, - 0.427921324968338, - 0.4340451657772064, - 0.43972286581993103, - 0.4447995722293854, - 0.44913679361343384, - 0.45261624455451965, - 0.382763534784317, - 0.38346683979034424, - 0.38510361313819885, - 0.38762930035591125, - 0.3909749388694763, - 0.3950493037700653, - 0.3997412323951721, - 0.404922753572464, - 0.41045254468917847, - 0.41617974638938904, - 0.4219481348991394, - 0.42760035395622253, - 0.43298226594924927, - 0.43794703483581543, - 0.44235923886299133, - 0.44609853625297546, - 0.44906291365623474, - 0.45117151737213135, - 0.45236682891845703, - 0.45261624455451965, - 0.382763534784317, - 0.3866722583770752, - 0.39142704010009766, - 0.3968982398509979, - 0.40293654799461365, - 0.4093772768974304, - 0.41604480147361755, - 0.42275717854499817, - 0.42933130264282227, - 0.43558791279792786, - 0.4413563013076782, - 0.4464791417121887, - 0.45081669092178345, - 0.45425060391426086, - 0.45668724179267883, - 0.4580601453781128, - 0.458331823348999, - 0.45749494433403015, - 0.455572247505188, - 0.45261624455451965, - 0.382763534784317, - 0.3895057439804077, - 0.397016704082489, - 0.40509161353111267, - 0.41351017355918884, - 0.42204272747039795, - 0.4304565489292145, - 0.4385221302509308, - 0.4460194706916809, - 0.4527440369129181, - 0.45851242542266846, - 0.463167279958725, - 0.46658164262771606, - 0.4686623513698578, - 0.469352662563324, - 0.468633770942688, - 0.46652522683143616, - 0.4630846083164215, - 0.4584057331085205, - 0.45261624455451965, - 0.382763534784317, - 0.391660213470459, - 0.4012669026851654, - 0.41132158041000366, - 0.4215499758720398, - 0.4316730499267578, - 0.4414147138595581, - 0.4505092203617096, - 0.4587085247039795, - 0.46578893065452576, - 0.4715573191642761, - 0.47585633397102356, - 0.4785687327384949, - 0.4796205163002014, - 0.47898298501968384, - 0.47667354345321655, - 0.47275519371032715, - 0.4673348069190979, - 0.4605602025985718, - 0.45261624455451965, - 0.382763534784317, - 0.3929022252559662, - 0.403717041015625, - 0.41491299867630005, - 0.4261847138404846, - 0.43722471594810486, - 0.4477318525314331, - 0.4574195146560669, - 0.4660234749317169, - 0.4733089804649353, - 0.47907739877700806, - 0.483171284198761, - 0.4854790270328522, - 0.4859376549720764, - 0.4845346510410309, - 0.48130831122398376, - 0.47634661197662354, - 0.4697849154472351, - 0.461802214384079, - 0.45261624455451965, - 0.382763534784317, - 0.3930971622467041, - 0.4041016101837158, - 0.4154767096042633, - 0.42691218852996826, - 0.4380960762500763, - 0.44872337579727173, - 0.4585041403770447, - 0.4671716094017029, - 0.47448933124542236, - 0.48025771975517273, - 0.48431941866874695, - 0.48656365275382996, - 0.48692917823791504, - 0.4854060411453247, - 0.4820357859134674, - 0.4769103229045868, - 0.4701694846153259, - 0.4619971513748169, - 0.45261624455451965, - 0.382763534784317, - 0.39222392439842224, - 0.40237894654273987, - 0.41295158863067627, - 0.4236535131931305, - 0.4341927468776703, - 0.44428184628486633, - 0.4536455571651459, - 0.46202850341796875, - 0.4692020118236542, - 0.47497040033340454, - 0.4791763424873352, - 0.48170506954193115, - 0.48248764872550964, - 0.4815027117729187, - 0.47877711057662964, - 0.47438520193099976, - 0.46844682097435, - 0.46112391352653503, - 0.45261624455451965, - 0.382763534784317, - 0.39037710428237915, - 0.3987357020378113, - 0.40761131048202515, - 0.4167618453502655, - 0.425937682390213, - 0.4348885416984558, - 0.4433702826499939, - 0.4511515200138092, - 0.45802000164985657, - 0.46378839015960693, - 0.46829932928085327, - 0.4714297950267792, - 0.4730943441390991, - 0.47324761748313904, - 0.47188544273376465, - 0.46904492378234863, - 0.4648035764694214, - 0.45927709341049194, - 0.45261624455451965, - 0.382763534784317, - 0.387756884098053, - 0.39356669783592224, - 0.4000345468521118, - 0.40698400139808655, - 0.4142254590988159, - 0.42156144976615906, - 0.4287917912006378, - 0.4357193410396576, - 0.44215506315231323, - 0.4479234516620636, - 0.45286715030670166, - 0.4568513035774231, - 0.45976722240448, - 0.46153542399406433, - 0.4621075987815857, - 0.4614681601524353, - 0.45963460206985474, - 0.45665687322616577, - 0.45261624455451965 - ], - "y": [ - -0.4064404368400574, - -0.38610130548477173, - -0.36730268597602844, - -0.350557416677475, - -0.33632224798202515, - -0.32498547434806824, - -0.316856324672699, - -0.3121565580368042, - -0.3110143542289734, - -0.31346091628074646, - -0.3194294571876526, - -0.3287571668624878, - -0.3411896228790283, - -0.356387734413147, - -0.37393689155578613, - -0.39335840940475464, - -0.4141225814819336, - -0.4356628954410553, - -0.4573918879032135, - -0.47871679067611694, - -0.4064404368400574, - -0.38789069652557373, - -0.3708326816558838, - -0.355731725692749, - -0.3429996967315674, - -0.33298394083976746, - -0.32595765590667725, - -0.32211247086524963, - -0.3215532898902893, - -0.3242953419685364, - -0.3302638828754425, - -0.3392960727214813, - -0.35114553570747375, - -0.36548906564712524, - -0.38193535804748535, - -0.40003588795661926, - -0.41929686069488525, - -0.43919289112091064, - -0.4591812789440155, - -0.47871679067611694, - -0.4064404368400574, - -0.39174365997314453, - -0.3784335255622864, - -0.3668730854988098, - -0.35737770795822144, - -0.3502063751220703, - -0.34555473923683167, - -0.3435496389865875, - -0.3442457914352417, - -0.3476242423057556, - -0.35359275341033936, - -0.3619886040687561, - -0.37258273363113403, - -0.38508614897727966, - -0.3991578221321106, - -0.4144138991832733, - -0.43043825030326843, - -0.44679373502731323, - -0.4630342423915863, - -0.47871679067611694, - -0.4064404368400574, - -0.3972426652908325, - -0.3892815113067627, - -0.3827742040157318, - -0.3778981566429138, - -0.37478646636009216, - -0.3735239505767822, - -0.3741450607776642, - -0.3766328692436218, - -0.38091951608657837, - -0.3868880271911621, - -0.39437565207481384, - -0.4031781256198883, - -0.4130553603172302, - -0.42373788356781006, - -0.4349343478679657, - -0.44633933901786804, - -0.45764175057411194, - -0.4685332477092743, - -0.47871679067611694, - -0.4064404368400574, - -0.40379178524017334, - -0.4022011458873749, - -0.40171191096305847, - -0.40233737230300903, - -0.4040605425834656, - -0.4068343937397003, - -0.4105832278728485, - -0.41520482301712036, - -0.4205731153488159, - -0.42654162645339966, - -0.4329476058483124, - -0.43961629271507263, - -0.4463658034801483, - -0.45301198959350586, - -0.4593735933303833, - -0.4652770459651947, - -0.4705613851547241, - -0.4750823974609375, - -0.47871679067611694, - -0.4064404368400574, - -0.4106813669204712, - -0.4157923460006714, - -0.4216340184211731, - -0.42804697155952454, - -0.4348563253879547, - -0.4418763518333435, - -0.4489154815673828, - -0.4557817876338959, - -0.46228793263435364, - -0.46825647354125977, - -0.4735246002674103, - -0.4779485762119293, - -0.4814077615737915, - -0.483807772397995, - -0.4850831627845764, - -0.4851991534233093, - -0.48415258526802063, - -0.48197194933891296, - -0.47871679067611694, - -0.4064404368400574, - -0.41716477274894714, - -0.4285823106765747, - -0.4403816759586334, - -0.4522409439086914, - -0.4638366401195526, - -0.47485247254371643, - -0.4849879741668701, - -0.49396663904190063, - -0.5015435814857483, - -0.507512092590332, - -0.511709451675415, - -0.5140210390090942, - -0.5143839120864868, - -0.5127880573272705, - -0.5092771053314209, - -0.503946840763092, - -0.49694254994392395, - -0.4884553551673889, - -0.47871679067611694, - -0.4064404368400574, - -0.42253944277763367, - -0.4391850531101227, - -0.45592325925827026, - -0.47229743003845215, - -0.4878609776496887, - -0.5021893382072449, - -0.5148916244506836, - -0.5256214737892151, - -0.5340860486030579, - -0.5400546193122864, - -0.5433642268180847, - -0.5439247488975525, - -0.5417207479476929, - -0.536812424659729, - -0.5293336510658264, - -0.5194883942604065, - -0.5075452923774719, - -0.49383002519607544, - -0.47871679067611694, - -0.4064404368400574, - -0.42622295022010803, - -0.4464516043663025, - -0.46657460927963257, - -0.4860430955886841, - -0.5043259263038635, - -0.5209245085716248, - -0.5353859663009644, - -0.5473159551620483, - -0.5563889145851135, - -0.5623574256896973, - -0.565058708190918, - -0.5644190311431885, - -0.5604559183120728, - -0.5532773733139038, - -0.5430792570114136, - -0.5301397442817688, - -0.5148118138313293, - -0.4975135326385498, - -0.47871679067611694, - -0.4064404368400574, - -0.42781612277030945, - -0.44959449768066406, - -0.4711814820766449, - -0.49198827147483826, - -0.5114473104476929, - -0.5290277600288391, - -0.5442501306533813, - -0.5566991567611694, - -0.566035270690918, - -0.5720037817955017, - -0.5744419097900391, - -0.5732831954956055, - -0.5685591697692871, - -0.5603987574577332, - -0.5490244626998901, - -0.5347466468811035, - -0.5179547071456909, - -0.4991067051887512, - -0.47871679067611694, - -0.4064404368400574, - -0.427146315574646, - -0.4482731521129608, - -0.46924465894699097, - -0.489488810300827, - -0.5084533095359802, - -0.5256209969520569, - -0.5405234694480896, - -0.552754282951355, - -0.5619797706604004, - -0.5679482817649841, - -0.5704970359802246, - -0.5695565342903137, - -0.5651524066925049, - -0.5574047565460205, - -0.5465250015258789, - -0.532809853553772, - -0.5166333913803101, - -0.49843692779541016, - -0.47871679067611694, - -0.4064404368400574, - -0.4242861270904541, - -0.442630797624588, - -0.4609740376472473, - -0.478815495967865, - -0.49566850066185, - -0.5110733509063721, - -0.5246098637580872, - -0.5359087586402893, - -0.5446618795394897, - -0.5506303906440735, - -0.5536515712738037, - -0.5536429286003113, - -0.5506048202514648, - -0.5446199774742126, - -0.5358517169952393, - -0.5245391726493835, - -0.5109910368919373, - -0.4955767095088959, - -0.47871679067611694, - -0.4064404368400574, - -0.4195455014705658, - -0.4332788288593292, - -0.4472658336162567, - -0.461124986410141, - -0.47447824478149414, - -0.48696136474609375, - -0.4982338547706604, - -0.5079882144927979, - -0.515958309173584, - -0.5219268798828125, - -0.5257309675216675, - -0.5272669196128845, - -0.5264927744865417, - -0.5234296917915344, - -0.5181611776351929, - -0.5108309984207153, - -0.5016390681266785, - -0.49083608388900757, - -0.47871679067611694, - -0.4064404368400574, - -0.4134381115436554, - -0.421230673789978, - -0.42960554361343384, - -0.43833431601524353, - -0.44717881083488464, - -0.45589786767959595, - -0.46425357460975647, - -0.4720180630683899, - -0.47897952795028687, - -0.484948068857193, - -0.4897608757019043, - -0.493286669254303, - -0.49542927742004395, - -0.4961302578449249, - -0.4953705072402954, - -0.49317070841789246, - -0.4895908832550049, - -0.48472872376441956, - -0.47871679067611694, - -0.4064404368400574, - -0.4066258668899536, - -0.40779197216033936, - -0.4099069833755493, - -0.4129132032394409, - -0.4167286157608032, - -0.421249121427536, - -0.4263514578342438, - -0.4318964183330536, - -0.4377327859401703, - -0.4437013268470764, - -0.449639230966568, - -0.4553845524787903, - -0.460780531167984, - -0.4656800329685211, - -0.4699493944644928, - -0.47347214818000793, - -0.4761522114276886, - -0.4779164493083954, - -0.47871679067611694, - -0.4064404368400574, - -0.3998469114303589, - -0.39441901445388794, - -0.3903047740459442, - -0.38761642575263977, - -0.3864273130893707, - -0.3867698609828949, - -0.38863471150398254, - -0.39197102189064026, - -0.396687775850296, - -0.40265628695487976, - -0.4097138047218323, - -0.41766777634620667, - -0.4263012707233429, - -0.4353787302970886, - -0.44465261697769165, - -0.45386993885040283, - -0.4627792239189148, - -0.47113752365112305, - -0.47871679067611694, - -0.4064404368400574, - -0.3938359022140503, - -0.3825609087944031, - -0.3729230761528015, - -0.3651852607727051, - -0.3595585227012634, - -0.3561963438987732, - -0.3551904559135437, - -0.356568306684494, - -0.3602922856807709, - -0.366260826587677, - -0.37431108951568604, - -0.3842235505580902, - -0.3957277536392212, - -0.4085099399089813, - -0.42222145199775696, - -0.43648821115493774, - -0.4509211480617523, - -0.46512648463249207, - -0.47871679067611694, - -0.4064404368400574, - -0.3892441689968109, - -0.3735027313232422, - -0.3596455156803131, - -0.34805047512054443, - -0.33903393149375916, - -0.33284181356430054, - -0.32964301109313965, - -0.32952481508255005, - -0.3324904441833496, - -0.33845895528793335, - -0.34726759791374207, - -0.35867610573768616, - -0.37237322330474854, - -0.38798534870147705, - -0.4050866663455963, - -0.42321065068244934, - -0.44186297059059143, - -0.4605347812175751, - -0.47871679067611694, - -0.4064404368400574, - -0.3865693509578705, - -0.3682260513305664, - -0.35191088914871216, - -0.3380689322948456, - -0.3270776867866516, - -0.3192370533943176, - -0.31476080417633057, - -0.31377112865448, - -0.31629496812820435, - -0.3222634792327881, - -0.331513911485672, - -0.3437938690185547, - -0.35876843333244324, - -0.3760291337966919, - -0.39510512351989746, - -0.4154760539531708, - -0.43658626079559326, - -0.45785996317863464, - -0.47871679067611694, - -0.4064404368400574, - -0.38610130548477173, - -0.36730268597602844, - -0.350557416677475, - -0.33632224798202515, - -0.32498547434806824, - -0.316856324672699, - -0.3121565580368042, - -0.3110143542289734, - -0.31346091628074646, - -0.3194294571876526, - -0.3287571668624878, - -0.3411896228790283, - -0.356387734413147, - -0.37393689155578613, - -0.39335840940475464, - -0.4141225814819336, - -0.4356628954410553, - -0.4573918879032135, - -0.47871679067611694 - ], - "z": [ - -0.06268595159053802, - -0.0776900053024292, - -0.09340871870517731, - -0.10941333323717117, - -0.12526726722717285, - -0.1405380815267563, - -0.15480925142765045, - -0.1676914393901825, - -0.17883330583572388, - -0.1879309117794037, - -0.19473609328269958, - -0.19906321167945862, - -0.2007942646741867, - -0.19988201558589935, - -0.19635134935379028, - -0.19029857218265533, - -0.18188878893852234, - -0.17135140299797058, - -0.158973827958107, - -0.14509370923042297, - -0.06268595159053802, - -0.07875654101371765, - -0.09551269561052322, - -0.11249735206365585, - -0.12924723327159882, - -0.14530541002750397, - -0.16023388504981995, - -0.17362543940544128, - -0.1851148009300232, - -0.19438853859901428, - -0.20119372010231018, - -0.20534470677375793, - -0.2067282646894455, - -0.20530666410923004, - -0.20111867785453796, - -0.1942785233259201, - -0.18497280776500702, - -0.1734553724527359, - -0.16004036366939545, - -0.14509370923042297, - -0.06268595159053802, - -0.07814247906208038, - -0.09430131316184998, - -0.11072170734405518, - -0.12695574760437012, - -0.14256058633327484, - -0.15711061656475067, - -0.1702089011669159, - -0.1814981997013092, - -0.19067052006721497, - -0.19747570157051086, - -0.20172810554504395, - -0.2033117264509201, - -0.20218339562416077, - -0.19837385416030884, - -0.1919870376586914, - -0.18319717049598694, - -0.17224398255348206, - -0.15942630171775818, - -0.14509370923042297, - -0.06268595904111862, - -0.07591435313224792, - -0.08990585058927536, - -0.1042788028717041, - -0.11864113807678223, - -0.1326010823249817, - -0.1457778811454773, - -0.15781207382678986, - -0.1683754026889801, - -0.1771797388792038, - -0.1839849054813385, - -0.18860530853271484, - -0.19091489911079407, - -0.1908506453037262, - -0.1884143352508545, - -0.18367242813110352, - -0.17675425112247467, - -0.16784852743148804, - -0.15719817578792572, - -0.14509370923042297, - -0.06268595904111862, - -0.07231363654136658, - -0.08280262351036072, - -0.09386681765317917, - -0.10520441830158234, - -0.11650615185499191, - -0.12746375799179077, - -0.13777831196784973, - -0.14716848731040955, - -0.15537813305854797, - -0.16218331456184387, - -0.1673983931541443, - -0.17088113725185394, - -0.17253652215003967, - -0.1723194122314453, - -0.17023572325706482, - -0.16634227335453033, - -0.1607452929019928, - -0.15359744429588318, - -0.14509370923042297, - -0.06268595904111862, - -0.06773050129413605, - -0.07376136630773544, - -0.08061406761407852, - -0.08810167014598846, - -0.0960199236869812, - -0.1041528582572937, - -0.11227861791849136, - -0.12017554044723511, - -0.12762825191020966, - -0.13443341851234436, - -0.14040544629096985, - -0.14538143575191498, - -0.1492256224155426, - -0.151833176612854, - -0.15313297510147095, - -0.1530895233154297, - -0.15170404314994812, - -0.14901432394981384, - -0.14509370923042297, - -0.06268596649169922, - -0.06266161054372787, - -0.06376185268163681, - -0.06595669686794281, - -0.0691862404346466, - -0.07336241751909256, - -0.07837130129337311, - -0.08407626301050186, - -0.09032168984413147, - -0.09693721681833267, - -0.10374239832162857, - -0.11055159568786621, - -0.11717908084392548, - -0.12344406545162201, - -0.12917566299438477, - -0.1342175304889679, - -0.13843214511871338, - -0.1417045295238495, - -0.14394542574882507, - -0.14509370923042297, - -0.06268596649169922, - -0.05765625834465027, - -0.05388768017292023, - -0.05148303881287575, - -0.050507910549640656, - -0.050988905131816864, - -0.05291289836168289, - -0.05622740834951401, - -0.06084202602505684, - -0.06663088500499725, - -0.07343605905771255, - -0.08107193559408188, - -0.08933022618293762, - -0.09798566997051239, - -0.10680215805768967, - -0.11553920805454254, - -0.12395849823951721, - -0.1318303644657135, - -0.13894008100032806, - -0.14509370923042297, - -0.06268596649169922, - -0.05325684696435928, - -0.04520886763930321, - -0.03876155614852905, - -0.034090764820575714, - -0.03132392466068268, - -0.030536480247974396, - -0.03174992650747299, - -0.034931160509586334, - -0.03999341279268265, - -0.04679859057068825, - -0.055161066353321075, - -0.0648527443408966, - -0.0756092369556427, - -0.08713716268539429, - -0.0991220623254776, - -0.11123701184988022, - -0.12315154820680618, - -0.13454066216945648, - -0.14509370923042297, - -0.06268596649169922, - -0.04994012787938118, - -0.03866589814424515, - -0.02917081117630005, - -0.02171386033296585, - -0.016498461365699768, - -0.013666868209838867, - -0.01329631358385086, - -0.01539691537618637, - -0.01991138607263565, - -0.026716560125350952, - -0.03562682121992111, - -0.046399135142564774, - -0.05873963236808777, - -0.07231169939041138, - -0.08674515038728714, - -0.10164626687765121, - -0.11660857498645782, - -0.13122394680976868, - -0.14509370923042297, - -0.06268596649169922, - -0.048065513372421265, - -0.034967802464962006, - -0.02375011146068573, - -0.014718420803546906, - -0.008119098842144012, - -0.0041321441531181335, - -0.002866312861442566, - -0.0043561458587646484, - -0.008561007678508759, - -0.01536618173122406, - -0.02458605170249939, - -0.03596913069486618, - -0.049204908311367035, - -0.06393232941627502, - -0.0797497108578682, - -0.0962255671620369, - -0.11291048675775528, - -0.12934933602809906, - -0.14509372413158417, - -0.06268596649169922, - -0.04783615097403526, - -0.03451533615589142, - -0.02308688312768936, - -0.01386251300573349, - -0.007093861699104309, - -0.0029655545949935913, - -0.0015901848673820496, - -0.003005288541316986, - -0.0071722641587257385, - -0.01397743821144104, - -0.023235194385051727, - -0.034693002700805664, - -0.0480383038520813, - -0.06290709972381592, - -0.07889380306005478, - -0.09556233882904053, - -0.1124580129981041, - -0.12911997735500336, - -0.14509372413158417, - -0.06268596649169922, - -0.049276892095804214, - -0.03735751658678055, - -0.027252979576587677, - -0.01923888921737671, - -0.013533852994441986, - -0.01029350608587265, - -0.009606190025806427, - -0.01149071753025055, - -0.015895642340183258, - -0.02270081639289856, - -0.03172062337398529, - -0.04270901158452034, - -0.055366262793540955, - -0.0693470910191536, - -0.0842701718211174, - -0.09972843527793884, - -0.11530019342899323, - -0.1305607110261917, - -0.14509372413158417, - -0.06268596649169922, - -0.05223161727190018, - -0.04318636655807495, - -0.035796962678432465, - -0.030264943838119507, - -0.026741214096546173, - -0.02532190829515457, - -0.026045717298984528, - -0.02889292687177658, - -0.0337858572602272, - -0.040591031312942505, - -0.049122828990221024, - -0.05914853885769844, - -0.07039467245340347, - -0.08255445957183838, - -0.0952962264418602, - -0.10827241092920303, - -0.12112905085086823, - -0.13351543247699738, - -0.14509370923042297, - -0.06268596649169922, - -0.056380122900009155, - -0.05137022212147713, - -0.04779292270541191, - -0.04574579745531082, - -0.0452846921980381, - -0.04642218351364136, - -0.049127236008644104, - -0.0533260777592659, - -0.05890416353940964, - -0.06570933759212494, - -0.07355598360300064, - -0.08223005384206772, - -0.09149494767189026, - -0.1010979413986206, - -0.11077708750963211, - -0.12026837468147278, - -0.1293129026889801, - -0.13766394555568695, - -0.14509370923042297, - -0.06268596649169922, - -0.06127285957336426, - -0.061022236943244934, - -0.061940934509038925, - -0.06400388479232788, - -0.06715482473373413, - -0.07130779325962067, - -0.07634951174259186, - -0.08214247226715088, - -0.08852863311767578, - -0.09533381462097168, - -0.10237237811088562, - -0.10945233702659607, - -0.11638056486845016, - -0.12296807765960693, - -0.12903517484664917, - -0.1344163864850998, - -0.1389649212360382, - -0.14255668222904205, - -0.14509370923042297, - -0.06268595904111862, - -0.06637963652610779, - -0.07109648734331131, - -0.0767078623175621, - -0.08306068927049637, - -0.08998168259859085, - -0.0972820520401001, - -0.10476266592741013, - -0.11221946775913239, - -0.11944905668497086, - -0.12625423073768616, - -0.13244937360286713, - -0.13786548376083374, - -0.142354816198349, - -0.14579492807388306, - -0.14809198677539825, - -0.14918331801891327, - -0.149039164185524, - -0.14766345918178558, - -0.14509370923042297, - -0.06268595904111862, - -0.07114703953266144, - -0.0805012583732605, - -0.09049346297979355, - -0.10085108131170273, - -0.11129157990217209, - -0.1215301901102066, - -0.1312876045703888, - -0.14029769599437714, - -0.1483146697282791, - -0.15511983633041382, - -0.16052760183811188, - -0.164390429854393, - -0.1666029542684555, - -0.1671048402786255, - -0.16588237881660461, - -0.16296891868114471, - -0.15844394266605377, - -0.15243086218833923, - -0.14509370923042297, - -0.06268595904111862, - -0.0750584527850151, - -0.08821739256381989, - -0.10180383920669556, - -0.11544717848300934, - -0.12877526879310608, - -0.14142455160617828, - -0.15304997563362122, - -0.1633344441652298, - -0.17199742794036865, - -0.17880260944366455, - -0.18356436491012573, - -0.18615280091762543, - -0.18649733066558838, - -0.18458852171897888, - -0.18047848343849182, - -0.17427928745746613, - -0.16616007685661316, - -0.1563422679901123, - -0.14509370923042297, - -0.06268595159053802, - -0.0776900053024292, - -0.09340871870517731, - -0.10941333323717117, - -0.12526726722717285, - -0.14053809642791748, - -0.15480925142765045, - -0.1676914542913437, - -0.17883332073688507, - -0.1879309117794037, - -0.19473609328269958, - -0.1990632265806198, - -0.2007942795753479, - -0.19988201558589935, - -0.19635134935379028, - -0.19029858708381653, - -0.18188878893852234, - -0.17135140299797058, - -0.158973827958107, - -0.14509370923042297 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.486172616481781, - 0.47929853200912476, - 0.4693264961242676, - 0.45652857422828674, - 0.4412538409233093, - 0.4239189326763153, - 0.40499669313430786, - 0.38500329852104187, - 0.36448410153388977, - 0.34399881958961487, - 0.32410621643066406, - 0.3053489327430725, - 0.28823864459991455, - 0.2732420265674591, - 0.2607681453227997, - 0.25115731358528137, - 0.24467162787914276, - 0.2414880245923996, - 0.24169334769248962, - 0.24528200924396515, - 0.486172616481781, - 0.47958195209503174, - 0.4698856770992279, - 0.4573482275009155, - 0.4423115849494934, - 0.4251859188079834, - 0.4064383804798126, - 0.38658034801483154, - 0.3661535084247589, - 0.3457150459289551, - 0.3258224427700043, - 0.30701836943626404, - 0.2898156940937042, - 0.27468371391296387, - 0.26203516125679016, - 0.25221505761146545, - 0.24549126625061035, - 0.24204719066619873, - 0.241976797580719, - 0.24528200924396515, - 0.486172616481781, - 0.4804016053676605, - 0.4715026021003723, - 0.4597182869911194, - 0.4453701674938202, - 0.42884960770606995, - 0.4106072187423706, - 0.3911406397819519, - 0.370980829000473, - 0.3506777286529541, - 0.3307851552963257, - 0.31184569001197815, - 0.2943759858608246, - 0.27885255217552185, - 0.2656988501548767, - 0.25527364015579224, - 0.2478613406419754, - 0.24366410076618195, - 0.24279645085334778, - 0.24528200924396515, - 0.486172616481781, - 0.4816685914993286, - 0.47400203347206116, - 0.46338197588920593, - 0.4500981867313385, - 0.4345129728317261, - 0.4170514643192291, - 0.3981899619102478, - 0.3784429728984833, - 0.35834914445877075, - 0.33845654129981995, - 0.3193078339099884, - 0.30142533779144287, - 0.28529679775238037, - 0.27136221528053284, - 0.26000165939331055, - 0.25152504444122314, - 0.2461635321378708, - 0.24406343698501587, - 0.24528200924396515, - 0.486172616481781, - 0.4832456707954407, - 0.47711312770843506, - 0.4679422676563263, - 0.4559832811355591, - 0.44156232476234436, - 0.4250727891921997, - 0.4069644510746002, - 0.38773128390312195, - 0.3678978979587555, - 0.3480053246021271, - 0.3285961449146271, - 0.3101997971534729, - 0.29331809282302856, - 0.2784115672111511, - 0.26588672399520874, - 0.2560853362083435, - 0.24927464127540588, - 0.24564050137996674, - 0.24528200924396515, - 0.486172616481781, - 0.4849618971347809, - 0.4804987907409668, - 0.4729049801826477, - 0.46238768100738525, - 0.4492337107658386, - 0.43380191922187805, - 0.41651320457458496, - 0.397839218378067, - 0.37828928232192993, - 0.3583967089653015, - 0.33870407938957214, - 0.31974858045578003, - 0.3020472526550293, - 0.2860829532146454, - 0.2722911238670349, - 0.26104801893234253, - 0.25266027450561523, - 0.24735672771930695, - 0.24528200924396515, - 0.486172616481781, - 0.48663130402565, - 0.4837920665740967, - 0.4777323007583618, - 0.46861737966537476, - 0.4566958546638489, - 0.4422929286956787, - 0.42580151557922363, - 0.4076714515686035, - 0.388397216796875, - 0.3685046434402466, - 0.34853628277778625, - 0.3290368616580963, - 0.31053826212882996, - 0.29354509711265564, - 0.2785208225250244, - 0.26587533950805664, - 0.2559535801410675, - 0.24902614951133728, - 0.24528200924396515, - 0.486172616481781, - 0.4880729913711548, - 0.48663613200187683, - 0.4819011688232422, - 0.4739972949028015, - 0.4631401002407074, - 0.44962573051452637, - 0.4338228404521942, - 0.4161624610424042, - 0.39712637662887573, - 0.3772337734699249, - 0.3570273220539093, - 0.3370581865310669, - 0.3178710639476776, - 0.29998934268951416, - 0.28390076756477356, - 0.270044207572937, - 0.25879764556884766, - 0.25046783685684204, - 0.24528200924396515, - 0.486172616481781, - 0.48913073539733887, - 0.4887227416038513, - 0.48495975136756897, - 0.47794443368911743, - 0.4678680896759033, - 0.4550056457519531, - 0.4397079050540924, - 0.4223921597003937, - 0.4035307765007019, - 0.3836381733417511, - 0.3632570207118988, - 0.3429432511329651, - 0.32325097918510437, - 0.30471736192703247, - 0.2878479063510895, - 0.2731028199195862, - 0.26088425517082214, - 0.2515255808830261, - 0.24528200924396515, - 0.486172616481781, - 0.4896898865699768, - 0.4898258447647095, - 0.4865766763687134, - 0.4800310730934143, - 0.47036755084991455, - 0.4578497111797333, - 0.4428189992904663, - 0.42568546533584595, - 0.40691640973091125, - 0.38702380657196045, - 0.3665503263473511, - 0.3460543751716614, - 0.3260950446128845, - 0.3072167932987213, - 0.28993454575538635, - 0.2747197151184082, - 0.2619873285293579, - 0.25208473205566406, - 0.24528200924396515, - 0.486172616481781, - 0.4896898865699768, - 0.4898258447647095, - 0.4865766763687134, - 0.4800310730934143, - 0.47036755084991455, - 0.4578497111797333, - 0.4428189992904663, - 0.42568546533584595, - 0.40691640973091125, - 0.38702380657196045, - 0.3665503263473511, - 0.3460543751716614, - 0.3260950446128845, - 0.3072167932987213, - 0.28993454575538635, - 0.2747197151184082, - 0.2619873285293579, - 0.25208473205566406, - 0.24528200924396515, - 0.486172616481781, - 0.48913073539733887, - 0.4887227416038513, - 0.48495975136756897, - 0.47794443368911743, - 0.4678680896759033, - 0.4550056457519531, - 0.4397079050540924, - 0.4223921597003937, - 0.4035307765007019, - 0.3836381733417511, - 0.3632570207118988, - 0.3429432511329651, - 0.32325097918510437, - 0.30471736192703247, - 0.2878479063510895, - 0.2731028199195862, - 0.26088425517082214, - 0.2515255808830261, - 0.24528200924396515, - 0.486172616481781, - 0.4880729913711548, - 0.48663613200187683, - 0.4819011688232422, - 0.4739972949028015, - 0.4631401002407074, - 0.44962573051452637, - 0.4338228404521942, - 0.4161624610424042, - 0.39712637662887573, - 0.3772337734699249, - 0.3570273220539093, - 0.3370581865310669, - 0.3178710639476776, - 0.29998934268951416, - 0.28390076756477356, - 0.270044207572937, - 0.25879764556884766, - 0.25046783685684204, - 0.24528200924396515, - 0.486172616481781, - 0.48663130402565, - 0.4837920665740967, - 0.4777323007583618, - 0.46861737966537476, - 0.4566958546638489, - 0.4422929286956787, - 0.42580151557922363, - 0.40767142176628113, - 0.388397216796875, - 0.3685046434402466, - 0.34853628277778625, - 0.3290368616580963, - 0.31053826212882996, - 0.29354506731033325, - 0.2785208225250244, - 0.26587533950805664, - 0.2559535801410675, - 0.24902614951133728, - 0.24528200924396515, - 0.486172616481781, - 0.4849618971347809, - 0.4804987907409668, - 0.4729049801826477, - 0.46238768100738525, - 0.4492337107658386, - 0.43380191922187805, - 0.41651323437690735, - 0.397839218378067, - 0.37828928232192993, - 0.3583967089653015, - 0.33870407938957214, - 0.31974858045578003, - 0.3020472526550293, - 0.2860829532146454, - 0.2722911238670349, - 0.26104801893234253, - 0.25266027450561523, - 0.24735672771930695, - 0.24528200924396515, - 0.486172616481781, - 0.4832456707954407, - 0.47711312770843506, - 0.4679422676563263, - 0.4559832811355591, - 0.44156232476234436, - 0.4250727891921997, - 0.4069644510746002, - 0.38773128390312195, - 0.3678978979587555, - 0.3480053246021271, - 0.3285961449146271, - 0.3101997971534729, - 0.29331812262535095, - 0.2784115672111511, - 0.26588675379753113, - 0.2560853362083435, - 0.24927464127540588, - 0.24564050137996674, - 0.24528200924396515, - 0.486172616481781, - 0.4816685914993286, - 0.47400203347206116, - 0.46338197588920593, - 0.4500981867313385, - 0.4345129728317261, - 0.4170514643192291, - 0.3981899619102478, - 0.3784429728984833, - 0.35834914445877075, - 0.33845654129981995, - 0.3193078339099884, - 0.30142533779144287, - 0.28529679775238037, - 0.27136221528053284, - 0.26000165939331055, - 0.25152504444122314, - 0.2461635321378708, - 0.24406343698501587, - 0.24528200924396515, - 0.486172616481781, - 0.4804016053676605, - 0.4715026021003723, - 0.4597182869911194, - 0.4453701674938202, - 0.42884960770606995, - 0.4106072187423706, - 0.3911406397819519, - 0.370980829000473, - 0.3506777286529541, - 0.3307851552963257, - 0.31184569001197815, - 0.2943759858608246, - 0.27885255217552185, - 0.2656988501548767, - 0.25527364015579224, - 0.2478613406419754, - 0.24366410076618195, - 0.24279645085334778, - 0.24528200924396515, - 0.486172616481781, - 0.47958195209503174, - 0.4698856770992279, - 0.4573482275009155, - 0.4423115849494934, - 0.4251859188079834, - 0.4064383804798126, - 0.38658034801483154, - 0.3661535084247589, - 0.3457150459289551, - 0.3258224427700043, - 0.30701833963394165, - 0.2898156940937042, - 0.27468371391296387, - 0.26203516125679016, - 0.25221502780914307, - 0.24549126625061035, - 0.24204719066619873, - 0.241976797580719, - 0.24528200924396515, - 0.486172616481781, - 0.47929853200912476, - 0.4693264961242676, - 0.45652857422828674, - 0.4412538409233093, - 0.4239189326763153, - 0.40499669313430786, - 0.38500329852104187, - 0.36448410153388977, - 0.34399881958961487, - 0.32410621643066406, - 0.3053489327430725, - 0.28823864459991455, - 0.2732420265674591, - 0.2607681453227997, - 0.25115731358528137, - 0.24467162787914276, - 0.2414880245923996, - 0.24169334769248962, - 0.24528200924396515 - ], - "y": [ - -0.6998650431632996, - -0.7237511873245239, - -0.7465046048164368, - -0.7675046920776367, - -0.7861786484718323, - -0.8020169734954834, - -0.8145878314971924, - -0.8235481381416321, - -0.8286535739898682, - -0.8297648429870605, - -0.8268516659736633, - -0.8199934959411621, - -0.8093773722648621, - -0.7952929735183716, - -0.7781243324279785, - -0.7583398818969727, - -0.7364792227745056, - -0.7131386995315552, - -0.6889550089836121, - -0.6645877361297607, - -0.6998650431632996, - -0.7187187075614929, - -0.7365769743919373, - -0.7529526352882385, - -0.7673990726470947, - -0.7795222997665405, - -0.7889914512634277, - -0.7955483794212341, - -0.7990142107009888, - -0.7992943525314331, - -0.7963811159133911, - -0.7903541326522827, - -0.7813776731491089, - -0.7696965932846069, - -0.7556295990943909, - -0.7395603656768799, - -0.7219271659851074, - -0.7032110691070557, - -0.683922529220581, - -0.6645877361297607, - -0.6998651027679443, - -0.711617112159729, - -0.7225674390792847, - -0.7324173450469971, - -0.7408981919288635, - -0.747778594493866, - -0.7528709173202515, - -0.7560362815856934, - -0.7571882605552673, - -0.7562955021858215, - -0.7533823251724243, - -0.748528242111206, - -0.7418655753135681, - -0.7335760593414307, - -0.7238859534263611, - -0.7130594253540039, - -0.701391875743866, - -0.6892015337944031, - -0.6768209338188171, - -0.6645877361297607, - -0.6998651027679443, - -0.7032158970832825, - -0.7059941291809082, - -0.7081241011619568, - -0.7095476388931274, - -0.7102259397506714, - -0.7101404070854187, - -0.70929354429245, - -0.7077082991600037, - -0.7054280042648315, - -0.7025148272514343, - -0.6990482807159424, - -0.6951227784156799, - -0.6908455491065979, - -0.6863332390785217, - -0.6817088723182678, - -0.6770986318588257, - -0.6726282835006714, - -0.6684197187423706, - -0.6645877361297607, - -0.6998651027679443, - -0.6944255232810974, - -0.6886531710624695, - -0.6827055215835571, - -0.6767447590827942, - -0.6709336042404175, - -0.6654304265975952, - -0.6603854298591614, - -0.6559361815452576, - -0.6522040963172913, - -0.649290919303894, - -0.6472761631011963, - -0.6462147235870361, - -0.6461355686187744, - -0.6470409035682678, - -0.6489060521125793, - -0.651680052280426, - -0.6552872657775879, - -0.6596293449401855, - -0.6645877361297607, - -0.6998651027679443, - -0.6861984729766846, - -0.6724236011505127, - -0.6589160561561584, - -0.6460443735122681, - -0.6341596245765686, - -0.6235859990119934, - -0.6146119832992554, - -0.6074823141098022, - -0.6023914217948914, - -0.5994782447814941, - -0.5988222360610962, - -0.6004412174224854, - -0.6042911410331726, - -0.610266923904419, - -0.6182056069374084, - -0.6278905868530273, - -0.6390576958656311, - -0.6514022946357727, - -0.6645877361297607, - -0.6998651027679443, - -0.6794264316558838, - -0.6590641140937805, - -0.6393336653709412, - -0.620773196220398, - -0.603888988494873, - -0.5891416668891907, - -0.5769333839416504, - -0.5675972700119019, - -0.5613879561424255, - -0.5584747791290283, - -0.5589371919631958, - -0.5627626776695251, - -0.5698467493057251, - -0.5799962878227234, - -0.5929344296455383, - -0.6083081960678101, - -0.6256982684135437, - -0.6446302533149719, - -0.6645877957344055, - -0.6998651027679443, - -0.6748431324958801, - -0.650022566318512, - -0.6260803937911987, - -0.6036698222160339, - -0.5834020376205444, - -0.565829873085022, - -0.551432728767395, - -0.5406033396720886, - -0.5336370468139648, - -0.5307238698005676, - -0.5319432616233826, - -0.5372620224952698, - -0.5465350151062012, - -0.5595093369483948, - -0.5758310556411743, - -0.5950549244880676, - -0.6166566610336304, - -0.6400469541549683, - -0.6645877957344055, - -0.6998651027679443, - -0.6729452610015869, - -0.6462786197662354, - -0.6205925345420837, - -0.5965876579284668, - -0.5749187469482422, - -0.5561769604682922, - -0.5408734083175659, - -0.5294256806373596, - -0.5221459269523621, - -0.5192327499389648, - -0.5207656025886536, - -0.5267027020454407, - -0.5368821024894714, - -0.5510260462760925, - -0.5687488913536072, - -0.5895670652389526, - -0.6129127144813538, - -0.638149082660675, - -0.6645877957344055, - -0.6998651027679443, - -0.673938512802124, - -0.6482380032539368, - -0.6234646439552307, - -0.6002941131591797, - -0.5793585181236267, - -0.56122887134552, - -0.546399712562561, - -0.5352755784988403, - -0.5281598567962646, - -0.5252466797828674, - -0.5266155004501343, - -0.5322290062904358, - -0.5419340133666992, - -0.555465817451477, - -0.5724553465843201, - -0.5924391746520996, - -0.6148720979690552, - -0.6391423344612122, - -0.6645877957344055, - -0.6998651027679443, - -0.6777152419090271, - -0.655688464641571, - -0.6343855857849121, - -0.6143876314163208, - -0.596240222454071, - -0.5804382562637329, - -0.5674127340316772, - -0.5575191378593445, - -0.5510271787643433, - -0.548114001750946, - -0.5488590598106384, - -0.553242027759552, - -0.5611433386802673, - -0.5723475217819214, - -0.586548924446106, - -0.603360116481781, - -0.6223225593566895, - -0.6429190635681152, - -0.6645877957344055, - -0.6998651027679443, - -0.6838662028312683, - -0.6678225994110107, - -0.6521718502044678, - -0.6373409032821655, - -0.6237344145774841, - -0.6117233633995056, - -0.6016354560852051, - -0.5937458276748657, - -0.5882697701454163, - -0.585356593132019, - -0.5850857496261597, - -0.5874646902084351, - -0.5924285054206848, - -0.5998417139053345, - -0.6095021963119507, - -0.6211463809013367, - -0.6344566941261292, - -0.6490700244903564, - -0.6645877361297607, - -0.6998651027679443, - -0.6917247772216797, - -0.6833254098892212, - -0.6748960614204407, - -0.6666666269302368, - -0.6588616371154785, - -0.6516939997673035, - -0.645359218120575, - -0.640030026435852, - -0.6358519196510315, - -0.6329387426376343, - -0.631369948387146, - -0.6311884522438049, - -0.6323991417884827, - -0.6349689960479736, - -0.6388278603553772, - -0.6438705921173096, - -0.6499595046043396, - -0.6569285988807678, - -0.6645877361297607, - -0.6998651027679443, - -0.700439453125, - -0.7005169987678528, - -0.7000956535339355, - -0.6991868615150452, - -0.697815477848053, - -0.6960188150405884, - -0.6938459873199463, - -0.6913561224937439, - -0.6886172890663147, - -0.6857041120529175, - -0.6826960444450378, - -0.6796752214431763, - -0.6767239570617676, - -0.6739227771759033, - -0.6713480949401855, - -0.6690701842308044, - -0.6671510934829712, - -0.6656432747840881, - -0.6645877361297607, - -0.6998651027679443, - -0.7090657949447632, - -0.7175343632698059, - -0.7250398993492126, - -0.7313775420188904, - -0.7363744974136353, - -0.7398943901062012, - -0.7418413162231445, - -0.7421620488166809, - -0.7408478856086731, - -0.7379347085952759, - -0.7335019707679749, - -0.7276705503463745, - -0.7205995321273804, - -0.7124817967414856, - -0.7035387754440308, - -0.6940144300460815, - -0.6841685175895691, - -0.6742696166038513, - -0.6645877361297607, - -0.6998651027679443, - -0.7166690230369568, - -0.7325334548950195, - -0.7470256686210632, - -0.7597503066062927, - -0.7703602910041809, - -0.7785661816596985, - -0.7841442227363586, - -0.7869422435760498, - -0.7868838310241699, - -0.7839706540107727, - -0.7782821655273438, - -0.7699735164642334, - -0.7592713832855225, - -0.7464675903320312, - -0.7319115400314331, - -0.7160001993179321, - -0.6991675496101379, - -0.6818728446960449, - -0.6645877361297607, - -0.6998650431632996, - -0.7224252223968506, - -0.7438888549804688, - -0.7636705040931702, - -0.7812305688858032, - -0.7960900068283081, - -0.8078436255455017, - -0.8161706924438477, - -0.8208441138267517, - -0.8217363953590393, - -0.8188232183456421, - -0.8121840357780457, - -0.8019999265670776, - -0.7885487675666809, - -0.7721973657608032, - -0.7533918023109436, - -0.7326450347900391, - -0.7105229496955872, - -0.6876290440559387, - -0.6645877361297607, - -0.6998650431632996, - -0.7257106304168701, - -0.7503700256347656, - -0.7731706500053406, - -0.7934905290603638, - -0.8107754588127136, - -0.8245538473129272, - -0.8344500064849854, - -0.8401938676834106, - -0.8416287302970886, - -0.8387155532836914, - -0.8315337896347046, - -0.8202792406082153, - -0.8052589893341064, - -0.786882758140564, - -0.7656518220901489, - -0.7421451807022095, - -0.717004120349884, - -0.6909144520759583, - -0.6645877361297607, - -0.6998650431632996, - -0.7261691689491272, - -0.751274585723877, - -0.7744966149330139, - -0.7952017188072205, - -0.8128251433372498, - -0.8268861770629883, - -0.8370012640953064, - -0.8428945541381836, - -0.8444051742553711, - -0.8414919376373291, - -0.8342344760894775, - -0.8228305578231812, - -0.8075913190841675, - -0.7889324426651001, - -0.7673629522323608, - -0.7434711456298828, - -0.7179087400436401, - -0.6913729906082153, - -0.6645877361297607, - -0.6998650431632996, - -0.7237511873245239, - -0.7465046048164368, - -0.7675046920776367, - -0.7861785888671875, - -0.8020169734954834, - -0.8145877718925476, - -0.8235481381416321, - -0.8286535739898682, - -0.8297648429870605, - -0.8268516659736633, - -0.8199934959411621, - -0.8093773722648621, - -0.7952929735183716, - -0.7781243324279785, - -0.7583398818969727, - -0.7364792227745056, - -0.7131386995315552, - -0.6889550089836121, - -0.6645877361297607 - ], - "z": [ - 0.07447735220193863, - 0.09103672206401825, - 0.10681083798408508, - 0.12136942893266678, - 0.1343153715133667, - 0.14529553055763245, - 0.15401040017604828, - 0.16022227704524994, - 0.1637616902589798, - 0.16453209519386292, - 0.16251249611377716, - 0.1577579826116562, - 0.15039822459220886, - 0.14063400030136108, - 0.1287316381931305, - 0.11501578986644745, - 0.09986060857772827, - 0.08367949724197388, - 0.06691380590200424, - 0.050020888447761536, - 0.07447735220193863, - 0.09550391137599945, - 0.1156233698129654, - 0.13428691029548645, - 0.150985449552536, - 0.16526350378990173, - 0.17673158645629883, - 0.18507689237594604, - 0.19007177650928497, - 0.19157998263835907, - 0.18956038355827332, - 0.18406805396080017, - 0.17525283992290497, - 0.16335517168045044, - 0.14869961142539978, - 0.13168588280677795, - 0.11277809739112854, - 0.09249202162027359, - 0.07138100266456604, - 0.05002088472247124, - 0.07447735220193863, - 0.09767447412014008, - 0.11990529298782349, - 0.14056339859962463, - 0.15908528864383698, - 0.1749657392501831, - 0.18777160346508026, - 0.1971535086631775, - 0.20285558700561523, - 0.2047223001718521, - 0.20270270109176636, - 0.19685187935829163, - 0.1873294711112976, - 0.17439518868923187, - 0.15840184688568115, - 0.13978572189807892, - 0.11905458569526672, - 0.09677394479513168, - 0.07355156540870667, - 0.05002088472247124, - 0.07447735220193863, - 0.09731320291757584, - 0.11919260025024414, - 0.13951872289180756, - 0.157737135887146, - 0.17335087060928345, - 0.18593406677246094, - 0.1951434463262558, - 0.20072782039642334, - 0.20253485441207886, - 0.2005152553319931, - 0.19472411274909973, - 0.18531939387321472, - 0.17255765199661255, - 0.1567869931459427, - 0.13843756914138794, - 0.11800990998744965, - 0.09606125205755234, - 0.07319029420614243, - 0.05002088472247124, - 0.07447735220193863, - 0.09445923566818237, - 0.11356251686811447, - 0.13126608729362488, - 0.14708706736564636, - 0.1605938971042633, - 0.17141811549663544, - 0.17926451563835144, - 0.1839190274477005, - 0.18525469303131104, - 0.18323509395122528, - 0.1779153198003769, - 0.16944044828414917, - 0.15804171562194824, - 0.14402997493743896, - 0.1277875006198883, - 0.10975727438926697, - 0.09043116867542267, - 0.07033632695674896, - 0.050020888447761536, - 0.07447735220193863, - 0.089421845972538, - 0.10362514853477478, - 0.11669981479644775, - 0.12828919291496277, - 0.13807719945907593, - 0.1457967907190323, - 0.15123742818832397, - 0.15425071120262146, - 0.1547544002532959, - 0.15273480117321014, - 0.14824700355529785, - 0.1414133757352829, - 0.1324203908443451, - 0.12151329219341278, - 0.10898962616920471, - 0.09519098699092865, - 0.08049380034208298, - 0.06529893726110458, - 0.050020888447761536, - 0.07447735220193863, - 0.08274692296981812, - 0.09045736491680145, - 0.09739835560321808, - 0.10338057577610016, - 0.10824083536863327, - 0.11184655129909515, - 0.1140993982553482, - 0.11493787914514542, - 0.11433915793895721, - 0.11231955885887146, - 0.10893417149782181, - 0.10427534580230713, - 0.09847013652324677, - 0.09167692065238953, - 0.08408098667860031, - 0.07588954269886017, - 0.06732602417469025, - 0.058624014258384705, - 0.050020888447761536, - 0.07447735965251923, - 0.0751577839255333, - 0.07548610866069794, - 0.07545334845781326, - 0.0750604197382927, - 0.07431802898645401, - 0.07324642688035965, - 0.07187484949827194, - 0.07024070620536804, - 0.06838858872652054, - 0.06636898964643478, - 0.06423699855804443, - 0.062050800770521164, - 0.05987001582980156, - 0.05775412172079086, - 0.05576082691550255, - 0.053944531828165054, - 0.052354756742715836, - 0.051034875214099884, - 0.050020892173051834, - 0.07447735965251923, - 0.06747684627771378, - 0.0603337287902832, - 0.053242865949869156, - 0.04639766365289688, - 0.03998485952615738, - 0.03417935222387314, - 0.029139522463083267, - 0.025002826005220413, - 0.02188212424516678, - 0.019862525165081024, - 0.018999118357896805, - 0.01931547373533249, - 0.02080293372273445, - 0.023420941084623337, - 0.027098078280687332, - 0.03173404932022095, - 0.0372023805975914, - 0.04335393011569977, - 0.050020892173051834, - 0.07447735965251923, - 0.06053644046187401, - 0.0466422401368618, - 0.033173754811286926, - 0.020498372614383698, - 0.008961841464042664, - -0.0011211633682250977, - -0.00947558879852295, - -0.015873543918132782, - -0.02014051377773285, - -0.022160112857818604, - -0.02187725156545639, - -0.019299641251564026, - -0.014497585594654083, - -0.007602088153362274, - 0.0011987760663032532, - 0.011664938181638718, - 0.023510891944169998, - 0.0364135317504406, - 0.05002089589834213, - 0.07447735965251923, - 0.05508868023753166, - 0.035895317792892456, - 0.017420820891857147, - 0.00016912445425987244, - -0.015389196574687958, - -0.028829745948314667, - -0.03978590667247772, - -0.04795881360769272, - -0.0531255304813385, - -0.055145129561424255, - -0.05396252125501633, - -0.0496099591255188, - -0.04220616817474365, - -0.0319531187415123, - -0.01913047581911087, - -0.00408799946308136, - 0.012763969600200653, - 0.03096577152609825, - 0.05002089589834213, - 0.07447735965251923, - 0.051723912358284, - 0.02925756201148033, - 0.007691141217947006, - -0.012387096881866455, - -0.03042943775653839, - -0.045943744480609894, - -0.05850685387849808, - -0.06777603924274445, - -0.07349847257137299, - -0.07551807165145874, - -0.07377974689006805, - -0.06833089888095856, - -0.059320174157619476, - -0.04699335992336273, - -0.031686678528785706, - -0.013817675411701202, - 0.0061262138187885284, - 0.027600999921560287, - 0.05002089589834213, - 0.07447735965251923, - 0.05080675706267357, - 0.027448270469903946, - 0.005039062350988388, - -0.01580961048603058, - -0.03452903777360916, - -0.05060860514640808, - -0.06360973417758942, - -0.07317773997783661, - -0.07905164361000061, - -0.08107124269008636, - -0.07918144762516022, - -0.0734337717294693, - -0.06398503482341766, - -0.0510929599404335, - -0.03510920703411102, - -0.01646975427865982, - 0.004316922277212143, - 0.026683848351240158, - 0.05002089589834213, - 0.07447735965251923, - 0.05243660882115364, - 0.030663516372442245, - 0.009751994162797928, - -0.009727537631988525, - -0.027243733406066895, - -0.04231880605220795, - -0.054541535675525665, - -0.0635785162448883, - -0.06918323040008545, - -0.0712028294801712, - -0.06958222389221191, - -0.06436558067798615, - -0.05569522827863693, - -0.043807655572891235, - -0.029027126729488373, - -0.01175682246685028, - 0.0075321681797504425, - 0.02831370010972023, - 0.05002089589834213, - 0.07447735965251923, - 0.05643684044480324, - 0.03855486586689949, - 0.021319210529327393, - 0.005200009793043137, - -0.009363040328025818, - -0.021972686052322388, - -0.03228498250246048, - -0.04001864790916443, - -0.044962696731090546, - -0.0469822958111763, - -0.04602235555648804, - -0.042109034955501556, - -0.03534911572933197, - -0.025926955044269562, - -0.01409958302974701, - -0.0001896098256111145, - 0.015423517674207687, - 0.03231393173336983, - 0.05002089589834213, - 0.07447735965251923, - 0.062373969703912735, - 0.05026716738939285, - 0.038487210869789124, - 0.027355417609214783, - 0.017175424844026566, - 0.008224930614233017, - 0.00074806809425354, - -0.0050511956214904785, - -0.009014680981636047, - -0.011034280061721802, - -0.011054903268814087, - -0.009075984358787537, - -0.005151495337486267, - 0.0006115101277828217, - 0.008055821061134338, - 0.016978390514850616, - 0.02713581919670105, - 0.038251057267189026, - 0.05002089589834213, - 0.07447735965251923, - 0.06960462033748627, - 0.06453124433755875, - 0.05939561501145363, - 0.05433782935142517, - 0.04949583858251572, - 0.04500172287225723, - 0.0409780777990818, - 0.037534646689891815, - 0.03476535156369209, - 0.03274575248360634, - 0.03153093904256821, - 0.031154027208685875, - 0.03162530064582825, - 0.032931920140981674, - 0.03503824397921562, - 0.03788679838180542, - 0.04139989987015724, - 0.045481711626052856, - 0.050020892173051834, - 0.07447735965251923, - 0.07734523713588715, - 0.07980133593082428, - 0.08177865296602249, - 0.08322326093912125, - 0.08409574627876282, - 0.08437231183052063, - 0.0840454250574112, - 0.08312398195266724, - 0.08163312077522278, - 0.07961352169513702, - 0.07712027430534363, - 0.07422137260437012, - 0.07099589705467224, - 0.06753183901309967, - 0.0639236718416214, - 0.06026983633637428, - 0.05666998773813248, - 0.053222328424453735, - 0.050020892173051834, - 0.07447735220193863, - 0.084757000207901, - 0.09442269802093506, - 0.10321076959371567, - 0.11088152229785919, - 0.11722571402788162, - 0.12207028269767761, - 0.12528309226036072, - 0.12677650153636932, - 0.12650975584983826, - 0.1244901493191719, - 0.12077279388904572, - 0.11545903980731964, - 0.10869386792182922, - 0.10066181421279907, - 0.09158194065093994, - 0.08170194923877716, - 0.07129134982824326, - 0.06063409149646759, - 0.050020888447761536, - 0.07447735220193863, - 0.09103672206401825, - 0.10681084543466568, - 0.12136943638324738, - 0.1343153715133667, - 0.14529553055763245, - 0.15401041507720947, - 0.16022229194641113, - 0.163761705160141, - 0.1645321249961853, - 0.16251251101493835, - 0.15775799751281738, - 0.15039823949337006, - 0.14063401520252228, - 0.1287316530942917, - 0.11501580476760864, - 0.09986061602830887, - 0.08367949724197388, - 0.06691381335258484, - 0.050020888447761536 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.41885650157928467, - 0.42260533571243286, - 0.4232882261276245, - 0.4208866059780121, - 0.41546595096588135, - 0.40717417001724243, - 0.3962373733520508, - 0.382953941822052, - 0.3676861822605133, - 0.35085055232048035, - 0.3329063057899475, - 0.3143429458141327, - 0.29566675424575806, - 0.27738723158836365, - 0.2600029706954956, - 0.24398817121982574, - 0.2297796756029129, - 0.21776506304740906, - 0.2082720398902893, - 0.20155958831310272, - 0.41885650157928467, - 0.4300224781036377, - 0.4379202425479889, - 0.4423343241214752, - 0.44314438104629517, - 0.4403282403945923, - 0.43396279215812683, - 0.42422163486480713, - 0.4113704562187195, - 0.39575985074043274, - 0.3778156340122223, - 0.35802721977233887, - 0.3369344472885132, - 0.3151126503944397, - 0.29315707087516785, - 0.27166658639907837, - 0.25122740864753723, - 0.23239706456661224, - 0.21568921208381653, - 0.20155958831310272, - 0.41885650157928467, - 0.4360690712928772, - 0.449848473072052, - 0.45981884002685547, - 0.4657081961631775, - 0.4673559069633484, - 0.4647170901298523, - 0.45786362886428833, - 0.4469825327396393, - 0.4323705732822418, - 0.414426326751709, - 0.39363929629325867, - 0.3705764710903168, - 0.34586694836616516, - 0.32018473744392395, - 0.2942304015159607, - 0.2687118947505951, - 0.24432528018951416, - 0.22173577547073364, - 0.20155958831310272, - 0.41885650157928467, - 0.4400898218154907, - 0.45778030157089233, - 0.47144538164138794, - 0.48071232438087463, - 0.4853283762931824, - 0.48516756296157837, - 0.4802343547344208, - 0.47066324949264526, - 0.45671534538269043, - 0.4387710988521576, - 0.41732001304626465, - 0.39294716715812683, - 0.36631742119789124, - 0.33815717697143555, - 0.30923452973365784, - 0.28033843636512756, - 0.2522571086883545, - 0.22575652599334717, - 0.20155958831310272, - 0.41885650157928467, - 0.44164901971817017, - 0.46085619926452637, - 0.4759540557861328, - 0.48653078079223633, - 0.492297887802124, - 0.49309808015823364, - 0.488909512758255, - 0.47984641790390015, - 0.4661560654640198, - 0.44821181893348694, - 0.42650318145751953, - 0.40162232518196106, - 0.3742479681968689, - 0.3451267182826996, - 0.31505298614501953, - 0.28484711050987244, - 0.2553330063819885, - 0.227315753698349, - 0.20155958831310272, - 0.41885650157928467, - 0.44057774543762207, - 0.45874279737472534, - 0.4728562831878662, - 0.4825330972671509, - 0.4875093400478363, - 0.48764926195144653, - 0.48294907808303833, - 0.47353696823120117, - 0.45966964960098267, - 0.44172540307044983, - 0.42019370198249817, - 0.3956618905067444, - 0.3687991201877594, - 0.34033817052841187, - 0.3110553026199341, - 0.28174933791160583, - 0.2532196342945099, - 0.2262444645166397, - 0.20155958831310272, - 0.41885650157928467, - 0.4369920492172241, - 0.45166924595832825, - 0.46248775720596313, - 0.46915245056152344, - 0.4714815616607666, - 0.46941158175468445, - 0.4629989266395569, - 0.4524185359477997, - 0.4379590153694153, - 0.42001476883888245, - 0.39907529950141907, - 0.37571173906326294, - 0.3505614399909973, - 0.32431039214134216, - 0.29767465591430664, - 0.27138081192970276, - 0.2461460679769516, - 0.22265875339508057, - 0.20155958831310272, - 0.41885650157928467, - 0.4312804937362671, - 0.44040197134017944, - 0.4459720253944397, - 0.44783884286880493, - 0.4459514617919922, - 0.4403613209724426, - 0.43122097849845886, - 0.4187797009944916, - 0.40337684750556946, - 0.3854326009750366, - 0.36543646454811096, - 0.3439337909221649, - 0.3215111792087555, - 0.29878029227256775, - 0.27636104822158813, - 0.2548651099205017, - 0.2348787784576416, - 0.21694722771644592, - 0.20155958831310272, - 0.41885650157928467, - 0.424062043428421, - 0.4261619448661804, - 0.4250989258289337, - 0.42090195417404175, - 0.4136855900287628, - 0.4036465883255005, - 0.39105886220932007, - 0.3762657046318054, - 0.3596706986427307, - 0.3417264521121979, - 0.3229224681854248, - 0.3037716746330261, - 0.28479644656181335, - 0.266514390707016, - 0.24942417442798615, - 0.23399198055267334, - 0.22063876688480377, - 0.20972877740859985, - 0.20155958831310272, - 0.41885650157928467, - 0.41611891984939575, - 0.4104923605918884, - 0.40213027596473694, - 0.3912608027458191, - 0.37818044424057007, - 0.36324596405029297, - 0.3468647599220276, - 0.32948365807533264, - 0.3115767538547516, - 0.29363250732421875, - 0.27614039182662964, - 0.25957757234573364, - 0.24439582228660583, - 0.23100925981998444, - 0.2197830229997635, - 0.21102336049079895, - 0.20496916770935059, - 0.2017856389284134, - 0.20155960321426392, - 0.41885650157928467, - 0.4083118736743927, - 0.3950912058353424, - 0.3795551657676697, - 0.36212748289108276, - 0.34328359365463257, - 0.3235374987125397, - 0.3034278154373169, - 0.28350305557250977, - 0.2643067538738251, - 0.24636250734329224, - 0.23015981912612915, - 0.21614062786102295, - 0.20468735694885254, - 0.19611239433288574, - 0.19064968824386597, - 0.1884482204914093, - 0.18956802785396576, - 0.19397859275341034, - 0.20155960321426392, - 0.41885650157928467, - 0.40148693323135376, - 0.38162747025489807, - 0.3598198890686035, - 0.3366590142250061, - 0.312776654958725, - 0.288824200630188, - 0.26545506715774536, - 0.24330665171146393, - 0.22298315167427063, - 0.2050389051437378, - 0.1899634152650833, - 0.17816787958145142, - 0.16997404396533966, - 0.16560544073581696, - 0.1651812195777893, - 0.16871294379234314, - 0.17610429227352142, - 0.1871536374092102, - 0.20155960321426392, - 0.41885650157928467, - 0.3963836431503296, - 0.37156015634536743, - 0.34506309032440186, - 0.3176153302192688, - 0.2899654805660248, - 0.26286780834198, - 0.23706144094467163, - 0.21325033903121948, - 0.19208398461341858, - 0.17413975298404694, - 0.15990708768367767, - 0.14977425336837769, - 0.14401763677597046, - 0.14279426634311676, - 0.14613750576972961, - 0.15395617485046387, - 0.1660369634628296, - 0.18205037713050842, - 0.20155960321426392, - 0.41885650157928467, - 0.3935551047325134, - 0.3659801781177521, - 0.33688393235206604, - 0.3070600628852844, - 0.27732205390930176, - 0.24848107993602753, - 0.22132384777069092, - 0.19659116864204407, - 0.17495766282081604, - 0.1570134311914444, - 0.14324793219566345, - 0.13403667509555817, - 0.1296309232711792, - 0.13015083968639374, - 0.13558225333690643, - 0.14577700197696686, - 0.16045700013637543, - 0.17922180891036987, - 0.20155960321426392, - 0.41885650157928467, - 0.39330774545669556, - 0.3654922544956207, - 0.33616873621940613, - 0.3061370849609375, - 0.2762164771556854, - 0.24722307920455933, - 0.2199477255344391, - 0.19513443112373352, - 0.17346008121967316, - 0.1555158495903015, - 0.1417911946773529, - 0.13266055285930634, - 0.1283729076385498, - 0.1290452629327774, - 0.13465926051139832, - 0.14506179094314575, - 0.15996907651424408, - 0.1789744794368744, - 0.20155960321426392, - 0.41885650157928467, - 0.3956684470176697, - 0.3701492249965668, - 0.3429949879646301, - 0.31494638323783875, - 0.2867685556411743, - 0.2592300772666931, - 0.2330821454524994, - 0.20903798937797546, - 0.18775352835655212, - 0.16980929672718048, - 0.15569475293159485, - 0.14579497277736664, - 0.1403799057006836, - 0.1395973265171051, - 0.14346857368946075, - 0.15188804268836975, - 0.16462604701519012, - 0.18133516609668732, - 0.20155960321426392, - 0.41885650157928467, - 0.40038132667541504, - 0.37944647669792175, - 0.35662296414375305, - 0.3325333595275879, - 0.30783480405807495, - 0.2832009792327881, - 0.25930383801460266, - 0.23679521679878235, - 0.21628913283348083, - 0.198344886302948, - 0.18345198035240173, - 0.17201665043830872, - 0.16435082256793976, - 0.16066360473632812, - 0.1610555648803711, - 0.16551601886749268, - 0.1739232987165451, - 0.18604806065559387, - 0.20155960321426392, - 0.41885650157928467, - 0.40693575143814087, - 0.39237648248672485, - 0.37557587027549744, - 0.3569922149181366, - 0.33713239431381226, - 0.31653815507888794, - 0.2957712709903717, - 0.2753981351852417, - 0.25597456097602844, - 0.238030344247818, - 0.22205489873886108, - 0.20848408341407776, - 0.1976880133152008, - 0.18996120989322662, - 0.1855144053697586, - 0.18446893990039825, - 0.186853289604187, - 0.19260245561599731, - 0.20155960321426392, - 0.41885650157928467, - 0.41462135314941406, - 0.4075380861759186, - 0.39779987931251526, - 0.3856724202632904, - 0.37148648500442505, - 0.355629026889801, - 0.33853262662887573, - 0.32066357135772705, - 0.3025093376636505, - 0.2845650911331177, - 0.26732033491134644, - 0.2512454390525818, - 0.2367788851261139, - 0.22431528568267822, - 0.2141946256160736, - 0.20669294893741608, - 0.20201489329338074, - 0.2002880871295929, - 0.20155960321426392, - 0.41885650157928467, - 0.42260533571243286, - 0.4232882559299469, - 0.4208866357803345, - 0.41546598076820374, - 0.40717417001724243, - 0.39623740315437317, - 0.3829539716243744, - 0.3676862120628357, - 0.35085058212280273, - 0.3329063355922699, - 0.3143429458141327, - 0.29566678404808044, - 0.27738726139068604, - 0.260003000497818, - 0.24398818612098694, - 0.2297796905040741, - 0.21776506304740906, - 0.2082720547914505, - 0.20155958831310272 - ], - "y": [ - -0.9446868300437927, - -0.9785630106925964, - -1.0113402605056763, - -1.042124629020691, - -1.0700762271881104, - -1.0944327116012573, - -1.1145297288894653, - -1.1298190355300903, - -1.1398835182189941, - -1.1444488763809204, - -1.1433902978897095, - -1.1367367506027222, - -1.1246697902679443, - -1.1075185537338257, - -1.0857508182525635, - -1.0599603652954102, - -1.0308507680892944, - -0.9992160201072693, - -0.965919017791748, - -0.9318680167198181, - -0.9446868300437927, - -0.974663496017456, - -1.0036476850509644, - -1.030848741531372, - -1.0555245876312256, - -1.0770022869110107, - -1.094696044921875, - -1.1081229448318481, - -1.1169170141220093, - -1.1208382844924927, - -1.1197797060012817, - -1.1137702465057373, - -1.1029736995697021, - -1.0876847505569458, - -1.068320393562317, - -1.0454087257385254, - -1.0195748805999756, - -0.9915233850479126, - -0.9620195031166077, - -0.9318680167198181, - -0.9446868300437927, - -0.9675061106681824, - -0.9895280599594116, - -1.0101521015167236, - -1.028815507888794, - -1.0450093746185303, - -1.0582917928695679, - -1.068300485610962, - -1.0747625827789307, - -1.0775017738342285, - -1.0764431953430176, - -1.0716158151626587, - -1.063151240348816, - -1.0512804985046387, - -1.0363273620605469, - -1.0186996459960938, - -0.9988782405853271, - -0.9774038195610046, - -0.954862117767334, - -0.9318680167198181, - -0.9446868300437927, - -0.9578664302825928, - -0.9705116152763367, - -0.9822776317596436, - -0.9928433895111084, - -1.0019207000732422, - -1.0092620849609375, - -1.01466703414917, - -1.0179884433746338, - -1.0191354751586914, - -1.0180768966674805, - -1.0148415565490723, - -1.009517788887024, - -1.0022507905960083, - -0.9932387471199036, - -0.9827275276184082, - -0.9710037708282471, - -0.9583873748779297, - -0.9452224373817444, - -0.9318680167198181, - -0.9446868300437927, - -0.946789026260376, - -0.9486590623855591, - -0.9502458572387695, - -0.9515061974525452, - -0.9524057507514954, - -0.9529199004173279, - -0.9530345797538757, - -0.9527468085289001, - -0.9520642757415771, - -0.9510056972503662, - -0.9495999217033386, - -0.9478853344917297, - -0.9459086656570435, - -0.9437237977981567, - -0.9413903951644897, - -0.9389720559120178, - -0.9365347623825073, - -0.9341450333595276, - -0.9318680167198181, - -0.9446868300437927, - -0.9354743957519531, - -0.9263383746147156, - -0.9175280332565308, - -0.9092836380004883, - -0.9018301963806152, - -0.8953709006309509, - -0.8900819420814514, - -0.8861076831817627, - -0.8835564851760864, - -0.8824979066848755, - -0.882960855960846, - -0.8849326968193054, - -0.8883596658706665, - -0.8931481838226318, - -0.8991677761077881, - -0.9062541723251343, - -0.9142140746116638, - -0.92283034324646, - -0.9318680167198181, - -0.9446868300437927, - -0.9251485466957092, - -0.9059683680534363, - -0.8876695036888123, - -0.8707510828971863, - -0.8556746244430542, - -0.8428513407707214, - -0.8326310515403748, - -0.8252924680709839, - -0.8210358619689941, - -0.819977343082428, - -0.8221456408500671, - -0.8274818062782288, - -0.835840106010437, - -0.8469926714897156, - -0.8606352210044861, - -0.8763957023620605, - -0.8938441276550293, - -0.9125045537948608, - -0.9318680167198181, - -0.9446868300437927, - -0.9169305562973022, - -0.8897565007209778, - -0.8639060258865356, - -0.8400841951370239, - -0.8189408183097839, - -0.8010526299476624, - -0.7869075536727905, - -0.7768914699554443, - -0.7712775468826294, - -0.7702189683914185, - -0.7737446427345276, - -0.7817583084106445, - -0.7940413951873779, - -0.8102588057518005, - -0.8299683332443237, - -0.8526322245597839, - -0.8776322603225708, - -0.9042865633964539, - -0.9318680167198181, - -0.9446868300437927, - -0.9117108583450317, - -0.87945955991745, - -0.8488126993179321, - -0.8206061124801636, - -0.7956093549728394, - -0.7745041847229004, - -0.757866382598877, - -0.7461495995521545, - -0.7396736741065979, - -0.738615095615387, - -0.7430027723312378, - -0.7527170777320862, - -0.767492949962616, - -0.7869274020195007, - -0.8104902505874634, - -0.8375388383865356, - -0.867335319519043, - -0.8990668654441833, - -0.9318680167198181, - -0.9446868300437927, - -0.9100552201271057, - -0.8761934041976929, - -0.8440250754356384, - -0.8144276738166809, - -0.7882086038589478, - -0.7660830616950989, - -0.7486544847488403, - -0.7363983392715454, - -0.7296488881111145, - -0.7285903096199036, - -0.7332514524459839, - -0.7435051798820496, - -0.7590718269348145, - -0.7795266509056091, - -0.8043118119239807, - -0.8327512741088867, - -0.8640691041946411, - -0.8974112272262573, - -0.9318680167198181, - -0.9446868300437927, - -0.9121429324150085, - -0.880311906337738, - -0.8500620126724243, - -0.8222184181213379, - -0.7975406050682068, - -0.7767016887664795, - -0.7602701783180237, - -0.7486942410469055, - -0.742289662361145, - -0.7412310838699341, - -0.7455474138259888, - -0.7551208734512329, - -0.7696905136108398, - -0.7888586521148682, - -0.8121025562286377, - -0.8387882113456726, - -0.8681876063346863, - -0.8994989395141602, - -0.9318680167198181, - -0.9446868300437927, - -0.9177477955818176, - -0.8913688063621521, - -0.8662692904472351, - -0.8431340456008911, - -0.8225939869880676, - -0.8052095174789429, - -0.7914547920227051, - -0.7817049622535706, - -0.7762260437011719, - -0.7751674652099609, - -0.7785581350326538, - -0.7863054871559143, - -0.7981982827186584, - -0.813912034034729, - -0.8330181837081909, - -0.8549954891204834, - -0.8792445063591003, - -0.9051038026809692, - -0.9318680167198181, - -0.9446868300437927, - -0.9262624979019165, - -0.9081658720970154, - -0.8908906579017639, - -0.8749079704284668, - -0.8606538772583008, - -0.8485171794891357, - -0.8388288021087646, - -0.8318532109260559, - -0.8277806043624878, - -0.8267220258712769, - -0.8287063837051392, - -0.8336795568466187, - -0.8415058851242065, - -0.8519719243049622, - -0.8647921085357666, - -0.8796167969703674, - -0.8960416316986084, - -0.9136185050010681, - -0.9318680167198181, - -0.9446868300437927, - -0.9367642998695374, - -0.9288829565048218, - -0.9212579727172852, - -0.9140971899032593, - -0.9075959324836731, - -0.901931643486023, - -0.8972587585449219, - -0.8937047719955444, - -0.8913666009902954, - -0.8903080224990845, - -0.8905579447746277, - -0.8921095132827759, - -0.8949204087257385, - -0.8989139795303345, - -0.9039813280105591, - -0.9099841117858887, - -0.9167587161064148, - -0.924120306968689, - -0.9318680167198181, - -0.9446868300437927, - -0.9481151103973389, - -0.9512749910354614, - -0.9540804028511047, - -0.9564546942710876, - -0.9583331942558289, - -0.9596645832061768, - -0.9604126214981079, - -0.9605568647384644, - -0.9600933790206909, - -0.95903480052948, - -0.9574100375175476, - -0.9552633762359619, - -0.9526533484458923, - -0.9496512413024902, - -0.9463388323783875, - -0.9428065419197083, - -0.9391507506370544, - -0.9354711174964905, - -0.9318680167198181, - -0.9446868300437927, - -0.9590849280357361, - -0.9729154706001282, - -0.9858011603355408, - -0.9973905086517334, - -1.007367491722107, - -1.0154597759246826, - -1.0214468240737915, - -1.02516508102417, - -1.0265133380889893, - -1.0254548788070679, - -1.022018313407898, - -1.016297459602356, - -1.008448600769043, - -0.9986855387687683, - -0.987274706363678, - -0.9745273590087891, - -0.9607912302017212, - -0.9464409351348877, - -0.9318680167198181, - -0.9446868300437927, - -0.9684850573539734, - -0.991459310054779, - -1.0129828453063965, - -1.0324686765670776, - -1.0493851900100708, - -1.0632710456848145, - -1.0737473964691162, - -1.0805283784866333, - -1.0834290981292725, - -1.0823705196380615, - -1.0773814916610718, - -1.0685980319976807, - -1.0562597513198853, - -1.040703296661377, - -1.0223528146743774, - -1.0017091035842896, - -0.9793350696563721, - -0.955841064453125, - -0.9318680167198181, - -0.9446868300437927, - -0.9752967953681946, - -1.0048969984054565, - -1.0326800346374512, - -1.0578879117965698, - -1.0798331499099731, - -1.0979171991348267, - -1.1116466522216797, - -1.1206469535827637, - -1.124672770500183, - -1.1236141920089722, - -1.1175001859664917, - -1.1064972877502441, - -1.0909059047698975, - -1.0711512565612793, - -1.0477720499038696, - -1.0214061737060547, - -0.9927727580070496, - -0.9626528024673462, - -0.9318680167198181, - -0.9446868300437927, - -0.9787819981575012, - -1.0117723941802979, - -1.0427578687667847, - -1.0708935260772705, - -1.095411777496338, - -1.1156437397003174, - -1.1310375928878784, - -1.1411734819412231, - -1.1457749605178833, - -1.1447163820266724, - -1.1380267143249512, - -1.1258883476257324, - -1.1086324453353882, - -1.0867297649383545, - -1.0607776641845703, - -1.0314841270446777, - -0.9996480941772461, - -0.9661380052566528, - -0.9318680167198181, - -0.9446868300437927, - -0.9785630106925964, - -1.0113402605056763, - -1.042124629020691, - -1.0700762271881104, - -1.0944327116012573, - -1.1145297288894653, - -1.1298190355300903, - -1.1398835182189941, - -1.1444487571716309, - -1.14339017868042, - -1.1367367506027222, - -1.1246697902679443, - -1.1075185537338257, - -1.0857508182525635, - -1.0599603652954102, - -1.0308507680892944, - -0.9992160201072693, - -0.965919017791748, - -0.9318680167198181 - ], - "z": [ - 0.09204049408435822, - 0.09937600791454315, - 0.11054083704948425, - 0.12523041665554047, - 0.14304405450820923, - 0.16349583864212036, - 0.18602792918682098, - 0.21002566814422607, - 0.2348344922065735, - 0.25977766513824463, - 0.2841747999191284, - 0.3073604106903076, - 0.32870206236839294, - 0.34761759638786316, - 0.3635910451412201, - 0.376186728477478, - 0.38506102561950684, - 0.38997188210487366, - 0.3907853364944458, - 0.3874792158603668, - 0.09204049408435822, - 0.10466217994689941, - 0.12096898257732391, - 0.14051610231399536, - 0.1627703160047531, - 0.1871245801448822, - 0.2129146307706833, - 0.23943693935871124, - 0.26596805453300476, - 0.29178428649902344, - 0.3161814212799072, - 0.3384939730167389, - 0.3581133186817169, - 0.37450429797172546, - 0.38721978664398193, - 0.3959129750728607, - 0.40034669637680054, - 0.4004000425338745, - 0.39607149362564087, - 0.3874792158603668, - 0.09204049408435822, - 0.10879892110824585, - 0.12912961840629578, - 0.15247803926467896, - 0.17820724844932556, - 0.20561546087265015, - 0.23395505547523499, - 0.26245298981666565, - 0.2903319001197815, - 0.3168313503265381, - 0.3412284851074219, - 0.3628578186035156, - 0.3811293840408325, - 0.39554470777511597, - 0.4057106673717499, - 0.41134992241859436, - 0.41230863332748413, - 0.4085606634616852, - 0.4002082347869873, - 0.3874792158603668, - 0.09204049408435822, - 0.11133794486522675, - 0.13413842022418976, - 0.15981997549533844, - 0.18768207728862762, - 0.2169647067785263, - 0.24686914682388306, - 0.27657967805862427, - 0.30528584122657776, - 0.3322046101093292, - 0.356601744890213, - 0.3778117299079895, - 0.39525604248046875, - 0.4084588289260864, - 0.41705989837646484, - 0.42082473635673523, - 0.4196505546569824, - 0.41356945037841797, - 0.4027472734451294, - 0.3874792158603668, - 0.09204049408435822, - 0.1120041161775589, - 0.13545259833335876, - 0.1617462933063507, - 0.19016802310943604, - 0.21994245052337646, - 0.2502574622631073, - 0.28028613328933716, - 0.30920934677124023, - 0.33623814582824707, - 0.36063528060913086, - 0.38173526525497437, - 0.39896249771118164, - 0.4118471145629883, - 0.4200376570224762, - 0.42331069707870483, - 0.42157691717147827, - 0.41488364338874817, - 0.40341344475746155, - 0.3874792158603668, - 0.09204049408435822, - 0.11072525382041931, - 0.1329297423362732, - 0.15804827213287354, - 0.18539568781852722, - 0.21422599256038666, - 0.24375282227993011, - 0.27317070960998535, - 0.30167728662490845, - 0.3284948766231537, - 0.3528920114040375, - 0.3742032051086426, - 0.3918471336364746, - 0.4053424894809723, - 0.4143212139606476, - 0.41853833198547363, - 0.4178788661956787, - 0.4123607873916626, - 0.40213459730148315, - 0.3874792158603668, - 0.09204049408435822, - 0.10763992369174957, - 0.12684324383735657, - 0.14912661910057068, - 0.17388224601745605, - 0.2004348337650299, - 0.22806011140346527, - 0.25600454211235046, - 0.2835058271884918, - 0.30981385707855225, - 0.33421099185943604, - 0.35603174567222595, - 0.37468093633651733, - 0.38964980840682983, - 0.40053004026412964, - 0.40702491998672485, - 0.40895724296569824, - 0.40627428889274597, - 0.3990492522716522, - 0.3874792158603668, - 0.09204049408435822, - 0.10308247804641724, - 0.11785265803337097, - 0.13594815135002136, - 0.1568753719329834, - 0.1800634264945984, - 0.20487987995147705, - 0.2306477576494217, - 0.2566641867160797, - 0.2822194993495941, - 0.3066166639328003, - 0.32919010519981384, - 0.34932413697242737, - 0.3664695620536804, - 0.3801586329936981, - 0.3900180459022522, - 0.3957787752151489, - 0.3972837030887604, - 0.3944917917251587, - 0.3874792158603668, - 0.09204049408435822, - 0.09754678606987, - 0.10693228244781494, - 0.11994095891714096, - 0.13621798157691956, - 0.15531936287879944, - 0.17672404646873474, - 0.1998482048511505, - 0.2240610420703888, - 0.24870209395885468, - 0.27309924364089966, - 0.2965869605541229, - 0.3185245990753174, - 0.3383137285709381, - 0.35541456937789917, - 0.36936065554618835, - 0.37977156043052673, - 0.38636332750320435, - 0.38895612955093384, - 0.3874792158603668, - 0.09204049408435822, - 0.09163272380828857, - 0.0952654778957367, - 0.10283966362476349, - 0.11414866149425507, - 0.12888401746749878, - 0.1466437578201294, - 0.1669434756040573, - 0.18922944366931915, - 0.21289373934268951, - 0.2372908741235733, - 0.2617553472518921, - 0.285619854927063, - 0.30823343992233276, - 0.3289791941642761, - 0.34729132056236267, - 0.36267024278640747, - 0.3746965229511261, - 0.38304203748703003, - 0.3874792456626892, - 0.09204050898551941, - 0.08598117530345917, - 0.08411653339862823, - 0.08649745583534241, - 0.09305895864963531, - 0.10362206399440765, - 0.11789868026971817, - 0.13549932837486267, - 0.15594395995140076, - 0.1786748468875885, - 0.2030719816684723, - 0.2284698635339737, - 0.25417572259902954, - 0.27948835492134094, - 0.3037172555923462, - 0.3262016177177429, - 0.3463280498981476, - 0.36354759335517883, - 0.3773905038833618, - 0.3874792456626892, - 0.09204050898551941, - 0.08120457828044891, - 0.07469363510608673, - 0.07268527150154114, - 0.07523424923419952, - 0.08227106928825378, - 0.09360376000404358, - 0.10892321169376373, - 0.12781155109405518, - 0.14975357055664062, - 0.17415070533752441, - 0.2003374695777893, - 0.2275996059179306, - 0.25519344210624695, - 0.28236624598503113, - 0.30837690830230713, - 0.3325158655643463, - 0.35412466526031494, - 0.37261390686035156, - 0.3874792456626892, - 0.09204050898551941, - 0.0778205394744873, - 0.0680178701877594, - 0.0628998726606369, - 0.06260614097118378, - 0.06714470684528351, - 0.07639175653457642, - 0.09009505808353424, - 0.10788083076477051, - 0.1292639523744583, - 0.1536610871553421, - 0.18040674924850464, - 0.2087714523077011, - 0.2379814237356186, - 0.26723989844322205, - 0.2957488000392914, - 0.32273048162460327, - 0.3474489152431488, - 0.36922985315322876, - 0.3874792456626892, - 0.09204050898551941, - 0.07619577646255493, - 0.06481266021728516, - 0.05820164084434509, - 0.05654306709766388, - 0.05988214910030365, - 0.06812784075737, - 0.08105519413948059, - 0.09831161797046661, - 0.11942636966705322, - 0.143823504447937, - 0.17083753645420074, - 0.19973158836364746, - 0.22971750795841217, - 0.2599773406982422, - 0.2896857261657715, - 0.31803223490715027, - 0.34424370527267456, - 0.3676050901412964, - 0.3874792456626892, - 0.09204050898551941, - 0.0765063613653183, - 0.06542536616325378, - 0.059099748730659485, - 0.057702064514160156, - 0.061270445585250854, - 0.06970755755901337, - 0.08278323709964752, - 0.10014083981513977, - 0.1213068887591362, - 0.14570403099060059, - 0.1726667582988739, - 0.2014596164226532, - 0.23129720985889435, - 0.2613656222820282, - 0.29084470868110657, - 0.31893032789230347, - 0.3448564112186432, - 0.36791568994522095, - 0.3874792456626892, - 0.09204050898551941, - 0.0787186324596405, - 0.06978954374790192, - 0.06549681723117828, - 0.06595753133296967, - 0.07115910947322845, - 0.08095967769622803, - 0.09509189426898956, - 0.11317028105258942, - 0.1347017139196396, - 0.15909884870052338, - 0.18569619953632355, - 0.21376828849315643, - 0.2425493448972702, - 0.271254301071167, - 0.29910019040107727, - 0.32532742619514465, - 0.3492206037044525, - 0.37012797594070435, - 0.3874792456626892, - 0.09204050898551941, - 0.08259285986423492, - 0.07743233442306519, - 0.07669967412948608, - 0.08041487634181976, - 0.08847658336162567, - 0.10066491365432739, - 0.1166473776102066, - 0.1359880566596985, - 0.15815934538841248, - 0.18255648016929626, - 0.20851396024227142, - 0.23532377183437347, - 0.26225459575653076, - 0.2885717749595642, - 0.31355753540992737, - 0.33653026819229126, - 0.3568633794784546, - 0.3740021884441376, - 0.3874792456626892, - 0.09204050898551941, - 0.0877092182636261, - 0.08752548694610596, - 0.09149430692195892, - 0.0995074212551117, - 0.11134625971317291, - 0.1266878843307495, - 0.14511381089687347, - 0.1661214381456375, - 0.18913774192333221, - 0.213534876704216, - 0.23864735662937164, - 0.26379019021987915, - 0.2882775366306305, - 0.31144145131111145, - 0.3326500654220581, - 0.3513249158859253, - 0.36695653200149536, - 0.37911856174468994, - 0.3874792456626892, - 0.09204049408435822, - 0.09351325035095215, - 0.09897524118423462, - 0.10827746987342834, - 0.1211661845445633, - 0.13728982210159302, - 0.1562085747718811, - 0.1774064004421234, - 0.2003050595521927, - 0.22427994012832642, - 0.2486770749092102, - 0.272830992937088, - 0.2960827946662903, - 0.3177982568740845, - 0.33738502860069275, - 0.3543088436126709, - 0.3681080639362335, - 0.378406286239624, - 0.384922593832016, - 0.3874792456626892, - 0.09204049408435822, - 0.09937600791454315, - 0.11054083704948425, - 0.12523043155670166, - 0.14304406940937042, - 0.16349586844444275, - 0.18602794408798218, - 0.21002569794654846, - 0.23483452200889587, - 0.259777694940567, - 0.2841748297214508, - 0.30736044049263, - 0.32870209217071533, - 0.34761762619018555, - 0.3635910749435425, - 0.376186728477478, - 0.38506102561950684, - 0.38997188210487366, - 0.3907853364944458, - 0.3874792158603668 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.42877399921417236, - 0.4271776080131531, - 0.42066124081611633, - 0.40940260887145996, - 0.39370888471603394, - 0.37400808930397034, - 0.3508376479148865, - 0.3248295783996582, - 0.2966933250427246, - 0.26719632744789124, - 0.23714324831962585, - 0.20735380053520203, - 0.17864060401916504, - 0.15178686380386353, - 0.12752509117126465, - 0.10651707649230957, - 0.0893358439207077, - 0.07645006477832794, - 0.06821125745773315, - 0.06484411656856537, - 0.42877399921417236, - 0.43528634309768677, - 0.43665754795074463, - 0.4328501522541046, - 0.42396804690361023, - 0.41025352478027344, - 0.3920806348323822, - 0.36994513869285583, - 0.34445080161094666, - 0.31629303097724915, - 0.28623995184898376, - 0.2551112771034241, - 0.22375616431236267, - 0.19302985072135925, - 0.16377052664756775, - 0.13677623867988586, - 0.11278337240219116, - 0.09244637191295624, - 0.07632000744342804, - 0.06484411656856537, - 0.42877399921417236, - 0.44242045283317566, - 0.45073115825653076, - 0.4534793496131897, - 0.4505901336669922, - 0.4421423077583313, - 0.4283663034439087, - 0.4096379280090332, - 0.38646793365478516, - 0.35948842763900757, - 0.3294353485107422, - 0.29712843894958496, - 0.26344892382621765, - 0.22931553423404694, - 0.195659339427948, - 0.16339832544326782, - 0.13341256976127625, - 0.10651995241641998, - 0.08345408737659454, - 0.06484411656856537, - 0.42877399921417236, - 0.44780680537223816, - 0.4613569378852844, - 0.4690546989440918, - 0.4706902503967285, - 0.46621885895729065, - 0.4557625651359558, - 0.43960654735565186, - 0.4181915521621704, - 0.3921016454696655, - 0.36204856634140015, - 0.3288520574569702, - 0.2934176027774811, - 0.25671178102493286, - 0.21973589062690735, - 0.18349844217300415, - 0.14898793399333954, - 0.11714574694633484, - 0.08884045481681824, - 0.06484411656856537, - 0.42877399921417236, - 0.45086172223091125, - 0.4673834443092346, - 0.47788840532302856, - 0.48209017515182495, - 0.4798740744590759, - 0.4713006019592285, - 0.4566035568714142, - 0.4361838698387146, - 0.4105985164642334, - 0.38054540753364563, - 0.346844345331192, - 0.310414582490921, - 0.27224981784820557, - 0.23339110612869263, - 0.19489839673042297, - 0.1578216403722763, - 0.12317224591970444, - 0.09189535677433014, - 0.06484411656856537, - 0.42877399921417236, - 0.4512541592121124, - 0.4681575894355774, - 0.47902315855026245, - 0.4835546016693115, - 0.4816282391548157, - 0.473296582698822, - 0.4587869644165039, - 0.43849509954452515, - 0.41297459602355957, - 0.3829215168952942, - 0.34915560483932495, - 0.31259799003601074, - 0.2742457985877991, - 0.23514524102210999, - 0.19636280834674835, - 0.1589564085006714, - 0.12394639849662781, - 0.09228779375553131, - 0.06484411656856537, - 0.42877399921417236, - 0.44894158840179443, - 0.46359550952911377, - 0.4723360538482666, - 0.47492483258247375, - 0.471291184425354, - 0.4615342617034912, - 0.4459202289581299, - 0.4248749017715454, - 0.39897245168685913, - 0.36891934275627136, - 0.3355354070663452, - 0.29973122477531433, - 0.26248347759246826, - 0.2248082160949707, - 0.1877330243587494, - 0.15226927399635315, - 0.11938433349132538, - 0.08997522294521332, - 0.06484411656856537, - 0.42877399921417236, - 0.444174587726593, - 0.45419156551361084, - 0.45855167508125305, - 0.45713600516319275, - 0.4499831795692444, - 0.4372882843017578, - 0.41939759254455566, - 0.39679914712905884, - 0.3701093792915344, - 0.34005630016326904, - 0.30745965242385864, - 0.2732086479663849, - 0.23823748528957367, - 0.2035001963376999, - 0.16994421184062958, - 0.1384848952293396, - 0.10998038947582245, - 0.0852082371711731, - 0.06484411656856537, - 0.42877399921417236, - 0.4374697804450989, - 0.44096481800079346, - 0.43916380405426025, - 0.4321158528327942, - 0.4200131893157959, - 0.40318602323532104, - 0.38209325075149536, - 0.35731029510498047, - 0.32951319217681885, - 0.2994600832462311, - 0.2679708003997803, - 0.23590430617332458, - 0.2041352391242981, - 0.1735302209854126, - 0.14492404460906982, - 0.1190970242023468, - 0.09675364196300507, - 0.07850341498851776, - 0.06484411656856537, - 0.42877399921417236, - 0.42955368757247925, - 0.4253486096858978, - 0.41627341508865356, - 0.40257567167282104, - 0.3846290111541748, - 0.3629230260848999, - 0.3380497097969055, - 0.3106876015663147, - 0.2815830707550049, - 0.2515299618244171, - 0.2213481068611145, - 0.19186075031757355, - 0.16387222707271576, - 0.1381460428237915, - 0.11538386344909668, - 0.09620663523674011, - 0.08113743364810944, - 0.07058735191822052, - 0.06484411656856537, - 0.42877399921417236, - 0.42128419876098633, - 0.40903517603874207, - 0.39236101508140564, - 0.37171661853790283, - 0.34766504168510437, - 0.32086238265037537, - 0.29203975200653076, - 0.26198333501815796, - 0.23151299357414246, - 0.20145991444587708, - 0.17264381051063538, - 0.1458507776260376, - 0.12181159108877182, - 0.10118204355239868, - 0.08452479541301727, - 0.07229425013065338, - 0.06482398509979248, - 0.062317848205566406, - 0.06484413146972656, - 0.42877399921417236, - 0.41355741024017334, - 0.3937923312187195, - 0.3700179159641266, - 0.3428827226161957, - 0.3131268620491028, - 0.28156206011772156, - 0.24904926121234894, - 0.21647533774375916, - 0.18472887575626373, - 0.15467578172683716, - 0.12713584303855896, - 0.10286028683185577, - 0.08251126110553741, - 0.06664387881755829, - 0.05569089949131012, - 0.04995115101337433, - 0.04958115518093109, - 0.054591044783592224, - 0.06484413146972656, - 0.42877399921417236, - 0.4072106182575226, - 0.3812718987464905, - 0.35166531801223755, - 0.3191986083984375, - 0.2847572863101959, - 0.24928082525730133, - 0.21373692154884338, - 0.17909514904022217, - 0.14630044996738434, - 0.11624735593795776, - 0.08975565433502197, - 0.06754794716835022, - 0.05023002624511719, - 0.03827427327632904, - 0.03200678527355194, - 0.031598567962646484, - 0.037060707807540894, - 0.04824425280094147, - 0.06484413146972656, - 0.42877399921417236, - 0.4029316306114197, - 0.3728306293487549, - 0.339292049407959, - 0.30323079228401184, - 0.2656305134296417, - 0.22751682996749878, - 0.18992939591407776, - 0.15389347076416016, - 0.12039206922054291, - 0.09033897519111633, - 0.06455396115779877, - 0.043740421533584595, - 0.028466030955314636, - 0.01914750039577484, - 0.016038969159126282, - 0.019225269556045532, - 0.028619423508644104, - 0.04396525025367737, - 0.06484413146972656, - 0.42877399921417236, - 0.4011841118335724, - 0.3693832755088806, - 0.3342388868331909, - 0.29670968651771545, - 0.2578192949295044, - 0.21862860023975372, - 0.18020659685134888, - 0.14360131323337555, - 0.10981127619743347, - 0.0797581821680069, - 0.05426180362701416, - 0.03401762247085571, - 0.01957780122756958, - 0.011336296796798706, - 0.009517863392829895, - 0.01417212188243866, - 0.02517208456993103, - 0.04221774637699127, - 0.06484413146972656, - 0.42877399921417236, - 0.4021574556827545, - 0.37130340933799744, - 0.33705344796180725, - 0.3003418743610382, - 0.26217007637023926, - 0.2235792726278305, - 0.18562209606170654, - 0.14933395385742188, - 0.11570468544960022, - 0.08565159142017365, - 0.059994444251060486, - 0.03943312168121338, - 0.024528473615646362, - 0.015687063336372375, - 0.013150066137313843, - 0.0169866681098938, - 0.02709221839904785, - 0.0431910902261734, - 0.06484413146972656, - 0.42877399921417236, - 0.4057461619377136, - 0.37838298082351685, - 0.3474307358264923, - 0.313733845949173, - 0.27821141481399536, - 0.24183239042758942, - 0.20558911561965942, - 0.1704702079296112, - 0.13743364810943604, - 0.10738055408000946, - 0.08113071322441101, - 0.05940014123916626, - 0.04278159141540527, - 0.031728386878967285, - 0.026542022824287415, - 0.02736397087574005, - 0.03417178988456726, - 0.046779826283454895, - 0.06484413146972656, - 0.42877399921417236, - 0.41156139969825745, - 0.3898547887802124, - 0.3642462193965912, - 0.33543431758880615, - 0.30420494079589844, - 0.27140992879867554, - 0.2379438877105713, - 0.2047196626663208, - 0.1726435273885727, - 0.14259043335914612, - 0.11538015305995941, - 0.09175491333007812, - 0.07235914468765259, - 0.05772191286087036, - 0.04824249446392059, - 0.04417945444583893, - 0.04564359784126282, - 0.052595049142837524, - 0.06484413146972656, - 0.42877399921417236, - 0.4189729392528534, - 0.40447568893432617, - 0.385677695274353, - 0.36309170722961426, - 0.3373338580131531, - 0.3091067373752594, - 0.27918028831481934, - 0.24837081134319305, - 0.21751876175403595, - 0.18746566772460938, - 0.15903131663799286, - 0.13299131393432617, - 0.11005593836307526, - 0.09085085988044739, - 0.07589989900588989, - 0.06561090052127838, - 0.06026449799537659, - 0.06000657379627228, - 0.06484413146972656, - 0.42877399921417236, - 0.4271776080131531, - 0.4206612706184387, - 0.40940260887145996, - 0.39370888471603394, - 0.3740081191062927, - 0.35083767771720886, - 0.3248296082019806, - 0.2966933250427246, - 0.2671963572502136, - 0.23714326322078705, - 0.20735383033752441, - 0.17864063382148743, - 0.1517868936061859, - 0.12752512097358704, - 0.10651709139347076, - 0.0893358588218689, - 0.07645006477832794, - 0.06821125745773315, - 0.06484411656856537 - ], - "y": [ - -1.1241374015808105, - -1.1038219928741455, - -1.0851932764053345, - -1.0687594413757324, - -1.0549688339233398, - -1.0441975593566895, - -1.0367393493652344, - -1.0327978134155273, - -1.0324803590774536, - -1.0357956886291504, - -1.042653203010559, - -1.0528661012649536, - -1.0661556720733643, - -1.0821595191955566, - -1.1004409790039062, - -1.1205012798309326, - -1.1417934894561768, - -1.1637367010116577, - -1.1857322454452515, - -1.2071802616119385, - -1.1241374015808105, - -1.1080812215805054, - -1.0935956239700317, - -1.0810757875442505, - -1.070863127708435, - -1.0632362365722656, - -1.0584031343460083, - -1.0564957857131958, - -1.0575660467147827, - -1.0615848302841187, - -1.0684423446655273, - -1.0779519081115723, - -1.0898537635803223, - -1.1038233041763306, - -1.1194796562194824, - -1.1363956928253174, - -1.1541098356246948, - -1.172139048576355, - -1.1899915933609009, - -1.2071802616119385, - -1.1241374015808105, - -1.114141821861267, - -1.1055516004562378, - -1.0986008644104004, - -1.0934792757034302, - -1.0903266668319702, - -1.089228868484497, - -1.090215802192688, - -1.0932607650756836, - -1.098280429840088, - -1.1051380634307861, - -1.1136465072631836, - -1.1235737800598145, - -1.1346490383148193, - -1.146570086479187, - -1.1590118408203125, - -1.1716349124908447, - -1.184095025062561, - -1.1960521936416626, - -1.2071802616119385, - -1.1241374015808105, - -1.1213469505310059, - -1.119765281677246, - -1.119435429573059, - -1.1203665733337402, - -1.1225329637527466, - -1.1258758306503296, - -1.1303038597106934, - -1.135696291923523, - -1.1419060230255127, - -1.148763656616211, - -1.1560821533203125, - -1.1636618375778198, - -1.1712960004806519, - -1.1787763833999634, - -1.185899019241333, - -1.192469596862793, - -1.1983087062835693, - -1.2032573223114014, - -1.2071802616119385, - -1.1241374015808105, - -1.1289159059524536, - -1.13469660282135, - -1.1413218975067139, - -1.148611068725586, - -1.1563652753829956, - -1.1643730401992798, - -1.1724157333374023, - -1.180274248123169, - -1.1877340078353882, - -1.1945916414260864, - -1.200659990310669, - -1.2057737112045288, - -1.209793210029602, - -1.2126086950302124, - -1.2141436338424683, - -1.2143560647964478, - -1.2132400274276733, - -1.2108261585235596, - -1.2071802616119385, - -1.1241374015808105, - -1.1360282897949219, - -1.148727536201477, - -1.1618884801864624, - -1.1751524209976196, - -1.188157320022583, - -1.200548529624939, - -1.2119879722595215, - -1.2221637964248657, - -1.2307982444763184, - -1.2376558780670166, - -1.2425496578216553, - -1.245345950126648, - -1.2459686994552612, - -1.2444007396697998, - -1.2406848669052124, - -1.2349225282669067, - -1.2272709608078003, - -1.2179386615753174, - -1.2071802616119385, - -1.1241374015808105, - -1.1419135332107544, - -1.1603374481201172, - -1.1789064407348633, - -1.197114109992981, - -1.2144638299942017, - -1.2304821014404297, - -1.24473237991333, - -1.256825566291809, - -1.2664320468902588, - -1.273289680480957, - -1.2772114276885986, - -1.278090238571167, - -1.2759023904800415, - -1.2707072496414185, - -1.2626466751098633, - -1.2519404888153076, - -1.2388808727264404, - -1.22382390499115, - -1.2071802616119385, - -1.1241374015808105, - -1.1459338665008545, - -1.1682683229446411, - -1.190531611442566, - -1.2121164798736572, - -1.2324340343475342, - -1.2509301900863647, - -1.26710045337677, - -1.280503511428833, - -1.2907739877700806, - -1.2976316213607788, - -1.3008893728256226, - -1.3004584312438965, - -1.296350359916687, - -1.2886775732040405, - -1.2776490449905396, - -1.2635656595230103, - -1.2468117475509644, - -1.2278441190719604, - -1.2071802616119385, - -1.1241374015808105, - -1.1476534605026245, - -1.1716606616973877, - -1.1955043077468872, - -1.2185336351394653, - -1.240120768547058, - -1.2596768140792847, - -1.2766683101654053, - -1.290631651878357, - -1.3011860847473145, - -1.3080437183380127, - -1.3110175132751465, - -1.3100261688232422, - -1.305096983909607, - -1.2963643074035645, - -1.2840662002563477, - -1.2685383558273315, - -1.250204086303711, - -1.22956383228302, - -1.2071802616119385, - -1.1241374015808105, - -1.1468862295150757, - -1.1701470613479614, - -1.1932854652404785, - -1.2156703472137451, - -1.2366909980773926, - -1.2557741403579712, - -1.2723991870880127, - -1.2861125469207764, - -1.2965402603149414, - -1.3033978939056396, - -1.306498408317566, - -1.3057570457458496, - -1.3011943101882935, - -1.2929344177246094, - -1.2812029123306274, - -1.2663195133209229, - -1.2486904859542847, - -1.2287964820861816, - -1.2071802616119385, - -1.1241374015808105, - -1.1437150239944458, - -1.163891315460205, - -1.1841157674789429, - -1.2038367986679077, - -1.2225162982940674, - -1.239645004272461, - -1.2547556161880493, - -1.2674357891082764, - -1.2773398160934448, - -1.284197449684143, - -1.287821650505066, - -1.2881135940551758, - -1.2850651741027832, - -1.2787598371505737, - -1.2693692445755005, - -1.2571498155593872, - -1.2424347400665283, - -1.2256253957748413, - -1.2071802616119385, - -1.1241374015808105, - -1.1384837627410889, - -1.153571367263794, - -1.1689887046813965, - -1.1843152046203613, - -1.1991329193115234, - -1.213037371635437, - -1.2256495952606201, - -1.2366254329681396, - -1.245665431022644, - -1.2525229454040527, - -1.2570111751556396, - -1.2590075731277466, - -1.2584575414657593, - -1.2553763389587402, - -1.2498477697372437, - -1.2420227527618408, - -1.2321147918701172, - -1.2203940153121948, - -1.2071802616119385, - -1.1241374015808105, - -1.1317591667175293, - -1.1403056383132935, - -1.1495436429977417, - -1.1592212915420532, - -1.169074535369873, - -1.1788345575332642, - -1.1882352828979492, - -1.1970200538635254, - -1.2049494981765747, - -1.211807131767273, - -1.217405915260315, - -1.2215932607650757, - -1.2242547273635864, - -1.2253179550170898, - -1.2247538566589355, - -1.2225778102874756, - -1.2188490629196167, - -1.2136694192886353, - -1.2071802616119385, - -1.1241374015808105, - -1.124269962310791, - -1.125531554222107, - -1.1278877258300781, - -1.1312742233276367, - -1.1355986595153809, - -1.1407430171966553, - -1.1465669870376587, - -1.15291166305542, - -1.1596041917800903, - -1.1664618253707886, - -1.1732975244522095, - -1.1799249649047852, - -1.1861631870269775, - -1.1918420791625977, - -1.196806788444519, - -1.2009217739105225, - -1.2040749788284302, - -1.2061803340911865, - -1.2071802616119385, - -1.1241374015808105, - -1.1168278455734253, - -1.1108503341674805, - -1.1063677072525024, - -1.1035025119781494, - -1.1023328304290771, - -1.1028903722763062, - -1.1051602363586426, - -1.109080195426941, - -1.1145435571670532, - -1.1214011907577515, - -1.1294660568237305, - -1.1385180950164795, - -1.1483105421066284, - -1.158576250076294, - -1.1690350770950317, - -1.1794018745422363, - -1.1893937587738037, - -1.1987380981445312, - -1.2071802616119385, - -1.1241374015808105, - -1.1102391481399536, - -1.0978525876998901, - -1.0873156785964966, - -1.0789157152175903, - -1.0728819370269775, - -1.0693787336349487, - -1.0685019493103027, - -1.0702753067016602, - -1.0746504068374634, - -1.0815080404281616, - -1.0906611680984497, - -1.1018599271774292, - -1.114798903465271, - -1.1291253566741943, - -1.1444482803344727, - -1.160349726676941, - -1.1763960123062134, - -1.1921495199203491, - -1.2071802616119385, - -1.1241374015808105, - -1.1052179336547852, - -1.087947130203247, - -1.072796106338501, - -1.0601780414581299, - -1.050437331199646, - -1.0438395738601685, - -1.0405646562576294, - -1.0407021045684814, - -1.0442478656768799, - -1.0511054992675781, - -1.0610878467559814, - -1.0739226341247559, - -1.0892597436904907, - -1.1066807508468628, - -1.1257106065750122, - -1.1458301544189453, - -1.1664905548095703, - -1.1871281862258911, - -1.2071802616119385, - -1.1241374015808105, - -1.1023082733154297, - -1.082207202911377, - -1.0643824338912964, - -1.0493202209472656, - -1.0374314785003662, - -1.0290403366088867, - -1.0243759155273438, - -1.0235652923583984, - -1.0266306400299072, - -1.0334882736206055, - -1.043951153755188, - -1.0577338933944702, - -1.074460506439209, - -1.093674898147583, - -1.114852786064148, - -1.1374164819717407, - -1.1607506275177002, - -1.1842185258865356, - -1.2071802616119385, - -1.1241374015808105, - -1.101825475692749, - -1.0812548398971558, - -1.0629864931106567, - -1.0475187301635742, - -1.035273551940918, - -1.0265849828720093, - -1.0216898918151855, - -1.0207220315933228, - -1.023707628250122, - -1.0305652618408203, - -1.0411078929901123, - -1.055047869682312, - -1.0720051527023315, - -1.0915169715881348, - -1.1130512952804565, - -1.136020541191101, - -1.159798264503479, - -1.1837358474731445, - -1.2071802616119385, - -1.1241374015808105, - -1.1038219928741455, - -1.0851932764053345, - -1.0687594413757324, - -1.0549688339233398, - -1.0441975593566895, - -1.0367393493652344, - -1.0327978134155273, - -1.0324803590774536, - -1.0357956886291504, - -1.042653203010559, - -1.0528662204742432, - -1.0661557912826538, - -1.0821595191955566, - -1.1004409790039062, - -1.1205012798309326, - -1.1417934894561768, - -1.1637367010116577, - -1.1857322454452515, - -1.2071802616119385 - ], - "z": [ - 0.5634872913360596, - 0.5547348856925964, - 0.5419980883598328, - 0.5256243348121643, - 0.5060603022575378, - 0.48383957147598267, - 0.4595683217048645, - 0.433908611536026, - 0.4075603485107422, - 0.3812422454357147, - 0.3556721806526184, - 0.33154767751693726, - 0.3095267415046692, - 0.290210098028183, - 0.2741246223449707, - 0.2617090940475464, - 0.2533021569252014, - 0.2491331398487091, - 0.2493157982826233, - 0.25384509563446045, - 0.5634872913360596, - 0.5463467836380005, - 0.5254507064819336, - 0.5013689994812012, - 0.4747586250305176, - 0.4463454484939575, - 0.416904479265213, - 0.3872387707233429, - 0.35815754532814026, - 0.33045411109924316, - 0.30488404631614685, - 0.2821449041366577, - 0.26285693049430847, - 0.2475462406873703, - 0.23663051426410675, - 0.2304074466228485, - 0.22904682159423828, - 0.23258574306964874, - 0.24092769622802734, - 0.25384509563446045, - 0.5634872913360596, - 0.5395872592926025, - 0.5121160745620728, - 0.48182305693626404, - 0.44953447580337524, - 0.4161311388015747, - 0.38252419233322144, - 0.34963029623031616, - 0.31834676861763, - 0.28952687978744507, - 0.26395684480667114, - 0.24233409762382507, - 0.22524844110012054, - 0.21316593885421753, - 0.20641618967056274, - 0.20518329739570618, - 0.20950087904930115, - 0.21925115585327148, - 0.23416821658611298, - 0.25384509563446045, - 0.5634872913360596, - 0.5351889133453369, - 0.5034393668174744, - 0.4691045880317688, - 0.4331212341785431, - 0.3964708149433136, - 0.36015304923057556, - 0.32515859603881836, - 0.2924420237541199, - 0.26289576292037964, - 0.23732569813728333, - 0.21642936766147614, - 0.20077675580978394, - 0.19079482555389404, - 0.18675586581230164, - 0.18877004086971283, - 0.1967824101448059, - 0.21057440340518951, - 0.22976984083652496, - 0.25384509563446045, - 0.5634872913360596, - 0.5336282849311829, - 0.5003606677055359, - 0.4645918607711792, - 0.42729753255844116, - 0.38949498534202576, - 0.35221540927886963, - 0.31647562980651855, - 0.2832505702972412, - 0.2534465491771698, - 0.22787649929523468, - 0.20723792910575867, - 0.19209378957748413, - 0.18285715579986572, - 0.1797800362110138, - 0.1829463243484497, - 0.1922696828842163, - 0.20749573409557343, - 0.2282092273235321, - 0.25384509563446045, - 0.5634872913360596, - 0.5350745916366577, - 0.5032137632369995, - 0.46877387166023254, - 0.4326944649219513, - 0.39595961570739746, - 0.35957133769989014, - 0.3245222866535187, - 0.2917684316635132, - 0.26220327615737915, - 0.23663321137428284, - 0.21575577557086945, - 0.20014043152332306, - 0.19021311402320862, - 0.1862446367740631, - 0.18834325671195984, - 0.19645170867443085, - 0.21034878492355347, - 0.22965547442436218, - 0.25384509563446045, - 0.5634872913360596, - 0.5393709540367126, - 0.511689305305481, - 0.48119744658470154, - 0.44872716069221497, - 0.4151640832424164, - 0.38142380118370056, - 0.34842658042907715, - 0.3170725703239441, - 0.2882169783115387, - 0.2626469135284424, - 0.24105989933013916, - 0.22404472529888153, - 0.21206554770469666, - 0.20544913411140442, - 0.2043759524822235, - 0.20887528359889984, - 0.2188243567943573, - 0.2339518666267395, - 0.25384509563446045, - 0.5634872913360596, - 0.5460518598556519, - 0.5248689651489258, - 0.5005162954330444, - 0.4736582636833191, - 0.4450273811817169, - 0.41540467739105225, - 0.3855981230735779, - 0.3564208447933197, - 0.32866865396499634, - 0.3030986189842224, - 0.28040817379951477, - 0.26121628284454346, - 0.24604642391204834, - 0.23531241714954376, - 0.22930705547332764, - 0.22819414734840393, - 0.23200401663780212, - 0.2406328171491623, - 0.25384509563446045, - 0.5634872913360596, - 0.5543934106826782, - 0.5413244962692261, - 0.52463698387146, - 0.5047860741615295, - 0.4823133051395416, - 0.45783162117004395, - 0.4320088028907776, - 0.4055492877960205, - 0.3791747987270355, - 0.3536047339439392, - 0.3295366168022156, - 0.30762696266174316, - 0.28847336769104004, - 0.2725983262062073, - 0.2604348659515381, - 0.25231480598449707, - 0.24845954775810242, - 0.24897433817386627, - 0.25384509563446045, - 0.5634872913360596, - 0.5634915828704834, - 0.5592726469039917, - 0.550945520401001, - 0.538737416267395, - 0.5229813456535339, - 0.5041069984436035, - 0.48262929916381836, - 0.4591341018676758, - 0.4342622458934784, - 0.4086921811103821, - 0.38312143087387085, - 0.35824745893478394, - 0.334748774766922, - 0.313266396522522, - 0.29438626766204834, - 0.2786233723163605, - 0.26640769839286804, - 0.25807249546051025, - 0.25384509563446045, - 0.5634872913360596, - 0.5723604559898376, - 0.5767685174942017, - 0.5765911340713501, - 0.5718331933021545, - 0.5626245141029358, - 0.5492162108421326, - 0.5319741368293762, - 0.5113685131072998, - 0.48796141147613525, - 0.46239134669303894, - 0.4353558123111725, - 0.4075922667980194, - 0.37985798716545105, - 0.35290956497192383, - 0.3274819850921631, - 0.3042689263820648, - 0.2839035391807556, - 0.2669413685798645, - 0.25384509563446045, - 0.5634872913360596, - 0.5800389647483826, - 0.5919160842895508, - 0.5987945795059204, - 0.6004868745803833, - 0.5969468355178833, - 0.5882709622383118, - 0.5746959447860718, - 0.5565920472145081, - 0.5344531536102295, - 0.5088831186294556, - 0.4805794060230255, - 0.45031410455703735, - 0.41891270875930786, - 0.38723188638687134, - 0.35613569617271423, - 0.3264724016189575, - 0.2990511357784271, - 0.2746199071407318, - 0.25384509563446045, - 0.5634872913360596, - 0.5856950283050537, - 0.6030739545822144, - 0.6151498556137085, - 0.6215934753417969, - 0.6222289800643921, - 0.6170390248298645, - 0.6061652302742004, - 0.5899041891098022, - 0.5686994194984436, - 0.5431293249130249, - 0.5138915181159973, - 0.481783390045166, - 0.447680801153183, - 0.4125140309333801, - 0.3772422671318054, - 0.3428276777267456, - 0.3102089762687683, - 0.28027597069740295, - 0.25384509563446045, - 0.5634872913360596, - 0.5887157320976257, - 0.609032928943634, - 0.6238845586776733, - 0.6328656673431396, - 0.6357311606407166, - 0.6324029564857483, - 0.622971773147583, - 0.6076948642730713, - 0.5869890451431274, - 0.5614189505577087, - 0.5316822528839111, - 0.4985899329185486, - 0.4630447328090668, - 0.42601627111434937, - 0.3885144889354706, - 0.35156241059303284, - 0.316167950630188, - 0.2832966446876526, - 0.25384509563446045, - 0.5634872913360596, - 0.5887737274169922, - 0.609147310256958, - 0.6240522265434265, - 0.6330820322036743, - 0.6359903216362, - 0.6326978206634521, - 0.6232943534851074, - 0.6080363392829895, - 0.5873400568962097, - 0.5617700219154358, - 0.5320236682891846, - 0.4989124834537506, - 0.463339626789093, - 0.4262754023075104, - 0.38873082399368286, - 0.3517300486564636, - 0.31628233194351196, - 0.28335464000701904, - 0.25384509563446045, - 0.5634872913360596, - 0.5858626961708069, - 0.6034046411514282, - 0.6156346201896667, - 0.6222190856933594, - 0.6229783296585083, - 0.6178917288780212, - 0.6070979833602905, - 0.5908915400505066, - 0.5697144865989685, - 0.5441443920135498, - 0.5148788690567017, - 0.4827161431312561, - 0.4485335052013397, - 0.4132634103298187, - 0.3778678774833679, - 0.34331244230270386, - 0.31053972244262695, - 0.28044360876083374, - 0.25384509563446045, - 0.5634872913360596, - 0.580298125743866, - 0.5924273133277893, - 0.5995439291000366, - 0.601453959941864, - 0.5981051921844482, - 0.5895890593528748, - 0.5761377811431885, - 0.5581183433532715, - 0.5360222458839417, - 0.510452151298523, - 0.48210567235946655, - 0.45175594091415405, - 0.42023080587387085, - 0.38839027285575867, - 0.35710275173187256, - 0.32722175121307373, - 0.29956236481666565, - 0.2748790383338928, - 0.25384509563446045, - 0.5634872913360596, - 0.5726830363273621, - 0.577404797077179, - 0.5775238275527954, - 0.5730369091033936, - 0.5640662908554077, - 0.5508568286895752, - 0.5337687730789185, - 0.513268232345581, - 0.4899144470691681, - 0.46434441208839417, - 0.4372555911540985, - 0.40938693284988403, - 0.38149863481521606, - 0.3543514013290405, - 0.3286857008934021, - 0.3052016794681549, - 0.2845398783683777, - 0.2672639489173889, - 0.25384509563446045, - 0.5634872913360596, - 0.5638425946235657, - 0.5599651336669922, - 0.5519605875015259, - 0.5400473475456238, - 0.5245503783226013, - 0.5058923959732056, - 0.4845823049545288, - 0.4612014591693878, - 0.4363875687122345, - 0.41081753373146057, - 0.3851887881755829, - 0.3602004647254944, - 0.33653414249420166, - 0.31483542919158936, - 0.2956961393356323, - 0.2796383798122406, - 0.26710015535354614, - 0.25842350721359253, - 0.25384509563446045, - 0.5634872913360596, - 0.5547348856925964, - 0.5419980883598328, - 0.5256243348121643, - 0.5060602426528931, - 0.4838395416736603, - 0.4595683217048645, - 0.4339085817337036, - 0.4075603187084198, - 0.38124221563339233, - 0.355672150850296, - 0.33154764771461487, - 0.3095267415046692, - 0.2902100682258606, - 0.2741246223449707, - 0.261709064245224, - 0.2533021569252014, - 0.2491331249475479, - 0.2493157833814621, - 0.25384509563446045 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - 0.36476022005081177, - 0.36294829845428467, - 0.3560750484466553, - 0.34432798624038696, - 0.32802748680114746, - 0.30761831998825073, - 0.2836570143699646, - 0.25679731369018555, - 0.2277718484401703, - 0.19737231731414795, - 0.16642796993255615, - 0.1357828676700592, - 0.10627295076847076, - 0.07870316505432129, - 0.053825557231903076, - 0.03231869637966156, - 0.014769211411476135, - 0.0016558915376663208, - -0.006663650274276733, - -0.009962424635887146, - 0.36476022005081177, - 0.37364810705184937, - 0.37718284130096436, - 0.37526798248291016, - 0.36795574426651, - 0.35544562339782715, - 0.3380788564682007, - 0.3163291811943054, - 0.29078981280326843, - 0.26215746998786926, - 0.23121310770511627, - 0.19880084693431854, - 0.16580480337142944, - 0.13312500715255737, - 0.10165289044380188, - 0.07224692404270172, - 0.04570920765399933, - 0.022763684391975403, - 0.0040361881256103516, - -0.009962424635887146, - 0.36476022005081177, - 0.38310790061950684, - 0.39584434032440186, - 0.40262216329574585, - 0.40325647592544556, - 0.3977300226688385, - 0.38619348406791687, - 0.3689615726470947, - 0.3465043306350708, - 0.31943434476852417, - 0.2884899973869324, - 0.2545153796672821, - 0.21843720972537994, - 0.18123963475227356, - 0.14393730461597443, - 0.10754769295454025, - 0.073063425719738, - 0.0414251983165741, - 0.013495951890945435, - -0.009962424635887146, - 0.36476022005081177, - 0.39030247926712036, - 0.4100373089313507, - 0.4234263598918915, - 0.43010443449020386, - 0.4298893213272095, - 0.4227869510650635, - 0.4089910387992859, - 0.38887789845466614, - 0.3629961609840393, - 0.3320518136024475, - 0.29688894748687744, - 0.2584666609764099, - 0.21783310174942017, - 0.1760966032743454, - 0.13439559936523438, - 0.09386761486530304, - 0.05561815947294235, - 0.020690560340881348, - -0.009962424635887146, - 0.36476022005081177, - 0.3944522738456726, - 0.41822370886802673, - 0.4354260563850403, - 0.445590078830719, - 0.4484385848045349, - 0.44389379024505615, - 0.4320797324180603, - 0.4133186340332031, - 0.3881222605705261, - 0.3571779131889343, - 0.32132968306541443, - 0.2815553545951843, - 0.23893992602825165, - 0.19464583694934845, - 0.1498812884092331, - 0.10586730390787125, - 0.06380455940961838, - 0.024840354919433594, - -0.009962424635887146, - 0.36476022005081177, - 0.39510756731033325, - 0.419516384601593, - 0.43732088804244995, - 0.44803541898727417, - 0.45136767625808716, - 0.44722670316696167, - 0.4357256293296814, - 0.4171780049800873, - 0.3920898735523224, - 0.3611455261707306, - 0.3251890540122986, - 0.28520122170448303, - 0.24227285385131836, - 0.1975749284029007, - 0.15232659876346588, - 0.10776214301586151, - 0.06509725004434586, - 0.02549564838409424, - -0.009962424635887146, - 0.36476022005081177, - 0.3921973407268524, - 0.41377532482147217, - 0.42890554666519165, - 0.4371753931045532, - 0.4383591413497925, - 0.4324246048927307, - 0.4195336103439331, - 0.40003782510757446, - 0.3744690418243408, - 0.343524694442749, - 0.30804887413978577, - 0.26900923252105713, - 0.22747072577476501, - 0.1845664381980896, - 0.14146657288074493, - 0.0993468165397644, - 0.05935617536306381, - 0.02258540689945221, - -0.009962424635887146, - 0.36476022005081177, - 0.3860369622707367, - 0.40162259340286255, - 0.41109198331832886, - 0.41418683528900146, - 0.4108227491378784, - 0.40109142661094666, - 0.38525843620300293, - 0.3637554943561554, - 0.33716925978660583, - 0.30622491240501404, - 0.2717665433883667, - 0.23473404347896576, - 0.19613757729530334, - 0.15703001618385315, - 0.11847802996635437, - 0.08153324574232101, - 0.047203436493873596, - 0.016425028443336487, - -0.009962424635887146, - 0.36476022005081177, - 0.37729400396347046, - 0.3843751549720764, - 0.3858105540275574, - 0.3815609812736511, - 0.3717424273490906, - 0.35662269592285156, - 0.3366142213344574, - 0.31226271390914917, - 0.2842325270175934, - 0.2532881796360016, - 0.22027376294136047, - 0.18608984351158142, - 0.15166884660720825, - 0.1179497241973877, - 0.08585218340158463, - 0.05625179409980774, - 0.029956012964248657, - 0.0076820701360702515, - -0.009962424635887146, - 0.36476022005081177, - 0.36691588163375854, - 0.3639020323753357, - 0.3558008670806885, - 0.34283334016799927, - 0.32535320520401, - 0.30383723974227905, - 0.27887240052223206, - 0.2511396110057831, - 0.2213953733444214, - 0.1904510259628296, - 0.1591506451368332, - 0.12834802269935608, - 0.09888339042663574, - 0.07156046479940414, - 0.04712451994419098, - 0.026242107152938843, - 0.009482890367507935, - -0.002696022391319275, - -0.009962424635887146, - 0.36476022005081177, - 0.3560273051261902, - 0.34242182970046997, - 0.3243149518966675, - 0.3022006154060364, - 0.2766820192337036, - 0.248455211520195, - 0.21829017996788025, - 0.1870097517967224, - 0.15546715259552002, - 0.12452280521392822, - 0.09502077847719193, - 0.06776580959558487, - 0.0435013473033905, - 0.02288927137851715, - 0.006491795182228088, - -0.005243778228759766, - -0.011997327208518982, - -0.013584643602371216, - -0.009962424635887146, - 0.36476022005081177, - 0.34580808877944946, - 0.3222622275352478, - 0.29476484656333923, - 0.26406601071357727, - 0.23100315034389496, - 0.19647806882858276, - 0.16143259406089783, - 0.12682262063026428, - 0.09359225630760193, - 0.06264790147542953, - 0.0348336398601532, - 0.01090821623802185, - -0.00847579538822174, - -0.022789597511291504, - -0.03164280951023102, - -0.0347939133644104, - -0.03215692937374115, - -0.023803815245628357, - -0.009962409734725952, - 0.36476022005081177, - 0.3373657763004303, - 0.3056078255176544, - 0.27035269141197205, - 0.23256200551986694, - 0.1932666301727295, - 0.15353840589523315, - 0.1144610270857811, - 0.07710044831037521, - 0.042475730180740356, - 0.01153138279914856, - -0.014888525009155273, - -0.03606334328651428, - -0.051415473222732544, - -0.060526132583618164, - -0.06314682960510254, - -0.05920606851577759, - -0.04881131649017334, - -0.03224615752696991, - -0.009962409734725952, - 0.36476022005081177, - 0.331615149974823, - 0.29426342248916626, - 0.25372394919395447, - 0.21110251545906067, - 0.16756176948547363, - 0.12428931891918182, - 0.08246555179357529, - 0.04323133826255798, - 0.007656887173652649, - -0.023287460207939148, - -0.04875762760639191, - -0.06805881857872009, - -0.08066456019878387, - -0.08623100817203522, - -0.08460630476474762, - -0.07583479583263397, - -0.0601557195186615, - -0.03799678385257721, - -0.009962409734725952, - 0.36476022005081177, - 0.32917940616607666, - 0.28945833444595337, - 0.2466806322336197, - 0.2020130604505539, - 0.1566741168498993, - 0.11190047860145569, - 0.06891346722841263, - 0.02888566255569458, - -0.007091104984283447, - -0.038035452365875244, - -0.06310330331325531, - -0.08161090314388275, - -0.0930534154176712, - -0.09711863100528717, - -0.09369577467441559, - -0.08287812769412994, - -0.06496080756187439, - -0.04043254256248474, - -0.009962409734725952, - 0.36476022005081177, - 0.3303224444389343, - 0.29171329736709595, - 0.249985933303833, - 0.20627859234809875, - 0.16178351640701294, - 0.11771434545516968, - 0.07527322322130203, - 0.035617828369140625, - -0.0001701265573501587, - -0.031114473938941956, - -0.056371137499809265, - -0.07525114715099335, - -0.08723954856395721, - -0.09200926125049591, - -0.08943022787570953, - -0.07957281172275543, - -0.062705859541893, - -0.03928948938846588, - -0.009962409734725952, - 0.36476022005081177, - 0.3349204659461975, - 0.3007839024066925, - 0.2632817327976227, - 0.2234368920326233, - 0.18233628571033478, - 0.14110097289085388, - 0.10085577517747879, - 0.06269846111536026, - 0.027669906616210938, - -0.0032744407653808594, - -0.029290512204170227, - -0.04966859519481659, - -0.06385290622711182, - -0.07145647704601288, - -0.072271928191185, - -0.06627701222896576, - -0.053635239601135254, - -0.0346914678812027, - -0.009962409734725952, - 0.36476022005081177, - 0.34247517585754395, - 0.31568723917007446, - 0.2851272225379944, - 0.251628577709198, - 0.21610520780086517, - 0.17952600121498108, - 0.14288876950740814, - 0.10719288885593414, - 0.07341206073760986, - 0.042467713356018066, - 0.015203908085823059, - -0.0076356083154678345, - -0.02542787790298462, - -0.03768754005432129, - -0.0440802276134491, - -0.04443153738975525, - -0.0387318879365921, - -0.027136757969856262, - -0.009962409734725952, - 0.36476022005081177, - 0.35216790437698364, - 0.334808349609375, - 0.31315505504608154, - 0.2877987027168274, - 0.2594309449195862, - 0.22882550954818726, - 0.1968173384666443, - 0.16427947580814362, - 0.1320994645357132, - 0.1011551171541214, - 0.07229049503803253, - 0.04629296064376831, - 0.02387164533138275, - 0.005638182163238525, - -0.00791013240814209, - -0.016403689980506897, - -0.019610807299613953, - -0.01744401454925537, - -0.009962424635887146, - 0.36476022005081177, - 0.36294829845428467, - 0.3560750484466553, - 0.34432798624038696, - 0.32802751660346985, - 0.30761831998825073, - 0.2836570739746094, - 0.2567973732948303, - 0.22777187824249268, - 0.19737234711647034, - 0.16642799973487854, - 0.1357828974723816, - 0.10627298802137375, - 0.07870319485664368, - 0.05382557958364487, - 0.032318711280822754, - 0.014769241213798523, - 0.0016558915376663208, - -0.0066636353731155396, - -0.009962424635887146 - ], - "y": [ - -1.2712502479553223, - -1.2575628757476807, - -1.2454502582550049, - -1.2352427244186401, - -1.2272186279296875, - -1.2215969562530518, - -1.2185310125350952, - -1.2181044816970825, - -1.2203289270401, - -1.2251436710357666, - -1.2324174642562866, - -1.2419517040252686, - -1.2534866333007812, - -1.2667073011398315, - -1.2812533378601074, - -1.2967277765274048, - -1.3127084970474243, - -1.328759789466858, - -1.344443678855896, - -1.3593323230743408, - -1.2712502479553223, - -1.261195421218872, - -1.252616286277771, - -1.2457466125488281, - -1.2407740354537964, - -1.237834095954895, - -1.2370069026947021, - -1.238315224647522, - -1.2417231798171997, - -1.2471379041671753, - -1.2544116973876953, - -1.2633460760116577, - -1.2736973762512207, - -1.285183310508728, - -1.2974904775619507, - -1.3102831840515137, - -1.3232125043869019, - -1.335925817489624, - -1.3480762243270874, - -1.3593323230743408, - -1.2712502479553223, - -1.2659826278686523, - -1.2620601654052734, - -1.2595895528793335, - -1.2586383819580078, - -1.259232521057129, - -1.2613558769226074, - -1.2649503946304321, - -1.2699180841445923, - -1.2761235237121582, - -1.2833971977233887, - -1.2915409803390503, - -1.3003325462341309, - -1.3095321655273438, - -1.3188889026641846, - -1.328147530555725, - -1.3370554447174072, - -1.3453696966171265, - -1.3528634309768677, - -1.3593323230743408, - -1.2712502479553223, - -1.271405816078186, - -1.2727584838867188, - -1.2752712965011597, - -1.278875708580017, - -1.2834734916687012, - -1.2889392375946045, - -1.2951236963272095, - -1.3018584251403809, - -1.3089593648910522, - -1.3162331581115723, - -1.3234812021255493, - -1.3305058479309082, - -1.3371155261993408, - -1.3431298732757568, - -1.3483848571777344, - -1.3527371883392334, - -1.3560680150985718, - -1.3582864999771118, - -1.3593323230743408, - -1.2712502479553223, - -1.2768771648406982, - -1.2835519313812256, - -1.2910925149917603, - -1.2992931604385376, - -1.3079301118850708, - -1.316767930984497, - -1.3255654573440552, - -1.3340827226638794, - -1.3420873880386353, - -1.3493611812591553, - -1.3557056188583374, - -1.360947608947754, - -1.3649442195892334, - -1.3675864934921265, - -1.3688021898269653, - -1.368558406829834, - -1.3668614625930786, - -1.3637579679489136, - -1.3593323230743408, - -1.2712502479553223, - -1.281803846359253, - -1.2932709455490112, - -1.305338740348816, - -1.3176779747009277, - -1.3299520015716553, - -1.3418262004852295, - -1.352976679801941, - -1.3630990982055664, - -1.371917486190796, - -1.379191279411316, - -1.3847219944000244, - -1.3883588314056396, - -1.3900026082992554, - -1.389608383178711, - -1.3871870040893555, - -1.3828045129776, - -1.3765804767608643, - -1.3686846494674683, - -1.3593323230743408, - -1.2712502479553223, - -1.2856520414352417, - -1.3008623123168945, - -1.3164660930633545, - -1.3320379257202148, - -1.347152829170227, - -1.3613988161087036, - -1.3743870258331299, - -1.385763168334961, - -1.3952170610427856, - -1.4024908542633057, - -1.407386064529419, - -1.4097691774368286, - -1.40957510471344, - -1.4068092107772827, - -1.4015470743179321, - -1.3939319849014282, - -1.3841718435287476, - -1.3725327253341675, - -1.3593323230743408, - -1.2712502479553223, - -1.2880046367645264, - -1.305503249168396, - -1.3232688903808594, - -1.3408169746398926, - -1.3576686382293701, - -1.3733645677566528, - -1.3874762058258057, - -1.3996189832687378, - -1.409461498260498, - -1.4167351722717285, - -1.4212418794631958, - -1.422858476638794, - -1.4215408563613892, - -1.4173250198364258, - -1.4103260040283203, - -1.400734782218933, - -1.388812780380249, - -1.3748853206634521, - -1.3593323230743408, - -1.2712502479553223, - -1.2886066436767578, - -1.3066909313201904, - -1.325009822845459, - -1.3430637121200562, - -1.3603599071502686, - -1.3764268159866333, - -1.3908261060714722, - -1.4031649827957153, - -1.413106918334961, - -1.4203805923461914, - -1.4247878789901733, - -1.426208257675171, - -1.4246031045913696, - -1.4200162887573242, - -1.4125728607177734, - -1.4024757146835327, - -1.3900004625320435, - -1.3754874467849731, - -1.3593323230743408, - -1.2712502479553223, - -1.2873929738998413, - -1.3042967319488525, - -1.3215004205703735, - -1.3385345935821533, - -1.3549349308013916, - -1.3702538013458252, - -1.3840734958648682, - -1.3960168361663818, - -1.4057583808898926, - -1.413032054901123, - -1.4176397323608398, - -1.419455647468567, - -1.4184300899505615, - -1.4145913124084473, - -1.4080437421798706, - -1.3989661931991577, - -1.3876062631607056, - -1.3742737770080566, - -1.3593323230743408, - -1.2712502479553223, - -1.2844951152801514, - -1.2985799312591553, - -1.313120722770691, - -1.3277206420898438, - -1.3419815301895142, - -1.355514407157898, - -1.3679500818252563, - -1.3789494037628174, - -1.3882122039794922, - -1.3954859972000122, - -1.4005721807479858, - -1.403332233428955, - -1.4036906957626343, - -1.4016379117965698, - -1.397229790687561, - -1.3905866146087646, - -1.3818894624710083, - -1.3713757991790771, - -1.3593323230743408, - -1.2712502479553223, - -1.2802269458770752, - -1.2901601791381836, - -1.3007789850234985, - -1.311793565750122, - -1.3229035139083862, - -1.3338059186935425, - -1.344203233718872, - -1.3538118600845337, - -1.3623697757720947, - -1.3696435689926147, - -1.3754347562789917, - -1.3795853853225708, - -1.3819822072982788, - -1.382559895515442, - -1.3813025951385498, - -1.3782447576522827, - -1.3734697103500366, - -1.3671077489852905, - -1.3593323230743408, - -1.2712502479553223, - -1.275051236152649, - -1.2799499034881592, - -1.285812497138977, - -1.2924792766571045, - -1.2997682094573975, - -1.3074806928634644, - -1.3154062032699585, - -1.3233284950256348, - -1.3310316801071167, - -1.3383053541183472, - -1.3449513912200928, - -1.3507883548736572, - -1.3556569814682007, - -1.3594245910644531, - -1.3619884252548218, - -1.3632783889770508, - -1.3632594347000122, - -1.3619319200515747, - -1.3593323230743408, - -1.2712502479553223, - -1.2695286273956299, - -1.2690553665161133, - -1.2698432207107544, - -1.2718708515167236, - -1.2750828266143799, - -1.2793915271759033, - -1.2846795320510864, - -1.2908025979995728, - -1.297593593597412, - -1.3048673868179321, - -1.3124254941940308, - -1.3200616836547852, - -1.3275679349899292, - -1.3347392082214355, - -1.3413798809051514, - -1.3473091125488281, - -1.3523648977279663, - -1.3564094305038452, - -1.3593323230743408, - -1.2712502479553223, - -1.264257788658142, - -1.2586573362350464, - -1.2546015977859497, - -1.2522014379501343, - -1.251522183418274, - -1.2525824308395386, - -1.2553532123565674, - -1.2597588300704956, - -1.2656793594360352, - -1.2729531526565552, - -1.2813817262649536, - -1.2907353639602661, - -1.300758719444275, - -1.3111785650253296, - -1.3217105865478516, - -1.3320674896240234, - -1.3419668674468994, - -1.3511384725570679, - -1.3593323230743408, - -1.2712502479553223, - -1.2598096132278442, - -1.249882459640503, - -1.2417393922805786, - -1.2356027364730835, - -1.2316396236419678, - -1.229958415031433, - -1.230604887008667, - -1.233561396598816, - -1.2387471199035645, - -1.2460209131240845, - -1.2551841735839844, - -1.2659870386123657, - -1.278134822845459, - -1.2912960052490234, - -1.3051118850708008, - -1.3192052841186523, - -1.333191990852356, - -1.3466904163360596, - -1.3593323230743408, - -1.2712502479553223, - -1.2566664218902588, - -1.2436816692352295, - -1.2326503992080688, - -1.223873257637024, - -1.2175897359848022, - -1.2139712572097778, - -1.2131165266036987, - -1.215048909187317, - -1.2197155952453613, - -1.2269893884658813, - -1.236671805381775, - -1.2484986782073975, - -1.2621475458145142, - -1.2772459983825684, - -1.2933822870254517, - -1.310116171836853, - -1.326991319656372, - -1.3435472249984741, - -1.3593323230743408, - -1.2712502479553223, - -1.2551686763763428, - -1.2407270669937134, - -1.2283194065093994, - -1.2182841300964355, - -1.2108948230743408, - -1.2063533067703247, - -1.204783320426941, - -1.2062276601791382, - -1.2106469869613647, - -1.2179207801818848, - -1.2278505563735962, - -1.2401654720306396, - -1.2545297145843506, - -1.2705512046813965, - -1.2877931594848633, - -1.3057852983474731, - -1.3240365982055664, - -1.3420493602752686, - -1.3593323230743408, - -1.2712502479553223, - -1.2554787397384644, - -1.2413387298583984, - -1.2292158603668213, - -1.2194410562515259, - -1.2122807502746582, - -1.2079302072525024, - -1.2065082788467407, - -1.208053708076477, - -1.212524175643921, - -1.219797968864441, - -1.2296764850616455, - -1.2418904304504395, - -1.2561064958572388, - -1.2719370126724243, - -1.2889500856399536, - -1.306681752204895, - -1.3246482610702515, - -1.3423594236373901, - -1.3593323230743408, - -1.2712502479553223, - -1.2575628757476807, - -1.2454502582550049, - -1.2352427244186401, - -1.2272186279296875, - -1.2215969562530518, - -1.2185310125350952, - -1.2181044816970825, - -1.2203289270401, - -1.2251436710357666, - -1.2324174642562866, - -1.2419517040252686, - -1.2534866333007812, - -1.2667073011398315, - -1.2812533378601074, - -1.2967277765274048, - -1.3127084970474243, - -1.328759789466858, - -1.344443678855896, - -1.3593323230743408 - ], - "z": [ - 0.7520180940628052, - 0.7454944252967834, - 0.7334188222885132, - 0.716120719909668, - 0.694071888923645, - 0.6678737998008728, - 0.6382410526275635, - 0.6059819459915161, - 0.5719764232635498, - 0.537152111530304, - 0.5024588704109192, - 0.4688430726528168, - 0.4372216761112213, - 0.4084572196006775, - 0.38333427906036377, - 0.36253821849823, - 0.34663623571395874, - 0.33606216311454773, - 0.3311043679714203, - 0.33189812302589417, - 0.7520180940628052, - 0.7367123961448669, - 0.7160943150520325, - 0.6907262802124023, - 0.6613001823425293, - 0.6286188364028931, - 0.5935735702514648, - 0.5571203231811523, - 0.5202535390853882, - 0.483978807926178, - 0.4492855668067932, - 0.41712018847465515, - 0.38836008310317993, - 0.36378973722457886, - 0.3440793454647064, - 0.32976657152175903, - 0.3212417960166931, - 0.31873762607574463, - 0.3223223388195038, - 0.33189812302589417, - 0.7520180940628052, - 0.7292785048484802, - 0.7014293074607849, - 0.6692302227020264, - 0.6335594058036804, - 0.5953899621963501, - 0.5557630658149719, - 0.5157595872879028, - 0.4764707088470459, - 0.4389682114124298, - 0.40427497029304504, - 0.37333738803863525, - 0.34699928760528564, - 0.32597923278808594, - 0.31085047125816345, - 0.3020257353782654, - 0.29974570870399475, - 0.30407261848449707, - 0.31488844752311707, - 0.33189812302589417, - 0.7520180940628052, - 0.7239983081817627, - 0.6910130381584167, - 0.6539618968963623, - 0.6138555407524109, - 0.5717880725860596, - 0.5289068818092346, - 0.48638173937797546, - 0.4453725218772888, - 0.4069979190826416, - 0.3723047077655792, - 0.3422391712665558, - 0.31762146949768066, - 0.29912304878234863, - 0.2872485816478729, - 0.28232190012931824, - 0.2844774127006531, - 0.2936563491821289, - 0.3096082806587219, - 0.33189812302589417, - 0.7520180940628052, - 0.7214440703392029, - 0.6859741806983948, - 0.646575927734375, - 0.6043239235877991, - 0.5603708028793335, - 0.5159153938293457, - 0.47217032313346863, - 0.430328905582428, - 0.3915324807167053, - 0.35683923959732056, - 0.32719558477401733, - 0.30341005325317383, - 0.28613153100013733, - 0.27583128213882446, - 0.27279025316238403, - 0.27709144353866577, - 0.28861749172210693, - 0.3070540428161621, - 0.33189812302589417, - 0.7520180940628052, - 0.7218925356864929, - 0.6868588924407959, - 0.6478726863861084, - 0.6059973835945129, - 0.5623753070831299, - 0.5181962847709656, - 0.47466543316841125, - 0.4329701364040375, - 0.39424774050712585, - 0.3595545291900635, - 0.32983678579330444, - 0.30590516328811646, - 0.2884124517440796, - 0.27783581614494324, - 0.2744637131690979, - 0.27838820219039917, - 0.28950217366218567, - 0.30750247836112976, - 0.33189812302589417, - 0.7520180940628052, - 0.7252950668334961, - 0.693571150302887, - 0.6577116250991821, - 0.6186946034431458, - 0.577584445476532, - 0.5355024933815002, - 0.493596613407135, - 0.4530099332332611, - 0.41484951972961426, - 0.3801562786102295, - 0.3498765826225281, - 0.3248363435268402, - 0.30571866035461426, - 0.29304495453834534, - 0.2871609330177307, - 0.2882271409034729, - 0.2962144613265991, - 0.3109050393104553, - 0.33189812302589417, - 0.7520180940628052, - 0.7312830686569214, - 0.7053837180137634, - 0.6750265955924988, - 0.6410396695137024, - 0.6043500900268555, - 0.5659586191177368, - 0.5269124507904053, - 0.4882766902446747, - 0.4511052370071411, - 0.41641199588775635, - 0.38514333963394165, - 0.3581521511077881, - 0.33617475628852844, - 0.31981056928634644, - 0.30950599908828735, - 0.30554211139678955, - 0.3080270290374756, - 0.31689298152923584, - 0.33189812302589417, - 0.7520180940628052, - 0.7392075061798096, - 0.7210164666175842, - 0.6979411840438843, - 0.6706110835075378, - 0.6397716999053955, - 0.6062641739845276, - 0.5710025429725647, - 0.5349487066268921, - 0.49908602237701416, - 0.4643927812576294, - 0.43181535601615906, - 0.4022423028945923, - 0.3764803409576416, - 0.3552321791648865, - 0.3390774130821228, - 0.32845669984817505, - 0.3236597776412964, - 0.324817419052124, - 0.33189812302589417, - 0.7520180940628052, - 0.7482097148895264, - 0.7387753129005432, - 0.7239723205566406, - 0.7042043805122375, - 0.6800107955932617, - 0.6520515084266663, - 0.6210891604423523, - 0.5879683494567871, - 0.5535924434661865, - 0.5188992619514465, - 0.4848349988460541, - 0.4523289203643799, - 0.4222676753997803, - 0.39547133445739746, - 0.3726707100868225, - 0.354487806558609, - 0.34141862392425537, - 0.3338196277618408, - 0.33189812302589417, - 0.7520180940628052, - 0.757314145565033, - 0.7567358613014221, - 0.7502990365028381, - 0.7381791472434998, - 0.7207069396972656, - 0.6983588933944702, - 0.6717445850372314, - 0.6415901184082031, - 0.6087179183959961, - 0.5740246772766113, - 0.5384567975997925, - 0.502984344959259, - 0.46857503056526184, - 0.4361674189567566, - 0.4066455066204071, - 0.3808145523071289, - 0.3593791723251343, - 0.3429240584373474, - 0.33189812302589417, - 0.7520180940628052, - 0.7655342221260071, - 0.7729517817497253, - 0.7740684747695923, - 0.7688537836074829, - 0.7574499845504761, - 0.7401680946350098, - 0.7174795866012573, - 0.6900032758712769, - 0.6584886908531189, - 0.6237954497337341, - 0.5868698954582214, - 0.5487192869186401, - 0.5103842616081238, - 0.47291046380996704, - 0.43732011318206787, - 0.40458399057388306, - 0.3755950927734375, - 0.35114413499832153, - 0.33189812302589417, - 0.7520180940628052, - 0.7719791531562805, - 0.7856658697128296, - 0.7927048206329346, - 0.7929041385650635, - 0.7862582206726074, - 0.7729485034942627, - 0.7533379197120667, - 0.7279614806175232, - 0.6975113153457642, - 0.6628180742263794, - 0.6248281002044678, - 0.5845776796340942, - 0.5431646704673767, - 0.5017187595367432, - 0.46137046813964844, - 0.42322036623954773, - 0.38830915093421936, - 0.35758906602859497, - 0.3318980932235718, - 0.7520180940628052, - 0.77595055103302, - 0.7935003042221069, - 0.80418860912323, - 0.8077239990234375, - 0.8040099143981934, - 0.7931478023529053, - 0.7754338979721069, - 0.7513514161109924, - 0.7215571403503418, - 0.686863899230957, - 0.648218035697937, - 0.6066736578941345, - 0.5633640289306641, - 0.5194704532623291, - 0.47619032859802246, - 0.43470412492752075, - 0.3961435556411743, - 0.3615604639053345, - 0.3318980932235718, - 0.7520180940628052, - 0.7770179510116577, - 0.7956060767173767, - 0.8072752952575684, - 0.8117073774337769, - 0.8087813854217529, - 0.7985771894454956, - 0.7813730239868164, - 0.7576383352279663, - 0.7280203700065613, - 0.6933271884918213, - 0.6545049548149109, - 0.612612783908844, - 0.5687933564186096, - 0.5242419242858887, - 0.4801737368106842, - 0.43779081106185913, - 0.39824938774108887, - 0.36262792348861694, - 0.3318980932235718, - 0.7520180940628052, - 0.7750658392906189, - 0.7917550802230835, - 0.8016304969787598, - 0.8044226765632629, - 0.8000555634498596, - 0.7886481881141663, - 0.7705118060112, - 0.7461410760879517, - 0.7162007093429565, - 0.6815074682235718, - 0.6430076956748962, - 0.6017515659332275, - 0.558864414691925, - 0.5155161023139954, - 0.4728890359401703, - 0.43214601278305054, - 0.39439839124679565, - 0.36067578196525574, - 0.3318980932235718, - 0.7520180940628052, - 0.7703056931495667, - 0.782364547252655, - 0.7878657579421997, - 0.786659300327301, - 0.7787779569625854, - 0.7644368410110474, - 0.7440270781517029, - 0.7181053757667542, - 0.6873788237571716, - 0.6526856422424316, - 0.6149720549583435, - 0.5752667784690857, - 0.5346530079841614, - 0.4942384958267212, - 0.455125629901886, - 0.41838130354881287, - 0.3850078582763672, - 0.3559156060218811, - 0.33189812302589417, - 0.7520180940628052, - 0.7632532715797424, - 0.7684521675109863, - 0.7674728631973267, - 0.7603421211242676, - 0.7472543716430664, - 0.7285667657852173, - 0.7047889232635498, - 0.6765694618225098, - 0.6446781754493713, - 0.6099849343299866, - 0.5734361410140991, - 0.5360286235809326, - 0.4987829327583313, - 0.46271491050720215, - 0.42880845069885254, - 0.39798837900161743, - 0.3710954785346985, - 0.34886324405670166, - 0.33189812302589417, - 0.7520180940628052, - 0.7546729445457458, - 0.7515254616737366, - 0.7426615953445435, - 0.7283229827880859, - 0.7089009284973145, - 0.6849250197410583, - 0.6570494174957275, - 0.6260343790054321, - 0.592725932598114, - 0.5580326914787292, - 0.5229009985923767, - 0.48828911781311035, - 0.45514118671417236, - 0.4243614375591278, - 0.3967893719673157, - 0.37317711114883423, - 0.35416877269744873, - 0.3402828574180603, - 0.33189812302589417, - 0.7520180940628052, - 0.7454944252967834, - 0.7334188222885132, - 0.716120719909668, - 0.694071888923645, - 0.667873740196228, - 0.6382409930229187, - 0.6059818863868713, - 0.5719764232635498, - 0.5371520519256592, - 0.5024588704109192, - 0.4688430428504944, - 0.4372216463088989, - 0.4084571599960327, - 0.38333427906036377, - 0.36253821849823, - 0.34663623571395874, - 0.33606213331222534, - 0.3311043679714203, - 0.33189812302589417 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.05578391253948212, - -0.05292469263076782, - -0.045475348830223083, - -0.03363907337188721, - -0.017738759517669678, - 0.0017918646335601807, - 0.02442009001970291, - 0.04952865093946457, - 0.07643267512321472, - 0.10439826548099518, - 0.1326626092195511, - 0.16045473515987396, - 0.1870165318250656, - 0.21162346005439758, - 0.2336043119430542, - 0.2523595094680786, - 0.26737749576568604, - 0.27824854850769043, - 0.284676194190979, - 0.2864850163459778, - -0.05578391253948212, - -0.06627142429351807, - -0.07180476188659668, - -0.07223296165466309, - -0.06754440069198608, - -0.05786694586277008, - -0.04346455633640289, - -0.02473011612892151, - -0.0021746233105659485, - 0.023586653172969818, - 0.051850996911525726, - 0.0818474292755127, - 0.11275776475667953, - 0.14373882114887238, - 0.17394550144672394, - 0.2025538831949234, - 0.22878357768058777, - 0.251919150352478, - 0.27132946252822876, - 0.28648504614830017, - -0.05578391253948212, - -0.07822875678539276, - -0.09539325535297394, - -0.10680918395519257, - -0.11216519773006439, - -0.11131517589092255, - -0.10428230464458466, - -0.09125843644142151, - -0.07259878516197205, - -0.0488123744726181, - -0.020548030734062195, - 0.011423274874687195, - 0.04622943699359894, - 0.08292105793952942, - 0.12049724161624908, - 0.1579330861568451, - 0.19420737028121948, - 0.22833064198493958, - 0.25937211513519287, - 0.28648504614830017, - -0.05578391253948212, - -0.08750090003013611, - -0.11368463933467865, - -0.13362085819244385, - -0.1467658132314682, - -0.15276090800762177, - -0.15144263207912445, - -0.14284692704677582, - -0.12720827758312225, - -0.10495324432849884, - -0.07668890058994293, - -0.04318621754646301, - -0.005359053611755371, - 0.035760730504989624, - 0.07905150949954987, - 0.12333246320486069, - 0.1673956960439682, - 0.21003925800323486, - 0.25009995698928833, - 0.28648504614830017, - -0.05578391253948212, - -0.09308309853076935, - -0.1246967613697052, - -0.14976252615451813, - -0.1675967127084732, - -0.1777128428220749, - -0.1798349767923355, - -0.17390520870685577, - -0.1600853055715561, - -0.13875220715999603, - -0.11048786342144012, - -0.07606324553489685, - -0.03641733527183533, - 0.007368400692939758, - 0.05409957841038704, - 0.10250154882669449, - 0.15125402808189392, - 0.1990271508693695, - 0.24451777338981628, - 0.28648504614830017, - -0.05578391253948212, - -0.09437040984630585, - -0.1272362619638443, - -0.15348495543003082, - -0.1724005490541458, - -0.1834670454263687, - -0.18638254702091217, - -0.1810676008462906, - -0.16766710579395294, - -0.1465466469526291, - -0.11828230321407318, - -0.0836450457572937, - -0.04357972741127014, - 0.0008208155632019043, - 0.048345357179641724, - 0.09769771993160248, - 0.14753159880638123, - 0.1964876353740692, - 0.24323046207427979, - 0.28648504614830017, - -0.05578391253948212, - -0.09122335910797119, - -0.12102799117565155, - -0.14438481628894806, - -0.16065679490566254, - -0.16939996182918549, - -0.17037589848041534, - -0.1635579615831375, - -0.1491321176290512, - -0.12749189138412476, - -0.09922754764556885, - -0.06511005759239197, - -0.026070088148117065, - 0.016827479004859924, - 0.062412459403276443, - 0.10944148153066635, - 0.1566317230463028, - 0.20269590616226196, - 0.24637751281261444, - 0.28648504614830017, - -0.05578391253948212, - -0.08398295938968658, - -0.1067446917295456, - -0.12344822287559509, - -0.13363799452781677, - -0.13703598082065582, - -0.1335495114326477, - -0.12327373027801514, - -0.106488898396492, - -0.08365282416343689, - -0.05538848042488098, - -0.022466838359832764, - 0.01421414315700531, - 0.05365384742617607, - 0.09477643668651581, - 0.1364602893590927, - 0.17756831645965576, - 0.21697920560836792, - 0.25361791253089905, - 0.28648504614830017, - -0.05578391253948212, - -0.07343381643295288, - -0.08593417704105377, - -0.09294399619102478, - -0.09427210688591003, - -0.0898822546005249, - -0.07989417016506195, - -0.06458033621311188, - -0.044358447194099426, - -0.01978011429309845, - 0.008484229445457458, - 0.039663612842559814, - 0.07290753722190857, - 0.10730919241905212, - 0.14193017780780792, - 0.17582617700099945, - 0.20807255804538727, - 0.23778972029685974, - 0.26416707038879395, - 0.28648504614830017, - -0.05578391253948212, - -0.060719117522239685, - -0.06085158884525299, - -0.05617772042751312, - -0.04682500660419464, - -0.033048585057258606, - -0.015224218368530273, - 0.006161890923976898, - 0.03052639216184616, - 0.05720466747879982, - 0.08546901494264603, - 0.1145484521985054, - 0.14364977180957794, - 0.171979159116745, - 0.19876384735107422, - 0.22327327728271484, - 0.24483883380889893, - 0.2628723084926605, - 0.27688175439834595, - 0.2864850163459778, - -0.05578391253948212, - -0.04721668362617493, - -0.03421503305435181, - -0.017133593559265137, - 0.003561645746231079, - 0.027306176722049713, - 0.053452350199222565, - 0.0812869444489479, - 0.11005070060491562, - 0.13895902037620544, - 0.16722336411476135, - 0.19407275319099426, - 0.21877482533454895, - 0.24065573513507843, - 0.25911861658096313, - 0.27365994453430176, - 0.2838829755783081, - 0.2895088791847229, - 0.2903841733932495, - 0.2864850163459778, - -0.05578392744064331, - -0.03438970446586609, - -0.00891096144914627, - 0.01995733380317688, - 0.051427699625492096, - 0.08464168012142181, - 0.11869334429502487, - 0.15265384316444397, - 0.1855967938899994, - 0.21662358939647675, - 0.24488793313503265, - 0.26961883902549744, - 0.2901417016983032, - 0.30589672923088074, - 0.316454142332077, - 0.3215259909629822, - 0.32097387313842773, - 0.31481295824050903, - 0.30321115255355835, - 0.2864850163459778, - -0.05578392744064331, - -0.023628205060958862, - 0.012318514287471771, - 0.05107568949460983, - 0.09158609807491302, - 0.1327447146177292, - 0.17342890799045563, - 0.21252886950969696, - 0.24897804856300354, - 0.28178220987319946, - 0.31004655361175537, - 0.333000123500824, - 0.3500167429447174, - 0.3606323003768921, - 0.3645572066307068, - 0.3616844117641449, - 0.3520922362804413, - 0.3360424041748047, - 0.3139726519584656, - 0.2864850163459778, - -0.05578392744064331, - -0.016098320484161377, - 0.027172863483428955, - 0.0728493332862854, - 0.1196851059794426, - 0.16640262305736542, - 0.2117275893688202, - 0.25442367792129517, - 0.293326199054718, - 0.3273739516735077, - 0.3556382954120636, - 0.37734824419021606, - 0.3919115662574768, - 0.39893096685409546, - 0.398215115070343, - 0.3897833824157715, - 0.37386590242385864, - 0.35089677572250366, - 0.32150256633758545, - 0.2864850163459778, - -0.05578392744064331, - -0.012616083025932312, - 0.034042373299598694, - 0.08291871100664139, - 0.13267970085144043, - 0.18196795880794525, - 0.22943910956382751, - 0.27379822731018066, - 0.3138352632522583, - 0.3484582304954529, - 0.3767225742340088, - 0.39785730838775635, - 0.4112861156463623, - 0.4166424870491028, - 0.41378045082092285, - 0.4027780294418335, - 0.38393527269363403, - 0.3577662706375122, - 0.3249847888946533, - 0.2864850163459778, - -0.05578392744064331, - -0.013558804988861084, - 0.03218264877796173, - 0.0801927000284195, - 0.1291617602109909, - 0.17775407433509827, - 0.22464418411254883, - 0.26855307817459106, - 0.3082829713821411, - 0.3427501916885376, - 0.3710145354270935, - 0.39230501651763916, - 0.4060409665107727, - 0.4118475914001465, - 0.40956658124923706, - 0.39926010370254517, - 0.38120925426483154, - 0.35590654611587524, - 0.32404208183288574, - 0.2864850163459778, - -0.05578392744064331, - -0.01882435381412506, - 0.021795175969600677, - 0.06496666371822357, - 0.10951248556375504, - 0.15421752631664276, - 0.1978623867034912, - 0.2392565757036209, - 0.2772709131240845, - 0.31086844205856323, - 0.33913278579711914, - 0.3612929582595825, - 0.37674444913864136, - 0.38506579399108887, - 0.38603001832962036, - 0.3796107769012451, - 0.36598318815231323, - 0.3455190658569336, - 0.31877651810646057, - 0.2864850163459778, - -0.05578392744064331, - -0.027842119336128235, - 0.00400562584400177, - 0.03889058530330658, - 0.07586115598678589, - 0.11390887945890427, - 0.1519959419965744, - 0.18908342719078064, - 0.22415965795516968, - 0.25626784563064575, - 0.28453218936920166, - 0.3081817030906677, - 0.3265712857246399, - 0.33919933438301086, - 0.34572136402130127, - 0.34595945477485657, - 0.33990713953971863, - 0.3277295231819153, - 0.3097587525844574, - 0.2864850163459778, - -0.05578392744064331, - -0.039634883403778076, - -0.019258230924606323, - 0.004790209233760834, - 0.03185443580150604, - 0.06119620427489281, - 0.09201517701148987, - 0.12347067892551422, - 0.15470467507839203, - 0.18486520648002625, - 0.21312955021858215, - 0.23872673511505127, - 0.26095855236053467, - 0.27921855449676514, - 0.2930086553096771, - 0.3019527196884155, - 0.3058067560195923, - 0.304465651512146, - 0.29796600341796875, - 0.2864850163459778, - -0.05578391253948212, - -0.05292469263076782, - -0.04547536373138428, - -0.0336390882730484, - -0.017738789319992065, - 0.001791834831237793, - 0.024420052766799927, - 0.049528613686561584, - 0.07643263041973114, - 0.1043982207775116, - 0.1326625645160675, - 0.16045469045639038, - 0.18701648712158203, - 0.2116234302520752, - 0.2336042821407318, - 0.2523595094680786, - 0.26737746596336365, - 0.27824854850769043, - 0.284676194190979, - 0.2864850163459778 - ], - "y": [ - -1.4661457538604736, - -1.455288290977478, - -1.4434598684310913, - -1.4309828281402588, - -1.418197751045227, - -1.4054533243179321, - -1.3930972814559937, - -1.3814663887023926, - -1.3708781003952026, - -1.3616212606430054, - -1.3539483547210693, - -1.3480685949325562, - -1.3441424369812012, - -1.342276930809021, - -1.3425230979919434, - -1.3448740243911743, - -1.349265694618225, - -1.3555781841278076, - -1.3636395931243896, - -1.373229742050171, - -1.4661457538604736, - -1.4534213542938232, - -1.4397766590118408, - -1.425584077835083, - -1.4112306833267212, - -1.3971079587936401, - -1.3836010694503784, - -1.371078610420227, - -1.359882116317749, - -1.3503168821334839, - -1.3426439762115479, - -1.3370726108551025, - -1.3337546586990356, - -1.3327808380126953, - -1.3341776132583618, - -1.337906837463379, - -1.3438669443130493, - -1.3518950939178467, - -1.3617725372314453, - -1.373229742050171, - -1.4661457538604736, - -1.4528645277023315, - -1.43867826461792, - -1.4239740371704102, - -1.409152865409851, - -1.394619107246399, - -1.38076913356781, - -1.367980718612671, - -1.3566027879714966, - -1.3469456434249878, - -1.3392727375030518, - -1.33379328250885, - -1.3306567668914795, - -1.329948902130127, - -1.3316887617111206, - -1.3358291387557983, - -1.3422569036483765, - -1.3507966995239258, - -1.3612157106399536, - -1.373229742050171, - -1.4661457538604736, - -1.4536782503128052, - -1.4402836561203003, - -1.4263272285461426, - -1.4121896028518677, - -1.3982566595077515, - -1.3849081993103027, - -1.3725084066390991, - -1.3613955974578857, - -1.3518729209899902, - -1.3441998958587646, - -1.3385860919952393, - -1.3351844549179077, - -1.3340879678726196, - -1.3353263139724731, - -1.338865876197815, - -1.3446099758148193, - -1.3524020910263062, - -1.3620295524597168, - -1.373229742050171, - -1.4661457538604736, - -1.4557744264602661, - -1.4444187879562378, - -1.4323885440826416, - -1.4200117588043213, - -1.4076262712478638, - -1.3955696821212769, - -1.3841710090637207, - -1.3737411499023438, - -1.3645646572113037, - -1.3568916320800781, - -1.3509316444396973, - -1.3468470573425293, - -1.3447494506835938, - -1.3446959257125854, - -1.3466880321502686, - -1.3506712913513184, - -1.3565372228622437, - -1.3641256093978882, - -1.373229742050171, - -1.4661457538604736, - -1.4589258432388306, - -1.450635552406311, - -1.4415011405944824, - -1.4317717552185059, - -1.4217126369476318, - -1.4115984439849854, - -1.4017047882080078, - -1.3923016786575317, - -1.3836455345153809, - -1.3759726285934448, - -1.3694920539855957, - -1.3643808364868164, - -1.3607780933380127, - -1.358782410621643, - -1.3584479093551636, - -1.3597840070724487, - -1.362753987312317, - -1.3672770261764526, - -1.373229742050171, - -1.4661457538604736, - -1.4627909660339355, - -1.458260416984558, - -1.452677607536316, - -1.4461950063705444, - -1.4389894008636475, - -1.4312572479248047, - -1.423209547996521, - -1.4150657653808594, - -1.407047986984253, - -1.399375081062317, - -1.3922561407089233, - -1.3858855962753296, - -1.3804370164871216, - -1.3760590553283691, - -1.3728712797164917, - -1.3709604740142822, - -1.3703787326812744, - -1.3711421489715576, - -1.373229742050171, - -1.4661457538604736, - -1.4669508934020996, - -1.4664669036865234, - -1.4647068977355957, - -1.4617187976837158, - -1.457584261894226, - -1.452415943145752, - -1.4463549852371216, - -1.4395664930343628, - -1.432235836982727, - -1.424562931060791, - -1.4167569875717163, - -1.4090310335159302, - -1.4015957117080688, - -1.3946539163589478, - -1.3883949518203735, - -1.3829896450042725, - -1.3785853385925293, - -1.3753021955490112, - -1.373229742050171, - -1.4661457538604736, - -1.4709550142288208, - -1.4743658304214478, - -1.4762852191925049, - -1.4766607284545898, - -1.4754821062088013, - -1.4727816581726074, - -1.4686329364776611, - -1.463149070739746, - -1.4564796686172485, - -1.4488067626953125, - -1.4403395652770996, - -1.4313089847564697, - -1.4219614267349243, - -1.412551760673523, - -1.4033368825912476, - -1.3945679664611816, - -1.3864842653274536, - -1.3793061971664429, - -1.373229742050171, - -1.4661457538604736, - -1.4743692874908447, - -1.4811012744903564, - -1.486158013343811, - -1.4894015789031982, - -1.4907435178756714, - -1.490147352218628, - -1.4876291751861572, - -1.48325777053833, - -1.4771522283554077, - -1.4694793224334717, - -1.4604482650756836, - -1.4503052234649658, - -1.4393271207809448, - -1.4278132915496826, - -1.416077733039856, - -1.4044407606124878, - -1.3932195901870728, - -1.3827204704284668, - -1.373229742050171, - -1.4661457538604736, - -1.4768236875534058, - -1.4859431982040405, - -1.493255376815796, - -1.4985607862472534, - -1.5017147064208984, - -1.5026313066482544, - -1.5012853145599365, - -1.497713565826416, - -1.4920134544372559, - -1.4843405485153198, - -1.47490394115448, - -1.4639613628387451, - -1.4518109560012817, - -1.4387844800949097, - -1.4252369403839111, - -1.4115381240844727, - -1.3980616331100464, - -1.3851749897003174, - -1.373229742050171, - -1.4661457538604736, - -1.4780523777008057, - -1.488366961479187, - -1.4968081712722778, - -1.503145694732666, - -1.5072067975997925, - -1.5088804960250854, - -1.508121371269226, - -1.504949927330017, - -1.4994527101516724, - -1.4917798042297363, - -1.4821404218673706, - -1.4707974195480347, - -1.4580602645874023, - -1.4442764520645142, - -1.4298219680786133, - -1.4150909185409546, - -1.4004853963851929, - -1.3864035606384277, - -1.373229742050171, - -1.4661457538604736, - -1.4779220819473267, - -1.488110065460205, - -1.4964314699172974, - -1.5026596784591675, - -1.506624460220337, - -1.5082179307937622, - -1.5073965787887573, - -1.5041826963424683, - -1.4986640214920044, - -1.4909911155700684, - -1.4813731908798218, - -1.470072627067566, - -1.457397699356079, - -1.4436942338943481, - -1.4293358325958252, - -1.4147143363952637, - -1.4002283811569214, - -1.3862733840942383, - -1.373229742050171, - -1.4661457538604736, - -1.4764469861984253, - -1.485200047492981, - -1.4921660423278809, - -1.4971550703048706, - -1.5000309944152832, - -1.5007153749465942, - -1.4991894960403442, - -1.4954949617385864, - -1.4897327423095703, - -1.4820597171783447, - -1.47268545627594, - -1.4618655443191528, - -1.4498951435089111, - -1.4371006488800049, - -1.4238313436508179, - -1.4104489088058472, - -1.3973184823989868, - -1.384798288345337, - -1.373229742050171, - -1.4661457538604736, - -1.4737869501113892, - -1.4799525737762451, - -1.4844741821289062, - -1.4872286319732666, - -1.4881408214569092, - -1.4871857166290283, - -1.4843894243240356, - -1.4798283576965332, - -1.473626732826233, - -1.4659537076950073, - -1.4570187330245972, - -1.4470654726028442, - -1.4363654851913452, - -1.4252104759216309, - -1.4139049053192139, - -1.4027570486068726, - -1.392071008682251, - -1.3821382522583008, - -1.373229742050171, - -1.4661457538604736, - -1.470230221748352, - -1.4729360342025757, - -1.4741894006729126, - -1.4739561080932617, - -1.4722424745559692, - -1.469095230102539, - -1.4646003246307373, - -1.4588804244995117, - -1.4520913362503052, - -1.4444183111190796, - -1.4360707998275757, - -1.427276372909546, - -1.418274998664856, - -1.409312129020691, - -1.4006322622299194, - -1.3924721479415894, - -1.3850544691085815, - -1.3785814046859741, - -1.373229742050171, - -1.4661457538604736, - -1.4661622047424316, - -1.4649109840393066, - -1.4624260663986206, - -1.458775520324707, - -1.4540586471557617, - -1.4484041929244995, - -1.4419665336608887, - -1.434921145439148, - -1.4274601936340332, - -1.4197872877120972, - -1.4121116399765015, - -1.4046425819396973, - -1.3975839614868164, - -1.3911283016204834, - -1.3854516744613647, - -1.380708932876587, - -1.377029299736023, - -1.3745133876800537, - -1.373229742050171, - -1.4661457538604736, - -1.4620237350463867, - -1.4567468166351318, - -1.4504591226577759, - -1.4433319568634033, - -1.4355599880218506, - -1.4273549318313599, - -1.418940782546997, - -1.4105470180511475, - -1.402402639389038, - -1.3947296142578125, - -1.387737512588501, - -1.3816168308258057, - -1.3765347003936768, - -1.3726296424865723, - -1.3700082302093506, - -1.3687418699264526, - -1.3688652515411377, - -1.3703749179840088, - -1.373229742050171, - -1.4661457538604736, - -1.4582632780075073, - -1.4493285417556763, - -1.4395852088928223, - -1.429299235343933, - -1.4187510013580322, - -1.4082283973693848, - -1.3980183601379395, - -1.388399362564087, - -1.3796337842941284, - -1.3719608783721924, - -1.3655898571014404, - -1.360694408416748, - -1.3574081659317017, - -1.355820655822754, - -1.3559753894805908, - -1.3578680753707886, - -1.3614469766616821, - -1.3666144609451294, - -1.373229742050171, - -1.4661457538604736, - -1.455288290977478, - -1.4434598684310913, - -1.4309828281402588, - -1.418197751045227, - -1.4054533243179321, - -1.393097162246704, - -1.3814663887023926, - -1.3708781003952026, - -1.3616212606430054, - -1.3539483547210693, - -1.3480685949325562, - -1.3441424369812012, - -1.342276930809021, - -1.3425230979919434, - -1.3448740243911743, - -1.3492655754089355, - -1.3555781841278076, - -1.3636395931243896, - -1.373229742050171 - ], - "z": [ - 0.3833107650279999, - 0.38473984599113464, - 0.3932912349700928, - 0.40873169898986816, - 0.43063998222351074, - 0.45841848850250244, - 0.49130958318710327, - 0.5284160375595093, - 0.5687256455421448, - 0.6111388802528381, - 0.6544988751411438, - 0.6976228356361389, - 0.7393344640731812, - 0.7784959673881531, - 0.8140390515327454, - 0.8449943661689758, - 0.870517373085022, - 0.8899120092391968, - 0.9026491045951843, - 0.9083812236785889, - 0.3833107650279999, - 0.3931095600128174, - 0.4098023772239685, - 0.43293386697769165, - 0.46187305450439453, - 0.4958304762840271, - 0.5338799953460693, - 0.5749836564064026, - 0.6180201768875122, - 0.6618158221244812, - 0.7051757574081421, - 0.7469173669815063, - 0.7859020233154297, - 0.8210663795471191, - 0.85145103931427, - 0.8762274384498596, - 0.8947196006774902, - 0.9064231514930725, - 0.9110188484191895, - 0.9083812236785889, - 0.3833107650279999, - 0.4008054733276367, - 0.42498424649238586, - 0.45518758893013, - 0.4905915856361389, - 0.5302304625511169, - 0.5730230808258057, - 0.6178021430969238, - 0.6633461117744446, - 0.708412766456604, - 0.7517727613449097, - 0.7922433018684387, - 0.8287205696105957, - 0.8602094650268555, - 0.8858510255813599, - 0.904945969581604, - 0.9169732928276062, - 0.9216049909591675, - 0.9187147617340088, - 0.9083812236785889, - 0.3833107650279999, - 0.4069935381412506, - 0.43719160556793213, - 0.4730812907218933, - 0.5136834979057312, - 0.5578907132148743, - 0.6044971346855164, - 0.6522314548492432, - 0.6997916102409363, - 0.7458802461624146, - 0.7892402410507202, - 0.8286888003349304, - 0.863149881362915, - 0.8916835188865662, - 0.9135112762451172, - 0.9280378818511963, - 0.9348670244216919, - 0.9338123798370361, - 0.9249027967453003, - 0.9083812236785889, - 0.3833107650279999, - 0.4110032320022583, - 0.44510167837142944, - 0.48467588424682617, - 0.5286463499069214, - 0.5758137702941895, - 0.624891459941864, - 0.6745406985282898, - 0.7234072685241699, - 0.7701581716537476, - 0.8135181069374084, - 0.8523044586181641, - 0.8854591250419617, - 0.912077784538269, - 0.9314343333244324, - 0.9430007934570312, - 0.94646155834198, - 0.9417223930358887, - 0.9289125204086304, - 0.9083812236785889, - 0.3833107650279999, - 0.4124000668525696, - 0.44785717129707336, - 0.48871493339538574, - 0.5338587760925293, - 0.5820573568344116, - 0.6319959163665771, - 0.6823123097419739, - 0.7316339015960693, - 0.7786155343055725, - 0.8219755291938782, - 0.8605310916900635, - 0.8932307362556458, - 0.919182300567627, - 0.9376779198646545, - 0.9482132196426392, - 0.9505006074905396, - 0.944477915763855, - 0.9303092956542969, - 0.9083812236785889, - 0.3833107650279999, - 0.41103261709213257, - 0.44515955448150635, - 0.48476076126098633, - 0.5287559032440186, - 0.5759449601173401, - 0.6250407099723816, - 0.6747040748596191, - 0.7235801815986633, - 0.7703359127044678, - 0.8136959075927734, - 0.8524773716926575, - 0.885622501373291, - 0.9122270941734314, - 0.931565523147583, - 0.9431103467941284, - 0.9465464353561401, - 0.9417803287506104, - 0.9289418458938599, - 0.9083812236785889, - 0.3833107650279999, - 0.4070490598678589, - 0.4373011589050293, - 0.4732418656349182, - 0.5138906836509705, - 0.558138906955719, - 0.6047796010971069, - 0.6525404453277588, - 0.7001186609268188, - 0.7462164759635925, - 0.7895764708518982, - 0.829015851020813, - 0.8634588718414307, - 0.891965925693512, - 0.9137594699859619, - 0.9282450675964355, - 0.935027539730072, - 0.9339219331741333, - 0.924958348274231, - 0.9083812236785889, - 0.3833107650279999, - 0.4008811414241791, - 0.4251335561275482, - 0.45540645718574524, - 0.4908740222454071, - 0.5305687785148621, - 0.5734080672264099, - 0.618223249912262, - 0.6637918949127197, - 0.7088710069656372, - 0.7522310018539429, - 0.7926890850067139, - 0.8291416168212891, - 0.8605943918228149, - 0.886189341545105, - 0.9052283763885498, - 0.9171921610832214, - 0.9217543601989746, - 0.9187904000282288, - 0.9083812236785889, - 0.3833107650279999, - 0.3931972086429596, - 0.4099752902984619, - 0.4331873059272766, - 0.4622001051902771, - 0.49622225761413574, - 0.5343257784843445, - 0.5754712820053101, - 0.6185363531112671, - 0.6623464822769165, - 0.7057064175605774, - 0.7474335432052612, - 0.7863897085189819, - 0.8215121030807495, - 0.8518428206443787, - 0.8765544891357422, - 0.8949730396270752, - 0.9065960645675659, - 0.9111064672470093, - 0.9083812236785889, - 0.3833107650279999, - 0.38482993841171265, - 0.393468976020813, - 0.4089922308921814, - 0.4309762120246887, - 0.45882123708724976, - 0.49176788330078125, - 0.5289173126220703, - 0.5692563056945801, - 0.6116844415664673, - 0.655044436454773, - 0.6981534957885742, - 0.7398357391357422, - 0.7789542078971863, - 0.8144418001174927, - 0.8453305959701538, - 0.87077796459198, - 0.890089750289917, - 0.9027391672134399, - 0.9083812236785889, - 0.3833107650279999, - 0.37668606638908386, - 0.3774033486843109, - 0.3854430913925171, - 0.4005858898162842, - 0.4224187731742859, - 0.4503461718559265, - 0.4836062788963318, - 0.5212918519973755, - 0.562375009059906, - 0.6057349443435669, - 0.6501890420913696, - 0.6945247054100037, - 0.7375324964523315, - 0.7780393362045288, - 0.814940333366394, - 0.8472288250923157, - 0.8740241527557373, - 0.8945953249931335, - 0.9083812236785889, - 0.3833107650279999, - 0.3696480691432953, - 0.3635193705558777, - 0.36509183049201965, - 0.3743225038051605, - 0.39095962047576904, - 0.4145493805408478, - 0.4444482922554016, - 0.47984081506729126, - 0.5197615623474121, - 0.5631215572357178, - 0.6087380051612854, - 0.6553667187690735, - 0.7017357349395752, - 0.7465801239013672, - 0.7886768579483032, - 0.8268775343894958, - 0.8601401448249817, - 0.887557327747345, - 0.9083812236785889, - 0.3833107650279999, - 0.3644786775112152, - 0.3533215820789337, - 0.35014382004737854, - 0.3550319969654083, - 0.3678528368473053, - 0.38825660943984985, - 0.4156867265701294, - 0.44939500093460083, - 0.488461971282959, - 0.5318219661712646, - 0.578292191028595, - 0.6266051530838013, - 0.6754429340362549, - 0.7234733700752258, - 0.7693864107131958, - 0.8119295239448547, - 0.8499423265457153, - 0.8823879361152649, - 0.9083812236785889, - 0.3833107650279999, - 0.36173805594444275, - 0.34791508316993713, - 0.34221890568733215, - 0.3448048532009125, - 0.3556024432182312, - 0.37431707978248596, - 0.4004383683204651, - 0.4332537055015564, - 0.47186803817749023, - 0.5152279734611511, - 0.5621508955955505, - 0.611356794834137, - 0.6615034341812134, - 0.7112229466438293, - 0.7591592669487, - 0.8040046095848083, - 0.8445358276367188, - 0.8796473145484924, - 0.9083812236785889, - 0.3833107650279999, - 0.3617231547832489, - 0.34788572788238525, - 0.3421758711338043, - 0.3447493314743042, - 0.3555358946323395, - 0.3742414116859436, - 0.4003555476665497, - 0.4331660568714142, - 0.47177791595458984, - 0.5151379108428955, - 0.5620632171630859, - 0.611274003982544, - 0.6614277362823486, - 0.71115642786026, - 0.7591037154197693, - 0.8039615750312805, - 0.8445065021514893, - 0.8796324133872986, - 0.9083812236785889, - 0.3833107650279999, - 0.3644356429576874, - 0.35323670506477356, - 0.3500193953514099, - 0.3548714220523834, - 0.3676604926586151, - 0.3880377411842346, - 0.41544732451438904, - 0.44914156198501587, - 0.48820143938064575, - 0.5315614342689514, - 0.57803875207901, - 0.6263657808303833, - 0.6752240657806396, - 0.7232810258865356, - 0.7692258358001709, - 0.8118051290512085, - 0.8498574495315552, - 0.8823449015617371, - 0.9083812236785889, - 0.3833107650279999, - 0.36958158016204834, - 0.36338818073272705, - 0.36489951610565186, - 0.3740743100643158, - 0.3906623125076294, - 0.41421109437942505, - 0.4440782368183136, - 0.4794490933418274, - 0.5193588137626648, - 0.5627188086509705, - 0.6083462834358215, - 0.6549966335296631, - 0.7013974189758301, - 0.7462828755378723, - 0.7884286642074585, - 0.8266851902008057, - 0.860008955001831, - 0.8874908089637756, - 0.9083812236785889, - 0.3833107650279999, - 0.37660327553749084, - 0.37724003195762634, - 0.3852037191390991, - 0.4002769887447357, - 0.42204874753952026, - 0.44992512464523315, - 0.48314568400382996, - 0.5208042860031128, - 0.561873733997345, - 0.6052337288856506, - 0.6497014760971069, - 0.6940641403198242, - 0.7371114492416382, - 0.7776693105697632, - 0.8146314024925232, - 0.8469893932342529, - 0.8738608360290527, - 0.8945125341415405, - 0.9083812236785889, - 0.3833107650279999, - 0.38473984599113464, - 0.3932912349700928, - 0.40873169898986816, - 0.43063998222351074, - 0.4584185481071472, - 0.49130961298942566, - 0.5284160375595093, - 0.5687256455421448, - 0.6111389398574829, - 0.6544988751411438, - 0.6976228356361389, - 0.7393344640731812, - 0.7784959673881531, - 0.8140391111373901, - 0.8449943661689758, - 0.8705174326896667, - 0.8899120092391968, - 0.9026491045951843, - 0.9083812236785889 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.07687774300575256, - -0.07461903989315033, - -0.06862032413482666, - -0.0590452179312706, - -0.0461549237370491, - -0.0303010493516922, - -0.011916033923625946, - 0.008498609066009521, - 0.03038603812456131, - 0.053149208426475525, - 0.07616721093654633, - 0.09881216287612915, - 0.12046638131141663, - 0.14053918421268463, - 0.15848304331302643, - 0.1738084852695465, - 0.18609750270843506, - 0.19501487910747528, - 0.20031732320785522, - 0.201860249042511, - -0.07687772810459137, - -0.09025168418884277, - -0.0994592010974884, - -0.10424911975860596, - -0.10449081659317017, - -0.10017767548561096, - -0.09142734110355377, - -0.07847853004932404, - -0.06168439984321594, - -0.041503094136714935, - -0.018485091626644135, - 0.006741728633642197, - 0.03348924219608307, - 0.06102787330746651, - 0.08860640972852707, - 0.11547259241342545, - 0.1408936083316803, - 0.16417598724365234, - 0.18468467891216278, - 0.201860249042511, - -0.07687772810459137, - -0.10422907769680023, - -0.12703271210193634, - -0.1446666419506073, - -0.15664984285831451, - -0.16265544295310974, - -0.162519633769989, - -0.1562461107969284, - -0.14400601387023926, - -0.12613317370414734, - -0.10311518609523773, - -0.07557989656925201, - -0.0442783460021019, - -0.010064437985420227, - 0.026128627359867096, - 0.0633135735988617, - 0.10047608613967896, - 0.1366024762392044, - 0.17070728540420532, - 0.201860249042511, - -0.07687772810459137, - -0.11503653228282928, - -0.14835286140441895, - -0.17591789364814758, - -0.19697977602481842, - -0.2109639197587967, - -0.21748895943164825, - -0.21637685596942902, - -0.20765794813632965, - -0.19157005846500397, - -0.16855205595493317, - -0.1392318308353424, - -0.10440906882286072, - -0.06503374874591827, - -0.02217986434698105, - 0.022983644157648087, - 0.06922483444213867, - 0.1152823269367218, - 0.15989983081817627, - 0.201860249042511, - -0.07687772810459137, - -0.12150292098522186, - -0.16110925376415253, - -0.19461630284786224, - -0.22111018002033234, - -0.2398681491613388, - -0.25037848949432373, - -0.25235462188720703, - -0.2457425445318222, - -0.23072262108325958, - -0.20770461857318878, - -0.17731642723083496, - -0.14038684964179993, - -0.09792329370975494, - -0.051084063947200775, - -0.0011467933654785156, - 0.05052641034126282, - 0.10252594947814941, - 0.1534334421157837, - 0.201860249042511, - -0.07687772810459137, - -0.12292750179767609, - -0.16391952335834503, - -0.19873563945293427, - -0.22642619907855988, - -0.24623586237430573, - -0.25762420892715454, - -0.26028066873550415, - -0.2541327476501465, - -0.23934809863567352, - -0.21633009612560272, - -0.18570661544799805, - -0.14831286668777466, - -0.10516898334026337, - -0.05745179206132889, - -0.0064628273248672485, - 0.046407073736190796, - 0.09971566498279572, - 0.15200886130332947, - 0.201860249042511, - -0.07687772810459137, - -0.1191558837890625, - -0.15647917985916138, - -0.18782953917980194, - -0.21235178411006927, - -0.22937704622745514, - -0.2384408563375473, - -0.23929612338542938, - -0.2319193333387375, - -0.2165117710828781, - -0.1934937685728073, - -0.16349321603775024, - -0.12732833623886108, - -0.08598567545413971, - -0.040592990815639496, - 0.0076115913689136505, - 0.057313188910484314, - 0.10715600848197937, - 0.15578047931194305, - 0.201860249042511, - -0.07687772810459137, - -0.11059679090976715, - -0.13959448039531708, - -0.16307975351810455, - -0.18041206896305084, - -0.19111861288547516, - -0.1949073225259781, - -0.19167493283748627, - -0.18150949478149414, - -0.1646883487701416, - -0.141670361161232, - -0.1130833774805069, - -0.07970714569091797, - -0.0424521267414093, - -0.0023345425724983215, - 0.03955133259296417, - 0.0820629745721817, - 0.12404072284698486, - 0.1643395721912384, - 0.201860249042511, - -0.07687772810459137, - -0.09817773103713989, - -0.1150951087474823, - -0.12716837227344513, - -0.13406823575496674, - -0.13560646772384644, - -0.13174110651016235, - -0.12257759273052216, - -0.10836590826511383, - -0.08949364721775055, - -0.06647565960884094, - -0.03993978351354599, - -0.010609827935695648, - 0.02071410045027733, - 0.053177595138549805, - 0.08589516580104828, - 0.11797434836626053, - 0.14854007959365845, - 0.17675861716270447, - 0.201860249042511, - -0.07687772810459137, - -0.08324451744556427, - -0.08563600480556488, - -0.08398695290088654, - -0.07834237813949585, - -0.06885620951652527, - -0.05578724294900894, - -0.03949194401502609, - -0.0204148069024086, - 0.000923793762922287, - 0.02394179254770279, - 0.04801132529973984, - 0.07247582823038101, - 0.09666798263788223, - 0.11992786824703217, - 0.14162105321884155, - 0.16115577518939972, - 0.17799919843673706, - 0.19169184565544128, - 0.201860249042511, - -0.07687774300575256, - -0.06741537153720856, - -0.05440948158502579, - -0.03821483999490738, - -0.019273214042186737, - 0.001898735761642456, - 0.02472350001335144, - 0.04857846349477768, - 0.07281293720006943, - 0.09676585346460342, - 0.11978384852409363, - 0.14123906195163727, - 0.16054624319076538, - 0.17717872560024261, - 0.19068284332752228, - 0.20069020986557007, - 0.20692788064479828, - 0.20922571420669556, - 0.207520991563797, - 0.2018602341413498, - -0.07687774300575256, - -0.05240563303232193, - -0.024799436330795288, - 0.005187824368476868, - 0.03673817962408066, - 0.06899098306894302, - 0.10106651484966278, - 0.13208982348442078, - 0.16121461987495422, - 0.1876465529203415, - 0.2106645405292511, - 0.22964075207710266, - 0.24405761063098907, - 0.25352174043655396, - 0.25777509808540344, - 0.25670158863067627, - 0.2503305673599243, - 0.23883575201034546, - 0.22253072261810303, - 0.2018602341413498, - -0.07687774300575256, - -0.03984185308218002, - -0.000014580786228179932, - 0.041517697274684906, - 0.08362208306789398, - 0.12515002489089966, - 0.1649688482284546, - 0.20199236273765564, - 0.23521064221858978, - 0.26371753215789795, - 0.28673553466796875, - 0.303636759519577, - 0.31396013498306274, - 0.31742405891418457, - 0.3139341473579407, - 0.3035854995250702, - 0.28666043281555176, - 0.26362061500549316, - 0.23509450256824493, - 0.2018602341413498, - -0.07687774300575256, - -0.031085491180419922, - 0.017259281128644943, - 0.06683789193630219, - 0.1162979006767273, - 0.16429021954536438, - 0.20950573682785034, - 0.2507110834121704, - 0.28678226470947266, - 0.3167353868484497, - 0.3397533893585205, - 0.3552083969116211, - 0.3626788258552551, - 0.3619610071182251, - 0.3530743718147278, - 0.3362613320350647, - 0.31198060512542725, - 0.2808944582939148, - 0.24385087192058563, - 0.2018602341413498, - -0.07687774300575256, - -0.02708546072244644, - 0.02515023574233055, - 0.0784045159816742, - 0.13122472167015076, - 0.18217003345489502, - 0.22985082864761353, - 0.2729664742946625, - 0.310340940952301, - 0.3409547209739685, - 0.3639727234840393, - 0.37876707315444946, - 0.3849342465400696, - 0.3823060393333435, - 0.37095415592193604, - 0.35118818283081055, - 0.32354724407196045, - 0.2887854278087616, - 0.24785089492797852, - 0.2018602341413498, - -0.07687774300575256, - -0.028275206685066223, - 0.02280319854617119, - 0.07496421039104462, - 0.12678498029708862, - 0.17685198783874512, - 0.22379951179027557, - 0.2663469910621643, - 0.3033338189125061, - 0.3337510824203491, - 0.3567690849304199, - 0.37175995111465454, - 0.378314733505249, - 0.37625473737716675, - 0.36563611030578613, - 0.346748411655426, - 0.3201069235801697, - 0.2864384055137634, - 0.24666115641593933, - 0.2018602341413498, - -0.07687774300575256, - -0.03452581912279129, - 0.010472487658262253, - 0.056889742612838745, - 0.10345979034900665, - 0.14891228079795837, - 0.19200746715068817, - 0.2315697968006134, - 0.26652008295059204, - 0.2959049940109253, - 0.3189229965209961, - 0.3349462151527405, - 0.3435375690460205, - 0.34446269273757935, - 0.3376964330673218, - 0.32342320680618286, - 0.302032470703125, - 0.2741076946258545, - 0.24041053652763367, - 0.2018602341413498, - -0.07687774300575256, - -0.04515992850065231, - -0.01050567626953125, - 0.0261397585272789, - 0.06377675384283066, - 0.1013786718249321, - 0.1379198431968689, - 0.17240354418754578, - 0.2038891315460205, - 0.2315177321434021, - 0.2545357346534729, - 0.27231526374816895, - 0.2843713164329529, - 0.29037508368492126, - 0.2901628017425537, - 0.28374019265174866, - 0.27128249406814575, - 0.2531295120716095, - 0.22977642714977264, - 0.2018602341413498, - -0.07687774300575256, - -0.05902518332004547, - -0.037857986986637115, - -0.013953499495983124, - 0.012036178261041641, - 0.03940213471651077, - 0.06739791482686996, - 0.09525985270738602, - 0.12222795188426971, - 0.14756658673286438, - 0.17058458924293518, - 0.19065408408641815, - 0.20722763240337372, - 0.21985314786434174, - 0.22818623483181, - 0.23199959099292755, - 0.23118922114372253, - 0.22577720880508423, - 0.2159111648797989, - 0.2018602341413498, - -0.07687774300575256, - -0.07461903989315033, - -0.06862033903598785, - -0.05904524028301239, - -0.04615495353937149, - -0.030301086604595184, - -0.011916078627109528, - 0.008498560637235641, - 0.03038598597049713, - 0.053149156272411346, - 0.07616715878248215, - 0.09881211817264557, - 0.12046633660793304, - 0.14053913950920105, - 0.15848299860954285, - 0.17380845546722412, - 0.18609748780727386, - 0.1950148642063141, - 0.20031732320785522, - 0.201860249042511 - ], - "y": [ - -1.5443683862686157, - -1.536104679107666, - -1.5267627239227295, - -1.5165973901748657, - -1.5058859586715698, - -1.4949206113815308, - -1.484000563621521, - -1.4734233617782593, - -1.4634778499603271, - -1.4544352293014526, - -1.4465420246124268, - -1.4400136470794678, - -1.435028314590454, - -1.4317216873168945, - -1.430184245109558, - -1.4304578304290771, - -1.43253493309021, - -1.43635892868042, - -1.4418256282806396, - -1.448785662651062, - -1.5443683862686157, - -1.5345971584320068, - -1.5237888097763062, - -1.5122381448745728, - -1.500260353088379, - -1.4881820678710938, - -1.4763327836990356, - -1.4650356769561768, - -1.4545990228652954, - -1.4453073740005493, - -1.4374141693115234, - -1.431134819984436, - -1.4266406297683716, - -1.4240540266036987, - -1.423445701599121, - -1.4248322248458862, - -1.428175687789917, - -1.4333850145339966, - -1.440317988395691, - -1.448785662651062, - -1.5443683862686157, - -1.5340778827667236, - -1.5227643251419067, - -1.5107365846633911, - -1.4983224868774414, - -1.485860824584961, - -1.473691463470459, - -1.4621464014053345, - -1.451540470123291, - -1.442163109779358, - -1.434269905090332, - -1.4280763864517212, - -1.4237512350082397, - -1.421412706375122, - -1.4211244583129883, - -1.4228942394256592, - -1.4266740083694458, - -1.4323605298995972, - -1.4397987127304077, - -1.448785662651062, - -1.5443683862686157, - -1.5346029996871948, - -1.5238003730773926, - -1.5122551918029785, - -1.5002824068069458, - -1.4882084131240845, - -1.4763628244400024, - -1.4650685787200928, - -1.4546337127685547, - -1.445343017578125, - -1.4374499320983887, - -1.4311695098876953, - -1.426673412322998, - -1.424083948135376, - -1.4234720468521118, - -1.4248541593551636, - -1.4281927347183228, - -1.433396577835083, - -1.4403239488601685, - -1.448785662651062, - -1.5443683862686157, - -1.5361157655715942, - -1.5267847776412964, - -1.516629695892334, - -1.505927562713623, - -1.4949705600738525, - -1.4840571880340576, - -1.4734854698181152, - -1.4635435342788696, - -1.4545027017593384, - -1.4466094970703125, - -1.4400793313980103, - -1.4350903034210205, - -1.4317784309387207, - -1.4302340745925903, - -1.4304994344711304, - -1.4325672388076782, - -1.4363809823989868, - -1.4418367147445679, - -1.448785662651062, - -1.5443683862686157, - -1.5384522676467896, - -1.5313938856124878, - -1.5233858823776245, - -1.5146465301513672, - -1.5054142475128174, - -1.495940923690796, - -1.4864850044250488, - -1.4773043394088745, - -1.4686493873596191, - -1.4607563018798828, - -1.4538402557373047, - -1.4480899572372437, - -1.443662166595459, - -1.4406778812408447, - -1.439218282699585, - -1.4393234252929688, - -1.4409900903701782, - -1.4441732168197632, - -1.448785662651062, - -1.5443683862686157, - -1.5413591861724854, - -1.5371284484863281, - -1.5317915678024292, - -1.5254942178726196, - -1.518407940864563, - -1.5107262134552002, - -1.5026586055755615, - -1.4944250583648682, - -1.4862502813339233, - -1.4783570766448975, - -1.4709608554840088, - -1.4642634391784668, - -1.4584474563598633, - -1.4536715745925903, - -1.4500659704208374, - -1.4477291107177734, - -1.4467246532440186, - -1.447080135345459, - -1.448785662651062, - -1.5443683862686157, - -1.5445215702056885, - -1.5433670282363892, - -1.5409361124038696, - -1.5372951030731201, - -1.5325435400009155, - -1.526810884475708, - -1.5202535390853882, - -1.5130503177642822, - -1.5053977966308594, - -1.4975045919418335, - -1.4895861148834229, - -1.4818583726882935, - -1.474532127380371, - -1.4678071737289429, - -1.4618669748306274, - -1.4568735361099243, - -1.4529632329940796, - -1.450242519378662, - -1.448785662651062, - -1.5443683862686157, - -1.5475966930389404, - -1.5494333505630493, - -1.549828290939331, - -1.548770546913147, - -1.5462892055511475, - -1.5424517393112183, - -1.537363052368164, - -1.5311617851257324, - -1.524017095565796, - -1.51612389087677, - -1.507697582244873, - -1.4989678859710693, - -1.4901729822158813, - -1.4815528392791748, - -1.4733424186706543, - -1.4657657146453857, - -1.4590295553207397, - -1.453317642211914, - -1.448785662651062, - -1.5443683862686157, - -1.5502513647079468, - -1.5546703338623047, - -1.5575045347213745, - -1.5586769580841064, - -1.5581552982330322, - -1.555954098701477, - -1.5521330833435059, - -1.5467967987060547, - -1.540090560913086, - -1.53219735622406, - -1.5233325958251953, - -1.5137380361557007, - -1.5036753416061401, - -1.4934189319610596, - -1.4832487106323242, - -1.4734420776367188, - -1.4642665386199951, - -1.4559723138809204, - -1.448785662651062, - -1.5443683862686157, - -1.5521979331970215, - -1.5585103034973145, - -1.5631332397460938, - -1.5659407377243042, - -1.5668561458587646, - -1.565854549407959, - -1.5629632472991943, - -1.5582610368728638, - -1.5518763065338135, - -1.5439832210540771, - -1.534796953201294, - -1.5245680809020996, - -1.513575792312622, - -1.502119779586792, - -1.490512490272522, - -1.479070782661438, - -1.4681065082550049, - -1.4579188823699951, - -1.448785662651062, - -1.5443683862686157, - -1.5532253980636597, - -1.5605370998382568, - -1.5661041736602783, - -1.5697747468948364, - -1.5714486837387085, - -1.5710803270339966, - -1.568679690361023, - -1.564312219619751, - -1.558097243309021, - -1.5502040386199951, - -1.5408481359481812, - -1.5302845239639282, - -1.5188015699386597, - -1.5067123174667358, - -1.4943466186523438, - -1.4820417165756226, - -1.4701333045959473, - -1.4589462280273438, - -1.448785662651062, - -1.5443683862686157, - -1.553222417831421, - -1.5605312585830688, - -1.5660955905914307, - -1.5697636604309082, - -1.5714353322982788, - -1.571065068244934, - -1.5686630010604858, - -1.564294695854187, - -1.5580791234970093, - -1.5501859188079834, - -1.5408304929733276, - -1.5302679538726807, - -1.5187863111495972, - -1.5066989660263062, - -1.494335412979126, - -1.4820330142974854, - -1.4701274633407593, - -1.458943247795105, - -1.448785662651062, - -1.5443683862686157, - -1.5521892309188843, - -1.5584932565689087, - -1.563108205795288, - -1.565908432006836, - -1.5668175220489502, - -1.5658105611801147, - -1.5629150867462158, - -1.5582101345062256, - -1.5518239736557007, - -1.5439308881759644, - -1.5347459316253662, - -1.5245200395584106, - -1.5135318040847778, - -1.5020811557769775, - -1.4904803037643433, - -1.4790457487106323, - -1.4680894613265991, - -1.457910180091858, - -1.448785662651062, - -1.5443683862686157, - -1.550238013267517, - -1.554643988609314, - -1.55746591091156, - -1.5586271286010742, - -1.5580956935882568, - -1.555886149406433, - -1.5520588159561157, - -1.5467181205749512, - -1.5400097370147705, - -1.5321165323257446, - -1.5232539176940918, - -1.513663649559021, - -1.5036073923110962, - -1.4933592081069946, - -1.483198881149292, - -1.4734034538269043, - -1.4642401933670044, - -1.4559589624404907, - -1.448785662651062, - -1.5443683862686157, - -1.5475801229476929, - -1.5494005680084229, - -1.5497801303863525, - -1.5487085580825806, - -1.5462149381637573, - -1.5423672199249268, - -1.5372705459594727, - -1.5310637950897217, - -1.523916482925415, - -1.5160232782363892, - -1.5075997114181519, - -1.498875379562378, - -1.4900884628295898, - -1.4814784526824951, - -1.4732803106307983, - -1.4657176733016968, - -1.4589967727661133, - -1.453300952911377, - -1.448785662651062, - -1.5443683862686157, - -1.5445034503936768, - -1.543331265449524, - -1.5408837795257568, - -1.5372276306152344, - -1.5324627161026, - -1.5267188549041748, - -1.5201528072357178, - -1.5129437446594238, - -1.5052882432937622, - -1.4973950386047363, - -1.4894795417785645, - -1.481757640838623, - -1.474440097808838, - -1.467726230621338, - -1.4617993831634521, - -1.4568212032318115, - -1.4529274702072144, - -1.4502243995666504, - -1.448785662651062, - -1.5443683862686157, - -1.5413415431976318, - -1.5370937585830688, - -1.531740665435791, - -1.5254285335540771, - -1.5183292627334595, - -1.5106366872787476, - -1.5025607347488403, - -1.494321346282959, - -1.4861435890197754, - -1.478250503540039, - -1.4708572626113892, - -1.4641655683517456, - -1.4583579301834106, - -1.4535928964614868, - -1.450000286102295, - -1.4476782083511353, - -1.4466899633407593, - -1.4470624923706055, - -1.448785662651062, - -1.5443683862686157, - -1.5384371280670166, - -1.5313639640808105, - -1.5233418941497803, - -1.514589786529541, - -1.5053462982177734, - -1.495863676071167, - -1.4864004850387573, - -1.4772148132324219, - -1.468557357788086, - -1.4606642723083496, - -1.453750729560852, - -1.4480053186416626, - -1.44358491897583, - -1.4406099319458008, - -1.4391615390777588, - -1.4392794370651245, - -1.440960168838501, - -1.4441579580307007, - -1.448785662651062, - -1.5443683862686157, - -1.536104679107666, - -1.5267627239227295, - -1.5165973901748657, - -1.5058859586715698, - -1.4949206113815308, - -1.4840004444122314, - -1.4734233617782593, - -1.4634778499603271, - -1.4544352293014526, - -1.4465420246124268, - -1.4400136470794678, - -1.4350281953811646, - -1.4317216873168945, - -1.430184245109558, - -1.4304578304290771, - -1.43253493309021, - -1.43635892868042, - -1.4418256282806396, - -1.448785662651062 - ], - "z": [ - 0.41903406381607056, - 0.4219106137752533, - 0.4331388473510742, - 0.452412486076355, - 0.4792057275772095, - 0.5127877593040466, - 0.552242636680603, - 0.5964939594268799, - 0.6443347930908203, - 0.6944601535797119, - 0.7455027103424072, - 0.7960701584815979, - 0.8447832465171814, - 0.8903130292892456, - 0.93141770362854, - 0.9669760465621948, - 0.9960180521011353, - 1.0177515745162964, - 1.0315837860107422, - 1.0371372699737549, - 0.41903406381607056, - 0.4287271499633789, - 0.4465859532356262, - 0.472123384475708, - 0.5046427249908447, - 0.5432570576667786, - 0.5869130492210388, - 0.6344197988510132, - 0.6844815611839294, - 0.7357327342033386, - 0.7867752909660339, - 0.8362169861793518, - 0.8827090859413147, - 0.9249835014343262, - 0.9618870615959167, - 0.9924130439758301, - 1.0157289505004883, - 1.0311987400054932, - 1.0384002923965454, - 1.0371372699737549, - 0.41903403401374817, - 0.434950053691864, - 0.4588620066642761, - 0.49011772871017456, - 0.5278645753860474, - 0.5710728764533997, - 0.6185641288757324, - 0.6690428853034973, - 0.7211320996284485, - 0.7734110355377197, - 0.824453592300415, - 0.8728674650192261, - 0.917332112789154, - 0.9566346406936646, - 0.9897028803825378, - 1.0156348943710327, - 1.0337233543395996, - 1.043474793434143, - 1.0446232557296753, - 1.0371372699737549, - 0.41903403401374817, - 0.43990495800971985, - 0.468636691570282, - 0.5044455528259277, - 0.5463546514511108, - 0.5932209491729736, - 0.6437660455703735, - 0.6966111063957214, - 0.7503147125244141, - 0.8034119606018066, - 0.854454517364502, - 0.9020501375198364, - 0.944900393486023, - 0.9818364977836609, - 1.0118509531021118, - 1.0341249704360962, - 1.048051118850708, - 1.053249478340149, - 1.0495781898498535, - 1.0371372699737549, - 0.41903403401374817, - 0.4430549740791321, - 0.47485077381134033, - 0.5135542154312134, - 0.5581094622612, - 0.6073011755943298, - 0.659787654876709, - 0.714137077331543, - 0.768867015838623, - 0.82248455286026, - 0.8735271096229553, - 0.9206024408340454, - 0.9624263644218445, - 0.9978581070899963, - 1.0259311199188232, - 1.04587984085083, - 1.0571597814559937, - 1.0594635009765625, - 1.0527281761169434, - 1.0371372699737549, - 0.41903403401374817, - 0.44405868649482727, - 0.4768308401107788, - 0.5164566040039062, - 0.5618550181388855, - 0.6117877960205078, - 0.664892852306366, - 0.7197216153144836, - 0.7747786045074463, - 0.8285619020462036, - 0.8796044588088989, - 0.9265139698982239, - 0.9680109024047852, - 1.0029633045196533, - 1.0304176807403564, - 1.0496253967285156, - 1.0600621700286865, - 1.061443567276001, - 1.053731918334961, - 1.0371372699737549, - 0.41903403401374817, - 0.4428073763847351, - 0.4743623435497284, - 0.5128382444381714, - 0.5571855306625366, - 0.6061944961547852, - 0.6585283875465393, - 0.7127595543861389, - 0.7674088478088379, - 0.8209854364395142, - 0.8720279932022095, - 0.9191442131996155, - 0.9610488414764404, - 0.9965988397598267, - 1.0248245000839233, - 1.044955849647522, - 1.0564438104629517, - 1.058975100517273, - 1.0524805784225464, - 1.0371372699737549, - 0.41903403401374817, - 0.4394366145133972, - 0.46771278977394104, - 0.5030912756919861, - 0.5446069836616516, - 0.5911275148391724, - 0.641383945941925, - 0.6940053105354309, - 0.7475563287734985, - 0.8005762696266174, - 0.8516188263893127, - 0.8992917537689209, - 0.9422945976257324, - 0.9794543981552124, - 1.0097575187683105, - 1.0323772430419922, - 1.0466969013214111, - 1.0523254871368408, - 1.0491098165512085, - 1.0371372699737549, - 0.41903403401374817, - 0.4343116879463196, - 0.45760273933410645, - 0.4882718324661255, - 0.5254824161529541, - 0.5682195425033569, - 0.6153173446655273, - 0.6654912233352661, - 0.717372477054596, - 0.7695459723472595, - 0.8205885291099548, - 0.8691078424453735, - 0.9137804508209229, - 0.9533878564834595, - 0.9868495464324951, - 1.0132527351379395, - 1.0318775177001953, - 1.0422154664993286, - 1.0439848899841309, - 1.0371372699737549, - 0.41903406381607056, - 0.4279879629611969, - 0.44512778520584106, - 0.4699859619140625, - 0.501884400844574, - 0.5399529933929443, - 0.5831534266471863, - 0.6303071975708008, - 0.6801280975341797, - 0.7312572002410889, - 0.7822997570037842, - 0.8318634629249573, - 0.8785964250564575, - 0.9212238788604736, - 0.9585829973220825, - 0.9896547198295593, - 1.0135915279388428, - 1.029740571975708, - 1.037661075592041, - 1.0371372699737549, - 0.41903406381607056, - 0.42115071415901184, - 0.43163976073265076, - 0.45021510124206543, - 0.4763700067996979, - 0.5093910694122314, - 0.548377513885498, - 0.5922659635543823, - 0.6398591995239258, - 0.6898590922355652, - 0.7409016489982605, - 0.7915946245193481, - 0.8405552506446838, - 0.8864480257034302, - 0.9280210137367249, - 0.9641402959823608, - 0.9938206672668457, - 1.0162525177001953, - 1.0308239459991455, - 1.0371372699737549, - 0.41903406381607056, - 0.4145408570766449, - 0.4186003506183624, - 0.43110179901123047, - 0.4517041742801666, - 0.4798455238342285, - 0.5147582292556763, - 0.5554899573326111, - 0.6009296178817749, - 0.6498377919197083, - 0.7008803486824036, - 0.7526650428771973, - 0.8037792444229126, - 0.8528286814689636, - 0.8984755277633667, - 0.9394744634628296, - 0.9747074246406555, - 1.0032131671905518, - 1.0242140293121338, - 1.0371372699737549, - 0.41903406381607056, - 0.40887466073036194, - 0.4074225127696991, - 0.41471725702285767, - 0.43055984377861023, - 0.4545181691646576, - 0.48593869805336, - 0.5239643454551697, - 0.5675579309463501, - 0.615530252456665, - 0.6665728092193604, - 0.7192932963371277, - 0.7722536325454712, - 0.824009120464325, - 0.8731480836868286, - 0.918330192565918, - 0.9583228826522827, - 0.9920352697372437, - 1.018547773361206, - 1.0371373891830444, - 0.41903406381607056, - 0.40476617217063904, - 0.39931759238243103, - 0.40283700823783875, - 0.41522830724716187, - 0.4361535310745239, - 0.4650419354438782, - 0.5011054277420044, - 0.5433604121208191, - 0.5906542539596558, - 0.6416968107223511, - 0.6950957775115967, - 0.7493947148323059, - 0.8031123876571655, - 0.8547834753990173, - 0.9029986262321472, - 0.9464426040649414, - 0.9839303493499756, - 1.014439344406128, - 1.0371373891830444, - 0.41903406381607056, - 0.402660608291626, - 0.395163893699646, - 0.396748423576355, - 0.4073709547519684, - 0.4267417788505554, - 0.45433247089385986, - 0.48939043283462524, - 0.5309593677520752, - 0.5779054164886475, - 0.6289479732513428, - 0.6826947331428528, - 0.737679660320282, - 0.7924029231071472, - 0.8453717231750488, - 0.8951412439346313, - 0.94035404920578, - 0.9797766208648682, - 1.0123337507247925, - 1.0371373891830444, - 0.41903406381607056, - 0.40278610587120056, - 0.3954114615917206, - 0.39711135625839233, - 0.407839298248291, - 0.4273027777671814, - 0.4549708068370819, - 0.49008870124816895, - 0.5316985249519348, - 0.5786652565002441, - 0.6297078728675842, - 0.6834338903427124, - 0.7383779883384705, - 0.7930412292480469, - 0.8459327220916748, - 0.8956096172332764, - 0.9407169222831726, - 0.9800242185592651, - 1.0124592781066895, - 1.0371373891830444, - 0.41903406381607056, - 0.4051291048526764, - 0.40003353357315063, - 0.4038864076137543, - 0.4165825843811035, - 0.43777573108673096, - 0.46688780188560486, - 0.5031246542930603, - 0.5454978942871094, - 0.5928515791893005, - 0.6438941359519958, - 0.697233259677887, - 0.7514139413833618, - 0.8049582242965698, - 0.8564056754112244, - 0.9043529033660889, - 0.9474920034408569, - 0.9846463203430176, - 1.0148022174835205, - 1.0371373891830444, - 0.41903406381607056, - 0.4094356596469879, - 0.40852922201156616, - 0.4163394570350647, - 0.4326533079147339, - 0.45702576637268066, - 0.4887920618057251, - 0.5270856618881226, - 0.5708619952201843, - 0.618927001953125, - 0.6699695587158203, - 0.7225973606109619, - 0.7753748893737793, - 0.8268625140190125, - 0.8756557106971741, - 0.9204236268997192, - 0.9599450826644897, - 0.9931420087814331, - 1.019108772277832, - 1.0371373891830444, - 0.41903406381607056, - 0.415239155292511, - 0.4199778735637665, - 0.4331210255622864, - 0.45430999994277954, - 0.4829668402671814, - 0.5183099508285522, - 0.5593751072883606, - 0.6050423383712769, - 0.6540658473968506, - 0.7051084041595459, - 0.7567777037620544, - 0.8076643943786621, - 0.8563803434371948, - 0.9015967845916748, - 0.9420803189277649, - 0.9767266511917114, - 1.004590630531311, - 1.0249123573303223, - 1.0371372699737549, - 0.41903406381607056, - 0.4219106137752533, - 0.4331388473510742, - 0.452412486076355, - 0.4792057275772095, - 0.5127878189086914, - 0.552242636680603, - 0.5964939594268799, - 0.6443347930908203, - 0.6944601535797119, - 0.7455027103424072, - 0.7960702180862427, - 0.8447832465171814, - 0.8903130888938904, - 0.9314177632331848, - 0.9669760465621948, - 0.9960180521011353, - 1.017751693725586, - 1.0315837860107422, - 1.0371372699737549 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.08401685953140259, - -0.08238086104393005, - -0.07801087200641632, - -0.07102605700492859, - -0.061617013067007065, - -0.050040338188409805, - -0.03661183640360832, - -0.02169780060648918, - -0.005705038085579872, - 0.010930200107395649, - 0.027754150331020355, - 0.044307902455329895, - 0.060139913111925125, - 0.07481832057237625, - 0.08794273436069489, - 0.09915517270565033, - 0.10814978182315826, - 0.1146811991930008, - 0.11857126653194427, - 0.11971388757228851, - -0.08401685953140259, - -0.09977510571479797, - -0.11232490837574005, - -0.12132388353347778, - -0.1265266239643097, - -0.12779118120670319, - -0.1250830590724945, - -0.11847615242004395, - -0.1081506609916687, - -0.0943882167339325, - -0.07756426930427551, - -0.05813771113753319, - -0.03663844242691994, - -0.013652920722961426, - 0.010191889479756355, - 0.034245558083057404, - 0.05785195529460907, - 0.08036716282367706, - 0.10117702186107635, - 0.11971388757228851, - -0.08401685953140259, - -0.1153111606836319, - -0.14297321438789368, - -0.16624845564365387, - -0.1845020353794098, - -0.19723598659038544, - -0.204103022813797, - -0.20491580665111542, - -0.19965213537216187, - -0.18845564126968384, - -0.17163167893886566, - -0.14963920414447784, - -0.12307809293270111, - -0.09267286956310272, - -0.05925293639302254, - -0.02372986450791359, - 0.012927379459142685, - 0.04971885308623314, - 0.08564098179340363, - 0.11971388757228851, - -0.0840168446302414, - -0.12730543315410614, - -0.16663458943367004, - -0.20093151926994324, - -0.22926071286201477, - -0.2508493661880493, - -0.2651086747646332, - -0.27164965867996216, - -0.2702938914299011, - -0.2610783278942108, - -0.24425439536571503, - -0.2202809751033783, - -0.18981195986270905, - -0.15367856621742249, - -0.1128663420677185, - -0.06848852336406708, - -0.021755684167146683, - 0.02605748549103737, - 0.07364670932292938, - 0.11971388757228851, - -0.0840168446302414, - -0.13445815443992615, - -0.180744931101799, - -0.22161458432674408, - -0.2559523284435272, - -0.2828214764595032, - -0.3014891743659973, - -0.3114461302757263, - -0.3124207854270935, - -0.30438655614852905, - -0.28756260871887207, - -0.2624078392982483, - -0.2296084314584732, - -0.19005903601646423, - -0.14483845233917236, - -0.09518018364906311, - -0.042438749223947525, - 0.011947134509682655, - 0.06649397313594818, - 0.11971390247344971, - -0.0840168446302414, - -0.13599424064159393, - -0.1837751865386963, - -0.22605636715888977, - -0.26168447732925415, - -0.2896876335144043, - -0.3093020021915436, - -0.3199925720691681, - -0.32146772742271423, - -0.31368720531463623, - -0.29686325788497925, - -0.271454781293869, - -0.23815487325191498, - -0.19787189364433289, - -0.1517045944929123, - -0.10091233253479004, - -0.046880532056093216, - 0.008916880004107952, - 0.06495790183544159, - 0.11971390247344971, - -0.0840168446302414, - -0.13174721598625183, - -0.17539699375629425, - -0.21377551555633545, - -0.24583597481250763, - -0.2707037925720215, - -0.2877006232738495, - -0.29636290669441223, - -0.2964543402194977, - -0.2879723608493805, - -0.2711484134197235, - -0.24644140899181366, - -0.21452520787715912, - -0.1762704849243164, - -0.1327207386493683, - -0.08506381511688232, - -0.034599680453538895, - 0.017295079305768013, - 0.06920492649078369, - 0.11971390247344971, - -0.0840168446302414, - -0.12217730283737183, - -0.15651822090148926, - -0.18610283732414246, - -0.21012423932552338, - -0.2279270887374878, - -0.23902584612369537, - -0.2431177943944931, - -0.24009118974208832, - -0.2300286740064621, - -0.21320471167564392, - -0.1900782585144043, - -0.1612800657749176, - -0.1275957077741623, - -0.0899440348148346, - -0.04935206100344658, - -0.0069270022213459015, - 0.036173850297927856, - 0.0787748321890831, - 0.11971388757228851, - -0.08401685953140259, - -0.10832157731056213, - -0.12918469309806824, - -0.14603711664676666, - -0.15841920673847198, - -0.16599313914775848, - -0.16855235397815704, - -0.16602705419063568, - -0.15848609805107117, - -0.14613519608974457, - -0.1293112337589264, - -0.10847316682338715, - -0.08418934047222137, - -0.05712220445275307, - -0.02801007404923439, - 0.002352979965507984, - 0.03313871845602989, - 0.06350737810134888, - 0.09263056516647339, - 0.11971388757228851, - -0.08401685953140259, - -0.09168149530887604, - -0.09635843336582184, - -0.09792008996009827, - -0.0963238924741745, - -0.09161336719989777, - -0.08391700685024261, - -0.07344476878643036, - -0.06048225983977318, - -0.04538310691714287, - -0.02855915203690529, - -0.01046932302415371, - 0.008392944931983948, - 0.02751314267516136, - 0.046369701623916626, - 0.064448282122612, - 0.08125574886798859, - 0.09633363783359528, - 0.10927064716815948, - 0.11971388757228851, - -0.08401685953140259, - -0.07406027615070343, - -0.06159665808081627, - -0.04696596786379814, - -0.03056732937693596, - -0.012848027050495148, - 0.0057086031883955, - 0.024596376344561577, - 0.0433000847697258, - 0.061309538781642914, - 0.0781334936618805, - 0.09331302344799042, - 0.10643409192562103, - 0.11713875830173492, - 0.12513506412506104, - 0.13020485639572144, - 0.1322098672389984, - 0.13109540939331055, - 0.1268918514251709, - 0.11971387267112732, - -0.08401687443256378, - -0.057367462664842606, - -0.028666365891695023, - 0.0013035498559474945, - 0.03172476589679718, - 0.06176745891571045, - 0.09061217308044434, - 0.1174720823764801, - 0.14161451160907745, - 0.16238093376159668, - 0.17920489609241486, - 0.19162744283676147, - 0.1993097960948944, - 0.2020423412322998, - 0.19975055754184723, - 0.19249695539474487, - 0.18047937750816345, - 0.1640256941318512, - 0.14358466863632202, - 0.11971387267112732, - -0.08401687443256378, - -0.0434119738638401, - -0.0011360514909029007, - 0.041657742112874985, - 0.08380205929279327, - 0.12414734065532684, - 0.16159306466579437, - 0.19511784613132477, - 0.22380714118480682, - 0.24687841534614563, - 0.263702392578125, - 0.27382010221481323, - 0.27695557475090027, - 0.27302324771881104, - 0.2621304392814636, - 0.24457424879074097, - 0.22083356976509094, - 0.19155600666999817, - 0.15754015743732452, - 0.11971387267112732, - -0.08401687443256378, - -0.03370609134435654, - 0.01801096461713314, - 0.06972360610961914, - 0.12002122402191162, - 0.167531818151474, - 0.21095944941043854, - 0.2491195648908615, - 0.2809711694717407, - 0.3056454360485077, - 0.3224693834781647, - 0.33098411560058594, - 0.330957293510437, - 0.3223896622657776, - 0.305514931678772, - 0.2807934582233429, - 0.2488994300365448, - 0.2107030302286148, - 0.1672460436820984, - 0.11971387267112732, - -0.08401687443256378, - -0.029301617294549942, - 0.026699762791395187, - 0.08245974779129028, - 0.13645726442337036, - 0.18721944093704224, - 0.23336161673069, - 0.2736252248287201, - 0.3069118559360504, - 0.332313597202301, - 0.349137544631958, - 0.35692480206489563, - 0.3554629385471344, - 0.34479182958602905, - 0.3252025544643402, - 0.29722949862480164, - 0.26163557171821594, - 0.2193918228149414, - 0.17165051400661469, - 0.11971387267112732, - -0.08401687443256378, - -0.03067583590745926, - 0.023988841101527214, - 0.07848601043224335, - 0.13132914900779724, - 0.1810768097639084, - 0.22637204825878143, - 0.2659793794155121, - 0.2988182604312897, - 0.3239930272102356, - 0.3408169746398926, - 0.3488312065601349, - 0.3478170931339264, - 0.3378022611141205, - 0.31905993819236755, - 0.2921013832092285, - 0.2576618492603302, - 0.21668089926242828, - 0.17027629911899567, - 0.11971387267112732, - -0.08401687443256378, - -0.03767983242869377, - 0.01017189584672451, - 0.05823301896452904, - 0.10519255697727203, - 0.14976954460144043, - 0.19074809551239014, - 0.22701041400432587, - 0.2575673460960388, - 0.28158536553382874, - 0.2984093129634857, - 0.30758029222488403, - 0.30884814262390137, - 0.302178293466568, - 0.2877526879310608, - 0.2659647464752197, - 0.237408846616745, - 0.20286396145820618, - 0.16327229142189026, - 0.11971387267112732, - -0.08401687443256378, - -0.04955461248755455, - -0.013253765180706978, - 0.023895476013422012, - 0.06087976694107056, - 0.09669025242328644, - 0.13035017251968384, - 0.16094134747982025, - 0.1876293122768402, - 0.2096860706806183, - 0.22651003301143646, - 0.23764224350452423, - 0.24277906119823456, - 0.2417803406715393, - 0.23467335104942322, - 0.22165195643901825, - 0.20307131111621857, - 0.1794382929801941, - 0.15139751136302948, - 0.11971387267112732, - -0.08401685953140259, - -0.06501336395740509, - -0.0437496118247509, - -0.020805608481168747, - 0.0031927619129419327, - 0.02759091556072235, - 0.051723308861255646, - 0.07493170350790024, - 0.09658300876617432, - 0.11608664691448212, - 0.1329105943441391, - 0.14659593999385834, - 0.15676940977573395, - 0.16315346956253052, - 0.16557399928569794, - 0.16396495699882507, - 0.1583702266216278, - 0.14894245564937592, - 0.13593876361846924, - 0.11971387267112732, - -0.08401685953140259, - -0.08238087594509125, - -0.07801088690757751, - -0.07102608680725098, - -0.06161704286932945, - -0.05004038289189339, - -0.036611881107091904, - -0.02169785276055336, - -0.005705093964934349, - 0.010930143296718597, - 0.02775409445166588, - 0.04430784657597542, - 0.06013986095786095, - 0.07481826841831207, - 0.0879427045583725, - 0.09915514290332794, - 0.10814975202083588, - 0.1146811842918396, - 0.11857126653194427, - 0.11971388757228851 - ], - "y": [ - -1.603013038635254, - -1.5965059995651245, - -1.588881254196167, - -1.580346703529358, - -1.571135401725769, - -1.5614982843399048, - -1.5516985654830933, - -1.5420032739639282, - -1.5326769351959229, - -1.523974061012268, - -1.5161319971084595, - -1.5093647241592407, - -1.5038566589355469, - -1.4997581243515015, - -1.4971809387207031, - -1.4961953163146973, - -1.496828317642212, - -1.4990625381469727, - -1.502837061882019, - -1.5080490112304688, - -1.603013038635254, - -1.5953561067581177, - -1.5866129398345947, - -1.577021837234497, - -1.5668445825576782, - -1.5563585758209229, - -1.545850157737732, - -1.535605788230896, - -1.525904893875122, - -1.517012119293213, - -1.5091700553894043, - -1.5025925636291504, - -1.497459053993225, - -1.4939097166061401, - -1.4920412302017212, - -1.4919044971466064, - -1.4935033321380615, - -1.4967942237854004, - -1.5016872882843018, - -1.5080490112304688, - -1.603013038635254, - -1.594965934753418, - -1.5858429670333862, - -1.5758932828903198, - -1.5653882026672363, - -1.5546141862869263, - -1.5438652038574219, - -1.5334343910217285, - -1.523606300354004, - -1.5146490335464478, - -1.5068069696426392, - -1.5002939701080322, - -1.4952877759933472, - -1.49192476272583, - -1.490296721458435, - -1.4904481172561646, - -1.4923748970031738, - -1.4960243701934814, - -1.5012969970703125, - -1.5080490112304688, - -1.603013038635254, - -1.5953774452209473, - -1.5866550207138062, - -1.5770834684371948, - -1.5669240951538086, - -1.5564539432525635, - -1.5459586381912231, - -1.535724401473999, - -1.526030421257019, - -1.5171412229537964, - -1.5092991590499878, - -1.5027180910110474, - -1.4975777864456177, - -1.4940181970596313, - -1.4921364784240723, - -1.4919841289520264, - -1.4935650825500488, - -1.4968363046646118, - -1.5017085075378418, - -1.5080490112304688, - -1.603013038635254, - -1.5965462923049927, - -1.5889607667922974, - -1.5804634094238281, - -1.5712858438491821, - -1.5616786479949951, - -1.5519036054611206, - -1.5422276258468628, - -1.5329145193099976, - -1.5242183208465576, - -1.516376256942749, - -1.5096021890640259, - -1.5040810108184814, - -1.4999631643295288, - -1.497361183166504, - -1.4963458776474, - -1.4969449043273926, - -1.499142050743103, - -1.5028773546218872, - -1.5080490112304688, - -1.603013038635254, - -1.5983457565307617, - -1.5925105810165405, - -1.5856666564941406, - -1.578000783920288, - -1.5697219371795654, - -1.5610560178756714, - -1.5522394180297852, - -1.5435125827789307, - -1.5351135730743408, - -1.5272715091705322, - -1.520200252532959, - -1.5140928030014038, - -1.5091155767440796, - -1.5054045915603638, - -1.5030608177185059, - -1.5021482706069946, - -1.5026918649673462, - -1.5046768188476562, - -1.5080490112304688, - -1.603013038635254, - -1.6005808115005493, - -1.5969197750091553, - -1.5921295881271362, - -1.5863412618637085, - -1.5797123908996582, - -1.572424054145813, - -1.5646748542785645, - -1.5566761493682861, - -1.548646330833435, - -1.5408042669296265, - -1.5333638191223145, - -1.5265281200408936, - -1.5204836130142212, - -1.5153950452804565, - -1.5114011764526367, - -1.5086112022399902, - -1.507101058959961, - -1.5069118738174438, - -1.5080490112304688, - -1.603013038635254, - -1.6030092239379883, - -1.601710319519043, - -1.599151849746704, - -1.5954034328460693, - -1.5905673503875732, - -1.584775686264038, - -1.5781861543655396, - -1.5709787607192993, - -1.563349962234497, - -1.5555078983306885, - -1.5476664304733276, - -1.5400395393371582, - -1.5328352451324463, - -1.526249885559082, - -1.5204633474349976, - -1.5156333446502686, - -1.5118917226791382, - -1.5093402862548828, - -1.5080490112304688, - -1.603013038635254, - -1.60536789894104, - -1.6063634157180786, - -1.6059722900390625, - -1.6042052507400513, - -1.6011104583740234, - -1.5967724323272705, - -1.5913094282150269, - -1.584870457649231, - -1.5776312351226807, - -1.569789171218872, - -1.5615582466125488, - -1.5531628131866455, - -1.5448319911956787, - -1.5367929935455322, - -1.5292651653289795, - -1.522453784942627, - -1.5165446996688843, - -1.5116989612579346, - -1.5080490112304688, - -1.603013038635254, - -1.6074012517929077, - -1.6103745698928833, - -1.6118518114089966, - -1.611792802810669, - -1.610199213027954, - -1.607114315032959, - -1.602622389793396, - -1.5968459844589233, - -1.5899425745010376, - -1.582100510597229, - -1.5735336542129517, - -1.5644757747650146, - -1.5551738739013672, - -1.545881748199463, - -1.5368528366088867, - -1.5283334255218506, - -1.520555853843689, - -1.5137323141098022, - -1.5080490112304688, - -1.603013038635254, - -1.608888864517212, - -1.6133091449737549, - -1.6161534786224365, - -1.6173441410064697, - -1.6168487071990967, - -1.6146806478500366, - -1.6108992099761963, - -1.605607509613037, - -1.598949670791626, - -1.5911076068878174, - -1.5822951793670654, - -1.572752594947815, - -1.5627402067184448, - -1.5525312423706055, - -1.5424041748046875, - -1.5326350927352905, - -1.52349054813385, - -1.5152199268341064, - -1.5080490112304688, - -1.603013038635254, - -1.60966956615448, - -1.614849328994751, - -1.6184109449386597, - -1.6202574968338013, - -1.6203384399414062, - -1.6186515092849731, - -1.6152429580688477, - -1.6102055311203003, - -1.603676676750183, - -1.5958346128463745, - -1.5868932008743286, - -1.5770962238311768, - -1.5667110681533813, - -1.556020975112915, - -1.5453174114227295, - -1.5348925590515137, - -1.5250306129455566, - -1.5160006284713745, - -1.5080490112304688, - -1.603013038635254, - -1.6096587181091309, - -1.6148279905319214, - -1.6183797121047974, - -1.6202170848846436, - -1.6202900409698486, - -1.6185965538024902, - -1.6151827573776245, - -1.6101418733596802, - -1.6036112308502197, - -1.5957691669464111, - -1.5868295431137085, - -1.5770361423492432, - -1.5666561126708984, - -1.555972695350647, - -1.5452771186828613, - -1.5348613262176514, - -1.525009274482727, - -1.5159897804260254, - -1.5080490112304688, - -1.603013038635254, - -1.6088576316833496, - -1.6132475137710571, - -1.616063117980957, - -1.617227554321289, - -1.6167089939117432, - -1.6145217418670654, - -1.6107252836227417, - -1.6054233312606812, - -1.5987604856491089, - -1.5909184217453003, - -1.582111120223999, - -1.5725786685943604, - -1.5625813007354736, - -1.552391529083252, - -1.5422874689102173, - -1.5325446128845215, - -1.5234287977218628, - -1.5151886940002441, - -1.5080490112304688, - -1.603013038635254, - -1.6073529720306396, - -1.6102792024612427, - -1.611712098121643, - -1.6116125583648682, - -1.609983205795288, - -1.6068686246871948, - -1.602353572845459, - -1.5965614318847656, - -1.58965003490448, - -1.5818079710006714, - -1.573249101638794, - -1.5642069578170776, - -1.554928183555603, - -1.5456658601760864, - -1.536672592163086, - -1.528193712234497, - -1.520460605621338, - -1.5136840343475342, - -1.5080490112304688, - -1.603013038635254, - -1.6053078174591064, - -1.6062448024749756, - -1.605798363685608, - -1.6039807796478271, - -1.6008416414260864, - -1.5964665412902832, - -1.5909749269485474, - -1.5845162868499756, - -1.5772671699523926, - -1.569425106048584, - -1.5612040758132935, - -1.5528281927108765, - -1.5445261001586914, - -1.5365242958068848, - -1.529040813446045, - -1.522279977798462, - -1.5164260864257812, - -1.511638879776001, - -1.5080490112304688, - -1.603013038635254, - -1.602943778038025, - -1.6015812158584595, - -1.5989625453948975, - -1.5951591730117798, - -1.5902748107910156, - -1.5844427347183228, - -1.5778220891952515, - -1.5705933570861816, - -1.5629537105560303, - -1.5551116466522217, - -1.54728102684021, - -1.5396754741668701, - -1.532502293586731, - -1.525957465171814, - -1.5202192068099976, - -1.5154441595077515, - -1.5117626190185547, - -1.509274959564209, - -1.5080490112304688, - -1.603013038635254, - -1.6005171537399292, - -1.5967941284179688, - -1.5919455289840698, - -1.5861036777496338, - -1.5794278383255005, - -1.572100281715393, - -1.564320683479309, - -1.556301236152649, - -1.5482609272003174, - -1.5404187440872192, - -1.5329889059066772, - -1.5261739492416382, - -1.5201598405838013, - -1.5151104927062988, - -1.5111637115478516, - -1.5084271430969238, - -1.5069754123687744, - -1.5068482160568237, - -1.5080490112304688, - -1.603013038635254, - -1.5982908010482788, - -1.5924021005630493, - -1.5855077505111694, - -1.5777956247329712, - -1.5694762468338013, - -1.5607764720916748, - -1.5519335269927979, - -1.5431888103485107, - -1.534780740737915, - -1.5269386768341064, - -1.519876480102539, - -1.5137869119644165, - -1.508836030960083, - -1.50515878200531, - -1.502855658531189, - -1.5019893646240234, - -1.5025835037231445, - -1.5046218633651733, - -1.5080490112304688, - -1.603013038635254, - -1.5965059995651245, - -1.588881254196167, - -1.580346703529358, - -1.571135401725769, - -1.5614982843399048, - -1.5516985654830933, - -1.5420032739639282, - -1.5326769351959229, - -1.523974061012268, - -1.5161319971084595, - -1.5093647241592407, - -1.5038566589355469, - -1.499758005142212, - -1.4971809387207031, - -1.4961953163146973, - -1.496828317642212, - -1.4990625381469727, - -1.502837061882019, - -1.5080490112304688 - ], - "z": [ - 0.4484410881996155, - 0.45228317379951477, - 0.4654581546783447, - 0.4876067340373993, - 0.5181245803833008, - 0.556179404258728, - 0.6007331609725952, - 0.6505704522132874, - 0.7043318748474121, - 0.7605510354042053, - 0.8176943063735962, - 0.8742030262947083, - 0.9285358190536499, - 0.9792105555534363, - 1.024845004081726, - 1.0641943216323853, - 1.0961852073669434, - 1.1199451684951782, - 1.1348258256912231, - 1.1404213905334473, - 0.4484410881996155, - 0.4572465419769287, - 0.4752494990825653, - 0.501958966255188, - 0.5366462469100952, - 0.5783652663230896, - 0.6259779930114746, - 0.6781857013702393, - 0.7335642576217651, - 0.7906031012535095, - 0.8477463722229004, - 0.9034353494644165, - 0.956151008605957, - 1.004455327987671, - 1.0470308065414429, - 1.0827159881591797, - 1.1105375289916992, - 1.1297365427017212, - 1.1397892236709595, - 1.1404213905334473, - 0.4484410881996155, - 0.4617670476436615, - 0.484167218208313, - 0.5150306224822998, - 0.5535153150558472, - 0.5985715985298157, - 0.648970365524292, - 0.7033369541168213, - 0.7601884007453918, - 0.8179738521575928, - 0.8751171231269836, - 0.930059552192688, - 0.9813023209571838, - 1.0274478197097778, - 1.067237138748169, - 1.0995850563049316, - 1.123609185218811, - 1.1386542320251465, - 1.1443097591400146, - 1.1404213905334473, - 0.4484410881996155, - 0.465354859828949, - 0.49124497175216675, - 0.5254052877426147, - 0.566903829574585, - 0.6146087646484375, - 0.667218804359436, - 0.7232988476753235, - 0.7813192009925842, - 0.8396972417831421, - 0.896840512752533, - 0.9511903524398804, - 1.001264214515686, - 1.0456961393356323, - 1.0832743644714355, - 1.1129735708236694, - 1.133983850479126, - 1.1457319259643555, - 1.147897481918335, - 1.1404213905334473, - 0.4484410881996155, - 0.4676211476325989, - 0.4957157373428345, - 0.5319585800170898, - 0.575360894203186, - 0.624738872051239, - 0.678745687007904, - 0.735908031463623, - 0.7946668267250061, - 0.8534191250801086, - 0.9105623960494995, - 0.9645379781723022, - 1.0138734579086304, - 1.0572230815887451, - 1.0934044122695923, - 1.1214306354522705, - 1.1405370235443115, - 1.150202751159668, - 1.1501638889312744, - 1.1404213905334473, - 0.4484410881996155, - 0.4683203399181366, - 0.4970950484275818, - 0.5339803695678711, - 0.577970027923584, - 0.6278642416000366, - 0.682301938533783, - 0.7397982478141785, - 0.7987847924232483, - 0.8576526045799255, - 0.9147958755493164, - 0.9686559438705444, - 1.017763614654541, - 1.060779333114624, - 1.0965297222137451, - 1.1240397691726685, - 1.1425589323043823, - 1.1515820026397705, - 1.1508630514144897, - 1.1404213905334473, - 0.4484410881996155, - 0.4673766791820526, - 0.4952334463596344, - 0.5312516093254089, - 0.5744485855102539, - 0.6236461400985718, - 0.6775022149085999, - 0.7345478534698486, - 0.793226957321167, - 0.8519389033317566, - 0.9090821743011475, - 0.9630981087684631, - 1.0125131607055664, - 1.055979609489441, - 1.0923116207122803, - 1.1205183267593384, - 1.1398301124572754, - 1.1497204303741455, - 1.1499193906784058, - 1.1404213905334473, - 0.4484410881996155, - 0.4648923873901367, - 0.4903326630592346, - 0.5240679979324341, - 0.5651780962944031, - 0.6125416159629822, - 0.6648666262626648, - 0.7207258343696594, - 0.778595507144928, - 0.8368971347808838, - 0.8940404653549194, - 0.9484666585922241, - 0.998691201210022, - 1.0433440208435059, - 1.0812071561813354, - 1.1112477779388428, - 1.1326465606689453, - 1.144819736480713, - 1.1474350690841675, - 1.1404213905334473, - 0.4484410881996155, - 0.46113672852516174, - 0.4829237759113312, - 0.5132079720497131, - 0.5511631965637207, - 0.595754086971283, - 0.6457644104957581, - 0.6998299360275269, - 0.7564760446548462, - 0.8141573667526245, - 0.8713006973266602, - 0.9263471364974976, - 0.9777953028678894, - 1.0242418050765991, - 1.0644196271896362, - 1.0972329378128052, - 1.1217865943908691, - 1.1374107599258423, - 1.1436793804168701, - 1.1404213905334473, - 0.4484410881996155, - 0.45651665329933167, - 0.4738096296787262, - 0.4998483955860138, - 0.533922553062439, - 0.575102686882019, - 0.6222655773162842, - 0.6741247177124023, - 0.7292655110359192, - 0.7861838340759277, - 0.8433271050453186, - 0.8991366028785706, - 0.9520900845527649, - 1.00074303150177, - 1.043768286705017, - 1.0799922943115234, - 1.1084269285202026, - 1.1282966136932373, - 1.13905930519104, - 1.1404213905334473, - 0.4484410881996155, - 0.4515328109264374, - 0.4639779031276703, - 0.48543697595596313, - 0.5153245329856873, - 0.5528254508972168, - 0.596916675567627, - 0.6463956236839294, - 0.6999126076698303, - 0.7560077905654907, - 0.8131510615348816, - 0.8697837591171265, - 0.924360990524292, - 0.975394070148468, - 1.0214909315109253, - 1.061394214630127, - 1.0940155982971191, - 1.1184649467468262, - 1.1340755224227905, - 1.1404213905334473, - 0.4484410881996155, - 0.4467253088951111, - 0.45449402928352356, - 0.47153541445732117, - 0.4973844885826111, - 0.53133624792099, - 0.5724645853042603, - 0.6196475028991699, - 0.6715981960296631, - 0.7268993854522705, - 0.7840426564216614, - 0.8414692878723145, - 0.8976128697395325, - 0.9509419202804565, - 1.0000017881393433, - 1.0434541702270508, - 1.0801140069961548, - 1.1089810132980347, - 1.129267930984497, - 1.1404213905334473, - 0.4484410881996155, - 0.4426150918006897, - 0.4463857114315033, - 0.4596501886844635, - 0.482046514749527, - 0.5129639506340027, - 0.5515590310096741, - 0.5967790484428406, - 0.6473905444145203, - 0.7020128965377808, - 0.7591561675071716, - 0.8172616958618164, - 0.8747444152832031, - 0.9300364255905151, - 0.981629490852356, - 1.028116226196289, - 1.0682287216186523, - 1.1008727550506592, - 1.1251578330993652, - 1.1404213905334473, - 0.4484410881996155, - 0.4396475553512573, - 0.4405316114425659, - 0.451069176197052, - 0.4709727168083191, - 0.49969935417175293, - 0.5364655256271362, - 0.5802683234214783, - 0.6299129724502563, - 0.6840451955795288, - 0.7411884665489197, - 0.7997840642929077, - 0.8582336902618408, - 0.9149429202079773, - 0.9683648943901062, - 1.0170423984527588, - 1.059647798538208, - 1.0950186252593994, - 1.122190237045288, - 1.1404213905334473, - 0.4484410881996155, - 0.438144326210022, - 0.4375661313533783, - 0.4467223584651947, - 0.465363085269928, - 0.4929799735546112, - 0.5288196802139282, - 0.5719045400619507, - 0.6210594177246094, - 0.6749433279037476, - 0.7320866584777832, - 0.7909305095672607, - 0.8498699069023132, - 0.9072970747947693, - 0.9616454839706421, - 1.0114328861236572, - 1.0553009510040283, - 1.0920531749725342, - 1.1206870079040527, - 1.1404213905334473, - 0.4484410881996155, - 0.43826824426651, - 0.43781059980392456, - 0.44708070158958435, - 0.46582555770874023, - 0.4935339391231537, - 0.529449999332428, - 0.5725940465927124, - 0.621789276599884, - 0.675693690776825, - 0.7328370213508606, - 0.7916604280471802, - 0.850559413433075, - 0.907927393913269, - 0.9621994495391846, - 1.0118952989578247, - 1.055659294128418, - 1.0922975540161133, - 1.1208109855651855, - 1.1404213905334473, - 0.4484410881996155, - 0.44000592827796936, - 0.44123855233192444, - 0.45210540294647217, - 0.47230997681617737, - 0.5013011693954468, - 0.5382882356643677, - 0.5822621583938599, - 0.6320235133171082, - 0.6862149238586426, - 0.7433582544326782, - 0.8018946647644043, - 0.8602274656295776, - 0.916765570640564, - 0.9699667096138, - 1.0183796882629395, - 1.0606839656829834, - 1.0957255363464355, - 1.1225485801696777, - 1.1404213905334473, - 0.4484410881996155, - 0.4431690275669098, - 0.4474785029888153, - 0.46125197410583496, - 0.4841136634349823, - 0.5154399871826172, - 0.5543765425682068, - 0.5998611450195312, - 0.650653064250946, - 0.7053669095039368, - 0.7625101804733276, - 0.8205242156982422, - 0.877826452255249, - 0.9328539371490479, - 0.9841055870056152, - 1.0301834344863892, - 1.0698305368423462, - 1.1019655466079712, - 1.1257116794586182, - 1.1404213905334473, - 0.4484410881996155, - 0.4474148154258728, - 0.45585426688194275, - 0.47352924942970276, - 0.49995753169059753, - 0.5344183444976807, - 0.5759716033935547, - 0.6234838962554932, - 0.6756591796875, - 0.7310742139816284, - 0.7882174849510193, - 0.8455302715301514, - 0.9014492034912109, - 0.9544489979743958, - 1.0030838251113892, - 1.0460273027420044, - 1.0821077823638916, - 1.1103413105010986, - 1.1299574375152588, - 1.1404213905334473, - 0.4484410881996155, - 0.45228317379951477, - 0.4654581546783447, - 0.4876067340373993, - 0.5181245803833008, - 0.5561794638633728, - 0.6007331609725952, - 0.6505704522132874, - 0.7043319344520569, - 0.7605510354042053, - 0.8176943063735962, - 0.8742030262947083, - 0.9285358190536499, - 0.9792105555534363, - 1.024845004081726, - 1.0641943216323853, - 1.096185326576233, - 1.1199451684951782, - 1.1348258256912231, - 1.1404213905334473 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.08673769235610962, - -0.08565297722816467, - -0.08277702331542969, - -0.07818825542926788, - -0.07201187312602997, - -0.06441633403301239, - -0.055608831346035004, - -0.04582960903644562, - -0.0353454127907753, - -0.02444223128259182, - -0.013417474925518036, - -0.0025718659162521362, - 0.007798749953508377, - 0.017411496490240097, - 0.026004154235124588, - 0.03334234654903412, - 0.039225902408361435, - 0.043494340032339096, - 0.04603121057152748, - 0.04676733538508415, - -0.08673769235610962, - -0.10428640246391296, - -0.11953559517860413, - -0.13206931948661804, - -0.14154566824436188, - -0.14770618081092834, - -0.15038277208805084, - -0.1495024859905243, - -0.1450892984867096, - -0.13726356625556946, - -0.12623882293701172, - -0.11231574416160583, - -0.0958741307258606, - -0.07736244797706604, - -0.05728569254279137, - -0.03619144484400749, - -0.014655150473117828, - 0.006735766306519508, - 0.027397792786359787, - 0.04676733538508415, - -0.08673767745494843, - -0.12091948091983795, - -0.15234807133674622, - -0.18016614019870758, - -0.20361489057540894, - -0.22205469012260437, - -0.23498256504535675, - -0.24204586446285248, - -0.2430519461631775, - -0.23797334730625153, - -0.2269485890865326, - -0.21027840673923492, - -0.18841750919818878, - -0.16196225583553314, - -0.13163422048091888, - -0.09826067090034485, - -0.06275196373462677, - -0.02607670985162258, - 0.010764706879854202, - 0.04676734283566475, - -0.08673767745494843, - -0.1337497979402542, - -0.17765870690345764, - -0.21726670861244202, - -0.25149333477020264, - -0.27940502762794495, - -0.3002404570579529, - -0.3134312927722931, - -0.3186176121234894, - -0.3156580626964569, - -0.3046332895755768, - -0.2858440577983856, - -0.2598029375076294, - -0.22722017765045166, - -0.18898460268974304, - -0.14613912999629974, - -0.0998525321483612, - -0.051387347280979156, - -0.002065598964691162, - 0.04676734283566475, - -0.08673767745494843, - -0.141386941075325, - -0.19272468984127045, - -0.2393505573272705, - -0.2799926996231079, - -0.31354251503944397, - -0.33908483386039734, - -0.35592299699783325, - -0.3635976016521454, - -0.36189937591552734, - -0.3508746027946472, - -0.3308240473270416, - -0.30229464173316956, - -0.2660645544528961, - -0.22312206029891968, - -0.1746385097503662, - -0.1219363808631897, - -0.06645333021879196, - -0.009702753275632858, - 0.046767350286245346, - -0.08673767745494843, - -0.14300334453582764, - -0.1959134042263031, - -0.2440246045589447, - -0.2860245704650879, - -0.32076767086982727, - -0.3473062217235565, - -0.3649163246154785, - -0.373117595911026, - -0.37168630957603455, - -0.3606615364551544, - -0.34034404158592224, - -0.3112879693508148, - -0.2742859125137329, - -0.23034723103046417, - -0.1806703805923462, - -0.1266104280948639, - -0.06964203715324402, - -0.011319156736135483, - 0.046767350286245346, - -0.08673767745494843, - -0.1384238302707672, - -0.18687930703163147, - -0.23078233003616333, - -0.26893535256385803, - -0.30029764771461487, - -0.32401376962661743, - -0.339436799287796, - -0.34614598751068115, - -0.3439583480358124, - -0.33293357491493225, - -0.3133724331855774, - -0.2858084440231323, - -0.2509934604167938, - -0.20987720787525177, - -0.16358116269111633, - -0.11336815357208252, - -0.06060793995857239, - -0.006739642471075058, - 0.046767350286245346, - -0.08673767745494843, - -0.12814466655254364, - -0.16660135984420776, - -0.20105873048305511, - -0.23057690262794495, - -0.2543506324291229, - -0.27173149585723877, - -0.2822454571723938, - -0.2856055796146393, - -0.28172022104263306, - -0.27069544792175293, - -0.2528320550918579, - -0.2286171019077301, - -0.19871123135089874, - -0.16393019258975983, - -0.12522268295288086, - -0.0836445540189743, - -0.04033000022172928, - 0.0035395249724388123, - 0.04676734283566475, - -0.08673769235610962, - -0.11327975988388062, - -0.1372770071029663, - -0.15807482600212097, - -0.17510592937469482, - -0.18790574371814728, - -0.1961251199245453, - -0.19953984022140503, - -0.19805680215358734, - -0.19171643257141113, - -0.1806916743516922, - -0.16528326272964478, - -0.14591148495674133, - -0.12310479581356049, - -0.09748527407646179, - -0.06975170969963074, - -0.04066065326333046, - -0.011005641892552376, - 0.018404435366392136, - 0.04676734283566475, - -0.08673769235610962, - -0.09543994069099426, - -0.10208399593830109, - -0.10648860037326813, - -0.10853362083435059, - -0.1081632673740387, - -0.10538764297962189, - -0.1002824604511261, - -0.09298698604106903, - -0.08370020985603333, - -0.07267545163631439, - -0.06021343916654587, - -0.0466541089117527, - -0.03236730769276619, - -0.01774277724325657, - -0.003179393708705902, - 0.010925568640232086, - 0.024187367409467697, - 0.03624424710869789, - 0.04676733538508415, - -0.08673769235610962, - -0.07655845582485199, - -0.0648360401391983, - -0.05189019814133644, - -0.038074083626270294, - -0.023764556273818016, - -0.00935192871838808, - 0.004770653322339058, - 0.018217962235212326, - 0.0306231789290905, - 0.04164793714880943, - 0.05099150910973549, - 0.0583990104496479, - 0.0636684000492096, - 0.0666559487581253, - 0.06728014349937439, - 0.06552396714687347, - 0.06143532320857048, - 0.05512573942542076, - 0.046767327934503555, - -0.08673770725727081, - -0.05868137627840042, - -0.02956951968371868, - -0.00019622966647148132, - 0.028637275099754333, - 0.05614447221159935, - 0.08157505095005035, - 0.10423536598682404, - 0.12350723147392273, - 0.13886500895023346, - 0.1498897671699524, - 0.1562807708978653, - 0.15786372125148773, - 0.15459538996219635, - 0.14656497538089752, - 0.13399149477481842, - 0.11721792817115784, - 0.09670184552669525, - 0.07300281524658203, - 0.046767327934503555, - -0.08673770725727081, - -0.0437459796667099, - -0.00010612793266773224, - 0.042991477996110916, - 0.08437123894691467, - 0.12290441989898682, - 0.1575399488210678, - 0.1873331069946289, - 0.21147112548351288, - 0.22929559648036957, - 0.2403203696012497, - 0.24424467980861664, - 0.2409614473581314, - 0.2305602878332138, - 0.21332494914531708, - 0.18972548842430115, - 0.16040563583374023, - 0.1261652261018753, - 0.08793821930885315, - 0.04676732048392296, - -0.08673770725727081, - -0.033370740711688995, - 0.020361341536045074, - 0.07299289107322693, - 0.12308821082115173, - 0.16928087174892426, - 0.21031086146831512, - 0.24505899846553802, - 0.2725774347782135, - 0.2921154499053955, - 0.30314022302627563, - 0.30535098910331726, - 0.2986873686313629, - 0.2833312451839447, - 0.2597014307975769, - 0.2284424602985382, - 0.19040705263614655, - 0.14663270115852356, - 0.09831345081329346, - 0.04676732048392296, - -0.08673770725727081, - -0.028679993003606796, - 0.0296148881316185, - 0.08655683696269989, - 0.14059258997440338, - 0.19024813175201416, - 0.234169140458107, - 0.271157443523407, - 0.30020418763160706, - 0.3205169141292572, - 0.33154168725013733, - 0.3329777419567108, - 0.3247857987880707, - 0.3071895241737366, - 0.2806686758995056, - 0.24594680964946747, - 0.2039709985256195, - 0.15588624775409698, - 0.10300420224666595, - 0.04676732048392296, - -0.08673770725727081, - -0.030182022601366043, - 0.02665179967880249, - 0.08221349120140076, - 0.13498744368553162, - 0.1835341602563858, - 0.22652940452098846, - 0.2628004252910614, - 0.29135772585868835, - 0.3114224076271057, - 0.32244718074798584, - 0.3241312801837921, - 0.3164287805557251, - 0.29954975843429565, - 0.27395468950271606, - 0.2403416782617569, - 0.19962765276432037, - 0.15292315185070038, - 0.10150216519832611, - 0.04676732048392296, - -0.08673770725727081, - -0.03771410137414932, - 0.0117931067943573, - 0.060433488339185715, - 0.10688026249408722, - 0.14986643195152283, - 0.18821954727172852, - 0.22089335322380066, - 0.2469966560602188, - 0.2658173739910126, - 0.2768421471118927, - 0.27977022528648376, - 0.27452170848846436, - 0.2612399160861969, - 0.2402869611978531, - 0.2122344821691513, - 0.17784765362739563, - 0.1380644589662552, - 0.09397009015083313, - 0.04676732048392296, - -0.08673770725727081, - -0.050459980964660645, - -0.013350995257496834, - 0.023577045649290085, - 0.059316810220479965, - 0.09289340674877167, - 0.12339097261428833, - 0.1499776542186737, - 0.17192815244197845, - 0.18864378333091736, - 0.1996685415506363, - 0.20470169186592102, - 0.2036060094833374, - 0.19641131162643433, - 0.18331392109394073, - 0.16467104852199554, - 0.1409912109375, - 0.1129203587770462, - 0.0812242180109024, - 0.04676732048392296, - -0.08673769235610962, - -0.06703846901655197, - -0.04605574905872345, - -0.02436188980937004, - -0.002548644319176674, - 0.01878896728157997, - 0.03906892240047455, - 0.0577380545437336, - 0.07428707182407379, - 0.08826461434364319, - 0.09928937256336212, - 0.10706061124801636, - 0.111366406083107, - 0.11208926141262054, - 0.10920946300029755, - 0.10280558466911316, - 0.09305226802825928, - 0.08021561801433563, - 0.06464572250843048, - 0.046767327934503555, - -0.08673769235610962, - -0.08565299212932587, - -0.08277703821659088, - -0.07818828523159027, - -0.07201191782951355, - -0.06441637873649597, - -0.05560888350009918, - -0.045829661190509796, - -0.035345472395420074, - -0.024442292749881744, - -0.013417535461485386, - -0.0025719255208969116, - 0.0077986940741539, - 0.01741144433617592, - 0.026004109531641006, - 0.033342309296131134, - 0.039225876331329346, - 0.043494317680597305, - 0.046031203120946884, - 0.04676733538508415 - ], - "y": [ - -1.6480169296264648, - -1.6427541971206665, - -1.636384129524231, - -1.6290802955627441, - -1.621042013168335, - -1.6124885082244873, - -1.603653073310852, - -1.5947767496109009, - -1.586101770401001, - -1.5778645277023315, - -1.570289969444275, - -1.5635844469070435, - -1.5579310655593872, - -1.5534839630126953, - -1.5503644943237305, - -1.5486576557159424, - -1.5484100580215454, - -1.549628496170044, - -1.5522797107696533, - -1.5562913417816162, - -1.6480169296264648, - -1.6418920755386353, - -1.6346832513809204, - -1.626587152481079, - -1.6178245544433594, - -1.6086345911026, - -1.5992677211761475, - -1.589979648590088, - -1.5810236930847168, - -1.5726441144943237, - -1.565069556236267, - -1.5585064888000488, - -1.5531339645385742, - -1.5490986108779907, - -1.5465105772018433, - -1.5454401969909668, - -1.5459169149398804, - -1.5479276180267334, - -1.551417589187622, - -1.5562913417816162, - -1.6480169296264648, - -1.6416257619857788, - -1.6341580152511597, - -1.6258171796798706, - -1.6168309450149536, - -1.607444405555725, - -1.5979135036468506, - -1.5884982347488403, - -1.5794556140899658, - -1.5710320472717285, - -1.5634573698043823, - -1.5569382905960083, - -1.5516525506973267, - -1.5477443933486938, - -1.5453203916549683, - -1.5444467067718506, - -1.5451470613479614, - -1.5474023818969727, - -1.5511512756347656, - -1.5562913417816162, - -1.6480169296264648, - -1.6419843435287476, - -1.6348652839660645, - -1.6268539428710938, - -1.6181689500808716, - -1.6090470552444458, - -1.5997370481491089, - -1.590493083000183, - -1.5815671682357788, - -1.5732028484344482, - -1.565628170967102, - -1.5590498447418213, - -1.5536473989486694, - -1.5495679378509521, - -1.546923041343689, - -1.545784592628479, - -1.5461838245391846, - -1.5481096506118774, - -1.5515098571777344, - -1.5562913417816162, - -1.6480169296264648, - -1.6429288387298584, - -1.6367285251617432, - -1.6295850276947021, - -1.6216933727264404, - -1.6132687330245972, - -1.6045409440994263, - -1.595747947692871, - -1.587129831314087, - -1.5789214372634888, - -1.5713467597961426, - -1.5646125078201294, - -1.5589022636413574, - -1.5543718338012695, - -1.5511447191238403, - -1.5493090152740479, - -1.5489147901535034, - -1.5499728918075562, - -1.5524542331695557, - -1.5562913417816162, - -1.6480169296264648, - -1.6443568468093872, - -1.6395456790924072, - -1.6337144374847412, - -1.6270225048065186, - -1.6196520328521729, - -1.6118043661117554, - -1.6036934852600098, - -1.5955405235290527, - -1.5875680446624756, - -1.5799933671951294, - -1.5730232000350952, - -1.5668476819992065, - -1.5616352558135986, - -1.557528018951416, - -1.554638147354126, - -1.553044319152832, - -1.5527900457382202, - -1.553882360458374, - -1.5562913417816162, - -1.6480169296264648, - -1.6461137533187866, - -1.6430115699768066, - -1.6387947797775269, - -1.6335786581039429, - -1.6275053024291992, - -1.6207404136657715, - -1.6134685277938843, - -1.60588800907135, - -1.5982056856155396, - -1.590631127357483, - -1.5833708047866821, - -1.5766228437423706, - -1.5705713033676147, - -1.5653812885284424, - -1.5611943006515503, - -1.5581246614456177, - -1.5562559366226196, - -1.5556392669677734, - -1.5562913417816162, - -1.6480169296264648, - -1.648009181022644, - -1.646750569343567, - -1.644275426864624, - -1.6406514644622803, - -1.6359773874282837, - -1.630380630493164, - -1.624013900756836, - -1.6170510053634644, - -1.6096816062927246, - -1.602107048034668, - -1.5945336818695068, - -1.5871682167053223, - -1.5802115201950073, - -1.5738533735275269, - -1.5682671070098877, - -1.5636053085327148, - -1.5599949359893799, - -1.5575345754623413, - -1.5562913417816162, - -1.6480169296264648, - -1.6498374938964844, - -1.6503574848175049, - -1.6495625972747803, - -1.6474745273590088, - -1.6441501379013062, - -1.6396803855895996, - -1.634186863899231, - -1.6278196573257446, - -1.6207523345947266, - -1.6131776571273804, - -1.605302333831787, - -1.5973411798477173, - -1.5895112752914429, - -1.5820261240005493, - -1.5750901699066162, - -1.5688923597335815, - -1.5636018514633179, - -1.5593630075454712, - -1.5562913417816162, - -1.6480169296264648, - -1.6514009237289429, - -1.6534415483474731, - -1.6540831327438354, - -1.653308391571045, - -1.651138186454773, - -1.6476318836212158, - -1.6428849697113037, - -1.6370271444320679, - -1.6302179098129272, - -1.6226433515548706, - -1.6145098209381104, - -1.60603928565979, - -1.5974626541137695, - -1.5890141725540161, - -1.5809240341186523, - -1.5734130144119263, - -1.5666859149932861, - -1.5609263181686401, - -1.5562913417816162, - -1.6480169296264648, - -1.6525297164916992, - -1.6556683778762817, - -1.6573474407196045, - -1.6575207710266113, - -1.6561839580535889, - -1.65337336063385, - -1.6491656303405762, - -1.6436755657196045, - -1.6370528936386108, - -1.6294782161712646, - -1.621158242225647, - -1.6123199462890625, - -1.6032042503356934, - -1.594059944152832, - -1.5851365327835083, - -1.5766772031784058, - -1.5689128637313843, - -1.562055230140686, - -1.5562913417816162, - -1.6480169296264648, - -1.6531018018722534, - -1.656796932220459, - -1.6590014696121216, - -1.6596554517745972, - -1.6587409973144531, - -1.656282901763916, - -1.652348279953003, - -1.6470446586608887, - -1.6405164003372192, - -1.632941722869873, - -1.6245273351669312, - -1.6155025959014893, - -1.6061137914657593, - -1.5966169834136963, - -1.5872710943222046, - -1.5783312320709229, - -1.570041298866272, - -1.5626271963119507, - -1.5562913417816162, - -1.6480169296264648, - -1.65305495262146, - -1.6567045450210571, - -1.658866286277771, - -1.6594809293746948, - -1.658531904220581, - -1.6560449600219727, - -1.6520880460739136, - -1.6467691659927368, - -1.6402331590652466, - -1.63265860080719, - -1.6242518424987793, - -1.6152423620224, - -1.605875849723816, - -1.5964078903198242, - -1.5870965719223022, - -1.5781960487365723, - -1.5699490308761597, - -1.5625804662704468, - -1.5562913417816162, - -1.6480169296264648, - -1.652394413948059, - -1.655401587486267, - -1.6569563150405884, - -1.6570160388946533, - -1.6555794477462769, - -1.6526854038238525, - -1.648413062095642, - -1.6428790092468262, - -1.636233925819397, - -1.6286592483520508, - -1.6203616857528687, - -1.6115673780441284, - -1.6025162935256958, - -1.59345543384552, - -1.5846318006515503, - -1.5762860774993896, - -1.56864595413208, - -1.561919927597046, - -1.5562913417816162, - -1.6480169296264648, - -1.6511918306350708, - -1.6530290842056274, - -1.6534786224365234, - -1.652528166770935, - -1.6502035856246948, - -1.6465684175491333, - -1.6417217254638672, - -1.6357957124710083, - -1.6289520263671875, - -1.6213773488998413, - -1.6132783889770508, - -1.604875922203064, - -1.5963993072509766, - -1.588079571723938, - -1.5801438093185425, - -1.5728083848953247, - -1.5662734508514404, - -1.560717225074768, - -1.5562913417816162, - -1.6480169296264648, - -1.649577260017395, - -1.6498440504074097, - -1.6488100290298462, - -1.6465033292770386, - -1.6429868936538696, - -1.6383566856384277, - -1.6327389478683472, - -1.6262868642807007, - -1.6191765069961548, - -1.6116019487380981, - -1.6037695407867432, - -1.595893144607544, - -1.588187575340271, - -1.5808628797531128, - -1.574118971824646, - -1.5681397914886475, - -1.5630885362625122, - -1.5591027736663818, - -1.5562913417816162, - -1.6480169296264648, - -1.6477259397506714, - -1.6461918354034424, - -1.6434565782546997, - -1.639594554901123, - -1.6347113847732544, - -1.6289401054382324, - -1.6224381923675537, - -1.6153829097747803, - -1.6079668998718262, - -1.60039222240448, - -1.5928657054901123, - -1.5855923891067505, - -1.5787709951400757, - -1.5725873708724976, - -1.5672101974487305, - -1.562786340713501, - -1.5594362020492554, - -1.5572513341903687, - -1.5562913417816162, - -1.6480169296264648, - -1.6458382606506348, - -1.6424680948257446, - -1.6379982233047485, - -1.632550597190857, - -1.6262738704681396, - -1.6193392276763916, - -1.6119357347488403, - -1.6042654514312744, - -1.596537709236145, - -1.5889630317687988, - -1.5817482471466064, - -1.5750900506973267, - -1.5691701173782349, - -1.5641498565673828, - -1.5601662397384644, - -1.5573279857635498, - -1.5557124614715576, - -1.5553637742996216, - -1.5562913417816162, - -1.6480169296264648, - -1.6441189050674438, - -1.6390763521194458, - -1.6330264806747437, - -1.6261346340179443, - -1.6185885667800903, - -1.6105942726135254, - -1.602369785308838, - -1.5941393375396729, - -1.586127519607544, - -1.5785528421401978, - -1.5716220140457153, - -1.5655239820480347, - -1.5604251623153687, - -1.5564645528793335, - -1.5537502765655518, - -1.5523563623428345, - -1.5523207187652588, - -1.5536444187164307, - -1.5562913417816162, - -1.6480169296264648, - -1.6427541971206665, - -1.636384129524231, - -1.6290802955627441, - -1.621042013168335, - -1.6124885082244873, - -1.603653073310852, - -1.5947767496109009, - -1.586101770401001, - -1.5778645277023315, - -1.570289969444275, - -1.5635844469070435, - -1.5579310655593872, - -1.5534839630126953, - -1.5503644943237305, - -1.5486576557159424, - -1.5484100580215454, - -1.549628496170044, - -1.5522797107696533, - -1.5562913417816162 - ], - "z": [ - 0.47544893622398376, - 0.4799420237541199, - 0.4944998621940613, - 0.5187255144119263, - 0.551957905292511, - 0.5932907462120056, - 0.6415965557098389, - 0.6955575942993164, - 0.7537020444869995, - 0.8144437670707703, - 0.8761259913444519, - 0.9370661973953247, - 0.9956019520759583, - 1.050136685371399, - 1.0991828441619873, - 1.1414024829864502, - 1.1756439208984375, - 1.2009732723236084, - 1.2166996002197266, - 1.2223938703536987, - 0.47544893622398376, - 0.48316657543182373, - 0.5008610486984253, - 0.5280497074127197, - 0.5639909505844116, - 0.6077042818069458, - 0.6579974293708801, - 0.7134984731674194, - 0.7726935148239136, - 0.8339678049087524, - 0.8956500291824341, - 0.956057608127594, - 1.0135427713394165, - 1.066537618637085, - 1.1135963201522827, - 1.153435468673706, - 1.1849682331085205, - 1.2073345184326172, - 1.2199242115020752, - 1.2223938703536987, - 0.47544893622398376, - 0.4861067831516266, - 0.5066612958908081, - 0.5365517735481262, - 0.574962854385376, - 0.6208467483520508, - 0.6729520559310913, - 0.7298572659492493, - 0.7900102138519287, - 0.8517701625823975, - 0.9134523868560791, - 0.9733743667602539, - 1.0299016237258911, - 1.0814921855926514, - 1.1267387866973877, - 1.1644073724746704, - 1.1934702396392822, - 1.213134765625, - 1.2228643894195557, - 1.2223938703536987, - 0.47544893622398376, - 0.488444060087204, - 0.5112720131874084, - 0.5433102250099182, - 0.5836846828460693, - 0.6312940716743469, - 0.6848398447036743, - 0.742861270904541, - 0.8037757873535156, - 0.8659217357635498, - 0.9276039600372314, - 0.9871399402618408, - 1.0429056882858276, - 1.0933799743652344, - 1.1371861696243286, - 1.1731292009353638, - 1.2002286911010742, - 1.2177455425262451, - 1.2252016067504883, - 1.2223938703536987, - 0.47544893622398376, - 0.4899250566959381, - 0.5141936540603638, - 0.5475927591323853, - 0.5892113447189331, - 0.6379140615463257, - 0.6923725605010986, - 0.7511013150215149, - 0.8124983310699463, - 0.8748888969421387, - 0.9365711212158203, - 0.9958624839782715, - 1.0511456727981567, - 1.1009128093719482, - 1.1438060998916626, - 1.1786558628082275, - 1.2045111656188965, - 1.2206671237945557, - 1.2266826629638672, - 1.2223938703536987, - 0.47544893622398376, - 0.49038931727409363, - 0.5151095390319824, - 0.5489352941513062, - 0.5909438133239746, - 0.6399893760681152, - 0.6947339773178101, - 0.7536844611167908, - 0.8152327537536621, - 0.8776999711990356, - 0.9393821954727173, - 0.9985969066619873, - 1.0537288188934326, - 1.1032741069793701, - 1.1458814144134521, - 1.180388331413269, - 1.2058537006378174, - 1.2215830087661743, - 1.227146863937378, - 1.2223938703536987, - 0.47544893622398376, - 0.4897865653038025, - 0.5139204263687134, - 0.5471923351287842, - 0.5886944532394409, - 0.6372950077056885, - 0.6916681528091431, - 0.7503308057785034, - 0.8116827011108398, - 0.8740503787994385, - 0.9357326030731201, - 0.995046854019165, - 1.0503751039505005, - 1.1002082824707031, - 1.1431870460510254, - 1.1781389713287354, - 1.2041107416152954, - 1.2203938961029053, - 1.2265441417694092, - 1.2223938703536987, - 0.47544893622398376, - 0.48818206787109375, - 0.510755181312561, - 0.5425527095794678, - 0.5827070474624634, - 0.6301230788230896, - 0.6835073232650757, - 0.7414036989212036, - 0.8022328019142151, - 0.8643354773521423, - 0.926017701625824, - 0.9855969548225403, - 1.0414479970932007, - 1.0920474529266357, - 1.1360151767730713, - 1.1721515655517578, - 1.199471116065979, - 1.217228651046753, - 1.2249397039413452, - 1.2223938703536987, - 0.47544893622398376, - 0.4857497215270996, - 0.5059568881988525, - 0.5355192422866821, - 0.5736303329467773, - 0.6192506551742554, - 0.6711358428001404, - 0.7278705835342407, - 0.7879071831703186, - 0.8496081829071045, - 0.9112904071807861, - 0.9712713360786438, - 1.0279148817062378, - 1.0796760320663452, - 1.1251426935195923, - 1.1630748510360718, - 1.1924376487731934, - 1.2124303579330444, - 1.222507357597351, - 1.2223938703536987, - 0.47544893622398376, - 0.48275309801101685, - 0.5000453591346741, - 0.5268540978431702, - 0.5624479651451111, - 0.6058560609817505, - 0.65589439868927, - 0.7111979722976685, - 0.7702582478523254, - 0.8314642906188965, - 0.8931465148925781, - 0.9536224007606506, - 1.0112422704696655, - 1.06443452835083, - 1.1117480993270874, - 1.1518924236297607, - 1.1837725639343262, - 1.2065188884735107, - 1.2195106744766235, - 1.2223938703536987, - 0.47544893622398376, - 0.4795169532299042, - 0.4936613142490387, - 0.5174963474273682, - 0.5503716468811035, - 0.5913907289505005, - 0.6394345164299011, - 0.6931926012039185, - 0.7511985301971436, - 0.8118700981140137, - 0.8735523223876953, - 0.9345626831054688, - 0.9932369589805603, - 1.047974705696106, - 1.0972827672958374, - 1.139816164970398, - 1.1744147539138794, - 1.2001347541809082, - 1.2162744998931885, - 1.2223938703536987, - 0.47544893622398376, - 0.4763919413089752, - 0.487496554851532, - 0.5084599256515503, - 0.5387101769447327, - 0.5774221420288086, - 0.6235399842262268, - 0.6758056282997131, - 0.732793390750885, - 0.792948842048645, - 0.8546310663223267, - 0.9161575436592102, - 0.975849986076355, - 1.0320801734924316, - 1.0833141803741455, - 1.1281547546386719, - 1.1653783321380615, - 1.193969964981079, - 1.2131495475769043, - 1.2223938703536987, - 0.47544893622398376, - 0.47371673583984375, - 0.4822190999984741, - 0.500724196434021, - 0.5287271738052368, - 0.5654641389846802, - 0.6099331974983215, - 0.6609212160110474, - 0.7170373201370239, - 0.776750922203064, - 0.8384331464767456, - 0.9004014730453491, - 0.9609655737876892, - 1.0184733867645264, - 1.071356177330017, - 1.1181716918945312, - 1.1576426029205322, - 1.188692569732666, - 1.2104742527008057, - 1.2223938703536987, - 0.47544893622398376, - 0.4717811942100525, - 0.4784008264541626, - 0.4951273500919342, - 0.5215044021606445, - 0.5568125247955322, - 0.6000886559486389, - 0.6501522660255432, - 0.7056378126144409, - 0.7650317549705505, - 0.8267139792442322, - 0.8890019655227661, - 0.9501966238021851, - 1.0086288452148438, - 1.0627045631408691, - 1.110948920249939, - 1.152045726776123, - 1.1848742961883545, - 1.2085387706756592, - 1.2223938703536987, - 0.47544893622398376, - 0.4707950949668884, - 0.47645553946495056, - 0.4922759234905243, - 0.517824649810791, - 0.5524047613143921, - 0.5950731635093689, - 0.6446658372879028, - 0.6998301148414612, - 0.7590612173080444, - 0.8207433819770813, - 0.8831942677497864, - 0.9447102546691895, - 1.0036133527755737, - 1.058296799659729, - 1.1072691679000854, - 1.149194359779358, - 1.1829290390014648, - 1.2075526714324951, - 1.2223938703536987, - 0.47544893622398376, - 0.47086530923843384, - 0.4765940308570862, - 0.4924789369106293, - 0.5180866122245789, - 0.5527186393737793, - 0.5954302549362183, - 0.6450564861297607, - 0.7002435922622681, - 0.7594862580299377, - 0.8211684823036194, - 0.8836077451705933, - 0.9451008439064026, - 1.0039703845977783, - 1.0586106777191162, - 1.1075310707092285, - 1.149397373199463, - 1.1830675601959229, - 1.2076228857040405, - 1.2223938703536987, - 0.47544893622398376, - 0.47198420763015747, - 0.47880131006240845, - 0.49571436643600464, - 0.5222619771957397, - 0.5577199459075928, - 0.601121187210083, - 0.6512817740440369, - 0.7068334221839905, - 0.7662609219551086, - 0.8279431462287903, - 0.8901975750923157, - 0.9513261318206787, - 1.009661316871643, - 1.0636119842529297, - 1.1117064952850342, - 1.1526328325271606, - 1.1852747201919556, - 1.2087417840957642, - 1.2223938703536987, - 0.47544893622398376, - 0.4740305244922638, - 0.48283815383911133, - 0.5016316175460815, - 0.5298981666564941, - 0.5668668746948242, - 0.6115292906761169, - 0.6626671552658081, - 0.7188855409622192, - 0.7786509990692139, - 0.8403332233428955, - 0.9022496938705444, - 0.96271151304245, - 1.0200694799423218, - 1.0727589130401611, - 1.1193426847457886, - 1.1585500240325928, - 1.1893116235733032, - 1.2107881307601929, - 1.2223938703536987, - 0.47544893622398376, - 0.47678256034851074, - 0.48826712369918823, - 0.509589433670044, - 0.5401678085327148, - 0.5791682004928589, - 0.6255267262458801, - 0.6779788732528687, - 0.735093891620636, - 0.795313835144043, - 0.8569960594177246, - 0.9184580445289612, - 0.9780232310295105, - 1.034066915512085, - 1.0850602388381958, - 1.1296123266220093, - 1.1665079593658447, - 1.1947405338287354, - 1.2135400772094727, - 1.2223938703536987, - 0.47544893622398376, - 0.4799420237541199, - 0.49449989199638367, - 0.5187255144119263, - 0.551957905292511, - 0.5932907462120056, - 0.6415965557098389, - 0.6955575942993164, - 0.7537020444869995, - 0.814443826675415, - 0.8761260509490967, - 0.9370661973953247, - 0.9956019520759583, - 1.050136685371399, - 1.0991828441619873, - 1.1414024829864502, - 1.1756439208984375, - 1.2009732723236084, - 1.2166996002197266, - 1.2223938703536987 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.08951080590486526, - -0.08912963420152664, - -0.08774349093437195, - -0.08539019525051117, - -0.0821339413523674, - -0.07806354016065598, - -0.07329002767801285, - -0.06794361770153046, - -0.062170132994651794, - -0.056127071380615234, - -0.04997926950454712, - -0.04389442130923271, - -0.03803850710391998, - -0.032571256160736084, - -0.02764180861413479, - -0.023384619504213333, - -0.01991581916809082, - -0.017330024391412735, - -0.015697769820690155, - -0.015063583850860596, - -0.08951081335544586, - -0.06963685154914856, - -0.049289632588624954, - -0.02902417816221714, - -0.009393278509378433, - 0.009067583829164505, - 0.025854844599962234, - 0.04051060602068901, - 0.0526350699365139, - 0.061897534877061844, - 0.06804533302783966, - 0.07091078162193298, - 0.07041572034358978, - 0.06657363474369049, - 0.05948932096362114, - 0.04935604706406593, - 0.03645020350813866, - 0.021123837679624557, - 0.0037950128316879272, - -0.015063587576150894, - -0.08951081335544586, - -0.0522427000105381, - -0.01497579738497734, - 0.021273348480463028, - 0.05551595613360405, - 0.08681796491146088, - 0.11432555317878723, - 0.1372884064912796, - 0.15508010983467102, - 0.16721536219120026, - 0.17336316406726837, - 0.1733558177947998, - 0.16719351708889008, - 0.1550443321466446, - 0.1372397243976593, - 0.11426527798175812, - 0.08674773573875427, - 0.05543767288327217, - 0.021189164370298386, - -0.015063595026731491, - -0.08951082080602646, - -0.03883211687207222, - 0.01147957518696785, - 0.06005187705159187, - 0.10555985569953918, - 0.1467621624469757, - 0.18253494799137115, - 0.21190237998962402, - 0.23406344652175903, - 0.2484135627746582, - 0.2545613646507263, - 0.2523391544818878, - 0.2418074905872345, - 0.2232537567615509, - 0.19718393683433533, - 0.16430917382240295, - 0.12552626430988312, - 0.08189304172992706, - 0.03459974750876427, - -0.01506359875202179, - -0.08951082080602646, - -0.03085833415389061, - 0.027209635823965073, - 0.08310914039611816, - 0.13531538844108582, - 0.1824043244123459, - 0.22309145331382751, - 0.2562670111656189, - 0.2810260057449341, - 0.2966930568218231, - 0.30284085869789124, - 0.29930171370506287, - 0.28617212176322937, - 0.26381027698516846, - 0.23282605409622192, - 0.19406472146511078, - 0.1485835313796997, - 0.09762310981750488, - 0.04257353022694588, - -0.01506359875202179, - -0.08951082080602646, - -0.029185451567173004, - 0.030509766191244125, - 0.08794650435447693, - 0.14155805110931396, - 0.18988196551799774, - 0.23160013556480408, - 0.2655746042728424, - 0.29087865352630615, - 0.3068220317363739, - 0.312969833612442, - 0.30915436148643494, - 0.2954797148704529, - 0.272318959236145, - 0.24030372500419617, - 0.20030736923217773, - 0.15342089533805847, - 0.10092324018478394, - 0.044246409088373184, - -0.01506359875202179, - -0.08951082080602646, - -0.03399473428726196, - 0.021022390574216843, - 0.07403980195522308, - 0.12361137568950653, - 0.1683848649263382, - 0.20713898539543152, - 0.23881667852401733, - 0.2625538110733032, - 0.27770283818244934, - 0.28385064005851746, - 0.280829519033432, - 0.2687217891216278, - 0.24785780906677246, - 0.21880662441253662, - 0.1823607087135315, - 0.13951419293880463, - 0.09143586456775665, - 0.039437126368284225, - -0.01506359875202179, - -0.08951081335544586, - -0.044765032827854156, - -0.0002244226634502411, - 0.04289603605866432, - 0.08342017233371735, - 0.12024252116680145, - 0.152358740568161, - 0.17889276146888733, - 0.19912078976631165, - 0.21249103546142578, - 0.2186388373374939, - 0.21739649772644043, - 0.2087978720664978, - 0.19307753443717957, - 0.17066429555416107, - 0.1421695053577423, - 0.10837042331695557, - 0.07018904387950897, - 0.028666827827692032, - -0.015063595026731491, - -0.08951081335544586, - -0.06032921373844147, - -0.030928246676921844, - -0.0021098963916301727, - 0.025339756160974503, - 0.05067193880677223, - 0.07319565117359161, - 0.0922965407371521, - 0.10745356976985931, - 0.11825327575206757, - 0.12440107762813568, - 0.1257292777299881, - 0.12220165133476257, - 0.11391443014144897, - 0.10109367966651917, - 0.08408908545970917, - 0.06336447596549988, - 0.03948521986603737, - 0.013102646917104721, - -0.015063591301441193, - -0.08951081335544586, - -0.07900065928697586, - -0.06776183843612671, - -0.05610089376568794, - -0.04433593153953552, - -0.03278786689043045, - -0.021771684288978577, - -0.011587880551815033, - -0.002514258027076721, - 0.0052016861736774445, - 0.01134948804974556, - 0.01576145365834236, - 0.018317226320505142, - 0.01894708350300789, - 0.017633873969316483, - 0.014413390308618546, - 0.009373482316732407, - 0.002651635557413101, - -0.005568794906139374, - -0.015063587576150894, - -0.08951079845428467, - -0.09875603020191193, - -0.10673369467258453, - -0.11322621256113052, - -0.11805647611618042, - -0.12109270691871643, - -0.12225212156772614, - -0.1215030699968338, - -0.11886599659919739, - -0.1144128143787384, - -0.10826500505208969, - -0.10059027373790741, - -0.09159795939922333, - -0.08153335005044937, - -0.07067099213600159, - -0.05930715426802635, - -0.047751836478710175, - -0.03632023185491562, - -0.02532416395843029, - -0.015063580125570297, - -0.08951079845428467, - -0.11745451390743256, - -0.14362064003944397, - -0.1672954112291336, - -0.18783308565616608, - -0.2046733796596527, - -0.21735700964927673, - -0.225537970662117, - -0.22899308800697327, - -0.22762812674045563, - -0.2214803248643875, - -0.21071738004684448, - -0.19563286006450653, - -0.17663826048374176, - -0.15425167977809906, - -0.1290837675333023, - -0.10182103514671326, - -0.07320716977119446, - -0.04402265325188637, - -0.015063576400279999, - -0.08951079845428467, - -0.13306985795497894, - -0.1744253784418106, - -0.21244926750659943, - -0.2461043894290924, - -0.2744726538658142, - -0.2967802882194519, - -0.3124188184738159, - -0.3209616243839264, - -0.32217565178871155, - -0.31602784991264343, - -0.3026859164237976, - -0.28251370787620544, - -0.25606152415275574, - -0.22405095398426056, - -0.18735508620738983, - -0.14697489142417908, - -0.1040119081735611, - -0.059637993574142456, - -0.0150635726749897, - -0.08951079100370407, - -0.14390988647937775, - -0.1958097517490387, - -0.24379469454288483, - -0.28655582666397095, - -0.32292667031288147, - -0.35191524028778076, - -0.3727307617664337, - -0.3848053216934204, - -0.387809693813324, - -0.38166189193725586, - -0.3665296137332916, - -0.34282565116882324, - -0.3111964464187622, - -0.272504985332489, - -0.22780650854110718, - -0.17832030355930328, - -0.12539628148078918, - -0.07047802954912186, - -0.015063568949699402, - -0.08951079100370407, - -0.14879991114139557, - -0.20545640587806702, - -0.2579348683357239, - -0.3048037886619568, - -0.344784677028656, - -0.3767870366573334, - -0.3999378979206085, - -0.4136056900024414, - -0.4174177348613739, - -0.4112699329853058, - -0.3953299820423126, - -0.37003278732299805, - -0.3360682725906372, - -0.29436299204826355, - -0.2460544854402542, - -0.19246047735214233, - -0.1350429356098175, - -0.07536804676055908, - -0.015063568949699402, - -0.08951079100370407, - -0.147210031747818, - -0.20232002437114716, - -0.2533375322818756, - -0.29887086153030396, - -0.33767807483673096, - -0.3687005639076233, - -0.39109212160110474, - -0.4042419493198395, - -0.4077913165092468, - -0.4016435146331787, - -0.3859662413597107, - -0.36118701100349426, - -0.3279817998409271, - -0.2872563898563385, - -0.24012155830860138, - -0.18786312639713287, - -0.13190656900405884, - -0.0737781673669815, - -0.015063568949699402, - -0.08951079100370407, - -0.1393125206232071, - -0.1867404282093048, - -0.23050080239772797, - -0.2693999707698822, - -0.3023768663406372, - -0.32853198051452637, - -0.34715187549591064, - -0.35772860050201416, - -0.359973669052124, - -0.3538258671760559, - -0.3394528925418854, - -0.31724676489830017, - -0.2878132462501526, - -0.25195518136024475, - -0.21065065264701843, - -0.16502642631530762, - -0.11632697284221649, - -0.0658806636929512, - -0.015063568949699402, - -0.08951079845428467, - -0.1259632110595703, - -0.1604059338569641, - -0.19189944863319397, - -0.21958471834659576, - -0.2427065372467041, - -0.2606342136859894, - -0.2728787362575531, - -0.27910611033439636, - -0.2791464328765869, - -0.2729986310005188, - -0.2608304023742676, - -0.24297362565994263, - -0.2199154645204544, - -0.19228485226631165, - -0.1608354151248932, - -0.12642507255077362, - -0.0899924635887146, - -0.052531346678733826, - -0.0150635726749897, - -0.08951079845428467, - -0.1086086854338646, - -0.12617026269435883, - -0.14171651005744934, - -0.15482334792613983, - -0.1651332825422287, - -0.17236505448818207, - -0.17632143199443817, - -0.17689447104930878, - -0.17406854033470154, - -0.16792073845863342, - -0.1586187481880188, - -0.1464163213968277, - -0.1316462904214859, - -0.11471155285835266, - -0.09607404470443726, - -0.0762421265244484, - -0.05575679615139961, - -0.03517682105302811, - -0.015063580125570297, - -0.08951080590486526, - -0.08912962675094604, - -0.08774347603321075, - -0.08539016544818878, - -0.08213390409946442, - -0.0780634880065918, - -0.07328997552394867, - -0.06794355809688568, - -0.06217007339000702, - -0.05612700805068016, - -0.049979206174612045, - -0.04389435797929764, - -0.03803844749927521, - -0.032571204006671906, - -0.027641762048006058, - -0.0233845803886652, - -0.019915789365768433, - -0.017330002039670944, - -0.01569775864481926, - -0.015063583850860596 - ], - "y": [ - -1.6835170984268188, - -1.6866779327392578, - -1.6885639429092407, - -1.6891236305236816, - -1.688341736793518, - -1.6862397193908691, - -1.6828746795654297, - -1.678338646888733, - -1.6727551221847534, - -1.6662766933441162, - -1.6590797901153564, - -1.6513608694076538, - -1.643330454826355, - -1.6352075338363647, - -1.6272138357162476, - -1.6195673942565918, - -1.6124765872955322, - -1.6061348915100098, - -1.6007155179977417, - -1.596366047859192, - -1.6835170984268188, - -1.6873297691345215, - -1.6898497343063354, - -1.6910083293914795, - -1.6907739639282227, - -1.6891529560089111, - -1.6861897706985474, - -1.6819648742675781, - -1.6765937805175781, - -1.6702228784561157, - -1.6630260944366455, - -1.6551995277404785, - -1.6469566822052002, - -1.6385226249694824, - -1.630127191543579, - -1.6219995021820068, - -1.6143611669540405, - -1.6074206829071045, - -1.6013672351837158, - -1.596366047859192, - -1.6835170984268188, - -1.6875039339065552, - -1.6901932954788208, - -1.6915119886398315, - -1.691424012184143, - -1.6899317502975464, - -1.6870757341384888, - -1.6829341650009155, - -1.6776198148727417, - -1.671277642250061, - -1.6640808582305908, - -1.6562254428863525, - -1.6479259729385376, - -1.6394087076187134, - -1.6309058666229248, - -1.6226495504379272, - -1.6148649454116821, - -1.6077643632888794, - -1.601541519165039, - -1.596366047859192, - -1.6835170984268188, - -1.6871817111968994, - -1.689557671546936, - -1.6905802488327026, - -1.6902215480804443, - -1.6884913444519043, - -1.6854368448257446, - -1.6811413764953613, - -1.6757220029830933, - -1.669326663017273, - -1.6621297597885132, - -1.654327630996704, - -1.6461331844329834, - -1.6377696990966797, - -1.6294655799865723, - -1.6214470863342285, - -1.6139332056045532, - -1.6071287393569946, - -1.6012191772460938, - -1.596366047859192, - -1.6835170984268188, - -1.686397910118103, - -1.6880115270614624, - -1.6883139610290527, - -1.6872968673706055, - -1.684988021850586, - -1.6814504861831665, - -1.6767807006835938, - -1.671105980873108, - -1.664581298828125, - -1.6573843955993652, - -1.6497117280960083, - -1.6417725086212158, - -1.6337834596633911, - -1.625962257385254, - -1.6185224056243896, - -1.6116669178009033, - -1.605582594871521, - -1.600435495376587, - -1.596366047859192, - -1.6835170984268188, - -1.6852376461029053, - -1.6857225894927979, - -1.6849586963653564, - -1.682966947555542, - -1.6798014640808105, - -1.675548791885376, - -1.6703248023986816, - -1.6642720699310303, - -1.6575556993484497, - -1.65035879611969, - -1.6428778171539307, - -1.6353166103363037, - -1.627881646156311, - -1.6207756996154785, - -1.6141924858093262, - -1.608311653137207, - -1.603293538093567, - -1.5992751121520996, - -1.596366047859192, - -1.6835170984268188, - -1.6838264465332031, - -1.6829386949539185, - -1.6808780431747437, - -1.6777008771896362, - -1.6734936237335205, - -1.6683712005615234, - -1.6624733209609985, - -1.6559607982635498, - -1.6490113735198975, - -1.6418144702911377, - -1.6345664262771606, - -1.6274651288986206, - -1.6207040548324585, - -1.6144678592681885, - -1.6089264154434204, - -1.6042309999465942, - -1.6005096435546875, - -1.597864031791687, - -1.596366047859192, - -1.6835170984268188, - -1.6823173761367798, - -1.6799616813659668, - -1.6765143871307373, - -1.6720694303512573, - -1.666748046875, - -1.6606955528259277, - -1.6540769338607788, - -1.6470727920532227, - -1.6398741006851196, - -1.6326771974563599, - -1.6256784200668335, - -1.6190687417984009, - -1.6130285263061523, - -1.607722282409668, - -1.6032949686050415, - -1.5998672246932983, - -1.5975326299667358, - -1.5963548421859741, - -1.596366047859192, - -1.6835170984268188, - -1.6808738708496094, - -1.6771140098571777, - -1.6723402738571167, - -1.6666827201843262, - -1.660295844078064, - -1.6533536911010742, - -1.6460456848144531, - -1.6385711431503296, - -1.631134033203125, - -1.6239371299743652, - -1.61717689037323, - -1.6110374927520752, - -1.6056865453720093, - -1.6012699604034424, - -1.5979083776474, - -1.5956932306289673, - -1.5946850776672363, - -1.5949113368988037, - -1.596366047859192, - -1.6835170984268188, - -1.679652452468872, - -1.6747044324874878, - -1.6688083410263062, - -1.662124752998352, - -1.6548360586166382, - -1.6471410989761353, - -1.6392496824264526, - -1.6313772201538086, - -1.623738408088684, - -1.6165415048599243, - -1.609982967376709, - -1.6042414903640747, - -1.5994739532470703, - -1.5958101749420166, - -1.5933502912521362, - -1.5921611785888672, - -1.5922755002975464, - -1.5936899185180664, - -1.596366047859192, - -1.6835170984268188, - -1.6787853240966797, - -1.6729940176010132, - -1.6663011312484741, - -1.6588891744613647, - -1.6509603261947632, - -1.6427310705184937, - -1.6344256401062012, - -1.6262706518173218, - -1.6184885501861572, - -1.6112916469573975, - -1.6048762798309326, - -1.5994174480438232, - -1.5950639247894287, - -1.5919345617294312, - -1.590114712715149, - -1.5896539688110352, - -1.5905649662017822, - -1.5928229093551636, - -1.596366047859192, - -1.6835170984268188, - -1.6783666610717773, - -1.6721680164337158, - -1.6650903224945068, - -1.6573266983032227, - -1.6490888595581055, - -1.6406015157699585, - -1.6320960521697998, - -1.6238046884536743, - -1.6159534454345703, - -1.6087565422058105, - -1.6024103164672852, - -1.5970878601074219, - -1.5929343700408936, - -1.5900629758834839, - -1.5885522365570068, - -1.5884432792663574, - -1.5897390842437744, - -1.5924042463302612, - -1.596366047859192, - -1.6835170984268188, - -1.6784416437149048, - -1.672316074371338, - -1.6653074026107788, - -1.6576067209243774, - -1.6494241952896118, - -1.6409831047058105, - -1.6325135231018066, - -1.624246597290039, - -1.6164077520370483, - -1.6092109680175781, - -1.6028523445129395, - -1.5975053310394287, - -1.5933159589767456, - -1.5903984308242798, - -1.5888322591781616, - -1.5886602401733398, - -1.589887022972107, - -1.5924792289733887, - -1.596366047859192, - -1.6835170984268188, - -1.679002285003662, - -1.67342209815979, - -1.6669285297393799, - -1.6596988439559937, - -1.6519302129745483, - -1.6438345909118652, - -1.635632872581482, - -1.6275485754013062, - -1.6198023557662964, - -1.6126054525375366, - -1.606154203414917, - -1.600624680519104, - -1.5961675643920898, - -1.5929044485092163, - -1.5909243822097778, - -1.590281367301941, - -1.590993046760559, - -1.593039870262146, - -1.596366047859192, - -1.6835170984268188, - -1.6799877882003784, - -1.6753661632537842, - -1.6697781085968018, - -1.6633763313293457, - -1.6563352346420288, - -1.648846983909607, - -1.6411157846450806, - -1.6333526372909546, - -1.6257691383361816, - -1.6185723543167114, - -1.611958384513855, - -1.6061077117919922, - -1.601179838180542, - -1.5973094701766968, - -1.5946018695831299, - -1.5931310653686523, - -1.5929371118545532, - -1.5940253734588623, - -1.596366047859192, - -1.6835170984268188, - -1.6812913417816162, - -1.677937626838684, - -1.6735475063323975, - -1.6682406663894653, - -1.662161946296692, - -1.6554770469665527, - -1.64836847782135, - -1.641029953956604, - -1.6336617469787598, - -1.6264649629592896, - -1.6196355819702148, - -1.6133602857589722, - -1.6078099012374878, - -1.6031360626220703, - -1.5994662046432495, - -1.596900463104248, - -1.5955085754394531, - -1.5953289270401, - -1.596366047859192, - -1.6835170984268188, - -1.6827716827392578, - -1.6808578968048096, - -1.677828073501587, - -1.6737648248672485, - -1.668778896331787, - -1.6630064249038696, - -1.6566047668457031, - -1.6497485637664795, - -1.642624855041504, - -1.6354279518127441, - -1.6283541917800903, - -1.6215965747833252, - -1.6153392791748047, - -1.6097530126571655, - -1.6049903631210327, - -1.6011810302734375, - -1.5984289646148682, - -1.5968091487884521, - -1.596366047859192, - -1.6835170984268188, - -1.6842683553695679, - -1.6838104724884033, - -1.682155966758728, - -1.6793500185012817, - -1.6754690408706665, - -1.670619010925293, - -1.664932131767273, - -1.6585636138916016, - -1.6516871452331543, - -1.6444902420043945, - -1.6371692419052124, - -1.629923939704895, - -1.622951865196228, - -1.6164432764053345, - -1.610575556755066, - -1.6055089235305786, - -1.601381540298462, - -1.5983059406280518, - -1.596366047859192, - -1.6835170984268188, - -1.6856192350387573, - -1.686475396156311, - -1.6860623359680176, - -1.6843911409378052, - -1.6815074682235718, - -1.677489995956421, - -1.6724482774734497, - -1.6665198802947998, - -1.659866452217102, - -1.6526696681976318, - -1.6451255083084106, - -1.6374400854110718, - -1.629822850227356, - -1.6224815845489502, - -1.6156166791915894, - -1.6094151735305786, - -1.6040464639663696, - -1.5996568202972412, - -1.596366047859192, - -1.6835170984268188, - -1.6866779327392578, - -1.6885639429092407, - -1.6891236305236816, - -1.688341736793518, - -1.6862397193908691, - -1.6828746795654297, - -1.678338646888733, - -1.6727551221847534, - -1.6662766933441162, - -1.6590797901153564, - -1.6513608694076538, - -1.643330454826355, - -1.6352075338363647, - -1.6272138357162476, - -1.6195673942565918, - -1.6124765872955322, - -1.6061348915100098, - -1.6007155179977417, - -1.596366047859192 - ], - "z": [ - 0.500457763671875, - 0.5062578916549683, - 0.5226453542709351, - 0.5491732358932495, - 0.5851178765296936, - 0.6294987201690674, - 0.6811053156852722, - 0.7385298609733582, - 0.8002060055732727, - 0.8644514083862305, - 0.9295135736465454, - 0.9936177730560303, - 1.0550155639648438, - 1.1120319366455078, - 1.163111686706543, - 1.2068616151809692, - 1.2420883178710938, - 1.2678308486938477, - 1.2833869457244873, - 1.288332462310791, - 0.500457763671875, - 0.5044881105422974, - 0.5191540718078613, - 0.5440556406974792, - 0.5785135626792908, - 0.621587872505188, - 0.6721037030220032, - 0.7286829948425293, - 0.7897825241088867, - 0.853735625743866, - 0.9187977910041809, - 0.9831943511962891, - 1.0451686382293701, - 1.1030302047729492, - 1.1552008390426636, - 1.2002573013305664, - 1.2369706630706787, - 1.2643394470214844, - 1.2816171646118164, - 1.288332462310791, - 0.500457763671875, - 0.5028637647628784, - 0.5159497261047363, - 0.5393587350845337, - 0.5724520683288574, - 0.6143273115158081, - 0.6638420224189758, - 0.7196455597877502, - 0.780215859413147, - 0.8439006805419922, - 0.9089629054069519, - 0.9736276865005493, - 1.0361312627792358, - 1.0947685241699219, - 1.1479402780532837, - 1.1941958665847778, - 1.232273817062378, - 1.2611351013183594, - 1.2799928188323975, - 1.288332462310791, - 0.500457763671875, - 0.5015609264373779, - 0.5133795738220215, - 0.5355913639068604, - 0.5675903558731079, - 0.6085038185119629, - 0.6572155356407166, - 0.7123969197273254, - 0.7725427150726318, - 0.8360123634338379, - 0.9010745286941528, - 0.9659545421600342, - 1.0288825035095215, - 1.0881421566009521, - 1.1421167850494385, - 1.1893341541290283, - 1.2285064458847046, - 1.258565068244934, - 1.2786900997161865, - 1.288332462310791, - 0.500457763671875, - 0.5007207989692688, - 0.511722207069397, - 0.533161997795105, - 0.5644552707672119, - 0.6047483682632446, - 0.6529423594474792, - 0.7077224850654602, - 0.767594575881958, - 0.830925464630127, - 0.8959876298904419, - 0.9610064029693604, - 1.0242080688476562, - 1.0838689804077148, - 1.1383613348007202, - 1.1861990690231323, - 1.2260770797729492, - 1.2569077014923096, - 1.2778499126434326, - 1.288332462310791, - 0.500457763671875, - 0.500434398651123, - 0.511157214641571, - 0.5323337316513062, - 0.5633864402770996, - 0.603468120098114, - 0.6514855623245239, - 0.7061288952827454, - 0.7659076452255249, - 0.8291912078857422, - 0.8942534327507019, - 0.9593194723129272, - 1.0226144790649414, - 1.0824121236801147, - 1.1370810270309448, - 1.1851301193237305, - 1.2252488136291504, - 1.2563426494598389, - 1.277563452720642, - 1.288332462310791, - 0.500457763671875, - 0.5007327198982239, - 0.5117457509040833, - 0.5331964492797852, - 0.5644997358322144, - 0.6048016548156738, - 0.653002917766571, - 0.7077887654304504, - 0.7676647305488586, - 0.8309975862503052, - 0.8960597515106201, - 0.961076557636261, - 1.0242743492126465, - 1.0839295387268066, - 1.1384146213531494, - 1.1862435340881348, - 1.2261115312576294, - 1.256931185722351, - 1.2778618335723877, - 1.288332462310791, - 0.500457763671875, - 0.501583456993103, - 0.5134240388870239, - 0.5356565713882446, - 0.5676745176315308, - 0.6086045503616333, - 0.6573301553726196, - 0.7125222682952881, - 0.7726754546165466, - 0.8361487984657288, - 0.9012110233306885, - 0.9660872220993042, - 1.029007911682129, - 1.0882567167282104, - 1.1422173976898193, - 1.1894183158874512, - 1.2285716533660889, - 1.2586095333099365, - 1.278712511062622, - 1.288332462310791, - 0.500457763671875, - 0.5028945207595825, - 0.5160102844238281, - 0.539447546005249, - 0.5725667476654053, - 0.6144646406173706, - 0.6639982461929321, - 0.7198164463043213, - 0.7803968191146851, - 0.8440867066383362, - 0.9091488718986511, - 0.9738085865974426, - 1.036302089691162, - 1.094924807548523, - 1.1480774879455566, - 1.1943105459213257, - 1.2323625087738037, - 1.2611957788467407, - 1.2800235748291016, - 1.288332462310791, - 0.500457763671875, - 0.5045236349105835, - 0.519224226474762, - 0.5441584587097168, - 0.5786463022232056, - 0.6217468976974487, - 0.6722846031188965, - 0.7288808822631836, - 0.7899920344352722, - 0.8539509773254395, - 0.9190131425857544, - 0.9834038019180298, - 1.0453665256500244, - 1.1032111644744873, - 1.1553598642349243, - 1.200390100479126, - 1.237073540687561, - 1.2644096612930298, - 1.2816526889801025, - 1.288332462310791, - 0.500457763671875, - 0.5062944889068604, - 0.5227175354957581, - 0.549278974533081, - 0.5852543115615845, - 0.6296621561050415, - 0.6812912821769714, - 0.7387332916259766, - 0.8004213571548462, - 0.8646727800369263, - 0.9297349452972412, - 0.9938331842422485, - 1.0552189350128174, - 1.112217903137207, - 1.163275122642517, - 1.2069981098175049, - 1.2421940565109253, - 1.2679029703140259, - 1.2834235429763794, - 1.288332462310791, - 0.500457763671875, - 0.508014976978302, - 0.5261116623878479, - 0.5542541742324829, - 0.5916747450828552, - 0.6373528242111206, - 0.6900423169136047, - 0.7483060359954834, - 0.8105546236038208, - 0.8750902414321899, - 0.9401524066925049, - 1.0039664506912231, - 1.0647916793823242, - 1.1209688186645508, - 1.1709657907485962, - 1.2134184837341309, - 1.2471692562103271, - 1.2712970972061157, - 1.2851440906524658, - 1.288332462310791, - 0.500457763671875, - 0.5094988346099854, - 0.5290387868881226, - 0.5585447549819946, - 0.5972118377685547, - 0.6439853310585022, - 0.6975893378257751, - 0.7565616369247437, - 0.819293737411499, - 0.8840743899345398, - 0.9491365551948547, - 1.0127055644989014, - 1.0730472803115845, - 1.1285159587860107, - 1.177598237991333, - 1.218955636024475, - 1.2514598369598389, - 1.2742242813110352, - 1.2866278886795044, - 1.288332462310791, - 0.500457763671875, - 0.5105850696563721, - 0.531181812286377, - 0.5616859793663025, - 0.601265549659729, - 0.6488410234451294, - 0.7031145095825195, - 0.7626056671142578, - 0.8256916403770447, - 0.8906517028808594, - 0.9557138681411743, - 1.0191034078598022, - 1.0790913105010986, - 1.1340410709381104, - 1.182453989982605, - 1.2230093479156494, - 1.254601001739502, - 1.2763671875, - 1.2877142429351807, - 1.288332462310791, - 0.500457763671875, - 0.5111562013626099, - 0.5323083400726318, - 0.5633373260498047, - 0.6033966541290283, - 0.6513936519622803, - 0.7060191035270691, - 0.7657829523086548, - 0.8290550708770752, - 0.8941094279289246, - 0.9591715931892395, - 1.0224668979644775, - 1.0822685956954956, - 1.1369457244873047, - 1.1850066184997559, - 1.2251404523849487, - 1.256252408027649, - 1.2774938344955444, - 1.288285255432129, - 1.288332462310791, - 0.500457763671875, - 0.5111501216888428, - 0.5322964191436768, - 0.5633198022842407, - 0.6033741235733032, - 0.651366651058197, - 0.7059884071350098, - 0.7657493948936462, - 0.8290194869041443, - 0.8940728902816772, - 0.9591350555419922, - 1.0224312543869019, - 1.0822349786758423, - 1.1369149684906006, - 1.1849796772003174, - 1.2251179218292236, - 1.256234884262085, - 1.2774819135665894, - 1.2882792949676514, - 1.288332462310791, - 0.500457763671875, - 0.5105676651000977, - 0.5311473608016968, - 0.5616354942321777, - 0.6012004017829895, - 0.6487629413604736, - 0.7030256986618042, - 0.7625085115432739, - 0.8255888223648071, - 0.8905459642410278, - 0.9556081295013428, - 1.01900053024292, - 1.0789941549301147, - 1.133952260017395, - 1.1823759078979492, - 1.2229442596435547, - 1.254550576210022, - 1.2763327360153198, - 1.2876967191696167, - 1.288332462310791, - 0.500457763671875, - 0.5094717741012573, - 0.5289855599403381, - 0.5584667325019836, - 0.5971111059188843, - 0.643864631652832, - 0.6974520087242126, - 0.7564114332199097, - 0.8191347718238831, - 0.8839109539985657, - 0.9489731192588806, - 1.0125465393066406, - 1.0728970766067505, - 1.1283786296844482, - 1.1774775981903076, - 1.2188549041748047, - 1.251381754875183, - 1.274170994758606, - 1.2866008281707764, - 1.288332462310791, - 0.500457763671875, - 0.5079814195632935, - 0.5260453224182129, - 0.5541569590568542, - 0.5915493965148926, - 0.6372026205062866, - 0.6898714303970337, - 0.748119056224823, - 0.8103567361831665, - 0.8748867511749268, - 0.9399489164352417, - 1.0037685632705688, - 1.064604640007019, - 1.1207979917526245, - 1.1708155870437622, - 1.213293194770813, - 1.2470719814300537, - 1.2712308168411255, - 1.2851104736328125, - 1.288332462310791, - 0.500457763671875, - 0.5062578916549683, - 0.5226453542709351, - 0.5491732358932495, - 0.5851178169250488, - 0.6294987201690674, - 0.6811053156852722, - 0.7385298609733582, - 0.8002060055732727, - 0.8644514083862305, - 0.9295135736465454, - 0.9936177730560303, - 1.0550155639648438, - 1.1120319366455078, - 1.163111686706543, - 1.2068616151809692, - 1.2420883178710938, - 1.2678308486938477, - 1.2833869457244873, - 1.288332462310791 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.0668192207813263, - -0.06709457188844681, - -0.06772472709417343, - -0.06869249045848846, - -0.0699714720249176, - -0.07152678817510605, - -0.07331600785255432, - -0.07529032230377197, - -0.07739588618278503, - -0.07957525551319122, - -0.08176898956298828, - -0.08391725271940231, - -0.08596143871545792, - -0.08784578740596771, - -0.08951889723539352, - -0.09093514084815979, - -0.09205587953329086, - -0.09285053610801697, - -0.09329744428396225, - -0.09338441491127014, - -0.06681922823190689, - -0.04698607325553894, - -0.028056226670742035, - -0.01054605096578598, - 0.005066826939582825, - 0.018356524407863617, - 0.028960533440113068, - 0.036589615046978, - 0.04103565961122513, - 0.042177364230155945, - 0.03998363018035889, - 0.03451429307460785, - 0.02591850608587265, - 0.014430761337280273, - 0.0003644302487373352, - -0.015896834433078766, - -0.03390943259000778, - -0.05318204313516617, - -0.07318894565105438, - -0.09338441491127014, - -0.06681923568248749, - -0.0290464386343956, - 0.007333710789680481, - 0.04132883995771408, - 0.07201166450977325, - 0.09854519367218018, - 0.12020574510097504, - 0.1364024132490158, - 0.1466934233903885, - 0.1507980227470398, - 0.14860427379608154, - 0.1401720494031906, - 0.12573130428791046, - 0.10567599534988403, - 0.08055312931537628, - 0.05104801058769226, - 0.01796545833349228, - -0.017792105674743652, - -0.05524931102991104, - -0.09338442236185074, - -0.06681923568248749, - -0.015219688415527344, - 0.03461004048585892, - 0.08131073415279388, - 0.1236085295677185, - 0.16034957766532898, - 0.19053179025650024, - 0.21333181858062744, - 0.22812774777412415, - 0.2345159351825714, - 0.23232218623161316, - 0.22160640358924866, - 0.2026606798171997, - 0.17600205540657043, - 0.14235751330852509, - 0.10264486074447632, - 0.05794735252857208, - 0.009484224021434784, - -0.041422564536333084, - -0.09338442236185074, - -0.06681924313306808, - -0.007004193961620331, - 0.050816938281059265, - 0.1050669401884079, - 0.15426605939865112, - 0.19707220792770386, - 0.2323177456855774, - 0.25904133915901184, - 0.276513934135437, - 0.28425902128219604, - 0.2820652723312378, - 0.2699925899505615, - 0.2483702003955841, - 0.21778801083564758, - 0.17908009886741638, - 0.13330240547657013, - 0.0817035585641861, - 0.02569112926721573, - -0.03320706635713577, - -0.09338442981243134, - -0.06681924313306808, - -0.005290217697620392, - 0.05419813096523285, - 0.1100231409072876, - 0.16066206991672516, - 0.20473352074623108, - 0.24103543162345886, - 0.26857757568359375, - 0.28660863637924194, - 0.2946368157863617, - 0.29244306683540344, - 0.28008729219436646, - 0.257906436920166, - 0.22650566697120667, - 0.18674147129058838, - 0.13969841599464417, - 0.0866597592830658, - 0.029072321951389313, - -0.031493090093135834, - -0.09338442981243134, - -0.06681924313306808, - -0.010263487696647644, - 0.04438726603984833, - 0.09564225375652313, - 0.1421034336090088, - 0.18250343203544617, - 0.21574020385742188, - 0.24090728163719177, - 0.2573179304599762, - 0.2645246982574463, - 0.26233094930648804, - 0.2507965862751007, - 0.23023614287376404, - 0.20121043920516968, - 0.16451133787631989, - 0.12113979458808899, - 0.07227887213230133, - 0.019261449575424194, - -0.036466360092163086, - -0.09338442981243134, - -0.06681923568248749, - -0.021385081112384796, - 0.022447437047958374, - 0.06348265707492828, - 0.10060131549835205, - 0.13279078900814056, - 0.1591731756925583, - 0.17902877926826477, - 0.19181588292121887, - 0.19718584418296814, - 0.1949920952320099, - 0.18529453873634338, - 0.16835765540599823, - 0.14464342594146729, - 0.11479872465133667, - 0.07963766157627106, - 0.04011927545070648, - -0.0026783794164657593, - -0.04758795350790024, - -0.09338442236185074, - -0.06681923568248749, - -0.037449803203344345, - -0.009243808686733246, - 0.017029352486133575, - 0.0406530499458313, - 0.060982853174209595, - 0.07746423780918121, - 0.08964762091636658, - 0.09720072150230408, - 0.0999174416065216, - 0.09772369265556335, - 0.0906793475151062, - 0.07897651195526123, - 0.06293447315692902, - 0.04299075901508331, - 0.019689396023750305, - -0.006334029138088226, - -0.03436962515115738, - -0.06365267932415009, - -0.09338441491127014, - -0.06681922823190689, - -0.056716784834861755, - -0.04725223034620285, - -0.03868372365832329, - -0.03124498948454857, - -0.025138959288597107, - -0.02053215354681015, - -0.017550259828567505, - -0.01627460867166519, - -0.01674000173807144, - -0.018933739513158798, - -0.02279597893357277, - -0.02822137251496315, - -0.03506193310022354, - -0.04313105717301369, - -0.05220865458250046, - -0.06204710900783539, - -0.07237804681062698, - -0.0829196572303772, - -0.09338441491127014, - -0.0668192207813263, - -0.07709816098213196, - -0.0874590277671814, - -0.09761921316385269, - -0.10730157047510147, - -0.11624198406934738, - -0.12419658899307251, - -0.13094840943813324, - -0.13631325960159302, - -0.14014481008052826, - -0.14233854413032532, - -0.1428346335887909, - -0.1416195183992386, - -0.1387263685464859, - -0.13423410058021545, - -0.12826523184776306, - -0.12098260223865509, - -0.11258484423160553, - -0.1033010333776474, - -0.09338440746068954, - -0.0668192207813263, - -0.09638527780771255, - -0.1255071759223938, - -0.1533905267715454, - -0.1792747676372528, - -0.20245379209518433, - -0.22229540348052979, - -0.23825834691524506, - -0.24990716576576233, - -0.2569241523742676, - -0.25911790132522583, - -0.2564285397529602, - -0.2489294558763504, - -0.23682519793510437, - -0.2204459309577942, - -0.200238436460495, - -0.1767539083957672, - -0.15063297748565674, - -0.122588150203228, - -0.09338440001010895, - -0.0668192133307457, - -0.11248809099197388, - -0.1572735607624054, - -0.19995397329330444, - -0.2393651306629181, - -0.2744320034980774, - -0.3041980564594269, - -0.3278513550758362, - -0.34474673867225647, - -0.3544231653213501, - -0.35661691427230835, - -0.35126808285713196, - -0.3385224938392639, - -0.31872785091400146, - -0.29242414236068726, - -0.26032882928848267, - -0.22331735491752625, - -0.18239936232566833, - -0.13869096338748932, - -0.09338440001010895, - -0.0668192058801651, - -0.12366160750389099, - -0.17931580543518066, - -0.2322637140750885, - -0.2810610234737396, - -0.3243767023086548, - -0.3610292077064514, - -0.3900187313556671, - -0.41055458784103394, - -0.42207643389701843, - -0.4242701828479767, - -0.4170759320259094, - -0.40068987011909485, - -0.375559002161026, - -0.34236881136894226, - -0.3020247220993042, - -0.2556270956993103, - -0.2044416218996048, - -0.14986447989940643, - -0.09338439255952835, - -0.0668192058801651, - -0.12869498133659363, - -0.1892452836036682, - -0.2468184232711792, - -0.299843966960907, - -0.34687545895576477, - -0.38663020730018616, - -0.4180235266685486, - -0.4401993155479431, - -0.45255252718925476, - -0.454746276140213, - -0.4467206597328186, - -0.4286946654319763, - -0.40115997195243835, - -0.364867627620697, - -0.32080766558647156, - -0.270181804895401, - -0.21437108516693115, - -0.15489786863327026, - -0.09338439255952835, - -0.0668192058801651, - -0.12704281508922577, - -0.1859860122203827, - -0.24204093217849731, - -0.2936786115169525, - -0.3394904136657715, - -0.3782268464565277, - -0.4088311791419983, - -0.4304686486721039, - -0.4425489604473114, - -0.44474270939826965, - -0.43698999285697937, - -0.419502317905426, - -0.3927566111087799, - -0.35748255252838135, - -0.3146423101425171, - -0.2654043138027191, - -0.21111181378364563, - -0.1532456874847412, - -0.09338439255952835, - -0.0668192133307457, - -0.11888410151004791, - -0.1698911190032959, - -0.2184489220380783, - -0.2632329761981964, - -0.3030216693878174, - -0.3367297053337097, - -0.36343759298324585, - -0.38241687417030334, - -0.3931497037410736, - -0.39534345269203186, - -0.38893821835517883, - -0.3741087317466736, - -0.3512594997882843, - -0.32101380825042725, - -0.2841966450214386, - -0.2418123036623001, - -0.19501695036888123, - -0.14508697390556335, - -0.09338440001010895, - -0.0668192133307457, - -0.10510298609733582, - -0.1427047848701477, - -0.17859894037246704, - -0.21180635690689087, - -0.2414211928844452, - -0.2666356563568115, - -0.286761999130249, - -0.30125120282173157, - -0.30970799922943115, - -0.3119017481803894, - -0.30777257680892944, - -0.29743310809135437, - -0.2811654806137085, - -0.25941333174705505, - -0.23277002573013306, - -0.20196232199668884, - -0.16783058643341064, - -0.13130585849285126, - -0.09338440001010895, - -0.0668192207813263, - -0.0871928408741951, - -0.10737303644418716, - -0.12680934369564056, - -0.1449715942144394, - -0.1613643765449524, - -0.1755405068397522, - -0.18711334466934204, - -0.19576716423034668, - -0.20126594603061676, - -0.20345968008041382, - -0.20228852331638336, - -0.1977844536304474, - -0.19007030129432678, - -0.17935648560523987, - -0.16593527793884277, - -0.15017272531986237, - -0.1324988603591919, - -0.11339571326971054, - -0.09338440746068954, - -0.0668192207813263, - -0.06709456443786621, - -0.06772470474243164, - -0.06869246065616608, - -0.06997143477201462, - -0.07152674347162247, - -0.07331594824790955, - -0.0752902626991272, - -0.07739581912755966, - -0.07957518845796585, - -0.0817689299583435, - -0.08391718566417694, - -0.08596137911081314, - -0.08784572780132294, - -0.08951885253190994, - -0.09093509614467621, - -0.09205584228038788, - -0.09285051375627518, - -0.09329743683338165, - -0.09338441491127014 - ], - "y": [ - -1.6300945281982422, - -1.633754849433899, - -1.6384360790252686, - -1.6440106630325317, - -1.6503264904022217, - -1.657211184501648, - -1.664476990699768, - -1.6719257831573486, - -1.6793543100357056, - -1.686560034751892, - -1.6933462619781494, - -1.6995279788970947, - -1.7049365043640137, - -1.709424376487732, - -1.7128691673278809, - -1.7151768207550049, - -1.7162845134735107, - -1.7161619663238525, - -1.7148123979568481, - -1.7122728824615479, - -1.6300945281982422, - -1.6342568397521973, - -1.639426589012146, - -1.6454625129699707, - -1.6522001028060913, - -1.659455418586731, - -1.667030692100525, - -1.674719214439392, - -1.6823114156723022, - -1.6895999908447266, - -1.6963862180709839, - -1.7024849653244019, - -1.7077299356460571, - -1.7119780778884888, - -1.7151134014129639, - -1.7170504331588745, - -1.7177362442016602, - -1.7171523571014404, - -1.715314507484436, - -1.7122728824615479, - -1.6300945281982422, - -1.634368658065796, - -1.6396470069885254, - -1.6457855701446533, - -1.6526169776916504, - -1.6599549055099487, - -1.6675989627838135, - -1.6753408908843994, - -1.6829694509506226, - -1.6902765035629272, - -1.6970627307891846, - -1.7031431198120117, - -1.7083516120910645, - -1.7125463485717773, - -1.715612769126892, - -1.7174673080444336, - -1.7180594205856323, - -1.7173727750778198, - -1.7154262065887451, - -1.7122728824615479, - -1.6300945281982422, - -1.6340779066085815, - -1.6390734910964966, - -1.6449450254440308, - -1.6515321731567383, - -1.6586554050445557, - -1.6661204099655151, - -1.673723578453064, - -1.6812573671340942, - -1.68851637840271, - -1.6953026056289673, - -1.7014309167861938, - -1.7067341804504395, - -1.711067795753479, - -1.7143133878707886, - -1.7163825035095215, - -1.7172187566757202, - -1.716799259185791, - -1.7151355743408203, - -1.7122728824615479, - -1.6300945281982422, - -1.6334162950515747, - -1.637768268585205, - -1.6430318355560303, - -1.649063229560852, - -1.6556979417800903, - -1.6627551317214966, - -1.6700422763824463, - -1.6773605346679688, - -1.6845102310180664, - -1.6912964582443237, - -1.6975340843200684, - -1.7030529975891113, - -1.7077025175094604, - -1.7113559246063232, - -1.7139135599136353, - -1.7153055667877197, - -1.7154940366744995, - -1.7144739627838135, - -1.7122728824615479, - -1.6300945281982422, - -1.6324553489685059, - -1.635872721672058, - -1.6402533054351807, - -1.6454774141311646, - -1.6514028310775757, - -1.6578679084777832, - -1.6646960973739624, - -1.6717013120651245, - -1.67869234085083, - -1.6854785680770874, - -1.6918748617172241, - -1.6977068185806274, - -1.7028151750564575, - -1.7070608139038086, - -1.7103277444839478, - -1.7125270366668701, - -1.7135984897613525, - -1.7135130167007446, - -1.7122728824615479, - -1.6300945281982422, - -1.631299376487732, - -1.6335922479629517, - -1.6369105577468872, - -1.64116370677948, - -1.646235704421997, - -1.65198814868927, - -1.6582642793655396, - -1.6648929119110107, - -1.671692967414856, - -1.6784791946411133, - -1.6850664615631104, - -1.6912750005722046, - -1.6969355344772339, - -1.7018935680389404, - -1.7060140371322632, - -1.7091842889785767, - -1.711318016052246, - -1.7123570442199707, - -1.7122728824615479, - -1.6300945281982422, - -1.6300735473632812, - -1.6311739683151245, - -1.6333658695220947, - -1.6365892887115479, - -1.6407562494277954, - -1.645753264427185, - -1.6514439582824707, - -1.6576731204986572, - -1.6642707586288452, - -1.6710569858551025, - -1.6778467893600464, - -1.6844546794891357, - -1.690700650215149, - -1.6964142322540283, - -1.701439619064331, - -1.7056396007537842, - -1.7088998556137085, - -1.71113121509552, - -1.7122728824615479, - -1.6300945281982422, - -1.628910779953003, - -1.6288800239562988, - -1.6300033330917358, - -1.6322498321533203, - -1.6355584859848022, - -1.6398388147354126, - -1.6449741125106812, - -1.6508244276046753, - -1.657230019569397, - -1.6640162467956543, - -1.670997977256775, - -1.6779848337173462, - -1.684786081314087, - -1.6912163496017456, - -1.6971001625061035, - -1.7022770643234253, - -1.7066057920455933, - -1.7099683284759521, - -1.7122728824615479, - -1.6300945281982422, - -1.627936840057373, - -1.626958966255188, - -1.6271873712539673, - -1.6286158561706543, - -1.631205439567566, - -1.6348856687545776, - -1.639555811882019, - -1.6450889110565186, - -1.6513336896896362, - -1.6581199169158936, - -1.6652624607086182, - -1.672566533088684, - -1.679832935333252, - -1.6868634223937988, - -1.6934661865234375, - -1.6994611024856567, - -1.7046847343444824, - -1.7089945077896118, - -1.7122728824615479, - -1.6300945281982422, - -1.6272575855255127, - -1.625618815422058, - -1.6252230405807495, - -1.626080870628357, - -1.628169059753418, - -1.6314305067062378, - -1.635776400566101, - -1.6410880088806152, - -1.6472206115722656, - -1.654006838798523, - -1.6612616777420044, - -1.6687871217727661, - -1.6763778924942017, - -1.6838270425796509, - -1.6909312009811401, - -1.697496771812439, - -1.703344702720642, - -1.7083152532577515, - -1.7122728824615479, - -1.6300945281982422, - -1.6269464492797852, - -1.6250050067901611, - -1.6243233680725098, - -1.6249197721481323, - -1.626778244972229, - -1.6298480033874512, - -1.6340452432632446, - -1.6392555236816406, - -1.645336627960205, - -1.652122974395752, - -1.6594290733337402, - -1.6670558452606201, - -1.6747952699661255, - -1.682436227798462, - -1.6897701025009155, - -1.6965970993041992, - -1.7027308940887451, - -1.708004117012024, - -1.7122728824615479, - -1.6300945281982422, - -1.6270371675491333, - -1.6251840591430664, - -1.6245856285095215, - -1.6252583265304565, - -1.6271837949752808, - -1.6303093433380127, - -1.6345499753952026, - -1.6397898197174072, - -1.645885944366455, - -1.6526721715927124, - -1.6599633693695068, - -1.6675606966018677, - -1.6752567291259766, - -1.6828416585922241, - -1.6901086568832397, - -1.6968594789505005, - -1.7029098272323608, - -1.708094835281372, - -1.7122728824615479, - -1.6300945281982422, - -1.627519965171814, - -1.6261364221572876, - -1.6259815692901611, - -1.627059817314148, - -1.6293416023254395, - -1.6327648162841797, - -1.6372358798980713, - -1.642633080482483, - -1.6488089561462402, - -1.6555951833724976, - -1.6628066301345825, - -1.6702466011047363, - -1.6777122020721436, - -1.6849995851516724, - -1.6919101476669312, - -1.6982554197311401, - -1.703862190246582, - -1.7085775136947632, - -1.7122728824615479, - -1.6300945281982422, - -1.6283423900604248, - -1.6277588605880737, - -1.6283599138259888, - -1.630129098892212, - -1.6330180168151855, - -1.6369481086730957, - -1.6418120861053467, - -1.647477149963379, - -1.6537889242172241, - -1.6605751514434814, - -1.667650818824768, - -1.6748228073120117, - -1.6818954944610596, - -1.6886759996414185, - -1.6949794292449951, - -1.7006336450576782, - -1.7054846286773682, - -1.7094000577926636, - -1.7122728824615479, - -1.6300945281982422, - -1.629415512084961, - -1.6298757791519165, - -1.631462812423706, - -1.6341334581375122, - -1.6378146409988403, - -1.6424059867858887, - -1.6477824449539185, - -1.6537971496582031, - -1.6602861881256104, - -1.6670724153518677, - -1.6739708185195923, - -1.6807931661605835, - -1.6873533725738525, - -1.6934725046157837, - -1.6989837884902954, - -1.703736662864685, - -1.707601547241211, - -1.7104730606079102, - -1.7122728824615479, - -1.6300945281982422, - -1.6306228637695312, - -1.6322575807571411, - -1.6349542140960693, - -1.638638973236084, - -1.6432116031646729, - -1.6485470533370972, - -1.654500126838684, - -1.6609082221984863, - -1.6675965785980225, - -1.6743828058242798, - -1.6810818910598755, - -1.6875108480453491, - -1.693494439125061, - -1.6988694667816162, - -1.7034893035888672, - -1.7072279453277588, - -1.7099833488464355, - -1.71168053150177, - -1.7122728824615479, - -1.6300945281982422, - -1.6318336725234985, - -1.6346462965011597, - -1.6384555101394653, - -1.6431574821472168, - -1.6486239433288574, - -1.6547057628631592, - -1.661237120628357, - -1.6680396795272827, - -1.674928069114685, - -1.6817142963409424, - -1.6882133483886719, - -1.694247841835022, - -1.699653148651123, - -1.7042819261550903, - -1.7080078125, - -1.7107293605804443, - -1.712372064590454, - -1.7128913402557373, - -1.7122728824615479, - -1.6300945281982422, - -1.632916808128357, - -1.6367830038070679, - -1.641587495803833, - -1.6471993923187256, - -1.6534653902053833, - -1.6602147817611694, - -1.667263388633728, - -1.6744189262390137, - -1.6814861297607422, - -1.6882723569869995, - -1.6945924758911133, - -1.700274109840393, - -1.7051621675491333, - -1.7091233730316162, - -1.7120497226715088, - -1.713861346244812, - -1.7145087718963623, - -1.7139744758605957, - -1.7122728824615479, - -1.6300945281982422, - -1.633754849433899, - -1.6384360790252686, - -1.6440106630325317, - -1.6503264904022217, - -1.657211184501648, - -1.664476990699768, - -1.6719257831573486, - -1.6793543100357056, - -1.686560034751892, - -1.6933462619781494, - -1.6995279788970947, - -1.7049365043640137, - -1.709424376487732, - -1.7128691673278809, - -1.7151768207550049, - -1.7162845134735107, - -1.7161619663238525, - -1.7148123979568481, - -1.7122728824615479 - ], - "z": [ - 1.342600703239441, - 1.3373265266418457, - 1.3210201263427734, - 1.2941261529922485, - 1.257378339767456, - 1.2117788791656494, - 1.1585718393325806, - 1.0992083549499512, - 1.0353078842163086, - 0.9686133861541748, - 0.9009441137313843, - 0.8341459035873413, - 0.7700408697128296, - 0.71037757396698, - 0.6567835807800293, - 0.6107206344604492, - 0.5734453201293945, - 0.5459743738174438, - 0.5290572047233582, - 0.5231552124023438, - 1.342600703239441, - 1.3367249965667725, - 1.319833517074585, - 1.292386770248413, - 1.2551335096359253, - 1.2090901136398315, - 1.1555122137069702, - 1.095861554145813, - 1.031765103340149, - 0.9649712443351746, - 0.897301971912384, - 0.8306031227111816, - 0.7666940689086914, - 0.7073180675506592, - 0.6540947556495667, - 0.608475923538208, - 0.5717059373855591, - 0.5447877049446106, - 0.5284556746482849, - 0.5231552124023438, - 1.342600703239441, - 1.3361546993255615, - 1.3187083005905151, - 1.2907373905181885, - 1.2530051469802856, - 1.206540584564209, - 1.152611255645752, - 1.0926880836486816, - 1.028405785560608, - 0.9615177512168884, - 0.8938484787940979, - 0.8272438645362854, - 0.7635205984115601, - 0.7044169902801514, - 0.6515452861785889, - 0.6063474416732788, - 0.5700565576553345, - 0.5436625480651855, - 0.5278853178024292, - 0.5231552124023438, - 1.342600703239441, - 1.3356772661209106, - 1.317766547203064, - 1.2893569469451904, - 1.2512235641479492, - 1.2044066190719604, - 1.150183081626892, - 1.0900319814682007, - 1.0255941152572632, - 0.9586272239685059, - 0.8909579515457153, - 0.8244321346282959, - 0.7608644962310791, - 0.7019888758659363, - 0.6494113206863403, - 0.6045659780502319, - 0.5686761140823364, - 0.5427207946777344, - 0.5274078845977783, - 0.5231552124023438, - 1.342600703239441, - 1.3353445529937744, - 1.3171101808547974, - 1.2883949279785156, - 1.2499821186065674, - 1.202919602394104, - 1.1484909057617188, - 1.0881810188293457, - 1.0236347913742065, - 0.9566128849983215, - 0.888943612575531, - 0.8224727511405945, - 0.7590134739875793, - 0.7002967596054077, - 0.6479242444038391, - 0.6033245325088501, - 0.5677140951156616, - 0.5420644283294678, - 0.5270752310752869, - 0.5231552124023438, - 1.342600703239441, - 1.3351926803588867, - 1.3168104887008667, - 1.287955641746521, - 1.2494151592254639, - 1.2022404670715332, - 1.1477181911468506, - 1.0873357057571411, - 1.0227398872375488, - 0.9556930065155029, - 0.8880237340927124, - 0.8215779662132263, - 0.7581681609153748, - 0.6995239853858948, - 0.6472451686859131, - 0.6027575731277466, - 0.567274808883667, - 0.5417647361755371, - 0.5269232988357544, - 0.5231552124023438, - 1.342600703239441, - 1.335237979888916, - 1.3168998956680298, - 1.2880866527557373, - 1.2495841979980469, - 1.2024428844451904, - 1.1479486227035522, - 1.0875877141952515, - 1.0230066776275635, - 0.9559672474861145, - 0.888297975063324, - 0.821844756603241, - 0.7584201693534851, - 0.6997543573379517, - 0.6474475860595703, - 0.6029266119003296, - 0.5674058198928833, - 0.5418541431427002, - 0.5269685983657837, - 0.5231552124023438, - 1.342600703239441, - 1.3354755640029907, - 1.3173686265945435, - 1.288773775100708, - 1.2504708766937256, - 1.203505039215088, - 1.149157166481018, - 1.0889097452163696, - 1.0244061946868896, - 0.9574059247970581, - 0.8897366523742676, - 0.8232442140579224, - 0.7597422003746033, - 0.7009629011154175, - 0.6485097408294678, - 0.6038132905960083, - 0.5680928826332092, - 0.5423228740692139, - 0.5272061824798584, - 0.5231552124023438, - 1.342600703239441, - 1.3358798027038574, - 1.318165898323059, - 1.2899425029754639, - 1.251979112625122, - 1.20531165599823, - 1.1512129306793213, - 1.0911585092544556, - 1.0267865657806396, - 0.9598531723022461, - 0.8921838998794556, - 0.8256246447563171, - 0.7619909644126892, - 0.7030186653137207, - 0.6503163576126099, - 0.6053215265274048, - 0.5692616105079651, - 0.5431201457977295, - 0.5276104211807251, - 0.5231552124023438, - 1.342600703239441, - 1.3364067077636719, - 1.3192055225372314, - 1.291466236114502, - 1.2539455890655518, - 1.2076671123504639, - 1.153892993927002, - 1.0940903425216675, - 1.0298900604248047, - 0.9630436897277832, - 0.8953744173049927, - 0.8287281394004822, - 0.7649227976799011, - 0.7056988477706909, - 0.652671754360199, - 0.6072878837585449, - 0.5707853436470032, - 0.5441597104072571, - 0.5281373262405396, - 0.5231552124023438, - 1.342600703239441, - 1.3369992971420288, - 1.3203744888305664, - 1.2931797504425049, - 1.2561569213867188, - 1.2103159427642822, - 1.1569072008132935, - 1.097387433052063, - 1.033380389213562, - 0.9666318297386169, - 0.8989625573158264, - 0.8322184085845947, - 0.7682199478149414, - 0.7087129950523376, - 0.6553206443786621, - 0.6094993352890015, - 0.5724989175796509, - 0.5453287363052368, - 0.5287299156188965, - 0.5231552124023438, - 1.342600703239441, - 1.3375933170318604, - 1.3215464353561401, - 1.2948975563049316, - 1.2583738565444946, - 1.2129713296890259, - 1.1599286794662476, - 1.1006927490234375, - 1.0368791818618774, - 0.9702286720275879, - 0.9025593996047974, - 0.8357171416282654, - 0.7715252041816711, - 0.7117344737052917, - 0.6579760313034058, - 0.6117161512374878, - 0.5742167234420776, - 0.5465006828308105, - 0.5293239951133728, - 0.5231552124023438, - 1.342600703239441, - 1.3381245136260986, - 1.322594165802002, - 1.296433448791504, - 1.260355830192566, - 1.2153455018997192, - 1.1626300811767578, - 1.1036478281021118, - 1.04000723361969, - 0.9734445810317993, - 0.905775249004364, - 0.8388453125953674, - 0.7744802832603455, - 0.7144359350204468, - 0.6603501439094543, - 0.6136981248855591, - 0.5757526159286499, - 0.5475484132766724, - 0.5298551321029663, - 0.5231552124023438, - 1.342600703239441, - 1.3385350704193115, - 1.323404312133789, - 1.2976207733154297, - 1.2618881464004517, - 1.2171809673309326, - 1.164718747138977, - 1.1059324741363525, - 1.0424257516860962, - 0.97593092918396, - 0.9082615971565247, - 0.8412638306617737, - 0.776764988899231, - 0.7165245413780212, - 0.6621856689453125, - 0.6152305603027344, - 0.5769400000572205, - 0.5483585000038147, - 0.530265748500824, - 0.5231552124023438, - 1.342600703239441, - 1.3387807607650757, - 1.323888897895813, - 1.2983311414718628, - 1.2628048658370972, - 1.2182791233062744, - 1.1659681797027588, - 1.1072993278503418, - 1.043872594833374, - 0.9774183034896851, - 0.9097490310668945, - 0.8427106738090515, - 0.7781318426132202, - 0.7177740335464478, - 0.6632837653160095, - 0.6161472797393799, - 0.5776503086090088, - 0.5488431453704834, - 0.5305113792419434, - 0.5231552124023438, - 1.342600703239441, - 1.3388347625732422, - 1.3239954710006714, - 1.2984874248504639, - 1.263006567955017, - 1.2185206413269043, - 1.1662431955337524, - 1.1076000928878784, - 1.0441910028457642, - 0.9777455925941467, - 0.9100763201713562, - 0.8430290222167969, - 0.7784325480461121, - 0.7180489301681519, - 0.6635253429412842, - 0.6163489818572998, - 0.5778066515922546, - 0.5489497184753418, - 0.5305655002593994, - 0.5231552124023438, - 1.342600703239441, - 1.3386914730072021, - 1.3237125873565674, - 1.2980728149414062, - 1.2624714374542236, - 1.2178796529769897, - 1.1655137538909912, - 1.1068021059036255, - 1.0433464050292969, - 0.9768772721290588, - 0.9092079997062683, - 0.8421843647956848, - 0.7776346206665039, - 0.7173195481300354, - 0.6628843545913696, - 0.6158137917518616, - 0.5773919820785522, - 0.5486668348312378, - 0.5304220914840698, - 0.5231552124023438, - 1.342600703239441, - 1.3383660316467285, - 1.323070764541626, - 1.2971320152282715, - 1.2612574100494385, - 1.2164254188537598, - 1.1638590097427368, - 1.1049920320510864, - 1.0414302349090576, - 0.9749074578285217, - 0.9072381854057312, - 0.8402683138847351, - 0.7758245468139648, - 0.715664803981781, - 0.6614301204681396, - 0.6145997643470764, - 0.5764511823654175, - 0.5480250716209412, - 0.530096709728241, - 0.5231552124023438, - 1.342600703239441, - 1.337894082069397, - 1.3221397399902344, - 1.2957671880722046, - 1.2594960927963257, - 1.21431565284729, - 1.1614583730697632, - 1.1023659706115723, - 1.038650393486023, - 0.9720495939254761, - 0.9043803215026855, - 0.8374884128570557, - 0.7731984257698059, - 0.7132641077041626, - 0.6593203544616699, - 0.6128383874893188, - 0.5750863552093506, - 0.54709392786026, - 0.5296247005462646, - 0.5231552124023438, - 1.342600703239441, - 1.3373265266418457, - 1.3210201263427734, - 1.2941261529922485, - 1.257378339767456, - 1.2117788791656494, - 1.1585718393325806, - 1.0992083549499512, - 1.0353078842163086, - 0.9686133861541748, - 0.9009441137313843, - 0.8341459035873413, - 0.7700408697128296, - 0.71037757396698, - 0.6567835807800293, - 0.6107206344604492, - 0.5734453201293945, - 0.5459743738174438, - 0.5290572047233582, - 0.5231552124023438 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.09818536788225174, - -0.09819640964269638, - -0.09837274253368378, - -0.09870956838130951, - -0.09919769316911697, - -0.09982381016016006, - -0.10057082772254944, - -0.10141836851835251, - -0.10234332829713821, - -0.10332046449184418, - -0.1043231338262558, - -0.10532397776842117, - -0.10629568994045258, - -0.10721178352832794, - -0.108047254383564, - -0.10877931118011475, - -0.10938800126314163, - -0.10985670983791351, - -0.11017265170812607, - -0.11032720655202866, - -0.09818537533283234, - -0.07763372361660004, - -0.057808276265859604, - -0.03924980014562607, - -0.022464536130428314, - -0.007910341024398804, - 0.004015780985355377, - 0.012988552451133728, - 0.018763169646263123, - 0.021182119846343994, - 0.02017945796251297, - 0.015782520174980164, - 0.008111231029033661, - -0.0026251599192619324, - -0.016133777797222137, - -0.03204614669084549, - -0.04992822930216789, - -0.06929223239421844, - -0.08960996568202972, - -0.11032721400260925, - -0.09818537533283234, - -0.05930710956454277, - -0.021654926240444183, - 0.013744093477725983, - 0.045924365520477295, - 0.07400810718536377, - 0.0972292572259903, - 0.11495444178581238, - 0.12670008838176727, - 0.13214585185050964, - 0.13114318251609802, - 0.12371943891048431, - 0.11007711291313171, - 0.09058831632137299, - 0.06578469276428223, - 0.03634275496006012, - 0.003065668046474457, - -0.03313889354467392, - -0.07128335535526276, - -0.11032721400260925, - -0.09818538278341293, - -0.04520252346992493, - 0.006169505417346954, - 0.054529398679733276, - 0.09855805337429047, - 0.1370544135570526, - 0.16896848380565643, - 0.19342969357967377, - 0.2097707837820053, - 0.21754606068134308, - 0.21654339134693146, - 0.20679013431072235, - 0.1885523647069931, - 0.16232754290103912, - 0.12883101403713226, - 0.0889764279127121, - 0.04385095834732056, - -0.005314461886882782, - -0.057178765535354614, - -0.11032722145318985, - -0.09818538278341293, - -0.03684842586517334, - 0.022649824619293213, - 0.07868640124797821, - 0.12973280251026154, - 0.1743965595960617, - 0.21145935356616974, - 0.23991034924983978, - 0.25897330045700073, - 0.26812833547592163, - 0.26712566614151, - 0.2559926509857178, - 0.23503302037715912, - 0.20481841266155243, - 0.16617314517498016, - 0.12015120685100555, - 0.06800796091556549, - 0.011165864765644073, - -0.04882466420531273, - -0.11032722145318985, - -0.09818538278341293, - -0.03515010327100754, - 0.02600012719631195, - 0.08359731733798981, - 0.1360703408718109, - 0.18198786675930023, - 0.2200974076986313, - 0.24935947358608246, - 0.26897579431533813, - 0.27841126918792725, - 0.2774085998535156, - 0.2659951448440552, - 0.2444821447134018, - 0.21345646679401398, - 0.17376448214054108, - 0.12648874521255493, - 0.07291887700557709, - 0.014516159892082214, - -0.047126345336437225, - -0.11032722145318985, - -0.09818538278341293, - -0.04029161483049393, - 0.015857376158237457, - 0.0687299519777298, - 0.11688394844532013, - 0.159005805850029, - 0.19394655525684357, - 0.22075311839580536, - 0.2386942058801651, - 0.24728058278560638, - 0.24627791345119476, - 0.23571355640888214, - 0.2158757895231247, - 0.18730558454990387, - 0.15078242123126984, - 0.10730233788490295, - 0.05805151164531708, - 0.004373408854007721, - -0.052267856895923615, - -0.11032722145318985, - -0.09818538278341293, - -0.051715776324272156, - -0.006679333746433258, - 0.03569544851779938, - 0.07425272464752197, - 0.10794070363044739, - 0.1358405500650406, - 0.157191202044487, - 0.1714101880788803, - 0.17810972034931183, - 0.1771070510149002, - 0.16842953860759735, - 0.15231387317180634, - 0.12919959425926208, - 0.09971730411052704, - 0.0646711140871048, - 0.025017008185386658, - -0.018163301050662994, - -0.06369201838970184, - -0.11032722145318985, - -0.09818537533283234, - -0.06818461418151855, - -0.03916779160499573, - -0.011926427483558655, - 0.012796439230442047, - 0.034326404333114624, - 0.052076175808906555, - 0.06556163728237152, - 0.07441489398479462, - 0.07839447259902954, - 0.07739180326461792, - 0.07143424451351166, - 0.06068430840969086, - 0.04543522000312805, - 0.02610298991203308, - 0.0032148435711860657, - -0.02260485291481018, - -0.050651755183935165, - -0.08016085624694824, - -0.11032721400260925, - -0.09818536788225174, - -0.08791346848011017, - -0.07808735966682434, - -0.06897507607936859, - -0.0608251579105854, - -0.05385994166135788, - -0.048269398510456085, - -0.044206030666828156, - -0.04178067669272423, - -0.041059501469135284, - -0.04206216707825661, - -0.04476132243871689, - -0.04908335208892822, - -0.05491035431623459, - -0.062083374708890915, - -0.07040677964687347, - -0.07965350151062012, - -0.08957131952047348, - -0.09988971054553986, - -0.11032720655202866, - -0.09818536788225174, - -0.1087644174695015, - -0.11922050267457962, - -0.12926840782165527, - -0.13863404095172882, - -0.14706194400787354, - -0.15432220697402954, - -0.1602168083190918, - -0.1645849645137787, - -0.16730749607086182, - -0.16831016540527344, - -0.16756561398506165, - -0.16509413719177246, - -0.16096317768096924, - -0.15528538823127747, - -0.1482156664133072, - -0.1399468332529068, - -0.13070446252822876, - -0.12074065953493118, - -0.11032720655202866, - -0.09818536043167114, - -0.12847793102264404, - -0.15810981392860413, - -0.18627269566059113, - -0.212198406457901, - -0.23517970740795135, - -0.2545897662639618, - -0.2698991298675537, - -0.28069019317626953, - -0.286668598651886, - -0.2876712679862976, - -0.2836708426475525, - -0.2747764587402344, - -0.2612307667732239, - -0.24340316653251648, - -0.22178001701831818, - -0.19695112109184265, - -0.16959378123283386, - -0.14045417308807373, - -0.11032719910144806, - -0.09818535298109055, - -0.14491775631904602, - -0.19054099917411804, - -0.2338106483221054, - -0.27354639768600464, - -0.30866432189941406, - -0.33820652961730957, - -0.36136722564697266, - -0.3775146007537842, - -0.38620811700820923, - -0.38721078634262085, - -0.38049525022506714, - -0.3662445545196533, - -0.34484750032424927, - -0.3168877959251404, - -0.283128023147583, - -0.24448908865451813, - -0.20202496647834778, - -0.1568939983844757, - -0.11032719165086746, - -0.09818535298109055, - -0.15630237758159637, - -0.21299970149993896, - -0.26673081517219543, - -0.31603002548217773, - -0.3595525622367859, - -0.3961113691329956, - -0.42470914125442505, - -0.44456571340560913, - -0.45513951778411865, - -0.4561421871185303, - -0.4475463628768921, - -0.4295864701271057, - -0.4027523398399353, - -0.367776095867157, - -0.3256116807460785, - -0.27740925550460815, - -0.2244836688041687, - -0.16827860474586487, - -0.11032719165086746, - -0.09818535298109055, - -0.16139808297157288, - -0.22305211424827576, - -0.28146570920944214, - -0.3350455164909363, - -0.38232994079589844, - -0.4220292568206787, - -0.4530606269836426, - -0.47457748651504517, - -0.485992968082428, - -0.4869956374168396, - -0.4775581359863281, - -0.45793795585632324, - -0.4286702871322632, - -0.39055347442626953, - -0.34462717175483704, - -0.29214417934417725, - -0.2345360815525055, - -0.17337432503700256, - -0.11032719165086746, - -0.09818535298109055, - -0.1596526801586151, - -0.21960894763469696, - -0.27641868591308594, - -0.32853227853775024, - -0.374528169631958, - -0.4131518006324768, - -0.44334959983825684, - -0.4642977714538574, - -0.47542494535446167, - -0.4764276146888733, - -0.4672784209251404, - -0.4482269287109375, - -0.4197928309440613, - -0.3827517032623291, - -0.338113933801651, - -0.28709712624549866, - -0.2310929149389267, - -0.1716289222240448, - -0.11032719165086746, - -0.09818535298109055, - -0.1512553095817566, - -0.20304325222969055, - -0.25213655829429626, - -0.29719609022140503, - -0.33699268102645874, - -0.37044084072113037, - -0.396628201007843, - -0.4148404002189636, - -0.4245806932449341, - -0.4255833625793457, - -0.4178210496902466, - -0.4015055298805237, - -0.37708187103271484, - -0.34521615505218506, - -0.3067777156829834, - -0.262814998626709, - -0.2145272195339203, - -0.16323155164718628, - -0.11032719165086746, - -0.09818536043167114, - -0.1371159553527832, - -0.17515023052692413, - -0.21125072240829468, - -0.24443267285823822, - -0.27379095554351807, - -0.29852476716041565, - -0.3179594874382019, - -0.33156493306159973, - -0.3389699459075928, - -0.3399726152420044, - -0.3345455825328827, - -0.32283681631088257, - -0.30516576766967773, - -0.2820144295692444, - -0.2540143132209778, - -0.2219291478395462, - -0.18663419783115387, - -0.1490921974182129, - -0.11032719910144806, - -0.09818536043167114, - -0.11876684427261353, - -0.13895250856876373, - -0.1581917405128479, - -0.1759597808122635, - -0.19177192449569702, - -0.20519685745239258, - -0.21586841344833374, - -0.2234954684972763, - -0.22787000238895416, - -0.22887267172336578, - -0.22647611796855927, - -0.2207457423210144, - -0.21183782815933228, - -0.19999536871910095, - -0.18554139137268066, - -0.16887018084526062, - -0.15043646097183228, - -0.1307430863380432, - -0.11032719910144806, - -0.09818536788225174, - -0.09819639474153519, - -0.09837272018194199, - -0.09870953857898712, - -0.09919765591621399, - -0.09982375800609589, - -0.10057076811790466, - -0.10141830891370773, - -0.10234326124191284, - -0.1033203974366188, - -0.10432306677103043, - -0.1053239107131958, - -0.1062956303358078, - -0.10721172392368317, - -0.10804720222949982, - -0.10877927392721176, - -0.10938797146081924, - -0.10985668748617172, - -0.11017263680696487, - -0.11032720655202866 - ], - "y": [ - -1.7360919713974, - -1.732964038848877, - -1.7288672924041748, - -1.723913311958313, - -1.718237280845642, - -1.7119941711425781, - -1.7053539752960205, - -1.6984981298446655, - -1.6916134357452393, - -1.6848878860473633, - -1.6785047054290771, - -1.672638177871704, - -1.6674482822418213, - -1.6630765199661255, - -1.659642219543457, - -1.6572389602661133, - -1.6559325456619263, - -1.655758261680603, - -1.6567211151123047, - -1.6587947607040405, - -1.7360919713974, - -1.7336410284042358, - -1.7302027940750122, - -1.7258708477020264, - -1.7207635641098022, - -1.7150201797485352, - -1.7087973356246948, - -1.7022647857666016, - -1.6956006288528442, - -1.6889867782592773, - -1.6826037168502808, - -1.676625370979309, - -1.6712148189544678, - -1.6665197610855103, - -1.662668228149414, - -1.6597652435302734, - -1.6578900814056396, - -1.6570937633514404, - -1.6573981046676636, - -1.6587947607040405, - -1.7360919713974, - -1.734526515007019, - -1.7319495677947998, - -1.7284313440322876, - -1.7240678071975708, - -1.7189780473709106, - -1.7133009433746338, - -1.7071912288665771, - -1.7008156776428223, - -1.6943480968475342, - -1.687964916229248, - -1.6818403005599976, - -1.676141381263733, - -1.6710233688354492, - -1.6666260957717896, - -1.663069486618042, - -1.6604504585266113, - -1.658840537071228, - -1.6582835912704468, - -1.6587947607040405, - -1.7360919713974, - -1.7355244159698486, - -1.7339181900024414, - -1.7313170433044434, - -1.7277919054031372, - -1.7234389781951904, - -1.718376874923706, - -1.7127437591552734, - -1.7066932916641235, - -1.7003905773162842, - -1.694007396697998, - -1.6877180337905884, - -1.6816939115524292, - -1.6760993003845215, - -1.6710870265960693, - -1.6667935848236084, - -1.6633362770080566, - -1.6608092784881592, - -1.6592814922332764, - -1.6587947607040405, - -1.7360919713974, - -1.7365268468856812, - -1.7358956336975098, - -1.734215497970581, - -1.731532335281372, - -1.727919340133667, - -1.7234749794006348, - -1.718320608139038, - -1.7125967741012573, - -1.7064595222473145, - -1.7000764608383179, - -1.6936213970184326, - -1.6872707605361938, - -1.6811975240707397, - -1.675567388534546, - -1.6705340147018433, - -1.6662347316741943, - -1.662786602973938, - -1.6602839231491089, - -1.6587947607040405, - -1.7360919713974, - -1.7374248504638672, - -1.7376673221588135, - -1.7368124723434448, - -1.7348837852478027, - -1.731933832168579, - -1.7280429601669312, - -1.7233175039291382, - -1.717886209487915, - -1.711897373199463, - -1.7055141925811768, - -1.6989109516143799, - -1.692267656326294, - -1.6857655048370361, - -1.679581880569458, - -1.673885464668274, - -1.668831706047058, - -1.6645582914352417, - -1.6611820459365845, - -1.6587947607040405, - -1.7360919713974, - -1.7381213903427124, - -1.7390413284301758, - -1.7388266324996948, - -1.737483024597168, - -1.7350472211837769, - -1.7315857410430908, - -1.7271928787231445, - -1.721988558769226, - -1.7161147594451904, - -1.7097315788269043, - -1.7030131816864014, - -1.6961429119110107, - -1.6893081665039062, - -1.6826952695846558, - -1.6764847040176392, - -1.6708457469940186, - -1.6659324169158936, - -1.6618785858154297, - -1.6587947607040405, - -1.7360919713974, - -1.7385408878326416, - -1.7398688793182373, - -1.740039587020874, - -1.7390483617782593, - -1.736922264099121, - -1.7337192296981812, - -1.7295267581939697, - -1.724459171295166, - -1.7186546325683594, - -1.7122714519500732, - -1.7054837942123413, - -1.6984769105911255, - -1.6914417743682861, - -1.6845703125, - -1.6780500411987305, - -1.6720587015151978, - -1.6667598485946655, - -1.6622979640960693, - -1.6587947607040405, - -1.7360919713974, - -1.738637924194336, - -1.7400602102279663, - -1.7403199672698975, - -1.7394102811813354, - -1.7373557090759277, - -1.7342125177383423, - -1.7300662994384766, - -1.7250303030014038, - -1.719241738319397, - -1.7128585577011108, - -1.706054925918579, - -1.6990164518356323, - -1.6919349431991577, - -1.6850037574768066, - -1.6784119606018066, - -1.6723392009735107, - -1.6669511795043945, - -1.6623950004577637, - -1.6587947607040405, - -1.7360919713974, - -1.7384018898010254, - -1.739594578742981, - -1.7396374940872192, - -1.7385294437408447, - -1.7363007068634033, - -1.7330119609832764, - -1.7287530899047852, - -1.7236400842666626, - -1.7178125381469727, - -1.711429476737976, - -1.7046648263931274, - -1.6977031230926514, - -1.6907343864440918, - -1.6839487552642822, - -1.677531123161316, - -1.671656608581543, - -1.6664855480194092, - -1.6621589660644531, - -1.6587947607040405, - -1.7360919713974, - -1.7378584146499634, - -1.7385224103927612, - -1.7380659580230713, - -1.7365013360977173, - -1.733871340751648, - -1.7302477359771729, - -1.72572922706604, - -1.7204391956329346, - -1.714521884918213, - -1.7081388235092163, - -1.7014639377593994, - -1.6946793794631958, - -1.6879701614379883, - -1.6815193891525269, - -1.6755030155181885, - -1.670085072517395, - -1.6654133796691895, - -1.6616154909133911, - -1.6587947607040405, - -1.7360919713974, - -1.737066388130188, - -1.7369599342346191, - -1.7357757091522217, - -1.7335457801818848, - -1.7303310632705688, - -1.7262192964553833, - -1.7213226556777954, - -1.7157745361328125, - -1.7097264528274536, - -1.7033432722091675, - -1.6967991590499878, - -1.6902726888656616, - -1.6839417219161987, - -1.6779791116714478, - -1.672547459602356, - -1.6677948236465454, - -1.663851022720337, - -1.6608234643936157, - -1.6587947607040405, - -1.7360919713974, - -1.7361116409301758, - -1.7350765466690063, - -1.7330149412155151, - -1.7299829721450806, - -1.7260634899139404, - -1.7213633060455322, - -1.7160106897354126, - -1.7101515531539917, - -1.7039457559585571, - -1.697562575340271, - -1.691176176071167, - -1.6849607229232788, - -1.6790857315063477, - -1.6737115383148193, - -1.6689846515655518, - -1.6650341749191284, - -1.6619675159454346, - -1.6598687171936035, - -1.6587947607040405, - -1.7360919713974, - -1.7350976467132568, - -1.7330762147903442, - -1.7300828695297241, - -1.7261991500854492, - -1.7215310335159302, - -1.7162059545516968, - -1.7103689908981323, - -1.7041795253753662, - -1.6978062391281128, - -1.6914230585098267, - -1.6852041482925415, - -1.6793190240859985, - -1.6739283800125122, - -1.669179081916809, - -1.6652008295059204, - -1.6621019840240479, - -1.659967303276062, - -1.6588547229766846, - -1.6587947607040405, - -1.7360919713974, - -1.734134316444397, - -1.7311757802963257, - -1.7272971868515015, - -1.7226041555404663, - -1.7172249555587769, - -1.7113059759140015, - -1.7050089836120605, - -1.6985056400299072, - -1.691973328590393, - -1.685590147972107, - -1.6795302629470825, - -1.6739591360092163, - -1.6690285205841064, - -1.6648730039596558, - -1.6616058349609375, - -1.6593163013458252, - -1.658066749572754, - -1.6578913927078247, - -1.6587947607040405, - -1.7360919713974, - -1.7333259582519531, - -1.7295811176300049, - -1.7249597311019897, - -1.7195876836776733, - -1.7136117219924927, - -1.7071945667266846, - -1.7005115747451782, - -1.6937447786331177, - -1.6870789527893066, - -1.6806957721710205, - -1.6747695207595825, - -1.6694616079330444, - -1.6649171113967896, - -1.6612597703933716, - -1.6585893630981445, - -1.656978964805603, - -1.6564722061157227, - -1.6570830345153809, - -1.6587947607040405, - -1.7360919713974, - -1.7327601909637451, - -1.7284650802612305, - -1.7233238220214844, - -1.7174766063690186, - -1.711082935333252, - -1.7043172121047974, - -1.6973639726638794, - -1.6904128789901733, - -1.6836535930633545, - -1.677270531654358, - -1.6714376211166382, - -1.6663141250610352, - -1.6620396375656128, - -1.6587309837341309, - -1.6564782857894897, - -1.6553430557250977, - -1.6553561687469482, - -1.6565172672271729, - -1.6587947607040405, - -1.7360919713974, - -1.7324984073638916, - -1.7279486656188965, - -1.722566843032837, - -1.71649968624115, - -1.7099127769470215, - -1.7029856443405151, - -1.6959073543548584, - -1.6888710260391235, - -1.6820684671401978, - -1.6756852865219116, - -1.6698956489562988, - -1.6648575067520142, - -1.6607080698013306, - -1.6575608253479004, - -1.655501365661621, - -1.6545860767364502, - -1.6548397541046143, - -1.6562554836273193, - -1.6587947607040405, - -1.7360919713974, - -1.7325688600540161, - -1.7280877828598022, - -1.7227706909179688, - -1.7167627811431885, - -1.7102278470993042, - -1.7033442258834839, - -1.6962995529174805, - -1.689286231994629, - -1.682495355606079, - -1.676112174987793, - -1.6703108549118042, - -1.6652497053146362, - -1.6610666513442993, - -1.657875895500183, - -1.6557644605636597, - -1.654789924621582, - -1.6549787521362305, - -1.6563259363174438, - -1.6587947607040405, - -1.7360919713974, - -1.732964038848877, - -1.7288672924041748, - -1.723913311958313, - -1.718237280845642, - -1.7119941711425781, - -1.7053539752960205, - -1.6984981298446655, - -1.6916134357452393, - -1.6848878860473633, - -1.6785047054290771, - -1.672638177871704, - -1.6674482822418213, - -1.6630765199661255, - -1.659642219543457, - -1.6572389602661133, - -1.6559325456619263, - -1.655758261680603, - -1.6567211151123047, - -1.6587947607040405 - ], - "z": [ - 0.5434505939483643, - 0.5489746332168579, - 0.5658696293830872, - 0.5936750173568726, - 0.6316320896148682, - 0.6787055730819702, - 0.733611524105072, - 0.794852077960968, - 0.8607569336891174, - 0.9295282363891602, - 0.9992901086807251, - 1.068139672279358, - 1.1341989040374756, - 1.1956658363342285, - 1.250863790512085, - 1.2982871532440186, - 1.3366423845291138, - 1.3648831844329834, - 1.3822391033172607, - 1.3882369995117188, - 0.5434505939483643, - 0.5493320822715759, - 0.5665748119354248, - 0.5947086811065674, - 0.6329660415649414, - 0.6803035140037537, - 0.7354297637939453, - 0.7968410849571228, - 0.8628623485565186, - 0.9316927194595337, - 1.0014545917510986, - 1.0702451467514038, - 1.1361879110336304, - 1.197484016418457, - 1.2524616718292236, - 1.2996211051940918, - 1.3376760482788086, - 1.3655884265899658, - 1.3825966119766235, - 1.3882369995117188, - 0.5434505939483643, - 0.5496765375137329, - 0.5672543048858643, - 0.5957046747207642, - 0.6342513561248779, - 0.6818430423736572, - 0.737181544303894, - 0.7987573742866516, - 0.8648908734321594, - 0.9337781071662903, - 1.0035400390625, - 1.0722736120224, - 1.1381042003631592, - 1.1992359161376953, - 1.254001259803772, - 1.3009064197540283, - 1.3386720418930054, - 1.3662678003311157, - 1.3829410076141357, - 1.3882369995117188, - 0.5434505939483643, - 0.5499705076217651, - 0.5678343772888184, - 0.5965548753738403, - 0.6353485584259033, - 0.6831573247909546, - 0.7386770844459534, - 0.8003933429718018, - 0.8666226267814636, - 0.9355584383010864, - 1.0053203105926514, - 1.074005365371704, - 1.1397401094436646, - 1.2007313966751099, - 1.2553155422210693, - 1.3020036220550537, - 1.3395222425460815, - 1.3668478727340698, - 1.3832350969314575, - 1.3882369995117188, - 0.5434505939483643, - 0.5501823425292969, - 0.5682520866394043, - 0.5971672534942627, - 0.636138916015625, - 0.6841040253639221, - 0.7397542595863342, - 0.8015716075897217, - 0.8678699731826782, - 0.9368407130241394, - 1.0066026449203491, - 1.0752527713775635, - 1.140918493270874, - 1.2018085718154907, - 1.256262183189392, - 1.3027939796447754, - 1.340134620666504, - 1.3672657012939453, - 1.3834468126296997, - 1.3882369995117188, - 0.5434505939483643, - 0.5502889156341553, - 0.5684623718261719, - 0.5974754691123962, - 0.6365365982055664, - 0.6845804452896118, - 0.7402963638305664, - 0.8021646738052368, - 0.8684977293014526, - 0.9374860525131226, - 1.0072479248046875, - 1.075880527496338, - 1.1415114402770996, - 1.2023507356643677, - 1.2567386627197266, - 1.3031916618347168, - 1.3404428958892822, - 1.367475986480713, - 1.3835535049438477, - 1.3882369995117188, - 0.5434505939483643, - 0.5502787828445435, - 0.5684423446655273, - 0.597446084022522, - 0.6364986896514893, - 0.684535026550293, - 0.7402446866035461, - 0.802108108997345, - 0.8684378266334534, - 0.9374245405197144, - 1.0071864128112793, - 1.0758205652236938, - 1.1414549350738525, - 1.2022989988327026, - 1.2566931247711182, - 1.3031537532806396, - 1.3404134511947632, - 1.3674558401107788, - 1.3835432529449463, - 1.3882369995117188, - 0.5434505939483643, - 0.5501528978347778, - 0.5681941509246826, - 0.597082257270813, - 0.6360292434692383, - 0.6839725971221924, - 0.7396047711372375, - 0.8014081120491028, - 0.8676968216896057, - 0.9366627335548401, - 1.0064246654510498, - 1.0750795602798462, - 1.1407549381256104, - 1.201659083366394, - 1.2561308145523071, - 1.3026843070983887, - 1.3400496244430542, - 1.367207646369934, - 1.3834174871444702, - 1.3882369995117188, - 0.5434505939483643, - 0.5499250888824463, - 0.5677447319030762, - 0.5964235067367554, - 0.6351790428161621, - 0.6829542517662048, - 0.7384459972381592, - 0.8001405000686646, - 0.8663550019264221, - 0.9352833032608032, - 1.0050451755523682, - 1.0737377405166626, - 1.1394872665405273, - 1.200500249862671, - 1.2551124095916748, - 1.3018341064453125, - 1.3393908739089966, - 1.3667582273483276, - 1.3831896781921387, - 1.3882369995117188, - 0.5434505939483643, - 0.5496199131011963, - 0.5671427249908447, - 0.5955411195755005, - 0.6340402960777283, - 0.68159019947052, - 0.736893892288208, - 0.7984427213668823, - 0.8645577430725098, - 0.9334356784820557, - 1.0031975507736206, - 1.071940541267395, - 1.1377894878387451, - 1.1989482641220093, - 1.2537484169006348, - 1.3006954193115234, - 1.3385084867477417, - 1.3661562204360962, - 1.3828845024108887, - 1.3882369995117188, - 0.5434505939483643, - 0.549270510673523, - 0.5664534568786621, - 0.5945307016372681, - 0.6327364444732666, - 0.6800284385681152, - 0.735116720199585, - 0.7964986562728882, - 0.8624998331069946, - 0.931320071220398, - 1.001081943511963, - 1.0698826313018799, - 1.135845422744751, - 1.1971709728240967, - 1.2521865367889404, - 1.299391508102417, - 1.3374980688095093, - 1.3654669523239136, - 1.3825350999832153, - 1.3882369995117188, - 0.5434505939483643, - 0.5489147305488586, - 0.5657515525817871, - 0.5935018658638, - 0.63140869140625, - 0.6784379482269287, - 0.7333070039749146, - 0.7945190072059631, - 0.8604043126106262, - 0.9291657209396362, - 0.998927652835846, - 1.0677870512008667, - 1.1338658332824707, - 1.1953613758087158, - 1.2505961656570435, - 1.2980637550354004, - 1.3364691734313965, - 1.3647650480270386, - 1.3821792602539062, - 1.3882369995117188, - 0.5434505939483643, - 0.5485910773277283, - 0.5651130676269531, - 0.5925660133361816, - 0.6302009224891663, - 0.67699134349823, - 0.7316608428955078, - 0.7927182912826538, - 0.8584981560707092, - 0.9272061586380005, - 0.9969680309295654, - 1.0658810138702393, - 1.1320650577545166, - 1.193715214729309, - 1.2491495609283447, - 1.2968560457229614, - 1.3355333805084229, - 1.3641265630722046, - 1.3818556070327759, - 1.3882369995117188, - 0.5434505939483643, - 0.5483347177505493, - 0.5646072626113892, - 0.5918245315551758, - 0.6292440891265869, - 0.675845205783844, - 0.730356752872467, - 0.7912917137145996, - 0.8569880723953247, - 0.9256536364555359, - 0.9954155683517456, - 1.06437087059021, - 1.1306384801864624, - 1.1924110651016235, - 1.248003363609314, - 1.2958991527557373, - 1.334791898727417, - 1.3636207580566406, - 1.3815991878509521, - 1.3882369995117188, - 0.5434505939483643, - 0.5481733083724976, - 0.564288854598999, - 0.591357946395874, - 0.6286418437957764, - 0.6751238107681274, - 0.7295358777046204, - 0.7903938293457031, - 0.8560375571250916, - 0.9246764779090881, - 0.9944384098052979, - 1.063420295715332, - 1.129740595817566, - 1.1915901899337769, - 1.2472820281982422, - 1.2952969074249268, - 1.3343253135681152, - 1.36330246925354, - 1.3814377784729004, - 1.3882369995117188, - 0.5434505939483643, - 0.5481244325637817, - 0.5641924142837524, - 0.5912165641784668, - 0.6284594535827637, - 0.6749053597450256, - 0.7292872667312622, - 0.790121853351593, - 0.8557496666908264, - 0.9243805408477783, - 0.994142472743988, - 1.063132405281067, - 1.1294686794281006, - 1.1913416385650635, - 1.2470635175704956, - 1.295114517211914, - 1.334183931350708, - 1.363205909729004, - 1.3813889026641846, - 1.3882369995117188, - 0.5434505939483643, - 0.5481933355331421, - 0.5643284320831299, - 0.5914158821105957, - 0.6287167072296143, - 0.6752134561538696, - 0.729637861251831, - 0.7905053496360779, - 0.8561556339263916, - 0.9247978925704956, - 0.9945598244667053, - 1.0635384321212769, - 1.1298521757125854, - 1.1916922330856323, - 1.2473716735839844, - 1.2953717708587646, - 1.334383249282837, - 1.3633419275283813, - 1.381457805633545, - 1.3882369995117188, - 0.5434505939483643, - 0.5483726263046265, - 0.5646820664405823, - 0.5919342637062073, - 0.6293857097625732, - 0.67601478099823, - 0.730549693107605, - 0.7915027737617493, - 0.8572114706039429, - 0.9258833527565002, - 0.9956452250480652, - 1.0645942687988281, - 1.1308495998382568, - 1.1926040649414062, - 1.2481729984283447, - 1.2960407733917236, - 1.3349015712738037, - 1.3636956214904785, - 1.3816370964050293, - 1.3882369995117188, - 0.5434505939483643, - 0.5486427545547485, - 0.5652150511741638, - 0.5927155017852783, - 0.6303938627243042, - 0.6772224307060242, - 0.7319238185882568, - 0.7930059432983398, - 0.8588026762008667, - 0.9275192022323608, - 0.9972810745239258, - 1.066185474395752, - 1.1323528289794922, - 1.193978190422058, - 1.2493805885314941, - 1.2970489263534546, - 1.3356828689575195, - 1.36422860622406, - 1.381907343864441, - 1.3882369995117188, - 0.5434505939483643, - 0.5489746332168579, - 0.5658696293830872, - 0.5936750173568726, - 0.6316320896148682, - 0.6787055730819702, - 0.733611524105072, - 0.794852077960968, - 0.8607569336891174, - 0.9295282363891602, - 0.9992901086807251, - 1.068139672279358, - 1.1341989040374756, - 1.1956658363342285, - 1.250863790512085, - 1.2982871532440186, - 1.3366423845291138, - 1.3648831844329834, - 1.3822391033172607, - 1.3882369995117188 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.14727970957756042, - -0.14703711867332458, - -0.14620433747768402, - -0.14480410516262054, - -0.1428745985031128, - -0.14046846330165863, - -0.13765132427215576, - -0.13450004160404205, - -0.13110055029392242, - -0.12754559516906738, - -0.1239321380853653, - -0.12035875022411346, - -0.11692290008068085, - -0.11371830850839615, - -0.11083240061998367, - -0.10834387689828873, - -0.10632063448429108, - -0.10481785237789154, - -0.1038765236735344, - -0.10352233052253723, - -0.14727970957756042, - -0.12610489130020142, - -0.10491086542606354, - -0.0842757374048233, - -0.0647624135017395, - -0.04690317064523697, - -0.031185120344161987, - -0.018037036061286926, - -0.007817566394805908, - -0.000805489718914032, - 0.0028079599142074585, - 0.0029242336750030518, - -0.0004598945379257202, - -0.00725208967924118, - -0.01726708561182022, - -0.03023168444633484, - -0.045792266726493835, - -0.06352436542510986, - -0.08294429630041122, - -0.10352233052253723, - -0.14727972447872162, - -0.1074349507689476, - -0.06808023154735565, - -0.03028908371925354, - 0.004907652735710144, - 0.036549896001815796, - 0.06377455592155457, - 0.08583903312683105, - 0.10214139521121979, - 0.11223697662353516, - 0.11585043370723724, - 0.11288319528102875, - 0.10341617465019226, - 0.08770759403705597, - 0.06618601083755493, - 0.039438396692276, - 0.008194386959075928, - -0.02669374644756317, - -0.06427435576915741, - -0.10352233797311783, - -0.14727972447872162, - -0.09305046498775482, - -0.03970363736152649, - 0.011305585503578186, - 0.058585792779922485, - 0.10084730386734009, - 0.1369374394416809, - 0.16587156057357788, - 0.186860591173172, - 0.19933190941810608, - 0.20294538140296936, - 0.19760239124298096, - 0.1834487020969391, - 0.16087046265602112, - 0.13048341870307922, - 0.09311652183532715, - 0.049789056181907654, - 0.0016828477382659912, - -0.04988987743854523, - -0.10352234542369843, - -0.14727972447872162, - -0.08451023697853088, - -0.022856123745441437, - 0.0360008180141449, - 0.09045515954494476, - 0.13902148604393005, - 0.18037503957748413, - 0.2133878469467163, - 0.2371593713760376, - 0.2510411739349365, - 0.2546546459197998, - 0.24790117144584656, - 0.23096498847007751, - 0.20430806279182434, - 0.1686576008796692, - 0.12498590350151062, - 0.07448428869247437, - 0.01853036880493164, - -0.04134964197874069, - -0.10352234542369843, - -0.14727972447872162, - -0.08273971080780029, - -0.019363388419151306, - 0.04112052917480469, - 0.09706215560436249, - 0.14693552255630493, - 0.18938031792640686, - 0.22323867678642273, - 0.24758708477020264, - 0.26176130771636963, - 0.2653747797012329, - 0.2583288848400116, - 0.24081581830978394, - 0.21331334114074707, - 0.17657166719436646, - 0.13159289956092834, - 0.07960399985313416, - 0.022023096680641174, - -0.0395791232585907, - -0.10352234542369843, - -0.14727972447872162, - -0.08793076127767563, - -0.029603876173496246, - 0.02610987424850464, - 0.07769086956977844, - 0.12373200058937073, - 0.1629774272441864, - 0.19435665011405945, - 0.21701371669769287, - 0.23033061623573303, - 0.2339440882205963, - 0.22775551676750183, - 0.21193379163742065, - 0.1869104504585266, - 0.15336811542510986, - 0.1122216135263443, - 0.0645933449268341, - 0.011782616376876831, - -0.04477016627788544, - -0.10352234542369843, - -0.14727972447872162, - -0.09952085465192795, - -0.05246792733669281, - -0.007404431700706482, - 0.03444044291973114, - 0.07192520797252655, - 0.10402746498584747, - 0.12987151741981506, - 0.14875242114067078, - 0.16015508770942688, - 0.16376855969429016, - 0.15949422121047974, - 0.14744865894317627, - 0.12796050310134888, - 0.10156132280826569, - 0.068971186876297, - 0.031079038977622986, - -0.01108144223690033, - -0.05636026710271835, - -0.10352234542369843, - -0.14727972447872162, - -0.11625403165817261, - -0.08547784388065338, - -0.05579065531492233, - -0.02800225466489792, - -0.0028706565499305725, - 0.01891864836215973, - 0.036771297454833984, - 0.050200313329696655, - 0.058839350938797, - 0.062452808022499084, - 0.060942113399505615, - 0.05434843897819519, - 0.04285167157649994, - 0.026765435934066772, - 0.006528481841087341, - -0.017307184636592865, - -0.044091351330280304, - -0.07309343665838242, - -0.10352233797311783, - -0.14727970957756042, - -0.13631698489189148, - -0.12505649030208588, - -0.1138053834438324, - -0.10287058353424072, - -0.0925503596663475, - -0.08312621712684631, - -0.07485520839691162, - -0.06796295940876007, - -0.06263748556375504, - -0.05902402848005295, - -0.05722115933895111, - -0.057278066873550415, - -0.059193193912506104, - -0.06291428208351135, - -0.06833985447883606, - -0.07532191276550293, - -0.0836699903011322, - -0.09315638244152069, - -0.10352233052253723, - -0.14727970957756042, - -0.157535582780838, - -0.1669148951768875, - -0.17516182363033295, - -0.1820514053106308, - -0.18739572167396545, - -0.19104896485805511, - -0.1929115355014801, - -0.19293256103992462, - -0.1911115199327469, - -0.1874980628490448, - -0.18219076097011566, - -0.1753343790769577, - -0.1671159565448761, - -0.1577596515417099, - -0.14752069115638733, - -0.13667835295200348, - -0.12552841007709503, - -0.11437498033046722, - -0.10352232307195663, - -0.14727970957756042, - -0.17761045694351196, - -0.2065170705318451, - -0.23321104049682617, - -0.2569642663002014, - -0.27712875604629517, - -0.2931545078754425, - -0.3046043813228607, - -0.31116607785224915, - -0.3126605749130249, - -0.309047132730484, - -0.3004242777824402, - -0.2870272397994995, - -0.2692214846611023, - -0.2474927008152008, - -0.22243353724479675, - -0.1947275698184967, - -0.1651305854320526, - -0.13444986939430237, - -0.10352231562137604, - -0.14727969467639923, - -0.1943661868572235, - -0.2395714819431305, - -0.2816625237464905, - -0.3194911479949951, - -0.35202547907829285, - -0.37837809324264526, - -0.39783021807670593, - -0.4098511338233948, - -0.41411292552948, - -0.4104994535446167, - -0.3991093337535858, - -0.3802530765533447, - -0.35444509983062744, - -0.3223894536495209, - -0.28496044874191284, - -0.243179053068161, - -0.198184996843338, - -0.15120559930801392, - -0.10352231562137604, - -0.14727969467639923, - -0.20598705112934113, - -0.2624962329864502, - -0.3152657747268677, - -0.36285635828971863, - -0.40396973490715027, - -0.4374845027923584, - -0.46248650550842285, - -0.47829362750053406, - -0.48447468876838684, - -0.48086121678352356, - -0.4675518274307251, - -0.44490936398506165, - -0.41355153918266296, - -0.3743336796760559, - -0.32832562923431396, - -0.2767823338508606, - -0.22110971808433533, - -0.16282644867897034, - -0.10352231562137604, - -0.14727969467639923, - -0.21121370792388916, - -0.27280694246292114, - -0.3303793966770172, - -0.3823605179786682, - -0.42733246088027954, - -0.4640685021877289, - -0.49156662821769714, - -0.5090766549110413, - -0.5161210298538208, - -0.5125075578689575, - -0.4983348548412323, - -0.47398948669433594, - -0.44013553857803345, - -0.39769643545150757, - -0.34782981872558594, - -0.29189592599868774, - -0.23142047226428986, - -0.16805312037467957, - -0.10352231562137604, - -0.14727969467639923, - -0.20947979390621185, - -0.2693864703178406, - -0.3253655433654785, - -0.3758901357650757, - -0.4195820391178131, - -0.45524945855140686, - -0.4819194972515106, - -0.4988645911216736, - -0.5056226253509521, - -0.5020091533660889, - -0.4881227910518646, - -0.4643423557281494, - -0.43131646513938904, - -0.38994601368904114, - -0.3413594365119934, - -0.28688210248947144, - -0.2279999852180481, - -0.16631920635700226, - -0.10352231562137604, - -0.14727969467639923, - -0.20097319781780243, - -0.2526053190231323, - -0.30076760053634644, - -0.34414634108543396, - -0.38155826926231384, - -0.4119828939437866, - -0.4345903992652893, - -0.4487639367580414, - -0.45411697030067444, - -0.45050349831581116, - -0.4380221366882324, - -0.4170132577419281, - -0.3880499303340912, - -0.35192224383354187, - -0.3096156120300293, - -0.2622841000556946, - -0.21121881902217865, - -0.15781261026859283, - -0.10352231562137604, - -0.14727970957756042, - -0.1866157352924347, - -0.22428199648857117, - -0.25925105810165405, - -0.2905690371990204, - -0.3173816204071045, - -0.3389574885368347, - -0.35470813512802124, - -0.36420387029647827, - -0.36718565225601196, - -0.36357221007347107, - -0.3534620404243469, - -0.33713099360466003, - -0.3150244951248169, - -0.2877455949783325, - -0.2560383081436157, - -0.22076758742332458, - -0.1828955113887787, - -0.1434551477432251, - -0.10352231562137604, - -0.14727970957756042, - -0.16796326637268066, - -0.18748584389686584, - -0.20531490445137024, - -0.22096413373947144, - -0.2340066283941269, - -0.24408665299415588, - -0.2509292662143707, - -0.2543477714061737, - -0.2542489469051361, - -0.2506355047225952, - -0.24360597133636475, - -0.23335212469100952, - -0.22015364468097687, - -0.20437057316303253, - -0.18643340468406677, - -0.16683143377304077, - -0.14609935879707336, - -0.12480267137289047, - -0.10352232307195663, - -0.14727970957756042, - -0.1470371037721634, - -0.14620432257652283, - -0.14480407536029816, - -0.1428745537996292, - -0.14046841859817505, - -0.13765127956867218, - -0.13449998199939728, - -0.13110049068927765, - -0.1275455206632614, - -0.12393207103013992, - -0.12035868316888809, - -0.11692284047603607, - -0.11371825635433197, - -0.1108323484659195, - -0.10834383964538574, - -0.10632059723138809, - -0.10481782257556915, - -0.1038765087723732, - -0.10352233052253723 - ], - "y": [ - -1.6834644079208374, - -1.6861727237701416, - -1.6897989511489868, - -1.694244146347046, - -1.6993869543075562, - -1.7050873041152954, - -1.7111896276474, - -1.7175273895263672, - -1.7239278554916382, - -1.7302162647247314, - -1.736221194267273, - -1.74177885055542, - -1.7467375993728638, - -1.750962257385254, - -1.7543374300003052, - -1.756771206855774, - -1.7581970691680908, - -1.7585762739181519, - -1.7578983306884766, - -1.7561817169189453, - -1.6834644079208374, - -1.6864901781082153, - -1.690425157546997, - -1.695162057876587, - -1.7005715370178223, - -1.7065062522888184, - -1.7128041982650757, - -1.7192935943603516, - -1.725797414779663, - -1.7321382761001587, - -1.7381432056427002, - -1.7436485290527344, - -1.7485038042068481, - -1.7525768280029297, - -1.7557563781738281, - -1.75795578956604, - -1.7591149806976318, - -1.759202480316162, - -1.7582157850265503, - -1.7561817169189453, - -1.6834644079208374, - -1.6865334510803223, - -1.6905105113983154, - -1.6952872276306152, - -1.7007331848144531, - -1.7066997289657593, - -1.713024377822876, - -1.7195345163345337, - -1.7260524034500122, - -1.7324004173278809, - -1.7384053468704224, - -1.7439035177230835, - -1.7487447261810303, - -1.75279700756073, - -1.755949854850769, - -1.7581173181533813, - -1.7592401504516602, - -1.7592878341674805, - -1.7582590579986572, - -1.7561817169189453, - -1.6834644079208374, - -1.68629789352417, - -1.690045952796936, - -1.694606065750122, - -1.6998541355133057, - -1.7056468725204468, - -1.7118263244628906, - -1.7182239294052124, - -1.7246651649475098, - -1.7309743165969849, - -1.7369792461395264, - -1.7425161600112915, - -1.747434139251709, - -1.7515989542007446, - -1.7548969984054565, - -1.7572383880615234, - -1.7585591077804565, - -1.7588231563568115, - -1.7580235004425049, - -1.7561817169189453, - -1.6834644079208374, - -1.6858091354370117, - -1.6890815496444702, - -1.693192481994629, - -1.69802987575531, - -1.703461766242981, - -1.7093398571014404, - -1.7155040502548218, - -1.7217859029769897, - -1.728014349937439, - -1.7340192794799805, - -1.739637017250061, - -1.7447142601013184, - -1.7491124868392944, - -1.7527118921279907, - -1.7554140090942383, - -1.7571454048156738, - -1.7578587532043457, - -1.7575346231460571, - -1.7561817169189453, - -1.6834644079208374, - -1.685119867324829, - -1.6877219676971436, - -1.691199541091919, - -1.6954580545425415, - -1.7003810405731201, - -1.7058345079421997, - -1.7116694450378418, - -1.7177268266677856, - -1.7238413095474243, - -1.7298463582992554, - -1.7355778217315674, - -1.7408796548843384, - -1.7456070184707642, - -1.7496311664581299, - -1.7528421878814697, - -1.7551525831222534, - -1.756499171257019, - -1.756845474243164, - -1.7561817169189453, - -1.6834644079208374, - -1.6843050718307495, - -1.6861144304275513, - -1.6888433694839478, - -1.6924172639846802, - -1.6967387199401855, - -1.7016899585723877, - -1.707135796546936, - -1.7129275798797607, - -1.7189075946807861, - -1.7249125242233276, - -1.730778694152832, - -1.7363460063934326, - -1.7414625883102417, - -1.7459888458251953, - -1.7498013973236084, - -1.7527962923049927, - -1.7548917531967163, - -1.756030559539795, - -1.7561818361282349, - -1.6834644079208374, - -1.683452844619751, - -1.6844332218170166, - -1.686379075050354, - -1.689237117767334, - -1.6929295063018799, - -1.6973553895950317, - -1.7023942470550537, - -1.7079085111618042, - -1.7137477397918701, - -1.7197526693344116, - -1.725759506225586, - -1.7316044569015503, - -1.7371280193328857, - -1.7421795129776, - -1.7466212511062622, - -1.750331997871399, - -1.7532105445861816, - -1.7551783323287964, - -1.7561818361282349, - -1.683464527130127, - -1.6826555728912354, - -1.6828606128692627, - -1.684073805809021, - -1.6862622499465942, - -1.6893659830093384, - -1.6933006048202515, - -1.6979587078094482, - -1.7032132148742676, - -1.7089208364486694, - -1.714925765991211, - -1.7210642099380493, - -1.7271689176559448, - -1.7330732345581055, - -1.7386161088943481, - -1.7436463832855225, - -1.7480268478393555, - -1.7516379356384277, - -1.7543811798095703, - -1.7561818361282349, - -1.683464527130127, - -1.6819998025894165, - -1.681566834449768, - -1.6821774244308472, - -1.6838148832321167, - -1.6864346265792847, - -1.689965009689331, - -1.6943098306655884, - -1.6993507146835327, - -1.704949975013733, - -1.7109549045562744, - -1.7172017097473145, - -1.723520040512085, - -1.729737639427185, - -1.7356846332550049, - -1.7411991357803345, - -1.7461304664611816, - -1.750344157218933, - -1.753725290298462, - -1.7561818361282349, - -1.683464527130127, - -1.6815564632415771, - -1.680692195892334, - -1.680895447731018, - -1.6821603775024414, - -1.684452772140503, - -1.687709927558899, - -1.6918431520462036, - -1.6967394351959229, - -1.7022655010223389, - -1.7082704305648804, - -1.7145905494689941, - -1.7210533618927002, - -1.727482557296753, - -1.7337028980255127, - -1.7395446300506592, - -1.744848370552063, - -1.749469518661499, - -1.7532819509506226, - -1.7561818361282349, - -1.683464527130127, - -1.6813735961914062, - -1.6803314685821533, - -1.6803666353225708, - -1.6814780235290527, - -1.6836354732513428, - -1.6867798566818237, - -1.6908257007598877, - -1.695662498474121, - -1.7011582851409912, - -1.7071632146835327, - -1.7135134935379028, - -1.7200359106063843, - -1.7265524864196777, - -1.732885479927063, - -1.7388622760772705, - -1.7443195581436157, - -1.7491087913513184, - -1.7530990839004517, - -1.7561818361282349, - -1.683464527130127, - -1.6814709901809692, - -1.6805237531661987, - -1.6806484460830688, - -1.6818417310714722, - -1.6840710639953613, - -1.6872755289077759, - -1.6913678646087646, - -1.696236491203308, - -1.7017483711242676, - -1.707753300666809, - -1.7140874862670898, - -1.7205781936645508, - -1.7270481586456299, - -1.733321189880371, - -1.7392258644104004, - -1.7446013689041138, - -1.7493010759353638, - -1.7531965970993042, - -1.7561818361282349, - -1.683464527130127, - -1.6818382740020752, - -1.6812481880187988, - -1.6817102432250977, - -1.6832120418548584, - -1.685712456703186, - -1.6891433000564575, - -1.6934109926223755, - -1.6983991861343384, - -1.7039717435836792, - -1.7099766731262207, - -1.7162503004074097, - -1.722621202468872, - -1.7289159297943115, - -1.7349625825881958, - -1.7405961751937866, - -1.7456632852554321, - -1.7500253915786743, - -1.7535637617111206, - -1.7561818361282349, - -1.683464527130127, - -1.682435393333435, - -1.6824262142181396, - -1.6834371089935303, - -1.6854405403137207, - -1.6883817911148071, - -1.6921806335449219, - -1.6967335939407349, - -1.7019163370132446, - -1.707587480545044, - -1.713592529296875, - -1.7197673320770264, - -1.7259438037872314, - -1.7319532632827759, - -1.737631916999817, - -1.742824673652649, - -1.7473900318145752, - -1.7512035369873047, - -1.75416100025177, - -1.7561818361282349, - -1.6834644079208374, - -1.6831978559494019, - -1.6839302778244019, - -1.6856417655944824, - -1.6882855892181396, - -1.6917897462844849, - -1.6960585117340088, - -1.7009755373001099, - -1.7064067125320435, - -1.712203860282898, - -1.7182087898254395, - -1.7242578268051147, - -1.7301857471466064, - -1.7358311414718628, - -1.7410398721694946, - -1.7456698417663574, - -1.7495946884155273, - -1.752707600593567, - -1.7549233436584473, - -1.7561818361282349, - -1.6834644079208374, - -1.6840429306030273, - -1.68559730052948, - -1.6880853176116943, - -1.6914390325546265, - -1.695567011833191, - -1.7003567218780518, - -1.7056772708892822, - -1.7113838195800781, - -1.717320442199707, - -1.7233253717422485, - -1.7292348146438599, - -1.7348874807357788, - -1.7401292324066162, - -1.7448171377182007, - -1.7488232851028442, - -1.7520383596420288, - -1.754374623298645, - -1.7557684183120728, - -1.7561818361282349, - -1.6834644079208374, - -1.6848790645599365, - -1.6872466802597046, - -1.6905031204223633, - -1.6945592164993286, - -1.6993043422698975, - -1.7046092748641968, - -1.710329294204712, - -1.7163081169128418, - -1.72238290309906, - -1.7283878326416016, - -1.734159231185913, - -1.7395395040512085, - -1.7443819046020508, - -1.7485544681549072, - -1.7519433498382568, - -1.7544560432434082, - -1.7560240030288696, - -1.756604552268982, - -1.7561818361282349, - -1.6834644079208374, - -1.6856155395507812, - -1.688699722290039, - -1.6926329135894775, - -1.6973077058792114, - -1.7025967836380005, - -1.7083556652069092, - -1.7144273519515991, - -1.7206461429595947, - -1.7268426418304443, - -1.7328475713729858, - -1.738497257232666, - -1.7436375617980957, - -1.7481282949447632, - -1.7518467903137207, - -1.7546919584274292, - -1.7565858364105225, - -1.757477045059204, - -1.7573411464691162, - -1.7561817169189453, - -1.6834644079208374, - -1.6861727237701416, - -1.6897989511489868, - -1.694244146347046, - -1.6993869543075562, - -1.7050873041152954, - -1.7111896276474, - -1.7175273895263672, - -1.7239278554916382, - -1.7302162647247314, - -1.736221194267273, - -1.74177885055542, - -1.7467375993728638, - -1.750962257385254, - -1.7543374300003052, - -1.756771206855774, - -1.7581970691680908, - -1.7585762739181519, - -1.7578983306884766, - -1.7561817169189453 - ], - "z": [ - 1.4272891283035278, - 1.4215679168701172, - 1.4041942358016968, - 1.3756420612335205, - 1.3366901874542236, - 1.2884012460708618, - 1.232092261314392, - 1.1692993640899658, - 1.1017351150512695, - 1.0312427282333374, - 0.9597450494766235, - 0.8891922235488892, - 0.8215088248252869, - 0.7585410475730896, - 0.7020065784454346, - 0.6534473299980164, - 0.6141880750656128, - 0.585299551486969, - 0.56756991147995, - 0.5614826679229736, - 1.4272891283035278, - 1.4226524829864502, - 1.4063338041305542, - 1.3787782192230225, - 1.3407374620437622, - 1.2932491302490234, - 1.2376086711883545, - 1.1753336191177368, - 1.1081228256225586, - 1.0378096103668213, - 0.9663118720054626, - 0.8955799341201782, - 0.8275431394577026, - 0.7640573978424072, - 0.7068544626235962, - 0.6574945449829102, - 0.6173242330551147, - 0.5874391198158264, - 0.568654477596283, - 0.5614826679229736, - 1.4272891283035278, - 1.4235996007919312, - 1.4082024097442627, - 1.3815171718597412, - 1.3442721366882324, - 1.2974830865859985, - 1.2424262762069702, - 1.1806037425994873, - 1.1137014627456665, - 1.0435446500778198, - 0.972046971321106, - 0.9011586308479309, - 0.8328132033348083, - 0.7688751220703125, - 0.7110884189605713, - 0.6610292196273804, - 0.6200631856918335, - 0.5893076658248901, - 0.5696016550064087, - 0.5614826679229736, - 1.4272891283035278, - 1.424306869506836, - 1.409597396850586, - 1.3835620880126953, - 1.3469111919403076, - 1.3006441593170166, - 1.2460232973098755, - 1.1845383644104004, - 1.1178666353225708, - 1.0478266477584839, - 0.9763289093971252, - 0.9053237438201904, - 0.836747944355011, - 0.7724721431732178, - 0.7142494916915894, - 0.6636682748794556, - 0.6221081614494324, - 0.5907027721405029, - 0.5703089237213135, - 0.5614826679229736, - 1.4272891283035278, - 1.4246973991394043, - 1.4103679656982422, - 1.3846914768218994, - 1.3483686447143555, - 1.3023899793624878, - 1.2480098009109497, - 1.1867114305496216, - 1.1201668977737427, - 1.0501914024353027, - 0.9786936640739441, - 0.9076240062713623, - 0.8389209508895874, - 0.7744585871696472, - 0.7159953117370605, - 0.6651257276535034, - 0.6232374906539917, - 0.5914732217788696, - 0.5706994533538818, - 0.5614826679229736, - 1.4272891283035278, - 1.4247289896011353, - 1.4104301929473877, - 1.3847829103469849, - 1.3484865427017212, - 1.3025312423706055, - 1.2481704950332642, - 1.186887264251709, - 1.1203529834747314, - 1.0503827333450317, - 0.9788849949836731, - 0.9078100919723511, - 0.8390967845916748, - 0.7746192812919617, - 0.7161365151405334, - 0.6652436256408691, - 0.6233288645744324, - 0.5915355682373047, - 0.5707310438156128, - 0.5614826679229736, - 1.4272891283035278, - 1.4243981838226318, - 1.4097776412963867, - 1.3838263750076294, - 1.3472521305084229, - 1.3010525703430176, - 1.246488094329834, - 1.1850467920303345, - 1.118404746055603, - 1.048379898071289, - 0.9768821597099304, - 0.9058618545532227, - 0.8372563123703003, - 0.7729368209838867, - 0.7146579027175903, - 0.6640092134475708, - 0.6223723888397217, - 0.5908830165863037, - 0.5704002380371094, - 0.5614826679229736, - 1.4272891283035278, - 1.4237408638000488, - 1.4084810018539429, - 1.3819255828857422, - 1.3447991609573364, - 1.2981144189834595, - 1.2431446313858032, - 1.1813894510269165, - 1.1145333051681519, - 1.0443998575210571, - 0.9729021191596985, - 0.9019904136657715, - 0.8335990309715271, - 0.7695934772491455, - 0.7117196917533875, - 0.6615562438964844, - 0.6204715967178345, - 0.5895862579345703, - 0.5697429180145264, - 0.5614826679229736, - 1.4272891283035278, - 1.422828197479248, - 1.4066805839538574, - 1.379286527633667, - 1.3413934707641602, - 1.2940349578857422, - 1.2385027408599854, - 1.176311731338501, - 1.1091582775115967, - 1.0388740301132202, - 0.9673762917518616, - 0.8966153264045715, - 0.8285212516784668, - 0.7649515867233276, - 0.7076402902603149, - 0.6581506133079529, - 0.6178325414657593, - 0.5877858996391296, - 0.5688302516937256, - 0.5614826679229736, - 1.4272891283035278, - 1.4217591285705566, - 1.4045716524124146, - 1.3761951923370361, - 1.3374041318893433, - 1.2892563343048096, - 1.2330653667449951, - 1.1703636646270752, - 1.1028618812561035, - 1.0324010848999023, - 0.9609034061431885, - 0.8903189897537231, - 0.8225732445716858, - 0.7595140933990479, - 0.7028616666793823, - 0.6541612148284912, - 0.6147412657737732, - 0.5856769680976868, - 0.567761242389679, - 0.5614826679229736, - 1.4272891283035278, - 1.420649528503418, - 1.4023826122283936, - 1.3729866743087769, - 1.3332633972167969, - 1.2842965126037598, - 1.227421522140503, - 1.1641900539398193, - 1.0963267087936401, - 1.0256826877593994, - 0.9541849493980408, - 0.8837838172912598, - 0.8163995742797852, - 0.7538703680038452, - 0.6979018449783325, - 0.6500205397605896, - 0.6115326881408691, - 0.5834879875183105, - 0.5666515827178955, - 0.5614826679229736, - 1.4272891283035278, - 1.4196196794509888, - 1.4003509283065796, - 1.3700084686279297, - 1.3294200897216797, - 1.2796927690505981, - 1.222183108329773, - 1.1584596633911133, - 1.0902607440948486, - 1.019446611404419, - 0.9479489326477051, - 0.877717912197113, - 0.8106692433357239, - 0.7486318945884705, - 0.6932981014251709, - 0.6461771726608276, - 0.608554482460022, - 0.5814562439918518, - 0.5656216740608215, - 0.5614826679229736, - 1.4272891283035278, - 1.418781042098999, - 1.3986965417861938, - 1.3675833940505981, - 1.3262906074523926, - 1.2759442329406738, - 1.217917561531067, - 1.1537936925888062, - 1.0853215456008911, - 1.0143688917160034, - 0.9428711533546448, - 0.872778594493866, - 0.806003212928772, - 0.7443664073944092, - 0.689549446105957, - 0.6430476903915405, - 0.6061294078826904, - 0.5798017978668213, - 0.5647830367088318, - 0.5614826679229736, - 1.4272891283035278, - 1.418224573135376, - 1.3975987434387207, - 1.3659743070602417, - 1.324213981628418, - 1.2734568119049072, - 1.2150872945785522, - 1.1506975889205933, - 1.0820441246032715, - 1.0109995603561401, - 0.9395018219947815, - 0.8695012331008911, - 0.8029071092605591, - 0.741536021232605, - 0.6870620846748352, - 0.6409710645675659, - 0.604520320892334, - 0.5787040591239929, - 0.5642265677452087, - 0.5614826679229736, - 1.4272891283035278, - 1.4180104732513428, - 1.3971766233444214, - 1.3653554916381836, - 1.3234153985977173, - 1.2725002765655518, - 1.213998794555664, - 1.14950692653656, - 1.080783724784851, - 1.0097038745880127, - 0.938206136226654, - 0.8682408332824707, - 0.8017164468765259, - 0.7404475808143616, - 0.6861055493354797, - 0.6401724815368652, - 0.6039015054702759, - 0.5782818794250488, - 0.5640125870704651, - 0.5614826679229736, - 1.4272891283035278, - 1.418162226676941, - 1.3974757194519043, - 1.365794062614441, - 1.3239814043045044, - 1.2731781005859375, - 1.2147701978683472, - 1.15035080909729, - 1.081676959991455, - 1.0106221437454224, - 0.9391244053840637, - 0.8691340684890747, - 0.8025603294372559, - 0.7412190437316895, - 0.6867834329605103, - 0.6407384872436523, - 0.6043400764465332, - 0.5785810947418213, - 0.5641642808914185, - 0.5614826679229736, - 1.4272891283035278, - 1.4186630249023438, - 1.3984639644622803, - 1.367242455482483, - 1.325850486755371, - 1.2754170894622803, - 1.217317819595337, - 1.1531376838684082, - 1.0846270322799683, - 1.0136549472808838, - 0.9421572089195251, - 0.8720841407775879, - 0.805347204208374, - 0.7437666654586792, - 0.689022421836853, - 0.6426076889038086, - 0.6057884693145752, - 0.5795692205429077, - 0.5646651387214661, - 0.5614826679229736, - 1.4272891283035278, - 1.4194588661193848, - 1.4000338315963745, - 1.3695437908172607, - 1.3288203477859497, - 1.2789744138717651, - 1.2213656902313232, - 1.1575655937194824, - 1.0893142223358154, - 1.0184736251831055, - 0.9469758868217468, - 0.8767713904380798, - 0.8097751140594482, - 0.7478144764900208, - 0.6925797462463379, - 0.6455774307250977, - 0.608089804649353, - 0.5811392068862915, - 0.5654609799385071, - 0.5614826679229736, - 1.4272891283035278, - 1.4204634428024292, - 1.4020155668258667, - 1.3724485635757446, - 1.3325690031051636, - 1.2834646701812744, - 1.2264751195907593, - 1.1631546020507812, - 1.0952306985855103, - 1.0245559215545654, - 0.9530581831932068, - 0.8826878070831299, - 0.8153641819953918, - 0.752923846244812, - 0.6970700025558472, - 0.6493260860443115, - 0.6109945774078369, - 0.5831209421157837, - 0.5664654970169067, - 0.5614826679229736, - 1.4272891283035278, - 1.4215679168701172, - 1.4041942358016968, - 1.3756420612335205, - 1.3366901874542236, - 1.2884012460708618, - 1.232092261314392, - 1.1692993640899658, - 1.1017351150512695, - 1.031242847442627, - 0.9597450494766235, - 0.8891922235488892, - 0.8215088248252869, - 0.7585410475730896, - 0.7020065784454346, - 0.6534473896026611, - 0.6141880750656128, - 0.585299551486969, - 0.56756991147995, - 0.5614826679229736 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.10907164961099625, - -0.10950452834367752, - -0.11087968945503235, - -0.11315963417291641, - -0.1162821501493454, - -0.12016206979751587, - -0.12469357252120972, - -0.12975303828716278, - -0.13520245254039764, - -0.14089319109916687, - -0.14666999876499176, - -0.15237532556056976, - -0.15785352885723114, - -0.1629551649093628, - -0.16754111647605896, - -0.1714862436056137, - -0.17468295991420746, - -0.1770440638065338, - -0.17850515246391296, - -0.17902636528015137, - -0.10907164216041565, - -0.13073012232780457, - -0.15275190770626068, - -0.1745363175868988, - -0.19548910856246948, - -0.2150387167930603, - -0.23265193402767181, - -0.2478483021259308, - -0.26021328568458557, - -0.2694095969200134, - -0.2751864194869995, - -0.2773861289024353, - -0.27594879269599915, - -0.2709135413169861, - -0.2624177634716034, - -0.2506932020187378, - -0.23605963587760925, - -0.21891629695892334, - -0.1997307538986206, - -0.17902635037899017, - -0.10907164216041565, - -0.1496603935956955, - -0.19009608030319214, - -0.22927573323249817, - -0.26613059639930725, - -0.29965537786483765, - -0.3289356827735901, - -0.3531727194786072, - -0.37170547246932983, - -0.38402825593948364, - -0.3898050785064697, - -0.38887834548950195, - -0.38127321004867554, - -0.36719730496406555, - -0.3470344543457031, - -0.32133471965789795, - -0.2907990515232086, - -0.2562604546546936, - -0.21866101026535034, - -0.17902635037899017, - -0.10907163470983505, - -0.1642439216375351, - -0.21886536478996277, - -0.27144601941108704, - -0.3205515742301941, - -0.36484259366989136, - -0.40311098098754883, - -0.4343128204345703, - -0.457597017288208, - -0.47232842445373535, - -0.47810524702072144, - -0.4747698903083801, - -0.46241331100463867, - -0.4413725733757019, - -0.41222167015075684, - -0.3757556676864624, - -0.3329693377017975, - -0.28502973914146423, - -0.23324453830718994, - -0.17902633547782898, - -0.10907162725925446, - -0.17290039360523224, - -0.23594215512275696, - -0.2964773178100586, - -0.3528546690940857, - -0.40353626012802124, - -0.44713979959487915, - -0.48247575759887695, - -0.5085803270339966, - -0.5247414112091064, - -0.5305182337760925, - -0.5257532000541687, - -0.5105762481689453, - -0.4854013919830322, - -0.4509153366088867, - -0.408058762550354, - -0.35800063610076904, - -0.3021065294742584, - -0.24190101027488708, - -0.17902633547782898, - -0.10907162725925446, - -0.17469170689582825, - -0.23947593569755554, - -0.30165717005729675, - -0.359539270401001, - -0.4115433096885681, - -0.4562508463859558, - -0.4924423098564148, - -0.519130527973175, - -0.53558748960495, - -0.541364312171936, - -0.5363034009933472, - -0.5205428004264832, - -0.4945124387741089, - -0.4589223861694336, - -0.4147433638572693, - -0.3631804883480072, - -0.305640310049057, - -0.2436923384666443, - -0.17902633547782898, - -0.10907162725925446, - -0.16942377388477325, - -0.22908374667167664, - -0.2864242196083069, - -0.3398810625076294, - -0.3879960775375366, - -0.429456889629364, - -0.46313250064849854, - -0.4881044030189514, - -0.5036912560462952, - -0.5094680786132812, - -0.5052772760391235, - -0.4912329912185669, - -0.4677184820175171, - -0.4353751540184021, - -0.3950851559638977, - -0.34794753789901733, - -0.2952481508255005, - -0.2384243905544281, - -0.17902633547782898, - -0.10907163470983505, - -0.15766744315624237, - -0.20589177310466766, - -0.25242918729782104, - -0.2960103154182434, - -0.3354462683200836, - -0.36966145038604736, - -0.3977224826812744, - -0.41886401176452637, - -0.43250924348831177, - -0.43828606605529785, - -0.4360368847846985, - -0.4258229732513428, - -0.40792304277420044, - -0.3828253746032715, - -0.3512144088745117, - -0.3139525055885315, - -0.2720561623573303, - -0.22666805982589722, - -0.17902635037899017, - -0.10907164216041565, - -0.1406967043876648, - -0.1724132001399994, - -0.20335601270198822, - -0.2326810657978058, - -0.25958847999572754, - -0.2833442687988281, - -0.3033004701137543, - -0.31891268491744995, - -0.3297550678253174, - -0.33553189039230347, - -0.33608555793762207, - -0.33140096068382263, - -0.3216058909893036, - -0.306967556476593, - -0.2878851890563965, - -0.26487934589385986, - -0.23857757449150085, - -0.20969732105731964, - -0.17902635037899017, - -0.10907164216041565, - -0.12035059183835983, - -0.13227596879005432, - -0.14452248811721802, - -0.15675608813762665, - -0.168643057346344, - -0.17985917627811432, - -0.19009849429130554, - -0.199081689119339, - -0.20656374096870422, - -0.2123405635356903, - -0.2162545621395111, - -0.2181989848613739, - -0.2181207835674286, - -0.21602210402488708, - -0.21196018159389496, - -0.20604580640792847, - -0.1984403431415558, - -0.18935121595859528, - -0.17902636528015137, - -0.10907164961099625, - -0.09883391857147217, - -0.08982954919338226, - -0.08230413496494293, - -0.07646296173334122, - -0.07246536761522293, - -0.07042037695646286, - -0.07038377970457077, - -0.07235658168792725, - -0.0762849748134613, - -0.08206178992986679, - -0.08952944725751877, - -0.09848427027463913, - -0.10868197679519653, - -0.11984439194202423, - -0.13166706264019012, - -0.14382746815681458, - -0.15599392354488373, - -0.1678345501422882, - -0.17902636528015137, - -0.10907165706157684, - -0.0784783735871315, - -0.04967367649078369, - -0.023443318903446198, - -0.0005027353763580322, - 0.018522262573242188, - 0.03311273455619812, - 0.04287070035934448, - 0.04752999544143677, - 0.046963512897491455, - 0.04118669033050537, - 0.03035712242126465, - 0.014770209789276123, - -0.005148842930793762, - -0.028856761753559113, - -0.05570682883262634, - -0.08496664464473724, - -0.11583805829286575, - -0.14747899770736694, - -0.17902636528015137, - -0.10907165706157684, - -0.0614897683262825, - -0.01615987718105316, - 0.025681525468826294, - 0.06289312243461609, - 0.09445986151695251, - 0.11952073872089386, - 0.13739211857318878, - 0.14758650958538055, - 0.1498257964849472, - 0.14404897391796112, - 0.13041363656520844, - 0.10929162800312042, - 0.08125914633274078, - 0.0470808744430542, - 0.007689043879508972, - -0.03584180027246475, - -0.08232425898313522, - -0.13049039244651794, - -0.17902636528015137, - -0.10907166451215744, - -0.04970908910036087, - 0.007080137729644775, - 0.059746935963630676, - 0.10685472190380096, - 0.1471184939146042, - 0.17944000661373138, - 0.20293761789798737, - 0.2169702798128128, - 0.2211553007364273, - 0.21537847816944122, - 0.19979740679264069, - 0.174837127327919, - 0.1411784440279007, - 0.09973952174186707, - 0.05165065824985504, - -0.001776382327079773, - -0.059084244072437286, - -0.11870970577001572, - -0.17902638018131256, - -0.10907166451215744, - -0.04441297799348831, - 0.017527908086776733, - 0.0750613808631897, - 0.1266181319952011, - 0.17079170048236847, - 0.20637734234333038, - 0.2324042171239853, - 0.2481624335050583, - 0.25322216749191284, - 0.24744533002376556, - 0.23098956048488617, - 0.20430372655391693, - 0.1681157797574997, - 0.12341274321079254, - 0.071414053440094, - 0.013538062572479248, - -0.04863646626472473, - -0.11341359466314316, - -0.17902638018131256, - -0.10907166451215744, - -0.046175308525562286, - 0.014051303267478943, - 0.06996534764766693, - 0.12004165351390839, - 0.1629142016172409, - 0.19741366803646088, - 0.22259889543056488, - 0.23778294026851654, - 0.2425515502691269, - 0.2367747277021408, - 0.22061006724834442, - 0.19449840486049652, - 0.1591521054506302, - 0.11553524434566498, - 0.06483757495880127, - 0.008442029356956482, - -0.05211307108402252, - -0.11517592519521713, - -0.17902638018131256, - -0.10907166451215744, - -0.054805152118206024, - -0.0029729604721069336, - 0.0450110137462616, - 0.08783794939517975, - 0.12433956563472748, - 0.15352030098438263, - 0.17458410561084747, - 0.18695645034313202, - 0.19029979407787323, - 0.18452297151088715, - 0.1697835773229599, - 0.1464836150407791, - 0.11525873839855194, - 0.07696057856082916, - 0.03263385593891144, - -0.016512304544448853, - -0.069137342274189, - -0.12380576878786087, - -0.17902636528015137, - -0.10907165706157684, - -0.06936730444431305, - -0.03170005977153778, - 0.002902582287788391, - 0.033496782183647156, - 0.05924797058105469, - 0.07945375144481659, - 0.09356299042701721, - 0.10119079053401947, - 0.10212905704975128, - 0.0963522344827652, - 0.08401791751384735, - 0.06546249985694885, - 0.04119217395782471, - 0.011868968605995178, - -0.021707311272621155, - -0.05862075090408325, - -0.09786443412303925, - -0.1383679211139679, - -0.17902636528015137, - -0.10907165706157684, - -0.08828373998403549, - -0.0690169557929039, - -0.05179686099290848, - -0.0370931550860405, - -0.025306932628154755, - -0.016759678721427917, - -0.011684536933898926, - -0.010219961404800415, - -0.012405887246131897, - -0.01818270981311798, - -0.027392826974391937, - -0.03978502005338669, - -0.0550212636590004, - -0.07268595695495605, - -0.09229724109172821, - -0.11332019418478012, - -0.13518133759498596, - -0.15728436410427094, - -0.17902636528015137, - -0.10907164961099625, - -0.10950453579425812, - -0.11087971925735474, - -0.1131596639752388, - -0.11628219485282898, - -0.12016212195158005, - -0.12469363212585449, - -0.12975309789180756, - -0.1352025270462036, - -0.14089326560497284, - -0.14667007327079773, - -0.15237538516521454, - -0.15785358846187592, - -0.16295522451400757, - -0.16754116117954254, - -0.1714862883090973, - -0.17468298971652985, - -0.1770440936088562, - -0.17850515246391296, - -0.17902636528015137 - ], - "y": [ - -1.7733771800994873, - -1.7710058689117432, - -1.767764925956726, - -1.7637426853179932, - -1.7590488195419312, - -1.7538114786148071, - -1.748173475265503, - -1.7422887086868286, - -1.73631751537323, - -1.7304227352142334, - -1.724765419960022, - -1.7194997072219849, - -1.7147692441940308, - -1.7107031345367432, - -1.7074122428894043, - -1.704986333847046, - -1.7034915685653687, - -1.702968716621399, - -1.7034320831298828, - -1.704869031906128, - -1.7733771800994873, - -1.770746111869812, - -1.7672524452209473, - -1.7629914283752441, - -1.7580794095993042, - -1.752650260925293, - -1.746852159500122, - -1.7408432960510254, - -1.7347873449325562, - -1.7288497686386108, - -1.7231924533843994, - -1.7179696559906006, - -1.7133238315582275, - -1.7093818187713623, - -1.7062510251998901, - -1.704016923904419, - -1.7027403116226196, - -1.7024562358856201, - -1.7031723260879517, - -1.704869031906128, - -1.7733771800994873, - -1.7707207202911377, - -1.7672024965286255, - -1.76291823387146, - -1.75798499584198, - -1.7525372505187988, - -1.7467235326766968, - -1.740702509880066, - -1.7346384525299072, - -1.7286967039108276, - -1.7230392694473267, - -1.717820644378662, - -1.7131831645965576, - -1.709253191947937, - -1.7061378955841064, - -1.7039225101470947, - -1.702667236328125, - -1.702406406402588, - -1.703147053718567, - -1.704869031906128, - -1.7733771800994873, - -1.770932674407959, - -1.76762056350708, - -1.7635310888290405, - -1.7587758302688599, - -1.7534846067428589, - -1.747801423072815, - -1.7418817281723022, - -1.7358866930007935, - -1.7299798727035522, - -1.7243225574493408, - -1.7190688848495483, - -1.7143622636795044, - -1.7103310823440552, - -1.7070852518081665, - -1.7047133445739746, - -1.7032800912857056, - -1.7028244733810425, - -1.7033590078353882, - -1.704869031906128, - -1.7733771800994873, - -1.7713589668273926, - -1.7684613466262817, - -1.764763593673706, - -1.7603663206100464, - -1.75538969039917, - -1.749969244003296, - -1.7442530393600464, - -1.7383968830108643, - -1.7325605154037476, - -1.7269030809402466, - -1.7215790748596191, - -1.7167335748672485, - -1.7124989032745361, - -1.7089903354644775, - -1.7063038349151611, - -1.7045124769210815, - -1.7036652565002441, - -1.7037851810455322, - -1.704869031906128, - -1.7733771800994873, - -1.7719532251358032, - -1.7696337699890137, - -1.7664819955825806, - -1.7625839710235596, - -1.75804603099823, - -1.7529919147491455, - -1.7475595474243164, - -1.7418969869613647, - -1.7361587285995483, - -1.730501413345337, - -1.7250791788101196, - -1.7200400829315186, - -1.7155215740203857, - -1.7116467952728271, - -1.7085214853286743, - -1.7062309980392456, - -1.7048375606536865, - -1.7043794393539429, - -1.704869031906128, - -1.7733771800994873, - -1.772651195526123, - -1.7710106372833252, - -1.7685003280639648, - -1.7651885747909546, - -1.7611658573150635, - -1.7565419673919678, - -1.7514429092407227, - -1.7460076808929443, - -1.740384817123413, - -1.734727382659912, - -1.7291899919509888, - -1.7239234447479248, - -1.719071626663208, - -1.7147666215896606, - -1.7111260890960693, - -1.7082492113113403, - -1.706214427947998, - -1.7050774097442627, - -1.704869031906128, - -1.7733771800994873, - -1.7733771800994873, - -1.7724428176879883, - -1.770599603652954, - -1.7678978443145752, - -1.7644110918045044, - -1.7602345943450928, - -1.7554823160171509, - -1.7502837181091309, - -1.7447806596755981, - -1.7391232252120972, - -1.7334659099578857, - -1.727962851524353, - -1.722764253616333, - -1.7180118560791016, - -1.71383535861969, - -1.7103486061096191, - -1.7076467275619507, - -1.705803394317627, - -1.704869031906128, - -1.7733771800994873, - -1.774052619934082, - -1.7737752199172974, - -1.7725526094436646, - -1.7704181671142578, - -1.767430067062378, - -1.763669729232788, - -1.759239912033081, - -1.7542613744735718, - -1.7488698959350586, - -1.7432125806808472, - -1.7374436855316162, - -1.7317205667495728, - -1.7261993885040283, - -1.7210307121276855, - -1.7163556814193726, - -1.71230149269104, - -1.7089790105819702, - -1.7064788341522217, - -1.704869031906128, - -1.7733771800994873, - -1.774604082107544, - -1.7748632431030273, - -1.7741475105285645, - -1.7724764347076416, - -1.7698954343795776, - -1.7664752006530762, - -1.7623087167739868, - -1.7575099468231201, - -1.7522095441818237, - -1.7465522289276123, - -1.740692138671875, - -1.7347893714904785, - -1.7290047407150269, - -1.7234961986541748, - -1.7184138298034668, - -1.7138965129852295, - -1.7100671529769897, - -1.7070304155349731, - -1.704869031906128, - -1.7733771800994873, - -1.7749720811843872, - -1.7755892276763916, - -1.7752115726470947, - -1.773849606513977, - -1.7715402841567993, - -1.7683467864990234, - -1.7643561363220215, - -1.7596771717071533, - -1.7544375658035278, - -1.7487802505493164, - -1.7428594827651978, - -1.7368367910385132, - -1.7308764457702637, - -1.7251410484313965, - -1.7197870016098022, - -1.7149604558944702, - -1.7107930183410645, - -1.7073984146118164, - -1.704869031906128, - -1.7733771800994873, - -1.7751165628433228, - -1.7758742570877075, - -1.7756294012069702, - -1.7743887901306152, - -1.772186279296875, - -1.7690818309783936, - -1.7651602029800415, - -1.760528326034546, - -1.7553125619888306, - -1.7496552467346191, - -1.7437105178833008, - -1.7376407384872437, - -1.7316114902496338, - -1.7257870435714722, - -1.72032630443573, - -1.7153784036636353, - -1.71107816696167, - -1.707542896270752, - -1.704869031906128, - -1.7733771800994873, - -1.775022029876709, - -1.7756876945495605, - -1.7753558158874512, - -1.7740358114242554, - -1.7717633247375488, - -1.768600583076477, - -1.7646337747573853, - -1.759971022605896, - -1.754739761352539, - -1.749082326889038, - -1.7431533336639404, - -1.737114429473877, - -1.7311302423477173, - -1.725364089012146, - -1.7199733257293701, - -1.7151048183441162, - -1.7108914852142334, - -1.7074482440948486, - -1.704869031906128, - -1.7733771800994873, - -1.7746984958648682, - -1.7750494480133057, - -1.7744204998016357, - -1.7728286981582642, - -1.7703174352645874, - -1.7669552564620972, - -1.7628339529037476, - -1.758065938949585, - -1.7527810335159302, - -1.7471237182617188, - -1.7412481307983398, - -1.7353146076202393, - -1.7294849157333374, - -1.7239181995391846, - -1.7187660932540894, - -1.7141693830490112, - -1.710253357887268, - -1.7071248292922974, - -1.704869031906128, - -1.7733771800994873, - -1.7741812467575073, - -1.774029016494751, - -1.7729246616363525, - -1.7708982229232788, - -1.768005132675171, - -1.7643241882324219, - -1.7599557638168335, - -1.755019187927246, - -1.749648928642273, - -1.7439916133880615, - -1.738201379776001, - -1.7324364185333252, - -1.726853847503662, - -1.721605896949768, - -1.7168357372283936, - -1.712673544883728, - -1.7092328071594238, - -1.706607460975647, - -1.704869031906128, - -1.7733771800994873, - -1.7735261917114258, - -1.7727367877960205, - -1.7710304260253906, - -1.76845383644104, - -1.7650771141052246, - -1.760992407798767, - -1.7563111782073975, - -1.7511610984802246, - -1.745682716369629, - -1.7400254011154175, - -1.734343409538269, - -1.7287918329238892, - -1.7235220670700073, - -1.7186777591705322, - -1.7143912315368652, - -1.7107794284820557, - -1.7079405784606934, - -1.7059524059295654, - -1.704869031906128, - -1.7733771800994873, - -1.7728043794631958, - -1.7713127136230469, - -1.768943190574646, - -1.7657601833343506, - -1.7618504762649536, - -1.7573210000991821, - -1.7522950172424316, - -1.746909737586975, - -1.7413121461868286, - -1.7356548309326172, - -1.7300920486450195, - -1.7247756719589233, - -1.7198505401611328, - -1.7154512405395508, - -1.7116975784301758, - -1.7086920738220215, - -1.7065166234970093, - -1.7052305936813354, - -1.704869031906128, - -1.7733771800994873, - -1.7720938920974731, - -1.7699114084243774, - -1.766888976097107, - -1.7631092071533203, - -1.7586750984191895, - -1.753707766532898, - -1.748342514038086, - -1.7427258491516113, - -1.7370109558105469, - -1.731353521347046, - -1.7259081602096558, - -1.7208231687545776, - -1.7162374258041382, - -1.7122758626937866, - -1.709046721458435, - -1.7066378593444824, - -1.7051151990890503, - -1.7045202255249023, - -1.704869031906128, - -1.7733771800994873, - -1.7714719772338867, - -1.7686843872070312, - -1.7650904655456543, - -1.7607883214950562, - -1.7558950185775757, - -1.7505443096160889, - -1.7448821067810059, - -1.739062786102295, - -1.7332451343536377, - -1.7275876998901367, - -1.7222449779510498, - -1.7173627614974976, - -1.713073968887329, - -1.7094957828521729, - -1.7067257165908813, - -1.7048394680023193, - -1.7038882970809937, - -1.703898310661316, - -1.704869031906128, - -1.7733771800994873, - -1.7710058689117432, - -1.767764925956726, - -1.7637426853179932, - -1.7590488195419312, - -1.7538114786148071, - -1.748173475265503, - -1.7422887086868286, - -1.7363173961639404, - -1.7304227352142334, - -1.724765419960022, - -1.7194997072219849, - -1.7147692441940308, - -1.7107031345367432, - -1.7074122428894043, - -1.704986333847046, - -1.7034915685653687, - -1.702968716621399, - -1.7034320831298828, - -1.704869031906128 - ], - "z": [ - 0.5774909257888794, - 0.5833728909492493, - 0.6011466979980469, - 0.6303274631500244, - 0.6701191663742065, - 0.7194364070892334, - 0.7769340872764587, - 0.8410436511039734, - 0.9100164175033569, - 0.981971025466919, - 1.054944634437561, - 1.1269468069076538, - 1.1960135698318481, - 1.260260820388794, - 1.3179360628128052, - 1.3674662113189697, - 1.4075000286102295, - 1.4369456768035889, - 1.4549999237060547, - 1.4611700773239136, - 0.5774909257888794, - 0.5816724300384521, - 0.5977922081947327, - 0.6254104375839233, - 0.663773775100708, - 0.7118356823921204, - 0.76828533411026, - 0.8315828442573547, - 0.900001585483551, - 0.9716753363609314, - 1.0446490049362183, - 1.1169320344924927, - 1.1865527629852295, - 1.2516120672225952, - 1.3103352785110474, - 1.3611208200454712, - 1.402583122253418, - 1.4335912466049194, - 1.4532994031906128, - 1.4611700773239136, - 0.5774909257888794, - 0.5801719427108765, - 0.5948320627212524, - 0.621071457862854, - 0.6581742763519287, - 0.7051284313201904, - 0.7606532573699951, - 0.8232340812683105, - 0.8911639451980591, - 0.9625899195671082, - 1.035563588142395, - 1.108094334602356, - 1.1782039403915405, - 1.2439799308776855, - 1.3036279678344727, - 1.3555212020874023, - 1.398244023323059, - 1.430631160736084, - 1.451798915863037, - 1.4611700773239136, - 0.5774909257888794, - 0.5790338516235352, - 0.5925869941711426, - 0.6177806258201599, - 0.6539274454116821, - 0.7000414133071899, - 0.7548648715019226, - 0.816902220249176, - 0.8844612836837769, - 0.9556992650032043, - 1.0286729335784912, - 1.1013916730880737, - 1.1718721389770508, - 1.2381916046142578, - 1.2985410690307617, - 1.3512744903564453, - 1.3949532508850098, - 1.4283860921859741, - 1.4506608247756958, - 1.4611700773239136, - 0.5774909257888794, - 0.5783816576004028, - 0.591300368309021, - 0.615894615650177, - 0.6514935493469238, - 0.697126030921936, - 0.7515474557876587, - 0.8132733702659607, - 0.8806199431419373, - 0.9517501592636108, - 1.024723768234253, - 1.097550392150879, - 1.168243169784546, - 1.2348742485046387, - 1.2956256866455078, - 1.3488404750823975, - 1.3930672407150269, - 1.427099347114563, - 1.4500086307525635, - 1.4611700773239136, - 0.5774909257888794, - 0.5782859325408936, - 0.5911114811897278, - 0.6156177520751953, - 0.6511362791061401, - 0.6966980695724487, - 0.7510606050491333, - 0.812740683555603, - 0.8800560832023621, - 0.9511705040931702, - 1.024144172668457, - 1.0969865322113037, - 1.167710542678833, - 1.2343872785568237, - 1.2951977252960205, - 1.3484833240509033, - 1.39279043674469, - 1.4269105195999146, - 1.4499129056930542, - 1.4611700773239136, - 0.5774909257888794, - 0.5787570476531982, - 0.5920408964157104, - 0.6169801354408264, - 0.6528943777084351, - 0.6988040208816528, - 0.7534568309783936, - 0.8153620362281799, - 0.8828309178352356, - 0.9540231227874756, - 1.0269967317581177, - 1.0997613668441772, - 1.1703319549560547, - 1.2367836236953735, - 1.2973036766052246, - 1.3502414226531982, - 1.3941527605056763, - 1.427839994430542, - 1.4503840208053589, - 1.4611700773239136, - 0.5774909257888794, - 0.5797439813613892, - 0.5939878821372986, - 0.6198340654373169, - 0.6565773487091064, - 0.7032155990600586, - 0.758476734161377, - 0.8208532333374023, - 0.8886436820030212, - 0.9599989056587219, - 1.0329725742340088, - 1.105574131011963, - 1.1758230924606323, - 1.2418034076690674, - 1.3017152547836304, - 1.3539243936538696, - 1.397006630897522, - 1.4297869205474854, - 1.4513709545135498, - 1.4611700773239136, - 0.5774909257888794, - 0.5811398029327393, - 0.5967414379119873, - 0.6238702535629272, - 0.6617860794067383, - 0.7094547748565674, - 0.765576183795929, - 0.8286193013191223, - 0.8968645334243774, - 0.9684503078460693, - 1.0414239168167114, - 1.1137949228286743, - 1.183589220046997, - 1.2489029169082642, - 1.3079544305801392, - 1.3591331243515015, - 1.4010428190231323, - 1.4325405359268188, - 1.4527667760849, - 1.4611700773239136, - 0.5774909257888794, - 0.5827932357788086, - 0.600003182888031, - 0.6286513209342957, - 0.6679561138153076, - 0.7168454527854919, - 0.7739858627319336, - 0.8378186225891113, - 0.9066025614738464, - 0.9784613847732544, - 1.0514349937438965, - 1.1235328912734985, - 1.1927884817123413, - 1.257312536239624, - 1.315345048904419, - 1.3653031587600708, - 1.4058239459991455, - 1.4358022212982178, - 1.4544202089309692, - 1.4611700773239136, - 0.5774909257888794, - 0.5845251083374023, - 0.6034196615219116, - 0.6336592435836792, - 0.6744188070297241, - 0.7245867252349854, - 0.7827944755554199, - 0.847454309463501, - 0.9168025255203247, - 0.9889473915100098, - 1.0619210004806519, - 1.1337329149246216, - 1.202424168586731, - 1.2661211490631104, - 1.3230862617492676, - 1.3717658519744873, - 1.4108318090438843, - 1.4392187595367432, - 1.456152081489563, - 1.4611700773239136, - 0.5774909257888794, - 0.5861477255821228, - 0.6066206097602844, - 0.6383512020111084, - 0.6804738640785217, - 0.731839656829834, - 0.7910474538803101, - 0.856482207775116, - 0.9263590574264526, - 0.9987719058990479, - 1.0717456340789795, - 1.1432894468307495, - 1.2114521265029907, - 1.2743741273880005, - 1.3303391933441162, - 1.3778209686279297, - 1.4155237674713135, - 1.4424196481704712, - 1.4577746391296387, - 1.4611700773239136, - 0.5774909257888794, - 0.5874852538108826, - 0.6092591881752014, - 0.642218828201294, - 0.6854650974273682, - 0.7378183007240295, - 0.797850489616394, - 0.8639240264892578, - 0.9342366456985474, - 1.0068703889846802, - 1.0798441171646118, - 1.1511670351028442, - 1.2188938856124878, - 1.2811771631240845, - 1.3363178968429565, - 1.3828121423721313, - 1.4193915128707886, - 1.4450582265853882, - 1.4591121673583984, - 1.4611700773239136, - 0.5774909257888794, - 0.5883927345275879, - 0.611049473285675, - 0.6448431015014648, - 0.6888516545295715, - 0.7418748140335083, - 0.8024662733078003, - 0.8689732551574707, - 0.939581573009491, - 1.0123652219772339, - 1.085338830947876, - 1.1565120220184326, - 1.2239431142807007, - 1.2857930660247803, - 1.34037446975708, - 1.3861987590789795, - 1.42201566696167, - 1.4468485116958618, - 1.4600197076797485, - 1.4611700773239136, - 0.5774909257888794, - 0.5887719392776489, - 0.6117974519729614, - 0.6459394693374634, - 0.690266489982605, - 0.7435696125030518, - 0.8043947815895081, - 0.8710827827453613, - 0.941814661026001, - 1.0146609544754028, - 1.087634563446045, - 1.1587450504302979, - 1.2260526418685913, - 1.2877215147018433, - 1.3420692682266235, - 1.3876135349273682, - 1.4231120347976685, - 1.447596549987793, - 1.4603989124298096, - 1.4611700773239136, - 0.5774909257888794, - 0.5885816216468811, - 0.611422061920166, - 0.645389199256897, - 0.6895564198493958, - 0.7427189946174622, - 0.8034268617630005, - 0.8700240254402161, - 0.9406938552856445, - 1.013508677482605, - 1.0864824056625366, - 1.1576242446899414, - 1.2249939441680908, - 1.2867536544799805, - 1.3412185907363892, - 1.3869034051895142, - 1.422561764717102, - 1.447221040725708, - 1.4602086544036865, - 1.4611700773239136, - 0.5774909257888794, - 0.5878424644470215, - 0.6099638938903809, - 0.643251895904541, - 0.6867982149124146, - 0.739415168762207, - 0.799667477607727, - 0.8659116625785828, - 0.9363406896591187, - 1.009033441543579, - 1.0820071697235107, - 1.1532710790634155, - 1.2208815813064575, - 1.282994270324707, - 1.3379148244857788, - 1.3841452598571777, - 1.420424461364746, - 1.4457629919052124, - 1.4594694375991821, - 1.4611700773239136, - 0.5774909257888794, - 0.586634635925293, - 0.6075811386108398, - 0.6397591829299927, - 0.6822909116744995, - 0.7340161800384521, - 0.7935240268707275, - 0.859191358089447, - 0.9292268753051758, - 1.0017201900482178, - 1.0746937990188599, - 1.1461572647094727, - 1.2141612768173218, - 1.2768508195877075, - 1.3325157165527344, - 1.3796379566192627, - 1.4169318675994873, - 1.4433802366256714, - 1.4582616090774536, - 1.4611700773239136, - 0.5774909257888794, - 0.5850889682769775, - 0.6045318841934204, - 0.6352896094322205, - 0.6765228509902954, - 0.7271069884300232, - 0.7856622934341431, - 0.8505914211273193, - 0.920123279094696, - 0.9923612475395203, - 1.0653349161148071, - 1.1370537281036377, - 1.2055612802505493, - 1.2689889669418335, - 1.3256065845489502, - 1.3738698959350586, - 1.4124622344970703, - 1.440330982208252, - 1.4567159414291382, - 1.4611700773239136, - 0.5774909257888794, - 0.5833728909492493, - 0.6011466979980469, - 0.6303274631500244, - 0.6701191663742065, - 0.7194364070892334, - 0.7769340872764587, - 0.8410436511039734, - 0.9100164175033569, - 0.981971025466919, - 1.054944634437561, - 1.1269468069076538, - 1.1960135698318481, - 1.260260820388794, - 1.3179360628128052, - 1.3674662113189697, - 1.4075000286102295, - 1.4369456768035889, - 1.4549999237060547, - 1.4611700773239136 - ] - }, - { - "alphahull": 0, - "color": "#AB63FA", - "name": "ellipse", - "opacity": 0.5, - "type": "mesh3d", - "x": [ - -0.20659838616847992, - -0.20600664615631104, - -0.20417654514312744, - -0.20115797221660614, - -0.19703328609466553, - -0.19191500544548035, - -0.18594270944595337, - -0.1792793571949005, - -0.17210665345191956, - -0.1646202951669693, - -0.15702445805072784, - -0.14952637255191803, - -0.14233052730560303, - -0.13563323020935059, - -0.12961716949939728, - -0.12444642186164856, - -0.12026205658912659, - -0.11717820167541504, - -0.11527898907661438, - -0.11461620032787323, - -0.20659837126731873, - -0.22747284173965454, - -0.24652338027954102, - -0.2632303535938263, - -0.27713802456855774, - -0.28786706924438477, - -0.29512476921081543, - -0.29871320724487305, - -0.29853445291519165, - -0.2945934236049652, - -0.28699758648872375, - -0.2759541869163513, - -0.26176440715789795, - -0.24481530487537384, - -0.2255692481994629, - -0.20455117523670197, - -0.18233443796634674, - -0.1595250517129898, - -0.1367451697587967, - -0.11461620032787323, - -0.20659837126731873, - -0.24660897254943848, - -0.2842736840248108, - -0.3185650706291199, - -0.3485478162765503, - -0.37340402603149414, - -0.39245566725730896, - -0.4051831364631653, - -0.4112392067909241, - -0.41045862436294556, - -0.4028627872467041, - -0.38865888118743896, - -0.3682343363761902, - -0.34214621782302856, - -0.31110620498657227, - -0.2759609520435333, - -0.2376691699028015, - -0.19727535545825958, - -0.15588131546974182, - -0.11461619287729263, - -0.20659837126731873, - -0.261341392993927, - -0.31333664059638977, - -0.3611658215522766, - -0.4035243093967438, - -0.43925660848617554, - -0.4673881530761719, - -0.48715144395828247, - -0.49800753593444824, - -0.4996601343154907, - -0.49206429719924927, - -0.4754272699356079, - -0.4502026438713074, - -0.4170786738395691, - -0.37695884704589844, - -0.3309374451637268, - -0.28026992082595825, - -0.22633829712867737, - -0.17061372101306915, - -0.11461618542671204, - -0.20659837126731873, - -0.2700735628604889, - -0.3305628001689911, - -0.38641607761383057, - -0.43610990047454834, - -0.4782887101173401, - -0.5118020176887512, - -0.5357356667518616, - -0.5494367480278015, - -0.5525315999984741, - -0.5449357628822327, - -0.5268564820289612, - -0.4987868666648865, - -0.46149253845214844, - -0.4159908890724182, - -0.36352306604385376, - -0.3055201768875122, - -0.2435644567012787, - -0.17934589087963104, - -0.11461618542671204, - -0.20659837126731873, - -0.27185922861099243, - -0.33408546447753906, - -0.39157962799072266, - -0.4427734613418579, - -0.486270546913147, - -0.5208843946456909, - -0.5456708073616028, - -0.5599537491798401, - -0.5633435249328613, - -0.5557476878166199, - -0.5373734831809998, - -0.5087220072746277, - -0.47057491540908813, - -0.4239727854728699, - -0.37018662691116333, - -0.3106837272644043, - -0.24708712100982666, - -0.18113157153129578, - -0.11461618542671204, - -0.20659837126731873, - -0.2665049135684967, - -0.3235228657722473, - -0.3760969042778015, - -0.4227929711341858, - -0.4623371958732605, - -0.4936510920524597, - -0.5158804059028625, - -0.5284188389778137, - -0.5309242606163025, - -0.523328423500061, - -0.5058385729789734, - -0.47893160581588745, - -0.4433416724205017, - -0.4000394344329834, - -0.3502061069011688, - -0.29520100355148315, - -0.2365245521068573, - -0.17577725648880005, - -0.11461618542671204, - -0.20659837126731873, - -0.25459080934524536, - -0.30001968145370483, - -0.34164565801620483, - -0.3783334493637085, - -0.40908223390579224, - -0.43305325508117676, - -0.449592649936676, - -0.4582492709159851, - -0.4587870240211487, - -0.4511911869049072, - -0.4356690049171448, - -0.4126438498497009, - -0.382743775844574, - -0.34678441286087036, - -0.3057466149330139, - -0.2607497572898865, - -0.21302133798599243, - -0.1638631671667099, - -0.11461618542671204, - -0.20659837126731873, - -0.23740804195404053, - -0.2661227583885193, - -0.29195931553840637, - -0.3142129182815552, - -0.3322765827178955, - -0.3456575274467468, - -0.3539908230304718, - -0.3570490777492523, - -0.35474893450737, - -0.34715309739112854, - -0.3344687819480896, - -0.3170419931411743, - -0.29534804821014404, - -0.26997876167297363, - -0.2416260838508606, - -0.211063414812088, - -0.17912444472312927, - -0.14668036997318268, - -0.11461620032787323, - -0.20659837126731873, - -0.21681857109069824, - -0.22550545632839203, - -0.2324220985174179, - -0.23737981915473938, - -0.24024337530136108, - -0.24093466997146606, - -0.2394348531961441, - -0.23578482866287231, - -0.2300841361284256, - -0.22248831391334534, - -0.2132045328617096, - -0.2024860382080078, - -0.19062519073486328, - -0.1779455542564392, - -0.1647929549217224, - -0.15152618288993835, - -0.13850712776184082, - -0.1260908991098404, - -0.11461620032787323, - -0.20659838616847992, - -0.1950536072254181, - -0.1825692355632782, - -0.16948577761650085, - -0.1561601459980011, - -0.14295583963394165, - -0.13023298978805542, - -0.1183386892080307, - -0.10759735852479935, - -0.09830201417207718, - -0.09070618450641632, - -0.08501707017421722, - -0.08138986676931381, - -0.07992351055145264, - -0.08065798878669739, - -0.08357328176498413, - -0.0885898694396019, - -0.0955708920955658, - -0.10432595014572144, - -0.11461620777845383, - -0.20659838616847992, - -0.17447173595428467, - -0.14196689426898956, - -0.10997051745653152, - -0.07935536652803421, - -0.050956569612026215, - -0.025548741221427917, - -0.003824979066848755, - 0.013622164726257324, - 0.026316791772842407, - 0.03391262888908386, - 0.036202460527420044, - 0.03312385082244873, - 0.02476075291633606, - 0.011341288685798645, - -0.006768509745597839, - -0.02907460927963257, - -0.05496855825185776, - -0.08374407142400742, - -0.11461621522903442, - -0.2065984010696411, - -0.15730330348014832, - -0.1080983430147171, - -0.06032568961381912, - -0.015288442373275757, - 0.02578483521938324, - 0.061773881316185, - 0.09169696271419525, - 0.11473782360553741, - 0.130267933011055, - 0.13786377012729645, - 0.13731808960437775, - 0.12864576280117035, - 0.11208339035511017, - 0.08808271586894989, - 0.057298436760902405, - 0.020570218563079834, - -0.021100014448165894, - -0.06657564640045166, - -0.11461621522903442, - -0.2065984010696411, - -0.1454087793827057, - -0.08463374525308609, - -0.025931060314178467, - 0.029097989201545715, - 0.07895234227180481, - 0.12227220833301544, - 0.15787585079669952, - 0.18479208648204803, - 0.20228667557239532, - 0.20988251268863678, - 0.20737235248088837, - 0.19482465088367462, - 0.1725817173719406, - 0.14125023782253265, - 0.10168485343456268, - 0.05496484041213989, - 0.0023645907640457153, - -0.05468112230300903, - -0.11461621522903442, - -0.2065984010696411, - -0.140077143907547, - -0.07411590963602066, - -0.010513916611671448, - 0.04899393022060394, - 0.10278438031673431, - 0.14939017593860626, - 0.18754009902477264, - 0.21619345247745514, - 0.23456861078739166, - 0.24216444790363312, - 0.23877371847629547, - 0.22448889911174774, - 0.19969968497753143, - 0.16508223116397858, - 0.12158079445362091, - 0.07038198411464691, - 0.012882426381111145, - -0.04934948682785034, - -0.11461622267961502, - -0.2065984010696411, - -0.1418861299753189, - -0.07768451422452927, - -0.015744835138320923, - 0.04224337637424469, - 0.09469835460186005, - 0.1401892751455307, - 0.17747525870800018, - 0.20553924143314362, - 0.2236156016588211, - 0.23121143877506256, - 0.22811950743198395, - 0.21442405879497528, - 0.19049878418445587, - 0.1569962054491043, - 0.11483027040958405, - 0.06515106558799744, - 0.009313821792602539, - -0.051158465445041656, - -0.11461621522903442, - -0.2065984010696411, - -0.15063972771167755, - -0.09495293349027634, - -0.041057027876377106, - 0.009577840566635132, - 0.055570513010025024, - 0.09566642343997955, - 0.12877188622951508, - 0.15398378670215607, - 0.17061446607112885, - 0.1782103031873703, - 0.1765640527009964, - 0.16572068631649017, - 0.14597590267658234, - 0.11786840856075287, - 0.0821647047996521, - 0.03983888030052185, - -0.007954597473144531, - -0.0599120631814003, - -0.11461621522903442, - -0.2065984010696411, - -0.16538934409618378, - -0.12404985725879669, - -0.08370755612850189, - -0.04546287655830383, - -0.010359063744544983, - 0.020646408200263977, - 0.04670773446559906, - 0.06711405515670776, - 0.08130872249603271, - 0.08890455961227417, - 0.08969433605670929, - 0.08365656435489655, - 0.07095590233802795, - 0.05193881690502167, - 0.02712400257587433, - -0.002811640501022339, - -0.037051521241664886, - -0.07466167956590652, - -0.11461621522903442, - -0.20659838616847992, - -0.1845366358757019, - -0.1618221551179886, - -0.13907453417778015, - -0.11691427230834961, - -0.09594584256410599, - -0.07674121111631393, - -0.05982421338558197, - -0.04565633833408356, - -0.03462401032447815, - -0.027028173208236694, - -0.023076042532920837, - -0.022875383496284485, - -0.02643170952796936, - -0.03364799916744232, - -0.044327400624752045, - -0.0581786185503006, - -0.07482381910085678, - -0.09380897134542465, - -0.11461620777845383, - -0.20659838616847992, - -0.20600666105747223, - -0.20417656004428864, - -0.20115800201892853, - -0.1970333307981491, - -0.19191505014896393, - -0.18594276905059814, - -0.1792794167995453, - -0.17210672795772552, - -0.16462036967277527, - -0.1570245325565338, - -0.1495264321565628, - -0.1423305869102478, - -0.13563328981399536, - -0.12961721420288086, - -0.12444646656513214, - -0.12026208639144897, - -0.11717822402715683, - -0.11527899652719498, - -0.11461620032787323 - ], - "y": [ - -1.7236003875732422, - -1.7256975173950195, - -1.7286195755004883, - -1.7322866916656494, - -1.7365989685058594, - -1.7414387464523315, - -1.7466740608215332, - -1.7521620988845825, - -1.7577530145645142, - -1.7632944583892822, - -1.7686351537704468, - -1.7736295461654663, - -1.7781412601470947, - -1.7820473909378052, - -1.7852412462234497, - -1.7876358032226562, - -1.789165735244751, - -1.7897893190383911, - -1.7894893884658813, - -1.7882742881774902, - -1.7236003875732422, - -1.72530198097229, - -1.7278392314910889, - -1.7311429977416992, - -1.7351230382919312, - -1.739670753479004, - -1.7446622848510742, - -1.7499613761901855, - -1.7554234266281128, - -1.760899543762207, - -1.7662402391433716, - -1.771299958229065, - -1.7759406566619873, - -1.7800356149673462, - -1.783473253250122, - -1.786159873008728, - -1.7880220413208008, - -1.7890089750289917, - -1.7890938520431519, - -1.7882742881774902, - -1.7236003875732422, - -1.7247698307037354, - -1.7267894744873047, - -1.7296042442321777, - -1.7331372499465942, - -1.7372921705245972, - -1.7419557571411133, - -1.7470006942749023, - -1.7522894144058228, - -1.7576775550842285, - -1.763018250465393, - -1.7681658267974854, - -1.7729798555374146, - -1.7773290872573853, - -1.7810946702957153, - -1.7841740846633911, - -1.7864832878112793, - -1.7879592180252075, - -1.7885617017745972, - -1.7882742881774902, - -1.7236003875732422, - -1.724158763885498, - -1.7255840301513672, - -1.7278372049331665, - -1.7308568954467773, - -1.7345607280731201, - -1.7388476133346558, - -1.7436007261276245, - -1.7486903667449951, - -1.753977656364441, - -1.7593183517456055, - -1.7645668983459473, - -1.7695800065994263, - -1.7742209434509277, - -1.7783632278442383, - -1.7818937301635742, - -1.784716248512268, - -1.78675377368927, - -1.7879506349563599, - -1.7882742881774902, - -1.7236003875732422, - -1.7235349416732788, - -1.7243534326553345, - -1.7260334491729736, - -1.7285290956497192, - -1.7317724227905273, - -1.7356748580932617, - -1.740130066871643, - -1.7450164556503296, - -1.750200629234314, - -1.755541443824768, - -1.7608929872512817, - -1.7661093473434448, - -1.7710481882095337, - -1.7755749225616455, - -1.7795659303665161, - -1.7829124927520752, - -1.7855231761932373, - -1.7873268127441406, - -1.7882742881774902, - -1.7236003875732422, - -1.7229660749435425, - -1.7232310771942139, - -1.7243883609771729, - -1.7264060974121094, - -1.72922945022583, - -1.7327812910079956, - -1.7369647026062012, - -1.7416657209396362, - -1.7467560768127441, - -1.7520967721939087, - -1.7575422525405884, - -1.762943983078003, - -1.7681546211242676, - -1.7730319499969482, - -1.7774429321289062, - -1.7812674045562744, - -1.7844008207321167, - -1.7867579460144043, - -1.7882742881774902, - -1.7236003875732422, - -1.7225136756896973, - -1.7223386764526367, - -1.7230801582336426, - -1.7247179746627808, - -1.7272073030471802, - -1.7304803133010864, - -1.734447717666626, - -1.7390013933181763, - -1.7440168857574463, - -1.7493577003479004, - -1.7548778057098389, - -1.7604269981384277, - -1.7658536434173584, - -1.7710098028182983, - -1.7757548093795776, - -1.7799592018127441, - -1.7835084199905396, - -1.786305546760559, - -1.7882742881774902, - -1.7236003875732422, - -1.722226858139038, - -1.7217727899551392, - -1.7222508192062378, - -1.7236475944519043, - -1.7259252071380615, - -1.729021430015564, - -1.7328518629074097, - -1.7373119592666626, - -1.7422802448272705, - -1.747620940208435, - -1.7531884908676147, - -1.7588311433792114, - -1.764394760131836, - -1.7697277069091797, - -1.7746844291687012, - -1.7791298627853394, - -1.782942533493042, - -1.7860187292099, - -1.7882742881774902, - -1.7236003875732422, - -1.7221366167068481, - -1.7215949296951294, - -1.7219899892807007, - -1.723310947418213, - -1.7255220413208008, - -1.728562593460083, - -1.7323499917984009, - -1.7367807626724243, - -1.7417340278625488, - -1.747074842453003, - -1.7526572942733765, - -1.7583292722702026, - -1.763935923576355, - -1.7693244218826294, - -1.7743477821350098, - -1.7788690328598022, - -1.7827646732330322, - -1.78592848777771, - -1.7882742881774902, - -1.7236003875732422, - -1.7222528457641602, - -1.7218241691589355, - -1.7223260402679443, - -1.7237446308135986, - -1.7260414361953735, - -1.7291537523269653, - -1.7329965829849243, - -1.737465262413025, - -1.742437720298767, - -1.7477784156799316, - -1.7533416748046875, - -1.758975863456726, - -1.7645270824432373, - -1.7698439359664917, - -1.7747814655303955, - -1.779205083847046, - -1.7829939126968384, - -1.786044716835022, - -1.7882742881774902, - -1.7236003875732422, - -1.7225629091262817, - -1.722435712814331, - -1.7232224941253662, - -1.724901556968689, - -1.7274272441864014, - -1.730730652809143, - -1.7347215414047241, - -1.7392911911010742, - -1.7443149089813232, - -1.7496556043624878, - -1.7551677227020264, - -1.7607008218765259, - -1.7661038637161255, - -1.7712297439575195, - -1.7759383916854858, - -1.7801015377044678, - -1.7836054563522339, - -1.7863547801971436, - -1.7882742881774902, - -1.7236003875732422, - -1.72303307056427, - -1.7233633995056152, - -1.724582314491272, - -1.726656436920166, - -1.7295292615890503, - -1.7331223487854004, - -1.7373379468917847, - -1.7420607805252075, - -1.747162103652954, - -1.7525027990341187, - -1.7579373121261597, - -1.7633171081542969, - -1.7684956789016724, - -1.7733317613601685, - -1.777693271636963, - -1.7814613580703735, - -1.784533143043518, - -1.7868250608444214, - -1.7882742881774902, - -1.7236003875732422, - -1.723612666130066, - -1.7245066165924072, - -1.7262580394744873, - -1.7288188934326172, - -1.7321195602416992, - -1.736069917678833, - -1.7405622005462646, - -1.745473861694336, - -1.7506709098815918, - -1.756011724472046, - -1.761350393295288, - -1.7665414810180664, - -1.771443247795105, - -1.7759220600128174, - -1.779855728149414, - -1.7831370830535889, - -1.78567636013031, - -1.7874045372009277, - -1.7882742881774902, - -1.7236003875732422, - -1.724238634109497, - -1.7257415056228638, - -1.7280681133270264, - -1.7311549186706543, - -1.7349176406860352, - -1.7392537593841553, - -1.7440450191497803, - -1.749160647392273, - -1.7544610500335693, - -1.7598017454147339, - -1.765037178993225, - -1.7700241804122925, - -1.7746270895004272, - -1.7787201404571533, - -1.7821917533874512, - -1.784947156906128, - -1.7869112491607666, - -1.7880305051803589, - -1.7882742881774902, - -1.7236003875732422, - -1.7248432636260986, - -1.7269341945648193, - -1.7298163175582886, - -1.7334110736846924, - -1.7376201152801514, - -1.7423288822174072, - -1.7474088668823242, - -1.7527214288711548, - -1.7581218481063843, - -1.7634625434875488, - -1.768597960472107, - -1.773388147354126, - -1.7777022123336792, - -1.7814226150512695, - -1.7844479084014893, - -1.7866954803466797, - -1.7881039381027222, - -1.7886351346969604, - -1.7882742881774902, - -1.7236003875732422, - -1.7253608703613281, - -1.7279555797576904, - -1.7313133478164673, - -1.7353429794311523, - -1.7399343252182007, - -1.7449620962142944, - -1.7502893209457397, - -1.7557705640792847, - -1.761256456375122, - -1.7665971517562866, - -1.7716470956802368, - -1.7762686014175415, - -1.7803354263305664, - -1.7837367057800293, - -1.7863798141479492, - -1.7881925106048584, - -1.7891253232955933, - -1.7891528606414795, - -1.7882742881774902, - -1.7236003875732422, - -1.7257356643676758, - -1.7286947965621948, - -1.7323969602584839, - -1.736741304397583, - -1.7416092157363892, - -1.7468680143356323, - -1.7523741722106934, - -1.7579776048660278, - -1.7635252475738525, - -1.7688660621643066, - -1.77385413646698, - -1.7783534526824951, - -1.7822413444519043, - -1.7854117155075073, - -1.7877781391143799, - -1.7892760038375854, - -1.7898645401000977, - -1.7895275354385376, - -1.7882742881774902, - -1.7236003875732422, - -1.7259267568588257, - -1.7290717363357544, - -1.7329496145248413, - -1.7374545335769653, - -1.7424635887145996, - -1.747840166091919, - -1.7534375190734863, - -1.7591031789779663, - -1.7646825313568115, - -1.770023226737976, - -1.7749797105789185, - -1.779416799545288, - -1.7832133769989014, - -1.7862660884857178, - -1.7884913682937622, - -1.7898286581039429, - -1.7902414798736572, - -1.7897186279296875, - -1.7882742881774902, - -1.7236003875732422, - -1.7259135246276855, - -1.7290457487106323, - -1.732911467552185, - -1.7374053001403809, - -1.742404580116272, - -1.7477730512619019, - -1.7533642053604126, - -1.7590255737304688, - -1.7646026611328125, - -1.769943356513977, - -1.774902105331421, - -1.7793434858322144, - -1.7831463813781738, - -1.7862070798873901, - -1.7884421348571777, - -1.7897905111312866, - -1.7902154922485352, - -1.789705514907837, - -1.7882742881774902, - -1.7236003875732422, - -1.7256975173950195, - -1.7286195755004883, - -1.7322866916656494, - -1.7365989685058594, - -1.7414387464523315, - -1.7466740608215332, - -1.7521620988845825, - -1.7577530145645142, - -1.7632944583892822, - -1.7686351537704468, - -1.7736295461654663, - -1.7781412601470947, - -1.7820473909378052, - -1.7852412462234497, - -1.7876358032226562, - -1.789165735244751, - -1.7897893190383911, - -1.7894893884658813, - -1.7882742881774902 - ], - "z": [ - 1.4908901453018188, - 1.4848740100860596, - 1.4667586088180542, - 1.4370380640029907, - 1.3965232372283936, - 1.3463191986083984, - 1.2877953052520752, - 1.222548007965088, - 1.1523571014404297, - 1.0791370868682861, - 1.0048854351043701, - 0.9316272735595703, - 0.8613610863685608, - 0.7960034608840942, - 0.7373372316360474, - 0.6869626045227051, - 0.6462537050247192, - 0.6163210272789001, - 0.5979809761047363, - 0.5917338132858276, - 1.4908901453018188, - 1.482649564743042, - 1.4623703956604004, - 1.4306058883666992, - 1.3882224559783936, - 1.3363763093948364, - 1.2764815092086792, - 1.2101719379425049, - 1.139256238937378, - 1.0656688213348389, - 0.9914171099662781, - 0.9185263514518738, - 0.8489848971366882, - 0.7846896052360535, - 0.7273943424224854, - 0.6786618828773499, - 0.6398215889930725, - 0.6119328737258911, - 0.5957565903663635, - 0.5917338132858276, - 1.4908901453018188, - 1.4806536436080933, - 1.4584331512451172, - 1.4248346090316772, - 1.3807746171951294, - 1.327454924583435, - 1.2663300037384033, - 1.199067234992981, - 1.1275012493133545, - 1.0535842180252075, - 0.9793325066566467, - 0.9067714214324951, - 0.8378802537918091, - 0.7745381593704224, - 0.718472957611084, - 0.6712139844894409, - 0.6340502500534058, - 0.6079956293106079, - 0.5937607288360596, - 0.5917338132858276, - 1.4908901453018188, - 1.479102611541748, - 1.4553732872009277, - 1.4203495979309082, - 1.3749865293502808, - 1.3205218315124512, - 1.2584409713745117, - 1.1904374361038208, - 1.1183661222457886, - 1.0441930294036865, - 0.969941258430481, - 0.8976362943649292, - 0.8292504549026489, - 0.7666491270065308, - 0.7115398645401001, - 0.6654259562492371, - 0.6295651793479919, - 0.6049357652664185, - 0.5922096967697144, - 0.5917338132858276, - 1.4908901453018188, - 1.4781644344329834, - 1.4535226821899414, - 1.417636752128601, - 1.371485710144043, - 1.3163284063339233, - 1.253669261932373, - 1.1852177381515503, - 1.1128407716751099, - 1.0385127067565918, - 0.9642609357833862, - 0.8921109437942505, - 0.8240307569503784, - 0.7618774175643921, - 0.7073464393615723, - 0.6619250774383545, - 0.6268523931503296, - 0.6030850410461426, - 0.5912715196609497, - 0.5917338132858276, - 1.4908901453018188, - 1.4779407978057861, - 1.4530816078186035, - 1.4169901609420776, - 1.3706512451171875, - 1.3153289556503296, - 1.2525321245193481, - 1.1839736700057983, - 1.1115238666534424, - 1.0371588468551636, - 0.9629071354866028, - 0.890794038772583, - 0.8227867484092712, - 0.7607401609420776, - 0.7063469886779785, - 0.6610906720161438, - 0.6262058019638062, - 0.6026439666748047, - 0.5910478830337524, - 0.5917338132858276, - 1.4908901453018188, - 1.4784560203552246, - 1.454097867012024, - 1.4184799194335938, - 1.3725738525390625, - 1.3176318407058716, - 1.2551524639129639, - 1.1868401765823364, - 1.114558219909668, - 1.0402783155441284, - 0.9660265445709229, - 0.8938283920288086, - 0.8256531953811646, - 0.7633606195449829, - 0.7086498737335205, - 0.663013219833374, - 0.6276955604553223, - 0.6036603450775146, - 0.5915631055831909, - 0.5917338132858276, - 1.4908901453018188, - 1.4796541929244995, - 1.4564615488052368, - 1.4219446182250977, - 1.3770450353622437, - 1.3229875564575195, - 1.261246681213379, - 1.1935064792633057, - 1.121614933013916, - 1.0475329160690308, - 0.9732811450958252, - 0.9008851051330566, - 0.8323195576667786, - 0.7694547176361084, - 0.7140055894851685, - 0.6674844026565552, - 0.6311602592468262, - 0.6060239672660828, - 0.5927612781524658, - 0.5917338132858276, - 1.4908901453018188, - 1.48140549659729, - 1.459916353225708, - 1.4270086288452148, - 1.383580207824707, - 1.3308155536651611, - 1.2701539993286133, - 1.2032502889633179, - 1.1319292783737183, - 1.0581364631652832, - 0.9838847517967224, - 0.9111995100975037, - 0.8420633673667908, - 0.7783621549606323, - 0.7218336462974548, - 0.6740195751190186, - 0.6362242698669434, - 0.609478771686554, - 0.5945125818252563, - 0.5917338132858276, - 1.4908901453018188, - 1.4835201501846313, - 1.464087963104248, - 1.4331233501434326, - 1.391471266746521, - 1.3402677774429321, - 1.280909538269043, - 1.2150156497955322, - 1.1443836688995361, - 1.0709401369094849, - 0.9966883659362793, - 0.9236538410186768, - 0.8538287281990051, - 0.789117693901062, - 0.731285810470581, - 0.6819106340408325, - 0.6423389911651611, - 0.6136503219604492, - 0.5966271758079529, - 0.5917338132858276, - 1.4908901453018188, - 1.4857689142227173, - 1.4685242176055908, - 1.4396262168884277, - 1.3998631238937378, - 1.3503198623657227, - 1.2923475503921509, - 1.2275277376174927, - 1.1576284170150757, - 1.084556221961975, - 1.0103044509887695, - 0.9368985295295715, - 0.8663407564163208, - 0.8005557060241699, - 0.7413378953933716, - 0.6903024911880493, - 0.6488417983055115, - 0.6180866360664368, - 0.5988759994506836, - 0.5917338132858276, - 1.4908901453018188, - 1.4879082441329956, - 1.4727444648742676, - 1.4458122253417969, - 1.4078463315963745, - 1.3598823547363281, - 1.3032286167144775, - 1.2394304275512695, - 1.170228123664856, - 1.0975092649459839, - 1.0232576131820679, - 0.9494982957839966, - 0.8782435059547424, - 0.8114367723464966, - 0.750900387763977, - 0.6982857584953308, - 0.6550278663635254, - 0.6223069429397583, - 0.6010153293609619, - 0.5917338132858276, - 1.4908901453018188, - 1.48970627784729, - 1.4762914180755615, - 1.4510114192962646, - 1.4145557880401611, - 1.3679192066192627, - 1.3123736381530762, - 1.2494341135025024, - 1.1808176040649414, - 1.1083956956863403, - 1.0341439247131348, - 0.960087776184082, - 0.8882471323013306, - 0.8205816745758057, - 0.7589372396469116, - 0.7049952149391174, - 0.6602270603179932, - 0.6258538365364075, - 0.6028133034706116, - 0.5917338132858276, - 1.4908901453018188, - 1.490968108177185, - 1.4787806272506714, - 1.4546600580215454, - 1.419264554977417, - 1.3735594749450684, - 1.318791389465332, - 1.256454586982727, - 1.1882492303848267, - 1.1160356998443604, - 1.0417840480804443, - 0.9675194025039673, - 0.8952676057815552, - 0.8269996047019958, - 0.7645775079727173, - 0.7097039222717285, - 0.6638756990432739, - 0.6283430457115173, - 0.6040750741958618, - 0.5917338132858276, - 1.4908901453018188, - 1.491557002067566, - 1.4799423217773438, - 1.4563629627227783, - 1.421462059020996, - 1.3761918544769287, - 1.3217867612838745, - 1.2597311735153198, - 1.1917176246643066, - 1.1196013689041138, - 1.0453497171401978, - 0.9709877967834473, - 0.898544192314148, - 0.8299949169158936, - 0.7672098278999329, - 0.7119015455245972, - 0.6655786037445068, - 0.6295047998428345, - 0.6046640276908875, - 0.5917338132858276, - 1.4908901453018188, - 1.491409182548523, - 1.4796507358551025, - 1.4559354782104492, - 1.4209104776382446, - 1.3755310773849487, - 1.3210349082946777, - 1.258908748626709, - 1.1908470392227173, - 1.118706464767456, - 1.0444546937942505, - 0.9701172113418579, - 0.8977217674255371, - 0.8292430639266968, - 0.7665491104125977, - 0.7113499045372009, - 0.6651511788368225, - 0.6292132139205933, - 0.6045162081718445, - 0.5917338132858276, - 1.4908901453018188, - 1.490540623664856, - 1.4779373407363892, - 1.453424096107483, - 1.4176695346832275, - 1.3716487884521484, - 1.3166173696517944, - 1.2540764808654785, - 1.1857317686080933, - 1.113447666168213, - 1.0391958951950073, - 0.9650019407272339, - 0.8928894400596619, - 0.8248255252838135, - 0.7626668214797974, - 0.7081088423728943, - 0.6626397371292114, - 0.6274998188018799, - 0.6036477088928223, - 0.5917338132858276, - 1.4908901453018188, - 1.48904550075531, - 1.4749879837036133, - 1.4491007328033447, - 1.4120901823043823, - 1.364965796470642, - 1.3090128898620605, - 1.245757818222046, - 1.1769261360168457, - 1.1043950319290161, - 1.0301433801651, - 0.9561962485313416, - 0.8845708966255188, - 0.8172210454940796, - 0.755983829498291, - 0.7025295495986938, - 0.6583163738250732, - 0.6245503425598145, - 0.6021525859832764, - 0.5917338132858276, - 1.4908901453018188, - 1.4870858192443848, - 1.4711220264434814, - 1.4434341192245483, - 1.4047772884368896, - 1.3562061786651611, - 1.2990455627441406, - 1.2348545789718628, - 1.165384292602539, - 1.0925296545028687, - 1.018277883529663, - 0.9446544647216797, - 0.8736675977706909, - 0.8072535991668701, - 0.7472242116928101, - 0.6952166557312012, - 0.6526497006416321, - 0.6206845045089722, - 0.6001929044723511, - 0.5917338132858276, - 1.4908901453018188, - 1.4848740100860596, - 1.4667586088180542, - 1.4370380640029907, - 1.3965232372283936, - 1.3463191986083984, - 1.2877953052520752, - 1.222548007965088, - 1.1523571014404297, - 1.0791370868682861, - 1.0048854351043701, - 0.9316272735595703, - 0.861361026763916, - 0.7960034608840942, - 0.7373372316360474, - 0.6869626045227051, - 0.6462537050247192, - 0.6163210272789001, - 0.5979809761047363, - 0.5917338132858276 - ] - }, - { - "alphahull": 0, - "color": "#111111", - "opacity": 0.05, - "type": "mesh3d", - "x": [ - -1, - -1, - 1, - 1, - -1, - -1, - 1, - 1 - ], - "y": [ - -1, - 1, - 1, - -1, - -1, - 1, - 1, - -1 - ], - "z": [ - -1, - -1, - -1, - -1, - 1, - 1, - 1, - 1 - ] - }, - { - "alphahull": 0, - "color": "#111111", - "opacity": 0.05, - "type": "mesh3d", - "x": [ - -2, - -2, - 2, - 2, - -2, - -2, - 2, - 2 - ], - "y": [ - -2, - 2, - 2, - -2, - -2, - 2, - 2, - -2 - ], - "z": [ - -2, - -2, - -2, - -2, - 2, - 2, - 2, - 2 - ] - } - ], - "layout": { - "hovermode": false, - "margin": { - "b": 10, - "l": 0, - "r": 0, - "t": 10 - }, - "paper_bgcolor": "rgba(0,0,0,0)", - "scene": { - "aspectmode": "data", - "camera": { - "up": { - "x": 0, - "y": 1, - "z": 0 - } - }, - "xaxis": { - "showspikes": false - }, - "yaxis": { - "showspikes": false - }, - "zaxis": { - "showspikes": false - } - }, - "showlegend": false, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - } - } - }, - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# COLLAPSED\n", - "from nerfstudio.field_components.spatial_distortions import SceneContraction\n", - "\n", - "data = []\n", - "for i, frustum in enumerate(frustums):\n", - " contracted_gaussian = SceneContraction(order=float(\"inf\"))(frustum.get_gaussian_blob())\n", - " data += vis.get_gaussian_ellipsoids_list(contracted_gaussian, color=vis.get_random_color(idx=i))\n", - "\n", - "data.append(vis.get_cube(side_length=2.0, color=\"#111111\", opacity=0.05))\n", - "data.append(vis.get_cube(side_length=4.0, color=\"#111111\", opacity=0.05))\n", - "\n", - "fig = go.Figure(data=data, layout=webdocs_layout)\n", - "fig.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3.8.12 ('nerfactory')", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.8.12" - }, - "vscode": { - "interpreter": { - "hash": "34c28001ff35fb390494047002768a8182dcf55b1b11415165e62ea61557ab83" - } - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/docs/quickstart/custom_dataset.md b/docs/quickstart/custom_dataset.md deleted file mode 100644 index 6444ca44..00000000 --- a/docs/quickstart/custom_dataset.md +++ /dev/null @@ -1,527 +0,0 @@ -# Using custom data - -Training model on existing datasets is only so fun. If you would like to train on self captured data you will need to process the data into the nerfstudio format. Specifically we need to know the camera poses for each image. - -To process your own data run: - -```bash -ns-process-data {video,images,polycam,record3d} --data {DATA_PATH} --output-dir {PROCESSED_DATA_DIR} -``` - -A full set of arguments can be found {doc}`here
`. - -We currently support the following custom data types: -| Data | Capture Device | Requirements | `ns-process-data` Speed | -| ----------------------------- | -------------- | ----------------------------------------------- | ----------------------- | -| πŸ“· [Images](images_and_video) | Any | [COLMAP](https://colmap.github.io/install.html) | 🐒 | -| πŸ“Ή [Video](images_and_video) | Any | [COLMAP](https://colmap.github.io/install.html) | 🐒 | -| 🌎 [360 Data](360_data) | Any | [COLMAP](https://colmap.github.io/install.html) | 🐒 | -| πŸ“± [Polycam](polycam) | IOS with LiDAR | [Polycam App](https://poly.cam/) | πŸ‡ | -| πŸ“± [KIRI Engine](kiri) | IOS or Android | [KIRI Engine App](https://www.kiriengine.com/) | πŸ‡ | -| πŸ“± [Record3D](record3d) | IOS with LiDAR | [Record3D app](https://record3d.app/) | πŸ‡ | -| πŸ“± [Spectacular AI](spectacularai) | IOS, OAK, others| [App](https://apps.apple.com/us/app/spectacular-rec/id6473188128) / [`sai-cli`](https://www.spectacularai.com/mapping) | πŸ‡ | -| πŸ–₯ [Metashape](metashape) | Any | [Metashape](https://www.agisoft.com/) | πŸ‡ | -| πŸ–₯ [RealityCapture](realitycapture) | Any | [RealityCapture](https://www.capturingreality.com/realitycapture) | πŸ‡ | -| πŸ–₯ [ODM](odm) | Any | [ODM](https://github.com/OpenDroneMap/ODM) | πŸ‡ | -| πŸ‘“ [Aria](aria) | Aria glasses | [Project Aria](https://projectaria.com/) | πŸ‡ | - -(images_and_video)= - -## Images or Video - -To assist running on custom data we have a script that will process a video or folder of images into a format that is compatible with nerfstudio. We use [COLMAP](https://colmap.github.io) and [FFmpeg](https://ffmpeg.org/download.html) in our data processing script, please have these installed. We have provided a quickstart to installing COLMAP below, FFmpeg can be downloaded from [here](https://ffmpeg.org/download.html) - -:::{admonition} Tip -:class: info - -- COLMAP can be finicky. Try your best to capture overlapping, non-blurry images. - ::: - -### Processing Data - -```bash -ns-process-data {images, video} --data {DATA_PATH} --output-dir {PROCESSED_DATA_DIR} -``` - -### Training on your data - -```bash -ns-train nerfacto --data {PROCESSED_DATA_DIR} -``` - -### Training and evaluation on separate data - -For `ns-process-data {images, video}`, you can optionally use a separate image directory or video for training and evaluation, as suggested in [Nerfbusters](https://ethanweber.me/nerfbusters/). To do this, run `ns-process-data {images, video} --data {DATA_PATH} --eval-data {EVAL_DATA_PATH} --output-dir {PROCESSED_DATA_DIR}`. Then when running nerfacto, run `ns-train nerfacto --data {PROCESSED_DATA_DIR} nerfstudio-data --eval-mode filename`. - -### Installing COLMAP - -There are many ways to install COLMAP, unfortunately it can sometimes be a bit finicky. If the following commands do not work, please refer to the [COLMAP installation guide](https://colmap.github.io/install.html) for additional installation methods. COLMAP install issues are common! Feel free to ask for help in on our [Discord](https://discord.gg/uMbNqcraFc). - -::::::{tab-set} -:::::{tab-item} Linux - -We recommend trying `conda`: - -``` -conda install -c conda-forge colmap -``` - -Check that COLMAP 3.8 with CUDA is successfully installed: - -``` -colmap -h -``` - -If that doesn't work, you can try VKPG: -::::{tab-set} -:::{tab-item} CUDA - -```bash -git clone https://github.com/microsoft/vcpkg -cd vcpkg -./bootstrap-vcpkg.sh -./vcpkg install colmap[cuda]:x64-linux -``` - -::: -:::{tab-item} CPU - -```bash -git clone https://github.com/microsoft/vcpkg -cd vcpkg -./bootstrap-vcpkg.sh -./vcpkg install colmap:x64-linux -``` - -::: -:::: - -If that doesn't work, you will need to build from source. Refer to the [COLMAP installation guide](https://colmap.github.io/install.html) for details. - -::::: - -:::::{tab-item} OSX - -```bash -git clone https://github.com/microsoft/vcpkg -cd vcpkg -./bootstrap-vcpkg.sh -./vcpkg install colmap -``` - -::::: - -:::::{tab-item} Windows - -::::{tab-set} -:::{tab-item} CUDA - -```bash -git clone https://github.com/microsoft/vcpkg -cd vcpkg -.\bootstrap-vcpkg.bat -.\vcpkg install colmap[cuda]:x64-windows -``` - -::: -:::{tab-item} CPU - -```bash -git clone https://github.com/microsoft/vcpkg -cd vcpkg -.\bootstrap-vcpkg.sh -.\vcpkg install colmap:x64-windows -``` - -::: -:::: - -::::: -:::::: - -(polycam)= - -## Polycam Capture - -Nerfstudio can also be trained directly from captures from the [Polycam app](https://poly.cam//). This avoids the need to use COLMAP. Polycam's poses are globally optimized which make them more robust to drift (an issue with ARKit or SLAM methods). - -To get the best results, try to reduce motion blur as much as possible and try to view the target from as many viewpoints as possible. Polycam recommends having good lighting and moving the camera slowly if using auto mode. Or, even better, use the manual shutter mode to capture less blurry images. - -:::{admonition} Note -:class: info -A LiDAR enabled iPhone or iPad is necessary. -::: - -### Setting up Polycam - -```{image} imgs/polycam_settings.png -:width: 200 -:align: center -:alt: polycam settings -``` - -Developer settings must be enabled in Polycam. To do this, navigate to the settings screen and select `Developer mode`. Note that this will only apply for future captures, you will not be able to process existing captures with nerfstudio. - -### Process data - -```{image} imgs/polycam_export.png -:width: 400 -:align: center -:alt: polycam export options -``` - -0. Capture data in LiDAR or Room mode. - -1. Tap `Process` to process the data in the Polycam app. - -2. Navigate to the export app pane. - -3. Select `raw data` to export a `.zip` file. - -4. Convert the Polycam data into the nerfstudio format using the following command: - -```bash -ns-process-data polycam --data {OUTPUT_FILE.zip} --output-dir {output directory} -``` - -5. Train with nerfstudio! - -```bash -ns-train nerfacto --data {output directory} -``` - -(kiri)= - -## KIRI Engine Capture - -Nerfstudio can trained from data processed by the [KIRI Engine app](https://www.kiriengine.com/). This works for both Android and iPhone and does not require a LiDAR supported device. - -:::{admonition} Note -:class: info -`ns-process-data` does not need to be run when using KIRI Engine. -::: - -### Setting up KIRI Engine - -```{image} imgs/kiri_setup.png -:width: 400 -:align: center -:alt: KIRI Engine setup -``` - -After downloading the app, `Developer Mode` needs to be enabled. A toggle can be found in the settings menu. - -### Process data - -```{image} imgs/kiri_capture.png -:width: 400 -:align: center -:alt: KIRI Engine setup -``` - -1. Navigate to captures window. - -2. Select `Dev.` tab. - -3. Tap the `+` button to create a new capture. - -4. Choose `Camera pose` as the capture option. - -5. Capture the scene and provide a name. - -6. After processing is complete, export the scene. It will be sent to your email. - -7. Unzip the file and run the training script (`ns-process-data` is not necessary). - -```bash -ns-train nerfacto --data {kiri output directory} -``` - -(record3d)= - -## Record3D Capture - -Nerfstudio can be trained directly from >=iPhone 12 Pro captures from the [Record3D app](https://record3d.app/). This uses the iPhone's LiDAR sensors to calculate camera poses, so COLMAP is not needed. - -Click on the image down below πŸ‘‡ for a 1-minute tutorial on how to run nerfstudio with Record3D from start to finish. - -[![How to easily use nerfstudio with Record3D](imgs/record3d_promo.png)](https://youtu.be/XwKq7qDQCQk 'How to easily use nerfstudio with Record3D') - -At a high level, you can follow these 3 steps: - -1. Record a video and export with the EXR + JPG sequence format. - - - - -2. Then, move the exported capture folder from your iPhone to your computer. - -3. Convert the data to the nerfstudio format. - -```bash -ns-process-data record3d --data {data directory} --output-dir {output directory} -``` - -4. Train with nerfstudio! - -```bash -ns-train nerfacto --data {output directory} -``` - -(spectacularai)= - -## Spectacular AI - -Spectacular AI SDK and apps can be used to capture data from various devices: - - * iPhones (with LiDAR) - * OAK-D cameras - * RealSense D455/D435i - * Azure Kinect DK - -The SDK also records IMU data, which is fused with camera and (if available) LiDAR/ToF data when computing the camera poses. This approach, VISLAM, is more robust than purely image based methods (e.g., COLMAP) and can work better and faster for difficult data (monotonic environments, fast motions, narrow FoV, etc.). - -Instructions: - -1. Installation. With the Nerfstudio Conda environment active, first install the Spectacular AI Python library - -```bash -pip install spectacularAI[full] -``` - -2. Install FFmpeg. Linux: `apt install ffmpeg` (or similar, if using another package manager). Windows: [see here](https://www.editframe.com/guides/how-to-install-and-start-using-ffmpeg-in-under-10-minutes). FFmpeg must be in your `PATH` so that `ffmpeg` works on the command line. - -3. Data capture. See [here for specific instructions for each supported device](https://github.com/SpectacularAI/sdk-examples/tree/main/python/mapping#recording-data). - -4. Process and export. Once you have recorded a dataset in Spectacular AI format and have it stored in `{data directory}` it can be converted into a Nerfstudio supported format with: - -```bash -sai-cli process {data directory} --preview3d --key_frame_distance=0.05 {output directory} -``` -The optional `--preview3d` flag shows a 3D preview of the point cloud and estimated trajectory live while VISLAM is running. The `--key_frame_distance` argument can be tuned based on the recorded scene size: 0.05 (5cm) is good for small scans and 0.15 for room-sized scans. If the processing gets slow, you can also try adding a --fast flag to `sai-cli process` to trade off quality for speed. - -5. Train. No separate `ns-process-data` step is needed. The data in `{output directory}` can now be trained with Nerfstudio: - -```bash -ns-train nerfacto --data {output directory} -``` - -(metashape)= - -## Metashape - -All images must use the same sensor type (but multiple sensors are supported). - -1. Align your images using Metashape. `File -> Workflow -> Align Photos...` - -```{image} https://user-images.githubusercontent.com/3310961/203389662-12760210-2b52-49d4-ab21-4f23bfa4a2b3.png -:width: 400 -:align: center -:alt: metashape alignment -``` - -2. Export the camera alignment as a `xml` file. `File -> Export -> Export Cameras...` - -```{image} https://user-images.githubusercontent.com/3310961/203385691-74565704-e4f6-4034-867e-5d8b940fc658.png -:width: 400 -:align: center -:alt: metashape export -``` - -3. Convert the data to the nerfstudio format. - -```bash -ns-process-data metashape --data {data directory} --xml {xml file} --output-dir {output directory} -``` - -4. Train with nerfstudio! - -```bash -ns-train nerfacto --data {output directory} -``` - -(realitycapture)= - -## RealityCapture - -1. Align your images using RealityCapture. `ALIGNMENT -> Align Images` - -2. Export the camera alignment as a `csv` file. Choose `Internal/External camera parameters` - -3. Convert the data to the nerfstudio format. - -```bash -ns-process-data realitycapture --data {data directory} --csv {csv file} --output-dir {output directory} -``` - -4. Train with nerfstudio! - -```bash -ns-train nerfacto --data {output directory} -``` - -(odm)= - -## ODM - -All images/videos must be captured with the same camera. - -1. Process a dataset using [ODM](https://github.com/OpenDroneMap/ODM#quickstart) - -```bash -$ ls /path/to/dataset -images -odm_report -odm_orthophoto -... -``` - -2. Convert to nerfstudio format. - -```bash -ns-process-data odm --data /path/to/dataset --output-dir {output directory} -``` - -4. Train! - -```bash -ns-train nerfacto --data {output directory} -``` - -(aria)= - -## Aria - -1. Install projectaria_tools: - -```bash -conda activate nerfstudio -pip install projectaria-tools'[all]' -``` - -2. Download a VRS file from Project Aria glasses, and run Machine Perception Services to extract poses. - -3. Convert to nerfstudio format. - -```bash -ns-process-data aria --vrs-file /path/to/vrs/file --mps-data-dir /path/to/mps/data --output-dir {output directory} -``` - -4. Train! - -```bash -ns-train nerfacto --data {output directory} -``` - -(360_data)= - -## 360 Data (Equirectangular) - -Equirectangular data is data that has been taken by a 360 camera such as Insta360. Both equirectangular image sets and videos can be processed by nerfstudio. - -### Images - -For a set of equirectangular images, process the data using the following command: - -```bash -ns-process-data images --camera-type equirectangular --images-per-equirect {8, or 14} --crop-factor {top bottom left right} --data {data directory} --output-dir {output directory} -``` - -The images-per-equirect argument is the number of images that will be sampled from each equirectangular image. We have found that 8 images per equirectangular image is sufficient for most use cases so it defaults to that. However, if you find that there isn't enough detail in the nerf or that colmap is having trouble aligning the images, you can try increasing the number of images per equirectangular image to 14. See the video section below for details on cropping. - -### Videos - -For videos we recommend taking a video with the camera held on top of your head. This will result in any unwanted capturer to just be in the bottom of each frame image and therefore can be cropped out. - -For a video, process the data using the following command: - -```bash -ns-process-data video --camera-type equirectangular --images-per-equirect {8, or 14} --num-frames-target {num equirectangular frames to sample from} --crop-factor {top bottom left right} --data {data directory} --output-dir {output directory} -``` - -See the equirectangular images section above for a description of the `--images-per-equirect` argument. - -The `num-frames-target` argument is optional but it is recommended to set it to 3*(seconds of video) frames. For example, if you have a 30 second video, you would use `--num-frames-target 90` (3*30=90). This number was chosen from a bit of experimentation and seems to work well for most videos. It is by no means a hard rule and you can experiment with different values. - -The `crop-factor` argument is optional but often very helpful. This is because equirectangular videos taken by 360 cameras tend to have a portion of the bottom of the image that is the person who was holding the camera over their head. - - - -The pixels representing the distorted hand and head are obviously not useful in training a nerf so we can remove it by cropping the bottom 20% of the image. This can be done by using the `--crop-factor 0 0.2 0 0` argument. - -If cropping only needs to be done from the bottom, you can use the `--crop-bottom [num]` argument which would be the same as doing `--crop-factor 0.0 [num] 0.0 0.0` - -## πŸ₯½ Render VR Video - -Stereo equirectangular rendering for VR video is supported as VR180 and omni-directional stereo (360 VR) Nerfstudio camera types for video and image rendering. - -### Omni-directional Stereo (360 VR) -This outputs two equirectangular renders vertically stacked, one for each eye. Omni-directional stereo (ODS) is a method to render VR 3D 360 videos, and may introduce slight depth distortions for close objects. For additional information on how ODS works, refer to this [writeup](https://developers.google.com/vr/jump/rendering-ods-content.pdf). - -
- -
- - -### VR180 -This outputs two 180 deg equirectangular renders horizontally stacked, one for each eye. VR180 is a video format for VR 3D 180 videos. Unlike in omnidirectional stereo, VR180 content only displays front facing content. - -
- -
- -### Setup instructions -To render for VR video it is essential to adjust the NeRF to have an approximately true-to-life real world scale (adjustable in the camera path) to ensure that the scene depth and IPD (distance between the eyes) is appropriate for the render to be viewable in VR. You can adjust the scene scale with the [Nerfstudio Blender Add-on](https://docs.nerf.studio/extensions/blender_addon.html) by appropriately scaling a point cloud representation of the NeRF. -Results may be unviewable if the scale is not set appropriately. The IPD is set at 64mm by default but only is accurate when the NeRF scene is true to scale. - -For good quality renders, it is recommended to render at high resolutions (For ODS: 4096x2048 per eye, or 2048x1024 per eye. For VR180: 4096x4096 per eye or 2048x2048 per eye). Render resolutions for a single eye are specified in the camera path. For VR180, resolutions must be in a 1:1 aspect ratio. For ODS, resolutions must be in a 2:1 aspect ratio. The final stacked render output will automatically be constructed (with aspect ratios for VR180 as 2:1 and ODS as 1:1). - -:::{admonition} Note -:class: info -If you are rendering an image sequence, it is recommended to render as png instead of jpeg, since the png will appear clearer. However, file sizes can be significantly larger with png. -::: - -To render with the VR videos camera: -1. Use the [Nerfstudio Blender Add-on](https://docs.nerf.studio/extensions/blender_addon.html) to set the scale of the NeRF scene and create the camera path - - Export a point cloud representation of the NeRF - - Import the point cloud representation in Blender and enable the Nerfstudio Blender Add-on - - Create a reference object such as a cube which may be 1x1x1 meter. You could also create a cylinder and scale it to an appropriate height of a viewer. - - Now scale the point cloud representation accordingly to match the reference object. This is to ensure that the NeRF scene is scaled as close to real life. - - To place the camera at the correct height from the ground in the scene, you can create a cylinder representing the viewer vertically scaled to the viewer’s height, and place the camera at eye level. - - Animate the camera movement as needed - - Create the camera path JSON file with the Nerfstudio Blender Add-on - -2. Edit the JSON camera path file - - **Omni-directional Stereo (360 VR)** - - Open the camera path JSON file and specify the `camera_type` as `omnidirectional` - - Specify the `render_height` and `render_width` to the resolution of a single eye. The width:height aspect ratio must be 2:1. Recommended resolutions are 4096x2048 or 2048x1024. -
- -
- - - **VR180** - - Open the camera path JSON file and specify the `camera_type` as `vr180` - - Specify the `render_height` and `render_width` to the resolution of a single eye. The width:height aspect ratio must be 1:1. Recommended resolutions are 4096x4096 or 2048x2048. -
- -
- - - Save the camera path and render the NeRF - - -:::{admonition} Note -:class: info -If the depth of the scene is unviewable and looks too close or expanded when viewing the render in VR, the scale of the NeRF may be set too small. If there is almost no discernible depth, the scale of the NeRF may be too large. Getting the right scale may take some experimentation, so it is recommended to either render at a much lower resolution or just one frame to ensure the depth and render is viewable in the VR headset. -::: - -#### Additional Notes -- Rendering with VR180 or ODS can take significantly longer than traditional renders due to higher resolutions and needing to render a left and right eye view for each frame. Render times may grow exponentially with larger resolutions. -- When rendering VR180 or ODS content, Nerfstudio will first render the left eye, then the right eye, and finally vertically stack the renders. During this process, Nerfstudio will create a temporary folder to store the left and right eye renders and delete this folder once the final renders are stacked. -- If rendering content where the camera is stationary for many frames, it is recommended to only render once at that position and extend the time in a video editor since ODS renders can take a lot of time to render. -- It is recommended to render a preliminary render at a much lower resolution or frame rate to test and ensure that the depth and camera position look accurate in VR. - - The IPD can be modified in the `cameras.py` script as the variable `vr_ipd` (default is 64 mm). - - Compositing with Blender Objects and VR180 or ODS Renders - - Configure the Blender camera as panoramic and equirectangular. For the VR180 Blender camera, set the panoramic longitude min and max to -90 and 90. - - Change the Stereoscopy mode to "Parallel" set the Interocular Distance to 0.064 m. diff --git a/docs/quickstart/data_conventions.md b/docs/quickstart/data_conventions.md deleted file mode 100644 index a929ff53..00000000 --- a/docs/quickstart/data_conventions.md +++ /dev/null @@ -1,124 +0,0 @@ -# Data conventions - -## Coordinate conventions - -Here we explain the coordinate conventions for using our repo. - -### Camera/view space - -We use the OpenGL/Blender (and original NeRF) coordinate convention for cameras. +X is right, +Y is up, and +Z is pointing back and away from the camera. -Z is the look-at direction. Other codebases may use the COLMAP/OpenCV convention, where the Y and Z axes are flipped from ours but the +X axis remains the same. - -### World space - -Our world space is oriented such that the up vector is +Z. The XY plane is parallel to the ground plane. In the viewer, you'll notice that red, green, and blue vectors correspond to X, Y, and Z respectively. - -
- -## Dataset format - -Our explanation here is for the nerfstudio data format. The `transforms.json` has a similar format to [Instant NGP](https://github.com/NVlabs/instant-ngp). - -### Camera intrinsics - -If all of the images share the same camera intrinsics, the values can be placed at the top of the file. - -```json -{ - "camera_model": "OPENCV_FISHEYE", // camera model type [OPENCV, OPENCV_FISHEYE] - "fl_x": 1072.0, // focal length x - "fl_y": 1068.0, // focal length y - "cx": 1504.0, // principal point x - "cy": 1000.0, // principal point y - "w": 3008, // image width - "h": 2000, // image height - "k1": 0.0312, // first radial distortion parameter, used by [OPENCV, OPENCV_FISHEYE] - "k2": 0.0051, // second radial distortion parameter, used by [OPENCV, OPENCV_FISHEYE] - "k3": 0.0006, // third radial distortion parameter, used by [OPENCV_FISHEYE] - "k4": 0.0001, // fourth radial distortion parameter, used by [OPENCV_FISHEYE] - "p1": -6.47e-5, // first tangential distortion parameter, used by [OPENCV] - "p2": -1.37e-7, // second tangential distortion parameter, used by [OPENCV] - "frames": // ... per-frame intrinsics and extrinsics parameters -} -``` - -Per-frame intrinsics can also be defined in the `frames` field. If defined for a field (ie. `fl_x`), all images must have per-image intrinsics defined for that field. Per-frame `camera_model` is not supported. - -```json -{ - // ... - "frames": [ - { - "fl_x": 1234 - } - ] -} -``` - -### Camera extrinsics - -For a transform matrix, the first 3 columns are the +X, +Y, and +Z defining the camera orientation, and the X, Y, Z values define the origin. The last row is to be compatible with homogeneous coordinates. - -```json -{ - // ... - "frames": [ - { - "file_path": "images/frame_00001.jpeg", - "transform_matrix": [ - // [+X0 +Y0 +Z0 X] - // [+X1 +Y1 +Z1 Y] - // [+X2 +Y2 +Z2 Z] - // [0.0 0.0 0.0 1] - [1.0, 0.0, 0.0, 0.0], - [0.0, 1.0, 0.0, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.0, 0.0, 0.0, 1.0] - ] - // Additional per-frame info - } - ] -} -``` - -### Depth images - -To train with depth supervision, you can also provide a `depth_file_path` for each frame in your `transforms.json` and use one of the methods that support additional depth losses (e.g., depth-nerfacto). The depths are assumed to be 16-bit or 32-bit and to be in millimeters to remain consistent with [Polyform](https://github.com/PolyCam/polyform). Zero-value in the depth image is treated as unknown depth. You can adjust this scaling factor using the `depth_unit_scale_factor` parameter in `NerfstudioDataParserConfig`. Note that by default, we resize the depth images to match the shape of the RGB images. - -```json -{ - "frames": [ - { - // ... - "depth_file_path": "depth/0001.png" - } - ] -} -``` - -### Masks - -:::{admonition} Warning -:class: Warning - -The current implementation of masking is inefficient and will cause large memory allocations. -::: - -There may be parts of the training image that should not be used during training (ie. moving objects such as people). These images can be masked out using an additional mask image that is specified in the `frame` data. - -```json -{ - "frames": [ - { - // ... - "mask_path": "masks/mask.jpeg" - } - ] -} -``` - -The following mask requirements must be met: - -- Must be 1 channel with only black and white pixels -- Must be the same resolution as the training image -- Black corresponds to regions to ignore -- If used, all images must have a mask diff --git a/docs/quickstart/existing_dataset.md b/docs/quickstart/existing_dataset.md deleted file mode 100644 index 81ae0ebc..00000000 --- a/docs/quickstart/existing_dataset.md +++ /dev/null @@ -1,89 +0,0 @@ -# Using existing data - -Nerfstudio comes with built-in support for a number of datasets, which can be downloaded with the [`ns-download-data` command][cli]. Each of the built-in datasets comes ready to use with various Nerfstudio methods (e.g. the recommended default Nerfacto), allowing you to get started in the blink of an eye. - -[cli]: https://docs.nerf.studio/reference/cli/ns_download_data.html -[paper]: https://arxiv.org/pdf/2302.04264.pdf - -## Example - -Here are a few examples of downloading different scenes. Please see the [Training Your First NeRF](first_nerf.md) documentation for more details on how to train a model with them. - -```bash -# Download all scenes from the Blender dataset, including the "classic" Lego model -ns-download-data blender - -# Download the subset of data used in the SIGGRAPH 2023 Nerfstudio paper -ns-download-data nerfstudio --capture-name nerfstudio-dataset - -# Download a few room-scale scenes from the EyefulTower dataset at different resolutions -ns-download-data eyefultower --capture-name riverview seating_area apartment --resolution-name jpeg_1k jpeg_2k - -# Download the full D-NeRF dataset of dynamic synthetic scenes -ns-download-data dnerf -``` - -## Dataset Summary - -Many of these datasets are used as baselines to evaluate new research in novel view synthesis, such as in the [original Nerfstudio paper][paper]. Scenes from these datasets lie at dramatically different points in the space of images, across axes such as photorealism (synthetic vs real), dynamic range (LDR vs HDR), scale (number of images), and resolution. The tables below describe some of this variation, and hopefully make it easier to pick an appropriate dataset for your research or application. - -| Dataset | Synthetic | Real | LDR | HDR | Scenes | Image Count1 | Image Resolution2 | -| :-: | :-: | :-: | :-: | :-: | :------: | :-: | :-: | -| [Blender][blender] | βœ”οΈ | | βœ”οΈ | | 8 | βž–βž•οΈβž–βž– | βž•οΈβž–βž–βž–βž– | -| [D-NeRF][dnerf] | βœ”οΈ | | βœ”οΈ | | 8 | βž•οΈβž–βž–βž– | βž•οΈβž–βž–βž–βž– | -| [EyefulTower][eyefultower] | | βœ”οΈ | βœ”οΈ | βœ”οΈ | 11 | βž–βž•οΈβž•οΈβž•οΈ | βž–βž•οΈβž•οΈβž•οΈβž•οΈ | -| [Mill 19][mill19] | | βœ”οΈ | βœ”οΈ | | 2 | βž–βž–βž•οΈβž– | βž–βž–βž–βž•οΈβž– | -| [NeRF-OSR][nerfosr] | | βœ”οΈ | βœ”οΈ | | 9 | βž•βž•οΈβž•οΈβž– | βž–βž•οΈβž–βž•οΈβž– | -| [Nerfstudio][nerfstudio] | | βœ”οΈ | βœ”οΈ | | 18 | βž•βž•οΈβž•οΈβž– | βž•οΈβž•οΈβž•οΈβž–βž– | -| [PhotoTourism][phototourism] | | βœ”οΈ | βœ”οΈ | | 10 | βž–βž•οΈβž•οΈβž– | βž–βž•οΈβž–βž–βž– | -| [Record3D][record3d] | | βœ”οΈ | βœ”οΈ | | 1 | βž–βž–βž•οΈβž– | βž•οΈβž–βž–βž–βž– | -| [SDFStudio][sdfstudio] | βœ”οΈ | βœ”οΈ | βœ”οΈ | | 45 | βž•οΈβž•οΈβž•οΈβž– | βž•οΈβž–βž•οΈβž–βž– | -| [sitcoms3D][sitcoms3d] | | βœ”οΈ | βœ”οΈ | | 10 | βž•οΈβž–βž–βž– | βž•οΈβž•οΈβž–βž–βž– | - -In the tables below, each dataset was placed into a bucket based on the table's chosen property. If a box contains a βœ”οΈ, the corresponding dataset will have *at least* one scene falling into the corresponding bucket for that property, though there may be multiple scenes at different points within the range. - - -1: Condensed version of the "Scene Size: Number of RGB Images" table below.
-2: Condensed version of the "Scene RGB Resolutions: `max(width, height)`" table below. -
- -### Scene Size: Number of RGB Images - -| Dataset | < 250 | 250 - 999 | 1000 - 3999 | β‰₯ 4000 | -| :-: | :-: | :-: | :-: | :-: | -| [Blender][blender] | | βœ”οΈ | | | -| [D-NeRF][dnerf] | βœ”οΈ | | | | -| [EyefulTower][eyefultower] | | βœ”οΈ | βœ”οΈ | βœ”οΈ | -| [Mill 19][mill19] | | | βœ”οΈ | | -| [NeRF-OSR][nerfosr] | βœ”οΈ | βœ”οΈ | βœ”οΈ | | -| [Nerfstudio][nerfstudio] | βœ”οΈ | βœ”οΈ | βœ”οΈ | | -| [PhotoTourism][phototourism] | | βœ”οΈ | βœ”οΈ | | -| [Record3D][record3d] | | | βœ”οΈ | | -| [SDFStudio][sdfstudio] | βœ”οΈ | βœ”οΈ | βœ”οΈ | | -| [sitcoms3D][sitcoms3d] | βœ”οΈ | | | - -### Scene RGB Resolutions: `max(width, height)` - -| Dataset | < 1000 | 1000 - 1999 | 2000 - 3999 | 4000 - 7999 | β‰₯ 8000 | -| :-: | :-: | :-: | :-: | :-: | :-: | -| [Blender][blender] | βœ”οΈ | | | | | -| [D-NeRF][dnerf] | βœ”οΈ | | | | | -| [EyefulTower][eyefultower] | | βœ”οΈ | βœ”οΈ | βœ”οΈ | βœ”οΈ | -| [Mill 19][mill19] | | | | βœ”οΈ | | -| [NeRF-OSR][nerfosr] | | βœ”οΈ | | βœ”οΈ | | -| [Nerfstudio][nerfstudio] | βœ”οΈ | βœ”οΈ | βœ”οΈ | | | -| [PhotoTourism][phototourism] | | βœ”οΈ | | | | -| [Record3D][record3d] | βœ”οΈ | | | | | -| [SDFStudio][sdfstudio] | βœ”οΈ | | βœ”οΈ | | | -| [sitcoms3D][sitcoms3d] | βœ”οΈ | βœ”οΈ | | | | - -[blender]: https://github.com/bmild/nerf?tab=readme-ov-file#project-page--video--paper--data -[dnerf]: https://github.com/albertpumarola/D-NeRF?tab=readme-ov-file#download-dataset -[eyefultower]: https://github.com/facebookresearch/EyefulTower -[mill19]: https://github.com/cmusatyalab/mega-nerf?tab=readme-ov-file#mill-19 -[nerfosr]: https://4dqv.mpi-inf.mpg.de/NeRF-OSR/ -[nerfstudio]: https://github.com/nerfstudio-project/nerfstudio -[phototourism]: https://www.cs.ubc.ca/~kmyi/imw2020/data.html -[record3d]: https://record3d.app/ -[sdfstudio]: https://github.com/autonomousvision/sdfstudio/blob/master/docs/sdfstudio-data.md#Existing-dataset -[sitcoms3d]: https://github.com/ethanweber/sitcoms3D/blob/master/METADATA.md diff --git a/docs/quickstart/export_geometry.md b/docs/quickstart/export_geometry.md deleted file mode 100644 index 2ffd5189..00000000 --- a/docs/quickstart/export_geometry.md +++ /dev/null @@ -1,61 +0,0 @@ -# Export geometry - -Here we document how to export point clouds and meshes from nerfstudio. The main command you'll be working with is `ns-export`. Our point clouds are exported as `.ply` files and the textured meshes are exported as `.obj` files. - -## Exporting a mesh - -### 1. TSDF Fusion - -TSDF (truncated signed distance function) Fusion is a meshing algorithm that uses depth maps to extract a surface as a mesh. This method works for all models. - -```python -ns-export tsdf --load-config CONFIG.yml --output-dir OUTPUT_DIR -``` - -### 2. Poisson surface reconstruction - -Poisson surface reconstruction gives the highest quality meshes. See the steps below to use Poisson surface reconstruction in our repo. - -> **Note:** -> This will only work with a Model that computes or predicts normals, e.g., nerfacto. - -1. Train nerfacto with network settings that predict normals. - -```bash -ns-train nerfacto --pipeline.model.predict-normals True -``` - -2. Export a mesh with the Poisson meshing algorithm. - -```bash -ns-export poisson --load-config CONFIG.yml --output-dir OUTPUT_DIR -``` - -## Exporting a point cloud - -```bash -ns-export pointcloud --help -``` - -## Other exporting methods - -Run the following command to see other export methods that may exist. - -```python -ns-export --help -``` - -## Texturing an existing mesh with NeRF - -Say you want to simplify and/or smooth a mesh offline, and then you want to texture it with NeRF. You can do that with the following command. It will work for any mesh filetypes that [PyMeshLab](https://pymeshlab.readthedocs.io/en/latest/) can support, for example a `.ply`. - -```python -python nerfstudio/scripts/texture.py --load-config CONFIG.yml --input-mesh-filename FILENAME --output-dir OUTPUT_DIR -``` - -## Dependencies - -Our dependencies are shipped with the pip package in the pyproject.toml file. These are the following: - -- [xatlas-python](https://github.com/mworchel/xatlas-python) for unwrapping meshes to a UV map -- [pymeshlab](https://pymeshlab.readthedocs.io/en/latest/) for reducing the number of faces in a mesh diff --git a/docs/quickstart/first_nerf.md b/docs/quickstart/first_nerf.md deleted file mode 100644 index 67a84783..00000000 --- a/docs/quickstart/first_nerf.md +++ /dev/null @@ -1,171 +0,0 @@ -# Training your first model - -## Train and run viewer - -The following will train a _nerfacto_ model, our recommended model for real world scenes. - -```bash -# Download some test data: -ns-download-data nerfstudio --capture-name=poster -# Train model -ns-train nerfacto --data data/nerfstudio/poster -``` - -If everything works, you should see training progress like the following: - -

- image -

- -Navigating to the link at the end of the terminal will load the webviewer. If you are running on a remote machine, you will need to port forward the websocket port (defaults to 7007). - -

- image -

- -:::{admonition} Note -:class: note - -- You may have to change the port using `--viewer.websocket-port`. -- All data configurations must go at the end. In this case, `nerfstudio-data` and all of its corresponding configurations come at the end after the model and viewer specification. - ::: - -## Resume from checkpoint - -It is possible to load a pretrained model by running - -```bash -ns-train nerfacto --data data/nerfstudio/poster --load-dir {outputs/.../nerfstudio_models} -``` - -## Visualize existing run - -Given a pretrained model checkpoint, you can start the viewer by running - -```bash -ns-viewer --load-config {outputs/.../config.yml} -``` - -## Exporting Results - -Once you have a NeRF model you can either render out a video or export a point cloud. - -### Render Video - -First we must create a path for the camera to follow. This can be done in the viewer under the "RENDER" tab. Orient your 3D view to the location where you wish the video to start, then press "ADD CAMERA". This will set the first camera key frame. Continue to new viewpoints adding additional cameras to create the camera path. We provide other parameters to further refine your camera path. Once satisfied, press "RENDER" which will display a modal that contains the command needed to render the video. Kill the training job (or create a new terminal if you have lots of compute) and run the command to generate the video. - -Other video export options are available, learn more by running - -```bash -ns-render --help -``` - -### Generate Point Cloud - -While NeRF models are not designed to generate point clouds, it is still possible. Navigate to the "EXPORT" tab in the 3D viewer and select "POINT CLOUD". If the crop option is selected, everything in the yellow square will be exported into a point cloud. Modify the settings as desired then run the command at the bottom of the panel in your command line. - -Alternatively you can use the CLI without the viewer. Learn about the export options by running - -```bash -ns-export pointcloud --help -``` - -## Intro to nerfstudio CLI and Configs - -Nerfstudio allows customization of training and eval configs from the CLI in a powerful way, but there are some things to understand. - -The most demonstrative and helpful example of the CLI structure is the difference in output between the following commands: - -The following will list the supported models - -```bash -ns-train --help -``` - -Applying `--help` after the model specification will provide the model and training specific arguments. - -```bash -ns-train nerfacto --help -``` - -At the end of the command you can specify the dataparser used. By default we use the _nerfstudio-data_ dataparser. We include other dataparsers such as _Blender_, _NuScenes_, ect. For a list of dataparse specific arguments, add `--help` to the end of the command - -```bash -ns-train nerfacto nerfstudio-data --help -``` - -Each script will have some other minor quirks (like the training script dataparser subcommand needing to come after the model subcommand), read up on them [here](../reference/cli/index.md). - -## Comet / Tensorboard / WandB / Viewer - -We support four different methods to track training progress, using the viewer [tensorboard](https://www.tensorflow.org/tensorboard), [Weights and Biases](https://wandb.ai/site), and [Comet](https://comet.com/?utm_source=nerf&utm_medium=referral&utm_content=nerf_docs). You can specify which visualizer to use by appending `--vis {viewer, tensorboard, wandb, comet, viewer+wandb, viewer+tensorboard, viewer+comet}` to the training command. Simultaneously utilizing the viewer alongside wandb or tensorboard may cause stuttering issues during evaluation steps. The viewer only works for methods that are fast (ie. nerfacto, instant-ngp), for slower methods like NeRF, use the other loggers. - -## Evaluating Runs - -Calculate the psnr of your trained model and save to a json file. - -```bash -ns-eval --load-config={PATH_TO_CONFIG} --output-path=output.json -``` - -We also provide a train and evaluation script that allows you to do benchmarking on the classical Blender dataset (see our [benchmarking workflow](../developer_guides/debugging_tools/benchmarking.md)). - -## Multi-GPU Training - -Here we explain how to use multi-GPU training. We are using [PyTorch Distributed Data Parallel (DDP)](https://pytorch.org/tutorials/beginner/dist_overview.html), so gradients are averaged over devices. If the loss scales depend on sample size (usually not the case in our implementation), we need to scale the learning rate with the number of GPUs used. Plotting will only be done for the first process. Note that you may want to play around with both learning rate and `_num_rays_per_batch` when using DDP. Below is a simple example for how you'd run the `nerfacto-big` method on the aspen scene (see above to download the data), with either 1 or 2 GPUs. The `nerfacto-big` method uses a larger model size than the `nerfacto` method, so it benefits more from multi-GPU training. - -First, download the aspen scene. - -```python -ns-download-data nerfstudio --capture-name=aspen -``` - -```python -# 1 GPU (8192 rays per GPU per batch) -export CUDA_VISIBLE_DEVICES=0 -ns-train nerfacto-big --vis viewer+wandb --machine.num-devices 1 --pipeline.datamanager.train-num-rays-per-batch 4096 --data data/nerfstudio/aspen -``` - -You would observe about ~70k rays / sec on NVIDIA V100. - -``` -Step (% Done) Train Iter (time) ETA (time) Train Rays / Sec ------------------------------------------------------------------------------------ -610 (0.61%) 115.968 ms 3 h, 12 m, 6 s 72.68 K -620 (0.62%) 115.908 ms 3 h, 11 m, 58 s 72.72 K -630 (0.63%) 115.907 ms 3 h, 11 m, 57 s 72.73 K -640 (0.64%) 115.937 ms 3 h, 11 m, 59 s 72.71 K -650 (0.65%) 115.853 ms 3 h, 11 m, 49 s 72.76 K -660 (0.66%) 115.710 ms 3 h, 11 m, 34 s 72.85 K -670 (0.67%) 115.797 ms 3 h, 11 m, 42 s 72.80 K -680 (0.68%) 115.783 ms 3 h, 11 m, 39 s 72.81 K -690 (0.69%) 115.756 ms 3 h, 11 m, 35 s 72.81 K -700 (0.70%) 115.755 ms 3 h, 11 m, 34 s 72.81 K -``` - -By having more GPUs in the training, you can allocate batch size to multiple GPUs and average their gradients. - -```python -# 2 GPUs (4096 rays per GPU per batch, effectively 8192 rays per batch) -export CUDA_VISIBLE_DEVICES=0,1 -ns-train nerfacto --vis viewer+wandb --machine.num-devices 2 --pipeline.datamanager.train-num-rays-per-batch 4096 --data data/nerfstudio/aspen -``` - -You would get improved throughput (~100k rays / sec on two NVIDIA V100). - -``` -Step (% Done) Train Iter (time) ETA (time) Train Rays / Sec ------------------------------------------------------------------------------------ -1910 (1.91%) 79.623 ms 2 h, 10 m, 10 s 104.92 K -1920 (1.92%) 79.083 ms 2 h, 9 m, 16 s 105.49 K -1930 (1.93%) 79.092 ms 2 h, 9 m, 16 s 105.48 K -1940 (1.94%) 79.364 ms 2 h, 9 m, 42 s 105.21 K -1950 (1.95%) 79.327 ms 2 h, 9 m, 38 s 105.25 K -1960 (1.96%) 79.473 ms 2 h, 9 m, 51 s 105.09 K -1970 (1.97%) 79.334 ms 2 h, 9 m, 37 s 105.26 K -1980 (1.98%) 79.200 ms 2 h, 9 m, 23 s 105.38 K -1990 (1.99%) 79.264 ms 2 h, 9 m, 28 s 105.29 K -2000 (2.00%) 79.168 ms 2 h, 9 m, 18 s 105.40 K -``` - -During training, the "Train Rays / Sec" throughput represents the total number of training rays it processes per second, gradually increase the number of GPUs and observe how this throughput improves and eventually saturates. diff --git a/docs/quickstart/imgs/equirect_crop.jpg b/docs/quickstart/imgs/equirect_crop.jpg deleted file mode 100644 index 584dab83..00000000 Binary files a/docs/quickstart/imgs/equirect_crop.jpg and /dev/null differ diff --git a/docs/quickstart/imgs/kiri_capture.png b/docs/quickstart/imgs/kiri_capture.png deleted file mode 100644 index 64f1531b..00000000 Binary files a/docs/quickstart/imgs/kiri_capture.png and /dev/null differ diff --git a/docs/quickstart/imgs/kiri_setup.png b/docs/quickstart/imgs/kiri_setup.png deleted file mode 100644 index 4203985e..00000000 Binary files a/docs/quickstart/imgs/kiri_setup.png and /dev/null differ diff --git a/docs/quickstart/imgs/polycam_export.png b/docs/quickstart/imgs/polycam_export.png deleted file mode 100644 index 4d499716..00000000 Binary files a/docs/quickstart/imgs/polycam_export.png and /dev/null differ diff --git a/docs/quickstart/imgs/polycam_settings.png b/docs/quickstart/imgs/polycam_settings.png deleted file mode 100644 index 04702c14..00000000 Binary files a/docs/quickstart/imgs/polycam_settings.png and /dev/null differ diff --git a/docs/quickstart/imgs/record3d_promo.png b/docs/quickstart/imgs/record3d_promo.png deleted file mode 100644 index 32739279..00000000 Binary files a/docs/quickstart/imgs/record3d_promo.png and /dev/null differ diff --git a/docs/quickstart/imgs/record_3d_export_selection.png b/docs/quickstart/imgs/record_3d_export_selection.png deleted file mode 100644 index 092be91f..00000000 Binary files a/docs/quickstart/imgs/record_3d_export_selection.png and /dev/null differ diff --git a/docs/quickstart/imgs/record_3d_video_selection.png b/docs/quickstart/imgs/record_3d_video_selection.png deleted file mode 100644 index bd97fa0a..00000000 Binary files a/docs/quickstart/imgs/record_3d_video_selection.png and /dev/null differ diff --git a/docs/quickstart/imgs/viewer_link.png b/docs/quickstart/imgs/viewer_link.png deleted file mode 100644 index 37c5c524..00000000 Binary files a/docs/quickstart/imgs/viewer_link.png and /dev/null differ diff --git a/docs/quickstart/installation.md b/docs/quickstart/installation.md deleted file mode 100644 index c3b75668..00000000 --- a/docs/quickstart/installation.md +++ /dev/null @@ -1,352 +0,0 @@ -# Installation - -## Prerequisites - -::::::{tab-set} -:::::{tab-item} Linux - -Nerfstudio requires `python >= 3.8`. We recommend using conda to manage dependencies. Make sure to install [Conda](https://docs.conda.io/en/latest/miniconda.html) before proceeding. - -::::: -:::::{tab-item} Windows - -Install [Git](https://git-scm.com/downloads). - -Install Visual Studio 2022. This must be done before installing CUDA. The necessary components are included in the `Desktop Development with C++` workflow (also called `C++ Build Tools` in the BuildTools edition). - -Nerfstudio requires `python >= 3.8`. We recommend using conda to manage dependencies. Make sure to install [Conda](https://docs.conda.io/en/latest/miniconda.html) before proceeding. - -::::: -:::::: - -## Create environment - -```bash -conda create --name nerfstudio -y python=3.8 -conda activate nerfstudio -python -m pip install --upgrade pip - -``` - -## Dependencies - -(pytorch)= - -### PyTorch - -Note that if a PyTorch version prior to 2.0.1 is installed, -the previous version of pytorch, functorch, and tiny-cuda-nn should be uninstalled. - -```bash -pip uninstall torch torchvision functorch tinycudann -``` - -::::{tab-set} -:::{tab-item} Torch 2.1.2 with CUDA 11.8 (recommended) - -Install PyTorch 2.1.2 with CUDA 11.8: - -```bash -pip install torch==2.1.2+cu118 torchvision==0.16.2+cu118 --extra-index-url https://download.pytorch.org/whl/cu118 -``` - -To build the necessary CUDA extensions, `cuda-toolkit` is also required. We -recommend installing with conda: - -```bash -conda install -c "nvidia/label/cuda-11.8.0" cuda-toolkit -``` - -::: -:::{tab-item} Torch 2.0.1 with CUDA 11.7 - -Install PyTorch 2.0.1 with CUDA 11.7: - -```bash -pip install torch==2.0.1+cu117 torchvision==0.15.2+cu117 --extra-index-url https://download.pytorch.org/whl/cu117 -``` - -To build the necessary CUDA extensions, `cuda-toolkit` is also required. We -recommend installing with conda: - -```bash -conda install -c "nvidia/label/cuda-11.7.1" cuda-toolkit -``` - -::: -:::: - -### tiny-cuda-nn - -After pytorch and ninja, install the torch bindings for tiny-cuda-nn: - -```bash -pip install ninja git+https://github.com/NVlabs/tiny-cuda-nn/#subdirectory=bindings/torch -``` - -## Installing nerfstudio - -**From pip** - -```bash -pip install nerfstudio -``` - -**From source** -Optional, use this command if you want the latest development version. - -```bash -git clone https://github.com/nerfstudio-project/nerfstudio.git -cd nerfstudio -pip install --upgrade pip setuptools -pip install -e . -``` - -:::{admonition} Note -:class: info -Below are optional installations, but makes developing with nerfstudio much more convenient. -::: - -**Tab completion (bash & zsh)** - -This needs to be rerun when the CLI changes, for example if nerfstudio is updated. - -```bash -ns-install-cli -``` - -**Development packages** - -```bash -pip install -e .[dev] -pip install -e .[docs] -``` - -## Use docker image - -Instead of installing and compiling prerequisites, setting up the environment and installing dependencies, a ready to use docker image is provided. - -### Prerequisites - -Docker ([get docker](https://docs.docker.com/get-docker/)) and nvidia GPU drivers ([get nvidia drivers](https://www.nvidia.de/Download/index.aspx?lang=de)), capable of working with CUDA 11.8, must be installed. -The docker image can then either be pulled from [here](https://hub.docker.com/r/dromni/nerfstudio/tags) (replace with the actual version, e.g. 0.1.18) - -```bash -docker pull dromni/nerfstudio: -``` - -or be built from the repository using - -```bash -docker build --tag nerfstudio -f Dockerfile . -``` - -To restrict to only CUDA architectures that you have available locally, use the `CUDA_ARCHITECTURES` -build arg and look up [the compute capability for your GPU](https://developer.nvidia.com/cuda-gpus). -For example, here's how to build with support for GeForce 30xx series GPUs: - -```bash -docker build \ - --build-arg CUDA_VERSION=11.8.0 \ - --build-arg CUDA_ARCHITECTURES=86 \ - --build-arg OS_VERSION=22.04 \ - --tag nerfstudio-86 \ - --file Dockerfile . -``` - -The user inside the container is called 'user' and is mapped to the local user with ID 1000 (usually the first non-root user on Linux systems). -If you suspect that your user might have a different id, override `USER_ID` during the build as follows: - -```bash -docker build \ - --build-arg USER_ID=$(id -u) \ - --file Dockerfile . -``` - -### Using an interactive container - -The docker container can be launched with an interactive terminal where nerfstudio commands can be entered as usual. Some parameters are required and some are strongly recommended for usage as following: - -```bash -docker run --gpus all \ # Give the container access to nvidia GPU (required). - -u $(id -u) \ # To prevent abusing of root privilege, please use custom user privilege to start. - -v /folder/of/your/data:/workspace/ \ # Mount a folder from the local machine into the container to be able to process them (required). - -v /home//.cache/:/home/user/.cache/ \ # Mount cache folder to avoid re-downloading of models everytime (recommended). - -p 7007:7007 \ # Map port from local machine to docker container (required to access the web interface/UI). - --rm \ # Remove container after it is closed (recommended). - -it \ # Start container in interactive mode. - --shm-size=12gb \ # Increase memory assigned to container to avoid memory limitations, default is 64 MB (recommended). - dromni/nerfstudio: # Docker image name if you pulled from docker hub. - <--- OR ---> - nerfstudio # Docker image tag if you built the image from the Dockerfile by yourself using the command from above. -``` - -### Call nerfstudio commands directly - -Besides, the container can also directly be used by adding the nerfstudio command to the end. - -```bash -docker run --gpus all -u $(id -u) -v /folder/of/your/data:/workspace/ -v /home//.cache/:/home/user/.cache/ -p 7007:7007 --rm -it --shm-size=12gb # Parameters. - dromni/nerfstudio: \ # Docker image name - ns-process-data video --data /workspace/video.mp4 # Smaple command of nerfstudio. -``` - -### Note - -- The container works on Linux and Windows, depending on your OS some additional setup steps might be required to provide access to your GPU inside containers. -- Paths on Windows use backslash '\\' while unix based systems use a frontslash '/' for paths, where backslashes might require an escape character depending on where they are used (e.g. C:\\\\folder1\\\\folder2...). Alternatively, mounts can be quoted (e.g. `-v 'C:\local_folder:/docker_folder'`). Ensure to use the correct paths when mounting folders or providing paths as parameters. -- Always use full paths, relative paths are known to create issues when being used in mounts into docker. -- Everything inside the container, what is not in a mounted folder (workspace in the above example), will be permanently removed after destroying the container. Always do all your tasks and output folder in workdir! -- The container currently is based on nvidia/cuda:11.8.0-devel-ubuntu22.04, consequently it comes with CUDA 11.8 which must be supported by the nvidia driver. No local CUDA installation is required or will be affected by using the docker image. -- The docker image (respectively Ubuntu 22.04) comes with Python3.10, no older version of Python is installed. -- If you call the container with commands directly, you still might want to add the interactive terminal ('-it') flag to get live log outputs of the nerfstudio scripts. In case the container is used in an automated environment the flag should be discarded. -- The current version of docker is built for multi-architecture (CUDA architectures) use. The target architecture(s) must be defined at build time for Colmap and tinyCUDNN to be able to compile properly. If your GPU architecture is not covered by the following table you need to replace the number in the line `ARG CUDA_ARCHITECTURES=90;89;86;80;75;70;61;52;37` to your specific architecture. It also is a good idea to remove all architectures but yours (e.g. `ARG CUDA_ARCHITECTURES=86`) to speedup the docker build process a lot. -- To avoid memory issues or limitations during processing, it is recommended to use either `--shm-size=12gb` or `--ipc=host` to increase the memory available to the docker container. 12gb as in the example is only a suggestion and may be replaced by other values depending on your hardware and requirements. - -**Currently supported CUDA architectures in the docker image** - -(tiny-cuda-arch-list)= - -| GPU | CUDA arch | -| --------------- | --------- | -| H100 | 90 | -| 40X0 | 89 | -| 30X0 | 86 | -| A100 | 80 | -| 20X0 | 75 | -| TITAN V / V100 | 70 | -| 10X0 / TITAN Xp | 61 | -| 9X0 | 52 | -| K80 | 37 | - -## Installation FAQ - -- [ImportError: DLL load failed while importing \_89_C](tiny-cuda-mismatch-arch) -- [tiny-cuda-nn installation errors out with cuda mismatch](tiny-cuda-mismatch-error) -- [tiny-cuda-nn installation errors out with no CUDA toolset found](tiny-cuda-integration-error) -- [Installation errors, File "setup.py" not found](pip-install-error) -- [Runtime errors, "len(sources) > 0".](cuda-sources-error) - -
- -(tiny-cuda-mismatch-arch)= - -**ImportError: DLL load failed while importing \_89_C** - -This occurs with certain GPUs that have CUDA architecture versions (89 in the example above) for which tiny-cuda-nn does not automatically compile support. - -**Solution**: - -Reinstall tiny-cuda-nn with the following command: - -::::::{tab-set} -:::::{tab-item} Linux - -```bash -TCNN_CUDA_ARCHITECTURES=XX pip install git+https://github.com/NVlabs/tiny-cuda-nn/#subdirectory=bindings/torch -``` - -::::: -:::::{tab-item} Windows - -```bash -set TCNN_CUDA_ARCHITECTURES=XX -pip install git+https://github.com/NVlabs/tiny-cuda-nn/#subdirectory=bindings/torch -``` - -::::: -:::::: - -Where XX is the architecture version listed [here](tiny-cuda-arch-list). Ie. for a 4090 GPU use `TCNN_CUDA_ARCHITECTURES=89` - -
- -(tiny-cuda-mismatch-error)= - -**tiny-cuda-nn installation errors out with cuda mismatch** - -While installing tiny-cuda, you run into: `The detected CUDA version mismatches the version that was used to compile PyTorch (10.2). Please make sure to use the same CUDA versions.` - -**Solution**: - -Reinstall PyTorch with the correct CUDA version. -See [pytorch](pytorch) under Dependencies, above. - -
- -(tiny-cuda-integration-error)= - -**(Windows) tiny-cuda-nn installation errors out with no CUDA toolset found** - -While installing tiny-cuda on Windows, you run into: `No CUDA toolset found.` - -**Solution**: - -Confirm that you have Visual Studio installed. - -Make sure CUDA Visual Studio integration is enabled. This should be done automatically by the CUDA installer if it is run after Visual Studio is installed. You can also manually enable integration. - -::::{tab-set} -:::{tab-item} Visual Studio 2019 - -To manually enable integration for Visual Studio 2019, copy all 4 files from - -``` -C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.8\extras\visual_studio_integration\MSBuildExtensions -``` - -to - -``` -C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Microsoft\VC\v160\BuildCustomizations -``` - -::: -:::{tab-item} Visual Studio 2022 - -To manually enable integration for Visual Studio 2022, copy all 4 files from - -``` -C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.8\extras\visual_studio_integration\MSBuildExtensions -``` - -to - -``` -C:\Program Files\Microsoft Visual Studio\2022\[Community, Professional, Enterprise, or BuildTools]\MSBuild\Microsoft\VC\v160\BuildCustomizations -``` - -::: -:::: - -
- -(pip-install-error)= - -**Installation errors, File "setup.py" not found** - -When installing dependencies and nerfstudio with `pip install -e .`, you run into: `ERROR: File "setup.py" not found. Directory cannot be installed in editable mode` - -**Solution**: -This can be fixed by upgrading pip to the latest version: - -``` -python -m pip install --upgrade pip -``` - -
- -(cuda-sources-error)= - -**Runtime errors: "len(sources) > 0", "ctype = \_C.ContractionType(type.value) ; TypeError: 'NoneType' object is not callable".** - -When running `train.py `, an error occurs when installing cuda files in the backend code. - -**Solution**: -This is a problem with not being able to detect the correct CUDA version, and can be fixed by updating the CUDA path environment variables: - -``` -export CUDA_HOME=/usr/local/cuda -export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda/lib64:/usr/local/cuda/extras/CUPTI/lib64 -export PATH=$PATH:$CUDA_HOME/bin -``` diff --git a/docs/quickstart/viewer_quickstart.rst b/docs/quickstart/viewer_quickstart.rst deleted file mode 100644 index 3e50b582..00000000 --- a/docs/quickstart/viewer_quickstart.rst +++ /dev/null @@ -1,95 +0,0 @@ -Using the viewer -================ - -The nerfstudio web-based viewer makes it easy to view training in real-time, and to create content videos from your trained models 🌟! - -Connecting to the viewer -^^^^^^^^^^^^^^^^^^^^^^^^ - -The nerfstudio viewer is launched automatically with each :code:`ns-train` training run! It can also be run separately with :code:`ns-viewer`. -To access a viewer, we need to enter the server's address and port in a web browser. - -Accessing on a local machine -"""""""""""""""""""""""""""" - -You should be able to click the link obtained while running a script to open the viewer in your browser. This should typically look something like :code:`http://localhost:7007`. - -Accessing over an SSH connection -"""""""""""""""""""""""""""""""" - -If you are training on a remote machine, the viewer will still let you view your trainings. You will need to forward traffic from your viewing host to the listening port on the host running ns-train (7007 by default). You can achieve this by securely tunneling traffic on the specified port through an ssh session. In a terminal window on the viewing host, issue the following command: - -.. code-block:: bash - - ssh -L 7007:127.0.0.1:7007 @ - - -.. admonition:: Note - - You can now simply open the link (same one shown in image above) in your browser on your local machine and it should connect!. So long as you don't close this terminal window with this specific active ssh connection, the port will remain open for all your other ssh sessions. - - For example, if you do this in a new terminal window, any existing ssh sessions (terminal windows, VSCode remote connection, etc) will still be able to access the port, but if you close this terminal window, the port will be closed. - - -.. warning:: - If the port is being used, you will need to switch the port using the `--viewer.websocket-port` flag tied to the model subcommand. - - -Accessing via a share link -"""""""""""""""""""""""""" - -To connect to remote machines without requiring an SSH connection, we also support creating share URLs. -This can be generated from the "Share:" icon in the GUI, or from the CLI by specifying the :code:`--viewer.make-share-url True` argument. -This will create a publically accessible link that you can share with others to view your training progress. -This is useful for sharing training progress with collaborators, or for viewing training progress on a remote machine without requiring an SSH connection. -However, it will introduce some latency in the viewer. - - -.. seealso:: - - For a more in-depth developer overview on how to hack with the viewer, see our `developer guide `_ - - -Legacy viewer tutorial video -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -In the tutorial video below, we walk you through how you can turn a simple capture into a 3D video πŸ“Έ 🎬 - -This video is for the legacy viewer, which was the default in :code:`nerfstudio<1.0`. It has some visual differences from the current viewer. However, the core functionality is the same. -The legacy viewer can still be enabled with the :code:`--vis viewer_legacy` option, for example, :code:`ns-train nerfacto --vis viewer_legacy`. - -.. raw:: html - - - -For specific sections, click the links below to navigate to the associated portion of the video. - -Getting started -""""""""""""""" - -* `Hello from nerfstudio `_ -* `Preprocess your video `_ -* `Launching training and viewer `_ - -Viewer basics -""""""""""""""" - -* `Viewer scene introduction `_ -* `Moving around in viewer `_ -* `Overview of Controls Panel - train speed/output options `_ -* `Overview of Scene Panel - toggle visibility `_ - -Creating camera trajectories -"""""""""""""""""""""""""""" - -* `Creating a custom camera path `_ -* `Camera spline options - cycle, speed, smoothness `_ -* `Camera options - move, add, view `_ - -Rendering a video -""""""""""""""""" - -* `Preview camera trajectory `_ -* `How to render final video `_ - -| diff --git a/docs/reference/api/cameras.rst b/docs/reference/api/cameras.rst deleted file mode 100644 index 7653852c..00000000 --- a/docs/reference/api/cameras.rst +++ /dev/null @@ -1,46 +0,0 @@ -.. _cameras: - -Cameras -============ - -Cameras ----------------- - -.. automodule:: nerfstudio.cameras.cameras - :members: - :show-inheritance: - -Camera Optimizers ------------------ - -.. automodule:: nerfstudio.cameras.camera_optimizers - :members: - :show-inheritance: - -Camera Paths ----------------- - -.. automodule:: nerfstudio.cameras.camera_paths - :members: - :show-inheritance: - -Camera Utils ----------------- - -.. automodule:: nerfstudio.cameras.camera_utils - :members: - :show-inheritance: - -Lie Groups ----------------- - -.. automodule:: nerfstudio.cameras.lie_groups - :members: - :show-inheritance: - -Rays ----------------- - -.. automodule:: nerfstudio.cameras.rays - :members: - :show-inheritance: diff --git a/docs/reference/api/config.rst b/docs/reference/api/config.rst deleted file mode 100644 index d5885a22..00000000 --- a/docs/reference/api/config.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. _configs: - -Configs -============ - -.. automodule:: nerfstudio.configs.base_config - :members: - :show-inheritance: diff --git a/docs/reference/api/data/datamanagers.rst b/docs/reference/api/data/datamanagers.rst deleted file mode 100644 index 43e5d6cc..00000000 --- a/docs/reference/api/data/datamanagers.rst +++ /dev/null @@ -1,10 +0,0 @@ -.. _datamanagers: - -Datamanagers -============ - -Base ----------------- - -.. automodule:: nerfstudio.data.datamanagers.base_datamanager - :members: \ No newline at end of file diff --git a/docs/reference/api/data/dataparsers.rst b/docs/reference/api/data/dataparsers.rst deleted file mode 100644 index e35f83ea..00000000 --- a/docs/reference/api/data/dataparsers.rst +++ /dev/null @@ -1,117 +0,0 @@ -.. _dataparser: - -Data Parsers -============ - -* `Base Data Parser`_ -* `ARKitScenes`_ -* `Blender`_ -* `D-NeRF`_ -* `dycheck`_ -* `Instant-NGP`_ -* `Minimal`_ -* `NeRF-OSR`_ -* `Nerfstudio`_ -* `nuScenes`_ -* `Phototourism`_ -* `ScanNet`_ -* `SDFStudio`_ -* `sitcoms3D`_ - - -Base Data Parser ----------------- - -.. automodule:: nerfstudio.data.dataparsers.base_dataparser - :members: - -ARKitScenes ----------------- - -.. automodule:: nerfstudio.data.dataparsers.arkitscenes_dataparser - :members: - :show-inheritance: - -Blender ----------------- - -.. automodule:: nerfstudio.data.dataparsers.blender_dataparser - :members: - :show-inheritance: - -D-NeRF ----------------- - -.. automodule:: nerfstudio.data.dataparsers.dnerf_dataparser - :members: - :show-inheritance: - -dycheck ----------------- - -.. automodule:: nerfstudio.data.dataparsers.dycheck_dataparser - :members: - :show-inheritance: - -Instant-NGP ----------------- - -.. automodule:: nerfstudio.data.dataparsers.instant_ngp_dataparser - :members: - :show-inheritance: - -Minimal ----------------- - -.. automodule:: nerfstudio.data.dataparsers.minimal_dataparser - :members: - :show-inheritance: - -NeRF-OSR ----------------- - -.. automodule:: nerfstudio.data.dataparsers.nerfosr_dataparser - :members: - :show-inheritance: - -Nerfstudio ----------------- - -.. automodule:: nerfstudio.data.dataparsers.nerfstudio_dataparser - :members: - :show-inheritance: - -nuScenes ----------------- - -.. automodule:: nerfstudio.data.dataparsers.nuscenes_dataparser - :members: - :show-inheritance: - -Phototourism ----------------- - -.. automodule:: nerfstudio.data.dataparsers.phototourism_dataparser - :members: - :show-inheritance: - -ScanNet ----------------- - -.. automodule:: nerfstudio.data.dataparsers.scannet_dataparser - :members: - :show-inheritance: - -SDFStudio ----------------- - -.. automodule:: nerfstudio.data.dataparsers.sdfstudio_dataparser - :members: - :show-inheritance: - -sitcoms3D ----------------- - -.. automodule:: nerfstudio.data.dataparsers.sitcoms3d_dataparser - :members: - :show-inheritance: diff --git a/docs/reference/api/data/datasets.rst b/docs/reference/api/data/datasets.rst deleted file mode 100644 index ee4fd1ab..00000000 --- a/docs/reference/api/data/datasets.rst +++ /dev/null @@ -1,24 +0,0 @@ -.. _datasets: - -Datasets -============ - -Base ----------------- - -.. automodule:: nerfstudio.data.datasets.base_dataset - :members: - -SDF Dataset ----------------- - -.. automodule:: nerfstudio.data.datasets.sdf_dataset - :members: - :show-inheritance: - -Semantic Dataset ----------------- - -.. automodule:: nerfstudio.data.datasets.semantic_dataset - :members: - :show-inheritance: \ No newline at end of file diff --git a/docs/reference/api/data/index.rst b/docs/reference/api/data/index.rst deleted file mode 100644 index 6e10f938..00000000 --- a/docs/reference/api/data/index.rst +++ /dev/null @@ -1,26 +0,0 @@ -.. _dataset: - -Data -============ - -.. toctree:: - :titlesonly: - - dataparsers - datamanagers - datasets - utils - -Pixel Samplers ----------------- - -.. automodule:: nerfstudio.data.pixel_samplers - :members: - :show-inheritance: - -Scene Box ----------------- - -.. automodule:: nerfstudio.data.scene_box - :members: - :show-inheritance: \ No newline at end of file diff --git a/docs/reference/api/data/utils.rst b/docs/reference/api/data/utils.rst deleted file mode 100644 index 5f225e6d..00000000 --- a/docs/reference/api/data/utils.rst +++ /dev/null @@ -1,28 +0,0 @@ -.. _datautils: - -Utils -============ - -Base ----------------- - -.. automodule:: nerfstudio.data.utils.colmap_parsing_utils - :members: - -Data ----------------- - -.. automodule:: nerfstudio.data.utils.data_utils - :members: - -Dataloader ----------------- - -.. automodule:: nerfstudio.data.utils.dataloaders - :members: - -Nerfstudio Collate -------------------- - -.. automodule:: nerfstudio.data.utils.nerfstudio_collate - :members: \ No newline at end of file diff --git a/docs/reference/api/field_components/embeddings.rst b/docs/reference/api/field_components/embeddings.rst deleted file mode 100644 index f4bd2b67..00000000 --- a/docs/reference/api/field_components/embeddings.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. _embeddings: - -Embeddings -=================== - -.. automodule:: nerfstudio.field_components.embedding - :members: - :show-inheritance: \ No newline at end of file diff --git a/docs/reference/api/field_components/encodings.rst b/docs/reference/api/field_components/encodings.rst deleted file mode 100644 index 2fef31ad..00000000 --- a/docs/reference/api/field_components/encodings.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. _encodings: - -Encodings -=================== - -.. automodule:: nerfstudio.field_components.encodings - :members: - :show-inheritance: \ No newline at end of file diff --git a/docs/reference/api/field_components/field_heads.rst b/docs/reference/api/field_components/field_heads.rst deleted file mode 100644 index 49abedc9..00000000 --- a/docs/reference/api/field_components/field_heads.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. _field_heads: - -Field Heads -=================== - -.. automodule:: nerfstudio.field_components.field_heads - :members: - :show-inheritance: \ No newline at end of file diff --git a/docs/reference/api/field_components/index.rst b/docs/reference/api/field_components/index.rst deleted file mode 100644 index e5f207a9..00000000 --- a/docs/reference/api/field_components/index.rst +++ /dev/null @@ -1,14 +0,0 @@ -.. _field_modules: - -Field Modules -=================== - -TODO: High level description of field modules and how they connect together. - -.. toctree:: - - encodings - embeddings - field_heads - mlp - spatial_distortions \ No newline at end of file diff --git a/docs/reference/api/field_components/mlp.rst b/docs/reference/api/field_components/mlp.rst deleted file mode 100644 index 80be3a62..00000000 --- a/docs/reference/api/field_components/mlp.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. _mlp: - -MLP -=================== - -.. automodule:: nerfstudio.field_components.mlp - :members: - :show-inheritance: \ No newline at end of file diff --git a/docs/reference/api/field_components/spatial_distortions.rst b/docs/reference/api/field_components/spatial_distortions.rst deleted file mode 100644 index ee74610d..00000000 --- a/docs/reference/api/field_components/spatial_distortions.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. _spatial_distortions: - -Spatial Distortions -===================== - -.. automodule:: nerfstudio.field_components.spatial_distortions - :members: - :show-inheritance: \ No newline at end of file diff --git a/docs/reference/api/fields.rst b/docs/reference/api/fields.rst deleted file mode 100644 index 33bde75c..00000000 --- a/docs/reference/api/fields.rst +++ /dev/null @@ -1,60 +0,0 @@ -.. _fields: - -Fields -============ - -Base ----------------- - -.. automodule:: nerfstudio.fields.base_field - :members: - :show-inheritance: - -Density ----------------- - -.. automodule:: nerfstudio.fields.density_fields - :members: - :show-inheritance: - -Nerfacto ----------------- - -.. automodule:: nerfstudio.fields.nerfacto_field - :members: - :show-inheritance: - -Nerf-W ----------------- - -.. automodule:: nerfstudio.fields.nerfw_field - :members: - :show-inheritance: - -SDF ----------------- - -.. automodule:: nerfstudio.fields.sdf_field - :members: - :show-inheritance: - -Semantic NeRF ----------------- - -.. automodule:: nerfstudio.fields.semantic_nerf_field - :members: - :show-inheritance: - -TensoRF ----------------- - -.. automodule:: nerfstudio.fields.tensorf_field - :members: - :show-inheritance: - -Vanilla NeRF ----------------- - -.. automodule:: nerfstudio.fields.vanilla_nerf_field - :members: - :show-inheritance: diff --git a/docs/reference/api/index.rst b/docs/reference/api/index.rst deleted file mode 100644 index a6691fec..00000000 --- a/docs/reference/api/index.rst +++ /dev/null @@ -1,20 +0,0 @@ -.. _reference: - -API -============ - -TODO: Explanation of each component - -.. toctree:: - - cameras - config - data/index - fields - field_components/index - models - model_components/index - optimizers - plugins - utils/index - viewer diff --git a/docs/reference/api/model_components/index.rst b/docs/reference/api/model_components/index.rst deleted file mode 100644 index 18a11d7f..00000000 --- a/docs/reference/api/model_components/index.rst +++ /dev/null @@ -1,10 +0,0 @@ -.. _graph_modules: - -Model components -=================== - -.. toctree:: - - ray_sampler - losses - renderers \ No newline at end of file diff --git a/docs/reference/api/model_components/losses.rst b/docs/reference/api/model_components/losses.rst deleted file mode 100644 index 8a6a15a6..00000000 --- a/docs/reference/api/model_components/losses.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. _losses: - -Losses -=================== - -.. automodule:: nerfstudio.model_components.losses - :members: - :show-inheritance: \ No newline at end of file diff --git a/docs/reference/api/model_components/ray_sampler.rst b/docs/reference/api/model_components/ray_sampler.rst deleted file mode 100644 index 821e85c5..00000000 --- a/docs/reference/api/model_components/ray_sampler.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. _ray_sampler: - -Ray Sampler -=================== - -.. automodule:: nerfstudio.model_components.ray_samplers - :members: - :show-inheritance: \ No newline at end of file diff --git a/docs/reference/api/model_components/renderers.rst b/docs/reference/api/model_components/renderers.rst deleted file mode 100644 index 76f9301a..00000000 --- a/docs/reference/api/model_components/renderers.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. _renderers: - -Renderers -============ - -.. automodule:: nerfstudio.model_components.renderers - :members: - :show-inheritance: diff --git a/docs/reference/api/models.rst b/docs/reference/api/models.rst deleted file mode 100644 index 0b0819d5..00000000 --- a/docs/reference/api/models.rst +++ /dev/null @@ -1,32 +0,0 @@ -.. _graphs: - -Models -============ - -Base ----------------- - -.. automodule:: nerfstudio.models.base_model - :members: - :show-inheritance: - -Instant NGP ----------------- - -.. automodule:: nerfstudio.models.instant_ngp - :members: - :show-inheritance: - -Semantic NeRF-W ----------------- - -.. automodule:: nerfstudio.models.semantic_nerfw - :members: - :show-inheritance: - -NeRF ----------------- - -.. automodule:: nerfstudio.models.vanilla_nerf - :members: - :show-inheritance: \ No newline at end of file diff --git a/docs/reference/api/optimizers.rst b/docs/reference/api/optimizers.rst deleted file mode 100644 index c5799aac..00000000 --- a/docs/reference/api/optimizers.rst +++ /dev/null @@ -1,32 +0,0 @@ -.. _engine: - -Engine -============ - -Optimizers ----------------- - -.. automodule:: nerfstudio.engine.optimizers - :members: - :show-inheritance: - -Schedulers ----------------- - -.. automodule:: nerfstudio.engine.schedulers - :members: - :show-inheritance: - -Trainer ----------------- - -.. automodule:: nerfstudio.engine.trainer - :members: - :show-inheritance: - -Callbacks ----------------- - -.. automodule:: nerfstudio.engine.callbacks - :members: - :show-inheritance: diff --git a/docs/reference/api/plugins.rst b/docs/reference/api/plugins.rst deleted file mode 100644 index bb850455..00000000 --- a/docs/reference/api/plugins.rst +++ /dev/null @@ -1,25 +0,0 @@ -.. _plugins: - -Plugins -============ - -Method Registry ----------------------- - -.. automodule:: nerfstudio.plugins.registry - :members: - :show-inheritance: - -DataParser Registry ----------------------- - -.. automodule:: nerfstudio.plugins.registry_dataparser - :members: - :show-inheritance: - -Types ----------------------- - -.. automodule:: nerfstudio.plugins.types - :members: - :show-inheritance: diff --git a/docs/reference/api/utils/colormaps.rst b/docs/reference/api/utils/colormaps.rst deleted file mode 100644 index cf25c2aa..00000000 --- a/docs/reference/api/utils/colormaps.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. _colormaps: - -Colormaps ----------------- - -.. automodule:: nerfstudio.utils.colormaps - :members: - :show-inheritance: diff --git a/docs/reference/api/utils/colors.rst b/docs/reference/api/utils/colors.rst deleted file mode 100644 index daae790c..00000000 --- a/docs/reference/api/utils/colors.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. _colors: - -Colors ------------- - -.. automodule:: nerfstudio.utils.colors - :members: - :show-inheritance: diff --git a/docs/reference/api/utils/index.rst b/docs/reference/api/utils/index.rst deleted file mode 100644 index 08c83d15..00000000 --- a/docs/reference/api/utils/index.rst +++ /dev/null @@ -1,11 +0,0 @@ -.. _utils: - -Utils -=================== - -.. toctree:: - - colors - math - colormaps - tensor_dataclass \ No newline at end of file diff --git a/docs/reference/api/utils/math.rst b/docs/reference/api/utils/math.rst deleted file mode 100644 index 5ddd8295..00000000 --- a/docs/reference/api/utils/math.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. _math: - -Math -============ - -.. automodule:: nerfstudio.utils.math - :members: - :show-inheritance: diff --git a/docs/reference/api/utils/tensor_dataclass.rst b/docs/reference/api/utils/tensor_dataclass.rst deleted file mode 100644 index 82ce89ab..00000000 --- a/docs/reference/api/utils/tensor_dataclass.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. _tensor_dataclass: - -TensorDataclass -================= - -.. automodule:: nerfstudio.utils.tensor_dataclass - :members: - :show-inheritance: diff --git a/docs/reference/api/viewer.rst b/docs/reference/api/viewer.rst deleted file mode 100644 index 06166246..00000000 --- a/docs/reference/api/viewer.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. _viewer: - -Viewer -============ - -.. automodule:: nerfstudio.viewer.viewer_elements - :members: - :show-inheritance: diff --git a/docs/reference/cli/index.md b/docs/reference/cli/index.md deleted file mode 100644 index 4daee655..00000000 --- a/docs/reference/cli/index.md +++ /dev/null @@ -1,32 +0,0 @@ -# CLI - -We provide a command line interface for training your own NeRFs (no coding necessary). You can learn more about each command by using the `--help` argument. - -## Commands - -Here are the popular commands that we offer. If you've cloned the repo, you can also look at the [pyproject.toml file](https://github.com/nerfstudio-project/nerfstudio/blob/main/pyproject.toml) at the `[project.scripts]` section for details. - -| Command | Description | Filename | -| ------------------------------------ | -------------------------------------- | --------------------------------------------- | -| [ns-install-cli](ns_install_cli) | Install tab completion for all scripts | nerfstudio/scripts/completions/install.py | -| [ns-process-data](ns_process_data) | Generate a dataset from your own data | nerfstudio/scripts/process_data.py | -| [ns-download-data](ns_download_data) | Download existing captures | nerfstudio/scripts/downloads/download_data.py | -| [ns-train](ns_train) | Generate a NeRF | nerfstudio/scripts/train.py | -| [ns-viewer](ns_viewer) | View a trained NeRF | nerfstudio/scripts/viewer/run_viewer.py | -| [ns-eval](ns_eval) | Run evaluation metrics for your Model | nerfstudio/scripts/eval.py | -| [ns-render](ns_render) | Render out a video of your NeRF | nerfstudio/scripts/render.py | -| [ns-export](ns_export) | Export a NeRF into other formats | nerfstudio/scripts/exporter.py | - -```{toctree} -:maxdepth: 1 -:hidden: - -ns_install_cli -ns_process_data -ns_download_data -ns_train -ns_render -ns_viewer -ns_export -ns_eval -``` diff --git a/docs/reference/cli/ns_download_data.md b/docs/reference/cli/ns_download_data.md deleted file mode 100644 index 1105ef12..00000000 --- a/docs/reference/cli/ns_download_data.md +++ /dev/null @@ -1,9 +0,0 @@ -# ns-download-data - -```{eval-rst} -.. argparse:: - :module: nerfstudio.scripts.downloads.download_data - :func: get_parser_fn - :prog: ns-download-data - :nodefault: -``` diff --git a/docs/reference/cli/ns_eval.md b/docs/reference/cli/ns_eval.md deleted file mode 100644 index 86e4aa0b..00000000 --- a/docs/reference/cli/ns_eval.md +++ /dev/null @@ -1,9 +0,0 @@ -# ns-eval - -```{eval-rst} -.. argparse:: - :module: nerfstudio.scripts.eval - :func: get_parser_fn - :prog: ns-eval - :nodefault: -``` diff --git a/docs/reference/cli/ns_export.md b/docs/reference/cli/ns_export.md deleted file mode 100644 index 83921191..00000000 --- a/docs/reference/cli/ns_export.md +++ /dev/null @@ -1,9 +0,0 @@ -# ns-export - -```{eval-rst} -.. argparse:: - :module: nerfstudio.scripts.exporter - :func: get_parser_fn - :prog: ns-export - :nodefault: -``` diff --git a/docs/reference/cli/ns_install_cli.md b/docs/reference/cli/ns_install_cli.md deleted file mode 100644 index 30fa9598..00000000 --- a/docs/reference/cli/ns_install_cli.md +++ /dev/null @@ -1,9 +0,0 @@ -# ns-install-cli - -```{eval-rst} -.. argparse:: - :module: nerfstudio.scripts.completions.install - :func: get_parser_fn - :prog: ns-install-cli - :nodefault: -``` diff --git a/docs/reference/cli/ns_process_data.md b/docs/reference/cli/ns_process_data.md deleted file mode 100644 index 9f9540d4..00000000 --- a/docs/reference/cli/ns_process_data.md +++ /dev/null @@ -1,15 +0,0 @@ -# ns-process-data - -:::{admonition} Note -:class: warning -Make sure to have [COLMAP](https://colmap.github.io) and [FFmpeg](https://ffmpeg.org/download.html) installed. -You may also want to install [hloc](https://github.com/cvg/Hierarchical-Localization) (optional) for more feature detector and matcher options. -::: - -```{eval-rst} -.. argparse:: - :module: nerfstudio.scripts.process_data - :func: get_parser_fn - :prog: ns-process-data - :nodefault: -``` diff --git a/docs/reference/cli/ns_render.md b/docs/reference/cli/ns_render.md deleted file mode 100644 index e006e62e..00000000 --- a/docs/reference/cli/ns_render.md +++ /dev/null @@ -1,14 +0,0 @@ -# ns-render - -:::{admonition} Note -:class: warning -Make sure to have [FFmpeg](https://ffmpeg.org/download.html) installed. -::: - -```{eval-rst} -.. argparse:: - :module: nerfstudio.scripts.render - :func: get_parser_fn - :prog: ns-render - :nodefault: -``` diff --git a/docs/reference/cli/ns_train.md b/docs/reference/cli/ns_train.md deleted file mode 100644 index 7b8a5262..00000000 --- a/docs/reference/cli/ns_train.md +++ /dev/null @@ -1,31 +0,0 @@ -# ns-train - -Primary interface for training a NeRF model. `--help` is your friend when navigating command arguments. We also recommend installing the tab completion `ns-install-cli`. - -```bash -usage: ns-train {method} [method args] {dataparser} [dataparser args] -``` - -If you are using a nerfstudio data set, the minimal command is: - -```bash -ns-train nerfacto --data YOUR_DATA -``` - -To learn about the available methods: - -```bash -ns-train --help -``` - -To learn about a methods parameters: - -```bash -ns-train {method} --help -``` - -By default the nerfstudio dataparser is used. If you would like to use a different dataparser it can be specified after all of the method arguments. For a list of dataparser options: - -```bash -ns-train {method} {dataparser} --help -``` diff --git a/docs/reference/cli/ns_viewer.md b/docs/reference/cli/ns_viewer.md deleted file mode 100644 index bb633355..00000000 --- a/docs/reference/cli/ns_viewer.md +++ /dev/null @@ -1,9 +0,0 @@ -# ns-viewer - -```{eval-rst} -.. argparse:: - :module: nerfstudio.scripts.viewer.run_viewer - :func: get_parser_fn - :prog: ns-viewer - :nodefault: -``` diff --git a/docs/reference/contributing.md b/docs/reference/contributing.md deleted file mode 100644 index 818a18db..00000000 --- a/docs/reference/contributing.md +++ /dev/null @@ -1,118 +0,0 @@ -# Contributing - -**πŸ’ We're excited to have you join the nerfstudio family πŸ’** - -We welcome community contributions to Nerfstudio! Whether you want to fix bugs, improve the documentation, or introduce new features, we appreciate your input. - -Bug fixes and documentation improvements are highly valuable to us. If you come across any bugs or find areas where the documentation can be enhanced, please don't hesitate to submit a pull request (PR) with your proposed changes. We'll gladly review and integrate them into the project. - -For larger feature additions, we kindly request you to reach out to us on [Discord](https://discord.gg/uMbNqcraFc) in the `#contributing` channel and create an issue on GitHub. This will allow us to discuss the feature in more detail and ensure that it aligns with the goals and direction of the repository. We cannot guarantee that the feature will be added to Nerfstudio. - -In addition to code contributions, we also encourage contributors to add their own methods to our documentation. For more information on how to contribute new methods, please refer to the documentation [here](../developer_guides/new_methods.md). - -## Overview - -Below are the various tooling features our team uses to maintain this codebase. - -| Tooling | Support | -| -------------------- | ---------------------------------------------------------- | -| Formatting & Linting | [Ruff](https://beta.ruff.rs/docs/) | -| Type checking | [Pyright](https://github.com/microsoft/pyright) | -| Testing | [pytest](https://docs.pytest.org/en/7.1.x/) | -| Docs | [Sphinx](https://www.sphinx-doc.org/en/master/) | -| Docstring style | [Google](https://google.github.io/styleguide/pyguide.html) | -| JS Linting | [eslint](https://eslint.org/) | - -## Requirements - -To install the required packages and register the pre-commit hook: - -```bash -pip install -e .[dev] -pip install -e .[docs] -pre-commit install -``` - -This will ensure you have the required packages to run the tests, linter, build the docs, etc. -The pre-commit hook will ensure your commits comply with the repository's code style rules. - -You may also need to install [pandoc](https://pandoc.org/). If you are using `conda` you can run the following: - -```bash -conda install -c conda-forge pandoc -``` - -## Committing code - -1. Make your modifications ✏️ -2. Perform local checks βœ… - - To ensure that you will be passing all tests and checks on github, you will need to run the following command: - - ```bash - ns-dev-test - ``` - - This will perform the following checks and actions: - - - Formatting and linting: Ensures code is consistently and properly formatted. - - Type checking: Ensures static type safety. - - Pytests: Runs pytests locally to make sure added code does not break existing logic. - - Documentation build: Builds docs locally. Ensures changes do not result in warnings/errors. - - Licensing: Automatically adds licensing headers to the correct files. - - :::{admonition} Attention - :class: attention - In order to merge changes to the code base, all of these checks must be passing. If you pass these tests locally, you will likely pass on github servers as well (results in a green checkmark next to your commit). - ::: - -3. Open pull request! πŸ’Œ - -:::{admonition} Note -:class: info - -We will not review the pull request until it is passing all checks. -::: - -## Maintaining documentation - -### Building - -Run the following to build the documentation: - -```bash -python nerfstudio/scripts/docs/build_docs.py -``` - -:::{admonition} Tip -:class: info - -- Rerun `make html` when documentation changes are made -- `make clean` is necessary if the documentation structure changes. - ::: - -### Auto build - -As you change or add models/components, the auto-generated [Reference API](https://docs.nerf.studio/reference/api/index.html) may change. -If you want the code to build on save you can use [sphinx autobuild](https://github.com/executablebooks/sphinx-autobuild). - -:::{admonition} Tip -:class: info - -If changes to the structure are made, the build files may be incorrect. -::: - -```bash -pip install sphinx-autobuild -sphinx-autobuild docs docs/_build/html -``` - -### Adding notebooks - -We support jupyter notebooks in our documentation. To improve the readability, the following custom tags can be added to the top of each code cell to hide or collapse the code. - -| Tag | Effect | -| ------------- | ---------------------------------------------------- | -| # HIDDEN | Hide code block and output | -| # COLLAPSED | Collapse the code in a dropdown but show the results | -| # OUTPUT_ONLY | Only show the cell's output | diff --git a/nerfstudio/cameras/camera_optimizers.py b/nerfstudio/cameras/camera_optimizers.py index 6ab8cc2a..5bcd24be 100644 --- a/nerfstudio/cameras/camera_optimizers.py +++ b/nerfstudio/cameras/camera_optimizers.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -20,7 +21,7 @@ import functools from dataclasses import dataclass, field -from typing import Literal, Optional, Type, Union +from typing import Literal, Optional, Tuple, Type, Union import torch import tyro @@ -110,6 +111,10 @@ def __init__( else: assert_never(self.config.mode) + def _get_pose_adjustment(self) -> Float[Tensor, "num_cameras 6"]: + """Get the pose adjustment.""" + return self.pose_adjustment + def forward( self, indices: Int[Tensor, "camera_indices"], @@ -127,9 +132,9 @@ def forward( if self.config.mode == "off": pass elif self.config.mode == "SO3xR3": - outputs.append(exp_map_SO3xR3(self.pose_adjustment[indices, :])) + outputs.append(exp_map_SO3xR3(self._get_pose_adjustment()[indices, :])) elif self.config.mode == "SE3": - outputs.append(exp_map_SE3(self.pose_adjustment[indices, :])) + outputs.append(exp_map_SE3(self._get_pose_adjustment()[indices, :])) else: assert_never(self.config.mode) # Detach non-trainable indices by setting to identity transform @@ -149,7 +154,11 @@ def apply_to_raybundle(self, raybundle: RayBundle) -> None: if self.config.mode != "off": correction_matrices = self(raybundle.camera_indices.squeeze()) # type: ignore raybundle.origins = raybundle.origins + correction_matrices[:, :3, 3] - raybundle.directions = torch.bmm(correction_matrices[:, :3, :3], raybundle.directions[..., None]).squeeze() + raybundle.directions = ( + torch.bmm(correction_matrices[:, :3, :3], raybundle.directions[..., None]) + .squeeze() + .to(raybundle.origins) + ) def apply_to_camera(self, camera: Cameras) -> None: """Apply the pose correction to the raybundle""" @@ -164,9 +173,10 @@ def apply_to_camera(self, camera: Cameras) -> None: def get_loss_dict(self, loss_dict: dict) -> None: """Add regularization""" if self.config.mode != "off": + pose_adjustment = self._get_pose_adjustment() loss_dict["camera_opt_regularizer"] = ( - self.pose_adjustment[:, :3].norm(dim=-1).mean() * self.config.trans_l2_penalty - + self.pose_adjustment[:, 3:].norm(dim=-1).mean() * self.config.rot_l2_penalty + pose_adjustment[:, :3].norm(dim=-1).mean() * self.config.trans_l2_penalty + + pose_adjustment[:, 3:].norm(dim=-1).mean() * self.config.rot_l2_penalty ) def get_correction_matrices(self): @@ -176,8 +186,9 @@ def get_correction_matrices(self): def get_metrics_dict(self, metrics_dict: dict) -> None: """Get camera optimizer metrics""" if self.config.mode != "off": - metrics_dict["camera_opt_translation"] = self.pose_adjustment[:, :3].norm() - metrics_dict["camera_opt_rotation"] = self.pose_adjustment[:, 3:].norm() + pose_adjustment = self._get_pose_adjustment() + metrics_dict["camera_opt_translation"] = pose_adjustment[:, :3].norm() + metrics_dict["camera_opt_rotation"] = pose_adjustment[:, 3:].norm() def get_param_groups(self, param_groups: dict) -> None: """Get camera optimizer parameters""" @@ -187,3 +198,37 @@ def get_param_groups(self, param_groups: dict) -> None: param_groups["camera_opt"] = camera_opt_params else: assert len(camera_opt_params) == 0 + + +@dataclass +class ScaledCameraOptimizerConfig(CameraOptimizerConfig): + """Configuration of axis-masked optimization for camera poses.""" + + _target: Type = field(default_factory=lambda: ScaledCameraOptimizer) + + weights: Tuple[float, float, float, float, float, float] = (1.0, 1.0, 1.0, 1.0, 1.0, 1.0) + + trans_l2_penalty: Tuple[float, float, float] = (1e-2, 1e-2, 1e-2) # TODO: this is l1 + + +class ScaledCameraOptimizer(CameraOptimizer): + """Camera optimizer that masks which components can be optimized.""" + + def __init__(self, config: ScaledCameraOptimizerConfig, **kwargs) -> None: + super().__init__(config, **kwargs) + self.config: ScaledCameraOptimizerConfig = self.config + self.register_buffer("weights", torch.tensor(self.config.weights, dtype=torch.float32)) + self.trans_penalty = torch.tensor(self.config.trans_l2_penalty, dtype=torch.float32, device=self.device) + + def _get_pose_adjustment(self) -> Float[Tensor, "num_cameras 6"]: + """Get the pose adjustment.""" + return self.pose_adjustment * self.weights + + def get_loss_dict(self, loss_dict: dict) -> None: + """Add regularization""" + if self.config.mode != "off": + pose_adjustment = self._get_pose_adjustment() + self.trans_penalty = self.trans_penalty.to(pose_adjustment.device) + loss_dict["camera_opt_regularizer"] = ( + pose_adjustment[:, :3].abs() * self.trans_penalty + ).mean() + pose_adjustment[:, 3:].norm(dim=-1).mean() * self.config.rot_l2_penalty diff --git a/nerfstudio/cameras/camera_paths.py b/nerfstudio/cameras/camera_paths.py index f0c5f0a1..1f734621 100644 --- a/nerfstudio/cameras/camera_paths.py +++ b/nerfstudio/cameras/camera_paths.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -18,6 +19,7 @@ from typing import Any, Dict, Optional, Tuple +import numpy as np import torch import nerfstudio.utils.poses as pose_utils @@ -39,17 +41,67 @@ def get_interpolated_camera_path(cameras: Cameras, steps: int, order_poses: bool """ Ks = cameras.get_intrinsics_matrices() poses = cameras.camera_to_worlds - poses, Ks = get_interpolated_poses_many(poses, Ks, steps_per_transition=steps, order_poses=order_poses) + poses, Ks = get_interpolated_poses_many( + poses, Ks, steps_per_transition=steps, order_poses=order_poses, include_last=False + ) - cameras = Cameras( + return Cameras( fx=Ks[:, 0, 0], fy=Ks[:, 1, 1], cx=Ks[0, 0, 2], cy=Ks[0, 1, 2], camera_type=cameras.camera_type[0], camera_to_worlds=poses, + height=cameras.height[0], + width=cameras.width[0], + ) + + +def get_interpolated_spiral_camera_path(cameras: Cameras, steps: int, radius: float, rotations: float) -> Cameras: + """Generate a camera path between two cameras with a circular spiral pattern. + + Args: + cameras: Cameras object containing intrinsics of all cameras. + steps: The number of steps to interpolate between the two cameras. + radius: The radius of the circular spiral around the straight path. + rotations: The number of rotations along the spiral path. + + Returns: + A new set of cameras along a circular spiral path. + """ + Ks = cameras.get_intrinsics_matrices() + poses = cameras.camera_to_worlds + poses, Ks = get_interpolated_poses_many(poses, Ks, steps_per_transition=steps, include_last=False) + + # Calculate the angles for the circular spiral + angles = np.linspace(0, 2 * np.pi * rotations, len(poses)) + + direction = poses[0, :3, 3] - poses[-1, :3, 3] + direction = direction / np.linalg.norm(direction) + + # Calculate the normal vector (orthogonal to the direction vector and the z-axis) + normal = np.cross(np.array([0, 0, 1]), direction) + normal = normal / np.linalg.norm(normal) + + # Calculate a second orthogonal vector in the plane perpendicular to the direction vector + ortho = np.cross(direction, normal) + ortho = ortho / np.linalg.norm(ortho) + + # Calculate the offsets in the plane perpendicular to the direction vector + offsets = radius * (np.cos(angles)[:, None] * normal[None] + np.sin(angles)[:, None] * ortho[None]) + + # Add the offsets to the current position + poses[:, :3, 3] += offsets + + return Cameras( + fx=Ks[:, 0, 0], + fy=Ks[:, 1, 1], + cx=Ks[0, 0, 2], + cy=Ks[0, 1, 2], + camera_to_worlds=poses, + height=cameras.height[0], + width=cameras.width[0], ) - return cameras def get_spiral_path( @@ -117,6 +169,8 @@ def get_spiral_path( cy=camera.cy[0], camera_to_worlds=new_c2ws, times=times, + height=camera.height[0], + width=camera.width[0], ) diff --git a/nerfstudio/cameras/camera_utils.py b/nerfstudio/cameras/camera_utils.py index 185a852a..5f336a0f 100644 --- a/nerfstudio/cameras/camera_utils.py +++ b/nerfstudio/cameras/camera_utils.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -21,6 +22,7 @@ import numpy as np import torch +import torch.nn.functional as F from jaxtyping import Float from numpy.typing import NDArray from torch import Tensor @@ -47,6 +49,96 @@ def unit_vector(data: NDArray, axis: Optional[int] = None) -> np.ndarray: return data +# from https://github.com/naver/roma/blob/0da38a34f36c0c917c0a15ea36eee561c6096719/roma/mappings.py#L329 +def rotmat_to_unitquat(R): + """ + Converts rotation matrix to unit quaternion representation. + + Args: + R (...x3x3 tensor): batch of rotation matrices. + Returns: + batch of unit quaternions (...x4 tensor, XYZW convention). + """ + batch_shape = R.shape[:-2] + matrix = R.reshape((-1, 3, 3)) + num_rotations, D1, D2 = matrix.shape + assert (D1, D2) == (3, 3), "Input should be a Bx3x3 tensor." + + # Adapted from SciPy: + # https://github.com/scipy/scipy/blob/7cb3d751756907238996502b92709dc45e1c6596/scipy/spatial/transform/rotation.py#L480 + + decision_matrix = torch.empty((num_rotations, 4), dtype=matrix.dtype, device=matrix.device) + decision_matrix[:, :3] = matrix.diagonal(dim1=1, dim2=2) + decision_matrix[:, -1] = decision_matrix[:, :3].sum(dim=1) + choices = decision_matrix.argmax(dim=1) + + quat = torch.empty((num_rotations, 4), dtype=matrix.dtype, device=matrix.device) + + ind = torch.nonzero(choices != 3, as_tuple=True)[0] + i = choices[ind] + j = (i + 1) % 3 + k = (j + 1) % 3 + + quat[ind, i] = 1 - decision_matrix[ind, -1] + 2 * matrix[ind, i, i] + quat[ind, j] = matrix[ind, j, i] + matrix[ind, i, j] + quat[ind, k] = matrix[ind, k, i] + matrix[ind, i, k] + quat[ind, 3] = matrix[ind, k, j] - matrix[ind, j, k] + + ind = torch.nonzero(choices == 3, as_tuple=True)[0] + quat[ind, 0] = matrix[ind, 2, 1] - matrix[ind, 1, 2] + quat[ind, 1] = matrix[ind, 0, 2] - matrix[ind, 2, 0] + quat[ind, 2] = matrix[ind, 1, 0] - matrix[ind, 0, 1] + quat[ind, 3] = 1 + decision_matrix[ind, -1] + + quat = quat / torch.norm(quat, dim=1)[:, None] + return quat.reshape(batch_shape + (4,)) + + +def unitquat_to_rotmat(quat): + """ + Converts unit quaternion into rotation matrix representation. + + Args: + quat (...x4 tensor, XYZW convention): batch of unit quaternions. + No normalization is applied before computation. + Returns: + batch of rotation matrices (...x3x3 tensor). + """ + # Adapted from SciPy: + # https://github.com/scipy/scipy/blob/adc4f4f7bab120ccfab9383aba272954a0a12fb0/scipy/spatial/transform/rotation.py#L912 + x = quat[..., 0] + y = quat[..., 1] + z = quat[..., 2] + w = quat[..., 3] + + x2 = x * x + y2 = y * y + z2 = z * z + w2 = w * w + + xy = x * y + zw = z * w + xz = x * z + yw = y * w + yz = y * z + xw = x * w + + matrix = torch.empty(quat.shape[:-1] + (3, 3), dtype=quat.dtype, device=quat.device) + + matrix[..., 0, 0] = x2 - y2 - z2 + w2 + matrix[..., 1, 0] = 2 * (xy + zw) + matrix[..., 2, 0] = 2 * (xz - yw) + + matrix[..., 0, 1] = 2 * (xy - zw) + matrix[..., 1, 1] = -x2 + y2 - z2 + w2 + matrix[..., 2, 1] = 2 * (yz + xw) + + matrix[..., 0, 2] = 2 * (xz + yw) + matrix[..., 1, 2] = 2 * (yz - xw) + matrix[..., 2, 2] = -x2 - y2 + z2 + w2 + return matrix + + def quaternion_from_matrix(matrix: NDArray, isprecise: bool = False) -> np.ndarray: """Return quaternion from rotation matrix. @@ -138,6 +230,172 @@ def quaternion_slerp( return q0 +# adapted from https://github.com/naver/roma/blob/0da38a34f36c0c917c0a15ea36eee561c6096719/roma/utils.py#L333 +def unitquat_slerp_fast(q0, q1, steps, shortest_arc=True): + """ + Spherical linear interpolation between two unit quaternions. + This function requires less computations than :func:`roma.utils.unitquat_slerp`, + but is **unsuitable for extrapolation (i.e.** ``steps`` **must be within [0,1])**. + + Args: + q0, q1 (Ax4 tensor): batch of unit quaternions (A may contain multiple dimensions). + steps (tensor of shape A): interpolation steps within 0.0 and 1.0, 0.0 corresponding to q0 and 1.0 to q1 (A may contain multiple dimensions). + shortest_arc (boolean): if True, interpolation will be performed along the shortest arc on SO(3) from `q0` to `q1` or `-q1`. + Returns: + batch of interpolated quaternions (BxAx4 tensor). + """ + batch_shape = q0.shape[:-1] + q0 = q0.reshape((-1, 4)) + batch_shape1 = q1.shape[:-1] + q1 = q1.reshape((-1, 4)) + + assert batch_shape == batch_shape1 + assert batch_shape == steps.shape + # omega is the 'angle' between both quaternions + cos_omega = torch.sum(q0 * q1, dim=-1) + if shortest_arc: + # Flip some quaternions to perform shortest arc interpolation. + q1 = q1.clone() + q1[cos_omega < 0, :] = -q1[cos_omega < 0, :] + cos_omega = torch.abs(cos_omega) + # True when q0 and q1 are close. + nearby_quaternions = cos_omega > (1.0 - 1e-3) + nearby_quaternions_idx = nearby_quaternions.nonzero(as_tuple=True)[0] + + # General approach + omega = torch.acos(cos_omega) + alpha = torch.sin((1 - steps) * omega) + beta = torch.sin(steps * omega) + # Use linear interpolation for nearby quaternions + alpha[nearby_quaternions_idx] = 1 - steps[nearby_quaternions_idx] + beta[nearby_quaternions_idx] = steps[nearby_quaternions_idx] + # Interpolation + q = alpha.unsqueeze(-1) * q0 + beta.unsqueeze(-1) * q1 + # Normalization of the output + q = q / torch.norm(q, dim=-1, keepdim=True) + return q.reshape(batch_shape + (4,)) + + +def quat_product(p, q): + """ + Returns the product of two quaternions. + + Args: + p, q (...x4 tensor, XYZW convention): batch of quaternions. + Returns: + batch of quaternions (...x4 tensor, XYZW convention). + """ + # Adapted from SciPy: + # https://github.com/scipy/scipy/blob/adc4f4f7bab120ccfab9383aba272954a0a12fb0/scipy/spatial/transform/rotation.py#L153 + + vector = p[..., None, 3] * q[..., :3] + q[..., None, 3] * p[..., :3] + torch.cross(p[..., :3], q[..., :3], dim=-1) + last = p[..., 3] * q[..., 3] - torch.sum(p[..., :3] * q[..., :3], dim=-1) + return torch.cat((vector, last[..., None]), dim=-1) + + +def unitquat_to_rotvec(quat, shortest_arc=True): + """ + Converts unit quaternion into rotation vector representation. + + Based on the representation of a rotation of angle :math:`{\\theta}` and unit axis :math:`(x,y,z)` + by the unit quaternions :math:`\pm [\sin({\\theta} / 2) (x i + y j + z k) + \cos({\\theta} / 2)]`. + + Args: + quat (...x4 tensor, XYZW convention): batch of unit quaternions. + No normalization is applied before computation. + shortest_arc (bool): if True, the function returns the smallest rotation vectors corresponding + to the input 3D rotations, i.e. rotation vectors with a norm smaller than :math:`\pi`. + If False, the function may return rotation vectors of norm larger than :math:`\pi`, depending on the sign of the input quaternions. + Returns: + batch of rotation vectors (...x3 tensor). + Note: + Behavior is undefined for inputs ``quat=torch.as_tensor([0.0, 0.0, 0.0, -1.0])`` and ``shortest_arc=False``, + as any rotation vector of angle :math:`2 \pi` could be a valid representation in such case. + """ + batch_shape = quat.shape[:-1] + quat = quat.reshape((-1, 4)) + # We perform a copy to support auto-differentiation. + quat = quat.clone() + # Adapted from SciPy: + # https://github.com/scipy/scipy/blob/adc4f4f7bab120ccfab9383aba272954a0a12fb0/scipy/spatial/transform/rotation.py#L1006-L1073 + if shortest_arc: + # Enforce w > 0 to ensure 0 <= angle <= pi. + # (Otherwise angle can be arbitrary within ]-2pi, 2pi]). + quat[quat[:, 3] < 0] *= -1 + half_angle = torch.atan2(torch.norm(quat[:, :3], dim=1), quat[:, 3]) + angle = 2 * half_angle + small_angle = torch.abs(angle) <= 1e-3 + large_angle = ~small_angle + + num_rotations = len(quat) + scale = torch.empty(num_rotations, dtype=quat.dtype, device=quat.device) + scale[small_angle] = 2 + angle[small_angle] ** 2 / 12 + 7 * angle[small_angle] ** 4 / 2880 + scale[large_angle] = angle[large_angle] / torch.sin(half_angle[large_angle]) + + rotvec = scale[:, None] * quat[:, :3] + return rotvec.reshape(batch_shape + (3,)) + + +def rotvec_to_unitquat(rotvec): + """ + Converts rotation vector into unit quaternion representation. + + Args: + rotvec (...x3 tensor): batch of rotation vectors. + Returns: + batch of unit quaternions (...x4 tensor, XYZW convention). + """ + batch_shape = rotvec.shape[:-1] + rotvec = rotvec.reshape((-1, 3)) + num_rotations, D = rotvec.shape + assert D == 3, "Input should be a Bx3 tensor." + + # Adapted from SciPy: + # https://github.com/scipy/scipy/blob/adc4f4f7bab120ccfab9383aba272954a0a12fb0/scipy/spatial/transform/rotation.py#L621 + + norms = torch.norm(rotvec, dim=-1) + small_angle = norms <= 1e-3 + large_angle = ~small_angle + + scale = torch.empty((num_rotations,), device=rotvec.device, dtype=rotvec.dtype) + scale[small_angle] = 0.5 - norms[small_angle] ** 2 / 48 + norms[small_angle] ** 4 / 3840 + scale[large_angle] = torch.sin(norms[large_angle] / 2) / norms[large_angle] + + quat = torch.empty((num_rotations, 4), device=rotvec.device, dtype=rotvec.dtype) + quat[:, :3] = scale[:, None] * rotvec + quat[:, 3] = torch.cos(norms / 2) + return quat.reshape(batch_shape + (4,)) + + +def unitquat_slerp(q0, q1, steps, shortest_arc=True): + """ + Spherical linear interpolation between two unit quaternions. + + Args: + q0, q1 (Ax4 tensor): batch of unit quaternions (A may contain multiple dimensions). + steps (tensor of shape A): interpolation steps, 0.0 corresponding to q0 and 1.0 to q1 (A may contain multiple dimensions). + shortest_arc (boolean): if True, interpolation will be performed along the shortest arc on SO(3) from `q0` to `q1` or `-q1`. + Returns: + batch of interpolated quaternions (Ax4 tensor). + Note: + When considering quaternions as rotation representations, + one should keep in mind that spherical interpolation is not necessarily performed along the shortest arc, + depending on the sign of ``torch.sum(q0*q1,dim=-1)``. + + Behavior is undefined when using ``shortest_arc=False`` with antipodal quaternions. + """ + # Relative rotation + q0_conj = q0.clone() + q0_conj[..., :3] *= -1 + rel_q = quat_product(q0_conj, q1) + rel_rotvec = unitquat_to_rotvec(rel_q, shortest_arc=shortest_arc) + # Relative rotations to apply + rel_rotvecs = steps.reshape(steps.shape + (1,)) * rel_rotvec + rots = rotvec_to_unitquat(rel_rotvecs.reshape(-1, 3)).reshape(*rel_rotvecs.shape[:-1], 4) + interpolated_q = quat_product(q0, rots.to(q0)) + return interpolated_q + + def quaternion_matrix(quaternion: NDArray) -> np.ndarray: """Return homogeneous rotation matrix from quaternion. @@ -160,7 +418,52 @@ def quaternion_matrix(quaternion: NDArray) -> np.ndarray: ) -def get_interpolated_poses(pose_a: NDArray, pose_b: NDArray, steps: int = 10) -> List[float]: +# from pytorch3d +def rotation_6d_to_matrix(d6: torch.Tensor) -> torch.Tensor: + """ + Converts 6D rotation representation by Zhou et al. [1] to rotation matrix + using Gram--Schmidt orthogonalization per Section B of [1]. + Args: + d6: 6D rotation representation, of size (*, 6) + + Returns: + batch of rotation matrices of size (*, 3, 3) + + [1] Zhou, Y., Barnes, C., Lu, J., Yang, J., & Li, H. + On the Continuity of Rotation Representations in Neural Networks. + IEEE Conference on Computer Vision and Pattern Recognition, 2019. + Retrieved from http://arxiv.org/abs/1812.07035 + """ + + a1, a2 = d6[..., :3], d6[..., 3:] + b1 = F.normalize(a1, dim=-1) + b2 = a2 - (b1 * a2).sum(-1, keepdim=True) * b1 + b2 = F.normalize(b2, dim=-1) + b3 = torch.cross(b1, b2, dim=-1) + return torch.stack((b1, b2, b3), dim=-2) + + +# from pytorch3d +def matrix_to_rotation_6d(matrix: torch.Tensor) -> torch.Tensor: + """ + Converts rotation matrices to 6D rotation representation by Zhou et al. [1] + by dropping the last row. Note that 6D representation is not unique. + Args: + matrix: batch of rotation matrices of size (*, 3, 3) + + Returns: + 6D rotation representation, of size (*, 6) + + [1] Zhou, Y., Barnes, C., Lu, J., Yang, J., & Li, H. + On the Continuity of Rotation Representations in Neural Networks. + IEEE Conference on Computer Vision and Pattern Recognition, 2019. + Retrieved from http://arxiv.org/abs/1812.07035 + """ + batch_dim = matrix.size()[:-2] + return matrix[..., :2, :].clone().reshape(batch_dim + (6,)) + + +def get_interpolated_poses(pose_a: NDArray, pose_b: NDArray, steps: int = 10, include_last=True) -> List[float]: """Return interpolation of poses with specified number of steps. Args: pose_a: first pose @@ -171,7 +474,8 @@ def get_interpolated_poses(pose_a: NDArray, pose_b: NDArray, steps: int = 10) -> quat_a = quaternion_from_matrix(pose_a[:3, :3]) quat_b = quaternion_from_matrix(pose_b[:3, :3]) - ts = np.linspace(0, 1, steps) + max_t = 1 if include_last else 1 - 1 / steps + ts = np.linspace(0, max_t, steps) quats = [quaternion_slerp(quat_a, quat_b, t) for t in ts] trans = [(1 - t) * pose_a[:3, 3] + t * pose_b[:3, 3] for t in ts] @@ -185,7 +489,7 @@ def get_interpolated_poses(pose_a: NDArray, pose_b: NDArray, steps: int = 10) -> def get_interpolated_k( - k_a: Float[Tensor, "3 3"], k_b: Float[Tensor, "3 3"], steps: int = 10 + k_a: Float[Tensor, "3 3"], k_b: Float[Tensor, "3 3"], steps: int = 10, include_last=True ) -> List[Float[Tensor, "3 4"]]: """ Returns interpolated path between two camera poses with specified number of steps. @@ -199,7 +503,8 @@ def get_interpolated_k( List of interpolated camera poses """ Ks: List[Float[Tensor, "3 3"]] = [] - ts = np.linspace(0, 1, steps) + max_t = 1 if include_last else 1 - 1 / steps + ts = np.linspace(0, max_t, steps) for t in ts: new_k = k_a * (1.0 - t) + k_b * t Ks.append(new_k) @@ -247,6 +552,7 @@ def get_interpolated_poses_many( Ks: Float[Tensor, "num_poses 3 3"], steps_per_transition: int = 10, order_poses: bool = False, + include_last: bool = True, ) -> Tuple[Float[Tensor, "num_poses 3 4"], Float[Tensor, "num_poses 3 3"]]: """Return interpolated poses for many camera poses. @@ -268,9 +574,13 @@ def get_interpolated_poses_many( for idx in range(poses.shape[0] - 1): pose_a = poses[idx].cpu().numpy() pose_b = poses[idx + 1].cpu().numpy() - poses_ab = get_interpolated_poses(pose_a, pose_b, steps=steps_per_transition) + poses_ab = get_interpolated_poses(pose_a, pose_b, steps=steps_per_transition, include_last=include_last) traj += poses_ab - k_interp += get_interpolated_k(Ks[idx], Ks[idx + 1], steps=steps_per_transition) + k_interp += get_interpolated_k(Ks[idx], Ks[idx + 1], steps=steps_per_transition, include_last=include_last) + + if not include_last: + traj.append(poses[-1].cpu().numpy()) + k_interp.append(Ks[-1]) traj = np.stack(traj, axis=0) k_interp = torch.stack(k_interp, dim=0) @@ -294,7 +604,9 @@ def normalize_with_norm(x: torch.Tensor, dim: int) -> Tuple[torch.Tensor, torch. Tuple of normalized tensor and corresponding norm. """ - norm = torch.maximum(torch.linalg.vector_norm(x, dim=dim, keepdims=True), torch.tensor([_EPS]).to(x)) + norm = torch.maximum( + torch.linalg.vector_norm(x, dim=dim, keepdims=True), torch.tensor([_EPS], device=x.device, dtype=x.dtype) + ) return x / norm, norm diff --git a/nerfstudio/cameras/cameras.py b/nerfstudio/cameras/cameras.py index e390360b..c865cd13 100644 --- a/nerfstudio/cameras/cameras.py +++ b/nerfstudio/cameras/cameras.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -918,6 +919,15 @@ def _compute_rays_for_vr180( else: metadata = {"directions_norm": directions_norm[0].detach()} + if self.metadata and "rolling_shutter_offsets" in self.metadata and "velocities" in self.metadata: + cam_idx = camera_indices.squeeze(-1) + heights, rows = self.height[cam_idx], coords[..., 0:1] + duration = self.metadata["rolling_shutter_offsets"][cam_idx].diff() + time_offsets = rows / heights * duration + self.metadata["rolling_shutter_offsets"][cam_idx][..., 0:1] + origins = origins + self.metadata["velocities"][cam_idx] * time_offsets + times = times + time_offsets + del metadata["rolling_shutter_offsets"] # it has served its purpose + return RayBundle( origins=origins, directions=directions, @@ -925,6 +935,7 @@ def _compute_rays_for_vr180( camera_indices=camera_indices, times=times, metadata=metadata, + fars=torch.ones_like(pixel_area) * 1_000_000, ) def to_json( diff --git a/nerfstudio/cameras/lidars.py b/nerfstudio/cameras/lidars.py new file mode 100644 index 00000000..811439ce --- /dev/null +++ b/nerfstudio/cameras/lidars.py @@ -0,0 +1,540 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# +# 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. + +""" +Camera Models +""" +import os +from dataclasses import dataclass +from enum import Enum, auto +from typing import Dict, List, Optional, Union + +import numpy as np +import torch +from jaxtyping import Float, Int +from matplotlib import pyplot as plt +from torch import Tensor +from torch.nn import Parameter + +import nerfstudio.utils.math +import nerfstudio.utils.poses as pose_utils +from nerfstudio.cameras import camera_utils +from nerfstudio.cameras.rays import RayBundle +from nerfstudio.data.scene_box import SceneBox +from nerfstudio.utils.misc import strtobool, torch_compile +from nerfstudio.utils.tensor_dataclass import TensorDataclass + +TORCH_DEVICE = Union[torch.device, str] # pylint: disable=invalid-name + +HORIZONTAL_BEAM_DIVERGENCE = 3.0e-3 # radians, or meters at a distance of 1m +VERTICAL_BEAM_DIVERGENCE = 1.5e-3 # radians, or meters at a distance of 1m + + +class LidarType(Enum): + """Supported Lidar Types.""" + + VELODYNE16 = auto() + VELODYNE_HDL32E = auto() + VELODYNE_VLP32C = auto() + VELODYNE64E = auto() + VELODYNE128 = auto() + PANDAR64 = auto() + + +LIDAR_MODEL_TO_TYPE = { + "VELODYNE16": LidarType.VELODYNE16, + "VELODYNE_HDL32E": LidarType.VELODYNE_HDL32E, + "VELODYNE_VLP32C": LidarType.VELODYNE_VLP32C, + "VELODYNE64E": LidarType.VELODYNE64E, + "VELODYNE128": LidarType.VELODYNE128, + "PANDAR64": LidarType.PANDAR64, +} + + +@dataclass(init=False) +class Lidars(TensorDataclass): + """Dataparser outputs for the lidar dataset and the ray generator. + + If a single value is provided, it is broadcasted to all lidars. + + Args: + lidar_to_worlds: Lidar to world matrices. Tensor of per-image l2w matrices, in [R | t] format + lidar_type: Type of lidar sensor. This will be an int corresponding to the LidarType enum. + assume_ego_compensated: Whether or not to assume that points are ego-compensated. + times: Timestamps for each lidar + n_points: Number of points in each lidar + metadata: Additional metadata or data needed for interpolation, will mimic shape of the lidars + and will be broadcasted to the rays generated from any derivative RaySamples we create with this + """ + + lidar_to_worlds: Float[Tensor, "*num_lidars 3 4"] + lidar_type: Float[Tensor, "*num_lidars 1"] + times: Optional[Int[Tensor, "*num_lidars 1"]] + metadata: Optional[Dict] + horizontal_beam_divergence: Float[Tensor, "*num_lidars 1"] + vertical_beam_divergence: Float[Tensor, "*num_lidars 1"] + + def __init__( + self, + lidar_to_worlds: Float[Tensor, "*batch_l2ws 3 4"], + lidar_type: Optional[ + Union[ + Int[Tensor, "*batch_lidar_types 1"], + int, + List[LidarType], + LidarType, + ] + ] = LidarType.VELODYNE_VLP32C, + assume_ego_compensated: bool = True, + times: Optional[Float[Tensor, "*num_lidars"]] = None, + metadata: Optional[Dict] = None, + horizontal_beam_divergence: Optional[Union[Float, Float[Tensor, "*num_lidars 1"]]] = None, + vertical_beam_divergence: Optional[Union[Float, Float[Tensor, "*num_lidars 1"]]] = None, + valid_lidar_distance_threshold: float = 1e3, + ) -> None: + """Initializes the Lidars object. + + Note on Input Tensor Dimensions: All of these tensors have items of dimensions Shaped[Tensor, "3 4"] + (in the case of the c2w matrices), Shaped[Tensor, "6"] (in the case of distortion params), or + Shaped[Tensor, "1"] (in the case of the rest of the elements). The dimensions before that are + considered the batch dimension of that tensor (batch_c2ws, batch_fxs, etc.). We will broadcast + all the tensors to be the same batch dimension. This means you can use any combination of the + input types in the function signature and it won't break. Your batch size for all tensors + must be broadcastable to the same size, and the resulting number of batch dimensions will be + the batch dimension with the largest number of dimensions. + """ + + # This will notify the tensordataclass that we have a field with more than 1 dimension + self._field_custom_dimensions = {"lidar_to_worlds": 2} + + self.lidar_to_worlds = lidar_to_worlds + + # @dataclass's post_init will take care of broadcasting + self.lidar_type = self._init_get_lidar_type(lidar_type) + self.times = self._init_get_times(times) + + self.metadata = metadata + + self.horizontal_beam_divergence = self._init_get_beam_divergence( + horizontal_beam_divergence, HORIZONTAL_BEAM_DIVERGENCE + ) + self.vertical_beam_divergence = self._init_get_beam_divergence( + vertical_beam_divergence, VERTICAL_BEAM_DIVERGENCE + ) + + self.__post_init__() # This will do the dataclass post_init and broadcast all the tensors + + self._use_nerfacc = strtobool(os.environ.get("INTERSECT_WITH_NERFACC", "TRUE")) + self.assume_ego_compensated = assume_ego_compensated + + self.valid_lidar_distance_threshold = valid_lidar_distance_threshold + + def _init_get_beam_divergence( + self, + beam_divergence: Union[None, Float, Float[Tensor, "*num_lidars 1"]], + default: float, + ) -> Float[Tensor, "*num_lidars 1"]: + if beam_divergence is None: + beam_divergence = torch.ones_like(self.lidar_type) * default + elif isinstance(beam_divergence, float): + beam_divergence = torch.ones_like(self.lidar_type) * beam_divergence + elif isinstance(beam_divergence, torch.Tensor): + if beam_divergence.ndim == 0 or beam_divergence.shape[-1] != 1: + beam_divergence = beam_divergence.unsqueeze(-1) + else: + raise ValueError(f"beam_divergence must be None, float, or tensor, got {type(beam_divergence)}") + + return beam_divergence + + def _init_get_lidar_type( + self, + lidar_type: Union[ + Int[Tensor, "*batch_lidar_types 1"], Int[Tensor, "*batch_lidar_types"], int, List[LidarType], LidarType + ], + ) -> Int[Tensor, "*num_lidars 1"]: + """ + Parses the __init__() argument lidar_type + + Lidar Type Calculation: + If LidarType, convert to int and then to tensor, then broadcast to all lidars + If List of LidarTypes, convert to ints and then to tensor, then broadcast to all lidars + If int, first go to tensor and then broadcast to all lidars + If tensor, broadcast to all lidars + + Args: + lidar_type: lidar_type argument from __init__() + """ + if isinstance(lidar_type, LidarType): + lidar_type = torch.tensor([lidar_type.value], device=self.device) + elif isinstance(lidar_type, List) and isinstance(lidar_type[0], LidarType): + lidar_type = torch.tensor([[c.value] for c in lidar_type], device=self.device) + elif isinstance(lidar_type, int): + lidar_type = torch.tensor([lidar_type], device=self.device) + elif isinstance(lidar_type, torch.Tensor): + assert not torch.is_floating_point( + lidar_type + ), f"lidar_type tensor must be of type int, not: {lidar_type.dtype}" + lidar_type = lidar_type.to(self.device) + if lidar_type.ndim == 0 or lidar_type.shape[-1] != 1: + lidar_type = lidar_type.unsqueeze(-1) + # assert torch.all( + # lidar_type.view(-1)[0] == lidar_type + # ), "Batched lidars of different lidar_types will be allowed in the future." + else: + raise ValueError( + 'Invalid lidar_type. Must be LidarType, List[LidarType], int, or torch.Tensor["num_lidars"]. \ + Received: ' + + str(type(lidar_type)) + ) + return lidar_type + + def _init_get_times(self, times: Union[None, torch.Tensor]) -> Union[None, torch.Tensor]: + if times is None: + times = None + elif isinstance(times, torch.Tensor): + if times.ndim == 0 or times.shape[-1] != 1: + times = times.unsqueeze(-1).to(self.device) + else: + raise ValueError(f"times must be None or a tensor, got {type(times)}") + + return times + + @property + def device(self) -> TORCH_DEVICE: + """Returns the device that the camera is on.""" + return self.lidar_to_worlds.device + + @property + def is_jagged(self) -> bool: + """ + Returns whether or not the lidars are "jagged" (i.e. number of point vary between lidars) + TODO: base assumption is that all lidars have different number of points + """ + return all(self.n_points.view(-1)[0] == self.n_points) + + def generate_rays( # pylint: disable=too-many-statements + self, + lidar_indices: Union[Int[Tensor, "*num_rays num_lidars_batch_dims"], int], + coords: Optional[Float[Tensor, "*num_rays 2"]] = None, + lidar_opt_to_lidar: Optional[Float[Tensor, "*num_rays 3 4"]] = None, + keep_shape: Optional[bool] = None, + aabb_box: Optional[SceneBox] = None, + points: Optional[Float[Tensor, "*num_rays point_dim"]] = None, + ) -> RayBundle: + """Generates rays for the given camera indices. + + This function will standardize the input arguments and then call the _generate_rays_from_coords function + to generate the rays. Our goal is to parse the arguments and then get them into the right shape: + - lidar_indices: (num_rays:..., num_lidars_batch_dims) + - coords: (num_rays:..., 2) + - lidar_opt_to_lidar: (num_rays:..., 3, 4) or None + + Read the docstring for _generate_rays_from_coords for more information on how we generate the rays + after we have standardized the arguments. + + We are only concerned about different combinations of lidar_indices and coords matrices, and the following + are the 4 cases we have to deal with: + 1. isinstance(lidar_indices, int) and coords == None + - In this case we broadcast our lidar_indices / coords shape (h, w, 1 / 2 respectively) + 2. isinstance(lidar_indices, int) and coords != None + - In this case, we broadcast lidar_indices to the same batch dim as coords + 3. not isinstance(lidar_indices, int) and coords == None + - In this case, we will need to set coords so that it is of shape (h, w, num_rays, 2), and broadcast + all our other args to match the new definition of num_rays := (h, w) + num_rays + 4. not isinstance(lidar_indices, int) and coords != None + - In this case, we have nothing to do, only check that the arguments are of the correct shape + + There is one more edge case we need to be careful with: when we have "jagged lidars" (ie: different heights + and widths for each camera). This isn't problematic when we specify coords, since coords is already a tensor. + When coords == None (ie: when we render out the whole image associated with this camera), we run into problems + since there's no way to stack each coordinate map as all coordinate maps are all different shapes. In this case, + we will need to flatten each individual coordinate map and concatenate them, giving us only one batch dimension, + regardless of the number of prepended extra batch dimensions in the lidar_indices tensor. + + + Args: + lidar_indices: Camera indices of the flattened lidars object to generate rays for. + coords: Coordinates of the pixels to generate rays for. If None, the full image will be rendered. + lidar_opt_to_lidar: Optional transform for the camera to world matrices. + distortion_params_delta: Optional delta for the distortion parameters. + keep_shape: If None, then we default to the regular behavior of flattening if lidars is jagged, otherwise + keeping dimensions. If False, we flatten at the end. If True, then we keep the shape of the + lidar_indices and coords tensors (if we can). + disable_distortion: If True, disables distortion. + aabb_box: if not None will calculate nears and fars of the ray according to aabb box intesection + + Returns: + Rays for the given camera indices and coords. + """ + # Check the argument types to make sure they're valid and all shaped correctly + assert isinstance(lidar_indices, (torch.Tensor, int)), "lidar_indices must be a tensor or int" + assert ( + coords is None or isinstance(coords, torch.Tensor) or points is not None + ), "coords must be a tensor or None, or points must be specified" + assert lidar_opt_to_lidar is None or isinstance(lidar_opt_to_lidar, torch.Tensor) + if isinstance(lidar_indices, torch.Tensor) and isinstance(coords, torch.Tensor): + num_rays_shape = lidar_indices.shape[:-1] + errormsg = "Batch dims of inputs must match when inputs are all tensors" + if coords is not None: + assert coords.shape == num_rays_shape, errormsg + assert lidar_opt_to_lidar is None or lidar_opt_to_lidar.shape[:-2] == num_rays_shape, errormsg + + # If zero dimensional, we need to unsqueeze to get a batch dimension and then squeeze later + if not self.shape: + lidars = self.reshape((1,)) + assert torch.all( + torch.tensor(lidar_indices == 0) if isinstance(lidar_indices, int) else lidar_indices == 0 + ), "Can only index into single camera with no batch dimensions if index is zero" + else: + lidars = self + + # If the camera indices are an int, then we need to make sure that the camera batch is 1D + if isinstance(lidar_indices, int): + assert ( + len(lidars.shape) == 1 + ), "lidar_indices must be a tensor if lidars are batched with more than 1 batch dimension" + lidar_indices = torch.tensor([lidar_indices], device=lidars.device) + + assert lidar_indices.shape[-1] == len( + lidars.shape + ), "lidar_indices must have shape (num_rays:..., num_lidars_batch_dims)" + + assert (coords is None) or (points is None), "Cannot specify both coords and points" + if points is not None: + raybundle = lidars._generate_rays_from_points(lidar_indices, points, lidar_opt_to_lidar) + elif coords is not None: + raise NotImplementedError("No lidar modeling yet") + else: + raise NotImplementedError("No lidar modeling yet") + + # If we have mandated that we don't keep the shape, then we flatten + if keep_shape is False: + raybundle = raybundle.flatten() + + if aabb_box: + with torch.no_grad(): + tensor_aabb = Parameter(aabb_box.aabb.flatten(), requires_grad=False) + + rays_o = raybundle.origins.contiguous() + rays_d = raybundle.directions.contiguous() + + tensor_aabb = tensor_aabb.to(rays_o.device) + shape = rays_o.shape + + rays_o = rays_o.reshape((-1, 3)) + rays_d = rays_d.reshape((-1, 3)) + + t_min, t_max = nerfstudio.utils.math.intersect_aabb(rays_o, rays_d, tensor_aabb) + + t_min = t_min.reshape([shape[0], shape[1], 1]) + t_max = t_max.reshape([shape[0], shape[1], 1]) + + raybundle.nears = t_min + raybundle.fars = t_max + + # TODO: We should have to squeeze the last dimension here if we started with zero batch dims, but never have to, + # so there might be a rogue squeeze happening somewhere, and this may cause some unintended behaviour + # that we haven't caught yet with tests + return raybundle + + # pylint: disable=too-many-statements + + def _generate_rays_from_points( + self, + lidar_indices: Int[Tensor, "*num_rays num_lidars_batch_dims"], + points: Float[Tensor, "*num_points point_dim"], + lidar_opt_to_lidar: Optional[Float[Tensor, "*num_rays 3 4"]] = None, + ) -> RayBundle: + # Make sure we're on the right devices + lidar_indices = lidar_indices.to(self.device) + points = points.to(self.device) + + # Checking to make sure everything is of the right shape and type + num_rays_shape = lidar_indices.shape[:-1] + assert lidar_indices.shape == num_rays_shape + (self.ndim,) + assert lidar_opt_to_lidar is None or lidar_opt_to_lidar.shape == num_rays_shape + (3, 4) + l2w = self.lidar_to_worlds[lidar_indices.squeeze(-1)] # (..., 3, 4) + assert l2w.shape == num_rays_shape + (3, 4) + if lidar_opt_to_lidar is not None: + l2w = pose_utils.multiply(l2w, lidar_opt_to_lidar) + + points_world = transform_points_pairwise(points[..., :3], l2w) + origins = l2w[..., :3, 3] # (..., 3) + assert origins.shape == num_rays_shape + (3,) + if points.shape[-1] >= 5 and self.metadata and "velocities" in self.metadata: + # Offset the point origins according to timediff and velocity + origins = origins + points[..., 4:5] * self.metadata["velocities"][lidar_indices.squeeze(-1)] + if not self.assume_ego_compensated: + # offset the world points according to velocity too + points_world = points_world + points[..., 4:5] * self.metadata["velocities"][lidar_indices.squeeze(-1)] + directions = points_world - origins + directions, distance = camera_utils.normalize_with_norm(directions, -1) + assert directions.shape == num_rays_shape + (3,) + + # norms of the vector going between adjacent coords, giving us dx and dy per output ray + dx = self.horizontal_beam_divergence[lidar_indices.squeeze(-1)] # ("num_rays":...,) + dy = self.vertical_beam_divergence[lidar_indices.squeeze(-1)] # ("num_rays":...,) + pixel_area = dx * dy # ("num_rays":..., 1) + assert pixel_area.shape == num_rays_shape + (1,) + + metadata = ( + self._apply_fn_to_dict(self.metadata, lambda x: x[lidar_indices.squeeze(-1)]) + if self.metadata is not None + else None + ) + if metadata is not None: + metadata["directions_norm"] = distance.detach() + else: + metadata = {"directions_norm": distance.detach()} + metadata["is_lidar"] = torch.ones_like(distance, dtype=torch.bool) + metadata["did_return"] = distance.detach() < self.valid_lidar_distance_threshold + + times = self.times[lidar_indices, 0] if self.times is not None else None + times = times + points[..., 4:5] + + return RayBundle( + origins=origins, + directions=directions, + pixel_area=pixel_area, + camera_indices=lidar_indices, + times=times, + metadata=metadata, + fars=torch.ones_like(pixel_area) * 1_000_000, # TODO: is this cheating? + ) + + def _generate_rays_from_coords( + self, + lidar_indices: Int[Tensor, "*num_rays num_lidars_batch_dims"], + coords: Float[Tensor, "num_rays 2"], + lidar_opt_to_lidar: Optional[Float[Tensor, "*num_rays 3 4"]] = None, + ) -> RayBundle: + """Generates rays for the given camera indices and coords where self isn't jagged + + This is a fairly complex function, so let's break this down slowly. + + Shapes involved: + - num_rays: This is your output raybundle shape. It dictates the number and shape of the rays generated + - num_lidars_batch_dims: This is the number of dimensions of our camera + + Args: + lidar_indices: Camera indices of the flattened lidars object to generate rays for. + The shape of this is such that indexing into lidar_indices["num_rays":...] will return the + index into each batch dimension of the camera in order to get the correct camera specified by + "num_rays". + + Example: + >>> lidars = lidars(...) + >>> lidars.shape + (2, 3, 4) + + >>> lidar_indices = torch.tensor([0, 0, 0]) # We need an axis of length 3 since lidars.ndim == 3 + >>> lidar_indices.shape + (3,) + >>> coords = torch.tensor([1,1]) + >>> coords.shape + (2,) + >>> out_rays = lidars.generate_rays(lidar_indices=lidar_indices, coords = coords) + # This will generate a RayBundle with a single ray for the + # camera at lidars[0,0,0] at image coordinates (1,1), so out_rays.shape == () + >>> out_rays.shape + () + + >>> lidar_indices = torch.tensor([[0,0,0]]) + >>> lidar_indices.shape + (1, 3) + >>> coords = torch.tensor([[1,1]]) + >>> coords.shape + (1, 2) + >>> out_rays = lidars.generate_rays(lidar_indices=lidar_indices, coords = coords) + # This will generate a RayBundle with a single ray for the + # camera at lidars[0,0,0] at point (1,1), so out_rays.shape == (1,) + # since we added an extra dimension in front of lidar_indices + >>> out_rays.shape + (1,) + + If you want more examples, check tests/lidars/test_lidars and the function check_generate_rays_shape + + The bottom line is that for lidar_indices: (num_rays:..., num_lidars_batch_dims), num_rays is the + output shape and if you index into the output RayBundle with some indices [i:...], if you index into + lidar_indices with lidar_indices[i:...] as well, you will get a 1D tensor containing the batch + indices into the original lidars object corresponding to that ray (ie: you will get the camera + from our batched lidars corresponding to the ray at RayBundle[i:...]). + + coords: Coordinates of the pixels to generate rays for. If None, the full image will be rendered, meaning + height and width get prepended to the num_rays dimensions. Indexing into coords with [i:...] will + get you the image coordinates [x, y] of that specific ray located at output RayBundle[i:...]. + + lidar_opt_to_lidar: Optional transform for the camera to world matrices. + In terms of shape, it follows the same rules as coords, but indexing into it with [i:...] gets you + the 2D camera to world transform matrix for the camera optimization at RayBundle[i:...]. + + distortion_params_delta: Optional delta for the distortion parameters. + In terms of shape, it follows the same rules as coords, but indexing into it with [i:...] gets you + the 1D tensor with the 6 distortion parameters for the camera optimization at RayBundle[i:...]. + + disable_distortion: If True, disables distortion. + + Returns: + Rays for the given camera indices and coords. RayBundle.shape == num_rays + """ + raise NotImplementedError("No lidar modeling yet") + + +def transform_points(points, transform): + """Transforms points by a transform.""" + points = points.clone() + rotations = transform[..., :3, :3] + translations = transform[..., :3, 3] + points[:, :3] = points[:, :3] @ rotations.swapaxes(-2, -1) + translations + return points + + +@torch_compile(dynamic=True, mode="reduce-overhead", backend="eager") +def transform_points_pairwise(points, transforms, with_translation=True): + """Transform points by a pairwise transform.""" + # points: (*, 3) + # transforms: (*, 4, 4) + # return: (*, 3) + # points = points.clone() + rotations = transforms[..., :3, :3] + translations = transforms[..., :3, 3] + + if with_translation: + return (points.unsqueeze(-2) @ rotations.swapaxes(-2, -1)).squeeze(-2) + translations + else: + return (points.unsqueeze(-2) @ rotations.swapaxes(-2, -1)).squeeze(-2) + + +@torch_compile(dynamic=True, mode="reduce-overhead", backend="eager") +def transform_points_by_batch(points, transforms, with_translation=True): + """Transform points by a batch of transforms.""" + # points: (N, 3) + # transforms: (B, 4, 4) + # return: (B, N, 3) + batch_size = transforms.shape[0] + points = points.clone().unsqueeze(0).repeat(batch_size, 1, 1) + rotations = transforms[:, :3, :3] + translations = transforms[:, :3, 3] + + if with_translation: + return points @ rotations.permute(0, 2, 1) + translations.unsqueeze(1) + else: + return points @ rotations.permute(0, 2, 1) + + +def intensity_to_rgb(intensities: np.ndarray) -> np.ndarray: # N -> N x 3 + """Converts intensities to RGB values.""" + # use log-scale for better visualization + log_intensities = np.log(1 + intensities * 255) / np.log(256) + return plt.cm.inferno(log_intensities)[:, :3] diff --git a/nerfstudio/cameras/rays.py b/nerfstudio/cameras/rays.py index 33476f92..d96eb948 100644 --- a/nerfstudio/cameras/rays.py +++ b/nerfstudio/cameras/rays.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -17,13 +18,13 @@ """ import random from dataclasses import dataclass, field -from typing import Callable, Dict, Literal, Optional, Tuple, Union, overload +from typing import Callable, Dict, List, Literal, Optional, Tuple, Union, overload import torch from jaxtyping import Float, Int, Shaped from torch import Tensor -from nerfstudio.utils.math import Gaussians, conical_frustum_to_gaussian +from nerfstudio.utils.math import Gaussians, GaussiansStd, conical_frustum_to_gaussian, multisampled_frustum_to_gaussian from nerfstudio.utils.tensor_dataclass import TensorDataclass TORCH_DEVICE = Union[str, torch.device] @@ -69,14 +70,14 @@ def set_offsets(self, offsets): """Sets offsets for this frustum for computing positions""" self.offsets = offsets - def get_gaussian_blob(self) -> Gaussians: + def get_conical_gaussian_blob(self) -> Gaussians: """Calculates guassian approximation of conical frustum. Returns: Conical frustums approximated by gaussian distribution. """ # Cone radius is set such that the square pixel_area matches the cone area. - cone_radius = torch.sqrt(self.pixel_area) / 1.7724538509055159 # r = sqrt(pixel_area / pi) + cone_radius = torch.sqrt(self.pixel_area / torch.pi) if self.offsets is not None: raise NotImplementedError() return conical_frustum_to_gaussian( @@ -87,6 +88,41 @@ def get_gaussian_blob(self) -> Gaussians: radius=cone_radius, ) + def get_multisampled_gaussian_blob(self, rand: bool = False) -> GaussiansStd: + """Calculates Gaussian approximation of conical frustum via multisampling. + Returns: + Conical frustums approximated by multisampled gaussian distribution. + """ + # Cone radius is set such that the square pixel_area matches the cone area. + cone_radius = torch.sqrt(self.pixel_area / torch.pi) + if self.offsets is not None: + raise NotImplementedError() + return multisampled_frustum_to_gaussian( + origins=self.origins, + directions=self.directions, + starts=self.starts, + ends=self.ends, + radius=cone_radius, + rand=rand, + ) + + def get_fast_isotropic_gaussian(self, num_multisamples: int) -> GaussiansStd: + """This is a sloppy but very fast approximation of the gaussian blob. + + Args: + num_multisamples: Number of samples to use for the gaussian blob. + + """ + if self.offsets is not None: + raise NotImplementedError() + multisample_dist = (self.ends - self.starts) / (num_multisamples + 1) + ts = torch.arange(1, num_multisamples + 1, device=self.ends.device, dtype=self.ends.dtype) + t = self.starts + ts.unsqueeze(0) * multisample_dist + mean = self.origins.unsqueeze(-2) + self.directions.unsqueeze(-2) * t.unsqueeze(-1) + frust_crossection_area = self.pixel_area.unsqueeze(-2) * t.unsqueeze(-1).pow(2) + std = (frust_crossection_area * multisample_dist.unsqueeze(-2)).pow(1 / 3) # TODO: * 0.5? + return GaussiansStd(mean=mean, std=std) + @classmethod def get_mock_frustum(cls, device: Optional[TORCH_DEVICE] = "cpu") -> "Frustums": """Helper function to generate a placeholder frustum. @@ -95,11 +131,11 @@ def get_mock_frustum(cls, device: Optional[TORCH_DEVICE] = "cpu") -> "Frustums": A size 1 frustum with meaningless values. """ return Frustums( - origins=torch.ones((1, 3)).to(device), - directions=torch.ones((1, 3)).to(device), - starts=torch.ones((1, 1)).to(device), - ends=torch.ones((1, 1)).to(device), - pixel_area=torch.ones((1, 1)).to(device), + origins=torch.ones((1, 3), device=device), + directions=torch.ones((1, 3), device=device), + starts=torch.ones((1, 1), device=device), + ends=torch.ones((1, 1), device=device), + pixel_area=torch.ones((1, 1), device=device), ) @@ -121,10 +157,34 @@ class RaySamples(TensorDataclass): """Function to convert bins to euclidean distance.""" metadata: Optional[Dict[str, Shaped[Tensor, "*bs latent_dims"]]] = None """additional information relevant to generating ray samples""" - times: Optional[Float[Tensor, "*batch 1"]] = None """Times at which rays are sampled""" + def __init__( + self, + frustums: Frustums, + camera_indices: Optional[Int[Tensor, "*bs 1"]] = None, + deltas: Optional[Float[Tensor, "*bs 1"]] = None, + spacing_starts: Optional[Float[Tensor, "*bs num_samples 1"]] = None, + spacing_ends: Optional[Float[Tensor, "*bs num_samples 1"]] = None, + spacing_to_euclidean_fn: Optional[Callable] = None, + metadata: Optional[Dict[str, Shaped[Tensor, "*bs latent_dims"]]] = None, + times: Optional[Float[Tensor, "*batch 1"]] = None, + ) -> None: + # This will notify the tensordataclass that we have a field with more than 1 dimension + self._field_custom_dimensions = {"world2box": 2} + + self.frustums = frustums + self.camera_indices = camera_indices + self.deltas = deltas + self.spacing_starts = spacing_starts + self.spacing_ends = spacing_ends + self.spacing_to_euclidean_fn = spacing_to_euclidean_fn + self.metadata = metadata + self.times = times + + self.__post_init__() + def get_weights(self, densities: Float[Tensor, "*batch num_samples 1"]) -> Float[Tensor, "*batch num_samples 1"]: """Return weights based on predicted densities @@ -209,6 +269,8 @@ class RayBundle(TensorDataclass): """Additional metadata or data needed for interpolation, will mimic shape of rays""" times: Optional[Float[Tensor, "*batch 1"]] = None """Times at which rays are sampled""" + termination_distances: Optional[Float[Tensor, "*batch 1"]] = None + """Distance along ray where ray is measured to terminate. -1 if unknown and inf if ray does not terminate.""" def set_camera_indices(self, camera_index: int) -> None: """Sets all the camera indices to a specific camera index. @@ -293,3 +355,39 @@ def get_ray_samples( ) return ray_samples + + +@overload +def merge_raysamples(ray_samples: List[RaySamples], sort: Literal[True]) -> Tuple[RaySamples, Int[Tensor, "num_rays"]]: + ... + + +@overload +def merge_raysamples(ray_samples: List[RaySamples], sort: Literal[False]) -> RaySamples: + ... + + +def merge_raysamples( + ray_samples: List[RaySamples], sort: bool = False +) -> Union[RaySamples, Tuple[RaySamples, Int[Tensor, "num_rays"]]]: + """Merges two RaySamples objects, and make sure rays are nicely packed.""" + assert len(ray_samples[0].shape) == 1, "This function is overkill for batched ray samples, use .cat() instead." + merged = ray_samples[0].cat( + ray_samples[1:], dim=0, ignore_fields={"spacing_to_euclidean_fn", "spacing_starts", "spacing_ends"} + ) + assert merged.metadata is not None and "ray_indices" in merged.metadata, "metadata must contain ray_indices" + + if sort: + if merged.frustums.ends.device.type == "mps": + ends = merged.frustums.ends.cpu().double() + ray_indices = merged.metadata["ray_indices"].cpu() + else: + ends = merged.frustums.ends.double() + ray_indices = merged.metadata["ray_indices"] + score = ray_indices + (ends / (ends.max() + 1.0)) + sorting = torch.argsort(score[..., 0], dim=0) + if merged.frustums.ends.device.type == "mps": + sorting.to(merged.frustums.ends.device) + return merged[sorting], sorting + else: + return merged diff --git a/nerfstudio/configs/base_config.py b/nerfstudio/configs/base_config.py index f5ffddda..fa969754 100644 --- a/nerfstudio/configs/base_config.py +++ b/nerfstudio/configs/base_config.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -14,7 +15,6 @@ """Base Configs""" - from __future__ import annotations from dataclasses import dataclass, field @@ -152,3 +152,5 @@ class ViewerConfig(PrintableConfig): """Scale for the camera frustums in the viewer.""" default_composite_depth: bool = True """The default value for compositing depth. Turn off if you want to see the camera frustums without occlusions.""" + max_points_per_cloud: Optional[int] = 2000 + """Max number of points per point cloud.""" diff --git a/nerfstudio/configs/dataparser_configs.py b/nerfstudio/configs/dataparser_configs.py index d9e11b30..efe37b56 100644 --- a/nerfstudio/configs/dataparser_configs.py +++ b/nerfstudio/configs/dataparser_configs.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -20,40 +21,22 @@ import tyro -from nerfstudio.data.dataparsers.arkitscenes_dataparser import ARKitScenesDataParserConfig +from nerfstudio.data.dataparsers.argoverse2_dataparser import Argoverse2DataParserConfig from nerfstudio.data.dataparsers.base_dataparser import DataParserConfig -from nerfstudio.data.dataparsers.blender_dataparser import BlenderDataParserConfig -from nerfstudio.data.dataparsers.colmap_dataparser import ColmapDataParserConfig -from nerfstudio.data.dataparsers.dnerf_dataparser import DNeRFDataParserConfig -from nerfstudio.data.dataparsers.dycheck_dataparser import DycheckDataParserConfig -from nerfstudio.data.dataparsers.instant_ngp_dataparser import InstantNGPDataParserConfig +from nerfstudio.data.dataparsers.kittimot_dataparser import KittiMotDataParserConfig from nerfstudio.data.dataparsers.minimal_dataparser import MinimalDataParserConfig -from nerfstudio.data.dataparsers.nerfosr_dataparser import NeRFOSRDataParserConfig -from nerfstudio.data.dataparsers.nerfstudio_dataparser import NerfstudioDataParserConfig from nerfstudio.data.dataparsers.nuscenes_dataparser import NuScenesDataParserConfig -from nerfstudio.data.dataparsers.phototourism_dataparser import PhototourismDataParserConfig -from nerfstudio.data.dataparsers.scannet_dataparser import ScanNetDataParserConfig -from nerfstudio.data.dataparsers.scannetpp_dataparser import ScanNetppDataParserConfig -from nerfstudio.data.dataparsers.sdfstudio_dataparser import SDFStudioDataParserConfig -from nerfstudio.data.dataparsers.sitcoms3d_dataparser import Sitcoms3DDataParserConfig +from nerfstudio.data.dataparsers.pandaset_dataparser import PandaSetDataParserConfig +from nerfstudio.data.dataparsers.zod_dataparser import ZodDataParserConfig from nerfstudio.plugins.registry_dataparser import discover_dataparsers dataparsers = { - "nerfstudio-data": NerfstudioDataParserConfig(), "minimal-parser": MinimalDataParserConfig(), - "arkit-data": ARKitScenesDataParserConfig(), - "blender-data": BlenderDataParserConfig(), - "instant-ngp-data": InstantNGPDataParserConfig(), + "kittimot-data": KittiMotDataParserConfig(), "nuscenes-data": NuScenesDataParserConfig(), - "dnerf-data": DNeRFDataParserConfig(), - "phototourism-data": PhototourismDataParserConfig(), - "dycheck-data": DycheckDataParserConfig(), - "scannet-data": ScanNetDataParserConfig(), - "sdfstudio-data": SDFStudioDataParserConfig(), - "nerfosr-data": NeRFOSRDataParserConfig(), - "sitcoms3d-data": Sitcoms3DDataParserConfig(), - "scannetpp-data": ScanNetppDataParserConfig(), - "colmap": ColmapDataParserConfig(), + "argoverse2-data": Argoverse2DataParserConfig(), + "zod-data": ZodDataParserConfig(), + "pandaset-data": PandaSetDataParserConfig(), } external_dataparsers, _ = discover_dataparsers() diff --git a/nerfstudio/configs/experiment_config.py b/nerfstudio/configs/experiment_config.py index c93530fc..83e19ffd 100644 --- a/nerfstudio/configs/experiment_config.py +++ b/nerfstudio/configs/experiment_config.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -75,6 +76,8 @@ class ExperimentConfig(InstantiateConfig): """Relative path to save all checkpoints.""" load_scheduler: bool = True """Whether to load the scheduler state_dict to resume training, if it exists.""" + load_optimizer: bool = True + """Whether to load the optimizer state_dict to resume training, if it exists.""" def is_viewer_legacy_enabled(self) -> bool: """Checks if the legacy viewer is enabled.""" diff --git a/nerfstudio/configs/external_methods.py b/nerfstudio/configs/external_methods.py index a0982f09..06579495 100644 --- a/nerfstudio/configs/external_methods.py +++ b/nerfstudio/configs/external_methods.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -42,171 +43,20 @@ class ExternalMethod: external_methods = [] -# Instruct-NeRF2NeRF -external_methods.append( - ExternalMethod( - """[bold yellow]Instruct-NeRF2NeRF[/bold yellow] -For more information visit: https://docs.nerf.studio/nerfology/methods/in2n.html - -To enable Instruct-NeRF2NeRF, you must install it first by running: - [grey]pip install git+https://github.com/ayaanzhaque/instruct-nerf2nerf[/grey]""", - configurations=[ - ("in2n", "Instruct-NeRF2NeRF. Full model, used in paper"), - ("in2n-small", "Instruct-NeRF2NeRF. Half precision model"), - ("in2n-tiny", "Instruct-NeRF2NeRF. Half prevision with no LPIPS"), - ], - pip_package="git+https://github.com/ayaanzhaque/instruct-nerf2nerf", - ) -) - -# K-Planes -external_methods.append( - ExternalMethod( - """[bold yellow]K-Planes[/bold yellow] -For more information visit https://docs.nerf.studio/nerfology/methods/kplanes.html - -To enable K-Planes, you must install it first by running: - [grey]pip install kplanes-nerfstudio[/grey]""", - configurations=[ - ("kplanes", "K-Planes model tuned to static blender scenes"), - ("kplanes-dynamic", "K-Planes model tuned to dynamic DNeRF scenes"), - ], - pip_package="kplanes-nerfstudio", - ) -) - -# LERF -external_methods.append( - ExternalMethod( - """[bold yellow]LERF[/bold yellow] -For more information visit: https://docs.nerf.studio/nerfology/methods/lerf.html - -To enable LERF, you must install it first by running: - [grey]pip install git+https://github.com/kerrj/lerf[/grey]""", - configurations=[ - ("lerf-big", "LERF with OpenCLIP ViT-L/14"), - ("lerf", "LERF with OpenCLIP ViT-B/16, used in paper"), - ("lerf-lite", "LERF with smaller network and less LERF samples"), - ], - pip_package="git+https://github.com/kerrj/lerf", - ) -) - -# Tetra-NeRF -external_methods.append( - ExternalMethod( - """[bold yellow]Tetra-NeRF[/bold yellow] -For more information visit: https://docs.nerf.studio/nerfology/methods/tetranerf.html - -To enable Tetra-NeRF, you must install it first. Please follow the instructions here: - https://github.com/jkulhanek/tetra-nerf/blob/master/README.md#installation""", - configurations=[ - ("tetra-nerf-original", "Tetra-NeRF. Official implementation from the paper"), - ("tetra-nerf", "Tetra-NeRF. Different sampler - faster and better"), - ], - ) -) - -# NeRFPlayer -external_methods.append( - ExternalMethod( - """[bold yellow]NeRFPlayer[/bold yellow] -For more information visit: https://docs.nerf.studio/nerfology/methods/nerfplayer.html - -To enable NeRFPlayer, you must install it first by running: - [grey]pip install git+https://github.com/lsongx/nerfplayer-nerfstudio[/grey]""", - configurations=[ - ("nerfplayer-nerfacto", "NeRFPlayer with nerfacto backbone"), - ("nerfplayer-ngp", "NeRFPlayer with instang-ngp-bounded backbone"), - ], - ) -) - -# Volinga -external_methods.append( - ExternalMethod( - """[bold yellow]Volinga[/bold yellow] -For more information visit: https://docs.nerf.studio/extensions/unreal_engine.html - -To enable Volinga, you must install it first by running: - [grey]pip install git+https://github.com/Volinga/volinga-model[/grey]""", - configurations=[ - ( - "volinga", - "Real-time rendering model from Volinga. Directly exportable to NVOL format at https://volinga.ai/", - ), - ], - pip_package="git+https://github.com/Volinga/volinga-model", - ) -) - -# Instruct-GS2GS -external_methods.append( - ExternalMethod( - """[bold yellow]Instruct-GS2GS[/bold yellow] -For more information visit: https://docs.nerf.studio/nerfology/methods/igs2gs.html - -To enable Instruct-GS2GS, you must install it first by running: - [grey]pip install git+https://github.com/cvachha/instruct-gs2gs[/grey]""", - configurations=[("igs2gs", "Instruct-GS2GS. Full model, used in paper")], - pip_package="git+https://github.com/cvachha/instruct-gs2gs", - ) -) - -# PyNeRF -external_methods.append( - ExternalMethod( - """[bold yellow]PyNeRF[/bold yellow] -For more information visit https://docs.nerf.studio/nerfology/methods/pynerf.html - -To enable PyNeRF, you must install it first by running: - [grey]pip install git+https://github.com/hturki/pynerf[/grey]""", - configurations=[ - ("pynerf", "PyNeRF with proposal network. The default parameters are suited for outdoor scenes."), - ( - "pynerf-synthetic", - "PyNeRF with proposal network. The default parameters are suited for synthetic scenes.", - ), - ( - "pynerf-occupancy-grid", - "PyNeRF with occupancy grid. The default parameters are suited for synthetic scenes.", - ), - ], - pip_package="git+https://github.com/hturki/pynerf", - ) -) - -# SeaThru-NeRF -external_methods.append( - ExternalMethod( - """[bold yellow]Seathru-NeRF[/bold yellow] -For more information visit https://docs.nerf.studio/nerfology/methods/seathru_nerf.html - -To enable Seathru-NeRF, you must install it first by running: - [grey]pip install git+https://github.com/AkerBP/seathru_nerf[/grey]""", - configurations=[ - ("seathru-nerf", "SeaThru-NeRF for underwater scenes."), - ("seathru-nerf-lite", "SeaThru-NeRF for underwater scenes (smaller networks and batches)."), - ], - pip_package="git+https://github.com/AkerBP/seathru_nerf", - ) -) - -# Zip-NeRF -external_methods.append( - ExternalMethod( - """[bold yellow]Zip-NeRF[/bold yellow] -For more information visit https://docs.nerf.studio/nerfology/methods/zipnerf.html - -To enable Zip-NeRF, you must install it first by running: - [grey]pip install git+https://github.com/SuLvXiangXin/zipnerf-pytorch#subdirectory=extensions/cuda - and pip install git+https://github.com/SuLvXiangXin/zipnerf-pytorch[/grey]""", - configurations=[ - ("zipnerf", "A pytorch implementation of 'Zip-NeRF: Anti-Aliased Grid-Based Neural Radiance Fields'") - ], - pip_package="pip install git+https://github.com/SuLvXiangXin/zipnerf-pytorch", - ) -) +# TODO: add UniSim +# external_methods.append( +# ExternalMethod( +# """[bold yellow]UniSim[/bold yellow] + +# To enable UniSim, you must install it first by running: +# [grey]pip install git+https://github.com/.../UniSim[/grey]""", +# configurations=[ +# ("unisim", "UniSim reproduction, as specified in the paper"), +# ("unisim-tweaked", "UniSim with tweaked hyperparameters"), +# ], +# pip_package="git+https://github.com/.../unisim", +# ) +# ) @dataclass diff --git a/nerfstudio/configs/method_configs.py b/nerfstudio/configs/method_configs.py index a7882399..9c6986fd 100644 --- a/nerfstudio/configs/method_configs.py +++ b/nerfstudio/configs/method_configs.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -19,68 +20,36 @@ from __future__ import annotations from collections import OrderedDict +from copy import deepcopy from typing import Dict, Union import tyro -from nerfstudio.cameras.camera_optimizers import CameraOptimizerConfig -from nerfstudio.configs.base_config import ViewerConfig +from nerfstudio.cameras.camera_optimizers import CameraOptimizerConfig, ScaledCameraOptimizerConfig +from nerfstudio.configs.base_config import LoggingConfig, ViewerConfig from nerfstudio.configs.external_methods import ExternalMethodDummyTrainerConfig, get_external_methods -from nerfstudio.data.datamanagers.base_datamanager import VanillaDataManager, VanillaDataManagerConfig +from nerfstudio.data.datamanagers.ad_datamanager import ADDataManagerConfig from nerfstudio.data.datamanagers.full_images_datamanager import FullImageDatamanagerConfig from nerfstudio.data.datamanagers.parallel_datamanager import ParallelDataManagerConfig -from nerfstudio.data.datamanagers.random_cameras_datamanager import RandomCamerasDataManagerConfig -from nerfstudio.data.dataparsers.blender_dataparser import BlenderDataParserConfig -from nerfstudio.data.dataparsers.dnerf_dataparser import DNeRFDataParserConfig -from nerfstudio.data.dataparsers.instant_ngp_dataparser import InstantNGPDataParserConfig -from nerfstudio.data.dataparsers.nerfstudio_dataparser import NerfstudioDataParserConfig -from nerfstudio.data.dataparsers.phototourism_dataparser import PhototourismDataParserConfig -from nerfstudio.data.dataparsers.sdfstudio_dataparser import SDFStudioDataParserConfig -from nerfstudio.data.dataparsers.sitcoms3d_dataparser import Sitcoms3DDataParserConfig -from nerfstudio.data.datasets.depth_dataset import DepthDataset -from nerfstudio.data.datasets.sdf_dataset import SDFDataset -from nerfstudio.data.datasets.semantic_dataset import SemanticDataset -from nerfstudio.data.pixel_samplers import PairPixelSamplerConfig -from nerfstudio.engine.optimizers import AdamOptimizerConfig, RAdamOptimizerConfig -from nerfstudio.engine.schedulers import ( - CosineDecaySchedulerConfig, - ExponentialDecaySchedulerConfig, - MultiStepSchedulerConfig, -) +from nerfstudio.data.dataparsers.ad_dataparser import ADDataParserConfig +from nerfstudio.engine.optimizers import AdamOptimizerConfig, AdamWOptimizerConfig, RAdamOptimizerConfig +from nerfstudio.engine.schedulers import ExponentialDecaySchedulerConfig from nerfstudio.engine.trainer import TrainerConfig -from nerfstudio.field_components.temporal_distortions import TemporalDistortionKind -from nerfstudio.fields.sdf_field import SDFFieldConfig -from nerfstudio.models.depth_nerfacto import DepthNerfactoModelConfig -from nerfstudio.models.generfacto import GenerfactoModelConfig -from nerfstudio.models.instant_ngp import InstantNGPModelConfig -from nerfstudio.models.mipnerf import MipNerfModel +from nerfstudio.models.lidar_nerfacto import LidarNerfactoModelConfig from nerfstudio.models.nerfacto import NerfactoModelConfig -from nerfstudio.models.neus import NeuSModelConfig -from nerfstudio.models.neus_facto import NeuSFactoModelConfig -from nerfstudio.models.semantic_nerfw import SemanticNerfWModelConfig +from nerfstudio.models.neurad import NeuRADModelConfig from nerfstudio.models.splatfacto import SplatfactoModelConfig -from nerfstudio.models.tensorf import TensoRFModelConfig -from nerfstudio.models.vanilla_nerf import NeRFModel, VanillaModelConfig +from nerfstudio.pipelines.ad_pipeline import ADPipelineConfig from nerfstudio.pipelines.base_pipeline import VanillaPipelineConfig -from nerfstudio.pipelines.dynamic_batch import DynamicBatchPipelineConfig from nerfstudio.plugins.registry import discover_methods method_configs: Dict[str, Union[TrainerConfig, ExternalMethodDummyTrainerConfig]] = {} descriptions = { - "nerfacto": "Recommended real-time model tuned for real captures. This model will be continually updated.", - "depth-nerfacto": "Nerfacto with depth supervision.", - "instant-ngp": "Implementation of Instant-NGP. Recommended real-time model for unbounded scenes.", - "instant-ngp-bounded": "Implementation of Instant-NGP. Recommended for bounded real and synthetic scenes", - "mipnerf": "High quality model for bounded scenes. (slow)", - "semantic-nerfw": "Predicts semantic segmentations and filters out transient objects.", - "vanilla-nerf": "Original NeRF model. (slow)", - "tensorf": "tensorf", - "dnerf": "Dynamic-NeRF model. (slow)", - "phototourism": "Uses the Phototourism data.", - "generfacto": "Generative Text to NeRF model", - "neus": "Implementation of NeuS. (slow)", - "neus-facto": "Implementation of NeuS-Facto. (slow)", + "nerfacto": "Nerfstudio's default model.", + "nerfacto-lidar": "Nerfacto with lidar supervision.", "splatfacto": "Gaussian Splatting model", + "neurad": "Continuously improving version of NeuRAD.", + "neurad-paper": "NeuRAD with settings matching the paper.", } method_configs["nerfacto"] = TrainerConfig( @@ -91,7 +60,7 @@ mixed_precision=True, pipeline=VanillaPipelineConfig( datamanager=ParallelDataManagerConfig( - dataparser=NerfstudioDataParserConfig(), + dataparser=ADDataParserConfig(), train_num_rays_per_batch=4096, eval_num_rays_per_batch=4096, ), @@ -127,7 +96,7 @@ mixed_precision=True, pipeline=VanillaPipelineConfig( datamanager=ParallelDataManagerConfig( - dataparser=NerfstudioDataParserConfig(), + dataparser=ADDataParserConfig(), train_num_rays_per_batch=8192, eval_num_rays_per_batch=4096, ), @@ -171,7 +140,7 @@ mixed_precision=True, pipeline=VanillaPipelineConfig( datamanager=ParallelDataManagerConfig( - dataparser=NerfstudioDataParserConfig(), + dataparser=ADDataParserConfig(), train_num_rays_per_batch=16384, eval_num_rays_per_batch=4096, ), @@ -211,21 +180,15 @@ vis="viewer", ) -method_configs["depth-nerfacto"] = TrainerConfig( - method_name="depth-nerfacto", +method_configs["nerfacto-lidar"] = TrainerConfig( + method_name="nerfacto-lidar", steps_per_eval_batch=500, steps_per_save=2000, max_num_iterations=30000, mixed_precision=True, - pipeline=VanillaPipelineConfig( - datamanager=VanillaDataManagerConfig( - _target=VanillaDataManager[DepthDataset], - pixel_sampler=PairPixelSamplerConfig(), - dataparser=NerfstudioDataParserConfig(), - train_num_rays_per_batch=4096, - eval_num_rays_per_batch=4096, - ), - model=DepthNerfactoModelConfig( + pipeline=ADPipelineConfig( + calc_fid_steps=(99999999,), + model=LidarNerfactoModelConfig( eval_num_rays_per_chunk=1 << 15, camera_optimizer=CameraOptimizerConfig(mode="SO3xR3"), ), @@ -239,352 +202,9 @@ "optimizer": AdamOptimizerConfig(lr=1e-2, eps=1e-15), "scheduler": None, }, - "camera_opt": { - "optimizer": AdamOptimizerConfig(lr=1e-3, eps=1e-15), - "scheduler": ExponentialDecaySchedulerConfig(lr_final=1e-4, max_steps=5000), - }, - }, - viewer=ViewerConfig(num_rays_per_chunk=1 << 15), - vis="viewer", -) - -method_configs["instant-ngp"] = TrainerConfig( - method_name="instant-ngp", - steps_per_eval_batch=500, - steps_per_save=2000, - max_num_iterations=30000, - mixed_precision=True, - pipeline=DynamicBatchPipelineConfig( - datamanager=VanillaDataManagerConfig( - dataparser=NerfstudioDataParserConfig(), - train_num_rays_per_batch=4096, - eval_num_rays_per_batch=4096, - ), - model=InstantNGPModelConfig(eval_num_rays_per_chunk=8192), - ), - optimizers={ - "fields": { - "optimizer": AdamOptimizerConfig(lr=1e-2, eps=1e-15), - "scheduler": ExponentialDecaySchedulerConfig(lr_final=0.0001, max_steps=200000), - } - }, - viewer=ViewerConfig(num_rays_per_chunk=1 << 12), - vis="viewer", -) - -method_configs["instant-ngp-bounded"] = TrainerConfig( - method_name="instant-ngp-bounded", - steps_per_eval_batch=500, - steps_per_save=2000, - max_num_iterations=30000, - mixed_precision=True, - pipeline=DynamicBatchPipelineConfig( - datamanager=VanillaDataManagerConfig(dataparser=InstantNGPDataParserConfig(), train_num_rays_per_batch=8192), - model=InstantNGPModelConfig( - eval_num_rays_per_chunk=8192, - grid_levels=1, - alpha_thre=0.0, - cone_angle=0.0, - disable_scene_contraction=True, - near_plane=0.01, - background_color="black", - ), - ), - optimizers={ - "fields": { - "optimizer": AdamOptimizerConfig(lr=1e-2, eps=1e-15), - "scheduler": ExponentialDecaySchedulerConfig(lr_final=0.0001, max_steps=200000), - } - }, - viewer=ViewerConfig(num_rays_per_chunk=1 << 12), - vis="viewer", -) -# -# -method_configs["mipnerf"] = TrainerConfig( - method_name="mipnerf", - pipeline=VanillaPipelineConfig( - datamanager=ParallelDataManagerConfig(dataparser=NerfstudioDataParserConfig(), train_num_rays_per_batch=1024), - model=VanillaModelConfig( - _target=MipNerfModel, - loss_coefficients={"rgb_loss_coarse": 0.1, "rgb_loss_fine": 1.0}, - num_coarse_samples=128, - num_importance_samples=128, - eval_num_rays_per_chunk=1024, - ), - ), - optimizers={ - "fields": { - "optimizer": RAdamOptimizerConfig(lr=5e-4, eps=1e-08), + "cam_opt": { + "optimizer": AdamOptimizerConfig(lr=6e-4, eps=1e-15), "scheduler": None, - } - }, -) - -method_configs["semantic-nerfw"] = TrainerConfig( - method_name="semantic-nerfw", - steps_per_eval_batch=500, - steps_per_save=2000, - max_num_iterations=30000, - mixed_precision=True, - pipeline=VanillaPipelineConfig( - datamanager=VanillaDataManagerConfig( - _target=VanillaDataManager[SemanticDataset], - dataparser=Sitcoms3DDataParserConfig(), - train_num_rays_per_batch=4096, - eval_num_rays_per_batch=8192, - ), - model=SemanticNerfWModelConfig(eval_num_rays_per_chunk=1 << 16), - ), - optimizers={ - "proposal_networks": { - "optimizer": AdamOptimizerConfig(lr=1e-2, eps=1e-15), - "scheduler": None, - }, - "fields": { - "optimizer": AdamOptimizerConfig(lr=1e-2, eps=1e-15), - "scheduler": None, - }, - }, - viewer=ViewerConfig(num_rays_per_chunk=1 << 16), - vis="viewer", -) - -method_configs["vanilla-nerf"] = TrainerConfig( - method_name="vanilla-nerf", - pipeline=VanillaPipelineConfig( - datamanager=VanillaDataManagerConfig( - dataparser=BlenderDataParserConfig(), - ), - model=VanillaModelConfig(_target=NeRFModel), - ), - optimizers={ - "fields": { - "optimizer": RAdamOptimizerConfig(lr=5e-4, eps=1e-08), - "scheduler": None, - }, - "temporal_distortion": { - "optimizer": RAdamOptimizerConfig(lr=5e-4, eps=1e-08), - "scheduler": None, - }, - }, -) - -method_configs["tensorf"] = TrainerConfig( - method_name="tensorf", - steps_per_eval_batch=500, - steps_per_save=2000, - max_num_iterations=30000, - mixed_precision=False, - pipeline=VanillaPipelineConfig( - datamanager=ParallelDataManagerConfig( - dataparser=BlenderDataParserConfig(), - train_num_rays_per_batch=4096, - eval_num_rays_per_batch=4096, - ), - model=TensoRFModelConfig( - regularization="tv", - camera_optimizer=CameraOptimizerConfig(mode="off"), - ), - ), - optimizers={ - "fields": { - "optimizer": AdamOptimizerConfig(lr=0.001), - "scheduler": ExponentialDecaySchedulerConfig(lr_final=0.0001, max_steps=30000), - }, - "encodings": { - "optimizer": AdamOptimizerConfig(lr=0.02), - "scheduler": ExponentialDecaySchedulerConfig(lr_final=0.002, max_steps=30000), - }, - "camera_opt": { - "optimizer": AdamOptimizerConfig(lr=1e-4, eps=1e-15), - "scheduler": ExponentialDecaySchedulerConfig(lr_final=1e-5, max_steps=5000), - }, - }, - viewer=ViewerConfig(num_rays_per_chunk=1 << 15), - vis="viewer", -) - -method_configs["dnerf"] = TrainerConfig( - method_name="dnerf", - pipeline=VanillaPipelineConfig( - datamanager=VanillaDataManagerConfig(dataparser=DNeRFDataParserConfig()), - model=VanillaModelConfig( - _target=NeRFModel, - enable_temporal_distortion=True, - temporal_distortion_params={"kind": TemporalDistortionKind.DNERF}, - ), - ), - optimizers={ - "fields": { - "optimizer": RAdamOptimizerConfig(lr=5e-4, eps=1e-08), - "scheduler": None, - }, - "temporal_distortion": { - "optimizer": RAdamOptimizerConfig(lr=5e-4, eps=1e-08), - "scheduler": None, - }, - }, -) - -method_configs["phototourism"] = TrainerConfig( - method_name="phototourism", - steps_per_eval_batch=500, - steps_per_save=2000, - max_num_iterations=30000, - mixed_precision=True, - pipeline=VanillaPipelineConfig( - datamanager=VanillaDataManagerConfig( - dataparser=PhototourismDataParserConfig(), # NOTE: one of the only differences with nerfacto - train_num_rays_per_batch=4096, - eval_num_rays_per_batch=4096, - # Large dataset, so using prior values from VariableResDataManager. - train_num_images_to_sample_from=40, - train_num_times_to_repeat_images=100, - eval_num_images_to_sample_from=40, - eval_num_times_to_repeat_images=100, - ), - model=NerfactoModelConfig( - eval_num_rays_per_chunk=1 << 15, - camera_optimizer=CameraOptimizerConfig(mode="SO3xR3"), - ), - ), - optimizers={ - "proposal_networks": { - "optimizer": AdamOptimizerConfig(lr=1e-2, eps=1e-15), - "scheduler": None, - }, - "fields": { - "optimizer": AdamOptimizerConfig(lr=1e-2, eps=1e-15), - "scheduler": None, - }, - "camera_opt": { - "optimizer": AdamOptimizerConfig(lr=1e-3, eps=1e-15), - "scheduler": ExponentialDecaySchedulerConfig(lr_final=1e-4, max_steps=5000), - }, - }, - viewer=ViewerConfig(num_rays_per_chunk=1 << 15), - vis="viewer", -) - -method_configs["generfacto"] = TrainerConfig( - method_name="generfacto", - experiment_name="", - steps_per_eval_batch=50, - steps_per_eval_image=50, - steps_per_save=200, - max_num_iterations=30000, - mixed_precision=True, - pipeline=VanillaPipelineConfig( - datamanager=RandomCamerasDataManagerConfig( - horizontal_rotation_warmup=3000, - ), - model=GenerfactoModelConfig( - eval_num_rays_per_chunk=1 << 15, - distortion_loss_mult=1.0, - interlevel_loss_mult=100.0, - max_res=256, - sphere_collider=True, - initialize_density=True, - taper_range=(0, 2000), - random_background=True, - proposal_warmup=2000, - proposal_update_every=0, - proposal_weights_anneal_max_num_iters=2000, - start_lambertian_training=500, - start_normals_training=2000, - opacity_loss_mult=0.001, - positional_prompting="discrete", - guidance_scale=25, - ), - ), - optimizers={ - "proposal_networks": { - "optimizer": AdamOptimizerConfig(lr=1e-3, eps=1e-15), - "scheduler": None, - }, - "fields": { - "optimizer": AdamOptimizerConfig(lr=5e-4, eps=1e-15), - "scheduler": None, - }, - }, - viewer=ViewerConfig(), - vis="viewer", -) - -method_configs["neus"] = TrainerConfig( - method_name="neus", - steps_per_eval_image=500, - steps_per_eval_batch=5000, - steps_per_save=20000, - steps_per_eval_all_images=1000000, # set to a very large number so we don't eval with all images - max_num_iterations=100000, - mixed_precision=False, - pipeline=VanillaPipelineConfig( - datamanager=VanillaDataManagerConfig( - _target=VanillaDataManager[SDFDataset], - dataparser=SDFStudioDataParserConfig(), - train_num_rays_per_batch=1024, - eval_num_rays_per_batch=1024, - ), - model=NeuSModelConfig(eval_num_rays_per_chunk=1024), - ), - optimizers={ - "fields": { - "optimizer": AdamOptimizerConfig(lr=5e-4, eps=1e-15), - "scheduler": CosineDecaySchedulerConfig(warm_up_end=5000, learning_rate_alpha=0.05, max_steps=300000), - }, - "field_background": { - "optimizer": AdamOptimizerConfig(lr=5e-4, eps=1e-15), - "scheduler": CosineDecaySchedulerConfig(warm_up_end=5000, learning_rate_alpha=0.05, max_steps=300000), - }, - }, - viewer=ViewerConfig(num_rays_per_chunk=1 << 15), - vis="viewer", -) - -method_configs["neus-facto"] = TrainerConfig( - method_name="neus-facto", - steps_per_eval_image=5000, - steps_per_eval_batch=5000, - steps_per_save=2000, - steps_per_eval_all_images=1000000, # set to a very large model so we don't eval with all images - max_num_iterations=20001, - mixed_precision=False, - pipeline=VanillaPipelineConfig( - datamanager=VanillaDataManagerConfig( - _target=VanillaDataManager[SDFDataset], - dataparser=SDFStudioDataParserConfig(), - train_num_rays_per_batch=2048, - eval_num_rays_per_batch=2048, - ), - model=NeuSFactoModelConfig( - # proposal network allows for significantly smaller sdf/color network - sdf_field=SDFFieldConfig( - use_grid_feature=True, - num_layers=2, - num_layers_color=2, - hidden_dim=256, - bias=0.5, - beta_init=0.8, - use_appearance_embedding=False, - ), - background_model="none", - eval_num_rays_per_chunk=2048, - ), - ), - optimizers={ - "proposal_networks": { - "optimizer": AdamOptimizerConfig(lr=1e-2, eps=1e-15), - "scheduler": MultiStepSchedulerConfig(max_steps=20001, milestones=(10000, 1500, 18000)), - }, - "fields": { - "optimizer": AdamOptimizerConfig(lr=5e-4, eps=1e-15), - "scheduler": CosineDecaySchedulerConfig(warm_up_end=500, learning_rate_alpha=0.05, max_steps=20001), - }, - "field_background": { - "optimizer": AdamOptimizerConfig(lr=5e-4, eps=1e-15), - "scheduler": CosineDecaySchedulerConfig(warm_up_end=500, learning_rate_alpha=0.05, max_steps=20001), }, }, viewer=ViewerConfig(num_rays_per_chunk=1 << 15), @@ -601,7 +221,7 @@ mixed_precision=False, pipeline=VanillaPipelineConfig( datamanager=FullImageDatamanagerConfig( - dataparser=NerfstudioDataParserConfig(load_3D_points=True), + dataparser=ADDataParserConfig(), # load_3D_points=True), cache_images_type="uint8", ), model=SplatfactoModelConfig(), @@ -650,7 +270,7 @@ mixed_precision=False, pipeline=VanillaPipelineConfig( datamanager=FullImageDatamanagerConfig( - dataparser=NerfstudioDataParserConfig(load_3D_points=True), + dataparser=ADDataParserConfig(), # load_3D_points=True), cache_images_type="uint8", ), model=SplatfactoModelConfig( @@ -692,6 +312,109 @@ vis="viewer", ) +method_configs["neurad"] = TrainerConfig( + method_name="neurad", + steps_per_eval_batch=500, + steps_per_eval_all_images=5000, + steps_per_save=2000, + max_num_iterations=20001, + mixed_precision=True, + pipeline=ADPipelineConfig( + calc_fid_steps=(99999999,), + datamanager=ADDataManagerConfig(dataparser=ADDataParserConfig(add_missing_points=True)), + model=NeuRADModelConfig( + eval_num_rays_per_chunk=1 << 15, + camera_optimizer=CameraOptimizerConfig(mode="off"), # SO3xR3 + ), + ), + optimizers={ + "trajectory_opt": { + "optimizer": AdamOptimizerConfig(lr=1e-3, eps=1e-15), + "scheduler": ExponentialDecaySchedulerConfig(lr_final=1e-4, max_steps=20001, warmup_steps=2500), + }, + "cnn": { + "optimizer": AdamWOptimizerConfig(lr=1e-3, eps=1e-15, weight_decay=1e-6), + "scheduler": ExponentialDecaySchedulerConfig(lr_final=1e-4, max_steps=20001, warmup_steps=2500), + }, + "fields": { + "optimizer": AdamWOptimizerConfig(lr=1e-2, eps=1e-15, weight_decay=1e-7), + "scheduler": ExponentialDecaySchedulerConfig(lr_final=1e-3, max_steps=20001, warmup_steps=500), + }, + "hashgrids": { + "optimizer": AdamOptimizerConfig(lr=1e-2, eps=1e-15), + "scheduler": ExponentialDecaySchedulerConfig(lr_final=1e-3, max_steps=20001, warmup_steps=500), + }, + "camera_opt": { + "optimizer": AdamOptimizerConfig(lr=1e-4, eps=1e-15), + "scheduler": ExponentialDecaySchedulerConfig(lr_final=1e-5, max_steps=20001, warmup_steps=2500), + }, + }, + viewer=ViewerConfig(num_rays_per_chunk=1 << 15), + vis="viewer", + logging=LoggingConfig(steps_per_log=100), +) + +# With scaled camera optimizer (tuned for nuscenes) +method_configs["neurad-scaleopt"] = deepcopy(method_configs["neurad"]) +method_configs["neurad-scaleopt"].method_name = "neurad-scaleopt" +method_configs["neurad-scaleopt"].pipeline.model.camera_optimizer = ScaledCameraOptimizerConfig( + weights=(1.0, 1.0, 0.01, 0.01, 0.01, 1.0), # xrot, yrot, zrot, xtrans, ytrans, ztrans + trans_l2_penalty=(1e-2, 1e-2, 1e-3), # x, y, z +) + + +def _scaled_neurad_training(config: TrainerConfig, scale: float, newname: str) -> TrainerConfig: + config = deepcopy(config) + config.method_name = newname + config.max_num_iterations = int((config.max_num_iterations - 1) * scale + 1) + config.steps_per_eval_batch = int(config.steps_per_eval_batch * scale) + config.steps_per_eval_image = int(config.steps_per_eval_image * scale) + config.steps_per_eval_all_images = int(config.steps_per_eval_all_images * scale) + config.steps_per_save = int(config.steps_per_save * scale) + config.pipeline.calc_fid_steps = tuple(int(scale * s) for s in config.pipeline.calc_fid_steps) + for optimizer in config.optimizers.values(): + optimizer["scheduler"].max_steps = int(optimizer["scheduler"].max_steps * scale) + optimizer["scheduler"].warmup_steps = int(optimizer["scheduler"].warmup_steps * scale) + return config + + +# Bigger, better, longer, stronger +method_configs["neurader"] = _scaled_neurad_training(method_configs["neurad"], 2.5, "neurader") +method_configs["neurader"].method_name = "neurader" +for optimizer in method_configs["neurader"].optimizers.values(): + optimizer["optimizer"].lr *= 0.5 + optimizer["scheduler"].lr_final *= 0.5 +model: NeuRADModelConfig = method_configs["neurader"].pipeline.model +for field in (model.field, model.sampling.proposal_field_1, model.sampling.proposal_field_2): + field.grid.static.max_res *= 2 + field.grid.static.base_res *= 2 + field.grid.static.log2_hashmap_size += 1 + field.grid.actor.log2_hashmap_size += 1 + +method_configs["neurader-scaleopt"] = deepcopy(method_configs["neurader"]) +method_configs["neurader-scaleopt"].method_name = "neurader-scaleopt" +method_configs["neurader-scaleopt"].pipeline.model.camera_optimizer = ScaledCameraOptimizerConfig( + weights=(1.0, 1.0, 0.01, 0.01, 0.01, 1.0) # xrot, yrot, -zrot-, -xtrans-, -ytrans-, ztrans +) + +# Even longer training +method_configs["neuradest"] = _scaled_neurad_training(method_configs["neurader"], 3, "neuradest") +method_configs["neuradest-scaleopt"] = _scaled_neurad_training( + method_configs["neurader-scaleopt"], 3, "neuradest-scaleopt" +) + +# Configurations matching the paper (disable temporal appearance and actor flip) +method_configs["neurad-paper"] = deepcopy(method_configs["neurad"]) +method_configs["neurad-paper"].method_name = "neurad-paper" +method_configs["neurad-paper"].pipeline.model.use_temporal_appearance = False # type: ignore +for f in method_configs["neurad-paper"].pipeline.model.fields: # type: ignore + f.flip_prob = 0.0 +method_configs["neurad-2x-paper"] = deepcopy(method_configs["neurader"]) +method_configs["neurad-2x-paper"].method_name = "neurad-paper" +method_configs["neurad-2x-paper"].pipeline.model.use_temporal_appearance = False # type: ignore +for f in method_configs["neurad-paper"].pipeline.model.fields: # type: ignore + f.flip_prob = 0.0 + def merge_methods(methods, method_descriptions, new_methods, new_descriptions, overwrite=True): """Merge new methods and descriptions into existing methods and descriptions. diff --git a/nerfstudio/data/datamanagers/ad_datamanager.py b/nerfstudio/data/datamanagers/ad_datamanager.py new file mode 100644 index 00000000..39fe6985 --- /dev/null +++ b/nerfstudio/data/datamanagers/ad_datamanager.py @@ -0,0 +1,125 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# +# 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 __future__ import annotations + +from dataclasses import dataclass, field +from typing import Type + +import torch +from rich.console import Console + +from nerfstudio.cameras.lidars import transform_points +from nerfstudio.data.datamanagers.image_lidar_datamanager import ImageLidarDataManager, ImageLidarDataManagerConfig +from nerfstudio.data.datasets.base_dataset import InputDataset +from nerfstudio.data.pixel_samplers import ScaledPatchSamplerConfig +from nerfstudio.data.utils.data_utils import remove_dynamic_points + +CONSOLE = Console(width=120) + + +@dataclass +class ADDataManagerConfig(ImageLidarDataManagerConfig): + """A basic data manager""" + + _target: Type = field(default_factory=lambda: ADDataManager) + """Target class to instantiate.""" + train_num_lidar_rays_per_batch: int = 16384 + """Number of lidar rays per batch to use per training iteration.""" + train_num_rays_per_batch: int = 40960 + """Number of camera rays per batch to use per training iteration (equals 40 32x32 patches).""" + eval_num_lidar_rays_per_batch: int = 8192 + """Number of lidar rays per batch to use per eval iteration.""" + eval_num_rays_per_batch: int = 40960 + """Number of camera rays per batch to use per eval iteration (equals 40 32x32 patches).""" + downsample_factor: float = 1 + """Downsample factor for the lidar. If <1, downsample will be used.""" + image_divisible_by: int = 1 + """If >1, images will be cropped to be divisible by this number.""" + pixel_sampler: ScaledPatchSamplerConfig = field(default_factory=ScaledPatchSamplerConfig) + """AD models default to path-based pixel sampler.""" + + +class ADDataManager(ImageLidarDataManager): + """This extends the VanillaDataManager to support lidar data. + + Args: + config: the DataManagerConfig used to instantiate class + """ + + config: ADDataManagerConfig + + def create_eval_dataset(self) -> InputDataset: + dataset = super().create_eval_dataset() + # Maybe crop images + cams = dataset.cameras + for width in cams.width.unique().tolist(): + width_crop = _find_smallest_crop(width, self.config.image_divisible_by) + cams.width[cams.width == width] = width - width_crop + for height in cams.height.unique().tolist(): + height_crop = _find_smallest_crop(height, self.config.image_divisible_by) + cams.height[cams.height == height] = height - height_crop + return dataset + + def change_patch_sampler(self, patch_scale: int, patch_size: int): + """Change the camera sample to sample rays in NxN patches.""" + if self.config.train_num_rays_per_batch % (patch_size**2) != 0: + CONSOLE.print("[bold yellow]WARNING: num_rays should be divisible by patch_size^2.") + if patch_scale == self.eval_pixel_sampler.patch_scale and patch_size == self.eval_pixel_sampler.patch_size: + return + + # Change train + for func_queue in self.func_queues: + func_queue.put((_worker_change_patch_sampler, (patch_scale, patch_size), {})) + self.clear_data_queue() # remove any old, invalid, batch + + # Change eval + self.eval_pixel_sampler.patch_scale = patch_scale + self.eval_pixel_sampler.patch_size = patch_size + if patch_scale % 2 == 0 and self.eval_ray_generator.image_coords[0, 0, 0] == 0.5: + self.eval_ray_generator.image_coords = self.eval_ray_generator.image_coords - 0.5 + + def get_accumulated_lidar_points(self, remove_dynamic: bool = False): + """Get the lidar points for the current batch.""" + lidars = self.train_lidar_dataset.lidars + point_clouds = self.train_lidar_dataset.point_clouds + if remove_dynamic: + assert "trajectories" in self.train_lidar_dataset.metadata, "No trajectories found in dataset." + + point_clouds = remove_dynamic_points( + point_clouds, + lidars.lidar_to_worlds, + lidars.times, + self.train_lidar_dataset.metadata["trajectories"], + ) + + return torch.cat( + [transform_points(pc[:, :3], l2w) for pc, l2w in zip(point_clouds, lidars.lidar_to_worlds)], dim=0 + ) + + +def _find_smallest_crop(dim: int, divider: int): + crop_amount = 0 + while dim % divider: + crop_amount += 1 + dim -= 1 + return crop_amount + + +def _worker_change_patch_sampler(worker, patch_scale, patch_size): + worker.pixel_sampler.patch_scale = patch_scale + worker.pixel_sampler.patch_size = patch_size + # Ensure ray is generated from patch center (for odd scales center of pixel == center of patch) + if patch_scale % 2 == 0 and worker.ray_generator.image_coords[0, 0, 0] == 0.5: + worker.ray_generator.image_coords -= 0.5 diff --git a/nerfstudio/data/datamanagers/base_datamanager.py b/nerfstudio/data/datamanagers/base_datamanager.py index cff03607..2fecdf27 100644 --- a/nerfstudio/data/datamanagers/base_datamanager.py +++ b/nerfstudio/data/datamanagers/base_datamanager.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -52,8 +53,7 @@ from nerfstudio.cameras.rays import RayBundle from nerfstudio.configs.base_config import InstantiateConfig from nerfstudio.configs.dataparser_configs import AnnotatedDataParserUnion -from nerfstudio.data.dataparsers.base_dataparser import DataparserOutputs -from nerfstudio.data.dataparsers.blender_dataparser import BlenderDataParserConfig +from nerfstudio.data.dataparsers.base_dataparser import DataParserConfig, DataparserOutputs from nerfstudio.data.datasets.base_dataset import InputDataset from nerfstudio.data.pixel_samplers import PatchPixelSamplerConfig, PixelSampler, PixelSamplerConfig from nerfstudio.data.utils.dataloaders import CacheDataloader, FixedIndicesEvalDataloader, RandIndicesEvalDataloader @@ -177,9 +177,9 @@ def __init__(self): super().__init__() self.train_count = 0 self.eval_count = 0 - if self.train_dataset and self.test_mode != "inference": + if self.train_dataset is not None and self.test_mode != "inference": self.setup_train() - if self.eval_dataset and self.test_mode != "inference": + if self.eval_dataset is not None and self.test_mode != "inference": self.setup_eval() def forward(self): @@ -302,6 +302,11 @@ def get_param_groups(self) -> Dict[str, List[Parameter]]: """ return {} + @abstractmethod + def get_num_train_data(self) -> int: + """Get the number of training datapoints (e.g. images).""" + return 0 + @dataclass class VanillaDataManagerConfig(DataManagerConfig): @@ -309,7 +314,7 @@ class VanillaDataManagerConfig(DataManagerConfig): _target: Type = field(default_factory=lambda: VanillaDataManager) """Target class to instantiate.""" - dataparser: AnnotatedDataParserUnion = field(default_factory=BlenderDataParserConfig) + dataparser: AnnotatedDataParserUnion = field(default_factory=DataParserConfig) """Specifies the dataparser used to unpack the data.""" train_num_rays_per_batch: int = 1024 """Number of rays per batch to use per training iteration.""" @@ -517,12 +522,12 @@ def setup_eval(self): self.eval_ray_generator = RayGenerator(self.eval_dataset.cameras.to(self.device)) # for loading full images self.fixed_indices_eval_dataloader = FixedIndicesEvalDataloader( - input_dataset=self.eval_dataset, + dataset=self.eval_dataset, device=self.device, num_workers=self.world_size * 4, ) self.eval_dataloader = RandIndicesEvalDataloader( - input_dataset=self.eval_dataset, + dataset=self.eval_dataset, device=self.device, num_workers=self.world_size * 4, ) @@ -573,4 +578,10 @@ def get_param_groups(self) -> Dict[str, List[Parameter]]: Returns: A list of dictionaries containing the data manager's param groups. """ - return {} + param_groups = {} + + return param_groups + + def get_num_train_data(self) -> int: + """Get the number of training datapoints (e.g. images).""" + return len(self.train_dataset.cameras) diff --git a/nerfstudio/data/datamanagers/full_images_datamanager.py b/nerfstudio/data/datamanagers/full_images_datamanager.py index 47925acc..a4b923d3 100644 --- a/nerfstudio/data/datamanagers/full_images_datamanager.py +++ b/nerfstudio/data/datamanagers/full_images_datamanager.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 The Nerfstudio Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -39,8 +40,7 @@ from nerfstudio.cameras.cameras import Cameras, CameraType from nerfstudio.configs.dataparser_configs import AnnotatedDataParserUnion from nerfstudio.data.datamanagers.base_datamanager import DataManager, DataManagerConfig, TDataset -from nerfstudio.data.dataparsers.base_dataparser import DataparserOutputs -from nerfstudio.data.dataparsers.nerfstudio_dataparser import NerfstudioDataParserConfig +from nerfstudio.data.dataparsers.base_dataparser import DataParserConfig, DataparserOutputs from nerfstudio.data.datasets.base_dataset import InputDataset from nerfstudio.utils.misc import get_orig_class from nerfstudio.utils.rich_utils import CONSOLE @@ -49,7 +49,7 @@ @dataclass class FullImageDatamanagerConfig(DataManagerConfig): _target: Type = field(default_factory=lambda: FullImageDatamanager) - dataparser: AnnotatedDataParserUnion = field(default_factory=NerfstudioDataParserConfig) + dataparser: AnnotatedDataParserUnion = field(default_factory=DataParserConfig) camera_res_scale_factor: float = 1.0 """The scale factor for scaling spatial data such as images, mask, semantics along with relevant information about camera intrinsics diff --git a/nerfstudio/data/datamanagers/image_lidar_datamanager.py b/nerfstudio/data/datamanagers/image_lidar_datamanager.py new file mode 100644 index 00000000..3d01c231 --- /dev/null +++ b/nerfstudio/data/datamanagers/image_lidar_datamanager.py @@ -0,0 +1,423 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# +# 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. + +""" +Lidar Datamanager. +""" + +from __future__ import annotations + +import concurrent.futures +from dataclasses import dataclass, field +from typing import Any, Dict, List, Optional, Tuple, Type, Union + +import torch +import torch.multiprocessing as mp +from rich.progress import Console, track +from typing_extensions import Literal + +from nerfstudio.cameras.lidars import Lidars +from nerfstudio.cameras.rays import RayBundle +from nerfstudio.data.datamanagers.base_datamanager import TDataset +from nerfstudio.data.datamanagers.parallel_datamanager import ParallelDataManager, ParallelDataManagerConfig +from nerfstudio.data.dataparsers.base_dataparser import DataparserOutputs +from nerfstudio.data.datasets.base_dataset import InputDataset +from nerfstudio.data.datasets.lidar_dataset import LidarDataset +from nerfstudio.data.pixel_samplers import LidarPointSampler, LidarPointSamplerConfig, PixelSampler +from nerfstudio.data.utils.dataloaders import CacheDataloader, FixedIndicesEvalDataloader, RandIndicesEvalDataloader +from nerfstudio.data.utils.nerfstudio_collate import nerfstudio_collate +from nerfstudio.model_components.ray_generators import LidarRayGenerator, RayGenerator + +CONSOLE = Console(width=120) + + +def lidar_variable_res_collate(batch: List[Dict]) -> Dict: + """Default collate function for the cached dataloader. + Args: + batch: Batch of samples from the dataset. + Returns: + Collated batch. + """ + lidars = [] + for data in batch: + lidars.append(data.pop("lidar")) + new_batch: dict = nerfstudio_collate(batch) + new_batch["lidar"] = lidars + return new_batch + + +def lidar_packed_collate(batch: List[Dict]) -> Dict: + """Default collate function for the cached dataloader. + Args: + batch: Batch of samples from the dataset. + Returns: + Collated batch. + """ + lidars = [] + for i, data in enumerate(batch): + batch[i]["points_per_lidar"] = data["lidar"].shape[0] + lidars.append(data.pop("lidar")) + + new_batch: dict = nerfstudio_collate(batch) + new_batch["lidar"] = torch.cat(lidars, dim=0) + return new_batch + + +@dataclass +class ImageLidarDataManagerConfig(ParallelDataManagerConfig): + """A basic data manager""" + + _target: Type = field(default_factory=lambda: ImageLidarDataManager) + """Target class to instantiate.""" + num_processes: int = 8 + """Number of processes to use for train data loading. More than 1 doesn't result in that much better performance""" + queue_size: int = 8 + """Size of shared data queue containing generated ray bundles and batches.""" + train_num_lidar_rays_per_batch: int = 1024 + """Number of lidar rays per batch to use per training iteration.""" + eval_num_lidar_rays_per_batch: int = 1024 + """Number of lidar rays per batch to use per eval iteration.""" + downsample_factor: float = 1 + """Downsample factor for the lidar. If <1, downsample will be used.""" + max_thread_workers: Optional[int] = 1 + + +class ImageLidarDataProcessor(mp.Process): # type: ignore + """Parallel dataset batch processor. + + This class is responsible for generating ray bundles from an input dataset + in parallel python processes. + + Args: + out_queue: the output queue for storing the processed data + config: configuration object for the parallel data manager + dataparser_outputs: outputs from the dataparser + dataset: input dataset + pixel_sampler: The pixel sampler for sampling rays + ray_generator: The ray generator for generating rays + """ + + def __init__( + self, + out_queue: Any[mp.Queue], # type: ignore + func_queue: Any[mp.Queue], # type: ignore + config: ParallelDataManagerConfig, + dataparser_outputs: DataparserOutputs, + image_dataset: TDataset, + pixel_sampler: PixelSampler, + lidar_dataset: LidarDataset, + point_sampler: LidarPointSampler, + cached_images: Dict[str, torch.Tensor], + cached_points: Dict[str, torch.Tensor], + ): + super().__init__() + self.daemon = True + self.out_queue = out_queue + self.func_queue = func_queue + self.config = config + self.dataparser_outputs = dataparser_outputs + self.image_dataset = image_dataset + self.pixel_sampler = pixel_sampler + self.lidar_dataset = lidar_dataset + self.point_sampler = point_sampler + self.ray_generator = RayGenerator(self.image_dataset.cameras) + self.lidar_ray_generator = LidarRayGenerator(self.lidar_dataset.lidars) + self.cached_images = cached_images + self.cached_points = cached_points + + def run(self): + """Append out queue in parallel with ray bundles and batches.""" + while True: + while not self.func_queue.empty(): + func, args, kwargs = self.func_queue.get() + func(self, *args, **kwargs) + ray_bundle, batch = self.get_batch_and_ray_bundle() + if torch.cuda.is_available(): + ray_bundle = ray_bundle.pin_memory() + self.out_queue.put((ray_bundle, batch)) + + def get_batch_and_ray_bundle(self): + img_batch, img_ray_bundle = self.get_image_batch_and_ray_bundle() + lidar_batch, lidar_ray_bundle = self.get_lidar_batch_and_ray_bundle() + return _merge_img_lidar(img_ray_bundle, img_batch, lidar_ray_bundle, lidar_batch, len(self.image_dataset)) + + def get_image_batch_and_ray_bundle(self): + if not len(self.image_dataset.cameras): + return None, None + batch = self.pixel_sampler.sample(self.cached_images) + ray_indices = batch["indices"] + ray_bundle: RayBundle = self.ray_generator(ray_indices) + return batch, ray_bundle + + def get_lidar_batch_and_ray_bundle(self): + if not len(self.lidar_dataset.lidars): + return None, None + batch = self.point_sampler.sample(self.cached_points) + ray_indices = batch.pop("indices") + ray_bundle: RayBundle = self.lidar_ray_generator(ray_indices, points=batch["lidar"]) + return batch, ray_bundle + + +class ImageLidarDataManager(ParallelDataManager): + """This extends the VanillaDataManager to support lidar data. + + Args: + config: the DataManagerConfig used to instantiate class + """ + + config: ImageLidarDataManagerConfig + train_lidar_dataset: LidarDataset + eval_lidar_dataset: LidarDataset + train_point_sampler: Optional[LidarPointSampler] = None + eval_point_sampler: Optional[LidarPointSampler] = None + + def __init__( + self, + config: ImageLidarDataManagerConfig, + device: Union[torch.device, str] = "cpu", + test_mode: Literal["test", "val", "inference"] = "val", + world_size: int = 1, + local_rank: int = 0, + **kwargs, # pylint: disable=unused-argument + ): + self.use_mp = config.num_processes > 0 + super().__init__(config, device, test_mode, world_size, local_rank, **kwargs) + self.next_batch = None # for prefetching to gpu in parallel + + def create_train_dataset(self) -> InputDataset: + """Sets up the data loaders for training""" + self.train_lidar_dataset = LidarDataset( + dataparser_outputs=self.train_dataparser_outputs, + downsample_factor=self.config.downsample_factor, + ) + img_dataset = super().create_train_dataset() + return img_dataset + + def create_eval_dataset(self) -> InputDataset: + """Sets up the data loaders for evaluation""" + self.eval_lidar_dataset = LidarDataset( + dataparser_outputs=self.eval_dataparser_outputs, + downsample_factor=self.config.downsample_factor, + ) + img_dataset = super().create_eval_dataset() + return img_dataset + + def setup_train(self): + """Sets up the data loaders for training""" + assert self.train_dataset is not None + self.train_pixel_sampler = self._get_pixel_sampler(self.train_dataset, self.config.train_num_rays_per_batch) # type: ignore + self.train_point_sampler = LidarPointSamplerConfig().setup( + num_rays_per_batch=self.config.train_num_lidar_rays_per_batch + ) + self.train_lidar_ray_generator = LidarRayGenerator( + self.train_lidar_dataset.lidars, + ) + # Cache jointly to allow memory sharing between processes + cached_images = _cache_images(self.train_dataset, self.config.max_thread_workers, self.config.collate_fn) + cached_points = _cache_points(self.train_lidar_dataset, self.config.max_thread_workers, lidar_packed_collate) + self.data_queue = mp.Queue(maxsize=self.config.queue_size) if self.use_mp else None + # Create an individual queue for passing functions to each process + self.func_queues = [mp.Queue() for _ in range(max(self.config.num_processes, 1))] + self.data_procs = [ + ImageLidarDataProcessor( + out_queue=self.data_queue, + func_queue=func_queue, + config=self.config, + dataparser_outputs=self.train_dataparser_outputs, + image_dataset=self.train_dataset, + pixel_sampler=self.train_pixel_sampler, + lidar_dataset=self.train_lidar_dataset, + point_sampler=self.train_point_sampler, + cached_images=cached_images, + cached_points=cached_points, + ) + for func_queue in self.func_queues + ] + if self.use_mp: + for proc in self.data_procs: + proc.start() + print("Started processes") + + def setup_eval(self): + """Sets up the data loader for evaluation""" + if len(self.eval_dataset.cameras): + super().setup_eval() + else: + CONSOLE.print("Setting up lidar-only eval dataset...") + self.eval_camera_optimizer = None + if not len(self.eval_lidar_dataset.lidars): + CONSOLE.print("Not setting up lidar eval dataset...") + self.eval_lidar_optimizer = None + return + self.eval_lidar_dataloader = CacheDataloader( + self.eval_lidar_dataset, + num_images_to_sample_from=self.config.eval_num_images_to_sample_from, + num_times_to_repeat_images=self.config.eval_num_times_to_repeat_images, + device=self.device, + num_workers=self.world_size * 4, + pin_memory=True, + collate_fn=lidar_packed_collate, + ) + self.iter_eval_lidar_dataloader = iter(self.eval_lidar_dataloader) + self.eval_point_sampler = LidarPointSamplerConfig().setup( + num_rays_per_batch=self.config.eval_num_lidar_rays_per_batch + ) + self.eval_lidar_ray_generator = LidarRayGenerator( + self.eval_lidar_dataset.lidars.to(self.device), + ) + # for loading full images + self.fixed_indices_eval_lidar_dataloader = FixedIndicesEvalDataloader( + dataset=self.eval_lidar_dataset, + device=self.device, + num_workers=self.world_size * 4, + ) + self.rand_indices_eval_lidar_dataloader = RandIndicesEvalDataloader( + dataset=self.eval_lidar_dataset, + device=self.device, + num_workers=self.world_size * 4, + ) + + def next_train(self, step: int) -> Tuple[RayBundle, Dict]: + """Returns the next batch of data from the train dataloader.""" + self.train_count += 1 + ray_bundle, batch = self.next_batch if self.next_batch is not None else self._get_from_queue() + if self.use_mp: + self.next_batch = self._get_from_queue() # prefetch next batch + return ray_bundle, batch + + def _get_from_queue(self) -> Tuple[RayBundle, Dict]: + if self.use_mp: + ray_bundle, batch = self.data_queue.get() + else: + # Manually call the data processing function (not in parallel) + ray_bundle, batch = self.data_procs[0].get_batch_and_ray_bundle() + ray_bundle = ray_bundle.to(self.device, non_blocking=self.use_mp) + batch = {k: v.to(self.device, non_blocking=self.use_mp) for k, v in batch.items()} + return ray_bundle, batch + + def next_eval(self, step: int) -> Tuple[RayBundle, Dict]: + """Returns the next batch of data from the eval dataloader.""" + if len(self.eval_dataset.cameras): + img_ray_bundle, img_batch = super().next_eval(step) + else: + self.eval_count += 1 + img_ray_bundle, img_batch = None, None + if len(self.eval_lidar_dataset.lidars): + lidar_batch = next(self.iter_eval_lidar_dataloader) + lidar_batch = self.eval_point_sampler.sample(lidar_batch) + lidar_ray_bundle = self.eval_lidar_ray_generator(lidar_batch.pop("indices"), points=lidar_batch["lidar"]) + else: + lidar_ray_bundle, lidar_batch = None, None + return _merge_img_lidar( + img_ray_bundle, img_batch, lidar_ray_bundle, lidar_batch, len(self.eval_dataset.cameras) + ) + + def get_num_train_data(self) -> int: + """Get the number of training datapoints (images + lidar scans).""" + return len(self.train_dataset.cameras) + len(self.train_lidar_dataset.lidars) + + def next_eval_lidar(self, step: int) -> Tuple[Lidars, Dict]: + for lidar, batch in self.rand_indices_eval_lidar_dataloader: + assert lidar.shape[0] == 1 + assert isinstance(lidar, Lidars) + return lidar, batch + raise ValueError("No more eval images") + + def clear_data_queue(self): + """Clear everything in the queue + any potential batch in progress.""" + self.next_batch = None + if self.data_queue is None: + return + for _ in range(self.config.queue_size + 2 * self.config.num_processes): + self.data_queue.get() + + def __del__(self): + """Close the data queue when the object is deleted.""" + if self.use_mp: + super().__del__() + + +def _cache_images(image_dataset, workers, collate_fn): + """Caches all input images into a NxHxWx3 tensor.""" + indices = range(len(image_dataset)) + batch_list = [] + results = [] + with concurrent.futures.ThreadPoolExecutor(max_workers=workers) as executor: + for idx in indices: + res = executor.submit(image_dataset.__getitem__, idx) + results.append(res) + for res in track(results, description="Loading data batch", transient=False): + batch_list.append(res.result()) + return collate_fn(batch_list) + + +def _cache_points(lidar_dataset, workers, collate_fn): + """Caches all input images into a NxHxWx3 tensor.""" + indices = range(len(lidar_dataset)) + batch_list = [] + results = [] + with concurrent.futures.ThreadPoolExecutor(max_workers=workers) as executor: + for idx in indices: + res = executor.submit(lidar_dataset.__getitem__, idx) + results.append(res) + for res in track(results, description="Loading data batch", transient=False): + batch_list.append(res.result()) + return collate_fn(batch_list) + + +def _merge_img_lidar( + img_ray_bundle: Optional[RayBundle], + img_batch: Optional[Dict], + lidar_ray_bundle: Optional[RayBundle], + lidar_batch: Optional[Dict], + img_dataset_len: int, +) -> Tuple[RayBundle, Dict]: + """Helper function for merging img and lidar data.""" + if img_ray_bundle is None and lidar_ray_bundle is None: + raise ValueError("Need either img or lidar data (or both)") + + # process image + if img_ray_bundle is not None: + assert img_batch is not None + device = img_ray_bundle.origins.device + img_batch["is_lidar"] = torch.zeros((len(img_ray_bundle), 1), dtype=torch.bool, device=device) + img_batch["did_return"] = torch.ones((len(img_ray_bundle), 1), dtype=torch.bool, device=device) + img_ray_bundle.metadata["is_lidar"] = img_batch["is_lidar"] + img_batch["img_indices"] = img_batch.pop("indices") + img_ray_bundle.metadata["did_return"] = torch.ones((len(img_ray_bundle), 1), dtype=torch.bool, device=device) + + # process lidar + if lidar_ray_bundle is not None: + assert lidar_batch is not None + lidar_ray_bundle.camera_indices = lidar_ray_bundle.camera_indices + img_dataset_len + lidar_batch["is_lidar"] = lidar_ray_bundle.metadata["is_lidar"] + lidar_batch["distance"] = lidar_ray_bundle.metadata["directions_norm"] + lidar_batch["did_return"] = lidar_ray_bundle.metadata["did_return"] + + # merge + if img_ray_bundle is None or img_batch is None: + ray_bundle, batch = lidar_ray_bundle, lidar_batch + elif lidar_ray_bundle is None or lidar_batch is None: + ray_bundle, batch = img_ray_bundle, img_batch + else: + ray_bundle = img_ray_bundle.cat(lidar_ray_bundle, dim=0) + overlapping_keys = set(img_batch.keys()).intersection(set(lidar_batch.keys())) - {"is_lidar", "did_return"} + assert not overlapping_keys, f"Overlapping keys in batch: {overlapping_keys}" + batch = { + **img_batch, + **lidar_batch, + "is_lidar": torch.cat([img_batch["is_lidar"], lidar_batch["is_lidar"]]), + "did_return": torch.cat([img_batch["did_return"], lidar_batch["did_return"]]), + } + return ray_bundle, batch diff --git a/nerfstudio/data/datamanagers/parallel_datamanager.py b/nerfstudio/data/datamanagers/parallel_datamanager.py index e7521bec..9a3f6f60 100644 --- a/nerfstudio/data/datamanagers/parallel_datamanager.py +++ b/nerfstudio/data/datamanagers/parallel_datamanager.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -212,7 +213,7 @@ def create_train_dataset(self) -> TDataset: def create_eval_dataset(self) -> TDataset: """Sets up the data loaders for evaluation.""" return self.dataset_type( - dataparser_outputs=self.dataparser.get_dataparser_outputs(split=self.test_split), + dataparser_outputs=self.eval_dataparser_outputs, scale_factor=self.config.camera_res_scale_factor, ) @@ -274,12 +275,12 @@ def setup_eval(self): self.eval_ray_generator = RayGenerator(self.eval_dataset.cameras.to(self.device)) # for loading full images self.fixed_indices_eval_dataloader = FixedIndicesEvalDataloader( - input_dataset=self.eval_dataset, + dataset=self.eval_dataset, device=self.device, num_workers=self.world_size * 4, ) self.eval_dataloader = RandIndicesEvalDataloader( - input_dataset=self.eval_dataset, + dataset=self.eval_dataset, device=self.device, num_workers=self.world_size * 4, ) @@ -332,6 +333,10 @@ def get_param_groups(self) -> Dict[str, List[Parameter]]: """ return {} + def get_num_train_data(self) -> int: + """Get the number of training datapoints (e.g. images).""" + return len(self.train_dataset.cameras) + def __del__(self): """Clean up the parallel data processes.""" if hasattr(self, "data_procs"): diff --git a/nerfstudio/data/datamanagers/random_cameras_datamanager.py b/nerfstudio/data/datamanagers/random_cameras_datamanager.py index 6c638ec0..f4bc232d 100644 --- a/nerfstudio/data/datamanagers/random_cameras_datamanager.py +++ b/nerfstudio/data/datamanagers/random_cameras_datamanager.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 The Nerfstudio Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -235,7 +236,7 @@ def __init__( self.eval_dataset = TrivialDataset(cameras) self.eval_dataloader = RandIndicesEvalDataloader( - input_dataset=self.eval_dataset, + dataset=self.eval_dataset, device=self.device, num_workers=self.world_size * 4, ) diff --git a/nerfstudio/data/dataparsers/ad_dataparser.py b/nerfstudio/data/dataparsers/ad_dataparser.py new file mode 100644 index 00000000..94bce83f --- /dev/null +++ b/nerfstudio/data/dataparsers/ad_dataparser.py @@ -0,0 +1,699 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# +# 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. + +"""Base data parser for Autonomous Driving datasets.""" + +import math +from dataclasses import dataclass, field +from enum import Enum +from pathlib import Path +from typing import Dict, List, Literal, Optional, Tuple, Type, TypeVar, Union + +import numpy as np +import torch +from PIL import Image +from torch import Tensor + +from nerfstudio.cameras.cameras import Cameras +from nerfstudio.cameras.lidars import Lidars, transform_points +from nerfstudio.data.dataparsers.base_dataparser import DataParser, DataParserConfig, DataparserOutputs +from nerfstudio.data.scene_box import SceneBox +from nerfstudio.utils import poses as pose_utils +from nerfstudio.utils.poses import interpolate_trajectories, inverse, multiply as pose_multiply, to4x4 + +SensorData = TypeVar("SensorData", Cameras, Lidars) + + +class SplitTypes(Enum): + """Split types for train/eval.""" + + LINSPACE = "linspace" + NUSCENES_SAMPLES = "nuscenes_samples" + + +OPENCV_TO_NERFSTUDIO = np.array( + [ + [1, 0, 0], + [0, -1, 0], + [0, 0, -1], + ] +) +DUMMY_DISTANCE_VALUE = 2e3 # meters, used for missing points + + +@dataclass +class ADDataParserConfig(DataParserConfig): + """AD (autonomous driving) dataset config.""" + + _target: Type = field(default_factory=lambda: ADDataParser) + """target class to instantiate""" + sequence: str = "001" + """Name of the sequence to load.""" + train_split_fraction: float = 0.5 + """The percent of images to use for training. The remaining images are for eval.""" + train_eval_split_type: SplitTypes = SplitTypes.LINSPACE + """The type of split to use for train/eval.""" + max_eval_frames: Optional[int] = None + """The maximum number of frames to use for eval. If None, use all eval frames.""" + dataset_start_fraction: float = 0.0 + """At what fraction of the dataset to start.""" + dataset_end_fraction: float = 1.0 + """At what fraction of the dataset to end.""" + scene_box_height = (-10, 30) + """The upper and lower height bounds for the scene box (m).""" + + cameras: Tuple[str, ...] = tuple() + """Which cameras to use.""" + lidars: Tuple[str, ...] = tuple() + """Which lidars to use.""" + min_lidar_dist: Tuple[float, float, float] = (1.0, 2.0, 2.0) + """Remove all points within this distance from lidar sensor.""" + radars: Tuple[str, ...] = tuple() + """Which radars to use.""" + + load_cuboids: bool = True + """Whether to load cuboid annotations.""" + include_deformable_actors: bool = False + """Whether to include deformable actors in the loaded trajectories (like pedestrians).""" + annotation_interval: float = 0.0 + """The time interval at which the sequence is annotated (s).""" + rolling_shutter_offsets: Tuple[float, float] = (0.0, 0.0) + """The time offset for the first and last line, relative to the image timestamp (seconds).""" + allow_per_point_times: bool = True + """Whether to allow per-point times (for sub-frame time correction).""" + + add_missing_points: bool = False + """Whether to add missing points (rays that did not return) to the point clouds.""" + lidar_elevation_mapping: Optional[Dict[str, Dict[int, float]]] = None + """Elevation mapping for each lidar.""" + skip_elevation_channels: Optional[Dict[str, Tuple[int, ...]]] = None + """Channels to skip when adding missing points.""" + lidar_azimuth_resolution: Optional[Dict[str, float]] = None + """Azimuth resolution for each lidar.""" + paint_points: bool = False + """Whether to paint the points in the point cloud.""" + + def __post_init__(self): + if type(self) == ADDataParserConfig: + return # only make the following checks for child classes + # Hack to allow settings empty tuple on command line + if len(self.cameras) == 1 and self.cameras[0].lower() == "none": + self.cameras = () + if len(self.lidars) == 1 and self.lidars[0].lower() == "none": + self.lidars = () + if len(self.radars) == 1 and self.radars[0].lower() == "none": + self.radars = () + assert self.cameras or self.lidars or self.radars, "Must specify at least one sensor to load" + assert self.annotation_interval > 1e-6, "Child classes must specify the annotation interval" + assert self.dataset_start_fraction >= 0.0, "Dataset start fraction must be >= 0.0" + assert self.dataset_end_fraction <= 1.0, "Dataset end fraction must be <= 1.0" + assert self.dataset_start_fraction < self.dataset_end_fraction, "Dataset start must be < dataset end" + + +@dataclass +class ADDataParser(DataParser): + """PandaSet DatasetParser""" + + config: ADDataParserConfig + includes_time: bool = True + + @property + def actor_transform(self) -> Tensor: + """The transform to convert from our actor frame (x-right, y-forward, z-up) to the original actor frame.""" + return torch.eye(4)[:3, :] + + def _get_cameras(self) -> Tuple[Cameras, List[Path]]: + """Returns camera info and image filenames.""" + raise NotImplementedError() + + def _get_lidars(self) -> Tuple[Lidars, List[Path]]: + """Returns lidar info and filenames.""" + raise NotImplementedError() + + def _read_lidars(self, lidars: Lidars, filenames: List[Path]) -> List[Tensor]: + """Reads the point clouds from the given filenames. Should be in x,y,z,r,t order. t is optional.""" + raise NotImplementedError() + + def _get_actor_trajectories(self) -> List[Dict]: + """Returns a list of actor trajectories. + + Each trajectory is a dictionary with the following keys: + - poses: the poses of the actor (float32) + - timestamps: the timestamps of the actor (float64) + - dims: the dimensions of the actor, wlh order (float32) + - label: the label of the actor (str) + - stationary: whether the actor is stationary (bool) + - symmetric: whether the actor is expected to be symmetric (bool) + - deformable: whether the actor is expected to be deformable (e.g. pedestrian) + """ + raise NotImplementedError() + + def _get_radars(self): + """Returns a list of radars.""" + raise NotImplementedError() + + def _get_lane_shift_sign(self, sequence: str) -> Literal[-1, 1]: + """Get the sign of the most realistic lane shift for the given sequence. + + This is to avoid shifting into unreasonable locations, that do not correspond + to a realistic lane shift (like shifting into a parked car, wall, etc.) + """ + return 1 + + def _generate_dataparser_outputs(self, split="train"): + # Load data (this is implemented in the dataset-specific subclass) + cameras, img_filenames = self._get_cameras() if self.config.cameras else (_empty_cameras(), []) + lidars, pc_filenames = self._get_lidars() if self.config.lidars else (_empty_lidars(), []) + radars = self._get_radars() if self.config.radars else None + assert radars is None, "Radars not supported yet" + trajectories = self._get_actor_trajectories() if self.config.load_cuboids else [] + # use dataset fraction to filter data + cameras, img_filenames, lidars, pc_filenames, trajectories = self._filter_based_on_time( + cameras, img_filenames, lidars, pc_filenames, trajectories + ) + # read all the point clouds + point_clouds = self._read_lidars(lidars, pc_filenames) + + # Process the data + self._remove_ego_points(point_clouds) + time_offset = self._adjust_times(cameras, lidars, point_clouds, trajectories) + dataparser_transform = self._adjust_poses(cameras, lidars, trajectories) + scene_box = self._compute_scene_box(cameras, lidars) + self._add_sensor_velocities(cameras, lidars) + + # Adjust sensor idxs to avoid overlap (if necessary) + cam_sensor_idxs = cameras.metadata["sensor_idxs"].unique() + if set(lidars.metadata["sensor_idxs"].unique().tolist()).intersection(set(cam_sensor_idxs.tolist())): + assert cam_sensor_idxs.max() == cam_sensor_idxs.numel() - 1, "Sensor idxs must be contiguous" + lidars.metadata["sensor_idxs"] += cam_sensor_idxs.numel() + sensor_idx_to_name = {idx: name for idx, name in enumerate(self.config.cameras + self.config.lidars)} + + # Apply splits + split = 0 if split == "train" else 1 + cam_idxs = self._get_train_eval_indices(cameras)[split] + cameras, img_filenames = cameras[cam_idxs], [img_filenames[i] for i in cam_idxs] + lidar_idxs = self._get_train_eval_indices(lidars)[split] + lidars, point_clouds = lidars[lidar_idxs], [point_clouds[i] for i in lidar_idxs] + + # sensor_times = torch.cat([cameras.times, lidars.times], dim=0).squeeze(-1).unique() + sensor_times = lidars.times.squeeze(-1).unique() + trajectories = self._interpolate_trajectories(trajectories, sensor_times, self.config.annotation_interval) + # remove empty trajectories + trajectories = [traj for traj in trajectories if len(traj["timestamps"]) > 1] + + point_clouds_rgb = ( + None if not self.config.paint_points else _paint_points(lidars, point_clouds, cameras, img_filenames) + ) + + # Massage into output format + return DataparserOutputs( + image_filenames=img_filenames, + cameras=cameras, + scene_box=scene_box, + mask_filenames=None, # TODO: handle masks + dataparser_scale=1.0, # no scaling + dataparser_transform=dataparser_transform, + actor_transform=self.actor_transform, + time_offset=time_offset, + metadata={ + "lidars": lidars, + "point_clouds": [pc.float() for pc in point_clouds], # Ensure they are float32 + "point_clouds_rgb": point_clouds_rgb, + "trajectories": trajectories, + "lane_shift_sign": self._get_lane_shift_sign(self.config.sequence), + "sensor_idx_to_name": sensor_idx_to_name, + "duration": max(cameras.times.max(), lidars.times.max()) - min(cameras.times.min(), lidars.times.min()), + }, + ) + + def _compute_scene_box(self, cameras: Cameras, lidars: Lidars) -> SceneBox: + if len(lidars): + # Pad 60 meters left/right and 80 meters forward/backward + og_poses = lidars.lidar_to_worlds + padded_poses = _get_padded_poses(og_poses, 60.0, 80.0) + else: + # Need to figure out padding here, since cameras can point in all directions + raise NotImplementedError("Scene box computation using cameras not implemented yet") + og_poses = cameras.camera_to_worlds + padded_poses = _get_padded_poses(og_poses, 80.0, 80.0) + poses = torch.concatenate([padded_poses, og_poses[:, :3, 3]]) + aabb_scale = poses.abs().max(dim=0)[0] + aabb = torch.stack([-aabb_scale, aabb_scale], dim=0) + aabb[1, 2] = self.config.scene_box_height[1] + aabb[0, 2] = self.config.scene_box_height[0] + return SceneBox(aabb=aabb) + + def _remove_ego_points(self, point_clouds: List[Tensor]): + dist_thresh = torch.tensor(self.config.min_lidar_dist) + for i, pc in enumerate(point_clouds): + mask = (pc[:, :3].abs() >= dist_thresh).any(-1) + point_clouds[i] = pc[mask] + + def _filter_based_on_time( + self, + cameras: Cameras, + img_filenames: List[Path], + lidars: Lidars, + pc_filenames: List[Path], + trajectories: List[Dict], + ) -> Tuple[Cameras, List[Path], Lidars, List[Path], List[Dict]]: + # Remove the data that is outside the dataset start/end fraction + if self.config.dataset_start_fraction == 0.0 and self.config.dataset_end_fraction == 1.0: + return cameras, img_filenames, lidars, pc_filenames, trajectories + + times = torch.cat([cameras.times, lidars.times], dim=0) + end_time = times.max().item() + start_time = times.min().item() + duration = end_time - start_time + start_time += duration * self.config.dataset_start_fraction + end_time = start_time + duration * self.config.dataset_end_fraction + + cameras, img_filenames = _filter_sensordata_on_time(cameras, img_filenames, start_time, end_time) + lidars, pc_filenames = _filter_sensordata_on_time(lidars, pc_filenames, start_time, end_time) + assert len(cameras) or len(lidars), "No cameras or lidars in the dataset" + # filter the trajectories that are not in the sequence at all + trajectories = [ + traj + for traj in trajectories + if (traj["timestamps"] >= start_time).any() and (traj["timestamps"] <= end_time).any() + ] + + return cameras, img_filenames, lidars, pc_filenames, trajectories + + def _adjust_times( + self, cameras: Cameras, lidars: Lidars, point_clouds: List[Tensor], trajectories: List[Dict] + ) -> float: + times = torch.cat([cameras.times, lidars.times], dim=0) + min_time = times.min().item() + # Set the times for the cameras and lidars to be relative to the min time + cameras.times = (cameras.times - min_time).float() + lidars.times = (lidars.times - min_time).float() + for traj in trajectories: + traj["timestamps"] = (traj["timestamps"] - min_time).float() + for pc in point_clouds: + # Sometimes we have only x,y,z,r sometimes x,y,z,r,t + if pc.shape[-1] > 4 and not self.config.allow_per_point_times: + pc[..., 4] = 0.0 + return min_time + + def _adjust_poses(self, cameras: Cameras, lidars: Lidars, trajectories: List[Dict]): + """Determines a new, centered, world coordinate system, and adjusts all poses.""" + w2m = _get_world_to_mean_transform(cameras, lidars) + cameras.camera_to_worlds = pose_multiply(w2m, cameras.camera_to_worlds) + lidars.lidar_to_worlds = pose_multiply(w2m, lidars.lidar_to_worlds) + for traj in trajectories: + traj["poses"][:, :3] = pose_multiply(w2m, traj["poses"][:, :3]) + return w2m + + def _get_train_eval_indices(self, sensors: Union[Cameras, Lidars]) -> Tuple[Tensor, Tensor]: + if self.config.train_eval_split_type == SplitTypes.LINSPACE: + return self._get_linspaced_indices(sensors.metadata["sensor_idxs"].squeeze(-1)) + raise NotImplementedError( + f"Split type {self.config.train_eval_split_type} not implemented for this dataparser, override _get_train_eval_indices." + ) + + def _get_linspaced_indices(self, sensor_idxs: Tensor) -> Tuple[Tensor, Tensor]: + """Returns indices of a linspaced subset of length `length` with ratio `ratio` with contiguous chunks.""" + if sensor_idxs.numel() == 0: + return torch.empty(0, dtype=torch.int64), torch.empty(0, dtype=torch.int64) + elif self.config.train_split_fraction == 1.0: + # if we are using the full dataset, just return all indices + # we will use this for both trian and val, as we do not mean to use the validation performance for anything + # only for visual inspection + train_indices = torch.arange(sensor_idxs.numel(), dtype=torch.int64) + eval_indices = train_indices.clone() + else: + train_indices = [] + for sensor_idx in sensor_idxs.unique(): + sensor_sample_idxs = (sensor_idxs == sensor_idx).nonzero().squeeze(-1) + # split according to train_split_fraction + num_for_train_split = math.ceil(len(sensor_sample_idxs) * self.config.train_split_fraction) + sensor_train_split = np.linspace(0, len(sensor_sample_idxs) - 1, num_for_train_split, dtype=np.int64) + train_indices += sensor_sample_idxs[sensor_train_split] + eval_indices = np.setdiff1d(np.arange(len(sensor_idxs)), train_indices) + train_indices, eval_indices = torch.tensor(train_indices), torch.from_numpy(eval_indices) + + if self.config.max_eval_frames is not None: + torch.manual_seed(123) + eval_indices = eval_indices[torch.randperm(len(eval_indices))[: self.config.max_eval_frames]] + return train_indices, eval_indices + + def _add_sensor_velocities(self, cameras: Cameras, lidars: Lidars): + """Adds the sensor velocities to the metadata.""" + assert cameras.metadata is not None and lidars.metadata is not None, "Must have metadata" + cameras.metadata["velocities"] = torch.zeros_like(cameras.camera_to_worlds[:, :3, 3]) + for sensor_idx in cameras.metadata["sensor_idxs"].unique(): + mask = (cameras.metadata["sensor_idxs"] == sensor_idx).squeeze(-1) + cam2worlds, times = cameras.camera_to_worlds[mask], cameras.times[mask] + velo = (cam2worlds[1:, :3, 3] - cam2worlds[:-1, :3, 3]) / (times[1:] - times[:-1]) + cameras.metadata["velocities"][mask] = torch.cat((velo, velo[-1:]), 0) + cameras.metadata["rolling_shutter_offsets"] = ( + torch.tensor(self.config.rolling_shutter_offsets).unsqueeze(0).repeat(len(cameras), 1) + ) + + lidars.metadata["velocities"] = torch.zeros_like(lidars.lidar_to_worlds[:, :3, 3]) + for sensor_idx in lidars.metadata["sensor_idxs"].unique(): + mask = (lidars.metadata["sensor_idxs"] == sensor_idx).squeeze(-1) + lidar2worlds, times = lidars.lidar_to_worlds[mask], lidars.times[mask] + velo = (lidar2worlds[1:, :3, 3] - lidar2worlds[:-1, :3, 3]) / (times[1:] - times[:-1]) + lidars.metadata["velocities"][mask] = torch.cat((velo, velo[-1:]), 0) + + def _interpolate_trajectories(self, trajectories: List[Dict], timestamps: Tensor, extrapolation_length: float): + # sort query times, just to be sure + timestamps = timestamps.sort().values + eps = 1e-3 # Because of floating point errors + for traj in trajectories: + dist = extrapolation_length - eps + extrap_back = (timestamps > (traj["timestamps"][0] - dist)) & (timestamps < traj["timestamps"][0]) + if extrap_back.any(): + # Duplicate the first pose to pad the trajectory + new_time = timestamps[extrap_back].min() + new_pose = traj["poses"][0].clone() # TODO: could extrapolate pose instead of duplicating + traj["poses"] = torch.cat([new_pose.unsqueeze(0), traj["poses"]], dim=0) + traj["timestamps"] = torch.cat([new_time.unsqueeze(0), traj["timestamps"]], dim=0) + + extrap_forward = (timestamps < (traj["timestamps"][-1] + dist)) & (timestamps > traj["timestamps"][-1]) + if extrap_forward.any(): + # Duplicate the last pose to pad the trajectory + new_time = timestamps[extrap_forward].max() + new_pose = traj["poses"][-1].clone() + traj["poses"] = torch.cat([traj["poses"], new_pose.unsqueeze(0)], dim=0) + traj["timestamps"] = torch.cat([traj["timestamps"], new_time.unsqueeze(0)], dim=0) + + assert torch.all(traj["timestamps"][1:] >= traj["timestamps"][:-1]), "Trajectory timestamps must be sorted" + # Only query for times between min and max of trajectory + query_times = timestamps[timestamps >= traj["timestamps"][0] - eps] + query_times = query_times[query_times <= traj["timestamps"][-1] + eps] + # interpolate_poses expects num_poses x num_trajectories x 4 x 4, so we unsqueeze to get a single trajectory + new_poses, _, _ = interpolate_trajectories(traj["poses"].unsqueeze(1), traj["timestamps"], query_times) + traj["poses"] = to4x4(new_poses) + traj["timestamps"] = query_times + return trajectories + + @staticmethod + def _remove_ego_motion_compensation( + point_cloud: torch.Tensor, l2ws: torch.Tensor, times: torch.Tensor + ) -> Tuple[torch.Tensor, torch.Tensor]: + """Removes ego motion compensation from point cloud. + + Args: + point_cloud: Point cloud to remove ego motion compensation from (in world frame). Shape: [num_points, 5+N] x,y,z,intensity,timestamp,(channel_id) + l2ws: Poses of the lidar. Shape: [num_poses, 4, 4] + times: Timestamps of the lidar poses. Shape: [num_poses] + + Returns: + Point cloud without ego motion compensation in sensor frame. Shape: [num_points, 5+N] x,y,z,intensity,timestamp,(channel_id) + Lidar pose for each point in the point cloud. Shape: [num_points, 4, 4] + """ + + interpolated_l2ws, _, _ = interpolate_trajectories( + l2ws.unsqueeze(1), times - times.min(), point_cloud[:, 4] - times.min(), clamp_frac=False + ) + interpolated_l2ws = interpolated_l2ws[:, :3, :4] + interpolated_w2ls = pose_utils.inverse(interpolated_l2ws) + homogen_points = torch.cat([point_cloud[:, :3], torch.ones_like(point_cloud[:, -1:])], dim=-1) + points = torch.matmul(interpolated_w2ls, homogen_points.unsqueeze(-1))[:, :, 0] + return torch.cat([points, point_cloud[:, 3:]], dim=-1), interpolated_l2ws + + def _get_missing_points( + self, + point_cloud: torch.Tensor, + l2ws: torch.Tensor, + lidar_name: str, + dist_cutoff: float = 1.0, + ignore_regions: list = [], + outlier_thresh: float = 0.2, + ) -> torch.Tensor: + """Finds missing points in the point cloud according to sensor spec (self.config.lidar_elevation_mapping) + + Args: + point_cloud: Point cloud to find missing points in (in sensor frame). Shape: [num_points, 4+x] x,y,z,channel_id(timestamp, intensity, etc.) + l2ws: Poses of the lidar. Shape: [num_points, 4, 4] + lidar_name: Name of the lidar + dist_cutoff: Distance cutoff for points to consider. Points closer than this will be ignored. + ignore_regions: List of regions to ignore. Each region is a list of [min_azimuth, max_azimuth, min_elevation, max_elevation] + outlier_thresh: Threshold for outlier elevation values. If the median elevation of the missing points is more than this value away from the median elevation of the points in the channel, we ignore the missing points. + + Returns: + Missing points in the point cloud, in world_frame. Shape: [num_points, 3+x] x,y,z,(timestamp, intensity, etc.) + """ + dist = torch.norm(point_cloud[:, :3], dim=-1) + dist_mask = dist > dist_cutoff + dist = dist[dist_mask] + point_cloud = point_cloud[dist_mask] + l2ws = l2ws[dist_mask] + elevation = torch.arcsin(point_cloud[:, 2] / dist) + elevation = torch.rad2deg(elevation) + azimuth = torch.atan2(point_cloud[:, 1], point_cloud[:, 0]) + azimuth = torch.rad2deg(azimuth) + + # find missing points + missing_points = [] + missing_points_sensor_frame = [] + assert self.config.lidar_elevation_mapping is not None, "Must specify lidar elevation mapping" + assert self.config.lidar_azimuth_resolution is not None, "Must specify lidar azimuth resolution" + assert self.config.skip_elevation_channels is not None, "Must specify skip elevation channels" + for channel_id, expected_elevation in self.config.lidar_elevation_mapping[lidar_name].items(): + if channel_id in self.config.skip_elevation_channels[lidar_name]: + continue + channel_mask = (point_cloud[:, 3] - channel_id).abs() < 0.1 # handle floats + curr_azimuth = azimuth[channel_mask] + curr_l2ws = l2ws[channel_mask] + curr_elev = elevation[channel_mask] + if not channel_mask.any(): + continue + curr_azimuth, sort_idx = curr_azimuth.sort() + curr_l2ws = curr_l2ws[sort_idx] + curr_elev = curr_elev[sort_idx] + + # find missing azimuths, we should have 360 / lidar_azimuth_resolution azimuths + num_expected_azimuths = int(360 / self.config.lidar_azimuth_resolution[lidar_name]) + 1 + expected_idx = torch.arange(num_expected_azimuths, device=curr_azimuth.device) + # find offset + offset = curr_azimuth[0] % self.config.lidar_azimuth_resolution[lidar_name] + current_idx = ( + ((curr_azimuth - offset + 180) / self.config.lidar_azimuth_resolution[lidar_name]).round().int() + ) + missing_idx = expected_idx[torch.isin(expected_idx, current_idx, invert=True)] + # interpolate missing azimuths + missing_azimuth = ( + torch.from_numpy( + np.interp( + missing_idx, + torch.cat([torch.tensor(-1).view(1), current_idx, torch.tensor(num_expected_azimuths).view(1)]), + torch.cat( + [ + (-180 + offset - self.config.lidar_azimuth_resolution[lidar_name]).view(1), + curr_azimuth, + (180 + offset + self.config.lidar_azimuth_resolution[lidar_name]).view(1), + ] + ), + ) + ) + .float() + .view(-1, 1) + ) + missing_elevation = ( + torch.from_numpy( + np.interp( + missing_idx, + torch.cat([torch.tensor(-1).view(1), current_idx, torch.tensor(num_expected_azimuths).view(1)]), + torch.cat( + [ + torch.tensor(expected_elevation).view(1), + curr_elev.view(-1), + torch.tensor(expected_elevation).view(1), + ] + ), + ) + ) + .float() + .view(-1, 1) + ) + elevation_outlier_mask = (missing_elevation - curr_elev.median()).abs() > outlier_thresh + missing_elevation[elevation_outlier_mask] = curr_elev.median() + + ignore_mask = torch.zeros_like(missing_azimuth.squeeze(-1)).bool() + for ignore_region in ignore_regions: + ignore_mask = ( + (missing_azimuth > ignore_region[0]) + & (missing_azimuth < ignore_region[1]) + & (missing_elevation > ignore_region[2]) + & (missing_elevation < ignore_region[3]) + ).squeeze(-1) | ignore_mask + missing_azimuth = missing_azimuth[~ignore_mask] + missing_elevation = missing_elevation[~ignore_mask] + + # missing_elevation = torch.ones_like(missing_azimuth) * current_elevation + missing_distance = torch.ones_like(missing_azimuth) * DUMMY_DISTANCE_VALUE + x = ( + torch.cos(torch.deg2rad(missing_azimuth)) + * torch.cos(torch.deg2rad(missing_elevation)) + * missing_distance + ) + y = ( + torch.sin(torch.deg2rad(missing_azimuth)) + * torch.cos(torch.deg2rad(missing_elevation)) + * missing_distance + ) + z = torch.sin(torch.deg2rad(missing_elevation)) * missing_distance + points = torch.cat([x, y, z], dim=-1) + missing_points_sensor_frame.append(points) + # transform points from sensor space to world space + points = torch.cat([points, torch.ones_like(points[:, -1:])], dim=-1) + # find closest pose idx + closest_pose_idx = torch.searchsorted(curr_azimuth, missing_azimuth.squeeze()) + closest_pose_idx = closest_pose_idx.clamp(max=len(curr_azimuth) - 1) + if closest_pose_idx.shape == (): + closest_pose_idx = closest_pose_idx.unsqueeze(0) + closest_l2w = curr_l2ws[closest_pose_idx] + points = torch.matmul(closest_l2w.float(), points.unsqueeze(-1))[:, :, 0] + closest_pc_values = point_cloud[channel_mask][sort_idx][closest_pose_idx, 3:] + points = torch.cat([points, closest_pc_values], dim=-1) + missing_points.append(points) + + missing_points = torch.cat(missing_points, dim=0) + missing_points_sensor_frame = torch.cat(missing_points_sensor_frame, dim=0) + return missing_points + + +def _get_mean_pose_from_trajectory(trajectory): + """Computes the mean pose from a trajectory of positions.""" + trajectory = np.array(trajectory) + mean_position = np.mean(trajectory, axis=0) + # Compute the mean direction vector + directions = np.diff(trajectory, axis=0) # we dont normalize as we want to weight each direction with the distance + mean_direction = np.mean(directions, axis=0) + mean_direction /= np.linalg.norm(mean_direction) + # Set the up and right vectors of the mean pose + up = np.array([0, 0, 1]) + right = np.cross(mean_direction, up) + # Compute the up vector of the mean pose + up = np.cross(right, mean_direction) # need to recompute up because it might not be orthogonal + # Normalize the right, and up vectors + right /= np.linalg.norm(right) + up /= np.linalg.norm(up) + # Construct the transformation matrix + pose = np.eye(4) + pose[:3, 0] = right + pose[:3, 1] = mean_direction + pose[:3, 2] = up + pose[:3, 3] = mean_position + return pose + + +def _get_padded_poses(l2ws, padx: float, pady: float): + """Pads the poses with four locations: padx forward/backward, pady left/right.""" + pad = torch.tensor([[-padx, 0.0, 0.0], [padx, 0.0, 0.0], [0.0, -pady, 0.0], [0.0, pady, 0.0]]) + pad = pad.unsqueeze(0).repeat(l2ws.shape[0], 1, 1) # [N, 4, 3] + pad = pad.reshape(-1, 3, 1) # [N*4, 3, 1] + l2ws = torch.repeat_interleave(l2ws, 4, dim=0) # [N*4, 4, 4] + pad_in_world = torch.matmul(l2ws[:, :3, :3], pad) + l2ws[:, :3, 3].unsqueeze(-1) # [N*4, 3, 1] + pad_in_world = pad_in_world.reshape(-1, 3) # [N*4, 3] + return pad_in_world + + +def _get_world_to_mean_transform(cameras: Cameras, lidars: Lidars): + poses = lidars.lidar_to_worlds if len(lidars) else cameras.camera_to_worlds + meta = lidars.metadata if len(lidars) else cameras.metadata + assert meta and "sensor_idxs" in meta, "Must have sensor ids in metadata" + sensor_idxs = meta["sensor_idxs"].squeeze(-1) + selected_idx = sensor_idxs[0] + select_poses = poses[sensor_idxs == selected_idx] + select_trajectory = select_poses[:, :3, 3] + if torch.std(select_trajectory, dim=0).max() < 1e-1: + # If the trajectory is stationary, return the first pose + m2w = to4x4(select_poses[0:1])[0] + else: + # Otherwise + m2w = torch.from_numpy(_get_mean_pose_from_trajectory(select_trajectory).astype(np.float32)) + return torch.linalg.inv(m2w)[:3] + + +def _empty_cameras(): + return Cameras( + camera_to_worlds=torch.zeros((0, 3, 4)), + cx=torch.zeros((0)), + cy=torch.zeros((0)), + fx=torch.zeros((0)), + fy=torch.zeros((0)), + times=torch.zeros((0)), + metadata={"sensor_idxs": torch.zeros((0))}, + ) + + +def _empty_lidars(): + return Lidars( + lidar_to_worlds=torch.zeros((0, 3, 4)), + times=torch.zeros((0)), + metadata={"sensor_idxs": torch.zeros((0))}, + ) + + +def _filter_sensordata_on_time( + data: SensorData, filepaths: List[Path], start_time: float, end_time: float +) -> Tuple[SensorData, List[Path]]: + """Filter the data onbased on start and end time.""" + mask = (data.times >= start_time) & (data.times <= end_time) + data = data[mask.squeeze(-1)] + filepaths = [filepaths[i] for i in range(len(filepaths)) if mask[i]] + return data, filepaths + + +def _paint_points(lidars: Lidars, point_clouds: List[Tensor], cameras: Cameras, image_filenames: List[Path]): + """Paints the points in the point cloud.""" + point_clouds_rgb = [] + img_cache = [] + for img_filename in image_filenames: + pil_image = Image.open(img_filename) + image = np.array(pil_image, dtype="uint8") + image = torch.from_numpy(image) + img_cache.append(image) + + for lidar, pc in zip(lidars, point_clouds): + pc = pc.clone().float() + pc_in_world = transform_points(pc[:, :3], lidar.lidar_to_worlds) + point_cloud_rgb = torch.rand_like(pc[:, :3]) * 255 + + lidar_time = lidar.times.squeeze(-1) + top_k_cam_idx = torch.topk( + (cameras.times - lidar_time).abs().squeeze(), len(cameras.metadata["sensor_idxs"].unique()), largest=False + ).indices + for cam_idx in top_k_cam_idx.flip(0): + camera = cameras[cam_idx] + pc_in_camera = transform_points(pc_in_world, inverse(camera.camera_to_worlds.squeeze(0))) + # Flip the y and z axis because of nerfstudio conventions + pc_in_camera[:, 1] = -pc_in_camera[:, 1] + pc_in_camera[:, 2] = -pc_in_camera[:, 2] + # Only paint points in front of the camera + valid_points = pc_in_camera[:, 2] > 0 + # Normalize the points + pc_in_camera = pc_in_camera / pc_in_camera[:, 2:] + + intrinsics = camera.get_intrinsics_matrices().squeeze(0) + pc_in_image = (torch.matmul(intrinsics, pc_in_camera[:, :3].T).T).to(torch.int64) + + valid_points = ( + valid_points + & (pc_in_image[:, 0] >= 0) + & (pc_in_image[:, 0] < camera.width) + & (pc_in_image[:, 1] >= 0) + & (pc_in_image[:, 1] < camera.height) + ) + + image = img_cache[cam_idx] + point_cloud_rgb[valid_points] = (image[pc_in_image[valid_points, 1], pc_in_image[valid_points, 0]]).float() + point_clouds_rgb.append(point_cloud_rgb) + + return point_clouds_rgb diff --git a/nerfstudio/data/dataparsers/argoverse2_dataparser.py b/nerfstudio/data/dataparsers/argoverse2_dataparser.py new file mode 100644 index 00000000..138de0a0 --- /dev/null +++ b/nerfstudio/data/dataparsers/argoverse2_dataparser.py @@ -0,0 +1,521 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# +# 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. + +"""Dataparser for the argoverse2 dataset.""" + + +from dataclasses import dataclass, field +from pathlib import Path +from typing import Dict, List, Literal, Tuple, Type + +import av2.utils.io as io_utils +import numpy as np +import torch +from av2.datasets.sensor.av2_sensor_dataloader import AV2SensorDataLoader, convert_pose_dataframe_to_SE3 +from av2.datasets.sensor.constants import AnnotationCategories +from av2.geometry.geometry import quat_to_mat +from av2.structures.sweep import Sweep +from av2.utils.io import read_ego_SE3_sensor, read_feather + +from nerfstudio.cameras.cameras import Cameras, CameraType +from nerfstudio.cameras.lidars import Lidars, LidarType, transform_points +from nerfstudio.data.dataparsers.ad_dataparser import ( + DUMMY_DISTANCE_VALUE, + OPENCV_TO_NERFSTUDIO, + ADDataParser, + ADDataParserConfig, +) +from nerfstudio.data.utils.lidar_elevation_mappings import VELODYNE_VLP32C_ELEVATION_MAPPING +from nerfstudio.utils import poses as pose_utils + +MAX_REFLECTANCE_VALUE = 255.0 +HOOD_HEIGHT = 250 # number of pixels to crop from the bottom due to the hood + +WLH_TO_LWH = np.array([[0.0, 1.0, 0.0], [-1.0, 0.0, 0.0], [0.0, 0.0, 1.0]], dtype=np.float32) +HORIZONTAL_BEAM_DIVERGENCE = 3e-3 # radians +VERTICAL_BEAM_DIVERGENCE = 1.5e-3 # radians + +SYMMETRIC_CATEGORIES = { + AnnotationCategories.ARTICULATED_BUS, + AnnotationCategories.BUS, + AnnotationCategories.BOLLARD, + AnnotationCategories.BOX_TRUCK, + AnnotationCategories.CONSTRUCTION_CONE, + AnnotationCategories.LARGE_VEHICLE, + AnnotationCategories.RAILED_VEHICLE, + AnnotationCategories.REGULAR_VEHICLE, + AnnotationCategories.SCHOOL_BUS, + AnnotationCategories.TRUCK, + AnnotationCategories.TRUCK_CAB, + AnnotationCategories.VEHICULAR_TRAILER, +} + +DEFORMABLE_CATEGORIES = { + AnnotationCategories.PEDESTRIAN, + AnnotationCategories.OFFICIAL_SIGNALER, +} + +ALLOWED_CATEGORIES = { + AnnotationCategories.ARTICULATED_BUS, + AnnotationCategories.BOX_TRUCK, + AnnotationCategories.BUS, + AnnotationCategories.LARGE_VEHICLE, + AnnotationCategories.RAILED_VEHICLE, + AnnotationCategories.REGULAR_VEHICLE, + AnnotationCategories.SCHOOL_BUS, + AnnotationCategories.TRUCK, + AnnotationCategories.TRUCK_CAB, + AnnotationCategories.VEHICULAR_TRAILER, + # motor cycles + AnnotationCategories.MOTORCYCLE, + AnnotationCategories.MOTORCYCLIST, + # bicycles + AnnotationCategories.BICYCLE, + AnnotationCategories.BICYCLIST, + # wheel devices + AnnotationCategories.WHEELED_DEVICE, + AnnotationCategories.WHEELED_RIDER, +} + +CAMERA_TO_BOTTOM_RIGHT_CROP = { + "ring_front_center": (250, 0), + "ring_front_left": (0, 0), + "ring_front_right": (0, 0), + "ring_rear_left": (250, 0), + "ring_rear_right": (250, 0), + "ring_side_left": (0, 0), + "ring_side_right": (0, 0), +} + +AVAILABLE_CAMERAS = ( + "ring_front_center", + "ring_front_left", + "ring_front_right", + "ring_rear_left", + "ring_rear_right", + "ring_side_left", + "ring_side_right", +) + + +# lidar_up is the upper lidar, lidar_down is the lower lidar, and lidar is short for any of them +AV2_VELO_VLP32C_ELEVATION_MAPPING = { + i: j for i, j in enumerate(sorted(VELODYNE_VLP32C_ELEVATION_MAPPING.values(), reverse=True)) +} +AV2_ELEVATION_MAPPING = { + "lidar_down": AV2_VELO_VLP32C_ELEVATION_MAPPING, + "lidar_up": AV2_VELO_VLP32C_ELEVATION_MAPPING, + "lidar": AV2_VELO_VLP32C_ELEVATION_MAPPING, +} +AV2_AZIMUTH_RESOLUTION = { + "lidar_down": 0.2, + "lidar_up": 0.2, + "lidar": 0.2, +} # degrees +AV2_SKIP_ELEVATION_CHANNELS = { + "lidar": (0, 1, 2), + "lidar_down": (0, 1, 2), # corresponding to 15,10.333,7.0 degrees as lidar_down is upside down + "lidar_up": (29, 30, 31), # corresponding to -25,-15.639,-11.31 degrees +} +AV2_IGNORE_REGIONS = { + "lidar_down": [[140, 200, -30.0, 20.0], [-200.0, -170.0, -30.0, 20.0]], + "lidar_up": [], + "lidar": [], +} + + +@dataclass +class Argoverse2DataParserConfig(ADDataParserConfig): + """Argoverse 2 dataset config.""" + + _target: Type = field(default_factory=lambda: Argoverse2) + """target class to instantiate""" + sequence: str = "2b044433-ddc1-3580-b560-d46474934089" + """name of the sequence to use""" + data: Path = Path("data/argoverse2") + """path to the dataset""" + cameras: Tuple[ + Literal[ + "ring_front_center", + "ring_front_left", + "ring_front_right", + "ring_rear_left", + "ring_rear_right", + "ring_side_left", + "ring_side_right", + "none", + "all", + ], + ..., + ] = ("all",) + """what cameras to use""" + lidars: Tuple[Literal["lidar", "none"], ...] = ("lidar",) + """what lidars to use. only one lidar is available.""" + annotation_interval: float = 0.1 + """interval between annotations in seconds""" + split: str = "val" + """what split to use. options are: train, val, test, mini, mini_val, mini_test""" + add_missing_points: bool = True + """whether to add missing points to the point clouds""" + lidar_elevation_mapping: Dict[str, Dict[int, float]] = field(default_factory=lambda: AV2_ELEVATION_MAPPING) + """Elevation mapping for each lidar.""" + lidar_azimuth_resolution: Dict[str, float] = field(default_factory=lambda: AV2_AZIMUTH_RESOLUTION) + """Azimuth resolution for each lidar.""" + skip_elevation_channels: Dict[str, Tuple] = field(default_factory=lambda: AV2_SKIP_ELEVATION_CHANNELS) + """Channels to skip when adding missing points.""" + max_eval_frames: int = 100 + """maximum number of frames to use for evaluation""" + + +@dataclass +class Argoverse2(ADDataParser): + """Argoverse2 DatasetParser.""" + + config: Argoverse2DataParserConfig + + @property + def actor_transform(self) -> torch.Tensor: + """Argo uses x-forward, so we need to rotate to x-right.""" + wlh_to_lwh = np.eye(4) + wlh_to_lwh[:3, :3] = WLH_TO_LWH + return torch.from_numpy(wlh_to_lwh) + + def _get_cameras(self) -> Tuple[Cameras, List[Path]]: + """Returns camera info and image filenames.""" + if "all" in self.config.cameras: + self.config.cameras = AVAILABLE_CAMERAS + filenames, times, intrinsics, poses, idxs = [], [], [], [], [] + heights, widths = [], [] + + for camera_idx, cam_name in enumerate(self.config.cameras): + pinhole_camera = self.av2.get_log_pinhole_camera(self.config.sequence, cam_name) + + # get all camera paths + camera_paths = self.av2.get_ordered_log_cam_fpaths(self.config.sequence, cam_name) + # timestamps is the filename without the extension + timestamps = [int(p.stem) for p in camera_paths] + + # compute the poses of each camera at each timestamp + for t, fp in zip(timestamps, camera_paths): + # get the ego-pose + ego2world = self.av2.get_city_SE3_ego(self.config.sequence, t) + cam_extrinsics = pinhole_camera.ego_SE3_cam.transform_matrix.copy() + cam_extrinsics[:3, :3] = cam_extrinsics[:3, :3] @ OPENCV_TO_NERFSTUDIO + poses.append(ego2world.transform_matrix @ cam_extrinsics) + # add the camera intrinsics + intrinsics.append(pinhole_camera.intrinsics.K) + # add the camera height and width, which differ between cameras + # the ring_front_center is in portrait mode and the others are in landscape mode + heights.append(pinhole_camera.intrinsics.height_px - CAMERA_TO_BOTTOM_RIGHT_CROP[cam_name][0]) + widths.append(pinhole_camera.intrinsics.width_px - CAMERA_TO_BOTTOM_RIGHT_CROP[cam_name][1]) + # append the times and filenames to the lists + times.append(t / 1e9) # convert to seconds + filenames.append(fp) + # add the camera index + idxs.append(camera_idx) + + # To tensors + intrinsics = torch.from_numpy(np.array(intrinsics)).float() + poses = torch.tensor(np.array(poses), dtype=torch.float32) + times = torch.tensor(times, dtype=torch.float64) # need higher precision + idxs = torch.tensor(idxs).int().unsqueeze(-1) + heights = torch.tensor(heights).int() + widths = torch.tensor(widths).int() + + cameras = Cameras( + fx=intrinsics[:, 0, 0], + fy=intrinsics[:, 1, 1], + cx=intrinsics[:, 0, 2], + cy=intrinsics[:, 1, 2], + height=heights, + width=widths, + camera_to_worlds=poses[:, :3, :4], + camera_type=CameraType.PERSPECTIVE, + times=times, + metadata={"sensor_idxs": idxs}, + ) + + return cameras, filenames + + def _get_lidars(self) -> Tuple[Lidars, List[Path]]: + """Returns lidar info and loaded point clouds.""" + + ( + lidar_filenames, + times, + poses_up, + poses_down, + idxs, + ) = ([], [], [], [], []) + + lidar_times = self.av2.get_ordered_log_lidar_timestamps(self.config.sequence) + + for t in lidar_times: + # get the path to the lidar point cloud + pc_path = self.av2.get_lidar_fpath(self.config.sequence, t) + lidar_filenames.append(pc_path) + + log_dir = pc_path.parent.parent.parent + sensor_name_to_pose = read_ego_SE3_sensor(log_dir=log_dir) + ego_SE3_up_lidar = sensor_name_to_pose["up_lidar"] + ego_SE3_down_lidar = sensor_name_to_pose["down_lidar"] + + # get the ego-vehicle pose at the lidar timestamp + ego_pose = self.av2.get_city_SE3_ego(self.config.sequence, t) + # move to the actual lidar position + ego_pose_up = ego_pose.compose(ego_SE3_up_lidar) + ego_pose_down = ego_pose.compose(ego_SE3_down_lidar) + # add the pose + poses_up.append(ego_pose_up.transform_matrix) + poses_down.append(ego_pose_down.transform_matrix) + idxs.append(0) # add the lidar index (there is only one so lets use 0) + times.append(t / 1e9) # convert to seconds + + poses_up = torch.tensor(np.array(poses_up), dtype=torch.float32) + poses_down = torch.tensor(np.array(poses_down), dtype=torch.float32) + down2up = pose_utils.inverse(poses_up[0, ...]) @ poses_down[0, ...] + times = torch.tensor(np.array(times, dtype=np.float64), dtype=torch.float64) # need higher precision + idxs = torch.tensor(np.array(idxs)).int().unsqueeze(-1) + # we will store the down2up transformation in the metadata, as we will need it later + down2up = down2up.repeat(len(poses_up), 1, 1).view(len(poses_up), -1) + poses_down = poses_down.view(len(poses_up), -1) + + lidars = Lidars( + lidar_to_worlds=poses_up[:, :3, :4], + lidar_type=LidarType.VELODYNE_VLP32C, + times=times, + metadata={ + "sensor_idxs": idxs, + "down2up": down2up, # will be removed later + "poses_down": poses_down, # will be removed later + }, + horizontal_beam_divergence=HORIZONTAL_BEAM_DIVERGENCE, + vertical_beam_divergence=VERTICAL_BEAM_DIVERGENCE, + valid_lidar_distance_threshold=DUMMY_DISTANCE_VALUE / 2, + ) + + return lidars, lidar_filenames + + def _read_lidars(self, lidars: Lidars, filepaths: List[Path]) -> List[torch.Tensor]: + point_clouds_up, point_clouds_down = [], [] + + for pc_path in filepaths: + sweep = Sweep.from_feather(pc_path) + # get laser_number, 0-31 is up_lidar, 32-63 is down_lidar according to + laser_number = sweep.laser_number + # transform the points back to the sensor position + xyz_up = sweep.ego_SE3_up_lidar.inverse().transform_point_cloud(sweep.xyz[laser_number < 32]) + xyz_down = sweep.ego_SE3_down_lidar.inverse().transform_point_cloud(sweep.xyz[laser_number >= 32]) + # normalize the intensity values to be in [0, 1] + intensity = sweep.intensity / MAX_REFLECTANCE_VALUE + # Add relative time + time = sweep.offset_ns / 1e9 + # add the intensity as the last channel + xyz_intensity_up = np.concatenate( + [ + xyz_up, + intensity[laser_number < 32, None], + time[laser_number < 32, None], + laser_number[laser_number < 32, None], + ], + axis=1, + ) + xyz_intensity_down = np.concatenate( + [ + xyz_down, + intensity[laser_number >= 32, None], + time[laser_number >= 32, None], + laser_number[laser_number >= 32, None], + ], + axis=1, + ) + # add the point cloud + point_clouds_up.append(torch.from_numpy(xyz_intensity_up)) + point_clouds_down.append(torch.from_numpy(xyz_intensity_down)) + + missing_points = [] + + if self.config.add_missing_points: + assert lidars.metadata is not None # typehints + assert lidars.times is not None # typehints + down2up = lidars.metadata["down2up"].view(len(lidars.times), 3, 4)[0] + poses_down = lidars.metadata["poses_down"].view(len(lidars.times), 4, 4) + poses_up = lidars.lidar_to_worlds + times = lidars.times + + log_pose_df = io_utils.read_feather( + self.av2._data_dir / self.config.sequence / "city_SE3_egovehicle.feather" + ) + all_ego2w = [convert_pose_dataframe_to_SE3(pose_df) for _, pose_df in log_pose_df.iterrows()] + # calibration is constant, just use the last one + assert sweep is not None + uplidar2ego = sweep.ego_SE3_up_lidar + all_lup2w = torch.tensor( + np.array([e2w.compose(uplidar2ego).transform_matrix for e2w in all_ego2w]), dtype=torch.float32 + ) + downlidar2ego = sweep.ego_SE3_down_lidar + all_ldown2w = torch.tensor( + np.array([e2w.compose(downlidar2ego).transform_matrix for e2w in all_ego2w]), dtype=torch.float32 + ) + all_times = torch.from_numpy(log_pose_df["timestamp_ns"].to_numpy() / 1e9) + + for i, (pc_up, pc_down, lup2w, ldown2w, time) in enumerate( + zip(point_clouds_up, point_clouds_down, poses_up, poses_down, times) + ): + mp = [] + for j, (pc_, l2w) in enumerate(zip((pc_up, pc_down), (lup2w, ldown2w))): + pc = pc_.clone().to(torch.float64) + # relative -> absolute time + pc[:, -2] += time + # project to world frame + pc[..., :3] = transform_points(pc[..., :3], l2w.unsqueeze(0).to(pc)) + # remove ego motion compensation and move to sensor frame + if j == 0: # up_lidar + l2ws = all_lup2w + lidar_name = "lidar_up" + else: # down_lidar + l2ws = all_ldown2w + lidar_name = "lidar_down" + pc, interpolated_poses = self._remove_ego_motion_compensation(pc, l2ws, all_times) + # reset time to relative + pc[:, 4] = pc_[:, 4].clone() + # transform to common lidar frame again, interpolated_poses is l2w for each point at its timestamp + interpolated_poses = torch.matmul( + pose_utils.inverse(l2w.unsqueeze(0)).float(), pose_utils.to4x4(interpolated_poses).float() + ) + # move channel from index 5 to 3 + pc = pc[..., [0, 1, 2, 5, 3, 4]] + if j == 1: # down_lidar + pc[..., 3] -= 32 + # add missing points + miss_points = self._get_missing_points( + pc, + interpolated_poses, + lidar_name, + dist_cutoff=0.0, + outlier_thresh=10.0, + ignore_regions=AV2_IGNORE_REGIONS[lidar_name], + ) + if j == 1: # down_lidar + miss_points[..., 3] += 32 + miss_points[..., :3] = transform_points( + miss_points[..., :3], down2up.unsqueeze(0).to(miss_points) + ) + # move channel back from index 3 to 5 + miss_points = miss_points[..., [0, 1, 2, 4, 5, 3]] + mp.append(miss_points.float()) + missing_points.append(torch.cat(mp, dim=0)) + + # transform all points to common lidar frame (up_lidar) + point_clouds = [ + torch.cat([pc_up, transform_points(pc_down, down2up.unsqueeze(0).to(pc_down))], dim=0) + for pc_up, pc_down in zip(point_clouds_up, point_clouds_down) + ] + if self.config.add_missing_points: + point_clouds = [torch.cat([pc, mp], dim=0) for pc, mp in zip(point_clouds, missing_points)] + point_clouds = [pc.float() for pc in point_clouds] + + lidars.lidar_to_worlds = lidars.lidar_to_worlds.float() + if lidars.metadata: + del lidars.metadata["down2up"] # we dont need this anymore + del lidars.metadata["poses_down"] # we dont need this anymore + return point_clouds + + def _get_actor_trajectories(self) -> List[Dict]: + """Returns a list of actor trajectories. + + Each trajectory is a dictionary with the following keys: + - poses: the poses of the actor (float32) + - timestamps: the timestamps of the actor (float64) + - dims: the dimensions of the actor, wlh order (float32) + - label: the label of the actor (str) + - stationary: whether the actor is stationary (bool) + - symmetric: whether the actor is expected to be symmetric (bool) + - deformable: whether the actor is expected to be deformable (e.g. pedestrian) + """ + trajs = [] + + # frames are annotated at the lidar timestamp + anno_times = self.av2.get_ordered_log_lidar_timestamps(self.config.sequence) + annos = read_feather(self.av2._data_dir / self.config.sequence / "annotations.feather") + unique_tracks = annos["track_uuid"].unique() + all_ego_poses = {t: self.av2.get_city_SE3_ego(self.config.sequence, t).transform_matrix for t in anno_times} + + for track_uuid in unique_tracks: + rows = annos[annos["track_uuid"] == track_uuid] + # TODO: how to handle this? + if len(rows) < 2: + # only keep tracks that have at least 2 annotations + continue + + first_row = rows.iloc[0] + w, l, h = first_row["width_m"], first_row["length_m"], first_row["height_m"] # noqa: E741 + wlh = np.array([w, l, h], dtype=np.float32) + label = first_row["category"] + # remove all objects that are not in the allowed categories + allowed_cats = ALLOWED_CATEGORIES + if self.config.include_deformable_actors: + allowed_cats = allowed_cats.union(DEFORMABLE_CATEGORIES) + if label not in ALLOWED_CATEGORIES: + continue + # check if the actor is symmetric + symmetric = label in SYMMETRIC_CATEGORIES + # check if the actor is deformable + deformable = label in DEFORMABLE_CATEGORIES + + rotations = quat_to_mat(rows.loc[:, ["qw", "qx", "qy", "qz"]].to_numpy()) + # rotate 90 deg around z counter clockwise to get the correct orientation + rotations = np.matmul(rotations, WLH_TO_LWH) + translation_xyz_m = rows.loc[:, ["tx_m", "ty_m", "tz_m"]].to_numpy() + # get the ego-vehicle poses at the annotation times as the annotations are relative to the ego-vehicle + ego_poses = np.array([all_ego_poses[t] for t in rows["timestamp_ns"]]) + # get the poses in the ego-vehicle frame + poses = np.zeros((len(rows), 4, 4), dtype=np.float32) + poses[:, :3, :3] = rotations + poses[:, :3, 3] = translation_xyz_m + poses[:, 3, 3] = 1 + + # transform the actor poses to the ego-vehicle frame + actor_world_poses = np.matmul(ego_poses, poses) + + # check if the actor is stationary, if it has moved more than 0.5m in any direction + dynamic = np.any(np.std(actor_world_poses[:, :3, 3], axis=0) > 0.5) + + # remove all static objects + if not dynamic: + continue + + trajs.append( + { + "poses": torch.tensor(actor_world_poses, dtype=torch.float32), + "timestamps": torch.tensor(rows["timestamp_ns"].to_numpy(), dtype=torch.float64) / 1e9, + "dims": torch.tensor(wlh, dtype=torch.float32), + "label": label, + "stationary": not dynamic, + "symmetric": symmetric, + "deformable": deformable, + } + ) + + return trajs + + def _generate_dataparser_outputs(self, split="train"): + datapath = self.config.data / "sensor" / self.config.split + self.av2 = AV2SensorDataLoader(datapath, datapath) + + assert self.config.sequence in self.av2.get_log_ids(), f"Sequence {self.config.sequence} not found in dataset." + out = super()._generate_dataparser_outputs(split=split) + + del self.av2 + return out diff --git a/nerfstudio/data/dataparsers/arkitscenes_dataparser.py b/nerfstudio/data/dataparsers/arkitscenes_dataparser.py deleted file mode 100644 index 8dbd7d8b..00000000 --- a/nerfstudio/data/dataparsers/arkitscenes_dataparser.py +++ /dev/null @@ -1,224 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -"""Data parser for ARKitScenes dataset""" -import math -from dataclasses import dataclass, field -from pathlib import Path -from typing import Literal, Type - -import cv2 -import numpy as np -import torch - -from nerfstudio.cameras import camera_utils -from nerfstudio.cameras.cameras import Cameras, CameraType -from nerfstudio.data.dataparsers.base_dataparser import DataParser, DataParserConfig, DataparserOutputs -from nerfstudio.data.scene_box import SceneBox - - -# Taken from https://github.com/apple/ARKitScenes/blob/main/threedod/benchmark_scripts/utils/tenFpsDataLoader.py -def traj_string_to_matrix(traj_string: str): - """convert traj_string into translation and rotation matrices - Args: - traj_string: A space-delimited file where each line represents a camera position at a particular timestamp. - The file has seven columns: - * Column 1: timestamp - * Columns 2-4: rotation (axis-angle representation in radians) - * Columns 5-7: translation (usually in meters) - Returns: - ts: translation matrix - Rt: rotation matrix - """ - tokens = traj_string.split() - assert len(tokens) == 7 - ts = tokens[0] - # Rotation in angle axis - angle_axis = [float(tokens[1]), float(tokens[2]), float(tokens[3])] - r_w_to_p, _ = cv2.Rodrigues(np.asarray(angle_axis)) # type: ignore - # Translation - t_w_to_p = np.asarray([float(tokens[4]), float(tokens[5]), float(tokens[6])]) - extrinsics = np.eye(4, 4) - extrinsics[:3, :3] = r_w_to_p - extrinsics[:3, -1] = t_w_to_p - Rt = np.linalg.inv(extrinsics) - return (ts, Rt) - - -@dataclass -class ARKitScenesDataParserConfig(DataParserConfig): - """ARKitScenes dataset config. - ARKitScenes dataset (http://github.com/apple/ARKitScenes) is a large-scale 3D dataset of indoor scenes. - This dataparser uses 3D detection subset of the ARKitScenes dataset. - """ - - _target: Type = field(default_factory=lambda: ARKitScenes) - """target class to instantiate""" - data: Path = Path("data/ARKitScenes/3dod/Validation/41069021") - """Path to ARKitScenes folder with densely extracted scenes.""" - scale_factor: float = 1.0 - """How much to scale the camera origins by.""" - scene_scale: float = 1.0 - """How much to scale the region of interest by.""" - center_method: Literal["poses", "focus", "none"] = "poses" - """The method to use to center the poses.""" - auto_scale_poses: bool = True - """Whether to automatically scale the poses to fit in +/- 1 bounding box.""" - train_split_fraction: float = 0.9 - """The fraction of images to use for training. The remaining images are for eval.""" - depth_unit_scale_factor: float = 1e-3 - """Scales the depth values to meters. Default value is 0.001 for a millimeter to meter conversion.""" - - -@dataclass -class ARKitScenes(DataParser): - """ARKitScenes DatasetParser""" - - config: ARKitScenesDataParserConfig - - def _generate_dataparser_outputs(self, split="train"): - video_id = self.config.data.name - - image_dir = self.config.data / f"{video_id}_frames" / "lowres_wide" - depth_dir = self.config.data / f"{video_id}_frames" / "lowres_depth" - intrinsics_dir = self.config.data / f"{video_id}_frames" / "lowres_wide_intrinsics" - pose_file = self.config.data / f"{video_id}_frames" / "lowres_wide.traj" - - frame_ids = [x.name for x in sorted(depth_dir.iterdir())] - frame_ids = [x.split(".png")[0].split("_")[1] for x in frame_ids] - frame_ids.sort() - - poses_from_traj = {} - with open(pose_file, "r", encoding="utf-8") as f: - traj = f.readlines() - - for line in traj: - poses_from_traj[f"{round(float(line.split(' ')[0]), 3):.3f}"] = np.array( - traj_string_to_matrix(line)[1].tolist() - ) - - image_filenames, depth_filenames, intrinsics, poses = [], [], [], [] - w, h, _, _, _, _ = np.loadtxt(list(sorted(intrinsics_dir.iterdir()))[0]) # Get image size from first intrinsic - - for frame_id in frame_ids: - intrinsic = self._get_intrinsic(intrinsics_dir, frame_id, video_id) - frame_pose = self._get_pose(frame_id, poses_from_traj) - - intrinsics.append(intrinsic) - image_filenames.append(image_dir / f"{video_id}_{frame_id}.png") - depth_filenames.append(depth_dir / f"{video_id}_{frame_id}.png") - poses.append(frame_pose) - - # filter image_filenames and poses based on train/eval split percentage - num_images = len(image_filenames) - num_train_images = math.ceil(num_images * self.config.train_split_fraction) - num_eval_images = num_images - num_train_images - i_all = np.arange(num_images) - i_train = np.linspace( - 0, num_images - 1, num_train_images, dtype=int - ) # equally spaced training images starting and ending at 0 and num_images-1 - i_eval = np.setdiff1d(i_all, i_train) # eval images are the remaining images - assert len(i_eval) == num_eval_images - if split == "train": - indices = i_train - elif split in ["val", "test"]: - indices = i_eval - else: - raise ValueError(f"Unknown dataparser split {split}") - - poses = torch.from_numpy(np.stack(poses).astype(np.float32)) - intrinsics = torch.from_numpy(np.stack(intrinsics).astype(np.float32)) - - poses, transform_matrix = camera_utils.auto_orient_and_center_poses( - poses, - method="none", - center_method=self.config.center_method, - ) - - # Scale poses - scale_factor = 1.0 - if self.config.auto_scale_poses: - scale_factor /= float(torch.max(torch.abs(poses[:, :3, 3]))) - scale_factor *= self.config.scale_factor - - poses[:, :3, 3] *= scale_factor - - # Choose image_filenames and poses based on split, but after auto orient and scaling the poses. - image_filenames = [image_filenames[i] for i in indices] - depth_filenames = [depth_filenames[i] for i in indices] if len(depth_filenames) > 0 else [] - intrinsics = intrinsics[indices.tolist()] - poses = poses[indices.tolist()] - - # in x,y,z order - # assumes that the scene is centered at the origin - aabb_scale = self.config.scene_scale - scene_box = SceneBox( - aabb=torch.tensor( - [[-aabb_scale, -aabb_scale, -aabb_scale], [aabb_scale, aabb_scale, aabb_scale]], dtype=torch.float32 - ) - ) - - cameras = Cameras( - fx=intrinsics[:, 0, 0], - fy=intrinsics[:, 1, 1], - cx=intrinsics[:, 0, 2], - cy=intrinsics[:, 1, 2], - height=int(h), - width=int(w), - camera_to_worlds=poses[:, :3, :4], - camera_type=CameraType.PERSPECTIVE, - ) - - dataparser_outputs = DataparserOutputs( - image_filenames=image_filenames, - cameras=cameras, - scene_box=scene_box, - dataparser_scale=scale_factor, - dataparser_transform=transform_matrix, - metadata={ - "depth_filenames": depth_filenames if len(depth_filenames) > 0 else None, - "depth_unit_scale_factor": self.config.depth_unit_scale_factor, - }, - ) - return dataparser_outputs - - @staticmethod - def _get_intrinsic(intrinsics_dir: Path, frame_id: str, video_id: str): - intrinsic_fn = intrinsics_dir / f"{video_id}_{frame_id}.pincam" - - if not intrinsic_fn.exists(): - intrinsic_fn = intrinsics_dir / f"{video_id}_{float(frame_id) - 0.001:.3f}.pincam" - - if not intrinsic_fn.exists(): - intrinsic_fn = intrinsics_dir / f"{video_id}_{float(frame_id) + 0.001:.3f}.pincam" - - _, _, fx, fy, hw, hh = np.loadtxt(intrinsic_fn) - intrinsic = np.asarray([[fx, 0, hw], [0, fy, hh], [0, 0, 1]]) - return intrinsic - - @staticmethod - def _get_pose(frame_id: str, poses_from_traj: dict): - frame_pose = None - if str(frame_id) in poses_from_traj: - frame_pose = np.array(poses_from_traj[str(frame_id)]) - else: - for my_key in poses_from_traj: - if abs(float(frame_id) - float(my_key)) < 0.005: - frame_pose = np.array(poses_from_traj[str(my_key)]) - - assert frame_pose is not None - frame_pose[0:3, 1:3] *= -1 - frame_pose = frame_pose[np.array([1, 0, 2, 3]), :] - frame_pose[2, :] *= -1 - return frame_pose diff --git a/nerfstudio/data/dataparsers/base_dataparser.py b/nerfstudio/data/dataparsers/base_dataparser.py index 5cf1e6bd..9ec52eea 100644 --- a/nerfstudio/data/dataparsers/base_dataparser.py +++ b/nerfstudio/data/dataparsers/base_dataparser.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -66,9 +67,13 @@ class DataparserOutputs: Will be processed by the InputDataset to create any additional tensors that may be required. """ dataparser_transform: Float[Tensor, "3 4"] = torch.eye(4)[:3, :] - """Transform applied by the dataparser.""" + """Transform applied by the dataparser to the entire scene.""" + actor_transform: Float[Tensor, "3 4"] = torch.eye(4)[:3, :] + """Transform applied by the dataparser to each actor's local frame.""" dataparser_scale: float = 1.0 """Scale applied by the dataparser.""" + time_offset: float = 0.0 + """Time offset (min time).""" def as_dict(self) -> dict: """Returns the dataclass as a dictionary.""" @@ -84,6 +89,7 @@ def save_dataparser_transform(self, path: Path): data = { "transform": self.dataparser_transform.tolist(), "scale": float(self.dataparser_scale), + "time-offset": self.time_offset, } if not path.parent.exists(): path.parent.mkdir(parents=True) diff --git a/nerfstudio/data/dataparsers/blender_dataparser.py b/nerfstudio/data/dataparsers/blender_dataparser.py deleted file mode 100644 index 64ccf13d..00000000 --- a/nerfstudio/data/dataparsers/blender_dataparser.py +++ /dev/null @@ -1,105 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -"""Data parser for blender dataset""" -from __future__ import annotations - -from dataclasses import dataclass, field -from pathlib import Path -from typing import Type - -import imageio -import numpy as np -import torch - -from nerfstudio.cameras.cameras import Cameras, CameraType -from nerfstudio.data.dataparsers.base_dataparser import DataParser, DataParserConfig, DataparserOutputs -from nerfstudio.data.scene_box import SceneBox -from nerfstudio.utils.colors import get_color -from nerfstudio.utils.io import load_from_json - - -@dataclass -class BlenderDataParserConfig(DataParserConfig): - """Blender dataset parser config""" - - _target: Type = field(default_factory=lambda: Blender) - """target class to instantiate""" - data: Path = Path("data/blender/lego") - """Directory specifying location of data.""" - scale_factor: float = 1.0 - """How much to scale the camera origins by.""" - alpha_color: str = "white" - """alpha color of background""" - - -@dataclass -class Blender(DataParser): - """Blender Dataset - Some of this code comes from https://github.com/yenchenlin/nerf-pytorch/blob/master/load_blender.py#L37. - """ - - config: BlenderDataParserConfig - - def __init__(self, config: BlenderDataParserConfig): - super().__init__(config=config) - self.data: Path = config.data - self.scale_factor: float = config.scale_factor - self.alpha_color = config.alpha_color - if self.alpha_color is not None: - self.alpha_color_tensor = get_color(self.alpha_color) - else: - self.alpha_color_tensor = None - - def _generate_dataparser_outputs(self, split="train"): - meta = load_from_json(self.data / f"transforms_{split}.json") - image_filenames = [] - poses = [] - for frame in meta["frames"]: - fname = self.data / Path(frame["file_path"].replace("./", "") + ".png") - image_filenames.append(fname) - poses.append(np.array(frame["transform_matrix"])) - poses = np.array(poses).astype(np.float32) - - img_0 = imageio.v2.imread(image_filenames[0]) - image_height, image_width = img_0.shape[:2] - camera_angle_x = float(meta["camera_angle_x"]) - focal_length = 0.5 * image_width / np.tan(0.5 * camera_angle_x) - - cx = image_width / 2.0 - cy = image_height / 2.0 - camera_to_world = torch.from_numpy(poses[:, :3]) # camera to world transform - - # in x,y,z order - camera_to_world[..., 3] *= self.scale_factor - scene_box = SceneBox(aabb=torch.tensor([[-1.5, -1.5, -1.5], [1.5, 1.5, 1.5]], dtype=torch.float32)) - - cameras = Cameras( - camera_to_worlds=camera_to_world, - fx=focal_length, - fy=focal_length, - cx=cx, - cy=cy, - camera_type=CameraType.PERSPECTIVE, - ) - - dataparser_outputs = DataparserOutputs( - image_filenames=image_filenames, - cameras=cameras, - alpha_color=self.alpha_color_tensor, - scene_box=scene_box, - dataparser_scale=self.scale_factor, - ) - - return dataparser_outputs diff --git a/nerfstudio/data/dataparsers/colmap_dataparser.py b/nerfstudio/data/dataparsers/colmap_dataparser.py deleted file mode 100644 index 5f5917e7..00000000 --- a/nerfstudio/data/dataparsers/colmap_dataparser.py +++ /dev/null @@ -1,548 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. -""" Data parser for nerfstudio datasets. """ - -from __future__ import annotations - -import sys -from dataclasses import dataclass, field -from functools import partial -from pathlib import Path -from typing import List, Literal, Optional, Type - -import numpy as np -import torch -from PIL import Image -from rich.prompt import Confirm - -from nerfstudio.cameras import camera_utils -from nerfstudio.cameras.cameras import CAMERA_MODEL_TO_TYPE, Cameras -from nerfstudio.data.dataparsers.base_dataparser import DataParser, DataParserConfig, DataparserOutputs -from nerfstudio.data.scene_box import SceneBox -from nerfstudio.data.utils import colmap_parsing_utils as colmap_utils -from nerfstudio.data.utils.dataparsers_utils import ( - get_train_eval_split_all, - get_train_eval_split_filename, - get_train_eval_split_fraction, - get_train_eval_split_interval, -) -from nerfstudio.process_data.colmap_utils import parse_colmap_camera_params -from nerfstudio.utils.rich_utils import CONSOLE, status -from nerfstudio.utils.scripts import run_command - -MAX_AUTO_RESOLUTION = 1600 - - -@dataclass -class ColmapDataParserConfig(DataParserConfig): - """Nerfstudio dataset config""" - - _target: Type = field(default_factory=lambda: ColmapDataParser) - """target class to instantiate""" - data: Path = Path() - """Directory or explicit json file path specifying location of data.""" - scale_factor: float = 1.0 - """How much to scale the camera origins by.""" - downscale_factor: Optional[int] = None - """How much to downscale images. If not set, images are chosen such that the max dimension is <1600px.""" - scene_scale: float = 1.0 - """How much to scale the region of interest by.""" - orientation_method: Literal["pca", "up", "vertical", "none"] = "up" - """The method to use for orientation.""" - center_method: Literal["poses", "focus", "none"] = "poses" - """The method to use to center the poses.""" - auto_scale_poses: bool = True - """Whether to automatically scale the poses to fit in +/- 1 bounding box.""" - assume_colmap_world_coordinate_convention: bool = True - """Colmap optimized world often have y direction of the first camera pointing towards down direction, - while nerfstudio world set z direction to be up direction for viewer. Therefore, we usually need to apply an extra - transform when orientation_method=none. This parameter has no effects if orientation_method is set other than none. - When this parameter is set to False, no extra transform is applied when reading data from colmap. - """ - eval_mode: Literal["fraction", "filename", "interval", "all"] = "interval" - """ - The method to use for splitting the dataset into train and eval. - Fraction splits based on a percentage for train and the remaining for eval. - Filename splits based on filenames containing train/eval. - Interval uses every nth frame for eval (used by most academic papers, e.g. MipNerf360, GSplat). - All uses all the images for any split. - """ - train_split_fraction: float = 0.9 - """The fraction of images to use for training. The remaining images are for eval.""" - eval_interval: int = 8 - """The interval between frames to use for eval. Only used when eval_mode is eval-interval.""" - depth_unit_scale_factor: float = 1e-3 - """Scales the depth values to meters. Default value is 0.001 for a millimeter to meter conversion.""" - - images_path: Path = Path("images") - """Path to images directory relative to the data path.""" - masks_path: Optional[Path] = None - """Path to masks directory. If not set, masks are not loaded.""" - depths_path: Optional[Path] = None - """Path to depth maps directory. If not set, depths are not loaded.""" - colmap_path: Path = Path("colmap/sparse/0") - """Path to the colmap reconstruction directory relative to the data path.""" - load_3D_points: bool = True - """Whether to load the 3D points from the colmap reconstruction. This is helpful for Gaussian splatting and - generally unused otherwise, but it's typically harmless so we default to True.""" - max_2D_matches_per_3D_point: int = 0 - """Maximum number of 2D matches per 3D point. If set to -1, all 2D matches are loaded. If set to 0, no 2D matches are loaded.""" - - -class ColmapDataParser(DataParser): - """COLMAP DatasetParser. - Expects a folder with the following structure: - images/ # folder containing images used to create the COLMAP model - sparse/0 # folder containing the COLMAP reconstruction (either TEXT or BINARY format) - masks/ # (OPTIONAL) folder containing masks for each image - depths/ # (OPTIONAL) folder containing depth maps for each image - The paths can be different and can be specified in the config. (e.g., sparse/0 -> sparse) - Currently, most COLMAP camera models are supported except for the FULL_OPENCV and THIN_PRISM_FISHEYE models. - - The dataparser loads the downscaled images from folders with `_{downscale_factor}` suffix. - If these folders do not exist, the user can choose to automatically downscale the images and - create these folders. - - The loader is compatible with the datasets processed using the ns-process-data script and - can be used as a drop-in replacement. It further supports datasets like Mip-NeRF 360 (although - in the case of Mip-NeRF 360 the downsampled images may have a different resolution because they - use different rounding when computing the image resolution). - """ - - config: ColmapDataParserConfig - - def __init__(self, config: ColmapDataParserConfig): - super().__init__(config) - self.config = config - self._downscale_factor = None - - def _get_all_images_and_cameras(self, recon_dir: Path): - if (recon_dir / "cameras.txt").exists(): - cam_id_to_camera = colmap_utils.read_cameras_text(recon_dir / "cameras.txt") - im_id_to_image = colmap_utils.read_images_text(recon_dir / "images.txt") - elif (recon_dir / "cameras.bin").exists(): - cam_id_to_camera = colmap_utils.read_cameras_binary(recon_dir / "cameras.bin") - im_id_to_image = colmap_utils.read_images_binary(recon_dir / "images.bin") - else: - raise ValueError(f"Could not find cameras.txt or cameras.bin in {recon_dir}") - - cameras = {} - frames = [] - camera_model = None - - # Parse cameras - for cam_id, cam_data in cam_id_to_camera.items(): - cameras[cam_id] = parse_colmap_camera_params(cam_data) - - # Parse frames - # we want to sort all images based on im_id - ordered_im_id = sorted(im_id_to_image.keys()) - for im_id in ordered_im_id: - im_data = im_id_to_image[im_id] - # NB: COLMAP uses Eigen / scalar-first quaternions - # * https://colmap.github.io/format.html - # * https://github.com/colmap/colmap/blob/bf3e19140f491c3042bfd85b7192ef7d249808ec/src/base/pose.cc#L75 - # the `rotation_matrix()` handles that format for us. - rotation = colmap_utils.qvec2rotmat(im_data.qvec) - translation = im_data.tvec.reshape(3, 1) - w2c = np.concatenate([rotation, translation], 1) - w2c = np.concatenate([w2c, np.array([[0, 0, 0, 1]])], 0) - c2w = np.linalg.inv(w2c) - # Convert from COLMAP's camera coordinate system (OpenCV) to ours (OpenGL) - c2w[0:3, 1:3] *= -1 - if self.config.assume_colmap_world_coordinate_convention: - # world coordinate transform: map colmap gravity guess (-y) to nerfstudio convention (+z) - c2w = c2w[np.array([0, 2, 1, 3]), :] - c2w[2, :] *= -1 - - frame = { - "file_path": (self.config.data / self.config.images_path / im_data.name).as_posix(), - "transform_matrix": c2w, - "colmap_im_id": im_id, - } - frame.update(cameras[im_data.camera_id]) - if self.config.masks_path is not None: - frame["mask_path"] = ( - (self.config.data / self.config.masks_path / im_data.name).with_suffix(".png").as_posix() - ) - if self.config.depths_path is not None: - frame["depth_path"] = ( - (self.config.data / self.config.depths_path / im_data.name).with_suffix(".png").as_posix() - ) - frames.append(frame) - if camera_model is not None: - assert camera_model == frame["camera_model"], "Multiple camera models are not supported" - else: - camera_model = frame["camera_model"] - - out = {} - out["frames"] = frames - if self.config.assume_colmap_world_coordinate_convention: - # world coordinate transform: map colmap gravity guess (-y) to nerfstudio convention (+z) - applied_transform = np.eye(4)[:3, :] - applied_transform = applied_transform[np.array([0, 2, 1]), :] - applied_transform[2, :] *= -1 - out["applied_transform"] = applied_transform.tolist() - out["camera_model"] = camera_model - assert len(frames) > 0, "No images found in the colmap model" - return out - - def _get_image_indices(self, image_filenames, split): - has_split_files_spec = ( - (self.config.data / "train_list.txt").exists() - or (self.config.data / "test_list.txt").exists() - or (self.config.data / "validation_list.txt").exists() - ) - if (self.config.data / f"{split}_list.txt").exists(): - CONSOLE.log(f"Using {split}_list.txt to get indices for split {split}.") - with (self.config.data / f"{split}_list.txt").open("r", encoding="utf8") as f: - filenames = f.read().splitlines() - # Validate split first - split_filenames = set(self.config.data / self.config.images_path / x for x in filenames) - unmatched_filenames = split_filenames.difference(image_filenames) - if unmatched_filenames: - raise RuntimeError( - f"Some filenames for split {split} were not found: {set(map(str, unmatched_filenames))}." - ) - - indices = [i for i, path in enumerate(image_filenames) if path in split_filenames] - CONSOLE.log(f"[yellow] Dataset is overriding {split}_indices to {indices}") - indices = np.array(indices, dtype=np.int32) - elif has_split_files_spec: - raise RuntimeError(f"The dataset's list of filenames for split {split} is missing.") - else: - # find train and eval indices based on the eval_mode specified - if self.config.eval_mode == "fraction": - i_train, i_eval = get_train_eval_split_fraction(image_filenames, self.config.train_split_fraction) - elif self.config.eval_mode == "filename": - i_train, i_eval = get_train_eval_split_filename(image_filenames) - elif self.config.eval_mode == "interval": - i_train, i_eval = get_train_eval_split_interval(image_filenames, self.config.eval_interval) - elif self.config.eval_mode == "all": - CONSOLE.log( - "[yellow] Be careful with '--eval-mode=all'. If using camera optimization, the cameras may diverge in the current implementation, giving unpredictable results." - ) - i_train, i_eval = get_train_eval_split_all(image_filenames) - else: - raise ValueError(f"Unknown eval mode {self.config.eval_mode}") - - if split == "train": - indices = i_train - elif split in ["val", "test"]: - indices = i_eval - else: - raise ValueError(f"Unknown dataparser split {split}") - return indices - - def _generate_dataparser_outputs(self, split: str = "train", **kwargs): - assert self.config.data.exists(), f"Data directory {self.config.data} does not exist." - colmap_path = self.config.data / self.config.colmap_path - assert colmap_path.exists(), f"Colmap path {colmap_path} does not exist." - - meta = self._get_all_images_and_cameras(colmap_path) - camera_type = CAMERA_MODEL_TO_TYPE[meta["camera_model"]] - - image_filenames = [] - mask_filenames = [] - depth_filenames = [] - poses = [] - - fx = [] - fy = [] - cx = [] - cy = [] - height = [] - width = [] - distort = [] - - for frame in meta["frames"]: - fx.append(float(frame["fl_x"])) - fy.append(float(frame["fl_y"])) - cx.append(float(frame["cx"])) - cy.append(float(frame["cy"])) - height.append(int(frame["h"])) - width.append(int(frame["w"])) - distort.append( - camera_utils.get_distortion_params( - k1=float(frame["k1"]) if "k1" in frame else 0.0, - k2=float(frame["k2"]) if "k2" in frame else 0.0, - k3=float(frame["k3"]) if "k3" in frame else 0.0, - k4=float(frame["k4"]) if "k4" in frame else 0.0, - p1=float(frame["p1"]) if "p1" in frame else 0.0, - p2=float(frame["p2"]) if "p2" in frame else 0.0, - ) - ) - - image_filenames.append(Path(frame["file_path"])) - poses.append(frame["transform_matrix"]) - if "mask_path" in frame: - mask_filenames.append(Path(frame["mask_path"])) - if "depth_path" in frame: - depth_filenames.append(Path(frame["depth_path"])) - - assert len(mask_filenames) == 0 or (len(mask_filenames) == len(image_filenames)), """ - Different number of image and mask filenames. - You should check that mask_path is specified for every frame (or zero frames) in transforms.json. - """ - assert len(depth_filenames) == 0 or (len(depth_filenames) == len(image_filenames)), """ - Different number of image and depth filenames. - You should check that depth_file_path is specified for every frame (or zero frames) in transforms.json. - """ - poses = torch.from_numpy(np.array(poses).astype(np.float32)) - poses, transform_matrix = camera_utils.auto_orient_and_center_poses( - poses, - method=self.config.orientation_method, - center_method=self.config.center_method, - ) - - # Scale poses - scale_factor = 1.0 - if self.config.auto_scale_poses: - scale_factor /= float(torch.max(torch.abs(poses[:, :3, 3]))) - scale_factor *= self.config.scale_factor - poses[:, :3, 3] *= scale_factor - - # Choose image_filenames and poses based on split, but after auto orient and scaling the poses. - indices = self._get_image_indices(image_filenames, split) - image_filenames, mask_filenames, depth_filenames, downscale_factor = self._setup_downscale_factor( - image_filenames, mask_filenames, depth_filenames - ) - - image_filenames = [image_filenames[i] for i in indices] - mask_filenames = [mask_filenames[i] for i in indices] if len(mask_filenames) > 0 else [] - depth_filenames = [depth_filenames[i] for i in indices] if len(depth_filenames) > 0 else [] - - idx_tensor = torch.tensor(indices, dtype=torch.long) - poses = poses[idx_tensor] - - # in x,y,z order - # assumes that the scene is centered at the origin - aabb_scale = self.config.scene_scale - scene_box = SceneBox( - aabb=torch.tensor( - [[-aabb_scale, -aabb_scale, -aabb_scale], [aabb_scale, aabb_scale, aabb_scale]], dtype=torch.float32 - ) - ) - - fx = torch.tensor(fx, dtype=torch.float32)[idx_tensor] - fy = torch.tensor(fy, dtype=torch.float32)[idx_tensor] - cx = torch.tensor(cx, dtype=torch.float32)[idx_tensor] - cy = torch.tensor(cy, dtype=torch.float32)[idx_tensor] - height = torch.tensor(height, dtype=torch.int32)[idx_tensor] - width = torch.tensor(width, dtype=torch.int32)[idx_tensor] - distortion_params = torch.stack(distort, dim=0)[idx_tensor] - - cameras = Cameras( - fx=fx, - fy=fy, - cx=cx, - cy=cy, - distortion_params=distortion_params, - height=height, - width=width, - camera_to_worlds=poses[:, :3, :4], - camera_type=camera_type, - ) - - cameras.rescale_output_resolution(scaling_factor=1.0 / downscale_factor) - - if "applied_transform" in meta: - applied_transform = torch.tensor(meta["applied_transform"], dtype=transform_matrix.dtype) - transform_matrix = transform_matrix @ torch.cat( - [applied_transform, torch.tensor([[0, 0, 0, 1]], dtype=transform_matrix.dtype)], 0 - ) - if "applied_scale" in meta: - applied_scale = float(meta["applied_scale"]) - scale_factor *= applied_scale - - metadata = {} - if self.config.load_3D_points: - # Load 3D points - metadata.update(self._load_3D_points(colmap_path, transform_matrix, scale_factor)) - - dataparser_outputs = DataparserOutputs( - image_filenames=image_filenames, - cameras=cameras, - scene_box=scene_box, - mask_filenames=mask_filenames if len(mask_filenames) > 0 else None, - dataparser_scale=scale_factor, - dataparser_transform=transform_matrix, - metadata={ - "depth_filenames": depth_filenames if len(depth_filenames) > 0 else None, - "depth_unit_scale_factor": self.config.depth_unit_scale_factor, - **metadata, - }, - ) - return dataparser_outputs - - def _load_3D_points(self, colmap_path: Path, transform_matrix: torch.Tensor, scale_factor: float): - if (colmap_path / "points3D.bin").exists(): - colmap_points = colmap_utils.read_points3D_binary(colmap_path / "points3D.bin") - elif (colmap_path / "points3D.txt").exists(): - colmap_points = colmap_utils.read_points3D_text(colmap_path / "points3D.txt") - else: - raise ValueError(f"Could not find points3D.txt or points3D.bin in {colmap_path}") - points3D = torch.from_numpy(np.array([p.xyz for p in colmap_points.values()], dtype=np.float32)) - points3D = ( - torch.cat( - ( - points3D, - torch.ones_like(points3D[..., :1]), - ), - -1, - ) - @ transform_matrix.T - ) - points3D *= scale_factor - - # Load point colours - points3D_rgb = torch.from_numpy(np.array([p.rgb for p in colmap_points.values()], dtype=np.uint8)) - points3D_num_points = torch.tensor([len(p.image_ids) for p in colmap_points.values()], dtype=torch.int64) - out = { - "points3D_xyz": points3D, - "points3D_rgb": points3D_rgb, - "points3D_error": torch.from_numpy(np.array([p.error for p in colmap_points.values()], dtype=np.float32)), - "points3D_num_points2D": points3D_num_points, - } - if self.config.max_2D_matches_per_3D_point != 0: - if (colmap_path / "images.txt").exists(): - im_id_to_image = colmap_utils.read_images_text(colmap_path / "images.txt") - elif (colmap_path / "images.bin").exists(): - im_id_to_image = colmap_utils.read_images_binary(colmap_path / "images.bin") - else: - raise ValueError(f"Could not find images.txt or images.bin in {colmap_path}") - downscale_factor = self._downscale_factor - max_num_points = int(torch.max(points3D_num_points).item()) - if self.config.max_2D_matches_per_3D_point > 0: - max_num_points = min(max_num_points, self.config.max_2D_matches_per_3D_point) - points3D_image_ids = [] - points3D_image_xy = [] - for p in colmap_points.values(): - nids = np.array(p.image_ids, dtype=np.int64) - nxy_ids = np.array(p.point2D_idxs, dtype=np.int32) - if self.config.max_2D_matches_per_3D_point != -1: - # Randomly sample 2D matches - idxs = np.argsort(p.error)[: self.config.max_2D_matches_per_3D_point] - nids = nids[idxs] - nxy_ids = nxy_ids[idxs] - nxy = [im_id_to_image[im_id].xys[pt_idx] for im_id, pt_idx in zip(nids, nxy_ids)] - nxy = torch.from_numpy(np.stack(nxy).astype(np.float32)) - nids = torch.from_numpy(nids) - assert len(nids.shape) == 1 - assert len(nxy.shape) == 2 - points3D_image_ids.append( - torch.cat((nids, torch.full((max_num_points - len(nids),), -1, dtype=torch.int64))) - ) - points3D_image_xy.append( - torch.cat((nxy, torch.full((max_num_points - len(nxy), nxy.shape[-1]), 0, dtype=torch.float32))) - / downscale_factor - ) - out["points3D_image_ids"] = torch.stack(points3D_image_ids, dim=0) - out["points3D_points2D_xy"] = torch.stack(points3D_image_xy, dim=0) - return out - - def _downscale_images(self, paths, get_fname, downscale_factor: int, nearest_neighbor: bool = False): - with status(msg="[bold yellow]Downscaling images...", spinner="growVertical"): - assert downscale_factor > 1 - assert isinstance(downscale_factor, int) - # Using %05d ffmpeg commands appears to be unreliable (skips images). - for path in paths: - nn_flag = "" if not nearest_neighbor else ":flags=neighbor" - path_out = get_fname(path) - path_out.parent.mkdir(parents=True, exist_ok=True) - ffmpeg_cmd = [ - f'ffmpeg -y -noautorotate -i "{path}" ', - f"-q:v 2 -vf scale=iw/{downscale_factor}:ih/{downscale_factor}{nn_flag} ", - f'"{path_out}"', - ] - ffmpeg_cmd = " ".join(ffmpeg_cmd) - run_command(ffmpeg_cmd) - - CONSOLE.log("[bold green]:tada: Done downscaling images.") - - def _setup_downscale_factor( - self, image_filenames: List[Path], mask_filenames: List[Path], depth_filenames: List[Path] - ): - """ - Setup the downscale factor for the dataset. This is used to downscale the images and cameras. - """ - - def get_fname(parent: Path, filepath: Path) -> Path: - """Returns transformed file name when downscale factor is applied""" - rel_part = filepath.relative_to(parent) - base_part = parent.parent / (str(parent.name) + f"_{self._downscale_factor}") - return base_part / rel_part - - filepath = next(iter(image_filenames)) - if self._downscale_factor is None: - if self.config.downscale_factor is None: - test_img = Image.open(filepath) - h, w = test_img.size - max_res = max(h, w) - df = 0 - while True: - if (max_res / 2 ** (df)) <= MAX_AUTO_RESOLUTION: - break - df += 1 - - self._downscale_factor = 2**df - CONSOLE.log(f"Using image downscale factor of {self._downscale_factor}") - else: - self._downscale_factor = self.config.downscale_factor - if self._downscale_factor > 1 and not all( - get_fname(self.config.data / self.config.images_path, fp).parent.exists() for fp in image_filenames - ): - # Downscaled images not found - # Ask if user wants to downscale the images automatically here - CONSOLE.print( - f"[bold red]Downscaled images do not exist for factor of {self._downscale_factor}.[/bold red]" - ) - if Confirm.ask("\nWould you like to downscale the images now?", default=False, console=CONSOLE): - # Install the method - self._downscale_images( - image_filenames, - partial(get_fname, self.config.data / self.config.images_path), - self._downscale_factor, - nearest_neighbor=False, - ) - if len(mask_filenames) > 0: - assert self.config.masks_path is not None - self._downscale_images( - mask_filenames, - partial(get_fname, self.config.data / self.config.masks_path), - self._downscale_factor, - nearest_neighbor=True, - ) - if len(depth_filenames) > 0: - assert self.config.depths_path is not None - self._downscale_images( - depth_filenames, - partial(get_fname, self.config.data / self.config.depths_path), - self._downscale_factor, - nearest_neighbor=True, - ) - else: - sys.exit(1) - - # Return transformed filenames - if self._downscale_factor > 1: - image_filenames = [get_fname(self.config.data / self.config.images_path, fp) for fp in image_filenames] - if len(mask_filenames) > 0: - assert self.config.masks_path is not None - mask_filenames = [get_fname(self.config.data / self.config.masks_path, fp) for fp in mask_filenames] - if len(depth_filenames) > 0: - assert self.config.depths_path is not None - depth_filenames = [get_fname(self.config.data / self.config.depths_path, fp) for fp in depth_filenames] - assert isinstance(self._downscale_factor, int) - return image_filenames, mask_filenames, depth_filenames, self._downscale_factor diff --git a/nerfstudio/data/dataparsers/dnerf_dataparser.py b/nerfstudio/data/dataparsers/dnerf_dataparser.py deleted file mode 100644 index 478b1fc3..00000000 --- a/nerfstudio/data/dataparsers/dnerf_dataparser.py +++ /dev/null @@ -1,109 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -"""Data parser for blender dataset""" -from __future__ import annotations - -from dataclasses import dataclass, field -from pathlib import Path -from typing import Type - -import imageio -import numpy as np -import torch - -from nerfstudio.cameras.cameras import Cameras, CameraType -from nerfstudio.data.dataparsers.base_dataparser import DataParser, DataParserConfig, DataparserOutputs -from nerfstudio.data.scene_box import SceneBox -from nerfstudio.utils.colors import get_color -from nerfstudio.utils.io import load_from_json - - -@dataclass -class DNeRFDataParserConfig(DataParserConfig): - """D-NeRF dataset parser config""" - - _target: Type = field(default_factory=lambda: DNeRF) - """target class to instantiate""" - data: Path = Path("data/dnerf/lego") - """Directory specifying location of data.""" - scale_factor: float = 1.0 - """How much to scale the camera origins by.""" - alpha_color: str = "white" - """alpha color of background""" - - -@dataclass -class DNeRF(DataParser): - """DNeRF Dataset""" - - config: DNeRFDataParserConfig - includes_time: bool = True - - def __init__(self, config: DNeRFDataParserConfig): - super().__init__(config=config) - self.data: Path = config.data - self.scale_factor: float = config.scale_factor - self.alpha_color = config.alpha_color - - def _generate_dataparser_outputs(self, split="train"): - if self.alpha_color is not None: - alpha_color_tensor = get_color(self.alpha_color) - else: - alpha_color_tensor = None - - meta = load_from_json(self.data / f"transforms_{split}.json") - image_filenames = [] - poses = [] - times = [] - for frame in meta["frames"]: - fname = self.data / Path(frame["file_path"].replace("./", "") + ".png") - image_filenames.append(fname) - poses.append(np.array(frame["transform_matrix"])) - times.append(frame["time"]) - poses = np.array(poses).astype(np.float32) - times = torch.tensor(times, dtype=torch.float32) - - img_0 = imageio.imread(image_filenames[0]) - image_height, image_width = img_0.shape[:2] - camera_angle_x = float(meta["camera_angle_x"]) - focal_length = 0.5 * image_width / np.tan(0.5 * camera_angle_x) - - cx = image_width / 2.0 - cy = image_height / 2.0 - camera_to_world = torch.from_numpy(poses[:, :3]) # camera to world transform - - # in x,y,z order - camera_to_world[..., 3] *= self.scale_factor - scene_box = SceneBox(aabb=torch.tensor([[-1.5, -1.5, -1.5], [1.5, 1.5, 1.5]], dtype=torch.float32)) - - cameras = Cameras( - camera_to_worlds=camera_to_world, - fx=focal_length, - fy=focal_length, - cx=cx, - cy=cy, - camera_type=CameraType.PERSPECTIVE, - times=times, - ) - - dataparser_outputs = DataparserOutputs( - image_filenames=image_filenames, - cameras=cameras, - alpha_color=alpha_color_tensor, - scene_box=scene_box, - dataparser_scale=self.scale_factor, - ) - - return dataparser_outputs diff --git a/nerfstudio/data/dataparsers/dycheck_dataparser.py b/nerfstudio/data/dataparsers/dycheck_dataparser.py deleted file mode 100644 index 90f5e9e9..00000000 --- a/nerfstudio/data/dataparsers/dycheck_dataparser.py +++ /dev/null @@ -1,340 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -"""Data parser for DyCheck (https://arxiv.org/abs/2210.13445) dataset of `iphone` subset""" -from __future__ import annotations - -import math -from dataclasses import dataclass, field -from pathlib import Path -from typing import Dict, List, Tuple, Type - -import cv2 -import numpy as np -import torch - -from nerfstudio.cameras.cameras import Cameras, CameraType -from nerfstudio.data.dataparsers.base_dataparser import DataParser, DataParserConfig, DataparserOutputs -from nerfstudio.data.scene_box import SceneBox -from nerfstudio.utils.colors import get_color -from nerfstudio.utils.io import load_from_json -from nerfstudio.utils.rich_utils import CONSOLE - - -def downscale(img, scale: int) -> np.ndarray: - """Function from DyCheck's repo. Downscale an image. - - Args: - img: Input image - scale: Factor of the scale - - Returns: - New image - """ - if scale == 1: - return img - height, width = img.shape[:2] - if height % scale > 0 or width % scale > 0: - raise ValueError(f"Image shape ({height},{width}) must be divisible by the" f" scale ({scale}).") - out_height, out_width = height // scale, width // scale - resized = cv2.resize(img, (out_width, out_height), cv2.INTER_AREA) # type: ignore - return resized - - -def upscale(img, scale: int) -> np.ndarray: - """Function from DyCheck's repo. Upscale an image. - - Args: - img: Input image - scale: Factor of the scale - - Returns: - New image - """ - if scale == 1: - return img - height, width = img.shape[:2] - out_height, out_width = height * scale, width * scale - resized = cv2.resize(img, (out_width, out_height), cv2.INTER_AREA) # type: ignore - return resized - - -def rescale(img, scale_factor: float, interpolation: int = cv2.INTER_AREA) -> np.ndarray: - """Function from DyCheck's repo. Rescale an image. - - Args: - img: Input image - scale: Factor of the scale - interpolation: Interpolation method in opencv - - Returns: - New image - """ - scale_factor = float(scale_factor) - if scale_factor <= 0.0: - raise ValueError("scale_factor must be a non-negative number.") - if scale_factor == 1.0: - return img - - height, width = img.shape[:2] - if scale_factor.is_integer(): - return upscale(img, int(scale_factor)) - - inv_scale = 1.0 / scale_factor - if inv_scale.is_integer() and (scale_factor * height).is_integer() and (scale_factor * width).is_integer(): - return downscale(img, int(inv_scale)) - - print(f"Resizing image by non-integer factor {scale_factor}, this may lead to artifacts.") - height, width = img.shape[:2] - out_height = math.ceil(height * scale_factor) - out_height -= out_height % 2 - out_width = math.ceil(width * scale_factor) - out_width -= out_width % 2 - - return cv2.resize(img, (out_width, out_height), interpolation) # type: ignore - - -def _load_scene_info(data_dir: Path) -> Tuple[np.ndarray, float, float, float]: - """Function from DyCheck's repo. Load scene info from json. - - Args: - data_dir: data path - - Returns: - A tuple of scene info: center, scale, near, far - """ - scene_dict = load_from_json(data_dir / "scene.json") - center = np.array(scene_dict["center"], dtype=np.float32) - scale = scene_dict["scale"] - near = scene_dict["near"] - far = scene_dict["far"] - return center, scale, near, far - - -def _load_metadata_info(data_dir: Path) -> Tuple[np.ndarray, np.ndarray, np.ndarray]: - """Function from DyCheck's repo. Load scene metadata from json. - - Args: - data_dir: data path - - Returns: - A tuple of scene info: frame_names_map, time_ids, camera_ids - """ - dataset_dict = load_from_json(data_dir / "dataset.json") - _frame_names = np.array(dataset_dict["ids"]) - - metadata_dict = load_from_json(data_dir / "metadata.json") - time_ids = np.array([metadata_dict[k]["warp_id"] for k in _frame_names], dtype=np.uint32) - camera_ids = np.array([metadata_dict[k]["camera_id"] for k in _frame_names], dtype=np.uint32) - - frame_names_map = np.zeros((time_ids.max() + 1, camera_ids.max() + 1), _frame_names.dtype) - for i, (t, c) in enumerate(zip(time_ids, camera_ids)): - frame_names_map[t, c] = _frame_names[i] - - return frame_names_map, time_ids, camera_ids - - -def _rescale_depth(depth_raw: np.ndarray, cam: Dict) -> np.ndarray: - """Depth rescale function from DyCheck. - - Args: - depth: A numpy ndarray of the raw depth - cam: Dict of the camera - - Returns: - A numpy ndarray of the processed depth - """ - xx, yy = np.meshgrid(np.arange(cam["width"], dtype=np.float32), np.arange(cam["height"], dtype=np.float32)) - pixels = np.stack([xx, yy], axis=-1) - batch_shape = pixels.shape[:-1] - pixels = np.reshape(pixels, (-1, 2)) - y = (pixels[..., 1] - cam["cy"]) / cam["fy"] - x = (pixels[..., 0] - cam["cx"]) / cam["fx"] - # x = (pixels[..., 0] - self.principal_point_x - y * self.skew) / self.scale_factor_x - # assume skew = 0 - viewdirs = np.stack([x, y, np.ones_like(x)], axis=-1) - local_viewdirs = viewdirs / np.linalg.norm(viewdirs, axis=-1, keepdims=True) - viewdirs = (cam["camera_to_worlds"][:3, :3] @ local_viewdirs[..., None])[..., 0] - viewdirs /= np.linalg.norm(viewdirs, axis=-1, keepdims=True) - viewdirs = viewdirs.reshape((*batch_shape, 3)) - cosa = viewdirs @ (cam["camera_to_worlds"][:, 2]) - if depth_raw.ndim == cosa.ndim: - depth = depth_raw[..., None] / cosa[..., None] - else: - depth = depth_raw / cosa[..., None] - return depth - - -@dataclass -class DycheckDataParserConfig(DataParserConfig): - """Dycheck (https://arxiv.org/abs/2210.13445) dataset parser config""" - - _target: Type = field(default_factory=lambda: Dycheck) - """target class to instantiate""" - data: Path = Path("data/iphone/mochi-high-five") - """Directory specifying location of data.""" - scale_factor: float = 5.0 - """How much to scale the camera origins by.""" - alpha_color: str = "white" - """alpha color of background""" - downscale_factor: int = 1 - """How much to downscale images.""" - scene_box_bound: float = 1.5 - """Boundary of scene box.""" - - -@dataclass -class Dycheck(DataParser): - """Dycheck (https://arxiv.org/abs/2210.13445) Dataset `iphone` subset""" - - config: DycheckDataParserConfig - includes_time: bool = True - - def __init__(self, config: DycheckDataParserConfig): - super().__init__(config=config) - self.data: Path = config.data - self.scale_factor: float = config.scale_factor - self.alpha_color = config.alpha_color - # load extra info from "extra.json" - extra_path = self.data / "extra.json" - extra_dict = load_from_json(extra_path) - self._factor = extra_dict["factor"] - self._fps = extra_dict["fps"] - self._bbox = np.array(extra_dict["bbox"], dtype=np.float32) - self._lookat = np.array(extra_dict["lookat"], dtype=np.float32) - self._up = np.array(extra_dict["up"], dtype=np.float32) - self._center, self._scale, self._near, self._far = _load_scene_info(self.data) - self._frame_names_map, self._time_ids, self._camera_ids = _load_metadata_info(self.data) - - def _generate_dataparser_outputs(self, split="train"): - if self.alpha_color is not None: - alpha_color_tensor = get_color(self.alpha_color) - else: - alpha_color_tensor = None - splits_dir = self.data / "splits" - - # scale the scene to fill the aabb bbox - sf = self.config.scene_box_bound / 4 / (self._scale * self._far) - # CONSOLE.print(f"scale factor changed from {self.config.scale_factor} to {sf}") - self.config.scale_factor = sf - - if not (splits_dir / f"{split}.json").exists(): - CONSOLE.print(f"split {split} not found, using split train") - split = "train" - split_dict = load_from_json(splits_dir / f"{split}.json") - frame_names = np.array(split_dict["frame_names"]) - time_ids = np.array(split_dict["time_ids"]) - if split != "train": - CONSOLE.print(f"split {split} is empty, using the 1st training image") - split_dict = load_from_json(splits_dir / "train.json") - frame_names = np.array(split_dict["frame_names"])[[0]] - time_ids = np.array(split_dict["time_ids"])[[0]] - - image_filenames, depth_filenames, cams = self.process_frames(frame_names.tolist(), time_ids) - - scene_box = SceneBox( - aabb=torch.tensor( - [[-self.config.scene_box_bound] * 3, [self.config.scene_box_bound] * 3], dtype=torch.float32 - ) - ) - cam_dict = {} - for k in cams[0].keys(): - cam_dict[k] = torch.stack([torch.as_tensor(c[k]) for c in cams], dim=0) - cameras = Cameras(camera_type=CameraType.PERSPECTIVE, **cam_dict) - - scale = self._scale * self.config.scale_factor - dataparser_outputs = DataparserOutputs( - image_filenames=image_filenames, - cameras=cameras, - alpha_color=alpha_color_tensor, - scene_box=scene_box, - metadata={ - "depth_filenames": depth_filenames, - "depth_unit_scale_factor": scale, - "scale": scale, - "near": self._near * scale, - "far": self._far * scale, - }, - ) - - return dataparser_outputs - - def process_frames(self, frame_names: List[str], time_ids: np.ndarray) -> Tuple[List, List, List]: - """Read cameras and filenames from the name list. - - Args: - frame_names: list of file names. - time_ids: time id of each frame. - - Returns: - A list of camera, each entry is a dict of the camera. - """ - image_filenames, depth_filenames = [], [] - cams = [] - for idx, frame in enumerate(frame_names): - image_filenames.append(self.data / f"rgb/{self.config.downscale_factor}x/{frame}.png") - depth_filenames.append(self.data / f"processed_depth/{self.config.downscale_factor}x/{frame}.npy") - cam_json = load_from_json(self.data / f"camera/{frame}.json") - c2w = torch.as_tensor(cam_json["orientation"]).T - position = torch.as_tensor(cam_json["position"]) - position -= self._center # some scenes look weird (wheel) - position *= self._scale * self.config.scale_factor - pose = torch.zeros([3, 4]) - pose[:3, :3] = c2w - pose[:3, 3] = position - # from opencv coord to opengl coord (used by nerfstudio) - pose[0:3, 1:3] *= -1 # switch cam coord x,y - pose = pose[[1, 0, 2], :] # switch world x,y - pose[2, :] *= -1 # invert world z - # for aabb bbox usage - pose = pose[[1, 2, 0], :] # switch world xyz to zxy - cams.append( - { - "camera_to_worlds": pose, - "fx": cam_json["focal_length"] / self.config.downscale_factor, - "fy": cam_json["focal_length"] * cam_json["pixel_aspect_ratio"] / self.config.downscale_factor, - "cx": cam_json["principal_point"][0] / self.config.downscale_factor, - "cy": cam_json["principal_point"][1] / self.config.downscale_factor, - "height": cam_json["image_size"][1] // self.config.downscale_factor, - "width": cam_json["image_size"][0] // self.config.downscale_factor, - "times": torch.as_tensor(time_ids[idx] / self._time_ids.max()).float(), - } - ) - - d = self.config.downscale_factor - if not image_filenames[0].exists(): - CONSOLE.print(f"downscale factor {d}x not exist, converting") - ori_h, ori_w = cv2.imread(str(self.data / f"rgb/1x/{frame_names[0]}.png")).shape[:2] - (self.data / f"rgb/{d}x").mkdir(exist_ok=True) - h, w = ori_h // d, ori_w // d - for frame in frame_names: - cv2.imwrite( - str(self.data / f"rgb/{d}x/{frame}.png"), - cv2.resize(cv2.imread(str(self.data / f"rgb/1x/{frame}.png")), (w, h)), - ) - CONSOLE.print("finished") - - if not depth_filenames[0].exists(): - CONSOLE.print(f"processed depth downscale factor {d}x not exist, converting") - (self.data / f"processed_depth/{d}x").mkdir(exist_ok=True, parents=True) - for idx, frame in enumerate(frame_names): - depth = np.load(self.data / f"depth/1x/{frame}.npy") - mask = rescale((depth != 0).astype(np.uint8) * 255, 1 / d, cv2.INTER_AREA) - depth = rescale(depth, 1 / d, cv2.INTER_AREA) - depth[mask != 255] = 0 - depth = _rescale_depth(depth, cams[idx]) - np.save(str(self.data / f"processed_depth/{d}x/{frame}.npy"), depth) - CONSOLE.print("finished") - - return image_filenames, depth_filenames, cams diff --git a/nerfstudio/data/dataparsers/instant_ngp_dataparser.py b/nerfstudio/data/dataparsers/instant_ngp_dataparser.py deleted file mode 100644 index 86780dcc..00000000 --- a/nerfstudio/data/dataparsers/instant_ngp_dataparser.py +++ /dev/null @@ -1,228 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -"""Data parser for instant ngp data""" - -from __future__ import annotations - -from dataclasses import dataclass, field -from pathlib import Path -from typing import Dict, Literal, Tuple, Type - -import imageio -import numpy as np -import torch - -from nerfstudio.cameras import camera_utils -from nerfstudio.cameras.cameras import Cameras, CameraType -from nerfstudio.data.dataparsers.base_dataparser import DataParser, DataParserConfig, DataparserOutputs -from nerfstudio.data.scene_box import SceneBox -from nerfstudio.data.utils.dataparsers_utils import ( - get_train_eval_split_all, - get_train_eval_split_filename, - get_train_eval_split_fraction, - get_train_eval_split_interval, -) -from nerfstudio.utils.io import load_from_json -from nerfstudio.utils.rich_utils import CONSOLE - - -@dataclass -class InstantNGPDataParserConfig(DataParserConfig): - """Instant-NGP dataset parser config""" - - _target: Type = field(default_factory=lambda: InstantNGP) - """target class to instantiate""" - data: Path = Path("data/ours/posterv2") - """Directory or explicit json file path specifying location of data.""" - scene_scale: float = 0.3333 - """How much to scale the scene.""" - eval_mode: Literal["fraction", "filename", "interval", "all"] = "fraction" - """ - The method to use for splitting the dataset into train and eval. - Fraction splits based on a percentage for train and the remaining for eval. - Filename splits based on filenames containing train/eval. - Interval uses every nth frame for eval. - All uses all the images for any split. - """ - train_split_fraction: float = 0.9 - """The percentage of the dataset to use for training. Only used when eval_mode is train-split-fraction.""" - eval_interval: int = 8 - """The interval between frames to use for eval. Only used when eval_mode is eval-interval.""" - - -@dataclass -class InstantNGP(DataParser): - """Instant NGP Dataset""" - - config: InstantNGPDataParserConfig - - def _generate_dataparser_outputs(self, split="train"): - if self.config.data.suffix == ".json": - meta = load_from_json(self.config.data) - data_dir = self.config.data.parent - else: - meta = load_from_json(self.config.data / "transforms.json") - data_dir = self.config.data - - image_filenames = [] - mask_filenames = [] - poses = [] - num_skipped_image_filenames = 0 - for frame in meta["frames"]: - fname = data_dir / Path(frame["file_path"]) - # search for png file - if not fname.exists(): - fname = data_dir / Path(frame["file_path"] + ".png") - if not fname.exists(): - CONSOLE.log(f"couldn't find {fname} image") - num_skipped_image_filenames += 1 - else: - if "w" not in meta: - img_0 = imageio.imread(fname) - h, w = img_0.shape[:2] - meta["w"] = w - if "h" in meta: - meta_h = meta["h"] - assert meta_h == h, f"height of image dont not correspond metadata {h} != {meta_h}" - else: - meta["h"] = h - image_filenames.append(fname) - poses.append(np.array(frame["transform_matrix"])) - if "mask_path" in frame: - mask_fname = data_dir / Path(frame["mask_path"]) - mask_filenames.append(mask_fname) - if num_skipped_image_filenames >= 0: - CONSOLE.print(f"Skipping {num_skipped_image_filenames} files in dataset split {split}.") - assert len(image_filenames) != 0, """ - No image files found. - You should check the file_paths in the transforms.json file to make sure they are correct. - """ - poses = np.array(poses).astype(np.float32) - poses[:, :3, 3] *= self.config.scene_scale - - # find train and eval indices based on the eval_mode specified - if self.config.eval_mode == "fraction": - i_train, i_eval = get_train_eval_split_fraction(image_filenames, self.config.train_split_fraction) - elif self.config.eval_mode == "filename": - i_train, i_eval = get_train_eval_split_filename(image_filenames) - elif self.config.eval_mode == "interval": - i_train, i_eval = get_train_eval_split_interval(image_filenames, self.config.eval_interval) - elif self.config.eval_mode == "all": - CONSOLE.log( - "[yellow] Be careful with '--eval-mode=all'. If using camera optimization, the cameras may diverge in the current implementation, giving unpredictable results." - ) - i_train, i_eval = get_train_eval_split_all(image_filenames) - else: - raise ValueError(f"Unknown eval mode {self.config.eval_mode}") - - if split == "train": - indices = i_train - elif split in ["val", "test"]: - indices = i_eval - else: - raise ValueError(f"Unknown dataparser split {split}") - # Choose image_filenames and poses based on split, but after auto orient and scaling the poses. - image_filenames = [image_filenames[i] for i in indices] - mask_filenames = [mask_filenames[i] for i in indices] if len(mask_filenames) > 0 else [] - - idx_tensor = torch.tensor(indices, dtype=torch.long) - poses = poses[idx_tensor] - - camera_to_world = torch.from_numpy(poses[:, :3]) # camera to world transform - - distortion_params = camera_utils.get_distortion_params( - k1=float(meta.get("k1", 0)), - k2=float(meta.get("k2", 0)), - k3=float(meta.get("k3", 0)), - k4=float(meta.get("k4", 0)), - p1=float(meta.get("p1", 0)), - p2=float(meta.get("p2", 0)), - ) - - # in x,y,z order - # assumes that the scene is centered at the origin - aabb_scale = 0.5 * meta.get("aabb_scale", 1) - - scene_box = SceneBox( - aabb=torch.tensor( - [[-aabb_scale, -aabb_scale, -aabb_scale], [aabb_scale, aabb_scale, aabb_scale]], dtype=torch.float32 - ) - ) - - fl_x, fl_y = InstantNGP.get_focal_lengths(meta) - - w, h = meta["w"], meta["h"] - - camera_type = CameraType.PERSPECTIVE - if meta.get("is_fisheye", False): - camera_type = CameraType.FISHEYE - - cameras = Cameras( - fx=float(fl_x), - fy=float(fl_y), - cx=float(meta.get("cx", 0.5 * w)), - cy=float(meta.get("cy", 0.5 * h)), - distortion_params=distortion_params, - height=int(h), - width=int(w), - camera_to_worlds=camera_to_world, - camera_type=camera_type, - ) - - # TODO(ethan): add alpha background color - dataparser_outputs = DataparserOutputs( - image_filenames=image_filenames, - cameras=cameras, - scene_box=scene_box, - mask_filenames=mask_filenames if len(mask_filenames) > 0 else None, - dataparser_scale=self.config.scene_scale, - ) - - return dataparser_outputs - - @classmethod - def get_focal_lengths(cls, meta: Dict) -> Tuple[float, float]: - """Reads or computes the focal length from transforms dict. - Args: - meta: metadata from transforms.json file. - Returns: - Focal lengths in the x and y directions. Error is raised if these cannot be calculated. - """ - fl_x, fl_y = 0, 0 - - def fov_to_focal_length(rad, res): - return 0.5 * res / np.tan(0.5 * rad) - - if "fl_x" in meta: - fl_x = meta["fl_x"] - elif "x_fov" in meta: - fl_x = fov_to_focal_length(np.deg2rad(meta["x_fov"]), meta["w"]) - elif "camera_angle_x" in meta: - fl_x = fov_to_focal_length(meta["camera_angle_x"], meta["w"]) - - if "camera_angle_y" not in meta or "y_fov" not in meta: - fl_y = fl_x - else: - if "fl_y" in meta: - fl_y = meta["fl_y"] - elif "y_fov" in meta: - fl_y = fov_to_focal_length(np.deg2rad(meta["y_fov"]), meta["h"]) - elif "camera_angle_y" in meta: - fl_y = fov_to_focal_length(meta["camera_angle_y"], meta["h"]) - - if fl_x == 0 or fl_y == 0: - raise AttributeError("Focal length cannot be calculated from transforms.json (missing fields).") - - return (fl_x, fl_y) diff --git a/nerfstudio/data/dataparsers/kittimot_dataparser.py b/nerfstudio/data/dataparsers/kittimot_dataparser.py new file mode 100644 index 00000000..ac7520af --- /dev/null +++ b/nerfstudio/data/dataparsers/kittimot_dataparser.py @@ -0,0 +1,588 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# +# 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. + +"""Data parser for the KITTI MOT dataset""" +from collections import defaultdict +from dataclasses import dataclass, field +from datetime import datetime +from pathlib import Path +from typing import Dict, List, Tuple, Type + +import numpy as np +import numpy.typing as npt +import torch +from pyquaternion import Quaternion +from torch import Tensor +from typing_extensions import Literal + +from nerfstudio.cameras.camera_utils import rotmat_to_unitquat, unitquat_slerp, unitquat_to_rotmat +from nerfstudio.cameras.cameras import Cameras, CameraType +from nerfstudio.cameras.lidars import Lidars, LidarType +from nerfstudio.data.dataparsers.ad_dataparser import OPENCV_TO_NERFSTUDIO, ADDataParser, ADDataParserConfig +from nerfstudio.utils.poses import to4x4 + +HORIZONTAL_BEAM_DIVERGENCE = 3.0e-3 # radians, or meters at a distance of 1m +VERTICAL_BEAM_DIVERGENCE = 1.5e-3 # radians, or meters at a distance of 1m +MAX_INTENSITY_VALUE = 1.0 +KITTI_IMAGE_WIDTH = 1242 +KITTI_IMAGE_HEIGHT = 375 + +ALLOWED_CATEGORIES = { + "Car", + "Van", + "Truck", + "Cyclist", + "Tram", +} # skip Misc and DontCare +SYMMETRIC_CATEGORIES = ALLOWED_CATEGORIES + +DEFORMABLE_CATEGORIES = { + "Pedestrian", + "Person_sitting", +} + +AVAILABLE_CAMERAS = ("image_02", "image_03") + +DATA_FREQUENCY = 10.0 # 10 Hz +LIDAR_ROTATION_TIME = 1.0 / DATA_FREQUENCY # 10 Hz + +MARS_SEQ_TO_START_FRAME = {str(i).zfill(4): 0 for i in range(1, 21)} +MARS_SEQ_TO_END_FRAME = {str(i).zfill(4): -1 for i in range(1, 21)} +# MARS only evaluate on the 0006 sequence. Note that the latest number on their github uses +# frames from 65 -> 120, but the results in their paper uses from frame 5 -> 260, which +# is what we will use to compare with. +MARS_SEQ_TO_START_FRAME["0006"] = 5 # taken from the paper +MARS_SEQ_TO_END_FRAME["0006"] = 260 # taken from the paper + +RIGHT_FRONT_UP2RIGHT_DOWN_FRONT = np.array([[1, 0, 0, 0], [0, 0, -1, 0], [0, 1, 0, 0], [0, 0, 0, 1]]) + + +@dataclass +class KittiMotDataParserConfig(ADDataParserConfig): + """KITTI MOT DatasetParser config.""" + + _target: Type = field(default_factory=lambda: KittiMot) + """target class to instantiate""" + sequence: str = "0006" + """Name of the scene.""" + data: Path = Path("data/kittimot") + """Path to ZOD dataset.""" + split: Literal["training"] = "training" # we do not have labels for testing set... + """Which split to use.""" + cameras: Tuple[Literal["image_02", "image_03", "none", "all"], ...] = ("image_02", "image_03") + """Which cameras to use.""" + lidars: Tuple[Literal["velodyne", "none"], ...] = ("velodyne",) + """Which lidars to use.""" + annotation_interval: float = 0.1 + """Interval between annotations in seconds.""" + allow_per_point_times: bool = False + """Whether to allow per-point timestamps.""" + compute_sensor_velocities: bool = False + """Whether to compute sensor velocities.""" + min_lidar_dist: Tuple[float, ...] = (2.0, 1.6, 2.0) + """Minimum distance of lidar points.""" + use_mars_nvs_50_split: bool = False + """Whether to use the MARS NVS 50 proposed split.""" + use_sensor_timestamps: bool = True + """Whether to use sensor timestamps.""" + + +@dataclass +class KittiMot(ADDataParser): + """Zenseact Open Dataset DatasetParser""" + + config: KittiMotDataParserConfig + + @property + def actor_transform(self) -> Tensor: + """The transform needed to convert the actor poses to our desired format (x-right, y-forward, z-up).""" + return torch.from_numpy(RIGHT_FRONT_UP2RIGHT_DOWN_FRONT) + + def _get_cameras(self) -> Tuple[Cameras, List[Path]]: + """Returns camera info and image filenames.""" + + if "all" in self.config.cameras: + self.config.cameras = AVAILABLE_CAMERAS + + filenames, times, poses, idxs = [], [], [], [] + # we will convert everything to the common camera, hence we use the camera parameters of the common camera + fx = self.calibs["P0"][0, 0].copy() + fy = self.calibs["P0"][1, 1].copy() + cx = self.calibs["P0"][0, 2].copy() + cy = self.calibs["P0"][1, 2].copy() + + for camera_idx, cam_name in enumerate(self.config.cameras): + camera_folder = self.config.data / self.config.split / cam_name / self.config.sequence + camera_files = sorted(camera_folder.glob("*.png")) + + for camera_file in camera_files: + image_id = int(camera_file.stem) + filenames.append(camera_file) + if self.config.use_sensor_timestamps: + times.append(self.timestamp_per_sensor[cam_name][image_id]) + else: + times.append(image_id / DATA_FREQUENCY) + ego_pose = self._get_ego_pose(image_id, sensor=cam_name).double() + idxs.append(camera_idx) + # get the ego pose + velo2cam = torch.from_numpy(self.calibs["Tr_velo_to_cam"].copy()).double() # 3x4 + cam2velo = to4x4(velo2cam).inverse() + imu2velo = torch.from_numpy(self.calibs["Tr_imu_to_velo"].copy()).double() # 3x4 + velo2imu = to4x4(imu2velo).inverse() + # cam to imu + cam2imu = velo2imu @ cam2velo + # consider both the rectification similar to here + # https://github.com/autonomousvision/kitti360Scripts/blob/7ecc14eab6fa30e5d2ac71ad37fed2bb4b0b8073/kitti360scripts/helpers/project.py#L35-L41 + rect_inv = torch.eye(4, dtype=torch.double) + rect_inv[:3, :3] = torch.from_numpy(self.calibs["R_rect"].copy()).inverse().double() + + # get the calib for the current camera + camera_int = int(cam_name.split("_")[1]) + calib = self.calibs[f"P{camera_int}"].copy() + # consider that the cameras are rectified wrt to the common camera + + cam2commoncam = ( + to4x4(torch.from_numpy(calib).double()).inverse() + @ to4x4(torch.from_numpy(self.calibs["P0"].copy())).double() + ) + cam_pose = ego_pose @ cam2imu @ rect_inv @ cam2commoncam + # consider the nerfstudio to opencv conversion + cam_pose[:3, :3] = cam_pose[:3, :3] @ torch.from_numpy(OPENCV_TO_NERFSTUDIO).double() + poses.append(cam_pose.float()[:3, :4]) + + # To tensors + poses = torch.stack(poses) + times = torch.tensor(times, dtype=torch.float64) # need higher precision + idxs = torch.tensor(idxs).int().unsqueeze(-1) + + cameras = Cameras( + fx=torch.tensor(fx, dtype=torch.float32), + fy=torch.tensor(fy, dtype=torch.float32), + cx=torch.tensor(cx, dtype=torch.float32), + cy=torch.tensor(cy, dtype=torch.float32), + height=KITTI_IMAGE_HEIGHT, + width=KITTI_IMAGE_WIDTH, + camera_to_worlds=poses[:, :3, :4], + camera_type=CameraType.PERSPECTIVE, + times=times, + metadata={"sensor_idxs": idxs}, + ) + return cameras, filenames + + def _get_lidars(self) -> Tuple[Lidars, List[Path]]: + """Returns lidar info and loaded point clouds.""" + times, poses, idxs, lidar_filenames = [], [], [], [] + + for lidar_idx, lidar_name in enumerate(self.config.lidars): + lidar_folder = self.config.data / self.config.split / lidar_name / self.config.sequence + + lidar_files = sorted(lidar_folder.glob("*.bin")) + + # get the calibration of the lidar + imu2velo = torch.from_numpy(self.calibs["Tr_imu_to_velo"].copy()) # 3x4 + velo2imu = to4x4(imu2velo).inverse() + + for lidar_file in lidar_files: + frame_idx = int(lidar_file.stem) + if self.config.use_sensor_timestamps: + times.append(self.timestamp_per_sensor[lidar_name][frame_idx]) + else: + times.append(frame_idx / DATA_FREQUENCY) + + ego_pose = self._get_ego_pose(frame_idx, sensor=lidar_name).float() + pose = ego_pose @ velo2imu.clone() + poses.append(pose) + idxs.append(lidar_idx) + lidar_filenames.append(lidar_file) + + # To tensors + poses = torch.stack(poses) # will change to float later, see _read_lidars + times = torch.tensor(times, dtype=torch.float64) + idxs = torch.tensor(idxs).int().unsqueeze(-1) + + lidars = Lidars( + lidar_to_worlds=poses[:, :3, :4], + lidar_type=LidarType.VELODYNE64E, + times=times, + assume_ego_compensated=False, + metadata={"sensor_idxs": idxs}, + horizontal_beam_divergence=HORIZONTAL_BEAM_DIVERGENCE, + vertical_beam_divergence=VERTICAL_BEAM_DIVERGENCE, + ) + + return lidars, lidar_filenames + + def _read_lidars(self, lidars: Lidars, filepaths: List[Path]) -> List[torch.Tensor]: + point_clouds = [] + for filepath in filepaths: + pc = np.fromfile(filepath, dtype=np.float32).reshape(-1, 4) + xyz = pc[:, :3] # N x 3 + intensity = pc[:, 3] / MAX_INTENSITY_VALUE # N, + t = get_mock_timestamps(xyz) # N, relative timestamps + pc = np.hstack((xyz, intensity[:, None], t[:, None])) + point_clouds.append(torch.from_numpy(pc).float()) + + lidars.lidar_to_worlds = lidars.lidar_to_worlds.float() + return point_clouds + + def _get_actor_trajectories(self) -> List[Dict]: + """Returns a list of actor trajectories. + + Each trajectory is a dictionary with the following keys: + - poses: the poses of the actor (float32) + - timestamps: the timestamps of the actor (float64) + - dims: the dimensions of the actor, wlh order (float32) + - label: the label of the actor (str) + - stationary: whether the actor is stationary (bool) + - symmetric: whether the actor is expected to be symmetric (bool) + - deformable: whether the actor is expected to be deformable (e.g. pedestrian) + """ + + if self.config.include_deformable_actors: + allowed_cats = ALLOWED_CATEGORIES.union(DEFORMABLE_CATEGORIES) + else: + allowed_cats = ALLOWED_CATEGORIES + + anno_file = self.config.data / self.config.split / "label_02" / f"{self.config.sequence}.txt" + + # read annotations + with open(anno_file, "r") as f: + lines = f.readlines() + + traj_list = defaultdict(list) + + # loop over all annotations to create per agent trajectories + for line in lines: + line = line.strip() + frame, track_id, label, _, _, _, _, _, _, _, height, width, length, x, y, z, rotation_y = line.split(" ") + + # remove all actors that are not in the allowed categories + if label not in allowed_cats: + continue + + frame = int(frame) + track_id = int(track_id) + + height = float(height) + width = float(width) + length = float(length) + + # defined in the camera coordinate system of the ego-vehicle + x = float(x) + y = float(y) - height / 2.0 # center of the object is at the bottom + z = float(z) + + # + rotation_y = float(rotation_y) + + traj_list[track_id].append( + { + "frame": frame, + "label": label, + "height": height, + "width": width, + "length": length, + "x": x, + "y": y, + "z": z, + "rotation_y": rotation_y, + } + ) + + trajs = [] + for track_id, track in traj_list.items(): + poses, timestamps, wlh = [], [], [] + if len(track) < 2: + continue # skip if there is only one frame + + label = track[0]["label"] + deformable = label in DEFORMABLE_CATEGORIES + symmetric = label in SYMMETRIC_CATEGORIES + + # cam to velo + velo2cam = self.calibs["Tr_velo_to_cam"].copy() # 3x4 + velo2cam = np.vstack((velo2cam, np.array([0, 0, 0, 1]))) + cam2velo = np.linalg.inv(velo2cam) + # imu to velo + imu2velo = self.calibs["Tr_imu_to_velo"].copy() # 3x4 + imu2velo = np.vstack((imu2velo, np.array([0, 0, 0, 1]))) + velo2imu = np.linalg.inv(imu2velo) + # cam to imu + cam2imu = velo2imu @ cam2velo + + # note that the boxes are in the camera coordinate system of the ego-vehicle + for box in sorted(track, key=lambda x: x["frame"]): + if self.config.use_sensor_timestamps: + timestamps.append(self.timestamp_per_sensor["velodyne"][box["frame"]]) + else: + timestamps.append(box["frame"] / DATA_FREQUENCY) + # The actors are annotated in the LIDAR point cloud, so we use those timestamps. + ego_pose = self._get_ego_pose(box["frame"], "velodyne").numpy() + # cam to world + cam2world = ego_pose @ cam2imu + obj_pose_cam = np.eye(4) + obj_pose_cam[:3, 3] = np.array([box["x"], box["y"], box["z"]]) + obj_pose_cam[:3, :3] = Quaternion(axis=[0, 1, 0], angle=np.pi / 2 + box["rotation_y"]).rotation_matrix + obj_pose_world = cam2world @ obj_pose_cam @ RIGHT_FRONT_UP2RIGHT_DOWN_FRONT + poses.append(obj_pose_world) + wlh.append(np.array([box["width"], box["length"], box["height"]])) + + poses = np.array(poses) + # dynamic if we move more that 1m in any direction + dynamic = np.any(np.std(poses[:, :3, 3], axis=0) > 0.5) + # we skip all stationary objects + if not dynamic: + continue + + trajs.append( + { + "poses": torch.tensor(poses, dtype=torch.float32), + "timestamps": torch.tensor(timestamps, dtype=torch.float64), + "dims": torch.tensor(np.median(wlh, axis=0), dtype=torch.float32), + "label": label, + "stationary": not dynamic, + "symmetric": symmetric, + "deformable": deformable, + } + ) + + return trajs + + def _generate_dataparser_outputs(self, split="train"): + # load the ego_poses + root = self.config.data / self.config.split + ego_pose_path = root / "oxts" / f"{self.config.sequence}.txt" + self.ego_poses = get_poses_from_oxts(ego_pose_path) + self.calibs = get_calib(root / "calib" / f"{self.config.sequence}.txt") + + # we only use timestamps if all sensors have them. + if self.config.use_sensor_timestamps: + self._setup_sensor_timestamps() + + out = super()._generate_dataparser_outputs(split=split) + del self.ego_poses + del self.calibs + return out + + def _setup_sensor_timestamps(self) -> None: + self.timestamp_per_sensor = {} + for sensor in self.config.cameras + self.config.lidars + ("oxts",): + timestamp_file = ( + self.config.data + / self.config.split + / sensor + / "timestamps" + / f"{self.config.sequence}" + / "timestamps.txt" + ) + assert timestamp_file.exists(), f"Trying to use sensor timestamps but file {timestamp_file} does not exist." + with open(timestamp_file, "r") as f: + lines = f.readlines() + # parse the timestamps: 2011-09-26 13:13:32.322364840 + timestamps = [] + for line in lines: + line = line.strip()[:-3] # remove nanosecond precision + dt = datetime.strptime(line, "%Y-%m-%d %H:%M:%S.%f") + timestamp = dt.timestamp() + timestamps.append(timestamp) + + self.timestamp_per_sensor[sensor] = np.array(timestamps) + + def _get_ego_pose(self, frame_idx: int, sensor: str): + if self.config.use_sensor_timestamps: + ego_pose_timestamps = self.timestamp_per_sensor["oxts"] + sensor_timestamp = self.timestamp_per_sensor[sensor][frame_idx] + # get closest ego-pose timestamp + next_ego_pose_idx = np.searchsorted(ego_pose_timestamps, sensor_timestamp) + prev_ego_pose_idx = next_ego_pose_idx - 1 + # lets not extrapolate + if prev_ego_pose_idx < 0: + return torch.from_numpy(self.ego_poses[0]) + if next_ego_pose_idx >= len(ego_pose_timestamps): + return torch.from_numpy(self.ego_poses[-1]) + + prev_ego_pose = torch.from_numpy(self.ego_poses[prev_ego_pose_idx].copy()) # 4x4 + next_ego_pose = torch.from_numpy(self.ego_poses[next_ego_pose_idx].copy()) # 4x4 + fraction = (sensor_timestamp - ego_pose_timestamps[prev_ego_pose_idx]) / ( + ego_pose_timestamps[next_ego_pose_idx] - ego_pose_timestamps[prev_ego_pose_idx] + ) + + # position + pos_prev = prev_ego_pose[:3, 3] + pos_next = next_ego_pose[:3, 3] + interp_pos = pos_prev + (pos_next - pos_prev) * fraction + + # rotation + quat_prev = rotmat_to_unitquat(prev_ego_pose[:3, :3]) + quat_next = rotmat_to_unitquat(next_ego_pose[:3, :3]) + interp_quat = unitquat_slerp(quat_prev.float(), quat_next.float(), torch.tensor(fraction)) + interp_rot = unitquat_to_rotmat(interp_quat) + + # concat + interp_pose = torch.eye(4) + interp_pose[:3, 3] = interp_pos.float() + interp_pose[:3, :3] = interp_rot + return interp_pose + else: + return torch.from_numpy(self.ego_poses[frame_idx].copy()) + + def _get_linspaced_indices(self, sensor_idxs: Tensor) -> Tuple[Tensor, Tensor]: + # if we are using all the samples, i.e., optimizing poses, we can use the same for eval + if self.config.train_split_fraction == 1.0: + return torch.arange(sensor_idxs.numel(), dtype=torch.int64), torch.arange( + sensor_idxs.numel(), dtype=torch.int64 + ) + + if self.config.use_mars_nvs_50_split: + # based on the implementation found here: + # https://github.com/OPEN-AIR-SUN/mars/blob/master/mars/data/mars_kitti_dataparser.py#L1090-L1114 + start_frame = MARS_SEQ_TO_START_FRAME[self.config.sequence] + end_frame = MARS_SEQ_TO_END_FRAME[self.config.sequence] + if end_frame != -1: + end_frame += 1 # they are inclusive + + # for each camera the logic is: + # [train, train, skip, eval] and repeat this + first_sensor_idxes = sensor_idxs[sensor_idxs == sensor_idxs.unique()[0]] + train_mask = torch.zeros_like(first_sensor_idxes) + train_mask[start_frame:end_frame:4] = 1 + train_mask[start_frame + 1 : end_frame : 4] = 1 + + eval_mask = torch.zeros_like(first_sensor_idxes) + eval_mask[start_frame + 3 : end_frame : 4] = 1 + + # repeat this for the number of unique sensors + train_mask = torch.concat([train_mask] * len(sensor_idxs.unique())) + eval_mask = torch.concat([eval_mask] * len(sensor_idxs.unique())) + assert (train_mask + eval_mask).max() == 1, "Something went wrong with the indices." + + idxes = torch.arange(len(sensor_idxs)) + train_indices = idxes[train_mask.bool()] + eval_indices = idxes[eval_mask.bool()] + return train_indices, eval_indices + else: + return super()._get_linspaced_indices(sensor_idxs) + + +def lat_lon_to_mercator( + lat: npt.NDArray[np.float64], lon: npt.NDArray[np.float64], scale: float +) -> Tuple[npt.NDArray[np.float32], npt.NDArray[np.float32]]: + """Converts lat/lon coordinates to mercator coordinates. + + Reimplemented from the kitti dataset devkit. + """ + + earth_radius = 6378137.0 + mx = lon * scale * earth_radius * np.pi / 180.0 + my = np.log(np.tan((90 + lat) * np.pi / 360.0)) * scale * earth_radius + return mx, my + + +def get_poses_from_oxts(ego_pose_path: Path) -> npt.NDArray[np.float64]: + """Takes the path to the KITTI oxts file and returns the poses for each timestamp. + + Reimplemented based on the KITTI dataset devkit. + """ + oxts = np.loadtxt(ego_pose_path, dtype=np.float64) + lat, lon, alt = oxts[:, 0], oxts[:, 1], oxts[:, 2] + roll, pitch, yaw = oxts[:, 3], oxts[:, 4], oxts[:, 5] + + scale = np.cos(lat[0] * np.pi / 180.0) + x, y = lat_lon_to_mercator(lat, lon, scale) + z = alt + + Rx = np.array( + [ + [np.ones_like(roll), np.zeros_like(roll), np.zeros_like(roll)], + [np.zeros_like(roll), np.cos(roll), -np.sin(roll)], + [np.zeros_like(roll), np.sin(roll), np.cos(roll)], + ] + ) # 3x3xN + Ry = np.array( + [ + [np.cos(pitch), np.zeros_like(roll), np.sin(pitch)], + [np.zeros_like(roll), np.ones_like(roll), np.zeros_like(roll)], + [-np.sin(pitch), np.zeros_like(roll), np.cos(pitch)], + ] + ) # 3x3xN + Rz = np.array( + [ + [np.cos(yaw), -np.sin(yaw), np.zeros_like(roll)], + [np.sin(yaw), np.cos(yaw), np.zeros_like(roll)], + [np.zeros_like(roll), np.zeros_like(roll), np.ones_like(roll)], + ] + ) # 3x3xN + # make into N x 3 x 3 + Rx = np.transpose(Rx, (2, 0, 1)) + Ry = np.transpose(Ry, (2, 0, 1)) + Rz = np.transpose(Rz, (2, 0, 1)) + + R = Rz @ Ry @ Rx + + poses = np.zeros((len(oxts), 4, 4)) + poses[:, :3, :3] = R + poses[:, :3, 3] = np.array([x, y, z]).T + poses[:, 3, 3] = 1 + + # normalize to the first pose + poses = np.linalg.inv(poses[0]) @ poses + + return poses + + +def get_calib(calib_path: Path) -> Dict[str, npt.NDArray[np.float32]]: + with open(str(calib_path), "r") as f: + lines = f.readlines() + + for line in lines: + line = line.strip() + if line.startswith("P0:"): + P0 = np.array(line.split(" ")[1:], dtype=np.float32).reshape(3, 4) + elif line.startswith("P1:"): + P1 = np.array(line.split(" ")[1:], dtype=np.float32).reshape(3, 4) + elif line.startswith("P2:"): + P2 = np.array(line.split(" ")[1:], dtype=np.float32).reshape(3, 4) + elif line.startswith("P3:"): + P3 = np.array(line.split(" ")[1:], dtype=np.float32).reshape(3, 4) + elif line.startswith("R_rect"): + R_rect = np.array(line.split(" ")[1:], dtype=np.float32).reshape(3, 3) + elif line.startswith("Tr_velo_cam"): + Tr_velo_to_cam = np.array(line.split(" ")[1:], dtype=np.float32).reshape(3, 4) + elif line.startswith("Tr_imu_velo"): + Tr_imu_to_velo = np.array(line.split(" ")[1:], dtype=np.float32).reshape(3, 4) + else: + raise ValueError(f"Unknown calibration line: {line}") + return { + "P0": P0, # type: ignore + "P1": P1, # type: ignore + "P2": P2, # type: ignore + "P3": P3, # type: ignore + "R_rect": R_rect, # type: ignore + "Tr_velo_to_cam": Tr_velo_to_cam, # type: ignore + "Tr_imu_to_velo": Tr_imu_to_velo, # type: ignore + } + + +def get_mock_timestamps(points: npt.NDArray[np.float32]) -> npt.NDArray[np.float32]: + """Get mock relative timestamps for the velodyne points.""" + # the velodyne has x forward, y left, z up and the sweep is split behind the car. + # it is also rotating counter-clockwise, meaning that the angles close to -pi are the + # first ones in the sweep and the ones close to pi are the last ones in the sweep. + angles = np.arctan2(points[:, 1], points[:, 0]) # N, [-pi, pi] + angles += np.pi # N, [0, 2pi] + # see how much of the rotation have finished + fraction_of_rotation = angles / (2 * np.pi) # N, [0, 1] + # get the pseudo timestamps based on the total rotation time + timestamps = fraction_of_rotation * LIDAR_ROTATION_TIME + return timestamps diff --git a/nerfstudio/data/dataparsers/nerfosr_dataparser.py b/nerfstudio/data/dataparsers/nerfosr_dataparser.py deleted file mode 100644 index db884cb7..00000000 --- a/nerfstudio/data/dataparsers/nerfosr_dataparser.py +++ /dev/null @@ -1,228 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. -""" Data parser for NeRF-OSR datasets - - Presented in the paper: https://4dqv.mpi-inf.mpg.de/NeRF-OSR/ - -""" - -from __future__ import annotations - -import glob -import os -from dataclasses import dataclass, field -from pathlib import Path -from typing import List, Literal, Tuple, Type - -import numpy as np -import torch - -from nerfstudio.cameras import camera_utils -from nerfstudio.cameras.cameras import Cameras, CameraType -from nerfstudio.data.dataparsers.base_dataparser import DataParser, DataParserConfig, DataparserOutputs -from nerfstudio.data.scene_box import SceneBox - - -def _find_files(directory: str, exts: List[str]): - """Find all files in a directory that have a certain file extension. - - Args: - directory : The directory to search for files. - exts : A list of file extensions to search for. Each file extension should be in the form '*.ext'. - - Returns: - A list of file paths for all the files that were found. The list is sorted alphabetically. - """ - if os.path.isdir(directory): - # types should be ['*.png', '*.jpg', '*.JPG', '*.PNG'] - files_grabbed = [] - for ext in exts: - files_grabbed.extend(glob.glob(os.path.join(directory, ext))) - if len(files_grabbed) > 0: - files_grabbed = sorted(files_grabbed) - return files_grabbed - return [] - - -def _parse_osm_txt(filename: str): - """Parse a text file containing numbers and return a 4x4 numpy array of float32 values. - - Args: - filename : a file containing numbers in a 4x4 matrix. - - Returns: - A numpy array of shape [4, 4] containing the numbers from the file. - """ - assert os.path.isfile(filename) - with open(filename, encoding="UTF-8") as f: - nums = f.read().split() - return np.array([float(x) for x in nums]).reshape([4, 4]).astype(np.float32) - - -def get_camera_params( - scene_dir: str, split: Literal["train", "validation", "test"] -) -> Tuple[torch.Tensor, torch.Tensor, int]: - """Load camera intrinsic and extrinsic parameters for a given scene split. - - Args" - scene_dir : The directory containing the scene data. - split : The split for which to load the camera parameters. - - Returns - A tuple containing the intrinsic parameters (as a torch.Tensor of shape [N, 4, 4]), - the camera-to-world matrices (as a torch.Tensor of shape [N, 4, 4]), and the number of cameras (N). - """ - split_dir = f"{scene_dir}/{split}" - - # camera parameters files - intrinsics_files = _find_files(f"{split_dir}/intrinsics", exts=["*.txt"]) - pose_files = _find_files(f"{split_dir}/pose", exts=["*.txt"]) - - num_cams = len(pose_files) - - intrinsics = [] - camera_to_worlds = [] - for i in range(num_cams): - intrinsics.append(_parse_osm_txt(intrinsics_files[i])) - - pose = _parse_osm_txt(pose_files[i]) - - # convert from COLMAP/OpenCV to nerfstudio camera (OpenGL/Blender) - pose[0:3, 1:3] *= -1 - - camera_to_worlds.append(pose) - - intrinsics = torch.from_numpy(np.stack(intrinsics).astype(np.float32)) # [N, 4, 4] - camera_to_worlds = torch.from_numpy(np.stack(camera_to_worlds).astype(np.float32)) # [N, 4, 4] - - return intrinsics, camera_to_worlds, num_cams - - -@dataclass -class NeRFOSRDataParserConfig(DataParserConfig): - """Nerfstudio dataset config""" - - _target: Type = field(default_factory=lambda: NeRFOSR) - """target class to instantiate""" - data: Path = Path("data/NeRF-OSR/Data/") - """Directory specifying location of data.""" - scene: str = "stjacob" - """Which scene to load""" - scene_scale: float = 1.0 - """How much to scale the region of interest by.""" - scale_factor: float = 1.0 - """How much to scale the camera origins by.""" - use_masks: bool = False - """Whether to use masks.""" - orientation_method: Literal["pca", "up", "vertical", "none"] = "vertical" - """The method to use for orientation.""" - center_method: Literal["poses", "focus", "none"] = "focus" - """The method to use for centering.""" - auto_scale_poses: bool = True - """Whether to automatically scale the poses to fit in +/- 1 bounding box.""" - - -@dataclass -class NeRFOSR(DataParser): - """NeRFOSR Dataparser - Presented in the paper: https://4dqv.mpi-inf.mpg.de/NeRF-OSR/ - - Some of this code comes from https://github.com/r00tman/NeRF-OSR/blob/main/data_loader_split.py - - Source data convention is: - camera coordinate system: x-->right, y-->down, z-->scene (opencv/colmap convention) - poses is camera-to-world - masks are 0 for dynamic content, 255 for static content - """ - - config: NeRFOSRDataParserConfig - - def _generate_dataparser_outputs(self, split="train"): - data = self.config.data - scene = self.config.scene - split = "validation" if split == "val" else split - - if scene == "trevi": - scene_dir = f"{data}/{scene}/final_clean" - split_dir = f"{data}/{scene}/final_clean/{split}" - else: - scene_dir = f"{data}/{scene}/final" - split_dir = f"{data}/{scene}/final/{split}" - - # get all split cam params - intrinsics_train, camera_to_worlds_train, n_train = get_camera_params(scene_dir, "train") - intrinsics_val, camera_to_worlds_val, n_val = get_camera_params(scene_dir, "validation") - intrinsics_test, camera_to_worlds_test, _ = get_camera_params(scene_dir, "test") - - # combine all cam params - intrinsics = torch.cat([intrinsics_train, intrinsics_val, intrinsics_test], dim=0) - camera_to_worlds = torch.cat([camera_to_worlds_train, camera_to_worlds_val, camera_to_worlds_test], dim=0) - - camera_to_worlds, _ = camera_utils.auto_orient_and_center_poses( - camera_to_worlds, - method=self.config.orientation_method, - center_method=self.config.center_method, - ) - - # Scale poses - scale_factor = 1.0 - if self.config.auto_scale_poses: - scale_factor /= torch.max(torch.abs(camera_to_worlds[:, :3, 3])) - - camera_to_worlds[:, :3, 3] *= scale_factor * self.config.scale_factor - - if split == "train": - camera_to_worlds = camera_to_worlds[:n_train] - intrinsics = intrinsics[:n_train] - elif split == "validation": - camera_to_worlds = camera_to_worlds[n_train : n_train + n_val] - intrinsics = intrinsics[n_train : n_train + n_val] - elif split == "test": - camera_to_worlds = camera_to_worlds[n_train + n_val :] - intrinsics = intrinsics[n_train + n_val :] - - cameras = Cameras( - camera_to_worlds=camera_to_worlds[:, :3, :4], - fx=intrinsics[:, 0, 0], - fy=intrinsics[:, 1, 1], - cx=intrinsics[:, 0, 2], - cy=intrinsics[:, 1, 2], - camera_type=CameraType.PERSPECTIVE, - ) - - # in x,y,z order - # assumes that the scene is centered at the origin - aabb_scale = self.config.scene_scale - scene_box = SceneBox( - aabb=torch.tensor( - [[-aabb_scale, -aabb_scale, -aabb_scale], [aabb_scale, aabb_scale, aabb_scale]], dtype=torch.float32 - ) - ) - - # --- images --- - image_filenames = _find_files(f"{split_dir}/rgb", exts=["*.png", "*.jpg", "*.JPG", "*.PNG"]) - - # --- masks --- - mask_filenames = [] - if self.config.use_masks: - mask_filenames = _find_files(f"{split_dir}/mask", exts=["*.png", "*.jpg", "*.JPG", "*.PNG"]) - - dataparser_outputs = DataparserOutputs( - image_filenames=image_filenames, - cameras=cameras, - scene_box=scene_box, - mask_filenames=mask_filenames if len(mask_filenames) > 0 else None, - dataparser_scale=self.config.scale_factor, - ) - return dataparser_outputs diff --git a/nerfstudio/data/dataparsers/nerfstudio_dataparser.py b/nerfstudio/data/dataparsers/nerfstudio_dataparser.py deleted file mode 100644 index 910e0bc1..00000000 --- a/nerfstudio/data/dataparsers/nerfstudio_dataparser.py +++ /dev/null @@ -1,490 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. -""" Data parser for nerfstudio datasets. """ - -from __future__ import annotations - -from dataclasses import dataclass, field -from pathlib import Path -from typing import Literal, Optional, Tuple, Type - -import numpy as np -import torch -from PIL import Image - -from nerfstudio.cameras import camera_utils -from nerfstudio.cameras.cameras import CAMERA_MODEL_TO_TYPE, Cameras, CameraType -from nerfstudio.data.dataparsers.base_dataparser import DataParser, DataParserConfig, DataparserOutputs -from nerfstudio.data.scene_box import SceneBox -from nerfstudio.data.utils.dataparsers_utils import ( - get_train_eval_split_all, - get_train_eval_split_filename, - get_train_eval_split_fraction, - get_train_eval_split_interval, -) -from nerfstudio.utils.io import load_from_json -from nerfstudio.utils.rich_utils import CONSOLE - -MAX_AUTO_RESOLUTION = 1600 - - -@dataclass -class NerfstudioDataParserConfig(DataParserConfig): - """Nerfstudio dataset config""" - - _target: Type = field(default_factory=lambda: Nerfstudio) - """target class to instantiate""" - data: Path = Path() - """Directory or explicit json file path specifying location of data.""" - scale_factor: float = 1.0 - """How much to scale the camera origins by.""" - downscale_factor: Optional[int] = None - """How much to downscale images. If not set, images are chosen such that the max dimension is <1600px.""" - scene_scale: float = 1.0 - """How much to scale the region of interest by.""" - orientation_method: Literal["pca", "up", "vertical", "none"] = "up" - """The method to use for orientation.""" - center_method: Literal["poses", "focus", "none"] = "poses" - """The method to use to center the poses.""" - auto_scale_poses: bool = True - """Whether to automatically scale the poses to fit in +/- 1 bounding box.""" - eval_mode: Literal["fraction", "filename", "interval", "all"] = "fraction" - """ - The method to use for splitting the dataset into train and eval. - Fraction splits based on a percentage for train and the remaining for eval. - Filename splits based on filenames containing train/eval. - Interval uses every nth frame for eval. - All uses all the images for any split. - """ - train_split_fraction: float = 0.9 - """The percentage of the dataset to use for training. Only used when eval_mode is train-split-fraction.""" - eval_interval: int = 8 - """The interval between frames to use for eval. Only used when eval_mode is eval-interval.""" - depth_unit_scale_factor: float = 1e-3 - """Scales the depth values to meters. Default value is 0.001 for a millimeter to meter conversion.""" - mask_color: Optional[Tuple[float, float, float]] = None - """Replace the unknown pixels with this color. Relevant if you have a mask but still sample everywhere.""" - load_3D_points: bool = False - """Whether to load the 3D points from the colmap reconstruction.""" - - -@dataclass -class Nerfstudio(DataParser): - """Nerfstudio DatasetParser""" - - config: NerfstudioDataParserConfig - downscale_factor: Optional[int] = None - - def _generate_dataparser_outputs(self, split="train"): - assert self.config.data.exists(), f"Data directory {self.config.data} does not exist." - - if self.config.data.suffix == ".json": - meta = load_from_json(self.config.data) - data_dir = self.config.data.parent - else: - meta = load_from_json(self.config.data / "transforms.json") - data_dir = self.config.data - - image_filenames = [] - mask_filenames = [] - depth_filenames = [] - poses = [] - - fx_fixed = "fl_x" in meta - fy_fixed = "fl_y" in meta - cx_fixed = "cx" in meta - cy_fixed = "cy" in meta - height_fixed = "h" in meta - width_fixed = "w" in meta - distort_fixed = False - for distort_key in ["k1", "k2", "k3", "p1", "p2", "distortion_params"]: - if distort_key in meta: - distort_fixed = True - break - fisheye_crop_radius = meta.get("fisheye_crop_radius", None) - fx = [] - fy = [] - cx = [] - cy = [] - height = [] - width = [] - distort = [] - - # sort the frames by fname - fnames = [] - for frame in meta["frames"]: - filepath = Path(frame["file_path"]) - fname = self._get_fname(filepath, data_dir) - fnames.append(fname) - inds = np.argsort(fnames) - frames = [meta["frames"][ind] for ind in inds] - - for frame in frames: - filepath = Path(frame["file_path"]) - fname = self._get_fname(filepath, data_dir) - - if not fx_fixed: - assert "fl_x" in frame, "fx not specified in frame" - fx.append(float(frame["fl_x"])) - if not fy_fixed: - assert "fl_y" in frame, "fy not specified in frame" - fy.append(float(frame["fl_y"])) - if not cx_fixed: - assert "cx" in frame, "cx not specified in frame" - cx.append(float(frame["cx"])) - if not cy_fixed: - assert "cy" in frame, "cy not specified in frame" - cy.append(float(frame["cy"])) - if not height_fixed: - assert "h" in frame, "height not specified in frame" - height.append(int(frame["h"])) - if not width_fixed: - assert "w" in frame, "width not specified in frame" - width.append(int(frame["w"])) - if not distort_fixed: - distort.append( - torch.tensor(frame["distortion_params"], dtype=torch.float32) - if "distortion_params" in frame - else camera_utils.get_distortion_params( - k1=float(frame["k1"]) if "k1" in frame else 0.0, - k2=float(frame["k2"]) if "k2" in frame else 0.0, - k3=float(frame["k3"]) if "k3" in frame else 0.0, - k4=float(frame["k4"]) if "k4" in frame else 0.0, - p1=float(frame["p1"]) if "p1" in frame else 0.0, - p2=float(frame["p2"]) if "p2" in frame else 0.0, - ) - ) - - image_filenames.append(fname) - poses.append(np.array(frame["transform_matrix"])) - if "mask_path" in frame: - mask_filepath = Path(frame["mask_path"]) - mask_fname = self._get_fname( - mask_filepath, - data_dir, - downsample_folder_prefix="masks_", - ) - mask_filenames.append(mask_fname) - - if "depth_file_path" in frame: - depth_filepath = Path(frame["depth_file_path"]) - depth_fname = self._get_fname(depth_filepath, data_dir, downsample_folder_prefix="depths_") - depth_filenames.append(depth_fname) - - assert len(mask_filenames) == 0 or (len(mask_filenames) == len(image_filenames)), """ - Different number of image and mask filenames. - You should check that mask_path is specified for every frame (or zero frames) in transforms.json. - """ - assert len(depth_filenames) == 0 or (len(depth_filenames) == len(image_filenames)), """ - Different number of image and depth filenames. - You should check that depth_file_path is specified for every frame (or zero frames) in transforms.json. - """ - - has_split_files_spec = any(f"{split}_filenames" in meta for split in ("train", "val", "test")) - if f"{split}_filenames" in meta: - # Validate split first - split_filenames = set(self._get_fname(Path(x), data_dir) for x in meta[f"{split}_filenames"]) - unmatched_filenames = split_filenames.difference(image_filenames) - if unmatched_filenames: - raise RuntimeError(f"Some filenames for split {split} were not found: {unmatched_filenames}.") - - indices = [i for i, path in enumerate(image_filenames) if path in split_filenames] - CONSOLE.log(f"[yellow] Dataset is overriding {split}_indices to {indices}") - indices = np.array(indices, dtype=np.int32) - elif has_split_files_spec: - raise RuntimeError(f"The dataset's list of filenames for split {split} is missing.") - else: - # find train and eval indices based on the eval_mode specified - if self.config.eval_mode == "fraction": - i_train, i_eval = get_train_eval_split_fraction(image_filenames, self.config.train_split_fraction) - elif self.config.eval_mode == "filename": - i_train, i_eval = get_train_eval_split_filename(image_filenames) - elif self.config.eval_mode == "interval": - i_train, i_eval = get_train_eval_split_interval(image_filenames, self.config.eval_interval) - elif self.config.eval_mode == "all": - CONSOLE.log( - "[yellow] Be careful with '--eval-mode=all'. If using camera optimization, the cameras may diverge in the current implementation, giving unpredictable results." - ) - i_train, i_eval = get_train_eval_split_all(image_filenames) - else: - raise ValueError(f"Unknown eval mode {self.config.eval_mode}") - - if split == "train": - indices = i_train - elif split in ["val", "test"]: - indices = i_eval - else: - raise ValueError(f"Unknown dataparser split {split}") - - if "orientation_override" in meta: - orientation_method = meta["orientation_override"] - CONSOLE.log(f"[yellow] Dataset is overriding orientation method to {orientation_method}") - else: - orientation_method = self.config.orientation_method - - poses = torch.from_numpy(np.array(poses).astype(np.float32)) - poses, transform_matrix = camera_utils.auto_orient_and_center_poses( - poses, - method=orientation_method, - center_method=self.config.center_method, - ) - - # Scale poses - scale_factor = 1.0 - if self.config.auto_scale_poses: - scale_factor /= float(torch.max(torch.abs(poses[:, :3, 3]))) - scale_factor *= self.config.scale_factor - - poses[:, :3, 3] *= scale_factor - - # Choose image_filenames and poses based on split, but after auto orient and scaling the poses. - image_filenames = [image_filenames[i] for i in indices] - mask_filenames = [mask_filenames[i] for i in indices] if len(mask_filenames) > 0 else [] - depth_filenames = [depth_filenames[i] for i in indices] if len(depth_filenames) > 0 else [] - - idx_tensor = torch.tensor(indices, dtype=torch.long) - poses = poses[idx_tensor] - - # in x,y,z order - # assumes that the scene is centered at the origin - aabb_scale = self.config.scene_scale - scene_box = SceneBox( - aabb=torch.tensor( - [[-aabb_scale, -aabb_scale, -aabb_scale], [aabb_scale, aabb_scale, aabb_scale]], dtype=torch.float32 - ) - ) - - if "camera_model" in meta: - camera_type = CAMERA_MODEL_TO_TYPE[meta["camera_model"]] - else: - camera_type = CameraType.PERSPECTIVE - - fx = float(meta["fl_x"]) if fx_fixed else torch.tensor(fx, dtype=torch.float32)[idx_tensor] - fy = float(meta["fl_y"]) if fy_fixed else torch.tensor(fy, dtype=torch.float32)[idx_tensor] - cx = float(meta["cx"]) if cx_fixed else torch.tensor(cx, dtype=torch.float32)[idx_tensor] - cy = float(meta["cy"]) if cy_fixed else torch.tensor(cy, dtype=torch.float32)[idx_tensor] - height = int(meta["h"]) if height_fixed else torch.tensor(height, dtype=torch.int32)[idx_tensor] - width = int(meta["w"]) if width_fixed else torch.tensor(width, dtype=torch.int32)[idx_tensor] - if distort_fixed: - distortion_params = ( - torch.tensor(meta["distortion_params"], dtype=torch.float32) - if "distortion_params" in meta - else camera_utils.get_distortion_params( - k1=float(meta["k1"]) if "k1" in meta else 0.0, - k2=float(meta["k2"]) if "k2" in meta else 0.0, - k3=float(meta["k3"]) if "k3" in meta else 0.0, - k4=float(meta["k4"]) if "k4" in meta else 0.0, - p1=float(meta["p1"]) if "p1" in meta else 0.0, - p2=float(meta["p2"]) if "p2" in meta else 0.0, - ) - ) - else: - distortion_params = torch.stack(distort, dim=0)[idx_tensor] - - # Only add fisheye crop radius parameter if the images are actually fisheye, to allow the same config to be used - # for both fisheye and non-fisheye datasets. - metadata = {} - if (camera_type in [CameraType.FISHEYE, CameraType.FISHEYE624]) and (fisheye_crop_radius is not None): - metadata["fisheye_crop_radius"] = fisheye_crop_radius - - cameras = Cameras( - fx=fx, - fy=fy, - cx=cx, - cy=cy, - distortion_params=distortion_params, - height=height, - width=width, - camera_to_worlds=poses[:, :3, :4], - camera_type=camera_type, - metadata=metadata, - ) - - assert self.downscale_factor is not None - cameras.rescale_output_resolution(scaling_factor=1.0 / self.downscale_factor) - - # The naming is somewhat confusing, but: - # - transform_matrix contains the transformation to dataparser output coordinates from saved coordinates. - # - dataparser_transform_matrix contains the transformation to dataparser output coordinates from original data coordinates. - # - applied_transform contains the transformation to saved coordinates from original data coordinates. - applied_transform = None - colmap_path = self.config.data / "colmap/sparse/0" - if "applied_transform" in meta: - applied_transform = torch.tensor(meta["applied_transform"], dtype=transform_matrix.dtype) - elif colmap_path.exists(): - # For converting from colmap, this was the effective value of applied_transform that was being - # used before we added the applied_transform field to the output dataformat. - meta["applied_transform"] = [[0, 1, 0, 0], [1, 0, 0, 0], [0, 0, -1, 0]] - applied_transform = torch.tensor(meta["applied_transform"], dtype=transform_matrix.dtype) - - if applied_transform is not None: - dataparser_transform_matrix = transform_matrix @ torch.cat( - [applied_transform, torch.tensor([[0, 0, 0, 1]], dtype=transform_matrix.dtype)], 0 - ) - else: - dataparser_transform_matrix = transform_matrix - - if "applied_scale" in meta: - applied_scale = float(meta["applied_scale"]) - scale_factor *= applied_scale - - # reinitialize metadata for dataparser_outputs - metadata = {} - - # _generate_dataparser_outputs might be called more than once so we check if we already loaded the point cloud - try: - self.prompted_user - except AttributeError: - self.prompted_user = False - - # Load 3D points - if self.config.load_3D_points: - if "ply_file_path" in meta: - ply_file_path = data_dir / meta["ply_file_path"] - - elif colmap_path.exists(): - from rich.prompt import Confirm - - # check if user wants to make a point cloud from colmap points - if not self.prompted_user: - self.create_pc = Confirm.ask( - "load_3D_points is true, but the dataset was processed with an outdated ns-process-data that didn't convert colmap points to .ply! Update the colmap dataset automatically?" - ) - - if self.create_pc: - import json - - from nerfstudio.process_data.colmap_utils import create_ply_from_colmap - - with open(self.config.data / "transforms.json") as f: - transforms = json.load(f) - - # Update dataset if missing the applied_transform field. - if "applied_transform" not in transforms: - transforms["applied_transform"] = meta["applied_transform"] - - ply_filename = "sparse_pc.ply" - create_ply_from_colmap( - filename=ply_filename, - recon_dir=colmap_path, - output_dir=self.config.data, - applied_transform=applied_transform, - ) - ply_file_path = data_dir / ply_filename - transforms["ply_file_path"] = ply_filename - - # This was the applied_transform value - - with open(self.config.data / "transforms.json", "w", encoding="utf-8") as f: - json.dump(transforms, f, indent=4) - else: - ply_file_path = None - else: - if not self.prompted_user: - CONSOLE.print( - "[bold yellow]Warning: load_3D_points set to true but no point cloud found. splatfacto will use random point cloud initialization." - ) - ply_file_path = None - - if ply_file_path: - sparse_points = self._load_3D_points(ply_file_path, transform_matrix, scale_factor) - if sparse_points is not None: - metadata.update(sparse_points) - self.prompted_user = True - - dataparser_outputs = DataparserOutputs( - image_filenames=image_filenames, - cameras=cameras, - scene_box=scene_box, - mask_filenames=mask_filenames if len(mask_filenames) > 0 else None, - dataparser_scale=scale_factor, - dataparser_transform=dataparser_transform_matrix, - metadata={ - "depth_filenames": depth_filenames if len(depth_filenames) > 0 else None, - "depth_unit_scale_factor": self.config.depth_unit_scale_factor, - "mask_color": self.config.mask_color, - **metadata, - }, - ) - return dataparser_outputs - - def _load_3D_points(self, ply_file_path: Path, transform_matrix: torch.Tensor, scale_factor: float): - """Loads point clouds positions and colors from .ply - - Args: - ply_file_path: Path to .ply file - transform_matrix: Matrix to transform world coordinates - scale_factor: How much to scale the camera origins by. - - Returns: - A dictionary of points: points3D_xyz and colors: points3D_rgb - """ - import open3d as o3d # Importing open3d is slow, so we only do it if we need it. - - pcd = o3d.io.read_point_cloud(str(ply_file_path)) - - # if no points found don't read in an initial point cloud - if len(pcd.points) == 0: - return None - - points3D = torch.from_numpy(np.asarray(pcd.points, dtype=np.float32)) - points3D = ( - torch.cat( - ( - points3D, - torch.ones_like(points3D[..., :1]), - ), - -1, - ) - @ transform_matrix.T - ) - points3D *= scale_factor - points3D_rgb = torch.from_numpy((np.asarray(pcd.colors) * 255).astype(np.uint8)) - - out = { - "points3D_xyz": points3D, - "points3D_rgb": points3D_rgb, - } - return out - - def _get_fname(self, filepath: Path, data_dir: Path, downsample_folder_prefix="images_") -> Path: - """Get the filename of the image file. - downsample_folder_prefix can be used to point to auxiliary image data, e.g. masks - - filepath: the base file name of the transformations. - data_dir: the directory of the data that contains the transform file - downsample_folder_prefix: prefix of the newly generated downsampled images - """ - - if self.downscale_factor is None: - if self.config.downscale_factor is None: - test_img = Image.open(data_dir / filepath) - h, w = test_img.size - max_res = max(h, w) - df = 0 - while True: - if (max_res / 2 ** (df)) <= MAX_AUTO_RESOLUTION: - break - if not (data_dir / f"{downsample_folder_prefix}{2**(df+1)}" / filepath.name).exists(): - break - df += 1 - - self.downscale_factor = 2**df - CONSOLE.log(f"Auto image downscale factor of {self.downscale_factor}") - else: - self.downscale_factor = self.config.downscale_factor - - if self.downscale_factor > 1: - return data_dir / f"{downsample_folder_prefix}{self.downscale_factor}" / filepath.name - return data_dir / filepath diff --git a/nerfstudio/data/dataparsers/nuscenes_dataparser.py b/nerfstudio/data/dataparsers/nuscenes_dataparser.py index f1fecc88..53eb2351 100644 --- a/nerfstudio/data/dataparsers/nuscenes_dataparser.py +++ b/nerfstudio/data/dataparsers/nuscenes_dataparser.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -11,40 +12,111 @@ # 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. - """Data parser for NuScenes dataset""" -import math -import os +from collections import defaultdict from dataclasses import dataclass, field from pathlib import Path -from typing import Literal, Optional, Tuple, Type +from typing import Dict, List, Literal, Set, Tuple, Type, Union import numpy as np import pyquaternion import torch +from nuscenes.nuscenes import NuScenes as NuScenesDatabase from nerfstudio.cameras.cameras import Cameras, CameraType -from nerfstudio.data.dataparsers.base_dataparser import DataParser, DataParserConfig, DataparserOutputs -from nerfstudio.data.scene_box import SceneBox - - -def rotation_translation_to_pose(r_quat, t_vec): - """Convert quaternion rotation and translation vectors to 4x4 matrix""" - - pose = np.eye(4) - - # NB: Nuscenes recommends pyquaternion, which uses scalar-first format (w x y z) - # https://github.com/nutonomy/nuscenes-devkit/issues/545#issuecomment-766509242 - # https://github.com/KieranWynn/pyquaternion/blob/99025c17bab1c55265d61add13375433b35251af/pyquaternion/quaternion.py#L299 - # https://fzheng.me/2017/11/12/quaternion_conventions_en/ - pose[:3, :3] = pyquaternion.Quaternion(r_quat).rotation_matrix - - pose[:3, 3] = t_vec - return pose +from nerfstudio.cameras.lidars import Lidars, LidarType, transform_points +from nerfstudio.data.dataparsers.ad_dataparser import ( + DUMMY_DISTANCE_VALUE, + OPENCV_TO_NERFSTUDIO, + ADDataParser, + ADDataParserConfig, + SplitTypes, +) +from nerfstudio.data.utils.lidar_elevation_mappings import VELODYNE_HDL32E_ELEVATION_MAPPING +from nerfstudio.utils import poses as pose_utils + +MAX_RELECTANCE_VALUE = 255.0 +LIDAR_FREQUENCY = 20.0 # Hz +LIDAR_CHANNELS = 32 # number of vertical channels +ALLOWED_RIGID_CLASSES = ( + "vehicle.car", + "vehicle.bicycle", + "vehicle.motorcycle", + "vehicle.bus", + "vehicle.bus", + "vehicle.truck", + "vehicle.trailer", + "movable_object.pushable_pullable", +) +ALLOWED_DEFORMABLE_CLASSES = ("human.pedestrian",) + +TRACKING_TO_GT_CLASSNAME_MAPPING = { + "pedestrian": "human.pedestrian", + "bicycle": "vehicle.bicycle", + "motorcycle": "vehicle.motorcycle", + "car": "vehicle.car", + "bus": "vehicle.bus", + "truck": "vehicle.truck", + "trailer": "vehicle.truck", +} +# Nuscenes defines actor coordinate system as x-forward, y-left, z-up +# But we want to use x-right, y-forward, z-up +# So we need to rotate the actor coordinate system by 90 degrees around z-axis +WLH_TO_LWH = np.array( + [ + [0, 1, 0, 0], + [-1, 0, 0, 0], + [0, 0, 1, 0], + [0, 0, 0, 1], + ] +) +HORIZONTAL_BEAM_DIVERGENCE = 0.00333333333 # radians, given as 4 inches at 100 feet +VERTICAL_BEAM_DIVERGENCE = 0.00166666666 # radians, given as 2 inches at 100 feet + +NUSCENES_ELEVATION_MAPPING = { + "LIDAR_TOP": VELODYNE_HDL32E_ELEVATION_MAPPING, +} +NUSCENES_AZIMUTH_RESOLUTION = { + "LIDAR_TOP": 1 / 3.0, +} +NUSCENES_SKIP_ELEVATION_CHANNELS = { + "LIDAR_TOP": ( + 0, + 1, + ) +} +AVAILABLE_CAMERAS = ( + "FRONT", + "FRONT_LEFT", + "FRONT_RIGHT", + "BACK", + "BACK_LEFT", + "BACK_RIGHT", +) +CAMERA_TO_BOTTOM_RIGHT_CROP = { + "FRONT": (0, 0), + "FRONT_LEFT": (0, 0), + "FRONT_RIGHT": (0, 0), + "BACK": (80, 0), + "BACK_LEFT": (0, 0), + "BACK_RIGHT": (0, 0), +} +SEQ_CAMERA_TO_BOTTOM_RIGHT_CROP = defaultdict(lambda: CAMERA_TO_BOTTOM_RIGHT_CROP) +SEQ_CAMERA_TO_BOTTOM_RIGHT_CROP["scene-0164"] = { + "FRONT": (0, 0), + "FRONT_LEFT": (0, 0), + "FRONT_RIGHT": (0, 0), + "BACK": (80 + 66, 0), + "BACK_LEFT": (0, 0), + "BACK_RIGHT": (0, 0), +} + +DEFAULT_IMAGE_HEIGHT = 900 +DEFAULT_IMAGE_WIDTH = 1600 @dataclass -class NuScenesDataParserConfig(DataParserConfig): +class NuScenesDataParserConfig(ADDataParserConfig): """NuScenes dataset config. NuScenes (https://www.nuscenes.org/nuscenes) is an autonomous driving dataset containing 1000 20s clips. Each clip was recorded with a suite of sensors including 6 surround cameras. @@ -55,163 +127,318 @@ class NuScenesDataParserConfig(DataParserConfig): _target: Type = field(default_factory=lambda: NuScenes) """target class to instantiate""" - data: Path = Path("scene-0103") # TODO: rename to scene but keep checkpoint saving name? + sequence: str = "0103" """Name of the scene.""" - data_dir: Path = Path("/mnt/local/NuScenes") + data: Path = Path("/mnt/local/NuScenes") """Path to NuScenes dataset.""" - version: Literal["v1.0-mini", "v1.0-trainval"] = "v1.0-mini" + version: Literal["v1.0-mini", "v1.0-trainval"] = "v1.0-trainval" """Dataset version.""" - cameras: Tuple[Literal["FRONT", "FRONT_LEFT", "FRONT_RIGHT", "BACK", "BACK_LEFT", "BACK_RIGHT"], ...] = ("FRONT",) + cameras: Tuple[ + Literal[ + "FRONT", + "FRONT_LEFT", + "FRONT_RIGHT", + "BACK", + "BACK_LEFT", + "BACK_RIGHT", + "none", + "all", + ], + ..., + ] = ("all",) """Which cameras to use.""" - mask_dir: Optional[Path] = None - """Path to masks of dynamic objects.""" - - train_split_fraction: float = 0.9 - """The percent of images to use for training. The remaining images are for eval.""" - + lidars: Tuple[Literal["LIDAR_TOP", "none"], ...] = ("LIDAR_TOP",) + """Which lidars to use. Currently only supports LIDAR_TOP""" verbose: bool = False """Load dataset with verbose messaging""" + annotation_interval: float = 0.5 + """Length of time interval used to sample annotations from the dataset""" + include_deformable_actors: bool = True + """Include deformable actors in the dataset (NuScenes has many pedestrians so we default this to true).""" + scene_box_height = (-10, 20) + """The upper and lower height bounds for the scene box (m).""" + train_eval_split_type: SplitTypes = SplitTypes.LINSPACE + """Type of split to use for train/eval split.""" + lidar_elevation_mapping: Dict[str, Dict] = field(default_factory=lambda: NUSCENES_ELEVATION_MAPPING) + """Elevation mapping for each lidar.""" + skip_elevation_channels: Dict[str, Tuple] = field(default_factory=lambda: NUSCENES_SKIP_ELEVATION_CHANNELS) + """Channels to skip when adding missing points.""" + lidar_azimuth_resolution: Dict[str, float] = field(default_factory=lambda: NUSCENES_AZIMUTH_RESOLUTION) + """Azimuth resolution for each lidar.""" + add_missing_points: bool = True + """Add missing points to lidar point clouds.""" + + def __post_init__(self) -> None: + super().__post_init__() + if "scene" not in self.sequence: + self.sequence = "scene-" + self.sequence @dataclass -class NuScenes(DataParser): +class NuScenes(ADDataParser): """NuScenes DatasetParser""" config: NuScenesDataParserConfig - def _generate_dataparser_outputs(self, split="train"): - # nuscenes is slow to import, so we only do it if we need it. - from nuscenes.nuscenes import NuScenes as NuScenesDatabase + @property + def actor_transform(self) -> torch.Tensor: + """Nuscenes uses x-forward, so we need to rotate to x-right.""" + return torch.from_numpy(WLH_TO_LWH) + + def _get_cameras(self) -> Tuple[Cameras, List[Path]]: + if "all" in self.config.cameras: + self.config.cameras = AVAILABLE_CAMERAS + filenames, times, intrinsics, poses, cam2egos, idxs = [], [], [], [], [], [] + heights, widths = [], [] + first_sample = self.nusc.get("sample", self.scene["first_sample_token"]) + is_key_frame = [] + for cam_idx, camera in enumerate(["CAM_" + camera for camera in self.config.cameras]): + for sample_data in self._find_all_sample_data(first_sample["data"][camera]): + calibrated_sensor_data = self.nusc.get("calibrated_sensor", sample_data["calibrated_sensor_token"]) + ego_pose_data = self.nusc.get("ego_pose", sample_data["ego_pose_token"]) + ego_pose = _rotation_translation_to_pose(ego_pose_data["rotation"], ego_pose_data["translation"]) + cam_pose = _rotation_translation_to_pose( + calibrated_sensor_data["rotation"], calibrated_sensor_data["translation"] + ) + cam_pose[:3, :3] = cam_pose[:3, :3] @ OPENCV_TO_NERFSTUDIO + pose = ego_pose @ cam_pose + cam2egos.append(cam_pose) + poses.append(pose) + filenames.append(self.config.data / sample_data["filename"]) + intrinsics.append(calibrated_sensor_data["camera_intrinsic"]) + times.append(sample_data["timestamp"] / 1e6) + idxs.append(cam_idx) + heights.append( + DEFAULT_IMAGE_HEIGHT - SEQ_CAMERA_TO_BOTTOM_RIGHT_CROP[self.config.sequence][camera[4:]][0] + ) # :4 to remove CAM_ + widths.append( + DEFAULT_IMAGE_WIDTH - SEQ_CAMERA_TO_BOTTOM_RIGHT_CROP[self.config.sequence][camera[4:]][1] + ) # :4 to remove CAM_ + is_key_frame.append(sample_data["is_key_frame"]) + + # To tensors + intrinsics = torch.tensor(np.array(intrinsics), dtype=torch.float32) + poses = torch.tensor(np.array(poses), dtype=torch.float32) + cam2egos = torch.tensor(np.array(cam2egos), dtype=torch.float32) + times = torch.tensor(times, dtype=torch.float64) + idxs = torch.tensor(idxs).int().unsqueeze(-1) + heights = torch.tensor(heights).int() + widths = torch.tensor(widths).int() + is_key_frame = torch.tensor(is_key_frame).reshape(-1, 1).bool() + cameras = Cameras( + fx=intrinsics[:, 0, 0], + fy=intrinsics[:, 1, 1], + cx=intrinsics[:, 0, 2], + cy=intrinsics[:, 1, 2], + height=heights, + width=widths, + camera_to_worlds=poses[:, :3, :4], + camera_type=CameraType.PERSPECTIVE, + times=times, + metadata={"sensor_idxs": idxs, "is_key_frame": is_key_frame}, + ) + return cameras, filenames + + def _get_lidars(self) -> Tuple[Lidars, List[Path]]: + lidar_filenames, times, poses, lid2egos, idxs = [], [], [], [], [] + first_sample = self.nusc.get("sample", self.scene["first_sample_token"]) + is_key_frame = [] + for lidar_idx, lidar in enumerate(self.config.lidars): + for lidar_data in self._find_all_sample_data(first_sample["data"][lidar]): + calibrated_sensor_data = self.nusc.get("calibrated_sensor", lidar_data["calibrated_sensor_token"]) + ego_pose_data = self.nusc.get("ego_pose", lidar_data["ego_pose_token"]) + ego_pose = _rotation_translation_to_pose(ego_pose_data["rotation"], ego_pose_data["translation"]) + lidar_pose = _rotation_translation_to_pose( + calibrated_sensor_data["rotation"], calibrated_sensor_data["translation"] + ) + pose = ego_pose @ lidar_pose + + lidar_filenames.append(self.config.data / lidar_data["filename"]) - nusc = NuScenesDatabase( + poses.append(pose) + lid2egos.append(lidar_pose) + times.append(lidar_data["timestamp"] / 1e6) + idxs.append(lidar_idx) + is_key_frame.append(lidar_data["is_key_frame"]) + + poses = torch.tensor(np.array(poses), dtype=torch.float64) # will be changed to float32 later + lid2egos = torch.tensor(np.array(lid2egos), dtype=torch.float32) + times = torch.tensor(times, dtype=torch.float64) # need higher precision + idxs = torch.tensor(idxs).int().unsqueeze(-1) + + is_key_frame = torch.tensor(is_key_frame).reshape(-1, 1).bool() + lidars = Lidars( + lidar_to_worlds=poses[:, :3, :4], + lidar_type=LidarType.VELODYNE_HDL32E, + assume_ego_compensated=True, + times=times, + metadata={"sensor_idxs": idxs, "is_key_frame": is_key_frame}, + horizontal_beam_divergence=HORIZONTAL_BEAM_DIVERGENCE, + vertical_beam_divergence=VERTICAL_BEAM_DIVERGENCE, + valid_lidar_distance_threshold=DUMMY_DISTANCE_VALUE / 2, + ) + return lidars, lidar_filenames + + def _read_lidars(self, lidars: Lidars, filepaths: List[Path]) -> List[torch.Tensor]: + point_clouds = [] + for filepath in filepaths: + pc = np.fromfile(str(filepath), dtype=np.float32).reshape([-1, 5]) + pc[..., 3] = pc[..., 3] / MAX_RELECTANCE_VALUE # normalize reflectance + # nuscenes lidar time is the time of the end of the sweep. Add estimated times per point + offsets = np.repeat(np.linspace(-1 / LIDAR_FREQUENCY, 0, pc.shape[0] // LIDAR_CHANNELS), LIDAR_CHANNELS) + # warning: here we overwrite the beam index channel with time offsets, since we assume x,y,z,r,t format + channel_id = pc[..., 4].astype(np.int32) + pc[..., 4] = offsets + # concatenate pc with channel id + pc = np.concatenate([pc, channel_id[:, None]], axis=-1) + point_clouds.append(torch.from_numpy(pc)) + + if self.config.add_missing_points: + # remove ego motion compensation + poses = lidars.lidar_to_worlds + times = lidars.times.squeeze(-1) + missing_points = [] + for point_cloud, l2w, time in zip(point_clouds, poses, times): + pc = point_cloud.clone() + # absolute time + pc[:, 4] = pc[:, 4] + time + # project to world frame + pc[..., :3] = transform_points(pc[..., :3], l2w.unsqueeze(0).to(pc)) + # remove ego motion compensation + pc, interpolated_poses = self._remove_ego_motion_compensation(pc, poses, times) + # reset time + pc[:, 4] = point_cloud[:, 4].clone() + # transform to common lidar frame again + interpolated_poses = torch.matmul( + pose_utils.inverse(l2w.unsqueeze(0)).float(), pose_utils.to4x4(interpolated_poses).float() + ) + # move channel from index 5 to 3 + pc = pc[..., [0, 1, 2, 5, 3, 4]] + # add missing points + missing_points.append(self._get_missing_points(pc, interpolated_poses, "LIDAR_TOP", dist_cutoff=0.05)) + + # add missing points to point clouds + point_clouds = [torch.cat([pc, missing], dim=0) for pc, missing in zip(point_clouds, missing_points)] + + lidars.lidar_to_worlds = lidars.lidar_to_worlds.float() + return point_clouds + + def _get_actor_trajectories(self) -> List[Dict]: + trajs = defaultdict(list) + curr_sample = self.nusc.get("sample", self.scene["first_sample_token"]) + while True: + for box_token in curr_sample["anns"]: + box = self.nusc.get_box(box_token) + pose = np.eye(4) + pose[:3, :3] = box.orientation.rotation_matrix + pose[:3, 3] = np.array(box.center) + pose = pose @ WLH_TO_LWH + instance_token = self.nusc.get("sample_annotation", box.token)["instance_token"] + trajs[instance_token].append( + { + "pose": pose, + "wlh": np.array(box.wlh), + "label": box.name, + "time": curr_sample["timestamp"] / 1e6, + } + ) + if curr_sample["next"]: + curr_sample = self.nusc.get("sample", curr_sample["next"]) + else: + break + return self._traj_dict_to_list(trajs) + + def _generate_dataparser_outputs(self, split="train"): + self.nusc = NuScenesDatabase( version=self.config.version, - dataroot=str(self.config.data_dir.absolute()), + dataroot=str(self.config.data.absolute()), verbose=self.config.verbose, ) - cameras = ["CAM_" + camera for camera in self.config.cameras] - - assert ( - len(cameras) == 1 - ), "waiting on multiple camera support" # TODO: remove once multiple cameras are supported - - # get samples for scene - samples = [ - samp for samp in nusc.sample if nusc.get("scene", samp["scene_token"])["name"] == str(self.config.data) - ] - - # sort by timestamp (only to make chronological viz easier) - samples.sort(key=lambda x: (x["scene_token"], x["timestamp"])) - - transform1 = np.array( - [ - [0, -1, 0, 0], - [0, 0, -1, 0], - [1, 0, 0, 0], - [0, 0, 0, 1], - ] - ) - transform2 = np.array( - [ - [0, 0, 1, 0], - [0, 1, 0, 0], - [-1, 0, 0, 0], - [0, 0, 0, 1], - ] - ) + self.scene = self.nusc.get("scene", self.nusc.field2token("scene", "name", str(self.config.sequence))[0]) + out = super()._generate_dataparser_outputs(split) + del self.nusc + del self.scene + return out + + def _find_all_sample_data(self, sample_data_token: str): + """Finds all sample data from a given sample token.""" + curr_token = sample_data_token + sd = self.nusc.get("sample_data", curr_token) + # Rewind to first sample data + while sd["prev"]: + curr_token = sd["prev"] + sd = self.nusc.get("sample_data", curr_token) + # Forward to last sample data + all_sample_data = [sd] + while sd["next"]: + curr_token = sd["next"] + sd = self.nusc.get("sample_data", curr_token) + all_sample_data.append(sd) + return all_sample_data + + def _traj_dict_to_list(self, traj: dict) -> list: + """Convert a dictionary of lists with trajectories to a list of dictionaries with trajectories""" + allowed_classes: Set[str] = set(ALLOWED_RIGID_CLASSES) + if self.config.include_deformable_actors: + allowed_classes.update(ALLOWED_DEFORMABLE_CLASSES) + traj_out = [] + for instance_token, traj_list in traj.items(): + poses = torch.from_numpy(np.stack([t["pose"] for t in traj_list]).astype(np.float32)) + times = torch.from_numpy(np.array([t["time"] for t in traj_list])) + dims = torch.from_numpy(np.array([t["wlh"] for t in traj_list]).astype(np.float32)) + dims = dims.max(0).values # take max dimensions (important for deformable objects) + dynamic = (poses[:, :3, 3].std(dim=0) > 0.50).any() + stationary = not dynamic # TODO: maybe make this stricter + if stationary or not _is_label_allowed(traj_list[0]["label"], allowed_classes): + continue + traj_dict = { + "uuid": instance_token, + "label": traj_list[0]["label"], + "poses": poses, + "timestamps": times, + "dims": dims, + "stationary": stationary, + "symmetric": "human" not in traj_list[0]["label"], + "deformable": "human" in traj_list[0]["label"], + } + traj_out.append(traj_dict) + return traj_out + + def _get_nuscenes_sample_indices(self, is_key_frame: torch.Tensor) -> Tuple[torch.Tensor, torch.Tensor]: + train_mask = ~is_key_frame + eval_mask = is_key_frame + return train_mask.nonzero(as_tuple=True)[0], eval_mask.nonzero(as_tuple=True)[0] + + def _get_train_eval_indices(self, sensors: Union[Cameras, Lidars]) -> Tuple[torch.Tensor, torch.Tensor]: + if self.config.train_eval_split_type == SplitTypes.LINSPACE: + return self._get_linspaced_indices(sensors.metadata["sensor_idxs"].squeeze(-1)) + elif self.config.train_eval_split_type == SplitTypes.NUSCENES_SAMPLES: + is_key_frame = sensors.metadata["is_key_frame"] + del sensors.metadata["is_key_frame"] + return self._get_nuscenes_sample_indices(is_key_frame) + else: + raise ValueError(f"Unknown split type {self.config.train_eval_split_type}") - # get image filenames and camera data - image_filenames = [] - mask_filenames = [] - mask_dir = self.config.mask_dir if self.config.mask_dir is not None else Path("") - intrinsics = [] - poses = [] - for sample in samples: - for camera in cameras: - camera_data = nusc.get("sample_data", sample["data"][camera]) - calibrated_sensor_data = nusc.get("calibrated_sensor", camera_data["calibrated_sensor_token"]) - ego_pose_data = nusc.get("ego_pose", camera_data["ego_pose_token"]) - - ego_pose = rotation_translation_to_pose(ego_pose_data["rotation"], ego_pose_data["translation"]) - cam_pose = rotation_translation_to_pose( - calibrated_sensor_data["rotation"], calibrated_sensor_data["translation"] - ) - pose = ego_pose @ cam_pose - # rotate to opencv frame - pose = transform1 @ pose +def _rotation_translation_to_pose(r_quat, t_vec): + """Convert quaternion rotation and translation vectors to 4x4 matrix""" - # convert from opencv camera to nerfstudio camera - pose[0:3, 1:3] *= -1 - pose = pose[np.array([1, 0, 2, 3]), :] - pose[2, :] *= -1 + pose = np.eye(4) - # rotate to z-up in viewer - pose = transform2 @ pose + # NB: Nuscenes recommends pyquaternion, which uses scalar-first format (w x y z) + # https://github.com/nutonomy/nuscenes-devkit/issues/545#issuecomment-766509242 + # https://github.com/KieranWynn/pyquaternion/blob/99025c17bab1c55265d61add13375433b35251af/pyquaternion/quaternion.py#L299 + # https://fzheng.me/2017/11/12/quaternion_conventions_en/ + pose[:3, :3] = pyquaternion.Quaternion(r_quat).rotation_matrix - image_filenames.append(self.config.data_dir / camera_data["filename"]) - mask_filenames.append( - mask_dir / "masks" / camera / os.path.split(camera_data["filename"])[1].replace("jpg", "png") - ) - intrinsics.append(calibrated_sensor_data["camera_intrinsic"]) - poses.append(pose) - poses = torch.from_numpy(np.stack(poses).astype(np.float32)) - intrinsics = torch.from_numpy(np.array(intrinsics).astype(np.float32)) - - # center poses - poses[:, :3, 3] -= poses[:, :3, 3].mean(dim=0) - - # scale poses - poses[:, :3, 3] /= poses[:, :3, 3].abs().max() - - # filter image_filenames and poses based on train/eval split percentage - num_snapshots = len(samples) - num_train_snapshots = math.ceil(num_snapshots * self.config.train_split_fraction) - num_eval_snapshots = num_snapshots - num_train_snapshots - i_all = np.arange(num_snapshots) - i_train = np.linspace( - 0, num_snapshots - 1, num_train_snapshots, dtype=int - ) # equally spaced training snapshots starting and ending at 0 and num_images-1 - i_eval = np.setdiff1d(i_all, i_train) # eval images are the remaining images - assert len(i_eval) == num_eval_snapshots - i_train = (i_train[None, :] * len(cameras) + np.arange(len(cameras))[:, None]).ravel() - i_eval = (i_eval[None, :] * len(cameras) + np.arange(len(cameras))[:, None]).ravel() - if split == "train": - indices = i_train - elif split in ["val", "test"]: - indices = i_eval - else: - raise ValueError(f"Unknown dataparser split {split}") - - # Choose image_filenames and poses based on split, but after auto orient and scaling the poses. - image_filenames = [image_filenames[i] for i in indices] - mask_filenames = [mask_filenames[i] for i in indices] - intrinsics = intrinsics[indices] - poses = poses[indices] - - # in x,y,z order - # assumes that the scene is centered at the origin - aabb_scale = 1.0 - scene_box = SceneBox( - aabb=torch.tensor( - [[-aabb_scale, -aabb_scale, -aabb_scale], [aabb_scale, aabb_scale, aabb_scale]], dtype=torch.float32 - ) - ) + pose[:3, 3] = t_vec + return pose - cameras = Cameras( - fx=intrinsics[:, 0, 0].detach().clone(), - fy=intrinsics[:, 1, 1].detach().clone(), - cx=intrinsics[:, 0, 2].detach().clone(), - cy=intrinsics[:, 1, 2].detach().clone(), - height=900, - width=1600, - camera_to_worlds=poses[:, :3, :4], - camera_type=CameraType.PERSPECTIVE, - ) - dataparser_outputs = DataparserOutputs( - image_filenames=image_filenames, - cameras=cameras, - scene_box=scene_box, - mask_filenames=mask_filenames if self.config.mask_dir is not None else None, - ) - return dataparser_outputs +def _is_label_allowed(label: str, allowed_classes: Set[str]) -> bool: + """Check if label is allowed, on all possible hierarchies.""" + split_label = label.split(".") + for i in range(len(split_label)): + if ".".join(split_label[: i + 1]) in allowed_classes: + return True + return False diff --git a/nerfstudio/data/dataparsers/pandaset_dataparser.py b/nerfstudio/data/dataparsers/pandaset_dataparser.py new file mode 100644 index 00000000..d6fd61fb --- /dev/null +++ b/nerfstudio/data/dataparsers/pandaset_dataparser.py @@ -0,0 +1,555 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# +# 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. +"""Data parser for PandaSet dataset""" + +from collections import defaultdict +from dataclasses import dataclass, field +from functools import lru_cache +from pathlib import Path +from typing import Dict, List, Literal, Tuple, Type + +import numpy as np +import pandas as pd +import pyquaternion +import torch +import yaml +from pandaset import DataSet + +from nerfstudio.cameras.cameras import Cameras, CameraType +from nerfstudio.cameras.lidars import Lidars, LidarType +from nerfstudio.data.dataparsers.ad_dataparser import ( + DUMMY_DISTANCE_VALUE, + OPENCV_TO_NERFSTUDIO, + ADDataParser, + ADDataParserConfig, +) +from nerfstudio.data.dataparsers.base_dataparser import DataparserOutputs +from nerfstudio.data.utils.lidar_elevation_mappings import PANDAR64_ELEVATION_MAPPING +from nerfstudio.utils import poses as pose_utils + +PANDASET_ELEVATION_MAPPING = {"Pandar64": PANDAR64_ELEVATION_MAPPING} + +LIDAR_NAME_TO_INDEX = { + "Pandar64": 0, + "PandarGT": 1, +} + +PANDASET_SEQ_LEN = 80 +EXTRINSICS_FILE_PATH = "./nerfstudio/data/dataparsers/pandaset_extrinsics.yaml" +MAX_RELECTANCE_VALUE = 255.0 + +ALLOWED_RIGID_CLASSES = ( + "Car", + "Pickup Truck", + "Medium-sized Truck", + "Semi-truck", + "Towed Object", + "Motorcycle", + "Other Vehicle - Construction Vehicle", + "Other Vehicle - Uncommon", + "Other Vehicle - Pedicab", + "Emergency Vehicle", + "Bus", + "Personal Mobility Device", + "Motorized Scooter", + "Bicycle", + "Train", + "Trolley", + "Tram / Subway", +) +ALLOWED_DEFORMABLE_CLASSES = ( + "Pedestrian", + "Pedestrian with Object", +) + +LANE_SHIFT_SIGN: Dict[str, Literal[-1, 1]] = defaultdict(lambda: -1) +LANE_SHIFT_SIGN.update( + { + "001": -1, + "011": 1, + "016": 1, + "028": -1, + "053": 1, + "063": -1, + "084": -1, + "106": -1, + "123": -1, + "158": -1, + } +) + +PANDASET_AZIMUT_RESOLUTION = {"Pandar64": 0.2} +PANDASET_SKIP_ELEVATION_CHANNELS = { + "Pandar64": ( + 62, + 63, + ) +} + +HORIZONTAL_BEAM_DIVERGENCE = 3e-3 # radians +VERTICAL_BEAM_DIVERGENCE = 1.5e-3 # radians + +AVAILABLE_CAMERAS = ("front", "front_left", "front_right", "back", "left", "right") + + +@dataclass +class PandaSetDataParserConfig(ADDataParserConfig): + """PandaSet dataset config. + PandaSet (https://pandaset.org/) is an autonomous driving dataset containing 100+ 8s clips. + Each clip was recorded with a suite of sensors including 6 surround cameras and two lidars. + It also includes 3D cuboid annotations around objects. + """ + + _target: Type = field(default_factory=lambda: PandaSet) + """target class to instantiate""" + sequence: str = "001" + """Name of the scene.""" + cameras: Tuple[Literal["front", "front_left", "front_right", "back", "left", "right", "none", "all"], ...] = ( + "front", + "front_left", + "front_right", + "back", + "left", + "right", + ) + """Which cameras to use.""" + lidars: Tuple[Literal["Pandar64", "PandarGT", "none"], ...] = ("Pandar64",) + """Which lidars to use.""" + annotation_interval: float = 0.1 + """Interval between annotations in seconds.""" + correct_cuboid_time: bool = True + """Whether to correct the cuboid time to match the actual time of observation, not the end of the lidar sweep.""" + min_lidar_dist: Tuple[float, float, float] = (1.0, 2.0, 2.0) + """Pandaset lidar is x-right, y-down, z-forward.""" + lidar_elevation_mapping: Dict[str, Dict] = field(default_factory=lambda: PANDASET_ELEVATION_MAPPING) + """Elevation mapping for each lidar.""" + skip_elevation_channels: Dict[str, Tuple] = field(default_factory=lambda: PANDASET_SKIP_ELEVATION_CHANNELS) + """Channels to skip when adding missing points.""" + lidar_azimuth_resolution: Dict[str, float] = field(default_factory=lambda: PANDASET_AZIMUT_RESOLUTION) + """Azimuth resolution for each lidar.""" + rolling_shutter_offsets: Tuple[float, float] = (-0.03, 0.01) + """In pandaset the image time seems to line up with the final row.""" + + +@dataclass +class PandaSet(ADDataParser): + """PandaSet DatasetParser""" + + config: PandaSetDataParserConfig + + def _get_lane_shift_sign(self, sequence: str) -> Literal[-1, 1]: + return LANE_SHIFT_SIGN.get(sequence, 1) + + def _get_cameras(self) -> Tuple[Cameras, List[Path]]: + """Returns camera info and image filenames.""" + if "all" in self.config.cameras: + self.config.cameras = AVAILABLE_CAMERAS + cameras = [cam + "_camera" for cam in self.config.cameras] + # get image filenames and camera data + image_filenames = [] + times = [] + intrinsics = [] + poses = [] + idxs = [] + heights = [] + for i in range(PANDASET_SEQ_LEN): + for camera in cameras: + curr_cam = self.sequence.camera[camera] + file_path = curr_cam._data_structure[i] + pose = _pandaset_pose_to_matrix(curr_cam.poses[i]) + pose[:3, :3] = pose[:3, :3] @ OPENCV_TO_NERFSTUDIO + intrinsic_ = curr_cam.intrinsics + intrinsic = np.array( + [ + [intrinsic_.fx, 0, intrinsic_.cx], + [0, intrinsic_.fy, intrinsic_.cy], + [0, 0, 1], + ] + ) + image_filenames.append(file_path) + intrinsics.append(intrinsic) + poses.append(pose) + times.append(curr_cam.timestamps[i]) + idxs.append(cameras.index(camera)) + heights.append(1080 - (250 if camera == "back_camera" else 0)) + + intrinsics = torch.tensor(np.array(intrinsics), dtype=torch.float32) + poses = torch.tensor(np.array(poses), dtype=torch.float32) + times = torch.tensor(times, dtype=torch.float64) # need higher precision + idxs = torch.tensor(idxs).int().unsqueeze(-1) + cameras = Cameras( + fx=intrinsics[:, 0, 0], + fy=intrinsics[:, 1, 1], + cx=intrinsics[:, 0, 2], + cy=intrinsics[:, 1, 2], + height=torch.tensor(heights), + width=1920, + camera_to_worlds=poses[:, :3, :4], + camera_type=CameraType.PERSPECTIVE, + times=times, + metadata={"sensor_idxs": idxs}, + ) + return cameras, image_filenames + + def _get_lidars(self) -> Tuple[Lidars, List[Path]]: + """Returns lidar info and loaded point clouds.""" + poses = [] + times = [] + idxs = [] + lidar_filenames = [] + for i in range(PANDASET_SEQ_LEN): + # the pose information in self.sequence.lidar.poses is not correct, so we compute it from the camera pose and extrinsics + # the lidar scans are synced such that the middle of a scan is at the same time as the front camera image + front_cam = self.sequence.camera["front_camera"] + front_cam2w = _pandaset_pose_to_matrix(front_cam.poses[i]) + front_cam_extrinsics = self.extrinsics["front_camera"] + front_cam_extrinsics["position"] = front_cam_extrinsics["extrinsic"]["transform"]["translation"] + front_cam_extrinsics["heading"] = front_cam_extrinsics["extrinsic"]["transform"]["rotation"] + l2front_cam = _pandaset_pose_to_matrix(front_cam_extrinsics) + l2w = torch.from_numpy(front_cam2w @ l2front_cam) + + # Load point cloud + filename = self.sequence.lidar._data_structure[i] + # since we are using the front camera pose, we need to use the front camera timestamp + time = front_cam.timestamps[i] + + for lidar in self.config.lidars: + lidar_idx = LIDAR_NAME_TO_INDEX[lidar] + lidar_filenames.append(Path(filename)) + poses.append(l2w) + idxs.append(lidar_idx) + times.append(time) + + poses = torch.stack(poses) + times = torch.tensor(times, dtype=torch.float64) # need higher precision + idxs = torch.tensor(idxs).int().unsqueeze(-1) + + lidars = Lidars( + lidar_to_worlds=poses[:, :3, :4], + lidar_type=LidarType.PANDAR64, + times=times, + metadata={"sensor_idxs": idxs}, + horizontal_beam_divergence=HORIZONTAL_BEAM_DIVERGENCE, + vertical_beam_divergence=VERTICAL_BEAM_DIVERGENCE, + valid_lidar_distance_threshold=DUMMY_DISTANCE_VALUE / 2, + ) + return lidars, lidar_filenames + + def _read_lidars(self, lidars: Lidars, filepaths: List[Path]) -> List[torch.Tensor]: + point_clouds = [] + point_clouds_in_world = [] + + @lru_cache(maxsize=1) + def read_point_cloud(filepath): + return pd.read_pickle(filepath).values + + for i, filename in enumerate(filepaths): + lidar = lidars[i] + lidar_idx = lidars.metadata["sensor_idxs"][i] + l2w = pose_utils.to4x4(lidar.lidar_to_worlds) + + # Load point cloud + point_cloud = torch.from_numpy(read_point_cloud(filename)) + point_cloud[:, 3] /= MAX_RELECTANCE_VALUE + if lidar_idx == LIDAR_NAME_TO_INDEX["Pandar64"]: + point_clouds_in_world.append(point_cloud[point_cloud[:, -1] == LIDAR_NAME_TO_INDEX["Pandar64"], :-1]) + points = point_cloud[:, :3] + # transform points from world space to sensor space + points = torch.hstack((points, torch.ones((points.shape[0], 1)))) + points = (torch.matmul(torch.linalg.inv(l2w), points.T).T)[:, :3] + point_cloud[:, :3] = points + + # and adjust the point cloud timestamps accordingly + point_cloud[:, 4] -= lidar.times + + pc = point_cloud[point_cloud[:, -1] == lidar_idx, :-1] + point_clouds.append(pc.float()) + + assert len(point_clouds) == len( + lidars + ), f"Number of point clouds ({len(point_clouds)}) does not match number of lidars ({len(lidars)})" + + if self.config.add_missing_points: + poses = lidars.lidar_to_worlds + times = lidars.times.squeeze(-1) + + pc_without_ego_motion_comp = [ + self._remove_ego_motion_compensation(pc, poses, times) for pc in point_clouds_in_world + ] + pc_without_ego_motion_comp = [ + (self._add_channel_info(pc, dim=3, lidar_name="Pandar64"), pose) + for pc, pose in pc_without_ego_motion_comp + ] # TODO: clean up to handle multiple lidars + + # project back to joint lidar pose + pc_without_ego_motion_comp = [ + (pc, torch.matmul(pose_utils.inverse(l2w.unsqueeze(0)).float(), pose_utils.to4x4(pc_poses).float())) + for (pc, pc_poses), l2w in zip(pc_without_ego_motion_comp, poses) + ] + missing_points = [ + self._get_missing_points(pc, poses, "Pandar64") for pc, poses in pc_without_ego_motion_comp + ] + # drop channel info again + missing_points = [torch.cat([pc[:, :3], pc[:, 4:]], dim=-1) for pc in missing_points] + # subtracts lidar time + for pc, time in zip(missing_points, times): + pc[:, 4] -= time + # add missing points to point clouds + point_clouds = [torch.cat([pc, missing], dim=0) for pc, missing in zip(point_clouds, missing_points)] + + lidars.lidar_to_worlds = lidars.lidar_to_worlds.float() + + return point_clouds + + def _get_actor_trajectories(self) -> List[Dict]: + """Returns a list of actor trajectories.""" + allowed_classes = ALLOWED_RIGID_CLASSES + if self.config.include_deformable_actors: + allowed_classes += ALLOWED_DEFORMABLE_CLASSES + cuboids = [] + for i in range(PANDASET_SEQ_LEN): + curr_cuboids = self.sequence.cuboids[i] + # Remove invalid cuboids + is_allowed_class = np.array([label in allowed_classes for label in curr_cuboids["label"]]) + valid_mask = (~curr_cuboids["stationary"]) & is_allowed_class + curr_cuboids = curr_cuboids[valid_mask] + if not len(curr_cuboids): + continue + + uuid = np.array(curr_cuboids["uuid"]) + label = np.array(curr_cuboids["label"]) + + yaw = curr_cuboids["yaw"].astype(np.float32) + rot = _yaw_to_rotation_matrix(yaw) + + stationary = np.array(curr_cuboids["stationary"], dtype=np.bool8) # True for static objects + pos_x = curr_cuboids["position.x"].astype(np.float32) # x position of cuboid in world coords + pos_y = curr_cuboids["position.y"].astype(np.float32) # y position of cuboid in world coords + pos_z = curr_cuboids["position.z"].astype(np.float32) # z position of cuboid in world coords + pos = np.vstack([pos_x, pos_y, pos_z]).T + + cuboid_poses = np.eye(4)[None].repeat(len(uuid), axis=0) + cuboid_poses[:, :3, :3] = rot + cuboid_poses[:, :3, 3] = pos + + width = curr_cuboids["dimensions.x"].astype(np.float32) # width of cuboid in world coords + length = curr_cuboids["dimensions.y"].astype(np.float32) # length of cuboid in world coords + height = curr_cuboids["dimensions.z"].astype(np.float32) # height of cuboid in world coords + dims = np.vstack([width, length, height]).T + + # if dynamic and visible in both 360 and front facing, two cuboids are annoated. 0 for 360, 1 for front facing, -1 otherwise + sensor_id = np.array(curr_cuboids["cuboids.sensor_id"], dtype=np.int32) + sibling_id = np.array( + curr_cuboids["cuboids.sibling_id"] + ) # uuid of sibling cuboid, i.e., if sensor_id != -1 + + if self.config.correct_cuboid_time: + # correct the cuboid time to match the actual time of observation, not the end of the lidar sweep + lidpose = _pandaset_pose_to_matrix(self.sequence.lidar.poses[i]) + posinlid = pos @ lidpose[:3, :3].T + lidpose[:3, 3] + angle = np.arctan2(posinlid[:, 0], posinlid[:, 1]) - np.pi / 2 + angle = (angle + np.pi) % (2 * np.pi) - np.pi + timediff = angle / (2 * np.pi) * np.diff(self.sequence.lidar.timestamps).mean() + cuboid_times = self.sequence.camera["front_camera"].timestamps[i] + timediff + else: + # assume the cuboid time matches the sequence time + cuboid_times = np.repeat(self.sequence.camera["front_camera"].timestamps[i], len(uuid)) + + for cuboid_index in range(len(uuid)): + cuboids.append( + { + "uuid": uuid[cuboid_index], + "label": label[cuboid_index], + "poses": cuboid_poses[cuboid_index], + "stationary": stationary[cuboid_index], + "dims": dims[cuboid_index], + "sensor_ids": sensor_id[cuboid_index], + "sibling_id": sibling_id[cuboid_index] if sensor_id[cuboid_index] != -1 else None, + "timestamps": np.array(cuboid_times[cuboid_index]), + } + ) + return _cuboids_to_trajectories(cuboids) + + def _generate_dataparser_outputs(self, split="train") -> DataparserOutputs: + pandaset = DataSet(str(self.config.data.absolute())) + self.sequence = pandaset[self.config.sequence] + self.sequence.load() + self.extrinsics = yaml.load(open(EXTRINSICS_FILE_PATH, "r"), Loader=yaml.FullLoader) + return super()._generate_dataparser_outputs(split) + + def _add_channel_info(self, point_cloud: torch.Tensor, dim: int = -1, lidar_name: str = "") -> torch.Tensor: + """Infer channel id from point cloud, and add it to the point cloud. + + Args: + point_cloud: Point cloud to add channel id to (in sensor frame). Shape: [num_points, 3+x] x,y,z (timestamp, intensity, etc.) + + Returns: + Point cloud with channel id. Shape: [num_points, 3+x+1] x,y,z (timestamp, intensity, etc.), channel_id + channel_id is added to dim + """ + # these are limits where channels are equally spaced + ELEV_HIGH_IDX = 5 + ELEV_LOW_IDX = -11 + ELEV_LOW_IDX_ABS = len(self.config.lidar_elevation_mapping[lidar_name]) + ELEV_LOW_IDX + + dist = torch.norm(point_cloud[:, :3], dim=-1) + elevation = torch.arcsin(point_cloud[:, 2] / dist) + elevation = torch.rad2deg(elevation) + + middle_elev_mask = (elevation < (self.config.lidar_elevation_mapping[lidar_name][ELEV_HIGH_IDX] + 0.2)) & ( + elevation > (self.config.lidar_elevation_mapping[lidar_name][ELEV_LOW_IDX_ABS] - 0.2) + ) + middle_elev = elevation[middle_elev_mask] + + histc, bin_edges = torch.histogram(middle_elev, bins=2000) + + # channels should be equally spaced + expected_channel_edges = (bin_edges[-1] - bin_edges[0]) / 49 * torch.arange(50) + bin_edges[0] + + res = ( + self.config.lidar_elevation_mapping[lidar_name][ELEV_HIGH_IDX] + - self.config.lidar_elevation_mapping[lidar_name][ELEV_HIGH_IDX + 1] + ) + + # find consecutive empty bins in histogram + empty_bins = [] + empty_bin = [] + empty_bins_edges = [] + for i in range(len(histc)): + if histc[i] == 0: + empty_bin.append(i) + else: + if len(empty_bin) > 0: + empty_bins.append(empty_bin) + empty_bins_edges.append((bin_edges[empty_bin[0]], bin_edges[empty_bin[-1] + 1])) + empty_bin = [] + + # find channel edges, use first expected for init + found_channel_edges = [expected_channel_edges[0].tolist()] + empty_bins_edges = torch.tensor(empty_bins_edges) + for i, edge in enumerate(expected_channel_edges[1:-1]): + found_edge = False + for empty_bin in empty_bins_edges: + # if edge is in empty bin, keep the edge as is + if edge > empty_bin[0] and edge < empty_bin[1]: + found_channel_edges.append(edge.tolist()) + found_edge = True + break + if found_edge: + continue + distances = torch.abs(edge - empty_bins_edges) + min_dist_idx = distances.argmin() + if distances.flatten()[min_dist_idx] < 0.03: + found_channel_edges.append(empty_bins_edges.flatten()[min_dist_idx].tolist()) + continue + + found_channel_edges.append(expected_channel_edges[-1].tolist()) + found_channel_edges = torch.tensor(found_channel_edges) + + if len(found_channel_edges) < len(expected_channel_edges): + # we have missing channels, interpolate edges + while (num_missing_edges := len(expected_channel_edges) - len(found_channel_edges)) > 0: + distances = found_channel_edges.diff().abs() + max_dist_idx = distances.argmax() + num_edges_to_insert = max((distances[max_dist_idx] / res).round().int() - 1, 1) + num_edges_to_insert = min(num_missing_edges, num_edges_to_insert) + new_edges = torch.linspace( + found_channel_edges[max_dist_idx], found_channel_edges[max_dist_idx + 1], num_edges_to_insert + 2 + )[1:-1] + found_channel_edges = torch.cat( + [found_channel_edges[: max_dist_idx + 1], new_edges, found_channel_edges[max_dist_idx + 1 :]] + ) # insert new edges + + # add remaining edges + for i in range(len(self.config.lidar_elevation_mapping[lidar_name])): + if i >= ELEV_HIGH_IDX and i <= len(self.config.lidar_elevation_mapping[lidar_name]) + ELEV_LOW_IDX: + continue + current_elevation = self.config.lidar_elevation_mapping[lidar_name][i] + if i == 0: + new_edge = 100 + elif i == len(self.config.lidar_elevation_mapping[lidar_name]) - 1: + new_edge = -100 + elif i < ELEV_HIGH_IDX: + dist_to_prev_elevation = abs(current_elevation - self.config.lidar_elevation_mapping[lidar_name][i - 1]) + new_edge = current_elevation + dist_to_prev_elevation * 0.22 + elif i > len(self.config.lidar_elevation_mapping[lidar_name]) + ELEV_LOW_IDX: + dist_to_next_elevation = ( + abs(current_elevation - self.config.lidar_elevation_mapping[lidar_name][i + 1]) + if i < len(self.config.lidar_elevation_mapping[lidar_name]) - 1 + else 1000.0 + ) + new_edge = current_elevation - dist_to_next_elevation * 0.22 + + found_channel_edges = torch.cat([found_channel_edges, torch.tensor([new_edge]).float()]) + + found_channel_edges, _ = torch.sort(found_channel_edges, descending=True) + channel_id = torch.full((point_cloud.shape[0], 1), -1, device=point_cloud.device) + + # assign channel id + for i in range(len(self.config.lidar_elevation_mapping[lidar_name])): + elevation_mask = (elevation >= found_channel_edges[i + 1]) & (elevation < found_channel_edges[i]) + channel_id[elevation_mask] = i + + point_cloud = torch.cat([point_cloud[:, :dim], channel_id, point_cloud[:, dim:]], dim=-1) + return point_cloud + + +def _pandaset_pose_to_matrix(pose): + translation = np.array([pose["position"]["x"], pose["position"]["y"], pose["position"]["z"]]) + quaternion = np.array([pose["heading"]["w"], pose["heading"]["x"], pose["heading"]["y"], pose["heading"]["z"]]) + pose = np.eye(4) + pose[:3, :3] = pyquaternion.Quaternion(quaternion).rotation_matrix + pose[:3, 3] = translation + return pose + + +def _yaw_to_rotation_matrix(yaw: np.ndarray): + """Converts array of yaw angles to rotation matrices.""" + rotation_matrices = np.zeros((yaw.shape[0], 3, 3)) + rotation_matrices[:, 0, 0] = np.cos(yaw) + rotation_matrices[:, 0, 1] = -np.sin(yaw) + rotation_matrices[:, 1, 0] = np.sin(yaw) + rotation_matrices[:, 1, 1] = np.cos(yaw) + rotation_matrices[:, 2, 2] = 1 + return rotation_matrices + + +def _cuboids_to_trajectories(cuboids): + """Connects cuboids into trajectories.""" + trajs = [] + trajs_dict = {} + for cuboid in cuboids: + if cuboid["sensor_ids"] == 1: # TODO: allow for cuboids from front-facing lidar + continue # skip cuboids from front-facing lidar + + if cuboid["uuid"] not in trajs_dict: + trajs_dict[cuboid["uuid"]] = [] + + trajs_dict[cuboid["uuid"]] += [cuboid] + + for uuid, traj in trajs_dict.items(): + trajs_dict[uuid] = sorted(traj, key=lambda x: x["timestamps"]) + trajs.append( + { + # "uuid": uuid, + "poses": torch.from_numpy(np.stack([t["poses"] for t in traj])).float(), + "timestamps": torch.from_numpy(np.stack([t["timestamps"] for t in traj])), + "dims": torch.from_numpy(np.array([t["dims"] for t in traj]).astype(np.float32).max(axis=0)), + "label": traj[0]["label"], + "stationary": traj[0]["stationary"], + "symmetric": "Pedestrian" not in traj[0]["label"], + "deformable": "Pedestrian" in traj[0]["label"], + } + ) + return trajs diff --git a/nerfstudio/data/dataparsers/pandaset_extrinsics.yaml b/nerfstudio/data/dataparsers/pandaset_extrinsics.yaml new file mode 100644 index 00000000..9b32bf94 --- /dev/null +++ b/nerfstudio/data/dataparsers/pandaset_extrinsics.yaml @@ -0,0 +1,65 @@ +back_camera: + extrinsic: + transform: + rotation: {w: 0.713789231075861, x: 0.7003585531940812, y: -0.001595758695393934, + z: -0.0005330311533742299} + translation: {x: -0.0004217634029916384, y: -0.21683144949675118, z: -1.0553445472201475} + intrinsic: + D: [-0.1619, 0.0113, -0.00028815, -7.9827e-05, 0.0067] + K: [933.4667, 0, 896.4692, 0, 934.6754, 507.3557, 0, 0, 1] +front_camera: + extrinsic: + transform: + rotation: {w: 0.016213200031258722, x: 0.0030578899383849464, y: 0.7114721800418571, + z: -0.7025205466606356} + translation: {x: 0.0002585796504896516, y: -0.03907777167811011, z: -0.0440125762408362} + intrinsic: + D: [-0.5894, 0.66, 0.0011, -0.001, -1.0088] + K: [1970.0131, 0, 970.0002, 0, 1970.0091, 483.2988, 0, 0, 1] +front_gt: + extrinsic: + transform: + rotation: {w: 0.021475754959146356, x: -0.002060907279494794, y: 0.01134678181520767, + z: 0.9997028534282365} + translation: {x: -0.000451117754, y: -0.605646431446, z: -0.301525235176} +front_left_camera: + extrinsic: + transform: + rotation: {w: 0.33540022607039827, x: 0.3277491469609924, y: -0.6283486651480494, + z: 0.6206973014480826} + translation: {x: -0.25842240863267835, y: -0.3070654284505582, z: -0.9244245686318884} + intrinsic: + D: [-0.165, 0.0099, -0.00075376, 5.3699e-05, 0.01] + K: [929.8429, 0, 972.1794, 0, 930.0592, 508.0057, 0, 0, 1] +front_right_camera: + extrinsic: + transform: + rotation: {w: 0.3537633879725252, x: 0.34931795852655334, y: 0.6120314641083645, + z: -0.6150170047424814} + translation: {x: 0.2546935700219631, y: -0.24929449717803095, z: -0.8686597280810242} + intrinsic: + D: [-0.1614, -0.0027, -0.00029662, -0.00028927, 0.0181] + K: [930.0407, 0, 965.0525, 0, 930.0324, 463.4161, 0, 0, 1] +left_camera: + extrinsic: + transform: + rotation: {w: 0.5050391917998245, x: 0.49253073152800625, y: -0.4989265501075421, + z: 0.503409565706149} + translation: {x: 0.23864835336611942, y: -0.2801448284013492, z: -0.5376795959387791} + intrinsic: + D: [-0.1582, -0.0266, -0.00015221, 0.00059011, 0.0449] + K: [930.4514, 0, 991.6883, 0, 930.0891, 541.6057, 0, 0, 1] +main_pandar64: + extrinsic: + transform: + rotation: {w: 1.0, x: 0.0, y: 0.0, z: 0.0} + translation: {x: 0.0, y: 0.0, z: 0.0} +right_camera: + extrinsic: + transform: + rotation: {w: 0.5087448402081216, x: 0.4947520981649951, y: 0.4977829953071897, + z: -0.49860920419297333} + translation: {x: -0.23097163411257893, y: -0.30843497058841024, z: -0.6850441215571058} + intrinsic: + D: [-0.1648, 0.0191, 0.0027, -8.5282e-07, -9.6983e-05] + K: [922.5465, 0, 945.057, 0, 922.4229, 517.575, 0, 0, 1] diff --git a/nerfstudio/data/dataparsers/phototourism_dataparser.py b/nerfstudio/data/dataparsers/phototourism_dataparser.py deleted file mode 100644 index 538bad2f..00000000 --- a/nerfstudio/data/dataparsers/phototourism_dataparser.py +++ /dev/null @@ -1,181 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -"""Phototourism dataset parser. Datasets and documentation here: http://phototour.cs.washington.edu/datasets/""" -from __future__ import annotations - -import math -from dataclasses import dataclass, field -from pathlib import Path -from typing import Literal, Type - -import numpy as np -import torch - -from nerfstudio.cameras import camera_utils -from nerfstudio.cameras.cameras import Cameras, CameraType -from nerfstudio.data.dataparsers.base_dataparser import DataParser, DataParserConfig, DataparserOutputs -from nerfstudio.data.scene_box import SceneBox - -# TODO(1480) use pycolmap instead of colmap_parsing_utils -# import pycolmap -from nerfstudio.data.utils.colmap_parsing_utils import read_cameras_binary, read_images_binary -from nerfstudio.utils.rich_utils import CONSOLE - - -@dataclass -class PhototourismDataParserConfig(DataParserConfig): - """Phototourism dataset parser config""" - - _target: Type = field(default_factory=lambda: Phototourism) - """target class to instantiate""" - data: Path = Path("data/phototourism/brandenburg-gate") - """Directory specifying location of data.""" - scale_factor: float = 3.0 - """How much to scale the camera origins by.""" - alpha_color: str = "white" - """alpha color of background""" - train_split_fraction: float = 0.9 - """The fraction of images to use for training. The remaining images are for eval.""" - scene_scale: float = 1.0 - """How much to scale the region of interest by.""" - orientation_method: Literal["pca", "up", "vertical", "none"] = "up" - """The method to use for orientation.""" - center_method: Literal["poses", "focus", "none"] = "poses" - """The method to use to center the poses.""" - auto_scale_poses: bool = True - """Whether to automatically scale the poses to fit in +/- 1 bounding box.""" - - -@dataclass -class Phototourism(DataParser): - """Phototourism dataset. This is based on https://github.com/kwea123/nerf_pl/blob/nerfw/datasets/phototourism.py - and uses colmap's utils file to read the poses. - """ - - config: PhototourismDataParserConfig - - def __init__(self, config: PhototourismDataParserConfig): - super().__init__(config=config) - self.data: Path = config.data - - def _generate_dataparser_outputs(self, split="train"): - image_filenames = [] - poses = [] - - with CONSOLE.status(f"[bold green]Reading phototourism images and poses for {split} split...") as _: - # TODO(1480) use pycolmap - # recon = pycolmap.Reconstruction(self.data / "dense" / "sparse") - # cams = recon.cameras - # imgs = recon.images - cams = read_cameras_binary(self.data / "dense/sparse/cameras.bin") - imgs = read_images_binary(self.data / "dense/sparse/images.bin") - - poses = [] - fxs = [] - fys = [] - cxs = [] - cys = [] - image_filenames = [] - - flip = torch.eye(3) - flip[0, 0] = -1.0 - flip = flip.double() - - for _id, cam in cams.items(): - img = imgs[_id] - - assert cam.model == "PINHOLE", "Only pinhole (perspective) camera model is supported at the moment" - - pose = torch.cat([torch.tensor(img.qvec2rotmat()), torch.tensor(img.tvec.reshape(3, 1))], dim=1) - pose = torch.cat([pose, torch.tensor([[0.0, 0.0, 0.0, 1.0]])], dim=0) - poses.append(torch.linalg.inv(pose)) - fxs.append(torch.tensor(cam.params[0])) - fys.append(torch.tensor(cam.params[1])) - cxs.append(torch.tensor(cam.params[2])) - cys.append(torch.tensor(cam.params[3])) - - image_filenames.append(self.data / "dense/images" / img.name) - - poses = torch.stack(poses).float() - poses[..., 1:3] *= -1 - fxs = torch.stack(fxs).float() - fys = torch.stack(fys).float() - cxs = torch.stack(cxs).float() - cys = torch.stack(cys).float() - - # filter image_filenames and poses based on train/eval split percentage - num_images = len(image_filenames) - num_train_images = math.ceil(num_images * self.config.train_split_fraction) - num_eval_images = num_images - num_train_images - i_all = np.arange(num_images) - i_train = np.linspace( - 0, num_images - 1, num_train_images, dtype=int - ) # equally spaced training images starting and ending at 0 and num_images-1 - i_eval = np.setdiff1d(i_all, i_train) # eval images are the remaining images - i_all = torch.tensor(i_all) - i_train = torch.tensor(i_train, dtype=torch.long) - i_eval = torch.tensor(i_eval, dtype=torch.long) - assert len(i_eval) == num_eval_images - if split == "train": - indices = i_train - elif split in ["val", "test"]: - indices = i_eval - else: - raise ValueError(f"Unknown dataparser split {split}") - - poses, transform_matrix = camera_utils.auto_orient_and_center_poses( - poses, method=self.config.orientation_method, center_method=self.config.center_method - ) - - # Scale poses - scale_factor = 1.0 - if self.config.auto_scale_poses: - scale_factor /= float(torch.max(torch.abs(poses[:, :3, 3]))) - scale_factor *= self.config.scale_factor - - poses[:, :3, 3] *= scale_factor - - # in x,y,z order - # assumes that the scene is centered at the origin - aabb_scale = self.config.scene_scale - scene_box = SceneBox( - aabb=torch.tensor( - [[-aabb_scale, -aabb_scale, -aabb_scale], [aabb_scale, aabb_scale, aabb_scale]], dtype=torch.float32 - ) - ) - - cameras = Cameras( - camera_to_worlds=poses[:, :3, :4], - fx=fxs, - fy=fys, - cx=cxs, - cy=cys, - camera_type=CameraType.PERSPECTIVE, - ) - - cameras = cameras[indices] - image_filenames = [image_filenames[i] for i in indices] - - assert len(cameras) == len(image_filenames) - - dataparser_outputs = DataparserOutputs( - image_filenames=image_filenames, - cameras=cameras, - scene_box=scene_box, - dataparser_scale=scale_factor, - dataparser_transform=transform_matrix, - ) - - return dataparser_outputs diff --git a/nerfstudio/data/dataparsers/scannet_dataparser.py b/nerfstudio/data/dataparsers/scannet_dataparser.py deleted file mode 100644 index eb0c9ae1..00000000 --- a/nerfstudio/data/dataparsers/scannet_dataparser.py +++ /dev/null @@ -1,172 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -"""Data parser for ScanNet dataset""" -import math -from dataclasses import dataclass, field -from pathlib import Path -from typing import Literal, Type - -import cv2 -import numpy as np -import torch - -from nerfstudio.cameras import camera_utils -from nerfstudio.cameras.cameras import Cameras, CameraType -from nerfstudio.data.dataparsers.base_dataparser import DataParser, DataParserConfig, DataparserOutputs -from nerfstudio.data.scene_box import SceneBox - - -@dataclass -class ScanNetDataParserConfig(DataParserConfig): - """ScanNet dataset config. - ScanNet dataset (https://www.scan-net.org/) is a large-scale 3D dataset of indoor scenes. - This dataparser assumes that the dense stream was extracted from .sens files. - Expected structure of scene directory: - - .. code-block:: text - - root/ - β”œβ”€β”€ color/ - β”œβ”€β”€ depth/ - β”œβ”€β”€ intrinsic/ - β”œβ”€β”€ pose/ - """ - - _target: Type = field(default_factory=lambda: ScanNet) - """target class to instantiate""" - data: Path = Path("data/scannet/scene0423_02") - """Path to ScanNet folder with densely extracted scenes.""" - scale_factor: float = 1.0 - """How much to scale the camera origins by.""" - scene_scale: float = 1.0 - """How much to scale the region of interest by.""" - center_method: Literal["poses", "focus", "none"] = "poses" - """The method to use to center the poses.""" - auto_scale_poses: bool = True - """Whether to automatically scale the poses to fit in +/- 1 bounding box.""" - train_split_fraction: float = 0.9 - """The fraction of images to use for training. The remaining images are for eval.""" - depth_unit_scale_factor: float = 1e-3 - """Scales the depth values to meters. Default value is 0.001 for a millimeter to meter conversion.""" - - -@dataclass -class ScanNet(DataParser): - """ScanNet DatasetParser""" - - config: ScanNetDataParserConfig - - def _generate_dataparser_outputs(self, split="train"): - image_dir = self.config.data / "color" - depth_dir = self.config.data / "depth" - pose_dir = self.config.data / "pose" - - img_dir_sorted = list(sorted(image_dir.iterdir(), key=lambda x: int(x.name.split(".")[0]))) - depth_dir_sorted = list(sorted(depth_dir.iterdir(), key=lambda x: int(x.name.split(".")[0]))) - pose_dir_sorted = list(sorted(pose_dir.iterdir(), key=lambda x: int(x.name.split(".")[0]))) - - first_img = cv2.imread(str(img_dir_sorted[0].absolute())) # type: ignore - h, w, _ = first_img.shape - - image_filenames, depth_filenames, intrinsics, poses = [], [], [], [] - - K = np.loadtxt(self.config.data / "intrinsic" / "intrinsic_color.txt") - for img, depth, pose in zip(img_dir_sorted, depth_dir_sorted, pose_dir_sorted): - pose = np.loadtxt(pose) - pose = np.array(pose).reshape(4, 4) - pose[:3, 1] *= -1 - pose[:3, 2] *= -1 - pose = torch.from_numpy(pose).float() - # We cannot accept files directly, as some of the poses are invalid - if np.isinf(pose).any(): - continue - - poses.append(pose) - intrinsics.append(K) - image_filenames.append(img) - depth_filenames.append(depth) - - # filter image_filenames and poses based on train/eval split percentage - num_images = len(image_filenames) - num_train_images = math.ceil(num_images * self.config.train_split_fraction) - num_eval_images = num_images - num_train_images - i_all = np.arange(num_images) - i_train = np.linspace( - 0, num_images - 1, num_train_images, dtype=int - ) # equally spaced training images starting and ending at 0 and num_images-1 - i_eval = np.setdiff1d(i_all, i_train) # eval images are the remaining images - assert len(i_eval) == num_eval_images - if split == "train": - indices = i_train - elif split in ["val", "test"]: - indices = i_eval - else: - raise ValueError(f"Unknown dataparser split {split}") - - poses = torch.from_numpy(np.stack(poses).astype(np.float32)) - intrinsics = torch.from_numpy(np.stack(intrinsics).astype(np.float32)) - - poses, transform_matrix = camera_utils.auto_orient_and_center_poses( - poses, - method="none", - center_method=self.config.center_method, - ) - - # Scale poses - scale_factor = 1.0 - if self.config.auto_scale_poses: - scale_factor /= float(torch.max(torch.abs(poses[:, :3, 3]))) - scale_factor *= self.config.scale_factor - - poses[:, :3, 3] *= scale_factor - - # Choose image_filenames and poses based on split, but after auto orient and scaling the poses. - image_filenames = [image_filenames[i] for i in indices] - depth_filenames = [depth_filenames[i] for i in indices] if len(depth_filenames) > 0 else [] - intrinsics = intrinsics[indices.tolist()] - poses = poses[indices.tolist()] - - # in x,y,z order - # assumes that the scene is centered at the origin - aabb_scale = self.config.scene_scale - scene_box = SceneBox( - aabb=torch.tensor( - [[-aabb_scale, -aabb_scale, -aabb_scale], [aabb_scale, aabb_scale, aabb_scale]], dtype=torch.float32 - ) - ) - - cameras = Cameras( - fx=intrinsics[:, 0, 0], - fy=intrinsics[:, 1, 1], - cx=intrinsics[:, 0, 2], - cy=intrinsics[:, 1, 2], - height=h, - width=w, - camera_to_worlds=poses[:, :3, :4], - camera_type=CameraType.PERSPECTIVE, - ) - - dataparser_outputs = DataparserOutputs( - image_filenames=image_filenames, - cameras=cameras, - scene_box=scene_box, - dataparser_scale=scale_factor, - dataparser_transform=transform_matrix, - metadata={ - "depth_filenames": depth_filenames if len(depth_filenames) > 0 else None, - "depth_unit_scale_factor": self.config.depth_unit_scale_factor, - }, - ) - return dataparser_outputs diff --git a/nerfstudio/data/dataparsers/scannetpp_dataparser.py b/nerfstudio/data/dataparsers/scannetpp_dataparser.py deleted file mode 100644 index 18afa4f4..00000000 --- a/nerfstudio/data/dataparsers/scannetpp_dataparser.py +++ /dev/null @@ -1,206 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. -""" Data parser for ScanNet++ datasets. """ - -from __future__ import annotations - -from dataclasses import dataclass, field -from pathlib import Path -from typing import Literal, Type - -import numpy as np -import torch - -from nerfstudio.cameras import camera_utils -from nerfstudio.cameras.cameras import CAMERA_MODEL_TO_TYPE, Cameras, CameraType -from nerfstudio.data.dataparsers.base_dataparser import DataParser, DataParserConfig, DataparserOutputs -from nerfstudio.data.scene_box import SceneBox -from nerfstudio.utils.io import load_from_json -from nerfstudio.utils.rich_utils import CONSOLE - - -@dataclass -class ScanNetppDataParserConfig(DataParserConfig): - """ScanNet++ dataset config. - ScanNet++ dataset (https://kaldir.vc.in.tum.de/scannetpp/) is a real-world 3D indoor dataset for semantics understanding and novel view synthesis. - This dataparser follow the file structure of the dataset. - Expected structure of the directory: - - .. code-block:: text - - root/ - β”œβ”€β”€ SCENE_ID0 - β”œβ”€β”€ dslr - β”œβ”€β”€ resized_images - β”œβ”€β”€ resized_anon_masks - β”œβ”€β”€ nerfstudio/transforms.json - β”œβ”€β”€ SCENE_ID1/ - ... - """ - - _target: Type = field(default_factory=lambda: ScanNetpp) - """target class to instantiate""" - data: Path = Path("scannetpp/410c470782") - """Directory to the root of the data.""" - scale_factor: float = 1.0 - """How much to scale the camera origins by.""" - scene_scale: float = 1.5 - """How much to scale the region of interest by. Default is 1.5 since the cameras are inside the rooms.""" - orientation_method: Literal["pca", "up", "vertical", "none"] = "up" - """The method to use for orientation.""" - center_method: Literal["poses", "focus", "none"] = "poses" - """The method to use to center the poses.""" - auto_scale_poses: bool = True - """Whether to automatically scale the poses to fit in +/- 1 bounding box.""" - images_dir: Path = Path("dslr/resized_images") - """Relative path to the images directory (default: resized_images)""" - masks_dir: Path = Path("dslr/resized_anon_masks") - """Relative path to the masks directory (default: resized_anon_masks)""" - transforms_path: Path = Path("dslr/nerfstudio/transforms.json") - """Relative path to the transforms.json file""" - - -@dataclass -class ScanNetpp(DataParser): - """ScanNet++ DatasetParser""" - - config: ScanNetppDataParserConfig - - def _generate_dataparser_outputs(self, split="train"): - assert self.config.data.exists(), f"Data directory {self.config.data} does not exist." - meta = load_from_json(self.config.data / self.config.transforms_path) - data_dir = self.config.data / self.config.images_dir - mask_dir = self.config.data / self.config.masks_dir - - image_filenames = [] - mask_filenames = [] - poses = [] - i_train = [] - i_eval = [] - # sort the frames by fname - frames = meta["frames"] + meta["test_frames"] - test_frames = [f["file_path"] for f in meta["test_frames"]] - frames.sort(key=lambda x: x["file_path"]) - - for idx, frame in enumerate(frames): - filepath = Path(frame["file_path"]) - fname = data_dir / filepath - - image_filenames.append(fname) - poses.append(np.array(frame["transform_matrix"])) - if meta.get("has_mask", True) and "mask_path" in frame: - mask_filepath = Path(frame["mask_path"]) - mask_fname = mask_dir / mask_filepath - mask_filenames.append(mask_fname) - - if frame["file_path"] in test_frames: - i_eval.append(idx) - else: - i_train.append(idx) - - assert len(mask_filenames) == 0 or (len(mask_filenames) == len(image_filenames)), """ - Different number of image and mask filenames. - You should check that mask_path is specified for every frame (or zero frames) in transforms.json. - """ - - if split == "train": - indices = i_train - elif split in ["val", "test"]: - indices = i_eval - else: - raise ValueError(f"Unknown dataparser split {split}") - - if "orientation_override" in meta: - orientation_method = meta["orientation_override"] - CONSOLE.log(f"[yellow] Dataset is overriding orientation method to {orientation_method}") - else: - orientation_method = self.config.orientation_method - - poses = torch.from_numpy(np.array(poses).astype(np.float32)) - poses, transform_matrix = camera_utils.auto_orient_and_center_poses( - poses, - method=orientation_method, - center_method=self.config.center_method, - ) - - # Scale poses - scale_factor = 1.0 - if self.config.auto_scale_poses: - scale_factor /= float(torch.max(torch.abs(poses[:, :3, 3]))) - scale_factor *= self.config.scale_factor - - poses[:, :3, 3] *= scale_factor - - # Choose image_filenames and poses based on split, but after auto orient and scaling the poses. - image_filenames = [image_filenames[i] for i in indices] - mask_filenames = [mask_filenames[i] for i in indices] if len(mask_filenames) > 0 else [] - - idx_tensor = torch.tensor(indices, dtype=torch.long) - poses = poses[idx_tensor] - - # in x,y,z order - # assumes that the scene is centered at the origin - if not self.config.auto_scale_poses: - # Set aabb_scale to scene_scale * the max of the absolute values of the poses - aabb_scale = self.config.scene_scale * float(torch.max(torch.abs(poses[:, :3, 3]))) - else: - aabb_scale = self.config.scene_scale - scene_box = SceneBox( - aabb=torch.tensor( - [[-aabb_scale, -aabb_scale, -aabb_scale], [aabb_scale, aabb_scale, aabb_scale]], dtype=torch.float32 - ) - ) - - if "camera_model" in meta: - camera_type = CAMERA_MODEL_TO_TYPE[meta["camera_model"]] - else: - camera_type = CameraType.PERSPECTIVE - - fx = float(meta["fl_x"]) - fy = float(meta["fl_y"]) - cx = float(meta["cx"]) - cy = float(meta["cy"]) - height = int(meta["h"]) - width = int(meta["w"]) - distortion_params = camera_utils.get_distortion_params( - k1=float(meta["k1"]) if "k1" in meta else 0.0, - k2=float(meta["k2"]) if "k2" in meta else 0.0, - k3=float(meta["k3"]) if "k3" in meta else 0.0, - k4=float(meta["k4"]) if "k4" in meta else 0.0, - p1=float(meta["p1"]) if "p1" in meta else 0.0, - p2=float(meta["p2"]) if "p2" in meta else 0.0, - ) - - cameras = Cameras( - fx=fx, - fy=fy, - cx=cx, - cy=cy, - distortion_params=distortion_params, - height=height, - width=width, - camera_to_worlds=poses[:, :3, :4], - camera_type=camera_type, - ) - - dataparser_outputs = DataparserOutputs( - image_filenames=image_filenames, - cameras=cameras, - scene_box=scene_box, - mask_filenames=mask_filenames if len(mask_filenames) > 0 else None, - dataparser_scale=scale_factor, - dataparser_transform=transform_matrix, - metadata={}, - ) - return dataparser_outputs diff --git a/nerfstudio/data/dataparsers/sdfstudio_dataparser.py b/nerfstudio/data/dataparsers/sdfstudio_dataparser.py deleted file mode 100644 index 540aa65d..00000000 --- a/nerfstudio/data/dataparsers/sdfstudio_dataparser.py +++ /dev/null @@ -1,157 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. -"""Datapaser for sdfstudio formatted data""" - -from __future__ import annotations - -from dataclasses import dataclass, field -from pathlib import Path -from typing import Type - -import torch - -from nerfstudio.cameras import camera_utils -from nerfstudio.cameras.cameras import Cameras, CameraType -from nerfstudio.data.dataparsers.base_dataparser import DataParser, DataParserConfig, DataparserOutputs -from nerfstudio.data.scene_box import SceneBox -from nerfstudio.utils.io import load_from_json - - -@dataclass -class SDFStudioDataParserConfig(DataParserConfig): - """Scene dataset parser config""" - - _target: Type = field(default_factory=lambda: SDFStudio) - """target class to instantiate""" - data: Path = Path("data/DTU/scan65") - """Directory specifying location of data.""" - include_mono_prior: bool = False - """whether or not to load monocular depth and normal """ - depth_unit_scale_factor: float = 1e-3 - """Scales the depth values to meters. Default value is 0.001 for a millimeter to meter conversion.""" - include_foreground_mask: bool = False - """whether or not to load foreground mask""" - downscale_factor: int = 1 - scene_scale: float = 2.0 - """ - Sets the bounding cube to have edge length of this size. - The longest dimension of the axis-aligned bbox will be scaled to this value. - """ - skip_every_for_val_split: int = 1 - """sub sampling validation images""" - auto_orient: bool = True - - -@dataclass -class SDFStudio(DataParser): - """SDFStudio Dataset""" - - config: SDFStudioDataParserConfig - - def _generate_dataparser_outputs(self, split="train"): - # load meta data - meta = load_from_json(self.config.data / "meta_data.json") - - indices = list(range(len(meta["frames"]))) - # subsample to avoid out-of-memory for validation set - if split != "train" and self.config.skip_every_for_val_split >= 1: - indices = indices[:: self.config.skip_every_for_val_split] - - image_filenames = [] - depth_filenames = [] - normal_filenames = [] - transform = None - fx = [] - fy = [] - cx = [] - cy = [] - camera_to_worlds = [] - for i, frame in enumerate(meta["frames"]): - if i not in indices: - continue - - image_filename = self.config.data / frame["rgb_path"] - depth_filename = frame.get("mono_depth_path") - normal_filename = frame.get("mono_normal_path") - - intrinsics = torch.tensor(frame["intrinsics"]) - camtoworld = torch.tensor(frame["camtoworld"]) - - # append data - image_filenames.append(image_filename) - if depth_filename is not None and normal_filename is not None: - depth_filenames.append(self.config.data / depth_filename) - normal_filenames.append(self.config.data / normal_filename) - fx.append(intrinsics[0, 0]) - fy.append(intrinsics[1, 1]) - cx.append(intrinsics[0, 2]) - cy.append(intrinsics[1, 2]) - camera_to_worlds.append(camtoworld) - - fx = torch.stack(fx) - fy = torch.stack(fy) - cx = torch.stack(cx) - cy = torch.stack(cy) - c2w_colmap = torch.stack(camera_to_worlds) - camera_to_worlds = torch.stack(camera_to_worlds) - - # Convert from COLMAP's/OPENCV's camera coordinate system to nerfstudio - camera_to_worlds[:, 0:3, 1:3] *= -1 - - if self.config.auto_orient: - camera_to_worlds, transform = camera_utils.auto_orient_and_center_poses( - camera_to_worlds, - method="up", - center_method="none", - ) - - # scene box from meta data - meta_scene_box = meta["scene_box"] - aabb = torch.tensor(meta_scene_box["aabb"], dtype=torch.float32) - scene_box = SceneBox( - aabb=aabb, - ) - - height, width = meta["height"], meta["width"] - cameras = Cameras( - fx=fx, - fy=fy, - cx=cx, - cy=cy, - height=height, - width=width, - camera_to_worlds=camera_to_worlds[:, :3, :4], - camera_type=CameraType.PERSPECTIVE, - ) - - # TODO supports downsample - # cameras.rescale_output_resolution(scaling_factor=1.0 / self.config.downscale_factor) - if self.config.include_mono_prior: - assert meta["has_mono_prior"], f"no mono prior in {self.config.data}" - - dataparser_outputs = DataparserOutputs( - image_filenames=image_filenames, - cameras=cameras, - scene_box=scene_box, - metadata={ - "depth_filenames": depth_filenames if len(depth_filenames) > 0 else None, - "normal_filenames": normal_filenames if len(normal_filenames) > 0 else None, - "transform": transform, - # required for normal maps, these are in colmap format so they require c2w before conversion - "camera_to_worlds": c2w_colmap if len(c2w_colmap) > 0 else None, - "include_mono_prior": self.config.include_mono_prior, - "depth_unit_scale_factor": self.config.depth_unit_scale_factor, - }, - ) - return dataparser_outputs diff --git a/nerfstudio/data/dataparsers/sitcoms3d_dataparser.py b/nerfstudio/data/dataparsers/sitcoms3d_dataparser.py deleted file mode 100644 index 221a76cf..00000000 --- a/nerfstudio/data/dataparsers/sitcoms3d_dataparser.py +++ /dev/null @@ -1,148 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -"""Data parser for sitcoms3D dataset. - -The dataset is from the paper ["The One Where They Reconstructed 3D Humans and -Environments in TV Shows"](https://ethanweber.me/sitcoms3D/) -""" - -from __future__ import annotations - -from dataclasses import dataclass, field -from pathlib import Path -from typing import Type - -import torch - -from nerfstudio.cameras.cameras import Cameras, CameraType -from nerfstudio.data.dataparsers.base_dataparser import DataParser, DataParserConfig, DataparserOutputs, Semantics -from nerfstudio.data.scene_box import SceneBox -from nerfstudio.utils.io import load_from_json - - -@dataclass -class Sitcoms3DDataParserConfig(DataParserConfig): - """sitcoms3D dataset parser config""" - - _target: Type = field(default_factory=lambda: Sitcoms3D) - """target class to instantiate""" - data: Path = Path("data/sitcoms3d/TBBT-big_living_room") - """Directory specifying location of data.""" - include_semantics: bool = True - """whether or not to include loading of semantics data""" - downscale_factor: int = 4 - scene_scale: float = 2.0 - """ - Sets the bounding cube to have edge length of this size. - The longest dimension of the Sitcoms3D axis-aligned bbox will be scaled to this value. - """ - - -@dataclass -class Sitcoms3D(DataParser): - """Sitcoms3D Dataset""" - - config: Sitcoms3DDataParserConfig - - def _generate_dataparser_outputs(self, split="train"): - cameras_json = load_from_json(self.config.data / "cameras.json") - frames = cameras_json["frames"] - bbox = torch.tensor(cameras_json["bbox"]) - - downscale_suffix = f"_{self.config.downscale_factor}" if self.config.downscale_factor != 1 else "" - images_folder = f"images{downscale_suffix}" - segmentations_folder = f"segmentations{downscale_suffix}" - - image_filenames = [] - fx = [] - fy = [] - cx = [] - cy = [] - camera_to_worlds = [] - for frame in frames: - # unpack data - image_filename = self.config.data / images_folder / frame["image_name"] - intrinsics = torch.tensor(frame["intrinsics"]) - camtoworld = torch.tensor(frame["camtoworld"])[:3] - # append data - image_filenames.append(image_filename) - fx.append(intrinsics[0, 0]) - fy.append(intrinsics[1, 1]) - cx.append(intrinsics[0, 2]) - cy.append(intrinsics[1, 2]) - camera_to_worlds.append(camtoworld) - fx = torch.stack(fx) - fy = torch.stack(fy) - cx = torch.stack(cx) - cy = torch.stack(cy) - camera_to_worlds = torch.stack(camera_to_worlds) - - # rotate the cameras and box 90 degrees about the x axis to put the z axis up - rotation = torch.tensor([[1, 0, 0], [0, 0, -1], [0, 1, 0]], dtype=torch.float32) - camera_to_worlds[:, :3] = rotation @ camera_to_worlds[:, :3] - bbox = (rotation @ bbox.T).T - - scene_scale = self.config.scene_scale - - # -- set the scene box --- - scene_box = SceneBox(aabb=bbox) - # center the box and adjust the cameras too - center = scene_box.get_center() - scene_box.aabb -= center - camera_to_worlds[..., 3] -= center - # scale the longest dimension to match the cube size - lengths = scene_box.aabb[1] - scene_box.aabb[0] - longest_dim = torch.argmax(lengths) - longest_length = lengths[longest_dim] - scale = scene_scale / longest_length.item() - scene_box.aabb = scene_box.aabb * scale # box - camera_to_worlds[..., 3] *= scale # cameras - - # --- semantics --- - semantics = None - if self.config.include_semantics: - empty_path = Path() - replace_this_path = str(empty_path / images_folder / empty_path) - with_this_path = str(empty_path / segmentations_folder / "thing" / empty_path) - filenames = [ - Path(str(image_filename).replace(replace_this_path, with_this_path).replace(".jpg", ".png")) - for image_filename in image_filenames - ] - panoptic_classes = load_from_json(self.config.data / "panoptic_classes.json") - classes = panoptic_classes["thing"] - colors = torch.tensor(panoptic_classes["thing_colors"], dtype=torch.float32) / 255.0 - semantics = Semantics(filenames=filenames, classes=classes, colors=colors, mask_classes=["person"]) - - assert torch.all(cx[0] == cx), "Not all cameras have the same cx. Our Cameras class does not support this." - assert torch.all(cy[0] == cy), "Not all cameras have the same cy. Our Cameras class does not support this." - - cameras = Cameras( - fx=fx, - fy=fy, - cx=float(cx[0]), - cy=float(cy[0]), - camera_to_worlds=camera_to_worlds, - camera_type=CameraType.PERSPECTIVE, - ) - cameras.rescale_output_resolution(scaling_factor=1.0 / self.config.downscale_factor) - - dataparser_outputs = DataparserOutputs( - image_filenames=image_filenames, - cameras=cameras, - scene_box=scene_box, - metadata={"semantics": semantics} if self.config.include_semantics else {}, - dataparser_scale=scale, - ) - return dataparser_outputs diff --git a/nerfstudio/data/dataparsers/zod_dataparser.py b/nerfstudio/data/dataparsers/zod_dataparser.py new file mode 100644 index 00000000..3487072d --- /dev/null +++ b/nerfstudio/data/dataparsers/zod_dataparser.py @@ -0,0 +1,456 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# +# 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. + +"""Data parser for the ZOD dataset""" + +import json +from collections import defaultdict +from dataclasses import dataclass, field +from functools import lru_cache +from pathlib import Path +from typing import Dict, List, Tuple, Type, Union + +import numpy as np +import torch +from pyquaternion import Quaternion +from typing_extensions import Literal +from zod import Anonymization, Camera as ZodCamera, Lidar as ZodLidar, ZodSequences +from zod.constants import EGO as ZOD_EGO +from zod.data_classes.box import Box3D +from zod.data_classes.sensor import LidarData + +from nerfstudio.cameras.cameras import Cameras, CameraType +from nerfstudio.cameras.lidars import Lidars, LidarType, transform_points +from nerfstudio.data.dataparsers.ad_dataparser import OPENCV_TO_NERFSTUDIO, ADDataParser, ADDataParserConfig +from nerfstudio.data.dataparsers.nuscenes_dataparser import WLH_TO_LWH +from nerfstudio.data.utils.lidar_elevation_mappings import VELODYNE_128_ELEVATION_MAPPING +from nerfstudio.utils import poses as pose_utils + +TOP = "top" +LEFT = "left" +RIGHT = "right" + + +ZOD_ELEVATION_MAPPING = {TOP: VELODYNE_128_ELEVATION_MAPPING} +ZOD_LIDAR_IGNORE_REGIONS = {TOP: [[-34.0, -5.0, -30.0, -1.0], [-158.0, -134.0, -30.0, -1.0]]} +ZOD_SKIP_ELEVATION_CHANNELS = { + TOP: ( + 36, + 69, + 54, + 87, + 0, + 97, + 18, + 115, + 44, + 77, + 62, + 95, + ) +} # these are channel indices that correspond to a low elevation angle, as per the VLS128 manual. + +HOOD_HEIGHT = 740 + + +HORIZONTAL_BEAM_DIVERGENCE = 3.0e-3 # radians, or meters at a distance of 1m +VERTICAL_BEAM_DIVERGENCE = 1.5e-3 # radians, or meters at a distance of 1m +HOOD_HEIGHT = 750 # px +MAX_INTENSITY_VALUE = 255 + +ALLOWED_CATEGORIES = { + "Vehicle", + "LargeVehicle", + "Motorcyclist", + "Bicyclist", + "Trailer", +} +SYMMETRIC_CATEGORIES = ALLOWED_CATEGORIES + +DEFORMABLE_CATEGORIES = { + "Pedestrian", +} + +AVAILABLE_CAMERAS = ("front",) +AVAILABLE_LIDARS = ( + TOP, + LEFT, + RIGHT, +) +ZOD_LIDAR_TO_INDEX = { + TOP: 0, + LEFT: 1, + RIGHT: 2, +} + +ZOD_INDEX_TO_LIDAR = {v: k for k, v in ZOD_LIDAR_TO_INDEX.items()} + + +ZOD_AZIMUTH_RESOLUTION = { + TOP: 0.2, + LEFT: 0.2, + RIGHT: 0.2, +} + +ZOD_CHANNEL_MAPPING = { + TOP: (1, 128), + LEFT: (129, 144), + RIGHT: (145, 160), +} + +ZOD_LIDAR_NAME_TO_LIDAR_TYPE = { + TOP: LidarType.VELODYNE128, + LEFT: LidarType.VELODYNE16, + RIGHT: LidarType.VELODYNE16, +} + +LANE_SHIFT_SIGN: Dict[str, Literal[-1, 1]] = defaultdict(lambda: -1) +LANE_SHIFT_SIGN.update( + { + "000784": -1, + "000005": 1, + "000030": -1, + "000221": -1, + "000231": 1, + "000387": -1, + "001186": -1, + "000657": -1, + "000581": -1, + "000619": 1, + "000546": -1, + "000244": 1, + "000811": -1, + } +) + + +@dataclass +class ZodDataParserConfig(ADDataParserConfig): + """ZOD dataset config. + ZOD (https://zod.zenseact.com) is an autonomous driving dataset containing: + - 100k frames. + - ~1500 20 second sequences. + - ~30 multi-minute drives. + + Each clip was recorded with a suite of sensors including a wide angle camera, and a LiDAR. + It also includes 3D cuboid annotations around objects. + We optionally use these cuboids to mask dynamic objects by specifying the mask_dir flag. + To create these masks, install zod and run `zod generate object-masks`. + """ + + _target: Type = field(default_factory=lambda: Zod) + """target class to instantiate""" + sequence: str = "000581" + """Name of the scene.""" + data: Path = Path("data/zod") + """Path to ZOD dataset.""" + subset: Literal["sequences"] = "sequences" # only sequences supported currently + """Dataset subset.""" + version: Literal["mini", "full"] = "full" + """Dataset version.""" + cameras: Tuple[Literal["front", "none", "all"], ...] = ("front",) + """Which cameras to use.""" + lidars: Tuple[Literal["top", "left", "right", "all", "none"], ...] = ( + "top", + ) # we have not implemented the correct transforms for left and right lidars + """Which lidars to use.""" + min_lidar_dist: Tuple[float, float, float] = (1.5, 3.0, 1.5) + """Remove all points within this distance from lidar sensor.""" + anonymization: Anonymization = Anonymization.BLUR + """Which cameras to use.""" + annotation_interval: float = 0.1 # auto annotation interval + """Interval between annotations in seconds.""" + auto_annotation_dir: Union[ + Literal["default"], Path + ] = "default" # if None, use default, which is /auto_annotations//.json + """Directory to load auto annotations from.""" + add_missing_points: bool = True + """Whether to add missing points to the point cloud.""" + lidar_elevation_mapping: Dict[str, Dict[int, float]] = field(default_factory=lambda: ZOD_ELEVATION_MAPPING) + """Elevation mapping for each lidar.""" + lidar_azimuth_resolution: Dict[str, float] = field(default_factory=lambda: ZOD_AZIMUTH_RESOLUTION) + """Azimuth resolution for each lidar.""" + skip_elevation_channels: Dict[str, Tuple] = field(default_factory=lambda: ZOD_SKIP_ELEVATION_CHANNELS) + """Channels to skip when adding missing points.""" + + +@dataclass +class Zod(ADDataParser): + """Zenseact Open Dataset DatasetParser""" + + config: ZodDataParserConfig + + @property + def actor_transform(self) -> torch.Tensor: + """ZOD uses x-forward, so we need to rotate to x-right.""" + return torch.from_numpy(WLH_TO_LWH) + + def _get_lane_shift_sign(self, sequence: str) -> Literal[-1, 1]: + return LANE_SHIFT_SIGN.get(sequence, 1) + + def _get_cameras(self) -> Tuple[Cameras, List[Path]]: + """Returns camera info and image filenames.""" + + if "all" in self.config.cameras: + self.config.cameras = AVAILABLE_CAMERAS + + filenames, times, intrinsics, poses, idxs, distortions = [], [], [], [], [], [] + heights, widths = [], [] + + for camera_idx, cam_name in enumerate(self.config.cameras): + zod_cam = getattr(ZodCamera, cam_name.upper()) + cam_frames = self.zod_seq.info.get_camera_frames(anonymization=self.config.anonymization, camera=zod_cam) + for frame in cam_frames: + timestamp = frame.time.timestamp() + + filenames.append(frame.filepath) + times.append(timestamp) + + intrinsics.append(self.zod_seq.calibration.cameras[zod_cam].intrinsics) + ego_pose = self.zod_seq.oxts.get_poses(timestamp) + cam_pose = self.zod_seq.calibration.cameras[zod_cam].extrinsics.transform.copy() + # Convert from OpenCV to NerfStudio coordinate system + cam_pose[:3, :3] = cam_pose[:3, :3] @ OPENCV_TO_NERFSTUDIO + pose = ego_pose @ cam_pose + poses.append(pose) + idxs.append(camera_idx) + width, height = self.zod_seq.calibration.cameras[zod_cam].image_dimensions + distortion = self.zod_seq.calibration.cameras[zod_cam].distortion + # we only have the radial distortion parameters, so we pad with zeros + distortion = np.concatenate([distortion, np.zeros(2)]) + distortions.append(distortion) + heights.append(height - HOOD_HEIGHT) + widths.append(width) + + # To tensors + intrinsics = torch.from_numpy(np.array(intrinsics)).float() + distortions = torch.from_numpy(np.array(distortions)).float() + poses = torch.tensor(np.array(poses), dtype=torch.float32) + times = torch.tensor(times, dtype=torch.float64) # need higher precision + idxs = torch.tensor(idxs).int().unsqueeze(-1) + heights = torch.tensor(heights).int() + widths = torch.tensor(widths).int() + + cameras = Cameras( + fx=intrinsics[:, 0, 0], + fy=intrinsics[:, 1, 1], + cx=intrinsics[:, 0, 2], + cy=intrinsics[:, 1, 2], + height=heights, + width=widths, + distortion_params=distortions, + camera_to_worlds=poses[:, :3, :4], + camera_type=CameraType.FISHEYE, + times=times, + metadata={"sensor_idxs": idxs}, + ) + return cameras, filenames + + def _get_lidars(self) -> Tuple[Lidars, List[Path]]: + """Returns lidar info and loaded point clouds.""" + if "all" in self.config.lidars: + self.config.lidars = AVAILABLE_LIDARS + + if self.config.add_missing_points and self.config.lidars != (TOP,): + raise NotImplementedError( + "Adding missing points is only implemented for the top lidar. " + "If you want to add missing points for other lidars, please implement it and submit a PR." + ) + + times, poses, idxs, lidar_filenames = [], [], [], [] + lidar_frames = self.zod_seq.info.get_lidar_frames(lidar=ZodLidar.VELODYNE) + for frame in lidar_frames: + timestamp = frame.time.timestamp() + ego_pose = self.zod_seq.oxts.get_poses(timestamp) + lidar_pose = self.zod_seq.calibration.lidars[ZodLidar.VELODYNE].extrinsics.transform.copy() + pose = ego_pose @ lidar_pose + # TODO: zod does not provide the correct extrinsics for the left and right lidars + # we should move them to their correct origins. + for lidar_name in self.config.lidars: + poses.append(pose) + idxs.append(ZOD_LIDAR_TO_INDEX[lidar_name]) + lidar_filenames.append(Path(frame.filepath)) + times.append(timestamp) + + # To tensors + poses = torch.tensor(np.array(poses), dtype=torch.float64) # will be converted to float32 later + times = torch.tensor(times, dtype=torch.float64) + idxs = torch.tensor(idxs).int().unsqueeze(-1) + + lidars = Lidars( + lidar_to_worlds=poses[:, :3, :4], + lidar_type=LidarType.VELODYNE128, + times=times, + metadata={"sensor_idxs": idxs}, + horizontal_beam_divergence=HORIZONTAL_BEAM_DIVERGENCE, + vertical_beam_divergence=VERTICAL_BEAM_DIVERGENCE, + ) + + return lidars, lidar_filenames + + def _read_lidars(self, lidars: Lidars, filepaths: List[Path]) -> List[torch.Tensor]: + point_clouds = [] + + @lru_cache(maxsize=1) + def read_pc(fp): + pc = LidarData.from_npy(str(fp)) + return pc + + for i, fp in enumerate(filepaths): + lidar_idx = lidars.metadata["sensor_idxs"][i].item() + lidar_type = ZOD_INDEX_TO_LIDAR[lidar_idx] + min_channel, max_channel = ZOD_CHANNEL_MAPPING[lidar_type] + + pc = read_pc(fp) + valid_channels = np.logical_and(min_channel <= pc.diode_idx, pc.diode_idx <= max_channel) + xyz = pc.points[valid_channels] # N x 3 + intensity = pc.intensity[valid_channels] / MAX_INTENSITY_VALUE # N, + t = pc.timestamps[valid_channels] - pc.core_timestamp # N, relative timestamps + diode_idx = pc.diode_idx[valid_channels] # N, + diode_idx -= min_channel # make diode_idx start at 0 + pc = np.hstack((xyz, intensity[:, None], t[:, None], diode_idx[:, None])) + point_clouds.append(torch.from_numpy(pc).float()) + + times = lidars.times + poses = lidars.lidar_to_worlds + + if self.config.add_missing_points: + assert self.config.lidars == (TOP,), "Only top lidar supported for missing points" + # add missing points + missing_points = [] + ego_times = torch.from_numpy(self.zod_seq.oxts.timestamps) + times_close_to_lidar = (ego_times > (times.min() - 0.1)) & (ego_times < (times.max() + 0.1)) + ego_times = ego_times[times_close_to_lidar] + ego_poses = torch.from_numpy(self.zod_seq.oxts.poses)[times_close_to_lidar] + lidar2ego = torch.from_numpy(self.zod_seq.calibration.lidars[ZodLidar.VELODYNE].extrinsics.transform.copy()) + oxts_lidar_poses = ego_poses @ lidar2ego.unsqueeze(0) + for point_cloud, l2w, time in zip(point_clouds, poses, times): + pc = point_cloud.clone().to(torch.float64) + # absolute time + pc[:, 4] = pc[:, 4] + time + # project to world frame + pc[..., :3] = transform_points(pc[..., :3], l2w.unsqueeze(0).to(pc)) + # remove ego motion compensation and move to sensor frame + pc, interpolated_poses = self._remove_ego_motion_compensation(pc, oxts_lidar_poses, ego_times) + # reset time + pc[:, 4] = point_cloud[:, 4].clone() + # transform to common lidar frame again + interpolated_poses = torch.matmul( + pose_utils.inverse(l2w.unsqueeze(0)).float(), pose_utils.to4x4(interpolated_poses).float() + ) + # move channel from index 5 to 3 + pc = pc[..., [0, 1, 2, 5, 3, 4]] + # add missing points + mp = self._get_missing_points( + pc, interpolated_poses, TOP, dist_cutoff=0.0, ignore_regions=ZOD_LIDAR_IGNORE_REGIONS[TOP] + ).float() + # move channel from index 3 to 5 + mp = mp[..., [0, 1, 2, 4, 5, 3]] + missing_points.append(mp) + # add missing points to point clouds + point_clouds = [torch.cat([pc, missing], dim=0) for pc, missing in zip(point_clouds, missing_points)] + + lidars.lidar_to_worlds = lidars.lidar_to_worlds.float() + return point_clouds + + def _get_actor_trajectories(self) -> List[Dict]: + """Returns a list of actor trajectories. + + Each trajectory is a dictionary with the following keys: + - poses: the poses of the actor (float32) + - timestamps: the timestamps of the actor (float64) + - dims: the dimensions of the actor, wlh order (float32) + - label: the label of the actor (str) + - stationary: whether the actor is stationary (bool) + - symmetric: whether the actor is expected to be symmetric (bool) + - deformable: whether the actor is expected to be deformable (e.g. pedestrian) + """ + anno_dir = self.config.data / "auto_annotations" / self.config.subset / (self.config.sequence + ".json") + anno_dir = anno_dir if self.config.auto_annotation_dir == "default" else self.config.auto_annotation_dir + + with open(str(anno_dir), "r") as f: + annos = json.load(f) + + allowed_cats = ALLOWED_CATEGORIES + if self.config.include_deformable_actors: + allowed_cats.union(DEFORMABLE_CATEGORIES) + + trajs = [] + # loop over trajectories + for boxes in annos.values(): + # they should be alive at least two frames + if len(boxes) < 2: + continue + label = boxes[0]["name"] + + if label not in allowed_cats: + continue + + poses = [] + timestamps = [] + wlh = [] + for box in boxes: + bbox = Box3D( + center=np.array(box["center"]), + size=np.array(box["size"]), + orientation=Quaternion(box["orientation"]), + frame=ZodLidar.VELODYNE, + ) + bbox.convert_to(ZOD_EGO, self.zod_seq.calibration) + pose = np.eye(4) + pose[:3, :3] = bbox.orientation.rotation_matrix + pose[:3, 3] = bbox.center + # TODO, do we need to do lwh to wlh here? + pose = pose @ WLH_TO_LWH + ego_pose = self.zod_seq.oxts.get_poses(box["timestamp"]) + pose = ego_pose @ pose + poses.append(pose) + timestamps.append(box["timestamp"]) + l, w, h = bbox.size # noqa: E741 + wlh.append(np.array([w, l, h])) + + poses = np.array(poses) + # dynamic if we move more that 1m in any direction + dynamic = np.any(np.std(poses[:, :3, 3], axis=0) > 1.0) + # we skip all stationary objects + if not dynamic: + continue + + symmetric = label in SYMMETRIC_CATEGORIES + deformable = label in DEFORMABLE_CATEGORIES + + trajs.append( + { + "poses": torch.tensor(poses, dtype=torch.float32), + "timestamps": torch.tensor(timestamps, dtype=torch.float64), + "dims": torch.tensor(np.median(wlh, axis=0), dtype=torch.float32), + "label": label, + "stationary": not dynamic, + "symmetric": symmetric, + "deformable": deformable, + } + ) + + return trajs + + def _generate_dataparser_outputs(self, split="train"): + self.zod = ZodSequences(dataset_root=str(self.config.data), version=self.config.version, mp=False) + assert self.config.sequence in self.zod.get_all_ids(), f"Sequence {self.config.sequence} not found in dataset" + + self.zod_seq = self.zod[self.config.sequence] + + out = super()._generate_dataparser_outputs(split=split) + del self.zod + del self.zod_seq + return out diff --git a/nerfstudio/data/datasets/base_dataset.py b/nerfstudio/data/datasets/base_dataset.py index e16ea334..d9855809 100644 --- a/nerfstudio/data/datasets/base_dataset.py +++ b/nerfstudio/data/datasets/base_dataset.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -85,6 +86,10 @@ def get_image_float32(self, image_idx: int) -> Float[Tensor, "image_height image image_idx: The image index in the dataset. """ image = torch.from_numpy(self.get_numpy_image(image_idx).astype("float32") / 255.0) + height = min(self.cameras.height[image_idx], int(image.shape[0])) + width = min(self.cameras.width[image_idx], int(image.shape[1])) + image = image[:height] + image = image[:, :width] if self._dataparser_outputs.alpha_color is not None and image.shape[-1] == 4: assert (self._dataparser_outputs.alpha_color >= 0).all() and ( self._dataparser_outputs.alpha_color <= 1 diff --git a/nerfstudio/data/datasets/lidar_dataset.py b/nerfstudio/data/datasets/lidar_dataset.py new file mode 100644 index 00000000..60420d8d --- /dev/null +++ b/nerfstudio/data/datasets/lidar_dataset.py @@ -0,0 +1,82 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# +# 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. + +""" +Lidar Dataset. +""" +from __future__ import annotations + +from copy import deepcopy +from typing import Dict, List + +import torch + +from nerfstudio.cameras.lidars import Lidars +from nerfstudio.data.dataparsers.base_dataparser import DataparserOutputs +from nerfstudio.data.datasets.base_dataset import Dataset + + +class LidarDataset(Dataset): + """Dataset that returns lidar data. + + Args: + dataparser_outputs: description of where and how to read data. + downsample_factor: The downsample factor for the dataparser outputs (lidar only) + """ + + exclude_batch_keys_from_device: List[str] = [] + lidars: Lidars + + def __init__(self, dataparser_outputs: DataparserOutputs, downsample_factor: float = 1.0) -> None: + super().__init__() + self.downsample_factor = downsample_factor + self._dataparser_outputs = dataparser_outputs + self.metadata = deepcopy(dataparser_outputs.metadata) + self.lidars: Lidars = deepcopy(self.metadata.pop("lidars")) + self.point_clouds = deepcopy(self.metadata.pop("point_clouds")) + self.has_masks = dataparser_outputs.mask_filenames is not None + self.scene_box = deepcopy(dataparser_outputs.scene_box) + + def __len__(self): + return len(self.lidars) + + # pylint: disable=no-self-use + def get_metadata(self, data: Dict) -> Dict: + """Method that can be used to process any additional metadata that may be part of the model inputs. + + Args: + image_idx: The image index in the dataset. + """ + return {} + + def get_data(self, lidar_idx: int) -> Dict: + """Returns the LidarDataset data as a dictionary. + + Args: + lidar_idx: The lidar index in the dataset. + """ + data = {"lidar_idx": lidar_idx} + point_cloud = self.point_clouds[lidar_idx] + if point_cloud.shape[-1] == 4: # no time offset + # add column of zeros + point_cloud = torch.cat([point_cloud, torch.zeros(point_cloud.shape[0], 1)], dim=1) + data["lidar"] = point_cloud + + metadata = self.get_metadata(data) + data.update(metadata) + return data + + def __getitem__(self, lidar_idx: int) -> Dict: + data = self.get_data(lidar_idx) + return data diff --git a/nerfstudio/data/datasets/sdf_dataset.py b/nerfstudio/data/datasets/sdf_dataset.py deleted file mode 100644 index 7342efa9..00000000 --- a/nerfstudio/data/datasets/sdf_dataset.py +++ /dev/null @@ -1,100 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -""" -SDFStudio dataset. -""" - -from pathlib import Path -from typing import Dict - -import numpy as np -import torch -from torch import Tensor - -from nerfstudio.data.dataparsers.base_dataparser import DataparserOutputs -from nerfstudio.data.datasets.base_dataset import InputDataset - - -class SDFDataset(InputDataset): - """Dataset that returns images and depths. - - Args: - dataparser_outputs: description of where and how to read input images. - scale_factor: The scaling factor for the dataparser outputs. - """ - - exclude_batch_keys_from_device = InputDataset.exclude_batch_keys_from_device + ["depth", "normal"] - - def __init__(self, dataparser_outputs: DataparserOutputs, scale_factor: float = 1.0): - super().__init__(dataparser_outputs, scale_factor) - - # can be none if monoprior not included - self.depth_filenames = self.metadata["depth_filenames"] - self.normal_filenames = self.metadata["normal_filenames"] - self.camera_to_worlds = self.metadata["camera_to_worlds"] - # can be none if auto orient not enabled in dataparser - self.transform = self.metadata["transform"] - self.include_mono_prior = self.metadata["include_mono_prior"] - - def get_metadata(self, data: Dict) -> Dict: - # TODO supports foreground_masks - metadata = {} - if self.include_mono_prior: - depth_filepath = self.depth_filenames[data["image_idx"]] - normal_filepath = self.normal_filenames[data["image_idx"]] - camtoworld = self.camera_to_worlds[data["image_idx"]] - - # Scale depth images to meter units and also by scaling applied to cameras - depth_image, normal_image = self.get_depths_and_normals( - depth_filepath=depth_filepath, normal_filename=normal_filepath, camtoworld=camtoworld - ) - metadata["depth"] = depth_image - metadata["normal"] = normal_image - - return metadata - - def get_depths_and_normals(self, depth_filepath: Path, normal_filename: Path, camtoworld: Tensor): - """function to process additional depths and normal information - Args: - depth_filepath: path to depth file - normal_filename: path to normal file - camtoworld: camera to world transformation matrix - """ - - # load mono depth - depth = np.load(depth_filepath) - depth = torch.from_numpy(depth).float() - - # load mono normal - normal = np.load(normal_filename) - - # transform normal to world coordinate system - normal = normal * 2.0 - 1.0 # omnidata output is normalized so we convert it back to normal here - normal = torch.from_numpy(normal).float() - - rot = camtoworld[:3, :3] - - normal_map = normal.reshape(3, -1) - normal_map = torch.nn.functional.normalize(normal_map, p=2, dim=0) - - normal_map = rot @ normal_map - normal = normal_map.permute(1, 0).reshape(*normal.shape[1:], 3) - - if self.transform is not None: - h, w, _ = normal.shape - normal = self.transform[:3, :3] @ normal.reshape(-1, 3).permute(1, 0) - normal = normal.permute(1, 0).reshape(h, w, 3) - - return depth, normal diff --git a/nerfstudio/data/datasets/semantic_dataset.py b/nerfstudio/data/datasets/semantic_dataset.py deleted file mode 100644 index ea209086..00000000 --- a/nerfstudio/data/datasets/semantic_dataset.py +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -""" -Semantic dataset. -""" - -from typing import Dict - -import torch - -from nerfstudio.data.dataparsers.base_dataparser import DataparserOutputs, Semantics -from nerfstudio.data.datasets.base_dataset import InputDataset -from nerfstudio.data.utils.data_utils import get_semantics_and_mask_tensors_from_path - - -class SemanticDataset(InputDataset): - """Dataset that returns images and semantics and masks. - - Args: - dataparser_outputs: description of where and how to read input images. - """ - - exclude_batch_keys_from_device = InputDataset.exclude_batch_keys_from_device + ["mask", "semantics"] - - def __init__(self, dataparser_outputs: DataparserOutputs, scale_factor: float = 1.0): - super().__init__(dataparser_outputs, scale_factor) - assert "semantics" in dataparser_outputs.metadata.keys() and isinstance(self.metadata["semantics"], Semantics) - self.semantics = self.metadata["semantics"] - self.mask_indices = torch.tensor( - [self.semantics.classes.index(mask_class) for mask_class in self.semantics.mask_classes] - ).view(1, 1, -1) - - def get_metadata(self, data: Dict) -> Dict: - # handle mask - filepath = self.semantics.filenames[data["image_idx"]] - semantic_label, mask = get_semantics_and_mask_tensors_from_path( - filepath=filepath, mask_indices=self.mask_indices, scale_factor=self.scale_factor - ) - if "mask" in data.keys(): - mask = mask & data["mask"] - return {"mask": mask, "semantics": semantic_label} diff --git a/nerfstudio/data/pixel_samplers.py b/nerfstudio/data/pixel_samplers.py index 2704d852..51a94fd4 100644 --- a/nerfstudio/data/pixel_samplers.py +++ b/nerfstudio/data/pixel_samplers.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -16,13 +17,14 @@ Code for sampling pixels. """ +import math import random import warnings from dataclasses import dataclass, field from typing import Dict, Optional, Type, Union import torch -from jaxtyping import Int +from jaxtyping import Float, Int from torch import Tensor from nerfstudio.configs.base_config import InstantiateConfig @@ -302,19 +304,22 @@ def collate_image_dataset_batch_list(self, batch: Dict, num_rays_per_batch: int, all_images = [] all_depth_images = [] - num_rays_in_batch = num_rays_per_batch // num_images - if num_rays_in_batch % 2 != 0: - num_rays_in_batch += 1 + # find the optimal number of rays per image such that it is divisible by 2 and sums to the total number of rays + num_rays_per_image = num_rays_per_batch / num_images + residual = num_rays_per_image % 2 + num_rays_per_image_under = int(num_rays_per_image - residual) + num_rays_per_image_over = int(num_rays_per_image_under + 2) + num_images_under = math.ceil(num_images * (1 - residual / 2)) + num_images_over = num_images - num_images_under + num_rays_per_image = num_images_under * [num_rays_per_image_under] + num_images_over * [num_rays_per_image_over] + num_rays_per_image[-1] += num_rays_per_batch - sum(num_rays_per_image) if "mask" in batch: - for i in range(num_images): + for i, num_rays in enumerate(num_rays_per_image): image_height, image_width, _ = batch["image"][i].shape - if i == num_images - 1: - num_rays_in_batch = num_rays_per_batch - (num_images - 1) * num_rays_in_batch - indices = self.sample_method( - num_rays_in_batch, 1, image_height, image_width, mask=batch["mask"][i].unsqueeze(0), device=device + num_rays, 1, image_height, image_width, mask=batch["mask"][i].unsqueeze(0), device=device ) indices[:, 0] = i all_indices.append(indices) @@ -323,16 +328,13 @@ def collate_image_dataset_batch_list(self, batch: Dict, num_rays_per_batch: int, all_depth_images.append(batch["depth_image"][i][indices[:, 1], indices[:, 2]]) else: - for i in range(num_images): + for i, num_rays in enumerate(num_rays_per_image): image_height, image_width, _ = batch["image"][i].shape - if i == num_images - 1: - num_rays_in_batch = num_rays_per_batch - (num_images - 1) * num_rays_in_batch + if self.config.is_equirectangular: - indices = self.sample_method_equirectangular( - num_rays_in_batch, 1, image_height, image_width, device=device - ) + indices = self.sample_method_equirectangular(num_rays, 1, image_height, image_width, device=device) else: - indices = self.sample_method(num_rays_in_batch, 1, image_height, image_width, device=device) + indices = self.sample_method(num_rays, 1, image_height, image_width, device=device) indices[:, 0] = i all_indices.append(indices) all_images.append(batch["image"][i][indices[:, 1], indices[:, 2]]) @@ -469,6 +471,303 @@ def sample_method( return indices +@dataclass +class LidarPointSamplerConfig(PixelSamplerConfig): + """Config dataclass for LidarPointSampler.""" + + _target: Type = field(default_factory=lambda: LidarPointSampler) + """Target class to instantiate.""" + + +class LidarPointSampler(PixelSampler): + """Samples point from a point cloud.""" + + def collate_image_dataset_batch_list(self, batch: Dict, num_rays_per_batch: int, keep_full_image: bool = False): + """ + Does the same as collate_image_dataset_batch, except it will operate over a list of images / masks inside + a list. + + We will use this with the intent of DEPRECIATING it as soon as we find a viable alternative. + The intention will be to replace this with a more efficient implementation that doesn't require a for loop, but + since pytorch's ragged tensors are still in beta (this would allow for some vectorization), this will do. + + Args: + batch: batch of images to sample from + num_rays_per_batch: number of rays to sample per batch + keep_full_image: whether or not to include a reference to the full image in returned batch + """ + + device = batch["lidar"][0].device + num_lidars = len(batch["lidar"]) + + # only sample within the mask, if the mask is in the batch + all_indices = [] + all_lidars = [] + + num_rays_in_batch = num_rays_per_batch // num_lidars + for i in range(num_lidars): + if i == num_lidars - 1: + num_rays_in_batch = num_rays_per_batch - (num_lidars - 1) * num_rays_in_batch + num_points, _ = batch["lidar"][i].shape + # Use pixel sampler method with a "height" of num_points and a "width" of 1 + indices = self.sample_method(num_rays_in_batch, 1, num_points, 1, device=device) + indices = indices[:, :-1] + indices[:, 0] = i + all_indices.append(indices) + all_lidars.append(batch["lidar"][i][indices[:, 1]]) + + indices = torch.cat(all_indices, dim=0) + + c, n = (i.flatten() for i in torch.split(indices, 1, dim=-1)) + collated_batch = { + key: value[c, n] for key, value in batch.items() if key not in ("lidar", "lidar_idx") and value is not None + } + collated_batch["lidar"] = torch.cat(all_lidars, dim=0) + + # Needed to correct the random indices to their actual lidar idx locations. + indices[:, 0] = batch["lidar_idx"][c] + collated_batch["indices"] = indices # with the abs camera indices + if keep_full_image: + raise NotImplementedError("keep_full_image not implemented for lidar") + + return collated_batch + + def collate_image_dataset_batch(self, batch: Dict, num_rays_per_batch: int, keep_full_image: bool = False): + """ + Operates on a batch of images and samples pixels to use for generating rays. + Returns a collated batch which is input to the Graph. + It will sample only within the valid 'mask' if it's specified. + + Args: + batch: batch of images to sample from + num_rays_per_batch: number of rays to sample per batch + keep_full_image: whether or not to include a reference to the full image in returned batch + """ + device = batch["lidar"].device + num_lidars = len(batch["points_per_lidar"]) + shuffle_lidars = torch.randperm(num_lidars, device=device) + + num_rays_per_lidar = math.ceil(num_rays_per_batch / num_lidars) + + n_points_per_lidar = batch["points_per_lidar"].to(device).to(torch.int64) + cum_points_per_lidar = torch.zeros((num_lidars,), device=device, dtype=torch.int64) + cum_points_per_lidar[1:] = torch.cumsum(n_points_per_lidar, dim=0)[:-1] + cum_points_per_lidar = cum_points_per_lidar.view(num_lidars, 1) + point_indices = torch.rand((num_lidars, num_rays_per_lidar), device=device, dtype=torch.float64) + point_indices = torch.floor(point_indices * n_points_per_lidar.view(num_lidars, 1)).long() + lidar_indices = torch.arange(num_lidars, device=device).unsqueeze(1).repeat(1, num_rays_per_lidar) + + # shuffle the lidars to avoid dropping the same each time + lidar_indices = lidar_indices[shuffle_lidars] + point_indices = point_indices[shuffle_lidars] + cum_points_per_lidar = cum_points_per_lidar[shuffle_lidars] + + indices = torch.stack((lidar_indices.flatten(), point_indices.flatten()), dim=-1)[:num_rays_per_batch] + + flat_indices = (point_indices + cum_points_per_lidar).flatten() + all_lidars = batch["lidar"][flat_indices][:num_rays_per_batch] + + c, n = (i.flatten() for i in torch.split(indices, 1, dim=-1)) + collated_batch = { + key: value[c, n] + for key, value in batch.items() + if key not in ("lidar", "lidar_idx", "points_per_lidar") and value is not None + } + collated_batch["lidar"] = all_lidars + + # Needed to correct the random indices to their actual lidar idx locations. + indices[:, 0] = batch["lidar_idx"][c] + collated_batch["indices"] = indices # with the abs camera indices + if keep_full_image: + raise NotImplementedError("keep_full_image not implemented for lidar") + + return collated_batch + + def sample(self, image_batch: Dict): + """Sample an -image- lidar batch and return a -pixel- point batch. + + Args: + image_batch: batch of -images- lidars to sample from + """ + if isinstance(image_batch["lidar"], list): + image_batch = dict(image_batch.items()) # copy the dictionary so we don't modify the original + point_batch = self.collate_image_dataset_batch_list( + image_batch, self.num_rays_per_batch, keep_full_image=self.config.keep_full_image + ) + elif isinstance(image_batch["lidar"], torch.Tensor): + point_batch = self.collate_image_dataset_batch( + image_batch, self.num_rays_per_batch, keep_full_image=self.config.keep_full_image + ) + else: + raise ValueError("image_batch['lidar'] must be a list or torch.Tensor") + return point_batch + + +@dataclass +class ScaledPatchSamplerConfig(PixelSamplerConfig): + """Config dataclass for ScaledPatchSampler.""" + + _target: Type = field(default_factory=lambda: ScaledPatchSampler) + """Target class to instantiate.""" + patch_scale: int = 1 + """The upsampling ratio between sampled rays and pixel ground truths.""" + patch_size: int = 1 + """The size of sampled patches.""" + + +class ScaledPatchSampler(PixelSampler): + def __init__( + self, + config: ScaledPatchSamplerConfig, + num_rays_per_batch: int, + keep_full_image: bool = False, + **kwargs, + ) -> None: + super().__init__(config, num_rays_per_batch=num_rays_per_batch, keep_full_image=keep_full_image, **kwargs) + self.config: ScaledPatchSamplerConfig + self.patch_scale = self.config.patch_scale + self.patch_size = self.config.patch_size + self.sampling_weights: Optional[Tensor] = None + self.sampling_scale: int = 1 + + def collate_image_dataset_batch(self, batch: Dict, num_rays_per_batch: int, keep_full_image: bool = False): + """ + Operates on a batch of images and samples pixels to use for generating rays. + Returns a collated batch which is input to the Graph. + It will sample only within the valid 'mask' if it's specified. + + Args: + batch: batch of images to sample from + num_rays_per_batch: number of rays to sample per batch + keep_full_image: whether or not to include a reference to the full image in returned batch + """ + self._check_extra_keys(batch) + device = batch["image"].device + num_images, image_height, image_width, _ = batch["image"].shape + image = batch["image"] + rgb_size = self.patch_size * self.patch_scale + num_patches = num_rays_per_batch // (self.patch_size**2) + + patch_center_indices = self.sample_method( + num_patches, num_images, image_height, image_width, rgb_size, self.sampling_weights, device + ) + ray_indices, img_patches = self._patches_from_centers(image, patch_center_indices, rgb_size, device) + ray_indices[:, 0] = batch["image_idx"][ray_indices[:, 0]] + + collated_batch = { + "indices": ray_indices, + "image": img_patches, + } + if keep_full_image: + collated_batch["full_image"] = batch["image"] + + return collated_batch + + def collate_image_dataset_batch_list(self, batch: Dict, num_rays_per_batch: int, keep_full_image: bool = False): + self._check_extra_keys(batch) + device = batch["image"][0].device + num_images = len(batch["image"]) + rgb_size = self.patch_size * self.patch_scale + num_patches = num_rays_per_batch // (self.patch_size**2) + + assert self.sampling_weights is None, "sampling_weights not supported for ScaledPatchSampler in list mode" + img_indices = torch.randint(0, num_images, (num_patches,), device=device) # TODO: use sampling weights + img_indices, img_counts = torch.unique(img_indices, return_counts=True) + + all_img_patches = [] + all_ray_indices = [] + for img_idx, patches_in_img in zip(img_indices, img_counts): + image = batch["image"][img_idx].unsqueeze(0) + _, height, width, _ = image.shape + patch_center_indices = self.sample_method( + patches_in_img, 1, height, width, rgb_size, sampling_weights=None, device=device + ) + ray_indices, img_patches = self._patches_from_centers(image, patch_center_indices, rgb_size, device) + all_img_patches.append(img_patches) + ray_indices[:, 0] = img_idx + all_ray_indices.append(ray_indices) + ray_indices = torch.cat(all_ray_indices, dim=0) + img_patches = torch.cat(all_img_patches, dim=0) + ray_indices[:, 0] = batch["image_idx"][ray_indices[:, 0]] # use the "global" image idx + + collated_batch = {"indices": ray_indices, "image": img_patches} + if keep_full_image: + collated_batch["full_image"] = batch["image"] + return collated_batch + + def _patches_from_centers( + self, + image: torch.Tensor, + patch_center_indices: torch.Tensor, + rgb_size: int, + device: Union[torch.device, str] = "cpu", + ): + """Convert patch center coordinates to the full set of ray indices and image patches.""" + offsets = torch.arange(-(rgb_size // 2), (rgb_size // 2) + rgb_size % 2, device=device) + zeros = offsets.new_zeros((rgb_size, rgb_size)) + relative_indices = torch.stack((zeros, *torch.meshgrid(offsets, offsets, indexing="ij")), dim=-1)[ + None + ] # 1xKxKx3 + rgb_indices = patch_center_indices[:, None, None] + relative_indices # NxKxKx3 + ray_indices = rgb_indices[ + :, self.patch_scale // 2 :: self.patch_scale, self.patch_scale // 2 :: self.patch_scale + ] # NxKfxKfx3 + ray_indices = ray_indices.reshape(-1, 3) # (N*Kf*Kf)x3 + img_patches = image[rgb_indices[..., 0], rgb_indices[..., 1], rgb_indices[..., 2]] + return ray_indices, img_patches + + def sample_method( + self, + batch_size: int, + num_images: int, + image_height: int, + image_width: int, + rgb_size: int, + sampling_weights: Optional[Tensor] = None, + device: Union[torch.device, str] = "cpu", + ): + """Samples (img, y, x) indices from the image batch, optionally according to per-pixel weights.""" + if sampling_weights is None: + cropped_h, cropped_w = image_height - rgb_size + 1, image_width - rgb_size + 1 + crop = rgb_size // 2 + centers = super().sample_method(batch_size, num_images, cropped_h, cropped_w, device=device) + centers[:, 1:] = centers[:, 1:] + crop + else: + sampled_flat_indices = torch.multinomial(sampling_weights, batch_size, replacement=True) + scaled_h, scaled_w = self.sampling_shape[-2:] + image_indices = sampled_flat_indices // (scaled_h * scaled_w) + h_indices = (sampled_flat_indices % (scaled_h * scaled_w)) // scaled_w + w_indices = (sampled_flat_indices % (scaled_h * scaled_w)) % scaled_w + # Apply random jitter to the centers to compensate for sampling at a lower scale + if self.sampling_scale > 1: + jitter = torch.randint(0, self.sampling_scale, (batch_size, 2), device=device) + h_indices = h_indices * self.sampling_scale + jitter[:, 0] + w_indices = w_indices * self.sampling_scale + jitter[:, 1] + # move the centers if they are outside the crop range + h_indices = h_indices.clip(min=rgb_size // 2, max=image_height - rgb_size // 2 - 1) + w_indices = w_indices.clip(min=rgb_size // 2, max=image_width - rgb_size // 2 - 1) + centers = torch.stack((image_indices, h_indices, w_indices), dim=-1) + return centers # img_idx, pixel_h, pixel_w + + def update_sampling_weights( + self, scores: Float[Tensor, "n h w"], ratio_uniform: float = 0.5, sampling_scale: int = 1 + ): + """Update the sampling weights based on the scores.""" + # Downsample scores for efficient sampling + scores = torch.nn.functional.avg_pool2d(scores, sampling_scale, sampling_scale, ceil_mode=True) + self.sampling_scale = sampling_scale + self.sampling_shape = scores.shape + scores = scores.flatten() + score_probs = scores / scores.sum() + self.sampling_weights = ratio_uniform / scores.numel() + (1 - ratio_uniform) * score_probs + + def _check_extra_keys(self, batch): + """Check for extra keys in the batch.""" + extra_keys = set(batch.keys()) - {"image", "image_idx"} + if extra_keys: + raise NotImplementedError("Patch sampler not implemented for extra_keys") + + @dataclass class PairPixelSamplerConfig(PixelSamplerConfig): """Config dataclass for PairPixelSampler.""" diff --git a/nerfstudio/data/scene_box.py b/nerfstudio/data/scene_box.py index 4abf60ea..242bf525 100644 --- a/nerfstudio/data/scene_box.py +++ b/nerfstudio/data/scene_box.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -59,15 +60,22 @@ def get_centered_and_scaled_scene_box(self, scale_factor: Union[float, torch.Ten return SceneBox(aabb=(self.aabb - self.get_center()) * scale_factor) @staticmethod - def get_normalized_positions(positions: Float[Tensor, "*batch 3"], aabb: Float[Tensor, "2 3"]): + def get_normalized_positions( + positions: Float[Tensor, "*batch 3"], aabb: Float[Tensor, "* 2 3"], per_dim_norm: bool = True + ): """Return normalized positions in range [0, 1] based on the aabb axis-aligned bounding box. Args: positions: the xyz positions aabb: the axis-aligned bounding box """ - aabb_lengths = aabb[1] - aabb[0] - normalized_positions = (positions - aabb[0]) / aabb_lengths + batch_shape = positions.shape[:-1] + if len(aabb.shape) > 2 and batch_shape != aabb.shape[:-2]: + # add singleton dimension + aabb = aabb.unsqueeze(1) + aabb_lengths = aabb[..., 1, :] - aabb[..., 0, :] + aabb_lengths = aabb_lengths if per_dim_norm else aabb_lengths.max(dim=-1, keepdim=True)[0] + normalized_positions = (positions - aabb[..., 0, :]) / aabb_lengths return normalized_positions @staticmethod diff --git a/nerfstudio/data/utils/data_utils.py b/nerfstudio/data/utils/data_utils.py index c81101c4..c8d19d18 100644 --- a/nerfstudio/data/utils/data_utils.py +++ b/nerfstudio/data/utils/data_utils.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -21,6 +22,8 @@ import torch from PIL import Image +from nerfstudio.cameras.lidars import transform_points + def get_image_mask_tensor_from_path(filepath: Path, scale_factor: float = 1.0) -> torch.Tensor: """ @@ -84,3 +87,53 @@ def get_depth_image_from_path( image = image.astype(np.float64) * scale_factor image = cv2.resize(image, (width, height), interpolation=interpolation) return torch.from_numpy(image[:, :, np.newaxis]) + + +def points_in_box(points, box2world, size): + """Return a mask of points that are inside a box""" + # points is [N, 3] + + mask = torch.ones(points.shape[0], dtype=torch.bool, device=points.device) + + # transform points to box frame + world2box = torch.inverse(box2world) + points = transform_points(points, world2box) + + # check if points are in box + mask = mask & (points[:, 0] > -size[0] / 2) & (points[:, 0] < size[0] / 2) + mask = mask & (points[:, 1] > -size[1] / 2) & (points[:, 1] < size[1] / 2) + mask = mask & (points[:, 2] > -size[2] / 2) & (points[:, 2] < size[2] / 2) + + return mask + + +def remove_dynamic_points(point_clouds, l2w, timestamps, trajectories, extra_padding=0.15): + """Remove dynamic points from point clouds. + + point_clouds - List of point clouds, assumed to be in sensor coordinates. + l2w - List of sensor-to-world transforms. + trajectories - List of object trajectories, assumed to be in in world coordinates. + extra_padding - Extra padding around the object bounding box. + + Returns: + List of pruned point clouds, in sensor coordinates. + """ + pruned_point_clouds = [] + + dynamic_trajs = [traj for traj in trajectories if not traj["stationary"]] + + for i, pc in enumerate(point_clouds): + points_in_box_mask = torch.zeros(pc.shape[0], dtype=torch.bool, device=pc.device) + pc_in_world = transform_points(pc[:, :3], l2w[i]) + for traj in dynamic_trajs: + time_index = ((traj["timestamps"] - timestamps[i]).abs() < 1e-3).nonzero() + if len(time_index) == 0: # no matching timestamp + continue + time_index = time_index[0] + pose = traj["poses"][time_index] + size = traj["dims"] * (1 + extra_padding) + points_in_box_mask = points_in_box_mask | points_in_box(pc_in_world, pose, size) + + pruned_point_clouds.append(pc[~points_in_box_mask]) + + return pruned_point_clouds diff --git a/nerfstudio/data/utils/dataloaders.py b/nerfstudio/data/utils/dataloaders.py index 6a64ba73..8e048688 100644 --- a/nerfstudio/data/utils/dataloaders.py +++ b/nerfstudio/data/utils/dataloaders.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -29,8 +30,10 @@ from torch.utils.data.dataloader import DataLoader from nerfstudio.cameras.cameras import Cameras +from nerfstudio.cameras.lidars import Lidars from nerfstudio.cameras.rays import RayBundle from nerfstudio.data.datasets.base_dataset import InputDataset +from nerfstudio.data.datasets.lidar_dataset import LidarDataset from nerfstudio.data.utils.nerfstudio_collate import nerfstudio_collate from nerfstudio.utils.misc import get_dict_to_torch from nerfstudio.utils.rich_utils import CONSOLE @@ -150,21 +153,24 @@ class EvalDataloader(DataLoader): """Evaluation dataloader base class Args: - input_dataset: InputDataset to load data from + dataset: InputDataset to load data from device: Device to load data to """ def __init__( self, - input_dataset: InputDataset, + dataset: Union[InputDataset, LidarDataset], device: Union[torch.device, str] = "cpu", **kwargs, ): - self.input_dataset = input_dataset - self.cameras = input_dataset.cameras.to(device) + self.dataset = dataset + if isinstance(dataset, InputDataset): + self.sensors = dataset.cameras.to(device) + else: + self.sensors = dataset.lidars.to(device) self.device = device self.kwargs = kwargs - super().__init__(dataset=input_dataset) + super().__init__(dataset=dataset) @abstractmethod def __iter__(self): @@ -175,17 +181,17 @@ def __iter__(self): def __next__(self) -> Tuple[RayBundle, Dict]: """Returns the next batch of data""" - def get_camera(self, image_idx: int = 0) -> Tuple[Cameras, Dict]: + def get_camera(self, image_idx: int = 0) -> Tuple[Union[Cameras, Lidars], Dict]: """Get camera for the given image index Args: image_idx: Camera image index """ - camera = self.cameras[image_idx : image_idx + 1] - batch = self.input_dataset[image_idx] + sensor = self.sensors[image_idx : image_idx + 1] + batch = self.dataset[image_idx] batch = get_dict_to_torch(batch, device=self.device, exclude=["image"]) assert isinstance(batch, dict) - return camera, batch + return sensor, batch def get_data_from_image_idx(self, image_idx: int) -> Tuple[RayBundle, Dict]: """Returns the data for a specific image index. @@ -193,8 +199,15 @@ def get_data_from_image_idx(self, image_idx: int) -> Tuple[RayBundle, Dict]: Args: image_idx: Camera image index """ - ray_bundle = self.cameras.generate_rays(camera_indices=image_idx, keep_shape=True) - batch = self.input_dataset[image_idx] + if isinstance(self.dataset, InputDataset): + ray_bundle = self.sensors.generate_rays(image_idx, keep_shape=True) + elif isinstance(self.dataset, LidarDataset): + point_cloud = self.dataset.point_clouds[image_idx] + lidar_idx = torch.full((point_cloud.shape[0], 1), image_idx, dtype=torch.int64, device=self.device) + ray_bundle = self.sensors.generate_rays(lidar_idx, points=point_cloud) + else: + raise NotImplementedError(f"Dataset type {type(self.dataset)} not supported.") + batch = self.dataset[image_idx] batch = get_dict_to_torch(batch, device=self.device, exclude=["image"]) assert isinstance(batch, dict) return ray_bundle, batch @@ -204,21 +217,21 @@ class FixedIndicesEvalDataloader(EvalDataloader): """Dataloader that returns a fixed set of indices. Args: - input_dataset: InputDataset to load data from + dataset: InputDataset to load data from image_indices: List of image indices to load data from. If None, then use all images. device: Device to load data to """ def __init__( self, - input_dataset: InputDataset, + dataset: Union[InputDataset, LidarDataset], image_indices: Optional[Tuple[int]] = None, device: Union[torch.device, str] = "cpu", **kwargs, ): - super().__init__(input_dataset, device, **kwargs) + super().__init__(dataset, device, **kwargs) if image_indices is None: - self.image_indices = list(range(len(input_dataset))) + self.image_indices = list(range(len(dataset))) else: self.image_indices = image_indices self.count = 0 @@ -239,7 +252,7 @@ def __next__(self): class RandIndicesEvalDataloader(EvalDataloader): """Dataloader that returns random images. Args: - input_dataset: InputDataset to load data from + dataset: InputDataset to load data from device: Device to load data to """ @@ -248,6 +261,5 @@ def __iter__(self): def __next__(self): # choose a random image index - image_idx = random.randint(0, len(self.cameras) - 1) - camera, batch = self.get_camera(image_idx) - return camera, batch + image_idx = random.randint(0, len(self.sensors) - 1) + return self.get_camera(image_idx) diff --git a/nerfstudio/data/utils/lidar_elevation_mappings.py b/nerfstudio/data/utils/lidar_elevation_mappings.py new file mode 100644 index 00000000..f2c891a5 --- /dev/null +++ b/nerfstudio/data/utils/lidar_elevation_mappings.py @@ -0,0 +1,252 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# +# 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. + +"""Lidar elevation mappings for different sensors. Maps diode index to elevation angle in degrees.""" + +import numpy as np + +PANDAR64_ELEVATION_MAPPING = { + 0: 14.882, + 1: 11.032, + 2: 8.059, + 3: 5.057, + 4: 3.04, + 5: 2.028, + 6: 1.86, + 7: 1.688, + 8: 1.522, + 9: 1.351, + 10: 1.184, + 11: 1.013, + 12: 0.846, + 13: 0.675, + 14: 0.508, + 15: 0.337, + 16: 0.169, + 17: 0.0, + 18: -0.169, + 19: -0.337, + 20: -0.508, + 21: -0.675, + 22: -0.846, + 23: -1.013, + 24: -1.184, + 25: -1.351, + 26: -1.522, + 27: -1.688, + 28: -1.86, + 29: -2.028, + 30: -2.198, + 31: -2.365, + 32: -2.536, + 33: -2.7, + 34: -2.873, + 35: -3.04, + 36: -3.21, + 37: -3.375, + 38: -3.548, + 39: -3.712, + 40: -3.884, + 41: -4.05, + 42: -4.221, + 43: -4.385, + 44: -4.558, + 45: -4.72, + 46: -4.892, + 47: -5.057, + 48: -5.229, + 49: -5.391, + 50: -5.565, + 51: -5.726, + 52: -5.898, + 53: -6.061, + 54: -7.063, + 55: -8.059, + 56: -9.06, + 57: -9.885, + 58: -11.032, + 59: -12.006, + 60: -12.974, + 61: -13.93, + 62: -18.889, + 63: -24.897, +} # degrees + +VELODYNE_128_ELEVATION_MAPPING = { + 0: -11.742, + 1: -1.99, + 2: 3.4, + 3: -5.29, + 4: -0.78, + 5: 4.61, + 6: -4.08, + 7: 1.31, + 8: -6.5, + 9: -1.11, + 10: 4.28, + 11: -4.41, + 12: 0.1, + 13: 6.48, + 14: -3.2, + 15: 2.19, + 16: -3.86, + 17: 1.53, + 18: -9.244, + 19: -1.77, + 20: 2.74, + 21: -5.95, + 22: -0.56, + 23: 4.83, + 24: -2.98, + 25: 2.41, + 26: -6.28, + 27: -0.89, + 28: 3.62, + 29: -5.07, + 30: 0.32, + 31: 7.58, + 32: -0.34, + 33: 5.18, + 34: -3.64, + 35: 1.75, + 36: -25.0, + 37: -2.43, + 38: 2.96, + 39: -5.73, + 40: 0.54, + 41: 9.7, + 42: -2.76, + 43: 2.63, + 44: -7.65, + 45: -1.55, + 46: 3.84, + 47: -4.85, + 48: 3.18, + 49: -5.51, + 50: -0.12, + 51: 5.73, + 52: -4.3, + 53: 1.09, + 54: -16.042, + 55: -2.21, + 56: 4.06, + 57: -4.63, + 58: 0.76, + 59: 15.0, + 60: -3.42, + 61: 1.97, + 62: -6.85, + 63: -1.33, + 64: -5.62, + 65: -0.23, + 66: 5.43, + 67: -3.53, + 68: 0.98, + 69: -19.582, + 70: -2.32, + 71: 3.07, + 72: -4.74, + 73: 0.65, + 74: 11.75, + 75: -2.65, + 76: 1.86, + 77: -7.15, + 78: -1.44, + 79: 3.95, + 80: -2.1, + 81: 3.29, + 82: -5.4, + 83: -0.01, + 84: 4.5, + 85: -4.19, + 86: 1.2, + 87: -13.565, + 88: -1.22, + 89: 4.17, + 90: -4.52, + 91: 0.87, + 92: 8.95, + 93: -3.31, + 94: 2.08, + 95: -6.65, + 96: 1.42, + 97: -10.346, + 98: -1.88, + 99: 3.51, + 100: -6.06, + 101: -0.67, + 102: 4.72, + 103: -3.97, + 104: 2.3, + 105: -6.39, + 106: -1.0, + 107: 4.39, + 108: -5.18, + 109: 0.21, + 110: 6.98, + 111: -3.09, + 112: 4.98, + 113: -3.75, + 114: 1.64, + 115: -8.352, + 116: -2.54, + 117: 2.85, + 118: -5.84, + 119: -0.45, + 120: 8.43, + 121: -2.87, + 122: 2.52, + 123: -6.17, + 124: -1.66, + 125: 3.73, + 126: -4.96, + 127: 0.43, +} # degrees + +VELODYNE_VLP32C_ELEVATION_MAPPING = { + 0: -25.0, + 1: -1.0, + 2: -1.667, + 3: -15.639, + 4: -11.31, + 5: 0.0, + 6: -0.667, + 7: -8.843, + 8: -7.254, + 9: 0.333, + 10: -0.333, + 11: -6.148, + 12: -5.333, + 13: 1.333, + 14: 0.667, + 15: -4.0, + 16: -4.667, + 17: 1.667, + 18: 1.0, + 19: -3.667, + 20: -3.333, + 21: 3.333, + 22: 2.333, + 23: -2.667, + 24: -3.0, + 25: 7.0, + 26: 4.667, + 27: -2.333, + 28: -2.0, + 29: 15.0, + 30: 10.333, + 31: -1.333, +} + +VELODYNE_HDL32E_ELEVATION_MAPPING = dict(zip(np.arange(32), tuple(np.linspace(-30.67, 10.67, 32)))) diff --git a/nerfstudio/engine/optimizers.py b/nerfstudio/engine/optimizers.py index 0a879478..cb34fb76 100644 --- a/nerfstudio/engine/optimizers.py +++ b/nerfstudio/engine/optimizers.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -70,6 +71,15 @@ class RAdamOptimizerConfig(OptimizerConfig): """The weight decay to use.""" +@dataclass +class AdamWOptimizerConfig(OptimizerConfig): + """Basic optimizer config with Adam""" + + _target: Type = torch.optim.AdamW + weight_decay: float = 0 + """The weight decay to use.""" + + class Optimizers: """A set of optimizers. diff --git a/nerfstudio/engine/trainer.py b/nerfstudio/engine/trainer.py index 9b4d6d8a..48f1bb0b 100644 --- a/nerfstudio/engine/trainer.py +++ b/nerfstudio/engine/trainer.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -15,6 +16,7 @@ """ Code to train model. """ + from __future__ import annotations import dataclasses @@ -33,7 +35,10 @@ from rich.table import Table from torch.cuda.amp.grad_scaler import GradScaler +from nerfstudio.configs.base_config import InstantiateConfig from nerfstudio.configs.experiment_config import ExperimentConfig +from nerfstudio.data.datamanagers.base_datamanager import VanillaDataManager +from nerfstudio.data.datamanagers.parallel_datamanager import ParallelDataManager from nerfstudio.engine.callbacks import TrainingCallback, TrainingCallbackAttributes, TrainingCallbackLocation from nerfstudio.engine.optimizers import Optimizers from nerfstudio.pipelines.base_pipeline import VanillaPipeline @@ -49,6 +54,53 @@ TORCH_DEVICE = str +@dataclass +class MetricTrackerConfig(InstantiateConfig): + """Configuration for the metric tracker, used for early stopping and checkpoint saving.""" + + _target: Type = field(default_factory=lambda: MetricTracker) + """target class to instantiate""" + metric: Optional[str] = "psnr" + """The metric to track for early stopping and checkpoint saving.""" + higher_is_better: bool = True + """Whether a higher value of the metric is better.""" + margin: float = 0.0 + """Margin for comparison (0.1 = 10%)""" + + +class MetricTracker: + """Class to track a metric to detect degradation.""" + + def __init__(self, config: MetricTrackerConfig) -> None: + self.config = config + self.best, self.latest = None, None + + def did_degrade(self, fallback: bool = False) -> bool: + if (self.latest is None) or (self.best is None): + return fallback # we can't tell + # apply margin to the best value (to be robust to noise in the metric) + best = self.best * (1 + (-self.config.margin if self.config.higher_is_better else self.config.margin)) + return not self._is_new_better(best, self.latest) + + def reset_latest(self) -> None: + self.latest = None + + def update(self, metrics: Dict[str, float]) -> None: + self.latest = metrics.get(self.config.metric, None) if self.config.metric else None + if isinstance(self.latest, torch.Tensor): + self.latest = self.latest.item() + if self.latest is None: + return + if self.best is None: + self.best = self.latest + elif self._is_new_better(self.best, self.latest): + self.best = self.latest + + def _is_new_better(self, old: float, new: float) -> bool: + """Check if new is better than old.""" + return new >= old if self.config.higher_is_better else new <= old + + @dataclass class TrainerConfig(ExperimentConfig): """Configuration for training regimen""" @@ -71,6 +123,10 @@ class TrainerConfig(ExperimentConfig): """Use gradient scaler even if the automatic mixed precision is disabled.""" save_only_latest_checkpoint: bool = True """Whether to only save the latest checkpoint or all checkpoints.""" + checkpoint_saving_tracker: MetricTrackerConfig = field(default_factory=lambda: MetricTrackerConfig(margin=0.05)) + """Configuration for the metric tracker.""" + early_stopping_tracker: MetricTrackerConfig = field(default_factory=lambda: MetricTrackerConfig(margin=0.1)) + """Configuration for the metric tracker.""" # optional parameters if we want to resume training load_dir: Optional[Path] = None """Optionally specify a pre-trained model directory to load from.""" @@ -80,6 +136,8 @@ class TrainerConfig(ExperimentConfig): """Path to config YAML file.""" load_checkpoint: Optional[Path] = None """Path to checkpoint file.""" + training_start_step: Optional[int] = None + """Optionally specify the starting step for training. Useful to load checkpoint but start from a different step.""" log_gradients: bool = False """Optionally log gradients during training""" gradient_accumulation_steps: Dict[str, int] = field(default_factory=lambda: {}) @@ -135,6 +193,9 @@ def __init__(self, config: TrainerConfig, local_rank: int = 0, world_size: int = self.checkpoint_dir: Path = config.get_checkpoint_dir() CONSOLE.log(f"Saving checkpoints to: {self.checkpoint_dir}") + self.checkpoint_saving_tracker = self.config.checkpoint_saving_tracker.setup() + self.early_stopping_tracker = self.config.early_stopping_tracker.setup() + self.viewer_state = None def setup(self, test_mode: Literal["test", "val", "inference"] = "val") -> None: @@ -225,9 +286,11 @@ def train(self) -> None: """Train the model.""" assert self.pipeline.datamanager.train_dataset is not None, "Missing DatsetInputs" - self.pipeline.datamanager.train_dataparser_outputs.save_dataparser_transform( - self.base_dir / "dataparser_transforms.json" - ) + # don't want to call save_dataparser_transform if pipeline's datamanager does not have a dataparser + if isinstance(self.pipeline.datamanager, (VanillaDataManager, ParallelDataManager)): + self.pipeline.datamanager.train_dataparser_outputs.save_dataparser_transform( + self.base_dir / "dataparser_transforms.json" + ) self._init_viewer_state() with TimeWriter(writer, EventName.TOTAL_TRAIN_TIME): @@ -284,7 +347,12 @@ def train(self) -> None: # Do not perform evaluation if there are no validation images if self.pipeline.datamanager.eval_dataset: - self.eval_iteration(step) + with self.train_lock: # avoid race conditions with eval + self.eval_iteration(step) + + if self.early_stopping_tracker.did_degrade(): + print("Early stopping due to degradation") + break if step_check(step, self.config.steps_per_save): self.save_checkpoint(step) @@ -332,7 +400,7 @@ def _check_viewer_warnings(self) -> None: @check_viewer_enabled def _init_viewer_state(self) -> None: """Initializes viewer scene with given train dataset""" - assert self.viewer_state and self.pipeline.datamanager.train_dataset + assert self.viewer_state and self.pipeline.datamanager.train_dataset is not None self.viewer_state.init_scene( train_dataset=self.pipeline.datamanager.train_dataset, train_state="training", @@ -399,10 +467,14 @@ def _load_checkpoint(self) -> None: load_path: Path = load_dir / f"step-{load_step:09d}.ckpt" assert load_path.exists(), f"Checkpoint {load_path} does not exist" loaded_state = torch.load(load_path, map_location="cpu") + loaded_state["step"] = ( + self.config.training_start_step if self.config.training_start_step is not None else loaded_state["step"] + ) self._start_step = loaded_state["step"] + 1 # load the checkpoints for pipeline, optimizers, and gradient scalar self.pipeline.load_pipeline(loaded_state["pipeline"], loaded_state["step"]) - self.optimizers.load_optimizers(loaded_state["optimizers"]) + if self.config.load_optimizer: + self.optimizers.load_optimizers(loaded_state["optimizers"]) if "schedulers" in loaded_state and self.config.load_scheduler: self.optimizers.load_schedulers(loaded_state["schedulers"]) self.grad_scaler.load_state_dict(loaded_state["scalers"]) @@ -410,10 +482,14 @@ def _load_checkpoint(self) -> None: elif load_checkpoint is not None: assert load_checkpoint.exists(), f"Checkpoint {load_checkpoint} does not exist" loaded_state = torch.load(load_checkpoint, map_location="cpu") + loaded_state["step"] = ( + self.config.training_start_step if self.config.training_start_step is not None else loaded_state["step"] + ) self._start_step = loaded_state["step"] + 1 # load the checkpoints for pipeline, optimizers, and gradient scalar self.pipeline.load_pipeline(loaded_state["pipeline"], loaded_state["step"]) - self.optimizers.load_optimizers(loaded_state["optimizers"]) + if self.config.load_optimizer: + self.optimizers.load_optimizers(loaded_state["optimizers"]) if "schedulers" in loaded_state and self.config.load_scheduler: self.optimizers.load_schedulers(loaded_state["schedulers"]) self.grad_scaler.load_state_dict(loaded_state["scalers"]) @@ -431,14 +507,19 @@ def save_checkpoint(self, step: int) -> None: # possibly make the checkpoint directory if not self.checkpoint_dir.exists(): self.checkpoint_dir.mkdir(parents=True, exist_ok=True) + if self.checkpoint_saving_tracker.did_degrade(fallback=True): + return + self.checkpoint_saving_tracker.reset_latest() # we only want to save the best once # save the checkpoint ckpt_path: Path = self.checkpoint_dir / f"step-{step:09d}.ckpt" torch.save( { "step": step, - "pipeline": self.pipeline.module.state_dict() # type: ignore - if hasattr(self.pipeline, "module") - else self.pipeline.state_dict(), + "pipeline": ( + self.pipeline.module.state_dict() # type: ignore + if hasattr(self.pipeline, "module") + else self.pipeline.state_dict() + ), "optimizers": {k: v.state_dict() for (k, v) in self.optimizers.optimizers.items()}, "schedulers": {k: v.state_dict() for (k, v) in self.optimizers.schedulers.items()}, "scalers": self.grad_scaler.state_dict(), @@ -500,6 +581,7 @@ def train_iteration(self, step: int) -> TRAIN_INTERATION_OUTPUT: @check_eval_enabled @profiler.time_function + @torch.no_grad() def eval_iteration(self, step: int) -> None: """Run one iteration with different batch/image/all image evaluations depending on step size. @@ -509,6 +591,8 @@ def eval_iteration(self, step: int) -> None: # a batch of eval rays if step_check(step, self.config.steps_per_eval_batch): _, eval_loss_dict, eval_metrics_dict = self.pipeline.get_eval_loss_dict(step=step) + eval_loss_dict = detach_items_if_tensor(eval_loss_dict) + eval_metrics_dict = detach_items_if_tensor(eval_metrics_dict) eval_loss = functools.reduce(torch.add, eval_loss_dict.values()) writer.put_scalar(name="Eval Loss", scalar=eval_loss, step=step) writer.put_dict(name="Eval Loss Dict", scalar_dict=eval_loss_dict, step=step) @@ -524,7 +608,7 @@ def eval_iteration(self, step: int) -> None: step=step, avg_over_steps=True, ) - writer.put_dict(name="Eval Images Metrics", scalar_dict=metrics_dict, step=step) + writer.put_dict(name="Eval Images Metrics", scalar_dict=detach_items_if_tensor(metrics_dict), step=step) group = "Eval Images" for image_name, image in images_dict.items(): writer.put_image(name=group + "/" + image_name, image=image, step=step) @@ -532,4 +616,15 @@ def eval_iteration(self, step: int) -> None: # all eval images if step_check(step, self.config.steps_per_eval_all_images): metrics_dict = self.pipeline.get_average_eval_image_metrics(step=step) - writer.put_dict(name="Eval Images Metrics Dict (all images)", scalar_dict=metrics_dict, step=step) + self.early_stopping_tracker.update(metrics_dict) + self.checkpoint_saving_tracker.update(metrics_dict) + writer.put_dict( + name="Eval Images Metrics Dict (all images)", + scalar_dict=detach_items_if_tensor(metrics_dict), + step=step, + ) + + +def detach_items_if_tensor(dict): + """Detach items in dictionary if they are tensors""" + return {k: v.detach() if isinstance(v, torch.Tensor) else v for k, v in dict.items()} diff --git a/nerfstudio/field_components/encodings.py b/nerfstudio/field_components/encodings.py index 8d63cd92..50f047f2 100644 --- a/nerfstudio/field_components/encodings.py +++ b/nerfstudio/field_components/encodings.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -319,6 +320,7 @@ class HashEncoding(Encoding): hash_init_scale: Value to initialize hash grid. implementation: Implementation of hash encoding. Fallback to torch if tcnn not available. interpolation: Interpolation override for tcnn hashgrid. Not supported for torch unless linear. + n_input_dims: Number of input dimensions (typically 3 for x,y,z) """ def __init__( @@ -331,6 +333,7 @@ def __init__( hash_init_scale: float = 0.001, implementation: Literal["tcnn", "torch"] = "tcnn", interpolation: Optional[Literal["Nearest", "Linear", "Smoothstep"]] = None, + n_input_dims: int = 3, ) -> None: super().__init__(in_dim=3) self.num_levels = num_levels @@ -339,10 +342,12 @@ def __init__( self.hash_init_scale = hash_init_scale self.log2_hashmap_size = log2_hashmap_size self.hash_table_size = 2**log2_hashmap_size + self.min_res = min_res + self.hash_init_scale = hash_init_scale levels = torch.arange(num_levels) - self.growth_factor = np.exp((np.log(max_res) - np.log(min_res)) / (num_levels - 1)) if num_levels > 1 else 1 - self.scalings = torch.floor(min_res * self.growth_factor**levels) + self.growth_factor = np.exp((np.log(max_res) - np.log(min_res)) / (num_levels - 1)) if num_levels > 1 else 1.0 + self.register_buffer("scalings", torch.floor(min_res * self.growth_factor**levels)) self.hash_offset = levels * self.hash_table_size @@ -363,7 +368,7 @@ def __init__( interpolation=interpolation, ) self.tcnn_encoding = tcnn.Encoding( - n_input_dims=3, + n_input_dims=n_input_dims, encoding_config=encoding_config, ) @@ -759,7 +764,7 @@ class SHEncoding(Encoding): levels: Number of spherical harmonic levels to encode. """ - def __init__(self, levels: int = 4, implementation: Literal["tcnn", "torch"] = "torch") -> None: + def __init__(self, levels: int = 4, implementation: Literal["tcnn", "torch"] = "tcnn") -> None: super().__init__(in_dim=3) if levels <= 0 or levels > 4: diff --git a/nerfstudio/field_components/field_heads.py b/nerfstudio/field_components/field_heads.py index 44df9f60..96c206d1 100644 --- a/nerfstudio/field_components/field_heads.py +++ b/nerfstudio/field_components/field_heads.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -41,6 +42,8 @@ class FieldHeadNames(Enum): SDF = "sdf" ALPHA = "alpha" GRADIENT = "gradient" + FEATURE = "feature" + LIDAR_RETURN_PROB = "lidar_return_prob" class FieldHead(FieldComponent): diff --git a/nerfstudio/field_components/neurad_encoding.py b/nerfstudio/field_components/neurad_encoding.py new file mode 100644 index 00000000..6e7b6d41 --- /dev/null +++ b/nerfstudio/field_components/neurad_encoding.py @@ -0,0 +1,301 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# +# 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 contextlib import nullcontext +from dataclasses import dataclass, field +from typing import Dict, Literal, Optional, Tuple, Type, overload + +import torch +import torch.nn.functional as F +from torch import Tensor, nn + +from nerfstudio.cameras.lidars import transform_points_pairwise +from nerfstudio.configs.base_config import InstantiateConfig +from nerfstudio.field_components.encodings import HashEncoding +from nerfstudio.field_components.spatial_distortions import ScaledSceneContraction +from nerfstudio.model_components.dynamic_actors import DynamicActors +from nerfstudio.utils.math import GaussiansStd +from nerfstudio.utils.poses import inverse as pose_inverse + +EPS = 1.0e-7 + + +@dataclass +class StaticSettings: + hashgrid_dim: int = 4 + """Number of dimensions of each hashgrid feature (per level).""" + num_levels: int = 8 # TODO: reduce this and/or increase res and dim + """Number of levels of the hashmap for the base mlp.""" + base_res: int = 32 + """Resolution of the base grid for the hasgrid.""" + max_res: int = 8192 + """Maximum resolution of the hashmap for the base mlp.""" + log2_hashmap_size: int = 22 + """Maximum size of the static-world hashmap (per level).""" + + +@dataclass +class ActorSettings: + flip_prob: float = 0.5 + """The probability of flipping the sign of positions and directions fed to actor networks.""" + actor_scale: float = 10.0 + """Actor scale, in meters. This is applied before scene contraction.""" + # Hashgrid settings + hashgrid_dim: int = 4 + """Number of dimensions of each hashgrid feature (per level).""" + num_levels: int = 4 + """Number of levels of the hashmap for the base mlp.""" + base_res: int = 64 + """Resolution of the base grid for the hasgrid.""" + max_res: int = 1024 + """Maximum resolution of the hashmap for the base mlp.""" + log2_hashmap_size: int = 17 + """Maximum size of the static-world hashmap (per level).""" + use_4d_hashgrid: bool = True + """Whether to use a 4D hashgrid (with actor idx as 4th dimension), or a list of hashgrids.""" + + +@dataclass +class NeuRADHashEncodingConfig(InstantiateConfig): + """Hashgrid config""" + + _target: Type = field(default_factory=lambda: NeuRADHashEncoding) + """Target class to instantiate.""" + static: StaticSettings = field(default_factory=StaticSettings) + """Static settings""" + actor: ActorSettings = field(default_factory=ActorSettings) + """Dynamic settings""" + disable_actors: bool = False + """Whether to disable actors.""" + require_actor_grad: bool = True + """Whether to propagate gradients to actor trajectories.""" + + +class NeuRADHashEncoding(nn.Module): + def __init__( + self, + config: NeuRADHashEncodingConfig, + dynamic_actors: DynamicActors, + static_scale: float, + implementation: Literal["tcnn", "torch"] = "tcnn", + ) -> None: + super().__init__() + + self.config = config + self.implementation = implementation + self.actors = dynamic_actors + + self.static_contraction = ScaledSceneContraction(order=float("inf"), scale=static_scale) + self.actor_contraction = ScaledSceneContraction(order=float("inf"), scale=config.actor.actor_scale) + + self.static_grid = HashEncoding( + implementation=implementation, + features_per_level=config.static.hashgrid_dim, + num_levels=config.static.num_levels, + min_res=config.static.base_res, + max_res=config.static.max_res, + log2_hashmap_size=config.static.log2_hashmap_size, + ) + + if config.actor.use_4d_hashgrid: + self._get_actor_features = self._get_actor_features_fast + n_grids, n_input_dims = 1, 4 + else: + self._get_actor_features = self._get_actor_features_slow + n_grids, n_input_dims = self.actors.n_actors, 3 + self.actor_grids = nn.ModuleList( + [ + HashEncoding( + implementation=implementation, + features_per_level=config.actor.hashgrid_dim, + num_levels=config.actor.num_levels, + min_res=config.actor.base_res, + max_res=config.actor.max_res, + log2_hashmap_size=config.actor.log2_hashmap_size, + n_input_dims=n_input_dims, + ) + for _ in range(n_grids) + ] + ) + + self.scene_repr_dim = self.static_grid.get_out_dim() + + def get_out_dim(self) -> int: + return self.scene_repr_dim + + def get_param_groups(self, param_groups: Dict): + """Get parameter groups.""" + param_groups["hashgrids"] += list(self.static_grid.parameters()) + list(self.actor_grids.parameters()) + + @overload + def forward(self, positions: GaussiansStd, times: Tensor, directions: None) -> Tuple[Tensor, None]: + ... + + @overload + def forward(self, positions: GaussiansStd, times: Tensor, directions: Tensor) -> Tuple[Tensor, Tensor]: + ... + + def forward( + self, + positions: GaussiansStd, + times: Tensor, + directions: Optional[Tensor] = None, + ) -> Tuple[Tensor, Optional[Tensor]]: + """Evaluates the hash grids at the provided positions. + + Args: + positions: Positions to get features for. + + Returns: + features: Hashgrid features at the provided positions. + directions: Directions, transformed to actor space if applicable, and normalized. + + """ + # Static + static_positions = self.static_contraction(positions) + static_features = self._get_static_features(static_positions) + static_features = static_features.to(positions.dtype) + out_shape = (*times[..., 0].shape, self.scene_repr_dim) + features = static_features.reshape(out_shape) + + # Actors + with torch.no_grad() if not self.config.require_actor_grad else nullcontext(): + indices, actor_positions, directions = self._split_static_vs_actors(positions, times, directions) + ray_idx, sample_idx, actor_idx = indices + if actor_positions is None or actor_idx.shape[0] == 0: + return features.view(-1, features.shape[-1]), directions + actor_positions = self.actor_contraction(actor_positions) + + actor_hashgrid_idx = self.actors.actor_to_id[actor_idx] + actor_features = self._get_actor_features(actor_positions, actor_hashgrid_idx) + padded_actor_features = F.pad(actor_features, (0, self.scene_repr_dim - actor_features.shape[-1])) + features[ray_idx, sample_idx] = padded_actor_features + + return features.view(-1, features.shape[-1]), directions + + def _split_static_vs_actors(self, positions: GaussiansStd, times: Tensor, directions: Optional[Tensor]): + if self.config.disable_actors or self.actors.n_actors == 0: + # # haxx to disable actors + return (torch.empty(0), torch.empty(0), torch.empty(0)), None, directions + + boxes2world, valid = self.actors.get_boxes2world(times[:, 0].squeeze(-1), flatten=False) + world2boxes = pose_inverse(boxes2world) + + ray_idx, sample_idx, actor_idx = self._get_actor_indices(positions.mean, boxes2world, valid, world2boxes) + + w2b = world2boxes[ray_idx, actor_idx] + pos = positions.mean[ray_idx, sample_idx] + pos = transform_points_pairwise(pos, w2b.unsqueeze(-3)) + + # Transform directions and/or positions to actor space + if directions is not None: + directions = directions.clone() + dirs = directions[ray_idx, sample_idx] + dirs = transform_points_pairwise(dirs, w2b, with_translation=False).squeeze(1) + dirs = dirs / (torch.linalg.norm(dirs, dim=-1, keepdim=True) + EPS) + directions[ray_idx, sample_idx] = dirs + + # Apply random flip if applicable + if self.training and self.config.actor.flip_prob > EPS: + # -1 with prob flip_prob, else 1. Per ray. + ray_flip = torch.bernoulli(torch.full_like(world2boxes[:, 0, 0, 0], self.config.actor.flip_prob)) * -2 + 1 + flip = torch.ones_like(pos[..., 0:1, :]) + flip[..., 0] = ray_flip[ray_idx].unsqueeze(-1) + pos = pos * flip + if directions is not None: + directions[ray_idx, sample_idx, 0] = directions[ray_idx, sample_idx, 0] * flip[..., 0].squeeze(-1) + + dynamic_positions = GaussiansStd(pos, positions.std[ray_idx, sample_idx]) + + return (ray_idx, sample_idx, actor_idx), dynamic_positions, directions + + @torch.no_grad() + def _get_actor_indices(self, pos, boxes2world, valid, world2boxes): + # Finds all sample-actor pairs that are close enough (can be multiple per sample) + actor_radii = (actor_bounds := self.actors.actor_bounds()).norm(dim=-1) + sample_mean_pos = pos.mean(-2) + + # Check if actor is close to ray (defined by first and last sample) + point_on_line = sample_mean_pos[:, 0, :] # n_rays x 3 + line_direction = sample_mean_pos[:, -1, :] - point_on_line + line_direction = line_direction / (torch.linalg.norm(line_direction, dim=-1, keepdim=True) + EPS) + line_direction = line_direction.unsqueeze(-2) # n_rays x 1 x 3 + vec_from_line = boxes2world[..., :3, 3] - point_on_line.unsqueeze(-2) # n_rays x n_actors x 3 + cross_prod = torch.cross(vec_from_line, line_direction, dim=-1) # n_rays x n_actors x 3 + distance = torch.linalg.norm(cross_prod, dim=-1) # n_rays x n_actors + close_to_line_and_valid_mask = (distance < actor_radii) & valid # n_rays x n_actors + ray_idx, actor_idx = close_to_line_and_valid_mask.nonzero(as_tuple=False).T # N x 2 (ray_idx, actor_idx) + + sample_pos = sample_mean_pos[ray_idx] # N x n_samples x 3 + actor_pos = boxes2world[ray_idx, actor_idx, :3, 3].unsqueeze(-2).repeat(1, sample_pos.shape[-2], 1) # N x 3 + distance = torch.linalg.norm(sample_pos - actor_pos, dim=-1) # N x n_samples + within_range_mask = distance < actor_radii[actor_idx].unsqueeze(-1) # N x n_samples + within_range_idx = within_range_mask.nonzero(as_tuple=False) # N x 2 (ray_idx, sample_idx) + indices = torch.stack( + [ray_idx[within_range_idx[:, 0]], within_range_idx[:, 1], actor_idx[within_range_idx[:, 0]]], dim=-1 + ) + # Check each selected pair to see if it is inside the box + selected_smp = sample_mean_pos[indices[:, 0], indices[:, 1]] + selected_w2b = world2boxes[indices[:, 0], indices[:, 2]] + pos_in_box = transform_points_pairwise(selected_smp, selected_w2b) + inside_box = (pos_in_box.abs() < actor_bounds[indices[:, 2]]).all(dim=-1) + indices = indices[inside_box] + # # remove dupliacate ray-sample pairs (can happen if multiple actors are close to the same ray-sample pair) + # uniques, inverse_indices = torch.unique(indices[:, :2], dim=0, return_inverse=True, sorted=False) + # if uniques.shape[0] != indices.shape[0]: + # first_occurrences = torch.zeros_like(inverse_indices, dtype=torch.bool) + # first_occurrences.scatter_(0, inverse_indices, 1) + # indices = indices[first_occurrences] + # NOTE: here we return potential duplicates, and will "randomly" discard them during feature merging + return indices[:, 0], indices[:, 1], indices[:, 2] + + def _get_static_features(self, positions: GaussiansStd) -> Tensor: + features = self.static_grid(positions.mean.view(-1, 3)) + features = self._rescale_grid_features(features, positions, self.static_grid) + return features + + def _get_actor_features_fast(self, positions: GaussiansStd, actor_indices: Tensor) -> Tensor: + # Create 4D query positions + spatial_pos = positions.mean.view(-1, 3) + actor_indices = actor_indices.unsqueeze(-1).repeat(1, positions.mean.shape[-2]) + actoridx_pos = actor_indices / self.actors.n_actors + pos = torch.cat([spatial_pos, actoridx_pos.view(-1, 1)], dim=-1) + + actor_grid: HashEncoding = self.actor_grids[0] + features = actor_grid(pos) + features = self._rescale_grid_features(features, positions, actor_grid) + + return features + + def _get_actor_features_slow(self, positions: GaussiansStd, actor_indices: Tensor) -> Tensor: + feats = None + for i_actor in actor_indices.unique(): + grid: HashEncoding = self.actor_grids[i_actor] + mask = (actor_indices == i_actor).view(-1) + actor_pos = positions[mask] + pos = actor_pos.mean.view(-1, 3) if isinstance(actor_pos, GaussiansStd) else actor_pos + actor_feats = grid(pos) + actor_feats = self._rescale_grid_features(actor_feats, actor_pos, grid) + if feats is None: + feats = torch.zeros((*mask.shape, actor_feats.shape[-1]), device=pos.device, dtype=actor_feats.dtype) + feats[mask] = actor_feats + return feats + + def _rescale_grid_features(self, grid_features: Tensor, x: GaussiansStd, hash_encoding: HashEncoding) -> Tensor: + prefix_shape = list(x.mean.shape[:-1]) + # Reshape into [..., n_samples, n_levels, n_features_per_level] + grid_feats = grid_features.view(prefix_shape + [hash_encoding.num_levels * hash_encoding.features_per_level]) + grid_feats = grid_feats.unflatten(-1, (hash_encoding.num_levels, hash_encoding.features_per_level)) + weights = 1 / (hash_encoding.scalings.squeeze(-1) * 2 * x.std).clamp_min(1.0) + grid_feats = (grid_feats * weights[..., None]).mean(dim=-3).flatten(-2, -1) + return grid_feats diff --git a/nerfstudio/field_components/spatial_distortions.py b/nerfstudio/field_components/spatial_distortions.py index 5e9aeab8..c1aaad85 100644 --- a/nerfstudio/field_components/spatial_distortions.py +++ b/nerfstudio/field_components/spatial_distortions.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -15,14 +16,14 @@ """Space distortions.""" import abc -from typing import Optional, Union +from typing import Optional, Union, overload import torch from functorch import jacrev, vmap from jaxtyping import Float from torch import Tensor, nn -from nerfstudio.utils.math import Gaussians +from nerfstudio.utils.math import Gaussians, GaussiansStd class SpatialDistortion(nn.Module): @@ -63,7 +64,19 @@ def __init__(self, order: Optional[Union[float, int]] = None) -> None: super().__init__() self.order = order - def forward(self, positions): + @overload + def forward(self, positions: Gaussians) -> Gaussians: + ... + + @overload + def forward(self, positions: GaussiansStd) -> GaussiansStd: + ... + + @overload + def forward(self, positions: Float[Tensor, "*bs 3"]) -> Float[Tensor, "*bs 3"]: + ... + + def forward(self, positions: Union[Gaussians, GaussiansStd, Tensor]) -> Union[Gaussians, GaussiansStd, Tensor]: def contract(x): mag = torch.linalg.norm(x, ord=self.order, dim=-1)[..., None] return torch.where(mag < 1, x, (2 - (1 / mag)) * (x / mag)) @@ -87,4 +100,42 @@ def contract_gauss(x): return Gaussians(mean=means, cov=cov) + elif isinstance(positions, GaussiansStd): + # ZipNerf-style linearized contraction + means = positions.mean.clone() + std = positions.std.clone() + mag = torch.linalg.norm(means, ord=self.order, dim=-1)[..., None] + mask = mag < 1 + clamped_mag = mag.clamp_min(1.0) + means = torch.where(mask, means, (2 - (1 / clamped_mag)) * (means / clamped_mag)) + std_scaling = ((2 * clamped_mag - 1).pow(1 / 3) / clamped_mag) ** 2 + std = torch.where(mask, std, std * std_scaling) + return GaussiansStd(mean=means, std=std) + return contract(positions) + + +class ScaledSceneContraction(SceneContraction): + """This is a SceneContraction with a scale factor applied before the contraction.""" + + def __init__(self, order: Optional[Union[float, int]] = None, scale: float = 1.0, normalize: bool = True) -> None: + super().__init__(order=order) + self.scale = scale + self.normalize = normalize + + def forward(self, positions): + if isinstance(positions, Gaussians): + positions = super().forward(Gaussians(mean=positions.mean / self.scale, cov=positions.cov / self.scale**2)) + if self.normalize: + positions.mean = (positions.mean + 2.0) / 4.0 + positions.cov = positions.cov / 16.0 + elif isinstance(positions, GaussiansStd): + positions = super().forward(GaussiansStd(mean=positions.mean / self.scale, std=positions.std / self.scale)) + if self.normalize: + positions.mean = (positions.mean + 2.0) / 4.0 + positions.std = positions.std / 4.0 + else: + positions = super().forward(positions / self.scale) + if self.normalize: + positions = (positions + 2.0) / 4.0 + return positions diff --git a/nerfstudio/fields/density_fields.py b/nerfstudio/fields/density_fields.py index d4f6f28f..b08892bf 100644 --- a/nerfstudio/fields/density_fields.py +++ b/nerfstudio/fields/density_fields.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -93,11 +94,12 @@ def __init__( self.linear = torch.nn.Linear(self.encoding.get_out_dim(), 1) def get_density(self, ray_samples: RaySamples) -> Tuple[Tensor, None]: + # Normalize positions within box to [0, 1], points outside box are outside range + positions = SceneBox.get_normalized_positions(ray_samples.frustums.get_positions(), self.aabb) if self.spatial_distortion is not None: - positions = self.spatial_distortion(ray_samples.frustums.get_positions()) - positions = (positions + 2.0) / 4.0 - else: - positions = SceneBox.get_normalized_positions(ray_samples.frustums.get_positions(), self.aabb) + positions = positions * 2.0 - 1.0 # inside box from [0, 1] -> [-1, 1], outside [-inf, inf] + positions = self.spatial_distortion(positions) # [-inf, inf] -> [-2, 2] + positions = (positions + 2.0) / 4.0 # [-2, 2] -> [0, 1] # Make sure the tcnn gets inputs between 0 and 1. selector = ((positions > 0.0) & (positions < 1.0)).all(dim=-1) positions = positions * selector[..., None] diff --git a/nerfstudio/fields/generfacto_field.py b/nerfstudio/fields/generfacto_field.py deleted file mode 100644 index ee31bcb0..00000000 --- a/nerfstudio/fields/generfacto_field.py +++ /dev/null @@ -1,159 +0,0 @@ -# Copyright 2022 The Nerfstudio Team. All rights reserved. -# -# 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. - -""" -Field for Generfacto model -""" - - -from typing import Dict, Literal, Optional, Tuple - -import numpy as np -import torch -from torch import Tensor, nn -from torch.nn.parameter import Parameter - -from nerfstudio.cameras.rays import RayBundle, RaySamples -from nerfstudio.data.scene_box import SceneBox -from nerfstudio.field_components.activations import trunc_exp -from nerfstudio.field_components.encodings import HashEncoding, SHEncoding -from nerfstudio.field_components.field_heads import FieldHeadNames -from nerfstudio.field_components.mlp import MLP -from nerfstudio.fields.base_field import Field, get_normalized_directions - - -class GenerfactoField(Field): - """Generfacto Field that uses TCNN - - Args: - aabb: parameters of scene aabb bounds - num_layers: number of hidden layers - hidden_dim: dimension of hidden layers - geo_feat_dim: output geo feat dimensions - num_levels: number of levels of the hashmap for the base mlp - max_res: maximum resolution of the hashmap for the base mlp - log2_hashmap_size: size of the hashmap for the base mlp - num_layers_color: number of hidden layers for color network - hidden_dim_color: dimension of hidden layers for color network - """ - - def __init__( - self, - aabb: Tensor, - num_layers: int = 2, - hidden_dim: int = 64, - geo_feat_dim: int = 15, - num_levels: int = 16, - max_res: int = 256, - log2_hashmap_size: int = 19, - num_layers_color: int = 3, - hidden_dim_color: int = 64, - implementation: Literal["tcnn", "torch"] = "tcnn", - ) -> None: - super().__init__() - - self.aabb = Parameter(aabb, requires_grad=False) - self.geo_feat_dim = geo_feat_dim - - base_res = 16 - features_per_level = 2 - np.exp((np.log(max_res) - np.log(base_res)) / (num_levels - 1)) - - self.direction_encoding = SHEncoding( - levels=4, - implementation=implementation, - ) - - encoder = HashEncoding( - num_levels=num_levels, - min_res=base_res, - max_res=max_res, - log2_hashmap_size=log2_hashmap_size, - features_per_level=features_per_level, - implementation=implementation, - ) - network = MLP( - in_dim=encoder.get_out_dim(), - num_layers=num_layers, - layer_width=hidden_dim, - out_dim=1 + self.geo_feat_dim, - activation=nn.ReLU(), - out_activation=None, - implementation=implementation, - ) - self.mlp_base = torch.nn.Sequential(encoder, network) - - self.mlp_background_color = MLP( - in_dim=self.direction_encoding.get_out_dim(), - num_layers=2, - layer_width=32, - out_dim=3, - activation=nn.ReLU(), - out_activation=nn.Sigmoid(), - implementation=implementation, - ) - - self.mlp_head = MLP( - in_dim=self.geo_feat_dim, - num_layers=num_layers_color, - layer_width=hidden_dim_color, - out_dim=3, - activation=nn.ReLU(), - out_activation=nn.Sigmoid(), - implementation=implementation, - ) - - def get_density(self, ray_samples: RaySamples) -> Tuple[Tensor, Tensor]: - """Computes and returns the densities.""" - positions = SceneBox.get_normalized_positions(ray_samples.frustums.get_positions(), self.aabb) - self._sample_locations = positions - if not self._sample_locations.requires_grad: - self._sample_locations.requires_grad = True - positions_flat = positions.view(-1, 3) - h = self.mlp_base(positions_flat).view(*ray_samples.frustums.shape, -1) - density_before_activation, base_mlp_out = torch.split(h, [1, self.geo_feat_dim], dim=-1) - self._density_before_activation = density_before_activation - - # Rectifying the density with an exponential is much more stable than a ReLU or - # softplus, because it enables high post-activation (float32) density outputs - # from smaller internal (float16) parameters. - density = trunc_exp(density_before_activation.to(positions)) - return density, base_mlp_out - - def get_background_rgb(self, ray_bundle: RayBundle) -> Tensor: - """Predicts background colors at infinity.""" - directions = get_normalized_directions(ray_bundle.directions) - - outputs_shape = ray_bundle.directions.shape[:-1] - directions_flat = self.direction_encoding(directions.view(-1, 3)) - background_rgb = self.mlp_background_color(directions_flat).view(*outputs_shape, -1).to(directions) - - return background_rgb - - def get_outputs( - self, ray_samples: RaySamples, density_embedding: Optional[Tensor] = None - ) -> Dict[FieldHeadNames, Tensor]: - assert density_embedding is not None - outputs = {} - - directions = get_normalized_directions(ray_samples.frustums.directions) - - outputs_shape = ray_samples.frustums.directions.shape[:-1] - - h = density_embedding.view(-1, self.geo_feat_dim) - - rgb = self.mlp_head(h).view(*outputs_shape, -1).to(directions) - outputs.update({FieldHeadNames.RGB: rgb}) - - return outputs diff --git a/nerfstudio/fields/nerfacto_field.py b/nerfstudio/fields/nerfacto_field.py index 52a4de4b..06137f77 100644 --- a/nerfstudio/fields/nerfacto_field.py +++ b/nerfstudio/fields/nerfacto_field.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -203,12 +204,12 @@ def __init__( def get_density(self, ray_samples: RaySamples) -> Tuple[Tensor, Tensor]: """Computes and returns the densities.""" + # Normalize positions within box to [0, 1], points outside box are outside range + positions = SceneBox.get_normalized_positions(ray_samples.frustums.get_positions(), self.aabb) if self.spatial_distortion is not None: - positions = ray_samples.frustums.get_positions() - positions = self.spatial_distortion(positions) - positions = (positions + 2.0) / 4.0 - else: - positions = SceneBox.get_normalized_positions(ray_samples.frustums.get_positions(), self.aabb) + positions = positions * 2.0 - 1.0 # inside box from [0, 1] -> [-1, 1], outside [-inf, inf] + positions = self.spatial_distortion(positions) # [-inf, inf] -> [-2, 2] + positions = (positions + 2.0) / 4.0 # [-2, 2] -> [0, 1] # Make sure the tcnn gets inputs between 0 and 1. selector = ((positions > 0.0) & (positions < 1.0)).all(dim=-1) positions = positions * selector[..., None] diff --git a/nerfstudio/fields/nerfw_field.py b/nerfstudio/fields/nerfw_field.py deleted file mode 100644 index 1a5a16cd..00000000 --- a/nerfstudio/fields/nerfw_field.py +++ /dev/null @@ -1,158 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -"""Fields for nerf-w""" - -from typing import Dict, Optional, Tuple - -import torch -from jaxtyping import Float -from torch import Tensor, nn - -from nerfstudio.cameras.rays import RaySamples -from nerfstudio.field_components.embedding import Embedding -from nerfstudio.field_components.encodings import Encoding, Identity -from nerfstudio.field_components.field_heads import ( - DensityFieldHead, - FieldHeadNames, - RGBFieldHead, - TransientDensityFieldHead, - TransientRGBFieldHead, - UncertaintyFieldHead, -) -from nerfstudio.field_components.mlp import MLP -from nerfstudio.fields.base_field import Field - - -class VanillaNerfWField(Field): - """The NeRF-W field which has appearance and transient conditioning. - - Args: - num_images: How many images exist in the dataset. - position_encoding: Position encoder. - direction_encoding: Direction encoder. - base_mlp_num_layers: Number of layers for base MLP. - base_mlp_layer_width: Width of base MLP layers. - head_mlp_num_layers: Number of layer for output head MLP. - head_mlp_layer_width: Width of output head MLP layers. - appearance_embedding_dim:: Dimension of appearance embedding. - transient_embedding_dim:: Dimension of transient embedding. - skip_connections: Where to add skip connection in base MLP. - """ - - def __init__( - self, - num_images: int, - position_encoding: Encoding = Identity(in_dim=3), - direction_encoding: Encoding = Identity(in_dim=3), - base_mlp_num_layers: int = 8, - base_mlp_layer_width: int = 256, - head_mlp_num_layers: int = 2, - head_mlp_layer_width: int = 128, - appearance_embedding_dim: int = 48, - transient_embedding_dim: int = 16, - skip_connections: Tuple[int] = (4,), - ) -> None: - super().__init__() - self.num_images = num_images - self.position_encoding = position_encoding - self.direction_encoding = direction_encoding - self.base_mlp_num_layers = base_mlp_num_layers - self.base_mlp_layer_width = base_mlp_layer_width - self.head_mlp_num_layers = head_mlp_num_layers - self.head_mlp_layer_width = head_mlp_layer_width - self.appearance_embedding_dim = appearance_embedding_dim - self.transient_embedding_dim = transient_embedding_dim - - if self.appearance_embedding_dim > 0: - self.embedding_appearance = Embedding(self.num_images, self.appearance_embedding_dim) - else: - self.embedding_appearance = None - self.embedding_transient = Embedding(self.num_images, self.transient_embedding_dim) - - self.mlp_base = MLP( - in_dim=self.position_encoding.get_out_dim(), - num_layers=base_mlp_num_layers, - layer_width=base_mlp_layer_width, - skip_connections=skip_connections, - out_activation=nn.ReLU(), - ) - self.mlp_transient = MLP( - in_dim=self.mlp_base.get_out_dim() + self.embedding_transient.get_out_dim(), - out_dim=base_mlp_layer_width // 2, - num_layers=4, - layer_width=base_mlp_layer_width, - activation=nn.ReLU(), - out_activation=nn.ReLU(), - ) - self.mlp_head = MLP( - in_dim=self.mlp_base.get_out_dim() - + self.direction_encoding.get_out_dim() - + (self.embedding_appearance.get_out_dim() if self.embedding_appearance is not None else 0), - num_layers=head_mlp_num_layers, - layer_width=head_mlp_layer_width, - out_activation=nn.ReLU(), - ) - - self.field_head_density = DensityFieldHead(in_dim=self.mlp_base.get_out_dim()) - self.field_head_rgb = RGBFieldHead(in_dim=self.mlp_head.get_out_dim()) - - self.field_head_transient_uncertainty = UncertaintyFieldHead(in_dim=self.mlp_transient.get_out_dim()) - self.field_head_transient_rgb = TransientRGBFieldHead(in_dim=self.mlp_transient.get_out_dim()) - self.field_head_transient_density = TransientDensityFieldHead(in_dim=self.mlp_transient.get_out_dim()) - - def get_density(self, ray_samples: RaySamples) -> Tuple[Tensor, Tensor]: - """Computes and returns the densities.""" - encoded_xyz = self.position_encoding(ray_samples.frustums.get_positions()) - encoded_xyz = self.position_encoding(ray_samples.frustums.get_positions()) - base_mlp_out = self.mlp_base(encoded_xyz) - density = self.field_head_density(base_mlp_out) - return density, base_mlp_out - - def get_outputs( - self, ray_samples: RaySamples, density_embedding: Optional[Float[Tensor, "*batch embedding_size"]] = None - ) -> Dict[FieldHeadNames, Tensor]: - """Returns the outputs of the NeRF-W field. - - Args: - ray_samples: Ray samples. - density_embedding: Density embedding. - - Returns: - Outputs of the NeRF-W field. - """ - outputs = {} - encoded_dir = self.direction_encoding(ray_samples.frustums.directions) - if ray_samples.camera_indices is None: - raise AttributeError("Camera indices are not provided.") - camera_indices = ray_samples.camera_indices.squeeze().to(ray_samples.frustums.origins.device) - mlp_in = [density_embedding, encoded_dir] - if self.embedding_appearance is not None: - embedded_appearance = self.embedding_appearance(camera_indices) - mlp_in.append(embedded_appearance) - mlp_head_out = self.mlp_head(torch.cat(mlp_in, dim=-1)) - outputs[self.field_head_rgb.field_head_name] = self.field_head_rgb(mlp_head_out) # static rgb - embedded_transient = self.embedding_transient(camera_indices) - transient_mlp_in = torch.cat([density_embedding, embedded_transient], dim=-1) # type: ignore - transient_mlp_out = self.mlp_transient(transient_mlp_in) - outputs[self.field_head_transient_uncertainty.field_head_name] = self.field_head_transient_uncertainty( - transient_mlp_out - ) # uncertainty - outputs[self.field_head_transient_rgb.field_head_name] = self.field_head_transient_rgb( - transient_mlp_out - ) # transient rgb - outputs[self.field_head_transient_density.field_head_name] = self.field_head_transient_density( - transient_mlp_out - ) # transient density - return outputs diff --git a/nerfstudio/fields/neurad_field.py b/nerfstudio/fields/neurad_field.py new file mode 100644 index 00000000..7dab8bfc --- /dev/null +++ b/nerfstudio/fields/neurad_field.py @@ -0,0 +1,216 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# +# 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. + +""" +Field for compound nerf model, adds scene contraction and image embeddings to instant ngp +""" + +from dataclasses import dataclass, field +from typing import Dict, Literal, Optional, Tuple, Type + +import torch +from torch import Tensor, nn + +from nerfstudio.cameras.rays import RaySamples +from nerfstudio.configs.base_config import InstantiateConfig +from nerfstudio.field_components.activations import trunc_exp +from nerfstudio.field_components.encodings import SHEncoding +from nerfstudio.field_components.field_heads import FieldHeadNames +from nerfstudio.field_components.mlp import MLP +from nerfstudio.field_components.neurad_encoding import ( + ActorSettings, + NeuRADHashEncoding, + NeuRADHashEncodingConfig, + StaticSettings, +) +from nerfstudio.fields.base_field import Field, get_normalized_directions +from nerfstudio.model_components.dynamic_actors import DynamicActors +from nerfstudio.model_components.utils import SigmoidDensity + +EPS = 1.0e-7 + + +@dataclass +class NeuRADFieldConfig(InstantiateConfig): + _target: Type = field(default_factory=lambda: NeuRADField) + + grid: NeuRADHashEncodingConfig = field( + default_factory=lambda: NeuRADHashEncodingConfig( + require_actor_grad=True, + actor=ActorSettings(flip_prob=0.25), + ) + ) + """Hashgrid config""" + + geo_hidden_dim: int = 32 + """Dimensionality of the hidden units in the first mlp, describing geometry.""" + geo_num_layers: int = 2 + """Number of layers in the first, geometry, mlp.""" + nff_hidden_dim: int = 32 + """Dimensionality of the hidden units in the nff mlp.""" + nff_num_layers: int = 3 + """Number of layers in the second mlp.""" + nff_out_dim: int = 32 + """Dimensionality of the neural feature field output.""" + + num_multisamples: int = 1 + """Number of multisamples to use for the fast gaussian approximation.""" + + use_sdf: bool = True + """Whether to learn an SDF or a more 'vanilla' density-field.""" + sdf_beta: float = 20.0 # TODO: tune this (maybe 20.0 like in NeuSim) + """Slope of the sigmoid function used to convert SDF to density.""" + learnable_beta: bool = True + """Whether to learn the beta (sdf to density) parameter or not.""" + + +class NeuRADField(Field): + """NeuRAD field.""" + + def __init__( + self, + config: NeuRADFieldConfig, + actors: DynamicActors, + static_scale: float, + implementation: Literal["tcnn", "torch"] = "tcnn", + ) -> None: + super().__init__() + self.config = config + self.implementation = implementation + + self.hashgrid: NeuRADHashEncoding = self.config.grid.setup( + dynamic_actors=actors, + static_scale=static_scale, + implementation=implementation, + ) + self.geo_feat_dim = self.config.nff_out_dim + self.mlp_geo = MLP( + in_dim=self.hashgrid.get_out_dim(), + num_layers=self.config.geo_num_layers, + layer_width=self.config.geo_hidden_dim, + out_dim=self.geo_feat_dim + 1, + activation=nn.ReLU(), + out_activation=None, + implementation=implementation, + ) + self.direction_encoding = SHEncoding(levels=4, implementation=implementation) + direction_dim = self.direction_encoding.get_out_dim() + self.mlp_feature = MLP( + in_dim=direction_dim + self.geo_feat_dim, + num_layers=self.config.nff_num_layers, + layer_width=self.config.nff_hidden_dim, + out_dim=self.config.nff_out_dim, + activation=nn.ReLU(), + out_activation=None, + implementation=implementation, + ) + if self.config.use_sdf: + self.sdf_to_density = SigmoidDensity(self.config.sdf_beta, learnable_beta=self.config.learnable_beta) + + def get_param_groups(self, param_groups: Dict): + """Get camera optimizer parameters""" + self.hashgrid.get_param_groups(param_groups) + param_groups["fields"] += list(self.mlp_geo.parameters()) + list(self.mlp_feature.parameters()) + if self.config.use_sdf: + param_groups["fields"] += list(self.sdf_to_density.parameters()) + + def forward(self, ray_samples: RaySamples, compute_normals: bool = False) -> Dict[FieldHeadNames, Tensor]: + """Evaluates the field at points along the ray. + + Args: + ray_samples: Samples to evaluate field on. + """ + gaussians = ray_samples.frustums.get_fast_isotropic_gaussian(self.config.num_multisamples) + features, directions = self.hashgrid(gaussians, ray_samples.times, ray_samples.frustums.directions) + + # First output is the geometry, second is the pass-along vector. + geo_out, geo_embedding = torch.split(self.mlp_geo(features), [1, self.geo_feat_dim], dim=-1) + geo_out = geo_out.view(*ray_samples.shape, 1) + direction_embedding = self.direction_encoding(get_normalized_directions(directions).view(-1, 3)) + feature = geo_embedding + self.mlp_feature(torch.cat([geo_embedding, direction_embedding], dim=-1)) + feature = feature.view(*ray_samples.shape, self.config.nff_out_dim) + + outputs = {FieldHeadNames.FEATURE: feature} + if self.config.use_sdf: + signed_distance = geo_out + outputs[FieldHeadNames.SDF] = signed_distance + outputs[FieldHeadNames.ALPHA] = self.sdf_to_density(signed_distance) + else: + outputs[FieldHeadNames.DENSITY] = trunc_exp(geo_out) + + return outputs + + +@dataclass +class NeuRADProposalFieldConfig(InstantiateConfig): + """Configuration of the NeuRAD proposal field.""" + + _target: Type = field(default_factory=lambda: NeuRADProposalField) + """Target class for instantiation.""" + grid: NeuRADHashEncodingConfig = field( + default_factory=lambda: NeuRADHashEncodingConfig( + static=StaticSettings( + log2_hashmap_size=20, + num_levels=6, + max_res=4096, + base_res=128, + hashgrid_dim=1, + ), + actor=ActorSettings( + log2_hashmap_size=15, + num_levels=4, + base_res=64, + max_res=1024, + hashgrid_dim=1, + ), + require_actor_grad=False, # No need for trajectory gradients in proposal field + ) + ) + """Hashgrid config""" + hidden_dim: int = 16 + """Dimensionality of the hidden units in the density mlp.""" + + +class NeuRADProposalField(Field): + """Simplified NeuRAD field, for use as a proposal field.""" + + def __init__( + self, + config: NeuRADProposalFieldConfig, + actors: DynamicActors, + static_scale: float, + implementation: Literal["tcnn", "torch"] = "tcnn", + ) -> None: + super().__init__() + self.config = config + self.implementation = implementation + self.hashgrid: NeuRADHashEncoding = self.config.grid.setup( + dynamic_actors=actors, static_scale=static_scale, implementation=implementation + ) + self.density_decoder = nn.Linear(self.hashgrid.get_out_dim(), 1, bias=False) + + def get_param_groups(self, param_groups: Dict): + """Get camera optimizer parameters""" + self.hashgrid.get_param_groups(param_groups) + param_groups["fields"] += list(self.density_decoder.parameters()) + + def get_density(self, ray_samples: RaySamples) -> Tuple[Tensor, None]: + pos = ray_samples.frustums.get_fast_isotropic_gaussian(num_multisamples=1) + density, _ = self.hashgrid(pos, ray_samples.times, None) + density = self.density_decoder(density) + density = trunc_exp(density.to(pos.dtype)).view(*ray_samples.shape, 1) + return density, None + + def get_outputs(self, ray_samples: RaySamples, density_embedding: Optional[Tensor] = None) -> dict: + return {} diff --git a/nerfstudio/fields/sdf_field.py b/nerfstudio/fields/sdf_field.py deleted file mode 100644 index ed936d4b..00000000 --- a/nerfstudio/fields/sdf_field.py +++ /dev/null @@ -1,459 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -""" -Field for SDF based model, rather then estimating density to generate a surface, -a signed distance function (SDF) for surface representation is used to help with extracting high fidelity surfaces -""" - -from dataclasses import dataclass, field -from typing import Dict, Literal, Optional, Type - -import numpy as np -import torch -import torch.nn.functional as F -from jaxtyping import Float -from torch import Tensor, nn -from torch.nn.parameter import Parameter - -from nerfstudio.cameras.rays import RaySamples -from nerfstudio.field_components.embedding import Embedding -from nerfstudio.field_components.encodings import NeRFEncoding -from nerfstudio.field_components.field_heads import FieldHeadNames -from nerfstudio.field_components.spatial_distortions import SpatialDistortion -from nerfstudio.fields.base_field import Field, FieldConfig -from nerfstudio.utils.external import tcnn - - -class LearnedVariance(nn.Module): - """Variance network in NeuS - - Args: - init_val: initial value in NeuS variance network - """ - - variance: Tensor - - def __init__(self, init_val): - super().__init__() - self.register_parameter("variance", nn.Parameter(init_val * torch.ones(1), requires_grad=True)) - - def forward(self, x: Float[Tensor, "1"]) -> Float[Tensor, "1"]: - """Returns current variance value""" - return torch.ones([len(x), 1], device=x.device) * torch.exp(self.variance * 10.0) - - def get_variance(self) -> Float[Tensor, "1"]: - """return current variance value""" - return torch.exp(self.variance * 10.0).clip(1e-6, 1e6) - - -@dataclass -class SDFFieldConfig(FieldConfig): - """SDF Field Config""" - - _target: Type = field(default_factory=lambda: SDFField) - num_layers: int = 8 - """Number of layers for geometric network""" - hidden_dim: int = 256 - """Number of hidden dimension of geometric network""" - geo_feat_dim: int = 256 - """Dimension of geometric feature""" - num_layers_color: int = 4 - """Number of layers for color network""" - hidden_dim_color: int = 256 - """Number of hidden dimension of color network""" - appearance_embedding_dim: int = 32 - """Dimension of appearance embedding""" - use_appearance_embedding: bool = False - """Whether to use appearance embedding""" - bias: float = 0.8 - """Sphere size of geometric initialization""" - geometric_init: bool = True - """Whether to use geometric initialization""" - inside_outside: bool = True - """Whether to revert signed distance value, set to True for indoor scene""" - weight_norm: bool = True - """Whether to use weight norm for linear layer""" - use_grid_feature: bool = False - """Whether to use multi-resolution feature grids""" - divide_factor: float = 2.0 - """Normalization factor for multi-resolution grids""" - beta_init: float = 0.1 - """Init learnable beta value for transformation of sdf to density""" - encoding_type: Literal["hash", "periodic", "tensorf_vm"] = "hash" - num_levels: int = 16 - """Number of encoding levels""" - max_res: int = 2048 - """Maximum resolution of the encoding""" - base_res: int = 16 - """Base resolution of the encoding""" - log2_hashmap_size: int = 19 - """Size of the hash map""" - features_per_level: int = 2 - """Number of features per encoding level""" - use_hash: bool = True - """Whether to use hash encoding""" - smoothstep: bool = True - """Whether to use the smoothstep function""" - - -class SDFField(Field): - """ - A field for Signed Distance Functions (SDF). - - Args: - config: The configuration for the SDF field. - aabb: An axis-aligned bounding box for the SDF field. - num_images: The number of images for embedding appearance. - use_average_appearance_embedding: Whether to use average appearance embedding. Defaults to False. - spatial_distortion: The spatial distortion. Defaults to None. - """ - - config: SDFFieldConfig - - def __init__( - self, - config: SDFFieldConfig, - aabb: Float[Tensor, "2 3"], - num_images: int, - use_average_appearance_embedding: bool = False, - spatial_distortion: Optional[SpatialDistortion] = None, - ) -> None: - super().__init__() - self.config = config - - self.aabb = Parameter(aabb, requires_grad=False) - - self.spatial_distortion = spatial_distortion - self.num_images = num_images - - self.embedding_appearance = Embedding(self.num_images, self.config.appearance_embedding_dim) - self.use_average_appearance_embedding = use_average_appearance_embedding - self.use_grid_feature = self.config.use_grid_feature - self.divide_factor = self.config.divide_factor - - growth_factor = np.exp((np.log(config.max_res) - np.log(config.base_res)) / (config.num_levels - 1)) - - if self.config.encoding_type == "hash": - # feature encoding - self.encoding = tcnn.Encoding( - n_input_dims=3, - encoding_config={ - "otype": "HashGrid" if config.use_hash else "DenseGrid", - "n_levels": config.num_levels, - "n_features_per_level": config.features_per_level, - "log2_hashmap_size": config.log2_hashmap_size, - "base_resolution": config.base_res, - "per_level_scale": growth_factor, - "interpolation": "Smoothstep" if config.smoothstep else "Linear", - }, - ) - - # we concat inputs position ourselves - self.position_encoding = NeRFEncoding( - in_dim=3, num_frequencies=6, min_freq_exp=0.0, max_freq_exp=5.0, include_input=False - ) - - self.direction_encoding = NeRFEncoding( - in_dim=3, num_frequencies=4, min_freq_exp=0.0, max_freq_exp=3.0, include_input=True - ) - - # initialize geometric network - self.initialize_geo_layers() - - # deviation_network to compute alpha from sdf from NeuS - self.deviation_network = LearnedVariance(init_val=self.config.beta_init) - - # color network - dims = [self.config.hidden_dim_color for _ in range(self.config.num_layers_color)] - # point, view_direction, normal, feature, embedding - in_dim = ( - 3 - + self.direction_encoding.get_out_dim() - + 3 - + self.config.geo_feat_dim - + self.embedding_appearance.get_out_dim() - ) - dims = [in_dim] + dims + [3] - self.num_layers_color = len(dims) - - for layer in range(0, self.num_layers_color - 1): - out_dim = dims[layer + 1] - lin = nn.Linear(dims[layer], out_dim) - - if self.config.weight_norm: - lin = nn.utils.weight_norm(lin) - setattr(self, "clin" + str(layer), lin) - - self.softplus = nn.Softplus(beta=100) - self.relu = nn.ReLU() - self.sigmoid = torch.nn.Sigmoid() - - self._cos_anneal_ratio = 1.0 - - if self.use_grid_feature: - assert self.spatial_distortion is not None, "spatial distortion must be provided when using grid feature" - - def initialize_geo_layers(self) -> None: - """ - Initialize layers for geometric network (sdf) - """ - # MLP with geometric initialization - dims = [self.config.hidden_dim for _ in range(self.config.num_layers)] - in_dim = 3 + self.position_encoding.get_out_dim() + self.encoding.n_output_dims - dims = [in_dim] + dims + [1 + self.config.geo_feat_dim] - self.num_layers = len(dims) - self.skip_in = [4] - - for layer in range(0, self.num_layers - 1): - if layer + 1 in self.skip_in: - out_dim = dims[layer + 1] - dims[0] - else: - out_dim = dims[layer + 1] - - lin = nn.Linear(dims[layer], out_dim) - - if self.config.geometric_init: - if layer == self.num_layers - 2: - if not self.config.inside_outside: - torch.nn.init.normal_(lin.weight, mean=np.sqrt(np.pi) / np.sqrt(dims[layer]), std=0.0001) - torch.nn.init.constant_(lin.bias, -self.config.bias) - else: - torch.nn.init.normal_(lin.weight, mean=-np.sqrt(np.pi) / np.sqrt(dims[layer]), std=0.0001) - torch.nn.init.constant_(lin.bias, self.config.bias) - elif layer == 0: - torch.nn.init.constant_(lin.bias, 0.0) - torch.nn.init.constant_(lin.weight[:, 3:], 0.0) - torch.nn.init.normal_(lin.weight[:, :3], 0.0, np.sqrt(2) / np.sqrt(out_dim)) - elif layer in self.skip_in: - torch.nn.init.constant_(lin.bias, 0.0) - torch.nn.init.normal_(lin.weight, 0.0, np.sqrt(2) / np.sqrt(out_dim)) - torch.nn.init.constant_(lin.weight[:, -(dims[0] - 3) :], 0.0) - else: - torch.nn.init.constant_(lin.bias, 0.0) - torch.nn.init.normal_(lin.weight, 0.0, np.sqrt(2) / np.sqrt(out_dim)) - - if self.config.weight_norm: - lin = nn.utils.weight_norm(lin) - setattr(self, "glin" + str(layer), lin) - - def set_cos_anneal_ratio(self, anneal: float) -> None: - """Set the anneal value for the proposal network.""" - self._cos_anneal_ratio = anneal - - def forward_geonetwork(self, inputs: Float[Tensor, "*batch 3"]) -> Float[Tensor, "*batch geo_features+1"]: - """forward the geonetwork""" - if self.use_grid_feature: - assert self.spatial_distortion is not None, "spatial distortion must be provided when using grid feature" - positions = self.spatial_distortion(inputs) - # map range [-2, 2] to [0, 1] - positions = (positions + 2.0) / 4.0 - feature = self.encoding(positions) - else: - feature = torch.zeros_like(inputs[:, :1].repeat(1, self.encoding.n_output_dims)) - - pe = self.position_encoding(inputs) - - inputs = torch.cat((inputs, pe, feature), dim=-1) - - # Pass through layers - outputs = inputs - - for layer in range(0, self.num_layers - 1): - lin = getattr(self, "glin" + str(layer)) - - if layer in self.skip_in: - outputs = torch.cat([outputs, inputs], 1) / np.sqrt(2) - - outputs = lin(outputs) - - if layer < self.num_layers - 2: - outputs = self.softplus(outputs) - return outputs - - # TODO: fix ... in shape annotations. - def get_sdf(self, ray_samples: RaySamples) -> Float[Tensor, "num_samples ... 1"]: - """predict the sdf value for ray samples""" - positions = ray_samples.frustums.get_start_positions() - positions_flat = positions.view(-1, 3) - hidden_output = self.forward_geonetwork(positions_flat).view(*ray_samples.frustums.shape, -1) - sdf, _ = torch.split(hidden_output, [1, self.config.geo_feat_dim], dim=-1) - return sdf - - def get_alpha( - self, - ray_samples: RaySamples, - sdf: Optional[Float[Tensor, "num_samples ... 1"]] = None, - gradients: Optional[Float[Tensor, "num_samples ... 1"]] = None, - ) -> Float[Tensor, "num_samples ... 1"]: - """compute alpha from sdf as in NeuS""" - if sdf is None or gradients is None: - inputs = ray_samples.frustums.get_start_positions() - inputs.requires_grad_(True) - with torch.enable_grad(): - hidden_output = self.forward_geonetwork(inputs) - sdf, _ = torch.split(hidden_output, [1, self.config.geo_feat_dim], dim=-1) - d_output = torch.ones_like(sdf, requires_grad=False, device=sdf.device) - gradients = torch.autograd.grad( - outputs=sdf, - inputs=inputs, - grad_outputs=d_output, - create_graph=True, - retain_graph=True, - only_inputs=True, - )[0] - - inv_s = self.deviation_network.get_variance() # Single parameter - - true_cos = (ray_samples.frustums.directions * gradients).sum(-1, keepdim=True) - - # anneal as NeuS - cos_anneal_ratio = self._cos_anneal_ratio - - # "cos_anneal_ratio" grows from 0 to 1 in the beginning training iterations. The anneal strategy below makes - # the cos value "not dead" at the beginning training iterations, for better convergence. - iter_cos = -( - F.relu(-true_cos * 0.5 + 0.5) * (1.0 - cos_anneal_ratio) + F.relu(-true_cos) * cos_anneal_ratio - ) # always non-positive - - # Estimate signed distances at section points - estimated_next_sdf = sdf + iter_cos * ray_samples.deltas * 0.5 - estimated_prev_sdf = sdf - iter_cos * ray_samples.deltas * 0.5 - - prev_cdf = torch.sigmoid(estimated_prev_sdf * inv_s) - next_cdf = torch.sigmoid(estimated_next_sdf * inv_s) - - p = prev_cdf - next_cdf - c = prev_cdf - - alpha = ((p + 1e-5) / (c + 1e-5)).clip(0.0, 1.0) - - return alpha - - def get_density(self, ray_samples: RaySamples): - raise NotImplementedError - - def get_colors( - self, - points: Float[Tensor, "*batch 3"], - directions: Float[Tensor, "*batch 3"], - normals: Float[Tensor, "*batch 3"], - geo_features: Float[Tensor, "*batch geo_feat_dim"], - camera_indices: Tensor, - ) -> Float[Tensor, "*batch 3"]: - """compute colors""" - d = self.direction_encoding(directions) - - # appearance - if self.training: - embedded_appearance = self.embedding_appearance(camera_indices) - # set it to zero if don't use it - if not self.config.use_appearance_embedding: - embedded_appearance = torch.zeros_like(embedded_appearance) - else: - if self.use_average_appearance_embedding: - embedded_appearance = torch.ones( - (*directions.shape[:-1], self.config.appearance_embedding_dim), device=directions.device - ) * self.embedding_appearance.mean(dim=0) - else: - embedded_appearance = torch.zeros( - (*directions.shape[:-1], self.config.appearance_embedding_dim), device=directions.device - ) - - hidden_input = torch.cat( - [ - points, - d, - normals, - geo_features.view(-1, self.config.geo_feat_dim), - embedded_appearance.view(-1, self.config.appearance_embedding_dim), - ], - dim=-1, - ) - - for layer in range(0, self.num_layers_color - 1): - lin = getattr(self, "clin" + str(layer)) - - hidden_input = lin(hidden_input) - - if layer < self.num_layers_color - 2: - hidden_input = self.relu(hidden_input) - - rgb = self.sigmoid(hidden_input) - - return rgb - - def get_outputs( - self, - ray_samples: RaySamples, - density_embedding: Optional[Tensor] = None, - return_alphas: bool = False, - ) -> Dict[FieldHeadNames, Tensor]: - """compute output of ray samples""" - if ray_samples.camera_indices is None: - raise AttributeError("Camera indices are not provided.") - - outputs = {} - - camera_indices = ray_samples.camera_indices.squeeze() - - inputs = ray_samples.frustums.get_start_positions() - inputs = inputs.view(-1, 3) - - directions = ray_samples.frustums.directions - directions_flat = directions.reshape(-1, 3) - - inputs.requires_grad_(True) - with torch.enable_grad(): - hidden_output = self.forward_geonetwork(inputs) - sdf, geo_feature = torch.split(hidden_output, [1, self.config.geo_feat_dim], dim=-1) - d_output = torch.ones_like(sdf, requires_grad=False, device=sdf.device) - gradients = torch.autograd.grad( - outputs=sdf, inputs=inputs, grad_outputs=d_output, create_graph=True, retain_graph=True, only_inputs=True - )[0] - - rgb = self.get_colors(inputs, directions_flat, gradients, geo_feature, camera_indices) - - rgb = rgb.view(*ray_samples.frustums.directions.shape[:-1], -1) - sdf = sdf.view(*ray_samples.frustums.directions.shape[:-1], -1) - gradients = gradients.view(*ray_samples.frustums.directions.shape[:-1], -1) - normals = torch.nn.functional.normalize(gradients, p=2, dim=-1) - - outputs.update( - { - FieldHeadNames.RGB: rgb, - FieldHeadNames.SDF: sdf, - FieldHeadNames.NORMALS: normals, - FieldHeadNames.GRADIENT: gradients, - } - ) - - if return_alphas: - alphas = self.get_alpha(ray_samples, sdf, gradients) - outputs.update({FieldHeadNames.ALPHA: alphas}) - - return outputs - - def forward( - self, ray_samples: RaySamples, compute_normals: bool = False, return_alphas: bool = False - ) -> Dict[FieldHeadNames, Tensor]: - """Evaluates the field at points along the ray. - - Args: - ray_samples: Samples to evaluate field on. - compute normals: not currently used in this implementation. - return_alphas: Whether to return alpha values - """ - field_outputs = self.get_outputs(ray_samples, return_alphas=return_alphas) - return field_outputs diff --git a/nerfstudio/fields/semantic_nerf_field.py b/nerfstudio/fields/semantic_nerf_field.py deleted file mode 100644 index 62b75094..00000000 --- a/nerfstudio/fields/semantic_nerf_field.py +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -""" -Semantic NeRF field implementation. -""" -from typing import Dict, Optional, Tuple - -import torch -from torch import Tensor, nn - -from nerfstudio.cameras.rays import RaySamples -from nerfstudio.field_components.encodings import Encoding, Identity -from nerfstudio.field_components.field_heads import DensityFieldHead, FieldHeadNames, RGBFieldHead, SemanticFieldHead -from nerfstudio.field_components.mlp import MLP -from nerfstudio.fields.base_field import Field - - -class SemanticNerfField(Field): - """Semantic-NeRF field - - Args: - num_semantic_classes: Number of distinct semantic classes. - position_encoding: Position encoder. - direction_encoding: Direction encoder. - base_mlp_num_layers: Number of layers for base MLP. - base_mlp_layer_width: Width of base MLP layers. - head_mlp_num_layers: Number of layer for output head MLP. - head_mlp_layer_width: Width of output head MLP layers. - skip_connections: Where to add skip connection in base MLP. - """ - - def __init__( - self, - num_semantic_classes: int, - position_encoding: Encoding = Identity(in_dim=3), - direction_encoding: Encoding = Identity(in_dim=3), - base_mlp_num_layers: int = 8, - base_mlp_layer_width: int = 256, - head_mlp_num_layers: int = 2, - head_mlp_layer_width: int = 128, - skip_connections: Tuple[int] = (4,), - ) -> None: - super().__init__() - self.num_semantic_classes = num_semantic_classes - self.position_encoding = position_encoding - self.direction_encoding = direction_encoding - self.mlp_base = MLP( - in_dim=self.position_encoding.get_out_dim(), - num_layers=base_mlp_num_layers, - layer_width=base_mlp_layer_width, - skip_connections=skip_connections, - out_activation=nn.ReLU(), - ) - self.mlp_head = MLP( - in_dim=self.mlp_base.get_out_dim() + self.direction_encoding.get_out_dim(), - num_layers=head_mlp_num_layers, - layer_width=head_mlp_layer_width, - out_activation=nn.ReLU(), - ) - self.mlp_semantic = MLP( - in_dim=self.mlp_head.get_out_dim(), - layer_width=self.mlp_head.layer_width // 2, - num_layers=1, - activation=nn.ReLU(), - out_activation=nn.ReLU(), - ) - self.field_head_density = DensityFieldHead(in_dim=self.mlp_base.get_out_dim()) - self.field_head_rgb = RGBFieldHead(in_dim=self.mlp_head.get_out_dim()) - self.field_head_semantic = SemanticFieldHead( - in_dim=self.mlp_semantic.get_out_dim(), num_classes=self.num_semantic_classes - ) - - def get_density(self, ray_samples: RaySamples) -> Tuple[Tensor, Tensor]: - encoded_xyz = self.position_encoding(ray_samples.frustums.get_positions()) - base_mlp_out = self.mlp_base(encoded_xyz) - density = self.field_head_density(base_mlp_out) - return density, base_mlp_out - - def get_outputs( - self, ray_samples: RaySamples, density_embedding: Optional[Tensor] = None - ) -> Dict[FieldHeadNames, Tensor]: - encoded_dir = self.direction_encoding(ray_samples.frustums.directions) - mlp_out = self.mlp_head(torch.cat([encoded_dir, density_embedding], dim=-1)) # type: ignore - outputs = {} - # rgb - outputs[self.field_head_rgb.field_head_name] = self.field_head_rgb(mlp_out) - # semantic - mlp_out_sem = self.mlp_semantic(mlp_out) - outputs[self.field_head_semantic.field_head_name] = self.field_head_semantic(mlp_out_sem) - return outputs diff --git a/nerfstudio/fields/tensorf_field.py b/nerfstudio/fields/tensorf_field.py deleted file mode 100644 index b3aba4e5..00000000 --- a/nerfstudio/fields/tensorf_field.py +++ /dev/null @@ -1,143 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -"""TensoRF Field""" - - -from typing import Dict, Optional - -import torch -from torch import Tensor, nn -from torch.nn.parameter import Parameter - -from nerfstudio.cameras.rays import RaySamples -from nerfstudio.data.scene_box import SceneBox -from nerfstudio.field_components.encodings import Encoding, Identity, SHEncoding -from nerfstudio.field_components.field_heads import FieldHeadNames, RGBFieldHead -from nerfstudio.field_components.mlp import MLP -from nerfstudio.fields.base_field import Field - - -class TensoRFField(Field): - """TensoRF Field""" - - def __init__( - self, - aabb: Tensor, - # the aabb bounding box of the dataset - feature_encoding: Encoding = Identity(in_dim=3), - # the encoding method used for appearance encoding outputs - direction_encoding: Encoding = Identity(in_dim=3), - # the encoding method used for ray direction - density_encoding: Encoding = Identity(in_dim=3), - # the tensor encoding method used for scene density - color_encoding: Encoding = Identity(in_dim=3), - # the tensor encoding method used for scene color - appearance_dim: int = 27, - # the number of dimensions for the appearance embedding - head_mlp_num_layers: int = 2, - # number of layers for the MLP - head_mlp_layer_width: int = 128, - # layer width for the MLP - use_sh: bool = False, - # whether to use spherical harmonics as the feature decoding function - sh_levels: int = 2, - # number of levels to use for spherical harmonics - ) -> None: - super().__init__() - self.aabb = Parameter(aabb, requires_grad=False) - self.feature_encoding = feature_encoding - self.direction_encoding = direction_encoding - self.density_encoding = density_encoding - self.color_encoding = color_encoding - - self.mlp_head = MLP( - in_dim=appearance_dim + 3 + self.direction_encoding.get_out_dim() + self.feature_encoding.get_out_dim(), - num_layers=head_mlp_num_layers, - layer_width=head_mlp_layer_width, - activation=nn.ReLU(), - out_activation=nn.ReLU(), - ) - - self.use_sh = use_sh - - if self.use_sh: - self.sh = SHEncoding(sh_levels) - self.B = nn.Linear( - in_features=self.color_encoding.get_out_dim(), out_features=3 * self.sh.get_out_dim(), bias=False - ) - else: - self.B = nn.Linear(in_features=self.color_encoding.get_out_dim(), out_features=appearance_dim, bias=False) - - self.field_output_rgb = RGBFieldHead(in_dim=self.mlp_head.get_out_dim(), activation=nn.Sigmoid()) - - def get_density(self, ray_samples: RaySamples) -> Tensor: - positions = SceneBox.get_normalized_positions(ray_samples.frustums.get_positions(), self.aabb) - positions = positions * 2 - 1 - density = self.density_encoding(positions) - density_enc = torch.sum(density, dim=-1)[:, :, None] - relu = torch.nn.ReLU() - density_enc = relu(density_enc) - return density_enc - - def get_outputs(self, ray_samples: RaySamples, density_embedding: Optional[Tensor] = None) -> Tensor: - d = ray_samples.frustums.directions - positions = SceneBox.get_normalized_positions(ray_samples.frustums.get_positions(), self.aabb) - positions = positions * 2 - 1 - rgb_features = self.color_encoding(positions) - rgb_features = self.B(rgb_features) - - if self.use_sh: - sh_mult = self.sh(d)[:, :, None] - rgb_sh = rgb_features.view(sh_mult.shape[0], sh_mult.shape[1], 3, sh_mult.shape[-1]) - rgb = torch.relu(torch.sum(sh_mult * rgb_sh, dim=-1) + 0.5) - else: - d_encoded = self.direction_encoding(d) - rgb_features_encoded = self.feature_encoding(rgb_features) - - out = self.mlp_head(torch.cat([rgb_features, d, rgb_features_encoded, d_encoded], dim=-1)) # type: ignore - rgb = self.field_output_rgb(out) - - return rgb - - def forward( - self, - ray_samples: RaySamples, - compute_normals: bool = False, - mask: Optional[Tensor] = None, - bg_color: Optional[Tensor] = None, - ) -> Dict[FieldHeadNames, Tensor]: - if compute_normals is True: - raise ValueError("Surface normals are not currently supported with TensoRF") - if mask is not None and bg_color is not None: - base_density = torch.zeros(ray_samples.shape)[:, :, None].to(mask.device) - base_rgb = bg_color.repeat(ray_samples[:, :, None].shape) - if mask.any(): - input_rays = ray_samples[mask, :] - density = self.get_density(input_rays) - rgb = self.get_outputs(input_rays, None) - - base_density[mask] = density - base_rgb[mask] = rgb - - base_density.requires_grad_() - base_rgb.requires_grad_() - - density = base_density - rgb = base_rgb - else: - density = self.get_density(ray_samples) - rgb = self.get_outputs(ray_samples, None) - - return {FieldHeadNames.DENSITY: density, FieldHeadNames.RGB: rgb} diff --git a/nerfstudio/fields/vanilla_nerf_field.py b/nerfstudio/fields/vanilla_nerf_field.py deleted file mode 100644 index efb3589e..00000000 --- a/nerfstudio/fields/vanilla_nerf_field.py +++ /dev/null @@ -1,108 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -"""Classic NeRF field""" - - -from typing import Dict, Optional, Tuple, Type - -import torch -from torch import Tensor, nn - -from nerfstudio.cameras.rays import RaySamples -from nerfstudio.field_components.encodings import Encoding, Identity -from nerfstudio.field_components.field_heads import DensityFieldHead, FieldHead, FieldHeadNames, RGBFieldHead -from nerfstudio.field_components.mlp import MLP -from nerfstudio.field_components.spatial_distortions import SpatialDistortion -from nerfstudio.fields.base_field import Field - - -class NeRFField(Field): - """NeRF Field - - Args: - position_encoding: Position encoder. - direction_encoding: Direction encoder. - base_mlp_num_layers: Number of layers for base MLP. - base_mlp_layer_width: Width of base MLP layers. - head_mlp_num_layers: Number of layer for output head MLP. - head_mlp_layer_width: Width of output head MLP layers. - skip_connections: Where to add skip connection in base MLP. - use_integrated_encoding: Used integrated samples as encoding input. - spatial_distortion: Spatial distortion. - """ - - def __init__( - self, - position_encoding: Encoding = Identity(in_dim=3), - direction_encoding: Encoding = Identity(in_dim=3), - base_mlp_num_layers: int = 8, - base_mlp_layer_width: int = 256, - head_mlp_num_layers: int = 2, - head_mlp_layer_width: int = 128, - skip_connections: Tuple[int] = (4,), - field_heads: Optional[Tuple[Type[FieldHead]]] = (RGBFieldHead,), - use_integrated_encoding: bool = False, - spatial_distortion: Optional[SpatialDistortion] = None, - ) -> None: - super().__init__() - self.position_encoding = position_encoding - self.direction_encoding = direction_encoding - self.use_integrated_encoding = use_integrated_encoding - self.spatial_distortion = spatial_distortion - - self.mlp_base = MLP( - in_dim=self.position_encoding.get_out_dim(), - num_layers=base_mlp_num_layers, - layer_width=base_mlp_layer_width, - skip_connections=skip_connections, - out_activation=nn.ReLU(), - ) - self.field_output_density = DensityFieldHead(in_dim=self.mlp_base.get_out_dim()) - - if field_heads: - self.mlp_head = MLP( - in_dim=self.mlp_base.get_out_dim() + self.direction_encoding.get_out_dim(), - num_layers=head_mlp_num_layers, - layer_width=head_mlp_layer_width, - out_activation=nn.ReLU(), - ) - self.field_heads = nn.ModuleList([field_head() for field_head in field_heads] if field_heads else []) # type: ignore - for field_head in self.field_heads: - field_head.set_in_dim(self.mlp_head.get_out_dim()) # type: ignore - - def get_density(self, ray_samples: RaySamples) -> Tuple[Tensor, Tensor]: - if self.use_integrated_encoding: - gaussian_samples = ray_samples.frustums.get_gaussian_blob() - if self.spatial_distortion is not None: - gaussian_samples = self.spatial_distortion(gaussian_samples) - encoded_xyz = self.position_encoding(gaussian_samples.mean, covs=gaussian_samples.cov) - else: - positions = ray_samples.frustums.get_positions() - if self.spatial_distortion is not None: - positions = self.spatial_distortion(positions) - encoded_xyz = self.position_encoding(positions) - base_mlp_out = self.mlp_base(encoded_xyz) - density = self.field_output_density(base_mlp_out) - return density, base_mlp_out - - def get_outputs( - self, ray_samples: RaySamples, density_embedding: Optional[Tensor] = None - ) -> Dict[FieldHeadNames, Tensor]: - outputs = {} - for field_head in self.field_heads: - encoded_dir = self.direction_encoding(ray_samples.frustums.directions) - mlp_out = self.mlp_head(torch.cat([encoded_dir, density_embedding], dim=-1)) # type: ignore - outputs[field_head.field_head_name] = field_head(mlp_out) - return outputs diff --git a/nerfstudio/model_components/cnns.py b/nerfstudio/model_components/cnns.py new file mode 100644 index 00000000..678f4c46 --- /dev/null +++ b/nerfstudio/model_components/cnns.py @@ -0,0 +1,66 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# +# 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 torch +from torch import nn + + +class ResidualBlock(nn.Module): + """Abstract Residual Block class.""" + + def __init__(self, in_dim: int, dim: int) -> None: + super().__init__() + if in_dim != dim: + self.res_branch = nn.Conv2d(in_dim, dim, kernel_size=1) + else: + self.res_branch = nn.Identity() + self.main_branch = nn.Identity() + self.final_activation = nn.ReLU(inplace=True) + + def forward(self, x: torch.Tensor) -> torch.Tensor: + return self.final_activation(self.res_branch(x) + self.main_branch(x)) + + +class BasicBlock(ResidualBlock): + """Basic residual block.""" + + def __init__(self, in_dim: int, dim: int, kernel_size: int, padding: int, use_bn: bool = False): + super().__init__(in_dim, dim) + self.main_branch = nn.Sequential( + nn.Conv2d(in_dim, dim, kernel_size=kernel_size, padding=padding), + nn.BatchNorm2d(dim) if use_bn else nn.Identity(), + nn.ReLU(inplace=True), + nn.Conv2d(dim, dim, kernel_size=kernel_size, padding=padding), + nn.BatchNorm2d(dim) if use_bn else nn.Identity(), + ) + + +class BottleneckBlock(ResidualBlock): + """Simple residual bottleneck block.""" + + def __init__( + self, in_dim: int, dim: int, kernel_size: int, padding: int, channel_multiplier: int = 1, use_bn: bool = False + ): + super().__init__(in_dim, dim) + mid_dim = channel_multiplier * dim + self.main_branch = nn.Sequential( + nn.Conv2d(in_dim, mid_dim, kernel_size=1), + nn.BatchNorm2d(mid_dim) if use_bn else nn.Identity(), + nn.ReLU(inplace=True), + nn.Conv2d(mid_dim, mid_dim, kernel_size=kernel_size, padding=padding), + nn.BatchNorm2d(mid_dim) if use_bn else nn.Identity(), + nn.ReLU(inplace=True), + nn.Conv2d(mid_dim, dim, kernel_size=1), + nn.BatchNorm2d(mid_dim) if use_bn else nn.Identity(), + ) diff --git a/nerfstudio/model_components/dynamic_actors.py b/nerfstudio/model_components/dynamic_actors.py new file mode 100644 index 00000000..3fbb4352 --- /dev/null +++ b/nerfstudio/model_components/dynamic_actors.py @@ -0,0 +1,188 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# +# 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 math +from dataclasses import dataclass, field +from typing import Dict, List, Tuple, Type + +import torch +from torch import Tensor, nn + +from nerfstudio.cameras.camera_utils import matrix_to_rotation_6d, rotation_6d_to_matrix +from nerfstudio.configs.base_config import InstantiateConfig +from nerfstudio.utils import poses as pose_utils +from nerfstudio.utils.poses import interpolate_trajectories_6d +from nerfstudio.viewer.server.viewer_elements import ViewerSlider + + +@dataclass +class DynamicActorsConfig(InstantiateConfig): + """Configuration of dynamic actors.""" + + _target: Type = field(default_factory=lambda: DynamicActors) + + optimize_trajectories: bool = True + """Whether to optimize the trajectories or not.""" + actor_bbox_padding: Tuple[float, float, float] = (0.25, 0.25, 0.1) + """Padding to add to the bounding boxes of the actors (wlh order, in meters).""" + + +class DynamicActors(nn.Module): + config: DynamicActorsConfig + + def __init__(self, config: DynamicActorsConfig, trajectories: List[dict]): + super().__init__() + self.config = config + + self._populate_actors(trajectories) + self.requires_grad_(self.config.optimize_trajectories) + + self.actor_editing = { + "lateral": 0.0, + "longitudinal": 0.0, + "rotation": 0.0, + } + self.actor_lateral_shift = ViewerSlider( + name="Actor lateral shift (m)", + default_value=self.actor_editing["lateral"], + min_value=-3.0, + max_value=3.0, + step=0.1, + cb_hook=lambda obj: self.actor_editing.update({"lateral": obj.value}), + ) + + self.actor_longitudinal_shift = ViewerSlider( + name="Actor longitudinal shift (m)", + default_value=self.actor_editing["longitudinal"], + min_value=-3.0, + max_value=3.0, + step=0.1, + cb_hook=lambda obj: self.actor_editing.update({"longitudinal": obj.value}), + ) + + self.actor_rotation_shift = ViewerSlider( + name="Actor rotation shift (m)", + default_value=self.actor_editing["rotation"], + min_value=-3.14, + max_value=3.14, + step=0.1, + cb_hook=lambda obj: self.actor_editing.update({"rotation": obj.value}), + ) + + def actor_bounds(self): + return self.actor_sizes / 2 + self.actor_padding + + def _populate_actors(self, trajectories: List[dict]) -> None: + unique_timestamps = torch.tensor(sorted(list({t.item() for traj in trajectories for t in traj["timestamps"]}))) + self.n_actors = len(trajectories) + self.n_times = len(unique_timestamps) + + actor_poses_at_time = ( + torch.eye(4, dtype=torch.float32).view(1, 1, 4, 4).repeat(self.n_times, self.n_actors, 1, 1) + ) + actor_present_at_time = torch.zeros((self.n_times, self.n_actors), dtype=torch.bool) + actor_sizes = torch.zeros((self.n_actors, 3), dtype=torch.float32) + actor_symmetric = torch.zeros((self.n_actors,), dtype=torch.bool) + actor_deformable = torch.zeros((self.n_actors,), dtype=torch.bool) + + for actor_index, traj in enumerate(trajectories): + actor_sizes[actor_index] = traj["dims"] + actor_symmetric[actor_index] = traj["symmetric"] + actor_deformable[actor_index] = traj["deformable"] + + for time_index, t in enumerate(unique_timestamps): + time_diff = (traj["timestamps"] - t).abs() + traj_time_index = time_diff.argmin(dim=0) + if time_diff[traj_time_index] < 1e-4: + actor_present_at_time[time_index, actor_index] = True + actor_poses_at_time[time_index, actor_index] = traj["poses"][traj_time_index] + else: + # TODO(carlinds): Is this hack needed anymore? Don't we already do the interpolation for all + # timesteps in the dataparser? + # TODO: This is a hack to make sure that all timestamps are present. This is needed because the + # trajectory optimizer assumes that all timestamps are present. + # we duplicate the closest timestamp + actor_poses_at_time[time_index, actor_index] = traj["poses"][traj_time_index] + assert actor_present_at_time[:, actor_index].sum() == len( + traj["timestamps"].unique() + ), "Failed to populate all timestamps for actor!" + + self.register_buffer("unique_timestamps", unique_timestamps) + self.register_buffer("actor_poses_at_time", actor_poses_at_time) + self.register_buffer("actor_present_at_time", actor_present_at_time) + self.register_buffer("actor_sizes", actor_sizes) # wlh + self.register_buffer("actor_symmetric", actor_symmetric) + self.register_buffer("actor_deformable", actor_deformable) + self.register_buffer("actor_padding", torch.tensor(self.config.actor_bbox_padding)) + # this seems silly but allows us to duplicate actors during rendering + self.register_buffer("actor_to_id", torch.arange(self.n_actors, dtype=torch.int64)) + + # optimizable parameters + self.actor_positions = nn.Parameter(self.actor_poses_at_time[..., :3, 3]) + self.actor_rotations_6d = nn.Parameter(matrix_to_rotation_6d(self.actor_poses_at_time[..., :3, :3])) + self.register_buffer("initial_positions", self.actor_positions.clone()) + self.register_buffer("initial_rotations_6d", self.actor_rotations_6d.clone()) + + def get_poses_3x4(self): + rotations = rotation_6d_to_matrix(self.actor_rotations_6d) + return torch.cat([rotations, self.actor_positions.unsqueeze(-1)], dim=-1) + + def get_world2boxes(self, query_times: Tensor, flatten: bool = True): + boxes2world, *extra = self.get_boxes2world(query_times, flatten) + world2boxes = pose_utils.inverse(boxes2world) + return world2boxes, *extra + + def edit_boxes2world(self, boxes2world: Tensor): + with torch.no_grad(): + if abs(self.actor_editing["longitudinal"]) > 0.0 or abs(self.actor_editing["lateral"]) > 0.0: + boxes2world[..., 3] = boxes2world @ torch.tensor( + [self.actor_editing["lateral"], self.actor_editing["longitudinal"], 0.0, 1.0], + device=boxes2world.device, + ) + + if abs(self.actor_editing["rotation"]) > 0.0: + rotation_yaw = torch.tensor( + [ + [math.cos(self.actor_editing["rotation"]), -math.sin(self.actor_editing["rotation"]), 0.0], + [math.sin(self.actor_editing["rotation"]), math.cos(self.actor_editing["rotation"]), 0.0], + [0.0, 0.0, 1.0], + ], + device=boxes2world.device, + ) + boxes2world[..., :3, :3] = rotation_yaw @ boxes2world[..., :3, :3] + return boxes2world + + def get_boxes2world(self, query_times: Tensor, flatten: bool = True): + poses, *extra = interpolate_trajectories_6d( + torch.cat([self.actor_rotations_6d, self.actor_positions], dim=-1), + self.unique_timestamps, + query_times, + self.actor_present_at_time, + flatten=flatten, + ) + boxes2world = torch.cat([rotation_6d_to_matrix(poses[..., :6]), poses[..., 6:].unsqueeze(-1)], dim=-1) + + if not self.training: + boxes2world = self.edit_boxes2world(boxes2world) + + boxes2world = pose_utils.to4x4(boxes2world) + return boxes2world, *extra + + def requires_grad_(self, requires: bool) -> None: + self.actor_positions.requires_grad_(requires) + self.actor_rotations_6d.requires_grad_(requires) + + def get_param_groups(self, param_groups: Dict): + if self.config.optimize_trajectories: + param_groups["trajectory_opt"] = param_groups.get("trajectory_opt", []) + list(self.parameters()) diff --git a/nerfstudio/model_components/losses.py b/nerfstudio/model_components/losses.py index d4646698..4d986fdd 100644 --- a/nerfstudio/model_components/losses.py +++ b/nerfstudio/model_components/losses.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -15,10 +16,12 @@ """ Collection of Losses. """ + from enum import Enum from typing import Dict, Literal, Optional, Tuple, cast import torch +import torchvision from jaxtyping import Bool, Float from torch import Tensor, nn @@ -252,6 +255,8 @@ def urban_radiance_field_depth_loss( predicted_depth: Float[Tensor, "*batch 1"], steps: Float[Tensor, "*batch num_samples 1"], sigma: Float[Tensor, "0"], + bin_sizes: Float[Tensor, "*batch_num_samples 1"], + scaling_factor: Float[Tensor, "0"], ) -> Float[Tensor, "*batch 1"]: """Lidar losses from Urban Radiance Fields (Rematas et al., 2022). @@ -273,12 +278,14 @@ def urban_radiance_field_depth_loss( target_distribution = torch.distributions.normal.Normal(0.0, sigma / URF_SIGMA_SCALE_FACTOR) termination_depth = termination_depth[:, None] line_of_sight_loss_near_mask = torch.logical_and( - steps <= termination_depth + sigma, steps >= termination_depth - sigma + steps <= (termination_depth + sigma), steps >= (termination_depth - sigma) ) - line_of_sight_loss_near = (weights - torch.exp(target_distribution.log_prob(steps - termination_depth))) ** 2 + line_of_sight_loss_near = ( + (weights / (bin_sizes) - torch.exp(target_distribution.log_prob(steps - termination_depth))) ** 2 + ) * (bin_sizes) line_of_sight_loss_near = (line_of_sight_loss_near_mask * line_of_sight_loss_near).sum(-2) - line_of_sight_loss_empty_mask = steps < termination_depth - sigma - line_of_sight_loss_empty = (line_of_sight_loss_empty_mask * weights**2).sum(-2) + line_of_sight_loss_empty_mask = steps < (termination_depth - sigma) + line_of_sight_loss_empty = (line_of_sight_loss_empty_mask * weights**2 / bin_sizes).sum(-2) line_of_sight_loss = line_of_sight_loss_near + line_of_sight_loss_empty loss = (expected_depth_loss + line_of_sight_loss) * depth_mask @@ -294,6 +301,7 @@ def depth_loss( directions_norm: Float[Tensor, "*batch 1"], is_euclidean: bool, depth_loss_type: DepthLossType, + scaling_factor: Float[Tensor, "0"] = 1.0, ) -> Float[Tensor, "0"]: """Implementation of depth losses. @@ -319,7 +327,10 @@ def depth_loss( return ds_nerf_depth_loss(weights, termination_depth, steps, lengths, sigma) if depth_loss_type == DepthLossType.URF: - return urban_radiance_field_depth_loss(weights, termination_depth, predicted_depth, steps, sigma) + bin_sizes = ray_samples.frustums.ends - ray_samples.frustums.starts + return urban_radiance_field_depth_loss( + weights, termination_depth, predicted_depth, steps, sigma, bin_sizes, scaling_factor + ) raise NotImplementedError("Provided depth loss type not implemented.") @@ -568,6 +579,52 @@ def scale_gradients_by_distance_squared( return out +class VGGPerceptualLossPix2Pix(nn.Module): + """From https://github.com/NVIDIA/pix2pixHD/blob/master/models/networks.py""" + + def __init__(self, weights=None): + super().__init__() + self.vgg = Vgg19().eval() + self.vgg.requires_grad_(False) + self.criterion = nn.L1Loss() + if weights is None: + self.weights = [1.0 / 32, 1.0 / 16, 1.0 / 8, 1.0 / 4, 1.0] + else: + assert len(weights) == 5, "Expected 5 weights for VGGPerceptualLossPix2Pix" + self.weights = weights + + def forward(self, x, y): + # Assume input is in NHWC format + x, y = x.permute(0, 3, 1, 2), y.permute(0, 3, 1, 2) + vgg_out = self.vgg(torch.cat([x, y], dim=0)) + # x_vgg, y_vgg = self.vgg(x), self.vgg(y) + loss = 0 + for i in range(len(vgg_out)): + x_vgg, y_vgg = vgg_out[i].chunk(2, dim=0) + loss += self.weights[i] * self.criterion(x_vgg, y_vgg.detach()) + return loss + + +class Vgg19(torch.nn.Module): + def __init__(self): + super(Vgg19, self).__init__() + vgg_pretrained_features = torchvision.models.vgg19(pretrained=True).features + self.slice1 = torch.nn.Sequential(vgg_pretrained_features[:2]) + self.slice2 = torch.nn.Sequential(vgg_pretrained_features[2:7]) + self.slice3 = torch.nn.Sequential(vgg_pretrained_features[7:12]) + self.slice4 = torch.nn.Sequential(vgg_pretrained_features[12:21]) + self.slice5 = torch.nn.Sequential(vgg_pretrained_features[21:30]) + + def forward(self, X): + h_relu1 = self.slice1(X) + h_relu2 = self.slice2(h_relu1) + h_relu3 = self.slice3(h_relu2) + h_relu4 = self.slice4(h_relu3) + h_relu5 = self.slice5(h_relu4) + out = [h_relu1, h_relu2, h_relu3, h_relu4, h_relu5] + return out + + def depth_ranking_loss(rendered_depth, gt_depth): """ Depth ranking loss as described in the SparseNeRF paper @@ -583,3 +640,66 @@ def depth_ranking_loss(rendered_depth, gt_depth): out_diff = rendered_depth[::2, :] - rendered_depth[1::2, :] + m differing_signs = torch.sign(dpt_diff) != torch.sign(out_diff) return torch.nanmean((out_diff[differing_signs] * torch.sign(out_diff[differing_signs]))) + + +def _blur_stepfun(x: torch.Tensor, y: torch.Tensor, r: float) -> Tuple[torch.Tensor, torch.Tensor]: + xr, xr_idx = torch.sort(torch.cat([x - r, x + r], dim=-1)) + y1 = ( + torch.cat([y, torch.zeros_like(y[..., :1])], dim=-1) - torch.cat([torch.zeros_like(y[..., :1]), y], dim=-1) + ) / (2 * r) + y2 = torch.cat([y1, -y1], dim=-1).take_along_dim(xr_idx[..., :-1], dim=-1) + yr = torch.cumsum((xr[..., 1:] - xr[..., :-1]) * torch.cumsum(y2, dim=-1), dim=-1).clamp_min(0) + yr = torch.cat([torch.zeros_like(yr[..., :1]), yr], dim=-1) + return xr, yr + + +def _sorted_interp_quad(x, xp, fpdf, fcdf): + right_idx = torch.searchsorted(xp, x) + left_idx = (right_idx - 1).clamp_min(0) + right_idx = right_idx.clamp_max(xp.shape[-1] - 1) + + xp0 = xp.take_along_dim(left_idx, dim=-1) + xp1 = xp.take_along_dim(right_idx, dim=-1) + fpdf0 = fpdf.take_along_dim(left_idx, dim=-1) + fpdf1 = fpdf.take_along_dim(right_idx, dim=-1) + fcdf0 = fcdf.take_along_dim(left_idx, dim=-1) + + offset = torch.clip(torch.nan_to_num((x - xp0) / (xp1 - xp0), 0), 0, 1) + return fcdf0 + (x - xp0) * (fpdf0 + fpdf1 * offset + fpdf0 * (1 - offset)) * 0.5 + + +def zipnerf_interlevel_loss(weights_list, ray_samples_list): + """Anti-aliased interlevel loss proposed in ZipNeRF paper.""" + # ground truth s and w (real nerf samples) + # This implementation matches ZipNeRF up to the scale. + # In the paper the loss is computed as the sum over the ray samples. + # Here we take the mean and the multiplier for this loss should be changed accordingly. + pulse_widths = [0.03, 0.003] + c = ray_samples_to_sdist(ray_samples_list[-1]).detach() + w = weights_list[-1][..., 0].detach() + accum_w = torch.sum(w, dim=-1, keepdim=True) + w = torch.cat([w[..., :-1], w[..., -1:] + (1 - accum_w)], dim=-1) + + w_norm = w / (c[..., 1:] - c[..., :-1]) + loss = 0 + for i, (ray_samples, weights) in enumerate(zip(ray_samples_list[:-1], weights_list[:-1])): + cp = ray_samples_to_sdist(ray_samples) + wp = weights[..., 0] # (num_rays, num_samples) + c_, w_ = _blur_stepfun(c, w_norm, pulse_widths[i]) + + # piecewise linear pdf to piecewise quadratic cdf + area = 0.5 * (w_[..., 1:] + w_[..., :-1]) * (c_[..., 1:] - c_[..., :-1]) + cdf = torch.cat([torch.zeros_like(area[..., :1]), torch.cumsum(area, dim=-1)], dim=-1) + + # prepend 0 weight and append 1 weight + c_ = torch.cat([torch.zeros_like(c_[..., :1]), c_, torch.ones_like(c_[..., :1])], dim=-1) + w_ = torch.cat([torch.zeros_like(w_[..., :1]), w_, torch.zeros_like(w_[..., :1])], dim=-1) + cdf = torch.cat([torch.zeros_like(cdf[..., :1]), cdf, torch.ones_like(cdf[..., :1])], dim=-1) + + # query piecewise quadratic interpolation + cdf_interp = _sorted_interp_quad(cp, c_, w_, cdf) + + # difference between adjacent interpolated values + w_s = torch.diff(cdf_interp, dim=-1) + loss += ((w_s - wp).clamp_min(0) ** 2 / (wp + 1e-5)).sum(dim=-1).mean() + return loss diff --git a/nerfstudio/model_components/ray_generators.py b/nerfstudio/model_components/ray_generators.py index fab9e39b..f2cda976 100644 --- a/nerfstudio/model_components/ray_generators.py +++ b/nerfstudio/model_components/ray_generators.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -15,10 +16,11 @@ """ Ray generator. """ -from jaxtyping import Int +from jaxtyping import Float, Int from torch import Tensor, nn from nerfstudio.cameras.cameras import Cameras +from nerfstudio.cameras.lidars import Lidars from nerfstudio.cameras.rays import RayBundle @@ -53,3 +55,39 @@ def forward(self, ray_indices: Int[Tensor, "num_rays 3"]) -> RayBundle: coords=coords, ) return ray_bundle + + +class LidarRayGenerator(nn.Module): + """torch.nn Module for generating rays for Lidars. + This class is the interface between the scene's lidars/lidar optimizer and the ray sampler. + + Args: + lidars: Lidar objects containing lidar info. + pose_optimizer: pose optimization module, for optimizing noisy lidar intrinsics/extrinsics. + """ + + def __init__(self, lidars: Lidars) -> None: + super().__init__() + self.lidars = lidars + + def forward(self, ray_indices: Int[Tensor, "num_rays 2"], points: Float[Tensor, "num_rays 3"] = None) -> RayBundle: + """Index into the lidars to generate the rays. + + Args: + ray_indices: Contains (lidar, point) indices for target rays. + """ + c = ray_indices[:, 0] # lidar (scan) indices + n = ray_indices[:, 1] # point indices + + if points is not None: + ray_bundle = self.lidars.generate_rays( + lidar_indices=c.unsqueeze(-1), + points=points, + ) + else: + ray_bundle = self.lidars.generate_rays( + lidar_indices=c.unsqueeze(-1), + coords=n, + ) + + return ray_bundle diff --git a/nerfstudio/model_components/ray_samplers.py b/nerfstudio/model_components/ray_samplers.py index 7a2052b6..3ddb31b3 100644 --- a/nerfstudio/model_components/ray_samplers.py +++ b/nerfstudio/model_components/ray_samplers.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -25,6 +26,7 @@ from torch import Tensor, nn from nerfstudio.cameras.rays import Frustums, RayBundle, RaySamples +from nerfstudio.utils.math import inv_power_fn, power_fn class Sampler(nn.Module): @@ -97,7 +99,9 @@ def generate_ray_samples( assert num_samples is not None num_rays = ray_bundle.origins.shape[0] - bins = torch.linspace(0.0, 1.0, num_samples + 1).to(ray_bundle.origins.device)[None, ...] # [1, num_samples+1] + bins = torch.linspace(0.0, 1.0, num_samples + 1, device=ray_bundle.origins.device)[ + None, ... + ] # [1, num_samples+1] # TODO More complicated than it needs to be. if self.train_stratified and self.training: @@ -317,7 +321,7 @@ def generate_ray_samples( if self.train_stratified and self.training: # Stratified samples between 0 and 1 u = torch.linspace(0.0, 1.0 - (1.0 / num_bins), steps=num_bins, device=cdf.device) - u = u.expand(size=(*cdf.shape[:-1], num_bins)) + u = u.expand(size=(*cdf.shape[:-1], num_bins)).clone() # TODO(atonderski) why clone? if self.single_jitter: rand = torch.rand((*cdf.shape[:-1], 1), device=cdf.device) / num_bins else: @@ -327,7 +331,7 @@ def generate_ray_samples( # Uniform samples between 0 and 1 u = torch.linspace(0.0, 1.0 - (1.0 / num_bins), steps=num_bins, device=cdf.device) u = u + 1.0 / (2 * num_bins) - u = u.expand(size=(*cdf.shape[:-1], num_bins)) + u = u.expand(size=(*cdf.shape[:-1], num_bins)).clone() # TODO(atonderski) why clone? u = u.contiguous() assert ( @@ -383,6 +387,17 @@ def __call__( ... +class AlphaFn(Protocol): + """ + Function that evaluates alpha at a given point. + """ + + def __call__( + self, positions: Float[Tensor, "*batch 3"], times: Optional[Float[Tensor, "*batch 1"]] = None + ) -> Float[Tensor, "*batch 1"]: + ... + + class VolumetricSampler(Sampler): """Sampler inspired by the one proposed in the Instant-NGP paper. Generates samples along a ray by sampling the occupancy field. @@ -398,12 +413,16 @@ def __init__( self, occupancy_grid: OccGridEstimator, density_fn: Optional[DensityFn] = None, + alpha_fn: Optional[AlphaFn] = None, ): super().__init__() assert occupancy_grid is not None self.density_fn = density_fn + self.alpha_fn = alpha_fn self.occupancy_grid = occupancy_grid + assert not (alpha_fn is not None and density_fn is not None), "density_fn and alpha_fn cannot be both set" + def get_sigma_fn(self, origins, directions, times=None) -> Optional[Callable]: """Returns a function that returns the density of a point. @@ -430,6 +449,32 @@ def sigma_fn(t_starts, t_ends, ray_indices): return sigma_fn + def get_alpha_fn(self, origins, directions, times=None) -> Optional[Callable]: + """Returns a function that returns the density of a point. + + Args: + origins: Origins of rays + directions: Directions of rays + times: Times at which rays are sampled + Returns: + Function that returns the density of a point or None if a density function is not provided. + """ + + if self.alpha_fn is None or not self.training: + return None + + alpha_fn = self.alpha_fn + + def alpha_fn_out(t_starts, t_ends, ray_indices): + t_origins = origins[ray_indices] + t_dirs = directions[ray_indices] + positions = t_origins + t_dirs * (t_starts + t_ends)[:, None] / 2.0 + if times is None: + return alpha_fn(positions).squeeze(-1) + return alpha_fn(positions, times[ray_indices]).squeeze(-1) + + return alpha_fn_out + def generate_ray_samples(self) -> RaySamples: raise RuntimeError( "The VolumetricSampler fuses sample generation and density check together. Please call forward() directly." @@ -485,6 +530,7 @@ def forward( t_min=t_min, t_max=t_max, sigma_fn=self.get_sigma_fn(rays_o, rays_d, times), + alpha_fn=self.get_alpha_fn(rays_o, rays_d, times), render_step_size=render_step_size, near_plane=near_plane, far_plane=far_plane, @@ -511,7 +557,7 @@ def forward( directions=dirs, starts=starts[..., None], ends=ends[..., None], - pixel_area=ray_bundle[ray_indices].pixel_area, + pixel_area=ray_bundle.pixel_area[ray_indices], ), camera_indices=camera_indices, ) @@ -578,10 +624,12 @@ def generate_ray_samples( self, ray_bundle: Optional[RayBundle] = None, density_fns: Optional[List[Callable]] = None, + pass_ray_samples: bool = False, ) -> Tuple[RaySamples, List, List]: assert ray_bundle is not None assert density_fns is not None - + if not pass_ray_samples: + density_fns = [lambda rs: f(rs.frustums.get_positions()) for f in density_fns] weights_list = [] ray_samples_list = [] @@ -604,10 +652,10 @@ def generate_ray_samples( if is_prop: if updated: # always update on the first step or the inf check in grad scaling crashes - density = density_fns[i_level](ray_samples.frustums.get_positions()) + density = density_fns[i_level](ray_samples) else: with torch.no_grad(): - density = density_fns[i_level](ray_samples.frustums.get_positions()) + density = density_fns[i_level](ray_samples) weights = ray_samples.get_weights(density) weights_list.append(weights) # (num_rays, num_samples) ray_samples_list.append(ray_samples) @@ -785,3 +833,20 @@ def merge_ray_samples(ray_bundle: RayBundle, ray_samples_1: RaySamples, ray_samp ) return ray_samples, sorted_index + + +class PowerSampler(SpacedSampler): + """Sampler according to the ZipNeRF's power function + Args: + num_samples: Number of samples per ray + train_stratified: Use stratified sampling during training. Defaults to True + lambda_: Parameter of power transformation + """ + + def __init__(self, num_samples: Optional[int] = None, lambda_=-1.5, scaling=2.0, **kwargs) -> None: + super().__init__( + num_samples=num_samples, + spacing_fn=lambda x: power_fn(x * scaling, lambda_), + spacing_fn_inv=lambda x: inv_power_fn(x, lambda_) / scaling, + **kwargs, + ) diff --git a/nerfstudio/model_components/renderers.py b/nerfstudio/model_components/renderers.py index 1fde0d69..181f8d02 100644 --- a/nerfstudio/model_components/renderers.py +++ b/nerfstudio/model_components/renderers.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -55,6 +56,40 @@ def background_color_override_context(mode: Float[Tensor, "3"]) -> Generator[Non BACKGROUND_COLOR_OVERRIDE = old_background_color +class FeatureRenderer(nn.Module): + """Standard volumetric rendering for arbitrary features.""" + + def __init__(self) -> None: + super().__init__() + + def forward( + self, + features: Float[Tensor, "*bs num_samples num_features"], + weights: Float[Tensor, "*bs num_samples 1"], + ray_indices: Optional[Int[Tensor, "num_samples"]] = None, + num_rays: Optional[int] = None, + ) -> Float[Tensor, "*bs num_features"]: + """Composite samples along ray and render color image + + Args: + features: Features for each sample + weights: Weights for each sample + ray_indices: Ray index for each sample, used when samples are packed. + num_rays: Number of rays, used when samples are packed. + + Returns: + Outputs + """ + if ray_indices is None or num_rays is None: + # Unpacked + return torch.sum(features * weights, dim=-2) + else: + # Packed + return nerfacc.accumulate_along_rays( + weights[..., 0], values=features, ray_indices=ray_indices, n_rays=num_rays + ) + + class RGBRenderer(nn.Module): """Standard volumetric rendering. @@ -433,6 +468,8 @@ def forward( normals: Float[Tensor, "*bs num_samples 3"], weights: Float[Tensor, "*bs num_samples 1"], normalize: bool = True, + ray_indices: Optional[Int[Tensor, "num_samples"]] = None, + num_rays: Optional[int] = None, ) -> Float[Tensor, "*bs 3"]: """Calculate normals along the ray. @@ -440,8 +477,13 @@ def forward( normals: Normals for each sample. weights: Weights of each sample. normalize: Normalize normals. + ray_indices: Ray index for each sample, used when samples are packed. + num_rays: Number of rays, used when samples are packed. """ n = torch.sum(weights * normals, dim=-2) + if ray_indices is not None and num_rays is not None: + # Necessary for packed samples from volumetric ray sampler + n = nerfacc.accumulate_along_rays(weights[..., 0], values=normals, ray_indices=ray_indices, n_rays=num_rays) if normalize: n = safe_normalize(n) return n diff --git a/nerfstudio/model_components/utils.py b/nerfstudio/model_components/utils.py new file mode 100644 index 00000000..a8c3b3fa --- /dev/null +++ b/nerfstudio/model_components/utils.py @@ -0,0 +1,41 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# +# 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 Union + +import torch +from torch import Tensor, nn + + +class SigmoidDensity(nn.Module): + """Learnable sigmoid density""" + + def __init__(self, init_val, beta_min=0.0001, learnable_beta=False): + super().__init__() + self.register_buffer("beta_min", torch.tensor(beta_min)) + self.register_parameter("beta", nn.Parameter(init_val * torch.ones(1), requires_grad=learnable_beta)) + + def forward(self, sdf: Tensor, beta: Union[Tensor, None] = None) -> Tensor: + """convert sdf value to density value with beta, if beta is missing, then use learable beta""" + + if beta is None: + beta = self.get_beta() + + # negtive sdf will have large density + return torch.sigmoid(-sdf * beta) + + def get_beta(self): + """return current beta value""" + beta = self.beta.abs() + self.beta_min + return beta diff --git a/nerfstudio/models/ad_model.py b/nerfstudio/models/ad_model.py new file mode 100644 index 00000000..c8de17bb --- /dev/null +++ b/nerfstudio/models/ad_model.py @@ -0,0 +1,121 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# +# 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 collections import defaultdict +from dataclasses import dataclass, field +from typing import Dict, List, Optional, Tuple, Type, Union + +import torch + +from nerfstudio.cameras.camera_optimizers import CameraOptimizer, CameraOptimizerConfig +from nerfstudio.cameras.lidars import Lidars +from nerfstudio.cameras.rays import RayBundle +from nerfstudio.model_components.dynamic_actors import DynamicActors, DynamicActorsConfig +from nerfstudio.models.base_model import Model, ModelConfig +from nerfstudio.utils.poses import inverse as pose_inverse + + +@dataclass +class ADModelConfig(ModelConfig): + """Base model config for all AD models.""" + + _target: Type = field(default_factory=lambda: ADModel) + + rgb_upsample_factor: int = 1 + """Upsample factor for RGB images. For vanilla NeRFs this is 1 (1 pixel per ray).""" + + dynamic_actors: DynamicActorsConfig = field(default_factory=DynamicActorsConfig) + """Dynamic actors configuration.""" + + camera_optimizer: CameraOptimizerConfig = field( + default_factory=lambda: CameraOptimizerConfig(mode="off", trans_l2_penalty=0.1) + ) + """Config of the camera optimizer to use""" + + +class ADModel(Model): + """Base model for all AD models.""" + + config: ADModelConfig + + def forward( + self, ray_bundle: RayBundle, patch_size: Optional[Tuple[int, int]] = None + ) -> Dict[str, Union[torch.Tensor, List]]: + """Forward pass of the model.""" + outputs = super().forward(ray_bundle) + if patch_size is not None and "rgb" in outputs: + if isinstance(outputs["rgb"], torch.Tensor): + # if patch size is given, we must reshape the output to respect it + outputs["rgb"] = outputs["rgb"].reshape(-1, *patch_size, 3) + return outputs + + def populate_modules(self): + """Set the fields and modules.""" + super().populate_modules() + trajectories = self.kwargs["metadata"].get("trajectories") + self.dynamic_actors: DynamicActors = self.config.dynamic_actors.setup(trajectories=trajectories) + self.camera_optimizer: CameraOptimizer = self.config.camera_optimizer.setup( + num_cameras=self.num_train_data, device="cpu" + ) + + def get_param_groups(self) -> Dict[str, List[torch.nn.Parameter]]: + """Get the parameter groups for the optimizer.""" + param_groups = defaultdict(list) + self.camera_optimizer.get_param_groups(param_groups) + self.dynamic_actors.get_param_groups(param_groups) + return param_groups + + def disable_ray_drop(self): + """Disables ray drop for the model.""" + pass + + @torch.no_grad() + def get_outputs_for_lidar( + self, lidar: Lidars, batch: Dict[str, torch.Tensor] + ) -> Tuple[Dict[str, torch.Tensor], Dict[str, torch.Tensor]]: + """Takes in a lidar, generates the raybundle, and computes the output of the model. + Assumes a ray-based model. + + Args: + camera: generates raybundle + """ + points = batch["lidar"] + lidar_indices = torch.zeros_like(points[:, 0:1]).long() + ray_bundle = lidar.generate_rays(lidar_indices=lidar_indices, points=points, keep_shape=True) + # TODO: Can we avoid needing to pass this from the raybundle to the batch? + batch["is_lidar"] = ray_bundle.metadata["is_lidar"] + batch["distance"] = ray_bundle.metadata["directions_norm"] + batch["did_return"] = ray_bundle.metadata["did_return"] + + outputs = self.get_outputs_for_camera_ray_bundle(ray_bundle) + + # add points in local coords to model outputs + l2w = lidar.lidar_to_worlds[0].to(self.device) + w2l = pose_inverse(l2w) + points = ray_bundle.origins + ray_bundle.directions * outputs["depth"] + outputs["points"] = (w2l @ torch.cat([points, torch.ones_like(points[..., :1])], dim=-1).unsqueeze(-1)).squeeze( + -1 + ) + return outputs, batch + + @torch.no_grad() + def get_outputs_for_camera_ray_bundle(self, camera_ray_bundle: RayBundle) -> Dict[str, torch.Tensor]: + """Takes in camera parameters and computes the output of the model. + + Args: + camera_ray_bundle: ray bundle to calculate outputs over + """ + if len(camera_ray_bundle.shape) == 1: # lidar + return self.forward(ray_bundle=camera_ray_bundle) # type: ignore + else: # camera + return super().get_outputs_for_camera_ray_bundle(camera_ray_bundle) diff --git a/nerfstudio/models/base_surface_model.py b/nerfstudio/models/base_surface_model.py deleted file mode 100644 index 99296832..00000000 --- a/nerfstudio/models/base_surface_model.py +++ /dev/null @@ -1,405 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -""" -Implementation of Base surface model. -""" - -from __future__ import annotations - -from abc import abstractmethod -from dataclasses import dataclass, field -from typing import Any, Dict, List, Literal, Tuple, Type, cast - -import torch -import torch.nn.functional as F -from torch.nn import Parameter - -from nerfstudio.cameras.rays import RayBundle -from nerfstudio.field_components.encodings import NeRFEncoding -from nerfstudio.field_components.field_heads import FieldHeadNames -from nerfstudio.field_components.spatial_distortions import SceneContraction -from nerfstudio.fields.nerfacto_field import NerfactoField -from nerfstudio.fields.sdf_field import SDFFieldConfig -from nerfstudio.fields.vanilla_nerf_field import NeRFField -from nerfstudio.model_components.losses import L1Loss, MSELoss, ScaleAndShiftInvariantLoss, monosdf_normal_loss -from nerfstudio.model_components.ray_samplers import LinearDisparitySampler -from nerfstudio.model_components.renderers import AccumulationRenderer, DepthRenderer, RGBRenderer, SemanticRenderer -from nerfstudio.model_components.scene_colliders import AABBBoxCollider, NearFarCollider -from nerfstudio.models.base_model import Model, ModelConfig -from nerfstudio.utils import colormaps -from nerfstudio.utils.colors import get_color -from nerfstudio.utils.math import normalized_depth_scale_and_shift - - -@dataclass -class SurfaceModelConfig(ModelConfig): - """Surface Model Config""" - - _target: Type = field(default_factory=lambda: SurfaceModel) - near_plane: float = 0.05 - """How far along the ray to start sampling.""" - far_plane: float = 4.0 - """How far along the ray to stop sampling.""" - far_plane_bg: float = 1000.0 - """How far along the ray to stop sampling of the background model.""" - background_color: Literal["random", "last_sample", "white", "black"] = "black" - """Whether to randomize the background color.""" - use_average_appearance_embedding: bool = False - """Whether to use average appearance embedding or zeros for inference.""" - eikonal_loss_mult: float = 0.1 - """Monocular normal consistency loss multiplier.""" - fg_mask_loss_mult: float = 0.01 - """Foreground mask loss multiplier.""" - mono_normal_loss_mult: float = 0.0 - """Monocular normal consistency loss multiplier.""" - mono_depth_loss_mult: float = 0.0 - """Monocular depth consistency loss multiplier.""" - sdf_field: SDFFieldConfig = field(default_factory=SDFFieldConfig) - """Config for SDF Field""" - background_model: Literal["grid", "mlp", "none"] = "mlp" - """background models""" - num_samples_outside: int = 32 - """Number of samples outside the bounding sphere for background""" - periodic_tvl_mult: float = 0.0 - """Total variational loss multiplier""" - overwrite_near_far_plane: bool = False - """whether to use near and far collider from command line""" - - -class SurfaceModel(Model): - """Base surface model - - Args: - config: Base surface model configuration to instantiate model - """ - - config: SurfaceModelConfig - - def populate_modules(self): - """Set the fields and modules.""" - super().populate_modules() - - self.scene_contraction = SceneContraction(order=float("inf")) - - # Can we also use contraction for sdf? - # Fields - self.field = self.config.sdf_field.setup( - aabb=self.scene_box.aabb, - spatial_distortion=self.scene_contraction, - num_images=self.num_train_data, - use_average_appearance_embedding=self.config.use_average_appearance_embedding, - ) - - # Collider - self.collider = AABBBoxCollider(self.scene_box, near_plane=0.05) - - # command line near and far has highest priority - if self.config.overwrite_near_far_plane: - self.collider = NearFarCollider(near_plane=self.config.near_plane, far_plane=self.config.far_plane) - - # background model - if self.config.background_model == "grid": - self.field_background = NerfactoField( - self.scene_box.aabb, - spatial_distortion=self.scene_contraction, - num_images=self.num_train_data, - use_average_appearance_embedding=self.config.use_average_appearance_embedding, - ) - elif self.config.background_model == "mlp": - position_encoding = NeRFEncoding( - in_dim=3, num_frequencies=10, min_freq_exp=0.0, max_freq_exp=9.0, include_input=True - ) - direction_encoding = NeRFEncoding( - in_dim=3, num_frequencies=4, min_freq_exp=0.0, max_freq_exp=3.0, include_input=True - ) - - self.field_background = NeRFField( - position_encoding=position_encoding, - direction_encoding=direction_encoding, - spatial_distortion=self.scene_contraction, - ) - else: - # dummy background model - self.field_background = Parameter(torch.ones(1), requires_grad=False) - - self.sampler_bg = LinearDisparitySampler(num_samples=self.config.num_samples_outside) - - # renderers - background_color = ( - get_color(self.config.background_color) - if self.config.background_color in set(["white", "black"]) - else self.config.background_color - ) - self.renderer_rgb = RGBRenderer(background_color=background_color) - self.renderer_accumulation = AccumulationRenderer() - self.renderer_depth = DepthRenderer(method="expected") - self.renderer_normal = SemanticRenderer() - - # losses - self.rgb_loss = L1Loss() - self.eikonal_loss = MSELoss() - self.depth_loss = ScaleAndShiftInvariantLoss(alpha=0.5, scales=1) - - # metrics - from torchmetrics.functional import structural_similarity_index_measure - from torchmetrics.image import PeakSignalNoiseRatio - from torchmetrics.image.lpip import LearnedPerceptualImagePatchSimilarity - - self.psnr = PeakSignalNoiseRatio(data_range=1.0) - self.ssim = structural_similarity_index_measure - self.lpips = LearnedPerceptualImagePatchSimilarity() - - def get_param_groups(self) -> Dict[str, List[Parameter]]: - param_groups = {} - param_groups["fields"] = list(self.field.parameters()) - param_groups["field_background"] = ( - [self.field_background] - if isinstance(self.field_background, Parameter) - else list(self.field_background.parameters()) - ) - return param_groups - - @abstractmethod - def sample_and_forward_field(self, ray_bundle: RayBundle) -> Dict[str, Any]: - """Takes in a Ray Bundle and returns a dictionary of samples and field output. - - Args: - ray_bundle: Input bundle of rays. This raybundle should have all the - needed information to compute the outputs. - - Returns: - Outputs of model. (ie. rendered colors) - """ - - def get_outputs(self, ray_bundle: RayBundle) -> Dict[str, torch.Tensor]: - """Takes in a Ray Bundle and returns a dictionary of outputs. - - Args: - ray_bundle: Input bundle of rays. This raybundle should have all the - needed information to compute the outputs. - - Returns: - Outputs of model. (ie. rendered colors) - """ - assert ( - ray_bundle.metadata is not None and "directions_norm" in ray_bundle.metadata - ), "directions_norm is required in ray_bundle.metadata" - - samples_and_field_outputs = self.sample_and_forward_field(ray_bundle=ray_bundle) - - # shortcuts - field_outputs: Dict[FieldHeadNames, torch.Tensor] = cast( - Dict[FieldHeadNames, torch.Tensor], samples_and_field_outputs["field_outputs"] - ) - ray_samples = samples_and_field_outputs["ray_samples"] - weights = samples_and_field_outputs["weights"] - bg_transmittance = samples_and_field_outputs["bg_transmittance"] - - rgb = self.renderer_rgb(rgb=field_outputs[FieldHeadNames.RGB], weights=weights) - depth = self.renderer_depth(weights=weights, ray_samples=ray_samples) - # the rendered depth is point-to-point distance and we should convert to depth - depth = depth / ray_bundle.metadata["directions_norm"] - - normal = self.renderer_normal(semantics=field_outputs[FieldHeadNames.NORMALS], weights=weights) - accumulation = self.renderer_accumulation(weights=weights) - - # background model - if self.config.background_model != "none": - assert isinstance(self.field_background, torch.nn.Module), "field_background should be a module" - assert ray_bundle.fars is not None, "fars is required in ray_bundle" - # sample inversely from far to 1000 and points and forward the bg model - ray_bundle.nears = ray_bundle.fars - assert ray_bundle.fars is not None - ray_bundle.fars = torch.ones_like(ray_bundle.fars) * self.config.far_plane_bg - - ray_samples_bg = self.sampler_bg(ray_bundle) - # use the same background model for both density field and occupancy field - assert not isinstance(self.field_background, Parameter) - field_outputs_bg = self.field_background(ray_samples_bg) - weights_bg = ray_samples_bg.get_weights(field_outputs_bg[FieldHeadNames.DENSITY]) - - rgb_bg = self.renderer_rgb(rgb=field_outputs_bg[FieldHeadNames.RGB], weights=weights_bg) - depth_bg = self.renderer_depth(weights=weights_bg, ray_samples=ray_samples_bg) - accumulation_bg = self.renderer_accumulation(weights=weights_bg) - - # merge background color to foregound color - rgb = rgb + bg_transmittance * rgb_bg - - bg_outputs = { - "bg_rgb": rgb_bg, - "bg_accumulation": accumulation_bg, - "bg_depth": depth_bg, - "bg_weights": weights_bg, - } - else: - bg_outputs = {} - - outputs = { - "rgb": rgb, - "accumulation": accumulation, - "depth": depth, - "normal": normal, - "weights": weights, - # used to scale z_vals for free space and sdf loss - "directions_norm": ray_bundle.metadata["directions_norm"], - } - outputs.update(bg_outputs) - - if self.training: - grad_points = field_outputs[FieldHeadNames.GRADIENT] - outputs.update({"eik_grad": grad_points}) - outputs.update(samples_and_field_outputs) - - if "weights_list" in samples_and_field_outputs: - weights_list = cast(List[torch.Tensor], samples_and_field_outputs["weights_list"]) - ray_samples_list = cast(List[torch.Tensor], samples_and_field_outputs["ray_samples_list"]) - - for i in range(len(weights_list) - 1): - outputs[f"prop_depth_{i}"] = self.renderer_depth( - weights=weights_list[i], ray_samples=ray_samples_list[i] - ) - # this is used only in viewer - outputs["normal_vis"] = (outputs["normal"] + 1.0) / 2.0 - return outputs - - def get_loss_dict(self, outputs, batch, metrics_dict=None) -> Dict[str, torch.Tensor]: - """Computes and returns the losses dict. - - Args: - outputs: the output to compute loss dict to - batch: ground truth batch corresponding to outputs - metrics_dict: dictionary of metrics, some of which we can use for loss - """ - loss_dict = {} - image = batch["image"].to(self.device) - pred_image, image = self.renderer_rgb.blend_background_for_loss_computation( - pred_image=outputs["rgb"], - pred_accumulation=outputs["accumulation"], - gt_image=image, - ) - loss_dict["rgb_loss"] = self.rgb_loss(image, pred_image) - if self.training: - # eikonal loss - grad_theta = outputs["eik_grad"] - loss_dict["eikonal_loss"] = ((grad_theta.norm(2, dim=-1) - 1) ** 2).mean() * self.config.eikonal_loss_mult - - # foreground mask loss - if "fg_mask" in batch and self.config.fg_mask_loss_mult > 0.0: - fg_label = batch["fg_mask"].float().to(self.device) - weights_sum = outputs["weights"].sum(dim=1).clip(1e-3, 1.0 - 1e-3) - loss_dict["fg_mask_loss"] = ( - F.binary_cross_entropy(weights_sum, fg_label) * self.config.fg_mask_loss_mult - ) - - # monocular normal loss - if "normal" in batch and self.config.mono_normal_loss_mult > 0.0: - normal_gt = batch["normal"].to(self.device) - normal_pred = outputs["normal"] - loss_dict["normal_loss"] = ( - monosdf_normal_loss(normal_pred, normal_gt) * self.config.mono_normal_loss_mult - ) - - # monocular depth loss - if "depth" in batch and self.config.mono_depth_loss_mult > 0.0: - depth_gt = batch["depth"].to(self.device)[..., None] - depth_pred = outputs["depth"] - - mask = torch.ones_like(depth_gt).reshape(1, 32, -1).bool() - loss_dict["depth_loss"] = ( - self.depth_loss(depth_pred.reshape(1, 32, -1), (depth_gt * 50 + 0.5).reshape(1, 32, -1), mask) - * self.config.mono_depth_loss_mult - ) - - return loss_dict - - def get_metrics_dict(self, outputs, batch) -> Dict[str, torch.Tensor]: - """Compute and returns metrics. - - Args: - outputs: the output to compute loss dict to - batch: ground truth batch corresponding to outputs - """ - metrics_dict = {} - image = batch["image"].to(self.device) - image = self.renderer_rgb.blend_background(image) - metrics_dict["psnr"] = self.psnr(outputs["rgb"], image) - return metrics_dict - - def get_image_metrics_and_images( - self, outputs: Dict[str, torch.Tensor], batch: Dict[str, torch.Tensor] - ) -> Tuple[Dict[str, float], Dict[str, torch.Tensor]]: - """Writes the test image outputs. - Args: - outputs: Outputs of the model. - batch: Batch of data. - - Returns: - A dictionary of metrics. - """ - image = batch["image"].to(self.device) - image = self.renderer_rgb.blend_background(image) - rgb = outputs["rgb"] - acc = colormaps.apply_colormap(outputs["accumulation"]) - - normal = outputs["normal"] - normal = (normal + 1.0) / 2.0 - - combined_rgb = torch.cat([image, rgb], dim=1) - combined_acc = torch.cat([acc], dim=1) - if "depth" in batch: - depth_gt = batch["depth"].to(self.device) - depth_pred = outputs["depth"] - - # align to predicted depth and normalize - scale, shift = normalized_depth_scale_and_shift( - depth_pred[None, ..., 0], depth_gt[None, ...], depth_gt[None, ...] > 0.0 - ) - depth_pred = depth_pred * scale + shift - - combined_depth = torch.cat([depth_gt[..., None], depth_pred], dim=1) - combined_depth = colormaps.apply_depth_colormap(combined_depth) - else: - depth = colormaps.apply_depth_colormap( - outputs["depth"], - accumulation=outputs["accumulation"], - ) - combined_depth = torch.cat([depth], dim=1) - - if "normal" in batch: - normal_gt = (batch["normal"].to(self.device) + 1.0) / 2.0 - combined_normal = torch.cat([normal_gt, normal], dim=1) - else: - combined_normal = torch.cat([normal], dim=1) - - images_dict = { - "img": combined_rgb, - "accumulation": combined_acc, - "depth": combined_depth, - "normal": combined_normal, - } - - # Switch images from [H, W, C] to [1, C, H, W] for metrics computations - image = torch.moveaxis(image, -1, 0)[None, ...] - rgb = torch.moveaxis(rgb, -1, 0)[None, ...] - - psnr = self.psnr(image, rgb) - ssim = self.ssim(image, rgb) - lpips = self.lpips(image, rgb) - - # all of these metrics will be logged as scalars - metrics_dict = {"psnr": float(psnr.item()), "ssim": float(ssim)} # type: ignore - metrics_dict["lpips"] = float(lpips) - - return metrics_dict, images_dict diff --git a/nerfstudio/models/depth_nerfacto.py b/nerfstudio/models/depth_nerfacto.py deleted file mode 100644 index 1a47ab16..00000000 --- a/nerfstudio/models/depth_nerfacto.py +++ /dev/null @@ -1,157 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -""" -Nerfacto augmented with depth supervision. -""" - -from __future__ import annotations - -from dataclasses import dataclass, field -from typing import Dict, Tuple, Type - -import numpy as np -import torch - -from nerfstudio.cameras.rays import RayBundle -from nerfstudio.model_components import losses -from nerfstudio.model_components.losses import DepthLossType, depth_loss, depth_ranking_loss -from nerfstudio.models.nerfacto import NerfactoModel, NerfactoModelConfig -from nerfstudio.utils import colormaps - - -@dataclass -class DepthNerfactoModelConfig(NerfactoModelConfig): - """Additional parameters for depth supervision.""" - - _target: Type = field(default_factory=lambda: DepthNerfactoModel) - depth_loss_mult: float = 1e-3 - """Lambda of the depth loss.""" - is_euclidean_depth: bool = False - """Whether input depth maps are Euclidean distances (or z-distances).""" - depth_sigma: float = 0.01 - """Uncertainty around depth values in meters (defaults to 1cm).""" - should_decay_sigma: bool = False - """Whether to exponentially decay sigma.""" - starting_depth_sigma: float = 0.2 - """Starting uncertainty around depth values in meters (defaults to 0.2m).""" - sigma_decay_rate: float = 0.99985 - """Rate of exponential decay.""" - depth_loss_type: DepthLossType = DepthLossType.DS_NERF - """Depth loss type.""" - - -class DepthNerfactoModel(NerfactoModel): - """Depth loss augmented nerfacto model. - - Args: - config: Nerfacto configuration to instantiate model - """ - - config: DepthNerfactoModelConfig - - def populate_modules(self): - """Set the fields and modules.""" - super().populate_modules() - - if self.config.should_decay_sigma: - self.depth_sigma = torch.tensor([self.config.starting_depth_sigma]) - else: - self.depth_sigma = torch.tensor([self.config.depth_sigma]) - - def get_outputs(self, ray_bundle: RayBundle): - outputs = super().get_outputs(ray_bundle) - if ray_bundle.metadata is not None and "directions_norm" in ray_bundle.metadata: - outputs["directions_norm"] = ray_bundle.metadata["directions_norm"] - return outputs - - def get_metrics_dict(self, outputs, batch): - metrics_dict = super().get_metrics_dict(outputs, batch) - if self.training: - if ( - losses.FORCE_PSEUDODEPTH_LOSS - and self.config.depth_loss_type not in losses.PSEUDODEPTH_COMPATIBLE_LOSSES - ): - raise ValueError( - f"Forcing pseudodepth loss, but depth loss type ({self.config.depth_loss_type}) must be one of {losses.PSEUDODEPTH_COMPATIBLE_LOSSES}" - ) - if self.config.depth_loss_type in (DepthLossType.DS_NERF, DepthLossType.URF): - metrics_dict["depth_loss"] = 0.0 - sigma = self._get_sigma().to(self.device) - termination_depth = batch["depth_image"].to(self.device) - for i in range(len(outputs["weights_list"])): - metrics_dict["depth_loss"] += depth_loss( - weights=outputs["weights_list"][i], - ray_samples=outputs["ray_samples_list"][i], - termination_depth=termination_depth, - predicted_depth=outputs["expected_depth"], - sigma=sigma, - directions_norm=outputs["directions_norm"], - is_euclidean=self.config.is_euclidean_depth, - depth_loss_type=self.config.depth_loss_type, - ) / len(outputs["weights_list"]) - elif self.config.depth_loss_type in (DepthLossType.SPARSENERF_RANKING,): - metrics_dict["depth_ranking"] = depth_ranking_loss( - outputs["expected_depth"], batch["depth_image"].to(self.device) - ) - else: - raise NotImplementedError(f"Unknown depth loss type {self.config.depth_loss_type}") - - return metrics_dict - - def get_loss_dict(self, outputs, batch, metrics_dict=None): - loss_dict = super().get_loss_dict(outputs, batch, metrics_dict) - if self.training: - assert metrics_dict is not None and ("depth_loss" in metrics_dict or "depth_ranking" in metrics_dict) - if "depth_ranking" in metrics_dict: - loss_dict["depth_ranking"] = ( - self.config.depth_loss_mult - * np.interp(self.step, [0, 2000], [0, 0.2]) - * metrics_dict["depth_ranking"] - ) - if "depth_loss" in metrics_dict: - loss_dict["depth_loss"] = self.config.depth_loss_mult * metrics_dict["depth_loss"] - return loss_dict - - def get_image_metrics_and_images( - self, outputs: Dict[str, torch.Tensor], batch: Dict[str, torch.Tensor] - ) -> Tuple[Dict[str, float], Dict[str, torch.Tensor]]: - """Appends ground truth depth to the depth image.""" - metrics, images = super().get_image_metrics_and_images(outputs, batch) - ground_truth_depth = batch["depth_image"].to(self.device) - if not self.config.is_euclidean_depth: - ground_truth_depth = ground_truth_depth * outputs["directions_norm"] - - ground_truth_depth_colormap = colormaps.apply_depth_colormap(ground_truth_depth) - predicted_depth_colormap = colormaps.apply_depth_colormap( - outputs["depth"], - accumulation=outputs["accumulation"], - near_plane=float(torch.min(ground_truth_depth).cpu()), - far_plane=float(torch.max(ground_truth_depth).cpu()), - ) - images["depth"] = torch.cat([ground_truth_depth_colormap, predicted_depth_colormap], dim=1) - depth_mask = ground_truth_depth > 0 - metrics["depth_mse"] = float( - torch.nn.functional.mse_loss(outputs["depth"][depth_mask], ground_truth_depth[depth_mask]).cpu() - ) - return metrics, images - - def _get_sigma(self): - if not self.config.should_decay_sigma: - return self.depth_sigma - - self.depth_sigma = torch.maximum( - self.config.sigma_decay_rate * self.depth_sigma, torch.tensor([self.config.depth_sigma]) - ) - return self.depth_sigma diff --git a/nerfstudio/models/generfacto.py b/nerfstudio/models/generfacto.py deleted file mode 100644 index 5c1316ab..00000000 --- a/nerfstudio/models/generfacto.py +++ /dev/null @@ -1,520 +0,0 @@ -# Copyright 2022 The Nerfstudio Team. All rights reserved. -# -# 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. - -""" -Nerfstudio's Text to 3D model. -""" - -from __future__ import annotations - -from dataclasses import dataclass, field -from typing import Dict, List, Optional, Tuple, Type - -import numpy as np -import torch -from torch.nn import Parameter -from typing_extensions import Literal - -from nerfstudio.cameras.rays import RayBundle -from nerfstudio.engine.callbacks import TrainingCallback, TrainingCallbackAttributes, TrainingCallbackLocation -from nerfstudio.field_components.field_heads import FieldHeadNames -from nerfstudio.fields.density_fields import HashMLPDensityField -from nerfstudio.fields.generfacto_field import GenerfactoField -from nerfstudio.generative.deepfloyd import DeepFloyd -from nerfstudio.generative.positional_text_embeddings import PositionalTextEmbeddings -from nerfstudio.generative.stable_diffusion import StableDiffusion -from nerfstudio.model_components.losses import MSELoss, distortion_loss, interlevel_loss, orientation_loss -from nerfstudio.model_components.ray_samplers import ProposalNetworkSampler, UniformSampler -from nerfstudio.model_components.renderers import AccumulationRenderer, DepthRenderer, NormalsRenderer, RGBRenderer -from nerfstudio.model_components.scene_colliders import AABBBoxCollider, SphereCollider -from nerfstudio.model_components.shaders import LambertianShader, NormalsShader -from nerfstudio.models.base_model import Model, ModelConfig -from nerfstudio.utils import colormaps, math, misc - - -@dataclass -class GenerfactoModelConfig(ModelConfig): - """Generfacto model config""" - - _target: Type = field(default_factory=lambda: GenerfactoModel) - """target class to instantiate""" - prompt: str = "a high quality photo of a ripe pineapple" - """prompt for stable dreamfusion""" - background_color: Literal["random", "last_sample", "black", "white"] = "white" - """Whether to randomize the background color.""" - orientation_loss_mult: Tuple[float, float] = (0.001, 10.0) - """Orientation loss multipier on computed normals.""" - orientation_loss_mult_range: Tuple[int, int] = (0, 15000) - """number of iterations to reach last orientation_loss_mult value""" - random_light_source: bool = True - """Randomizes light source per output.""" - initialize_density: bool = True - """Initialize density in center of scene.""" - taper_range: Tuple[int, int] = (0, 1000) - """Range of step values for the density tapering""" - taper_strength: Tuple[float, float] = (1.0, 0.0) - """Strength schedule of center density""" - sphere_collider: bool = True - """Use spherical collider instead of box""" - random_background: bool = True - """Randomly choose between using background mlp and random color for background""" - - target_transmittance_start: float = 0.4 - """target transmittance for opacity penalty. This is the percent of the scene that is - background when rendered at the start of training""" - target_transmittance_end: float = 0.7 - """target transmittance for opacity penalty. This is the percent of the scene that is - background when rendered at the end of training""" - transmittance_end_schedule: int = 1500 - """number of iterations to reach target_transmittance_end""" - - num_proposal_samples_per_ray: Tuple[int, ...] = (256, 96) - """Number of samples per ray for each proposal network.""" - num_nerf_samples_per_ray: int = 48 - """Number of samples per ray for the nerf network.""" - proposal_update_every: int = 5 - """Sample every n steps after the warmup""" - proposal_warmup: int = 5000 - """Scales n from 1 to proposal_update_every over this many steps""" - num_proposal_iterations: int = 2 - """Number of proposal network iterations.""" - use_same_proposal_network: bool = False - """Use the same proposal network. Otherwise use different ones.""" - proposal_net_args_list: List[Dict] = field( - default_factory=lambda: [ - {"hidden_dim": 16, "log2_hashmap_size": 17, "num_levels": 5, "max_res": 128}, - {"hidden_dim": 16, "log2_hashmap_size": 17, "num_levels": 5, "max_res": 256}, - ] - ) - """Arguments for the proposal density fields.""" - proposal_weights_anneal_slope: float = 10.0 - """Slope of the annealing function for the proposal weights.""" - proposal_weights_anneal_max_num_iters: int = 500 - """Max num iterations for the annealing function.""" - use_single_jitter: bool = True - """Whether use single jitter or not for the proposal networks.""" - interlevel_loss_mult: float = 1.0 - """Proposal loss multiplier.""" - distortion_loss_mult: float = 1.0 - """Distortion loss multiplier.""" - start_normals_training: int = 1000 - """Start training normals after this many iterations""" - start_lambertian_training: int = 1000 - """start training with lambertian shading after this many iterations""" - opacity_penalty: bool = True - """enables penalty to encourage sparse weights (penalizing for uniform density along ray)""" - opacity_loss_mult: float = 1 - """scale for opacity penalty""" - max_res: int = 256 - """Maximum resolution of the density field.""" - - location_based_prompting: bool = True - """enables location based prompting""" - interpolated_prompting: bool = False - """enables interpolated location prompting""" - positional_prompting: Literal["discrete", "interpolated", "off"] = "discrete" - """ how to incorporate position into prompt""" - top_prompt: str = ", overhead view" - """appended to prompt for overhead view""" - side_prompt: str = ", side view" - """appended to prompt for side view""" - front_prompt: str = ", front view" - """appended to prompt for front view""" - back_prompt: str = ", back view" - """appended to prompt for back view""" - guidance_scale: float = 20 - """guidance scale for sds loss""" - diffusion_device: Optional[str] = None - """device for diffusion model""" - diffusion_model: Literal["stablediffusion", "deepfloyd"] = "deepfloyd" - """diffusion model for SDS loss""" - sd_version: str = "1-5" - """model version when using stable diffusion""" - implementation: Literal["tcnn", "torch"] = "tcnn" - """Which implementation to use for the model.""" - - -class GenerfactoModel(Model): - """Generfacto Model - - Args: - config: Generfacto configuration to instantiate model - """ - - config: GenerfactoModelConfig - - def __init__( - self, - config: GenerfactoModelConfig, - **kwargs, - ) -> None: - self.prompt = config.prompt - self.cur_prompt = config.prompt - self.sd_version = config.sd_version - self.initialize_density = config.initialize_density - self.train_normals = False - self.train_shaded = False - self.random_background = config.random_background - self.density_strength = 1.0 - self.target_transmittance = config.target_transmittance_start - self.grad_scaler = kwargs["grad_scaler"] - - self.guidance_scale = config.guidance_scale - self.top_prompt = config.top_prompt - self.side_prompt = config.side_prompt - self.back_prompt = config.back_prompt - self.front_prompt = config.front_prompt - - self.diffusion_device = ( - torch.device(kwargs["device"]) if config.diffusion_device is None else torch.device(config.diffusion_device) - ) - - super().__init__(config=config, **kwargs) - - def populate_modules(self): - """Set the fields and modules""" - super().populate_modules() - - if self.config.diffusion_model == "stablediffusion": - self._diffusion_model = StableDiffusion(self.diffusion_device, version=self.sd_version) - elif self.config.diffusion_model == "deepfloyd": - self._diffusion_model = DeepFloyd(self.diffusion_device) - - self.text_embeddings = PositionalTextEmbeddings( - base_prompt=self.cur_prompt, - top_prompt=self.cur_prompt + self.top_prompt, - side_prompt=self.cur_prompt + self.side_prompt, - back_prompt=self.cur_prompt + self.back_prompt, - front_prompt=self.cur_prompt + self.front_prompt, - diffusion_model=self._diffusion_model, - positional_prompting=self.config.positional_prompting, - ) - - # setting up fields - self.field = GenerfactoField(self.scene_box.aabb, max_res=self.config.max_res) - - # samplers - self.density_fns = [] - num_prop_nets = self.config.num_proposal_iterations - # Build the proposal network(s) - self.proposal_networks = torch.nn.ModuleList() - - for i in range(num_prop_nets): - prop_net_args = self.config.proposal_net_args_list[min(i, len(self.config.proposal_net_args_list) - 1)] - network = HashMLPDensityField( - self.scene_box.aabb, **prop_net_args, implementation=self.config.implementation - ) - self.proposal_networks.append(network) - self.density_fns.extend([network.density_fn for network in self.proposal_networks]) - - def update_schedule(step): - return np.clip( - np.interp(step, [0, self.config.proposal_warmup], [0, self.config.proposal_update_every]), - 1, - self.config.proposal_update_every, - ) - - self.proposal_sampler = ProposalNetworkSampler( - num_nerf_samples_per_ray=self.config.num_nerf_samples_per_ray, - num_proposal_samples_per_ray=self.config.num_proposal_samples_per_ray, - num_proposal_network_iterations=self.config.num_proposal_iterations, - single_jitter=self.config.use_single_jitter, - update_sched=update_schedule, - initial_sampler=UniformSampler(single_jitter=self.config.use_single_jitter), - ) - - # renderers - self.renderer_rgb = RGBRenderer(background_color=self.config.background_color) - self.renderer_accumulation = AccumulationRenderer() - self.renderer_depth = DepthRenderer() - self.renderer_normals = NormalsRenderer() - - # shaders - self.shader_lambertian = LambertianShader() - self.shader_normals = NormalsShader() - - # losses - self.rgb_loss = MSELoss() - - # colliders - if self.config.sphere_collider: - self.collider = SphereCollider(torch.Tensor([0, 0, 0]), 1.0) - else: - self.collider = AABBBoxCollider(scene_box=self.scene_box) - - def get_training_callbacks( - self, training_callback_attributes: TrainingCallbackAttributes - ) -> List[TrainingCallback]: - # the callback that we want to run every X iterations after the training iteration - def taper_density( - self, - training_callback_attributes: TrainingCallbackAttributes, - step: int, # pylint: disable=unused-argument - ): - self.density_strength = np.interp(step, self.config.taper_range, self.config.taper_strength) - - def start_training_normals( - self, - training_callback_attributes: TrainingCallbackAttributes, - step: int, # pylint: disable=unused-argument - ): - self.train_normals = True - - def start_shaded_training( - self, - training_callback_attributes: TrainingCallbackAttributes, - step: int, # pylint: disable=unused-argument - ): - self.train_shaded = True - - def update_orientation_loss_mult( - self, - training_callback_attributes: TrainingCallbackAttributes, - step: int, # pylint: disable=unused-argument - ): - if step <= self.config.start_normals_training: - self.orientation_loss_mult = 0 - else: - self.orientation_loss_mult = np.interp( - step, - self.config.orientation_loss_mult_range, - self.config.orientation_loss_mult, - ) - - # anneal the weights of the proposal network before doing PDF sampling - def set_anneal(step): - # https://arxiv.org/pdf/2111.12077.pdf eq. 18 - train_frac = np.clip(step / self.config.proposal_weights_anneal_max_num_iters, 0, 1) - - def bias(x, b): - return b * x / ((b - 1) * x + 1) - - anneal = bias(train_frac, self.config.proposal_weights_anneal_slope) - self.proposal_sampler.set_anneal(anneal) - - callbacks = [ - TrainingCallback( - where_to_run=[TrainingCallbackLocation.AFTER_TRAIN_ITERATION], - func=taper_density, - update_every_num_iters=1, - args=[self, training_callback_attributes], - ), - TrainingCallback( - where_to_run=[TrainingCallbackLocation.AFTER_TRAIN_ITERATION], - iters=(self.config.start_normals_training,), - func=start_training_normals, - args=[self, training_callback_attributes], - ), - TrainingCallback( - where_to_run=[TrainingCallbackLocation.AFTER_TRAIN_ITERATION], - iters=(self.config.start_lambertian_training,), - func=start_shaded_training, - args=[self, training_callback_attributes], - ), - TrainingCallback( - where_to_run=[TrainingCallbackLocation.AFTER_TRAIN_ITERATION], - update_every_num_iters=1, - func=update_orientation_loss_mult, - args=[self, training_callback_attributes], - ), - TrainingCallback( - where_to_run=[TrainingCallbackLocation.AFTER_TRAIN_ITERATION], - update_every_num_iters=1, - func=self.proposal_sampler.step_cb, - ), - TrainingCallback( - where_to_run=[TrainingCallbackLocation.BEFORE_TRAIN_ITERATION], - update_every_num_iters=1, - func=set_anneal, - ), - ] - return callbacks - - def get_param_groups(self) -> Dict[str, List[Parameter]]: - param_groups = {} - param_groups["proposal_networks"] = list(self.proposal_networks.parameters()) - param_groups["fields"] = list(self.field.parameters()) - return param_groups - - def get_outputs(self, ray_bundle: RayBundle): # pylint: disable=too-many-statements - # uniform sampling - background_rgb = self.field.get_background_rgb(ray_bundle) - ray_samples, weights_list, ray_samples_list = self.proposal_sampler(ray_bundle, density_fns=self.density_fns) - field_outputs = self.field(ray_samples, compute_normals=True) - density = field_outputs[FieldHeadNames.DENSITY] - - if self.initialize_density: - pos = ray_samples.frustums.get_positions() - density_blob = self.density_strength * (-torch.exp(torch.norm(pos, dim=-1) / 0.4) + 2)[..., None] - density = torch.max(density + density_blob, torch.tensor([0.0], device=self.device)) - - weights = ray_samples.get_weights(density) - weights_list.append(weights) - ray_samples_list.append(ray_samples) - - accumulation = self.renderer_accumulation(weights) - depth = self.renderer_depth(weights, ray_samples) - rgb = self.renderer_rgb(rgb=field_outputs[FieldHeadNames.RGB], weights=weights) - - accum_mask = torch.clamp((torch.nan_to_num(accumulation, nan=0.0)), min=0.0, max=1.0) - accum_mask_inv = 1.0 - accum_mask - - background = accum_mask_inv * background_rgb - - outputs = { - "rgb_only": rgb, - "background_rgb": background_rgb, - "background": background, - "accumulation": accum_mask, - "depth": depth, - } - - # These use a lot of GPU memory, so we avoid storing them for eval. - if self.training: - outputs["weights_list"] = weights_list - outputs["ray_samples_list"] = ray_samples_list - - for i in range(self.config.num_proposal_iterations): - outputs[f"prop_depth_{i}"] = self.renderer_depth(weights=weights_list[i], ray_samples=ray_samples_list[i]) - - normals = self.renderer_normals(normals=field_outputs[FieldHeadNames.NORMALS], weights=weights) - - # lambertian shading - if self.config.random_light_source: # and self.training: - light_d = ray_bundle.origins[0] + torch.randn(3, dtype=torch.float).to(normals) - else: - light_d = ray_bundle.origins[0] - light_d = math.safe_normalize(light_d) - - if (self.train_shaded and np.random.random_sample() > 0.75) or not self.training: - shading_weight = 0.9 - else: - shading_weight = 0.0 - - shaded, shaded_albedo = self.shader_lambertian( - rgb=rgb, normals=normals, light_direction=light_d, shading_weight=shading_weight, detach_normals=False - ) - - shaded, shaded_albedo = accum_mask * shaded, accum_mask * shaded_albedo - - outputs["normals"] = self.shader_normals(normals, weights=accum_mask) - outputs["shaded"] = shaded - outputs["other_train_output"] = shaded_albedo + background - outputs["shaded_albedo"] = shaded_albedo - outputs["rgb"] = accum_mask * rgb + background - - # while training 50% of the time use a random background - if np.random.random_sample() < 0.5 and self.random_background and self.training: - background = torch.ones_like(background) * torch.rand(3, device=self.device) * accum_mask_inv - - if shading_weight > 0: - samp = np.random.random_sample() - if samp > 0.5: - outputs["train_output"] = outputs["shaded"] - else: - outputs["train_output"] = shaded_albedo + background - else: - outputs["train_output"] = accum_mask * rgb + background - - outputs["rendered_orientation_loss"] = orientation_loss( - weights.detach(), field_outputs[FieldHeadNames.NORMALS], ray_bundle.directions - ) - - assert weights.shape[-1] == 1 - if self.config.opacity_penalty: - outputs["opacity_loss"] = torch.sqrt(torch.sum(weights, dim=-2) ** 2 + 0.01) * self.config.opacity_loss_mult - - return outputs - - def get_loss_dict(self, outputs, batch, metrics_dict=None) -> Dict[str, torch.Tensor]: - # Scaling metrics by coefficients to create the losses. - - loss_dict = {} - loss_dict = misc.scale_dict(loss_dict, self.config.loss_coefficients) - if self.train_normals: - # orientation loss for computed normals - loss_dict["orientation_loss"] = self.orientation_loss_mult * torch.mean( - outputs["rendered_orientation_loss"] - ) - else: - loss_dict["orientation_loss"] = 0 - - if self.config.opacity_penalty: - loss_dict["opacity_loss"] = self.config.opacity_loss_mult * outputs["opacity_loss"].mean() - - if self.prompt != self.cur_prompt: - self.cur_prompt = self.prompt - self.text_embeddings.update_prompt( - base_prompt=self.cur_prompt, - top_prompt=self.cur_prompt + self.top_prompt, - side_prompt=self.cur_prompt + self.side_prompt, - back_prompt=self.cur_prompt + self.back_prompt, - front_prompt=self.cur_prompt + self.front_prompt, - ) - - text_embedding = self.text_embeddings.get_text_embedding( - vertical_angle=batch["vertical"], horizontal_angle=batch["central"] - ) - - train_output = ( - outputs["train_output"] - .view(1, int(outputs["train_output"].shape[0] ** 0.5), int(outputs["train_output"].shape[0] ** 0.5), 3) - .permute(0, 3, 1, 2) - ) - - sds_loss = self._diffusion_model.sds_loss( - text_embedding.to(self.diffusion_device), - train_output.to(self.diffusion_device), - guidance_scale=int(self.guidance_scale), - grad_scaler=self.grad_scaler, - ) - - loss_dict["sds_loss"] = sds_loss.to(self.device) - - if self.training: - loss_dict["distortion_loss"] = self.config.distortion_loss_mult * distortion_loss( - outputs["weights_list"], outputs["ray_samples_list"] - ) - loss_dict["interlevel_loss"] = self.config.interlevel_loss_mult * interlevel_loss( - outputs["weights_list"], outputs["ray_samples_list"] - ) - return loss_dict - - def get_image_metrics_and_images( - self, outputs: Dict[str, torch.Tensor], batch: Dict[str, torch.Tensor] - ) -> Tuple[Dict[str, float], Dict[str, torch.Tensor]]: - acc = colormaps.apply_colormap(outputs["accumulation"]) - depth = colormaps.apply_depth_colormap( - outputs["depth"], - accumulation=outputs["accumulation"], - ) - prop_depth_0 = colormaps.apply_depth_colormap( - outputs["prop_depth_0"], - accumulation=outputs["accumulation"], - ) - prop_depth_1 = colormaps.apply_depth_colormap( - outputs["prop_depth_1"], - accumulation=outputs["accumulation"], - ) - - metrics_dict = {} - images_dict = { - "img": outputs["rgb"], - "accumulation": acc, - "depth": depth, - "prop_depth_0": prop_depth_0, - "prop_depth_1": prop_depth_1, - "normals": outputs["normals"], - } - return metrics_dict, images_dict diff --git a/nerfstudio/models/instant_ngp.py b/nerfstudio/models/instant_ngp.py deleted file mode 100644 index 2503e7e2..00000000 --- a/nerfstudio/models/instant_ngp.py +++ /dev/null @@ -1,270 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -""" -Implementation of Instant NGP. -""" - -from __future__ import annotations - -from dataclasses import dataclass, field -from typing import Dict, List, Literal, Optional, Tuple, Type - -import nerfacc -import torch -from torch.nn import Parameter - -from nerfstudio.cameras.rays import RayBundle -from nerfstudio.engine.callbacks import TrainingCallback, TrainingCallbackAttributes, TrainingCallbackLocation -from nerfstudio.field_components.field_heads import FieldHeadNames -from nerfstudio.field_components.spatial_distortions import SceneContraction -from nerfstudio.fields.nerfacto_field import NerfactoField -from nerfstudio.model_components.losses import MSELoss, scale_gradients_by_distance_squared -from nerfstudio.model_components.ray_samplers import VolumetricSampler -from nerfstudio.model_components.renderers import AccumulationRenderer, DepthRenderer, RGBRenderer -from nerfstudio.models.base_model import Model, ModelConfig -from nerfstudio.utils import colormaps - - -@dataclass -class InstantNGPModelConfig(ModelConfig): - """Instant NGP Model Config""" - - _target: Type = field( - default_factory=lambda: NGPModel - ) # We can't write `NGPModel` directly, because `NGPModel` doesn't exist yet - """target class to instantiate""" - enable_collider: bool = False - """Whether to create a scene collider to filter rays.""" - collider_params: Optional[Dict[str, float]] = None - """Instant NGP doesn't use a collider.""" - grid_resolution: int = 128 - """Resolution of the grid used for the field.""" - grid_levels: int = 4 - """Levels of the grid used for the field.""" - max_res: int = 2048 - """Maximum resolution of the hashmap for the base mlp.""" - log2_hashmap_size: int = 19 - """Size of the hashmap for the base mlp""" - alpha_thre: float = 0.01 - """Threshold for opacity skipping.""" - cone_angle: float = 0.004 - """Should be set to 0.0 for blender scenes but 1./256 for real scenes.""" - render_step_size: Optional[float] = None - """Minimum step size for rendering.""" - near_plane: float = 0.05 - """How far along ray to start sampling.""" - far_plane: float = 1e3 - """How far along ray to stop sampling.""" - use_gradient_scaling: bool = False - """Use gradient scaler where the gradients are lower for points closer to the camera.""" - use_appearance_embedding: bool = False - """Whether to use an appearance embedding.""" - background_color: Literal["random", "black", "white"] = "random" - """The color that is given to untrained areas.""" - disable_scene_contraction: bool = False - """Whether to disable scene contraction or not.""" - - -class NGPModel(Model): - """Instant NGP model - - Args: - config: instant NGP configuration to instantiate model - """ - - config: InstantNGPModelConfig - field: NerfactoField - - def __init__(self, config: InstantNGPModelConfig, **kwargs) -> None: - super().__init__(config=config, **kwargs) - - def populate_modules(self): - """Set the fields and modules.""" - super().populate_modules() - - if self.config.disable_scene_contraction: - scene_contraction = None - else: - scene_contraction = SceneContraction(order=float("inf")) - - self.field = NerfactoField( - aabb=self.scene_box.aabb, - appearance_embedding_dim=0 if self.config.use_appearance_embedding else 32, - num_images=self.num_train_data, - log2_hashmap_size=self.config.log2_hashmap_size, - max_res=self.config.max_res, - spatial_distortion=scene_contraction, - ) - - self.scene_aabb = Parameter(self.scene_box.aabb.flatten(), requires_grad=False) - - if self.config.render_step_size is None: - # auto step size: ~1000 samples in the base level grid - self.config.render_step_size = ((self.scene_aabb[3:] - self.scene_aabb[:3]) ** 2).sum().sqrt().item() / 1000 - # Occupancy Grid. - self.occupancy_grid = nerfacc.OccGridEstimator( - roi_aabb=self.scene_aabb, - resolution=self.config.grid_resolution, - levels=self.config.grid_levels, - ) - - # Sampler - self.sampler = VolumetricSampler( - occupancy_grid=self.occupancy_grid, - density_fn=self.field.density_fn, - ) - - # renderers - self.renderer_rgb = RGBRenderer(background_color=self.config.background_color) - self.renderer_accumulation = AccumulationRenderer() - self.renderer_depth = DepthRenderer(method="expected") - - # losses - self.rgb_loss = MSELoss() - - # metrics - from torchmetrics.functional import structural_similarity_index_measure - from torchmetrics.image import PeakSignalNoiseRatio - from torchmetrics.image.lpip import LearnedPerceptualImagePatchSimilarity - - self.psnr = PeakSignalNoiseRatio(data_range=1.0) - self.ssim = structural_similarity_index_measure - self.lpips = LearnedPerceptualImagePatchSimilarity(normalize=True) - - def get_training_callbacks( - self, training_callback_attributes: TrainingCallbackAttributes - ) -> List[TrainingCallback]: - def update_occupancy_grid(step: int): - self.occupancy_grid.update_every_n_steps( - step=step, - occ_eval_fn=lambda x: self.field.density_fn(x) * self.config.render_step_size, - ) - - return [ - TrainingCallback( - where_to_run=[TrainingCallbackLocation.BEFORE_TRAIN_ITERATION], - update_every_num_iters=1, - func=update_occupancy_grid, - ), - ] - - def get_param_groups(self) -> Dict[str, List[Parameter]]: - param_groups = {} - if self.field is None: - raise ValueError("populate_fields() must be called before get_param_groups") - param_groups["fields"] = list(self.field.parameters()) - return param_groups - - def get_outputs(self, ray_bundle: RayBundle): - assert self.field is not None - num_rays = len(ray_bundle) - - with torch.no_grad(): - ray_samples, ray_indices = self.sampler( - ray_bundle=ray_bundle, - near_plane=self.config.near_plane, - far_plane=self.config.far_plane, - render_step_size=self.config.render_step_size, - alpha_thre=self.config.alpha_thre, - cone_angle=self.config.cone_angle, - ) - - field_outputs = self.field(ray_samples) - if self.config.use_gradient_scaling: - field_outputs = scale_gradients_by_distance_squared(field_outputs, ray_samples) - - # accumulation - packed_info = nerfacc.pack_info(ray_indices, num_rays) - weights = nerfacc.render_weight_from_density( - t_starts=ray_samples.frustums.starts[..., 0], - t_ends=ray_samples.frustums.ends[..., 0], - sigmas=field_outputs[FieldHeadNames.DENSITY][..., 0], - packed_info=packed_info, - )[0] - weights = weights[..., None] - - rgb = self.renderer_rgb( - rgb=field_outputs[FieldHeadNames.RGB], - weights=weights, - ray_indices=ray_indices, - num_rays=num_rays, - ) - depth = self.renderer_depth( - weights=weights, ray_samples=ray_samples, ray_indices=ray_indices, num_rays=num_rays - ) - accumulation = self.renderer_accumulation(weights=weights, ray_indices=ray_indices, num_rays=num_rays) - - outputs = { - "rgb": rgb, - "accumulation": accumulation, - "depth": depth, - "num_samples_per_ray": packed_info[:, 1], - } - return outputs - - def get_metrics_dict(self, outputs, batch): - image = batch["image"].to(self.device) - image = self.renderer_rgb.blend_background(image) - metrics_dict = {} - metrics_dict["psnr"] = self.psnr(outputs["rgb"], image) - metrics_dict["num_samples_per_batch"] = outputs["num_samples_per_ray"].sum() - return metrics_dict - - def get_loss_dict(self, outputs, batch, metrics_dict=None): - image = batch["image"].to(self.device) - pred_rgb, image = self.renderer_rgb.blend_background_for_loss_computation( - pred_image=outputs["rgb"], - pred_accumulation=outputs["accumulation"], - gt_image=image, - ) - rgb_loss = self.rgb_loss(image, pred_rgb) - loss_dict = {"rgb_loss": rgb_loss} - return loss_dict - - def get_image_metrics_and_images( - self, outputs: Dict[str, torch.Tensor], batch: Dict[str, torch.Tensor] - ) -> Tuple[Dict[str, float], Dict[str, torch.Tensor]]: - image = batch["image"].to(self.device) - image = self.renderer_rgb.blend_background(image) - rgb = outputs["rgb"] - acc = colormaps.apply_colormap(outputs["accumulation"]) - depth = colormaps.apply_depth_colormap( - outputs["depth"], - accumulation=outputs["accumulation"], - ) - - combined_rgb = torch.cat([image, rgb], dim=1) - combined_acc = torch.cat([acc], dim=1) - combined_depth = torch.cat([depth], dim=1) - - # Switch images from [H, W, C] to [1, C, H, W] for metrics computations - image = torch.moveaxis(image, -1, 0)[None, ...] - rgb = torch.moveaxis(rgb, -1, 0)[None, ...] - - psnr = self.psnr(image, rgb) - ssim = self.ssim(image, rgb) - lpips = self.lpips(image, rgb) - - # all of these metrics will be logged as scalars - metrics_dict = {"psnr": float(psnr.item()), "ssim": float(ssim), "lpips": float(lpips)} # type: ignore - # TODO(ethan): return an image dictionary - - images_dict = { - "img": combined_rgb, - "accumulation": combined_acc, - "depth": combined_depth, - } - - return metrics_dict, images_dict diff --git a/nerfstudio/models/lidar_nerfacto.py b/nerfstudio/models/lidar_nerfacto.py new file mode 100644 index 00000000..e059fe8b --- /dev/null +++ b/nerfstudio/models/lidar_nerfacto.py @@ -0,0 +1,137 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# Copyright 2022 The Nerfstudio Team. All rights reserved. +# +# 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. + +""" +Nerfacto augmented with depth supervision. +""" + +from __future__ import annotations + +from dataclasses import dataclass, field +from typing import Dict, Tuple, Type + +import torch + +from nerfstudio.cameras.rays import RayBundle +from nerfstudio.model_components.losses import DepthLossType, depth_loss +from nerfstudio.model_components.renderers import DepthRenderer +from nerfstudio.models.ad_model import ADModel, ADModelConfig +from nerfstudio.models.nerfacto import NerfactoModel, NerfactoModelConfig + + +@dataclass +class LidarNerfactoModelConfig(NerfactoModelConfig, ADModelConfig): + """Additional parameters for depth supervision.""" + + _target: Type = field(default_factory=lambda: LidarNerfactoModel) + depth_loss_mult: float = 1e-3 + """Lambda of the depth loss.""" + is_euclidean_depth: bool = True + """Whether input depth maps are Euclidean distances (or z-distances).""" + depth_sigma: float = 0.01 + """Uncertainty around depth values in meters (defaults to 1cm).""" + should_decay_sigma: bool = True + """Whether to exponentially decay sigma.""" + starting_depth_sigma: float = 0.2 + """Starting uncertainty around depth values in meters (defaults to 0.2m).""" + sigma_decay_rate: float = 0.99985 + """Rate of exponential decay.""" + depth_loss_type: DepthLossType = DepthLossType.DS_NERF + """Depth loss type.""" + use_gradient_scaling: bool = True + """Use gradient scaler where the gradients are lower for points closer to the camera.""" + + +class LidarNerfactoModel(NerfactoModel, ADModel): + """Depth loss augmented nerfacto model. + + Args: + config: Nerfacto configuration to instantiate model + """ + + config: LidarNerfactoModelConfig + + def populate_modules(self): + """Set the fields and modules.""" + super().populate_modules() + + if self.config.should_decay_sigma: + self.depth_sigma = torch.tensor([self.config.starting_depth_sigma]) + else: + self.depth_sigma = torch.tensor([self.config.depth_sigma]) + + self.renderer_depth = DepthRenderer(method="expected") + + self.median_l2 = lambda pred, gt: torch.median((pred - gt) ** 2) + + def get_outputs(self, ray_bundle: RayBundle): + outputs = super().get_outputs(ray_bundle) + if ray_bundle.metadata is not None and "directions_norm" in ray_bundle.metadata: + outputs["directions_norm"] = ray_bundle.metadata["directions_norm"] + if "is_lidar" in ray_bundle.metadata: + outputs["rgb"] = outputs["rgb"][~ray_bundle.metadata["is_lidar"][:, 0]] + return outputs + + def get_metrics_dict(self, outputs, batch): + metrics_dict = super().get_metrics_dict(outputs, batch) + if self.training and "lidar" in batch: + metrics_dict["depth_loss"] = 0.0 + is_lidar = batch["is_lidar"][:, 0] + sigma = self._get_sigma().to(self.device) + pred_depths = [outputs[f"prop_depth_{i}"] for i in range(len(outputs["weights_list"]) - 1)] + pred_depths.append(outputs["depth"]) + lidar_scale = batch.get("lidar_scale", [1.0])[0] + for i in range(len(outputs["weights_list"])): + metrics_dict["depth_loss"] += depth_loss( + weights=outputs["weights_list"][i][is_lidar], + ray_samples=outputs["ray_samples_list"][i][is_lidar], + termination_depth=batch["distance"], + predicted_depth=pred_depths[i][is_lidar], + sigma=sigma * lidar_scale, + directions_norm=outputs["directions_norm"][is_lidar], + is_euclidean=self.config.is_euclidean_depth, + depth_loss_type=self.config.depth_loss_type, + scaling_factor=lidar_scale, + ) / len(outputs["weights_list"]) + + return metrics_dict + + def get_loss_dict(self, outputs, batch, metrics_dict=None): + loss_dict = super().get_loss_dict(outputs, batch, metrics_dict) + if self.training: + assert metrics_dict + if "depth_loss" in metrics_dict: + loss_dict["depth_loss"] = self.config.depth_loss_mult * metrics_dict["depth_loss"] + + return loss_dict + + def get_image_metrics_and_images( + self, outputs: Dict[str, torch.Tensor], batch: Dict[str, torch.Tensor] + ) -> Tuple[Dict[str, float], Dict[str, torch.Tensor]]: + metrics, images = {}, {} + if "image" in batch: + metrics, images = super().get_image_metrics_and_images(outputs, batch) + if "lidar" in batch: + metrics["depth_median_l2"] = float(self.median_l2(outputs["depth"], batch["distance"])) + return metrics, images + + def _get_sigma(self): + if not self.config.should_decay_sigma: + return self.depth_sigma + + self.depth_sigma = torch.maximum( # pylint: disable=attribute-defined-outside-init + self.config.sigma_decay_rate * self.depth_sigma, torch.tensor([self.config.depth_sigma]) + ) + return self.depth_sigma diff --git a/nerfstudio/models/mipnerf.py b/nerfstudio/models/mipnerf.py deleted file mode 100644 index e033681f..00000000 --- a/nerfstudio/models/mipnerf.py +++ /dev/null @@ -1,212 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -""" -Implementation of mip-NeRF. -""" -from __future__ import annotations - -from typing import Dict, List, Tuple - -import torch -from torch.nn import Parameter - -from nerfstudio.cameras.rays import RayBundle -from nerfstudio.field_components.encodings import NeRFEncoding -from nerfstudio.field_components.field_heads import FieldHeadNames -from nerfstudio.fields.vanilla_nerf_field import NeRFField -from nerfstudio.model_components.losses import MSELoss, scale_gradients_by_distance_squared -from nerfstudio.model_components.ray_samplers import PDFSampler, UniformSampler -from nerfstudio.model_components.renderers import AccumulationRenderer, DepthRenderer, RGBRenderer -from nerfstudio.models.base_model import Model -from nerfstudio.models.vanilla_nerf import VanillaModelConfig -from nerfstudio.utils import colormaps, misc - - -class MipNerfModel(Model): - """mip-NeRF model - - Args: - config: MipNerf configuration to instantiate model - """ - - config: VanillaModelConfig - - def __init__( - self, - config: VanillaModelConfig, - **kwargs, - ) -> None: - self.field = None - assert config.collider_params is not None, "MipNeRF model requires bounding box collider parameters." - super().__init__(config=config, **kwargs) - assert self.config.collider_params is not None, "mip-NeRF requires collider parameters to be set." - - def populate_modules(self): - """Set the fields and modules""" - super().populate_modules() - - # setting up fields - position_encoding = NeRFEncoding( - in_dim=3, num_frequencies=16, min_freq_exp=0.0, max_freq_exp=16.0, include_input=True - ) - direction_encoding = NeRFEncoding( - in_dim=3, num_frequencies=4, min_freq_exp=0.0, max_freq_exp=4.0, include_input=True - ) - - self.field = NeRFField( - position_encoding=position_encoding, direction_encoding=direction_encoding, use_integrated_encoding=True - ) - - # samplers - self.sampler_uniform = UniformSampler(num_samples=self.config.num_coarse_samples) - self.sampler_pdf = PDFSampler(num_samples=self.config.num_importance_samples, include_original=False) - - # renderers - self.renderer_rgb = RGBRenderer(background_color=self.config.background_color) - self.renderer_accumulation = AccumulationRenderer() - self.renderer_depth = DepthRenderer() - - # losses - self.rgb_loss = MSELoss() - - # metrics - from torchmetrics.functional import structural_similarity_index_measure - from torchmetrics.image import PeakSignalNoiseRatio - from torchmetrics.image.lpip import LearnedPerceptualImagePatchSimilarity - - self.psnr = PeakSignalNoiseRatio(data_range=1.0) - self.ssim = structural_similarity_index_measure - self.lpips = LearnedPerceptualImagePatchSimilarity(normalize=True) - - def get_param_groups(self) -> Dict[str, List[Parameter]]: - param_groups = {} - if self.field is None: - raise ValueError("populate_fields() must be called before get_param_groups") - param_groups["fields"] = list(self.field.parameters()) - return param_groups - - def get_outputs(self, ray_bundle: RayBundle): - if self.field is None: - raise ValueError("populate_fields() must be called before get_outputs") - - # uniform sampling - ray_samples_uniform = self.sampler_uniform(ray_bundle) - - # First pass: - field_outputs_coarse = self.field.forward(ray_samples_uniform) - if self.config.use_gradient_scaling: - field_outputs_coarse = scale_gradients_by_distance_squared(field_outputs_coarse, ray_samples_uniform) - weights_coarse = ray_samples_uniform.get_weights(field_outputs_coarse[FieldHeadNames.DENSITY]) - rgb_coarse = self.renderer_rgb( - rgb=field_outputs_coarse[FieldHeadNames.RGB], - weights=weights_coarse, - ) - accumulation_coarse = self.renderer_accumulation(weights_coarse) - depth_coarse = self.renderer_depth(weights_coarse, ray_samples_uniform) - - # pdf sampling - ray_samples_pdf = self.sampler_pdf(ray_bundle, ray_samples_uniform, weights_coarse) - - # Second pass: - field_outputs_fine = self.field.forward(ray_samples_pdf) - if self.config.use_gradient_scaling: - field_outputs_fine = scale_gradients_by_distance_squared(field_outputs_fine, ray_samples_pdf) - weights_fine = ray_samples_pdf.get_weights(field_outputs_fine[FieldHeadNames.DENSITY]) - rgb_fine = self.renderer_rgb( - rgb=field_outputs_fine[FieldHeadNames.RGB], - weights=weights_fine, - ) - accumulation_fine = self.renderer_accumulation(weights_fine) - depth_fine = self.renderer_depth(weights_fine, ray_samples_pdf) - - outputs = { - "rgb_coarse": rgb_coarse, - "rgb_fine": rgb_fine, - "accumulation_coarse": accumulation_coarse, - "accumulation_fine": accumulation_fine, - "depth_coarse": depth_coarse, - "depth_fine": depth_fine, - } - return outputs - - def get_loss_dict(self, outputs, batch, metrics_dict=None): - image = batch["image"].to(self.device) - pred_coarse, image_coarse = self.renderer_rgb.blend_background_for_loss_computation( - pred_image=outputs["rgb_coarse"], - pred_accumulation=outputs["accumulation_coarse"], - gt_image=image, - ) - pred_fine, image_fine = self.renderer_rgb.blend_background_for_loss_computation( - pred_image=outputs["rgb_fine"], - pred_accumulation=outputs["accumulation_fine"], - gt_image=image, - ) - rgb_loss_coarse = self.rgb_loss(image_coarse, pred_coarse) - rgb_loss_fine = self.rgb_loss(image_fine, pred_fine) - loss_dict = {"rgb_loss_coarse": rgb_loss_coarse, "rgb_loss_fine": rgb_loss_fine} - loss_dict = misc.scale_dict(loss_dict, self.config.loss_coefficients) - return loss_dict - - def get_image_metrics_and_images( - self, outputs: Dict[str, torch.Tensor], batch: Dict[str, torch.Tensor] - ) -> Tuple[Dict[str, float], Dict[str, torch.Tensor]]: - assert self.config.collider_params is not None, "mip-NeRF requires collider parameters to be set." - image = batch["image"].to(outputs["rgb_coarse"].device) - image = self.renderer_rgb.blend_background(image) - rgb_coarse = outputs["rgb_coarse"] - rgb_fine = outputs["rgb_fine"] - acc_coarse = colormaps.apply_colormap(outputs["accumulation_coarse"]) - acc_fine = colormaps.apply_colormap(outputs["accumulation_fine"]) - - assert self.config.collider_params is not None - depth_coarse = colormaps.apply_depth_colormap( - outputs["depth_coarse"], - accumulation=outputs["accumulation_coarse"], - near_plane=self.config.collider_params["near_plane"], - far_plane=self.config.collider_params["far_plane"], - ) - depth_fine = colormaps.apply_depth_colormap( - outputs["depth_fine"], - accumulation=outputs["accumulation_fine"], - near_plane=self.config.collider_params["near_plane"], - far_plane=self.config.collider_params["far_plane"], - ) - - combined_rgb = torch.cat([image, rgb_coarse, rgb_fine], dim=1) - combined_acc = torch.cat([acc_coarse, acc_fine], dim=1) - combined_depth = torch.cat([depth_coarse, depth_fine], dim=1) - - # Switch images from [H, W, C] to [1, C, H, W] for metrics computations - image = torch.moveaxis(image, -1, 0)[None, ...] - rgb_coarse = torch.moveaxis(rgb_coarse, -1, 0)[None, ...] - rgb_fine = torch.moveaxis(rgb_fine, -1, 0)[None, ...] - rgb_coarse = torch.clip(rgb_coarse, min=0, max=1) - rgb_fine = torch.clip(rgb_fine, min=0, max=1) - - coarse_psnr = self.psnr(image, rgb_coarse) - fine_psnr = self.psnr(image, rgb_fine) - fine_ssim = self.ssim(image, rgb_fine) - fine_lpips = self.lpips(image, rgb_fine) - - assert isinstance(fine_ssim, torch.Tensor) - metrics_dict = { - "psnr": float(fine_psnr.item()), - "coarse_psnr": float(coarse_psnr.item()), - "fine_psnr": float(fine_psnr.item()), - "fine_ssim": float(fine_ssim.item()), - "fine_lpips": float(fine_lpips.item()), - } - images_dict = {"img": combined_rgb, "accumulation": combined_acc, "depth": combined_depth} - return metrics_dict, images_dict diff --git a/nerfstudio/models/neurad.py b/nerfstudio/models/neurad.py new file mode 100644 index 00000000..acd9b983 --- /dev/null +++ b/nerfstudio/models/neurad.py @@ -0,0 +1,723 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# +# 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. + +""" +NeuRAD (Neural Rendering for Autonomous Driving) model. +""" + +from __future__ import annotations + +import math +from collections import defaultdict +from dataclasses import dataclass, field +from typing import Dict, List, Literal, Optional, Tuple, Type, Union + +import nerfacc +import torch +from jaxtyping import Float, Int +from torch import Tensor +from torch.nn import BCEWithLogitsLoss, Parameter +from torchmetrics.functional import structural_similarity_index_measure +from torchmetrics.image import PeakSignalNoiseRatio +from torchmetrics.image.lpip import LearnedPerceptualImagePatchSimilarity + +from nerfstudio.cameras.rays import RayBundle, RaySamples +from nerfstudio.engine.callbacks import TrainingCallback, TrainingCallbackLocation +from nerfstudio.field_components.field_heads import FieldHeadNames +from nerfstudio.field_components.mlp import MLP +from nerfstudio.fields.neurad_field import ( + NeuRADField, + NeuRADFieldConfig, + NeuRADProposalField, + NeuRADProposalFieldConfig, +) +from nerfstudio.model_components.cnns import BasicBlock +from nerfstudio.model_components.losses import ( + L1Loss, + MSELoss, + VGGPerceptualLossPix2Pix, + distortion_loss, + zipnerf_interlevel_loss, +) +from nerfstudio.model_components.ray_samplers import PowerSampler, ProposalNetworkSampler +from nerfstudio.model_components.renderers import AccumulationRenderer, DepthRenderer, FeatureRenderer, NormalsRenderer +from nerfstudio.models.ad_model import ADModel, ADModelConfig +from nerfstudio.utils import colormaps +from nerfstudio.utils.math import chamfer_distance +from nerfstudio.viewer.server.viewer_elements import ViewerSlider + +EPS = 1e-7 + + +@dataclass +class LossSettings: + """Configuration of all the losses.""" + + vgg_mult: float = 0.05 + """Multipier for VGG perceptual loss.""" + rgb_mult: float = 5.0 + """Multipier for RGB loss.""" + depth_mult: float = 0.01 + """Multipier for lidar loss.""" + intensity_mult: float = 0.1 + """Multipier for lidar intensity loss.""" + carving_mult: float = 0.01 + """Multiplier for the lidar carving loss.""" + carving_epsilon: float = 0.1 + """Epsilon for regularization losses (both carving and eikonal), in meters.""" + quantile_threshold: float = 0.95 + """Quantile threshold for lidar and regularization losses.""" + interlevel_loss_mult: float = 0.001 + """Multiplier for the interlevel loss.""" + distortion_loss_mult: float = 0.002 + """Multiplier for the distortion loss.""" + non_return_lidar_distance: float = 150.0 + """Distance threshold for the non-return carving loss (in meters).""" + non_return_loss_mult: float = 0.1 + """Multiplier for the non-return lidar losses (on top of existing multiplier).""" + ray_drop_loss_mult: float = 0.01 + """Multiplier for the ray drop loss.""" + prop_lidar_loss_mult: float = 0.1 + """Multiplier for the proposal depth loss (on top of existing multiplier).""" + + +@dataclass +class SamplingSettings: + """Configuration of NeuRADs proposal sampling.""" + + single_jitter: bool = True + """Use the same random jitter for all samples in the same ray (in training).""" + + proposal_field_1: NeuRADProposalFieldConfig = field(default_factory=NeuRADProposalFieldConfig) + """First proposal field configuration.""" + proposal_field_2: NeuRADProposalFieldConfig = field(default_factory=NeuRADProposalFieldConfig) + """Second proposal field configuration.""" + num_proposal_samples: Tuple[int, ...] = (128, 64) + """Number of proposal samples per ray.""" + num_nerf_samples: int = 32 + """Number of nerf samples per ray.""" + power_lambda: float = -1.0 + """Lambda for the distance power function.""" + power_scaling: float = 0.1 + """Scaling for the distance power function.""" + sky_distance: float = 20000.0 + """Distance to use for the sky field.""" + + +@dataclass +class NeuRADModelConfig(ADModelConfig): + """Overall configuration of NeuRAD.""" + + _target: Type = field(default_factory=lambda: NeuRADModel) + """Target class to instantiate.""" + + loss: LossSettings = field(default_factory=LossSettings) + """All the loss parameters.""" + sampling: SamplingSettings = field(default_factory=SamplingSettings) + """All the sampling parameters.""" + field: NeuRADFieldConfig = field(default_factory=NeuRADFieldConfig) + """Main field configuration.""" + + appearance_dim: int = 16 + """Dimensionality of the appearance embedding.""" + use_temporal_appearance: bool = True + """Whether to use temporal appearance or not.""" + temporal_appearance_freq: float = 1.0 + """Frequency of temporal appearance.""" + + rgb_upsample_factor: int = 3 + """Upsampling factor for the rgb decoder.""" + rgb_hidden_dim: int = 32 + """Dimensionality of the hidden layers in the CNN.""" + + implementation: Literal["tcnn", "torch"] = "tcnn" + """Which implementation to use for the model.""" + + compensate_upsampling_when_rendering: bool = True + """Compensate for upsampling when asked to render an image of some given resolution.""" + normalize_depth: bool = False + """Whether to normalize depth by dividing by accumulation.""" + verbose: bool = False + """Whether to log additional images and out the model configuration.""" + + @property + def num_proposal_rounds(self): + return len(self.sampling.num_proposal_samples) + + @property + def fields(self) -> list[Union[NeuRADFieldConfig, NeuRADProposalFieldConfig]]: + return [self.field, self.sampling.proposal_field_1, self.sampling.proposal_field_2] + + +class NeuRADModel(ADModel): + """NeuRAD model. + + Args: + config: NeuRAD configuration to instantiate model + """ + + config: NeuRADModelConfig + + def populate_modules(self): + """Set the fields and modules.""" + super().populate_modules() + self.field = self.config.field.setup( + actors=self.dynamic_actors, + static_scale=self.scene_box.aabb.max(), + implementation=self.config.implementation, + ) + + # Appearance embedding settings + dataset_metadata = self.kwargs["metadata"] + self._duration = dataset_metadata["duration"] + num_sensors = len(dataset_metadata["sensor_idx_to_name"]) + if self.config.use_temporal_appearance: + self._num_embeds_per_sensor = math.ceil(self._duration * self.config.temporal_appearance_freq) + num_embeds = num_sensors * self._num_embeds_per_sensor + else: + num_embeds = num_sensors + self.appearance_embedding = torch.nn.Embedding(num_embeds, self.config.appearance_dim) + self.fallback_sensor_idx = ViewerSlider("fallback sensor idx", 0, 0, num_sensors - 1, step=1) + + # Modality decoders + hidden_dim = self.config.rgb_hidden_dim + in_dim = self.config.field.nff_out_dim + self.config.appearance_dim + self.rgb_decoder = torch.nn.Sequential( + torch.nn.Conv2d(in_dim, hidden_dim, kernel_size=1, padding=0), + torch.nn.ReLU(inplace=True), + BasicBlock(hidden_dim, hidden_dim, kernel_size=7, padding=3, use_bn=True), + BasicBlock(hidden_dim, hidden_dim, kernel_size=7, padding=3, use_bn=True), + torch.nn.ConvTranspose2d( + hidden_dim, + hidden_dim, + kernel_size=self.config.rgb_upsample_factor, + stride=self.config.rgb_upsample_factor, + ), + BasicBlock(hidden_dim, hidden_dim, kernel_size=7, padding=3, use_bn=True), + BasicBlock(hidden_dim, hidden_dim, kernel_size=7, padding=3, use_bn=True), + torch.nn.Conv2d(hidden_dim, 3, kernel_size=1, padding=0), + torch.nn.Sigmoid(), + ) + self.lidar_decoder = MLP( + in_dim=self.config.field.nff_out_dim + self.config.appearance_dim, + layer_width=32, + out_dim=2, + num_layers=3, + implementation=self.config.implementation, + out_activation=None, + ) + + # Sampler + self.sampler = ProposalNetworkSampler( + num_proposal_samples_per_ray=self.config.sampling.num_proposal_samples, + num_nerf_samples_per_ray=self.config.sampling.num_nerf_samples, + num_proposal_network_iterations=self.config.num_proposal_rounds, + single_jitter=self.config.sampling.single_jitter, + initial_sampler=PowerSampler( + lambda_=self.config.sampling.power_lambda, + scaling=self.config.sampling.power_scaling, + ), + update_sched=lambda x: 0, + ) + self.proposal_fields = torch.nn.ModuleList( + [ + conf.setup( + actors=self.dynamic_actors, + static_scale=self.scene_box.aabb.max(), + implementation=self.config.implementation, + ) + for conf in (self.config.sampling.proposal_field_1, self.config.sampling.proposal_field_2) + ] + ) + self.density_fns = [lambda x: prop_field.get_density(x)[0] for prop_field in self.proposal_fields] + + # renderers + self.renderer_feat = FeatureRenderer() + self.renderer_accumulation = AccumulationRenderer() + self.renderer_depth = DepthRenderer(method="expected") if self.config.normalize_depth else render_depth_simple + self.renderer_normals = NormalsRenderer() + + # losses + self.rgb_loss = MSELoss() + self.depth_loss = L1Loss(reduction="none") + self.intensity_loss = MSELoss(reduction="none") + self.vgg_loss = VGGPerceptualLossPix2Pix() + self.ray_drop_loss = BCEWithLogitsLoss() + self.interlevel_loss = zipnerf_interlevel_loss + + # metrics + self.psnr = PeakSignalNoiseRatio(data_range=1.0) + self.ssim = structural_similarity_index_measure + self.lpips = LearnedPerceptualImagePatchSimilarity(normalize=True) + self.median_l2 = lambda pred, gt: torch.median((pred - gt) ** 2) + self.mean_rel_l2 = lambda pred, gt: torch.mean(((pred - gt) / gt) ** 2) + self.rmse = lambda pred, gt: torch.sqrt(torch.mean((pred - gt) ** 2)) + self.chamfer_distance = lambda pred, gt: chamfer_distance(pred, gt, 1_000, True) + + @property + def fields(self) -> list[Union[NeuRADField, NeuRADProposalField]]: + """Convenience accessor for all fields.""" + return [self.field, *self.proposal_fields] # type: ignore + + def disable_ray_drop(self): + self.config.loss.ray_drop_loss_mult = 0.0 + + def get_param_groups(self) -> Dict[str, List[Parameter]]: + """Get the parameter groups for the optimizer.""" + param_groups = super().get_param_groups() + for field_ in self.fields: + field_.get_param_groups(param_groups) + param_groups["fields"] += list(self.lidar_decoder.parameters()) + param_groups["fields"] += list(self.appearance_embedding.parameters()) + param_groups["cnn"] += self.rgb_decoder.parameters() + return param_groups + + def get_training_callbacks(self, _) -> List[TrainingCallback]: + callbacks = [] + callbacks.append( + TrainingCallback( + where_to_run=[TrainingCallbackLocation.AFTER_TRAIN_ITERATION], + update_every_num_iters=1, + func=self.sampler.step_cb, + ) + ) + return callbacks + + def forward( + self, + ray_bundle: RayBundle, + patch_size: Tuple[int, int] = (1, 1), + intensity_for_cam: bool = False, + calc_lidar_losses: bool = True, + ): + return self.get_outputs(ray_bundle, patch_size, intensity_for_cam, calc_lidar_losses) + + def get_outputs( + self, + ray_bundle: RayBundle, + patch_size: Tuple[int, int], + intensity_for_cam: bool = False, + calc_lidar_losses: bool = True, + ): + if self.training: + self.camera_optimizer.apply_to_raybundle(ray_bundle) + nff_outputs = self.get_nff_outputs(ray_bundle, calc_lidar_losses) + rgb, intensity, ray_drop_logits = self.decode_features( + features=nff_outputs["features"], + patch_size=patch_size, + is_lidar=ray_bundle.metadata.get("is_lidar"), + intensity_for_cam=intensity_for_cam, + ) + # Drop features because it's too trippy (and big) + nff_outputs.pop("features", None) + if rgb is not None: + nff_outputs["rgb"] = rgb + if intensity is not None: + nff_outputs["intensity"] = intensity + if ray_drop_logits is not None: + nff_outputs["ray_drop_logits"] = ray_drop_logits + return nff_outputs + + def decode_features( + self, + features: Tensor, + patch_size: Tuple[int, int], + is_lidar: Optional[Tensor] = None, + intensity_for_cam: bool = False, + ) -> Tuple[Optional[Tensor], Optional[Tensor], Optional[Tensor]]: + """Take the neural feature field feature, and render them to rgb and/or intensity.""" + if is_lidar is None: + lidar_features, cam_features = torch.empty(0), features + else: + lidar_features, cam_features = features[is_lidar[..., 0]], features[~is_lidar[..., 0]] + + # Decode lidar features + if intensity_for_cam: # Useful for visualization + intensity, ray_drop_logit = self.lidar_decoder(features).float().split(1, dim=-1) # TODO: hmm + elif lidar_features.numel() > 0: + intensity, ray_drop_logit = self.lidar_decoder(lidar_features).split(1, dim=-1) + else: + intensity, ray_drop_logit = None, None + intensity = intensity.sigmoid() if intensity is not None else None + + if cam_features.numel() == 0: + rgb = None + # need to reshape the ray features to apply the cnn decoder + cam_feature_patches = cam_features.view(-1, *patch_size, cam_features.shape[-1]) # B x D x D x C + cam_feature_patches = cam_feature_patches.permute(0, 3, 1, 2) # B x C x D x D + rgb = self.rgb_decoder(cam_feature_patches) # B x 3 x upsample x upsample + rgb = rgb.permute(0, 2, 3, 1) # B x upsample x upsample x 3 + return rgb, intensity, ray_drop_logit + + def get_nff_outputs(self, ray_bundle: RayBundle, calc_lidar_losses: bool = False) -> Dict[str, Tensor]: + """Run the neural feature field, and return the rendered outputs.""" + self._scale_pixel_area(ray_bundle) + ray_samples, proposal_ray_samples, proposal_weights = self._get_ray_samples(ray_bundle) + + outputs = self.field(ray_samples) + + # Render rays + nff_outputs = {} + weights = self._render_weights(outputs, ray_samples) + accumulation = self.renderer_accumulation(weights=weights[..., None]) + + # Put remaining accumulation on last (sky) sample and render features + weights = torch.cat((weights[..., :-1], weights[..., -1:] + 1 - accumulation), dim=-1).unsqueeze(-1) + features = self.renderer_feat(features=outputs[FieldHeadNames.FEATURE], weights=weights) + if self.config.appearance_dim > 0: # add appearance embedding + appearance = self._get_appearance_embedding(ray_bundle, features) + features = torch.cat([features, appearance], dim=-1) + + # Discard sky sample for all remaining purposes + weights, ray_samples = weights[..., :-1, :], ray_samples[..., :-1] + outputs = {k: v[..., :-1, :] for k, v in outputs.items()} + depth = self.renderer_depth(weights=weights, ray_samples=ray_samples) + nff_outputs = { + "features": features, + "depth": depth, + "accumulation": accumulation, + } + if not self.training and FieldHeadNames.NORMALS in outputs: + nff_outputs["normals"] = self.renderer_normals(normals=outputs[FieldHeadNames.NORMALS], weights=weights) + + # Handle proposal outputs + for i, (prop_w, prop_rs) in enumerate(zip(proposal_weights, proposal_ray_samples)): + nff_outputs[f"prop_depth_{i}"] = self.renderer_depth(prop_w, prop_rs) + if self.training and calc_lidar_losses: + weights_mask = (~prop_rs.metadata["is_close_to_lidar"]) & prop_rs.metadata["is_lidar"] + nff_outputs[f"prop_weights_loss_{i}"] = ((prop_w * weights_mask) ** 2).sum() + if self.training: + # Need to render the static samples separately for proposal supervision + nff_outputs["weights_list"] = proposal_weights + [weights] + nff_outputs["ray_samples_list"] = proposal_ray_samples + [ray_samples] + + if self.training and calc_lidar_losses: + assert (metadata := ray_samples.metadata) is not None + weights_mask = ((~metadata["is_close_to_lidar"]) & metadata["is_lidar"]).squeeze(-1) + weights_idx = weights_mask.nonzero(as_tuple=True) + nff_outputs["non_nearby_weights"] = weights[weights_idx] + # TODO: get rid of this + ray_indices = torch.arange(weights.shape[0], device=weights.device).unsqueeze(-1) + ray_indices = ray_indices.repeat(1, *weights.shape[1:-1]) + lidar_start_ray = ray_bundle.metadata["is_lidar"].int().argmax() # argmax gives first True + nff_outputs["non_nearby_lidar_ray_indices"] = ray_indices[weights_idx] - lidar_start_ray + + return nff_outputs + + def _get_appearance_embedding(self, ray_bundle, features): + sensor_idx = ray_bundle.metadata.get("sensor_idxs") + if sensor_idx is None: + assert not self.training, "Sensor sensor_idx must be present in metadata during training" + sensor_idx = torch.full_like(features[..., :1], self.fallback_sensor_idx.value, dtype=torch.long) + + if self.config.use_temporal_appearance: + time_idx = ray_bundle.times / self._duration * (embd_per_sensor := self._num_embeds_per_sensor) + before_idx = time_idx.floor().clamp(0, embd_per_sensor - 1) + after_idx = (before_idx + 1).clamp(0, embd_per_sensor - 1) + ratio = time_idx - before_idx + # unwrap to true embedding indices, which also account for the sensor index, not just the time index + before_idx, after_idx = (x + sensor_idx * embd_per_sensor for x in (before_idx, after_idx)) + before_embed = self.appearance_embedding(before_idx.squeeze(-1).long()) + after_embed = self.appearance_embedding(after_idx.squeeze(-1).long()) + embed = before_embed * (1 - ratio) + after_embed * ratio + else: + embed = self.appearance_embedding(sensor_idx.squeeze(-1)) + return embed + + def _get_ray_samples(self, ray_bundle: RayBundle) -> tuple[RaySamples, List[RaySamples], List[Tensor]]: + # Sampling + if ray_bundle.fars is not None: + ray_bundle.fars.clamp_max_(sky_distance := self.config.sampling.sky_distance) + else: + ray_bundle.fars = torch.full_like(ray_bundle.pixel_area, sky_distance := self.config.sampling.sky_distance) + ray_bundle.nears = ray_bundle.nears if ray_bundle.nears is not None else torch.zeros_like(ray_bundle.fars) + ray_samples, prop_weights, prop_ray_samples = self.sampler(ray_bundle, self.density_fns, pass_ray_samples=True) + # Efficient "sky-field" by setting last sample to end extremely far away + dist_to_sky = sky_distance - ray_samples.frustums.ends[..., -1, 0] + ray_samples.frustums.ends[..., -1, 0] += dist_to_sky + ray_samples.deltas[..., -1, 0] += dist_to_sky + ray_samples.spacing_ends[..., -1, 0] = 1 - EPS # Hacky, but sky is ish at infinity + + if self.training and "is_lidar" in ray_bundle.metadata: + self._compute_is_close_to_lidar(ray_samples, *prop_ray_samples) + return ray_samples, prop_ray_samples, prop_weights + + def get_metrics_dict(self, outputs, batch): + metrics_dict = {} + if "image" in batch: + image, rgb = batch["image"].to(self.device), outputs["rgb"] + metrics_dict["psnr"] = self.psnr(rgb.detach(), image) + if "lidar" in batch: + is_lidar = batch["is_lidar"][:, 0].to(self.device) + n_lidar_rays = is_lidar.sum() + did_return = batch["did_return"][batch["is_lidar"].squeeze(-1)].squeeze(-1).to(self.device) + points_intensities = batch["lidar"][..., 3:4].to(self.device) + termination_depth = batch["distance"].to(self.device) + + pred_depth = outputs["depth"][is_lidar] + ray_drop_logits = outputs["ray_drop_logits"] + pred_intensity = outputs["intensity"] + + # eval metrics + metrics_dict["depth_median_l2"] = self.median_l2(pred_depth[did_return], termination_depth[did_return]) + metrics_dict["depth_mean_rel_l2"] = self.mean_rel_l2(pred_depth[did_return], termination_depth[did_return]) + metrics_dict["intensity_rmse"] = self.rmse(pred_intensity[did_return], points_intensities[did_return]) + metrics_dict["ray_drop_accuracy"] = ( + ((ray_drop_logits.sigmoid() > 0.5).squeeze(-1) == ~did_return).float().mean() + ) + + # train metrics / losses + if self.training: + # Adjust target depth for non-returning rays + nonret_lid_dist = torch.tensor( + self.config.loss.non_return_lidar_distance, device=termination_depth.device + ) + target_depth = termination_depth.clone() + target_depth[~did_return] = pred_depth.detach()[~did_return].maximum(nonret_lid_dist) + unreduced_depth_loss = self.depth_loss(target_depth, pred_depth) + unreduced_depth_loss[~did_return] *= self.config.loss.non_return_loss_mult + # TODO: get rid of quantile mask + quantile = torch.quantile(unreduced_depth_loss, self.config.loss.quantile_threshold) + quantile_mask = (unreduced_depth_loss < quantile).squeeze(-1) + + metrics_dict["depth_loss"] = torch.mean(unreduced_depth_loss[quantile_mask]) + + quant_and_return = quantile_mask & did_return + metrics_dict["intensity_loss"] = self.intensity_loss( + points_intensities[quant_and_return], outputs["intensity"][quant_and_return] + ).mean() + + metrics_dict["ray_drop_loss"] = self.ray_drop_loss( + ray_drop_logits, (~did_return).unsqueeze(-1).to(ray_drop_logits) + ) + # quantile_weights_mask = quantile_mask[outputs["non_nearby_lidar_ray_indices"]].squeeze(-1) + weights_loss = (outputs["non_nearby_weights"] ** 2).sum() + metrics_dict["carving_loss"] = weights_loss / n_lidar_rays # avg per ray + + # Lidar proposal losses + for prop_i in range(self.config.num_proposal_rounds): + pred_depth = outputs[f"prop_depth_{prop_i}"][is_lidar] + target_depth = termination_depth.clone() + target_depth[~did_return] = pred_depth.detach()[~did_return].maximum(nonret_lid_dist) + unreduced_depth_loss = self.depth_loss(target_depth, pred_depth) + unreduced_depth_loss[~did_return] *= self.config.loss.non_return_loss_mult + metrics_dict[f"depth_loss_{prop_i}"] = torch.mean(unreduced_depth_loss) + metrics_dict[f"carving_loss_{prop_i}"] = outputs[f"prop_weights_loss_{prop_i}"] / n_lidar_rays + + if self.training and "weights_list" in outputs: + metrics_dict["distortion"] = distortion_loss(outputs["weights_list"], outputs["ray_samples_list"]) + + if self.config.field.use_sdf: + metrics_dict["sdf_to_density"] = float(self.field.sdf_to_density.beta) + self.camera_optimizer.get_metrics_dict(metrics_dict) + return metrics_dict + + def get_loss_dict(self, outputs, batch, metrics_dict=None): + conf = self.config.loss + loss_dict = {} + if "image" in batch: + image, rgb = batch["image"].to(self.device), outputs["rgb"] + loss_dict["rgb_loss"] = self.rgb_loss(image, rgb) * conf.rgb_mult + if conf.vgg_mult > 0.0: + loss_dict["vgg_loss"] = self.vgg_loss(rgb, image) * conf.vgg_mult + if self.training: + if "weights_list" in outputs: + loss_dict["interlevel_loss"] = self.config.loss.interlevel_loss_mult * self.interlevel_loss( + outputs["weights_list"], outputs["ray_samples_list"] + ) + assert metrics_dict is not None and "distortion" in metrics_dict + loss_dict["distortion_loss"] = self.config.loss.distortion_loss_mult * metrics_dict["distortion"] + prop_depth_mult = conf.prop_lidar_loss_mult * conf.depth_mult + prop_carv_mult = conf.prop_lidar_loss_mult * conf.carving_mult + for i_prop in range(self.config.num_proposal_rounds): + loss_dict[f"depth_loss_{i_prop}"] = prop_depth_mult * metrics_dict[f"depth_loss_{i_prop}"] + loss_dict[f"carving_loss_{i_prop}"] = prop_carv_mult * metrics_dict[f"carving_loss_{i_prop}"] + assert metrics_dict + if "depth_loss" in metrics_dict: + loss_dict["depth_loss"] = conf.depth_mult * metrics_dict["depth_loss"] + if "intensity_loss" in metrics_dict: + loss_dict["intensity_loss"] = conf.intensity_mult * metrics_dict["intensity_loss"] + if "carving_loss" in metrics_dict: + loss_dict["carving_loss"] = conf.carving_mult * metrics_dict["carving_loss"] + if "ray_drop_loss" in metrics_dict: + loss_dict["ray_drop_loss"] = conf.ray_drop_loss_mult * metrics_dict["ray_drop_loss"] + self.camera_optimizer.get_loss_dict(loss_dict) + return loss_dict + + def get_image_metrics_and_images( + self, outputs: Dict[str, torch.Tensor], batch: Dict[str, torch.Tensor] + ) -> Tuple[Dict[str, float], Dict[str, torch.Tensor]]: + metrics_dict = {} + images_dict = {} + if "image" in batch: + image, rgb = batch["image"].to(self.device), outputs["rgb"] + images_dict["img"] = torch.cat([image, rgb], dim=1) + images_dict["depth"] = colormaps.apply_depth_colormap(outputs["depth"]) + if self.config.verbose: + images_dict["accumulation"] = colormaps.apply_colormap(outputs["accumulation"]) + # Add proposal depthmaps + for i in range(self.config.num_proposal_rounds): + key = f"prop_depth_{i}" + prop_depth_i = colormaps.apply_depth_colormap(outputs[key]) + images_dict[key] = prop_depth_i + + # Switch images from [H, W, C] to [1, C, H, W] for metrics computations + image = torch.moveaxis(image, -1, 0)[None, ...] + rgb = torch.moveaxis(rgb, -1, 0)[None, ...] + + # all of these metrics will be logged as scalars + metrics_dict["psnr"] = float(self.psnr(image, rgb)) + metrics_dict["ssim"] = float(self.ssim(image, rgb)) # type: ignore + metrics_dict["lpips"] = float(self.lpips(image, rgb)) + + if "lidar" in batch: + points = batch["lidar"].to(self.device) + if "is_lidar" not in batch: + batch["is_lidar"] = torch.ones(*batch["lidar"].shape[:-1], 1, dtype=torch.bool, device=self.device) + if "did_return" not in batch: + batch["did_return"] = torch.ones(*batch["lidar"].shape[:-1], 1, dtype=torch.bool, device=self.device) + + ray_drop_logits = outputs["ray_drop_logits"] + pred_depth = outputs["depth"] + did_return = batch["did_return"][:, 0].to(self.device) + is_lidar = batch["is_lidar"][:, 0].to(self.device) + metrics_dict["depth_median_l2"] = float( + self.median_l2(pred_depth[is_lidar][did_return], batch["distance"][did_return]) + ) + metrics_dict["depth_mean_rel_l2"] = float( + self.mean_rel_l2(pred_depth[is_lidar][did_return], batch["distance"][did_return]) + ) + metrics_dict["intensity_rmse"] = float(self.rmse(outputs["intensity"][did_return], points[did_return, 3:4])) + metrics_dict["ray_drop_accuracy"] = float( + ((ray_drop_logits.sigmoid() > 0.5).squeeze(-1) == ~did_return).float().mean() + ) + if self.config.loss.ray_drop_loss_mult > 0.0: + pred_points_did_return = (ray_drop_logits.sigmoid() < 0.5).squeeze(-1) + else: + pred_points_did_return = (pred_depth < self.config.loss.non_return_lidar_distance).squeeze(-1) + if pred_points_did_return.any() and points.shape[0] > 0 and did_return.any(): + pred_points = outputs["points"][is_lidar][pred_points_did_return] + metrics_dict["chamfer_distance"] = float( + self.chamfer_distance(pred_points[..., :3], points[did_return, :3]) + ) + else: + metrics_dict["chamfer_distance"] = points[did_return, :3].norm(dim=-1).mean() + return metrics_dict, images_dict + + @torch.no_grad() + def get_outputs_for_camera_ray_bundle(self, camera_ray_bundle: RayBundle) -> Dict[str, torch.Tensor]: + """Takes in camera parameters and computes the output of the model. + + Args: + camera_ray_bundle: ray bundle to calculate outputs over + """ + if len(camera_ray_bundle.shape) == 1: # lidar + output_size, patch_size = (camera_ray_bundle.shape[0],), (1, 1) + is_lidar = torch.ones_like(camera_ray_bundle.pixel_area, dtype=torch.bool) + else: # camera + assert len(camera_ray_bundle.shape) == 2, "Raybundle should be 2d (an image/patch)" + if self.config.compensate_upsampling_when_rendering: + # shoot rays at a lower resolution and upsample the output to the target resolution + step = self.config.rgb_upsample_factor + camera_ray_bundle = camera_ray_bundle[step // 2 :: step, step // 2 :: step] + output_size = patch_size = (camera_ray_bundle.shape[0], camera_ray_bundle.shape[1]) + camera_ray_bundle = camera_ray_bundle.reshape((-1,)) + is_lidar = None + + # Run chunked forward pass through NFF only + num_rays_per_chunk = self.config.eval_num_rays_per_chunk + num_rays = len(camera_ray_bundle) + outputs_lists = defaultdict(list) + for i in range(0, num_rays, num_rays_per_chunk): + start_idx = i + end_idx = i + num_rays_per_chunk + ray_bundle = camera_ray_bundle.get_row_major_sliced_ray_bundle(start_idx, end_idx) + outputs = self.get_nff_outputs(ray_bundle, calc_lidar_losses=False) + for output_name, output in outputs.items(): # type: ignore + outputs_lists[output_name].append(output) + outputs = {} + for output_name, outputs_list in outputs_lists.items(): + outputs[output_name] = torch.cat(outputs_list).view(*output_size, -1) # type: ignore + + features = outputs["features"].view(-1, outputs["features"].shape[-1]) + rgb, intensity, ray_drop_logit = self.decode_features( + features, patch_size=patch_size, is_lidar=is_lidar, intensity_for_cam=True + ) + if rgb is not None: + outputs["rgb"] = rgb.squeeze(0) + if intensity is not None: + outputs["intensity"] = intensity.view(*output_size, -1) + if ray_drop_logit is not None: + outputs["ray_drop_logits"] = ray_drop_logit.view(*output_size, -1) + outputs["ray_drop_prob"] = ray_drop_logit.view(*output_size, -1).sigmoid() + return outputs + + def _compute_is_close_to_lidar(self, *all_ray_samples: RaySamples) -> None: + """Compute which rays are close to the lidar.""" + for ray_samples in all_ray_samples: + if ray_samples is None: + continue + assert ray_samples.metadata is not None + metadata, frustums = ray_samples.metadata, ray_samples.frustums + sample_distance = (frustums.starts + frustums.ends) * 0.5 + mask = metadata["is_lidar"].clone() # handle that is_lidar is expanded + idx = mask.nonzero(as_tuple=True) + sample_distance = sample_distance[idx] + # directions_norm, in case of lidar, is the distance + dist = metadata["directions_norm"][idx] - sample_distance + # same as mask[mask] since it will write to itself in place and break + close_to_hit = dist.abs() < self.config.loss.carving_epsilon + if "did_return" in metadata.keys(): + did_return = metadata["did_return"][idx] + in_lidar_range = sample_distance < self.config.loss.non_return_lidar_distance + mask[idx] = (did_return & close_to_hit) | ( + (~did_return) & in_lidar_range + ) # TODO: should this be in_range or out_of_range? + else: + mask[idx] = close_to_hit + metadata["is_close_to_lidar"] = mask + + def _scale_pixel_area(self, ray_bundle: RayBundle): + is_lidar = ray_bundle.metadata.get("is_lidar") + scaling = torch.ones_like(ray_bundle.pixel_area) + if is_lidar is not None: + scaling[~is_lidar] = self.config.rgb_upsample_factor**2 + else: + scaling = self.config.rgb_upsample_factor**2 + ray_bundle.pixel_area = ray_bundle.pixel_area * scaling + + def _render_weights(self, outputs, ray_samples): + value = outputs[FieldHeadNames.ALPHA if self.config.field.use_sdf else FieldHeadNames.DENSITY].squeeze(-1) + if self.device.type in ("cpu", "mps"): + # Note: for debugging on devices without cuda + weights = torch.zeros_like(value) + 0.5 + elif self.config.field.use_sdf: + weights, _ = nerfacc.render_weight_from_alpha(value) + else: + weights, _, _ = nerfacc.render_weight_from_density( + t_ends=ray_samples.frustums.ends.squeeze(-1), + t_starts=ray_samples.frustums.starts.squeeze(-1), + sigmas=value, + ) + return weights + + +def render_depth_simple( + weights: Float[Tensor, "*batch num_samples 1"], + ray_samples: RaySamples, + ray_indices: Optional[Int[Tensor, "num_samples"]] = None, + num_rays: Optional[int] = None, +) -> Float[Tensor, "*batch 1"]: + steps = (ray_samples.frustums.starts + ray_samples.frustums.ends) / 2 + return nerfacc.accumulate_along_rays(weights[..., 0], values=steps, ray_indices=ray_indices, n_rays=num_rays) diff --git a/nerfstudio/models/neus.py b/nerfstudio/models/neus.py deleted file mode 100644 index d754c63b..00000000 --- a/nerfstudio/models/neus.py +++ /dev/null @@ -1,115 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -""" -Implementation of NeuS. -""" - -from __future__ import annotations - -from dataclasses import dataclass, field -from typing import Dict, List, Type - -from nerfstudio.cameras.rays import RayBundle -from nerfstudio.engine.callbacks import TrainingCallback, TrainingCallbackAttributes, TrainingCallbackLocation -from nerfstudio.field_components.field_heads import FieldHeadNames -from nerfstudio.model_components.ray_samplers import NeuSSampler -from nerfstudio.models.base_surface_model import SurfaceModel, SurfaceModelConfig - - -@dataclass -class NeuSModelConfig(SurfaceModelConfig): - """NeuS Model Config""" - - _target: Type = field(default_factory=lambda: NeuSModel) - num_samples: int = 64 - """Number of uniform samples""" - num_samples_importance: int = 64 - """Number of importance samples""" - num_up_sample_steps: int = 4 - """number of up sample step, 1 for simple coarse-to-fine sampling""" - base_variance: float = 64 - """fixed base variance in NeuS sampler, the inv_s will be base * 2 ** iter during upsample""" - perturb: bool = True - """use to use perturb for the sampled points""" - - -class NeuSModel(SurfaceModel): - """NeuS model - - Args: - config: NeuS configuration to instantiate model - """ - - config: NeuSModelConfig - - def populate_modules(self): - """Set the fields and modules.""" - super().populate_modules() - - self.sampler = NeuSSampler( - num_samples=self.config.num_samples, - num_samples_importance=self.config.num_samples_importance, - num_samples_outside=self.config.num_samples_outside, - num_upsample_steps=self.config.num_up_sample_steps, - base_variance=self.config.base_variance, - ) - - self.anneal_end = 50000 - - def get_training_callbacks( - self, training_callback_attributes: TrainingCallbackAttributes - ) -> List[TrainingCallback]: - callbacks = [] - # anneal for cos in NeuS - if self.anneal_end > 0: - - def set_anneal(step): - anneal = min([1.0, step / self.anneal_end]) - self.field.set_cos_anneal_ratio(anneal) - - callbacks.append( - TrainingCallback( - where_to_run=[TrainingCallbackLocation.BEFORE_TRAIN_ITERATION], - update_every_num_iters=1, - func=set_anneal, - ) - ) - - return callbacks - - def sample_and_forward_field(self, ray_bundle: RayBundle) -> Dict: - ray_samples = self.sampler(ray_bundle, sdf_fn=self.field.get_sdf) - field_outputs = self.field(ray_samples, return_alphas=True) - weights, transmittance = ray_samples.get_weights_and_transmittance_from_alphas( - field_outputs[FieldHeadNames.ALPHA] - ) - bg_transmittance = transmittance[:, -1, :] - - samples_and_field_outputs = { - "ray_samples": ray_samples, - "field_outputs": field_outputs, - "weights": weights, - "bg_transmittance": bg_transmittance, - } - return samples_and_field_outputs - - def get_metrics_dict(self, outputs, batch) -> Dict: - metrics_dict = super().get_metrics_dict(outputs, batch) - if self.training: - # training statics - metrics_dict["s_val"] = self.field.deviation_network.get_variance().item() - metrics_dict["inv_s"] = 1.0 / self.field.deviation_network.get_variance().item() - - return metrics_dict diff --git a/nerfstudio/models/neus_facto.py b/nerfstudio/models/neus_facto.py deleted file mode 100644 index 39e4e7fe..00000000 --- a/nerfstudio/models/neus_facto.py +++ /dev/null @@ -1,219 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -""" -Implementation of NeuS similar to nerfacto where proposal sampler is used. -Based on SDFStudio https://github.com/autonomousvision/sdfstudio/ -""" - -from __future__ import annotations - -from dataclasses import dataclass, field -from typing import Any, Dict, List, Optional, Tuple, Type - -import numpy as np -import torch -from torch.nn import Parameter - -from nerfstudio.cameras.rays import RayBundle -from nerfstudio.engine.callbacks import TrainingCallback, TrainingCallbackAttributes, TrainingCallbackLocation -from nerfstudio.field_components.field_heads import FieldHeadNames -from nerfstudio.fields.density_fields import HashMLPDensityField -from nerfstudio.model_components.losses import interlevel_loss -from nerfstudio.model_components.ray_samplers import ProposalNetworkSampler, UniformSampler -from nerfstudio.models.neus import NeuSModel, NeuSModelConfig -from nerfstudio.utils import colormaps - - -@dataclass -class NeuSFactoModelConfig(NeuSModelConfig): - """NeusFacto Model Config""" - - _target: Type = field(default_factory=lambda: NeuSFactoModel) - num_proposal_samples_per_ray: Tuple[int, ...] = (256, 96) - """Number of samples per ray for the proposal network.""" - num_neus_samples_per_ray: int = 48 - """Number of samples per ray for the nerf network.""" - proposal_update_every: int = 5 - """Sample every n steps after the warmup""" - proposal_warmup: int = 5000 - """Scales n from 1 to proposal_update_every over this many steps""" - num_proposal_iterations: int = 2 - """Number of proposal network iterations.""" - use_same_proposal_network: bool = False - """Use the same proposal network. Otherwise use different ones.""" - proposal_net_args_list: List[Dict] = field( - default_factory=lambda: [ - {"hidden_dim": 16, "log2_hashmap_size": 17, "num_levels": 5, "max_res": 64}, - {"hidden_dim": 16, "log2_hashmap_size": 17, "num_levels": 5, "max_res": 256}, - ] - ) - """Arguments for the proposal density fields.""" - interlevel_loss_mult: float = 1.0 - """Proposal loss multiplier.""" - use_proposal_weight_anneal: bool = True - """Whether to use proposal weight annealing.""" - proposal_weights_anneal_slope: float = 10.0 - """Slope of the annealing function for the proposal weights.""" - proposal_weights_anneal_max_num_iters: int = 1000 - """Max num iterations for the annealing function.""" - use_single_jitter: bool = True - """Whether use single jitter or not for the proposal networks.""" - - -class NeuSFactoModel(NeuSModel): - """NeuSFactoModel extends NeuSModel for a more efficient sampling strategy. - - The model improves the rendering speed and quality by incorporating a learning-based - proposal distribution to guide the sampling process.(similar to mipnerf-360) - - Args: - config: NeuS configuration to instantiate model - """ - - config: NeuSFactoModelConfig - - def populate_modules(self): - """Instantiate modules and fields, including proposal networks.""" - super().populate_modules() - - self.density_fns = [] - num_prop_nets = self.config.num_proposal_iterations - # Build the proposal network(s) - self.proposal_networks = torch.nn.ModuleList() - if self.config.use_same_proposal_network: - assert len(self.config.proposal_net_args_list) == 1, "Only one proposal network is allowed." - prop_net_args = self.config.proposal_net_args_list[0] - network = HashMLPDensityField( - self.scene_box.aabb, spatial_distortion=self.scene_contraction, **prop_net_args - ) - self.proposal_networks.append(network) - self.density_fns.extend([network.density_fn for _ in range(num_prop_nets)]) - else: - for i in range(num_prop_nets): - prop_net_args = self.config.proposal_net_args_list[min(i, len(self.config.proposal_net_args_list) - 1)] - network = HashMLPDensityField( - self.scene_box.aabb, - spatial_distortion=self.scene_contraction, - **prop_net_args, - ) - self.proposal_networks.append(network) - self.density_fns.extend([network.density_fn for network in self.proposal_networks]) - - # update proposal network every iterations - def update_schedule(_): - return -1 - - initial_sampler = UniformSampler(single_jitter=self.config.use_single_jitter) - self.proposal_sampler = ProposalNetworkSampler( - num_nerf_samples_per_ray=self.config.num_neus_samples_per_ray, - num_proposal_samples_per_ray=self.config.num_proposal_samples_per_ray, - num_proposal_network_iterations=self.config.num_proposal_iterations, - single_jitter=self.config.use_single_jitter, - update_sched=update_schedule, - initial_sampler=initial_sampler, - ) - - def get_param_groups(self) -> Dict[str, List[Parameter]]: - """Return a dictionary with the parameters of the proposal networks.""" - param_groups = super().get_param_groups() - param_groups["proposal_networks"] = list(self.proposal_networks.parameters()) - return param_groups - - def get_training_callbacks( - self, training_callback_attributes: TrainingCallbackAttributes - ) -> List[TrainingCallback]: - callbacks = super().get_training_callbacks(training_callback_attributes) - - if self.config.use_proposal_weight_anneal: - # anneal the weights of the proposal network before doing PDF sampling - N = self.config.proposal_weights_anneal_max_num_iters - - def set_anneal(step: int): - # https://arxiv.org/pdf/2111.12077.pdf eq. 18 - train_frac = np.clip(step / N, 0, 1) - - def bias(x, b): - return b * x / ((b - 1) * x + 1) - - anneal = bias(train_frac, self.config.proposal_weights_anneal_slope) - self.proposal_sampler.set_anneal(anneal) - - callbacks.append( - TrainingCallback( - where_to_run=[TrainingCallbackLocation.BEFORE_TRAIN_ITERATION], - update_every_num_iters=1, - func=set_anneal, - ) - ) - callbacks.append( - TrainingCallback( - where_to_run=[TrainingCallbackLocation.AFTER_TRAIN_ITERATION], - update_every_num_iters=1, - func=self.proposal_sampler.step_cb, - ) - ) - - return callbacks - - def sample_and_forward_field(self, ray_bundle: RayBundle) -> Dict[str, Any]: - """Sample rays using proposal networks and compute the corresponding field outputs.""" - ray_samples, weights_list, ray_samples_list = self.proposal_sampler(ray_bundle, density_fns=self.density_fns) - - field_outputs = self.field(ray_samples, return_alphas=True) - weights, transmittance = ray_samples.get_weights_and_transmittance_from_alphas( - field_outputs[FieldHeadNames.ALPHA] - ) - bg_transmittance = transmittance[:, -1, :] - - weights_list.append(weights) - ray_samples_list.append(ray_samples) - - samples_and_field_outputs = { - "ray_samples": ray_samples, - "field_outputs": field_outputs, - "weights": weights, - "bg_transmittance": bg_transmittance, - "weights_list": weights_list, - "ray_samples_list": ray_samples_list, - } - return samples_and_field_outputs - - def get_loss_dict( - self, outputs: Dict[str, Any], batch: Dict[str, Any], metrics_dict: Optional[Dict[str, Any]] = None - ) -> Dict[str, Any]: - """Compute the loss dictionary, including interlevel loss for proposal networks.""" - loss_dict = super().get_loss_dict(outputs, batch, metrics_dict) - - if self.training: - loss_dict["interlevel_loss"] = self.config.interlevel_loss_mult * interlevel_loss( - outputs["weights_list"], outputs["ray_samples_list"] - ) - - return loss_dict - - def get_image_metrics_and_images( - self, outputs: Dict[str, Any], batch: Dict[str, Any] - ) -> Tuple[Dict[str, float], Dict[str, torch.Tensor]]: - """Compute image metrics and images, including the proposal depth for each iteration.""" - metrics_dict, images_dict = super().get_image_metrics_and_images(outputs, batch) - for i in range(self.config.num_proposal_iterations): - key = f"prop_depth_{i}" - prop_depth_i = colormaps.apply_depth_colormap( - outputs[key], - accumulation=outputs["accumulation"], - ) - images_dict[key] = prop_depth_i - - return metrics_dict, images_dict diff --git a/nerfstudio/models/semantic_nerfw.py b/nerfstudio/models/semantic_nerfw.py deleted file mode 100644 index f3dff767..00000000 --- a/nerfstudio/models/semantic_nerfw.py +++ /dev/null @@ -1,311 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -""" -Semantic NeRF-W implementation which should be fast enough to view in the viewer. -""" - -from __future__ import annotations - -from dataclasses import dataclass, field -from typing import Dict, List, Tuple, Type - -import numpy as np -import torch -from torch.nn import Parameter - -from nerfstudio.cameras.rays import RayBundle -from nerfstudio.data.dataparsers.base_dataparser import Semantics -from nerfstudio.engine.callbacks import TrainingCallback, TrainingCallbackAttributes, TrainingCallbackLocation -from nerfstudio.field_components.field_heads import FieldHeadNames -from nerfstudio.field_components.spatial_distortions import SceneContraction -from nerfstudio.fields.density_fields import HashMLPDensityField -from nerfstudio.fields.nerfacto_field import NerfactoField -from nerfstudio.model_components.losses import MSELoss, distortion_loss, interlevel_loss -from nerfstudio.model_components.ray_samplers import ProposalNetworkSampler -from nerfstudio.model_components.renderers import ( - AccumulationRenderer, - DepthRenderer, - RGBRenderer, - SemanticRenderer, - UncertaintyRenderer, -) -from nerfstudio.model_components.scene_colliders import NearFarCollider -from nerfstudio.models.base_model import Model -from nerfstudio.models.nerfacto import NerfactoModelConfig -from nerfstudio.utils import colormaps - - -@dataclass -class SemanticNerfWModelConfig(NerfactoModelConfig): - """Nerfacto Model Config""" - - _target: Type = field(default_factory=lambda: SemanticNerfWModel) - use_transient_embedding: bool = False - """Whether to use transient embedding.""" - semantic_loss_weight: float = 1.0 - pass_semantic_gradients: bool = False - - -class SemanticNerfWModel(Model): - """Nerfacto model - - Args: - config: Nerfacto configuration to instantiate model - """ - - config: SemanticNerfWModelConfig - - def __init__(self, config: SemanticNerfWModelConfig, metadata: Dict, **kwargs) -> None: - assert "semantics" in metadata.keys() and isinstance(metadata["semantics"], Semantics) - self.semantics = metadata["semantics"] - super().__init__(config=config, **kwargs) - self.colormap = self.semantics.colors.clone().detach().to(self.device) - - def populate_modules(self): - """Set the fields and modules.""" - super().populate_modules() - - scene_contraction = SceneContraction(order=float("inf")) - - if self.config.use_transient_embedding: - raise ValueError("Transient embedding is not fully working for semantic nerf-w.") - - # Fields - self.field = NerfactoField( - self.scene_box.aabb, - num_levels=self.config.num_levels, - max_res=self.config.max_res, - log2_hashmap_size=self.config.log2_hashmap_size, - spatial_distortion=scene_contraction, - num_images=self.num_train_data, - use_average_appearance_embedding=self.config.use_average_appearance_embedding, - use_transient_embedding=self.config.use_transient_embedding, - use_semantics=True, - num_semantic_classes=len(self.semantics.classes), - pass_semantic_gradients=self.config.pass_semantic_gradients, - ) - - # Build the proposal network(s) - self.proposal_networks = torch.nn.ModuleList() - if self.config.use_same_proposal_network: - network = HashMLPDensityField(self.scene_box.aabb, spatial_distortion=scene_contraction) - self.proposal_networks.append(network) - self.density_fns = [network.density_fn for _ in range(self.config.num_proposal_iterations)] - else: - for _ in range(self.config.num_proposal_iterations): - network = HashMLPDensityField(self.scene_box.aabb, spatial_distortion=scene_contraction) - self.proposal_networks.append(network) - self.density_fns = [network.density_fn for network in self.proposal_networks] - - # Collider - self.collider = NearFarCollider(near_plane=self.config.near_plane, far_plane=self.config.far_plane) - - # Samplers - self.proposal_sampler = ProposalNetworkSampler( - num_nerf_samples_per_ray=self.config.num_nerf_samples_per_ray, - num_proposal_samples_per_ray=self.config.num_proposal_samples_per_ray, - num_proposal_network_iterations=self.config.num_proposal_iterations, - single_jitter=self.config.use_single_jitter, - ) - - # renderers - self.renderer_rgb = RGBRenderer(background_color=self.config.background_color) - self.renderer_accumulation = AccumulationRenderer() - self.renderer_depth = DepthRenderer() - self.renderer_uncertainty = UncertaintyRenderer() - self.renderer_semantics = SemanticRenderer() - - # losses - self.rgb_loss = MSELoss() - self.cross_entropy_loss = torch.nn.CrossEntropyLoss(reduction="mean") - - # metrics - from torchmetrics.functional import structural_similarity_index_measure - from torchmetrics.image import PeakSignalNoiseRatio - from torchmetrics.image.lpip import LearnedPerceptualImagePatchSimilarity - - self.psnr = PeakSignalNoiseRatio(data_range=1.0) - self.ssim = structural_similarity_index_measure - self.lpips = LearnedPerceptualImagePatchSimilarity(normalize=True) - - def get_param_groups(self) -> Dict[str, List[Parameter]]: - param_groups = {} - param_groups["proposal_networks"] = list(self.proposal_networks.parameters()) - param_groups["fields"] = list(self.field.parameters()) - return param_groups - - def get_training_callbacks( - self, training_callback_attributes: TrainingCallbackAttributes - ) -> List[TrainingCallback]: - callbacks = [] - if self.config.use_proposal_weight_anneal: - # anneal the weights of the proposal network before doing PDF sampling - N = self.config.proposal_weights_anneal_max_num_iters - - def set_anneal(step): - # https://arxiv.org/pdf/2111.12077.pdf eq. 18 - train_frac = np.clip(step / N, 0, 1) - - def bias(x, b): - return b * x / ((b - 1) * x + 1) - - anneal = bias(train_frac, self.config.proposal_weights_anneal_slope) - self.proposal_sampler.set_anneal(anneal) - - callbacks.append( - TrainingCallback( - where_to_run=[TrainingCallbackLocation.BEFORE_TRAIN_ITERATION], - update_every_num_iters=1, - func=set_anneal, - ) - ) - return callbacks - - def get_outputs(self, ray_bundle: RayBundle): - ray_samples, weights_list, ray_samples_list = self.proposal_sampler(ray_bundle, density_fns=self.density_fns) - field_outputs = self.field(ray_samples) - - if self.training and self.config.use_transient_embedding: - density = field_outputs[FieldHeadNames.DENSITY] + field_outputs[FieldHeadNames.TRANSIENT_DENSITY] - weights = ray_samples.get_weights(density) - weights_static = ray_samples.get_weights(field_outputs[FieldHeadNames.DENSITY]) - rgb_static_component = self.renderer_rgb(rgb=field_outputs[FieldHeadNames.RGB], weights=weights) - rgb_transient_component = self.renderer_rgb( - rgb=field_outputs[FieldHeadNames.TRANSIENT_RGB], weights=weights - ) - rgb = rgb_static_component + rgb_transient_component - else: - weights_static = ray_samples.get_weights(field_outputs[FieldHeadNames.DENSITY]) - weights = weights_static - rgb = self.renderer_rgb(rgb=field_outputs[FieldHeadNames.RGB], weights=weights) - weights_list.append(weights_static) - ray_samples_list.append(ray_samples) - - depth = self.renderer_depth(weights=weights_static, ray_samples=ray_samples) - accumulation = self.renderer_accumulation(weights=weights_static) - - outputs = {"rgb": rgb, "accumulation": accumulation, "depth": depth} - outputs["weights_list"] = weights_list - outputs["ray_samples_list"] = ray_samples_list - - for i in range(self.config.num_proposal_iterations): - outputs[f"prop_depth_{i}"] = self.renderer_depth(weights=weights_list[i], ray_samples=ray_samples_list[i]) - - # transients - if self.training and self.config.use_transient_embedding: - weights_transient = ray_samples.get_weights(field_outputs[FieldHeadNames.TRANSIENT_DENSITY]) - uncertainty = self.renderer_uncertainty(field_outputs[FieldHeadNames.UNCERTAINTY], weights_transient) - outputs["uncertainty"] = uncertainty + 0.03 # NOTE(ethan): this is the uncertainty min - outputs["density_transient"] = field_outputs[FieldHeadNames.TRANSIENT_DENSITY] - - # semantics - semantic_weights = weights_static - if not self.config.pass_semantic_gradients: - semantic_weights = semantic_weights.detach() - outputs["semantics"] = self.renderer_semantics( - field_outputs[FieldHeadNames.SEMANTICS], weights=semantic_weights - ) - - # semantics colormaps - semantic_labels = torch.argmax(torch.nn.functional.softmax(outputs["semantics"], dim=-1), dim=-1) - outputs["semantics_colormap"] = self.colormap.to(self.device)[semantic_labels] - - return outputs - - def get_metrics_dict(self, outputs, batch): - metrics_dict = {} - image = batch["image"].to(self.device) - image = self.renderer_rgb.blend_background(image) - metrics_dict["psnr"] = self.psnr(outputs["rgb"], image) - metrics_dict["distortion"] = distortion_loss(outputs["weights_list"], outputs["ray_samples_list"]) - return metrics_dict - - def get_loss_dict(self, outputs, batch, metrics_dict=None): - loss_dict = {} - image = batch["image"].to(self.device) - image = self.renderer_rgb.blend_background(image) - loss_dict["interlevel_loss"] = self.config.interlevel_loss_mult * interlevel_loss( - outputs["weights_list"], outputs["ray_samples_list"] - ) - assert metrics_dict is not None and "distortion" in metrics_dict - loss_dict["distortion_loss"] = self.config.distortion_loss_mult * metrics_dict["distortion"] - - # transient loss - if self.training and self.config.use_transient_embedding: - betas = outputs["uncertainty"] - loss_dict["uncertainty_loss"] = 3 + torch.log(betas).mean() - loss_dict["density_loss"] = 0.01 * outputs["density_transient"].mean() - loss_dict["rgb_loss"] = (((image - outputs["rgb"]) ** 2).sum(-1) / (betas[..., 0] ** 2)).mean() - else: - loss_dict["rgb_loss"] = self.rgb_loss(image, outputs["rgb"]) - - # semantic loss - loss_dict["semantics_loss"] = self.config.semantic_loss_weight * self.cross_entropy_loss( - outputs["semantics"], batch["semantics"][..., 0].long().to(self.device) - ) - return loss_dict - - def get_image_metrics_and_images( - self, outputs: Dict[str, torch.Tensor], batch: Dict[str, torch.Tensor] - ) -> Tuple[Dict[str, float], Dict[str, torch.Tensor]]: - image = batch["image"].to(self.device) - rgb = outputs["rgb"] - rgb, image = self.renderer_rgb.blend_background_for_loss_computation( - pred_image=rgb, - pred_accumulation=outputs["accumulation"], - gt_image=image, - ) - - rgb = torch.clamp(rgb, min=0, max=1) - acc = colormaps.apply_colormap(outputs["accumulation"]) - depth = colormaps.apply_depth_colormap( - outputs["depth"], - accumulation=outputs["accumulation"], - ) - - combined_rgb = torch.cat([image, rgb], dim=1) - combined_acc = torch.cat([acc], dim=1) - combined_depth = torch.cat([depth], dim=1) - - # Switch images from [H, W, C] to [1, C, H, W] for metrics computations - image = torch.moveaxis(image, -1, 0)[None, ...] - rgb = torch.moveaxis(rgb, -1, 0)[None, ...] - - psnr = self.psnr(image, rgb) - ssim = self.ssim(image, rgb) - lpips = self.lpips(image, rgb) - - # all of these metrics will be logged as scalars - metrics_dict = {"psnr": float(psnr.item()), "ssim": float(ssim)} # type: ignore - metrics_dict["lpips"] = float(lpips) - - images_dict = {"img": combined_rgb, "accumulation": combined_acc, "depth": combined_depth} - - for i in range(self.config.num_proposal_iterations): - key = f"prop_depth_{i}" - prop_depth_i = colormaps.apply_depth_colormap( - outputs[key], - accumulation=outputs["accumulation"], - ) - images_dict[key] = prop_depth_i - - # semantics - semantic_labels = torch.argmax(torch.nn.functional.softmax(outputs["semantics"], dim=-1), dim=-1) - images_dict["semantics_colormap"] = self.colormap.to(self.device)[semantic_labels] - - # valid mask - images_dict["mask"] = batch["mask"].repeat(1, 1, 3).to(self.device) - - return metrics_dict, images_dict diff --git a/nerfstudio/models/splatfacto.py b/nerfstudio/models/splatfacto.py index 7d7a78d2..728101ff 100644 --- a/nerfstudio/models/splatfacto.py +++ b/nerfstudio/models/splatfacto.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # ruff: noqa: E741 # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # @@ -20,6 +21,7 @@ from __future__ import annotations import math +import warnings from dataclasses import dataclass, field from typing import Dict, List, Optional, Tuple, Type, Union @@ -120,6 +122,8 @@ class SplatfactoModelConfig(ModelConfig): """whether to initialize the positions uniformly randomly (not SFM points)""" num_random: int = 50000 """Number of gaussians to initialize if random init is used""" + max_num_seed_points: int = -1 + """Maximum number of seed points to use for initialization. -1 means all seed points are used.""" random_scale: float = 10.0 "Size of the cube to initialize random gaussians within" ssim_lambda: float = 0.2 @@ -167,6 +171,14 @@ def __init__( super().__init__(*args, **kwargs) def populate_modules(self): + if self.seed_points is not None and self.config.max_num_seed_points > 0: + n_seed_points = self.seed_points[0].shape[0] + perm_idx = torch.randperm(n_seed_points) + self.seed_points = ( + self.seed_points[0][perm_idx][: self.config.max_num_seed_points], + self.seed_points[1][perm_idx][: self.config.max_num_seed_points], + ) + if self.seed_points is not None and not self.config.random_init: means = torch.nn.Parameter(self.seed_points[0]) # (Location, Color) else: @@ -826,6 +838,12 @@ def get_metrics_dict(self, outputs, batch) -> Dict[str, torch.Tensor]: gt_rgb = self.composite_with_background(self.get_gt_img(batch["image"]), outputs["background"]) metrics_dict = {} predicted_rgb = outputs["rgb"] + # slice gt_rgb to same shape as predicted_rgb + if not gt_rgb.shape[:2] == predicted_rgb.shape[:2]: + gt_rgb = gt_rgb[: predicted_rgb.shape[0], : predicted_rgb.shape[1], :] + # raise user warning + warnings.warn("GT image and predicted image have different shapes. Cropping GT image to match.") + metrics_dict["psnr"] = self.psnr(predicted_rgb, gt_rgb) metrics_dict["gaussian_count"] = self.num_points @@ -841,6 +859,10 @@ def get_loss_dict(self, outputs, batch, metrics_dict=None) -> Dict[str, torch.Te """ gt_img = self.composite_with_background(self.get_gt_img(batch["image"]), outputs["background"]) pred_img = outputs["rgb"] + if not gt_img.shape[:2] == pred_img.shape[:2]: + gt_img = gt_img[: pred_img.shape[0], : pred_img.shape[1], :] + # raise user warning + warnings.warn("GT image and predicted image have different shapes. Cropping GT image to match.") # Set masked part of both ground-truth and rendered image to black. # This is a little bit sketchy for the SSIM loss. @@ -910,6 +932,12 @@ def get_image_metrics_and_images( else: predicted_rgb = outputs["rgb"] + # slice gt_rgb to same shape as predicted_rgb + if not gt_rgb.shape[:2] == predicted_rgb.shape[:2]: + gt_rgb = gt_rgb[: predicted_rgb.shape[0], : predicted_rgb.shape[1], :] + # raise user warning + warnings.warn("GT image and predicted image have different shapes. Cropping GT image to match.") + combined_rgb = torch.cat([gt_rgb, predicted_rgb], dim=1) # Switch images from [H, W, C] to [1, C, H, W] for metrics computations diff --git a/nerfstudio/models/tensorf.py b/nerfstudio/models/tensorf.py deleted file mode 100644 index 6c149b4b..00000000 --- a/nerfstudio/models/tensorf.py +++ /dev/null @@ -1,378 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -""" -TensorRF implementation. -""" - -from __future__ import annotations - -from dataclasses import dataclass, field -from typing import Dict, List, Literal, Tuple, Type, cast - -import numpy as np -import torch -from torch.nn import Parameter - -from nerfstudio.cameras.camera_optimizers import CameraOptimizer, CameraOptimizerConfig -from nerfstudio.cameras.rays import RayBundle -from nerfstudio.configs.config_utils import to_immutable_dict -from nerfstudio.engine.callbacks import TrainingCallback, TrainingCallbackAttributes, TrainingCallbackLocation -from nerfstudio.field_components.encodings import NeRFEncoding, TensorCPEncoding, TensorVMEncoding, TriplaneEncoding -from nerfstudio.field_components.field_heads import FieldHeadNames -from nerfstudio.fields.tensorf_field import TensoRFField -from nerfstudio.model_components.losses import MSELoss, scale_gradients_by_distance_squared, tv_loss -from nerfstudio.model_components.ray_samplers import PDFSampler, UniformSampler -from nerfstudio.model_components.renderers import AccumulationRenderer, DepthRenderer, RGBRenderer -from nerfstudio.model_components.scene_colliders import AABBBoxCollider -from nerfstudio.models.base_model import Model, ModelConfig -from nerfstudio.utils import colormaps, colors, misc - - -@dataclass -class TensoRFModelConfig(ModelConfig): - """TensoRF model config""" - - _target: Type = field(default_factory=lambda: TensoRFModel) - """target class to instantiate""" - init_resolution: int = 128 - """initial render resolution""" - final_resolution: int = 300 - """final render resolution""" - upsampling_iters: Tuple[int, ...] = (2000, 3000, 4000, 5500, 7000) - """specifies a list of iteration step numbers to perform upsampling""" - loss_coefficients: Dict[str, float] = to_immutable_dict( - { - "rgb_loss": 1.0, - "tv_reg_density": 1e-3, - "tv_reg_color": 1e-4, - "l1_reg": 5e-4, - } - ) - """Loss specific weights.""" - num_samples: int = 50 - """Number of samples in field evaluation""" - num_uniform_samples: int = 200 - """Number of samples in density evaluation""" - num_den_components: int = 16 - """Number of components in density encoding""" - num_color_components: int = 48 - """Number of components in color encoding""" - appearance_dim: int = 27 - """Number of channels for color encoding""" - tensorf_encoding: Literal["triplane", "vm", "cp"] = "vm" - regularization: Literal["none", "l1", "tv"] = "l1" - """Regularization method used in tensorf paper""" - camera_optimizer: CameraOptimizerConfig = field(default_factory=lambda: CameraOptimizerConfig(mode="SO3xR3")) - """Config of the camera optimizer to use""" - use_gradient_scaling: bool = False - """Use gradient scaler where the gradients are lower for points closer to the camera.""" - background_color: Literal["random", "last_sample", "black", "white"] = "white" - """Whether to randomize the background color.""" - - -class TensoRFModel(Model): - """TensoRF Model - - Args: - config: TensoRF configuration to instantiate model - """ - - config: TensoRFModelConfig - - def __init__( - self, - config: TensoRFModelConfig, - **kwargs, - ) -> None: - self.init_resolution = config.init_resolution - self.upsampling_iters = config.upsampling_iters - self.num_den_components = config.num_den_components - self.num_color_components = config.num_color_components - self.appearance_dim = config.appearance_dim - self.upsampling_steps = ( - np.round( - np.exp( - np.linspace( - np.log(config.init_resolution), - np.log(config.final_resolution), - len(config.upsampling_iters) + 1, - ) - ) - ) - .astype("int") - .tolist()[1:] - ) - super().__init__(config=config, **kwargs) - - def get_training_callbacks( - self, training_callback_attributes: TrainingCallbackAttributes - ) -> List[TrainingCallback]: - # the callback that we want to run every X iterations after the training iteration - def reinitialize_optimizer(self, training_callback_attributes: TrainingCallbackAttributes, step: int): - assert training_callback_attributes.optimizers is not None - assert training_callback_attributes.pipeline is not None - index = self.upsampling_iters.index(step) - resolution = self.upsampling_steps[index] - - # upsample the position and direction grids - self.field.density_encoding.upsample_grid(resolution) - self.field.color_encoding.upsample_grid(resolution) - - # reinitialize the encodings optimizer - optimizers_config = training_callback_attributes.optimizers.config - enc = training_callback_attributes.pipeline.get_param_groups()["encodings"] - lr_init = optimizers_config["encodings"]["optimizer"].lr - - training_callback_attributes.optimizers.optimizers["encodings"] = optimizers_config["encodings"][ - "optimizer" - ].setup(params=enc) - if optimizers_config["encodings"]["scheduler"]: - training_callback_attributes.optimizers.schedulers["encodings"] = ( - optimizers_config["encodings"]["scheduler"] - .setup() - .get_scheduler( - optimizer=training_callback_attributes.optimizers.optimizers["encodings"], lr_init=lr_init - ) - ) - - callbacks = [ - TrainingCallback( - where_to_run=[TrainingCallbackLocation.AFTER_TRAIN_ITERATION], - iters=self.upsampling_iters, - func=reinitialize_optimizer, - args=[self, training_callback_attributes], - ) - ] - return callbacks - - def update_to_step(self, step: int) -> None: - if step < self.upsampling_iters[0]: - return - - new_iters = list(self.upsampling_iters) + [step + 1] - new_iters.sort() - - index = new_iters.index(step + 1) - new_grid_resolution = self.upsampling_steps[index - 1] - - self.field.density_encoding.upsample_grid(new_grid_resolution) # type: ignore - self.field.color_encoding.upsample_grid(new_grid_resolution) # type: ignore - - def populate_modules(self): - """Set the fields and modules""" - super().populate_modules() - - # setting up fields - if self.config.tensorf_encoding == "vm": - density_encoding = TensorVMEncoding( - resolution=self.init_resolution, - num_components=self.num_den_components, - ) - color_encoding = TensorVMEncoding( - resolution=self.init_resolution, - num_components=self.num_color_components, - ) - elif self.config.tensorf_encoding == "cp": - density_encoding = TensorCPEncoding( - resolution=self.init_resolution, - num_components=self.num_den_components, - ) - color_encoding = TensorCPEncoding( - resolution=self.init_resolution, - num_components=self.num_color_components, - ) - elif self.config.tensorf_encoding == "triplane": - density_encoding = TriplaneEncoding( - resolution=self.init_resolution, - num_components=self.num_den_components, - ) - color_encoding = TriplaneEncoding( - resolution=self.init_resolution, - num_components=self.num_color_components, - ) - else: - raise ValueError(f"Encoding {self.config.tensorf_encoding} not supported") - - feature_encoding = NeRFEncoding(in_dim=self.appearance_dim, num_frequencies=2, min_freq_exp=0, max_freq_exp=2) - direction_encoding = NeRFEncoding(in_dim=3, num_frequencies=2, min_freq_exp=0, max_freq_exp=2) - - self.field = TensoRFField( - self.scene_box.aabb, - feature_encoding=feature_encoding, - direction_encoding=direction_encoding, - density_encoding=density_encoding, - color_encoding=color_encoding, - appearance_dim=self.appearance_dim, - head_mlp_num_layers=2, - head_mlp_layer_width=128, - use_sh=False, - ) - - # samplers - self.sampler_uniform = UniformSampler(num_samples=self.config.num_uniform_samples, single_jitter=True) - self.sampler_pdf = PDFSampler(num_samples=self.config.num_samples, single_jitter=True, include_original=False) - - # renderers - self.renderer_rgb = RGBRenderer(background_color=self.config.background_color) - self.renderer_accumulation = AccumulationRenderer() - self.renderer_depth = DepthRenderer() - - # losses - self.rgb_loss = MSELoss() - - # metrics - from torchmetrics.functional import structural_similarity_index_measure - from torchmetrics.image import PeakSignalNoiseRatio - from torchmetrics.image.lpip import LearnedPerceptualImagePatchSimilarity - - self.psnr = PeakSignalNoiseRatio(data_range=1.0) - self.ssim = structural_similarity_index_measure - self.lpips = LearnedPerceptualImagePatchSimilarity(normalize=True) - - # colliders - if self.config.enable_collider: - self.collider = AABBBoxCollider(scene_box=self.scene_box) - - # regularizations - if self.config.tensorf_encoding == "cp" and self.config.regularization == "tv": - raise RuntimeError("TV reg not supported for CP decomposition") - - # (optional) camera optimizer - self.camera_optimizer: CameraOptimizer = self.config.camera_optimizer.setup( - num_cameras=self.num_train_data, device="cpu" - ) - - def get_param_groups(self) -> Dict[str, List[Parameter]]: - param_groups = {} - - param_groups["fields"] = ( - list(self.field.mlp_head.parameters()) - + list(self.field.B.parameters()) - + list(self.field.field_output_rgb.parameters()) - ) - param_groups["encodings"] = list(self.field.color_encoding.parameters()) + list( - self.field.density_encoding.parameters() - ) - self.camera_optimizer.get_param_groups(param_groups=param_groups) - - return param_groups - - def get_outputs(self, ray_bundle: RayBundle): - # uniform sampling - if self.training: - self.camera_optimizer.apply_to_raybundle(ray_bundle) - ray_samples_uniform = self.sampler_uniform(ray_bundle) - dens = self.field.get_density(ray_samples_uniform) - weights = ray_samples_uniform.get_weights(dens) - coarse_accumulation = self.renderer_accumulation(weights) - acc_mask = torch.where(coarse_accumulation < 0.0001, False, True).reshape(-1) - - # pdf sampling - ray_samples_pdf = self.sampler_pdf(ray_bundle, ray_samples_uniform, weights) - - # fine field: - field_outputs_fine = self.field.forward( - ray_samples_pdf, mask=acc_mask, bg_color=colors.WHITE.to(weights.device) - ) - if self.config.use_gradient_scaling: - field_outputs_fine = scale_gradients_by_distance_squared(field_outputs_fine, ray_samples_pdf) - - weights_fine = ray_samples_pdf.get_weights(field_outputs_fine[FieldHeadNames.DENSITY]) - - accumulation = self.renderer_accumulation(weights_fine) - depth = self.renderer_depth(weights_fine, ray_samples_pdf) - - rgb = self.renderer_rgb( - rgb=field_outputs_fine[FieldHeadNames.RGB], - weights=weights_fine, - ) - - rgb = torch.where(accumulation < 0, colors.WHITE.to(rgb.device), rgb) - accumulation = torch.clamp(accumulation, min=0) - - outputs = {"rgb": rgb, "accumulation": accumulation, "depth": depth} - return outputs - - def get_loss_dict(self, outputs, batch, metrics_dict=None) -> Dict[str, torch.Tensor]: - # Scaling metrics by coefficients to create the losses. - device = outputs["rgb"].device - image = batch["image"].to(device) - pred_image, image = self.renderer_rgb.blend_background_for_loss_computation( - pred_image=outputs["rgb"], - pred_accumulation=outputs["accumulation"], - gt_image=image, - ) - - rgb_loss = self.rgb_loss(image, pred_image) - - loss_dict = {"rgb_loss": rgb_loss} - - if self.config.regularization == "l1": - l1_parameters = [] - for parameter in self.field.density_encoding.parameters(): - l1_parameters.append(parameter.view(-1)) - loss_dict["l1_reg"] = torch.abs(torch.cat(l1_parameters)).mean() - elif self.config.regularization == "tv": - density_plane_coef = self.field.density_encoding.plane_coef - color_plane_coef = self.field.color_encoding.plane_coef - assert isinstance(color_plane_coef, torch.Tensor) and isinstance( - density_plane_coef, torch.Tensor - ), "TV reg only supported for TensoRF encoding types with plane_coef attribute" - loss_dict["tv_reg_density"] = tv_loss(density_plane_coef) - loss_dict["tv_reg_color"] = tv_loss(color_plane_coef) - elif self.config.regularization == "none": - pass - else: - raise ValueError(f"Regularization {self.config.regularization} not supported") - - self.camera_optimizer.get_loss_dict(loss_dict) - - loss_dict = misc.scale_dict(loss_dict, self.config.loss_coefficients) - return loss_dict - - def get_image_metrics_and_images( - self, outputs: Dict[str, torch.Tensor], batch: Dict[str, torch.Tensor] - ) -> Tuple[Dict[str, float], Dict[str, torch.Tensor]]: - image = batch["image"].to(outputs["rgb"].device) - image = self.renderer_rgb.blend_background(image) - rgb = outputs["rgb"] - acc = colormaps.apply_colormap(outputs["accumulation"]) - assert self.config.collider_params is not None - depth = colormaps.apply_depth_colormap( - outputs["depth"], - accumulation=outputs["accumulation"], - near_plane=self.config.collider_params["near_plane"], - far_plane=self.config.collider_params["far_plane"], - ) - - combined_rgb = torch.cat([image, rgb], dim=1) - - # Switch images from [H, W, C] to [1, C, H, W] for metrics computations - image = torch.moveaxis(image, -1, 0)[None, ...] - rgb = torch.moveaxis(rgb, -1, 0)[None, ...] - - psnr = self.psnr(image, rgb) - ssim = cast(torch.Tensor, self.ssim(image, rgb)) - lpips = self.lpips(image, rgb) - - metrics_dict = { - "psnr": float(psnr.item()), - "ssim": float(ssim.item()), - "lpips": float(lpips.item()), - } - self.camera_optimizer.get_metrics_dict(metrics_dict) - - images_dict = {"img": combined_rgb, "accumulation": acc, "depth": depth} - return metrics_dict, images_dict diff --git a/nerfstudio/models/vanilla_nerf.py b/nerfstudio/models/vanilla_nerf.py deleted file mode 100644 index dd856510..00000000 --- a/nerfstudio/models/vanilla_nerf.py +++ /dev/null @@ -1,264 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -""" -Implementation of vanilla nerf. -""" - -from __future__ import annotations - -from dataclasses import dataclass, field -from typing import Any, Dict, List, Literal, Tuple, Type - -import torch -from torch.nn import Parameter - -from nerfstudio.cameras.rays import RayBundle -from nerfstudio.configs.config_utils import to_immutable_dict -from nerfstudio.field_components.encodings import NeRFEncoding -from nerfstudio.field_components.field_heads import FieldHeadNames -from nerfstudio.field_components.temporal_distortions import TemporalDistortionKind -from nerfstudio.fields.vanilla_nerf_field import NeRFField -from nerfstudio.model_components.losses import MSELoss, scale_gradients_by_distance_squared -from nerfstudio.model_components.ray_samplers import PDFSampler, UniformSampler -from nerfstudio.model_components.renderers import AccumulationRenderer, DepthRenderer, RGBRenderer -from nerfstudio.models.base_model import Model, ModelConfig -from nerfstudio.utils import colormaps, misc - - -@dataclass -class VanillaModelConfig(ModelConfig): - """Vanilla Model Config""" - - _target: Type = field(default_factory=lambda: NeRFModel) - num_coarse_samples: int = 64 - """Number of samples in coarse field evaluation""" - num_importance_samples: int = 128 - """Number of samples in fine field evaluation""" - - enable_temporal_distortion: bool = False - """Specifies whether or not to include ray warping based on time.""" - temporal_distortion_params: Dict[str, Any] = to_immutable_dict({"kind": TemporalDistortionKind.DNERF}) - """Parameters to instantiate temporal distortion with""" - use_gradient_scaling: bool = False - """Use gradient scaler where the gradients are lower for points closer to the camera.""" - background_color: Literal["random", "last_sample", "black", "white"] = "white" - """Whether to randomize the background color.""" - - -class NeRFModel(Model): - """Vanilla NeRF model - - Args: - config: Basic NeRF configuration to instantiate model - """ - - config: VanillaModelConfig - - def __init__( - self, - config: VanillaModelConfig, - **kwargs, - ) -> None: - self.field_coarse = None - self.field_fine = None - self.temporal_distortion = None - - super().__init__( - config=config, - **kwargs, - ) - - def populate_modules(self): - """Set the fields and modules""" - super().populate_modules() - - # fields - position_encoding = NeRFEncoding( - in_dim=3, num_frequencies=10, min_freq_exp=0.0, max_freq_exp=8.0, include_input=True - ) - direction_encoding = NeRFEncoding( - in_dim=3, num_frequencies=4, min_freq_exp=0.0, max_freq_exp=4.0, include_input=True - ) - - self.field_coarse = NeRFField( - position_encoding=position_encoding, - direction_encoding=direction_encoding, - ) - - self.field_fine = NeRFField( - position_encoding=position_encoding, - direction_encoding=direction_encoding, - ) - - # samplers - self.sampler_uniform = UniformSampler(num_samples=self.config.num_coarse_samples) - self.sampler_pdf = PDFSampler(num_samples=self.config.num_importance_samples) - - # renderers - self.renderer_rgb = RGBRenderer(background_color=self.config.background_color) - self.renderer_accumulation = AccumulationRenderer() - self.renderer_depth = DepthRenderer() - - # losses - self.rgb_loss = MSELoss() - - # metrics - from torchmetrics.functional import structural_similarity_index_measure - from torchmetrics.image import PeakSignalNoiseRatio - from torchmetrics.image.lpip import LearnedPerceptualImagePatchSimilarity - - self.psnr = PeakSignalNoiseRatio(data_range=1.0) - self.ssim = structural_similarity_index_measure - self.lpips = LearnedPerceptualImagePatchSimilarity(normalize=True) - - if getattr(self.config, "enable_temporal_distortion", False): - params = self.config.temporal_distortion_params - kind = params.pop("kind") - self.temporal_distortion = kind.to_temporal_distortion(params) - - def get_param_groups(self) -> Dict[str, List[Parameter]]: - param_groups = {} - if self.field_coarse is None or self.field_fine is None: - raise ValueError("populate_fields() must be called before get_param_groups") - param_groups["fields"] = list(self.field_coarse.parameters()) + list(self.field_fine.parameters()) - if self.temporal_distortion is not None: - param_groups["temporal_distortion"] = list(self.temporal_distortion.parameters()) - return param_groups - - def get_outputs(self, ray_bundle: RayBundle): - if self.field_coarse is None or self.field_fine is None: - raise ValueError("populate_fields() must be called before get_outputs") - - # uniform sampling - ray_samples_uniform = self.sampler_uniform(ray_bundle) - if self.temporal_distortion is not None: - offsets = None - if ray_samples_uniform.times is not None: - offsets = self.temporal_distortion( - ray_samples_uniform.frustums.get_positions(), ray_samples_uniform.times - ) - ray_samples_uniform.frustums.set_offsets(offsets) - - # coarse field: - field_outputs_coarse = self.field_coarse.forward(ray_samples_uniform) - if self.config.use_gradient_scaling: - field_outputs_coarse = scale_gradients_by_distance_squared(field_outputs_coarse, ray_samples_uniform) - weights_coarse = ray_samples_uniform.get_weights(field_outputs_coarse[FieldHeadNames.DENSITY]) - rgb_coarse = self.renderer_rgb( - rgb=field_outputs_coarse[FieldHeadNames.RGB], - weights=weights_coarse, - ) - accumulation_coarse = self.renderer_accumulation(weights_coarse) - depth_coarse = self.renderer_depth(weights_coarse, ray_samples_uniform) - - # pdf sampling - ray_samples_pdf = self.sampler_pdf(ray_bundle, ray_samples_uniform, weights_coarse) - if self.temporal_distortion is not None: - offsets = None - if ray_samples_pdf.times is not None: - offsets = self.temporal_distortion(ray_samples_pdf.frustums.get_positions(), ray_samples_pdf.times) - ray_samples_pdf.frustums.set_offsets(offsets) - - # fine field: - field_outputs_fine = self.field_fine.forward(ray_samples_pdf) - if self.config.use_gradient_scaling: - field_outputs_fine = scale_gradients_by_distance_squared(field_outputs_fine, ray_samples_pdf) - weights_fine = ray_samples_pdf.get_weights(field_outputs_fine[FieldHeadNames.DENSITY]) - rgb_fine = self.renderer_rgb( - rgb=field_outputs_fine[FieldHeadNames.RGB], - weights=weights_fine, - ) - accumulation_fine = self.renderer_accumulation(weights_fine) - depth_fine = self.renderer_depth(weights_fine, ray_samples_pdf) - - outputs = { - "rgb_coarse": rgb_coarse, - "rgb_fine": rgb_fine, - "accumulation_coarse": accumulation_coarse, - "accumulation_fine": accumulation_fine, - "depth_coarse": depth_coarse, - "depth_fine": depth_fine, - } - return outputs - - def get_loss_dict(self, outputs, batch, metrics_dict=None) -> Dict[str, torch.Tensor]: - # Scaling metrics by coefficients to create the losses. - device = outputs["rgb_coarse"].device - image = batch["image"].to(device) - coarse_pred, coarse_image = self.renderer_rgb.blend_background_for_loss_computation( - pred_image=outputs["rgb_coarse"], - pred_accumulation=outputs["accumulation_coarse"], - gt_image=image, - ) - fine_pred, fine_image = self.renderer_rgb.blend_background_for_loss_computation( - pred_image=outputs["rgb_fine"], - pred_accumulation=outputs["accumulation_fine"], - gt_image=image, - ) - - rgb_loss_coarse = self.rgb_loss(coarse_image, coarse_pred) - rgb_loss_fine = self.rgb_loss(fine_image, fine_pred) - - loss_dict = {"rgb_loss_coarse": rgb_loss_coarse, "rgb_loss_fine": rgb_loss_fine} - loss_dict = misc.scale_dict(loss_dict, self.config.loss_coefficients) - return loss_dict - - def get_image_metrics_and_images( - self, outputs: Dict[str, torch.Tensor], batch: Dict[str, torch.Tensor] - ) -> Tuple[Dict[str, float], Dict[str, torch.Tensor]]: - image = batch["image"].to(outputs["rgb_coarse"].device) - image = self.renderer_rgb.blend_background(image) - rgb_coarse = outputs["rgb_coarse"] - rgb_fine = outputs["rgb_fine"] - acc_coarse = colormaps.apply_colormap(outputs["accumulation_coarse"]) - acc_fine = colormaps.apply_colormap(outputs["accumulation_fine"]) - assert self.config.collider_params is not None - depth_coarse = colormaps.apply_depth_colormap( - outputs["depth_coarse"], - accumulation=outputs["accumulation_coarse"], - near_plane=self.config.collider_params["near_plane"], - far_plane=self.config.collider_params["far_plane"], - ) - depth_fine = colormaps.apply_depth_colormap( - outputs["depth_fine"], - accumulation=outputs["accumulation_fine"], - near_plane=self.config.collider_params["near_plane"], - far_plane=self.config.collider_params["far_plane"], - ) - - combined_rgb = torch.cat([image, rgb_coarse, rgb_fine], dim=1) - combined_acc = torch.cat([acc_coarse, acc_fine], dim=1) - combined_depth = torch.cat([depth_coarse, depth_fine], dim=1) - - # Switch images from [H, W, C] to [1, C, H, W] for metrics computations - image = torch.moveaxis(image, -1, 0)[None, ...] - rgb_coarse = torch.moveaxis(rgb_coarse, -1, 0)[None, ...] - rgb_fine = torch.moveaxis(rgb_fine, -1, 0)[None, ...] - - coarse_psnr = self.psnr(image, rgb_coarse) - fine_psnr = self.psnr(image, rgb_fine) - fine_ssim = self.ssim(image, rgb_fine) - fine_lpips = self.lpips(image, rgb_fine) - assert isinstance(fine_ssim, torch.Tensor) - - metrics_dict = { - "psnr": float(fine_psnr.item()), - "coarse_psnr": float(coarse_psnr), - "fine_psnr": float(fine_psnr), - "fine_ssim": float(fine_ssim), - "fine_lpips": float(fine_lpips), - } - images_dict = {"img": combined_rgb, "accumulation": combined_acc, "depth": combined_depth} - return metrics_dict, images_dict diff --git a/nerfstudio/pipelines/ad_pipeline.py b/nerfstudio/pipelines/ad_pipeline.py new file mode 100644 index 00000000..ce1c147c --- /dev/null +++ b/nerfstudio/pipelines/ad_pipeline.py @@ -0,0 +1,392 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# +# 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 math +from dataclasses import dataclass, field +from pathlib import Path +from time import time +from typing import Dict, List, Optional, Tuple, Type + +import torch +from PIL import Image +from rich.progress import BarColumn, MofNCompleteColumn, Progress, TextColumn, TimeElapsedColumn +from torchmetrics.image.fid import FrechetInceptionDistance +from torchvision.transforms.functional import to_pil_image, to_tensor + +from nerfstudio.data.datamanagers.ad_datamanager import ADDataManager, ADDataManagerConfig +from nerfstudio.data.datamanagers.base_datamanager import VanillaDataManager +from nerfstudio.data.datamanagers.parallel_datamanager import ParallelDataManager +from nerfstudio.models.ad_model import ADModel, ADModelConfig +from nerfstudio.pipelines.base_pipeline import VanillaPipeline, VanillaPipelineConfig +from nerfstudio.utils import profiler + + +@dataclass +class ADPipelineConfig(VanillaPipelineConfig): + """Configuration for pipeline instantiation""" + + _target: Type = field(default_factory=lambda: ADPipeline) + """target class to instantiate""" + datamanager: ADDataManagerConfig = field(default_factory=ADDataManagerConfig) + """specifies the datamanager config""" + model: ADModelConfig = field(default_factory=ADModelConfig) + """specifies the model config""" + calc_fid_steps: Tuple[int, ...] = (20000,) # NOTE: must also be an eval step for this to work + """Whether to calculate FID for lane shifted images.""" + ray_patch_size: Tuple[int, int] = (32, 32) + """Size of the ray patches to sample from the image during training (for camera rays only).""" + + def __post_init__(self) -> None: + assert self.ray_patch_size[0] == self.ray_patch_size[1], "Non-square patches are not supported yet, sorry." + self.datamanager.image_divisible_by = self.model.rgb_upsample_factor + + +class ADPipeline(VanillaPipeline): + """Pipeline for training AD models.""" + + def __init__(self, config: ADPipelineConfig, **kwargs): + pixel_sampler = config.datamanager.pixel_sampler + pixel_sampler.patch_size = config.ray_patch_size[0] + pixel_sampler.patch_scale = config.model.rgb_upsample_factor + super().__init__(config, **kwargs) + + # Fix type hints + self.datamanager: ADDataManager = self.datamanager + self.model: ADModel = self.model + self.config: ADPipelineConfig = self.config + + # Disable ray drop classification if we do not add missing points + if not self.datamanager.dataparser.config.add_missing_points: + self.model.disable_ray_drop() + + self.fid = None + + @profiler.time_function + def get_train_loss_dict(self, step: int): + """This function gets your training loss dict. This will be responsible for + getting the next batch of data from the DataManager and interfacing with the + Model class, feeding the data to the model's forward function. + + Args: + step: current iteration step to update sampler if using DDP (distributed) + """ + # Regular forward pass and loss calc + ray_bundle, batch = self.datamanager.next_train(step) + model_outputs = self._model(ray_bundle, patch_size=self.config.ray_patch_size) + metrics_dict = self.model.get_metrics_dict(model_outputs, batch) + + if (actors := self.model.dynamic_actors).config.optimize_trajectories: + pos_norm = (actors.actor_positions - actors.initial_positions).norm(dim=-1) + metrics_dict["traj_opt_translation"] = pos_norm[pos_norm > 0].mean().nan_to_num() + metrics_dict["traj_opt_rotation"] = ( + (actors.actor_rotations_6d - actors.initial_rotations_6d)[pos_norm > 0].norm(dim=-1).mean().nan_to_num() + ) + + loss_dict = self.model.get_loss_dict(model_outputs, batch, metrics_dict) + + return model_outputs, loss_dict, metrics_dict + + @profiler.time_function + def get_eval_loss_dict(self, step: int): + """This function gets your evaluation loss dict. It needs to get the data + from the DataManager and feed it to the model's forward function + + Args: + step: current iteration step + """ + self.eval() + ray_bundle, batch = self.datamanager.next_eval(step) + model_outputs = self.model(ray_bundle, patch_size=self.config.ray_patch_size) + metrics_dict = self.model.get_metrics_dict(model_outputs, batch) + loss_dict = self.model.get_loss_dict(model_outputs, batch, metrics_dict) + self.train() + return model_outputs, loss_dict, metrics_dict + + @profiler.time_function + def get_eval_image_metrics_and_images(self, step: int): + """This function gets your evaluation loss dict. It needs to get the data + from the DataManager and feed it to the model's forward function + + Args: + step: current iteration step + """ + self.eval() + # Image eval + camera, batch = self.datamanager.next_eval_image(step) + outputs = self.model.get_outputs_for_camera(camera) + metrics_dict, images_dict = self.model.get_image_metrics_and_images(outputs, batch) + assert "num_rays" not in metrics_dict + metrics_dict["num_rays"] = (camera.height * camera.width * camera.size).item() + + # Lidar eval + lidar, batch = self.datamanager.next_eval_lidar(step) + outputs, batch = self.model.get_outputs_for_lidar(lidar, batch=batch) + lidar_metrics_dict, _ = self.model.get_image_metrics_and_images(outputs, batch) + assert not set(lidar_metrics_dict.keys()).intersection(metrics_dict.keys()) + metrics_dict.update(lidar_metrics_dict) + + self.train() + return metrics_dict, images_dict + + @profiler.time_function + def get_average_eval_image_metrics( + self, step: Optional[int] = None, output_path: Optional[Path] = None, get_std: bool = False + ): + """Iterate over all the images in the eval dataset and get the average. + + Args: + step: current training step + output_path: optional path to save rendered images to + get_std: Set True if you want to return std with the mean metric. + + Returns: + metrics_dict: dictionary of metrics + """ + self.eval() + metrics_dict_list = [] + assert isinstance(self.datamanager, (VanillaDataManager, ParallelDataManager)) + with Progress( + TextColumn("[progress.description]{task.description}"), + BarColumn(), + TimeElapsedColumn(), + MofNCompleteColumn(), + transient=True, + ) as progress: + lane_shift_fids = ( + {i: FrechetInceptionDistance().to(self.device) for i in (0, 2, 3)} + if step in self.config.calc_fid_steps or step is None + else {} + ) + vertical_shift_fids = ( + {i: FrechetInceptionDistance().to(self.device) for i in (1,)} + if step in self.config.calc_fid_steps or step is None + else {} + ) + actor_edits = { + "rot": [(0.5, 0), (-0.5, 0)], + "trans": [(0, 2.0), (0, -2.0)], + # "both": [(0.5, 2.0), (-0.5, 2.0), (0.5, -2.0), (-0.5, -2.0)], + } + actor_fids = ( + {k: FrechetInceptionDistance().to(self.device) for k in actor_edits.keys()} + if step in self.config.calc_fid_steps or step is None + else {} + ) + if actor_fids: + actor_fids["true"] = FrechetInceptionDistance().to(self.device) + + num_images = len(self.datamanager.fixed_indices_eval_dataloader) + task = progress.add_task("[green]Evaluating all eval images...", total=num_images) + for camera, batch in self.datamanager.fixed_indices_eval_dataloader: + # time this the following line + inner_start = time() + # Generate images from the original rays + camera_ray_bundle = camera.generate_rays(camera_indices=0, keep_shape=True) + outputs = self.model.get_outputs_for_camera_ray_bundle(camera_ray_bundle) + # Compute metrics for the original image + metrics_dict, images_dict = self.model.get_image_metrics_and_images(outputs, batch) + if output_path is not None: + camera_indices = camera_ray_bundle.camera_indices + assert camera_indices is not None + for key, val in images_dict.items(): + Image.fromarray((val * 255).byte().cpu().numpy()).save( + output_path / "{0:06d}-{1}.jpg".format(int(camera_indices[0, 0, 0]), key) + ) + # Add timing stuff + assert "num_rays_per_sec" not in metrics_dict + num_rays = math.prod(camera_ray_bundle.shape) + metrics_dict["num_rays_per_sec"] = num_rays / (time() - inner_start) + fps_str = "fps" + assert fps_str not in metrics_dict + metrics_dict[fps_str] = metrics_dict["num_rays_per_sec"] / num_rays + metrics_dict_list.append(metrics_dict) + if lane_shift_fids: + self._update_lane_shift_fid(lane_shift_fids, camera_ray_bundle, batch["image"], outputs["rgb"]) + if vertical_shift_fids: + self._update_vertical_shift_fid(vertical_shift_fids, camera_ray_bundle, batch["image"]) + if actor_fids: + self._update_actor_fids(actor_fids, actor_edits, camera_ray_bundle, batch["image"]) + progress.advance(task) + num_lidar = len(self.datamanager.fixed_indices_eval_lidar_dataloader) + task = progress.add_task("[green]Evaluating all eval point clouds...", total=num_lidar) + for lidar, batch in self.datamanager.fixed_indices_eval_lidar_dataloader: + outputs, batch = self.model.get_outputs_for_lidar(lidar, batch=batch) + metrics_dict, _ = self.model.get_image_metrics_and_images(outputs, batch) + metrics_dict_list.append(metrics_dict) + progress.advance(task) + + # average the metrics list + metrics_dict = {} + keys = {key for metrics_dict in metrics_dict_list for key in metrics_dict.keys()} + # remove the keys related to actor metrics as they need to be averaged differently + actor_keys = {key for key in keys if key.startswith("actor_")} + keys = keys - actor_keys + + for key in keys: + if get_std: + key_std, key_mean = torch.std_mean( + torch.tensor([metrics_dict[key] for metrics_dict in metrics_dict_list if key in metrics_dict]) + ) + metrics_dict[key] = float(key_mean) + metrics_dict[f"{key}_std"] = float(key_std) + else: + metrics_dict[key] = float( + torch.mean( + torch.tensor([metrics_dict[key] for metrics_dict in metrics_dict_list if key in metrics_dict]) + ) + ) + # average the actor metrics. Note that due to the way we compute the actor metrics, + # we need to weight them by how big portion of the image they cover. + actor_metrics_dict = [md for md in metrics_dict_list if "actor_coverage" in md] + if actor_metrics_dict: + actor_coverages = torch.tensor([md["actor_coverage"] for md in actor_metrics_dict]) + for key in actor_keys: + # we dont want to average the actor coverage in this way. + if key == "actor_coverage": + continue + # we should weight the actor metrics by the actor coverage + metrics_dict[key] = float( + torch.sum( + torch.tensor( + [md[key] for md in actor_metrics_dict], + ) + * actor_coverages + ) + / actor_coverages.sum() + ) + + # Add FID metrics (if applicable) + for shift, fid in lane_shift_fids.items(): + metrics_dict[f"lane_shift_{shift}_fid"] = fid.compute().item() + + for shift, fid in vertical_shift_fids.items(): + metrics_dict[f"vertical_shift_{shift}_fid"] = fid.compute().item() + + if actor_fids: + for edit_type in actor_edits.keys(): + metrics_dict[f"actor_shift_{edit_type}_fid"] = actor_fids[edit_type].compute().item() + + self.train() + return metrics_dict + + @staticmethod + def _downsample_img( + img: torch.Tensor, + out_size: Tuple[int, int] = ( + 299, + 299, + ), + ): + """Converts tensor to PIL, downsamples with bicubic, and converts back to tensor.""" + img = to_pil_image(img) + img = img.resize(out_size, Image.BICUBIC) + img = to_tensor(img) + return img + + def _update_lane_shift_fid(self, fids: Dict[int, FrechetInceptionDistance], ray_bundle, orig_img, gen_img): + """Updates the FID metrics (for shifted views) for the given ray bundle and images.""" + # Update "true" FID (with hack to only compute it once) + img_original = ( + (self._downsample_img((orig_img).permute(2, 0, 1)) * 255).unsqueeze(0).to(torch.uint8).to(self.device) + ) + fids_list = list(fids.values()) + fids_list[0].update(img_original, real=True) + for fid in fids_list[1:]: + fid.real_features_sum = fids_list[0].real_features_sum + fid.real_features_cov_sum = fids_list[0].real_features_cov_sum + fid.real_features_num_samples = fids_list[0].real_features_num_samples + + # Compute FID for shifted views + assert fids.keys() == {0, 2, 3}, "Shift amounts are hardcoded for now." + imgs_generated = {0: gen_img} + + driving_direction = ray_bundle.metadata["velocities"][0, 0, :] + driving_direction = driving_direction / driving_direction.norm() + orth_right_direction = torch.cross( + driving_direction, torch.tensor([0.0, 0.0, 1.0], device=driving_direction.device) + ) + + # TODO: Do we need to take z axis into account? + shift_sign = self.datamanager.eval_lidar_dataset.metadata.get("lane_shift_sign", 1) + original_ray_origins = ray_bundle.origins.clone() + ray_bundle.origins[..., :2] += 2 * orth_right_direction[:2] * shift_sign + imgs_generated[2] = self.model.get_outputs_for_camera_ray_bundle(ray_bundle)["rgb"] + ray_bundle.origins[..., :2] += 1 * orth_right_direction[:2] * shift_sign + imgs_generated[3] = self.model.get_outputs_for_camera_ray_bundle(ray_bundle)["rgb"] + ray_bundle.origins = original_ray_origins + for shift, img in imgs_generated.items(): + img = (self._downsample_img((img).permute(2, 0, 1)) * 255).unsqueeze(0).to(torch.uint8).to(self.device) + fids[shift].update(img, real=False) + + def _update_vertical_shift_fid(self, fids: Dict[int, FrechetInceptionDistance], ray_bundle, orig_img): + """Updates the FID metrics (for shifted views) for the given ray bundle and images.""" + # Update "true" FID (with hack to only compute it once) + img_original = ( + (self._downsample_img((orig_img).permute(2, 0, 1)) * 255).unsqueeze(0).to(torch.uint8).to(self.device) + ) + fids_list = list(fids.values()) + fids_list[0].update(img_original, real=True) + for fid in fids_list[1:]: + fid.real_features_sum = fids_list[0].real_features_sum + fid.real_features_cov_sum = fids_list[0].real_features_cov_sum + fid.real_features_num_samples = fids_list[0].real_features_num_samples + + # Compute FID for shifted views + assert fids.keys() == {1}, "Shift amounts are hardcoded for now." + imgs_generated = {} + + original_ray_origins = ray_bundle.origins.clone() + ray_bundle.origins[..., 2] += 1.0 + imgs_generated[1] = self.model.get_outputs_for_camera_ray_bundle(ray_bundle)["rgb"] + ray_bundle.origins = original_ray_origins + + for shift, img in imgs_generated.items(): + img = (self._downsample_img((img).permute(2, 0, 1)) * 255).unsqueeze(0).to(torch.uint8).to(self.device) + fids[shift].update(img, real=False) + + def _update_actor_fids( + self, + fids: Dict[str, FrechetInceptionDistance], + actor_edits: Dict[str, List[Tuple]], + ray_bundle, + orig_img, + ) -> None: + """Updates the FID metrics (for shifted actor views) for the given ray bundle and images.""" + # Update "true" FID (with hack to only compute it once) + img_original = ( + (self._downsample_img((orig_img).permute(2, 0, 1)) * 255).unsqueeze(0).to(torch.uint8).to(self.device) + ) + fids["true"].update(img_original, real=True) + for edit_type in actor_edits.keys(): + fids[edit_type].real_features_sum = fids["true"].real_features_sum + fids[edit_type].real_features_cov_sum = fids["true"].real_features_cov_sum + fids[edit_type].real_features_num_samples = fids["true"].real_features_num_samples + + # Compute FID for actor edits + imgs_generated_per_edit = {} + for edit_type in actor_edits.keys(): + imgs = [] + for rotation, lateral in actor_edits[edit_type]: + self.model.dynamic_actors.actor_editing["rotation"] = rotation + self.model.dynamic_actors.actor_editing["lateral"] = lateral + imgs.append(self.model.get_outputs_for_camera_ray_bundle(ray_bundle)["rgb"]) + imgs_generated_per_edit[edit_type] = imgs + + for edit_type, imgs in imgs_generated_per_edit.items(): + for img in imgs: + img = (self._downsample_img((img).permute(2, 0, 1)) * 255).unsqueeze(0).to(torch.uint8).to(self.device) + fids[edit_type].update(img, real=False) + + self.model.dynamic_actors.actor_editing["rotation"] = 0 + self.model.dynamic_actors.actor_editing["lateral"] = 0 diff --git a/nerfstudio/pipelines/base_pipeline.py b/nerfstudio/pipelines/base_pipeline.py index a746a81a..c1242f82 100644 --- a/nerfstudio/pipelines/base_pipeline.py +++ b/nerfstudio/pipelines/base_pipeline.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -15,6 +16,7 @@ """ Abstracts for the Pipeline class. """ + from __future__ import annotations import typing @@ -32,6 +34,7 @@ from torch.nn import Parameter from torch.nn.parallel import DistributedDataParallel as DDP +from nerfstudio.cameras.lidars import transform_points from nerfstudio.configs.base_config import InstantiateConfig from nerfstudio.data.datamanagers.base_datamanager import DataManager, DataManagerConfig, VanillaDataManager from nerfstudio.data.datamanagers.full_images_datamanager import FullImageDatamanager @@ -185,7 +188,7 @@ def get_average_eval_image_metrics( get_std: Set True if you want to return std with the mean metric. """ - def load_pipeline(self, loaded_state: Dict[str, Any], step: int) -> None: + def load_pipeline(self, loaded_state: Dict[str, Any], step: int, strict: bool) -> None: """Load the checkpoint from the given path Args: @@ -263,13 +266,34 @@ def __init__( pts = self.datamanager.train_dataparser_outputs.metadata["points3D_xyz"] pts_rgb = self.datamanager.train_dataparser_outputs.metadata["points3D_rgb"] seed_pts = (pts, pts_rgb) + elif ( + hasattr(self.datamanager, "train_dataparser_outputs") + and "point_clouds" in self.datamanager.train_dataparser_outputs.metadata + and "lidars" in self.datamanager.train_dataparser_outputs.metadata + ): + points_in_world = [] + for l2w, pc in zip( + self.datamanager.train_dataparser_outputs.metadata["lidars"].lidar_to_worlds, + self.datamanager.train_dataparser_outputs.metadata["point_clouds"], + ): + points_in_world.append(transform_points(pc[:, :3], l2w)) + points_in_world = torch.cat([pc[:, :3] for pc in points_in_world], dim=0) + if ( + "point_clouds_rgb" in self.datamanager.train_dataparser_outputs.metadata + and self.datamanager.train_dataparser_outputs.metadata["point_clouds_rgb"] is not None + ): + points_in_world_rgb = torch.cat(self.datamanager.train_dataparser_outputs.metadata["point_clouds_rgb"]) + else: + points_in_world_rgb = torch.rand_like(points_in_world) * 255 + seed_pts = (points_in_world, points_in_world_rgb) + self.datamanager.to(device) # TODO(ethan): get rid of scene_bounds from the model assert self.datamanager.train_dataset is not None, "Missing input dataset" self._model = config.model.setup( scene_box=self.datamanager.train_dataset.scene_box, - num_train_data=len(self.datamanager.train_dataset), + num_train_data=self.datamanager.get_num_train_data(), metadata=self.datamanager.train_dataset.metadata, device=device, grad_scaler=grad_scaler, @@ -402,7 +426,7 @@ def get_average_eval_image_metrics( self.train() return metrics_dict - def load_pipeline(self, loaded_state: Dict[str, Any], step: int) -> None: + def load_pipeline(self, loaded_state: Dict[str, Any], step: int, strict: bool = True) -> None: """Load the checkpoint from the given path Args: @@ -413,7 +437,7 @@ def load_pipeline(self, loaded_state: Dict[str, Any], step: int) -> None: (key[len("module.") :] if key.startswith("module.") else key): value for key, value in loaded_state.items() } self.model.update_to_step(step) - self.load_state_dict(state) + self.load_state_dict(state, strict=strict) def get_training_callbacks( self, training_callback_attributes: TrainingCallbackAttributes diff --git a/nerfstudio/pipelines/dynamic_batch.py b/nerfstudio/pipelines/dynamic_batch.py deleted file mode 100644 index 2d0eb37c..00000000 --- a/nerfstudio/pipelines/dynamic_batch.py +++ /dev/null @@ -1,105 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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. - -""" -A pipeline that dynamically chooses the number of rays to sample. -""" - -from dataclasses import dataclass, field -from typing import Literal, Optional, Type - -import torch -from torch.cuda.amp.grad_scaler import GradScaler - -from nerfstudio.data.datamanagers.base_datamanager import VanillaDataManager -from nerfstudio.pipelines.base_pipeline import VanillaPipeline, VanillaPipelineConfig - - -@dataclass -class DynamicBatchPipelineConfig(VanillaPipelineConfig): - """Dynamic Batch Pipeline Config""" - - _target: Type = field(default_factory=lambda: DynamicBatchPipeline) - target_num_samples: int = 262144 # 1 << 18 - """The target number of samples to use for an entire batch of rays.""" - max_num_samples_per_ray: int = 1024 # 1 << 10 - """The maximum number of samples to be placed along a ray.""" - - -class DynamicBatchPipeline(VanillaPipeline): - """Pipeline with logic for changing the number of rays per batch.""" - - config: DynamicBatchPipelineConfig - datamanager: VanillaDataManager - dynamic_num_rays_per_batch: int - - def __init__( - self, - config: DynamicBatchPipelineConfig, - device: str, - test_mode: Literal["test", "val", "inference"] = "val", - world_size: int = 1, - local_rank: int = 0, - grad_scaler: Optional[GradScaler] = None, - ): - super().__init__(config, device, test_mode, world_size, local_rank) - assert isinstance( - self.datamanager, VanillaDataManager - ), "DynamicBatchPipeline only works with VanillaDataManager." - - self.dynamic_num_rays_per_batch = self.config.target_num_samples // self.config.max_num_samples_per_ray - self._update_pixel_samplers() - - def _update_pixel_samplers(self): - """Update the pixel samplers for train and eval with the dynamic number of rays per batch.""" - if self.datamanager.train_pixel_sampler is not None: - self.datamanager.train_pixel_sampler.set_num_rays_per_batch(self.dynamic_num_rays_per_batch) - if self.datamanager.eval_pixel_sampler is not None: - self.datamanager.eval_pixel_sampler.set_num_rays_per_batch(self.dynamic_num_rays_per_batch) - - def _update_dynamic_num_rays_per_batch(self, num_samples_per_batch: int): - """Updates the dynamic number of rays per batch variable, - based on the total number of samples in the last batch of rays.""" - self.dynamic_num_rays_per_batch = int( - self.dynamic_num_rays_per_batch * (self.config.target_num_samples / num_samples_per_batch) - ) - - def get_train_loss_dict(self, step: int): - model_outputs, loss_dict, metrics_dict = super().get_train_loss_dict(step) - - # update the number of rays for the next step - if "num_samples_per_batch" not in metrics_dict: - raise ValueError( - "'num_samples_per_batch' is not in metrics_dict." - "Please return 'num_samples_per_batch' in the models get_metrics_dict function to use this method." - ) - self._update_dynamic_num_rays_per_batch(int(metrics_dict["num_samples_per_batch"])) - self._update_pixel_samplers() - - # add the number of rays - assert "num_rays_per_batch" not in metrics_dict - assert self.datamanager.train_pixel_sampler is not None - metrics_dict["num_rays_per_batch"] = torch.tensor(self.datamanager.train_pixel_sampler.num_rays_per_batch) - - return model_outputs, loss_dict, metrics_dict - - def get_eval_loss_dict(self, step: int): - model_outputs, loss_dict, metrics_dict = super().get_eval_loss_dict(step) - - # add the number of rays - assert "num_rays_per_batch" not in metrics_dict - assert self.datamanager.eval_pixel_sampler is not None - metrics_dict["num_rays_per_batch"] = torch.tensor(self.datamanager.eval_pixel_sampler.num_rays_per_batch) - - return model_outputs, loss_dict, metrics_dict diff --git a/nerfstudio/scripts/closed_loop/main.py b/nerfstudio/scripts/closed_loop/main.py new file mode 100644 index 00000000..b4f3c590 --- /dev/null +++ b/nerfstudio/scripts/closed_loop/main.py @@ -0,0 +1,78 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# +# 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 __future__ import annotations + +import io + +import numpy as np +import torch +import tyro +import uvicorn +from fastapi import FastAPI, Response +from PIL import Image +from torch import Tensor + +from nerfstudio.scripts.closed_loop.models import ActorTrajectory, RenderInput +from nerfstudio.scripts.closed_loop.server import ClosedLoopServer + +app = FastAPI() + + +@app.get("/alive") +async def alive() -> bool: + return True + + +@app.get("/get_actors") +async def get_actors() -> list[ActorTrajectory]: + """Get actor trajectories.""" + actor_trajectories = cl_server.get_actor_trajectories() + actor_trajectories = [ActorTrajectory.from_torch(act_traj) for act_traj in actor_trajectories] + return actor_trajectories + + +@app.post("/update_actors") +async def update_actors(actor_trajectories: list[ActorTrajectory]) -> None: + """Update actor trajectories (keys correspond to actor uuids).""" + torch_actor_trajectories = [act_traj.to_torch() for act_traj in actor_trajectories] + cl_server.update_actor_trajectories(torch_actor_trajectories) + + +@app.post("/render_image", response_class=Response, responses={200: {"content": {"image/png": {}}}}) +async def render_image(data: RenderInput) -> Response: + torch_pose = torch.tensor(data.pose, dtype=torch.float32) + render = cl_server.get_image(torch_pose, data.timestamp, data.camera_name) + return Response(content=_torch_to_png(render), media_type="image/png") + + +@app.get("/start_time") +async def get_start_time() -> int: + return int(cl_server.min_time * 1e6) + + +def _torch_to_png(render: Tensor) -> bytes: + """Convert a torch tensor to a PNG image.""" + img = Image.fromarray((render * 255).cpu().numpy().astype(np.uint8)) + image_stream = io.BytesIO() + img.save(image_stream, format="PNG") + image_bytes = image_stream.getvalue() + return image_bytes + + +if __name__ == "__main__": + tyro.extras.set_accent_color("bright_yellow") + cl_server = tyro.cli(ClosedLoopServer) + cl_server.main() + # little hacky to place host and port on the cl_server, but it makes it easier to use tyro + uvicorn.run(app, host=cl_server.host, port=cl_server.port) diff --git a/nerfstudio/scripts/closed_loop/models.py b/nerfstudio/scripts/closed_loop/models.py new file mode 100644 index 00000000..50297a0b --- /dev/null +++ b/nerfstudio/scripts/closed_loop/models.py @@ -0,0 +1,68 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# +# 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 __future__ import annotations + +from typing import List, TypedDict + +import torch +from pydantic import BaseModel +from torch import Tensor + + +class TrajectoryDict(TypedDict): + uuid: str + poses: Tensor + timestamps: Tensor + dims: Tensor + + +class ActorTrajectory(BaseModel): + """Trajectory of an actor.""" + + uuid: str + """Actor UUID.""" + poses: List[List[List[float]]] + """List of 4x4 actor poses.""" + timestamps: List[int] + """List of timestamps in microseconds.""" + dims: List[float] + """Dimensions of the actor.""" + + def to_torch(self) -> TrajectoryDict: + return { + "uuid": self.uuid, + "poses": torch.tensor(self.poses, dtype=torch.float32), + "timestamps": torch.tensor(self.timestamps, dtype=torch.int64), + "dims": torch.tensor(self.dims, dtype=torch.float32), + } + + @classmethod + def from_torch(cls, data: TrajectoryDict) -> ActorTrajectory: + return cls( + uuid=data["uuid"], + poses=data["poses"].tolist(), + timestamps=data["timestamps"].tolist(), + dims=data["dims"].tolist(), + ) + + +class RenderInput(BaseModel): + """Input to the render_image endpoint.""" + + pose: List[List[float]] + """4x4 camera pose matrix""" + timestamp: int + """Timestamp in microseconds""" + camera_name: str + """Camera name""" diff --git a/nerfstudio/scripts/closed_loop/server.py b/nerfstudio/scripts/closed_loop/server.py new file mode 100644 index 00000000..14bf6f16 --- /dev/null +++ b/nerfstudio/scripts/closed_loop/server.py @@ -0,0 +1,200 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# +# 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 __future__ import annotations + +from dataclasses import dataclass +from pathlib import Path +from typing import Dict, Optional + +import numpy as np +import torch +from torch import Tensor + +from nerfstudio.cameras.cameras import Cameras +from nerfstudio.data.dataparsers.ad_dataparser import OPENCV_TO_NERFSTUDIO +from nerfstudio.data.dataparsers.base_dataparser import DataparserOutputs +from nerfstudio.models.ad_model import ADModel +from nerfstudio.pipelines.ad_pipeline import ADPipeline +from nerfstudio.scripts.closed_loop.models import TrajectoryDict +from nerfstudio.scripts.render import streamline_ad_config +from nerfstudio.utils.eval_utils import eval_setup +from nerfstudio.utils.poses import to4x4 + + +@dataclass +class ClosedLoopServer: + """Configuration for closed loop renderer instantiation.""" + + load_config: Optional[Path] = None + """Path to config YAML file.""" + + port: int = 8000 + """Port to run the server on.""" + host: str = "0.0.0.0" + """Host to run the server on.""" + + pad_cameras: bool = True + """Whether to require all cameras to have the same size.""" + adjust_pose: bool = False + """Whether to adjust the height of rendered cameras to match the nearest training camera.""" + + @torch.no_grad() + def main(self): + assert self.load_config is not None, "Must specify a config file to load" + _, self.pipeline, _, _ = eval_setup( + self.load_config, + test_mode="inference", + update_config_callback=streamline_ad_config, + strict_load=False, + ) + assert isinstance(self.pipeline, ADPipeline) + dataparser_outputs: DataparserOutputs = self.pipeline.datamanager.eval_dataparser_outputs + self.model: ADModel = self.pipeline.model + assert isinstance(self.model, ADModel), "Closed loop server only works with an ADModel" + self.model.eval() + + assert self.pipeline.datamanager.eval_dataset is not None + self._train_cams = self.pipeline.datamanager.train_dataset.cameras + self._unique_cameras = _find_unique_cameras(self.pipeline.datamanager.eval_dataset.cameras) + if self.pad_cameras: + self._unique_cameras.height[:] = self._unique_cameras.height.max() + self._unique_cameras.width[:] = self._unique_cameras.width.max() + + self.min_time = dataparser_outputs.time_offset + self.world_transform = to4x4(dataparser_outputs.dataparser_transform).to(self.model.device) + self.actor_transform = to4x4(dataparser_outputs.actor_transform).to(self.model.device) + + sensor_idx_to_name: Dict[int, str] = dataparser_outputs.metadata["sensor_idx_to_name"] + self.sensor_name_to_idx = {v: k for k, v in sensor_idx_to_name.items()} + assert len(self.sensor_name_to_idx) == len(sensor_idx_to_name), "Sensor names must be unique" + self.actor_uuids = [traj["uuid"] for traj in dataparser_outputs.metadata["trajectories"]] + self.actor_uuid_to_idx = {uuid: idx for idx, uuid in enumerate(self.actor_uuids)} + assert len(self.actor_uuid_to_idx) == len(self.actor_uuids), "Actor UUIDs must be unique" + + @torch.no_grad() + def get_image(self, pose: Tensor, timestamp: int, camera_name: str) -> Tensor: + """Render an image for the given pose and time. + + Args: + pose: 4x4 camera pose matrix + timestamp: Timestamp in microseconds + camera_name: Camera name + + """ + camera_name = camera_name.lstrip("CAM_") + cam_idx = self.sensor_name_to_idx[camera_name] + cam = self._unique_cameras[cam_idx : cam_idx + 1].to(self.model.device) + + pose = self.world_transform.cpu() @ pose + pose[:3, :3] = pose[:3, :3] @ OPENCV_TO_NERFSTUDIO + + cam.camera_to_worlds = pose[:3, :4].unsqueeze(0).to(self.model.device) + assert cam.times is not None + cam.times[...] = (timestamp / 1e6) - self.min_time + ray_bundle = cam.generate_rays(camera_indices=0) # cam is already the desired camera + + if self.adjust_pose: + pos = self._train_cams.camera_to_worlds[:, :3, 3] + mask = (self._train_cams.metadata["sensor_idxs"] == cam_idx).squeeze(-1) + distances = (pose[None, :3, 3] - pos).norm(dim=-1).squeeze(-1) + nearest_train_cam_idx = torch.argmin( + torch.where(mask, distances, torch.tensor(float("inf"), device=distances.device)) + ) + correction_matrices = self.model.camera_optimizer( + torch.tensor([nearest_train_cam_idx], device=self.model.device) + ) + ray_bundle.origins = ray_bundle.origins + correction_matrices[:, :3, 3] + ray_bundle.directions = torch.einsum("ij,...j->...i", correction_matrices[0, :3, :3], ray_bundle.directions) + + return self.model.get_outputs_for_camera_ray_bundle(ray_bundle)["rgb"] + + @torch.no_grad() + def update_actor_trajectories(self, new_trajectories: list[TrajectoryDict]): + """Update actor trajectories.""" + device = self.model.device + modified_trajectories = [] + actor_ids = [] + actor_transform = self.actor_transform.to(device) + for traj in new_trajectories: + timestamps_in_seconds = traj["timestamps"].to(torch.float64) / 1e6 + modified_trajectories.append( + { + "poses": self.world_transform @ traj["poses"].to(device) @ actor_transform, + "timestamps": (timestamps_in_seconds - self.min_time).to(device), + "dims": traj["dims"].to(device), + "symmetric": True, # TODO + "deformable": False, # TODO + "uuid": traj["uuid"], + } + ) + actor_ids.append(self.actor_uuid_to_idx[traj["uuid"]]) + old_n_actors = self.model.dynamic_actors.n_actors + self.model.dynamic_actors._populate_actors(modified_trajectories) + self.model.dynamic_actors.actor_to_id[:] = torch.tensor(actor_ids, device=device) + self.model.dynamic_actors.n_actors = old_n_actors # used in hash encoding + self.model.dynamic_actors.to(device) # need to move again as some tensors are created inside _populate_actors + + self.actor_uuids = [traj["uuid"] for traj in new_trajectories] + + @torch.no_grad() + def get_actor_trajectories(self) -> list[TrajectoryDict]: + """Get actor trajectories.""" + poses_3x4 = self.model.dynamic_actors.get_poses_3x4() + poses = to4x4(poses_3x4) + world_inverse = self.world_transform.inverse().view(1, 4, 4) + timestamps = (self.model.dynamic_actors.unique_timestamps.to(torch.float64) + self.min_time) * 1e6 + actor_transform_inv = self.actor_transform.inverse() + trajs = [] + for actor_idx in range(poses.shape[1]): + trajs.append( + { + "poses": (world_inverse @ poses[:, actor_idx]).cpu() @ actor_transform_inv, + "timestamps": timestamps.cpu().long(), + "dims": self.model.dynamic_actors.actor_sizes[actor_idx].cpu(), + "uuid": self.actor_uuids[actor_idx], + } + ) + return trajs + + +class DummyClosedLoopServer(ClosedLoopServer): + """Dummy closed loop server for testing.""" + + def main(self): + self.min_time = 0.0 + + def get_image(self, pose: Tensor, timestamp: int, camera_name: str) -> Tensor: + return torch.zeros((512, 512, 3), dtype=torch.uint8) + + def update_actor_trajectories(self, new_trajectories: list[TrajectoryDict]): + print("Updated actor trajectories") + + def get_actor_trajectories(self) -> list[TrajectoryDict]: + return [ + { + "poses": torch.empty((0, 4, 4)), + "timestamps": torch.empty(0), + "dims": torch.empty((0, 3)), + "uuid": "uuid1", + } + ] + + +def _find_unique_cameras(cameras: Cameras): + assert "sensor_idxs" in cameras.metadata, "Cameras must have sensor_idx metadata" + sensor_idxs = cameras.metadata["sensor_idxs"] + print(f"Found {len(sensor_idxs)} cameras, with unique indices: {torch.unique(sensor_idxs).tolist()}") + # need to go through numpy as torch.unique doesn't support return_index + first_unique_idx = torch.from_numpy(np.unique(sensor_idxs.numpy(), return_index=True)[1]) + return cameras[first_unique_idx] diff --git a/nerfstudio/scripts/eval.py b/nerfstudio/scripts/eval.py index 103467bb..5d78b09e 100644 --- a/nerfstudio/scripts/eval.py +++ b/nerfstudio/scripts/eval.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -25,6 +26,7 @@ import tyro +from nerfstudio.engine.trainer import TrainerConfig from nerfstudio.utils.eval_utils import eval_setup from nerfstudio.utils.rich_utils import CONSOLE @@ -39,10 +41,12 @@ class ComputePSNR: output_path: Path = Path("output.json") # Optional path to save rendered outputs to. render_output_path: Optional[Path] = None + # Optional path to update the data root to + data_root_path: Optional[Path] = None def main(self) -> None: """Main function.""" - config, pipeline, checkpoint_path, _ = eval_setup(self.load_config) + config, pipeline, checkpoint_path, _ = eval_setup(self.load_config, update_config_callback=self.update_config) assert self.output_path.suffix == ".json" if self.render_output_path is not None: self.render_output_path.mkdir(parents=True, exist_ok=True) @@ -59,6 +63,11 @@ def main(self) -> None: self.output_path.write_text(json.dumps(benchmark_info, indent=2), "utf8") CONSOLE.print(f"Saved results to: {self.output_path}") + def update_config(self, config: TrainerConfig) -> TrainerConfig: + config.pipeline.datamanager.dataparser.data = self.data_root_path + + return config + def entrypoint(): """Entrypoint for use with pyproject scripts.""" diff --git a/nerfstudio/scripts/licensing/check_copyright.py b/nerfstudio/scripts/licensing/check_copyright.py new file mode 100644 index 00000000..f920c7d7 --- /dev/null +++ b/nerfstudio/scripts/licensing/check_copyright.py @@ -0,0 +1,75 @@ +# Copyright 2024 the authors of NeuRAD and contributors. +# +# 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 datetime +import subprocess +import sys + +CURRENT_YEAR = str(datetime.datetime.now().year) +COPYRIGHT_STR = f"# Copyright {CURRENT_YEAR} the authors of NeuRAD and contributors.\n" +LICENSE_HEADER = """\ +# +# 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. +""" + + +def count_copyrights(lines): + count = 0 + for line in lines: + if line.startswith("# Copyright"): + count += 1 + else: + break + return count + + +def main(): + files = sys.argv[1:] + for file_name in files: + if file_name.startswith("tests"): # exclude tests directory + continue + with open(file_name, "r") as f: + lines = f.readlines() + + if lines[0] != COPYRIGHT_STR: + git_status = subprocess.run( + ["git", "status", "--porcelain", "--", file_name], + check=True, + encoding="utf-8", + stdout=subprocess.PIPE, + ).stdout[0] + if git_status == "A" and lines[0].startswith("# Copyright"): + lines[0] = COPYRIGHT_STR + else: + lines.insert(0, COPYRIGHT_STR) + + if LICENSE_HEADER not in "".join(lines): + lines.insert(count_copyrights(lines), LICENSE_HEADER) + + with open(file_name, "w") as f: + f.writelines(lines) + + +if __name__ == "__main__": + main() diff --git a/nerfstudio/scripts/licensing/copyright.txt b/nerfstudio/scripts/licensing/copyright.txt deleted file mode 100644 index 40c37329..00000000 --- a/nerfstudio/scripts/licensing/copyright.txt +++ /dev/null @@ -1,14 +0,0 @@ -# Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. -# -# 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/nerfstudio/scripts/licensing/license_headers.sh b/nerfstudio/scripts/licensing/license_headers.sh deleted file mode 100755 index 286d7ffb..00000000 --- a/nerfstudio/scripts/licensing/license_headers.sh +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/bash - -VALID_ARGS=$(getopt -o c --long check -- "$@") - -eval set -- "$VALID_ARGS" -check=false -while [ : ]; do - case "$1" in - -c | --check) - check=true - shift - ;; - --) shift; - break - ;; - esac -done - -check_failed=false -added_headers=false -for i in $(find nerfstudio/ -name '*.py'); -do - if ! grep -q Copyright $i - then - if [ "$check" = true ]; - then - echo "$i missing copyright header" - check_failed=true - else - cat nerfstudio/scripts/licensing/copyright.txt $i >$i.new && mv $i.new $i - echo "Adding license header to $i." - fi - added_headers=true - fi -done - -if [ "$check_failed" = true ]; - then - echo "Run '.nerfstudio/scripts/licensing/license_headers.sh to add missing headers.'" - exit 1 -fi - -if [ "$added_headers" = false ]; - then - echo "No missing license headers found." -fi - -exit 0 \ No newline at end of file diff --git a/nerfstudio/scripts/render.py b/nerfstudio/scripts/render.py index c2d6d83c..13b29f69 100644 --- a/nerfstudio/scripts/render.py +++ b/nerfstudio/scripts/render.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -16,18 +17,20 @@ """ render.py """ + from __future__ import annotations import gzip import json import os +import pickle import shutil import struct import sys from contextlib import ExitStack, contextmanager from dataclasses import dataclass, field from pathlib import Path -from typing import Any, Dict, List, Literal, Optional, Union +from typing import Any, Dict, List, Literal, Optional, Tuple, Union import mediapy as media import numpy as np @@ -42,7 +45,12 @@ from torch import Tensor from typing_extensions import Annotated -from nerfstudio.cameras.camera_paths import get_interpolated_camera_path, get_path_from_json, get_spiral_path +from nerfstudio.cameras.camera_paths import ( + get_interpolated_camera_path, + get_interpolated_spiral_camera_path, + get_path_from_json, + get_spiral_path, +) from nerfstudio.cameras.cameras import Cameras, CameraType, RayBundle from nerfstudio.data.datamanagers.base_datamanager import VanillaDataManager, VanillaDataManagerConfig from nerfstudio.data.datamanagers.full_images_datamanager import FullImageDatamanagerConfig @@ -446,6 +454,7 @@ def main(self) -> None: self.load_config, eval_num_rays_per_chunk=self.eval_num_rays_per_chunk, test_mode="inference", + update_config_callback=streamline_ad_config, ) install_checks.check_ffmpeg_installed() @@ -581,56 +590,195 @@ def main(self) -> None: class RenderInterpolated(BaseRender): """Render a trajectory that interpolates between training or eval dataset images.""" - pose_source: Literal["eval", "train"] = "eval" + pose_source: Literal["eval", "train", "train+eval"] = "eval" """Pose source to render.""" interpolation_steps: int = 10 """Number of interpolation steps between eval dataset cameras.""" order_poses: bool = False """Whether to order camera poses by proximity.""" + sensor_index: Optional[int] = None + """Sensor index to render. If None, render all sensors.""" frame_rate: int = 24 """Frame rate of the output video.""" output_format: Literal["images", "video"] = "video" """How to save output data.""" + spiral_radius: float = 0.0 + """Radius of the spiral.""" + spiral_rotations: float = 1.0 + """Number of rotations of the spiral.""" + + shift: Tuple[float, ...] = (0.0, 0.0, 0.0) + """Shift to apply to the camera pose.""" + shift_time: float = 0.0 + """Time at which to apply the shift.""" + shift_steps: int = 0 + """Number of steps to interpolate the shift over.""" + + actor_shift: Tuple[float, ...] = (0.0, 0.0, 0.0) + """Shift to apply to all actor poses.""" + actor_removal_time: Optional[float] = None + """Time at which to remove all actors.""" + actor_stop_time: Optional[float] = 3.2 + """Time at which to stop all actors.""" + def main(self) -> None: """Main function.""" _, pipeline, _, _ = eval_setup( self.load_config, eval_num_rays_per_chunk=self.eval_num_rays_per_chunk, test_mode="test", + update_config_callback=streamline_ad_config, ) + if self.spiral_radius and any(self.shift): + CONSOLE.print( + "Warning: Rendering with both spiral and shift is not supported. Only spiral will be rendered." + ) + install_checks.check_ffmpeg_installed() if self.pose_source == "eval": assert pipeline.datamanager.eval_dataset is not None cameras = pipeline.datamanager.eval_dataset.cameras - else: + elif self.pose_source == "train": assert pipeline.datamanager.train_dataset is not None cameras = pipeline.datamanager.train_dataset.cameras + else: + assert pipeline.datamanager.train_dataset is not None + assert pipeline.datamanager.eval_dataset is not None + cameras = pipeline.datamanager.train_dataset.cameras.cat([pipeline.datamanager.eval_dataset.cameras]) - seconds = self.interpolation_steps * len(cameras) / self.frame_rate - camera_path = get_interpolated_camera_path( - cameras=cameras, - steps=self.interpolation_steps, - order_poses=self.order_poses, - ) + if cameras.times is not None: + cameras = cameras[torch.argsort(cameras.times.squeeze(-1))] - _render_trajectory_video( - pipeline, - camera_path, - output_filename=self.output_path, - rendered_output_names=self.rendered_output_names, - rendered_resolution_scaling_factor=1.0 / self.downscale_factor, - seconds=seconds, - output_format=self.output_format, - image_format=self.image_format, - depth_near_plane=self.depth_near_plane, - depth_far_plane=self.depth_far_plane, - colormap_options=self.colormap_options, - render_nearest_camera=self.render_nearest_camera, - check_occlusions=self.check_occlusions, + if cameras.metadata and "sensor_idxs" in cameras.metadata: + sensor_indices = ( + torch.tensor(self.sensor_index).unsqueeze(0) + if self.sensor_index is not None + else cameras.metadata["sensor_idxs"].unique() + ) + else: + sensor_indices = torch.tensor([0]).unsqueeze(0) + cameras.metadata["sensor_idxs"] = torch.zeros_like(cameras.camera_type, dtype=torch.int64) + + modify_actors(pipeline, self.actor_shift, self.actor_removal_time, self.actor_stop_time) + + for sensor_index in sensor_indices: + mask = (cameras.metadata["sensor_idxs"] == sensor_index).squeeze(-1) + curr_cameras = cameras[mask] + + seconds = self.interpolation_steps * len(curr_cameras) / self.frame_rate + if self.spiral_radius: + camera_path = get_interpolated_spiral_camera_path( + cameras=curr_cameras, + steps=self.interpolation_steps, + radius=self.spiral_radius, + rotations=self.spiral_rotations, + ) + elif any(self.shift): + camera_path = get_shifted_camera_path( + cameras=curr_cameras, + shift=self.shift, + shift_time=self.shift_time, + shift_steps=self.shift_steps, + interpolation_steps=self.interpolation_steps, + ) + else: + camera_path = get_interpolated_camera_path( + cameras=curr_cameras, + steps=self.interpolation_steps, + order_poses=self.order_poses, + ) + if curr_cameras.times is not None: + times, stepsize = curr_cameras.times[..., 0], 1.0 / self.interpolation_steps + camera_path.times = torch.from_numpy( + np.interp( + np.append(np.arange(0, len(times) - 1, stepsize), len(times) - 1), + np.arange(len(times)), + times, + )[..., None] + ).float() + + camera_path.metadata = camera_path.metadata or {} + if curr_cameras.metadata and "sensor_idxs" in curr_cameras.metadata: + camera_path.metadata["sensor_idxs"] = torch.full_like(camera_path.width, sensor_index.item()) + + print("Rendering sensor index ", sensor_index.item()) + _render_trajectory_video( + pipeline, + camera_path, + output_filename=self.output_path.with_stem(f"{self.output_path.stem}_sensor_idx_{sensor_index}"), + rendered_output_names=self.rendered_output_names, + rendered_resolution_scaling_factor=1.0 / self.downscale_factor, + seconds=seconds, + output_format=self.output_format, + image_format=self.image_format, + depth_near_plane=self.depth_near_plane, + depth_far_plane=self.depth_far_plane, + colormap_options=self.colormap_options, + render_nearest_camera=self.render_nearest_camera, + check_occlusions=self.check_occlusions, + ) + + +def modify_actors(pipeline, actor_shift, actor_removal_time, actor_stop_time): + actor_shift = torch.nn.Parameter(torch.tensor(actor_shift, dtype=torch.float32, device=pipeline.model.device)) + with torch.no_grad(): + pipeline.model.dynamic_actors.actor_positions += actor_shift + if actor_removal_time is not None: + no_actor_mask = pipeline.model.dynamic_actors.unique_timestamps > actor_removal_time + pipeline.model.dynamic_actors.actor_present_at_time[no_actor_mask, :] = False + if actor_stop_time is not None: + actor_stop_idx = torch.searchsorted(pipeline.model.dynamic_actors.unique_timestamps, actor_stop_time) + freeze_position = pipeline.model.dynamic_actors.actor_positions[actor_stop_idx].unsqueeze(0) + freeze_rotation = pipeline.model.dynamic_actors.actor_rotations_6d[actor_stop_idx].unsqueeze(0) + pipeline.model.dynamic_actors.actor_positions[actor_stop_idx:] = freeze_position + pipeline.model.dynamic_actors.actor_rotations_6d[actor_stop_idx:] = freeze_rotation + + +def get_shifted_camera_path(cameras, shift, shift_time, shift_steps, interpolation_steps): + if cameras.times is not None: + # find index of time closest to shift_time + shift_idx = torch.argmin(torch.abs(cameras.times - shift_time)) + else: + # warn user that we are assuming shift_time is the middle of the trajectory + CONSOLE.print( + "Warning: Assuming shift_time is the middle of the trajectory. " + "If this is not the case, please specify times in the camera path JSON." ) + shift_idx = int(shift_time * len(cameras)) + pre_shift_cams = cameras[:shift_idx] + post_shift_cams = cameras[shift_idx:] + post_shift_cams.camera_to_worlds = post_shift_cams.camera_to_worlds.clone() + post_shift_cams.camera_to_worlds[..., :3, 3] = post_shift_cams.camera_to_worlds[..., :3, 3] + torch.tensor(shift) + post_shift_camera_path = get_interpolated_camera_path(post_shift_cams, steps=interpolation_steps, order_poses=False) + if (times := post_shift_cams.times) is not None: + post_shift_camera_path.times = torch.from_numpy( + np.interp( + np.append(np.arange(0, len(times) - 1, 1 / interpolation_steps), len(times) - 1), + np.arange(len(times)), + times.squeeze(-1), + )[..., None] + ).float() + + if len(pre_shift_cams) == 0: + return post_shift_camera_path + + pre_shift_camera_path = get_interpolated_camera_path(pre_shift_cams, steps=interpolation_steps, order_poses=False) + mid_shift_camera_path = get_interpolated_camera_path( + pre_shift_cams[-1:].cat([post_shift_cams[:1]]), steps=shift_steps, order_poses=False + ) + if (times := pre_shift_cams.times) is not None: + pre_shift_camera_path.times = torch.from_numpy( + np.interp( + np.append(np.arange(0, len(times) - 1, 1 / interpolation_steps), len(times) - 1), + np.arange(len(times)), + times.squeeze(-1), + )[..., None] + ).float() + mid_shift_camera_path.times = torch.full_like(mid_shift_camera_path.cy, pre_shift_camera_path.times[-1].item()) + return pre_shift_camera_path.cat([mid_shift_camera_path, post_shift_camera_path]) @dataclass @@ -652,6 +800,7 @@ def main(self) -> None: self.load_config, eval_num_rays_per_chunk=self.eval_num_rays_per_chunk, test_mode="test", + update_config_callback=streamline_ad_config, ) install_checks.check_ffmpeg_installed() @@ -703,21 +852,46 @@ def _disable_datamanager_setup(cls): class DatasetRender(BaseRender): """Render all images in the dataset.""" + pose_source: Literal["train", "val", "test", "train+test", "train+val"] = "test" + """Split to render.""" output_path: Path = Path("renders") """Path to output video file.""" data: Optional[Path] = None """Override path to the dataset.""" + config_output_dir: Optional[Path] = None + """Override the config output dir. Used to load the model.""" downscale_factor: Optional[float] = None """Scaling factor to apply to the camera image resolution.""" - split: Literal["train", "val", "test", "train+test"] = "test" - """Split to render.""" - rendered_output_names: Optional[List[str]] = field(default_factory=lambda: None) + rendered_output_names: List[str] = field(default_factory=lambda: ["all"]) """Name of the renderer outputs to use. rgb, depth, raw-depth, gt-rgb etc. By default all outputs are rendered.""" + strict_load: bool = True + """Whether to strictly load the config.""" + load_ignore_keys: Optional[List[str]] = field( + default_factory=lambda: [] + ) # e.g. ["model.camera_optimizer.pose_adjustment", "_model.camera_optimizer.pose_adjustment"] + """Keys to ignore when loading the config.""" + + render_height: Optional[int] = None + """Height to render the images at.""" + render_width: Optional[int] = None + """Width to render the images at.""" + output_height: Optional[int] = None + """Height to crop the output images at.""" + output_width: Optional[int] = None + """Width to crop the output images at.""" + + shift: Tuple[float, float, float] = (0, 0, 0) + """Shift to apply to the camera pose.""" + calculate_and_save_metrics: bool = False + """Whether to calculate and save metrics.""" + metrics_filename: Path = Path("metrics.pkl") + """Filename to save the metrics to.""" def main(self): config: TrainerConfig def update_config(config: TrainerConfig) -> TrainerConfig: + config = streamline_ad_config(config) data_manager_config = config.pipeline.datamanager assert isinstance(data_manager_config, (VanillaDataManagerConfig, FullImageDatamanagerConfig)) data_manager_config.eval_num_images_to_sample_from = -1 @@ -727,9 +901,13 @@ def update_config(config: TrainerConfig) -> TrainerConfig: data_manager_config.train_num_times_to_repeat_images = -1 if self.data is not None: data_manager_config.data = self.data + if self.config_output_dir is not None: + config.output_dir = self.config_output_dir if self.downscale_factor is not None: assert hasattr(data_manager_config.dataparser, "downscale_factor") setattr(data_manager_config.dataparser, "downscale_factor", self.downscale_factor) + # Remove any frame limit on the the dataparser + config.pipeline.datamanager.dataparser.max_eval_frames = None return config config, pipeline, _, _ = eval_setup( @@ -737,11 +915,15 @@ def update_config(config: TrainerConfig) -> TrainerConfig: eval_num_rays_per_chunk=self.eval_num_rays_per_chunk, test_mode="inference", update_config_callback=update_config, + strict_load=self.strict_load, + ignore_keys=self.load_ignore_keys, ) data_manager_config = config.pipeline.datamanager assert isinstance(data_manager_config, (VanillaDataManagerConfig, FullImageDatamanagerConfig)) - for split in self.split.split("+"): + self.output_path.mkdir(exist_ok=True, parents=True) + metrics_out = dict() + for split in self.pose_source.split("+"): datamanager: VanillaDataManager dataset: Dataset if split == "train": @@ -758,8 +940,27 @@ def update_config(config: TrainerConfig) -> TrainerConfig: dataparser_outputs = getattr(dataset, "_dataparser_outputs", None) if dataparser_outputs is None: dataparser_outputs = datamanager.dataparser.get_dataparser_outputs(split=datamanager.test_split) + dataset.cameras.height = ( + torch.full_like(dataset.cameras.height, self.render_height) + if self.render_height is not None + else dataset.cameras.height + ) + dataset.cameras.width = ( + torch.full_like(dataset.cameras.width, self.render_width) + if self.render_width is not None + else dataset.cameras.width + ) + shift_relative_to_cam = torch.tensor(self.shift, dtype=torch.float32) + # add homogenous point + shift_relative_to_cam = torch.cat([shift_relative_to_cam, torch.tensor([1.0], dtype=torch.float32)]) + shift_relative_to_cam = shift_relative_to_cam.to(dataset.cameras.camera_to_worlds.device) + # shift the camera poses + dataset.cameras.camera_to_worlds[..., :3, 3:4] = ( + dataset.cameras.camera_to_worlds @ shift_relative_to_cam.reshape(1, 4, 1) + ) + dataloader = FixedIndicesEvalDataloader( - input_dataset=dataset, + dataset=dataset, device=datamanager.device, num_workers=datamanager.world_size * 4, ) @@ -776,9 +977,33 @@ def update_config(config: TrainerConfig) -> TrainerConfig: TimeElapsedColumn(), ) as progress: for camera_idx, (camera, batch) in enumerate(progress.track(dataloader, total=len(dataset))): + # Try to get the original filename + image_name = ( + Path(dataparser_outputs.image_filenames[camera_idx]).with_suffix("").relative_to(images_root) + ) + with torch.no_grad(): outputs = pipeline.model.get_outputs_for_camera(camera) + if self.output_height is not None: + dataset.cameras.height[batch["image_idx"]] = torch.full_like( + dataset.cameras.height[0:1], self.output_height + ) + batch["image"] = batch["image"][..., : self.output_height, :, :] + outputs["rgb"] = outputs["rgb"][..., : self.output_height, :, :] + + if self.output_width is not None: + dataset.cameras.width[batch["image_idx"]] = torch.full_like( + dataset.cameras.width[0:1], self.output_width + ) + batch["image"] = batch["image"][..., : self.output_width, :] + outputs["rgb"] = outputs["rgb"][..., : self.output_width, :] + + if self.calculate_and_save_metrics: + with torch.no_grad(): + metrics_dict, _ = pipeline.model.get_image_metrics_and_images(outputs, batch) + metrics_out[str(image_name)] = metrics_dict + gt_batch = batch.copy() gt_batch["rgb"] = gt_batch.pop("image") all_outputs = ( @@ -788,8 +1013,10 @@ def update_config(config: TrainerConfig) -> TrainerConfig: + [f"raw-gt-{x}" for x in gt_batch.keys()] ) rendered_output_names = self.rendered_output_names - if rendered_output_names is None: + if "all" in rendered_output_names: rendered_output_names = ["gt-rgb"] + list(outputs.keys()) + elif rendered_output_names == ["none"]: + rendered_output_names = [] for rendered_output_name in rendered_output_names: if rendered_output_name not in all_outputs: CONSOLE.rule("Error", style="red") @@ -803,10 +1030,6 @@ def update_config(config: TrainerConfig) -> TrainerConfig: is_raw = False is_depth = rendered_output_name.find("depth") != -1 - image_name = f"{camera_idx:05d}" - - # Try to get the original filename - image_name = dataparser_outputs.image_filenames[camera_idx].relative_to(images_root) output_path = self.output_path / split / rendered_output_name / image_name output_path.parent.mkdir(exist_ok=True, parents=True) @@ -857,29 +1080,58 @@ def update_config(config: TrainerConfig) -> TrainerConfig: ) # Save to file + height = ( + min(output_image.shape[0], self.output_height) + if self.output_height + else output_image.shape[0] + ) + width = ( + min(output_image.shape[1], self.output_width) + if self.output_width + else output_image.shape[1] + ) + output_image = output_image[:height, :width] if is_raw: - with gzip.open(output_path.with_suffix(".npy.gz"), "wb") as f: + with gzip.open(output_path.parent / (output_path.name + ".npy.gz"), "wb") as f: np.save(f, output_image) elif self.image_format == "png": - media.write_image(output_path.with_suffix(".png"), output_image, fmt="png") + media.write_image(output_path.parent / (output_path.name + ".png"), output_image, fmt="png") elif self.image_format == "jpeg": media.write_image( - output_path.with_suffix(".jpg"), output_image, fmt="jpeg", quality=self.jpeg_quality + output_path.parent / (output_path.name + ".jpg"), + output_image, + fmt="jpeg", + quality=self.jpeg_quality, ) else: raise ValueError(f"Unknown image format {self.image_format}") + if self.calculate_and_save_metrics: + metrics_out_path = Path(self.output_path, self.metrics_filename) + with open(metrics_out_path, "wb") as f: + pickle.dump(metrics_out, f) + CONSOLE.print(f"[bold][green]:glowing_star: Metrics saved to {metrics_out_path}") + table = Table( title=None, show_header=False, box=box.MINIMAL, title_style=style.Style(bold=True), ) - for split in self.split.split("+"): + for split in self.pose_source.split("+"): table.add_row(f"Outputs {split}", str(self.output_path / split)) CONSOLE.print(Panel(table, title="[bold][green]:tada: Render on split {} Complete :tada:[/bold]", expand=False)) +def streamline_ad_config(config): + if getattr(config.pipeline.datamanager, "num_processes", None): + config.pipeline.datamanager.num_processes = 0 + config.pipeline.model.eval_num_rays_per_chunk = 2**17 + if getattr(config.pipeline.datamanager.dataparser, "add_missing_points", None): + config.pipeline.datamanager.dataparser.add_missing_points = False + return config + + Commands = tyro.conf.FlagConversionOff[ Union[ Annotated[RenderCameraPath, tyro.conf.subcommand(name="camera-path")], diff --git a/nerfstudio/scripts/train.py b/nerfstudio/scripts/train.py index fde0a5c3..e4501dbe 100644 --- a/nerfstudio/scripts/train.py +++ b/nerfstudio/scripts/train.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -51,10 +52,16 @@ from datetime import timedelta from typing import Any, Callable, Literal, Optional +import torch.multiprocessing as mp + +try: + mp.set_start_method("spawn") +except RuntimeError: + pass + import numpy as np import torch import torch.distributed as dist -import torch.multiprocessing as mp import tyro import yaml diff --git a/nerfstudio/scripts/viewer/run_viewer.py b/nerfstudio/scripts/viewer/run_viewer.py index 79e7167f..f1b80af4 100644 --- a/nerfstudio/scripts/viewer/run_viewer.py +++ b/nerfstudio/scripts/viewer/run_viewer.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -58,11 +59,21 @@ class RunViewer: def main(self) -> None: """Main function.""" + + def disable_mp_in_config(config): + if getattr(config.pipeline.datamanager, "num_processes", None): + config.pipeline.datamanager.num_processes = 0 + if getattr(config.pipeline.datamanager.dataparser, "add_missing_points", None): + config.pipeline.datamanager.dataparser.add_missing_points = False + return config + config, pipeline, _, step = eval_setup( self.load_config, eval_num_rays_per_chunk=None, test_mode="test", + update_config_callback=disable_mp_in_config, ) + num_rays_per_chunk = config.viewer.num_rays_per_chunk assert self.viewer.num_rays_per_chunk == -1 config.vis = self.vis @@ -111,7 +122,7 @@ def _start_viewer(config: TrainerConfig, pipeline: Pipeline, step: int): config.logging.local_writer.enable = False writer.setup_local_writer(config.logging, max_iter=config.max_num_iterations, banner_messages=banner_messages) - assert viewer_state and pipeline.datamanager.train_dataset + assert viewer_state and pipeline.datamanager.train_dataset is not None viewer_state.init_scene( train_dataset=pipeline.datamanager.train_dataset, train_state="completed", diff --git a/nerfstudio/utils/colormaps.py b/nerfstudio/utils/colormaps.py index d772d40b..69fda11c 100644 --- a/nerfstudio/utils/colormaps.py +++ b/nerfstudio/utils/colormaps.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -41,6 +42,10 @@ class ColormapOptions: """ Maximum value for the output colormap """ invert: bool = False """ Whether to invert the output colormap """ + range_min: Optional[float] = None + """ Minimum value for the input tensor image """ + range_max: Optional[float] = None + """ Maximum value for the input tensor image """ def apply_colormap( @@ -66,6 +71,11 @@ def apply_colormap( if image.shape[-1] == 3: return image + # clip to range + min_range = colormap_options.range_min if colormap_options.range_min is not None else torch.min(image) + max_range = colormap_options.range_max if colormap_options.range_max is not None else torch.max(image) + image = torch.clip(image, min_range, max_range) + # rendering depth outputs if image.shape[-1] == 1 and torch.is_floating_point(image): output = image diff --git a/nerfstudio/utils/eval_utils.py b/nerfstudio/utils/eval_utils.py index 2c4bfcd1..89f29f8d 100644 --- a/nerfstudio/utils/eval_utils.py +++ b/nerfstudio/utils/eval_utils.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -20,7 +21,7 @@ import os import sys from pathlib import Path -from typing import Callable, Literal, Optional, Tuple +from typing import Callable, List, Literal, Optional, Tuple import torch import yaml @@ -31,7 +32,9 @@ from nerfstudio.utils.rich_utils import CONSOLE -def eval_load_checkpoint(config: TrainerConfig, pipeline: Pipeline) -> Tuple[Path, int]: +def eval_load_checkpoint( + config: TrainerConfig, pipeline: Pipeline, strict: bool = True, ignore_keys: List = [] +) -> Tuple[Path, int]: ## TODO: ideally eventually want to get this to be the same as whatever is used to load train checkpoint too """Helper function to load checkpointed pipeline @@ -59,7 +62,10 @@ def eval_load_checkpoint(config: TrainerConfig, pipeline: Pipeline) -> Tuple[Pat load_path = config.load_dir / f"step-{load_step:09d}.ckpt" assert load_path.exists(), f"Checkpoint {load_path} does not exist" loaded_state = torch.load(load_path, map_location="cpu") - pipeline.load_pipeline(loaded_state["pipeline"], loaded_state["step"]) + for key in ignore_keys: + loaded_state["pipeline"].pop(key, None) + + pipeline.load_pipeline(loaded_state["pipeline"], loaded_state["step"], strict) CONSOLE.print(f":white_check_mark: Done loading checkpoint from {load_path}") return load_path, load_step @@ -69,6 +75,8 @@ def eval_setup( eval_num_rays_per_chunk: Optional[int] = None, test_mode: Literal["test", "val", "inference"] = "test", update_config_callback: Optional[Callable[[TrainerConfig], TrainerConfig]] = None, + strict_load: bool = True, + ignore_keys: List = [], ) -> Tuple[TrainerConfig, Pipeline, Path, int]: """Shared setup for loading a saved pipeline for evaluation. @@ -107,6 +115,6 @@ def eval_setup( pipeline.eval() # load checkpointed information - checkpoint_path, step = eval_load_checkpoint(config, pipeline) + checkpoint_path, step = eval_load_checkpoint(config, pipeline, strict_load, ignore_keys) return config, pipeline, checkpoint_path, step diff --git a/nerfstudio/utils/math.py b/nerfstudio/utils/math.py index 0ba9e6a5..7c9b11de 100644 --- a/nerfstudio/utils/math.py +++ b/nerfstudio/utils/math.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -17,13 +18,14 @@ import itertools import math from dataclasses import dataclass -from typing import Literal, Tuple +from typing import List, Literal, Optional, Tuple import torch from jaxtyping import Bool, Float from torch import Tensor from nerfstudio.data.scene_box import OrientedBox +from nerfstudio.utils.misc import torch_compile def components_from_spherical_harmonics( @@ -104,6 +106,44 @@ class Gaussians: mean: Float[Tensor, "*batch dim"] cov: Float[Tensor, "*batch dim dim"] + def to_std(self): + """Converts Gaussians to GaussiansStd""" + return GaussiansStd(mean=self.mean, std=torch.sqrt(torch.diagonal(self.cov, dim1=-2, dim2=-1))) + + +@dataclass +class GaussiansStd: + """Stores Gaussians + + Args: + mean: Mean of multivariate Gaussian + std: Standard deviation of multivariate Gaussian. + """ + + mean: Float[Tensor, "*batch dim"] + std: Float[Tensor, "*batch 1"] + + def nelement(self) -> int: + return self.mean.nelement() + + def __getitem__(self, index: int) -> "GaussiansStd": + return GaussiansStd(mean=self.mean[index], std=self.std[index]) + + def __len__(self) -> int: + return len(self.mean) + + def cat(self, other: List["GaussiansStd"]) -> "GaussiansStd": + means = [self.mean] + [o.mean for o in other] + stds = [self.std] + [o.std for o in other] + return GaussiansStd( + mean=torch.cat(means, dim=0), + std=torch.cat(stds, dim=0), + ) + + @property + def dtype(self) -> torch.dtype: + return self.mean.dtype + def compute_3d_gaussian( directions: Float[Tensor, "*batch 3"], @@ -187,6 +227,99 @@ def conical_frustum_to_gaussian( return compute_3d_gaussian(directions, means, dir_variance, radius_variance) +def multisampled_frustum_to_gaussian( + origins: Float[Tensor, "*batch num_samples 3"], + directions: Float[Tensor, "*batch num_samples 3"], + starts: Float[Tensor, "*batch num_samples 1"], + ends: Float[Tensor, "*batch num_samples 1"], + radius: Float[Tensor, "*batch num_samples 1"], + rand: bool = True, + std_scale: float = 0.5, + eps: float = 1e-10, +) -> GaussiansStd: + """Approximates frustums with a Gaussian distributions via multisampling. + Proposed in ZipNeRF https://arxiv.org/pdf/2304.06706.pdf + Taken from https://github.com/SuLvXiangXin/zipnerf-pytorch/blob/b1cb42943d244301a013bd53f9cb964f576b0af4/internal/render.py#L92 + Args: + origins: Origins of cones. + directions: Direction (axis) of frustums. + starts: Start of frustums. + ends: End of frustums. + radius: Radii of cone a distance of 1 from the origin. + rand: Whether should add noise to points or not. + std_scale: Standard deviation scale parameter. + eps: Small number. + Returns: + GaussiansStd: Approximation of frustums via multisampling + """ + + # middle points + t_m = (starts + ends) / 2.0 + # half of the width + t_d = (ends - starts) / 2.0 + + # prepare 6-point hexagonal pattern for each sample + j = torch.arange(6, device=starts.device, dtype=starts.dtype) + t = starts + t_d / (t_d**2 + 3 * t_m**2) * ( + ends**2 + 2 * t_m**2 + 3 / 7**0.5 * (2 * j / 5 - 1) * ((t_d**2 - t_m**2) ** 2 + 4 * t_m**4).sqrt() + ) # [..., num_samples, 6] + + deg = torch.pi / 3 * starts.new_tensor([0, 2, 4, 3, 5, 1]).broadcast_to(t.shape) + if rand: + # randomly rotate and flip + mask = torch.rand_like(starts) > 0.5 # [..., num_samples, 1] + deg = deg + 2 * torch.pi * torch.rand_like(starts) + deg = torch.where(mask, deg, 5 * torch.pi / 3.0 - deg) + else: + # rotate 30 degree and flip every other pattern + mask = ( + ( + torch.arange( + end=starts.shape[-2], + device=starts.device, + dtype=starts.dtype, + ) + % 2 + == 0 + ) + .unsqueeze(-1) + .broadcast_to(starts.shape) + ) # [..., num_samples, 6] + deg = torch.where(mask, deg, deg + torch.pi / 6.0) + deg = torch.where(mask, deg, 5 * torch.pi / 3.0 - deg) + + means = torch.stack( + [ + radius * t * torch.cos(deg) / 2**0.5, + radius * t * torch.sin(deg) / 2**0.5, + t, + ], + dim=-1, + ) # [..., "num_samples", 6, 3] + std = (std_scale * radius * t) / math.sqrt(2) # [..., "num_samples", 6] + + # two basis in parallel to the image plane + rand_vec = torch.rand( + list(directions.shape[:-2]) + [1, 3], + device=directions.device, + dtype=directions.dtype, + ) # [..., 1, 3] + ortho1 = torch.nn.functional.normalize( + torch.cross(directions, rand_vec, dim=-1), dim=-1, eps=eps + ) # [..., num_samples, 3] + ortho2 = torch.nn.functional.normalize( + torch.cross(directions, ortho1, dim=-1), dim=-1, eps=eps + ) # [..., num_samples, 3] + + # just use directions to be the third vector of the orthonormal basis, + # while the cross section of cone is parallel to the image plane + basis_matrix = torch.stack([ortho1, ortho2, directions], dim=-1) + means = torch.matmul(means, basis_matrix.transpose(-1, -2)) # [..., "num_samples", 6, 3] + means = means + origins[..., None, :] + + return GaussiansStd(mean=means, std=std.unsqueeze(-1)) + + def expected_sin(x_means: torch.Tensor, x_vars: torch.Tensor) -> torch.Tensor: """Computes the expected value of sin(y) where y ~ N(x_means, x_vars) @@ -241,6 +374,48 @@ def intersect_aabb( return t_min, t_max +@torch_compile(dynamic=True, mode="reduce-overhead", backend="eager") +def intersect_aabb_batch( + origins: torch.Tensor, + directions: torch.Tensor, + aabb: torch.Tensor, + max_bound: float = 1e10, + invalid_value: float = 1e10, +) -> Tuple[torch.Tensor, torch.Tensor]: + """ + Implementation of ray intersection with AABB box + + Args: + origins: [B, N, 3] tensor of 3d positions + directions: [B, N, 3] tensor of normalized directions + aabb: [B, 6] array of aabb box in the form of [x_min, y_min, z_min, x_max, y_max, z_max] + max_bound: Maximum value of t_max + invalid_value: Value to return in case of no intersection + + Returns: + t_min, t_max - two tensors of shapes (B, N) representing distance of intersection from the origin. + """ + aabb = aabb.unsqueeze(1) + + tx_min = (aabb[:, :, :3] - origins) / directions + tx_max = (aabb[:, :, 3:] - origins) / directions + + t_min = torch.stack((tx_min, tx_max)).amin(dim=0) + t_max = torch.stack((tx_min, tx_max)).amax(dim=0) + + t_min = t_min.amax(dim=-1) + t_max = t_max.amin(dim=-1) + + t_min = torch.clamp(t_min, min=0, max=max_bound) + t_max = torch.clamp(t_max, min=0, max=max_bound) + + cond = t_max <= t_min + t_min = torch.where(cond, invalid_value, t_min) + t_max = torch.where(cond, invalid_value, t_max) + + return t_min, t_max + + def intersect_obb( origins: torch.Tensor, directions: torch.Tensor, @@ -363,6 +538,53 @@ def normalized_depth_scale_and_shift( return scale, shift +def power_fn(x: torch.Tensor, lam: float = -1.5, max_bound: float = 1e10) -> torch.Tensor: + """Power transformation function from Eq. 4 in ZipNeRF paper.""" + + if lam == 1: + return x + if lam == 0: + return torch.log1p(x) + # infinity case + if lam > max_bound: + return torch.expm1(x) + # -infinity case + if lam < -max_bound: + return -torch.expm1(-x) + + lam_1 = abs(lam - 1) + return (lam_1 / lam) * ((x / lam_1 + 1) ** lam - 1) + + +def inv_power_fn( + x: torch.Tensor, + lam: float = -1.5, + eps: float = 1e-10, + max_bound: float = 1e10, +) -> torch.Tensor: + """Inverse power transformation function from Eq. 4 in ZipNeRF paper.""" + + if lam == 1: + return x + if lam == 0: + return torch.expm1(x) + # infinity case + if lam > max_bound: + return torch.log1p(x) + # -infinity case + if lam < -max_bound: + return -torch.log(1 - x) + + lam_1 = abs(lam - 1) + return ((x * lam / lam_1 + 1).clamp_min(eps) ** (1 / lam) - 1) * lam_1 + + +@torch_compile(dynamic=True, mode="reduce-overhead", backend="eager") +def erf_approx(x: torch.Tensor) -> torch.Tensor: + """Error function approximation proposed in ZipNeRF paper (Eq. 11).""" + return torch.sign(x) * torch.sqrt(1 - torch.exp(-4 / torch.pi * x.pow(2))) + + def columnwise_squared_l2_distance( x: Float[Tensor, "*M N"], y: Float[Tensor, "*M N"], @@ -518,3 +740,59 @@ def generate_polyhedron_basis( basis = verts.flip(-1) return basis + + +def chamfer_distance( + source_pc: torch.Tensor, + target_pc: torch.Tensor, + chunk_size: Optional[int] = None, + normalize_with_target: bool = False, +) -> torch.Tensor: + """Computes chamfer distance (minimum squared distance from every point to the other point cloud) between two point clouds. + + Args: + source_pc: Source point cloud [N,3]. + target_pc: Target point cloud [M,3]. + chunk_size: Chunk size to use for computing chamfer distance. If None, use full point clouds. + normalize_with_target: Whether to normalize chamfer distance with target point cloud size. + + Returns: + torch.Tensor: Chamfer distance between source and target. + """ + + min_dist_source_to_target = torch.tensor(0.0).to(source_pc.device) + min_dist_target_to_source = torch.tensor(0.0).to(source_pc.device) + + # Add batch dimension as expected by torch.cdist + source_pc = source_pc.view(1, -1, 3) + target_pc = target_pc.view(1, -1, 3) + + def _chamfer_dist(source, target): + dist = torch.cdist(source, target, p=2, compute_mode="use_mm_for_euclid_dist_if_necessary").pow(2) + dist = dist.view(source.shape[1], target.shape[1]) + min_dist_source_to_target, _ = torch.min(dist, dim=1) + min_dist_target_to_source, _ = torch.min(dist, dim=0) + return min_dist_source_to_target.sum(), min_dist_target_to_source.sum() + + if chunk_size is None: + min_dist_source_to_target, min_dist_target_to_source = _chamfer_dist(source_pc, target_pc) + else: + for i in range(0, source_pc.shape[1], chunk_size): + max_idx = min(i + chunk_size, source_pc.shape[1]) + min_dist_source_to_target_add, _ = _chamfer_dist(source_pc[:, i:max_idx], target_pc) + min_dist_source_to_target_add = ( + min_dist_source_to_target_add / target_pc.shape[1] + if normalize_with_target + else min_dist_source_to_target_add + ) + min_dist_source_to_target += min_dist_source_to_target_add + for i in range(0, target_pc.shape[1], chunk_size): + max_idx = min(i + chunk_size, target_pc.shape[1]) + min_dist_target_to_source_add, _ = _chamfer_dist(target_pc[:, i:max_idx], source_pc) + min_dist_target_to_source_add = ( + min_dist_target_to_source_add / target_pc.shape[1] + if normalize_with_target + else min_dist_target_to_source_add + ) + min_dist_target_to_source += min_dist_target_to_source_add + return min_dist_source_to_target + min_dist_target_to_source diff --git a/nerfstudio/utils/misc.py b/nerfstudio/utils/misc.py index ae3c4d55..47e68597 100644 --- a/nerfstudio/utils/misc.py +++ b/nerfstudio/utils/misc.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -177,12 +178,12 @@ def torch_compile(*args, **kwargs) -> Any: return args[0] else: return torch.jit.script - elif platform.system() == "Windows": + elif (os_name := platform.system()) in ("Windows", "Darwin"): # torch.compile is not supported on Windows # https://github.com/orgs/pytorch/projects/27 # TODO: @jkulhanek, remove this once torch.compile is supported on Windows warnings.warn( - "Windows does not yet support torch.compile and the performance will be affected.", RuntimeWarning + f"{os_name} does not yet support torch.compile and the performance will be affected.", RuntimeWarning ) if args and isinstance(args[0], torch.nn.Module): return args[0] diff --git a/nerfstudio/utils/poses.py b/nerfstudio/utils/poses.py index d0c7c15c..3f1178e2 100644 --- a/nerfstudio/utils/poses.py +++ b/nerfstudio/utils/poses.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -17,9 +18,12 @@ """ import torch +import torch.nn.functional as F from jaxtyping import Float from torch import Tensor +from nerfstudio.cameras.camera_utils import rotmat_to_unitquat, unitquat_slerp, unitquat_slerp_fast, unitquat_to_rotmat + def to4x4(pose: Float[Tensor, "*batch 3 4"]) -> Float[Tensor, "*batch 4 4"]: """Convert 3x4 pose matrices to a 4x4 with the addition of a homogeneous coordinate. @@ -74,10 +78,121 @@ def normalize(poses: Float[Tensor, "*batch 3 4"]) -> Float[Tensor, "*batch 3 4"] Args: poses: A collection of poses to be normalized. - Returns; + Returns: Normalized collection of poses. """ pose_copy = torch.clone(poses) pose_copy[..., :3, 3] /= torch.max(torch.abs(poses[..., :3, 3])) return pose_copy + + +def interpolate_trajectories_6d(poses, pose_times, query_times, pose_valid_mask=None, flatten=True): + """Interpolate trajectory poses at query times using linear interpolation. + + Args: + poses: A collection of 9d representation poses (6d rot + 3d position) to be interpolated N_times x N_trajectories. + pose_times: The timestamps of the poses N_times. + query_times: The timestamps to interpolate the poses at [N_queries, 1]. + pose_valid_mask: A mask indicating which poses are valid N_times x N_trajectories. + flatten: Whether to return the interpolated poses as a flat (masked) tensor or as a 3D (unmasked) tensor. Flatten also returns the indices of the queries and objects used for interpolation. Not flattening returns the mask used to find said indices. Default is True. + + Returns: + The interpolated poses at the query times (M x 9) + The indices of the queries used for interpolation (M). + The indices of the tractories used for interpolation (M). + """ + assert len(poses.shape) == 3, "Poses must be of shape [num_actors, num_poses, 9]" + if len(poses) == 0: + if flatten: + return ( + torch.empty(0, 9, device=poses.device), + torch.empty(0, dtype=torch.long), + torch.empty(0, dtype=torch.long), + ) + else: + return torch.empty(0, 9, device=poses.device), torch.empty(len(query_times), 0, dtype=torch.bool) + # Orthogonalize the first two axes + a1 = F.normalize(poses[..., :3], dim=-1) + a2 = poses[..., 3:6] + a2 = a2 - (a1 * a2).sum(-1, keepdim=True) * a1 + a2 = F.normalize(a2, dim=-1) + + positions = poses[..., 6:9] + poses = torch.cat([a1, a2, positions], dim=-1) + right_idx = torch.searchsorted(pose_times, query_times.squeeze(-1)) + left_idx = (right_idx - 1).clamp(min=0) + right_idx = right_idx.clamp(max=len(pose_times) - 1) + + # Compute the fraction between the left (previous) and right (after) timestamps + right_time = pose_times[right_idx] + left_time = pose_times[left_idx] + time_diff = right_time - left_time + 1e-6 + fraction = (query_times.squeeze(-1) - left_time) / time_diff # 0 = all left, 1 = all right + fraction = fraction.clamp(0.0, 1.0) # clamp to handle out of bounds + + if pose_valid_mask is None: + pose_valid_mask = torch.ones_like(poses[..., 0, 0], dtype=torch.bool) + trajs_to_sample = pose_valid_mask[left_idx] | pose_valid_mask[right_idx] # [num_queries, n_trajs] + + poses_left = poses[left_idx] + poses_right = poses[right_idx] + + if flatten: + query_idxs, object_idxs = torch.where(trajs_to_sample) # 2 x [num_queries*n_valid_trajs] + poses_left = poses_left[query_idxs, object_idxs] # [num_queries*n_valid_objects, 9] + poses_right = poses_right[query_idxs, object_idxs] # [num_queries*n_valid_objects, 9] + interpolated_poses = poses_left + (poses_right - poses_left) * fraction[query_idxs].unsqueeze(-1) + return interpolated_poses, query_idxs, object_idxs + else: + interpolated_poses = poses_left + (poses_right - poses_left) * fraction.unsqueeze(-1).unsqueeze(-1) + return interpolated_poses, trajs_to_sample # trajs_to_sample is a validity mask + + +def interpolate_trajectories(poses, pose_times, query_times, pose_valid_mask=None, clamp_frac=True): + """Interpolate trajectory poses at query times using linear interpolation. + + Args: + poses: A collection of poses to be interpolated N_times x N_trajectories. + pose_times: The timestamps of the poses N_times. + query_times: The timestamps to interpolate the poses at N_queries. + pose_valid_mask: A mask indicating which poses are valid N_times x N_trajectories. + + Returns: + The interpolated poses at the query times (M x 3 x 4) + The indices of the queries used for interpolation (M). + The indices of the tractories used for interpolation (M). + """ + assert len(poses.shape) == 4, "Poses must be of shape [num_actors, num_poses, 3, 4]" + # bugs are crawling like crazy if we only have one query time, fix with maybe squeeze + qt = query_times if query_times.shape[-1] == 1 else query_times.squeeze() + right_idx = torch.searchsorted(pose_times, qt) + left_idx = (right_idx - 1).clamp(min=0) + right_idx = right_idx.clamp(max=len(pose_times) - 1) + + # Compute the fraction between the left (previous) and right (after) timestamps + right_time = pose_times[right_idx] + left_time = pose_times[left_idx] + time_diff = right_time - left_time + 1e-6 + fraction = (qt - left_time) / time_diff # 0 = all left, 1 = all right + if clamp_frac: + fraction = fraction.clamp(0.0, 1.0) # clamp to handle out of bounds + + if pose_valid_mask is None: + pose_valid_mask = torch.ones_like(poses[..., 0, 0], dtype=torch.bool) + trajs_to_sample = pose_valid_mask[left_idx] | pose_valid_mask[right_idx] # [num_queries, n_trajs] + query_idxs, object_idxs = torch.where(trajs_to_sample) # 2 x [num_queries*n_valid_trajs] + + quat = rotmat_to_unitquat(poses[..., :3, :3]) + quat_left = quat[left_idx][query_idxs, object_idxs] # [num_queries*n_valid_objects, 4] + quat_right = quat[right_idx][query_idxs, object_idxs] # [num_queries*n_valid_objects, 4] + interp_fn = unitquat_slerp if (fraction < 0).any() or (fraction > 1).any() else unitquat_slerp_fast + interp_quat = interp_fn(quat_left, quat_right, fraction[query_idxs]) + interp_rot = unitquat_to_rotmat(interp_quat) + + pos_left = poses[left_idx][query_idxs, object_idxs, :3, 3] # [num_queries*n_valid_objects, 3] + pos_right = poses[right_idx][query_idxs, object_idxs, :3, 3] # [num_queries*n_valid_objects, 3] + interp_pos = pos_left + (pos_right - pos_left) * fraction[query_idxs].unsqueeze(-1) + + interpolated_poses = torch.cat([interp_rot, interp_pos.unsqueeze(-1)], dim=-1) + return interpolated_poses, query_idxs, object_idxs diff --git a/nerfstudio/utils/tensor_dataclass.py b/nerfstudio/utils/tensor_dataclass.py index 293d978d..3001cef0 100644 --- a/nerfstudio/utils/tensor_dataclass.py +++ b/nerfstudio/utils/tensor_dataclass.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -16,7 +17,7 @@ import dataclasses from copy import deepcopy -from typing import Callable, Dict, List, NoReturn, Optional, Tuple, TypeVar, Union +from typing import Any, Callable, Dict, Iterable, List, NoReturn, Optional, Tuple, TypeVar, Union import numpy as np import torch @@ -253,7 +254,7 @@ def custom_tensor_dims_fn(k, v): lambda x: x.broadcast_to((*shape, x.shape[-1])), custom_tensor_dims_fn=custom_tensor_dims_fn ) - def to(self: TensorDataclassT, device) -> TensorDataclassT: + def to(self: TensorDataclassT, device, **kwargs) -> TensorDataclassT: """Returns a new TensorDataclass with the same data but on the specified device. Args: @@ -262,7 +263,30 @@ def to(self: TensorDataclassT, device) -> TensorDataclassT: Returns: A new TensorDataclass with the same data but on the specified device. """ - return self._apply_fn_to_fields(lambda x: x.to(device)) + return self._apply_fn_to_fields(lambda x: x.to(device, **kwargs)) + + def cat( + self: TensorDataclassT, tensors: List[TensorDataclassT], dim: int = 0, ignore_fields: Iterable = set() + ) -> TensorDataclassT: + """Concatenates the tensor dataclass with the tensors along the specified dimension. + + Args: + tensors: The tensors to concatenate with the tensor dataclass. + dim: The dimension to concatenate along. + + Returns: + A new TensorDataclass with the tensors concatenated along the specified dimension. + """ + if not isinstance(tensors, (list, tuple)): + tensors = [tensors] + assert all(type(t) == type(self) for t in tensors), "All tensors must be of the same type." + assert dataclasses.is_dataclass(self) + new_fields = { + field.name: _cat(getattr(self, field.name), [getattr(t, field.name) for t in tensors], dim) + for field in dataclasses.fields(self) + if field.name not in ignore_fields + } + return self.__class__(**new_fields) def pin_memory(self: TensorDataclassT) -> TensorDataclassT: """Pins the tensor dataclass memory @@ -344,7 +368,24 @@ def _apply_fn_to_dict( new_dict[f] = fn(v) elif isinstance(v, Dict): new_dict[f] = self._apply_fn_to_dict(v, fn, dataclass_fn) + elif isinstance(v, (list, tuple)): + new_dict[f] = [fn(vi) for vi in v] else: new_dict[f] = deepcopy(v) return new_dict + + +def _cat(x: Any, y: List[Any], dim: int): + if isinstance(x, TensorDataclass): + return x.cat(y, dim=dim) + elif isinstance(x, torch.Tensor): + return torch.cat([x, *y], dim=dim) + elif isinstance(x, Dict): + # TODO: maybe handle key mismatch better. Currently only merges keys that are in all dicts + return {k: _cat(v, [yi[k] for yi in y], dim) for k, v in x.items()} + elif isinstance(x, (list, tuple)): + return [_cat(xi, [yi[i] for yi in y], dim) for i, xi in enumerate(x)] + else: + # If we can't concatenate, we return the value of x + return deepcopy(x) diff --git a/nerfstudio/utils/writer.py b/nerfstudio/utils/writer.py index d460e941..73c020ac 100644 --- a/nerfstudio/utils/writer.py +++ b/nerfstudio/utils/writer.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -318,7 +319,7 @@ def write_image(self, name: str, image: Float[Tensor, "H W C"], step: int) -> No import wandb # wandb is slow to import, so we only import it if we need it. image = torch.permute(image, (2, 0, 1)) - wandb.log({name: wandb.Image(image)}, step=step) + wandb.log({name: wandb.Image(image, file_type="jpg")}, step=step) def write_scalar(self, name: str, scalar: Union[float, torch.Tensor], step: int) -> None: import wandb # wandb is slow to import, so we only import it if we need it. diff --git a/nerfstudio/viewer/control_panel.py b/nerfstudio/viewer/control_panel.py index 6524c530..b4640105 100644 --- a/nerfstudio/viewer/control_panel.py +++ b/nerfstudio/viewer/control_panel.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -14,6 +15,7 @@ """ Control panel for the viewer """ from collections import defaultdict +from functools import partial from typing import Callable, DefaultDict, List, Tuple, get_args import numpy as np @@ -25,6 +27,7 @@ from nerfstudio.data.scene_box import OrientedBox from nerfstudio.utils.colormaps import ColormapOptions, Colormaps from nerfstudio.viewer.viewer_elements import ( # ViewerButtonGroup, + ViewerButton, ViewerButtonGroup, ViewerCheckbox, ViewerDropdown, @@ -32,6 +35,7 @@ ViewerNumber, ViewerRGB, ViewerSlider, + ViewerVec2, ViewerVec3, ) @@ -55,6 +59,9 @@ def __init__( rerender_cb: Callable[[], None], update_output_cb: Callable, update_split_output_cb: Callable, + rerender_lidar_cb: Callable, + rendering_disabled_cb: Callable, + max_time: float = 1.0, default_composite_depth: bool = True, ): self.viser_scale_ratio = scale_ratio @@ -85,6 +92,47 @@ def __init__( ) self._min = ViewerNumber("Min", 0.0, cb_hook=lambda _: rerender_cb(), hint="Min value of the colormap") self._max = ViewerNumber("Max", 1.0, cb_hook=lambda _: rerender_cb(), hint="Max value of the colormap") + self._range_min = ViewerNumber( + "Range Min", 0.0, cb_hook=lambda _: rerender_cb(), hint="Min value of the range (0.0 for auto))" + ) + self._range_max = ViewerNumber( + "Range Max", 0.0, cb_hook=lambda _: rerender_cb(), hint="Max value of the range (0.0 for auto))" + ) + + self._lidar_enabled = ViewerCheckbox( + "Enable", + False, + cb_hook=lambda han: [self.update_control_panel(), rerender_cb(), rerender_lidar_cb(han)], + hint="Render lidar", + ) + self._lidar_position = ViewerVec3( + "Position", (0.0, 0.0, 0.0), cb_hook=rerender_lidar_cb, hint="Position of the lidar" + ) + self._lidar_snap_to_camera = ViewerButton( + "Snap to Camera", cb_hook=partial(rerender_lidar_cb, snap_to_cam=True) + ) + self._lidar_beams = ViewerSlider("Num Beams", 24, 1, 256, 1, cb_hook=rerender_lidar_cb, hint="Number of beams") + self._lidar_fov = ViewerVec2( + "Vertical FoV", (-15.0, 15.0), cb_hook=rerender_lidar_cb, hint="Vertical field of view" + ) + self._lidar_azim_res = ViewerSlider( + "Azimuth Res", 0.5, 0.01, 1.0, 0.01, cb_hook=rerender_lidar_cb, hint="Azimuth resolution (deg)" + ) + self._lidar_max_dist = ViewerSlider( + "Distance Cutoff", 250.0, 10.0, 500.0, 10.0, cb_hook=rerender_lidar_cb, hint="Distance cutoff (m)" + ) + self._lidar_use_ray_drop = ViewerCheckbox( + "Use Ray Drop", + True, + cb_hook=lambda han: [rerender_lidar_cb(han), self._lidar_ray_drop_threshold.set_visible(han.value)], + hint="Use ray drop probability", + ) + self._lidar_ray_drop_threshold = ViewerSlider( + "Ray Drop Threshold", 0.0, 0.0, 1.0, 0.01, cb_hook=rerender_lidar_cb, visible=True + ) + self._lidar_color_by_intensity = ViewerCheckbox( + "Color by Intensity", False, cb_hook=rerender_lidar_cb, hint="Color the lidar points by intensity" + ) self._split = ViewerCheckbox( "Enable", @@ -119,6 +167,12 @@ def __init__( "Max ", 1.0, cb_hook=lambda _: rerender_cb(), hint="Max value of the colormap of the second output" ) + self._rendering_disabled = ViewerCheckbox( + "Disable Rendering", + False, + cb_hook=lambda han: [self.update_control_panel(), rerender_cb(), rendering_disabled_cb(han)], + ) + self._color_override = ViewerRGB("Color Override", (255, 255, 255), cb_hook=rendering_disabled_cb) self._train_util = ViewerSlider( "Train Util", default_value=0.85, @@ -186,13 +240,17 @@ def _update_crop_handle(han): rpy = vtf.SO3(self._crop_handle.wxyz).as_rpy_radians() self._crop_rot.value = (float(rpy.roll), float(rpy.pitch), float(rpy.yaw)) - self._time = ViewerSlider("Time", 0.0, 0.0, 1.0, 0.01, cb_hook=lambda _: rerender_cb(), hint="Time to render") + self._time = ViewerSlider( + "Time", 0.0, 0.0, max_time, 0.01, cb_hook=lambda _: rerender_cb(), hint="Time to render" + ) self._time_enabled = time_enabled self.add_element(self._train_speed) self.add_element(self._train_util) with self.viser_server.add_gui_folder("Render Options"): + self.add_element(self._rendering_disabled) + self.add_element(self._color_override, additional_tags=("rendering_disabled",)) self.add_element(self._max_res) self.add_element(self._output_render) self.add_element(self._colormap) @@ -202,6 +260,20 @@ def _update_crop_handle(han): self.add_element(self._normalize, additional_tags=("colormap",)) self.add_element(self._min, additional_tags=("colormap",)) self.add_element(self._max, additional_tags=("colormap",)) + self.add_element(self._range_min, additional_tags=("colormap",)) + self.add_element(self._range_max, additional_tags=("colormap",)) + + with self.viser_server.add_gui_folder("Lidar Rendering"): + self.add_element(self._lidar_enabled) + self.add_element(self._lidar_beams, additional_tags=("lidar",)) + self.add_element(self._lidar_fov, additional_tags=("lidar",)) + self.add_element(self._lidar_azim_res, additional_tags=("lidar",)) + self.add_element(self._lidar_position, additional_tags=("lidar",)) + self.add_element(self._lidar_snap_to_camera, additional_tags=("lidar",)) + self.add_element(self._lidar_max_dist, additional_tags=("lidar",)) + self.add_element(self._lidar_use_ray_drop, additional_tags=("lidar",)) + self.add_element(self._lidar_ray_drop_threshold, additional_tags=("lidar",)) + self.add_element(self._lidar_color_by_intensity, additional_tags=("lidar",)) # split options with self.viser_server.add_gui_folder("Split Screen"): @@ -283,6 +355,10 @@ def update_control_panel(self) -> None: e.set_hidden(not self._split.value or self.split_output_render == "rgb") for e in self._elements_by_tag["crop"]: e.set_hidden(not self.crop_viewport) + for e in self._elements_by_tag["lidar"]: + e.set_hidden(not self.lidar_enabled) + for e in self._elements_by_tag["rendering_disabled"]: + e.set_hidden(not self.rendering_disabled) self._time.set_hidden(not self._time_enabled) self._split_percentage.set_hidden(not self._split.value) self._split_output_render.set_hidden(not self._split.value) @@ -333,6 +409,16 @@ def train_util(self) -> float: """Returns the current train util setting""" return self._train_util.value + @property + def rendering_disabled(self) -> bool: + """Returns whether rendering is enabled""" + return self._rendering_disabled.value + + @property + def color_override(self) -> Tuple[int, int, int]: + """Returns whether the color override is enabled""" + return self._color_override.value + @property def max_res(self) -> int: """Returns the current max res setting""" @@ -385,6 +471,8 @@ def colormap_options(self) -> ColormapOptions: colormap_min=self._min.value, colormap_max=self._max.value, invert=self._invert.value, + range_min=self._range_min.value if self._range_min.value != 0 else None, + range_max=self._range_max.value if self._range_max.value != 0 else None, ) @property @@ -402,6 +490,56 @@ def split_colormap_options(self) -> ColormapOptions: def layer_depth(self): return self._layer_depth.value + @property + def lidar_enabled(self) -> bool: + """Returns the current lidar enabled setting""" + return self._lidar_enabled.value + + @property + def lidar_position(self) -> Tuple[float, float, float]: + """Returns the current lidar position""" + return self._lidar_position.value + + @lidar_position.setter + def lidar_position(self, value: Tuple[float, float, float]): + """Sets the lidar position""" + self._lidar_position.value = value + + @property + def lidar_beams(self) -> int: + """Returns the current lidar beams""" + return self._lidar_beams.value + + @property + def lidar_fov(self) -> Tuple[float, float]: + """Returns the current lidar fov""" + return self._lidar_fov.value + + @property + def lidar_azim_res(self) -> float: + """Returns the current lidar azimuthal resolution""" + return self._lidar_azim_res.value + + @property + def lidar_max_dist(self) -> float: + """Returns the current lidar max distance""" + return self._lidar_max_dist.value + + @property + def lidar_use_ray_drop(self) -> bool: + """Whether to use ray drop probability when rendering lidar""" + return self._lidar_use_ray_drop.value + + @property + def lidar_ray_drop_threshold(self) -> float: + """The threshold at which to consider a lidar ray to be dropped""" + return self._lidar_ray_drop_threshold.value + + @property + def lidar_color_by_intensity(self) -> bool: + """Whether to color the lidar points by intensity""" + return self._lidar_color_by_intensity.value + def _get_colormap_options(dimensions: int, dtype: type) -> List[Colormaps]: """ diff --git a/nerfstudio/viewer/render_state_machine.py b/nerfstudio/viewer/render_state_machine.py index 1fa7c07d..5a7b98d6 100644 --- a/nerfstudio/viewer/render_state_machine.py +++ b/nerfstudio/viewer/render_state_machine.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -24,9 +25,11 @@ import numpy as np import torch import torch.nn.functional as F -from viser import ClientHandle +from viser import ClientHandle, PointCloudHandle from nerfstudio.cameras.cameras import Cameras +from nerfstudio.cameras.lidars import intensity_to_rgb +from nerfstudio.cameras.rays import RayBundle from nerfstudio.model_components.renderers import background_color_override_context from nerfstudio.models.splatfacto import SplatfactoModel from nerfstudio.utils import colormaps, writer @@ -86,6 +89,7 @@ def __init__(self, viewer: Viewer, viser_scale_ratio: float, client: ClientHandl self.viser_scale_ratio = viser_scale_ratio self.client = client self.running = True + self.disabled = False def action(self, action: RenderAction): """Takes an action and updates the state machine @@ -190,6 +194,14 @@ def _render_img(self, camera_state: CameraState): # Convert to z_depth if depth compositing is enabled. R = camera.camera_to_worlds[0, 0:3, 0:3].T camera_ray_bundle = camera.generate_rays(camera_indices=0, obb_box=obb) + if outputs["depth"].shape[:-1] != camera_ray_bundle.directions.shape[:-1]: + # If the depth image is not the same size as the camera rays, we need to resize it + outputs["depth"] = F.interpolate( + outputs["depth"][None, None, ..., 0], # HW1 -> 11HW (batch, channel, H, W) + size=camera_ray_bundle.directions.shape[:-1], + mode="bilinear", + align_corners=False, + )[0, 0, ..., None] # 11HW -> HW1 (drop batch and move channel to last dim) pts = camera_ray_bundle.directions * outputs["depth"] pts = (R @ (pts.view(-1, 3).T)).T.view(*camera_ray_bundle.directions.shape) outputs["gl_z_buf_depth"] = -pts[..., 2:3] # negative z axis is the coordinate convention @@ -203,7 +215,7 @@ def _render_img(self, camera_state: CameraState): def run(self): """Main loop for the render thread""" while self.running: - if not self.viewer.ready: + if not self.viewer.ready or self.disabled: time.sleep(0.1) continue if not self.render_trigger.wait(0.2): @@ -344,3 +356,96 @@ def _calculate_image_res(self, aspect_ratio: float) -> Tuple[int, int]: raise ValueError(f"Invalid state: {self.state}") return image_height, image_width + + +class LidarRenderer(threading.Thread): + """Simple lidar renderering thread that renders lidar data and sends it to the viewer + + Args: + viewer: the viewer object + """ + + def __init__(self, viewer: Viewer, client: ClientHandle): + super().__init__() + self.viewer = viewer + self.client = client + self.running = True + self.rendered_pc_handle: Optional[PointCloudHandle] = None + self._render_next = False + + def trigger(self): + self._render_next = True + + def run(self): + """Main loop for the thread""" + while self.running: + if not self._render_next: + time.sleep(0.1) + continue + try: + self._render_lidar() + self._render_next = False + except viewer_utils.IOChangeException: + continue + + def _render_lidar(self): + control_panel = self.viewer.control_panel + # Construct rays from lidar specifications + device = self.viewer.get_model().device + v_angles = torch.linspace(*np.deg2rad(control_panel.lidar_fov), control_panel.lidar_beams, device=device) + h_angles = torch.arange(0, 2 * np.pi, np.deg2rad(control_panel.lidar_azim_res), device=device) + v_angles, h_angles = torch.meshgrid(v_angles, h_angles) + v_angles, h_angles = v_angles.flatten(), h_angles.flatten() + directions = torch.stack( + [ + torch.cos(v_angles) * torch.cos(h_angles), + torch.cos(v_angles) * torch.sin(h_angles), + torch.sin(v_angles), + ], + dim=-1, + ) + origins = torch.tensor(control_panel.lidar_position, dtype=torch.float32, device=device) + lidar_ray_bundle = RayBundle( + origins=origins, + directions=directions, + pixel_area=torch.zeros_like(v_angles, dtype=torch.float32)[..., None], # TODO: is this relevant? + metadata={"is_lidar": torch.ones_like(v_angles, dtype=torch.bool)[..., None]}, + times=torch.tensor([self.viewer.control_panel.time], dtype=torch.float32, device=device), + ) + + # Run model + with self.viewer.train_lock or contextlib.nullcontext(): + self.viewer.get_model().eval() + with torch.no_grad(): + outputs = self.viewer.get_model().get_outputs_for_camera_ray_bundle(lidar_ray_bundle) + self.viewer.get_model().train() + + point_cloud = torch.cat( + [ + outputs["depth"] * directions + origins, + outputs["intensity"], + ], + dim=-1, + ) + if "ray_drop_prob" in outputs and control_panel.lidar_use_ray_drop: + point_cloud = point_cloud[outputs["ray_drop_prob"].squeeze(-1) < control_panel.lidar_ray_drop_threshold] + else: + point_cloud = point_cloud[outputs["depth"].squeeze(-1) < control_panel.lidar_max_dist] + point_cloud = point_cloud.cpu().numpy() + + if self.rendered_pc_handle is not None: + self.rendered_pc_handle.remove() + + if control_panel.lidar_color_by_intensity: + colors = intensity_to_rgb(point_cloud[:, 3]) + else: + colors = (200, 200, 200) + + self.rendered_pc_handle = self.client.add_point_cloud( + name="/rendered_point_cloud", + points=point_cloud[:, :3], + colors=colors, + point_size=0.05, + point_shape="circle", + # pc is in global coords so no need to set position and rotation + ) diff --git a/nerfstudio/viewer/viewer.py b/nerfstudio/viewer/viewer.py index db84e955..a1b614d8 100644 --- a/nerfstudio/viewer/viewer.py +++ b/nerfstudio/viewer/viewer.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -29,6 +30,7 @@ from nerfstudio.cameras.camera_optimizers import CameraOptimizer from nerfstudio.cameras.cameras import CameraType +from nerfstudio.cameras.lidars import intensity_to_rgb, transform_points from nerfstudio.configs import base_config as cfg from nerfstudio.data.datasets.base_dataset import InputDataset from nerfstudio.models.base_model import Model @@ -39,7 +41,7 @@ from nerfstudio.viewer.control_panel import ControlPanel from nerfstudio.viewer.export_panel import populate_export_tab from nerfstudio.viewer.render_panel import populate_render_tab -from nerfstudio.viewer.render_state_machine import RenderAction, RenderStateMachine +from nerfstudio.viewer.render_state_machine import LidarRenderer, RenderAction, RenderStateMachine from nerfstudio.viewer.utils import CameraState, parse_object from nerfstudio.viewer.viewer_elements import ViewerControl, ViewerElement from nerfstudio.viewer_legacy.server import viewer_utils @@ -48,7 +50,7 @@ from nerfstudio.engine.trainer import Trainer -VISER_NERFSTUDIO_SCALE_RATIO: float = 10.0 +VISER_NERFSTUDIO_SCALE_RATIO: float = 1.0 @decorate_all([check_main_thread]) @@ -156,6 +158,7 @@ def __init__( ) self.render_statemachines: Dict[int, RenderStateMachine] = {} + self.lidar_renderers: Dict[int, LidarRenderer] = {} self.viser_server.on_client_disconnect(self.handle_disconnect) self.viser_server.on_client_connect(self.handle_new_client) @@ -183,6 +186,18 @@ def __init__( self.show_images.on_click(lambda _: self.set_camera_visibility(True)) self.show_images.on_click(lambda _: self.toggle_cameravis_button()) self.show_images.visible = False + # Add buttons to toggle training point cloud visibility + self.hide_lidars = self.viser_server.add_gui_button( + label="Hide Train Lidars", disabled=False, icon=viser.Icon.EYE_OFF, color=None, visible=False + ) + self.hide_lidars.on_click(lambda _: self.set_lidar_visibility(False)) + self.hide_lidars.on_click(lambda _: self.toggle_lidarvis_button()) + self.show_lidars = self.viser_server.add_gui_button( + label="Show Train Lidars", disabled=False, icon=viser.Icon.EYE, color=None, visible=False + ) + self.show_lidars.on_click(lambda _: self.set_lidar_visibility(True)) + self.show_lidars.on_click(lambda _: self.toggle_lidarvis_button()) + mkdown = self.make_stats_markdown(0, "0x0px") self.stats_markdown = self.viser_server.add_gui_markdown(mkdown) tabs = self.viser_server.add_gui_tab_group() @@ -195,6 +210,9 @@ def __init__( self._trigger_rerender, self._output_type_change, self._output_split_type_change, + self._rerender_lidar, + self._rendering_disabled_change, + max_time=self.pipeline.datamanager.train_dataparser_outputs.metadata.get("duration", 1.0), default_composite_depth=self.config.default_composite_depth, ) config_path = self.log_filename.parents[0] / "config.yml" @@ -278,6 +296,10 @@ def toggle_cameravis_button(self) -> None: self.hide_images.visible = not self.hide_images.visible self.show_images.visible = not self.show_images.visible + def toggle_lidarvis_button(self) -> None: + self.hide_lidars.visible = not self.hide_lidars.visible + self.show_lidars.visible = not self.show_lidars.visible + def make_stats_markdown(self, step: Optional[int], res: Optional[str]) -> str: # if either are None, read it from the current stats_markdown content if step is None: @@ -326,10 +348,14 @@ def get_camera_state(self, client: viser.ClientHandle) -> CameraState: def handle_disconnect(self, client: viser.ClientHandle) -> None: self.render_statemachines[client.client_id].running = False self.render_statemachines.pop(client.client_id) + self.lidar_renderers[client.client_id].running = False + self.lidar_renderers.pop(client.client_id) def handle_new_client(self, client: viser.ClientHandle) -> None: self.render_statemachines[client.client_id] = RenderStateMachine(self, VISER_NERFSTUDIO_SCALE_RATIO, client) self.render_statemachines[client.client_id].start() + self.lidar_renderers[client.client_id] = LidarRenderer(self, client) + self.lidar_renderers[client.client_id].start() @client.camera.on_update def _(_: viser.CameraHandle) -> None: @@ -346,6 +372,12 @@ def set_camera_visibility(self, visible: bool) -> None: for idx in self.camera_handles: self.camera_handles[idx].visible = visible + def set_lidar_visibility(self, visible: bool) -> None: + """Toggle the visibility of the training cameras.""" + with self.viser_server.atomic(): + for handle in self.lidar_handles.values(): + handle.visible = visible + def update_camera_poses(self): # TODO this fn accounts for like ~5% of total train time # Update the train camera locations based on optimization @@ -379,6 +411,32 @@ def _trigger_rerender(self) -> None: camera_state = self.get_camera_state(clients[id]) self.render_statemachines[id].action(RenderAction("move", camera_state)) + def _rerender_lidar(self, *args, snap_to_cam: bool = False) -> None: + """Handle lidar update message from viewer.""" + for client_id, client in self.viser_server.get_clients().items(): + if snap_to_cam: + # TODO: this will propagate to all clients, needs to be client-specific somehow! + camera_state = self.get_camera_state(client=client) + self.control_panel.lidar_position = camera_state.c2w[:3, 3].tolist() + + if self.control_panel.lidar_enabled: + self.lidar_renderers[client_id].trigger() + else: # clear the lidar point cloud + handle = self.lidar_renderers[client_id].rendered_pc_handle + if handle is not None: + handle.remove() + + def _rendering_disabled_change(self, _): + clients = self.viser_server.get_clients() + for id in clients: + self.render_statemachines[id].disabled = self.control_panel.rendering_disabled + if self.render_statemachines[id].disabled: + bg_img = ( + np.ones((10, 10, 3), dtype=np.uint8) * np.array(self.control_panel.color_override)[None, None, :] + ) + self.viser_server.set_background_image(bg_img) + self.render_statemachines[id].interrupt_render_flag = True + def _toggle_training_state(self, _) -> None: """Toggle the trainer's training state.""" if self.trainer is not None: @@ -459,6 +517,27 @@ def _(event: viser.SceneNodePointerEvent[viser.CameraFrustumHandle]) -> None: self.camera_handles[idx] = camera_handle self.original_c2w[idx] = c2w + # draw the lidar point clouds (if any) + self.lidar_handles: Dict[int, viser.PointCloudHandle] = {} + lidars = train_dataset.metadata.get("lidars", None) if train_dataset.metadata else None + if lidars is not None: + point_clouds = train_dataset.metadata["point_clouds"] + for idx in range(len(lidars)): + point_cloud = point_clouds[idx] + point_cloud = transform_points(point_cloud, lidars.lidar_to_worlds[idx]) + max_points = self.config.max_points_per_cloud + if max_points is not None and point_cloud.shape[0] > max_points: + point_cloud = point_cloud[torch.randperm(point_cloud.shape[0])[:max_points]] + self.lidar_handles[idx] = self.viser_server.add_point_cloud( + f"/lidar/{idx:06d}", + points=point_cloud[:, :3].cpu().numpy(), + colors=intensity_to_rgb(point_cloud[:, 3].cpu().numpy()), + point_size=0.02, + point_shape="circle", + ) + if self.lidar_handles: + self.hide_lidars.visible = True # only show lidar buttons if there are lidars + self.train_state = train_state self.train_util = 0.9 diff --git a/nerfstudio/viewer/viewer_elements.py b/nerfstudio/viewer/viewer_elements.py index 654503a3..2cb2ea79 100644 --- a/nerfstudio/viewer/viewer_elements.py +++ b/nerfstudio/viewer/viewer_elements.py @@ -1,3 +1,4 @@ +# Copyright 2024 the authors of NeuRAD and contributors. # Copyright 2022 the Regents of the University of California, Nerfstudio Team and contributors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -677,6 +678,41 @@ def _create_gui_handle(self, viser_server: ViserServer) -> None: ) +class ViewerVec2(ViewerParameter[Tuple[float, float]]): + """ + 2 number boxes in a row to input a vector + + Args: + name: The name of the vector + default_value: The default value of the vector + step: The step of the vector + disabled: If the vector is disabled + visible: If the vector is visible + cb_hook: Callback to call on update + hint: The hint text + """ + + def __init__( + self, + name, + default_value: Tuple[float, float], + step=0.1, + disabled=False, + visible=True, + cb_hook: Callable[[ViewerVec2], Any] = lambda element: None, + hint: Optional[str] = None, + ): + assert len(default_value) == 2 + super().__init__(name, default_value, disabled=disabled, visible=visible, cb_hook=cb_hook) + self.step = step + self.hint = hint + + def _create_gui_handle(self, viser_server: ViserServer) -> None: + self.gui_handle = viser_server.add_gui_vector2( + self.name, self.default_value, step=self.step, disabled=self.disabled, visible=self.visible, hint=self.hint + ) + + class ViewerVec3(ViewerParameter[Tuple[float, float, float]]): """ 3 number boxes in a row to input a vector @@ -710,3 +746,37 @@ def _create_gui_handle(self, viser_server: ViserServer) -> None: self.gui_handle = viser_server.add_gui_vector3( self.name, self.default_value, step=self.step, disabled=self.disabled, visible=self.visible, hint=self.hint ) + + +class ViewerVecN(ViewerParameter[Tuple[float, ...]]): + """ + N number boxes in a row to input a vector + + Args: + name: The name of the vector + default_value: The default value of the vector + step: The step of the vector + disabled: If the vector is disabled + visible: If the vector is visible + cb_hook: Callback to call on update + hint: The hint text + """ + + def __init__( + self, + name, + default_value: Tuple[float, ...], + step=0.1, + disabled=False, + visible=True, + cb_hook: Callable[[ViewerVecN], Any] = lambda element: None, + hint: Optional[str] = None, + ): + super().__init__(name, default_value, disabled=disabled, visible=visible, cb_hook=cb_hook) + self.step = step + self.hint = hint + + def _create_gui_handle(self, viser_server: ViserServer) -> None: + self.gui_handle = viser_server.add_gui_vectorN( + self.name, self.default_value, step=self.step, disabled=self.disabled, visible=self.visible, hint=self.hint + ) diff --git a/pyproject.toml b/pyproject.toml index 5ac3f71b..7ed90adb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,7 +57,7 @@ dependencies = [ "torchvision>=0.14.1", "torchmetrics[image]>=1.0.1", "typing_extensions>=4.4.0", - "viser==0.1.27", + "viser@git+https://github.com/atonderski/viser.git", "nuscenes-devkit>=1.1.1", "wandb>=0.13.3", "xatlas", @@ -66,7 +66,10 @@ dependencies = [ "gsplat>=0.1.9", "pytorch-msssim", "pathos", - "packaging" + "packaging", + "zod>=0.1.7", + "pandaset@git+https://github.com/scaleapi/pandaset-devkit.git#egg=pandaset&subdirectory=python", + "av2==0.2.1", ] [project.urls] diff --git a/tests/cameras/test_rays.py b/tests/cameras/test_rays.py index 43597978..d509d876 100644 --- a/tests/cameras/test_rays.py +++ b/tests/cameras/test_rays.py @@ -30,7 +30,7 @@ def test_frustum_get_position(): assert positions == pytest.approx(target_position, abs=1e-6) -def test_frustum_get_gaussian_blob(): +def test_frustum_get_conical_gaussian_blob(): """Test gaussian blob calculation""" frustum = Frustums( @@ -41,7 +41,7 @@ def test_frustum_get_gaussian_blob(): pixel_area=torch.ones((5, 1)), ) - gaussian_blob = frustum.get_gaussian_blob() + gaussian_blob = frustum.get_conical_gaussian_blob() assert gaussian_blob.mean.shape == (5, 3) assert gaussian_blob.cov.shape == (5, 3, 3) @@ -72,4 +72,4 @@ def test_get_mock_frustum(): if __name__ == "__main__": - test_frustum_get_gaussian_blob() + test_frustum_get_conical_gaussian_blob() diff --git a/tests/process_data/test_misc.py b/tests/process_data/test_misc.py index 1b2404b5..3a494194 100644 --- a/tests/process_data/test_misc.py +++ b/tests/process_data/test_misc.py @@ -39,7 +39,7 @@ def test_scalar_first_scalar_last_quaternions(): # Expected Rotation matrix # fmt: off - R_expected = np.array( + R_expected = np.array( [ [ 0.81379768, -0.44096961, 0.37852231], [ 0.46984631, 0.88256412, 0.01802831],